403Webshell
Server IP : 46.105.57.169  /  Your IP : 216.73.217.35
Web Server : Apache
System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : verseaumee ( 152031)
PHP Version : 8.5.7
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/verseaumee/123click/assets/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/verseaumee/123click/assets/com_solidres.tar
helpers/route.php000060400000013551150751740420010063 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

/**
 * Content Component Route Helper
 *
 * @static
 * @package     Joomla.Site
 * @subpackage  com_content
 * @since       1.5
 */
abstract class SolidresHelperRoute
{
	protected static $lookup = array();

	protected static $lang_lookup = array();

	public static function getReservationAssetRoute($id, $roomTypeId = null, $language = 0)
	{
		// view => id
		$needles = array();
		if (!SRPlugin::isEnabled('hub'))
		{
			$needles = array(
				'reservationasset' => array((int) $id)
			);
		}

		//Create the link
		$link = 'index.php?option=com_solidres&view=reservationasset&id=' . $id;

		if ($language && $language != "*" && JLanguageMultilang::isEnabled())
		{
			self::buildLanguageLookup();

			if (isset(self::$lang_lookup[$language]))
			{
				$link                .= '&lang=' . self::$lang_lookup[$language];
				$needles['language'] = $language;
			}
		}

		if ($item = self::_findItem($needles))
		{
			$link .= '&Itemid=' . $item;
		}

		if (isset($roomTypeId))
		{
			$link .= '#srt_' . $roomTypeId;
		}

		return $link;
	}

	public static function getRoomTypeRoute($id, $language = 0)
	{
		$needles = array(
			'roomtype' => array((int) $id)
		);

		$link = 'index.php?option=com_solidres&view=roomtype&id=' . $id;

		if ($language && $language != "*" && JLanguageMultilang::isEnabled())
		{
			self::buildLanguageLookup();

			if (isset(self::$lang_lookup[$language]))
			{
				$link                .= '&lang=' . self::$lang_lookup[$language];
				$needles['language'] = $language;
			}
		}

		if ($item = self::_findItem($needles))
		{
			$link .= '&Itemid=' . $item;
		}

		return $link;
	}

	protected static function buildLanguageLookup()
	{
		if (count(self::$lang_lookup) == 0)
		{
			$db    = JFactory::getDbo();
			$query = $db->getQuery(true)
				->select('a.sef AS sef')
				->select('a.lang_code AS lang_code')
				->from('#__languages AS a');

			$db->setQuery($query);
			$langs = $db->loadObjectList();

			foreach ($langs as $lang)
			{
				self::$lang_lookup[$lang->lang_code] = $lang->sef;
			}
		}
	}

	protected static function _findItem($needles = null)
	{
		$app      = JFactory::getApplication();
		$menus    = $app->getMenu('site');
		$language = isset($needles['language']) ? $needles['language'] : '*';

		// Prepare the reverse lookup array.
		if (!isset(self::$lookup[$language]))
		{
			self::$lookup[$language] = array();

			$component = JComponentHelper::getComponent('com_solidres');

			$attributes = array('component_id');
			$values     = array($component->id);

			if ($language != '*')
			{
				$attributes[] = 'language';
				$values[]     = array($needles['language'], '*');
			}

			$items = $menus->getItems($attributes, $values);

			foreach ($items as $item)
			{
				if (isset($item->query) && isset($item->query['view']))
				{
					$view = $item->query['view'];

					if (!isset(self::$lookup[$language][$view]))
					{
						self::$lookup[$language][$view] = array();
					}

					if (isset($item->query['id']))
					{

						// here it will become a bit tricky
						// language != * can override existing entries
						// language == * cannot override existing entries
						if (!isset(self::$lookup[$language][$view][$item->query['id']]) || $item->language != '*')
						{
							self::$lookup[$language][$view][$item->query['id']] = $item->id;
						}
					}
					else
					{
						self::$lookup[$language][$view][0] = $item->id;
					}
				}
			}
		}

		if ($needles)
		{
			foreach ($needles as $view => $ids)
			{
				if (isset(self::$lookup[$language][$view]))
				{
					foreach ($ids as $id)
					{
						if (isset(self::$lookup[$language][$view][(int) $id]))
						{
							return self::$lookup[$language][$view][(int) $id];
						}
					}
				}
			}
		}

		// If not found, return the HUB search page
		$component  = JComponentHelper::getComponent('com_solidres');
		$attributes = array('component_id');
		$values     = array($component->id);

		if ($language != '*')
		{
			$attributes[] = 'language';
			$values[]     = array($needles['language'], '*');
		}

		$items = $menus->getItems($attributes, $values);
		foreach ($items as $item)
		{
			if ($item->query['view'] == 'search')
			{
				return $item->id;
			}
		}

		// Check if the active menuitem matches the requested language
		$active = $menus->getActive();
		if ($active && $active->component == 'com_solidres' && ($language == '*' || in_array($active->language, array('*', $language)) || !JLanguageMultilang::isEnabled()))
		{
			return $active->id;
		}

		// If not found, return language specific home link
		$default = $menus->getDefault($language);

		return !empty($default->id) ? $default->id : null;
	}

	public static function getPartnerRoute($partnerId = null, $language = '*', $layout = 'default')
	{
		if (null === $partnerId)
		{
			$partnerId = SRUtilities::getPartnerId();
		}

		$partnerId = (int) $partnerId;
		$needles   = ['partner' => [$partnerId, 0]];
		$link      = 'index.php?option=com_solidres&view=partner&id=' . $partnerId;

		if ($language
			&& $language !== '*'
			&& JLanguageMultilang::isEnabled()
		)
		{
			self::buildLanguageLookup();

			if (isset(self::$lang_lookup[$language]))
			{
				$link                .= '&lang=' . self::$lang_lookup[$language];
				$needles['language'] = $language;
			}
		}

		if ('default' !== $layout)
		{
			$link .= '&layout=' . $layout;
		}

		if ($item = self::_findItem($needles))
		{
			$link .= '&Itemid=' . $item;
		}

		return $link;
	}
}
helpers/toolbar.php000060400000001112150751740420010355 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

JLoader::import('solidres.toolbar.toolbar');
helpers/category.php000060400000001406150751740420010536 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

class SolidresCategories extends JCategories
{
	public function __construct($options = array())
	{
		$options['table']     = '#__sr_reservation_assets';
		$options['extension'] = 'com_solidres';

		parent::__construct($options);
	}
}helpers/association.php000060400000002341150751740420011234 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

abstract class SolidresHelperAssociation
{
	public static function getAssociations($id = 0, $view = null)
	{
		$jinput = JFactory::getApplication()->input;
		$view   = $view === null ? $jinput->get('view') : $view;
		$id     = empty($id) ? $jinput->getInt('id') : $id;

		if ($view === 'experience'
			&& SRPlugin::isEnabled('experience')
		)
		{
			if ($id)
			{
				$associations = JLanguageAssociations::getAssociations('com_solidres', '#__sr_experiences', 'com_solidres.experience', $id, 'id', null, null);
				$return       = [];

				foreach ($associations as $tag => $item)
				{
					$return[$tag] = SRExperienceHelper::getItemRoute($item->id);
				}

				return $return;
			}
		}

		return [];
	}
}
views/map/tmpl/default.php000060400000005643150751740420011600 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/map/default.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

$doc             = JFactory::getDocument();
$solidresParams  = JComponentHelper::getParams('com_solidres');
$googleMapApiKey = $solidresParams->get('google_map_api_key', '');

$doc->addScript('//maps.google.com/maps/api/js' . (!empty($googleMapApiKey) ? '?key=' . $googleMapApiKey : ''));
$doc->addScriptDeclaration('
	var geocoder, map;
	function initialize() {
		var latlng = new google.maps.LatLng("' . $this->info->lat . '", "' . $this->info->lng . '");
		var options = {
			zoom: 15,
			center: latlng,
			mapTypeId: google.maps.MapTypeId.ROADMAP
		}
		map = new google.maps.Map(document.getElementById("inline_map"), options);

		var image = new google.maps.MarkerImage("' . SRURI_MEDIA . '/assets/images/icon-hotel-' . $this->info->rating . '.png",
            new google.maps.Size(32, 37),
            new google.maps.Point(0,0),
            new google.maps.Point(0, 32));

		var marker = new google.maps.Marker({
			map: map,
			position: latlng,
			icon: image,
		});

		var windowContent = "<h4>' . $this->info->name . '</h4>" +
			' . json_encode($this->info->description) . ' +
			"<ul>" +
				"<li>' . $this->info->address_1 . "  " . $this->info->city . '</li>" +
				"<li>' . $this->info->phone . '</li>" +
				"<li>' . $this->info->email . '</li>" +
				"<li>' . $this->info->website . '</li>" +
			"</ul>";

		var infowindow = new google.maps.InfoWindow({
			content: windowContent,
			maxWidth: 350
		});

		google.maps.event.addListener(marker, "click", function() {
			infowindow.open(map,marker);
		});
	}

	jQuery(document).ready(function () {
			initialize();
	});
');


?>
<style>
    body.contentpane,
    body.component-body,
    div.component-content {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }

    body.contentpane > div:not(#system-message-container) {
        height: 100%;
    }

    html {
        width: 100%;
        height: 100%;
    }
</style>
<div id="inline_map"></div>
views/map/tmpl/location.php000060400000006366150751740420011767 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/map/location.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

$doc             = JFactory::getDocument();
$solidresParams  = JComponentHelper::getParams('com_solidres');
$googleMapApiKey = $solidresParams->get('google_map_api_key', '');
$doc->addScript('//maps.google.com/maps/api/js' . (!empty($googleMapApiKey) ? '?key=' . $googleMapApiKey : ''));

?>

<div id="inline_location_map"></div>

<script>
    Solidres.jQuery(function ($) {
        var map;
        var marker;
        var markers = new Array();
        var infowindow = new google.maps.InfoWindow({
            maxWidth: 160
        });

        $.ajax({
            url: Solidres.options.get('BaseURI') + 'index.php?option=com_solidres&task=map.getMarkers&format=json&location=<?php echo $this->location ?>',
            data: {},
            dataType: "json",
            success: function (data) {
                // Setup the different icons and shadows

                var iconCounter = 0;
                map = new google.maps.Map(document.getElementById('inline_location_map'), {
                    zoom: 10,
                    center: new google.maps.LatLng(-37.92, 151.25),
                    mapTypeId: google.maps.MapTypeId.ROADMAP
                });

                for (var i = 0; i < data.length; i++) {
                    marker = new google.maps.Marker({
                        position: new google.maps.LatLng(data[i]['lat'], data[i]['lng']),
                        map: map,
                        icon: '<?php echo SRURI_MEDIA ?>/assets/images/icon-hotel-' + data[i]['rating'] + '.png'
                    });

                    markers.push(marker);

                    google.maps.event.addListener(marker, 'click', (function (marker, i) {
                        return function () {
                            infowindow.setContent('<h4>' + data[i]['name'] + '</h4>' +
                                '<p>' + data[i]['address_1'] + '</p>');
                            infowindow.open(map, marker);
                        }
                    })(marker, i));
                }

                var bounds = new google.maps.LatLngBounds();
                $.each(markers, function (index, marker) {
                    bounds.extend(marker.position);
                });
                map.fitBounds(bounds);
            }
        });
    });
</script>views/map/view.html.php000060400000002567150751740420011117 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

/**
 * HTML View class for the Solidres component
 *
 * @package   Solidres
 * @since     0.1.0
 */
class SolidresViewMap extends JViewLegacy
{
	protected $info;

	protected $location;

	public function display($tpl = null)
	{
		$model   = $this->getModel();
		$assetId = $model->getState($model->getName() . '.assetId');
		if ($assetId > 0)
		{
			$this->info = $model->getMapInfo();
		}

		$this->location = $model->getState('filter.location');

		JHtml::_('jquery.framework');
		JHtml::_('stylesheet', 'com_solidres/assets/main.min.css', array('version' => SRVersion::getHashVersion(), 'relative' => true));
		if (SRPlugin::isEnabled('hub'))
		{
			JHtml::stylesheet('plg_solidres_hub/assets/hub.min.css', false, true);
		}

		if ($errors = $this->get('Errors'))
		{
			throw new Exception(implode("\n", $errors), 500);
		}

		parent::display($tpl);
	}
}
views/tracking/view.html.php000060400000006021150751740420012131 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

use Joomla\Registry\Registry;

class SolidresViewTracking extends JViewLegacy
{
	protected $reservation = null;
	protected $menuId = 0;
	protected $state;
	protected $params;

	public function display($tpl = null)
	{
		$this->state    = new Registry;
		$app            = JFactory::getApplication();
		$code           = $app->input->get('trackingCode', null, 'TRIM');
		$email          = $app->input->get('trackingEmail', null, 'TRIM');
		$menu           = $app->getMenu()->getActive();
		$user           = JFactory::getUser();
		$enableTracking = JComponentHelper::getParams('com_solidres')->get('enable_reservation_tracking', '1');

		if (!$user->id && !$enableTracking)
		{
			$return = base64_encode(JUri::getInstance()->toString());
			$app->redirect(JRoute::_('index.php?option=com_users&view=login&return=' . $return, false));
		}

		$this->state->set('trackingCode', $code);
		$this->state->set('trackingEmail', $email);
		SRLayoutHelper::addIncludePath(JPATH_SITE . '/components/com_solidres/layouts');

		if (null !== $code && null !== $email)
		{
			$loadData = array(
				'code'           => $code,
				'customer_email' => $email,
			);

			if (!$enableTracking)
			{
				$db    = JFactory::getDbo();
				$query = $db->getQuery(true)
					->select('a.id')
					->from($db->qn('#__sr_customers', 'a'))
					->where('a.user_id = ' . (int) $user->id);
				$db->setQuery($query);
				$customerId              = $db->loadResult();
				$loadData['customer_id'] = $customerId ?: 0;
			}

			JModelLegacy::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_solidres/models', 'SolidresModel');
			$reservationModel = JModelLegacy::getInstance('Reservation', 'SolidresModel', array('ignore_request' => true));
			$reservation      = $reservationModel->getItem($loadData);

			if (!empty($reservation->id) && (int) $reservation->state !== -2)
			{
				$this->reservation = $reservation;
				JLoader::register('SRCurrency', SRPATH_LIBRARY . '/currency/currency.php');
				JFactory::getLanguage()->load('plg_solidrespayment_' . $this->reservation->payment_method_id, JPATH_PLUGINS . '/solidrespayment/' . $this->reservation->payment_method_id);
			}
		}

		if ($menu
			&& @$menu->query['option'] == 'com_solidres'
			&& @$menu->query['view'] == 'tracking'
		)
		{
			$this->menuId = (int) $menu->id;
			$this->params = $menu->params;
		}

		if (!($this->params instanceof Registry))
		{
			$this->params = new Registry;
		}

		parent::display($tpl);
	}
}
views/tracking/tmpl/default.xml000060400000001455150751740420012633 0ustar00<?xml version="1.0" encoding="utf-8"?>
<metadata>
    <layout title="SR_TRACKING_VIEW_DEFAULT_TITLE">
        <message>
            <![CDATA[SR_TRACKING_VIEW_DEFAULT_DESC]]>
        </message>
    </layout>
    <fields name="params">
        <fieldset
                name="display"
                label="SR_FRONTEND_SETTING"
        >
            <field
                    name="show_tracking_form"
                    type="radio"
                    label="SR_SHOW_TRACKING_FORM_LABEL"
                    description="SR_SHOW_TRACKING_FORM_DESC"
                    class="btn-group btn-group-yesno"
                    default="1"
            >
                <option value="0">JNO</option>
                <option value="1">JYES</option>
            </field>
        </fieldset>
    </fields>
</metadata>views/tracking/tmpl/default.php000060400000100056150751740420012617 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/tracking/default.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;
$trackingCode  = $this->state->get('trackingCode');
$trackingEmail = $this->state->get('trackingEmail');
$config        = JComponentHelper::getParams('com_solidres');
JLoader::register('SolidresHelper', JPATH_ADMINISTRATOR . '/components/com_solidres/helpers/helper.php');
?>
<div id="solidres">
    <div class="<?php echo SR_UI; ?> sr-exp-tracking-wrap">
		<?php if ($this->params->get('show_tracking_form', 1)): ?>
            <div class="well">
				<?php echo SRLayoutHelper::render('tracking.tracking', array(
					'trackingCode'  => $trackingCode,
					'trackingEmail' => $trackingEmail,
					'menuId'        => $this->menuId,
				)); ?>
            </div>
		<?php endif; ?>
        <div class="sr-exp-tracking-result">
			<?php if ($trackingCode): ?>
                <div class="alert alert-<?php echo $this->reservation ? 'success' : 'warning'; ?>">
                    <a class="close" data-dismiss="alert">×</a>
                    <div class="alert-message">
						<?php if ($this->reservation): ?>
                            <i class="fa fa-check-circle"></i>
							<?php echo JText::sprintf('SR_TRACKING_RESERVATION_FOUND_FORMAT', $trackingCode); ?>
						<?php else: ?>
                            <i class="fa fa-warning"></i>
							<?php echo JText::sprintf('SR_TRACKING_RESERVATION_NOT_FOUND_MSG', $trackingCode); ?>
						<?php endif; ?>
                    </div>
                </div>
			<?php endif; ?>
			<?php if ($this->reservation):
				$isDiscountPreTax = $this->reservation->discount_pre_tax;
				$baseCurrency = new SRCurrency(0, $this->reservation->currency_id);
				$totalExtraPriceTaxIncl = $this->reservation->total_extra_price_tax_incl;
				$totalExtraPriceTaxExcl = $this->reservation->total_extra_price_tax_excl;
				$totalExtraTaxAmount = $totalExtraPriceTaxIncl - $totalExtraPriceTaxExcl;
				$totalPaid = $this->reservation->total_paid;
				$deposit = $this->reservation->deposit_amount;
				$subTotal = clone $baseCurrency;
				$subTotal->setValue($this->reservation->total_price_tax_excl - $this->reservation->total_single_supplement);
				$totalSingleSupplement = clone $baseCurrency;
				$totalSingleSupplement->setValue($this->reservation->total_single_supplement);
				$totalDiscount = clone $baseCurrency;
				$totalDiscount->setValue($this->reservation->total_discount);
				$tax = clone $baseCurrency;
				$tax->setValue($this->reservation->tax_amount);
				$totalExtraPriceTaxExclDisplay = clone $baseCurrency;
				$totalExtraPriceTaxExclDisplay->setValue($totalExtraPriceTaxExcl);
				$totalExtraTaxAmountDisplay = clone $baseCurrency;
				$totalExtraTaxAmountDisplay->setValue($totalExtraTaxAmount);
				$grandTotal = clone $baseCurrency;

				if ($isDiscountPreTax)
				{
					$grandTotal->setValue($this->reservation->total_price_tax_excl - $this->reservation->total_discount + $this->reservation->tax_amount + $totalExtraPriceTaxIncl);
				}
				else
				{
					$grandTotal->setValue($this->reservation->total_price_tax_excl + $this->reservation->tax_amount - $this->reservation->total_discount + $totalExtraPriceTaxIncl);
				}

				$depositAmount = clone $baseCurrency;
				$depositAmount->setValue(isset($deposit) ? $deposit : 0);
				$totalPaidAmount = clone $baseCurrency;
				$totalPaidAmount->setValue(isset($totalPaid) ? $totalPaid : 0);

				$couponCode       = $this->reservation->coupon_code;
				$reservationState = $this->reservation->state;
				$paymentStatus    = $this->reservation->payment_status;
				$bookingType      = $this->reservation->booking_type;
				$statuses         = [];
				$paymentStatuses  = [];
				$paymentsColor    = [];

				foreach(SolidresHelper::getStatusesList(0, 0) as $state)
				{
					$statuses[$state->value] = $state->text;
				}

				foreach(SolidresHelper::getStatusesList(1, 0) as $state)
				{
					$paymentStatuses[$state->value] = $state->text;
					$paymentsColor[$state->value]   = $state->color_code;
				}

				$dateFormat       = $config->get('date_format', 'd-m-Y');
				$solidresRoomType = SRFactory::get('solidres.roomtype.roomtype');
				$lengthOfStay     = (int) $solidresRoomType->calculateDateDiff($this->reservation->checkin, $this->reservation->checkout);

				?>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                    <div class="<?php echo SR_UI_GRID_COL_12 ?> reservation-detail-box">
                        <h3><?php echo JText::_('SR_GENERAL_INFO') ?></h3>
                        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <ul class="reservation-details list-unstyled">
                                    <li>
                                        <label>
											<?php echo JText::_('SR_CODE'); ?>
                                        </label>
                                        <div class="reservation-code-<?php echo $reservationState; ?> reservation-code">
											<?php echo $this->reservation->code; ?>
                                        </div>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_RESERVATION_ASSET_NAME'); ?>
                                        </label>
										<?php echo $this->reservation->reservation_asset_name; ?>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_CHECKIN'); ?>
                                        </label>
										<?php echo JHtml::_('date', $this->reservation->checkin, $dateFormat, null); ?>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_CHECKOUT'); ?>
                                        </label>
										<?php echo JHtml::_('date', $this->reservation->checkout, $dateFormat, null); ?>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_LENGTH_OF_STAY'); ?>
                                        </label>
										<?php if ($bookingType == 0) : ?>
											<?php echo JText::plural('SR_NIGHTS', $lengthOfStay); ?>
										<?php else: ?>
											<?php echo JText::plural('SR_DAYS', $lengthOfStay + 1); ?>
										<?php endif; ?>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_CREATED_DATE'); ?>
                                        </label>
										<?php echo JHtml::_('date', $this->reservation->created_date, $dateFormat); ?>

                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_PAYMENT_TYPE'); ?>
                                        </label>
										<?php echo JText::_('SR_PAYMENT_METHOD_' . $this->reservation->payment_method_id); ?>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_STATUS'); ?>
                                        </label>
										<?php echo $statuses[$reservationState] ?>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_RESERVATION_PAYMENT_STATUS'); ?>
                                        </label>

                                        <?php if (isset($paymentStatuses[$paymentStatus])): ?>
                                        <div style="display: inline-block; color: <?php echo $paymentsColor[$paymentStatus]; ?>">
								            <?php echo $paymentStatuses[$paymentStatus]; ?>
                                        </div>
                                        <?php else: ?>
                                            <?php echo 'N/A'; ?>
                                        <?php endif; ?>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_NOTES'); ?>
                                        </label>
										<?php echo $this->reservation->note; ?>
                                    </li>
                                </ul>
                            </div>

                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <ul class="reservation-details list-unstyled">
                                    <li>
                                        <label>
											<?php echo JText::_('SR_RESERVATION_SUB_TOTAL'); ?>
                                        </label>
                                        <span>
                                            <?php echo $subTotal->format(); ?>
                                        </span>
                                    </li>
									<?php if ($this->reservation->total_single_supplement > 0) : ?>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_RESERVATION_TOTAL_SINGLE_SUPPLEMENT'); ?>
                                            </label>
                                            <span>
                                                <?php echo $totalSingleSupplement->format(); ?>
                                            </span>
                                        </li>
									<?php endif; ?>
									<?php if (isset($isDiscountPreTax) && $isDiscountPreTax == 1) : ?>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_RESERVATION_TOTAL_DISCOUNT'); ?>
                                            </label>
                                            <span>
                                                <?php echo '-' . $totalDiscount->format() ?></span>
                                        </li>
									<?php endif; ?>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_RESERVATION_TAX'); ?>
                                        </label>
                                        <span>
                                            <?php echo $tax->format(); ?>
                                        </span>
                                    </li>
									<?php if (isset($isDiscountPreTax) && $isDiscountPreTax == 0) : ?>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_RESERVATION_TOTAL_DISCOUNT'); ?>
                                            </label>
                                            <span>
                                                <?php echo '-' . $totalDiscount->format(); ?>
                                            </span>
                                        </li>
									<?php endif ?>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_RESERVATION_EXTRA_TAX_EXCL'); ?>
                                        </label>
                                        <span>
                                            <?php echo $totalExtraPriceTaxExclDisplay->format(); ?>
                                        </span>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_RESERVATION_EXTRA_TAX_AMOUNT'); ?>
                                        </label>
                                        <span>
                                            <?php echo $totalExtraTaxAmountDisplay->format(); ?>
                                        </span>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_RESERVATION_GRAND_TOTAL'); ?>
                                        </label>
                                        <span>
                                            <?php echo $grandTotal->format(); ?>
                                        </span>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_RESERVATION_DEPOSIT_AMOUNT'); ?>
                                        </label>
                                        <span>
                                            <?php echo $depositAmount->format(); ?>
                                        </span>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_RESERVATION_TOTAL_PAID'); ?>
                                        </label>
                                        <span>
										<?php echo $totalPaidAmount->format(); ?>
									</span>
                                    </li>
                                    <li>
                                        <label>
											<?php echo JText::_('SR_RESERVATION_COUPON_CODE'); ?>
                                        </label>
                                        <span>
                                            <?php echo !empty($couponCode) ? $couponCode : 'N/A'; ?>
                                        </span>
                                    </li>
                                </ul>
                            </div>
                        </div>
                    </div>
                </div>

                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                    <div class="<?php echo SR_UI_GRID_COL_12 ?> reservation-detail-box">
                        <h3>
							<?php echo JText::_('SR_CUSTOMER_INFO'); ?>
                        </h3>
						<?php
						$context           = 'com_solidres.customer.' . (int) $this->reservation->customer_id;
						if (SRPlugin::isEnabled('customfield')
							&& ($customFields = SRCustomFieldHelper::getValues(array('context' => $context)))):
							$customFieldLength = count($customFields);
							$partialNumber = ceil($customFieldLength / 2);
							?>
                            <div class="<?php echo SR_UI_GRID_CONTAINER; ?>">
                                <div class="<?php echo SR_UI_GRID_COL_6; ?>">
                                    <ul class="reservation-details list-unstyled">
										<?php for ($i = 0; $i <= $partialNumber; $i++): ?>
                                            <li>
                                                <label>
													<?php echo JText::_($customFields[$i]->title); ?>
                                                </label>
												<?php echo trim($customFields[$i]->value); ?>
                                            </li>
										<?php endfor; ?>
                                    </ul>
                                </div>
                                <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                    <ul class="reservation-details list-unstyled">
										<?php for ($i = $partialNumber + 1; $i < $customFieldLength; $i++): ?>
                                            <li>
                                                <label>
													<?php echo JText::_($customFields[$i]->title); ?>
                                                </label>
												<?php echo trim($customFields[$i]->value); ?>
                                            </li>
										<?php endfor; ?>
                                    </ul>
                                </div>
                            </div>
						<?php else: ?>
                            <div class="<?php echo SR_UI_GRID_CONTAINER; ?>">
                                <div class="<?php echo SR_UI_GRID_COL_6; ?>">
                                    <ul class="reservation-details list-unstyled">
                                        <li>
                                            <label>
												<?php echo JText::_('SR_CUSTOMER_TITLE'); ?>
                                            </label>
											<?php echo $this->reservation->customer_title; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_FIRSTNAME'); ?>
                                            </label>
											<?php echo $this->reservation->customer_firstname; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_MIDDLENAME') ?>
                                            </label>
											<?php echo $this->reservation->customer_middlename; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_LASTNAME'); ?>
                                            </label>
											<?php echo $this->reservation->customer_lastname; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_EMAIL'); ?>
                                            </label>
											<?php echo $this->reservation->customer_email; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_PHONE'); ?>
                                            </label>
											<?php echo $this->reservation->customer_phonenumber; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_MOBILEPHONE'); ?>
                                            </label>
											<?php echo $this->reservation->customer_mobilephone; ?>
                                        </li>
                                    </ul>
                                </div>
                                <div class="<?php echo SR_UI_GRID_COL_6; ?>">
                                    <ul class="reservation-details list-unstyled">
                                        <li>
                                            <label>
												<?php echo JText::_('SR_COMPANY'); ?>
                                            </label>
											<?php echo $this->reservation->customer_company; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_CUSTOMER_ADDRESS1'); ?>
                                            </label>
											<?php echo $this->reservation->customer_address1; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_CUSTOMER_ADDRESS2'); ?>
                                            </label>
											<?php echo $this->reservation->customer_address2; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_CUSTOMER_CITY'); ?>
                                            </label>
											<?php echo $this->reservation->customer_city; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_CUSTOMER_ZIPCODE'); ?>
                                            </label>
											<?php echo $this->reservation->customer_zipcode; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_FIELD_COUNTRY_LABEL'); ?>
                                            </label>
											<?php echo $this->reservation->customer_country_name; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_VAT_NUMBER'); ?>
                                            </label>
											<?php echo $this->reservation->customer_vat_number; ?>
                                        </li>
                                    </ul>
                                </div>
                            </div>
						<?php endif; ?>
                    </div>
                </div>

                <div class="<?php echo SR_UI_GRID_CONTAINER; ?>">
                    <div class="<?php echo SR_UI_GRID_COL_12; ?> reservation-detail-box booked_room_extra_info">

                        <h3>
							<?php echo JText::_('SR_ROOM_EXTRA_INFO'); ?>
                        </h3>
						<?php foreach ($this->reservation->reserved_room_details as $room) :
							$totalRoomCost = 0;
							?>
                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <div class="<?php echo SR_UI_GRID_COL_6 ?>">
									<?php
									echo '<h4>' . $room->room_type_name . ' (' . $room->room_label . ')</h4>' ?>
                                    <ul>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_GUEST_FULLNAME'); ?>
                                            </label>
											<?php echo $room->guest_fullname; ?>
                                        </li>
                                        <li>
											<?php if (is_array($room->other_info)) : ?>
												<?php foreach ($room->other_info as $info) : ?>
													<?php if (substr($info->key, 0, 7) == 'smoking'): ?>
                                                        <label>
															<?php echo JText::_('SR_' . $info->key) . ($info->value == '' ? JText::_('SR_NO_PREFERENCES') : ($info->value == 1 ? JText::_('SR_YES') : JText::_('SR_NO'))); ?>
                                                        </label>
													<?php endif; ?>
												<?php endforeach; ?>
											<?php endif; ?>
                                        </li>
                                        <li>
                                            <label>
												<?php echo JText::_('SR_ADULT_NUMBER'); ?>
                                            </label>
											<?php echo $room->adults_number; ?>
                                        </li>
                                        <li>
                                            <label class="toggle_child_ages">
												<?php echo JText::_('SR_CHILDREN_NUMBER'); ?>
												<?php echo $room->children_number > 0 ? '<i class="icon-plus-2 fa fa-plus"></i>' : '' ?>
                                            </label>
											<?php echo $room->children_number; ?>
											<?php if (is_array($room->other_info)) : ?>
                                                <ul class="unstyled" id="booked_room_child_ages" style="display: none">
													<?php foreach ($room->other_info as $info) : ?>
														<?php if (substr($info->key, 0, 7) == 'smoking'): ?>
                                                            <li>
																<?php echo JText::_('SR_' . $info->key) . ': ' . ': ' . JText::plural('SR_CHILD_AGE_SELECTION', $info->value); ?>
                                                            </li>
														<?php endif; ?>
													<?php endforeach; ?>
                                                </ul>
											<?php endif; ?>
                                        </li>
                                    </ul>
                                </div>
                                <div class="<?php echo SR_UI_GRID_COL_6; ?>">
                                    <div class="booked_room_cost_wrapper">
										<?php
										$roomPriceCurrency = clone $baseCurrency;
										$roomPriceCurrency->setValue($room->room_price_tax_incl);
										$totalRoomCost += $room->room_price_tax_incl;

										?>
                                        <ul class="unstyled">
                                            <li>
                                                <label>
													<?php echo JText::_('SR_BOOKED_ROOM_COST') ?>
                                                    <span class="icon-help"
                                                          title="<?php echo strip_tags($room->tariff_title) . ' - ' . strip_tags($room->tariff_description); ?>">
                                                    </span>
                                                </label>
                                                <span class="booked_room_cost">
                                                    <?php echo $roomPriceCurrency->format(); ?>
                                                </span>
                                            </li>
											<?php if (!empty($room->extras)) : ?>
												<?php foreach ($room->extras as $extra) :
													$extraPriceCurrency = clone $baseCurrency;
													$extraPriceCurrency->setValue($extra->extra_price);
													$totalRoomCost += $extra->extra_price;
													?>
                                                    <li>
                                                        <label>
															<?php echo $extra->extra_name . ' (x' . $extra->extra_quantity . ')' ?>
                                                        </label>
                                                        <span class="booked_room_extra_cost">
                                                            <?php echo $extraPriceCurrency->format(); ?>
                                                        </span>
                                                    </li>
												<?php endforeach; ?>
											<?php endif; ?>
                                            <li>
                                                <label>
                                                    <strong>
														<?php echo JText::_('SR_BOOKED_ROOM_COST_TOTAL'); ?>
                                                    </strong>
                                                </label>
                                                <span class="booked_room_cost">
									                <strong>
                                                        <?php
                                                        $totalRoomCostCurrency = clone $baseCurrency;
                                                        $totalRoomCostCurrency->setValue($totalRoomCost);
                                                        echo $totalRoomCostCurrency->format();
                                                        ?>
									                </strong>
								                </span>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                            </div>
						<?php endforeach ?>
                    </div>
                </div>
                <div class="<?php echo SR_UI_GRID_CONTAINER; ?>">
                    <div class="<?php echo SR_UI_GRID_COL_12; ?> reservation-detail-box">
                        <h3>
							<?php echo JText::_('SR_RESERVATION_OTHER_INFO'); ?>
                        </h3>
						<?php if (!empty($this->reservation->extras)): ?>
                            <table class="table table-condensed">
                                <thead>
                                <tr>
                                    <th>
										<?php echo JText::_('SR_RESERVATION_ROOM_EXTRA_NAME'); ?>
                                    </th>
                                    <th>
										<?php echo JText::_('SR_RESERVATION_ROOM_EXTRA_QUANTITY'); ?>
                                    </th>
                                    <th>
										<?php echo JText::_('SR_RESERVATION_ROOM_EXTRA_PRICE'); ?>
                                    </th>
                                </tr>
                                </thead>
                                <tbody>
								<?php foreach ($this->reservation->extras as $extra) : ?>
                                    <tr>
                                        <td>
											<?php echo $extra->extra_name ?>
                                        </td>
                                        <td>
											<?php echo $extra->extra_quantity ?>
                                        </td>
                                        <td>
											<?php
											$extraPriceCurrencyPerBooking = clone $baseCurrency;
											$extraPriceCurrencyPerBooking->setValue($extra->extra_price);
											echo $extraPriceCurrencyPerBooking->format();
											?>
                                        </td>
                                    </tr>
								<?php endforeach; ?>
                                </tbody>
                            </table>
						<?php endif; ?>
                    </div>
                </div>

                <div class="<?php echo SR_UI_GRID_CONTAINER; ?>">
                    <div class="<?php echo SR_UI_GRID_COL_12; ?> reservation-detail-box">
                        <h3><?php echo JText::_('SR_RESERVATION_NOTE_BACKEND'); ?></h3>
                        <div class="reservation-note-holder">
							<?php if (!empty($this->reservation->notes)) : ?>
								<?php foreach ($this->reservation->notes as $note) : ?>
                                    <blockquote>
                                        <p>
											<?php echo $note->text; ?>
                                        </p>
                                        <small>
											<?php echo $note->created_date; ?> by <?php echo $note->username; ?>
                                        </small>
                                    </blockquote>
								<?php endforeach; ?>
							<?php else: ?>
                                <div class="alert alert-info">
									<?php echo JText::_('SR_CUSTOMER_DASHBOARD_NO_NOTE'); ?>
                                </div>
							<?php endif; ?>
                        </div>
                    </div>
                </div>
			<?php endif; ?>
        </div>
    </div>
	<?php if ($config->get('show_solidres_copyright', 1)) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER; ?>">
            <div class="<?php echo SR_UI_GRID_COL_12; ?> powered">
                <p>Powered by <a href="https://www.solidres.com" target="_blank">Solidres</a></p>
            </div>
        </div>
	<?php endif ?>
</div>
views/reservation/view.html.php000060400000004665150751740420012704 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

JLoader::register('SolidresHelper', JPATH_COMPONENT_ADMINISTRATOR . '/helpers/helper.php');

/**
 * Reservation view class
 *
 * @package      Solidres
 * @since        0.1.0
 */
class SolidresViewReservation extends JViewLegacy
{
	public $reservation = null;

	function display($tpl = null)
	{
		$this->context           = 'com_solidres.reservation.process';
		$this->config            = JComponentHelper::getParams('com_solidres');
		$this->showPoweredByLink = $this->config->get('show_solidres_copyright', '1');
		$this->app               = JFactory::getApplication();
		$this->id                = $this->app->input->getUint('id', 0);
		$this->code              = $this->app->input->getString('code', '');

		if ($this->id > 0 && !empty($this->code))
		{
			JModelLegacy::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . '/models/');
			$reservatonModel = JModelLegacy::getInstance('Reservation', 'SolidresModel', array('ignore_request' => true));
			$assetModel      = JModelLegacy::getInstance('ReservationAsset', 'SolidresModel', array('ignore_request' => true));
			$reservation     = $reservatonModel->getItem($this->id);
			$this->asset     = null;
			if ($reservation->code == $this->code)
			{
				$this->reservation = $reservation;
				$this->asset       = $assetModel->getItem($this->reservation->reservation_asset_id);
				$this->lengthOfStay = (int) SRUtilities::calculateDateDiff(
					$this->reservation->checkin,
					$this->reservation->checkout
				);
			}
		}

		$this->layout = $this->app->input->getString('layout', '');
		if ($this->layout == 'final')
		{
			$result = JFactory::getApplication()->triggerEvent('onSolidresReservationFinalScreenDisplay', array($this->app->getUserState($this->context . '.code')));
		}

		JHtml::stylesheet('com_solidres/assets/main.css', false, true, false);

		if ($errors = $this->get('Errors'))
		{
			throw new Exception(implode("\n", $errors), 500);
		}

		parent::display($tpl);
	}
}
views/reservation/tmpl/final.php000060400000017357150751740420013036 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservation/final.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

// Get some data from successful reservation
$reservationCodeUserState   = $this->app->getUserState($this->context . '.code', '');
$isNew   = $this->app->getUserState($this->context . '.is_new', true);
if (!isset($this->reservation)
	&& (!empty($paymentMethodMessage) || !empty($reservationCodeUserState))
) :
	$paymentMethodMessage = $this->app->getUserState($this->context . '.payment_method_message');
	$bookingRequireApproval = $this->app->getUserState($this->context . '.booking_require_approval');
	$finalContent           = '';
	if (!empty($paymentMethodMessage) || $bookingRequireApproval) :
		$finalContent = $paymentMethodMessage;
	else:
        $customerFullName = $this->app->getUserState($this->context . '.customer_firstname') . ' ' . $this->app->getUserState($this->context . '.customer_lastname');
	    $msg = $isNew ? 'SR_RESERVATION_COMPLETE' : 'SR_RESERVATION_AMEND_COMPLETE';
	    $link = $isNew ? JUri::root() : JRoute::_('index.php?option=com_solidres&view=customer');
        $finalContent = JText::sprintf($msg,
            $customerFullName,
            $this->app->getUserState($this->context . '.code'),
            $this->app->getUserState($this->context . '.customeremail'),
            $this->app->getUserState($this->context . '.reservation_asset_name'),
            $link
        );
	endif;
	?>

	<?php if (!empty($finalContent)) : ?>
    <div id="solidres">
        <div class="alert alert-success">
			<?php echo $finalContent ?>
        </div>
    </div>
<?php endif ?>

	<?php
	$this->app->setUserState($this->context . '.payment_method_message', null);
	$this->app->setUserState($this->context . '.payment_method_custom_email_content', null);
elseif (isset($this->reservation)) :
	?>
    <div id="solidres">

        <h3><?php echo JText::_('SR_ASSET_INFO') ?></h3>

        <table class="table table-striped">
            <thead></thead>
            <tbody>
            <tr>
                <td>
					<?php echo JText::_('SR_CONFIRMATION_ASSET_NAME') ?>
                </td>
                <td>
					<?php echo $this->asset->name ?>
                </td>
            </tr>
            <tr>
                <td>
					<?php echo JText::_('SR_CONFIRMATION_ASSET_ADDRESS') ?>
                </td>
                <td>
					<?php echo $this->asset->address_1 . ', ' .
						(!empty($this->asset->city) ? $this->asset->city . ', ' : '') .
						(!empty($this->asset->postcode) ? $this->asset->postcode . ', ' : '') .
						$this->asset->country_name ?>
                </td>
            </tr>
            <tr>
                <td>
					<?php echo JText::_('SR_CONFIRMATION_ASSET_EMAIL') ?>
                </td>
                <td>
					<?php echo $this->asset->email ?>
                </td>
            </tr>
            <tr>
                <td>
					<?php echo JText::_('SR_CONFIRMATION_ASSET_PHONE') ?>
                </td>
                <td>
					<?php echo $this->asset->phone ?>
                </td>
            </tr>
            </tbody>
        </table>

        <h3><?php echo JText::_('SR_BOOKING_INFO') ?></h3>

        <table class="table table-striped">
            <thead></thead>
            <tbody>
            <tr>
                <td>
					<?php echo JText::_('SR_CONFIRMATION_BOOKING_NUMBER') ?>
                </td>
                <td>
					<?php echo $this->reservation->code ?>
                </td>
            </tr>
            <tr>
                <td>
					<?php echo JText::_('SR_CONFIRMATION_EMAIL') ?>
                </td>
                <td>
					<?php echo $this->reservation->customer_email ?>
                </td>
            </tr>
            <tr>
                <td>
					<?php echo JText::_('SR_CONFIRMATION_BOOKING_DETAILS') ?>
                </td>
                <td>
					<?php
					if (!isset($this->reservation->booking_type)) :
						$this->reservation->booking_type = 0;
					endif;

					if ($this->reservation->booking_type == 0) :
						echo JText::plural('SR_NIGHTS', $this->lengthOfStay);
					else :
						echo JText::plural('SR_DAYS', $this->lengthOfStay + 1);
					endif;
					?>,

					<?php echo JText::plural('SR_CONFIRMATION_BOOKING_ROOM_NUM', count($this->reservation->reserved_room_details)) ?>

                </td>
            </tr>
            <tr>
                <td>
					<?php echo JText::_('SR_CONFIRMATION_CHECKIN') ?>
                </td>
                <td>
					<?php echo $this->reservation->checkin ?>
                </td>
            </tr>
            <tr>
                <td>
					<?php echo JText::_('SR_CONFIRMATION_CHECKOUT') ?>
                </td>
                <td>
					<?php echo $this->reservation->checkout ?>
                </td>
            </tr>
            <tr>
                <td>
					<?php echo JText::_('SR_CONFIRMATION_TOTAL_PRICE') ?>
                </td>
                <td>
					<?php
					JLoader::register('SRCurrency', SRPATH_LIBRARY . '/currency/currency.php');
					$baseCurrency = new SRCurrency($this->reservation->total_price_tax_incl - $this->reservation->total_discount, $this->reservation->currency_id);
					echo $baseCurrency->format()
					?>
                </td>
            </tr>
            </tbody>
        </table>

        <h3><?php echo JText::_('SR_BOOKING_CONFIRMATION_ROOM_DETAILS') ?> </h3>

        <table>
            <thead></thead>
            <tbody>
			<?php
			$reservedRoomDetails = $this->reservation->reserved_room_details;
			foreach ($reservedRoomDetails as $room) : ?>
                <dl>
                    <dt>
						<?php echo $room->room_type_name ?>
                        (
						<?php
						echo JText::plural('SR_BOOKING_CONFIRMATION_ADULTS', $room->adults_number) . ' ' . JText::_('SR_AND') . ' ' . JText::plural('SR_BOOKING_CONFIRMATION_CHILDREN', $room->children_number)
						?>
                        )
                    </dt>
                    <dd><?php echo JText::_("SR_BOOKING_CONFIRMATION_GUEST_FULLNAME") ?>
                        : <?php echo $room->guest_fullname ?></dd>
                    <dd>
						<?php
						if (is_array($room->other_info)) :
							foreach ($room->other_info as $info) :
								if (substr($info->key, 0, 7) == 'smoking') :
									echo JText::_('SR_BOOKING_CONFIRMATION_' . $info->key) . ': ' . ($info->value == '' ? JText::_('SR_NO_PREFERENCES') : ($info->value == 1 ? JText::_('SR_YES') : JText::_('SR_NO')));
								endif;
							endforeach;
						endif
						?>
                    </dd>
                    <dd>
						<?php
						$roomPriceCurrency = clone $baseCurrency;
						$roomPriceCurrency->setValue(isset($room->room_price_tax_incl) ? $room->room_price_tax_incl : $room->room_price);
						echo JText::_('SR_BOOKING_CONFIRMATION_ROOM_COST') . ': ' . $roomPriceCurrency->format();
						?>
                    </dd>
                </dl>
			<?php endforeach ?>
            </tbody>
        </table>
    </div>
<?php

endif;views/reservation/tmpl/payment.php000060400000002041150751740420013402 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservation/payment.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;


echo $this->paymentForm;views/reservationasset/tmpl/default_inquiry_form.php000060400000015514150751740420017225 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_inquiry_form.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;
?>

<?php if (@$this->item->params['disable_online_booking'] && @$this->item->params['show_inquiry_form']): ?>
    <!-- Quick book form -->
    <form id="sr-inquiry-form" class="form-horizontal">
        <div class="well">
            <div class="control-group">
                <div class="control-label">
                    <label for="inquiry_form_fullname" class="text-left"><?php echo JText::_('SR_FULLNAME'); ?></label>
                </div>
                <div class="controls">
                    <input name="inquiry_form_fullname" type="text" id="inquiry_form_fullname"
                           class="input-block-level form-control"/>
                </div>
            </div>
            <div class="control-group">
                <div class="control-label">
                    <label for="inquiry_form_email" class="text-left"><?php echo JText::_('SR_EMAIL'); ?></label>
                </div>
                <div class="controls">
                    <input name="inquiry_form_email" type="text" id="inquiry_form_email"
                           class="input-block-level form-control"/>
                </div>
            </div>
            <div class="control-group">
                <div class="control-label">
                    <label for="inquiry_form_phone" class="text-left"><?php echo JText::_('SR_PHONE'); ?></label>
                </div>
                <div class="controls">
                    <input name="inquiry_form_phone" type="text" id="inquiry_form_phone"
                           class="input-block-level form-control"/>
                </div>
            </div>
            <div class="control-group">
                <div class="control-label">
                    <label for="inquiry_form_message" class="text-left"><?php echo JText::_('SR_MESSAGE'); ?></label>
                </div>
                <div class="controls">
				<textarea name="inquiry_form_message" cols="25" rows="5" id="inquiry_form_message"
                          class="input-block-level form-control"></textarea>
                </div>
            </div>
			<?php if (@$this->item->params['use_captcha']):
				JPluginHelper::importPlugin('captcha', 'recaptcha');
				JFactory::getApplication()->triggerEvent('onInit', array('sr-inquiry-form-captcha'));
				$results = JFactory::getApplication()->triggerEvent('onDisplay', array(null, 'sr-inquiry-form-captcha', 'class="sr-form-captcha"'));
				?>
                <div class="controls" style="margin-bottom: 10px">
					<?php echo $results[0]; ?>
                </div>
			<?php endif; ?>
            <div class="control-group action">
                <div class="controls">
                    <button type="submit" class="btn btn-primary btn-large" id="sr-inquiry-button">
						<?php echo JText::_('SR_SEND_MESSAGE'); ?>
                    </button>
                </div>
            </div>
        </div>
    </form>
    <script>
        Solidres.jQuery(document).ready(function ($) {
            var submit = function () {
                $('#sr-inquiry-form').validate({
                    rules: {
                        inquiry_form_fullname: {
                            required: true
                        },
                        inquiry_form_email: {
                            required: true,
                            email: true
                        },
                        inquiry_form_phone: {
                            required: true
                        },
                        inquiry_form_message: {
                            required: true
                        }
                    },
                    submitHandler: function (form) {
                        var
                            button = $('#sr-inquiry-button'),
                            icon = $('<i class="fa fa-spinner fa-spin"/>');
                        button.prepend(icon);
                        $.ajax({
                            url: '<?php echo JRoute::_('index.php?option=com_solidres&task=reservation.requestBooking', false); ?>',
                            type: 'post',
                            data: {
                                '<?php echo JSession::getFormToken(); ?>': 1,
                                'format': 'json',
                                'g-recaptcha-response': $('#sr-inquiry-form textarea[name="g-recaptcha-response"]').val(),
                                'assetId': <?php echo (int) $this->item->id; ?>,
                                'fullname': $('[name="inquiry_form_fullname"]').val(),
                                'email': $('[name="inquiry_form_email"]').val(),
                                'phone': $('[name="inquiry_form_phone"]').val(),
                                'message': $('[name="inquiry_form_message"]').val()

                            },
                            dataType: 'json',
                            success: function (response) {
                                icon.remove();
                                var alert = $('<div class="alert alert-' + response.status + '"/>');
                                alert.text(response.message);
                                $('#sr-inquiry-form')
                                    .slideUp()
                                    .after(alert);
                                setTimeout(function () {
                                    alert.slideUp();
                                    if (response.status == 'error') {
                                        // We need refresh to reset recaptcha
                                        location.reload();
                                    }
                                }, 5000);
                            }
                        });
                        return false;
                    }
                });
            };

            $('#sr-inquiry-button').on('click', submit);
        });
    </script>
<?php endif; ?>
views/reservationasset/tmpl/default_roomtype.php000060400000070310150751740420016353 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_roomtype.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

if (!$this->isAmending) :
    echo SRLayoutHelper::render('asset.coupon_form', array(
        'asset'   => $this->item,
        'coupon'  => $this->coupon,
        'isFresh' => $this->isFresh
    ));
endif;
?>

<a name="form"></a>

<?php if (!empty($this->item->email) || !empty($this->item->params['show_inquiry_form'])): ?>
	<?php echo $this->loadTemplate('inquiry_form'); ?>
<?php endif; ?>
<?php if (isset($this->item->params['show_inline_checkavailability_form'])
	&& $this->item->params['show_inline_checkavailability_form'] == 1
	&& !$this->disableOnlineBooking
    && !$this->isAmending
) : ?>
    <div id="asset-checkavailability-form">
        <div class="inner">
			<?php echo $this->loadTemplate('checkavailability'); ?>
        </div>
    </div>
<?php endif ?>

<?php if ($this->isAmending) : ?>
<h2><?php echo JText::_('SR_AMENDING_HEADING') ?></h2>
<?php endif ?>

<?php if (!$this->disableOnlineBooking) : ?>
    <div class="wizard wizard-default">
        <ul class="steps list-inline">
            <li data-target="#step1"
                class="list-inline-item active reservation-tab reservation-tab-room <?php echo SR_UI_GRID_COL_4 ?>">
                <span class="badge badge-info">1</span><?php echo JText::_('SR_STEP_ROOM_AND_RATE') ?><span
                        class="chevron"></span></li>
            <li data-target="#step2"
                class="list-inline-item reservation-tab reservation-tab-guestinfo <?php echo SR_UI_GRID_COL_4 ?>"><span
                        class="badge">2</span><?php echo JText::_('SR_STEP_GUEST_INFO_AND_PAYMENT') ?><span
                        class="chevron"></span></li>
            <li data-target="#step3"
                class="list-inline-item reservation-tab reservation-tab-confirmation <?php echo 'bs4' == SR_UI ? '' : SR_UI_GRID_COL_4 ?>">
                <span class="badge">3</span>
				<?php echo JText::_('SR_STEP_CONFIRMATION') ?><!--<span class="chevron"></span>--></li>
        </ul>
    </div>
<?php endif ?>

<div class="step-content">
    <div class="step-pane active" id="step1">
        <!-- Tab 1 -->
        <div class="reservation-single-step-holder room room-default">
			<?php
            if ($this->prioritizingRoomTypeId == 0) :
                echo $this->loadTemplate('searchinfo');
            endif;
            ?>
            <form enctype="multipart/form-data"
                  id="sr-reservation-form-room"
                  class="sr-reservation-form"
                  action="<?php echo JUri::base() ?>index.php?option=com_solidres&task=reservation.process&step=room&format=json"
                  method="POST">
				<?php if (count($this->item->roomTypes) > 0) : ?>
					<?php if (!$this->isFresh) : ?>
                        <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-top">
                            <div class="<?php echo SR_UI_GRID_COL_8 ?>">
                                <div class="inner">
                                    <p><?php echo JText::_('SR_ROOMINFO_STEP_NOTICE_MESSAGE') ?></p>
                                </div>
                            </div>
                            <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                                <div class="inner">
                                    <div class="btn-group">
                                        <button data-step="room" type="submit" class="btn btn-success">
                                            <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                                        </button>
                                    </div>
                                </div>
                            </div>
                        </div>
					<?php endif ?>

					<?php
					$count = 1;
					$prioritizingRoomTypeName = '';
					$countNotPrioritizing = 0;
					if ($this->prioritizingRoomTypeId > 0) :
						$countNotPrioritizing = count($this->item->roomTypes) - 1;
                    endif;

					foreach ($this->item->roomTypes as $roomType) :
						if (isset($roomType->defaultTariffBreakDown)) :
							$defaultTariffBreakDownHtml = '<table class=\"tariff-break-down\">';
							foreach ($roomType->defaultTariffBreakDown as $key => $breakDownDetails) :
								if ($key % 7 == 0 && $key == 0) :
									$defaultTariffBreakDownHtml .= '<tr>';
                                elseif ($key % 7 == 0) :
									$defaultTariffBreakDownHtml .= '</tr><tr>';
								endif;
								$tmpKey                     = key($breakDownDetails);
								$defaultTariffBreakDownHtml .= '<td><p>' . $this->dayMapping[$tmpKey] . '</p><span class=\"' . $this->tariffNetOrGross . '\">' . $breakDownDetails[$tmpKey][$this->tariffNetOrGross]->format() . '</span>';
							endforeach;
							$defaultTariffBreakDownHtml .= '</tr></table>';

							$this->document->addScriptDeclaration('
					Solidres.jQuery(function($){
						$(".default_tariff_break_down_' . $roomType->id . '").popover({
							html: true,
							content: "' . $defaultTariffBreakDownHtml . '",
							title: "' . JText::_('SR_TARIFF_BREAK_DOWN') . '",
							placement: "bottom",
							trigger: "click"
						});
					});
				');
						endif;

						if (isset($roomType->complexTariffBreakDown)) :
							$complexTariffBreakDownHtml = '<table class=\"tariff-break-down\">';
							foreach ($roomType->complexTariffBreakDown as $key => $breakDownDetails) :
								if ($key % 7 == 0 && $key == 0) :
									$complexTariffBreakDownHtml .= '<tr>';
                                elseif ($key % 7 == 0) :
									$complexTariffBreakDownHtml .= '</tr><tr>';
								endif;
								$tmpKey                     = key($breakDownDetails);
								$complexTariffBreakDownHtml .= '<td><p>' . $this->dayMapping[$tmpKey] . '</p><span class=\"' . $this->tariffNetOrGross . '\">' . $breakDownDetails[$tmpKey][$this->tariffNetOrGross]->format() . '</span>';
							endforeach;

							$complexTariffBreakDownHtml .= '</tr></table>';
							$this->document->addScriptDeclaration('
					Solidres.jQuery(function($){
						$(".complex_tariff_break_down_' . $roomType->id . '").popover({
							html: true,
							content: "' . $complexTariffBreakDownHtml . '",
							title: "' . JText::_('SR_TARIFF_BREAK_DOWN') . '",
							placement: "bottom",
							trigger: "click"
						});
					});
				');
						endif;

						$this->document->addScriptDeclaration('
				Solidres.jQuery(function($){
					$(".sr-photo-' . $roomType->id . '").colorbox({rel:"sr-photo-' . $roomType->id . '", transition:"fade", width: "98%", height: "98%", className: "colorbox-w"});
					$(".carousel").carousel();
				});
			');

						$rowCSSClass                        = ($count % 2) ? ' even' : ' odd';
						$rowCSSClass                        .= $roomType->featured == 1 ? ' featured' : '';
						$rowCSSClass                        .= ' room_type_row';
						$currentSelectedRoomNumberPerTariff = array();

						if (!is_array($roomType->params)) :
							$roomType->params = json_decode($roomType->params, true);
						endif;

						$skipRoomForm = false;
						if (isset($roomType->params['skip_room_form']) && $roomType->params['skip_room_form'] == 1) :
							$skipRoomForm = true;
						endif;

						$isExclusive = false;
						if (isset($roomType->params['is_exclusive']) && $roomType->params['is_exclusive'] == 1) :
							$isExclusive = true;
						endif;

						$showRemainingRooms = true;
						if (isset($roomType->params['show_number_remaining_rooms']) && $roomType->params['show_number_remaining_rooms'] == 0) :
							$showRemainingRooms = false;
						endif;

						$showMoreInfo = true;
						if (isset($roomType->params['show_more_info_button']) && $roomType->params['show_more_info_button'] == 0) :
							$showMoreInfo = false;
						endif;

						$roomType->text = $roomType->description;
						JFactory::getApplication()->triggerEvent('onContentPrepare', array('com_solidres.roomtype', &$roomType, &$roomType->params, 0));

						$isPrioritizingRoomType = false;
						if ($this->prioritizingRoomTypeId == $roomType->id) :
							$isPrioritizingRoomType = true;
							$rowCSSClass .= " prioritizing";
							$prioritizingRoomTypeName = $roomType->name;
						endif;

					    if ($this->prioritizingRoomTypeId > 0 && $count == 2) :
                            if ($countNotPrioritizing > 1) :
                                $msg = 'SR_PRIORITIZING_ROOMTYPE_NOTICE';
                            else:
	                            $msg = 'SR_PRIORITIZING_ROOMTYPE_NOTICE_1';
                            endif;

                            echo '<div class="prioritizing-roomtype-notice">' . JText::sprintf($msg, $prioritizingRoomTypeName, $countNotPrioritizing) . '</div>';
                        endif;
						?>

                        <div class="<?php echo SR_UI_GRID_CONTAINER ?> <?php echo $rowCSSClass ?> "
                             id="room_type_row_<?php echo $roomType->id ?>"
                             <?php echo $this->prioritizingRoomTypeId > 0 && !$isPrioritizingRoomType ? 'style="display: none"' : '' ?>
                        >
                            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                        <div class="inner">
                                            <h4 class="roomtype_name" id="srt_<?php echo $roomType->id ?>">
									<span class="label label-default">
										<?php echo $roomType->occupancy_max > 0 ? $roomType->occupancy_max : (int) $roomType->occupancy_adult + (int) $roomType->occupancy_child ?>
                                        <i class="fa fa-user"></i>
									</span>

												<?php echo $roomType->name; ?>
												<?php if ($roomType->featured == 1) : ?>
                                                    <span class="label label-info"><?php echo JText::_('SR_FEATURED_ROOM_TYPE') ?></span>
												<?php endif ?>
                                                <?php if ($isPrioritizingRoomType) : ?>
                                                    <span class="label label-warning"><?php echo JText::_('SR_PRIORITIZING_ROOM_TYPE') ?></span>
                                                <?php endif ?>
                                            </h4>
                                        </div>
                                    </div>
                                </div>

                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                    <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                                        <div class="inner">
											<?php
											if (!empty($roomType->media)) :
												echo '<div id="carousel' . $roomType->id . '" class="carousel slide">';
												echo '<div class="carousel-inner">';
												$countMedia = 0;
												$active     = '';
												foreach ($roomType->media as $media) :
													$active = ($countMedia == 0) ? 'active' : '';
													?>
                                                    <div class="<?php echo SR_UI_CAROUSEL_ITEM ?> <?php echo $active ?>">
                                                        <a class="room_type_details sr-photo-<?php echo $roomType->id ?>"
                                                           href="<?php echo $this->solidresMedia->getMediaUrl($media->value); ?>">
                                                            <img src="<?php echo $this->solidresMedia->getMediaUrl($media->value, 'roomtype_medium'); ?>"
                                                                 alt="<?php echo $roomType->name ?>"/>
                                                        </a>
                                                    </div>
													<?php
													$countMedia++;
												endforeach;
												echo '</div>';
												echo '<a class="carousel-control left" href="#carousel' . $roomType->id . '" data-slide="prev">&lsaquo;</a>';
												echo '<a class="carousel-control right" href="#carousel' . $roomType->id . '" data-slide="next">&rsaquo;</a>';
												echo '</div>';
											endif;
											?>
                                        </div>
                                    </div>

                                    <div class="<?php echo SR_UI_GRID_COL_8 ?>">
                                        <div class="inner">
                                            <div class="roomtype_desc">
												<?php echo $roomType->text ?>
                                            </div>
											<?php
											if (!$this->isFresh && !empty($roomType->availableTariffs) && $showRemainingRooms) :
												if (isset($roomType->totalAvailableRoom)) :
													?>
                                                    <p>
									<span class="num_rooms_available_msg"
                                          id="num_rooms_available_msg_<?php echo $roomType->id ?>"
                                          data-original-text="<?php echo JText::plural('SR_WE_HAVE_X_' . ($roomType->is_private ? 'ROOM' : 'BED') . '_LEFT', $roomType->totalAvailableRoom) ?>">
										<?php echo JText::plural('SR_WE_HAVE_X_' . ($roomType->is_private ? 'ROOM' : 'BED') . '_LEFT', $roomType->totalAvailableRoom) ?>
									</span>
                                                    </p>
												<?php
												endif;
											endif;
											?>

											<?php if (!empty($roomType->facilities)): ?>
												<?php echo SRLayoutHelper::render('facility.facility', array('facilities' => $roomType->facilities)); ?>
											<?php endif; ?>

											<?php if ($showMoreInfo) : ?>
                                                <button type="button" class="btn btn-default toggle_more_desc"
                                                        data-target="<?php echo $roomType->id ?>">
                                                    <i class="fa fa-eye"></i>
													<?php echo JText::_('SR_SHOW_MORE_INFO') ?>
                                                </button>
											<?php endif ?>

											<?php if ($this->config->get('availability_calendar_enable', 1)) : ?>
                                                <button type="button" data-roomtypeid="<?php echo $roomType->id ?>"
                                                        class="btn btn-default load-calendar">
                                                    <i class="fa fa-calendar"></i> <?php echo JText::_('SR_AVAILABILITY_CALENDAR_VIEW') ?>
                                                </button>
											<?php endif ?>

											<?php if (SRPlugin::isEnabled('complextariff') && $this->showTariffs) : ?>
                                                <button type="button" data-roomtypeid="<?php echo $roomType->id ?>"
                                                        class="btn btn-default toggle-tariffs">
													<?php if ($this->showTariffs) : ?>
                                                        <i class="fa fa-compress"></i> <?php echo JText::_('SR_HIDE_TARIFFS') ?>
													<?php else : ?>
                                                        <i class="fa fa-expand"></i> <?php echo JText::_('SR_SHOW_TARIFFS') ?>
													<?php endif ?>
                                                </button>
											<?php endif ?>

                                            <div class="unstyled more_desc" id="more_desc_<?php echo $roomType->id ?>"
                                                 style="display: none">
												<?php
												if (!empty($roomType->roomtype_custom_fields['room_facilities'])) :
													echo '<p><strong>' . JText::_('SR_ROOM_FACILITIES') . ':</strong> ' . $roomType->roomtype_custom_fields['room_facilities'] . '</p>';
												endif;

												if (!empty($roomType->roomtype_custom_fields['room_size'])) :
													echo '<p><strong>' . JText::_('SR_ROOM_SIZE') . ':</strong> ' . $roomType->roomtype_custom_fields['room_size'] . '</p>';
												endif;

												if (!empty($roomType->roomtype_custom_fields['bed_size'])) :
													echo '<p><strong>' . JText::_('SR_BED_SIZE') . ':</strong> ' . $roomType->roomtype_custom_fields['bed_size'] . '</p>';
												endif;

												if (!empty($roomType->roomtype_custom_fields['taxes'])) :
													echo '<p><strong>' . JText::_('SR_TAXES') . ':</strong> ' . $roomType->roomtype_custom_fields['taxes'] . '</p>';
												endif;

												if (!empty($roomType->roomtype_custom_fields['prepayment'])) :
													echo '<p><strong>' . JText::_('SR_PREPAYMENT') . ':</strong> ' . $roomType->roomtype_custom_fields['prepayment'] . '</p>';
												endif;

												?>
                                            </div>
                                        </div>
                                    </div> <!-- end of span8 -->
                                </div> <!-- end of row-fluid -->

								<?php if ($this->config->get('availability_calendar_enable', 1)) : ?>
                                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                        <div class="<?php echo SR_UI_GRID_COL_12 ?> availability-calendar"
                                             id="availability-calendar-<?php echo $roomType->id ?>"
                                             style="display: none">
                                        </div>
                                    </div>
								<?php endif ?>

								<?php if (SRPlugin::isEnabled('flexsearch')) :
									$layout = SRLayoutHelper::getInstance();
									$layout->addIncludePath(SRPlugin::getLayoutPath('flexsearch'));
									echo $layout->render('roomtype.flexsearch', array('roomType' => $roomType, 'bookingType' => $this->item->booking_type, 'enableAutoScroll' => $this->enableAutoScroll));
								endif ?>

								<?php if (!SRPlugin::isEnabled('flexsearch') || (SRPlugin::isEnabled('flexsearch') && empty($roomType->otherAvailableDates))) : ?>
                                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>"
                                         id="tariff-holder-<?php echo $roomType->id ?>"
                                         style="<?php echo !$this->disableOnlineBooking || $this->showTariffs ? '' : 'display: none' ?>">
                                        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                            <div class="inner">
												<?php
												if (!$this->isFresh) :
													if (!empty($roomType->availableTariffs)) :

														$countRatePerRoomType = 0;
														$countRatePerRoom     = 0;
														if ($roomType->number_of_room == $roomType->totalAvailableRoom) :
															foreach ($roomType->availableTariffs as $tariffKey => $tariffInfo) :

																if ($tariffInfo['tariffType'] != 4) :
																	$countRatePerRoom++;
																	continue;
																endif;

																$minPrice = $this->appendPriceSuffix(
																	$tariffInfo['val'],
																	$tariffInfo['tariffType'],
																	$this->item->booking_type,
																	($this->item->booking_type == 0 ? $this->stayLength : $this->stayLength + 1),
																	$tariffInfo['val_original'],
																	$roomType->is_private,
																	$tariffInfo['adults'],
																	$tariffInfo['children']
																);

																$layout = SRLayoutHelper::getInstance();
																echo $layout->render('asset.tariff_book', array(
																		'item'                 => $this->item,
																		'Itemid'               => $this->itemid,
																		'roomType'             => $roomType,
																		'bookingType'          => $this->item->booking_type,
																		'disableOnlineBooking' => $this->disableOnlineBooking,
																		'minPrice'             => $minPrice,
																		'tariffKey'            => $tariffKey,
																		'tariffInfo'           => $tariffInfo,
																		'stayLength'           => $this->stayLength,
																		'selectedRoomTypes'    => $this->selectedRoomTypes,
																		'skipRoomForm'         => $skipRoomForm,
																		'isExclusive'          => $isExclusive,
																		'showRemainingRooms'   => $showRemainingRooms
																	)
																);
																$countRatePerRoomType++;
															endforeach;
														endif;

														if ($countRatePerRoomType > 0 && $countRatePerRoom > 0) :
															echo '<div class="tariff-sep"></div>';
														endif;

														foreach ($roomType->availableTariffs as $tariffKey => $tariffInfo) :

															if ($tariffInfo['tariffType'] == 4) continue;

															$minPrice = $this->appendPriceSuffix(
																$tariffInfo['val'],
																$tariffInfo['tariffType'],
																$this->item->booking_type,
																($this->item->booking_type == 0 ? $this->stayLength : $this->stayLength + 1),
																$tariffInfo['val_original'],
																$roomType->is_private,
																$tariffInfo['adults'],
																$tariffInfo['children']
															);

															$layout = SRLayoutHelper::getInstance();
															echo $layout->render('asset.tariff_book', array(
																	'item'                 => $this->item,
																	'Itemid'               => $this->itemid,
																	'roomType'             => $roomType,
																	'bookingType'          => $this->item->booking_type,
																	'disableOnlineBooking' => $this->disableOnlineBooking,
																	'minPrice'             => $minPrice,
																	'tariffKey'            => $tariffKey,
																	'tariffInfo'           => $tariffInfo,
																	'stayLength'           => $this->stayLength,
																	'selectedRoomTypes'    => $this->selectedRoomTypes,
																	'skipRoomForm'         => $skipRoomForm,
																	'isExclusive'          => $isExclusive,
																    'showRemainingRooms'  => $showRemainingRooms
																)
															);
														endforeach;
													else :
														if (SRPlugin::isEnabled('flexsearch') && !empty($roomType->otherAvailableDates)) :

														else :
															$link = JRoute::_('index.php?option=com_solidres&view=reservationasset&id=' . $this->item->id . ($this->enableAutoScroll ? '#form' : ''));
															echo '<div class="alert alert-notice">' . JText::sprintf('SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT', $this->checkinFormatted, $this->checkoutFormatted, $link) . '</div>';
														endif;
													endif;
												endif;

												if ($this->isFresh && $this->showTariffs == 1 && isset($roomType->tariffs) && is_array($roomType->tariffs)) :

													$countRatePerRoomType = 0;
													foreach ($roomType->tariffs as $tariff) :

														if ($tariff->type != 4) continue;
														$minPrice = $this->getMinPrice($tariff, $roomType);
														$layout   = SRLayoutHelper::getInstance();
														echo $layout->render('asset.tariff_list', array(
																'item'                 => $this->item,
																'Itemid'               => $this->itemid,
																'roomType'             => $roomType,
																'bookingType'          => $this->item->booking_type,
																'disableOnlineBooking' => $this->disableOnlineBooking,
																'tariff'               => $tariff,
																'minPrice'             => $minPrice
															)
														);
														$countRatePerRoomType++;

													endforeach; // end foreach of complex tariffs

													if ($countRatePerRoomType > 0) :
														echo '<div class="tariff-sep"></div>';
													endif;

													foreach ($roomType->tariffs as $tariff) :

														if ($tariff->type == 4) continue;
														$minPrice = $this->getMinPrice($tariff, $roomType);
														$layout   = SRLayoutHelper::getInstance();
														echo $layout->render('asset.tariff_list', array(
																'item'                 => $this->item,
																'Itemid'               => $this->itemid,
																'roomType'             => $roomType,
																'bookingType'          => $this->item->booking_type,
																'disableOnlineBooking' => $this->disableOnlineBooking,
																'tariff'               => $tariff,
																'minPrice'             => $minPrice
															)
														);

													endforeach;
												endif ?>
                                            </div>
                                        </div> <!-- end of span12 -->
                                    </div> <!-- end of row-fluid and #tariff-holder -->
								<?php endif ?>
                            </div>  <!-- end of span12 -->
                        </div> <!-- end of row-fluid -->
						<?php
						$count++;
					endforeach
					?>
				<?php
				else :
					?>
                    <div class="alert alert-warning">
						<?php
						echo JText::sprintf('SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS',
							JDate::getInstance($this->checkin, $this->timezone)->format($this->dateFormat, true),
							JDate::getInstance($this->checkout, $this->timezone)->format($this->dateFormat, true)
						);
						?>
                        <a class=""
                           href="<?php echo JRoute::_('index.php?option=com_solidres&task=reservationasset.startOver&id=' . $this->item->id) ?>"><i
                                    class="fa fa-refresh"></i> <?php echo JText::_('SR_SEARCH_RESET') ?></a>
                    </div>
				<?php
				endif;
				?>

				<?php if (!$this->isFresh && count($this->item->roomTypes) > 0) : ?>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
                        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
                            <div class="inner">
                                <p><?php echo JText::_('SR_ROOMINFO_STEP_NOTICE_MESSAGE') ?></p>
                            </div>
                        </div>
                        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                            <div class="inner">
                                <div class="btn-group">
                                    <button data-step="room" type="submit" class="btn btn-success">
                                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                                    </button>
                                </div>
                            </div>
                        </div>
                    </div>
				<?php endif ?>

                <input type="hidden" name="jform[raid]" value="<?php echo $this->item->id ?>"/>
                <input type="hidden" name="jform[next_step]" value="guestinfo"/>
                <input type="hidden" name="jform[bookingconditions]"
                       value="<?php echo $this->item->params['termsofuse'] ?>"/>
                <input type="hidden" name="jform[privacypolicy]"
                       value="<?php echo $this->item->params['privacypolicy'] ?>"/>

				<?php echo JHtml::_('form.token'); ?>
            </form>
        </div>
        <!-- /Tab 1 -->

    </div>

    <div class="step-pane" id="step2">
        <!-- Tab 2 -->
        <div class="reservation-single-step-holder guestinfo nodisplay">
        </div>
        <!-- /Tab 2 -->
    </div>

    <div class="step-pane" id="step3">
        <!-- Tab 3 -->
        <div class="reservation-single-step-holder confirmation nodisplay">
        </div>
        <!-- /Tab 3 -->
    </div>

</div>views/reservationasset/tmpl/default_checkavailability.php000060400000046671150751740420020162 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_checkavailability.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

$config                = JFactory::getConfig();
$minDaysBookInAdvance  = $this->config->get('min_days_book_in_advance', 0);
$maxDaysBookInAdvance  = $this->config->get('max_days_book_in_advance', 0);
$minLengthOfStay       = $this->config->get('min_length_of_stay', 1);
$datePickerMonthNum    = $this->config->get('datepicker_month_number', 3);
$weekStartDay          = $this->config->get('week_start_day', 1);
$dateFormat            = $this->config->get('date_format', 'd-m-Y');
$tzoffset              = $config->get('offset');
$timezone              = new DateTimeZone($tzoffset);
$roomsOccupancyOptions = $this->app->getUserState($this->context . '.room_opt', array());

$dateCheckIn = JDate::getInstance();
if (empty($this->checkin)) :
	$dateCheckIn->add(new DateInterval('P' . ($minDaysBookInAdvance) . 'D'))->setTimezone($timezone);
endif;

$dateCheckOut = JDate::getInstance();
if (empty($this->checkout)) :
	$dateCheckOut->add(new DateInterval('P' . ($minDaysBookInAdvance + $minLengthOfStay) . 'D'))->setTimezone($timezone);
endif;

$jsDateFormat               = SRUtilities::convertDateFormatPattern($dateFormat);
$roomsOccupancyOptionsCount = count($roomsOccupancyOptions);
$maxRooms                   = isset($this->item->params['max_room_number']) ? $this->item->params['max_room_number'] : 10;
$maxAdults                  = isset($this->item->params['max_adult_number']) ? $this->item->params['max_adult_number'] : 10;
$maxChildren                = isset($this->item->params['max_child_number']) ? $this->item->params['max_child_number'] : 10;
$hideRoomQuantity           = isset($this->item->params['hide_room_quantity']) ? $this->item->params['hide_room_quantity'] : 0;
$mergeAdultChild            = isset($this->item->params['merge_adult_child']) ? $this->item->params['merge_adult_child'] : 0;

$defaultCheckinDate  = '';
$defaultCheckoutDate = '';
if (!empty($this->checkin))
{
	$this->checkinModule  = JDate::getInstance($this->checkin, $timezone);
	$this->checkoutModule = JDate::getInstance($this->checkout, $timezone);
	// These variables are used to set the defaultDate of datepicker
	$defaultCheckinDate  = $this->checkinModule->format('Y-m-d', true);
	$defaultCheckoutDate = $this->checkoutModule->format('Y-m-d', true);
}

if (!empty($defaultCheckinDate)) :
	$defaultCheckinDateArray    = explode('-', $defaultCheckinDate);
	$defaultCheckinDateArray[1] -= 1; // month in javascript is less than 1 in compare with month in PHP
endif;

if (!empty($defaultCheckoutDate)) :
	$defaultCheckoutDateArray    = explode('-', $defaultCheckoutDate);
	$defaultCheckoutDateArray[1] -= 1; // month in javascript is less than 1 in compare with month in PHP
endif;

$doc = JFactory::getDocument();
JHtml::_('script', SRURI_MEDIA . '/assets/js/datePicker/localization/jquery.ui.datepicker-' . JFactory::getLanguage()->getTag() . '.js', false, false);
$doc->addScriptDeclaration('
	Solidres.jQuery(function($) {
		var minLengthOfStay = ' . $minLengthOfStay . ';
		var checkout = $("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkout_datepicker_inline_module").datepicker({
			minDate : "+' . ($minDaysBookInAdvance + $minLengthOfStay) . '",
			numberOfMonths : ' . $datePickerMonthNum . ',
			showButtonPanel : true,
			dateFormat : "' . $jsDateFormat . '",
			firstDay: ' . $weekStartDay . ',
			' . (!empty($this->checkout) ? 'defaultDate: new Date(' . implode(',', $defaultCheckoutDateArray) . '),' : '') . '
			onSelect: function() {
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' input[name=\'checkout\']").val($.datepicker.formatDate("yy-mm-dd", $(this).datepicker("getDate")));
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkout_module").text($.datepicker.formatDate("' . $jsDateFormat . '", $(this).datepicker("getDate")));
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkout_datepicker_inline_module").slideToggle();
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkin_module").removeClass("disabledCalendar");
			}
		});
		var checkin = $("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkin_datepicker_inline_module").datepicker({
			minDate : "+' . $minDaysBookInAdvance . 'd",
			' . ($maxDaysBookInAdvance > 0 ? 'maxDate: "+' . ($maxDaysBookInAdvance) . '",' : '') . '
			numberOfMonths : ' . $datePickerMonthNum . ',
			showButtonPanel : true,
			dateFormat : "' . $jsDateFormat . '",
			' . (!empty($this->checkin) ? 'defaultDate: new Date(' . implode(',', $defaultCheckinDateArray) . '),' : '') . '
			onSelect : function() {
				var currentSelectedDate = $(this).datepicker("getDate");
				var checkoutMinDate = $(this).datepicker("getDate", "+1d");
				checkoutMinDate.setDate(checkoutMinDate.getDate() + minLengthOfStay);
				checkout.datepicker( "option", "minDate", checkoutMinDate );
				checkout.datepicker( "setDate", checkoutMinDate);
				
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' input[name=\'checkin\']").val($.datepicker.formatDate("yy-mm-dd", currentSelectedDate));
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' input[name=\'checkout\']").val($.datepicker.formatDate("yy-mm-dd", checkoutMinDate));
				
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkin_module").text($.datepicker.formatDate("' . $jsDateFormat . '", currentSelectedDate));
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkout_module").text($.datepicker.formatDate("' . $jsDateFormat . '", checkoutMinDate));
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkin_datepicker_inline_module").slideToggle();
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkout_module").removeClass("disabledCalendar");
			},
			firstDay: ' . $weekStartDay . '
		});
		$(".ui-datepicker").addClass("notranslate");
		$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkin_module").click(function() {
			if (!$(this).hasClass("disabledCalendar")) {
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkin_datepicker_inline_module").slideToggle("slow", function() {
					if ($(this).is(":hidden")) {
						$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkout_module").removeClass("disabledCalendar");
					} else {
						$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkout_module").addClass("disabledCalendar");
					}
				});
			}
		});
		
		$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkout_module").click(function() {
			if (!$(this).hasClass("disabledCalendar")) {
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkout_datepicker_inline_module").slideToggle("slow", function() {
					if ($(this).is(":hidden")) {
						$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkin_module").removeClass("disabledCalendar");
					} else {
						$("#sr-checkavailability-form-asset-' . $this->item->id . ' .checkin_module").addClass("disabledCalendar");
					}
				});
			}
		});
		
		$("#sr-checkavailability-form-asset-' . $this->item->id . ' .room_quantity").change(function() {
			var curQuantity = $(this).val();
			$("#sr-checkavailability-form-asset-' . $this->item->id . ' .room_num_row").each(function( index ) {
				var index2 = index + 1;
				if (index2 <= curQuantity) {
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' #room_num_row_" + index2).show();
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' #room_num_row_" + index2 + " select").removeAttr("disabled");
			} else {
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' #room_num_row_" + index2).hide();
				$("#sr-checkavailability-form-asset-' . $this->item->id . ' #room_num_row_" + index2 + " select").attr("disabled", "disabled");
			}
			});
		});
		
		if ($("#sr-checkavailability-form-asset-' . $this->item->id . ' .room_quantity").val() > 0) {
			$("#sr-checkavailability-form-asset-' . $this->item->id . ' .room_quantity").trigger("change");
		}
	});
');

$enableRoomQuantity = isset($this->item->params['enable_room_quantity_option']) ? $this->item->params['enable_room_quantity_option'] : 0;

?>

<form id="sr-checkavailability-form-asset-<?php echo $this->item->id ?>"
      action="<?php echo JRoute::_('index.php' . ($this->enableAutoScroll ? '#form' : ''), false) ?>" method="GET"
      class="form-stacked sr-validate">
    <fieldset>
        <input name="id" value="<?php echo $this->item->id ?>" type="hidden"/>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                    <div class="<?php echo $enableRoomQuantity == 0 ? SR_UI_GRID_COL_9 : ($hideRoomQuantity ? SR_UI_GRID_COL_7 : SR_UI_GRID_COL_5) ?>">
                        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <label for="checkin">
									<?php echo JText::_('SR_SEARCH_CHECKIN_DATE') ?>
                                </label>
                                <div class="checkin_module datefield">
									<?php echo !empty($this->checkin) ?
										$this->checkinModule->format($dateFormat, true) :
										$dateCheckIn->format($dateFormat, true) ?>
                                    <i class="fa fa-calendar"></i>
                                </div>
                                <div class="checkin_datepicker_inline_module datepicker_inline"
                                     style="display: none"></div>
								<?php // this field must always be "Y-m-d" as it is used internally only ?>
                                <input type="hidden" name="checkin" value="<?php echo !empty($this->checkin) ?
									$this->checkinModule->format('Y-m-d', true) :
									$dateCheckIn->format('Y-m-d', true) ?>"/>
                            </div>
                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <label for="checkout">
									<?php echo JText::_('SR_SEARCH_CHECKOUT_DATE') ?>
                                </label>
                                <div class="checkout_module datefield">
									<?php echo !empty($this->checkout) ?
										$this->checkoutModule->format($dateFormat, true) :
										$dateCheckOut->format($dateFormat, true)
									?>
                                    <i class="fa fa-calendar"></i>
                                </div>
                                <div class="checkout_datepicker_inline_module datepicker_inline"
                                     style="display: none"></div>
								<?php // this field must always be "Y-m-d" as it is used internally only ?>
                                <input type="hidden" name="checkout" value="<?php echo !empty($this->checkout) ?
									$this->checkoutModule->format('Y-m-d', true) :
									$dateCheckOut->format('Y-m-d', true) ?>"/>
                            </div>
                        </div>
                    </div>
					<?php if ($enableRoomQuantity) : ?>
                        <div class="<?php echo $hideRoomQuantity ? SR_UI_GRID_COL_3 : SR_UI_GRID_COL_5 ?>">
                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
								<?php if ($hideRoomQuantity == 0) : ?>
                                    <div class="<?php echo SR_UI_GRID_COL_3 ?>">
                                        <label><?php echo JText::_('SR_SEARCH_ROOMS') ?></label>
                                        <select class="<?php echo SR_UI_GRID_COL_12 ?> room_quantity"
                                                name="room_quantity">
											<?php for ($room_num = 1; $room_num <= $maxRooms; $room_num++) : ?>
                                                <option <?php echo $room_num == $roomsOccupancyOptionsCount ? 'selected' : '' ?>
                                                        value="<?php echo $room_num ?>"><?php echo $room_num ?></option>
											<?php endfor ?>
                                        </select>
                                    </div>
								<?php else : ?>
                                    <input type="hidden" class="room_quantity" name="room_quantity" value="1"/>
								<?php endif ?>
                                <div class="<?php echo $hideRoomQuantity ? SR_UI_GRID_COL_12 : SR_UI_GRID_COL_9 ?>">
									<?php for ($room_num = 1; $room_num <= $maxRooms; $room_num++) : ?>
                                        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                            <div class="<?php echo SR_UI_GRID_COL_12 ?> room_num_row"
                                                 id="room_num_row_<?php echo $room_num ?>"
                                                 style="<?php echo $room_num > 0 ? 'display: none' : '' ?>">
                                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
													<?php if (!$hideRoomQuantity) : ?>
                                                        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                                                            <label>&nbsp;</label>
															<?php echo JText::_('SR_SEARCH_ROOM') ?> <?php echo $room_num ?>
                                                        </div>
													<?php endif ?>
													<?php if (($hideRoomQuantity && !$mergeAdultChild) || !$hideRoomQuantity) : ?>
                                                        <div class="<?php echo $hideRoomQuantity ? SR_UI_GRID_COL_6 : SR_UI_GRID_COL_4 ?>">
                                                            <label><?php echo JText::_('SR_SEARCH_ROOM_ADULTS') ?></label>
                                                            <select <?php echo $room_num > 0 ? 'disabled' : '' ?>
                                                                    class="<?php echo SR_UI_GRID_COL_12 ?>"
                                                                    name="room_opt[<?php echo $room_num ?>][adults]">
																<?php
																for ($a = 1; $a <= $maxAdults; $a++) :
																	$selected = '';
																	if (isset($roomsOccupancyOptions[$room_num]['adults'])
																		&&
																		($a == $roomsOccupancyOptions[$room_num]['adults'])
																	) :
																		$selected = 'selected';
																	endif;
																	?>
                                                                    <option <?php echo $selected ?>
                                                                            value="<?php echo $a ?>"><?php echo $a ?></option>
																<?php
																endfor
																?>
                                                            </select>
                                                        </div>
                                                        <div class="<?php echo $hideRoomQuantity ? SR_UI_GRID_COL_6 : SR_UI_GRID_COL_4 ?>">
                                                            <label><?php echo JText::_('SR_SEARCH_ROOM_CHILDREN') ?></label>
                                                            <select <?php echo $room_num > 0 ? 'disabled' : '' ?>
                                                                    class="<?php echo SR_UI_GRID_COL_12 ?>"
                                                                    name="room_opt[<?php echo $room_num ?>][children]">
																<?php
																for ($c = 0; $c <= $maxChildren; $c++) :
																	$selected = '';
																	if (isset($roomsOccupancyOptions[$room_num]['children'])
																		&&
																		$c == $roomsOccupancyOptions[$room_num]['children']
																	) :
																		$selected = 'selected';
																	endif;
																	?>
                                                                    <option <?php echo $selected ?>
                                                                            value="<?php echo $c ?>"><?php echo $c ?></option>
																<?php
																endfor
																?>
                                                            </select>
                                                        </div>
													<?php else : ?>
                                                        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                                            <label><?php echo JText::_('SR_SEARCH_GUESTS') ?></label>
                                                            <select <?php echo $room_num > 0 ? 'disabled' : '' ?>
                                                                    class="form-control input-block-level"
                                                                    name="room_opt[<?php echo $room_num ?>][guests]">
																<?php
																for ($a = 1; $a <= $maxAdults; $a++) :
																	$selected = '';
																	if (isset($roomsOccupancyOptions[$room_num]['guests'])
																		&&
																		($a == $roomsOccupancyOptions[$room_num]['guests'])
																	) :
																		$selected = 'selected';
																	endif;
																	?>
                                                                    <option <?php echo $selected ?>
                                                                            value="<?php echo $a ?>"><?php echo $a ?></option>
																<?php
																endfor
																?>
                                                            </select>
                                                        </div>
													<?php endif ?>
                                                </div>
                                            </div>
                                        </div>
									<?php endfor; ?>
                                </div>
                            </div>
                        </div>
					<?php endif ?>
                    <div class="<?php echo $enableRoomQuantity == 0 ? SR_UI_GRID_COL_3 : SR_UI_GRID_COL_2 ?>">
                        <div class="action">
                            <label>&nbsp;</label>
                            <button class="btn btn-default btn-block primary" type="submit"><i
                                        class="fa fa-search"></i> <?php echo JText::_('SR_SEARCH') ?></button>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </fieldset>

    <input type="hidden" name="option" value="com_solidres"/>
    <input type="hidden" name="task" value="reservationasset.checkavailability"/>
    <input type="hidden" name="Itemid" value="<?php echo $this->itemid ?>"/>
	<?php echo JHtml::_('form.token'); ?>
</form>
views/reservationasset/tmpl/default_searchinfo.php000060400000010601150751740420016613 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_searchinfo.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

$dateCheckIn             = JDate::getInstance();
$dateCheckOut            = JDate::getInstance();
$showDateInfo            = !empty($this->checkin) && !empty($this->checkout);
$showAssetRemainingRooms = $this->config->get('show_asset_remaining_rooms', 1);
?>

<div id="availability-search">
	<?php if ($this->checkin && $this->checkout && count($this->item->roomTypes) > 0 && $showAssetRemainingRooms) : ?>
        <div class="alert alert-info availability-search-info">
			<?php

			if ($this->item->roomsOccupancyOptionsAdults == 0 && $this->item->roomsOccupancyOptionsChildren == 0) :
				echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG4',
					$this->item->totalAvailableRoom,
					$this->checkinFormatted,
					$this->checkoutFormatted
				);
			else :
				if ($this->item->totalOccupancyMax >= ($this->item->roomsOccupancyOptionsAdults + $this->item->roomsOccupancyOptionsChildren) && $this->item->totalAvailableRoom > 0) :
					if ($this->item->totalAvailableRoom >= $this->item->roomsOccupancyOptionsCount) :
						echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG1',
							$this->item->totalAvailableRoom,
							$this->checkinFormatted,
							$this->checkoutFormatted,
							$this->item->roomsOccupancyOptionsAdults,
							$this->item->roomsOccupancyOptionsChildren
						);
					else:
						echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG2',
							$this->item->totalAvailableRoom,
							$this->checkinFormatted,
							$this->checkoutFormatted,
							$this->item->roomsOccupancyOptionsAdults,
							$this->item->roomsOccupancyOptionsChildren
						);
					endif;
				else :
					echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG3',
						$this->checkinFormatted,
						$this->checkoutFormatted,
						$this->item->roomsOccupancyOptionsAdults,
						$this->item->roomsOccupancyOptionsChildren
					);

				endif;
			endif;
			?>
            <a class=""
               href="<?php echo JRoute::_('index.php?option=com_solidres&task=reservationasset.startOver&id=' . $this->item->id . '&Itemid=' . $this->itemid, false) ?>"><i
                        class="fa fa-refresh"></i> <?php echo JText::_('SR_SEARCH_RESET') ?></a>
        </div>
	<?php endif; ?>

    <form id="sr-checkavailability-form-component"
          action="<?php echo JRoute::_('index.php?option=com_solidres&view=reservationasset&id=' . $this->item->id . '&Itemid=' . $this->itemid, false); ?>"
          method="GET"
    >

        <input type="hidden"
               name="checkin"
               value="<?php echo !empty($this->checkin) ? $this->checkin : $dateCheckIn->add(new DateInterval('P' . ($this->minDaysBookInAdvance) . 'D'))->setTimezone($this->timezone)->format('d-m-Y', true) ?>"
        />

        <input type="hidden"
               name="checkout"
               value="<?php echo !empty($this->checkout) ? $this->checkout : $dateCheckOut->add(new DateInterval('P' . ($this->minDaysBookInAdvance + $this->minLengthOfStay) . 'D'))->setTimezone($this->timezone)->format('d-m-Y', true) ?>"
        />
        <input type="hidden" name="Itemid" value="<?php echo $this->itemid ?>"/>
        <input type="hidden" name="id" value="<?php echo $this->item->id ?>"/>
        <input type="hidden" name="task" value="reservationasset.checkavailability"/>
        <input type="hidden" name="option" value="com_solidres"/>
        <input type="hidden" name="ts" value=""/>
		<?php echo JHtml::_('form.token'); ?>
    </form>
</div>

views/reservationasset/tmpl/default_searchinfo_style2.php000060400000010740150751740420020121 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_searchinfo_style2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

$dateCheckIn             = JDate::getInstance();
$dateCheckOut            = JDate::getInstance();
$showDateInfo            = !empty($this->checkin) && !empty($this->checkout);
$showAssetRemainingRooms = $this->config->get('show_asset_remaining_rooms', 1);
?>

<div class="availability-search">
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <h3><i class="fa fa-check-square"></i> <?php echo JText::_('SR_AVAILABLE_ROOMS') ?></h3>
        </div>
    </div>
</div>

<?php if ($this->checkin && $this->checkout && count($this->item->roomTypes) > 0 && $showAssetRemainingRooms) : ?>
    <div class="availability-search-info">
		<?php

		if ($this->item->roomsOccupancyOptionsAdults == 0 && $this->item->roomsOccupancyOptionsChildren == 0) :
			echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG4',
				$this->item->totalAvailableRoom,
				$this->checkinFormatted,
				$this->checkoutFormatted
			);
		else :
			if ($this->item->totalOccupancyMax >= ($this->item->roomsOccupancyOptionsAdults + $this->item->roomsOccupancyOptionsChildren) && $this->item->totalAvailableRoom > 0) :
				if ($this->item->totalAvailableRoom >= $this->item->roomsOccupancyOptionsCount) :
					echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG1',
						$this->item->totalAvailableRoom,
						$this->checkinFormatted,
						$this->checkoutFormatted,
						$this->item->roomsOccupancyOptionsAdults,
						$this->item->roomsOccupancyOptionsChildren
					);
				else:
					echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG2',
						$this->item->totalAvailableRoom,
						$this->checkinFormatted,
						$this->checkoutFormatted,
						$this->item->roomsOccupancyOptionsAdults,
						$this->item->roomsOccupancyOptionsChildren
					);
				endif;
			else :
				echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG3',
					$this->checkinFormatted,
					$this->checkoutFormatted,
					$this->item->roomsOccupancyOptionsAdults,
					$this->item->roomsOccupancyOptionsChildren
				);

			endif;
		endif;
		?>
        <a class=""
           href="<?php echo JRoute::_('index.php?option=com_solidres&task=reservationasset.startOver&id=' . $this->item->id . '&Itemid=' . $this->itemid, false) ?>"><i
                    class="fa fa-refresh"></i> <?php echo JText::_('SR_SEARCH_RESET') ?></a>
    </div>
<?php endif; ?>

<form id="sr-checkavailability-form-component"
      action="<?php echo JRoute::_('index.php?option=com_solidres&view=reservationasset&id=' . $this->item->id . '&Itemid=' . $this->itemid, false); ?>"
      method="GET"
>

    <input type="hidden"
           name="checkin"
           value="<?php echo !empty($this->checkin) ? $this->checkin : $dateCheckIn->add(new DateInterval('P' . ($this->minDaysBookInAdvance) . 'D'))->setTimezone($this->timezone)->format('d-m-Y', true) ?>"
    />

    <input type="hidden"
           name="checkout"
           value="<?php echo !empty($this->checkout) ? $this->checkout : $dateCheckOut->add(new DateInterval('P' . ($this->minDaysBookInAdvance + $this->minLengthOfStay) . 'D'))->setTimezone($this->timezone)->format('d-m-Y', true) ?>"
    />
    <input type="hidden" name="Itemid" value="<?php echo $this->itemid ?>"/>
    <input type="hidden" name="id" value="<?php echo $this->item->id ?>"/>
    <input type="hidden" name="task" value="reservationasset.checkavailability"/>
    <input type="hidden" name="option" value="com_solidres"/>
    <input type="hidden" name="ts" value=""/>
	<?php echo JHtml::_('form.token'); ?>
</form>views/reservationasset/tmpl/default_roomtype_style3.php000060400000072527150751740420017672 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_roomtype_style3.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

echo SRLayoutHelper::render('asset.coupon_form', array(
	'asset'   => $this->item,
	'coupon'  => $this->coupon,
	'isFresh' => $this->isFresh
));

$totalRoomTypeCount = count($this->item->roomTypes);

?>
<a name="form"></a>

<?php if (!empty($this->item->email) || !empty($this->item->params['show_inquiry_form'])): ?>
	<?php echo $this->loadTemplate('inquiry_form'); ?>
<?php endif; ?>
<?php if (isset($this->item->params['show_inline_checkavailability_form'])
	&& $this->item->params['show_inline_checkavailability_form'] == 1
	&& !$this->disableOnlineBooking
) : ?>

    <div id="asset-checkavailability-form">
        <h4><?php echo JText::_('SR_YOUR_STAY') ?></h4>
		<?php echo $this->loadTemplate('checkavailability'); ?>
    </div>
<?php endif ?>

<div id="availability-search">
	<?php
	if ($this->prioritizingRoomTypeId == 0) :
	    echo $this->loadTemplate('searchinfo' . ((defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? '_' . SR_LAYOUT_STYLE : ''));
	endif;
	?>
</div>

<?php if (!$this->disableOnlineBooking) : ?>
    <div class="wizard wizard-style">
        <ul class="steps">
            <li data-target="#step1" class="active reservation-tab reservation-tab-room <?php echo SR_UI_GRID_COL_4 ?>">
                <span class="badge">1</span>
                <h5><?php echo JText::_('SR_STEP_ROOM_AND_RATE') ?></h5>
            </li>
            <li data-target="#step2" class="reservation-tab reservation-tab-guestinfo <?php echo SR_UI_GRID_COL_4 ?>">
                <span class="badge">2</span>
                <h5><?php echo JText::_('SR_STEP_GUEST_INFO_AND_PAYMENT') ?></h5>
            </li>
            <li data-target="#step3"
                class="reservation-tab reservation-tab-confirmation <?php echo SR_UI_GRID_COL_4 ?>">
                <span class="badge">3</span>
                <h5><?php echo JText::_('SR_STEP_CONFIRMATION') ?></h5>
            </li>
        </ul>
    </div>
<?php endif ?>

<div class="step-content">
    <div class="step-pane active" id="step1">
        <!-- Tab 1 -->
        <div class="reservation-single-step-holder room room-grid">
            <form enctype="multipart/form-data"
                  id="sr-reservation-form-room"
                  class="sr-reservation-form"
                  action="<?php echo JUri::base() ?>index.php?option=com_solidres&task=reservation.process&step=room&format=json"
                  method="POST">
				<?php if ($totalRoomTypeCount > 0) : ?>
					<?php if (!$this->isFresh) : ?>
                        <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-top">
                            <div class="<?php echo SR_UI_GRID_COL_8 ?>">
                                <div class="inner">
                                    <strong><?php echo JText::_('SR_ROOMINFO_STEP_NOTICE_MESSAGE') ?></strong>
                                </div>
                            </div>
                            <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                                <div class="inner">
                                    <div class="btn-group">
                                        <button data-step="room" type="submit" class="btn btn-success">
                                            <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                                        </button>
                                    </div>
                                </div>
                            </div>
                        </div>
					<?php endif ?>

					<?php
					$count       = 1;
					$roomTypeIdx = 0;
					$prioritizingRoomTypeName = '';
					$countNotPrioritizing = 0;
					if ($this->prioritizingRoomTypeId > 0) :
						$countNotPrioritizing = count($this->item->roomTypes) - 1;
					endif;

					foreach ($this->item->roomTypes as $roomType) :
						if (isset($roomType->defaultTariffBreakDown)) :
							$defaultTariffBreakDownHtml = '<table class=\"tariff-break-down\">';
							foreach ($roomType->defaultTariffBreakDown as $key => $breakDownDetails) :
								if ($key % 7 == 0 && $key == 0) :
									$defaultTariffBreakDownHtml .= '<tr>';
                                elseif ($key % 7 == 0) :
									$defaultTariffBreakDownHtml .= '</tr><tr>';
								endif;
								$tmpKey                     = key($breakDownDetails);
								$defaultTariffBreakDownHtml .= '<td><p>' . $this->dayMapping[$tmpKey] . '</p><span class=\"' . $this->tariffNetOrGross . '\">' . $breakDownDetails[$tmpKey][$this->tariffNetOrGross]->format() . '</span>';
							endforeach;
							$defaultTariffBreakDownHtml .= '</tr></table>';

							$this->document->addScriptDeclaration('
					Solidres.jQuery(function($){
						$(".default_tariff_break_down_' . $roomType->id . '").popover({
							html: true,
							content: "' . $defaultTariffBreakDownHtml . '",
							title: "' . JText::_('SR_TARIFF_BREAK_DOWN') . '",
							placement: "bottom",
							trigger: "click"
						});
					});
				');
						endif;

						if (isset($roomType->complexTariffBreakDown)) :
							$complexTariffBreakDownHtml = '<table class=\"tariff-break-down\">';
							foreach ($roomType->complexTariffBreakDown as $key => $breakDownDetails) :
								if ($key % 7 == 0 && $key == 0) :
									$complexTariffBreakDownHtml .= '<tr>';
                                elseif ($key % 7 == 0) :
									$complexTariffBreakDownHtml .= '</tr><tr>';
								endif;
								$tmpKey                     = key($breakDownDetails);
								$complexTariffBreakDownHtml .= '<td><p>' . $this->dayMapping[$tmpKey] . '</p><span class=\"' . $this->tariffNetOrGross . '\">' . $breakDownDetails[$tmpKey][$this->tariffNetOrGross]->format() . '</span>';
							endforeach;

							$complexTariffBreakDownHtml .= '</tr></table>';
							$this->document->addScriptDeclaration('
					Solidres.jQuery(function($){
						$(".complex_tariff_break_down_' . $roomType->id . '").popover({
							html: true,
							content: "' . $complexTariffBreakDownHtml . '",
							title: "' . JText::_('SR_TARIFF_BREAK_DOWN') . '",
							placement: "bottom",
							trigger: "click"
						});
					});
				');
						endif;

						$this->document->addScriptDeclaration('
				Solidres.jQuery(function($){
					$(".sr-photo-' . $roomType->id . '").colorbox({rel:"sr-photo-' . $roomType->id . '", transition:"fade", width: "98%", height: "98%", className: "colorbox-w"});
					$(".carousel").carousel();
				});
			');

						$rowCSSClass                        = ($count % 2) ? 'even' : 'odd';
						$rowCSSClass                        .= $roomType->featured == 1 ? ' featured' : '';
						$rowCSSClass                        .= ' room_type_row';
						$currentSelectedRoomNumberPerTariff = array();

						if (!is_array($roomType->params)) :
							$roomType->params = json_decode($roomType->params, true);
						endif;

						$skipRoomForm = false;
						if (isset($roomType->params['skip_room_form']) && $roomType->params['skip_room_form'] == 1) :
							$skipRoomForm = true;
						endif;

						$isExclusive = false;
						if (isset($roomType->params['is_exclusive']) && $roomType->params['is_exclusive'] == 1) :
							$isExclusive = true;
						endif;

						$showRemainingRooms = true;
						if (isset($roomType->params['show_number_remaining_rooms']) && $roomType->params['show_number_remaining_rooms'] == 0) :
							$showRemainingRooms = false;
						endif;

						$showMoreInfo = true;
						if (isset($roomType->params['show_more_info_button']) && $roomType->params['show_more_info_button'] == 0) :
							$showMoreInfo = false;
						endif;

						$roomType->text = $roomType->description;
						JFactory::getApplication()->triggerEvent('onContentPrepare', array('com_solidres.roomtype', &$roomType, &$roomType->params, 0));

						$roomTypeColumns = 2;

						$isPrioritizingRoomType = false;
						if ($this->prioritizingRoomTypeId == $roomType->id) :
							$isPrioritizingRoomType = true;
							$rowCSSClass .= " prioritizing";
							$prioritizingRoomTypeName = $roomType->name;
						endif;

						?>

						<?php if ($roomTypeIdx % $roomTypeColumns == 0) : ?>
                        <div class="<?php echo SR_UI_GRID_CONTAINER; ?> room_grid_row">
					<?php endif ?>

                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
	                        <?php
	                        if ($this->prioritizingRoomTypeId > 0 && $count == 2) :
		                        if ($countNotPrioritizing > 1) :
			                        $msg = 'SR_PRIORITIZING_ROOMTYPE_NOTICE';
		                        else:
			                        $msg = 'SR_PRIORITIZING_ROOMTYPE_NOTICE_1';
		                        endif;

		                        echo '<div class="prioritizing-roomtype-notice">' . JText::sprintf($msg, $prioritizingRoomTypeName, $countNotPrioritizing) . '</div>';
	                        endif;
	                        ?>
                            <div class="<?php echo $rowCSSClass ?>"
                                 id="room_type_row_<?php echo $roomType->id ?>"
	                            <?php echo $this->prioritizingRoomTypeId > 0 && !$isPrioritizingRoomType ? 'style="display: none"' : '' ?>
                            >

                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                        <div class="room_type_gallery">
											<?php
											if (!empty($roomType->media)) :
												echo '<div id="carousel' . $roomType->id . '" class="carousel slide">';
												echo '<div class="carousel-inner">';
												$countMedia = 0;
												$active     = '';
												foreach ($roomType->media as $media) :
													$active = ($countMedia == 0) ? 'active' : '';
													?>
                                                    <div class="<?php echo SR_UI_CAROUSEL_ITEM ?> <?php echo $active ?>">
                                                        <a class="sr-photo-<?php echo $roomType->id ?>"
                                                           href="<?php echo $this->solidresMedia->getMediaUrl($media->value); ?>">
                                                            <img src="<?php echo $this->solidresMedia->getMediaUrl($media->value, 'roomtype_medium'); ?>"
                                                                 alt="<?php echo $roomType->name ?>"/>
                                                        </a>
                                                    </div>
													<?php
													$countMedia++;
												endforeach;
												echo '</div>';
												echo '<a class="carousel-control left" href="#carousel' . $roomType->id . '" data-slide="prev">&lsaquo;</a>';
												echo '<a class="carousel-control right" href="#carousel' . $roomType->id . '" data-slide="next">&rsaquo;</a>';
												echo '</div>';
											endif;
											?>
                                        </div>

                                        <div class="room_type_details">
                                            <div class="roomtype_name" id="srt_<?php echo $roomType->id ?>">
										<span class="label label-default">
											<?php echo $roomType->occupancy_max > 0 ? $roomType->occupancy_max : (int) $roomType->occupancy_adult + (int) $roomType->occupancy_child ?>
                                            <i class="fa fa-user"></i>
										</span>
                                                <h4><?php echo $roomType->name; ?>
													<?php if ($roomType->featured == 1) : ?>
                                                        <span class="label label-info"><i
                                                                    class="fa fa-certificate"></i> <?php echo JText::_('SR_FEATURED_ROOM_TYPE') ?></span>
													<?php endif ?>
	                                                <?php if ($isPrioritizingRoomType) : ?>
                                                        <span class="label label-warning"><?php echo JText::_('SR_PRIORITIZING_ROOM_TYPE') ?></span>
	                                                <?php endif ?>
                                                </h4>
                                            </div>

                                            <div class="roomtype_more_desc">
												<?php if (!empty($roomType->roomtype_custom_fields['room_size'])) : ?>
                                                    <p>
                                                        <i class="fa fa-arrows-alt fa-fw"></i> <?php echo JText::_('SR_ROOM_SIZE') . ': <strong>' . $roomType->roomtype_custom_fields['room_size'] . '</strong>' ?>
                                                    </p>
												<?php endif ?>
												<?php if (!empty($roomType->roomtype_custom_fields['bed_size'])) : ?>
                                                    <p>
                                                        <i class="fa fa-bed fa-fw"></i> <?php echo JText::_('SR_BED_SIZE') . ': <strong>' . $roomType->roomtype_custom_fields['bed_size'] . '</strong>' ?>
                                                    </p>
												<?php endif ?>
                                                <p>
                                                    <i class="fa fa-users fa-fw"></i> <?php echo JText::_('SR_MAX_GUESTS') . ': <strong>' . ($roomType->occupancy_max > 0 ? $roomType->occupancy_max : JText::plural('SR_SELECT_ADULT_QUANTITY', $roomType->occupancy_adult) . ' - ' . JText::plural('SR_SELECT_CHILD_QUANTITY', $roomType->occupancy_child)) . '</strong>' ?>
                                                </p>
                                            </div>

                                            <!-- Room available message -->
											<?php
											if (!$this->isFresh && !empty($roomType->availableTariffs) && $showRemainingRooms) :
												if (isset($roomType->totalAvailableRoom)) :
													?>
                                                    <p>
                                                <span class="num_rooms_available_msg"
                                                      id="num_rooms_available_msg_<?php echo $roomType->id ?>"
                                                      data-original-text="<?php echo JText::plural('SR_WE_HAVE_X_' . ($roomType->is_private ? 'ROOM' : 'BED') . '_LEFT', $roomType->totalAvailableRoom) ?>">
                                                    <?php echo JText::plural('SR_WE_HAVE_X_' . ($roomType->is_private ? 'ROOM' : 'BED') . '_LEFT', $roomType->totalAvailableRoom) ?>
                                                </span>
                                                    </p>
												<?php
												endif;
											endif;
											?>

											<?php if (!empty($roomType->facilities)): ?>
												<?php echo SRLayoutHelper::render('facility.facility', array('facilities' => $roomType->facilities)); ?>
											<?php endif; ?>

											<?php if ($showMoreInfo) : ?>
                                                <button type="button" class="btn btn-default toggle_more_desc"
                                                        data-target="<?php echo $roomType->id ?>">
                                                    <i class="fa fa-eye"></i>
													<?php echo JText::_('SR_SHOW_MORE_INFO') ?>
                                                </button>
											<?php endif ?>

											<?php if ($this->config->get('availability_calendar_enable', 1)) : ?>
                                                <button type="button" data-roomtypeid="<?php echo $roomType->id ?>"
                                                        class="btn btn-default load-calendar">
                                                    <i class="fa fa-calendar"></i> <?php echo JText::_('SR_AVAILABILITY_CALENDAR_VIEW') ?>
                                                </button>
											<?php endif ?>

											<?php if (SRPlugin::isEnabled('complextariff') && $this->showTariffs) : ?>
                                                <button type="button" data-roomtypeid="<?php echo $roomType->id ?>"
                                                        class="btn btn-default toggle-tariffs">
													<?php if ($this->showTariffs) : ?>
                                                        <i class="fa fa-compress"></i> <?php echo JText::_('SR_HIDE_TARIFFS') ?>
													<?php else : ?>
                                                        <i class="fa fa-expand"></i> <?php echo JText::_('SR_SHOW_TARIFFS') ?>
													<?php endif ?>
                                                </button>
											<?php endif ?>

                                            <div class="unstyled more_desc" id="more_desc_<?php echo $roomType->id ?>"
                                                 style="display: none">

                                                <div class="roomtype_desc">
													<?php echo '<strong>' . JText::_('SR_ROOM_DESCRIPTION') . ':</strong> ' . $roomType->text ?>
                                                </div>

												<?php
												if (!empty($roomType->roomtype_custom_fields['room_facilities'])) :
													echo '<p><strong>' . JText::_('SR_ROOM_FACILITIES') . ':</strong> ' . $roomType->roomtype_custom_fields['room_facilities'] . '</p>';
												endif;

												if (!empty($roomType->roomtype_custom_fields['taxes'])) :
													echo '<p><strong>' . JText::_('SR_TAXES') . ':</strong> ' . $roomType->roomtype_custom_fields['taxes'] . '</p>';
												endif;

												if (!empty($roomType->roomtype_custom_fields['prepayment'])) :
													echo '<p><strong>' . JText::_('SR_PREPAYMENT') . ':</strong> ' . $roomType->roomtype_custom_fields['prepayment'] . '</p>';
												endif;

												?>
                                            </div>
                                        </div>
                                    </div> <!-- end of span12 -->
                                </div> <!-- end of row-fluid -->

								<?php if ($this->config->get('availability_calendar_enable', 1)) : ?>
                                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                            <div class="availability-calendar"
                                                 id="availability-calendar-<?php echo $roomType->id ?>"
                                                 style="display: none">
                                            </div>
                                        </div>
                                    </div>
								<?php endif ?>

								<?php if (SRPlugin::isEnabled('flexsearch')) :
									$layout = SRLayoutHelper::getInstance();
									$layout->addIncludePath(SRPlugin::getLayoutPath('flexsearch'));
									echo $layout->render('roomtype.flexsearch', array('roomType' => $roomType, 'bookingType' => $this->item->booking_type, 'enableAutoScroll' => $this->enableAutoScroll));
								endif ?>

								<?php if (!SRPlugin::isEnabled('flexsearch') || (SRPlugin::isEnabled('flexsearch') && empty($roomType->otherAvailableDates))) : ?>
                                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>"
                                         id="tariff-holder-<?php echo $roomType->id ?>"
                                         style="<?php echo !$this->disableOnlineBooking || $this->showTariffs ? '' : 'display: none' ?>">
                                        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
											<?php
											if (!$this->isFresh) :
												if (!empty($roomType->availableTariffs)) :

													$countRatePerRoomType = 0;
													$countRatePerRoom     = 0;
													if ($roomType->number_of_room == $roomType->totalAvailableRoom) :
														foreach ($roomType->availableTariffs as $tariffKey => $tariffInfo) :

															if ($tariffInfo['tariffType'] != 4) :
																$countRatePerRoom++;
																continue;
															endif;

															$minPrice = $this->appendPriceSuffix(
																$tariffInfo['val'],
																$tariffInfo['tariffType'],
																$this->item->booking_type,
																($this->item->booking_type == 0 ? $this->stayLength : $this->stayLength + 1),
																$tariffInfo['val_original'],
																$roomType->is_private,
																$tariffInfo['adults'],
																$tariffInfo['children']
															);

															$layout = SRLayoutHelper::getInstance();
															echo $layout->render('asset.tariff_book_style3', array(
																	'item'                 => $this->item,
																	'Itemid'               => $this->itemid,
																	'roomType'             => $roomType,
																	'bookingType'          => $this->item->booking_type,
																	'disableOnlineBooking' => $this->disableOnlineBooking,
																	'minPrice'             => $minPrice,
																	'tariffKey'            => $tariffKey,
																	'tariffInfo'           => $tariffInfo,
																	'stayLength'           => $this->stayLength,
																	'selectedRoomTypes'    => $this->selectedRoomTypes,
																	'skipRoomForm'         => $skipRoomForm,
																	'isExclusive'          => $isExclusive,
																	'showRemainingRooms'   => $showRemainingRooms
																)
															);
															$countRatePerRoomType++;
														endforeach;
													endif;

													if ($countRatePerRoomType > 0 && $countRatePerRoom > 0) :
														echo '<div class="tariff-sep"></div>';
													endif;

													foreach ($roomType->availableTariffs as $tariffKey => $tariffInfo) :

														if ($tariffInfo['tariffType'] == 4) continue;

														$minPrice = $this->appendPriceSuffix(
															$tariffInfo['val'],
															$tariffInfo['tariffType'],
															$this->item->booking_type,
															($this->item->booking_type == 0 ? $this->stayLength : $this->stayLength + 1),
															$tariffInfo['val_original'],
															$roomType->is_private,
															$tariffInfo['adults'],
															$tariffInfo['children']
														);

														$layout = SRLayoutHelper::getInstance();
														echo $layout->render('asset.tariff_book_style3', array(
																'item'                 => $this->item,
																'Itemid'               => $this->itemid,
																'roomType'             => $roomType,
																'bookingType'          => $this->item->booking_type,
																'disableOnlineBooking' => $this->disableOnlineBooking,
																'minPrice'             => $minPrice,
																'tariffKey'            => $tariffKey,
																'tariffInfo'           => $tariffInfo,
																'stayLength'           => $this->stayLength,
																'selectedRoomTypes'    => $this->selectedRoomTypes,
																'skipRoomForm'         => $skipRoomForm,
																'isExclusive'          => $isExclusive,
																'showRemainingRooms'   => $showRemainingRooms
															)
														);
													endforeach;
												else :
													if (SRPlugin::isEnabled('flexsearch') && !empty($roomType->otherAvailableDates)) :

													else :
														$link = JRoute::_('index.php?option=com_solidres&view=reservationasset&id=' . $this->item->id . ($this->enableAutoScroll ? '#form' : ''));
														echo '<div class="alert alert-notice">' . JText::sprintf('SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT', $this->checkinFormatted, $this->checkoutFormatted, $link) . '</div>';
													endif;
												endif;
											endif;

											if ($this->isFresh && $this->showTariffs == 1 && isset($roomType->tariffs) && is_array($roomType->tariffs)) :

												$countRatePerRoomType = 0;
												foreach ($roomType->tariffs as $tariff) :

													if ($tariff->type != 4) continue;
													$minPrice = $this->getMinPrice($tariff, $roomType);
													$layout   = SRLayoutHelper::getInstance();
													echo $layout->render('asset.tariff_list_style3', array(
															'item'                 => $this->item,
															'Itemid'               => $this->itemid,
															'roomType'             => $roomType,
															'bookingType'          => $this->item->booking_type,
															'disableOnlineBooking' => $this->disableOnlineBooking,
															'tariff'               => $tariff,
															'minPrice'             => $minPrice
														)
													);
													$countRatePerRoomType++;

												endforeach; // end foreach of complex tariffs

												if ($countRatePerRoomType > 0) :
													echo '<div class="tariff-sep"></div>';
												endif;

												foreach ($roomType->tariffs as $tariff) :

													if ($tariff->type == 4) continue;
													$minPrice = $this->getMinPrice($tariff, $roomType);
													$layout   = SRLayoutHelper::getInstance();
													echo $layout->render('asset.tariff_list_style3', array(
															'item'                 => $this->item,
															'Itemid'               => $this->itemid,
															'roomType'             => $roomType,
															'bookingType'          => $this->item->booking_type,
															'disableOnlineBooking' => $this->disableOnlineBooking,
															'tariff'               => $tariff,
															'minPrice'             => $minPrice
														)
													);

												endforeach;
											endif;
											?>
                                        </div> <!-- end of span12 -->
                                    </div> <!-- end of row-fluid and #tariff-holder -->
								<?php endif ?>
                            </div> <!-- end of row-fluid -->

                        </div>

						<?php if (($roomTypeIdx + 1) % $roomTypeColumns == 0 || ($roomTypeIdx + 1 == $totalRoomTypeCount)) : ?>
                        </div>
					<?php endif ?>

						<?php
						$count++;
						$roomTypeIdx++;
					endforeach
					?>
				<?php
				else :
					?>
                    <div class="alert alert-warning">
						<?php
						echo JText::sprintf('SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS',
							JDate::getInstance($this->checkin, $this->timezone)->format($this->dateFormat, true),
							JDate::getInstance($this->checkout, $this->timezone)->format($this->dateFormat, true)
						);
						?>
                        <a class=""
                           href="<?php echo JRoute::_('index.php?option=com_solidres&task=reservationasset.startOver&id=' . $this->item->id) ?>"><i
                                    class="fa fa-refresh"></i> <?php echo JText::_('SR_SEARCH_RESET') ?></a>
                    </div>
				<?php
				endif;
				?>

				<?php if (!$this->isFresh && $totalRoomTypeCount > 0) : ?>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
                        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
                            <div class="inner">
                                <strong><?php echo JText::_('SR_ROOMINFO_STEP_NOTICE_MESSAGE') ?></strong>
                            </div>
                        </div>
                        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                            <div class="inner">
                                <div class="btn-group">
                                    <button data-step="room" type="submit" class="btn btn-success">
                                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                                    </button>
                                </div>
                            </div>
                        </div>
                    </div>
				<?php endif ?>

                <input type="hidden" name="jform[raid]" value="<?php echo $this->item->id ?>"/>
                <input type="hidden" name="jform[next_step]" value="guestinfo"/>
                <input type="hidden" name="jform[bookingconditions]"
                       value="<?php echo $this->item->params['termsofuse'] ?>"/>
                <input type="hidden" name="jform[privacypolicy]"
                       value="<?php echo $this->item->params['privacypolicy'] ?>"/>

				<?php echo JHtml::_('form.token'); ?>
            </form>
        </div>
        <!-- /Tab 1 -->

    </div>

    <div class="step-pane" id="step2">
        <!-- Tab 2 -->
        <div class="reservation-single-step-holder guestinfo nodisplay">
        </div>
        <!-- /Tab 2 -->
    </div>

    <div class="step-pane" id="step3">
        <!-- Tab 3 -->
        <div class="reservation-single-step-holder confirmation nodisplay">
        </div>
        <!-- /Tab 3 -->
    </div>

</div>
views/reservationasset/tmpl/default_style3.php000060400000027423150751740420015727 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_style3.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

?>
<div id="solidres" class="<?php echo SR_UI ?> reservation_asset_style">
    <div class="reservation_asset_item clearfix">
		<?php if ($this->item->params['only_show_reservation_form'] == 0) : ?>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                    <div class="asset-info">
                        <div class="asset-name">
                            <h1><?php echo $this->escape($this->item->name); ?></h1>
                        </div>
                        <div class="asset-rating">
							<?php for ($i = 1; $i <= $this->item->rating; $i++) : ?>
                                <i class="fa fa-star"></i>
							<?php endfor ?>
                        </div>
                        <div class="asset-address_1">
                            <a class="show_map"
                               href="<?php echo JRoute::_('index.php?option=com_solidres&task=map.show&id=' . $this->item->id) ?>">
                                <i class="fa fa-map-marker"></i>
								<?php
								echo $this->item->address_1 . ', ' .
									(!empty($this->item->city) ? $this->item->city . ', ' : '') .
									(!empty($this->item->postcode) ? $this->item->postcode . ', ' : '') .
									$this->item->country_name
								?>
                            </a>
                        </div>

						<?php if (!empty($this->item->address_2)) : ?>
                            <div class="asset-address_2"><?php echo $this->item->address_2; ?></div>
						<?php endif ?>

                        <div class="asset-wish-list"><?php echo $this->events->afterDisplayAssetName; ?></div>

                        <div class="asset-call-action">
                            <a href="#form" class="btn btn-large btn-lg btn-block btn-primary" title="Reserve now">
								<?php echo JText::_('SR_BOOK_NOW'); ?>
                            </a>
                        </div>

                        <div class="asset-contact">
                            <p><i class="fa fa-envelope fa-fw" title="<?php echo JText::_('SR_EMAIL') ?>"></i> <a
                                        href="mailto:<?php echo $this->item->email; ?>"><?php echo $this->item->email; ?></a>
                            </p>

							<?php if (!empty($this->item->phone)) : ?>
                                <p><i class="fa fa-phone-square fa-fw"
                                      title="<?php echo JText::_('SR_PHONE') ?>"></i> <?php echo '<a href="tel:' . $this->item->phone . '">' . $this->item->phone . '</a>'; ?>
                                </p>
							<?php endif ?>

							<?php if (!empty($this->item->fax)) : ?>
                                <p><i class="fa fa-fax fa-fw"
                                      title="<?php echo JText::_('SR_FAX') ?>"></i> <?php echo $this->item->fax; ?></p>
							<?php endif ?>

							<?php if (!empty($this->item->website)) : ?>
                                <p><i class="fa fa-globe fa-fw" title="<?php echo JText::_('SR_WEBSITE') ?>"></i> <a
                                            href="<?php echo $this->item->website; ?>"
                                            target="_blank"><?php echo $this->item->website; ?></a></p>
							<?php endif ?>
                        </div>

                        <div class="asset-social clearfix">
							<?php
							if (!empty($this->item->reservationasset_extra_fields['facebook_link'])
								&& $this->item->reservationasset_extra_fields['facebook_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['facebook_link']; ?>"
                                   target="_blank"><i class="fa fa-facebook-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['twitter_link'])
								&& $this->item->reservationasset_extra_fields['twitter_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['twitter_link']; ?>"
                                   target="_blank"><i class="fa fa-twitter-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['linkedin_link'])
								&& $this->item->reservationasset_extra_fields['linkedin_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['linkedin_link']; ?>"
                                   target="_blank"><i class="fa fa-linkedin-square"></i> </a>
							<?php endif;
							?>
    						<?php
							if (!empty($this->item->reservationasset_extra_fields['tumblr_link'])
								&& $this->item->reservationasset_extra_fields['tumblr_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['tumblr_link']; ?>"
                                   target="_blank"><i class="fa fa-tumblr-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['foursquare_link'])
								&& $this->item->reservationasset_extra_fields['foursquare_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['foursquare_link']; ?>"
                                   target="_blank"><i class="fa fa-foursquare"></i> </a>
							<?php endif;
							?>

							<?php
							if (!empty($this->item->reservationasset_extra_fields['pinterest_link'])
								&& $this->item->reservationasset_extra_fields['pinterest_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['pinterest_link']; ?>"
                                   target="_blank"><i class="fa fa-pinterest-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['slideshare_link'])
								&& $this->item->reservationasset_extra_fields['slideshare_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['slideshare_link']; ?>"
                                   target="_blank"><i class="fa fa-slideshare"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['vimeo_link'])
								&& $this->item->reservationasset_extra_fields['vimeo_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['vimeo_link']; ?>"
                                   target="_blank"><i class="fa fa-vimeo-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['youtube_link'])
								&& $this->item->reservationasset_extra_fields['youtube_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['youtube_link']; ?>"
                                   target="_blank"> <i class="fa fa-youtube-square"></i> </a>
							<?php endif;
							?>
                        </div>
                    </div>
                </div>
                <div class="<?php echo SR_UI_GRID_COL_8 ?>">
                    <div class="asset-gallery">
						<?php echo $this->defaultGallery; ?>
                    </div>
                </div>
            </div>

            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                    <div class="asset-tabs">
						<?php
						$tabTitle = array();
						$tabPane  = array();

						if (!empty($this->item->description) || !empty($this->item->facilities)) :

							$text = trim($this->item->description);

							if (!empty($this->item->facilities))
							{
								$text .= SRLayoutHelper::render('facility.facility', array('facilities' => $this->item->facilities));
							}

							$tabTitle[] = '<li class="active"><a href="#asset-desc" data-toggle="tab">' . JText::_('SR_DESCRIPTION') . '</a></li>';
							$tabPane[]  = '<div class="tab-pane active" id="asset-desc">' . $text . '</div>';
						endif;

						if (isset($this->item->feedbacks->render) && !empty($this->item->feedbacks->render)) :
							$activeClass = empty($tabTitle) ? 'active' : '';
							$tabTitle[]  = '<li class="' . $activeClass . '"><a href="#asset-feedbacks" data-toggle="tab">' . JText::_('SR_RESERVATION_FEEDBACKS') . '</a></li>';
							$tabPane[]   = '<div class="tab-pane ' . $activeClass . '" id="asset-feedbacks">' . $this->item->feedbacks->render . '</div>';
							$tabTitle[]  = '<li><a href="#asset-feedback-scores" data-toggle="tab">' . JText::_('SR_FEEDBACK_SCORES') . '</a></li>';
							$tabPane[]   = '<div class="tab-pane" id="asset-feedback-scores">' . $this->item->feedbacks->scores . '</div>';
						endif;

						?>

						<?php if (!empty($tabTitle)) : ?>
                            <ul class="nav nav-tabs">
								<?php echo join("\n", $tabTitle); ?>
                            </ul>
						<?php endif ?>

						<?php if (!empty($tabPane)) : ?>
                            <div class="tab-content">
								<?php echo join("\n", $tabPane); ?>
                            </div>
						<?php endif ?>
                    </div>
                </div>
            </div>
		<?php endif ?>

		<?php echo $this->events->beforeDisplayAssetForm; ?>
		<?php if (SRPlugin::isEnabled('user') && $this->showLoginBox) : ?>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                    <div class="alert alert-info sr-login-form">
						<?php
						if (!JFactory::getUser()->get('id')) :
							echo $this->loadTemplate('login');
						else:
							echo $this->loadTemplate('userinfo');
						endif;
						?>
                    </div>
                </div>
            </div>
		<?php endif; ?>

        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
				<?php echo $this->loadTemplate('roomtype' . ((defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? '_' . SR_LAYOUT_STYLE : '')); ?>
            </div>
        </div>

        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
				<?php echo $this->loadTemplate('information'); ?>
            </div>
        </div>

		<?php echo $this->events->afterDisplayAssetForm; ?>
		<?php if ($this->showPoweredByLink) : ?>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                    <p class="powered">
                        Powered by <a target="_blank"
                                      title="Solidres - A hotel booking extension for Joomla & WordPress"
                                      href="https://www.solidres.com">Solidres</a>
                    </p>
                </div>
            </div>
		<?php endif ?>
    </div>
</div>views/reservationasset/tmpl/default.xml000060400000001433150751740420014426 0ustar00<?xml version="1.0" encoding="utf-8"?>
<metadata>
	<layout title="SR_RESERVATION_ASSET_VIEW_DEFAULT_TITLE" option="sr_reservation_asset_view_default_option">
		<help
			key=""
		/>
		<message>
			<![CDATA[SR_RESERVATION_ASSET_VIEW_DEFAULT_DESC]]>
		</message>
	</layout>

	<!-- Add fields to the request variables for the layout. -->
	<fields name="request">
		<fieldset name="request"
				  addfieldpath="/administrator/components/com_solidres/models/fields">

			<field name="id" type="Modal_Solidres"
				   label="SR_FIELD_SELECT_RESERVATIONASSET_LABEL"
				   required="true"
				   edit="false"
				   clear="false"
				   view="reservationassets"
				   description="SR_FIELD_SELECT_RESERVATIONASSET_DESC"
					/>
		</fieldset>
	</fields>

	<fields name="params">

	</fields>
</metadata>
views/reservationasset/tmpl/default.php000060400000024154150751740420014422 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Factory as CMSFactory;

HTMLHelper::_('behavior.tabstate');

?>
<div id="solidres" class="<?php echo SR_UI ?> reservation_asset_default">
    <div class="reservation_asset_item clearfix">
		<?php if ($this->item->params['only_show_reservation_form'] == 0 && !$this->isAmending) : ?>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_9 ?>">
                    <h1>
						<?php echo $this->escape($this->item->name) . ' '; ?>
						<?php for ($i = 1; $i <= $this->item->rating; $i++) : ?>
                            <i class="rating fa fa-star"></i>
						<?php endfor ?>
                    </h1>
                </div>
                <div class="<?php echo SR_UI_GRID_COL_3 ?>">
					<?php echo $this->events->afterDisplayAssetName; ?>
                </div>
            </div>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
					<span class="address_1 reservation_asset_subinfo">
					<?php
					echo $this->item->address_1 . ', ' .
						(!empty($this->item->city) ? $this->item->city . ', ' : '') .
						(!empty($this->item->geostate_code_2) ? $this->item->geostate_code_2 . ' ' : '') .
						(!empty($this->item->postcode) ? $this->item->postcode . ', ' : '') .
						$this->item->country_name
					?>
                        <a class="show_map"
                           href="<?php echo Route::_('index.php?option=com_solidres&task=map.show&id=' . $this->item->id) ?>">
							<?php echo Text::_('SR_SHOW_MAP') ?>
						</a>
					</span>

					<?php if (!empty($this->item->address_2)) : ?>
                        <span class="address_2 reservation_asset_subinfo">
						<?php echo $this->item->address_2; ?>
					</span>
					<?php endif ?>

					<?php if (!empty($this->item->phone)) : ?>
                        <span class="phone reservation_asset_subinfo">
						<?php echo Text::_('SR_PHONE') . ': <a href="tel:' . $this->item->phone . '">' . $this->item->phone . '</a>'; ?>
					</span>
					<?php endif ?>

					<?php if (!empty($this->item->fax)) : ?>
                        <span class="fax reservation_asset_subinfo">
						<?php echo Text::_('SR_FAX') . ': ' . $this->item->fax; ?>
					</span>
					<?php endif ?>

                    <span class="social_network reservation_asset_subinfo clearfix">
						<?php
						if (!empty($this->item->reservationasset_extra_fields['facebook_link'])
							&& $this->item->reservationasset_extra_fields['facebook_show'] == 1) : ?>
                            <a href="<?php echo $this->item->reservationasset_extra_fields['facebook_link']; ?>"
                               target="_blank"><i class="fa fa-facebook-official"></i> </a>
						<?php endif;
						?>
						<?php
						if (!empty($this->item->reservationasset_extra_fields['twitter_link'])
							&& $this->item->reservationasset_extra_fields['twitter_show'] == 1) : ?>
                            <a href="<?php echo $this->item->reservationasset_extra_fields['twitter_link']; ?>"
                               target="_blank"><i class="fa fa-twitter-square"></i> </a>
						<?php endif;
						?>
						<?php
						if (!empty($this->item->reservationasset_extra_fields['linkedin_link'])
							&& $this->item->reservationasset_extra_fields['linkedin_show'] == 1) : ?>
                            <a href="<?php echo $this->item->reservationasset_extra_fields['linkedin_link']; ?>"
                               target="_blank"><i class="fa fa-linkedin-square"></i> </a>
						<?php endif;
						?>
						<?php
						if (!empty($this->item->reservationasset_extra_fields['tumblr_link'])
							&& $this->item->reservationasset_extra_fields['tumblr_show'] == 1) : ?>
                            <a href="<?php echo $this->item->reservationasset_extra_fields['tumblr_link']; ?>"
                               target="_blank"><i class="fa fa-tumblr-square"></i> </a>
						<?php endif;
						?>
						<?php
						if (!empty($this->item->reservationasset_extra_fields['foursquare_link'])
							&& $this->item->reservationasset_extra_fields['foursquare_show'] == 1) : ?>
                            <a href="<?php echo $this->item->reservationasset_extra_fields['foursquare_link']; ?>"
                               target="_blank"><i class="fa fa-foursquare"></i> </a>
						<?php endif;
						?>

						<?php
						if (!empty($this->item->reservationasset_extra_fields['pinterest_link'])
							&& $this->item->reservationasset_extra_fields['pinterest_show'] == 1) : ?>
                            <a href="<?php echo $this->item->reservationasset_extra_fields['pinterest_link']; ?>"
                               target="_blank"><i class="fa fa-pinterest-square"></i> </a>
						<?php endif;
						?>
						<?php
						if (!empty($this->item->reservationasset_extra_fields['slideshare_link'])
							&& $this->item->reservationasset_extra_fields['slideshare_show'] == 1) : ?>
                            <a href="<?php echo $this->item->reservationasset_extra_fields['slideshare_link']; ?>"
                               target="_blank"><i class="fa fa-slideshare"></i> </a>
						<?php endif;
						?>
						<?php
						if (!empty($this->item->reservationasset_extra_fields['vimeo_link'])
							&& $this->item->reservationasset_extra_fields['vimeo_show'] == 1) : ?>
                            <a href="<?php echo $this->item->reservationasset_extra_fields['vimeo_link']; ?>"
                               target="_blank"><i class="fa fa-vimeo-square"></i> </a>
						<?php endif;
						?>
						<?php
						if (!empty($this->item->reservationasset_extra_fields['youtube_link'])
							&& $this->item->reservationasset_extra_fields['youtube_show'] == 1) : ?>
                            <a href="<?php echo $this->item->reservationasset_extra_fields['youtube_link']; ?>"
                               target="_blank"> <i class="fa fa-youtube-square"></i> </a>
						<?php endif;
						?>
					</span>
                </div>
            </div>

            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
					<?php echo $this->defaultGallery; ?>
                </div>
            </div>

            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
					<?php
					echo HTMLHelper::_('bootstrap.startTabSet', 'asset-info', array('active' => 'asset-desc'));

					if (!empty($this->item->description) || !empty($this->item->facilities)) :
						echo HTMLHelper::_('bootstrap.addTab', 'asset-info', 'asset-desc', Text::_('SR_DESCRIPTION', true));
						$text = trim($this->item->description);
						if (!empty($this->item->facilities)) :
							$text .= SRLayoutHelper::render('facility.facility', array('facilities' => $this->item->facilities));
						endif;

						echo $text;
						echo HTMLHelper::_('bootstrap.endTab');
					endif;

					if (isset($this->item->feedbacks->render) && !empty($this->item->feedbacks->render)) :
						echo HTMLHelper::_('bootstrap.addTab', 'asset-info', 'asset-feedback', Text::_('SR_RESERVATION_FEEDBACKS', true));
						echo $this->item->feedbacks->render;
						echo HTMLHelper::_('bootstrap.endTab');

						echo HTMLHelper::_('bootstrap.addTab', 'asset-info', 'asset-feedback-scores', Text::_('SR_FEEDBACK_SCORES', true));
						echo $this->item->feedbacks->scores;
						echo HTMLHelper::_('bootstrap.endTab');
					endif;

					echo HTMLHelper::_('bootstrap.endTabSet');
					?>
                </div>
            </div>

		<?php endif ?>

		<?php echo $this->events->beforeDisplayAssetForm; ?>
		<?php if (SRPlugin::isEnabled('user') && $this->showLoginBox && !$this->isAmending) : ?>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                    <div class="alert alert-info sr-login-form">
						<?php
						if (!CMSFactory::getUser()->get('id')) :
							echo $this->loadTemplate('login');
						else:
							echo $this->loadTemplate('userinfo');
						endif;
						?>
                    </div>
                </div>
            </div>
		<?php endif; ?>

        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
				<?php echo $this->loadTemplate('roomtype'); ?>
            </div>
        </div>

        <?php if (!$this->isAmending) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
				<?php echo $this->loadTemplate('information'); ?>
            </div>
        </div>
        <?php endif ?>

		<?php echo $this->events->afterDisplayAssetForm; ?>
		<?php if ($this->showPoweredByLink) : ?>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?> powered">
                    <p>
                        Powered by <a target="_blank" title="Solidres - A hotel booking extension for Joomla"
                                      href="https://www.solidres.com">Solidres</a>
                    </p>
                </div>
            </div>
		<?php endif ?>
    </div>
</div>
views/reservationasset/tmpl/default_information.php000060400000015667150751740420017040 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_information.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

if (!isset($this->item->params['show_facilities'])) :
	$this->item->params['show_facilities'] = 1;
endif;

if (!isset($this->item->params['show_policies'])) :
	$this->item->params['show_policies'] = 1;
endif;

?>

<?php if ($this->item->params['show_facilities']) : ?>
    <h3><?php echo JText::_('SR_CUSTOMFIELD_FACILITIES') ?></h3>

	<?php if (isset($this->item->reservationasset_extra_fields['general'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['general']))) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_GENERAL') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>

	<?php if (isset($this->item->reservationasset_extra_fields['activities'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['activities']))) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_ACTIVITIES') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>

	<?php if (isset($this->item->reservationasset_extra_fields['services'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['services']))): ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_SERVICES') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>

	<?php if (isset($this->item->reservationasset_extra_fields['internet'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['internet']))) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_INTERNET') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>

	<?php if (isset($this->item->reservationasset_extra_fields['parking'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['parking']))) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_PARKING') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>
<?php endif; ?>

<?php if ($this->item->params['show_policies']) : ?>
    <h3><?php echo JText::_('SR_CUSTOMFIELD_POLICIES') ?></h3>

	<?php if (isset($this->item->reservationasset_extra_fields['checkin_time'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['checkin_time']))) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_CHECKIN') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>

	<?php if (isset($this->item->reservationasset_extra_fields['checkout_time'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['checkout_time']))) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_CHECKOUT') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>

	<?php if (isset($this->item->reservationasset_extra_fields['cancellation_prepayment'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['cancellation_prepayment']))) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>

	<?php if (isset($this->item->reservationasset_extra_fields['children_and_extra_beds'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['children_and_extra_beds']))) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>

	<?php if (isset($this->item->reservationasset_extra_fields['pets'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['pets']))) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_PETS') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>

	<?php if (isset($this->item->reservationasset_extra_fields['accepted_credit_cards'])
		&& ($value = SRUtilities::translateText($this->item->reservationasset_extra_fields['accepted_credit_cards']))) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> custom-field-row">
            <div class="<?php echo SR_UI_GRID_COL_2 ?> info-heading"><?php echo JText::_('SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS') ?></div>
            <div class="<?php echo SR_UI_GRID_COL_10 ?>"><?php echo $value ?></div>
        </div>
	<?php endif; ?>
<?php endif; ?>
views/reservationasset/tmpl/default_style2.php000060400000027420150751740420015723 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_style2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

?>
<div id="solidres" class="<?php echo SR_UI ?> reservation_asset_style">
    <div class="reservation_asset_item clearfix">
		<?php if ($this->item->params['only_show_reservation_form'] == 0) : ?>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                    <div class="asset-info">
                        <div class="asset-name">
                            <h1><?php echo $this->escape($this->item->name); ?></h1>
                        </div>
                        <div class="asset-rating">
							<?php for ($i = 1; $i <= $this->item->rating; $i++) : ?>
                                <i class="fa fa-star"></i>
							<?php endfor ?>
                        </div>
                        <div class="asset-address_1">
                            <a class="show_map"
                               href="<?php echo JRoute::_('index.php?option=com_solidres&task=map.show&id=' . $this->item->id) ?>">
                                <i class="fa fa-map-marker"></i>
								<?php
								echo $this->item->address_1 . ', ' .
									(!empty($this->item->city) ? $this->item->city . ', ' : '') .
									(!empty($this->item->postcode) ? $this->item->postcode . ', ' : '') .
									$this->item->country_name
								?>
                            </a>
                        </div>

						<?php if (!empty($this->item->address_2)) : ?>
                            <div class="asset-address_2"><?php echo $this->item->address_2; ?></div>
						<?php endif ?>

                        <div class="asset-wish-list"><?php echo $this->events->afterDisplayAssetName; ?></div>

                        <div class="asset-call-action">
                            <a href="#form" class="btn btn-large btn-lg btn-block btn-primary" title="Reserve now">
								<?php echo JText::_('SR_BOOK_NOW'); ?>
                            </a>
                        </div>

                        <div class="asset-contact">
                            <p><i class="fa fa-envelope fa-fw" title="<?php echo JText::_('SR_EMAIL') ?>"></i> <a
                                        href="mailto:<?php echo $this->item->email; ?>"><?php echo $this->item->email; ?></a>
                            </p>

							<?php if (!empty($this->item->phone)) : ?>
                                <p><i class="fa fa-phone-square fa-fw"
                                      title="<?php echo JText::_('SR_PHONE') ?>"></i> <?php echo '<a href="tel:' . $this->item->phone . '">' . $this->item->phone . '</a>'; ?>
                                </p>
							<?php endif ?>

							<?php if (!empty($this->item->fax)) : ?>
                                <p><i class="fa fa-fax fa-fw"
                                      title="<?php echo JText::_('SR_FAX') ?>"></i> <?php echo $this->item->fax; ?></p>
							<?php endif ?>

							<?php if (!empty($this->item->website)) : ?>
                                <p><i class="fa fa-globe fa-fw" title="<?php echo JText::_('SR_WEBSITE') ?>"></i> <a
                                            href="<?php echo $this->item->website; ?>"
                                            target="_blank"><?php echo $this->item->website; ?></a></p>
							<?php endif ?>
                        </div>

                        <div class="asset-social clearfix">
							<?php
							if (!empty($this->item->reservationasset_extra_fields['facebook_link'])
								&& $this->item->reservationasset_extra_fields['facebook_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['facebook_link']; ?>"
                                   target="_blank"><i class="fa fa-facebook-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['twitter_link'])
								&& $this->item->reservationasset_extra_fields['twitter_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['twitter_link']; ?>"
                                   target="_blank"><i class="fa fa-twitter-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['linkedin_link'])
								&& $this->item->reservationasset_extra_fields['linkedin_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['linkedin_link']; ?>"
                                   target="_blank"><i class="fa fa-linkedin-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['tumblr_link'])
								&& $this->item->reservationasset_extra_fields['tumblr_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['tumblr_link']; ?>"
                                   target="_blank"><i class="fa fa-tumblr-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['foursquare_link'])
								&& $this->item->reservationasset_extra_fields['foursquare_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['foursquare_link']; ?>"
                                   target="_blank"><i class="fa fa-foursquare"></i> </a>
							<?php endif;
							?>

							<?php
							if (!empty($this->item->reservationasset_extra_fields['pinterest_link'])
								&& $this->item->reservationasset_extra_fields['pinterest_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['pinterest_link']; ?>"
                                   target="_blank"><i class="fa fa-pinterest-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['slideshare_link'])
								&& $this->item->reservationasset_extra_fields['slideshare_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['slideshare_link']; ?>"
                                   target="_blank"><i class="fa fa-slideshare"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['vimeo_link'])
								&& $this->item->reservationasset_extra_fields['vimeo_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['vimeo_link']; ?>"
                                   target="_blank"><i class="fa fa-vimeo-square"></i> </a>
							<?php endif;
							?>
							<?php
							if (!empty($this->item->reservationasset_extra_fields['youtube_link'])
								&& $this->item->reservationasset_extra_fields['youtube_show'] == 1) : ?>
                                <a href="<?php echo $this->item->reservationasset_extra_fields['youtube_link']; ?>"
                                   target="_blank"> <i class="fa fa-youtube-square"></i> </a>
							<?php endif;
							?>
                        </div>
                    </div>
                </div>
                <div class="<?php echo SR_UI_GRID_COL_8 ?>">
                    <div class="asset-gallery">
						<?php echo $this->defaultGallery; ?>
                    </div>
                </div>
            </div>

            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                    <div class="asset-tabs">
						<?php
						$tabTitle = array();
						$tabPane  = array();

						if (!empty($this->item->description) || !empty($this->item->facilities)) :

							$text = trim($this->item->description);

							if (!empty($this->item->facilities))
							{
								$text .= SRLayoutHelper::render('facility.facility', array('facilities' => $this->item->facilities));
							}

							$tabTitle[] = '<li class="active"><a href="#asset-desc" data-toggle="tab">' . JText::_('SR_DESCRIPTION') . '</a></li>';
							$tabPane[]  = '<div class="tab-pane active" id="asset-desc">' . $text . '</div>';
						endif;

						if (isset($this->item->feedbacks->render) && !empty($this->item->feedbacks->render)) :
							$activeClass = empty($tabTitle) ? 'active' : '';
							$tabTitle[]  = '<li class="' . $activeClass . '"><a href="#asset-feedbacks" data-toggle="tab">' . JText::_('SR_RESERVATION_FEEDBACKS') . '</a></li>';
							$tabPane[]   = '<div class="tab-pane ' . $activeClass . '" id="asset-feedbacks">' . $this->item->feedbacks->render . '</div>';
							$tabTitle[]  = '<li><a href="#asset-feedback-scores" data-toggle="tab">' . JText::_('SR_FEEDBACK_SCORES') . '</a></li>';
							$tabPane[]   = '<div class="tab-pane" id="asset-feedback-scores">' . $this->item->feedbacks->scores . '</div>';
						endif;

						?>

						<?php if (!empty($tabTitle)) : ?>
                            <ul class="nav nav-tabs">
								<?php echo join("\n", $tabTitle); ?>
                            </ul>
						<?php endif ?>

						<?php if (!empty($tabPane)) : ?>
                            <div class="tab-content">
								<?php echo join("\n", $tabPane); ?>
                            </div>
						<?php endif ?>
                    </div>
                </div>
            </div>
		<?php endif ?>

		<?php echo $this->events->beforeDisplayAssetForm; ?>
		<?php if (SRPlugin::isEnabled('user') && $this->showLoginBox) : ?>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                    <div class="alert alert-info sr-login-form">
						<?php
						if (!JFactory::getUser()->get('id')) :
							echo $this->loadTemplate('login');
						else:
							echo $this->loadTemplate('userinfo');
						endif;
						?>
                    </div>
                </div>
            </div>
		<?php endif; ?>

        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
				<?php echo $this->loadTemplate('roomtype' . ((defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? '_' . SR_LAYOUT_STYLE : '')); ?>
            </div>
        </div>

        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
				<?php echo $this->loadTemplate('information'); ?>
            </div>
        </div>

		<?php echo $this->events->afterDisplayAssetForm; ?>
		<?php if ($this->showPoweredByLink) : ?>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                    <p class="powered">
                        Powered by <a target="_blank"
                                      title="Solidres - A hotel booking extension for Joomla & WordPress"
                                      href="https://www.solidres.com">Solidres</a>
                    </p>
                </div>
            </div>
		<?php endif ?>
    </div>
</div>views/reservationasset/tmpl/default_roomtype_style2.php000060400000067150150751740420017665 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_roomtype_style2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

echo SRLayoutHelper::render('asset.coupon_form', array(
	'asset'   => $this->item,
	'coupon'  => $this->coupon,
	'isFresh' => $this->isFresh
));

?>
<a name="form"></a>

<?php if (!empty($this->item->email) || !empty($this->item->params['show_inquiry_form'])): ?>
	<?php echo $this->loadTemplate('inquiry_form'); ?>
<?php endif; ?>
<?php if (isset($this->item->params['show_inline_checkavailability_form'])
	&& $this->item->params['show_inline_checkavailability_form'] == 1
	&& !$this->disableOnlineBooking
) : ?>

    <div id="asset-checkavailability-form">
        <h4><?php echo JText::_('SR_YOUR_STAY') ?></h4>
		<?php echo $this->loadTemplate('checkavailability'); ?>
    </div>
<?php endif ?>

<div id="availability-search">
	<?php
	if ($this->prioritizingRoomTypeId == 0) :
	    echo $this->loadTemplate('searchinfo' . ((defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? '_' . SR_LAYOUT_STYLE : ''));
	endif;
	?>
</div>

<?php if (!$this->disableOnlineBooking) : ?>
    <div class="wizard wizard-style">
        <ul class="steps">
            <li data-target="#step1" class="active reservation-tab reservation-tab-room <?php echo SR_UI_GRID_COL_4 ?>">
                <span class="badge">1</span>
                <h5><?php echo JText::_('SR_STEP_ROOM_AND_RATE') ?></h5>
            </li>
            <li data-target="#step2" class="reservation-tab reservation-tab-guestinfo <?php echo SR_UI_GRID_COL_4 ?>">
                <span class="badge">2</span>
                <h5><?php echo JText::_('SR_STEP_GUEST_INFO_AND_PAYMENT') ?></h5>
            </li>
            <li data-target="#step3"
                class="reservation-tab reservation-tab-confirmation <?php echo SR_UI_GRID_COL_4 ?>">
                <span class="badge">3</span>
                <h5><?php echo JText::_('SR_STEP_CONFIRMATION') ?></h5>
            </li>
        </ul>
    </div>
<?php endif ?>

<div class="step-content">
    <div class="step-pane active" id="step1">
        <!-- Tab 1 -->
        <div class="reservation-single-step-holder room room-list">
            <form enctype="multipart/form-data"
                  id="sr-reservation-form-room"
                  class="sr-reservation-form"
                  action="<?php echo JUri::base() ?>index.php?option=com_solidres&task=reservation.process&step=room&format=json"
                  method="POST">
				<?php if (count($this->item->roomTypes) > 0) : ?>
					<?php if (!$this->isFresh) : ?>
                        <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-top">
                            <div class="<?php echo SR_UI_GRID_COL_8 ?>">
                                <div class="inner">
                                    <strong><?php echo JText::_('SR_ROOMINFO_STEP_NOTICE_MESSAGE') ?></strong>
                                </div>
                            </div>
                            <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                                <div class="inner">
                                    <div class="btn-group">
                                        <button data-step="room" type="submit" class="btn btn-success">
                                            <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                                        </button>
                                    </div>
                                </div>
                            </div>
                        </div>
					<?php endif ?>

					<?php
					$count = 1;
					$prioritizingRoomTypeName = '';
					$countNotPrioritizing = 0;
					if ($this->prioritizingRoomTypeId > 0) :
						$countNotPrioritizing = count($this->item->roomTypes) - 1;
					endif;

					foreach ($this->item->roomTypes as $roomType) :
						if (isset($roomType->defaultTariffBreakDown)) :
							$defaultTariffBreakDownHtml = '<table class=\"tariff-break-down\">';
							foreach ($roomType->defaultTariffBreakDown as $key => $breakDownDetails) :
								if ($key % 7 == 0 && $key == 0) :
									$defaultTariffBreakDownHtml .= '<tr>';
                                elseif ($key % 7 == 0) :
									$defaultTariffBreakDownHtml .= '</tr><tr>';
								endif;
								$tmpKey                     = key($breakDownDetails);
								$defaultTariffBreakDownHtml .= '<td><p>' . $this->dayMapping[$tmpKey] . '</p><span class=\"' . $this->tariffNetOrGross . '\">' . $breakDownDetails[$tmpKey][$this->tariffNetOrGross]->format() . '</span>';
							endforeach;
							$defaultTariffBreakDownHtml .= '</tr></table>';

							$this->document->addScriptDeclaration('
					Solidres.jQuery(function($){
						$(".default_tariff_break_down_' . $roomType->id . '").popover({
							html: true,
							content: "' . $defaultTariffBreakDownHtml . '",
							title: "' . JText::_('SR_TARIFF_BREAK_DOWN') . '",
							placement: "bottom",
							trigger: "click"
						});
					});
				');
						endif;

						if (isset($roomType->complexTariffBreakDown)) :
							$complexTariffBreakDownHtml = '<table class=\"tariff-break-down\">';
							foreach ($roomType->complexTariffBreakDown as $key => $breakDownDetails) :
								if ($key % 7 == 0 && $key == 0) :
									$complexTariffBreakDownHtml .= '<tr>';
                                elseif ($key % 7 == 0) :
									$complexTariffBreakDownHtml .= '</tr><tr>';
								endif;
								$tmpKey                     = key($breakDownDetails);
								$complexTariffBreakDownHtml .= '<td><p>' . $this->dayMapping[$tmpKey] . '</p><span class=\"' . $this->tariffNetOrGross . '\">' . $breakDownDetails[$tmpKey][$this->tariffNetOrGross]->format() . '</span>';
							endforeach;

							$complexTariffBreakDownHtml .= '</tr></table>';
							$this->document->addScriptDeclaration('
					Solidres.jQuery(function($){
						$(".complex_tariff_break_down_' . $roomType->id . '").popover({
							html: true,
							content: "' . $complexTariffBreakDownHtml . '",
							title: "' . JText::_('SR_TARIFF_BREAK_DOWN') . '",
							placement: "bottom",
							trigger: "click"
						});
					});
				');
						endif;

						$this->document->addScriptDeclaration('
				Solidres.jQuery(function($){
					$(".sr-photo-' . $roomType->id . '").colorbox({rel:"sr-photo-' . $roomType->id . '", transition:"fade", width: "98%", height: "98%", className: "colorbox-w"});
					$(".carousel").carousel();
				});
			');

						$rowCSSClass                        = ($count % 2) ? 'even' : 'odd';
						$rowCSSClass                        .= $roomType->featured == 1 ? ' featured' : '';
						$rowCSSClass                        .= ' room_type_row';
						$currentSelectedRoomNumberPerTariff = array();

						if (!is_array($roomType->params)) :
							$roomType->params = json_decode($roomType->params, true);
						endif;

						$skipRoomForm = false;
						if (isset($roomType->params['skip_room_form']) && $roomType->params['skip_room_form'] == 1) :
							$skipRoomForm = true;
						endif;

						$isExclusive = false;
						if (isset($roomType->params['is_exclusive']) && $roomType->params['is_exclusive'] == 1) :
							$isExclusive = true;
						endif;

						$showRemainingRooms = true;
						if (isset($roomType->params['show_number_remaining_rooms']) && $roomType->params['show_number_remaining_rooms'] == 0) :
							$showRemainingRooms = false;
						endif;

						$showMoreInfo = true;
						if (isset($roomType->params['show_more_info_button']) && $roomType->params['show_more_info_button'] == 0) :
							$showMoreInfo = false;
						endif;

						$roomType->text = $roomType->description;
						JFactory::getApplication()->triggerEvent('onContentPrepare', array('com_solidres.roomtype', &$roomType, &$roomType->params, 0));

						$isPrioritizingRoomType = false;
						if ($this->prioritizingRoomTypeId == $roomType->id) :
							$isPrioritizingRoomType = true;
							$rowCSSClass .= " prioritizing";
							$prioritizingRoomTypeName = $roomType->name;
						endif;

						if ($this->prioritizingRoomTypeId > 0 && $count == 2) :
							if ($countNotPrioritizing > 1) :
								$msg = 'SR_PRIORITIZING_ROOMTYPE_NOTICE';
							else:
								$msg = 'SR_PRIORITIZING_ROOMTYPE_NOTICE_1';
							endif;

							echo '<div class="prioritizing-roomtype-notice">' . JText::sprintf($msg, $prioritizingRoomTypeName, $countNotPrioritizing) . '</div>';
						endif;
						?>
                        <div class="<?php echo $rowCSSClass ?>"
                             id="room_type_row_<?php echo $roomType->id ?>"
	                        <?php echo $this->prioritizingRoomTypeId > 0 && !$isPrioritizingRoomType ? 'style="display: none"' : '' ?>
                        >

                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <div class="<?php echo SR_UI_GRID_COL_4 ?> room_type_gallery">
									<?php
									if (!empty($roomType->media)) :
										echo '<div id="carousel' . $roomType->id . '" class="carousel slide">';
										echo '<div class="carousel-inner">';
										$countMedia = 0;
										$active     = '';
										foreach ($roomType->media as $media) :
											$active = ($countMedia == 0) ? 'active' : '';
											?>
                                            <div class="<?php echo SR_UI_CAROUSEL_ITEM ?> <?php echo $active ?>">
                                                <a class="sr-photo-<?php echo $roomType->id ?>"
                                                   href="<?php echo $this->solidresMedia->getMediaUrl($media->value); ?>">
                                                    <img src="<?php echo $this->solidresMedia->getMediaUrl($media->value, 'roomtype_medium'); ?>"
                                                         alt="<?php echo $roomType->name ?>"/>
                                                </a>
                                            </div>
											<?php
											$countMedia++;
										endforeach;
										echo '</div>';
										echo '<a class="carousel-control left" href="#carousel' . $roomType->id . '" data-slide="prev">&lsaquo;</a>';
										echo '<a class="carousel-control right" href="#carousel' . $roomType->id . '" data-slide="next">&rsaquo;</a>';
										echo '</div>';
									endif;
									?>
                                </div>

                                <div class="<?php echo SR_UI_GRID_COL_8 ?> room_type_details">
                                    <div class="roomtype_name" id="srt_<?php echo $roomType->id ?>">
							<span class="label label-default">
								<?php echo $roomType->occupancy_max > 0 ? $roomType->occupancy_max : (int) $roomType->occupancy_adult + (int) $roomType->occupancy_child ?>
                                <i class="fa fa-user"></i>
							</span>
                                        <h4><?php echo $roomType->name; ?>
											<?php if ($roomType->featured == 1) : ?>
                                                <span class="label label-info"><i
                                                            class="fa fa-certificate"></i> <?php echo JText::_('SR_FEATURED_ROOM_TYPE') ?></span>
											<?php endif ?>
	                                        <?php if ($isPrioritizingRoomType) : ?>
                                                <span class="label label-warning"><?php echo JText::_('SR_PRIORITIZING_ROOM_TYPE') ?></span>
	                                        <?php endif ?>
                                        </h4>
                                    </div>

                                    <div class="roomtype_desc">
										<?php echo $roomType->text ?>
                                    </div>

                                    <div class="roomtype_more_desc">
										<?php if (!empty($roomType->roomtype_custom_fields['room_size'])) : ?>
                                            <p>
                                                <i class="fa fa-arrows-alt fa-fw"></i> <?php echo JText::_('SR_ROOM_SIZE') . ': <strong>' . $roomType->roomtype_custom_fields['room_size'] . '</strong>' ?>
                                            </p>
										<?php endif ?>
										<?php if (!empty($roomType->roomtype_custom_fields['bed_size'])) : ?>
                                            <p>
                                                <i class="fa fa-bed fa-fw"></i> <?php echo JText::_('SR_BED_SIZE') . ': <strong>' . $roomType->roomtype_custom_fields['bed_size'] . '</strong>' ?>
                                            </p>
										<?php endif ?>
                                        <p>
                                            <i class="fa fa-users fa-fw"></i> <?php echo JText::_('SR_MAX_GUESTS') . ': <strong>' . ($roomType->occupancy_max > 0 ? $roomType->occupancy_max : JText::plural('SR_SELECT_ADULT_QUANTITY', $roomType->occupancy_adult) . ' - ' . JText::plural('SR_SELECT_CHILD_QUANTITY', $roomType->occupancy_child)) . '</strong>' ?>
                                        </p>
                                    </div>

                                    <!-- Room available message -->
									<?php
									if (!$this->isFresh && !empty($roomType->availableTariffs) && $showRemainingRooms) :
										if (isset($roomType->totalAvailableRoom)) :
											?>
                                            <p>
                                    <span class="num_rooms_available_msg"
                                          id="num_rooms_available_msg_<?php echo $roomType->id ?>"
                                          data-original-text="<?php echo JText::plural('SR_WE_HAVE_X_' . ($roomType->is_private ? 'ROOM' : 'BED') . '_LEFT', $roomType->totalAvailableRoom) ?>">
										<?php echo JText::plural('SR_WE_HAVE_X_' . ($roomType->is_private ? 'ROOM' : 'BED') . '_LEFT', $roomType->totalAvailableRoom) ?>
									</span>
                                            </p>
										<?php
										endif;
									endif;
									?>

									<?php if (!empty($roomType->facilities)): ?>
										<?php echo SRLayoutHelper::render('facility.facility', array('facilities' => $roomType->facilities)); ?>
									<?php endif; ?>

									<?php if ($showMoreInfo) : ?>
                                        <button type="button" class="btn btn-default toggle_more_desc"
                                                data-target="<?php echo $roomType->id ?>">
                                            <i class="fa fa-eye"></i>
											<?php echo JText::_('SR_SHOW_MORE_INFO') ?>
                                        </button>
									<?php endif ?>

									<?php if ($this->config->get('availability_calendar_enable', 1)) : ?>
                                        <button type="button" data-roomtypeid="<?php echo $roomType->id ?>"
                                                class="btn btn-default load-calendar">
                                            <i class="fa fa-calendar"></i> <?php echo JText::_('SR_AVAILABILITY_CALENDAR_VIEW') ?>
                                        </button>
									<?php endif ?>

									<?php if (SRPlugin::isEnabled('complextariff') && $this->showTariffs) : ?>
                                        <button type="button" data-roomtypeid="<?php echo $roomType->id ?>"
                                                class="btn btn-default toggle-tariffs">
											<?php if ($this->showTariffs) : ?>
                                                <i class="fa fa-compress"></i> <?php echo JText::_('SR_HIDE_TARIFFS') ?>
											<?php else : ?>
                                                <i class="fa fa-expand"></i> <?php echo JText::_('SR_SHOW_TARIFFS') ?>
											<?php endif ?>
                                        </button>
									<?php endif ?>

                                    <div class="unstyled more_desc" id="more_desc_<?php echo $roomType->id ?>"
                                         style="display: none">
										<?php
										if (!empty($roomType->roomtype_custom_fields['room_facilities'])) :
											echo '<p><strong>' . JText::_('SR_ROOM_FACILITIES') . ':</strong> ' . $roomType->roomtype_custom_fields['room_facilities'] . '</p>';
										endif;

										if (!empty($roomType->roomtype_custom_fields['taxes'])) :
											echo '<p><strong>' . JText::_('SR_TAXES') . ':</strong> ' . $roomType->roomtype_custom_fields['taxes'] . '</p>';
										endif;

										if (!empty($roomType->roomtype_custom_fields['prepayment'])) :
											echo '<p><strong>' . JText::_('SR_PREPAYMENT') . ':</strong> ' . $roomType->roomtype_custom_fields['prepayment'] . '</p>';
										endif;

										?>
                                    </div>
                                </div> <!-- end of span8 -->
                            </div> <!-- end of row-fluid -->

							<?php if ($this->config->get('availability_calendar_enable', 1)) : ?>
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                        <div class="availability-calendar"
                                             id="availability-calendar-<?php echo $roomType->id ?>"
                                             style="display: none">
                                        </div>
                                    </div>
                                </div>
							<?php endif ?>

							<?php if (SRPlugin::isEnabled('flexsearch')) :
								$layout = SRLayoutHelper::getInstance();
								$layout->addIncludePath(SRPlugin::getLayoutPath('flexsearch'));
								echo $layout->render('roomtype.flexsearch', array('roomType' => $roomType, 'bookingType' => $this->item->booking_type, 'enableAutoScroll' => $this->enableAutoScroll));
							endif ?>

							<?php if (!SRPlugin::isEnabled('flexsearch') || (SRPlugin::isEnabled('flexsearch') && empty($roomType->otherAvailableDates))) : ?>
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>"
                                     id="tariff-holder-<?php echo $roomType->id ?>"
                                     style="<?php echo !$this->disableOnlineBooking || $this->showTariffs ? '' : 'display: none' ?>">
                                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
										<?php
										if (!$this->isFresh) :
											if (!empty($roomType->availableTariffs)) :

												$countRatePerRoomType = 0;
												$countRatePerRoom     = 0;
												if ($roomType->number_of_room == $roomType->totalAvailableRoom) :
													foreach ($roomType->availableTariffs as $tariffKey => $tariffInfo) :

														if ($tariffInfo['tariffType'] != 4) :
															$countRatePerRoom++;
															continue;
														endif;

														$minPrice = $this->appendPriceSuffix(
															$tariffInfo['val'],
															$tariffInfo['tariffType'],
															$this->item->booking_type,
															($this->item->booking_type == 0 ? $this->stayLength : $this->stayLength + 1),
															$tariffInfo['val_original'],
															$roomType->is_private,
															$tariffInfo['adults'],
															$tariffInfo['children']
														);

														$layout = SRLayoutHelper::getInstance();
														echo $layout->render('asset.tariff_book_style2', array(
																'item'                 => $this->item,
																'Itemid'               => $this->itemid,
																'roomType'             => $roomType,
																'bookingType'          => $this->item->booking_type,
																'disableOnlineBooking' => $this->disableOnlineBooking,
																'minPrice'             => $minPrice,
																'tariffKey'            => $tariffKey,
																'tariffInfo'           => $tariffInfo,
																'stayLength'           => $this->stayLength,
																'selectedRoomTypes'    => $this->selectedRoomTypes,
																'skipRoomForm'         => $skipRoomForm,
																'isExclusive'          => $isExclusive,
																'showRemainingRooms'   => $showRemainingRooms
															)
														);
														$countRatePerRoomType++;
													endforeach;
												endif;

												if ($countRatePerRoomType > 0 && $countRatePerRoom > 0) :
													echo '<div class="tariff-sep"></div>';
												endif;

												foreach ($roomType->availableTariffs as $tariffKey => $tariffInfo) :

													if ($tariffInfo['tariffType'] == 4) continue;

													$minPrice = $this->appendPriceSuffix(
														$tariffInfo['val'],
														$tariffInfo['tariffType'],
														$this->item->booking_type,
														($this->item->booking_type == 0 ? $this->stayLength : $this->stayLength + 1),
														$tariffInfo['val_original'],
														$roomType->is_private,
														$tariffInfo['adults'],
														$tariffInfo['children']
													);

													$layout = SRLayoutHelper::getInstance();
													echo $layout->render('asset.tariff_book_style2', array(
															'item'                 => $this->item,
															'Itemid'               => $this->itemid,
															'roomType'             => $roomType,
															'bookingType'          => $this->item->booking_type,
															'disableOnlineBooking' => $this->disableOnlineBooking,
															'minPrice'             => $minPrice,
															'tariffKey'            => $tariffKey,
															'tariffInfo'           => $tariffInfo,
															'stayLength'           => $this->stayLength,
															'selectedRoomTypes'    => $this->selectedRoomTypes,
															'skipRoomForm'         => $skipRoomForm,
															'isExclusive'          => $isExclusive,
															'showRemainingRooms'   => $showRemainingRooms
														)
													);
												endforeach;
											else :
												if (SRPlugin::isEnabled('flexsearch') && !empty($roomType->otherAvailableDates)) :

												else :
													$link = JRoute::_('index.php?option=com_solidres&view=reservationasset&id=' . $this->item->id . ($this->enableAutoScroll ? '#form' : ''));
													echo '<div class="alert alert-notice">' . JText::sprintf('SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT', $this->checkinFormatted, $this->checkoutFormatted, $link) . '</div>';
												endif;
											endif;
										endif;

										if ($this->isFresh && $this->showTariffs == 1 && isset($roomType->tariffs) && is_array($roomType->tariffs)) :

											$countRatePerRoomType = 0;
											foreach ($roomType->tariffs as $tariff) :

												if ($tariff->type != 4) continue;
												$minPrice = $this->getMinPrice($tariff, $roomType);
												$layout   = SRLayoutHelper::getInstance();
												echo $layout->render('asset.tariff_list_style2', array(
														'item'                 => $this->item,
														'Itemid'               => $this->itemid,
														'roomType'             => $roomType,
														'bookingType'          => $this->item->booking_type,
														'disableOnlineBooking' => $this->disableOnlineBooking,
														'tariff'               => $tariff,
														'minPrice'             => $minPrice
													)
												);
												$countRatePerRoomType++;

											endforeach; // end foreach of complex tariffs

											if ($countRatePerRoomType > 0) :
												echo '<div class="tariff-sep"></div>';
											endif;

											foreach ($roomType->tariffs as $tariff) :

												if ($tariff->type == 4) continue;
												$minPrice = $this->getMinPrice($tariff, $roomType);
												$layout   = SRLayoutHelper::getInstance();
												echo $layout->render('asset.tariff_list_style2', array(
														'item'                 => $this->item,
														'Itemid'               => $this->itemid,
														'roomType'             => $roomType,
														'bookingType'          => $this->item->booking_type,
														'disableOnlineBooking' => $this->disableOnlineBooking,
														'tariff'               => $tariff,
														'minPrice'             => $minPrice
													)
												);

											endforeach;
										endif;
										?>
                                    </div> <!-- end of span12 -->
                                </div> <!-- end of row-fluid and #tariff-holder -->
							<?php endif ?>
                        </div> <!-- end of row-fluid -->

						<?php
						$count++;
					endforeach
					?>
				<?php
				else :
					?>
                    <div class="alert alert-warning">
						<?php
						echo JText::sprintf('SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS',
							JDate::getInstance($this->checkin, $this->timezone)->format($this->dateFormat, true),
							JDate::getInstance($this->checkout, $this->timezone)->format($this->dateFormat, true)
						);
						?>
                        <a class=""
                           href="<?php echo JRoute::_('index.php?option=com_solidres&task=reservationasset.startOver&id=' . $this->item->id) ?>"><i
                                    class="fa fa-refresh"></i> <?php echo JText::_('SR_SEARCH_RESET') ?></a>
                    </div>
				<?php
				endif;
				?>

				<?php if (!$this->isFresh && count($this->item->roomTypes) > 0) : ?>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
                        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
                            <div class="inner">
                                <strong><?php echo JText::_('SR_ROOMINFO_STEP_NOTICE_MESSAGE') ?></strong>
                            </div>
                        </div>
                        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                            <div class="inner">
                                <div class="btn-group">
                                    <button data-step="room" type="submit" class="btn btn-success">
                                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                                    </button>
                                </div>
                            </div>
                        </div>
                    </div>
				<?php endif ?>

                <input type="hidden" name="jform[raid]" value="<?php echo $this->item->id ?>"/>
                <input type="hidden" name="jform[next_step]" value="guestinfo"/>
                <input type="hidden" name="jform[bookingconditions]"
                       value="<?php echo $this->item->params['termsofuse'] ?>"/>
                <input type="hidden" name="jform[privacypolicy]"
                       value="<?php echo $this->item->params['privacypolicy'] ?>"/>

				<?php echo JHtml::_('form.token'); ?>
            </form>
        </div>
        <!-- /Tab 1 -->

    </div>

    <div class="step-pane" id="step2">
        <!-- Tab 2 -->
        <div class="reservation-single-step-holder guestinfo nodisplay">
        </div>
        <!-- /Tab 2 -->
    </div>

    <div class="step-pane" id="step3">
        <!-- Tab 3 -->
        <div class="reservation-single-step-holder confirmation nodisplay">
        </div>
        <!-- /Tab 3 -->
    </div>

</div>
views/reservationasset/tmpl/default_searchinfo_style3.php000060400000010740150751740420020122 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/reservationasset/default_searchinfo_style3.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

$dateCheckIn             = JDate::getInstance();
$dateCheckOut            = JDate::getInstance();
$showDateInfo            = !empty($this->checkin) && !empty($this->checkout);
$showAssetRemainingRooms = $this->config->get('show_asset_remaining_rooms', 1);
?>

<div class="availability-search">
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <h3><i class="fa fa-check-square"></i> <?php echo JText::_('SR_AVAILABLE_ROOMS') ?></h3>
        </div>
    </div>
</div>

<?php if ($this->checkin && $this->checkout && count($this->item->roomTypes) > 0 && $showAssetRemainingRooms) : ?>
    <div class="availability-search-info">
		<?php

		if ($this->item->roomsOccupancyOptionsAdults == 0 && $this->item->roomsOccupancyOptionsChildren == 0) :
			echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG4',
				$this->item->totalAvailableRoom,
				$this->checkinFormatted,
				$this->checkoutFormatted
			);
		else :
			if ($this->item->totalOccupancyMax >= ($this->item->roomsOccupancyOptionsAdults + $this->item->roomsOccupancyOptionsChildren) && $this->item->totalAvailableRoom > 0) :
				if ($this->item->totalAvailableRoom >= $this->item->roomsOccupancyOptionsCount) :
					echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG1',
						$this->item->totalAvailableRoom,
						$this->checkinFormatted,
						$this->checkoutFormatted,
						$this->item->roomsOccupancyOptionsAdults,
						$this->item->roomsOccupancyOptionsChildren
					);
				else:
					echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG2',
						$this->item->totalAvailableRoom,
						$this->checkinFormatted,
						$this->checkoutFormatted,
						$this->item->roomsOccupancyOptionsAdults,
						$this->item->roomsOccupancyOptionsChildren
					);
				endif;
			else :
				echo JText::sprintf('SR_ROOM_AVAILABLE_FROM_TO_MSG3',
					$this->checkinFormatted,
					$this->checkoutFormatted,
					$this->item->roomsOccupancyOptionsAdults,
					$this->item->roomsOccupancyOptionsChildren
				);

			endif;
		endif;
		?>
        <a class=""
           href="<?php echo JRoute::_('index.php?option=com_solidres&task=reservationasset.startOver&id=' . $this->item->id . '&Itemid=' . $this->itemid, false) ?>"><i
                    class="fa fa-refresh"></i> <?php echo JText::_('SR_SEARCH_RESET') ?></a>
    </div>
<?php endif; ?>

<form id="sr-checkavailability-form-component"
      action="<?php echo JRoute::_('index.php?option=com_solidres&view=reservationasset&id=' . $this->item->id . '&Itemid=' . $this->itemid, false); ?>"
      method="GET"
>

    <input type="hidden"
           name="checkin"
           value="<?php echo !empty($this->checkin) ? $this->checkin : $dateCheckIn->add(new DateInterval('P' . ($this->minDaysBookInAdvance) . 'D'))->setTimezone($this->timezone)->format('d-m-Y', true) ?>"
    />

    <input type="hidden"
           name="checkout"
           value="<?php echo !empty($this->checkout) ? $this->checkout : $dateCheckOut->add(new DateInterval('P' . ($this->minDaysBookInAdvance + $this->minLengthOfStay) . 'D'))->setTimezone($this->timezone)->format('d-m-Y', true) ?>"
    />
    <input type="hidden" name="Itemid" value="<?php echo $this->itemid ?>"/>
    <input type="hidden" name="id" value="<?php echo $this->item->id ?>"/>
    <input type="hidden" name="task" value="reservationasset.checkavailability"/>
    <input type="hidden" name="option" value="com_solidres"/>
    <input type="hidden" name="ts" value=""/>
	<?php echo JHtml::_('form.token'); ?>
</form>views/reservationasset/view.html.php000060400000047533150751740420013745 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

/**
 * HTML View class for the Solidres component
 *
 * @package      Solidres
 * @since        0.1.0
 */
class SolidresViewReservationAsset extends JViewLegacy
{
	protected $item;
	protected $solidresCurrency;

	public function display($tpl = null)
	{
		$model                     = $this->getModel();
		$this->config              = JComponentHelper::getParams('com_solidres');
		$this->systemConfig        = JFactory::getConfig();
		$this->showPoweredByLink   = $this->config->get('show_solidres_copyright', '1');
		$this->showFrontendTariffs = $this->config->get('show_frontend_tariffs', '1');
		$this->app                 = JFactory::getApplication();

		$this->item = $model->getItem();

		if ($this->item->params['access-view'] == false || $this->item->state != 1)
		{
			throw new JAccessExceptionNotallowed(JText::_('JERROR_ALERTNOAUTHOR'), 403);
		}

		$this->checkin                = $model->getState('checkin', '');
		$this->checkout               = $model->getState('checkout', '');
		$this->countryId              = $model->getState('country_id');
		$this->geoStateId             = $model->getState('geo_state_id');
		$this->roomTypeObj            = SRFactory::get('solidres.roomtype.roomtype');
		$this->srReservation          = SRFactory::get('solidres.reservation.reservation');
		$this->solidresMedia          = SRFactory::get('solidres.media.media');
		$this->stayLength             = SRUtilities::calculateDateDiff($this->checkin, $this->checkout);
		$this->document               = JFactory::getDocument();
		$this->context                = 'com_solidres.reservation.process';
		$this->coupon                 = $this->app->getUserState($this->context . '.coupon');
		$this->selectedRoomTypes      = $this->app->getUserState($this->context . '.room');
		$this->selectedTariffs        = $this->app->getUserState($this->context . '.current_selected_tariffs');
		$this->isAmending             = $this->app->getUserState($this->context . '.is_amending', 0);
		$this->prioritizingRoomTypeId = $this->app->getUserState($this->context . '.prioritizing_room_type_id', 0);
		$this->showTaxIncl            = $this->config->get('show_price_with_tax', 0);
		$this->minDaysBookInAdvance   = $this->config->get('min_days_book_in_advance', 0);
		$this->maxDaysBookInAdvance   = $this->config->get('max_days_book_in_advance', 0);
		$this->minLengthOfStay        = $this->config->get('min_length_of_stay', 1);
		$this->dateFormat             = $this->config->get('date_format', 'd-m-Y');
		$this->showLoginBox           = $this->config->get('show_login_box', 0);
		$this->enableAutoScroll       = $this->config->get('enable_auto_scroll', 1);
		$datePickerMonthNum           = $this->config->get('datepicker_month_number', 3);
		$weekStartDay                 = $this->config->get('week_start_day', 1);
		$this->solidresCurrency       = new SRCurrency(0, $this->item->currency_id);
		$this->tzoffset               = $this->systemConfig->get('offset');
		$this->timezone               = new DateTimeZone($this->tzoffset);
		$this->solidresStyle          = (defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? SR_LAYOUT_STYLE : 'style1';
		$this->item->text             = $this->item->description;

		$activeMenu   = $this->app->getMenu()->getActive();
		$this->itemid = null;
		if (isset($activeMenu))
		{
			$this->itemid = $activeMenu->id;
		}

		JHtml::_('jquery.framework');
		JHtml::_('bootstrap.framework');
		SRHtml::_('jquery.colorbox', 'show_map', '95%', '90%', 'true', 'false');
		SRHtml::_('jquery.popover');

		$jsOptions = ['version' => SRVersion::getHashVersion(), 'relative' => true];
		JHtml::_('stylesheet', 'com_solidres/assets/main.min.css', $jsOptions);
		JHtml::_('stylesheet', 'com_solidres/assets/' . $this->solidresStyle . '.min.css', $jsOptions);
		JHtml::_('script', 'com_solidres/assets/datePicker/localization/jquery.ui.datepicker-' . JFactory::getLanguage()->getTag() . '.js', $jsOptions);
		$this->document->addScriptDeclaration('
			Solidres.jQuery(function ($) {
				$(".sr-photo").colorbox({rel:"sr-photo", transition:"fade", width: "98%", height: "98%", className: "colorbox-w"});
				var minLengthOfStay = ' . $this->minLengthOfStay . ';
				var checkout_component = $(".checkout_component").datepicker({
					minDate : "+' . ($this->minDaysBookInAdvance + $this->minLengthOfStay) . '",
					numberOfMonths : ' . $datePickerMonthNum . ',
					showButtonPanel : true,
					dateFormat : "dd-mm-yy",
					firstDay: ' . $weekStartDay . '
				});
				var checkin_component = $(".checkin_component").datepicker({
					minDate : "+' . ($this->minDaysBookInAdvance) . 'd",
					' . ($this->maxDaysBookInAdvance > 0 ? 'maxDate: "+' . ($this->maxDaysBookInAdvance) . '",' : '') . '
					numberOfMonths : ' . $datePickerMonthNum . ',
					showButtonPanel : true,
					dateFormat : "dd-mm-yy",
					onSelect : function() {
						var checkoutMinDate = $(this).datepicker("getDate", "+1d");
						checkoutMinDate.setDate(checkoutMinDate.getDate() + minLengthOfStay);
						checkout_component.datepicker( "option", "minDate", checkoutMinDate );
						checkout_component.datepicker( "setDate", checkoutMinDate);
					},
					firstDay: ' . $weekStartDay . '
				});
				$(".ui-datepicker").addClass("notranslate");
			});

			Solidres.child_max_age_limit = ' . $this->config->get('child_max_age_limit', 17) . ';
		');

		if (!empty($this->checkin) && !empty($this->checkout))
		{
			$this->checkinFormatted  = JDate::getInstance($this->checkin, $this->timezone)->format($this->dateFormat, true);
			$this->checkoutFormatted = JDate::getInstance($this->checkout, $this->timezone)->format($this->dateFormat, true);
			$this->document->addScriptDeclaration('
				Solidres.jQuery(function ($) {
					isAtLeastOnRoomTypeSelected();
				});
			');

			$conditions                             = array();
			$conditions['min_days_book_in_advance'] = $this->minDaysBookInAdvance;
			$conditions['max_days_book_in_advance'] = $this->maxDaysBookInAdvance;
			$conditions['min_length_of_stay']       = $this->minLengthOfStay;
			$conditions['booking_type']             = $this->item->booking_type;

			try
			{
				$this->srReservation->isCheckInCheckOutValid($this->checkin, $this->checkout, $conditions);
			}
			catch (Exception $e)
			{
				switch ($e->getCode())
				{
					default:
					case 50001:
						$msg = JText::_($e->getMessage());
						break;
					case 50002:
						$msg = JText::sprintf($e->getMessage(), $conditions['min_length_of_stay']);
						break;
					case 50003:
						$msg = JText::sprintf($e->getMessage(), $conditions['min_days_book_in_advance']);
						break;
					case 50004:
						$msg = JText::sprintf($e->getMessage(), $conditions['max_days_book_in_advance']);
						break;
				}

				$this->checkin = $this->checkout = '';

				$this->app->enqueueMessage($msg, 'warning');
			}
		}
		else
		{
			$this->app->setUserState($this->context . '.prioritizing_room_type_id', null);
			$this->prioritizingRoomTypeId = null;
		}

		JText::script('SR_CAN_NOT_REMOVE_COUPON');
		JText::script('SR_SELECT_AT_LEAST_ONE_ROOMTYPE');
		JText::script('SR_ERROR_CHILD_MAX_AGE');
		JText::script('SR_AND');
		JText::script('SR_TARIFF_BREAK_DOWN');
		JText::script('SUN');
		JText::script('MON');
		JText::script('TUE');
		JText::script('WED');
		JText::script('THU');
		JText::script('FRI');
		JText::script('SAT');
		JText::script('SR_NEXT');
		JText::script('SR_BACK');
		JText::script('SR_PROCESSING');
		JText::script('SR_CHILD');
		JText::script('SR_CHILD_AGE_SELECTION_JS');
		JText::script('SR_CHILD_AGE_SELECTION_1_JS');
		JText::script('SR_ONLY_1_LEFT');
		JText::script('SR_ONLY_2_LEFT');
		JText::script('SR_ONLY_3_LEFT');
		JText::script('SR_ONLY_4_LEFT');
		JText::script('SR_ONLY_5_LEFT');
		JText::script('SR_ONLY_6_LEFT');
		JText::script('SR_ONLY_7_LEFT');
		JText::script('SR_ONLY_8_LEFT');
		JText::script('SR_ONLY_9_LEFT');
		JText::script('SR_ONLY_10_LEFT');
		JText::script('SR_ONLY_11_LEFT');
		JText::script('SR_ONLY_12_LEFT');
		JText::script('SR_ONLY_13_LEFT');
		JText::script('SR_ONLY_14_LEFT');
		JText::script('SR_ONLY_15_LEFT');
		JText::script('SR_ONLY_16_LEFT');
		JText::script('SR_ONLY_17_LEFT');
		JText::script('SR_ONLY_18_LEFT');
		JText::script('SR_ONLY_19_LEFT');
		JText::script('SR_ONLY_20_LEFT');

		JText::script('SR_ONLY_1_LEFT_BED');
		JText::script('SR_ONLY_2_LEFT_BED');
		JText::script('SR_ONLY_3_LEFT_BED');
		JText::script('SR_ONLY_4_LEFT_BED');
		JText::script('SR_ONLY_5_LEFT_BED');
		JText::script('SR_ONLY_6_LEFT_BED');
		JText::script('SR_ONLY_7_LEFT_BED');
		JText::script('SR_ONLY_8_LEFT_BED');
		JText::script('SR_ONLY_9_LEFT_BED');
		JText::script('SR_ONLY_10_LEFT_BED');
		JText::script('SR_ONLY_11_LEFT_BED');
		JText::script('SR_ONLY_12_LEFT_BED');
		JText::script('SR_ONLY_13_LEFT_BED');
		JText::script('SR_ONLY_14_LEFT_BED');
		JText::script('SR_ONLY_15_LEFT_BED');
		JText::script('SR_ONLY_16_LEFT_BED');
		JText::script('SR_ONLY_17_LEFT_BED');
		JText::script('SR_ONLY_18_LEFT_BED');
		JText::script('SR_ONLY_19_LEFT_BED');
		JText::script('SR_ONLY_20_LEFT_BED');

		JText::script('SR_SHOW_MORE_INFO');
		JText::script('SR_HIDE_MORE_INFO');
		JText::script('SR_AVAILABILITY_CALENDAR_CLOSE');
		JText::script('SR_AVAILABILITY_CALENDAR_VIEW');
		JText::script('SR_PROCESSING');
		JText::script('SR_USERNAME_EXISTS');
		JText::script('SR_SHOW_TARIFFS');
		JText::script('SR_HIDE_TARIFFS');
		JText::script('SR_WARN_ONLY_LETTERS_N_SPACES_MSG');
		JText::script('SR_WARN_INVALID_EXPIRATION_MSG');

		JPluginHelper::importPlugin('solidres');
		JPluginHelper::importPlugin('content');
		$this->app->triggerEvent('onContentPrepare', array('com_solidres.asset', &$this->item, &$this->item->params, 0));
		$this->app->triggerEvent('onSolidresAssetViewLoad', array(&$this->item));
		$this->events                         = new stdClass;
		$this->events->afterDisplayAssetName  = join("\n", $this->app->triggerEvent('onSolidresAfterDisplayAssetName', array(&$this->item, &$this->item->params)));
		$this->events->beforeDisplayAssetForm = join("\n", $this->app->triggerEvent('onSolidresBeforeDisplayAssetForm', array(&$this->item, &$this->item->params)));
		$this->events->afterDisplayAssetForm  = join("\n", $this->app->triggerEvent('onSolidresAfterDisplayAssetForm', array(&$this->item, &$this->item->params)));

		if ($errors = $this->get('Errors'))
		{
			throw new Exception(implode("\n", $errors), 500);
		}


		$this->defaultGallery = '';
		$defaultGallery       = $this->config->get('default_gallery', 'simple_gallery');
		if (SRPlugin::isEnabled($defaultGallery))
		{
			SRLayoutHelper::addIncludePath(SRPlugin::getLayoutPath($defaultGallery));
			$this->defaultGallery = SRLayoutHelper::render('gallery.default' . ((defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? '_' . SR_LAYOUT_STYLE : ''), array('media' => $this->item->media, 'alt_attr' => $this->item->name));
		}

		if (SRPlugin::isEnabled('hub'))
		{
			SRLayoutHelper::addIncludePath(SRPlugin::getSitePath('hub') . '/layouts');
		}

		$this->_prepareDocument();

		if (SRPlugin::isEnabled('user'))
		{
			array_push($this->_path['template'], SRPlugin::getSitePath('user') . '/views/reservationasset/tmpl');
		}

		$lang = JFactory::getLanguage();
		$lang->load('com_solidres_category_' . $this->item->category_id, JPATH_COMPONENT);

		if (!empty($this->item->params['enable_captcha'])
			&& JPluginHelper::isEnabled('captcha', 'recaptcha')
		)
		{
			JPluginHelper::importPlugin('captcha', 'recaptcha');
			$script = $this->document->_script;
			$this->app->triggerEvent('onInit', array('sr_reservation_recaptcha'));
			$this->document->_script = $script;
		}

		$this->dayMapping       = SRUtilities::getDayMapping();
		$this->tariffNetOrGross = $this->showTaxIncl == 1 ? 'net' : 'gross';
		$this->isFresh          = empty($this->checkin) && empty($this->checkout);
		$this->showTariffs      = true;
		$assetShowTariffs       = isset($this->item->params['show_tariffs']) ? $this->item->params['show_tariffs'] : 1; // Per asset option
		if (!$this->showFrontendTariffs || ($this->showFrontendTariffs == 2 && $this->isFresh))
		{
			$this->showTariffs = false;
		}

		$this->disableOnlineBooking = false;
		if (isset($this->item->params['disable_online_booking']) && 1 == $this->item->params['disable_online_booking'])
		{
			$this->disableOnlineBooking = true;
			if ($assetShowTariffs)
			{
				$this->showTariffs = true;
			}
			else
			{
				$this->showTariffs = false;
			}
		}

		JHtml::_('script', 'com_solidres/assets/cardform.min.js', $jsOptions);

		parent::display((defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? SR_LAYOUT_STYLE : null);
	}

	/**
	 * Prepares the document like adding meta tags/site name per ReservationAsset
	 *
	 * @return void
	 */
	protected function _prepareDocument()
	{
		if ($this->item->metatitle)
		{
			$this->document->setTitle($this->item->metatitle);
		}
		elseif ($this->item->name)
		{
			$this->document->setTitle($this->item->name . ', ' . $this->item->city . ', ' . $this->item->country_name . ' | ' . $this->item->address_1);
		}

		if ($this->item->metadesc)
		{
			$this->document->setDescription($this->item->metadesc);
		}

		if ($this->item->metakey)
		{
			$this->document->setMetadata('keywords', $this->item->metakey);
		}

		if ($this->item->metadata)
		{
			foreach ($this->item->metadata as $k => $v)
			{
				if ($v)
				{
					$this->document->setMetadata($k, $v);
				}
			}
		}

		$uri = JUri::getInstance();
		if (SRPlugin::isEnabled('hub'))
		{
			$canonicalLink = JRoute::_('index.php?option=com_solidres&task=reservationasset.checkavailability&id=' . $this->item->id);
		}
		else
		{
			$canonicalLink = JRoute::_('index.php?option=com_solidres&view=reservationasset&id=' . $this->item->id);
		}

		$this->document->addHeadLink(trim($uri->toString(array('host', 'scheme')) . $canonicalLink), 'canonical', 'rel');

		if (!isset($this->item->params['only_show_reservation_form']))
		{
			$this->item->params['only_show_reservation_form'] = 0;
		}

		$fbStars = '';
		for ($i = 1; $i <= $this->item->rating; $i++) :
			$fbStars .= '&#x2605;';
		endfor;

		$this->document->addCustomTag('<meta property="og:title" content="' . $fbStars . ' ' . $this->item->name . ', ' . $this->item->city . ', ' . $this->item->country_name . '"/>');
		$this->document->addCustomTag('<meta property="og:type" content="place"/>');
		$this->document->addCustomTag('<meta property="og:url" content="' . JRoute::_('index.php?option=com_solidres&view=reservationasset&id=' . $this->item->id, true, true) . '"/>');
		if (isset($this->item->media[0]))
		{
			$this->document->addCustomTag('<meta property="og:image" content="' . SRURI_MEDIA . '/assets/images/system/thumbnails/1/' . $this->item->media[0]->value . '"/>');
		}

		if (isset($this->item->media[1]))
		{
			$this->document->addCustomTag('<meta property="og:image" content="' . SRURI_MEDIA . '/assets/images/system/thumbnails/1/' . $this->item->media[1]->value . '"/>');
		}

		if (isset($this->item->media[2]))
		{
			$this->document->addCustomTag('<meta property="og:image" content="' . SRURI_MEDIA . '/assets/images/system/thumbnails/1/' . $this->item->media[2]->value . '"/>');
		}

		$this->document->addCustomTag('<meta property="og:site_name" content="' . JFactory::getConfig()->get('sitename') . '"/>');
		$this->document->addCustomTag('<meta property="og:description" content="' . strip_tags($this->item->description) . '"/>');
		$this->document->addCustomTag('<meta property="place:location:latitude"  content="' . $this->item->lat . '" />');
		$this->document->addCustomTag('<meta property="place:location:longitude" content="' . $this->item->lng . '" /> ');
	}

	/**
	 * Get the min price from a given tariff and show the formatted result
	 *
	 * @param $tariff
	 * @param $roomType
	 *
	 * @return string
	 *
	 * @since
	 */
	protected function getMinPrice($tariff, $roomType)
	{
		$min           = null;
		$minStayLength = 0;
		$isPrivate     = $roomType->is_private;

		switch ($tariff->type)
		{
			case 0: // rate per room per night
			case 4: // rate per room type per stay
				if ($tariff->mode == 1)
				{
					foreach ($tariff->details['per_room'] as $month => $details)
					{
						foreach ($details as $detail)
						{
							if ((!isset($min) || $min->price > $detail->price) && $detail->price > 0)
							{
								$min = $detail;
							}
						}
					}
				}
				else
				{
					$min = array_reduce($tariff->details['per_room'], function ($t1, $t2) {
						return $t1->price < $t2->price ? $t1 : $t2;
					}, array_shift($tariff->details['per_room']));
				}

				$minStayLength = 1;
				break;
			case 1: // rate per person per night
				if ($tariff->mode == 1)
				{
					foreach ($tariff->details['adult1'] as $month => $details)
					{
						foreach ($details as $detail)
						{
							if (!isset($min) || $min->price > $detail->price)
							{
								$min = $detail;
							}
						}
					}
				}
				else
				{
					$min = array_reduce($tariff->details['adult1'], function ($t1, $t2) {
						return $t1->price < $t2->price ? $t1 : $t2;
					}, array_shift($tariff->details['adult1']));
				}

				$minStayLength = 1;
				break;
			case 2: // package per room
				$min           = $tariff->details['per_room'][0];
				$minStayLength = $tariff->d_min;
				break;
			case 3: // package per person
				$min           = $tariff->details['adult1'][0];
				$minStayLength = $tariff->d_min;
				break;
			default:
				break;
		}

		// Take single supplement value into consideration
		$enableSingleSupplement = 0;
		if (isset($roomType->params['enable_single_supplement']))
		{
			$enableSingleSupplement = $roomType->params['enable_single_supplement'];
		}

		if ($tariff->p_min <= 1 && $enableSingleSupplement)
		{
			if ($roomType->params['single_supplement_is_percent'])
			{
				$min->price = $min->price + ($min->price * ($roomType->params['single_supplement_value'] / 100));
			}
			else
			{
				$min->price = $min->price + $roomType->params['single_supplement_value'];
			}
		}

		// Calculate tax amount
		$totalImposedTaxAmount = 0;
		if (count($this->item->taxes) > 0)
		{
			foreach ($this->item->taxes as $taxType)
			{
				if ($this->item->price_includes_tax == 0)
				{
					$totalImposedTaxAmount += $min->price * $taxType->rate;
				}
				else
				{
					$totalImposedTaxAmount += $min->price - ($min->price / (1 + $taxType->rate));
					$min->price            -= $totalImposedTaxAmount;
				}
			}
		}

		$minCurrency = clone $this->solidresCurrency;
		$minCurrency->setValue($this->showTaxIncl ? ($min->price + $totalImposedTaxAmount) : $min->price);

		return $this->appendPriceSuffix($minCurrency, $tariff->type, $this->item->booking_type, $minStayLength, null, $isPrivate);
	}

	public function appendPriceSuffix($price, $tariffType, $bookingType, $minStayLength, $originalPrice = null, $isPrivate = true, $adults = 1, $children = 0)
	{
		$tariffSuffix = '';

		if ($tariffType == 0 || $tariffType == 2 || $tariffType == 4)
		{
			$tariffSuffix .= JText::_('SR_TARIFF_SUFFIX_PER_' . ($isPrivate ? 'ROOM' : 'BED'));
		}
		else
		{
			$tariffSuffix .= JText::plural('SR_TARIFF_SUFFIX_PER_PERSON', ($adults + $children));
		}

		$tariffSuffix .= JText::plural($bookingType == 0 ? 'SR_TARIFF_SUFFIX_NIGHT_NUMBER' : 'SR_TARIFF_SUFFIX_DAY_NUMBER', $minStayLength);

		$strikethrough = '';
		if (!is_null($originalPrice) && $originalPrice->getValue() > 0 && ($originalPrice->getValue() > $price->getValue()))
		{
			$strikethrough .= '<span class="sr-strikethrough">' . $originalPrice->format() . '</span>';
		}

		$appendedString = '<span class="starting_from">' . JText::_('SR_STARTING_FROM') . '</span><span class="min_tariff">' . $strikethrough . $price->format() . '</span><span class="tariff_suffix">' . $tariffSuffix . '</span>';

		return $appendedString;
	}
}
views/wishlist/tmpl/default_reservation_asset.php000060400000020003150751740420016474 0ustar00<?php

/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/wishlist/default_reservation_asset.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;
?>
<div id="sr-wishlist" class="<?php echo SR_UI ?>">
	<?php if (empty($this->items)): ?>
        <div class="alert alert-warning">
			<?php echo JText::_('SR_WISH_LIST_EMPTY'); ?>
        </div>
	<?php else: ?>
        <div class="wish-list">
			<?php foreach ($this->items as $item):
				$mainSpan = empty($item->media) ? SR_UI_GRID_COL_12 : SR_UI_GRID_COL_9;
				$active = ' active';
				$assetUrl = JRoute::_(SolidresHelperRoute::getReservationAssetRoute($item->id), false);
				?>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?> asset-row asset-row-list wish-list-row">
					<?php if ($mainSpan == SR_UI_GRID_COL_9): ?>
                        <div class="<?php echo SR_UI_GRID_COL_3 ?>">
                            <div id="carousel-<?php echo $item->id; ?>" class="carousel slide">
                                <div class="carousel-inner">
									<?php foreach ($item->media as $media): ?>
										<?php
										$class = 'item';
										if (!empty($active)) :
											$class .= $active;
											unset($active);
										endif;
										?>
                                        <div class="<?php echo $class; ?>">
                                            <a class="room_type_details sr-photo-<?php echo $item->id; ?>"
                                               href="<?php echo $assetUrl; ?>">
                                                <img
                                                        src="<?php echo $this->solidresMedia->getMediaUrl($media->value, 'asset_medium'); ?>"
                                                        alt="<?php echo $media->name; ?>">
                                            </a>
                                        </div>
									<?php endforeach; ?>
                                </div>
                                <a class="carousel-control left" href="#carousel-<?php echo $item->id; ?>"
                                   data-slide="prev">&lsaquo;</a>
                                <a class="carousel-control right" href="#carousel-<?php echo $item->id; ?>"
                                   data-slide="next">&rsaquo;</a>
                            </div>
                        </div>
					<?php endif; ?>
                    <div class="<?php echo $mainSpan; ?>">
                        <img src="<?php echo SRURI_MEDIA . '/assets/images/ajax-loader2.gif'; ?>"
                             class="ajax-loader" style="display:none" alt="Ajax Loader"/>
                        <a href="#" class="icon btn btn-small btn-sm btn-warning"
                           data-wishlist-id="<?php echo $item->id; ?>"
                           data-scope="reservation_asset"
                           data-wishlist-page="true">
                            <i class="fa fa-trash"></i>
                        </a>

                        <h3 class="name">
                            <a href="<?php echo $assetUrl; ?>">
								<?php echo $this->escape($item->name); ?>
                            </a>
							<?php for ($i = 0; $i < $item->rating; $i++) : ?>
                                <i class="rating fa fa-star"></i>
							<?php endfor; ?>
                        </h3>

                        <p>
							<span class="address_1 reservation_asset_subinfo">
								<?php if (isset($item->reviewCount) && $item->reviewCount): ?>
                                    <span class="review_stars"><?php echo @$item->reviewComment; ?></span>
                                    <span
                                            class="review_count"><?php echo JText::sprintf('SR_FEEDBACK_REVIEW_COUNT', $item->reviewCount); ?></span>
								<?php endif; ?>
								<?php echo $item->address_1; ?>
                                <a class="show_map" target="_blank"
                                   href="<?php echo JRoute::_('index.php?option=com_solidres&task=map.show&id=' . $item->id) ?>">
									<?php echo JText::_('SR_SHOW_MAP') ?>
								</a>
							</span>
                        </p>
						<?php
						if (count($item->roomTypes) > 0) :
							foreach ($item->roomTypes as $roomType) :
								?>
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?> room-type-row">
                                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                            <div class="<?php echo SR_UI_GRID_COL_8 ?>">
                                                <div class="inner">
										<span class="label label-info">
										<?php echo (int) $roomType->occupancy_adult + (int) $roomType->occupancy_child; ?>
                                            <i class="fa fa-user"></i>
										</span>
													<?php echo $roomType->name ?>
													<?php if ($roomType->featured == 1) : ?>
                                                        <span
                                                                class="label label-success"><?php echo JText::_('SR_FEATURED_ROOM_TYPE') ?></span>
													<?php endif ?>
                                                </div>
                                            </div>
                                            <div class="<?php echo SR_UI_GRID_COL_4 ?>">
                                                <div class="inner">
                                                    <div class="align-right">
														<?php
														// Loop through all available tariffs for this search
														if (isset($roomType->availableTariffs) && count($roomType->availableTariffs) > 0) :
															// We only show the first tariff
															$firstTariff = reset($roomType->availableTariffs);
															$id = key($roomType->availableTariffs);
															$tariffSuffix = '';
															if ($firstTariff['tariffType'] == 0 || $firstTariff['tariffType'] == 2) :
																$tariffSuffix .= JText::_('SR_TARIFF_SUFFIX_PER_ROOM');
															else :
																$tariffSuffix .= JText::_('SR_TARIFF_SUFFIX_PER_PERSON');
															endif;

															$tariffSuffix .= JText::plural('SR_TARIFF_SUFFIX_NIGHT_NUMBER', $displayData['numberOfNights']);
															?>

                                                            <span id="tariff_val_<?php echo $id ?>" class="tariff_val">
													<?php echo $firstTariff['val']->format() . ' ' . $tariffSuffix ?>
												</span>

															<?php
														endif
														?>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
								<?php
							endforeach;
						endif; ?>
                    </div>
                </div>
			<?php endforeach; ?>
        </div>
	<?php endif; ?>
</div>views/wishlist/tmpl/default.php000060400000002646150751740420012671 0ustar00<?php

/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/wishlist/default.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
SRHtml::_('jquery.popover');
Text::script('SR_WISH_LIST_WAS_ADDED');
Text::script('SR_GO_TO_WISH_LIST');
Text::script('SR_ADD_TO_WISH_LIST_SUCCESS');
HTMLHelper::_('script', 'com_solidres/assets/wishlist.min.js', ['relative' => true, 'version' => SRVersion::getHashVersion()]);

echo $this->loadTemplate($this->scope);
views/wishlist/tmpl/default_experience.php000060400000007726150751740420015104 0ustar00<?php

/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/wishlist/default_experience.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;
$rootUrl = JUri::root(true);

?>
<div id="sr-wishlist" class="<?php echo SR_UI; ?>">
	<?php if (empty($this->items)): ?>
        <div class="alert alert-warning">
			<?php echo JText::_('SR_WISH_LIST_EMPTY'); ?>
        </div>
	<?php else: ?>
        <div class="wish-list">
			<?php foreach ($this->items as $item):
				$mainSpan = empty($item->logo) ? SR_UI_GRID_COL_12 : SR_UI_GRID_COL_9;
				$active = ' active';
				?>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?> exp-row exp-row-list wish-list-row">
					<?php if ($mainSpan == SR_UI_GRID_COL_9): ?>
                        <div class="<?php echo SR_UI_GRID_COL_3 ?>">
                            <a class="exp-logo exp-logo-<?php echo $item->id; ?>"
                               href="<?php echo $item->link; ?>">
                                <img src="<?php echo $rootUrl . '/' . $item->logo; ?>"
                                     alt="<?php echo $item->name; ?>">
                            </a>
                        </div>
					<?php endif; ?>

                    <div class="<?php echo $mainSpan; ?>">
                        <img src="<?php echo SRURI_MEDIA . '/assets/images/ajax-loader2.gif'; ?>"
                             class="ajax-loader" style="display:none" alt="Ajax Loader"/>
                        <a href="#" class="icon btn btn-small btn-sm btn-warning"
                           data-wishlist-id="<?php echo $item->id; ?>"
                           data-scope="experience"
                           data-wishlist-page="true">
                            <i class="fa fa-trash"></i>
                        </a>

                        <h3 class="name">
                            <a href="<?php echo $item->link; ?>">
								<?php echo $this->escape($item->name); ?>
                            </a>
                        </h3>

						<?php echo SRLayoutHelper::render('experience.accommodation.distance', array('item' => $item)); ?>

                        <div class="base-location text-info">
                            <i class="fa fa-map-marker"></i>
							<?php echo $this->escape($item->base_location); ?>
                        </div>

                        <div class="duration">
                            <i class="fa fa-clock-o"></i>
							<?php echo $item->duration; ?>
							<?php echo $item->duration_unit ? JText::_('SR_UNIT_DAYS_LABEL') : JText::_('SR_UNIT_HOURS_LABEL'); ?>
                        </div>

                        <div class="base-price">
							<?php if (empty($item->params['disable_book_form']) || !empty($item->params['show_price'])): ?>
								<?php echo SRExperienceHelper::priceFormat($item->pricing_base); ?>
							<?php else: ?>
								<?php echo JText::_('SR_EXP_ON_REQUEST'); ?>
							<?php endif; ?>
                        </div>
                    </div>
                </div>
			<?php endforeach; ?>
        </div>
	<?php endif; ?>
</div>views/wishlist/view.html.php000060400000005355150751740420012206 0ustar00<?php

/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

class SolidresViewWishList extends SRViewLegacy
{

	protected $items;
	protected $solidresMedia;
	protected $scope;

	public function display($tpl = null)
	{
		$app      = JFactory::getApplication();
		$scope    = strtolower($app->input->getString('scope', 'reservation_asset'));
		$wishList = SRWishList::getInstance($scope);
		$view     = strtolower($app->input->getCmd('view'));

		if (!in_array($scope, array('reservation_asset', 'experience')))
		{
			$scope = 'reservation_asset';
		}

		if (!$wishList->user->guest
			&& SRPlugin::isEnabled('user')
			&& $view != 'customer'
		)
		{
			$customerGroups = JComponentHelper::getParams('com_solidres')->get('customer_user_groups', []);

			if (!empty(array_intersect($wishList->user->groups, $customerGroups)))
			{
				$wishList->app->redirect(JRoute::_('index.php?option=com_solidres&view=customer&layout=wishlist&scope=' . $scope, false));

				return;
			}
		}

		$items    = (array) $wishList->load();
		$itemList = array();
		$feedbackEnabled = SRPlugin::isEnabled('feedback');

		if ($feedbackEnabled)
		{
			JHtml::_('stylesheet', 'plg_solidres_feeback/feedbacks.css', array(), true);
		}

		if ($scope == 'experience')
		{
			SRLayoutHelper::addIncludePath(SRPlugin::getPluginPath('experience') . '/layouts');

			foreach ($items as $pk => $item)
			{
				$item = SRExperienceHelper::getItem((int) $pk);

				if ($feedbackEnabled)
				{
					$app->triggerEvent('onSolidresFeedbackPrepare', array('com_solidres.experience', $item));
				}

				$itemList[] = $item;
			}
		}
		else
		{
			$this->solidresMedia = SRFactory::get('solidres.media.media');
			require_once JPATH_ROOT . '/components/com_solidres/helpers/route.php';
			$modelAsset = JModelLegacy::getInstance('ReservationAsset', 'SolidresModel', array('ignore_request' => false));

			foreach ($items as $pk => $item)
			{
				$assetItem  = $modelAsset->getItem((int) $pk);

				if ($feedbackEnabled)
				{
					$app->triggerEvent('onSolidresFeedbackPrepare', array('com_solidres.asset', $assetItem));
				}

				$itemList[] = $assetItem;
			}
		}

		$this->scope = $scope;
		$this->items = $itemList;

		parent::display($tpl);

	}
}
views/roomtype/tmpl/default.xml000060400000001252150751740420012702 0ustar00<?xml version="1.0" encoding="utf-8"?>
<metadata>
	<layout title="SR_ROOM_TYPE_VIEW_DEFAULT_TITLE" option="sr_room_type_view_default_option">
		<help
			key=""
		/>
		<message>
			<![CDATA[SR_ROOM_TYPE_VIEW_DEFAULT_DESC]]>
		</message>
	</layout>

	<!-- Add fields to the request variables for the layout. -->
	<fields name="request">
		<fieldset name="request"
				  addfieldpath="/administrator/components/com_solidres/models/fields">

			<field name="id" type="roomtype"
				   label="SR_FIELD_SELECT_ROOM_TYPE_LABEL"
				   required="true"
				   edit="false"
				   clear="false"
				   description="SR_FIELD_SELECT_ROOM_TYPE_DESC"
					/>
		</fieldset>
	</fields>
</metadata>
views/roomtype/tmpl/default.php000060400000006530150751740420012675 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/com_solidres/roomtype/default.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

require_once JPATH_SITE . '/components/com_solidres/helpers/route.php';

$solidresMedia = SRFactory::get('solidres.media.media');
?>

<div id="solidres" class="<?php echo SR_UI ?> single_room_type_view">

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <h3><?php echo $this->item->name; ?></h3>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
			<?php echo $this->item->description; ?>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <div class="unstyled more_desc" id="more_desc_<?php echo $this->item->id ?>">
				<?php
				if (!empty($this->item->roomtype_custom_fields['room_facilities'])) :
					echo '<p><strong>' . JText::_('SR_ROOM_FACILITIES') . ':</strong> ' . $this->item->roomtype_custom_fields['room_facilities'] . '</p>';
				endif;

				if (!empty($this->item->roomtype_custom_fields['room_size'])) :
					echo '<p><strong>' . JText::_('SR_ROOM_SIZE') . ':</strong> ' . $this->item->roomtype_custom_fields['room_size'] . '</p>';
				endif;

				if (!empty($this->item->roomtype_custom_fields['bed_size'])) :
					echo '<p><strong>' . JText::_('SR_BED_SIZE') . ':</strong> ' . $this->item->roomtype_custom_fields['bed_size'] . '</p>';
				endif;

				if (!empty($this->item->roomtype_custom_fields['taxes'])) :
					echo '<p><strong>' . JText::_('SR_TAXES') . ':</strong> ' . $this->item->roomtype_custom_fields['taxes'] . '</p>';
				endif;

				if (!empty($this->item->roomtype_custom_fields['prepayment'])) :
					echo '<p><strong>' . JText::_('SR_PREPAYMENT') . ':</strong> ' . $this->item->roomtype_custom_fields['prepayment'] . '</p>';
				endif;
				?>
            </div>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> call_to_action">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <p>
                <a class="btn btn-default btn-large"
                   href="<?php echo SolidresHelperRoute::getReservationAssetRoute($this->item->reservation_asset_id, $this->item->id); ?>">
					<?php echo JText::_('SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION') ?>
                </a>
            </p>
        </div>
    </div>

	<?php echo $this->defaultGallery; ?>

</div>views/roomtype/view.html.php000060400000005331150751740420012210 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

/**
 * HTML View class for the Solidres component
 *
 * @package      Solidres
 * @since        0.1.0
 */
class SolidresViewRoomType extends JViewLegacy
{
	public function display($tpl = null)
	{
		$model = $this->getModel();

		$this->item   = $model->getItem();
		$this->config = JComponentHelper::getParams('com_solidres');

		JHtml::_('stylesheet', 'com_solidres/assets/main.min.css', array('version' => SRVersion::getHashVersion(), 'relative' => true));

		JPluginHelper::importPlugin('extension');
		JPluginHelper::importPlugin('solidres');

		// Trigger the data preparation event.
		JFactory::getApplication()->triggerEvent('onRoomTypePrepareData', array('com_solidres.roomtype', $this->item));

		$this->_prepareDocument();

		$this->defaultGallery = '';
		$defaultGallery       = $this->config->get('default_gallery', 'simple_gallery');
		if (SRPlugin::isEnabled($defaultGallery))
		{
			$layout = SRLayoutHelper::getInstance();
			$layout->addIncludePath(SRPlugin::getLayoutPath($defaultGallery));
			$this->defaultGallery = $layout->render(
				'gallery.default' . ((defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? '_' . SR_LAYOUT_STYLE : ''),
				array(
					'media'    => $this->item->media,
					'alt_attr' => $this->item->name,
					'scope'    => 'roomtype'
				)
			);
		}

		parent::display($tpl);
	}

	/**
	 * Prepares the document like adding meta tags/site name per ReservationAsset
	 *
	 * @return void
	 */
	protected function _prepareDocument()
	{
		$menu = JFactory::getApplication()->getMenu()->getActive();

		if ($menu
			&& @$menu->query['option'] == 'com_solidres'
			&& @$menu->query['view'] == 'roomtype'
			&& @$menu->query['id'] == $this->item->id
		)
		{
			$params = $menu->getParams();

			if (empty($metaTitle))
			{
				$metaTitle = trim($params->get('page_title'));
			}

			if (empty($metaDesc))
			{
				$metaDesc = trim($params->get('menu-meta_description'));
			}

			if (empty($metaKey))
			{
				$metaKey = trim($params->get('menu-meta_keywords'));
			}
		}

		if (empty($metaTitle))
		{
			if ($this->item->name)
			{
				$this->document->setTitle($this->item->name);
			}
		}

		$this->document->setDescription($metaDesc);
		$this->document->setMetadata('keywords', $metaKey);
	}
}models/map.php000060400000001713150751740420007320 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

/**
 * Solidres Component Model
 *
 * @package        Reservation
 * @since          0.1.0
 */
class SolidresModelMap extends JModelLegacy
{
	public function getMapInfo()
	{
		JTable::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . '/tables', 'SolidresTable');
		$assetTable = JTable::getInstance('ReservationAsset', 'SolidresTable');
		$assetTable->load($this->getState($this->getName() . '.assetId'));

		return $assetTable;
	}
}router.php000060400000015474150751740420006611 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

class SRRouter extends JComponentRouterBase
{
	protected $hub;

	public function __construct($app = null, $menu = null)
	{
		parent::__construct($app, $menu);

		if ($this->hub = JPluginHelper::isEnabled('solidres', 'hub'))
		{
			JPluginHelper::importPlugin('solidres', 'hub');
		}
	}

	public function build(&$query)
	{
		$segments = array();
		$menus    = JFactory::getApplication()->getMenu();
		$db       = JFactory::getDbo();
		$sql      = $db->getQuery(true);
		$hubQuery = $query;

		if (isset($query['Itemid']))
		{
			$menuItem = $menus->getItem($query['Itemid']);
		}
		else
		{
			$menuItem = $menus->getActive();
		}

		if ($menuItem
			&& $menuItem->query['option'] != 'com_solidres'
			&& isset($query['Itemid'])
		)
		{
			$menuItem = null;
			unset($query['Itemid']);
		}

		$view = isset($query['view']) ? strtolower($query['view']) : null;
		$slug = isset($query['id']) ? (int) $query['id'] : null;

		if (!$view && isset($query['task']) && strpos($query['task'], '.') !== false)
		{
			$task = explode('.', $query['task'], 2);

			if ($task[0] == 'reservationasset')
			{
				$view = $task[0];
			}
		}

		if ($menuItem)
		{
			if (isset($menuItem->query['view']) && $menuItem->query['view'] == $view)
			{
				unset($query['view']);
			}

			if (isset($menuItem->query['id']) && $menuItem->query['id'] == $slug)
			{
				unset($query['id']);

				return $segments;
			}
		}

		if ($slug && in_array($view, ['partner', 'reservationasset', 'subscriptionform', 'experience']))
		{
			static $slugs = [];
			$slugKey = $view . ':' . $slug;

			switch ($view)
			{
				case 'reservationasset':

					if (!isset($slugs[$slugKey]))
					{
						$sql->select('a.id, a.alias')
							->from($db->qn('#__sr_reservation_assets', 'a'))
							->where('a.id = ' . (int) $query['id']);
						$db->setQuery($sql);

						if ($row = $db->loadObject())
						{
							$slugs[$slugKey] = $row->alias . ':' . $row->id;
						}
					}

					break;

				case 'subscriptionform':

					if (!isset($slugs[$slugKey]))
					{
						$sql->select('a.id, a.title')
							->from($db->qn('#__sr_subscription_levels', 'a'))
							->where('a.id = ' . (int) $query['id']);
						$db->setQuery($sql);
						$row             = $db->loadObject();
						$slugs[$slugKey] = JFilterOutput::stringURLSafe($row->title) . ':' . $row->id;
					}

					break;

				case 'experience':

					if (!isset($slugs[$slugKey]))
					{
						$sql->select('a.id, a.alias')
							->from($db->qn('#__sr_experiences', 'a'))
							->where('a.id = ' . (int) $query['id']);
						$db->setQuery($sql);

						if ($row = $db->loadObject())
						{
							$slugs[$slugKey] = $row->alias . ':' . $row->id;
						}
					}

					break;

				case 'partner':

					if (!isset($slugs[$slugKey]))
					{
						$sql->select('u.username')
							->from($db->quoteName('#__users', 'u'))
							->join('INNER', $db->quoteName('#__sr_customers', 'a') . ' ON a.user_id = u.id AND u.block = 0')
							->where('a.id = ' . (int) $query['id']);
						$db->setQuery($sql);

						if ($userName = $db->loadResult())
						{
							$slugs[$slugKey] = $userName;
						}
					}

					break;
			}

			if (isset($slugs[$slugKey]))
			{
				$slug = $slugs[$slugKey];
			}

			if (isset($query['view']))
			{
				$segments[] = $view;

				unset($query['view']);
			}

			$segments[] = $slug;

			unset($query['id']);
		}

		if ($view == 'experiences' && isset($query['category_id']))
		{
			$sql->clear()
				->select('a.alias')
				->from($db->qn('#__sr_experience_categories', 'a'))
				->where('a.id = ' . (int) $query['category_id']);
			$db->setQuery($sql);

			if ($alias = $db->loadResult())
			{
				$segments[] = 'category:' . $alias;
				unset($query['category_id']);
			}
		}

		if ($this->hub)
		{
			JFactory::getApplication()->triggerEvent('onSolidresBuildRoute', array($hubQuery, &$segments));
		}

		$total = count($segments);

		for ($i = 0; $i < $total; $i++)
		{
			$segments[$i] = str_replace(':', '-', $segments[$i]);
		}

		return $segments;
	}

	public function parse(&$segments)
	{
		$vars  = [];
		$count = count($segments);
		$menu  = JFactory::getApplication()->getMenu()->getActive();
		$db    = JFactory::getDbo();

		if ($menu
			&& @$menu->query['option'] === 'com_solidres'
			&& @$menu->query['view'] === 'partner'
			&& $count
		)
		{
			$query = $db->getQuery(true)
				->select('a.id')
				->from($db->quoteName('#__sr_customers', 'a'))
				->join('INNER', $db->quoteName('#__users', 'u') . ' ON u.id = a.user_id AND u.block = 0')
				->where('u.username = ' . $db->quote($segments[0]));

			if ($partnerId = $db->setQuery($query)->loadResult())
			{
				$vars['view'] = 'partner';
				$vars['id']   = $partnerId;

				return $vars;
			}
		}

		for ($i = 0; $i < $count; $i++)
		{
			$segments[$i] = str_replace('-', ':', $segments[$i]);
		}

		if ($count > 0)
		{
			if (strpos($segments[0], ':') !== false)
			{
				$array = explode(':', $segments[0]);
				$id    = (int) $array[count($array) - 1];
				array_pop($array);
				$alias = join('-', $array);
				$query = $db->getQuery(true)
					->select('a.id, a.alias')
					->from($db->qn('#__sr_reservation_assets', 'a'))
					->where('a.id = ' . (int) $id);
				$db->setQuery($query);
				$asset = $db->loadObject();

				if ($asset && $asset->alias == $alias)
				{
					$vars['view'] = 'reservationasset';
					$vars['id']   = $id;
				}
			}

			if (preg_match('/^(category\:)/', $segments[0]))
			{
				$db    = JFactory::getDbo();
				$query = $db->getQuery(true)
					->select('a.id')
					->from($db->qn('#__sr_experience_categories', 'a'))
					->where('a.alias = ' . $db->q(str_replace(array('category:', ':'), array('', '-'), $segments[0])));
				$db->setQuery($query);
				$vars['view']        = 'experiences';
				$vars['category_id'] = (int) $db->loadResult();
			}
			elseif (isset($segments[1]))
			{
				$vars['view'] = $segments[0];
				preg_match('/([0-9]+)$/', $segments[1], $matches);

				if (!empty($matches[0]))
				{
					$vars['id'] = (int) $matches[1];
				}
				else
				{
					$vars['id'] = (int) $segments[1];
				}
			}
		}

		if ($this->hub)
		{
			JFactory::getApplication()->triggerEvent('onSolidresParseRoute', array(&$vars, $segments));
		}

		return $vars;
	}
}

function solidresBuildRoute(&$query)
{
	$router = new SRRouter;

	return $router->build($query);
}


function solidresParseRoute($segments)
{
	$router = new SRRouter;

	return $router->parse($segments);
}
solidres.php000060400000001511150751740420007100 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

require_once JPATH_COMPONENT_ADMINISTRATOR . '/helpers/helper.php';
require_once JPATH_COMPONENT_ADMINISTRATOR . '/helpers/layout.php';
$controller = SRControllerLegacy::getInstance('Solidres');
$controller->execute(JFactory::getApplication()->input->get('task', '', 'cmd'));
$controller->redirect();controller.php000060400000007156150751740420007452 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

/**
 * Solidres Component Controller
 *
 * @package      Solidres
 * @since        0.1.0
 */
class SolidresController extends SRControllerLegacy
{
	/**
	 * Method to display a view.
	 *
	 * @param    boolean $cachable  If true, the view output will be cached
	 * @param    boolean $urlparams An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
	 *
	 * @return    JControllerLegacy        This object to support chaining.
	 * @since    1.5
	 */
	public function display($cachable = false, $urlparams = false)
	{
		$cachable = true;

		JHtml::_('stylesheet', 'com_solidres/assets/main.min.css', array('version' => SRVersion::getHashVersion(), 'relative' => true));

		$safeurlparams = array(
			'catid'            => 'INT',
			'id'               => 'INT',
			'cid'              => 'ARRAY',
			'year'             => 'INT',
			'month'            => 'INT',
			'limit'            => 'INT',
			'limitstart'       => 'INT',
			'showall'          => 'INT',
			'return'           => 'BASE64',
			'filter'           => 'STRING',
			'filter_order'     => 'CMD',
			'filter_order_Dir' => 'CMD',
			'filter-search'    => 'STRING',
			'print'            => 'BOOLEAN',
			'lang'             => 'CMD',
			'location'         => 'STRING',
			'categories'       => 'STRING',
			'mode'             => 'STRING',
			'Itemid'           => 'UINT',
			'layout'           => 'STRING'
		);

		$viewName = $this->input->get('view');
		$user     = JFactory::getUser();

		JPluginHelper::importPlugin('solidres');
		JFactory::getApplication()->triggerEvent('onSolidresBeforeDisplay', array($viewName, &$cachable, &$safeurlparams));
		$return = JUri::getInstance()->toString();

		switch ($viewName)
		{
			case 'articles':
				if ($user->get('guest') == 1)
				{
					// Redirect to login page.
					$this->setRedirect(JRoute::_('index.php?option=com_users&view=login&return=' . base64_encode($return), false));

					return;
				}

				if (!$user->authorise('core.create', 'com_content'))
				{
					return;
				}

				if ($this->input->get('layout') === 'modal')
				{
					JHtml::_('stylesheet', 'system/adminlist.css', array(), true);
					$this->addViewPath(JPATH_ADMINISTRATOR . '/components/com_solidres/views');
					JForm::addFormPath(JPATH_ADMINISTRATOR . '/components/com_solidres/models/forms');
					JModelLegacy::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_solidres/models');

					$model = JModelLegacy::getInstance('Articles', 'SolidresModel', array('ignore_request' => true));
					$model->setState('filter.author_id', $user->get('id'));
					$model->setState('filter.author_id.include', true);

					$document   = JFactory::getDocument();
					$viewType   = $document->getType();
					$viewName   = 'Articles';
					$viewLayout = 'modal';

					$view = $this->getView($viewName, $viewType, '', array('base_path' => JPATH_ADMINISTRATOR . '/components/com_solidres', 'layout' => $viewLayout));
					$view->setModel($model, true);
					$view->document = $document;
					$view->display();
				}
				break;
			default:
				parent::display($cachable, $safeurlparams);
				break;
		}

		return $this;
	}
}controllers/paymenthistory.php000060400000001243150751740420012723 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;
JLoader::register('SolidresControllerPaymentHistory', JPATH_ADMINISTRATOR . '/components/com_solidres/controllers/paymenthistory.php');controllers/states.json.php000060400000002714150751740420012103 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

JLoader::register('SolidresHelper', JPATH_COMPONENT_ADMINISTRATOR . '/helpers/helper.php');

/**
 * State list controller class.
 *
 * @package       Solidres
 * @subpackage    State
 * @since         0.1.0
 */
class SolidresControllerStates extends JControllerAdmin
{
	public function __construct($config = array())
	{
		$config['model_path'] = JPATH_COMPONENT_ADMINISTRATOR . '/models';
		parent::__construct($config);
	}

	public function getModel($name = 'States', $prefix = 'SolidresModel', $config = ['ignore_request' => true])
	{
		$model = parent::getModel($name, $prefix, $config);

		return $model;
	}

	public function find()
	{
		$countryId = JFactory::getApplication()->input->get('id', 0, 'int');
		$states    = SolidresHelper::getGeoStateOptions($countryId);
		$html      = '';
		foreach ($states as $state)
		{
			$html .= '<option value="' . $state->value . '">' . $state->text . '</option>';
		}
		echo $html;
		die(1);
	}
}
controllers/reservationasset.php000060400000047454150751740420013243 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

/**
 * @package       Solidres
 * @subpackage    ReservationAsset
 * @since         0.1.0
 */
class SolidresControllerReservationAsset extends JControllerLegacy
{
	private $context;

	protected $reservationDetails;

	public function __construct($config = array())
	{
		$config['model_path'] = JPATH_COMPONENT_ADMINISTRATOR . '/models';

		parent::__construct($config);

		$this->app     = JFactory::getApplication();
		$this->context = 'com_solidres.reservation.process';

		// $raid is preferred because it does not conflict with core Joomla multilingual feature
		$this->reservationAssetId = $this->input->getUint('raid');
		if (empty($this->reservationAssetId))
		{
			$this->reservationAssetId = $this->input->getUint('id');
		}

		// Get the default currency
		JTable::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . '/tables', 'SolidresTable');
		$tableAsset = JTable::getInstance('ReservationAsset', 'SolidresTable');
		$tableAsset->load($this->reservationAssetId);
		$this->reservationData['currency_id'] = $tableAsset->currency_id;

		$this->app->setUserState($this->context . '.currency_id', $tableAsset->currency_id);
		$this->app->setUserState($this->context . '.deposit_required', $tableAsset->deposit_required);
		$this->app->setUserState($this->context . '.deposit_is_percentage', $tableAsset->deposit_is_percentage);
		$this->app->setUserState($this->context . '.deposit_amount', $tableAsset->deposit_amount);
		$this->app->setUserState($this->context . '.deposit_by_stay_length', $tableAsset->deposit_by_stay_length);
		$this->app->setUserState($this->context . '.deposit_include_extra_cost', $tableAsset->deposit_include_extra_cost);
		$this->app->setUserState($this->context . '.tax_id', $tableAsset->tax_id);
		$this->app->setUserState($this->context . '.booking_type', $tableAsset->booking_type);

		if (isset($tableAsset->params))
		{
			$this->app->setUserState($this->context . '.asset_params', json_decode($tableAsset->params, true));
		}

		$this->app->setUserState($this->context . '.origin', JText::_('SR_RESERVATION_ORIGIN_DIRECT'));
		$this->app->setUserState($this->context . '.asset_category_id', $tableAsset->category_id);
		$this->app->setUserState($this->context . '.price_includes_tax', $tableAsset->price_includes_tax);

		$lang = JFactory::getLanguage();
		$lang->load('com_solidres_category_' . $tableAsset->category_id, JPATH_COMPONENT);
	}

	/**
	 * Method to get a model object, loading it if required.
	 *
	 * @param    string $name   The model name. Optional.
	 * @param    string $prefix The class prefix. Optional.
	 * @param    array  $config Configuration array for model. Optional.
	 *
	 * @return    object    The model.
	 * @since    1.5
	 */
	public function &getModel($name = 'ReservationAsset', $prefix = 'SolidresModel', $config = array())
	{
		$model = parent::getModel($name, $prefix, $config);

		return $model;
	}

	public function checkavailability()
	{
		$id                    = $this->input->getUint('id', 0);
		$itemId                = $this->input->getUInt('Itemid', 0);
		$roomsOccupancyOptions = $this->input->get('room_opt', array(), 'array');
		$roomTypeId            = $this->input->getUint('room_type_id', 0);
		$tariffs               = $this->app->getUserState($this->context . '.current_selected_tariffs');
		$reservationId         = $this->app->getUserState($this->context . '.id', 0);
		$isAmending            = $this->app->getUserState($this->context . '.is_amending', false);
		$canChangeDate         = $this->app->getUserState($this->context . '.can_change_dates', false);
		$model                 = $this->getModel();
		$solidresConfig        = JComponentHelper::getParams('com_solidres');
		$showPriceWithTax      = $solidresConfig->get('show_price_with_tax', 0);

		if ($reservationId > 0 && $isAmending && !$canChangeDate)
		{
			$checkIn  = $this->app->getUserState($this->context . '.checkin');
			$checkOut = $this->app->getUserState($this->context . '.checkout');
		}
		else
		{
			$checkIn  = $this->input->get('checkin', '', 'string');
			$checkOut = $this->input->get('checkout', '', 'string');
		}

		if (!empty($checkIn) && !empty($checkOut))
		{
			$config   = JFactory::getConfig();
			$timezone = new DateTimeZone($config->get('offset'));
			$checkIn  = JDate::getInstance($checkIn, $timezone)->format('Y-m-d', true);
			$checkOut = JDate::getInstance($checkOut, $timezone)->format('Y-m-d', true);

			$appliedCoupon = $this->app->getUserState($this->context . '.coupon');
			if (is_array($appliedCoupon))
			{
				$solidresCoupon  = SRFactory::get('solidres.coupon.coupon');
				$customerGroupId = SRUtilities::getCustomerGroupId();
				$currentDate     = JFactory::getDate(date('Y-m-d'), $timezone)->toUnix();
				$checkInDate     = JFactory::getDate($checkIn, $timezone)->toUnix();
				$isValid         = $solidresCoupon->isValid($appliedCoupon['coupon_code'], $id, $currentDate, $checkInDate, $customerGroupId);

				if (!$isValid)
				{
					$this->app->setUserState($this->context . '.coupon', null);
				}
			}
		}

		$this->app->setUserState($this->context . '.checkin', $checkIn);
		$this->app->setUserState($this->context . '.checkout', $checkOut);
		$this->app->setUserState($this->context . '.room_opt', $roomsOccupancyOptions);
		$this->app->setUserState($this->context . '.activeItemId', $itemId > 0 ? $itemId : null);
		// If user search for a specific room type
		if ($roomTypeId > 0 && !empty($checkIn) && !empty($checkOut))
		{
			$this->app->setUserState($this->context . '.prioritizing_room_type_id', $roomTypeId);
		}
		else
		{
			$this->app->setUserState($this->context . '.prioritizing_room_type_id', null);
		}

		$model->setState('id', $id);
		$model->setState('checkin', $checkIn);
		$model->setState('checkout', $checkOut);
		$model->setState('country_id', $this->input->get('country_id', 0, 'int'));
		$model->setState('geo_state_id', $this->input->get('geo_state_id', 0, 'int'));
		$model->setState('show_price_with_tax', $showPriceWithTax);
		$model->setState('tariffs', $tariffs);
		$model->setState('room_opt', $roomsOccupancyOptions);
		$model->setState('reservation_id', $reservationId);

		$document   = JFactory::getDocument();
		$viewType   = $document->getType();
		$viewName   = 'ReservationAsset';
		$viewLayout = 'default';

		$this->hit($id);

		$view = $this->getView($viewName, $viewType, '', array('base_path' => $this->basePath, 'layout' => $viewLayout));
		$view->setModel($model, true);
		$view->document = $document;
		$view->display();
	}

	/**
	 * Increase the hit counter
	 *
	 * @param $pk
	 *
	 * @return void
	 */
	public function hit($pk)
	{
		$table = JTable::getInstance('ReservationAsset', 'SolidresTable');
		$table->hit($pk);
	}

	/**
	 * Get the html output according to the room type quantity selection
	 *
	 * This output contains room specific form like adults and children's quantity (including children's ages) as well
	 * as some other information like room preferences like smoking and room's extra items
	 *
	 * @return string
	 */
	public function getRoomTypeForm()
	{
		$solidresRoomType  = SRFactory::get('solidres.roomtype.roomtype');
		$params            = JComponentHelper::getParams('com_solidres');
		$showTaxIncl       = $params->get('show_price_with_tax', 0);
		$childMaxAge       = $params->get('child_max_age_limit', 17);
		$confirmationState = $params->get('confirm_state', 5);
		$roomTypeId        = $this->input->get('rtid', 0, 'int');
		$raId              = $this->input->get('raid', 0, 'int');
		$tariffId          = $this->input->get('tariffid', 0, 'int');
		$adjoiningLayer    = $this->input->get('adjoininglayer', 0, 'int');
		$quantity          = $this->input->get('quantity', 0, 'int');
		$bookingType       = $solidresRoomType->getBookingType($roomTypeId);
		$modelRoomType     = $this->getModel('RoomType');
		$modelTariff       = $this->getModel('Tariff');
		$roomType          = $modelRoomType->getItem($roomTypeId);
		$tariff            = $modelTariff->getItem($tariffId);
		$modelExtras       = $this->getModel('Extras', 'SolidresModel', array('ignore_request' => true));
		$modelExtras->setState('filter.room_type_id', $roomTypeId);
		$modelExtras->setState('filter.state', 1);
		$modelExtras->setState('filter.show_price_with_tax', $showTaxIncl);
		$modelExtras->setState('list.start', 0);
		$modelExtras->setState('list.limit', 0);
		$extras = $modelExtras->getItems();

		// Early arrival checking
		$checkin                     = $this->app->getUserState($this->context . '.checkin');
		$checkout                    = $this->app->getUserState($this->context . '.checkout');
		$allowedEarlyArrivalExtraIds = array();

		if (is_array($extras))
		{
			$advancedExtra    = SRPlugin::isEnabled('advancedextra');
			$nowDateFormatted = JHtml::_('date', 'now', 'Y-m-d');

			foreach ($extras as $i => $extra)
			{
				$extraParams          = new Joomla\Registry\Registry($extra->params);
				$enableAvailableDates = $extraParams->get('enable_available_dates', 0);

				if ($advancedExtra && $enableAvailableDates)
				{
					$availableDates = json_decode($extraParams->get('available_dates', '{}'), true) ?: [];

					try
					{
						$checkinDate  = JFactory::getDate($checkin);
						$checkoutDate = JFactory::getDate($checkout);
						$isAvailable  = true;

						while($checkinDate->toUnix() <= $checkoutDate->toUnix())
						{
							if (!in_array($checkinDate->format('Y-m-d'), $availableDates))
							{
								$isAvailable = false;
								break;
							}

							$checkinDate->add(new DateInterval('P1D'));
						}

						if (!$isAvailable)
					{
						unset($extras[$i]);
						continue;
						}
					}
					catch (Exception $e)
					{

					}
				}

				if (8 != $extra->charge_type)
				{
					continue;
				}

				$distance    = $extraParams->get('previous_checkout_distance', 1);
				$newCheckin  = (new DateTime($checkin))->modify("-$distance day");

				$availableRooms              = $solidresRoomType->getListAvailableRoom($roomTypeId, $newCheckin->format('Y-m-d'), $checkout, $bookingType, 0, $confirmationState);
				$totalRoomTypeAvailableRooms = is_array($availableRooms) ? count($availableRooms) : 0;
				$extra->allow_early_arrival  = false;

				if ($totalRoomTypeAvailableRooms >= $quantity)
				{
					$extra->allow_early_arrival    = true;
					$allowedEarlyArrivalExtraIds[] = $extra->id;
				}
			}

			$extras = array_values($extras);
		}

		$this->app->setUserState($this->context . '.allowed_early_arrival_extra_ids', $allowedEarlyArrivalExtraIds);

		$this->reservationDetails = $this->app->getUserState($this->context);

		$form = SRLayoutHelper::getInstance();

		$displayData = array(
			'assetId'            => $raId,
			'roomTypeId'         => $roomTypeId,
			'tariffId'           => $tariffId,
			'quantity'           => $quantity,
			'roomType'           => $roomType,
			'reservationDetails' => $this->reservationDetails,
			'extras'             => $extras,
			'childMaxAge'        => $childMaxAge,
			'tariff'             => $tariff,
			'adjoiningLayer'     => $adjoiningLayer,
		);

		echo $form->render(
			'asset.roomtypeform' . ((defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? '_' . SR_LAYOUT_STYLE : ''),
			$displayData
		);

		$this->app->close();
	}

	/**
	 * Get the availability calendar
	 *
	 * The number of months to be displayed in configured in component's options
	 *
	 * @return string
	 */
	public function getAvailabilityCalendar()
	{
		JLoader::register('SRCalendar', SRPATH_LIBRARY . '/utilities/calendar.php');
		$roomTypeId   = $this->input->get('id', 0, 'int');
		$params       = JComponentHelper::getParams('com_solidres');
		$weekStartDay = $params->get('week_start_day', 1) == 1 ? 'monday' : 'sunday';
		$calendarStyle = $params->get('availability_calendar_style', 1) == 1 ? 'modern' : 'legacy';

		$calendar = new SRCalendar(array('start_day' => $weekStartDay, 'style' => $calendarStyle, 'room_type_id' => $roomTypeId));
		$html     = '';
		$html     .= '<span class="legend-busy"></span> ' . JText::_('SR_AVAILABILITY_CALENDAR_BUSY');
		$html     .= ' <span class="legend-restricted"></span> ' . JText::_('SR_AVAILABILITY_CALENDAR_RESTRICTED');
		$period   = $params->get('availability_calendar_month_number', 6);
		for ($i = 0; $i < $period; $i++)
		{
			if ($i % 3 == 0 && $i == 0)
			{
				$html .= '<div class="' . SR_UI_GRID_CONTAINER . '">';
			}
			else if ($i % 3 == 0)
			{
				$html .= '</div><div class="' . SR_UI_GRID_CONTAINER . '">';
			}

			$year  = date('Y', strtotime('first day of this month +' . $i . ' month'));
			$month = date('n', strtotime('first day of this month +' . $i . ' month'));
			$html  .= '<div class="' . SR_UI_GRID_COL_4 . '">' . $calendar->generate($year, $month) . '</div>';
		}

		echo $html;

		$this->app->close();
	}

	public function getCheckInOutForm()
	{
		$solidresConfig           = JComponentHelper::getParams('com_solidres');
		$systemConfig             = JFactory::getConfig();
		$datePickerMonthNum       = $solidresConfig->get('datepicker_month_number', 3);
		$weekStartDay             = $solidresConfig->get('week_start_day', 1);
		$dateFormat               = $solidresConfig->get('date_format', 'd-m-Y');
		$tzoffset                 = $systemConfig->get('offset');
		$tariffId                 = $this->input->getUInt('tariff_id', 0);
		$roomtypeId               = $this->input->getUInt('roomtype_id', 0);
		$assetId                  = $this->input->getUInt('id', 0);
		$itemId                   = $this->input->getUInt('Itemid', 0);
		$modelTariff              = JModelLegacy::getInstance('Tariff', 'SolidresModel', array('ignore_request' => true));
		$tariff                   = $modelTariff->getItem($tariffId);
		$this->reservationDetails = $this->app->getUserState($this->context);
		$timezone                 = new DateTimeZone($tzoffset);
		$checkin                  = isset($this->reservationDetails->checkin) ? $this->reservationDetails->checkin : null;
		$checkout                 = isset($this->reservationDetails->checkout) ? $this->reservationDetails->checkout : null;

		$currentSelectedTariffs                = $this->app->getUserState($this->context . '.current_selected_tariffs');
		$currentSelectedTariffs[$roomtypeId][] = $tariffId;
		$this->app->setUserState($this->context . '.current_selected_tariffs', $currentSelectedTariffs);

		$jsDateFormat = SRUtilities::convertDateFormatPattern($dateFormat);
		$bookingType  = $this->app->getUserState($this->context . '.booking_type');

		$form = SRLayoutHelper::getInstance();

		$displayData = array(
			'tariff'               => $tariff,
			'assetId'              => $assetId,
			'roomTypeId'           => $roomtypeId,
			'checkIn'              => $checkin,
			'checkOut'             => $checkout,
			'minDaysBookInAdvance' => $solidresConfig->get('min_days_book_in_advance', 0),
			'maxDaysBookInAdvance' => $solidresConfig->get('max_days_book_in_advance', 0),
			'minLengthOfStay'      => $solidresConfig->get('min_length_of_stay', 1),
			'timezone'             => $timezone,
			'itemId'               => $itemId,
			'datePickerMonthNum'   => $datePickerMonthNum,
			'weekStartDay'         => $weekStartDay,
			'dateFormat'           => $dateFormat, // default format d-m-y
			'jsDateFormat'         => $jsDateFormat,
			'bookingType'          => $bookingType,
			'enableAutoScroll'     => $solidresConfig->get('enable_auto_scroll', 1)
		);

		echo $form->render(
			'asset.checkinoutform',
			$displayData
		);

		$this->app->close();
	}

	public function getCheckInOutFormChangeDates()
	{
		$solidresConfig           = JComponentHelper::getParams('com_solidres');
		$systemConfig             = JFactory::getConfig();
		$tariffId                 = $this->input->getUInt('tariff_id', 0);
		$roomtypeId               = $this->input->getUInt('roomtype_id', 0);
		$assetId                  = $this->input->getUInt('id', 0);
		$itemId                   = $this->input->getUInt('Itemid', 0);
		$return                   = $this->input->getString('return', '');
		$reservationId            = $this->input->getUInt('reservation_id', 0);
		$modelTariff              = JModelLegacy::getInstance('Tariff', 'SolidresModel', array('ignore_request' => true));
		$tariff                   = $modelTariff->getItem($tariffId);
		$this->reservationDetails = $this->app->getUserState($this->context);
		$tzoffset                 = $systemConfig->get('offset');
		$timezone                 = new DateTimeZone($tzoffset);
		/*$checkin = isset($this->reservationDetails->checkin) ? $this->reservationDetails->checkin : NULL;
		$checkout = isset($this->reservationDetails->checkout) ? $this->reservationDetails->checkout : NULL;*/
		$checkin  = $this->input->getString('checkin', '');
		$checkout = $this->input->getString('checkout', '');

		$datePickerMonthNum                    = $solidresConfig->get('datepicker_month_number', 3);
		$weekStartDay                          = $solidresConfig->get('week_start_day', 1);
		$currentSelectedTariffs                = $this->app->getUserState($this->context . '.current_selected_tariffs');
		$currentSelectedTariffs[$roomtypeId][] = $tariffId;
		$this->app->setUserState($this->context . '.current_selected_tariffs', $currentSelectedTariffs);
		JLoader::register('SRUtilities', SRPATH_LIBRARY . '/utilities/utilities.php');
		$dateFormat   = $solidresConfig->get('date_format', 'd-m-Y');
		$jsDateFormat = SRUtilities::convertDateFormatPattern($dateFormat);

		$form = SRLayoutHelper::getInstance();

		$displayData = array(
			'tariff'               => $tariff,
			'assetId'              => $assetId,
			'checkin'              => $checkin,
			'checkout'             => $checkout,
			'minDaysBookInAdvance' => $solidresConfig->get('min_days_book_in_advance', 0),
			'maxDaysBookInAdvance' => $solidresConfig->get('max_days_book_in_advance', 0),
			'minLengthOfStay'      => $solidresConfig->get('min_length_of_stay', 1),
			'timezone'             => $timezone,
			'itemId'               => $itemId,
			'reservationId'        => $reservationId,
			'datePickerMonthNum'   => $datePickerMonthNum,
			'weekStartDay'         => $weekStartDay,
			'dateFormat'           => $dateFormat, // default format d-m-y
			'jsDateFormat'         => $jsDateFormat,
			'return'               => $return
		);

		echo $form->render('asset.changedates', $displayData);

		$this->app->close();
	}


	public function startOver()
	{
		$id               = $this->input->getUint('id');
		$solidresConfig   = JComponentHelper::getParams('com_solidres');
		$enableAutoScroll = $solidresConfig->get('enable_auto_scroll', 1);

		$this->app->setUserState($this->context . '.room', null);
		$this->app->setUserState($this->context . '.extra', null);
		$this->app->setUserState($this->context . '.guest', null);
		/*$this->app->setUserState($this->context . '.payment', NULL);*/
		$this->app->setUserState($this->context . '.discount', null);
		$this->app->setUserState($this->context . '.deposit', null);
		$this->app->setUserState($this->context . '.coupon', null);
		$this->app->setUserState($this->context . '.token', null);
		$this->app->setUserState($this->context . '.cost', null);
		$this->app->setUserState($this->context . '.checkin', null);
		$this->app->setUserState($this->context . '.checkout', null);
		$this->app->setUserState($this->context . '.room_type_prices_mapping', null);
		$this->app->setUserState($this->context . '.selected_room_types', null);
		$this->app->setUserState($this->context . '.reservation_asset_id', null);
		$this->app->setUserState($this->context . '.current_selected_tariffs', null);
		$this->app->setUserState($this->context . '.room_opt', null);

		$this->setRedirect(JRoute::_('index.php?option=com_solidres&view=reservationasset&id=' . $id . ($enableAutoScroll ? '#form' : ''), false));
	}
}
controllers/map.php000060400000004536150751740420010411 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

/**
 * @package       Solidres
 * @subpackage    Reservation
 * @since         0.1.0
 */
class SolidresControllerMap extends JControllerLegacy
{
	/**
	 * Method to get a model object, loading it if required.
	 *
	 * @param    string $name   The model name. Optional.
	 * @param    string $prefix The class prefix. Optional.
	 * @param    array  $config Configuration array for model. Optional.
	 *
	 * @return    object    The model.
	 * @since    1.5
	 */
	public function &getModel($name = 'Map', $prefix = 'SolidresModel', $config = array())
	{
		$model = parent::getModel($name, $prefix, $config);

		return $model;
	}

	/**
	 * Show map of a single reservation asset
	 *
	 */
	public function show()
	{
		$model     = $this->getModel();
		$modelName = $model->getName();
		$id        = $this->input->getUint('id');

		$model->setState($modelName . '.assetId', $id);

		$this->input->set('tmpl', 'component');

		$document   = JFactory::getDocument();
		$viewType   = $document->getType();
		$viewName   = 'Map';
		$viewLayout = 'default';

		$view = $this->getView($viewName, $viewType, '', array('base_path' => $this->basePath, 'layout' => $viewLayout));
		$view->setModel($model, true);
		$view->document = $document;
		$view->display();
	}

	/**
	 * Show map of a location
	 *
	 * @since 0.6.0
	 */
	public function showLocation()
	{
		$this->input->set('tmpl', 'component');
		$location = $this->input->getString('location');
		$model    = $this->getModel();
		$model->setState('filter.location', $location);

		$document   = JFactory::getDocument();
		$viewType   = $document->getType();
		$viewName   = 'Map';
		$viewLayout = 'location';

		$view = $this->getView($viewName, $viewType, '', array('base_path' => $this->basePath, 'layout' => $viewLayout));

		$view->setModel($model, true);

		$view->document = $document;

		$view->display();
	}
}controllers/currency.json.php000060400000004415150751740420012432 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

/**
 * @package       Solidres
 * @subpackage    Currency
 * @since         0.1.0
 */
class SolidresControllerCurrency extends JControllerLegacy
{
	public function setId()
	{
		$currencyId = $this->input->get('id', 0, 'int');

		// add check if we already set cookie or not, if yes, retrieve them, otherwise set new cookie to store currency_id
		$currentCurrencyId = $this->input->cookie->get('solidres_currency', 0, 'int');

		if (empty($currentCurrencyId) || $currentCurrencyId != $currencyId)
		{
			$config        = JFactory::getConfig();
			$cookie_domain = $config->get('cookie_domain', '');
			$cookie_path   = $config->get('cookie_path', '/');
			// TODO add an option to allow configuring the cookie expire period here
			$this->input->cookie->set('solidres_currency', $currencyId, time() + 60 * 60 * 24 * 30, $cookie_path, $cookie_domain);
		}

		$this->cleanCache();

		JFactory::getApplication()->setUserState('current_currency_id', $currencyId);

		die(1);
	}

	/**
	 * Clean the cache
	 *
	 * @param   string  $group     The cache group
	 * @param   integer $client_id The ID of the client
	 *
	 * @return  void
	 *
	 * @since   12.2
	 */
	protected function cleanCache($group = null, $client_id = 0)
	{
		$conf = JFactory::getConfig();

		$options = array(
			'defaultgroup' => ($group) ? $group : (isset($this->option) ? $this->option : JFactory::getApplication()->input->get('option')),
			'cachebase'    => ($client_id) ? JPATH_ADMINISTRATOR . '/cache' : $conf->get('cache_path', JPATH_SITE . '/cache'),
		);

		/** @var JCacheControllerCallback $cache */
		$cache = JCache::getInstance('callback', $options);
		$cache->clean();

		// Trigger the onContentCleanCache event.
		JFactory::getApplication()->triggerEvent($this->event_clean_cache, $options);
	}
}controllers/reservation.php000060400000053074150751740420012176 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

JLoader::register('SolidresHelper', JPATH_COMPONENT_ADMINISTRATOR . '/helpers/helper.php');
JLoader::register('SolidresControllerReservationBase', JPATH_COMPONENT_ADMINISTRATOR . '/controllers/reservationbase.php');

use Joomla\CMS\Environment\Browser;

/**
 * @package       Solidres
 * @subpackage    Reservation
 * @since         0.1.0
 */
class SolidresControllerReservation extends SolidresControllerReservationBase
{
	public function __construct($config = array())
	{
		$this->view_item = 'reservation';
		$this->view_list = 'reservations';
		parent::__construct($config);
	}

	/**
	 * Method to save a record.
	 *
	 * @param   string $key    The name of the primary key of the URL variable.
	 * @param   string $urlVar The name of the URL variable if different from the primary key (sometimes required to avoid router collisions).
	 *
	 * @return  boolean  True if successful, false otherwise.
	 *
	 * @since   12.2
	 */
	public function save($key = null, $urlVar = null)
	{
		JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
		$model                    = $this->getModel();
		$resTable                 = JTable::getInstance('Reservation', 'SolidresTable');
		$hubDashboard             = $this->app->getUserState($this->context . '.hub_dashboard');
		$isGuestMakingReservation = $this->app->isClient('site') && !$hubDashboard;
		$assetId                  = $this->input->getUInt('id', 0);
		$sendOutgoingEmails       = true;

		// If it is amending by partner
		if (!$isGuestMakingReservation && SRUtilities::isAssetPartner(JFactory::getUser()->get('id'), $assetId))
		{
			// Get override cost
			$amendData = $this->input->post->get('jform', array(), 'array');

			if (!isset($amendData['sendoutgoingemails']))
			{
				$sendOutgoingEmails = false;
			}

			// Get current cost
			$roomTypePricesMapping = $this->app->getUserState($this->context . '.room_type_prices_mapping');
			$cost                  = $this->app->getUserState($this->context . '.cost');
			$reservationRooms      = $this->app->getUserState($this->context . '.room');
			$reservationGuest      = $this->app->getUserState($this->context . '.guest');
			$deposit               = $this->app->getUserState($this->context . '.deposit');

			$totalPriceTaxExcl               = 0;
			$totalImposedTaxAmount           = 0;
			$totalRoomTypeExtraCostTaxExcl   = 0;
			$totalRoomTypeExtraCostTaxIncl   = 0;
			$totalPerBookingExtraCostTaxIncl = 0;
			$totalPerBookingExtraCostTaxExcl = 0;
			foreach ($amendData['override_cost']['room_types'] as $roomTypeId => $tariffs)
			{
				foreach ($tariffs as $tariffId => $rooms)
				{
					foreach ($rooms as $roomId => $room)
					{
						$totalPriceTaxExcl += $room['total_price_tax_excl'];

						$totalImposedTaxAmount += $room['tax_amount'];
						$roomTotalPriceTaxIncl = $room['total_price_tax_excl'] + $room['tax_amount'];

						$roomTypePricesMapping[$roomTypeId][$tariffId][$roomId]['total_price']          = $roomTotalPriceTaxIncl;
						$roomTypePricesMapping[$roomTypeId][$tariffId][$roomId]['total_price_tax_incl'] = $roomTotalPriceTaxIncl;
						$roomTypePricesMapping[$roomTypeId][$tariffId][$roomId]['total_price_tax_excl'] = $room['total_price_tax_excl'];

						// Override extra cost
						if (is_array($room['extras']))
						{
							foreach ($room['extras'] as $overriddenExtraKey => $overriddenExtraCost)
							{
								$reservationRooms['room_types'][$roomTypeId][$tariffId][$roomId]['extras'][$overriddenExtraKey]['total_extra_cost_tax_incl'] = $overriddenExtraCost['price'] + $overriddenExtraCost['tax_amount'];
								$reservationRooms['room_types'][$roomTypeId][$tariffId][$roomId]['extras'][$overriddenExtraKey]['total_extra_cost_tax_excl'] = $overriddenExtraCost['price'];
								$totalRoomTypeExtraCostTaxIncl                                                                                               += $reservationRooms['room_types'][$roomTypeId][$tariffId][$roomId]['extras'][$overriddenExtraKey]['total_extra_cost_tax_incl'];
								$totalRoomTypeExtraCostTaxExcl                                                                                               += $reservationRooms['room_types'][$roomTypeId][$tariffId][$roomId]['extras'][$overriddenExtraKey]['total_extra_cost_tax_excl'];

							}
						}

					}
				}
			}

			// Override extra per booking if available
			if (is_array($amendData['override_cost']['extras_per_booking']))
			{
				foreach ($amendData['override_cost']['extras_per_booking'] as $overriddenExtraBookingKey => $overriddenExtraBookingCost)
				{
					$reservationGuest['extras'][$overriddenExtraBookingKey]['total_extra_cost_tax_incl'] = $overriddenExtraBookingCost['price'] + $overriddenExtraBookingCost['tax_amount'];
					$reservationGuest['extras'][$overriddenExtraBookingKey]['total_extra_cost_tax_excl'] = $overriddenExtraBookingCost['price'];
					$totalPerBookingExtraCostTaxIncl                                                     += $reservationGuest['extras'][$overriddenExtraBookingKey]['total_extra_cost_tax_incl'];
					$totalPerBookingExtraCostTaxExcl                                                     += $reservationGuest['extras'][$overriddenExtraBookingKey]['total_extra_cost_tax_excl'];
				}
			}

			$totalPriceTaxIncl                                       = $totalPriceTaxExcl + $totalImposedTaxAmount;
			$reservationRooms['total_extra_price_per_room']          = $totalRoomTypeExtraCostTaxIncl;
			$reservationRooms['total_extra_price_tax_incl_per_room'] = $totalRoomTypeExtraCostTaxIncl;
			$reservationRooms['total_extra_price_tax_excl_per_room'] = $totalRoomTypeExtraCostTaxExcl;

			$reservationGuest['total_extra_price_per_booking']          = $totalPerBookingExtraCostTaxIncl;
			$reservationGuest['total_extra_price_tax_incl_per_booking'] = $totalPerBookingExtraCostTaxIncl;
			$reservationGuest['total_extra_price_tax_excl_per_booking'] = $totalPerBookingExtraCostTaxExcl;

			$cost['total_price']          = $totalPriceTaxIncl;
			$cost['total_price_tax_incl'] = $totalPriceTaxIncl;
			$cost['total_price_tax_excl'] = $totalPriceTaxExcl;
			$cost['tax_amount']           = $totalImposedTaxAmount;
			$deposit['deposit_amount']    = $amendData['override_cost']['deposit_amount'];

			// Update existing prices with overridden prices
			$this->app->setUserState($this->context . '.cost', $cost);
			$this->app->setUserState($this->context . '.room_type_prices_mapping', $roomTypePricesMapping);
			$this->app->setUserState($this->context . '.room', $reservationRooms);
			$this->app->setUserState($this->context . '.guest', $reservationGuest);
			$this->app->setUserState($this->context . '.deposit', $deposit);
		}

		// Get the data from user state and build a correct array that is ready to be stored
		$this->prepareSavingData();
		$this->reservationData['isGuestMakingReservation'] = $isGuestMakingReservation;

		if ($isGuestMakingReservation)
		{
			$db    = JFactory::getDbo();
			$query = $db->getQuery(true)
				->select('a.id, a.name')
				->from($db->quoteName('#__sr_origins', 'a'))
				->where('a.scope = 0 AND a.state = 1 AND a.is_default = 1');

			if ($origin = $db->setQuery($query)->loadObject())
			{
				$this->reservationData['origin_id'] = $origin->id;
				$this->reservationData['origin']    = $origin->name;
			}

			$browser                                    = Browser::getInstance();
			$this->reservationData['customer_ua']       = $browser->getAgentString();
			$this->reservationData['customer_ismobile'] = $browser->isMobile() ? 1 : 0;
		}

		$isNew = true;
		if (isset($this->reservationData['id']) && $this->reservationData['id'] > 0)
		{
			$isNew = false;
		}

		$privacyConsent = true;

		if (!JFactory::getUser()->id
			&& JPluginHelper::isEnabled('system', 'privacyconsent')
			&& !empty($this->reservationData['customer_username'])
			&& !empty($this->reservationData['customer_password'])
			&& empty($this->reservationData['privacyConsent'])
		)
		{
			$privacyConsent = false;
		}

		if (!$privacyConsent || !$model->save($this->reservationData))
		{
			// Fail, turn back and correct
			$msg       = !$privacyConsent ? JText::_('SR_ERR_PRIVACY_CONSENT_MSG') : JText::_('SR_RESERVATION_SAVE_ERROR');
			$returnUrl = 'index.php?option=com_solidres&Itemid=' . $this->app->getUserState($this->context . '.activeItemId') .
				'&task=reservationasset.checkavailability&id=' . $this->reservationData['reservation_asset_id'] .
				'&checkin=' . $this->reservationData['checkin'] .
				'&checkout=' . $this->reservationData['checkout'];

			$roomsOccupancyOptions = $this->app->getUserState($this->context . '.room_opt');
			if (count($roomsOccupancyOptions) > 0)
			{
				for ($r = 1, $rCount = count($roomsOccupancyOptions); $r <= $rCount; $r++)
				{
					$returnUrl .=
						"&room_opt[$r][adults]={$roomsOccupancyOptions[$r]['adults']}" .
						"&room_opt[$r][children]={$roomsOccupancyOptions[$r]['children']}";
				}
			}

			$returnUrl = JRoute::_($returnUrl, false);
			$this->setRedirect($returnUrl, $msg, 'error');
		}
		else
		{
			// Prepare some data for final layout
			$savedReservationId = $model->getState($model->getName() . '.id');
			$resTable->load($savedReservationId);
			$this->app->setUserState($this->context . '.savedReservationId', $savedReservationId);
			$this->app->setUserState($this->context . '.code', $resTable->code);
			$this->app->setUserState($this->context . '.payment_method_id', $resTable->payment_method_id);
			$this->app->setUserState($this->context . '.customer_firstname', $this->reservationData['customer_firstname']);
			$this->app->setUserState($this->context . '.customer_lastname', $this->reservationData['customer_lastname']);
			$this->app->setUserState($this->context . '.customeremail', $this->reservationData['customer_email']);
			$this->app->setUserState($this->context . '.reservation_asset_name', $this->reservationData['reservation_asset_name']);
			$this->app->setUserState($this->context . '.is_new', $isNew);

			if ($hubDashboard == 0)
			{
				if (!in_array($resTable->payment_method_id, array('paylater', 'bankwire')))
				{
					// Run payment plugin here
					JPluginHelper::importPlugin('solidrespayment', $resTable->payment_method_id);
					$responses  = $this->app->triggerEvent('OnSolidresPaymentNew', array($resTable));
					$document   = JFactory::getDocument();
					$viewType   = $document->getType();
					$viewName   = 'Reservation';
					$viewLayout = 'payment';

					$view = $this->getView($viewName, $viewType, '', array('base_path' => $this->basePath, 'layout' => $viewLayout));
					if (!empty($responses))
					{
						foreach ($responses as $response)
						{
							if ($response === false) continue;
							$view->paymentForm = $response;
						}
					}

					if (!empty($view->paymentForm))
					{
						$view->display();
					}
					else
					{
						$link = JRoute::_('index.php?option=com_solidres&task=reservation.finalize&reservation_id=' . $savedReservationId, false);
						$this->setRedirect($link);
					}
				}
				else
				{
					$link = JRoute::_('index.php?option=com_solidres&task=reservation.finalize&reservation_id=' . $savedReservationId, false);
					$this->setRedirect($link);
				}
			}
			else
			{
				$processOnlinePayment = isset($reservationGuest['processonlinepayment']) ?
					$reservationGuest['processonlinepayment'] : 0;
				if ($resTable->payment_method_id != 'paylater' && $resTable->payment_method_id != 'bankwire' && $processOnlinePayment)
				{
					// Work fine with payment gateway that does not require redirection, for example stripe, authorize.net
					JPluginHelper::importPlugin('solidrespayment', $resTable->payment_method_id);
					$responses = $this->app->triggerEvent('OnSolidresPaymentNew', array($resTable));
				}

				if ($sendOutgoingEmails)
				{
					$this->sendEmail();
				}

				$this->app->setUserState($this->context, null);

				$msg = $isNew ? JText::_('SR_YOUR_RESERVATION_HAS_BEEN_ADDED') : JText::_('SR_YOUR_RESERVATION_HAS_BEEN_AMENDED');

				// Redirect to the list screen.
				$this->setRedirect(
					JRoute::_(
						'index.php?option=' . $this->option . '&view=' . $this->view_list
						. $this->getRedirectToListAppend(), false
					), $msg
				);
			}
		}
	}

	/**
	 * Finalize the reservation process
	 *
	 * @since  0.3.0
	 *
	 * @return void
	 */
	public function finalize()
	{
		JPluginHelper::importPlugin('solidrespayment');
		$reservationId  = $this->input->get('reservation_id', 0, 'int');
		$results        = $this->app->triggerEvent('OnReservationFinalize', array($this->context, &$reservationId));
		$assetParams    = $this->app->getUserState($this->context . '.asset_params');
		$solidresConfig = JComponentHelper::getParams('com_solidres');

		$bookingRequireApproval = 0;
		if (isset($assetParams['booking_require_approval']))
		{
			$bookingRequireApproval = $assetParams['booking_require_approval'];
		}

		$this->app->setUserState($this->context . '.booking_require_approval', $bookingRequireApproval);

		if ($bookingRequireApproval)
		{
			$this->app->setUserState($this->context . '.payment_method_message', JText::sprintf('SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL',
				$this->app->getUserState($this->context . '.customer_firstname'),
				$this->app->getUserState($this->context . '.code'),
				JUri::root())
			);
		}

		$savedReservationId = $this->app->getUserState($this->context . '.savedReservationId');
		$activeItemId       = $this->app->getUserState($this->context . '.activeItemId');

		if ($savedReservationId == $reservationId)
		{
			JTable::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_solidres/tables', 'SolidresTable');
			$tableReservation = JTable::getInstance('Reservation', 'SolidresTable');
			$tableReservation->load($savedReservationId);

			// Show different completion message depends on the payment status, however let ignore the following payment
			// gateways from checking.
			$isPaid = true;
			if (!in_array($tableReservation->payment_method_id, array('paylater', 'bankwire', 'offline')))
			{
				$isPaid = $tableReservation->payment_status == $solidresConfig->get('confirm_payment_state', 1);
			}

			if (!$bookingRequireApproval)
			{
				if (!$isPaid)
				{
					$this->app->setUserState($this->context . '.payment_method_message', JText::sprintf('SR_RESERVATION_PAYMENT_FAILED',
						JUri::root())
					);
				}
				else
				{
					$msg = $this->sendEmail();
				}
			}
			else
			{
				$solidresReservation = SRFactory::get('solidres.reservation.reservation');
				$msg                 = $solidresReservation->sendBookingInquiryNotificationEmail($reservationId);
			}

			if (!is_string($msg))
			{
				$msg = null;
			}

			// Done, we do not need these data, wipe them !!!
			$this->app->setUserState($this->context . '.room', null);
			$this->app->setUserState($this->context . '.extra', null);
			$this->app->setUserState($this->context . '.guest', null);
			$this->app->setUserState($this->context . '.discount', null);
			$this->app->setUserState($this->context . '.deposit', null);
			$this->app->setUserState($this->context . '.coupon', null);
			$this->app->setUserState($this->context . '.token', null);
			$this->app->setUserState($this->context . '.cost', null);
			$this->app->setUserState($this->context . '.checkin', null);
			$this->app->setUserState($this->context . '.checkout', null);
			$this->app->setUserState($this->context . '.room_type_prices_mapping', null);
			$this->app->setUserState($this->context . '.selected_room_types', null);
			$this->app->setUserState($this->context . '.reservation_asset_id', null);
			$this->app->setUserState($this->context . '.current_selected_tariffs', null);
			$this->app->setUserState($this->context . '.room_opt', null);
			$this->app->setUserState($this->context . '.processed_extra_room_daily_rate', null);
			$this->app->setUserState($this->context . '.id', null);
			$this->app->setUserState($this->context . '.is_amending', null);
			$this->app->setUserState($this->context . '.prioritizing_room_type_id', null);

			$link = JRoute::_('index.php?option=com_solidres&view=reservation&layout=final&Itemid=' . $activeItemId . '#solidres', false);
			$this->setRedirect($link, $msg);
		}
	}

	public function paymentcallback()
	{
		$callbackData = $this->input->getArray($_REQUEST);
		JPluginHelper::importPlugin('solidrespayment', $callbackData['payment_method_id']);

		$responses = $this->app->triggerEvent('OnSolidresPaymentCallback', array(
			$callbackData['payment_method_id'],
			$callbackData
		));
	}

	protected function redirectPayment($type)
	{
		$app   = JFactory::getApplication();
		$token = $app->input->get('token');

		if ($token && strlen($token) === 32)
		{
			try
			{
				$scope = $app->input->getUint('scope', 0);

				if ($scope && !SRPlugin::isEnabled('experience'))
				{
					throw new RuntimeException('Plugin Solidres Experience not enabled.');
				}

				$db    = JFactory::getDbo();
				$query = $db->getQuery(true)
					->select('a.id');

				if ($scope)
				{
					JTable::addIncludePath(SRPlugin::getAdminPath('experience') . '/tables');
					$reservationTable = JTable::getInstance('ExpReservation', 'SolidresTable');
					$query->from($db->qn('#__sr_experience_reservations', 'a'))
						->where('MD5(CONCAT_WS(' . $db->q(':') . ', a.id, a.code, a.experience_id, a.experience_name)) = ' . $db->q($token));

				}
				else
				{
					JTable::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_solidres/tables');
					$reservationTable = JTable::getInstance('Reservation', 'SolidresTable');
					$query->from($db->qn('#__sr_reservations', 'a'))
						->where('MD5(CONCAT_WS(' . $db->q(':') . ', a.id, a.code, a.reservation_asset_id, a.reservation_asset_name)) = ' . $db->q($token));
				}

				$db->setQuery($query);
				$reservationId = $db->loadResult();

				if ($reservationId
					&& $reservationTable
					&& $reservationTable->load($reservationId)
				)
				{
					$identifier     = $app->input->getString('identifier');
					$solidresConfig = JComponentHelper::getParams('com_solidres');

					if ($scope)
					{
						$scopeId                   = (int) $reservationTable->experience_id;
						$property                  = $reservationTable->experience_name;
						$namespace                 = 'experience/payments/' . $identifier;
						$search                    = 'experience/payments/' . $identifier . '_';
						$paymentCancellationStatus = (int) $solidresConfig->get('exp_payment_cancelled_state', 2);
					}
					else
					{
						$scopeId                   = (int) $reservationTable->reservation_asset_id;
						$property                  = $reservationTable->reservation_asset_name;
						$namespace                 = 'payments/' . $identifier;
						$search                    = 'payments/' . $identifier . '/' . $identifier . '_';
						$paymentCancellationStatus = $solidresConfig->get('cancel_payment_state', 2);
					}

					if ($identifier && $scopeId)
					{
						$query = $db->getQuery(true)
							->select('a.data_key, a.data_value')
							->from($db->qn('#__sr_config_data', 'a'))
							->where('a.data_key LIKE ' . $db->q($namespace . ($scope ? '_%' : '/%')))
							->where('a.scope_id = ' . $scopeId);
						$db->setQuery($query);
						$paymentParams = new \Joomla\Registry\Registry;

						if ($rows = $db->loadObjectList())
						{
							foreach ($rows as $row)
							{
								$name  = str_replace($search, '', $row->data_key);
								$value = $row->data_value;

								if (is_string($value)
									&& is_array(json_decode($value, true))
									&& (json_last_error() == JSON_ERROR_NONE)
								)
								{
									$value = json_decode($value, true);
								}

								$paymentParams->set($name, $value);
							}
						}

						if ($type === 'cancel')
						{
							$reservationTable->set('payment_status', $paymentCancellationStatus);
							$reservationTable->store();
						}

						$group = $scope ? 'experience' : 'solidres';
						JPluginHelper::importPlugin($group . 'payment', $identifier);
						$app->triggerEvent('on' . ucfirst($group) . 'Payment' . ucfirst($type), array($reservationTable, $paymentParams));
						$message  = $paymentParams->get($type . '_message');
						$redirect = $paymentParams->get($type . '_redirect');

						if (empty($message))
						{
							$message = JText::sprintf('SR_RESERVATION_' . strtoupper($type) . '_MESSAGE_FORMAT', $reservationTable->code, $property, ucfirst($identifier));
						}

						if ($scope)
						{
							$message = SRExpPayment::parseReplaceMessage($reservationTable, $message);
						}

						if (is_numeric($redirect))
						{
							$query = $db->getQuery(true)
								->select('a.language')
								->from($db->qn('#__menu', 'a'))
								->where('a.client_id = 0')
								->where('a.id =' . (int) $redirect);
							$db->setQuery($query);
							$language = $db->loadResult();
							$redirect = 'index.php?Itemid=' . (int) $redirect;

							if ($language !== '*')
							{
								$redirect .= '&lang=' . $language;
							}
						}

						if (empty($redirect) || !JUri::isInternal($redirect))
						{
							$redirect = 'index.php';
						}

						if ($redirect == 'index.php')
						{
							$redirect = JUri::root();
						}
						else
						{
							$redirect = JRoute::_($redirect, false);
						}

						$app->redirect($redirect, trim($message));
					}

				}
			}
			catch (RuntimeException $e)
			{

			}
		}

		$app->redirect('index.php');
	}

	public function cancelPayment()
	{
		$this->redirectPayment('cancel');
	}

	public function returnPayment()
	{
		$this->redirectPayment('return');
	}
}
controllers/reservationasset.json.php000060400000001543150751740420014200 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

JLoader::register('SolidresControllerReservationAssetBase', JPATH_COMPONENT_ADMINISTRATOR . '/controllers/reservationassetbase.json.php');

/**
 * @package       Solidres
 * @subpackage    ReservationAsset
 * @since         0.4.0
 */
class SolidresControllerReservationAsset extends SolidresControllerReservationAssetBase
{

}controllers/coupon.json.php000060400000010631150751740420012100 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

/**
 * @package       Solidres
 * @subpackage    Coupon
 * @since         0.1.0
 */
class SolidresControllerCoupon extends JControllerLegacy
{
	public function __construct($config = array())
	{
		$config['model_path'] = JPATH_COMPONENT_ADMINISTRATOR . '/models';
		parent::__construct($config);

		$this->couponCode      = $this->input->get('coupon_code', 0, 'string');
		$this->raId            = $this->input->get('raid', 0, 'int');
		$this->coupon          = SRFactory::get('solidres.coupon.coupon');
		$this->jconfig         = JFactory::getConfig();
		$this->tzoffset        = $this->jconfig->get('offset');
		$this->reservationData = $this->getReservationData();
		$this->customerGroupId = SRUtilities::getCustomerGroupId();
		$this->currentDate     = JFactory::getDate(date('Y-M-d'), $this->tzoffset)->toUnix();
		$this->checkin         = JFactory::getDate(date('Y-M-d', strtotime($this->reservationData->checkin)), $this->tzoffset)->toUnix();
	}

	/**
	 * Method to get a model object, loading it if required.
	 *
	 * @param    string $name   The model name. Optional.
	 * @param    string $prefix The class prefix. Optional.
	 * @param    array  $config Configuration array for model. Optional.
	 *
	 * @return    object    The model.
	 * @since    1.5
	 */
	public function getModel($name = 'Coupon', $prefix = 'SolidresModel', $config = array())
	{
		$model = parent::getModel($name, $prefix, $config);

		return $model;
	}

	/**
	 * Check a coupon code to see if it is valid to use.
	 *
	 * Valid conditions
	 *
	 *  - The coupon must belong to the current reservation asset
	 *  - The coupon must be enabled
	 *  - The date of making reservation must be between the coupon valid date range
	 *  - The checkin date must be between the Valid from checkin/Valid to checkin period
	 *  - Belong to correct customer group
	 */
	public function isValid()
	{
		$status = $this->coupon->isValid($this->couponCode, $this->raId, $this->currentDate, $this->checkin, $this->customerGroupId);

		if ($status)
		{
			$msg = '<span class="help-inline accepted">' . JText::_('SR_COUPON_ACCEPTED') . '
			        <a href="javascript:void(0)" id="apply-coupon">' . JText::_('SR_APPLY_COUPON') . '</a></span>';
		}
		else
		{
			$msg = '<span class="help-inline rejected">' . JText::_('SR_COUPON_REJECTED') . '</span>';
		}

		$response = array('status' => $status, 'message' => $msg);

		echo json_encode($response);
		die(1);
	}

	public function applyCoupon()
	{
		$couponModel = $this->getModel();
		$app         = JFactory::getApplication();
		$context     = 'com_solidres.reservation.process';

		$isValid = $this->coupon->isValid($this->couponCode, $this->raId, $this->currentDate, $this->checkin, $this->customerGroupId);

		if ($isValid)
		{
			$couponData                       = array();
			$coupon                           = $couponModel->getItem(array('coupon_code' => $this->couponCode, 'state' => 1));
			$couponData['coupon_id']          = $coupon->id;
			$couponData['coupon_name']        = $coupon->coupon_name;
			$couponData['coupon_code']        = $coupon->coupon_code;
			$couponData['coupon_amount']      = $coupon->amount;
			$couponData['coupon_is_percent']  = $coupon->is_percent;
			$couponData['valid_from']         = $coupon->valid_from;
			$couponData['valid_to']           = $coupon->valid_to;
			$couponData['valid_from_checkin'] = $coupon->valid_from_checkin;
			$couponData['valid_to_checkin']   = $coupon->valid_to_checkin;
			$couponData['customer_group_id']  = $coupon->customer_group_id;
			$app->setUserState($context . '.coupon', $couponData);
			$response = array('status' => true, 'message' => '');
		}
		else
		{
			$app->setUserState($context . '.coupon', null);
			$response = array('status' => false, 'message' => '');
		}
		echo json_encode($response);
		die(1);
	}

	private function getReservationData()
	{
		$context = 'com_solidres.reservation.process';

		return JFactory::getApplication()->getUserState($context);
	}
}controllers/reservation.json.php000060400000010315150751740420013135 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

defined('_JEXEC') or die;

JLoader::register('SolidresHelper', JPATH_COMPONENT_ADMINISTRATOR . '/helpers/helper.php');
JLoader::register('SolidresControllerReservationBase', JPATH_COMPONENT_ADMINISTRATOR . '/controllers/reservationbase.json.php');

/**
 * Controller to handle one-page reservation form
 *
 * @package       Solidres
 * @subpackage    Reservation
 * @since         0.1.0
 */
class SolidresControllerReservation extends SolidresControllerReservationBase
{
	public function removeCoupon()
	{
		$app     = JFactory::getApplication();
		$context = 'com_solidres.reservation.process';
		$status  = false;

		$currentAppliedCoupon = $app->getUserState($context . '.coupon');

		if ($currentAppliedCoupon['coupon_id'] == $app->input->get('id', 0, 'int'))
		{
			$app->setUserState($context . '.coupon', null);
			$status = true;
		}

		$response = array('status' => $status, 'message' => '');

		echo json_encode($response);

		die(1);
	}

	public function requestBooking()
	{
		JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));

		$app = JFactory::getApplication();

		try
		{
			JTable::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_solidres/tables');
			$assetTable = JTable::getInstance('ReservationAsset', 'SolidresTable');
			$assetId    = $this->input->getInt('assetId');

			if ($assetTable->load($assetId))
			{
				$name    = $this->input->getString('fullname');
				$phone   = $this->input->getString('phone');
				$email   = $this->input->getString('email');
				$message = $this->input->getString('message');
				$params  = new Joomla\Registry\Registry($assetTable->params);

				if ($params->get('use_captcha'))
				{
					JPluginHelper::importPlugin('captcha', 'recaptcha');
					$results = JFactory::getApplication()->triggerEvent('onCheckAnswer');

					if (in_array(false, $results, true))
					{
						throw new Exception('Invalid captcha');
					}
				}

				$recipients = array();

				if ($assetTable->get('email') && filter_var($assetTable->get('email'), FILTER_VALIDATE_EMAIL))
				{
					$recipients[] = $assetTable->get('email');
				}

				$additional = explode(',', $params->get('additional_notification_emails'));

				if (count($additional))
				{
					foreach ($additional as $mail)
					{
						if (filter_var($mail, FILTER_VALIDATE_EMAIL))
						{
							$recipients[] = $mail;
						}
					}
				}

				if (empty($recipients))
				{
					throw new Exception('Recipients not found.');
				}

				$mailer = JFactory::getMailer();
				$mailer->setSender(array(
					$app->get('mailfrom'),
					$app->get('fromname')
				));

				$mailer->addRecipient($recipients);
				$mailer->isHtml(false);
				$mailer->setSubject(JText::plural('SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL', strtoupper($name), strtoupper($assetTable->name)));
				$body = $params->get('email_content_format');

				if (empty($body))
				{
					$body = 'Hi,
									You have a new booking inquiry for ' . ucfirst($assetTable->name) . ' via ' . $app->get('sitename') . ':
									Name: ' . $name . '
									Email: ' . $email . '
									Phone: ' . $phone . '
									Message: ' . $message . '
									Cheers,';
				}
				else
				{
					$body = str_replace(
						array('{site_name}', '{asset_name}', '{name}', '{phone}', '{email}', '{message}'),
						array($app->get('sitename'), ucfirst($assetTable->name), $name, $phone, $email, $message),
						$body
					);
				}

				$mailer->setBody($body);

				if ($mailer->send())
				{
					$response = array(
						'status'  => 'success',
						'message' => JText::_('SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE')
					);
				}

			}
		}
		catch (Exception $e)
		{
			$response = array(
				'status'  => 'error',
				'message' => $e->getMessage()
			);
		}

		echo json_encode($response);

		$app->close();
	}
}layouts/asset/guestform_style2.php000060400000063437150751740420013427 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/guestform_style2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

$selectedCustomerTitle       = !empty($reservationDetails->guest["customer_title"]) ? $reservationDetails->guest["customer_title"] : '';
$user                        = JFactory::getUser();
$isFrontEnd                  = JFactory::getApplication()->isClient('site');
$disableCustomerRegistration = true;
if (isset($reservationDetails->asset_params['disable_customer_registration'])) :
	$disableCustomerRegistration = $reservationDetails->asset_params['disable_customer_registration'];
endif;
if (!isset($reservationDetails->hub_dashboard)) :
	$reservationDetails->hub_dashboard = 0;
endif;
$isGuestMakingReservation = JFactory::getApplication()->isClient('site') && !$reservationDetails->hub_dashboard;
JLoader::register('SRPayment', SRPATH_LIBRARY . '/payment/payment.php');
?>

<form enctype="multipart/form-data"
      id="sr-reservation-form-guest"
      class="sr-reservation-form form-stacked sr-validate"
      action="<?php echo JUri::base() ?>index.php?option=com_solidres&task=reservation<?php echo $isFrontEnd ? '' : 'base' ?>.process&step=guestinfo&format=json"
      method="POST">

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-top">

        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isFrontEnd) : ?>
                    <p><?php echo JText::_('SR_GUEST_INFO_STEP_NOTICE') ?></p>
				<?php endif ?>
            </div>
        </div>

        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="guestinfo"
                            data-prevstep="room">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button data-step="guestinfo" type="submit" class="btn btn-success">
                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

	<?php if ($isGuestMakingReservation && 1 == $showRoomsRatesInfo) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
				<?php
				$subLayout = SRLayoutHelper::getInstance();
				$subLayout->addIncludePath(JPATH_COMPONENT . '/components/com_solidres/layouts');
				echo $subLayout->render('asset.rooms_and_rates', $displayData);
				?>
            </div>
        </div>
	<?php endif; ?>

	<?php if ($isFrontEnd) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                <h3><?php echo JText::_('SR_GUEST_INFORMATION') ?></h3>
            </div>
        </div>

	<?php endif ?>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
            <fieldset>
				<?php if (isset($guestFields[0])): ?>
					<?php echo $guestFields[0]; ?>
				<?php else: ?>
                    <div class="form-group">
                        <label for="firstname">
							<?php echo JText::_("SR_CUSTOMER_TITLE") ?>
                        </label>
						<?php
						echo JHtml::_("select.genericlist", $customerTitles, "jform[customer_title]", array("class" => 'form-control input-block-level', 'required'), "value", "text", $selectedCustomerTitle, "")
						?>
                    </div>
                    <div class="form-group">
                        <label for="firstname">
							<?php echo JText::_("SR_FIRSTNAME") ?>
                        </label>
                        <input id="firstname"
                               required
                               name="jform[customer_firstname]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_firstname"]) ? $reservationDetails->guest["customer_firstname"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="middlename">
							<?php echo JText::_("SR_MIDDLENAME") ?>
                        </label>
                        <input id="middlename"
                               name="jform[customer_middlename]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_middlename"]) ? $reservationDetails->guest["customer_middlename"] : "") ?>"/>

                    </div>
                    <div class="form-group">
                        <label for="lastname">
							<?php echo JText::_("SR_LASTNAME") ?>
                        </label>
                        <input id="lastname"
                               required
                               name="jform[customer_lastname]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_lastname"]) ? $reservationDetails->guest["customer_lastname"] : "") ?>"/>
                    </div>
                    <div class="form-group"><label for="email">
							<?php echo JText::_("SR_EMAIL") ?>
                        </label>
                        <input id="email"
                               required
                               name="jform[customer_email]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_email"]) ? $reservationDetails->guest["customer_email"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="confirm-email">
							<?php echo JText::_('SR_CONFIRM_EMAIL') ?>
                        </label>
                        <input id="confirm-email"
                               required
                               name="jform[customer_email2]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest['customer_email2']) ? $reservationDetails->guest['customer_email2'] : '') ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="phonenumber">
							<?php echo JText::_("SR_PHONENUMBER") ?>
                        </label>
                        <input id="phonenumber"
                               required
                               name="jform[customer_phonenumber]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_phonenumber"]) ? $reservationDetails->guest["customer_phonenumber"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="mobilephone">
							<?php echo JText::_("SR_MOBILEPHONE") ?>
                        </label>
                        <input id="mobilephone"
                               name="jform[customer_mobilephone]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_mobilephone"]) ? $reservationDetails->guest["customer_mobilephone"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="company">
							<?php echo JText::_("SR_COMPANY") ?>
                        </label>
                        <input id="company"
                               name="jform[customer_company]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_company"]) ? $reservationDetails->guest["customer_company"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="address1">
							<?php echo JText::_("SR_ADDRESS_1") ?>
                        </label>
                        <input id="address1"
                               required
                               name="jform[customer_address1]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_address1"]) ? $reservationDetails->guest["customer_address1"] : "") ?>"/>

                    </div>
                    <div class="form-group">
                        <label for="address2">
							<?php echo JText::_("SR_ADDRESS_2") ?>
                        </label>
                        <input id="address2"
                               name="jform[customer_address2]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_address2"]) ? $reservationDetails->guest["customer_address2"] : "") ?>"/>
                    </div>
				<?php endif; ?>
            </fieldset>
        </div>

        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
            <fieldset>
				<?php if (isset($guestFields[1])): ?>
					<?php echo $guestFields[1]; ?>
				<?php else: ?>
                    <div class="form-group">
                        <label for="vat_number">
							<?php echo JText::_("SR_VAT_NUMBER") ?>
                        </label>
                        <input id="vat_number"
                               name="jform[customer_vat_number]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_vat_number"]) ? $reservationDetails->guest["customer_vat_number"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="city"><?php echo JText::_("SR_CITY") ?></label>
                        <input id="city"
                               required
                               name="jform[customer_city]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_city"]) ? $reservationDetails->guest["customer_city"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="zip"><?php echo JText::_("SR_ZIP") ?></label>
                        <input id="zip"
                               name="jform[customer_zipcode]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_zipcode"]) ? $reservationDetails->guest["customer_zipcode"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="jform[country_id]"><?php echo JText::_("SR_COUNTRY") ?></label>

						<?php
						$selectedCountryId = isset($reservationDetails->guest["customer_country_id"]) ? $reservationDetails->guest["customer_country_id"] : 0;
						echo JHtml::_("select.genericlist", $countries, "jform[customer_country_id]", array("class" => "country_select form-control input-block-level", 'required' => 'required'), "value", "text", $selectedCountryId, "country");
						?>
                    </div>
                    <div class="form-group">
                        <label for="jform[customer_geo_state_id]"><?php echo JText::_("SR_STATE") ?></label>
						<?php
						$selectedGeoStateId = isset($reservationDetails->guest["customer_geo_state_id"]) ? $reservationDetails->guest["customer_geo_state_id"] : 0;

						echo JHtml::_("select.genericlist", $geoStates, "jform[customer_geo_state_id]", array("class" => "state_select form-control input-block-level"), "value", "text", $selectedGeoStateId, "state");
						?>
                    </div>
                    <div class="form-group">
                        <label for="note"><?php echo JText::_("SR_NOTE") ?></label>
                        <textarea id="note" name="jform[note]" rows="10" cols="30"
                                  placeholder="<?php echo JText::_("SR_RESERVATION_NOTE") ?>"
                                  class="span12 form-control"><?php echo(isset($reservationDetails->guest["note"]) ? $reservationDetails->guest["note"] : "") ?></textarea>
                    </div>
				<?php endif; ?>
				<?php if (SRPlugin::isEnabled('user') && $user->get('id') <= 0 && (isset($disableCustomerRegistration) && !$disableCustomerRegistration)) : ?>
                    <div class="form-group">
                        <label class="checkbox">
                            <input id="register_an_account_form"
                                   type="checkbox"> <?php echo JText::_('SR_REGISTER_WITH_US_TEXT') ?>
                        </label>
                        <div class="register_an_account_form" style="display: none">
                            <label for="username">
								<?php echo JText::_("SR_USERNAME") ?>
                            </label>
                            <input id="username"
                                   name="jform[customer_username]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value=""/>

                            <label for="password">
								<?php echo JText::_("SR_PASSWORD") ?>
                            </label>
                            <input id="password"
                                   name="jform[customer_password]"
                                   type="password"
                                   class="form-control input-block-level"
                                   value=""
                                   autocomplete="off"
                            />
	                        <?php if (JPluginHelper::isEnabled('system', 'privacyconsent')): ?>
                                <div class="<?php echo SR_UI_FORM_ROW; ?>">
                                    <label class="checkbox inline">
                                        <input name="jform[privacyConsent]"
                                               type="checkbox"
                                               value="1"
                                               id="privacy-consent"
                                        />
				                        <?php echo JText::_('SR_PRIVACY_CONSENT_NOTE'); ?>
                                    </label>
                                </div>
	                        <?php endif; ?>
                        </div>
                    </div>
				<?php endif; ?>
            </fieldset>
        </div>
    </div>

	<?php
	// Show Per Booking Extras
	if (count($extras)) :
	?>
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <h3><?php echo JText::_('SR_ENHANCE_YOUR_STAY') ?></h3>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
			<?php
			foreach ($extras as $extra) :
				$extraInputCommonName = 'jform[extras][' . $extra->id . ']';
				$checked = '';
				$disabledCheckbox = '';
				$disabledSelect = 'disabled="disabled"';
				$alreadySelected = false;
				if (isset($reservationDetails->guest['extras'])) :
					$alreadySelected = array_key_exists($extra->id, (array) $reservationDetails->guest['extras']);
				endif;

				if ($extra->mandatory == 1 || $alreadySelected) :
					$checked = 'checked="checked"';
				endif;

				if ($extra->mandatory == 1) :
					if ($isGuestMakingReservation) :
						$disabledCheckbox = 'disabled="disabled"';
					else :
						$disabledCheckbox = '';
					endif;
					$disabledSelect = '';
				endif;

				if ($alreadySelected && $extra->mandatory == 0) :
					$disabledSelect = '';
				endif;
				?>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                    <div class="<?php echo SR_UI_GRID_COL_12 ?> extras_row_guestform">
                        <input <?php echo $checked ?> <?php echo $disabledCheckbox ?>
                                type="checkbox"
                                data-target="guest_extra_<?php echo $extra->id ?>"/>

						<?php if ($extra->mandatory == 1) : ?>
                            <input type="hidden"
                                   name="<?php echo $extraInputCommonName ?>[quantity]"
                                   value="1"
                                   disabled
                            />
						<?php endif; ?>
                        <select class="<?php echo SR_UI_GRID_COL_2 ?>" id="guest_extra_<?php echo $extra->id ?>"
                                name="<?php echo $extraInputCommonName ?>[quantity]"
							<?php echo $disabledSelect ?>>
							<?php
							for ($quantitySelection = 1; $quantitySelection <= $extra->max_quantity; $quantitySelection++) :
								$checked = '';
								if (isset($reservationDetails->guest['extras'][$extra->id]['quantity'])) :
									$checked = ($reservationDetails->guest['extras'][$extra->id]['quantity'] == $quantitySelection) ? 'selected="selected"' : '';
								endif;
								?>
                                <option <?php echo $checked ?>
                                        value="<?php echo $quantitySelection ?>"><?php echo $quantitySelection ?></option>
							<?php
							endfor;
							?>
                        </select>
                        <span>
								<?php echo $extra->name ?>
                            <a href="javascript:void(0)"
                               class="toggle_extra_details"
                               data-target="extra_details_<?php echo $extra->id ?>">
									<?php echo JText::_('SR_EXTRA_MORE_DETAILS') ?>
								</a>
							</span>
                        <span class="extra_details" id="extra_details_<?php echo $extra->id ?>"
                              style="display: none">
								<?php if ($extra->charge_type == 3 || $extra->charge_type == 5 || $extra->charge_type == 6) : ?>
                                    <span>
									<?php echo JText::_('SR_EXTRA_PRICE_ADULT') . ': ' . $extra->currencyAdult->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
								</span>
                                    <span>
									<?php echo JText::_('SR_EXTRA_PRICE_CHILD') . ': ' . $extra->currencyChild->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
								</span>
								<?php else : ?>
                                    <span>
									<?php echo JText::_('SR_EXTRA_PRICE') . ': ' . $extra->currency->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
								</span>
								<?php endif; ?>
                            <span>
									<?php echo $extra->description ?>
								</span>
							</span>
                    </div>
                </div>
			<?php
			endforeach;
			endif;
			?>
        </div>
    </div>
	<?php
	// Show available payment methods
	$solidresPaymentConfigData = new SRConfig(array('scope_id' => $assetId));

	$availablePaymentPlugins = array('paylater', 'bankwire');
	foreach ($solidresPaymentPlugins as $paymentPlugin) :
		$availablePaymentPlugins[] = $paymentPlugin->element;
	endforeach;

	$availablePaymentPluginsCount = 0;
	foreach ($availablePaymentPlugins as $plugin) :
		$enabled = $solidresPaymentConfigData->get('payments/' . $plugin . '/' . $plugin . '_enabled');
		if ($enabled) :
			$availablePaymentPluginsCount++;
		endif;
	endforeach;

	if (!$isGuestMakingReservation) :
		if (!$isNew) :
			$processOnlinePaymentCheck = '';
		else :
			$processOnlinePaymentCheck = 'checked';
		endif;
	endif;
	?>
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>" <?php echo $availablePaymentPluginsCount == 0 || $isAmending ? 'style="display: none"' : '' ?>>
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <h3>
				<?php echo JText::_('SR_PAYMENT_INFO') ?>
				<?php if (!$isGuestMakingReservation) : ?>
                    <input type="checkbox" name="jform[processonlinepayment]" value="1"
                           id="processonlinepayment" data-target="payment_method_wrapper"
						<?php echo $processOnlinePaymentCheck ?>
                    />
					<?php echo JText::_('SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT') ?>
				<?php endif ?>
            </h3>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> payment_method_wrapper"
		<?php echo ($availablePaymentPluginsCount == 0 || $isAmending || (!$isGuestMakingReservation && $processOnlinePaymentCheck == '')) ? 'style="display: none"' : '' ?>>
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <ul class="unstyled list-unstyled payment_method_list">
				<?php
				// For extra payment methods provide via plugins
				foreach ($solidresPaymentPlugins as $paymentPlugin) :
					$paymentPluginId = $paymentPlugin->element;

					if ($solidresPaymentConfigData->get('payments/' . $paymentPluginId . '/' . $paymentPluginId . '_enabled')) :
						$checked = '';
						if (isset($reservationDetails->guest["payment_method_id"])) :
							if ($reservationDetails->guest["payment_method_id"] == $paymentPluginId) :
								$checked = "checked";
							endif;
						else :
							if ($solidresPaymentConfigData->get("payments/$paymentPluginId/{$paymentPluginId}_is_default") == 1):
								$checked = "checked";
							endif;
						endif;

						// Load custom payment plugin field template if it is available, otherwise just render it normally
						$fieldTemplatePath = JPATH_PLUGINS . '/solidrespayment/' . $paymentPluginId . '/form/field.php';
						if (SRPayment::hasCardForm($paymentPlugin->element)):
							$cardFormData = [
								'checked'                   => $checked,
								'element'                   => $paymentPlugin->element,
								'solidresPaymentConfigData' => $solidresPaymentConfigData,
								'reservationDetails'        => $reservationDetails,
							];
							echo '<li>' . SRLayoutHelper::render('payment.cardform', $cardFormData) . '</li>';
                        elseif (file_exists($fieldTemplatePath)) :
							@ob_start();
							include $fieldTemplatePath;
							echo @ob_get_clean();
						else :
							?>
                            <li>
                                <input id="payment_method_<?php echo $paymentPluginId ?>"
                                       type="radio"
                                       name="jform[payment_method_id]"
                                       value="<?php echo $paymentPluginId ?>"
                                       class="payment_method_radio"
									<?php echo $checked ?>
                                />
                                <span class="popover_payment_methods"
                                      data-content="<?php echo SRUtilities::translateText($solidresPaymentConfigData->get('payments/' . $paymentPluginId . '/' . $paymentPluginId . '_frontend_message')) ?>"
                                      data-title="<?php echo JText::_("SR_PAYMENT_METHOD_" . $paymentPluginId) ?>">
							<?php echo JText::_("SR_PAYMENT_METHOD_" . $paymentPluginId) ?>
                                    <i class="fa fa-question-circle"></i>
						</span>
                            </li>
						<?php
						endif;

					endif;
				endforeach;
				?>
            </ul>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isFrontEnd) : ?>
                    <p><?php echo JText::_('SR_GUEST_INFO_STEP_NOTICE') ?></p>
				<?php endif ?>
            </div>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="guestinfo"
                            data-prevstep="room">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button data-step="guestinfo" type="submit" class="btn btn-success">
                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

	<?php echo JHtml::_("form.token") ?>
    <input type="hidden" name="jform[next_step]" value="confirmation"/>
</form>
layouts/asset/tariff_list.php000060400000006351150751740420012410 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/tariff_list.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

?>

<div class="<?php echo SR_UI_GRID_CONTAINER ?>">
    <div id="tariff-box-<?php echo $roomType->id ?>-<?php echo $tariff->id ?>" data-targetcolor="FF981D"
         class="<?php echo SR_UI_GRID_COL_12 ?> tariff-box <?php echo $tariff->type == PER_ROOM_TYPE_PER_STAY ? 'is-whole' : '' ?>">
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div
                    class="<?php echo !$disableOnlineBooking ? SR_UI_GRID_COL_5 : SR_UI_GRID_COL_8; ?> tariff-title-desc">
                <strong><?php echo empty($tariff->title) ? JText::_('SR_STANDARD_TARIFF') : $tariff->title ?></strong>
                <p><?php echo $tariff->description ?></p>
            </div>
            <div class="<?php echo SR_UI_GRID_COL_4 ?> tariff-value ">
				<?php echo $minPrice ?>
            </div>
			<?php if (!$disableOnlineBooking): ?>
                <div class="<?php echo SR_UI_GRID_COL_3 ?>">
                    <div class="inner">
                        <button class="btn btn-default btn-block trigger_checkinoutform" type="button"
                                data-roomtypeid="<?php echo $roomType->id ?>"
                                data-itemid="<?php echo $Itemid ?>"
                                data-assetid="<?php echo $item->id ?>"
                                data-tariffid="<?php echo $tariff->id ?>"
                        ><?php echo JText::_('SR_SELECT_TARIFF') ?></button>
                    </div>
                </div>
			<?php endif; ?>
        </div>

        <!-- check in form -->
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?> checkinoutform"
                 id="checkinoutform-<?php echo $roomType->id ?>-<?php echo $tariff->id ?>" style="display: none">

            </div>
        </div>
        <!-- /check in form -->

        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?> room-form room-form-<?php echo $roomType->id ?>-<?php echo $roomType->id ?>"
                 id="room-form-<?php echo $roomType->id ?>-<?php echo $tariff->id ?>" style="display: none">

            </div>
        </div>
    </div> <!-- end of span12 -->
</div> <!-- end of row-fluid -->
layouts/asset/guestform.php000060400000067256150751740420012130 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/guestform.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

$selectedCustomerTitle       = !empty($reservationDetails->guest["customer_title"]) ? $reservationDetails->guest["customer_title"] : '';
$user                        = JFactory::getUser();
$isFrontEnd                  = JFactory::getApplication()->isClient('site');
$disableCustomerRegistration = true;
if (isset($reservationDetails->asset_params['disable_customer_registration'])) :
	$disableCustomerRegistration = $reservationDetails->asset_params['disable_customer_registration'];
endif;
if (!isset($reservationDetails->hub_dashboard)) :
	$reservationDetails->hub_dashboard = 0;
endif;
$isGuestMakingReservation = JFactory::getApplication()->isClient('site') && !$reservationDetails->hub_dashboard;

JLoader::register('SRPayment', SRPATH_LIBRARY . '/payment/payment.php');
?>

<form enctype="multipart/form-data"
      id="sr-reservation-form-guest"
      class="sr-reservation-form form-stacked sr-validate"
      action="<?php echo JUri::base() ?>index.php?option=com_solidres&task=reservation<?php echo $isFrontEnd ? '' : 'base' ?>.process&step=guestinfo&format=json"
      method="POST">

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-top">

        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isFrontEnd) : ?>
                    <p><?php echo JText::_('SR_GUEST_INFO_STEP_NOTICE') ?></p>
				<?php endif ?>
            </div>
        </div>

        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="guestinfo"
                            data-prevstep="room">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button data-step="guestinfo" type="submit" class="btn btn-success">
                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

	<?php if ($isGuestMakingReservation && 1 == $showRoomsRatesInfo) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                <div class="inner">
					<?php
					$subLayout = SRLayoutHelper::getInstance();
					$subLayout->addIncludePath(JPATH_COMPONENT . '/components/com_solidres/layouts');
					echo $subLayout->render('asset.rooms_and_rates', $displayData);
					?>
                </div>
            </div>
        </div>
	<?php endif; ?>

	<?php if ($isFrontEnd) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                <div class="inner">
                    <h3><?php echo JText::_('SR_GUEST_INFORMATION') ?></h3>
                </div>
            </div>
        </div>
	<?php endif ?>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
            <div class="inner">
                <fieldset>
					<?php if (isset($guestFields[0])): ?>
						<?php echo $guestFields[0]; ?>
					<?php else: ?>
                        <div class="form-group">
                            <label for="firstname">
								<?php echo JText::_("SR_CUSTOMER_TITLE") ?>
                            </label>
							<?php
							echo JHtml::_("select.genericlist", $customerTitles, "jform[customer_title]", array("class" => 'form-control input-block-level', 'required'), "value", "text", $selectedCustomerTitle, "")
							?>
                        </div>
                        <div class="form-group">
                            <label for="firstname">
								<?php echo JText::_("SR_FIRSTNAME") ?>
                            </label>
                            <input id="firstname"
                                   required
                                   name="jform[customer_firstname]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_firstname"]) ? $reservationDetails->guest["customer_firstname"] : "") ?>"/>
                        </div>
                        <div class="form-group">
                            <label for="middlename">
								<?php echo JText::_("SR_MIDDLENAME") ?>
                            </label>
                            <input id="middlename"
                                   name="jform[customer_middlename]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_middlename"]) ? $reservationDetails->guest["customer_middlename"] : "") ?>"/>

                        </div>
                        <div class="form-group">
                            <label for="lastname">
								<?php echo JText::_("SR_LASTNAME") ?>
                            </label>
                            <input id="lastname"
                                   required
                                   name="jform[customer_lastname]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_lastname"]) ? $reservationDetails->guest["customer_lastname"] : "") ?>"/>
                        </div>
                        <div class="form-group">
                            <label for="email">
								<?php echo JText::_("SR_EMAIL") ?>
                            </label>
                            <input id="email"
                                   required
                                   name="jform[customer_email]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_email"]) ? $reservationDetails->guest["customer_email"] : "") ?>"/>
                        </div>
                        <div class="form-group">
                            <label for="confirm-email">
								<?php echo JText::_('SR_CONFIRM_EMAIL') ?>
                            </label>
                            <input id="confirm-email"
                                   required
                                   name="jform[customer_email2]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest['customer_email2']) ? $reservationDetails->guest['customer_email2'] : '') ?>"/>
                        </div>
                        <div class="form-group">
                            <label for="phonenumber">
								<?php echo JText::_("SR_PHONENUMBER") ?>
                            </label>
                            <input id="phonenumber"
                                   required
                                   name="jform[customer_phonenumber]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_phonenumber"]) ? $reservationDetails->guest["customer_phonenumber"] : "") ?>"/>
                        </div>
                        <div class="form-group">
                            <label for="mobilephone">
								<?php echo JText::_("SR_MOBILEPHONE") ?>
                            </label>
                            <input id="mobilephone"
                                   name="jform[customer_mobilephone]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_mobilephone"]) ? $reservationDetails->guest["customer_mobilephone"] : "") ?>"/>
                        </div>
                        <div class="form-group">
                            <label for="company">
								<?php echo JText::_("SR_COMPANY") ?>
                            </label>
                            <input id="company"
                                   name="jform[customer_company]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_company"]) ? $reservationDetails->guest["customer_company"] : "") ?>"/>
                        </div>
                        <div class="form-group">
                            <label for="address1">
								<?php echo JText::_("SR_ADDRESS_1") ?>
                            </label>
                            <input id="address1"
                                   required
                                   name="jform[customer_address1]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_address1"]) ? $reservationDetails->guest["customer_address1"] : "") ?>"/>

                        </div>
                        <div class="form-group">
                            <label for="address2">
								<?php echo JText::_("SR_ADDRESS_2") ?>
                            </label>
                            <input id="address2"
                                   name="jform[customer_address2]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_address2"]) ? $reservationDetails->guest["customer_address2"] : "") ?>"/>
                        </div>
					<?php endif; ?>
                </fieldset>
            </div>
        </div>

        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
            <div class="inner">
                <fieldset>
					<?php if (isset($guestFields[1])): ?>
						<?php echo $guestFields[1]; ?>
					<?php else: ?>
                        <div class="form-group">
                            <label for="vat_number">
								<?php echo JText::_("SR_VAT_NUMBER") ?>
                            </label>
                            <input id="vat_number"
                                   name="jform[customer_vat_number]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_vat_number"]) ? $reservationDetails->guest["customer_vat_number"] : "") ?>"/>
                        </div>
                        <div class="form-group">
                            <label for="city"><?php echo JText::_("SR_CITY") ?></label>
                            <input id="city"
                                   required
                                   name="jform[customer_city]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_city"]) ? $reservationDetails->guest["customer_city"] : "") ?>"/>
                        </div>
                        <div class="form-group">
                            <label for="zip"><?php echo JText::_("SR_ZIP") ?></label>
                            <input id="zip"
                                   name="jform[customer_zipcode]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value="<?php echo(isset($reservationDetails->guest["customer_zipcode"]) ? $reservationDetails->guest["customer_zipcode"] : "") ?>"/>
                        </div>
                        <div class="form-group">
                            <label for="jform[country_id]"><?php echo JText::_("SR_COUNTRY") ?></label>

							<?php
							$selectedCountryId = isset($reservationDetails->guest["customer_country_id"]) ? $reservationDetails->guest["customer_country_id"] : 0;
							echo JHtml::_("select.genericlist", $countries, "jform[customer_country_id]", array("class" => "country_select form-control input-block-level", 'required' => 'required'), "value", "text", $selectedCountryId, "country");
							?>
                        </div>
                        <div class="form-group">
                            <label for="jform[customer_geo_state_id]"><?php echo JText::_("SR_STATE") ?></label>
							<?php
							$selectedGeoStateId = isset($reservationDetails->guest["customer_geo_state_id"]) ? $reservationDetails->guest["customer_geo_state_id"] : 0;

							echo JHtml::_("select.genericlist", $geoStates, "jform[customer_geo_state_id]", array("class" => "state_select form-control input-block-level"), "value", "text", $selectedGeoStateId, "state");
							?>
                        </div>
                        <div class="form-group">
                            <label for="note"><?php echo JText::_("SR_NOTE") ?></label>
                            <textarea id="note" name="jform[note]" rows="10" cols="30"
                                      placeholder="<?php echo JText::_("SR_RESERVATION_NOTE") ?>"
                                      class="form-control input-block-level"><?php echo(isset($reservationDetails->guest["note"]) ? $reservationDetails->guest["note"] : "") ?></textarea>
                        </div>
					<?php endif; ?>
					<?php if (SRPlugin::isEnabled('user') && $user->get('id') <= 0 && (isset($disableCustomerRegistration) && !$disableCustomerRegistration)) : ?>
                        <div class="form-group">
                            <label class="checkbox">
                                <input id="register_an_account_form"
                                       type="checkbox"> <?php echo JText::_('SR_REGISTER_WITH_US_TEXT') ?>
                            </label>
                            <div class="register_an_account_form" style="display: none">
                                <div class="form-group">
                                    <label for="username">
										<?php echo JText::_("SR_USERNAME") ?>
                                    </label>
                                    <input id="username"
                                           name="jform[customer_username]"
                                           type="text"
                                           class="form-control input-block-level"
                                           value=""/>
                                </div>
                                <div class="form-group">
                                    <label for="password">
										<?php echo JText::_("SR_PASSWORD") ?>
                                    </label>
                                    <input id="password"
                                           name="jform[customer_password]"
                                           type="password"
                                           class="form-control input-block-level"
                                           value=""
                                           autocomplete="off"
                                    />
                                </div>

                                <?php if (JPluginHelper::isEnabled('system', 'privacyconsent')): ?>
                                <div class="<?php echo SR_UI_FORM_ROW; ?>">
                                    <label class="checkbox inline">
                                        <input name="jform[privacyConsent]"
                                               type="checkbox"
                                               value="1"
                                               id="privacy-consent"
                                        />
		                                <?php echo JText::_('SR_PRIVACY_CONSENT_NOTE'); ?>
                                    </label>
                                </div>
                                <?php endif; ?>

                            </div>
                        </div>
					<?php endif ?>
                </fieldset>
            </div>
        </div>
    </div>

	<?php
	// Show Per Booking Extras
	if (count($extras)) :
	?>
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <div class="inner">
                <h3><?php echo JText::_('SR_ENHANCE_YOUR_STAY') ?></h3>
            </div>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <div class="inner">
				<?php
				foreach ($extras as $extra) :
					$extraInputCommonName = 'jform[extras][' . $extra->id . ']';
					$checked = '';
					$disabledCheckbox = '';
					$disabledSelect = 'disabled="disabled"';
					$alreadySelected = false;
					if (isset($reservationDetails->guest['extras'])) :
						$alreadySelected = array_key_exists($extra->id, (array) $reservationDetails->guest['extras']);
					endif;

					if ($extra->mandatory == 1 || $alreadySelected) :
						$checked = 'checked="checked"';
					endif;

					if ($extra->mandatory == 1) :
						if ($isGuestMakingReservation) :
							$disabledCheckbox = 'disabled="disabled"';
						else :
							$disabledCheckbox = '';
						endif;
						$disabledSelect = '';
					endif;

					if ($alreadySelected && $extra->mandatory == 0) :
						$disabledSelect = '';
					endif;
					?>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                        <div class="<?php echo SR_UI_GRID_COL_12 ?> extras_row_guestform">
                            <input <?php echo $checked ?> <?php echo $disabledCheckbox ?>
                                    type="checkbox"
                                    data-target="guest_extra_<?php echo $extra->id ?>"/>

							<?php if ($extra->mandatory == 1) : ?>
                                <input type="hidden"
                                       name="<?php echo $extraInputCommonName ?>[quantity]"
                                       value="1"
                                       disabled
                                />
							<?php endif; ?>
                            <select class="<?php echo SR_UI_GRID_COL_2 ?>" id="guest_extra_<?php echo $extra->id ?>"
                                    name="<?php echo $extraInputCommonName ?>[quantity]"
								<?php echo $disabledSelect ?>>
								<?php
								for ($quantitySelection = 1; $quantitySelection <= $extra->max_quantity; $quantitySelection++) :
									$checked = '';
									if (isset($reservationDetails->guest['extras'][$extra->id]['quantity'])) :
										$checked = ($reservationDetails->guest['extras'][$extra->id]['quantity'] == $quantitySelection) ? 'selected="selected"' : '';
									endif;
									?>
                                    <option <?php echo $checked ?>
                                            value="<?php echo $quantitySelection ?>"><?php echo $quantitySelection ?></option>
								<?php
								endfor;
								?>
                            </select>
                            <span>
										<?php echo $extra->name ?>
                                <a href="javascript:void(0)"
                                   class="toggle_extra_details"
                                   data-target="extra_details_<?php echo $extra->id ?>">
											<?php echo JText::_('SR_EXTRA_MORE_DETAILS') ?>
										</a>
									</span>
                            <span class="extra_details" id="extra_details_<?php echo $extra->id ?>"
                                  style="display: none">
										<?php if ($extra->charge_type == 3 || $extra->charge_type == 5 || $extra->charge_type == 6) : ?>
                                            <span>
											<?php echo JText::_('SR_EXTRA_PRICE_ADULT') . ': ' . $extra->currencyAdult->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
										</span>
                                            <span>
											<?php echo JText::_('SR_EXTRA_PRICE_CHILD') . ': ' . $extra->currencyChild->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
										</span>
										<?php else : ?>
                                            <span>
											<?php echo JText::_('SR_EXTRA_PRICE') . ': ' . $extra->currency->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
										</span>
										<?php endif; ?>
                                <span>
											<?php echo $extra->description ?>
										</span>
									</span>
                        </div>
                    </div>
				<?php
				endforeach;
				endif;
				?>
            </div>
        </div>
    </div>
	<?php
	// Show available payment methods
	$solidresPaymentConfigData = new SRConfig(array('scope_id' => $assetId));

	$availablePaymentPlugins = array('paylater', 'bankwire');
	foreach ($solidresPaymentPlugins as $paymentPlugin) :
		$availablePaymentPlugins[] = $paymentPlugin->element;
	endforeach;

	$availablePaymentPluginsCount = 0;
	foreach ($availablePaymentPlugins as $plugin) :
		$enabled = $solidresPaymentConfigData->get('payments/' . $plugin . '/' . $plugin . '_enabled');
		if ($enabled) :
			$availablePaymentPluginsCount++;
		endif;
	endforeach;

	if (!$isGuestMakingReservation) :
		if (!$isNew) :
			$processOnlinePaymentCheck = '';
		else :
			$processOnlinePaymentCheck = 'checked';
		endif;
	endif;
	?>
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>" <?php echo $availablePaymentPluginsCount == 0 || $isAmending ? 'style="display: none"' : '' ?>>
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <div class="inner">
                <h3>
					<?php echo JText::_('SR_PAYMENT_INFO') ?>
					<?php if (!$isGuestMakingReservation) : ?>
                        <input type="checkbox" name="jform[processonlinepayment]" value="1"
                               id="processonlinepayment" data-target="payment_method_wrapper"
							<?php echo $processOnlinePaymentCheck ?>
                        />
						<?php echo JText::_('SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT') ?>
					<?php endif ?>
                </h3>
            </div>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> payment_method_wrapper"
		<?php echo ($availablePaymentPluginsCount == 0 || $isAmending || (!$isGuestMakingReservation && $processOnlinePaymentCheck == '')) ? 'style="display: none"' : '' ?>>
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <div class="inner">
                <ul class="unstyled list-unstyled payment_method_list">
					<?php
					// For extra payment methods provide via plugins
					foreach ($solidresPaymentPlugins as $paymentPlugin) :
						$paymentPluginId = $paymentPlugin->element;

						if ($solidresPaymentConfigData->get('payments/' . $paymentPluginId . '/' . $paymentPluginId . '_enabled')) :
							$checked = '';
							if (isset($reservationDetails->guest["payment_method_id"])) :
								if ($reservationDetails->guest["payment_method_id"] == $paymentPluginId) :
									$checked = "checked";
								endif;
							else :
								if ($solidresPaymentConfigData->get("payments/$paymentPluginId/{$paymentPluginId}_is_default") == 1):
									$checked = "checked";
								endif;
							endif;

							// Load custom payment plugin field template if it is available, otherwise just render it normally
							$fieldTemplatePath = JPATH_PLUGINS . '/solidrespayment/' . $paymentPluginId . '/form/field.php';

							if (SRPayment::hasCardForm($paymentPlugin->element)):
                                $cardFormData = [
	                                'checked'                   => $checked,
	                                'element'                   => $paymentPlugin->element,
	                                'solidresPaymentConfigData' => $solidresPaymentConfigData,
	                                'reservationDetails'        => $reservationDetails,
                                ];
                                echo '<li>' . SRLayoutHelper::render('payment.cardform', $cardFormData) . '</li>';
					        elseif (file_exists($fieldTemplatePath)) :
						        @ob_start();
					            include $fieldTemplatePath;
						        echo @ob_get_clean();
							else :
								?>
                                <li>
                                    <input id="payment_method_<?php echo $paymentPluginId ?>"
                                           type="radio"
                                           name="jform[payment_method_id]"
                                           value="<?php echo $paymentPluginId ?>"
                                           class="payment_method_radio"
										<?php echo $checked ?>
                                    />
                                    <span class="popover_payment_methods"
                                          data-content="<?php echo SRUtilities::translateText($solidresPaymentConfigData->get('payments/' . $paymentPluginId . '/' . $paymentPluginId . '_frontend_message')) ?>"
                                          data-title="<?php echo JText::_("SR_PAYMENT_METHOD_" . $paymentPluginId) ?>">
								<?php echo JText::_("SR_PAYMENT_METHOD_" . $paymentPluginId) ?>
                                        <i class="fa fa-question-circle"></i>
							</span>
                                </li>
							<?php
							endif;

						endif;
					endforeach;
					?>
                </ul>
            </div>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isFrontEnd) : ?>
                    <p><?php echo JText::_('SR_GUEST_INFO_STEP_NOTICE') ?></p>
				<?php endif ?>
            </div>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="guestinfo"
                            data-prevstep="room">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button data-step="guestinfo" type="submit" class="btn btn-success">
                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

	<?php echo JHtml::_("form.token") ?>
    <input type="hidden" name="jform[next_step]" value="confirmation"/>
</form>
layouts/asset/confirmationform_style3.php000060400000115454150751740420014766 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/confirmationform_style3.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

if (!isset($reservationDetails->hub_dashboard)) :
	$reservationDetails->hub_dashboard = 0;
endif;

$isGuestMakingReservation = JFactory::getApplication()->isClient('site') && !$reservationDetails->hub_dashboard;

?>

<form
        id="sr-reservation-form-confirmation"
        enctype="multipart/form-data"
        action="<?php echo JRoute::_("index.php?option=com_solidres&task=" . $task) ?>"
        method="POST">

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-top">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isGuestMakingReservation) : ?>
                    <p><?php echo JText::_("SR_RESERVATION_NOTICE_CONFIRMATION") ?></p>
				<?php endif ?>
            </div>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="confirmation"
                            data-prevstep="guestinfo">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button <?php echo $isGuestMakingReservation ? 'disabled' : '' ?> data-step="confirmation"
                                                                                      type="submit"
                                                                                      class="btn btn-success">
                        <i class="fa fa-check"></i> <?php echo JText::_('SR_BUTTON_RESERVATION_FINAL_SUBMIT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <div id="reservation-confirmation-box">
				<?php if ($isGuestMakingReservation) : ?>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                            <strong>
								<?php
								echo JText::_('SR_YOUR_SEARCH_INFORMATION_CHECKIN') . ' ' .
									JDate::getInstance($reservationDetails->checkin, $timezone)
										->format($dateFormat, true) ?>
                            </strong>
                        </div>
						<?php if (isset($reservationDetails->guest['customer_lastname'])
							&&
							isset($reservationDetails->guest['customer_firstname'])
						) : ?>
                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <strong>
									<?php
									echo JText::_('SR_CONFIRMATION_FULLNAME') . $reservationDetails->guest['customer_firstname'] . ' ' .
										$reservationDetails->guest['customer_lastname']
									?>
                                </strong>
                            </div>
						<?php endif ?>
                    </div>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                            <strong>
								<?php
								echo JText::_('SR_YOUR_SEARCH_INFORMATION_CHECKOUT') . ' ' .
									JDate::getInstance($reservationDetails->checkout, $timezone)
										->format($dateFormat, true) ?>
                            </strong>
                        </div>
                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                            <strong>
								<?php echo JText::_('SR_CONFIRMATION_EMAIL') .
									$reservationDetails->guest['customer_email'] ?>
                            </strong>
                        </div>
                    </div>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                            <strong>
								<?php
								echo JText::_('SR_CONFIRMATION_PAYMENT_METHOD') . ' ' .
									JText::_('SR_PAYMENT_METHOD_' . $reservationDetails->guest['payment_method_id']); ?>
                            </strong>
                        </div>
                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                            <strong>
								<?php
								echo JText::_('SR_CONFIRMATION_MOBILE') . ' ' .
									$reservationDetails->guest['customer_mobilephone']; ?>
                            </strong>
                        </div>
                    </div>

				<?php endif ?>

                <table class="table table-bordered">
                    <tbody>
					<?php
					// Room cost
					$extraList                      = array();
					foreach ($roomTypes as $roomTypeId => $roomTypeDetails) :
						foreach ($roomTypeDetails['rooms'] as $tariffId => $roomDetails) :
							$tariffType = SRUtilities::getTariffType($tariffId);
							$isBookingWholeRoomType = false;
							$rowspan                = 0;
							if ($tariffType == PER_ROOM_TYPE_PER_STAY) :
								$isBookingWholeRoomType = true;
								$rowspan                = count($roomTypeDetails['rooms'][$tariffId]);
							endif;

							$roomIndexCount = 1;
							foreach ($roomDetails as $roomIndex => $roomCost) :
								$hasDiscount = false;
								if ($roomCost['currency']['total_discount'] > 0) :
									$hasDiscount = true;
								endif;

								$skipCost = false;
								if ($isBookingWholeRoomType && $roomIndexCount > 1) :
									$skipCost = true;
								endif;

								$roomInfo = $reservationDetails->room['room_types'][$roomTypeId][$tariffId][$roomIndex];

								// Build a per room extra list array
								if (isset($roomInfo['extras']) && is_array($roomInfo['extras'])) :
									foreach ($roomInfo['extras'] as $extraItemKey => $extraItemDetails) :
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['room_type_name'] = $roomTypeDetails['name'];
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['name']           = $extraItemDetails['name'];
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['quantity']       = $extraItemDetails['quantity'];
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency']       = clone $currency;
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency']->setValue($extraItemDetails['total_extra_cost_tax_' . ($showRoomTax ? 'excl' : 'incl')]);
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency_tax'] = clone $currency;
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency_tax']->setValue($extraItemDetails['total_extra_cost_tax_incl'] - $extraItemDetails['total_extra_cost_tax_excl']);
									endforeach;
								endif;
								?>
                                <tr>
                                    <td>
										<?php echo JText::_('SR_ROOM') . ': ' ?>
										<?php echo $roomTypeDetails["name"] ?>
                                        <a href="javascript:void(0)" class="toggle_room_confirmation"
	                                        <?php echo $roomTypeDetails['is_exclusive'] && $roomTypeDetails['skip_room_form'] ? 'style="display: none"' : '' ?>
                                           data-target="<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $roomIndex ?>">
											<?php echo JText::_('SR_CONFIRMATION_ROOM_DETAILS') ?>
                                        </a>
										<?php if ($isBookingWholeRoomType) : ?>
                                            <p><?php echo !empty($roomCost['currency']['title']) ? '(' . $roomCost['currency']['title'] . ')' : '' ?></p>
										<?php endif ?>
                                        <ul id="rc_<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $roomIndex ?>_confirmation"
                                            style="display: none">
											<?php if (!empty($roomInfo['guest_fullname'])) : ?>
                                                <li><?php echo JText::_('SR_CONFIRMATION_GUEST_NAME') . ': ' . $roomInfo['guest_fullname'] ?></li>
											<?php endif; ?>
                                            <li><?php echo JText::_('SR_CONFIRMATION_ADULT_NUMBER') . ': ' . (isset($roomInfo['adults_number']) ? $roomInfo['adults_number'] : 0) ?></li>
											<?php if (!empty($roomInfo['children_number'])) : ?>
                                                <li><?php echo JText::_('SR_CONFIRMATION_CHILD_NUMBER') . ': ' . $roomInfo['children_number'] ?></li>
											<?php endif ?>
                                        </ul>
                                    </td>

                                    <td>
										<?php
										if (0 == $bookingType) :
											echo JText::plural("SR_NIGHTS", $stayLength);
										else :
											echo JText::plural("SR_DAYS", $stayLength + 1);
										endif;
										?>
                                    </td>

									<?php if (!$isGuestMakingReservation) : ?>
                                        <td class="sr-align-right">
                                            <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                            <span class="add-on input-group-addon">
                                                <?php echo JText::_('SR_AMENDED_PRICE') ?>
                                                <?php
                                                if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
	                                                echo '(' . $currencyCode . ')';
                                                endif;
                                                ?>
                                            </span>
                                                <input type="text"
                                                       class="total_price_tax_excl_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                       value="<?php
												       if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
													       echo $roomCost['currency']['total_price_tax_excl_formatted']->getValue(true, true);
												       endif;
												       ?>"
                                                       name="jform[override_cost][room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $roomIndex ?>][total_price_tax_excl]"/>
                                            </div>
                                            <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                            <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_TAX') ?>
	                                            <?php
	                                            if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
		                                            echo '(' . $currencyCode . ')';
	                                            endif;
	                                            ?>
                                                </span>
                                                <input type="text"
                                                       class="room_price_tax_amount_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                       value="<?php
												       if (isset($roomCost['currency']['total_price_tax_incl_formatted'])) :
													       echo $roomCost['currency']['total_price_tax_incl_formatted']->getValue(true, true) - $roomCost['currency']['total_price_tax_excl_formatted']->getValue(true, true);
												       endif;
												       ?>"
                                                       name="jform[override_cost][room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $roomIndex ?>][tax_amount]"/>
                                            </div>
                                        </td>
									<?php else :
										if (!$isBookingWholeRoomType || ($isBookingWholeRoomType && $roomIndexCount == 1)) :
											?>
                                            <td class="sr-align-right" <?php echo $isBookingWholeRoomType ? 'rowspan="' . $rowspan . '" style="vertical-align: middle"' : '' ?>>
												<?php
												if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
													echo $roomCost['currency']['total_price_tax_excl_formatted']->format();
												endif;
												?>
                                            </td>
										<?php
										endif;
									endif;
									?>
                                </tr>
								<?php
								$roomIndexCount++;
							endforeach;
						endforeach;
					endforeach;

					// Total room cost
					$totalRoomCost = clone $currency;
					$totalRoomCost->setValue($cost['total_price_tax_' . ($showRoomTax ? 'excl' : 'incl')]);
					?>

                    <tr class="nobordered first">
                        <td colspan="2" class="sr-align-right">
							<?php echo JText::_("SR_TOTAL_ROOM_COST_TAX_" . ($showRoomTax ? 'EXCL' : 'INCL')) ?>
                        </td>
                        <td class="sr-align-right noleftborder">
							<?php if (!$isGuestMakingReservation) : ?>
                                <span class="add-on"><?php echo $currencyCode ?></span>
                                <span class="total_price_tax_excl grand_total_sub" val="<?php echo $totalRoomCost->getValue(true, true) ?>"><?php echo $totalRoomCost->getValue(true, true) ?></span>
							<?php else : ?>
								<?php echo $totalRoomCost->format() ?>
							<?php endif ?>
                        </td>
                    </tr>

					<?php
					// In case of pre tax discount
					if ($isDiscountPreTax && ($cost['total_discount'] > 0 || !$isGuestMakingReservation)) :
                        if ($cost['total_discount'] > 0):
	                        $totalDiscount = clone $currency;
						    $totalDiscount->setValue($cost['total_discount']);
                        endif;

                        if (isset($currentReservationData)) :
                            $totalDiscountCurrent = clone $currency;
                            $totalDiscountCurrent->setValue($currentReservationData->total_discount);
						endif;
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_("SR_TOTAL_DISCOUNT") ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                        <input type="text" class="<?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               value="<?php echo isset($totalDiscount) ? '-' . $totalDiscount->getValue(true, true) : -0 ?>"
                                               name="jform[override_cost][total_discount]"/>
                                    </div>
									<?php if (isset($currentReservationData) && $currentReservationData->total_discount > 0) : ?>
                                        <p class=""><?php echo JText::sprintf('SR_DISCOUNT_NOTICE', $totalDiscountCurrent->format()) ?></p>
									<?php endif ?>
								<?php else : ?>
									<?php echo $cost['total_discount'] > 0 ? '-' . $totalDiscount->format() : '' ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// Imposed taxes
					if ($showRoomTax) :
						$taxItem = clone $currency;
						$taxItem->setValue($cost['tax_amount']);
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_('SR_TOTAL_ROOM_TAX') ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                        <input type="text"
                                               class="tax_amount grand_total_sub <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               value="<?php echo $taxItem->getValue(true, true) ?>"
                                               name="jform[override_cost][tax_amount]"/>
                                    </div>
								<?php else : ?>
									<?php echo $taxItem->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// In case of after tax discount
					if (!$isDiscountPreTax && ($cost['total_discount'] > 0 || !$isGuestMakingReservation)) :
						$totalDiscount = null;
                        if ($cost['total_discount'] > 0) :
	                        $totalDiscount = clone $currency;
						    $totalDiscount->setValue($cost['total_discount']);
                        endif;

                        if (isset($currentReservationData)) :
                            $totalDiscountCurrent = clone $currency;
                            $totalDiscountCurrent->setValue($currentReservationData->total_discount);
						endif;
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_("SR_TOTAL_DISCOUNT") ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                        <input type="text" class="<?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               value="<?php echo isset($totalDiscount) ? '-' . $totalDiscount->getValue(true, true) : -0 ?>"
                                               name="jform[override_cost][total_discount]"/>
                                    </div>
									<?php if (isset($currentReservationData) && $currentReservationData->total_discount > 0) : ?>
                                        <p class=""><?php echo JText::sprintf('SR_DISCOUNT_NOTICE', $totalDiscountCurrent->format()) ?></p>
									<?php endif ?>
								<?php else : ?>
									<?php echo $cost['total_discount'] > 0 ? '-' . $totalDiscount->format() : ''?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// Per room extra list
					if (!empty($extraList)) :
						foreach ($extraList as $extraRoomTypeId => $extraRoomTypeTariffs) :
							foreach ($extraRoomTypeTariffs as $extraTariffId => $extraRooms) :
								foreach ($extraRooms as $extraRoomIndex => $extraRoomExtras) :
									foreach ($extraRoomExtras as $extraRoomExtraKey => $extraRoomExtraDetails) :
										foreach ($extraRoomExtraDetails as $extraRoomExtraId => $extraRoomExtraIdDetails) :
											?>
                                            <tr class="extracost_confirmation" style="display: none">
                                                <td>
                                                    <p>
														<?php echo JText::_('SR_EXTRA') . ': ' ?><?php echo $extraRoomExtraIdDetails['name'] ?>
                                                    </p>
                                                    <p>
														<?php echo JText::_('SR_ROOM') . ': ' ?><?php echo $extraRoomExtraIdDetails['room_type_name'] ?>
                                                    </p>
                                                </td>
                                                <td>
													<?php echo $extraRoomExtraIdDetails['quantity'] ?>
                                                </td>
                                                <td class="sr-align-right ">
													<?php if (!$isGuestMakingReservation) : ?>
                                                        <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                                            <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_PRICE') ?>
                                                                (<?php echo $currencyCode ?>
                                                                )</span>
                                                            <input class="extra_price_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                                   type="text"
                                                                   value="<?php echo $extraRoomExtraIdDetails['currency']->getValue(true, true) ?>"
                                                                   name="jform[override_cost][room_types][<?php echo $extraRoomTypeId ?>][<?php echo $extraTariffId ?>][<?php echo $extraRoomIndex ?>][extras][<?php echo $extraRoomExtraId ?>][price]"/>
                                                        </div>
                                                        <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                                            <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_TAX') ?>
                                                                (<?php echo $currencyCode ?>
                                                                )</span>
                                                            <input class="extra_tax_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                                   type="text"
                                                                   value="<?php echo $extraRoomExtraIdDetails['currency_tax']->getValue(true, true) ?>"
                                                                   name="jform[override_cost][room_types][<?php echo $extraRoomTypeId ?>][<?php echo $extraTariffId ?>][<?php echo $extraRoomIndex ?>][extras][<?php echo $extraRoomExtraId ?>][tax_amount]"/>
                                                        </div>
													<?php else : ?>
														<?php echo $extraRoomExtraIdDetails['currency']->format() ?>
													<?php endif ?>
                                                </td>
                                            </tr>
										<?php
										endforeach;
									endforeach;
								endforeach;
							endforeach;
						endforeach;
					endif;

					// Per booking extra list
					$perBookingExtraList = isset($reservationDetails->guest['extras']) ? $reservationDetails->guest['extras'] : array();

					foreach ($perBookingExtraList as $perBookingExtraId => $perBookingExtraDetails) :
						?>
                        <tr class="extracost_confirmation" style="display: none">
                            <td>
                                <p>
									<?php echo JText::_('SR_EXTRA') . ': ' ?><?php echo $perBookingExtraDetails['name'] ?>
                                </p>
                                <p>
									<?php echo JText::_('SR_EXTRA_PER_BOOKING') ?>
                                </p>
                            </td>
                            <td>
								<?php echo $perBookingExtraDetails['quantity'] ?>
                            </td>
                            <td class="sr-align-right ">
								<?php
								$perBookingExtraCurrency = clone $currency;
								$perBookingExtraCurrency->setValue($perBookingExtraDetails['total_extra_cost_tax_excl']);
								$perBookingExtraCurrencyTax = clone $currency;
								$perBookingExtraCurrencyTax->setValue($perBookingExtraDetails['total_extra_cost_tax_incl'] - $perBookingExtraDetails['total_extra_cost_tax_excl']);
								?>
								<?php if (!$isGuestMakingReservation) : ?>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_PRICE') ?>
                                            (<?php echo $currencyCode ?>)</span>
                                        <input class="extra_price_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               type="text" value="<?php echo $perBookingExtraCurrency->getValue(true, true) ?>"
                                               name="jform[override_cost][extras_per_booking][<?php echo $perBookingExtraId ?>][price]"/>
                                    </div>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_TAX') ?>
                                            (<?php echo $currencyCode ?>)</span>
                                        <input class="extra_tax_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               type="text" value="<?php echo $perBookingExtraCurrencyTax->getValue(true, true) ?>"
                                               name="jform[override_cost][extras_per_booking][<?php echo $perBookingExtraId ?>][tax_amount]"/>
                                    </div>
								<?php else : ?>
									<?php echo $perBookingExtraCurrency->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endforeach;

					// Extra cost
					$totalExtraCost = clone $currency;
					$totalExtraCost->setValue($showRoomTax ? $totalRoomTypeExtraCostTaxExcl : $totalRoomTypeExtraCostTaxIncl);
					$totalExtraCostTaxAmount = clone $currency;
					$totalExtraCostTaxAmount->setValue($totalRoomTypeExtraCostTaxIncl - $totalRoomTypeExtraCostTaxExcl);

					if ($totalExtraCost->getValue() > 0) :
						?>
                        <tr class="nobordered extracost_row">
                            <td colspan="2" class="sr-align-right">
                                <a href="javascript:void(0)" class="toggle_extracost_confirmation">
									<?php echo JText::_('SR_TOTAL_EXTRA_COST_TAX_' . ($showRoomTax ? 'EXCL' : 'INCL')) ?>
                                </a>
                            </td>
                            <td id="total-extra-cost" class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="total_extra_price grand_total_sub" val="<?php echo $totalExtraCost->getValue(true, true) ?>"><?php echo $totalExtraCost->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo $totalExtraCost->format() ?>
								<?php endif ?>
                            </td>
                        </tr>

						<?php if ($showRoomTax) : ?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_("SR_TOTAL_EXTRA_COST_TAX_AMOUNT") ?>
                            </td>
                            <td id="total-extra-cost" class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="total_extra_tax grand_total_sub" val="<?php echo $totalExtraCostTaxAmount->getValue(true, true) ?>"><?php echo $totalExtraCostTaxAmount->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo $totalExtraCostTaxAmount->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php endif ?>

					<?php
					endif;

					// Tourist tax cost
					if ($cost['tourist_tax_amount'] > 0) :
						$touristTaxAmount = clone $currency;
						$touristTaxAmount->setValue($cost['tourist_tax_amount']);
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_("SR_TOURIST_TAX_AMOUNT") ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="tourist_tax_amount grand_total_sub" val="<?php echo $touristTaxAmount->getValue(true, true) ?>"><?php echo $touristTaxAmount->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo $touristTaxAmount->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// Grand total cost
					if ($isDiscountPreTax) :
						$grandTotalAmount = $cost['total_price_tax_excl_discounted'] + $cost['tax_amount'] + $totalRoomTypeExtraCostTaxIncl;
					else :
						$grandTotalAmount = $cost['total_price_tax_excl'] + $cost['tax_amount'] - $cost['total_discount'] + $totalRoomTypeExtraCostTaxIncl;
					endif;

					if ($cost['tourist_tax_amount'] > 0) :
						$grandTotalAmount += $cost['tourist_tax_amount'];
					endif;

					$grandTotal = clone $currency;
					$grandTotal->setValue($grandTotalAmount);

					?>
                    <tr class="nobordered">
                        <td colspan="2" class="sr-align-right">
                            <strong><?php echo JText::_("SR_GRAND_TOTAL") ?></strong>
                        </td>
                        <td class="sr-align-right gra noleftborder">
							<?php if (!$isGuestMakingReservation) : ?>
                                <span class="add-on"><?php echo $currencyCode ?></span>
                                <span class="grand_total"><?php echo $grandTotal->getValue(true, true) ?></span>
							<?php else : ?>
                                <strong><?php echo $grandTotal->format() ?></strong>
							<?php endif ?>
                        </td>
                    </tr>

					<?php
					// Deposit amount, if enabled
					$deposit            = null;
					if (isset($reservationDetails->deposit)):
						$deposit = $reservationDetails->deposit;
					endif;

					if (isset($deposit) && isset($deposit['deposit_amount'])) :
						$depositTotalAmount = clone $currency;
						$depositTotalAmount->setValue($deposit['deposit_amount']);
						$dueTotalAmount = clone $currency;
						$dueTotalAmount->setValue($grandTotalAmount - $deposit['deposit_amount'])
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
                                <strong><?php echo JText::_("SR_DEPOSIT_AMOUNT") ?></strong>
                            </td>
                            <td class="sr-align-right gra noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                        <input type="text" class="<?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               value="<?php echo $depositTotalAmount->getValue(true, true) ?>"
                                               name="jform[override_cost][deposit_amount]"/>
                                    </div>
								<?php else : ?>
                                    <strong><?php echo $depositTotalAmount->format() ?></strong>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// Payment method surcharge cost
					if (isset($reservationDetails->guest['payment_method_id'])) :
						$paymentMethodLabel = JText::_("SR_PAYMENT_METHOD_" . $reservationDetails->guest['payment_method_id']);
					endif;
					if ($cost['payment_method_surcharge'] > 0) :
						$paymentMethodSurchargeAmount = clone $currency;
						$paymentMethodSurchargeAmount->setValue($cost['payment_method_surcharge']);
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::sprintf("SR_PAYMENT_METHOD_SURCHARGE_AMOUNT", $paymentMethodLabel) ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="payment_surcharge_amount"><?php echo $paymentMethodSurchargeAmount->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo $paymentMethodSurchargeAmount->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// Payment method discount cost
					if ($cost['payment_method_discount'] > 0) :
						$paymentMethodDiscountAmount = clone $currency;
						$paymentMethodDiscountAmount->setValue($cost['payment_method_discount']);
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::sprintf("SR_PAYMENT_METHOD_DISCOUNT_AMOUNT", $paymentMethodLabel) ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="payment_discount_amount"><?php echo $paymentMethodDiscountAmount->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo '-' . $paymentMethodDiscountAmount->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php endif; ?>

					<?php
					if ($deposit['deposit_amount']) :
						// Only show total due for guest
						if ($isGuestMakingReservation) : ?>
                            <tr class="nobordered">
                                <td colspan="2" class="sr-align-right">
                                    <strong><?php echo JText::_("SR_DUE_AMOUNT") ?></strong>
                                </td>
                                <td class="sr-align-right gra noleftborder">
                                    <strong><?php echo $dueTotalAmount->format() ?></strong>
                                </td>
                            </tr>
						<?php endif ?>
					<?php endif;?>

					<?php if (!empty($recaptcha)): ?>
                    <tr class="nobordered">
                        <td colspan="3">
							<?php echo $recaptcha; ?>
                        </td>
                    </tr>
					<?php endif; ?>

                    <?php
					// Terms and conditions
					if ($isGuestMakingReservation) :
						$bookingConditionsLink = JRoute::_(ContentHelperRoute::getArticleRoute($reservationDetails->booking_conditions));
						$privacyPolicyLink = JRoute::_(ContentHelperRoute::getArticleRoute($reservationDetails->privacy_policy));
						?>
                        <tr class="nobordered termsandconditions">
                            <td colspan="3">
                                <p>
                                    <input type="checkbox" id="termsandconditions" data-target="finalbutton"/>
									<?php echo JText::_('SR_I_AGREE_WITH') ?>
                                    <a target="_blank"
                                       href="<?php echo $bookingConditionsLink ?>"><?php echo JText::_('SR_BOOKING_CONDITIONS') ?></a> <?php echo JText::_('SR_AND') ?>
                                    <a target="_blank"
                                       href="<?php echo $privacyPolicyLink ?>"><?php echo JText::_('SR_PRIVACY_POLICY') ?></a>
                                </p>
                            </td>
                        </tr>
					<?php else : ?>
                        <tr class="nobordered sendoutgoingemails">
                            <td colspan="3">
                                <p>
                                    <input type="checkbox" name="jform[sendoutgoingemails]" id="sendoutgoingemails"
                                           checked/>
									<?php echo JText::_('SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS') ?>
                                </p>
                            </td>
                        </tr>
					<?php endif; ?>
                    </tbody>
                </table>
            </div>
            <input type="hidden" name="id" value="<?php echo $assetId ?>"/>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isGuestMakingReservation) : ?>
                    <p><?php echo JText::_("SR_RESERVATION_NOTICE_CONFIRMATION") ?></p>
				<?php endif ?>
            </div>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="confirmation"
                            data-prevstep="guestinfo">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button <?php echo $isGuestMakingReservation ? 'disabled ' : '' ?> data-step="confirmation"
                                                                                       type="submit"
                                                                                       class="btn btn-default btn-success">
                        <i class="fa fa-check"></i> <?php echo JText::_('SR_BUTTON_RESERVATION_FINAL_SUBMIT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

	<?php echo JHtml::_("form.token") ?>
</form>
layouts/asset/tariff_book_style2.php000060400000020166150751740420013671 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/tariff_book_style2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

?>

<div id="tariff-box-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>" data-targetcolor="FF981D"
     class="tariff-box <?php echo $tariffInfo['tariffType'] == PER_ROOM_TYPE_PER_STAY ? 'is-whole' : '' ?>">
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo !$disableOnlineBooking ? SR_UI_GRID_COL_9 : SR_UI_GRID_COL_12; ?>">

            <div class="tariff-value">
				<?php echo $minPrice; ?>
            </div>

            <div class="tariff-title-desc">
                <strong>
					<?php
					if (!empty($tariffInfo['tariffTitle'])) :
						echo $tariffInfo['tariffTitle'];
					else :
						if ($item->booking_type == 0) :
							echo JText::plural('SR_PRICE_IS_FOR_X_NIGHT', $stayLength);
						else :
							echo JText::plural('SR_PRICE_IS_FOR_X_DAY', $stayLength + 1);
						endif;
					endif;
					?>
                </strong>
				<?php
				if (!empty($tariffInfo['tariffDescription'])) :
					echo '<p>' . $tariffInfo['tariffDescription'] . '</p>';
				endif;
				?>
            </div>

        </div>

		<?php if (!$disableOnlineBooking): ?>
            <div class="<?php echo SR_UI_GRID_COL_3 ?>">
                <div class="tariff-button">
					<?php
					if (isset ($roomType->totalAvailableRoom)) :
						if ($roomType->totalAvailableRoom == 0) :
							echo JText::_('SR_NO_ROOM_AVAILABLE');
						else :
							if (!$isExclusive && $tariffInfo['tariffType'] != 4) :

								if ($roomType->totalAvailableRoom == 1 && $showRemainingRooms) :
									echo '<p class="last_chance">' . JText::_('SR_LAST_CHANCE_LAST_' . ($roomType->is_private ? 'ROOM' : 'BED')) . '</p>';
								endif;

								?>
                                <select
                                        name="solidres[ign<?php echo rand() ?>]"
                                        data-raid="<?php echo $item->id ?>"
                                        data-rtid="<?php echo $roomType->id ?>"
                                        data-tariffid="<?php echo $tariffKey ?>"
                                        data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
                                        data-totalroomsleft="<?php echo $roomType->totalAvailableRoom ?>"
                                        data-isprivate="<?php echo $roomType->is_private ?>"
                                        class="<?php echo SR_UI_GRID_COL_12 ?> roomtype-quantity-selection quantity_<?php echo $roomType->id ?> <?php echo $roomType->totalAvailableRoom == 1 && $showRemainingRooms ? 'last_chance' : '' ?>">
                                    <option value="0"><?php echo JText::_('SR_ROOMTYPE_QUANTITY') ?></option>
									<?php
									for ($i = 1; $i <= $roomType->totalAvailableRoom; $i++) :
										$selected = '';
										if (isset($selectedRoomTypes['room_types'][$roomType->id][$tariffKey])) :
											$selected = ($i == count($selectedRoomTypes['room_types'][$roomType->id][$tariffKey])) ? 'selected="selected"' : '';
										endif;

										echo '<option ' . $selected . ' value="' . $i . '">' . JText::plural($roomType->is_private ? 'SR_SELECT_ROOM_QUANTITY' : 'SR_SELECT_BED_QUANTITY', $i) . '</option>';
									endfor;
									?>
                                </select>
							<?php else : ?>
                                <button <?php echo (($isExclusive && $skipRoomForm) || $tariffInfo['tariffType'] == 4) ? 'data-step="room"' : '' ?>
                                        type="button"
                                        data-raid="<?php echo $item->id ?>"
                                        data-rtid="<?php echo $roomType->id ?>"
                                        data-tariffid="<?php echo $tariffKey ?>"
                                        data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
                                        data-totalroomsleft="<?php echo $roomType->totalAvailableRoom ?>"
                                        class="btn btn-default <?php echo SR_UI_GRID_COL_12 ?> <?php echo (($isExclusive && $skipRoomForm) || $tariffInfo['tariffType'] == 4) ? 'roomtype-reserve-exclusive' : 'roomtype-reserve' ?> quantity_<?php echo $roomType->id ?>">
									<?php echo JText::_('SR_RESERVE') ?>
                                </button>
							<?php endif ?>

                            <input type="hidden"
                                   name="jform[selected_tariffs][<?php echo $roomType->id ?>][]"
                                   value="<?php echo $tariffKey ?>"
                                   id="selected_tariff_<?php echo $roomType->id ?>_<?php echo $tariffKey ?>"
                                   class="selected_tariff_hidden_<?php echo $roomType->id ?>"
                                   disabled
                            />
                            <div class="processing" style="display: none"></div>

							<?php
							// Mostly for apartment booking when there is only 1 room type bookable
							// and guest option is replaced adult & child
							if (($isExclusive && $skipRoomForm) || $tariffInfo['tariffType'] == 4) :

								$loopCount = 1;
								if ($tariffInfo['tariffType'] == 4 && $roomType->number_of_room == $roomType->totalAvailableRoom) :
									$loopCount = $roomType->number_of_room;
								endif;

								for ($l = 0; $l < $loopCount; $l++) :
									?>
                                    <input type="hidden"
                                           data-raid="<?php echo $item->id ?>"
                                           data-roomtypeid="<?php echo $roomType->id ?>"
                                           data-tariffid="<?php echo $tariffKey ?>"
                                           data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
                                           data-roomindex="<?php echo $l ?>"
                                           name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $tariffKey ?>][<?php echo $l ?>][adults_number]"
                                           value="<?php echo ($item->roomsOccupancyOptionsCount == 1 && $item->roomsOccupancyOptionsGuests > 0) ? $item->roomsOccupancyOptionsGuests : 1 ?>"
                                           class="exclusive-hidden exclusive-hidden-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>"
                                           disabled
                                    />
								<?php
								endfor;
							endif;
						endif;
					endif;
					?>
                </div>
            </div>
		<?php endif; ?>
    </div>

    <!-- check in form -->
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?> checkinoutform"
             id="checkinoutform-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>" style="display: none">

        </div>
    </div>
    <!-- /check in form -->


    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?> room-form-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>"
             id="room-form-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>" style="display: none">

        </div>
    </div>

</div> <!-- end of span12 -->
layouts/asset/roomtypeform_style2.php000060400000066343150751740420014155 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/roomtypeform_style2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);
$roomFields = [];

if (SRPlugin::isEnabled('customfield'))
{
	$categories = isset($reservationDetails->asset_category_id) ? [$reservationDetails->asset_category_id] : [];
	$roomFields = SRCustomFieldHelper::findFields(['context' => 'com_solidres.room'], $categories);
}

for ($i = 0; $i < $quantity; $i++) :
	$currentRoomIndex = null;
	if (isset($reservationDetails->room['room_types'][$roomTypeId][$tariffId][$i])) :
		$currentRoomIndex = $reservationDetails->room['room_types'][$roomTypeId][$tariffId][$i];
	endif;
	$identity = $roomType->id . '_' . $tariffId . '_' . $i;

	// Html for adult selection
	$htmlAdultSelection = '';
	if (!isset($roomType->params['show_adult_option'])) :
		$roomType->params['show_adult_option'] = 1;
	endif;
	if ($roomType->params['show_adult_option'] == 1) :
		for ($j = 1; $j <= $roomType->occupancy_adult; $j++) :
			$disabled = '';
			$selected = '';
			if (isset($currentRoomIndex['adults_number'])) :
				$selected = $currentRoomIndex['adults_number'] == $j ? 'selected' : '';
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['adults'])) :
					$selected = $reservationDetails->room_opt[$i + 1]['adults'] == $j ? 'selected' : '';
				endif;
			else :
				if (!empty($tariff->p_min)) :
					if ($j == $tariff->p_min) :
						$selected = 'selected';
					endif;
				else :
					if ($j == 1) :
						$selected = 'selected';
					endif;
				endif;
			endif;

			if (!empty($tariff->p_min) && $j < $tariff->p_min) :
				$disabled = 'disabled';
			endif;

			if (!empty($tariff->p_max) && $j > $tariff->p_max) :
				$disabled = 'disabled';
			endif;
			$htmlAdultSelection .= '<option ' . $disabled . ' ' . $selected . ' value="' . $j . '">' . JText::plural('SR_SELECT_ADULT_QUANTITY', $j) . '</option>';
		endfor;
	endif;

	$htmlGuestSelection = '';
	$showGuestOption    = 0;
	if (isset($roomType->params['show_guest_option'])) :
		$showGuestOption = $roomType->params['show_guest_option'];
	endif;
	if ($showGuestOption == 1) :
		for ($j = 1; $j <= $roomType->occupancy_max; $j++) :
			$disabled = '';
			$selected = '';
			if (isset($currentRoomIndex['guests_number'])) :
				$selected = $currentRoomIndex['guests_number'] == $j ? 'selected' : '';
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['guests'])) :
					$selected = $reservationDetails->room_opt[$i + 1]['guests'] == $j ? 'selected' : '';
				endif;
			else :
				if (!empty($tariff->p_min)) :
					if ($j == $tariff->p_min) :
						$selected = 'selected';
					endif;
				else :
					if ($j == 1) :
						$selected = 'selected';
					endif;
				endif;
			endif;

			if (!empty($tariff->p_min) && $j < $tariff->p_min) :
				$disabled = 'disabled';
			endif;

			if (!empty($tariff->p_max) && $j > $tariff->p_max) :
				$disabled = 'disabled';
			endif;
			$htmlGuestSelection .= '<option ' . $disabled . ' ' . $selected . ' value="' . $j . '">'
				. JText::plural('SR_SELECT_GUEST_QUANTITY', $j)
				. '</option>';
		endfor;
	endif;

	// Html for children selection
	$htmlChildSelection = '';
	$htmlChildrenAges   = '';
	if (!isset($roomType->params['show_child_option'])) :
		$roomType->params['show_child_option'] = 1;
	endif;

	// Only show child option if it is enabled and the child quantity > 0
	if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) :
		$htmlChildSelection .= '<option value="">' . JText::_('SR_CHILD') . '</option>';

		for ($j = 1; $j <= $roomType->occupancy_child; $j++) :
			$selected2 = '';
			if (isset($currentRoomIndex['children_number'])) :
				$selected2 = $currentRoomIndex['children_number'] == $j ? 'selected' : '';
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['children'])) :
					$selected2 = $reservationDetails->room_opt[$i + 1]['children'] == $j ? 'selected' : '';
				endif;
			endif;
			$htmlChildSelection .= '
				<option ' . $selected2 . ' value="' . $j . '">' . JText::plural('SR_SELECT_CHILD_QUANTITY', $j) . '</option>
			';
		endfor;

		// Html for children ages, show if there was previous session data or from room_opt variables
		if (isset($currentRoomIndex['children_ages']) || isset($reservationDetails->room_opt[$i + 1])) :
			$childDropBoxCount = 0;
			if (isset($currentRoomIndex['children_ages'])) :
				$childDropBoxCount = count($currentRoomIndex['children_ages']);
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['children'])) :
					$childDropBoxCount = $reservationDetails->room_opt[$i + 1]['children'];
				endif;
			endif;

			for ($j = 0; $j < $childDropBoxCount; $j++) :
				$htmlChildrenAges .= '
					<li>
						' . JText::_('SR_CHILD') . ' ' . ($j + 1) . '
						<select name="jform[room_types][' . $roomTypeId . '][' . $tariffId . '][' . $i . '][children_ages][' . $j . ']"
							data-raid="' . $assetId . '"
							data-roomtypeid="' . $roomTypeId . '"
							data-tariffid="' . $tariffId . '"
							data-roomindex="' . $i . '"
							class="' . SR_UI_GRID_COL_6 . ' child_age_' . $roomTypeId . '_' . $tariffId . '_' . $i . '_' . $j . ' trigger_tariff_calculating"
							required
						>';
				$htmlChildrenAges .= '<option value=""></option>';
				for ($age = 0; $age <= $childMaxAge; $age++) :
					$selectedAge = '';
					if (isset($currentRoomIndex['children_ages']) && $age == $currentRoomIndex['children_ages'][$j]) :
						$selectedAge = 'selected';
					endif;
					$htmlChildrenAges .= '<option ' . $selectedAge . ' value="' . $age . '">' . JText::plural('SR_CHILD_AGE_SELECTION', $age) . '</option>';
				endfor;

				$htmlChildrenAges .= '
						</select>
					</li>';
			endfor;
		endif;
	endif;

	// Smoking
	$htmlSmokingOption = '';
	if (!isset($roomType->params['show_smoking_option'])) :
		$roomType->params['show_smoking_option'] = 1;
	endif;

	if ($roomType->params['show_smoking_option'] == 1) :
		$selectedNonSmoking = '';
		$selectedSmoking    = '';
		if (isset($currentRoomIndex['preferences']['smoking'])) :
			if ($currentRoomIndex['preferences']['smoking'] == 0) :
				$selectedNonSmoking = 'selected';
			else :
				$selectedSmoking = 'selected';
			endif;
		endif;
		$htmlSmokingOption = '
			<select class="form-control" name="jform[room_types][' . $roomTypeId . '][' . $tariffId . '][' . $i . '][preferences][smoking]">
				<option value="">' . JText::_('SR_SMOKING') . '</option>
				<option ' . $selectedNonSmoking . ' value="0">' . JText::_('SR_NON_SMOKING_ROOM') . '</option>
				<option ' . $selectedSmoking . ' value="1">' . JText::_('SR_SMOKING_ROOM') . '</option>
			</select>
		';
	endif;

	if (!isset($roomType->params['show_guest_name_field'])) :
		$roomType->params['show_guest_name_field'] = 1;
	endif;

	if (!isset($roomType->params['guest_name_optional'])) :
		$roomType->params['guest_name_optional'] = 0;
	endif;
	?>

    <div class="room-form">
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> room-form-item">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                <div class="<?php echo SR_UI_GRID_CONTAINER ?> room_index_form_heading">
                    <div class="inner">
                        <h4><?php echo JText::_($roomType->is_private ? 'SR_ROOM' : 'SR_BED') . ' ' . ($i + 1) ?>: <span
                                    class="tariff_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">0</span>

                            <a href="javascript:void(0)"
                               class="toggle_breakdown"
                               data-target="<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">
								<?php echo JText::_('SR_VIEW_TARIFF_BREAKDOWN') ?>
                            </a>
                        </h4>
                        <span style="display: none" class="breakdown"
                              id="breakdown_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">

						</span>
                    </div>
                </div>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                    <div class="<?php echo SR_UI_GRID_COL_5 ?>">
                        <div class="<?php echo SR_UI_GRID_CONTAINER ?> occupancy-selection">
                            <div class="inner">
								<?php if ($roomType->params['show_adult_option'] == 1) : ?>
                                    <select
                                            data-raid="<?php echo $assetId ?>"
                                            data-roomtypeid="<?php echo $roomTypeId ?>"
                                            data-tariffid="<?php echo $tariffId ?>"
                                            data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                            data-roomindex="<?php echo $i ?>"
                                            data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                            data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                            name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][adults_number]"
                                            required
                                            data-identity="<?php echo $identity ?>"
                                            class="<?php echo SR_UI_GRID_COL_6 ?> adults_number occupancy_max_constraint occupancy_max_constraint_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?> occupancy_adult_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?> trigger_tariff_calculating">
										<?php echo $htmlAdultSelection ?>
                                    </select>
								<?php
								else :
									if (!$showGuestOption) : ?>
                                        <input type="hidden"
                                               data-raid="<?php echo $assetId ?>"
                                               data-roomtypeid="<?php echo $roomTypeId ?>"
                                               data-tariffid="<?php echo $tariffId ?>"
                                               data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                               data-roomindex="<?php echo $i ?>"
                                               data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                               data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                               name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][adults_number]"
                                               class="<?php echo SR_UI_GRID_COL_6 ?> adults_number occupancy_max_constraint occupancy_max_constraint_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?> occupancy_adult_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?> trigger_tariff_calculating"
                                               value="1"
                                               data-identity="<?php echo $identity ?>"
                                        />
									<?php endif ?>
								<?php endif ?>
								<?php if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) : ?>
                                    <select
                                            data-raid="<?php echo $assetId ?>"
                                            data-roomtypeid="<?php echo $roomTypeId ?>"
                                            data-roomindex="<?php echo $i ?>"
                                            data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                            data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                            data-tariffid="<?php echo $tariffId ?>"
                                            data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                            data-identity="<?php echo $identity ?>"
                                            name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][children_number]"
                                            class="<?php echo SR_UI_GRID_COL_6 ?> children_number occupancy_max_constraint occupancy_max_constraint_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?> reservation-form-child-quantity trigger_tariff_calculating occupancy_child_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">
										<?php echo $htmlChildSelection ?>
                                    </select>
								<?php endif ?>
								<?php if ($showGuestOption) : ?>
                                    <select
                                            data-raid="<?php echo $assetId ?>"
                                            data-roomtypeid="<?php echo $roomTypeId ?>"
                                            data-tariffid="<?php echo $tariffId ?>"
                                            data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                            data-roomindex="<?php echo $i ?>"
                                            data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                            data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                            name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][guests_number]"
                                            required
                                            data-identity="<?php echo $identity ?>"
                                            class="<?php echo SR_UI_GRID_COL_6 ?> guests_number trigger_tariff_calculating">
										<?php echo $htmlGuestSelection ?>
                                    </select>
								<?php endif; ?>
                                <div class="alert alert-warning"
                                     id="error_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?>"
                                     style="display: none">
									<?php echo JText::sprintf('SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED', $tariff->p_min, $tariff->p_max) ?>
                                </div>
                                <div
                                        class="child-age-details <?php echo(empty($htmlChildrenAges) ? 'nodisplay' : '') ?>">
                                    <p><?php echo JText::_('SR_AGE_OF_CHILD_AT_CHECKOUT') ?></p>
                                    <ul class="unstyled list-unstyled"><?php echo $htmlChildrenAges ?></ul>
                                </div>
                            </div>
                        </div>
                    </div>

                    <div class="<?php echo SR_UI_GRID_COL_7 ?>">
                        <div class="inner">
							<?php if ($roomType->params['show_guest_name_field'] == 1) : ?>
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                        <input name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][guest_fullname]"
											<?php echo $roomType->params['guest_name_optional'] == 0 ? 'required' : '' ?>
                                               type="text"
                                               class="<?php echo 'bs3' == SR_UI ? 'form-control' : '' ?> <?php echo SR_UI_GRID_COL_12 ?>"
                                               value="<?php echo(isset($currentRoomIndex['guest_fullname']) ? $currentRoomIndex['guest_fullname'] : '') ?>"
                                               placeholder="<?php echo JText::_('SR_GUEST_NAME') ?>"/>
                                    </div>
                                </div>
							<?php endif ?>

							<?php if (!empty($htmlSmokingOption)) : ?>
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
										<?php echo $htmlSmokingOption ?>
                                    </div>
                                </div>
							<?php endif ?>

                            <!-- Room Form -->
	                        <?php

	                        if (!empty($roomFields))
	                        {
		                        foreach ($roomFields as $roomField)
		                        {
			                        $field = clone $roomField;
			                        $field->field_name = 'roomFields][' . $tariffId . '][' . $field->id . '][' . $i;
			                        $field->inputId    = 'roomFields-' . $tariffId . '-' . $field->id . '-' . $i;
			                        $field->id         = $field->inputId;

			                        if (isset($reservationDetails->room['roomFields'][$tariffId][$roomField->id][$i]))
			                        {
				                        $field->value = $reservationDetails->room['roomFields'][$tariffId][$roomField->id][$i];
			                        }

			                        echo SRCustomFieldHelper::render($field);
			                        unset($field);
		                        }
	                        }

	                        ?>

							<?php
                            if (is_array($extras)) :
                                foreach ($extras as $extra) :

                                    if (8 == $extra->charge_type && !$extra->allow_early_arrival) :
                                        continue;
                                    endif;

                                    $extraInputCommonName = 'jform[room_types][' . $roomTypeId . '][' . $tariffId . '][' . $i . '][extras][' . $extra->id . ']';
                                    $checked              = '';
                                    $disabledCheckbox     = '';
                                    $disabledSelect       = 'disabled="disabled"';
                                    $alreadySelected      = false;
                                    if (isset($currentRoomIndex['extras'])) :
                                        $alreadySelected = array_key_exists($extra->id, (array) $currentRoomIndex['extras']);
                                    endif;

                                    if ($extra->mandatory == 1 || $alreadySelected) :
                                        $checked = 'checked="checked"';
                                    endif;

                                    if ($extra->mandatory == 1) :
                                        $disabledCheckbox = 'disabled="disabled"';
                                        $disabledSelect   = 'disabled="disabled"';
                                    endif;

                                    if ($alreadySelected && $extra->mandatory == 0) :
                                        $disabledSelect = '';
                                    endif;
                                    ?>
                                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                        <div class="<?php echo SR_UI_GRID_COL_12 ?> extras_row_roomtypeform"
                                             id="extras_row_roomtypeform_<?php echo $identity ?>">

                                            <input <?php echo $checked ?> <?php echo $disabledCheckbox ?> type="checkbox"
                                                                                                          data-target="extra_<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>"
                                                                                                          data-extraid="<?php echo $extra->id ?>"
                                            />
                                            <?php if ($extra->mandatory == 1) : ?>
                                                <input type="hidden" name="<?php echo $extraInputCommonName ?>[quantity]"
                                                       value="1"/>
                                            <?php endif ?>

                                            <select class="<?php echo SR_UI_GRID_COL_2 ?> extra_quantity trigger_tariff_calculating"
                                                    id="extra_<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>"
                                                    data-raid="<?php echo $assetId ?>"
                                                    data-roomtypeid="<?php echo $roomTypeId ?>"
                                                    data-tariffid="<?php echo $tariffId ?>"
                                                    data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                                    data-roomindex="<?php echo $i ?>"
                                                    data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                                    data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                                    data-identity="<?php echo $identity ?>"
                                                    name="<?php echo $extraInputCommonName ?>[quantity]"
                                                <?php echo $disabledSelect ?>>
                                                <?php
                                                for ($quantitySelection = 1; $quantitySelection <= $extra->max_quantity; $quantitySelection++) :
                                                    $checked = '';
                                                    if (isset($currentRoomIndex['extras'][$extra->id]['quantity'])) :
                                                        $checked = ($currentRoomIndex['extras'][$extra->id]['quantity'] == $quantitySelection) ? 'selected' : '';
                                                    endif;
                                                    ?>
                                                    <option <?php echo $checked ?>
                                                            value="<?php echo $quantitySelection ?>"><?php echo $quantitySelection ?></option>
                                                <?php
                                                endfor;
                                                ?>
                                            </select>
                                            <span>
                                                <?php echo $extra->name ?>
                                                <a href="javascript:void(0)"
                                                   class="toggle_extra_details"
                                                   data-target="extra_details_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>">
                                                    <?php echo JText::_('SR_EXTRA_MORE_DETAILS') ?>
                                                </a>
                                            </span>
                                            <span class="extra_details"
                                                  id="extra_details_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>"
                                                  style="display: none">
                                                <?php if ($extra->charge_type == 3 || $extra->charge_type == 5 || $extra->charge_type == 6) : ?>
                                                    <span>
                                                    <?php echo JText::_('SR_EXTRA_PRICE_ADULT') . ': ' . $extra->currencyAdult->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                                </span>
                                                    <span>
                                                    <?php echo JText::_('SR_EXTRA_PRICE_CHILD') . ': ' . $extra->currencyChild->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                                </span>
                                                <?php elseif ($extra->charge_type == 7 || $extra->charge_type == 8) : ?>
                                                    <span>
                                                    <?php echo JText::sprintf('SR_EXTRA_PRICE_DAILY_RATE', $extra->name, ($extra->price * 100)) . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                                </span>
                                                <?php else : ?>
                                                    <span>
                                                    <?php echo JText::_('SR_EXTRA_PRICE') . ': ' . $extra->currency->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                                </span>
                                                <?php endif; ?>

                                                <span>
                                                    <?php echo $extra->description ?>
                                                </span>
                                            </span>
                                        </div>
                                    </div>
							<?php
							    endforeach;
							endif;
							?>

                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                    <button data-step="room" type="submit"
                                            class="btn <?php echo SR_UI_GRID_COL_12 ?> btn-success btn-block">
                                        <i class="fa fa-arrow-right"></i>
										<?php echo JText::_('SR_NEXT') ?>
                                    </button>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
<?php
endfor;
layouts/asset/checkinoutform.php000060400000046562150751740420013132 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/checkinoutform.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

$solidresRoomType    = SRFactory::get('solidres.roomtype.roomtype');
$solidresReservation = SRFactory::get('solidres.reservation.reservation');

$isStandardTariff = $tariff->valid_from == '00-00-0000' && $tariff->valid_to == '00-00-0000';

$showDateInfo = !empty($checkIn) && !empty($checkOut);

// Since v2.6.0, the maximum months in date picker is 2
$datePickerMonthNum = $datePickerMonthNum > 2 ? 2 : $datePickerMonthNum;

// An integer array of all enabled checkin days in a week
$enabledCheckinDays = $tariff->limit_checkin;

// If valid from is in the past, switch valid from to now
// (need to take min days book in advance into consideration)
$now = strtotime("now");
if ($now > strtotime($tariff->valid_from)) :
	$tariff->valid_from = date('d-m-Y', $now);
endif;

$unavailableDates = array();

$tariffStartDate    = (new DateTime($tariff->valid_from))->modify('first day of this month');
$tariffEndDate      = (new DateTime($tariff->valid_to))->modify('first day of next month');
$tariffDateInterval = DateInterval::createFromDateString('1 month');
$tariffPeriod       = new DatePeriod($tariffStartDate, $tariffDateInterval, $tariffEndDate);

foreach ($tariffPeriod as $period) :
	$unavailableDatesPeriod = $solidresRoomType->getUnavailableDates(
		$roomTypeId,
		$period->format('Y'),
		$period->format('m')
	);

	$unavailableDates = array_merge($unavailableDates, $unavailableDatesPeriod);
endforeach;

$checkInDates = array();
foreach ($unavailableDates as $unavailableDate) :
	if ($solidresReservation->hasCheckIn($roomTypeId, $unavailableDate)) :
		$checkInDates[] = $unavailableDate;
	endif;
endforeach;

if (!$isStandardTariff) :
	$dayDiff = SRUtilities::calculateDateDiff(JDate::getInstance('now', $timezone)->format('d-m-Y'), $tariff->valid_from);
	if ($dayDiff < $minDaysBookInAdvance) :
		$dateCheckIn = JDate::getInstance($tariff->valid_from, $timezone)->add(new DateInterval('P' . ($minDaysBookInAdvance - $dayDiff) . 'D'));
	else :
		$dateCheckIn = JDate::getInstance($tariff->valid_from, $timezone);
	endif;
	$dateCheckOut = JDate::getInstance($tariff->valid_from, $timezone);
else :
	$dateCheckIn  = JDate::getInstance('now', $timezone)->add(new DateInterval('P' . ($minDaysBookInAdvance) . 'D'));
	$dateCheckOut = JDate::getInstance('now', $timezone);
endif;

// Try to find the minimum default check in date
$defaultMinCheckInDate = $dateCheckIn;
if (!empty($enabledCheckinDays)) :
	$tempDayInfo = getdate($defaultMinCheckInDate->format('U'));
	while (!in_array($tempDayInfo['wday'], $enabledCheckinDays)) :
		$defaultMinCheckInDate->add(new DateInterval('P1D'));
		$tempDayInfo = getdate($defaultMinCheckInDate->format('U'));
	endwhile;
endif;

// Try to find the minimum default check out date
// Switch to the new default min check in date, for Package
// $defaultMinCheckInDate already contains $minDaysBookInAdvance
$defaultMinCheckOutDate = clone $defaultMinCheckInDate;
if (!is_null($tariff->d_min)) :
	$defaultMinCheckOutDate->add(new DateInterval('P' . ($bookingType == 0 ? $tariff->d_min : ($tariff->d_min > 0 ? $tariff->d_min - 1 : $tariff->d_min)) . 'D'));
else : // For standard tariff
	$defaultMinCheckOutDate->add(new DateInterval('P1D'));
endif;
$defaultMaxCheckOutDateString = '';
if (!is_null($tariff->d_max)) :
	$defaultMaxCheckOutDate = clone $defaultMinCheckInDate;
	$defaultMaxCheckOutDate->add(new DateInterval('P' . ($bookingType == 0 ? $tariff->d_max : $tariff->d_max - 1) . 'D'));
	$defaultMaxCheckOutDateString = $defaultMaxCheckOutDate->format('Y-m-d', true);
endif;

$defaultMinCheckOutDateString = $defaultMinCheckOutDate->format('Y-m-d', true);

JHtml::_('script', SRURI_MEDIA . '/assets/js/datePicker/localization/jquery.ui.datepicker-' . JFactory::getLanguage()->getTag() . '.js', false, false);

$displayData['is_standard_tariff'] = $isStandardTariff;

echo SRLayoutHelper::getInstance()->render(
	'asset.checkinoutform' . ((defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? '_' . SR_LAYOUT_STYLE : '_style1'),
	$displayData
);

/*if ($tariff->type <= 1) :
    echo SRLayoutHelper::getInstance()->render(
        'asset.checkinoutform' . ((defined('SR_LAYOUT_STYLE') && SR_LAYOUT_STYLE != '') ? '_' . SR_LAYOUT_STYLE : '_style1'),
        $displayData
    );
else :
    echo SRLayoutHelper::getInstance()->render(
        'asset.checkinoutform_date_blocks_2',
        array_merge($displayData, array(
            'defaultMinCheckInDate' => $defaultMinCheckInDate,
            'defaultMinCheckOutDate' => $defaultMinCheckOutDate
        ))
    );
endif;*/

?>

<script>
    Solidres.jQuery(function ($) {
        function changeCheckButtonState() {
            if ($("#sr-reservation-form-room input[name='checkin']").val()
                &&
                $("#sr-reservation-form-room input[name='checkout']").val()) {
                $("#sr-reservation-form-room .searchbtn").prop("disabled", false);
            } else {
                $("#sr-reservation-form-room .searchbtn").prop("disabled", true);
            }
        }

		<?php
		if (!$isStandardTariff) :
			$validFrom                    = array_reverse(explode('-', $tariff->valid_from));
			$validFrom[1]                 -= 1;
			$validTo                      = array_reverse(explode('-', $tariff->valid_to));
			$validTo[1]                   -= 1;
			$datePickerMinDateCheckout    = explode('-', $defaultMinCheckOutDateString);
			$datePickerMinDateCheckout[1] -= 1; // In JS, the month index starts from 0, not 1.
			if (!is_null($tariff->d_max)) :
				$datePickerMaxDateCheckout    = explode('-', $defaultMaxCheckOutDateString);
				$datePickerMaxDateCheckout[1] -= 1; // In JS, the month index starts from 0, not 1.
			endif;

			echo '        
        var minLengthOfStay = ' . (!is_null($tariff->d_min) ? ($bookingType == 0 ? $tariff->d_min : $tariff->d_min - 1) : 1) . ';
        var maxLengthOfStay = ' . (!is_null($tariff->d_max) ? ($bookingType == 0 ? $tariff->d_max : $tariff->d_max - 1) : -1) . ';
        var intervalLengthOfStay = ' . ($tariff->d_interval) . ';
        var bookingType = ' . $bookingType . ';
        if (maxLengthOfStay > 0) {
            var periodMinMax = maxLengthOfStay - minLengthOfStay;
        }					
        
        if (intervalLengthOfStay > 0 && minLengthOfStay > 0 && maxLengthOfStay > 0) {
            if (bookingType == 0) {
                var threshold = Math.floor(maxLengthOfStay / intervalLengthOfStay);
            } else {
                var threshold = Math.floor((maxLengthOfStay + 1) / intervalLengthOfStay);
            }						
            
            var steps = [];
            for (i = 0; i <= threshold; i++) {
                steps.push(i * intervalLengthOfStay);
            }				
        }
        
        var enabledCheckinDays = ' . (!empty($enabledCheckinDays) ? json_encode($enabledCheckinDays, JSON_NUMERIC_CHECK) : '[]') . ';
        var unavailableDates = ' . (!empty($unavailableDates) ? json_encode($unavailableDates) : '[]') . ';
        var checkInDates = ' . (!empty($checkInDates) ? json_encode($checkInDates) : '[]') . ';

        var isValidCheckInDate = function(day) {
            if (enabledCheckinDays.length == 0) {
                return false;
            }

            if ($.inArray(day, enabledCheckinDays) > -1) {
                return true;
            } else {
                return false;
            }
        };
        
        var getUnavailableDates = function(year, month, id) {
            $.ajax({
                url : Solidres.options.get("BaseURI") + "index.php?option=com_solidres&format=json&task=reservation.getUnavailableDates&year=" + year + "&month=" + month + "&id=" + id + "&' . JSession::getFormToken() . '=1",
                success : function(data) {
                    unavailableDates = data[0];
                    checkInDates = data[1];
                    checkin_roomtype.datepicker("refresh");
                    checkout_roomtype.datepicker("refresh");
                }
            });
        }
        
        var checkInMinDate = new Date(' . implode(', ', $validFrom) . ');
        if ( ' . $dayDiff . ' < ' . $minDaysBookInAdvance . ' ) {
            checkInMinDate.setDate(checkInMinDate.getDate() + ' . ($minDaysBookInAdvance - $dayDiff) . ');
        } else {
            checkInMinDate.setDate(checkInMinDate.getDate());
        }
        var checkInMaxDate = new Date(' . implode(', ', $validTo) . ');
        checkInMaxDate.setDate(checkInMaxDate.getDate() - minLengthOfStay);

        var checkout_roomtype = $(".checkout_datepicker_inline").datepicker({
            minDate : new Date(' . implode(', ', $datePickerMinDateCheckout) . '),
            ' . ((!is_null($tariff->d_max)) ? 'maxDate : new Date(' . implode(', ', $datePickerMaxDateCheckout) . '),' : '') . '
            numberOfMonths : ' . $datePickerMonthNum . ',
            showButtonPanel : true,
            dateFormat : "' . $jsDateFormat . '",
            firstDay: ' . $weekStartDay . ',
            onSelect: function() {
                $("#sr-reservation-form-room input[name=\'checkout\']").val($.datepicker.formatDate("yy-mm-dd", $(this).datepicker("getDate")));
                $(".checkout_roomtype").html($.datepicker.formatDate("' . $jsDateFormat . '", $(this).datepicker("getDate")) + "<i class=\"fa fa-calendar\"></i>");
                $(".checkout_datepicker_inline").slideToggle();
                $(".checkin_roomtype").removeClass("disabledCalendar");
                changeCheckButtonState();
            },
            beforeShowDay: function(date) {
                var currentSelectedDate = $(".checkin_datepicker_inline").datepicker("getDate");
                var testDate3 = new Date(' . implode(', ', $validTo) . ');
                var dateFormatted = $.datepicker.formatDate("yy-mm-dd", date);
                if (date > testDate3 
                    || ($.inArray(dateFormatted, unavailableDates) > -1 
                        && $.inArray(dateFormatted, checkInDates) == -1)
                        && dateFormatted != unavailableDates[0]
                    ) {
                    return [false, "notbookable2"];
                }
                
                if (intervalLengthOfStay > 0 && minLengthOfStay > 0 && maxLengthOfStay > 0) {
                    var diffInDays = Math.round((date - currentSelectedDate)/(24*60*60*1000));
                    if (bookingType == 1) {
                        diffInDays += 1;
                    }
                    if (diffInDays >= 0 && $.inArray(diffInDays,steps) > -1) {
                        return [true, "bookable"];
                    } else {
                        return [false, "notbookable"];
                    }
                } else {
                    return [true, "bookable"];
                }							
            }
        });

        var checkin_roomtype = $(".checkin_datepicker_inline").datepicker({
            minDate : checkInMinDate,
            maxDate : checkInMaxDate,
            //' . ($maxDaysBookInAdvance > 0 ? 'maxDate: "+' . ($maxDaysBookInAdvance) . '",' : '') . '
            numberOfMonths : ' . $datePickerMonthNum . ',
            showButtonPanel : true,
            dateFormat : "' . $jsDateFormat . '",
            onSelect : function() {
                var currentSelectedDate = $(this).datepicker("getDate");
                var checkoutMinDate = $(this).datepicker("getDate", "+1d");
                var checkoutMaxDate = $(this).datepicker("getDate", "+1d");
                
                // Set the min selectable checkout date if applicable
                canProcess = true;
                for (i = 1; i <= minLengthOfStay; i ++) {
                    checkoutMinDate.setDate(checkoutMinDate.getDate() + 1);
                    checkoutMinDateFormatted = $.datepicker.formatDate("yy-mm-dd", checkoutMinDate);
                    
                    tmpUnavailableDates = [];
                    for (t = 0, tcount = unavailableDates.length; t < tcount; t++) {
                        tmp1 = new Date(unavailableDates[t]);
                        if (checkoutMinDate <= tmp1) {
                            tmpUnavailableDates = unavailableDates.slice(t);
                            break;
                        }
                    }
                    
                    unavailableDates = tmpUnavailableDates;
                    checkout_roomtype.datepicker("refresh");
                    
                    if ($.inArray(checkoutMinDateFormatted, tmpUnavailableDates) > -1
                        &&
                        checkoutMinDateFormatted != tmpUnavailableDates[0]
                        &&
                        $.inArray(checkoutMinDateFormatted, checkInDates) == -1) {
                        canProcess = false; // No selectable checkout date
                        break;
                    }						
                }
                
                $("#sr-reservation-form-room input[name=\'checkin\']").val($.datepicker.formatDate("yy-mm-dd", currentSelectedDate));
                $(".checkin_roomtype").html($.datepicker.formatDate("' . $jsDateFormat . '", currentSelectedDate) + "<i class=\"fa fa-calendar\"></i>");
                $(".checkin_datepicker_inline").slideToggle({
                    complete: function() {
                        if (!canProcess) {
                            $("#sr-reservation-form-room input[name=\'checkout\']").val("");
                            $(".checkout_roomtype").text($(".checkout_roomtype").data("placeholder"));
                            alert("' . JText::_('SR_CHOOSE_ANOTHER_CHECKIN') . '");
                            $(".checkout_roomtype").addClass("disabledCalendar");
                        }
                    }
                });
                
                if (canProcess) {
                    checkout_roomtype.datepicker( "option", "minDate", checkoutMinDate );
                    checkout_roomtype.datepicker( "setDate", checkoutMinDate);
                    
                    // Set the max selectable checkout date if applicable
                    if (maxLengthOfStay > 0) {
                        for (i = 1; i <= maxLengthOfStay; i ++) {
                            checkoutMaxDate.setDate(checkoutMaxDate.getDate() + 1);	
                            if ($.inArray($.datepicker.formatDate("yy-mm-dd", checkoutMaxDate), unavailableDates) > -1
                                &&
                                $.inArray($.datepicker.formatDate("yy-mm-dd", checkoutMaxDate), checkInDates) == -1) {
                                break;
                            }
                        }
                        var tariffValidTo = new Date(' . implode(', ', $validTo) . ');

                        if (checkoutMaxDate > tariffValidTo) {
                            checkoutMaxDate = tariffValidTo;
                        }
                                                            
                        checkout_roomtype.datepicker( "option", "maxDate", new Date(checkoutMaxDate) );
                    }
                                                    
                    $("#sr-reservation-form-room input[name=\'checkout\']").val($.datepicker.formatDate("yy-mm-dd", checkoutMinDate));
                    $(".checkout_roomtype").html($.datepicker.formatDate("' . $jsDateFormat . '", checkoutMinDate) + "<i class=\"fa fa-calendar\"></i>");
                    $(".checkout_roomtype").removeClass("disabledCalendar");
                }
                
                changeCheckButtonState();
            },
            firstDay: ' . $weekStartDay . ',
            beforeShowDay: function(date) {
                var day = date.getDay();
                var dateFormatted = $.datepicker.formatDate("yy-mm-dd", date);
                
                if (isValidCheckInDate(day) && $.inArray(dateFormatted, unavailableDates) == -1 ) {
                    return [true, "bookable"];
                } else {
                    return [false, "notbookable"];
                }
            }
        });
        ';

		else : // For standard tariff
			echo '
        var minLengthOfStay = ' . $minLengthOfStay . ';
        var checkout_roomtype = $(".checkout_datepicker_inline").datepicker({
            minDate : "+' . ($minDaysBookInAdvance + $minLengthOfStay) . '",
            numberOfMonths : ' . $datePickerMonthNum . ',
            showButtonPanel : true,
            dateFormat : "' . $jsDateFormat . '",
            firstDay: ' . $weekStartDay . ',
            onSelect: function() {
                $("#sr-reservation-form-room input[name=\'checkout\']").val($.datepicker.formatDate("yy-mm-dd", $(this).datepicker("getDate")));
                $(".checkout_roomtype").html($.datepicker.formatDate("' . $jsDateFormat . '", $(this).datepicker("getDate")) + "<i class=\"fa fa-calendar\"></i>");
                $(".checkout_datepicker_inline").slideToggle();
                $(".checkin_roomtype").removeClass("disabledCalendar");
                changeCheckButtonState();
            }
        });
        var checkin_roomtype = $(".checkin_datepicker_inline").datepicker({
            minDate : "+' . ($minDaysBookInAdvance) . 'd",
            ' . ($maxDaysBookInAdvance > 0 ? 'maxDate: "+' . ($maxDaysBookInAdvance) . '",' : '') . '
            numberOfMonths : ' . $datePickerMonthNum . ',
            showButtonPanel : true,
            dateFormat : "' . $jsDateFormat . '",
            onSelect : function() {
                var currentSelectedDate = $(this).datepicker("getDate");
                var checkoutMinDate = $(this).datepicker("getDate", "+1d");
                checkoutMinDate.setDate(checkoutMinDate.getDate() + minLengthOfStay);
                checkout_roomtype.datepicker( "option", "minDate", checkoutMinDate );
                checkout_roomtype.datepicker( "setDate", checkoutMinDate);

                $("#sr-reservation-form-room input[name=\'checkin\']").val($.datepicker.formatDate("yy-mm-dd", currentSelectedDate));
                $("#sr-reservation-form-room input[name=\'checkout\']").val($.datepicker.formatDate("yy-mm-dd", checkoutMinDate));

                $(".checkin_roomtype").html($.datepicker.formatDate("' . $jsDateFormat . '", currentSelectedDate) + "<i class=\"fa fa-calendar\"></i>");
                $(".checkout_roomtype").html($.datepicker.formatDate("' . $jsDateFormat . '", checkoutMinDate) + "<i class=\"fa fa-calendar\"></i>");
                $(".checkin_datepicker_inline").slideToggle();
                $(".checkout_roomtype").removeClass("disabledCalendar");
                changeCheckButtonState();
            },
            firstDay: ' . $weekStartDay . '
        });
        ';
		endif;
		?>
        $(".ui-datepicker").addClass("notranslate");
    });
</script>layouts/asset/confirmationform_style2.php000060400000115515150751740420014763 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/confirmationform_style2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

if (!isset($reservationDetails->hub_dashboard)) :
	$reservationDetails->hub_dashboard = 0;
endif;

$isGuestMakingReservation = JFactory::getApplication()->isClient('site') && !$reservationDetails->hub_dashboard;

?>

<form
        id="sr-reservation-form-confirmation"
        enctype="multipart/form-data"
        action="<?php echo JRoute::_("index.php?option=com_solidres&task=" . $task) ?>"
        method="POST">

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-top">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isGuestMakingReservation) : ?>
                    <p><?php echo JText::_("SR_RESERVATION_NOTICE_CONFIRMATION") ?></p>
				<?php endif ?>
            </div>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="confirmation"
                            data-prevstep="guestinfo">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button <?php echo $isGuestMakingReservation ? 'disabled' : '' ?> data-step="confirmation"
                                                                                      type="submit"
                                                                                      class="btn btn-success">
                        <i class="fa fa-check"></i> <?php echo JText::_('SR_BUTTON_RESERVATION_FINAL_SUBMIT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <div id="reservation-confirmation-box">
				<?php if ($isGuestMakingReservation) : ?>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                            <strong>
								<?php
								echo JText::_('SR_YOUR_SEARCH_INFORMATION_CHECKIN') . ' ' .
									JDate::getInstance($reservationDetails->checkin, $timezone)
										->format($dateFormat, true) ?>
                            </strong>
                        </div>
						<?php if (isset($reservationDetails->guest['customer_lastname'])
							&&
							isset($reservationDetails->guest['customer_firstname'])
						) : ?>
                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <strong>
									<?php
									echo JText::_('SR_CONFIRMATION_FULLNAME') . $reservationDetails->guest['customer_firstname'] . ' ' .
										$reservationDetails->guest['customer_lastname']
									?>
                                </strong>
                            </div>
						<?php endif ?>
                    </div>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                            <strong>
								<?php
								echo JText::_('SR_YOUR_SEARCH_INFORMATION_CHECKOUT') . ' ' .
									JDate::getInstance($reservationDetails->checkout, $timezone)
										->format($dateFormat, true) ?>
                            </strong>
                        </div>
                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                            <strong>
								<?php echo JText::_('SR_CONFIRMATION_EMAIL') .
									$reservationDetails->guest['customer_email'] ?>
                            </strong>
                        </div>
                    </div>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                            <strong>
								<?php
								echo JText::_('SR_CONFIRMATION_PAYMENT_METHOD') . ' ' .
									JText::_('SR_PAYMENT_METHOD_' . $reservationDetails->guest['payment_method_id']); ?>
                            </strong>
                        </div>
                        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                            <strong>
								<?php
								echo JText::_('SR_CONFIRMATION_MOBILE') . ' ' .
									$reservationDetails->guest['customer_mobilephone']; ?>
                            </strong>
                        </div>
                    </div>

				<?php endif ?>

                <table class="table table-bordered">
                    <tbody>
					<?php
					// Room cost
					$extraList                      = array();
					foreach ($roomTypes as $roomTypeId => $roomTypeDetails) :
						foreach ($roomTypeDetails['rooms'] as $tariffId => $roomDetails) :
							$tariffType = SRUtilities::getTariffType($tariffId);
							$isBookingWholeRoomType = false;
							$rowspan                = 0;
							if ($tariffType == PER_ROOM_TYPE_PER_STAY) :
								$isBookingWholeRoomType = true;
								$rowspan                = count($roomTypeDetails['rooms'][$tariffId]);
							endif;

							$roomIndexCount = 1;
							foreach ($roomDetails as $roomIndex => $roomCost) :
								$hasDiscount = false;
								if ($roomCost['currency']['total_discount'] > 0) :
									$hasDiscount = true;
								endif;

								$skipCost = false;
								if ($isBookingWholeRoomType && $roomIndexCount > 1) :
									$skipCost = true;
								endif;

								$roomInfo = $reservationDetails->room['room_types'][$roomTypeId][$tariffId][$roomIndex];

								// Build a per room extra list array
								if (isset($roomInfo['extras']) && is_array($roomInfo['extras'])) :
									foreach ($roomInfo['extras'] as $extraItemKey => $extraItemDetails) :
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['room_type_name'] = $roomTypeDetails['name'];
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['name']           = $extraItemDetails['name'];
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['quantity']       = $extraItemDetails['quantity'];
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency']       = clone $currency;
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency']->setValue($extraItemDetails['total_extra_cost_tax_' . ($showRoomTax ? 'excl' : 'incl')]);
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency_tax'] = clone $currency;
										$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency_tax']->setValue($extraItemDetails['total_extra_cost_tax_incl'] - $extraItemDetails['total_extra_cost_tax_excl']);
									endforeach;
								endif;
								?>
                                <tr>
                                    <td>
										<?php echo JText::_('SR_ROOM') . ': ' ?>
										<?php echo $roomTypeDetails["name"] ?>
                                        <a href="javascript:void(0)" class="toggle_room_confirmation"
	                                        <?php echo $roomTypeDetails['is_exclusive'] && $roomTypeDetails['skip_room_form'] ? 'style="display: none"' : '' ?>
                                           data-target="<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $roomIndex ?>">
											<?php echo JText::_('SR_CONFIRMATION_ROOM_DETAILS') ?>
                                        </a>
										<?php if ($isBookingWholeRoomType) : ?>
                                            <p><?php echo !empty($roomCost['currency']['title']) ? '(' . $roomCost['currency']['title'] . ')' : '' ?></p>
										<?php endif ?>
                                        <ul id="rc_<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $roomIndex ?>_confirmation"
                                            style="display: none">
											<?php if (!empty($roomInfo['guest_fullname'])) : ?>
                                                <li><?php echo JText::_('SR_CONFIRMATION_GUEST_NAME') . ': ' . $roomInfo['guest_fullname'] ?></li>
											<?php endif; ?>
                                            <li><?php echo JText::_('SR_CONFIRMATION_ADULT_NUMBER') . ': ' . (isset($roomInfo['adults_number']) ? $roomInfo['adults_number'] : 0) ?></li>
											<?php if (!empty($roomInfo['children_number'])) : ?>
                                                <li><?php echo JText::_('SR_CONFIRMATION_CHILD_NUMBER') . ': ' . $roomInfo['children_number'] ?></li>
											<?php endif ?>
                                        </ul>
                                    </td>

                                    <td>
										<?php
										if (0 == $bookingType) :
											echo JText::plural("SR_NIGHTS", $stayLength);
										else :
											echo JText::plural("SR_DAYS", $stayLength + 1);
										endif;
										?>
                                    </td>

									<?php if (!$isGuestMakingReservation) : ?>
                                        <td class="sr-align-right">
                                            <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                            <span class="add-on input-group-addon">
                                                <?php echo JText::_('SR_AMENDED_PRICE') ?>
                                                <?php
                                                if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
	                                                echo '(' . $currencyCode . ')';
                                                endif;
                                                ?>
                                            </span>
                                                <input type="text"
                                                       class="total_price_tax_excl_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                       value="<?php
												       if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
													       echo $roomCost['currency']['total_price_tax_excl_formatted']->getValue(true, true);
												       endif;
												       ?>"
                                                       name="jform[override_cost][room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $roomIndex ?>][total_price_tax_excl]"/>
                                            </div>
                                            <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                            <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_TAX') ?>
	                                            <?php
	                                            if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
		                                            echo '(' . $currencyCode . ')';
	                                            endif;
	                                            ?>
                                                </span>
                                                <input type="text"
                                                       class="room_price_tax_amount_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                       value="<?php
												       if (isset($roomCost['currency']['total_price_tax_incl_formatted'])) :
													       echo $roomCost['currency']['total_price_tax_incl_formatted']->getValue(true, true) - $roomCost['currency']['total_price_tax_excl_formatted']->getValue(true, true);
												       endif;
												       ?>"
                                                       name="jform[override_cost][room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $roomIndex ?>][tax_amount]"/>
                                            </div>
                                        </td>
									<?php else :
										if (!$isBookingWholeRoomType || ($isBookingWholeRoomType && $roomIndexCount == 1)) :
											?>
                                            <td class="sr-align-right" <?php echo $isBookingWholeRoomType ? 'rowspan="' . $rowspan . '" style="vertical-align: middle"' : '' ?>>
												<?php
												if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
													echo $roomCost['currency']['total_price_tax_excl_formatted']->format();
												endif;
												?>
                                            </td>
										<?php
										endif;
									endif;
									?>
                                </tr>
								<?php
								$roomIndexCount++;
							endforeach;
						endforeach;
					endforeach;

					// Total room cost
					$totalRoomCost = clone $currency;
					$totalRoomCost->setValue($cost['total_price_tax_' . ($showRoomTax ? 'excl' : 'incl')]);
					?>

                    <tr class="nobordered first">
                        <td colspan="2" class="sr-align-right">
							<?php echo JText::_("SR_TOTAL_ROOM_COST_TAX_" . ($showRoomTax ? 'EXCL' : 'INCL')) ?>
                        </td>
                        <td class="sr-align-right noleftborder">
							<?php if (!$isGuestMakingReservation) : ?>
                                <span class="add-on"><?php echo $currencyCode ?></span>
                                <span class="total_price_tax_excl grand_total_sub" val="<?php echo $totalRoomCost->getValue(true, true) ?>"><?php echo $totalRoomCost->getValue(true, true) ?></span>
							<?php else : ?>
								<?php echo $totalRoomCost->format() ?>
							<?php endif ?>
                        </td>
                    </tr>

					<?php
					// In case of pre tax discount
					if ($isDiscountPreTax && ($cost['total_discount'] > 0 || !$isGuestMakingReservation)) :
						$totalDiscount = null;
                        if ($cost['total_discount'] > 0) :
	                        $totalDiscount = clone $currency;
						    $totalDiscount->setValue($cost['total_discount']);
                        endif;
                        if (isset($currentReservationData)) :
                            $totalDiscountCurrent = clone $currency;
                            $totalDiscountCurrent->setValue($currentReservationData->total_discount);
						endif;
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_("SR_TOTAL_DISCOUNT") ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                        <input type="text" class="<?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               value="<?php echo isset($totalDiscount) ? '-' . $totalDiscount->getValue(true, true) : '-0' ?>"
                                               name="jform[override_cost][total_discount]"/>
                                    </div>
									<?php if (isset($currentReservationData) && $currentReservationData->total_discount > 0) : ?>
                                        <p class=""><?php echo JText::sprintf('SR_DISCOUNT_NOTICE', $totalDiscountCurrent->format()) ?></p>
									<?php endif ?>
								<?php else : ?>
									<?php echo $cost['total_discount'] > 0 ? '-' . $totalDiscount->format() : ''?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// Imposed taxes
					if ($showRoomTax) :
						$taxItem = clone $currency;
						$taxItem->setValue($cost['tax_amount']);
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_('SR_TOTAL_ROOM_TAX') ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                        <input type="text"
                                               class="tax_amount grand_total_sub <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               value="<?php echo $taxItem->getValue(true, true) ?>"
                                               name="jform[override_cost][tax_amount]"/>
                                    </div>
								<?php else : ?>
									<?php echo $taxItem->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// In case of after tax discount
					if (!$isDiscountPreTax && ($cost['total_discount'] > 0 || !$isGuestMakingReservation)) :
						$totalDiscount = null;
                        if ($cost['total_discount'] > 0) :
	                        $totalDiscount = clone $currency;
						    $totalDiscount->setValue($cost['total_discount']);
                        endif;

                        if (isset($currentReservationData)) :
                            $totalDiscountCurrent = clone $currency;
                            $totalDiscountCurrent->setValue($currentReservationData->total_discount);
						endif;
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_("SR_TOTAL_DISCOUNT") ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                        <input type="text" class="<?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               value="<?php echo isset($totalDiscount) ? '-' . $totalDiscount->getValue(true, true) : '-0' ?>"
                                               name="jform[override_cost][total_discount]"/>
                                    </div>
									<?php if (isset($currentReservationData) && $currentReservationData->total_discount > 0) : ?>
                                        <p class=""><?php echo JText::sprintf('SR_DISCOUNT_NOTICE', $totalDiscountCurrent->format()) ?></p>
									<?php endif ?>
								<?php else : ?>
									<?php echo $cost['total_discount'] > 0 ? '-' . $totalDiscount->format() : '' ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// Per room extra list
					if (!empty($extraList)) :
						foreach ($extraList as $extraRoomTypeId => $extraRoomTypeTariffs) :
							foreach ($extraRoomTypeTariffs as $extraTariffId => $extraRooms) :
								foreach ($extraRooms as $extraRoomIndex => $extraRoomExtras) :
									foreach ($extraRoomExtras as $extraRoomExtraKey => $extraRoomExtraDetails) :
										foreach ($extraRoomExtraDetails as $extraRoomExtraId => $extraRoomExtraIdDetails) :
											?>
                                            <tr class="extracost_confirmation" style="display: none">
                                                <td>
                                                    <p>
														<?php echo JText::_('SR_EXTRA') . ': ' ?><?php echo $extraRoomExtraIdDetails['name'] ?>
                                                    </p>
                                                    <p>
														<?php echo JText::_('SR_ROOM') . ': ' ?><?php echo $extraRoomExtraIdDetails['room_type_name'] ?>
                                                    </p>
                                                </td>
                                                <td>
													<?php echo $extraRoomExtraIdDetails['quantity'] ?>
                                                </td>
                                                <td class="sr-align-right ">
													<?php if (!$isGuestMakingReservation) : ?>
                                                        <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                                            <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_PRICE') ?>
                                                                (<?php echo $currencyCode ?>
                                                                )</span>
                                                            <input class="extra_price_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                                   type="text"
                                                                   value="<?php echo $extraRoomExtraIdDetails['currency']->getValue(true, true) ?>"
                                                                   name="jform[override_cost][room_types][<?php echo $extraRoomTypeId ?>][<?php echo $extraTariffId ?>][<?php echo $extraRoomIndex ?>][extras][<?php echo $extraRoomExtraId ?>][price]"/>
                                                        </div>
                                                        <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                                            <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_TAX') ?>
                                                                (<?php echo $currencyCode ?>
                                                                )</span>
                                                            <input class="extra_tax_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                                   type="text"
                                                                   value="<?php echo $extraRoomExtraIdDetails['currency_tax']->getValue(true, true) ?>"
                                                                   name="jform[override_cost][room_types][<?php echo $extraRoomTypeId ?>][<?php echo $extraTariffId ?>][<?php echo $extraRoomIndex ?>][extras][<?php echo $extraRoomExtraId ?>][tax_amount]"/>
                                                        </div>
													<?php else : ?>
														<?php echo $extraRoomExtraIdDetails['currency']->format() ?>
													<?php endif ?>
                                                </td>
                                            </tr>
										<?php
										endforeach;
									endforeach;
								endforeach;
							endforeach;
						endforeach;
					endif;

					// Per booking extra list
					$perBookingExtraList = isset($reservationDetails->guest['extras']) ? $reservationDetails->guest['extras'] : array();

					foreach ($perBookingExtraList as $perBookingExtraId => $perBookingExtraDetails) :
						?>
                        <tr class="extracost_confirmation" style="display: none">
                            <td>
                                <p>
									<?php echo JText::_('SR_EXTRA') . ': ' ?><?php echo $perBookingExtraDetails['name'] ?>
                                </p>
                                <p>
									<?php echo JText::_('SR_EXTRA_PER_BOOKING') ?>
                                </p>
                            </td>
                            <td>
								<?php echo $perBookingExtraDetails['quantity'] ?>
                            </td>
                            <td class="sr-align-right ">
								<?php
								$perBookingExtraCurrency = clone $currency;
								$perBookingExtraCurrency->setValue($perBookingExtraDetails['total_extra_cost_tax_excl']);
								$perBookingExtraCurrencyTax = clone $currency;
								$perBookingExtraCurrencyTax->setValue($perBookingExtraDetails['total_extra_cost_tax_incl'] - $perBookingExtraDetails['total_extra_cost_tax_excl']);
								?>
								<?php if (!$isGuestMakingReservation) : ?>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_PRICE') ?>
                                            (<?php echo $currencyCode ?>)</span>
                                        <input class="extra_price_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               type="text" value="<?php echo $perBookingExtraCurrency->getValue(true, true) ?>"
                                               name="jform[override_cost][extras_per_booking][<?php echo $perBookingExtraId ?>][price]"/>
                                    </div>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_TAX') ?>
                                            (<?php echo $currencyCode ?>)</span>
                                        <input class="extra_tax_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               type="text" value="<?php echo $perBookingExtraCurrencyTax->getValue(true, true) ?>"
                                               name="jform[override_cost][extras_per_booking][<?php echo $perBookingExtraId ?>][tax_amount]"/>
                                    </div>
								<?php else : ?>
									<?php echo $perBookingExtraCurrency->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endforeach;

					// Extra cost
					$totalExtraCost = clone $currency;
					$totalExtraCost->setValue($showRoomTax ? $totalRoomTypeExtraCostTaxExcl : $totalRoomTypeExtraCostTaxIncl);
					$totalExtraCostTaxAmount = clone $currency;
					$totalExtraCostTaxAmount->setValue($totalRoomTypeExtraCostTaxIncl - $totalRoomTypeExtraCostTaxExcl);

					if ($totalExtraCost->getValue() > 0) :
						?>
                        <tr class="nobordered extracost_row">
                            <td colspan="2" class="sr-align-right">
                                <a href="javascript:void(0)" class="toggle_extracost_confirmation">
									<?php echo JText::_('SR_TOTAL_EXTRA_COST_TAX_' . ($showRoomTax ? 'EXCL' : 'INCL')) ?>
                                </a>
                            </td>
                            <td id="total-extra-cost" class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="total_extra_price grand_total_sub" val="<?php echo $totalExtraCost->getValue(true, true) ?>"><?php echo $totalExtraCost->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo $totalExtraCost->format() ?>
								<?php endif ?>
                            </td>
                        </tr>

						<?php if ($showRoomTax) : ?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_("SR_TOTAL_EXTRA_COST_TAX_AMOUNT") ?>
                            </td>
                            <td id="total-extra-cost" class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="total_extra_tax grand_total_sub" val="<?php echo $totalExtraCostTaxAmount->getValue(true, true) ?>"><?php echo $totalExtraCostTaxAmount->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo $totalExtraCostTaxAmount->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php endif ?>

					<?php
					endif;

					// Tourist tax cost
					if ($cost['tourist_tax_amount'] > 0) :
						$touristTaxAmount = clone $currency;
						$touristTaxAmount->setValue($cost['tourist_tax_amount']);
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_("SR_TOURIST_TAX_AMOUNT") ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="tourist_tax_amount grand_total_sub" val="<?php echo $touristTaxAmount->getValue(true, true) ?>"><?php echo $touristTaxAmount->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo $touristTaxAmount->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// Grand total cost
					if ($isDiscountPreTax) :
						$grandTotalAmount = $cost['total_price_tax_excl_discounted'] + $cost['tax_amount'] + $totalRoomTypeExtraCostTaxIncl;
					else :
						$grandTotalAmount = $cost['total_price_tax_excl'] + $cost['tax_amount'] - $cost['total_discount'] + $totalRoomTypeExtraCostTaxIncl;
					endif;

					if ($cost['tourist_tax_amount'] > 0) :
						$grandTotalAmount += $cost['tourist_tax_amount'];
					endif;

					$grandTotal = clone $currency;
					$grandTotal->setValue($grandTotalAmount);

					?>
                    <tr class="nobordered">
                        <td colspan="2" class="sr-align-right">
                            <strong><?php echo JText::_("SR_GRAND_TOTAL") ?></strong>
                        </td>
                        <td class="sr-align-right gra noleftborder">
							<?php if (!$isGuestMakingReservation) : ?>
                                <span class="add-on"><?php echo $currencyCode ?></span>
                                <span class="grand_total"><?php echo $grandTotal->getValue(true, true) ?></span>
							<?php else : ?>
                                <strong><?php echo $grandTotal->format() ?></strong>
							<?php endif ?>
                        </td>
                    </tr>

					<?php
					// Deposit amount, if enabled
					$deposit            = null;
					if (isset($reservationDetails->deposit)):
						$deposit = $reservationDetails->deposit;
					endif;

					if (isset($deposit) && isset($deposit['deposit_amount'])) :
						$depositTotalAmount = clone $currency;
						$depositTotalAmount->setValue($deposit['deposit_amount']);
						$dueTotalAmount = clone $currency;
						$dueTotalAmount->setValue($grandTotalAmount - $deposit['deposit_amount'])
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
                                <strong><?php echo JText::_("SR_DEPOSIT_AMOUNT") ?></strong>
                            </td>
                            <td class="sr-align-right gra noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                        <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                        <input type="text" class="<?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                               value="<?php echo $depositTotalAmount->getValue(true, true) ?>"
                                               name="jform[override_cost][deposit_amount]"/>
                                    </div>
								<?php else : ?>
                                    <strong><?php echo $depositTotalAmount->format() ?></strong>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// Payment method surcharge cost
					if (isset($reservationDetails->guest['payment_method_id'])) :
						$paymentMethodLabel = JText::_("SR_PAYMENT_METHOD_" . $reservationDetails->guest['payment_method_id']);
					endif;
					if ($cost['payment_method_surcharge'] > 0) :
						$paymentMethodSurchargeAmount = clone $currency;
						$paymentMethodSurchargeAmount->setValue($cost['payment_method_surcharge']);
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::sprintf("SR_PAYMENT_METHOD_SURCHARGE_AMOUNT", $paymentMethodLabel) ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="payment_surcharge_amount"><?php echo $paymentMethodSurchargeAmount->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo $paymentMethodSurchargeAmount->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php
					endif;

					// Payment method discount cost
					if ($cost['payment_method_discount'] > 0) :
						$paymentMethodDiscountAmount = clone $currency;
						$paymentMethodDiscountAmount->setValue($cost['payment_method_discount']);
						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::sprintf("SR_PAYMENT_METHOD_DISCOUNT_AMOUNT", $paymentMethodLabel) ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="payment_discount_amount"><?php echo $paymentMethodDiscountAmount->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo '-' . $paymentMethodDiscountAmount->format() ?>
								<?php endif ?>
                            </td>
                        </tr>
					<?php endif; ?>

					<?php
					if ($deposit['deposit_amount']) :
						// Only show total due for guest
						if ($isGuestMakingReservation) : ?>
                            <tr class="nobordered">
                                <td colspan="2" class="sr-align-right">
                                    <strong><?php echo JText::_("SR_DUE_AMOUNT") ?></strong>
                                </td>
                                <td class="sr-align-right gra noleftborder">
                                    <strong><?php echo $dueTotalAmount->format() ?></strong>
                                </td>
                            </tr>
						<?php endif ?>
					<?php endif;?>

					<?php if (!empty($recaptcha)): ?>
                    <tr class="nobordered">
                        <td colspan="3">
							<?php echo $recaptcha; ?>
                        </td>
                    </tr>
					<?php endif; ?>

                    <?php
					// Terms and conditions
					if ($isGuestMakingReservation) :
						$bookingConditionsLink = JRoute::_(ContentHelperRoute::getArticleRoute($reservationDetails->booking_conditions));
						$privacyPolicyLink = JRoute::_(ContentHelperRoute::getArticleRoute($reservationDetails->privacy_policy));
						?>
                        <tr class="nobordered termsandconditions">
                            <td colspan="3">
                                <p>
                                    <input type="checkbox" id="termsandconditions" data-target="finalbutton"/>
									<?php echo JText::_('SR_I_AGREE_WITH') ?>
                                    <a target="_blank"
                                       href="<?php echo $bookingConditionsLink ?>"><?php echo JText::_('SR_BOOKING_CONDITIONS') ?></a> <?php echo JText::_('SR_AND') ?>
                                    <a target="_blank"
                                       href="<?php echo $privacyPolicyLink ?>"><?php echo JText::_('SR_PRIVACY_POLICY') ?></a>
                                </p>
                            </td>
                        </tr>
					<?php else : ?>
                        <tr class="nobordered sendoutgoingemails">
                            <td colspan="3">
                                <p>
                                    <input type="checkbox" name="jform[sendoutgoingemails]" id="sendoutgoingemails"
                                           checked/>
									<?php echo JText::_('SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS') ?>
                                </p>
                            </td>
                        </tr>
					<?php endif; ?>
                    </tbody>
                </table>
            </div>
            <input type="hidden" name="id" value="<?php echo $assetId ?>"/>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isGuestMakingReservation) : ?>
                    <p><?php echo JText::_("SR_RESERVATION_NOTICE_CONFIRMATION") ?></p>
				<?php endif ?>
            </div>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="confirmation"
                            data-prevstep="guestinfo">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button <?php echo $isGuestMakingReservation ? 'disabled ' : '' ?> data-step="confirmation"
                                                                                       type="submit"
                                                                                       class="btn btn-default btn-success">
                        <i class="fa fa-check"></i> <?php echo JText::_('SR_BUTTON_RESERVATION_FINAL_SUBMIT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

	<?php echo JHtml::_("form.token") ?>
</form>
layouts/asset/breakdown.php000060400000016771150751740420012065 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/breakdown.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

switch ($tariff['type']) :
	case 0:
	default:
		$tempKeyWeekDay = null;
		$totalBreakDown = count($tariff['tariff_break_down']);
		for ($key = 0; $key <= $totalBreakDown; $key++) :
			if ($key % 6 == 0 && $key == 0) : ?>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?> breakdown-row">
			<?php elseif ($key % 6 == 0 && $key != $totalBreakDown) : ?>
                </div><div class="<?php echo SR_UI_GRID_CONTAINER ?> <?php echo SR_UI_GRID_CONTAINER ?> breakdown-row">
			<?php elseif ($key == $totalBreakDown) : ?>
                </div>
			<?php endif;

			if ($key < $totalBreakDown) :
				$priceOfDayDetails = $tariff['tariff_break_down'][$key];
				$tempKeyWeekDay = key($priceOfDayDetails);
				?>
                <div class="<?php echo SR_UI_GRID_COL_2 ?>">
                    <p class="breakdown-wday"><?php echo $dayMapping[$tempKeyWeekDay] ?></p>
                    <span class="<?php echo $tariffBreakDownNetOrGross ?>">
					<?php echo $priceOfDayDetails[$tempKeyWeekDay][$tariffBreakDownNetOrGross]->format() ?>
					</span>
                </div>
			<?php endif;
		endfor;
		break;
	case 1:
		$tempKeyWeekDay = null;
		$totalBreakDown = count($tariff['tariff_break_down']);
		for ($key = 0; $key <= $totalBreakDown; $key++) :

			if ($key % 6 == 0 && $key == 0) : ?>
                <div class="<?php SR_UI_GRID_CONTAINER ?> breakdown-row">
			<?php elseif ($key % 6 == 0 && $key != $totalBreakDown) : ?>
                </div><div class="<?php echo SR_UI_GRID_CONTAINER ?> breakdown-row">
			<?php elseif ($key == $totalBreakDown) : ?>
                </div>
			<?php endif;

			if ($key < $totalBreakDown) :
				$priceOfDayDetails = $tariff['tariff_break_down'][$key];
				$tempKeyWeekDay = key($priceOfDayDetails); ?>
                <div class="<?php echo SR_UI_GRID_COL_2 ?>">
                    <p class="breakdown-wday"><?php echo $dayMapping[$tempKeyWeekDay] ?></p>
                    <p class="breakdown-adult"><?php echo JText::_('SR_ADULT') ?></p>
                    <span class="<?php echo $tariffBreakDownNetOrGross ?>">
						<?php echo $priceOfDayDetails[$tempKeyWeekDay][$tariffBreakDownNetOrGross . '_adults']->format() ?>
					</span>
					<?php if ($roomType->occupancy_child > 0) : ?>
                        <p class="breakdown-child"><?php echo JText::_('SR_CHILD') ?></p>
                        <span class="<?php echo $tariffBreakDownNetOrGross ?>">
						<?php echo $priceOfDayDetails[$tempKeyWeekDay][$tariffBreakDownNetOrGross . '_children']->format() ?>
					</span>
					<?php endif ?>
                </div>
			<?php endif;
		endfor;
		break;
	case 2:
		$tempKeyWeekDay = null;
		$totalBreakDown = count($tariff['tariff_break_down']);
		for ($key = 0; $key <= $totalBreakDown; $key++) :

			if ($key % 6 == 0 && $key == 0) : ?>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?> breakdown-row">
			<?php elseif ($key % 6 == 0 && $key != $totalBreakDown) : ?>
                </div><div class="<?php echo SR_UI_GRID_CONTAINER ?> breakdown-row">
			<?php elseif ($key == $totalBreakDown) : ?>
                </div>
			<?php endif;

			if ($key < $totalBreakDown) :
				$priceOfDayDetails = $tariff['tariff_break_down'][$key];
				$tempKeyWeekDay = key($priceOfDayDetails);
				?>
                <div class="<?php echo SR_UI_GRID_COL_2 ?>">
					<span class="<?php echo $tariffBreakDownNetOrGross ?>">
					<?php echo $priceOfDayDetails[$tempKeyWeekDay][$tariffBreakDownNetOrGross]->format() ?>
					</span>
                </div>
			<?php endif;
		endfor;
		break;
	case 3:
		$tempKeyWeekDay = null;
		$totalBreakDown = count($tariff['tariff_break_down']);
		for ($key = 0; $key <= $totalBreakDown; $key++) :
			if ($key % 6 == 0 && $key == 0) : ?>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?> breakdown-row">
			<?php elseif ($key % 6 == 0 && $key != $totalBreakDown) : ?>
                </div><div class="<?php echo SR_UI_GRID_CONTAINER ?> breakdown-row">
			<?php elseif ($key == $totalBreakDown) : ?>
                </div>
			<?php endif;

			if ($key < $totalBreakDown) :
				$priceOfDayDetails = $tariff['tariff_break_down'][$key];
				$tempKeyWeekDay = key($priceOfDayDetails);
				?>
                <div class="<?php SR_UI_GRID_COL_2 ?>">
                    <p class="breakdown-adult"><?php echo JText::_('SR_ADULT') ?></p>
                    <span class="<?php echo $tariffBreakDownNetOrGross ?>">
						<?php echo $priceOfDayDetails[$tempKeyWeekDay][$tariffBreakDownNetOrGross . '_adults']->format() ?>
					</span>
					<?php if ($roomType->occupancy_child > 0) : ?>
                        <p class="breakdown-child"><?php echo JText::_('SR_CHILD') ?></p>
                        <span class="<?php echo $tariffBreakDownNetOrGross ?>">
						<?php echo $priceOfDayDetails[$tempKeyWeekDay][$tariffBreakDownNetOrGross . '_children']->format() ?>
					</span>
					<?php endif ?>
                </div>
			<?php endif;
		endfor;
		break;
endswitch;
?>

<table class="table table-bordered">
    <tr>
        <td><?php echo JText::_('SR_ROOM_X_COST') ?></td>
        <td class="sr-align-right">
			<?php
			if ($tariff['total_single_supplement'] != 0) :// We allow negative value for single supplement
				$shownTariffBeforeDiscounted->setValue($shownTariffBeforeDiscounted->getValue() - $tariff['total_single_supplement']);
			endif;
			echo $shownTariffBeforeDiscounted->format();
			?>
        </td>
    </tr>
	<?php if ($tariff['total_single_supplement'] != 0) : // We allow negative value for single supplement ?>
        <tr>
            <td><?php echo JText::_('SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT') ?></td>
            <td class="sr-align-right"><?php echo $tariff['total_single_supplement_formatted']->format() ?></td>
        </tr>
	<?php endif;

	foreach ($extras as $extra) :
		$tempExtraCost = clone $solidresCurrency;
		$tempExtraCost->setValue($extra['total_extra_cost']);
		?>
        <tr>
            <td><?php echo $extra['name'] ?></td>
            <td class="sr-align-right"><?php echo $tempExtraCost->format() ?></td>
        </tr>
	<?php endforeach;

	if ($tariff['total_discount'] > 0) : ?>
        <tr>
            <td><?php echo JText::_('SR_ROOM_X_DISCOUNTED_AMOUNT') ?></td>
            <td class="sr-align-right"><?php echo $tariff['total_discount_formatted']->format() ?></td>
        <tr>
        <tr>
            <td><?php echo JText::_('SR_ROOM_X_DISCOUNTED_COST') ?></td>
            <td class="sr-align-right"><?php echo $tariff['total_price_tax_' . ($showTaxIncl == 1 ? 'incl' : 'excl') . '_discounted_formatted']->format() ?></td>
        </tr>
	<?php endif; ?>

</table>layouts/asset/tariff_book_style3.php000060400000017464150751740420013701 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/tariff_book_style3.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

?>

<div id="tariff-box-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>" data-targetcolor="FF981D"
     class="tariff-box <?php echo $tariffInfo['tariffType'] == PER_ROOM_TYPE_PER_STAY ? 'is-whole' : '' ?>">
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">

            <div class="tariff-value">
				<?php echo $minPrice; ?>
            </div>

            <div class="tariff-title-desc">
                <strong>
					<?php
					if (!empty($tariffInfo['tariffTitle'])) :
						echo $tariffInfo['tariffTitle'];
					else :
						if ($item->booking_type == 0) :
							echo JText::plural('SR_PRICE_IS_FOR_X_NIGHT', $stayLength);
						else :
							echo JText::plural('SR_PRICE_IS_FOR_X_DAY', $stayLength + 1);
						endif;
					endif;
					?>
                </strong>
				<?php
				if (!empty($tariffInfo['tariffDescription'])) :
					echo '<p>' . $tariffInfo['tariffDescription'] . '</p>';
				endif;
				?>
            </div>

        </div>

		<?php if (!$disableOnlineBooking): ?>
            <div class="tariff-button">

				<?php
				if (isset ($roomType->totalAvailableRoom)) :
					if ($roomType->totalAvailableRoom == 0) :
						echo JText::_('SR_NO_ROOM_AVAILABLE');
					else :
						if (!$isExclusive && $tariffInfo['tariffType'] != 4) :

							if ($roomType->totalAvailableRoom == 1 && $showRemainingRooms) :
								echo '<p class="last_chance">' . JText::_('SR_LAST_CHANCE_LAST_' . ($roomType->is_private ? 'ROOM' : 'BED')) . '</p>';
							endif;

							?>
                            <select
                                    name="solidres[ign<?php echo rand() ?>]"
                                    data-raid="<?php echo $item->id ?>"
                                    data-rtid="<?php echo $roomType->id ?>"
                                    data-tariffid="<?php echo $tariffKey ?>"
                                    data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
                                    data-totalroomsleft="<?php echo $roomType->totalAvailableRoom ?>"
                                    data-isprivate="<?php echo $roomType->is_private ?>"
                                    class="<?php echo SR_UI_GRID_COL_12 ?> roomtype-quantity-selection quantity_<?php echo $roomType->id ?> <?php echo $roomType->totalAvailableRoom == 1 && $showRemainingRooms ? 'last_chance' : '' ?>">
                                <option value="0"><?php echo JText::_('SR_ROOMTYPE_QUANTITY') ?></option>
								<?php
								for ($i = 1; $i <= $roomType->totalAvailableRoom; $i++) :
									$selected = '';
									if (isset($selectedRoomTypes['room_types'][$roomType->id][$tariffKey])) :
										$selected = ($i == count($selectedRoomTypes['room_types'][$roomType->id][$tariffKey])) ? 'selected="selected"' : '';
									endif;

									echo '<option ' . $selected . ' value="' . $i . '">' . JText::plural($roomType->is_private ? 'SR_SELECT_ROOM_QUANTITY' : 'SR_SELECT_BED_QUANTITY', $i) . '</option>';
								endfor;
								?>
                            </select>
						<?php else : ?>
                            <button <?php echo (($isExclusive && $skipRoomForm) || $tariffInfo['tariffType'] == 4) ? 'data-step="room"' : '' ?>
                                    type="button"
                                    data-raid="<?php echo $item->id ?>"
                                    data-rtid="<?php echo $roomType->id ?>"
                                    data-tariffid="<?php echo $tariffKey ?>"
                                    data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
                                    data-totalroomsleft="<?php echo $roomType->totalAvailableRoom ?>"
                                    class="btn btn-default <?php echo SR_UI_GRID_COL_12 ?> <?php echo (($isExclusive && $skipRoomForm) || $tariffInfo['tariffType'] == 4) ? 'roomtype-reserve-exclusive' : 'roomtype-reserve' ?> quantity_<?php echo $roomType->id ?>">
								<?php echo JText::_('SR_RESERVE') ?>
                            </button>
						<?php endif ?>

                        <input type="hidden"
                               name="jform[selected_tariffs][<?php echo $roomType->id ?>][]"
                               value="<?php echo $tariffKey ?>"
                               id="selected_tariff_<?php echo $roomType->id ?>_<?php echo $tariffKey ?>"
                               class="selected_tariff_hidden_<?php echo $roomType->id ?>"
                               disabled
                        />
                        <div class="processing" style="display: none"></div>

						<?php
						// Mostly for apartment booking when there is only 1 room type bookable
						// and guest option is replaced adult & child
						if (($isExclusive && $skipRoomForm) || $tariffInfo['tariffType'] == 4) :

							$loopCount = 1;
							if ($tariffInfo['tariffType'] == 4 && $roomType->number_of_room == $roomType->totalAvailableRoom) :
								$loopCount = $roomType->number_of_room;
							endif;

							for ($l = 0; $l < $loopCount; $l++) :
								?>
                                <input type="hidden"
                                       data-raid="<?php echo $item->id ?>"
                                       data-roomtypeid="<?php echo $roomType->id ?>"
                                       data-tariffid="<?php echo $tariffKey ?>"
                                       data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
                                       data-roomindex="<?php echo $l ?>"
                                       name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $tariffKey ?>][<?php echo $l ?>][adults_number]"
                                       value="<?php echo ($item->roomsOccupancyOptionsCount == 1 && $item->roomsOccupancyOptionsGuests > 0) ? $item->roomsOccupancyOptionsGuests : 1 ?>"
                                       class="exclusive-hidden exclusive-hidden-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>"
                                       disabled
                                />
							<?php
							endfor;
						endif;
					endif;
				endif;
				?>
            </div>
		<?php endif; ?>
    </div>

    <!-- check in form -->
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?> checkinoutform"
             id="checkinoutform-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>" style="display: none">

        </div>
    </div>
    <!-- /check in form -->


    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?> room-form-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>"
             id="room-form-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>" style="display: none">

        </div>
    </div>

</div> <!-- end of span12 -->
layouts/asset/checkinoutform_date_blocks.php000060400000012355150751740420015455 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/checkinoutform_date_blocks.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

$uri = JUri::root() . 'media/plg_solidres_flexsearch';
JHtml::_('stylesheet', $uri . '/css/slick.css', false, false);
JHtml::_('stylesheet', $uri . '/css/slick-theme.css', false, false);
JHtml::_('stylesheet', $uri . '/css/flexsearch.css', false, false);
JHtml::_('script', $uri . '/js/slick.min.js', false, false);
JHtml::_('script', $uri . '/js/flexsearch.js', false, false);
extract($displayData);
$datePairs   = array();
$datePairs[] = array($defaultMinCheckInDate->format('Y-m-d', true), $defaultMinCheckOutDate->format('Y-m-d', true));

for ($i = 0; $i < 10; $i++) :
	$datePairs[] = array($defaultMinCheckOutDate->format('Y-m-d', true), $defaultMinCheckOutDate->add(new DateInterval('P' . ($bookingType == 0 ? $tariff->d_min : $tariff->d_min - 1) . 'D'))->format('Y-m-d', true));
endfor;
$datePairsCount = count($datePairs);

?>
<?php if ($datePairsCount > 0) : ?>
    <div class="row-fluid">
        <div class="span12">
            <div class="inner">
				<?php
				if (!empty($datePairs)) :

					$url = JRoute::_('index.php?option=com_solidres&task=reservationasset.checkavailability&checkin=&checkout=&id=' . (int) $assetId);

					echo '<div id="fs-date-blocks-' . $roomTypeId . '" class="fs-date-blocks ' . ($datePairsCount > 3 ? 'narrow' : 'full') . '">';
					foreach ($datePairs as $dates) :
						$newUrl = JUri::getInstance($url);
						$newUrl->setVar('checkin', $dates[0]);
						$newUrl->setVar('checkout', $dates[1]);
						if ($enableAutoScroll) :
							$newUrl->setFragment('srt_' . $roomTypeId);
						endif;
						$checkinDisplay         = JDate::getInstance($dates[0])->format('d M', true);
						$checkoutDisplay        = JDate::getInstance($dates[1])->format('d M', true);
						$checkinWeekDayDisplay  = JDate::getInstance($dates[0])->format('D', true);
						$checkoutWeekDayDisplay = JDate::getInstance($dates[1])->format('D', true);
						$lengthOfStay           = (int) SRUtilities::calculateDateDiff($dates[0], $dates[1]);
						echo '<a class="fs-date-block" href="' . $newUrl->toString() . '">
							<span>' .
							$checkinDisplay . ' - ' . $checkoutDisplay .
							'</span>
					        <span>' .
							($bookingType == 0 ? JText::plural('SR_NIGHTS', $lengthOfStay) : JText::plural('SR_DAYS', ($lengthOfStay + 1))) . ', ' . $checkinWeekDayDisplay . ' - ' . $checkoutWeekDayDisplay .
							'</span>
					     </a>';
					endforeach;
					echo '</div>';
					?>
                    <script>
                        Solidres.jQuery(document).ready(function ($) {
                            $('#fs-date-blocks-' + <?php echo $roomTypeId ?>).slick({
                                infinite: true,
                                slidesToShow: <?php echo $datePairsCount >= 3 ? 3 : $datePairsCount ?>,
                                slidesToScroll: 3,
                                dots: false,
                                arrows: <?php echo $datePairsCount > 3 ? 'true' : 'false' ?>,
                                responsive: [
                                    {
                                        breakpoint: 1024,
                                        settings: {
                                            slidesToShow: 3,
                                            slidesToScroll: 3,
                                            infinite: true,
                                        }
                                    },
                                    {
                                        breakpoint: 600,
                                        settings: {
                                            slidesToShow: 2,
                                            slidesToScroll: 2
                                        }
                                    },
                                    {
                                        breakpoint: 480,
                                        settings: {
                                            slidesToShow: 1,
                                            slidesToScroll: 1
                                        }
                                    }
                                ]
                            });
                        });
                    </script>
				<?php
				endif;
				?>
            </div>
        </div>
    </div>
<?php endif ?>layouts/asset/roomtypeform.php000060400000064524150751740420012652 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/roomtypeform.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);
$roomFields = [];

if (SRPlugin::isEnabled('customfield'))
{
	$categories = isset($reservationDetails->asset_category_id) ? [$reservationDetails->asset_category_id] : [];
	$roomFields = SRCustomFieldHelper::findFields(['context' => 'com_solidres.room'], $categories);
}

for ($i = 0; $i < $quantity; $i++) :
	$currentRoomIndex = null;
	if (isset($reservationDetails->room['room_types'][$roomTypeId][$tariffId][$i])) :
		$currentRoomIndex = $reservationDetails->room['room_types'][$roomTypeId][$tariffId][$i];
	endif;
	$identity = $roomType->id . '_' . $tariffId . '_' . $i;

	// Html for adult selection
	$htmlAdultSelection = '';
	if (!isset($roomType->params['show_adult_option'])) :
		$roomType->params['show_adult_option'] = 1;
	endif;
	if ($roomType->params['show_adult_option'] == 1) :
		for ($j = 1; $j <= $roomType->occupancy_adult; $j++) :
			$disabled = '';
			$selected = '';
			if (isset($currentRoomIndex['adults_number'])) :
				$selected = $currentRoomIndex['adults_number'] == $j ? 'selected' : '';
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['adults'])) :
					$selected = $reservationDetails->room_opt[$i + 1]['adults'] == $j ? 'selected' : '';
				endif;
			else :
				if (!empty($tariff->p_min)) :
					if ($j == $tariff->p_min) :
						$selected = 'selected';
					endif;
				else :
					if ($j == 1) :
						$selected = 'selected';
					endif;
				endif;
			endif;

			if (!empty($tariff->p_min) && $j < $tariff->p_min) :
				$disabled = 'disabled';
			endif;

			if (!empty($tariff->p_max) && $j > $tariff->p_max) :
				$disabled = 'disabled';
			endif;
			$htmlAdultSelection .= '<option ' . $disabled . ' ' . $selected . ' value="' . $j . '">' . JText::plural('SR_SELECT_ADULT_QUANTITY', $j) . '</option>';
		endfor;
	endif;

	$htmlGuestSelection = '';
	$showGuestOption    = 0;
	if (isset($roomType->params['show_guest_option'])) :
		$showGuestOption = $roomType->params['show_guest_option'];
	endif;
	if ($showGuestOption == 1) :
		for ($j = 1; $j <= $roomType->occupancy_max; $j++) :
			$disabled = '';
			$selected = '';
			if (isset($currentRoomIndex['guests_number'])) :
				$selected = $currentRoomIndex['guests_number'] == $j ? 'selected' : '';
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['guests'])) :
					$selected = $reservationDetails->room_opt[$i + 1]['guests'] == $j ? 'selected' : '';
				endif;
			else :
				if (!empty($tariff->p_min)) :
					if ($j == $tariff->p_min) :
						$selected = 'selected';
					endif;
				else :
					if ($j == 1) :
						$selected = 'selected';
					endif;
				endif;
			endif;

			if (!empty($tariff->p_min) && $j < $tariff->p_min) :
				$disabled = 'disabled';
			endif;

			if (!empty($tariff->p_max) && $j > $tariff->p_max) :
				$disabled = 'disabled';
			endif;
			$htmlGuestSelection .= '<option ' . $disabled . ' ' . $selected . ' value="' . $j . '">'
				. JText::plural('SR_SELECT_GUEST_QUANTITY', $j)
				. '</option>';
		endfor;
	endif;

	// Html for children selection
	$htmlChildSelection = '';
	$htmlChildrenAges   = '';
	if (!isset($roomType->params['show_child_option'])) :
		$roomType->params['show_child_option'] = 1;
	endif;

	// Only show child option if it is enabled and the child quantity > 0
	if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) :
		$htmlChildSelection .= '<option value="">' . JText::_('SR_CHILD') . '</option>';

		for ($j = 1; $j <= $roomType->occupancy_child; $j++) :
			$selected2 = '';
			if (isset($currentRoomIndex['children_number'])) :
				$selected2 = $currentRoomIndex['children_number'] == $j ? 'selected' : '';
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['children'])) :
					$selected2 = $reservationDetails->room_opt[$i + 1]['children'] == $j ? 'selected' : '';
				endif;
			endif;
			$htmlChildSelection .= '
				<option ' . $selected2 . ' value="' . $j . '">' . JText::plural('SR_SELECT_CHILD_QUANTITY', $j) . '</option>
			';
		endfor;

		// Html for children ages, show if there was previous session data or from room_opt variables
		if (isset($currentRoomIndex['children_ages']) || isset($reservationDetails->room_opt[$i + 1])) :
			$childDropBoxCount = 0;
			if (isset($currentRoomIndex['children_ages'])) :
				$childDropBoxCount = count($currentRoomIndex['children_ages']);
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['children'])) :
					$childDropBoxCount = $reservationDetails->room_opt[$i + 1]['children'];
				endif;
			endif;

			for ($j = 0; $j < $childDropBoxCount; $j++) :
				$htmlChildrenAges .= '
					<li>
						' . JText::_('SR_CHILD') . ' ' . ($j + 1) . '
						<select name="jform[room_types][' . $roomTypeId . '][' . $tariffId . '][' . $i . '][children_ages][' . $j . ']"
							data-raid="' . $assetId . '"
							data-roomtypeid="' . $roomTypeId . '"
							data-tariffid="' . $tariffId . '"
							data-roomindex="' . $i . '"
							class="' . SR_UI_GRID_COL_6 . ' child_age_' . $roomTypeId . '_' . $tariffId . '_' . $i . '_' . $j . ' trigger_tariff_calculating"
							required
						>';
				$htmlChildrenAges .= '<option value=""></option>';
				for ($age = 0; $age <= $childMaxAge; $age++) :
					$selectedAge = '';
					if (isset($currentRoomIndex['children_ages']) && $age == $currentRoomIndex['children_ages'][$j]) :
						$selectedAge = 'selected';
					endif;
					$htmlChildrenAges .= '<option ' . $selectedAge . ' value="' . $age . '">' . JText::plural('SR_CHILD_AGE_SELECTION', $age) . '</option>';
				endfor;

				$htmlChildrenAges .= '
						</select>
					</li>';
			endfor;
		endif;
	endif;

	// Smoking
	$htmlSmokingOption = '';
	if (!isset($roomType->params['show_smoking_option'])) :
		$roomType->params['show_smoking_option'] = 1;
	endif;

	if ($roomType->params['show_smoking_option'] == 1) :
		$selectedNonSmoking = '';
		$selectedSmoking    = '';
		if (isset($currentRoomIndex['preferences']['smoking'])) :
			if ($currentRoomIndex['preferences']['smoking'] == 0) :
				$selectedNonSmoking = 'selected';
			else :
				$selectedSmoking = 'selected';
			endif;
		endif;
		$htmlSmokingOption = '
			<select class="form-control" name="jform[room_types][' . $roomTypeId . '][' . $tariffId . '][' . $i . '][preferences][smoking]">
				<option value="">' . JText::_('SR_SMOKING') . '</option>
				<option ' . $selectedNonSmoking . ' value="0">' . JText::_('SR_NON_SMOKING_ROOM') . '</option>
				<option ' . $selectedSmoking . ' value="1">' . JText::_('SR_SMOKING_ROOM') . '</option>
			</select>
		';
	endif;

	if (!isset($roomType->params['show_guest_name_field'])) :
		$roomType->params['show_guest_name_field'] = 1;
	endif;

	if (!isset($roomType->params['guest_name_optional'])) :
		$roomType->params['guest_name_optional'] = 0;
	endif;
	?>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> room-form-item">
        <div class="<?php echo SR_UI_GRID_COL_10 ?> <?php echo SR_UI_GRID_OFFSET_2 ?>">
            <div class="<?php echo SR_UI_GRID_CONTAINER ?> room_index_form_heading">
                <h4><?php echo JText::_($roomType->is_private ? 'SR_ROOM' : 'SR_BED') . ' ' . ($i + 1) ?>: <span
                            class="tariff_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">0</span>

                    <a href="javascript:void(0)"
                       class="toggle_breakdown"
                       data-target="<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">
						<?php echo JText::_('SR_VIEW_TARIFF_BREAKDOWN') ?>
                    </a>
                    <span style="display: none" class="breakdown"
                          id="breakdown_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">

                    </span>
                </h4>
            </div>
            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                <div class="<?php echo SR_UI_GRID_COL_5 ?>">
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?> occupancy-selection">
                        <div class="inner">
							<?php if ($roomType->params['show_adult_option'] == 1) : ?>
                                <select
                                        data-raid="<?php echo $assetId ?>"
                                        data-roomtypeid="<?php echo $roomTypeId ?>"
                                        data-tariffid="<?php echo $tariffId ?>"
                                        data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                        data-roomindex="<?php echo $i ?>"
                                        data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                        data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                        name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][adults_number]"
                                        required
                                        data-identity="<?php echo $identity ?>"
                                        class="<?php echo SR_UI_GRID_COL_6 ?> adults_number occupancy_max_constraint occupancy_max_constraint_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?> occupancy_adult_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?> trigger_tariff_calculating">
									<?php echo $htmlAdultSelection ?>
                                </select>
							<?php
							else :
								if (!$showGuestOption) : ?>
                                    <input type="hidden"
                                           data-raid="<?php echo $assetId ?>"
                                           data-roomtypeid="<?php echo $roomTypeId ?>"
                                           data-tariffid="<?php echo $tariffId ?>"
                                           data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                           data-roomindex="<?php echo $i ?>"
                                           data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                           data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                           name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][adults_number]"
                                           class="<?php echo SR_UI_GRID_COL_6 ?> adults_number occupancy_max_constraint occupancy_max_constraint_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?> occupancy_adult_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?> trigger_tariff_calculating"
                                           value="1"
                                           data-identity="<?php echo $identity ?>"
                                    />
								<?php endif ?>
							<?php endif ?>
							<?php if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) : ?>
                                <select
                                        data-raid="<?php echo $assetId ?>"
                                        data-roomtypeid="<?php echo $roomTypeId ?>"
                                        data-roomindex="<?php echo $i ?>"
                                        data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                        data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                        data-tariffid="<?php echo $tariffId ?>"
                                        data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                        data-identity="<?php echo $identity ?>"
                                        name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][children_number]"
                                        class="<?php echo SR_UI_GRID_COL_6 ?> children_number occupancy_max_constraint occupancy_max_constraint_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?> reservation-form-child-quantity trigger_tariff_calculating occupancy_child_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">
									<?php echo $htmlChildSelection ?>
                                </select>
							<?php endif ?>
							<?php if ($showGuestOption) : ?>
                                <select
                                        data-raid="<?php echo $assetId ?>"
                                        data-roomtypeid="<?php echo $roomTypeId ?>"
                                        data-tariffid="<?php echo $tariffId ?>"
                                        data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                        data-roomindex="<?php echo $i ?>"
                                        data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                        data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                        name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][guests_number]"
                                        required
                                        data-identity="<?php echo $identity ?>"
                                        class="<?php echo SR_UI_GRID_COL_6 ?> guests_number trigger_tariff_calculating">
									<?php echo $htmlGuestSelection ?>
                                </select>
							<?php endif; ?>
                            <div class="alert alert-warning"
                                 id="error_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?>"
                                 style="display: none">
								<?php echo JText::sprintf('SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED', $tariff->p_min, $tariff->p_max) ?>
                            </div>
                            <div
                                    class="child-age-details <?php echo(empty($htmlChildrenAges) ? 'nodisplay' : '') ?>">
                                <p><?php echo JText::_('SR_AGE_OF_CHILD_AT_CHECKOUT') ?></p>
                                <ul class="unstyled list-unstyled"><?php echo $htmlChildrenAges ?></ul>
                            </div>
                        </div>
                    </div>
                </div>

                <div class="<?php echo SR_UI_GRID_COL_7 ?>">
                    <div class="inner">
						<?php if ($roomType->params['show_guest_name_field'] == 1) : ?>
                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                    <input name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][guest_fullname]"
										<?php echo $roomType->params['guest_name_optional'] == 0 ? 'required' : '' ?>
                                           type="text"
                                           class="<?php echo 'bs3' == SR_UI ? 'form-control' : '' ?> <?php echo SR_UI_GRID_COL_12 ?>"
                                           value="<?php echo(isset($currentRoomIndex['guest_fullname']) ? $currentRoomIndex['guest_fullname'] : '') ?>"
                                           placeholder="<?php echo JText::_('SR_GUEST_NAME') ?>"/>
                                </div>
                            </div>
						<?php endif ?>

						<?php if (!empty($htmlSmokingOption)) : ?>
                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
									<?php echo $htmlSmokingOption ?>
                                </div>
                            </div>
						<?php endif ?>

                        <!-- Room Form -->
                        <?php

                            if (!empty($roomFields))
                            {
	                            foreach ($roomFields as $roomField)
	                            {
	                                $field = clone $roomField;
		                            $field->field_name = 'roomFields][' . $tariffId . '][' . $field->id . '][' . $i;
		                            $field->inputId    = 'roomFields-' . $tariffId . '-' . $field->id . '-' . $i;
		                            $field->id         = $field->inputId;

		                            if (isset($reservationDetails->room['roomFields'][$tariffId][$roomField->id][$i]))
		                            {
			                            $field->value = $reservationDetails->room['roomFields'][$tariffId][$roomField->id][$i];
		                            }

		                            echo SRCustomFieldHelper::render($field);
		                            unset($field);
	                            }
                            }

                        ?>

						<?php

                        if (is_array($extras)) :
                            foreach ($extras as $extra) :

                                if (8 == $extra->charge_type && !$extra->allow_early_arrival) :
                                    continue;
                                endif;

                                $extraInputCommonName = 'jform[room_types][' . $roomTypeId . '][' . $tariffId . '][' . $i . '][extras][' . $extra->id . ']';
                                $checked              = '';
                                $disabledCheckbox     = '';
                                $disabledSelect       = 'disabled="disabled"';
                                $alreadySelected      = false;
                                if (isset($currentRoomIndex['extras'])) :
                                    $alreadySelected = array_key_exists($extra->id, (array) $currentRoomIndex['extras']);
                                endif;

                                if ($extra->mandatory == 1 || $alreadySelected) :
                                    $checked = 'checked="checked"';
                                endif;

                                if ($extra->mandatory == 1) :
                                    $disabledCheckbox = 'disabled="disabled"';
                                    $disabledSelect   = 'disabled="disabled"';
                                endif;

                                if ($alreadySelected && $extra->mandatory == 0) :
                                    $disabledSelect = '';
                                endif;
                                ?>
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                    <div class="<?php echo SR_UI_GRID_COL_12 ?> extras_row_roomtypeform"
                                         id="extras_row_roomtypeform_<?php echo $identity ?>">

                                        <input <?php echo $checked ?> <?php echo $disabledCheckbox ?> type="checkbox"
                                                                                                      data-target="extra_<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>"
                                                                                                      data-extraid="<?php echo $extra->id ?>"
                                        />
                                        <?php if ($extra->mandatory == 1) : ?>
                                            <input type="hidden" name="<?php echo $extraInputCommonName ?>[quantity]"
                                                   value="1"/>
                                        <?php endif ?>

                                        <select class="<?php echo SR_UI_GRID_COL_2 ?> extra_quantity trigger_tariff_calculating"
                                                id="extra_<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>"
                                                data-raid="<?php echo $assetId ?>"
                                                data-roomtypeid="<?php echo $roomTypeId ?>"
                                                data-tariffid="<?php echo $tariffId ?>"
                                                data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                                data-roomindex="<?php echo $i ?>"
                                                data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                                data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                                data-identity="<?php echo $identity ?>"
                                                name="<?php echo $extraInputCommonName ?>[quantity]"
                                            <?php echo $disabledSelect ?>>
                                            <?php
                                            for ($quantitySelection = 1; $quantitySelection <= $extra->max_quantity; $quantitySelection++) :
                                                $checked = '';
                                                if (isset($currentRoomIndex['extras'][$extra->id]['quantity'])) :
                                                    $checked = ($currentRoomIndex['extras'][$extra->id]['quantity'] == $quantitySelection) ? 'selected' : '';
                                                endif;
                                                ?>
                                                <option <?php echo $checked ?>
                                                        value="<?php echo $quantitySelection ?>"><?php echo $quantitySelection ?></option>
                                            <?php
                                            endfor;
                                            ?>
                                        </select>
                                        <span>
                                            <?php echo $extra->name ?>
                                            <a href="javascript:void(0)"
                                               class="toggle_extra_details"
                                               data-target="extra_details_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>">
                                                <?php echo JText::_('SR_EXTRA_MORE_DETAILS') ?>
                                            </a>
                                        </span>
                                        <span class="extra_details"
                                              id="extra_details_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>"
                                              style="display: none">
                                        <?php if ($extra->charge_type == 3 || $extra->charge_type == 5 || $extra->charge_type == 6) : ?>
                                            <span>
                                                <?php echo JText::_('SR_EXTRA_PRICE_ADULT') . ': ' . $extra->currencyAdult->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                            </span>
                                            <span>
                                                <?php echo JText::_('SR_EXTRA_PRICE_CHILD') . ': ' . $extra->currencyChild->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                            </span>
                                        <?php elseif ($extra->charge_type == 7 || $extra->charge_type == 8) : ?>
                                            <span>
                                                <?php echo JText::sprintf('SR_EXTRA_PRICE_DAILY_RATE', $extra->name, ($extra->price * 100)) . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                            </span>
                                        <?php else : ?>
                                            <span>
                                                <?php echo JText::_('SR_EXTRA_PRICE') . ': ' . $extra->currency->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                            </span>
                                        <?php endif; ?>

                                            <span>
                                                <?php echo $extra->description ?>
                                            </span>
                                        </span>
                                    </div>
                                </div>
						<?php
						    endforeach;
						endif;
						?>

                        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                <button data-step="room" type="submit"
                                        class="btn <?php echo SR_UI_GRID_COL_12 ?> btn-success btn-block">
                                    <i class="fa fa-arrow-right"></i>
									<?php echo JText::_('SR_NEXT') ?>
                                </button>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
<?php
endfor;
layouts/asset/coupon_form.php000060400000006340150751740420012426 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/coupon_form.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

if (!isset($asset->params['enable_coupon'])) :
	$asset->params['enable_coupon'] = 0;
endif;

if ($asset->params['enable_coupon'] == 1) :
	if (!$isFresh) :
		?>
        <div class="coupon">
            <div class="input-append">
                <input type="text" name="coupon_code" class="" id="coupon_code"
                       placeholder="<?php echo JText::_('SR_COUPON_ENTER') ?>"/>
                <button id="coupon_code_check" class="btn btn-default"
                        type="button"><?php echo JText::_('SR_COUPON_CHECK') ?></button>
            </div>
			<?php if (isset($coupon)) : ?>
                <span>
			<?php echo JText::_('SR_APPLIED_COUPON') ?>
                    <span class="label label-success">
			<?php echo $coupon['coupon_name'] ?>
			</span>&nbsp;
			<a id="sr-remove-coupon" href="javascript:void(0)" data-couponid="<?php echo $coupon['coupon_id'] ?>">
				<?php echo JText::_('SR_REMOVE') ?>
			</a>
		</span>
			<?php endif ?>
        </div>
        <script>
            Solidres.jQuery(function ($) {
                $('#coupon_code_check').click(function () {
                    var self = $('input#coupon_code');
                    var coupon_code = self.val();
                    if (coupon_code) {
                        $.ajax({
                            type: 'POST',
                            url: window.location.pathname,
                            data: 'option=com_solidres&format=json&task=coupon.isValid&coupon_code=' + coupon_code + '&raid=' + $('input[name="id"]').val(),
                            success: function (response) {
                                self.parent().next('span').remove();
                                self.parent().after(response.message);
                                if (!response.status) {
                                    $('#apply-coupon').attr('disabled', 'disabled');
                                } else {
                                    $('#apply-coupon').removeAttr('disabled');
                                }
                            },
                            dataType: 'JSON'
                        });
                    }
                });
            });
        </script>
	<?php
	endif;
endif;
?>layouts/asset/guestform_style3.php000060400000063437150751740420013430 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/guestform_style3.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

$selectedCustomerTitle       = !empty($reservationDetails->guest["customer_title"]) ? $reservationDetails->guest["customer_title"] : '';
$user                        = JFactory::getUser();
$isFrontEnd                  = JFactory::getApplication()->isClient('site');
$disableCustomerRegistration = true;
if (isset($reservationDetails->asset_params['disable_customer_registration'])) :
	$disableCustomerRegistration = $reservationDetails->asset_params['disable_customer_registration'];
endif;
if (!isset($reservationDetails->hub_dashboard)) :
	$reservationDetails->hub_dashboard = 0;
endif;
$isGuestMakingReservation = JFactory::getApplication()->isClient('site') && !$reservationDetails->hub_dashboard;
JLoader::register('SRPayment', SRPATH_LIBRARY . '/payment/payment.php');
?>

<form enctype="multipart/form-data"
      id="sr-reservation-form-guest"
      class="sr-reservation-form form-stacked sr-validate"
      action="<?php echo JUri::base() ?>index.php?option=com_solidres&task=reservation<?php echo $isFrontEnd ? '' : 'base' ?>.process&step=guestinfo&format=json"
      method="POST">

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-top">

        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isFrontEnd) : ?>
                    <p><?php echo JText::_('SR_GUEST_INFO_STEP_NOTICE') ?></p>
				<?php endif ?>
            </div>
        </div>

        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="guestinfo"
                            data-prevstep="room">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button data-step="guestinfo" type="submit" class="btn btn-success">
                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

	<?php if ($isGuestMakingReservation && 1 == $showRoomsRatesInfo) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
				<?php
				$subLayout = SRLayoutHelper::getInstance();
				$subLayout->addIncludePath(JPATH_COMPONENT . '/components/com_solidres/layouts');
				echo $subLayout->render('asset.rooms_and_rates', $displayData);
				?>
            </div>
        </div>
	<?php endif; ?>

	<?php if ($isFrontEnd) : ?>
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                <h3><?php echo JText::_('SR_GUEST_INFORMATION') ?></h3>
            </div>
        </div>

	<?php endif ?>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
            <fieldset>
				<?php if (isset($guestFields[0])): ?>
					<?php echo $guestFields[0]; ?>
				<?php else: ?>
                    <div class="form-group">
                        <label for="firstname">
							<?php echo JText::_("SR_CUSTOMER_TITLE") ?>
                        </label>
						<?php
						echo JHtml::_("select.genericlist", $customerTitles, "jform[customer_title]", array("class" => 'form-control input-block-level', 'required'), "value", "text", $selectedCustomerTitle, "")
						?>
                    </div>
                    <div class="form-group">
                        <label for="firstname">
							<?php echo JText::_("SR_FIRSTNAME") ?>
                        </label>
                        <input id="firstname"
                               required
                               name="jform[customer_firstname]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_firstname"]) ? $reservationDetails->guest["customer_firstname"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="middlename">
							<?php echo JText::_("SR_MIDDLENAME") ?>
                        </label>
                        <input id="middlename"
                               name="jform[customer_middlename]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_middlename"]) ? $reservationDetails->guest["customer_middlename"] : "") ?>"/>

                    </div>
                    <div class="form-group">
                        <label for="lastname">
							<?php echo JText::_("SR_LASTNAME") ?>
                        </label>
                        <input id="lastname"
                               required
                               name="jform[customer_lastname]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_lastname"]) ? $reservationDetails->guest["customer_lastname"] : "") ?>"/>
                    </div>
                    <div class="form-group"><label for="email">
							<?php echo JText::_("SR_EMAIL") ?>
                        </label>
                        <input id="email"
                               required
                               name="jform[customer_email]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_email"]) ? $reservationDetails->guest["customer_email"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="confirm-email">
							<?php echo JText::_('SR_CONFIRM_EMAIL') ?>
                        </label>
                        <input id="confirm-email"
                               required
                               name="jform[customer_email2]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest['customer_email2']) ? $reservationDetails->guest['customer_email2'] : '') ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="phonenumber">
							<?php echo JText::_("SR_PHONENUMBER") ?>
                        </label>
                        <input id="phonenumber"
                               required
                               name="jform[customer_phonenumber]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_phonenumber"]) ? $reservationDetails->guest["customer_phonenumber"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="mobilephone">
							<?php echo JText::_("SR_MOBILEPHONE") ?>
                        </label>
                        <input id="mobilephone"
                               name="jform[customer_mobilephone]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_mobilephone"]) ? $reservationDetails->guest["customer_mobilephone"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="company">
							<?php echo JText::_("SR_COMPANY") ?>
                        </label>
                        <input id="company"
                               name="jform[customer_company]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_company"]) ? $reservationDetails->guest["customer_company"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="address1">
							<?php echo JText::_("SR_ADDRESS_1") ?>
                        </label>
                        <input id="address1"
                               required
                               name="jform[customer_address1]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_address1"]) ? $reservationDetails->guest["customer_address1"] : "") ?>"/>

                    </div>
                    <div class="form-group">
                        <label for="address2">
							<?php echo JText::_("SR_ADDRESS_2") ?>
                        </label>
                        <input id="address2"
                               name="jform[customer_address2]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_address2"]) ? $reservationDetails->guest["customer_address2"] : "") ?>"/>
                    </div>
				<?php endif; ?>
            </fieldset>
        </div>

        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
            <fieldset>
				<?php if (isset($guestFields[1])): ?>
					<?php echo $guestFields[1]; ?>
				<?php else: ?>
                    <div class="form-group">
                        <label for="vat_number">
							<?php echo JText::_("SR_VAT_NUMBER") ?>
                        </label>
                        <input id="vat_number"
                               name="jform[customer_vat_number]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_vat_number"]) ? $reservationDetails->guest["customer_vat_number"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="city"><?php echo JText::_("SR_CITY") ?></label>
                        <input id="city"
                               required
                               name="jform[customer_city]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_city"]) ? $reservationDetails->guest["customer_city"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="zip"><?php echo JText::_("SR_ZIP") ?></label>
                        <input id="zip"
                               name="jform[customer_zipcode]"
                               type="text"
                               class="form-control input-block-level"
                               value="<?php echo(isset($reservationDetails->guest["customer_zipcode"]) ? $reservationDetails->guest["customer_zipcode"] : "") ?>"/>
                    </div>
                    <div class="form-group">
                        <label for="jform[country_id]"><?php echo JText::_("SR_COUNTRY") ?></label>

						<?php
						$selectedCountryId = isset($reservationDetails->guest["customer_country_id"]) ? $reservationDetails->guest["customer_country_id"] : 0;
						echo JHtml::_("select.genericlist", $countries, "jform[customer_country_id]", array("class" => "country_select form-control input-block-level", 'required' => 'required'), "value", "text", $selectedCountryId, "country");
						?>
                    </div>
                    <div class="form-group">
                        <label for="jform[customer_geo_state_id]"><?php echo JText::_("SR_STATE") ?></label>
						<?php
						$selectedGeoStateId = isset($reservationDetails->guest["customer_geo_state_id"]) ? $reservationDetails->guest["customer_geo_state_id"] : 0;

						echo JHtml::_("select.genericlist", $geoStates, "jform[customer_geo_state_id]", array("class" => "state_select form-control input-block-level"), "value", "text", $selectedGeoStateId, "state");
						?>
                    </div>
                    <div class="form-group">
                        <label for="note"><?php echo JText::_("SR_NOTE") ?></label>
                        <textarea id="note" name="jform[note]" rows="10" cols="30"
                                  placeholder="<?php echo JText::_("SR_RESERVATION_NOTE") ?>"
                                  class="span12 form-control"><?php echo(isset($reservationDetails->guest["note"]) ? $reservationDetails->guest["note"] : "") ?></textarea>
                    </div>
				<?php endif; ?>
				<?php if (SRPlugin::isEnabled('user') && $user->get('id') <= 0 && (isset($disableCustomerRegistration) && !$disableCustomerRegistration)) : ?>
                    <div class="form-group">
                        <label class="checkbox">
                            <input id="register_an_account_form"
                                   type="checkbox"> <?php echo JText::_('SR_REGISTER_WITH_US_TEXT') ?>
                        </label>
                        <div class="register_an_account_form" style="display: none">
                            <label for="username">
								<?php echo JText::_("SR_USERNAME") ?>
                            </label>
                            <input id="username"
                                   name="jform[customer_username]"
                                   type="text"
                                   class="form-control input-block-level"
                                   value=""/>

                            <label for="password">
								<?php echo JText::_("SR_PASSWORD") ?>
                            </label>
                            <input id="password"
                                   name="jform[customer_password]"
                                   type="password"
                                   class="form-control input-block-level"
                                   value=""
                                   autocomplete="off"
                            />
	                        <?php if (JPluginHelper::isEnabled('system', 'privacyconsent')): ?>
                                <div class="<?php echo SR_UI_FORM_ROW; ?>">
                                    <label class="checkbox inline">
                                        <input name="jform[privacyConsent]"
                                               type="checkbox"
                                               value="1"
                                               id="privacy-consent"
                                        />
				                        <?php echo JText::_('SR_PRIVACY_CONSENT_NOTE'); ?>
                                    </label>
                                </div>
	                        <?php endif; ?>
                        </div>
                    </div>
				<?php endif; ?>
            </fieldset>
        </div>
    </div>

	<?php
	// Show Per Booking Extras
	if (count($extras)) :
	?>
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <h3><?php echo JText::_('SR_ENHANCE_YOUR_STAY') ?></h3>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
			<?php
			foreach ($extras as $extra) :
				$extraInputCommonName = 'jform[extras][' . $extra->id . ']';
				$checked = '';
				$disabledCheckbox = '';
				$disabledSelect = 'disabled="disabled"';
				$alreadySelected = false;
				if (isset($reservationDetails->guest['extras'])) :
					$alreadySelected = array_key_exists($extra->id, (array) $reservationDetails->guest['extras']);
				endif;

				if ($extra->mandatory == 1 || $alreadySelected) :
					$checked = 'checked="checked"';
				endif;

				if ($extra->mandatory == 1) :
					if ($isGuestMakingReservation) :
						$disabledCheckbox = 'disabled="disabled"';
					else :
						$disabledCheckbox = '';
					endif;
					$disabledSelect = '';
				endif;

				if ($alreadySelected && $extra->mandatory == 0) :
					$disabledSelect = '';
				endif;
				?>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                    <div class="<?php echo SR_UI_GRID_COL_12 ?> extras_row_guestform">
                        <input <?php echo $checked ?> <?php echo $disabledCheckbox ?>
                                type="checkbox"
                                data-target="guest_extra_<?php echo $extra->id ?>"/>

						<?php if ($extra->mandatory == 1) : ?>
                            <input type="hidden"
                                   name="<?php echo $extraInputCommonName ?>[quantity]"
                                   value="1"
                                   disabled
                            />
						<?php endif; ?>
                        <select class="<?php echo SR_UI_GRID_COL_2 ?>" id="guest_extra_<?php echo $extra->id ?>"
                                name="<?php echo $extraInputCommonName ?>[quantity]"
							<?php echo $disabledSelect ?>>
							<?php
							for ($quantitySelection = 1; $quantitySelection <= $extra->max_quantity; $quantitySelection++) :
								$checked = '';
								if (isset($reservationDetails->guest['extras'][$extra->id]['quantity'])) :
									$checked = ($reservationDetails->guest['extras'][$extra->id]['quantity'] == $quantitySelection) ? 'selected="selected"' : '';
								endif;
								?>
                                <option <?php echo $checked ?>
                                        value="<?php echo $quantitySelection ?>"><?php echo $quantitySelection ?></option>
							<?php
							endfor;
							?>
                        </select>
                        <span>
								<?php echo $extra->name ?>
                            <a href="javascript:void(0)"
                               class="toggle_extra_details"
                               data-target="extra_details_<?php echo $extra->id ?>">
									<?php echo JText::_('SR_EXTRA_MORE_DETAILS') ?>
								</a>
							</span>
                        <span class="extra_details" id="extra_details_<?php echo $extra->id ?>"
                              style="display: none">
								<?php if ($extra->charge_type == 3 || $extra->charge_type == 5 || $extra->charge_type == 6) : ?>
                                    <span>
									<?php echo JText::_('SR_EXTRA_PRICE_ADULT') . ': ' . $extra->currencyAdult->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
								</span>
                                    <span>
									<?php echo JText::_('SR_EXTRA_PRICE_CHILD') . ': ' . $extra->currencyChild->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
								</span>
								<?php else : ?>
                                    <span>
									<?php echo JText::_('SR_EXTRA_PRICE') . ': ' . $extra->currency->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
								</span>
								<?php endif; ?>
                            <span>
									<?php echo $extra->description ?>
								</span>
							</span>
                    </div>
                </div>
			<?php
			endforeach;
			endif;
			?>
        </div>
    </div>
	<?php
	// Show available payment methods
	$solidresPaymentConfigData = new SRConfig(array('scope_id' => $assetId));

	$availablePaymentPlugins = array('paylater', 'bankwire');
	foreach ($solidresPaymentPlugins as $paymentPlugin) :
		$availablePaymentPlugins[] = $paymentPlugin->element;
	endforeach;

	$availablePaymentPluginsCount = 0;
	foreach ($availablePaymentPlugins as $plugin) :
		$enabled = $solidresPaymentConfigData->get('payments/' . $plugin . '/' . $plugin . '_enabled');
		if ($enabled) :
			$availablePaymentPluginsCount++;
		endif;
	endforeach;

	if (!$isGuestMakingReservation) :
		if (!$isNew) :
			$processOnlinePaymentCheck = '';
		else :
			$processOnlinePaymentCheck = 'checked';
		endif;
	endif;
	?>
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>" <?php echo $availablePaymentPluginsCount == 0 || $isAmending ? 'style="display: none"' : '' ?>>
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <h3>
				<?php echo JText::_('SR_PAYMENT_INFO') ?>
				<?php if (!$isGuestMakingReservation) : ?>
                    <input type="checkbox" name="jform[processonlinepayment]" value="1"
                           id="processonlinepayment" data-target="payment_method_wrapper"
						<?php echo $processOnlinePaymentCheck ?>
                    />
					<?php echo JText::_('SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT') ?>
				<?php endif ?>
            </h3>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> payment_method_wrapper"
		<?php echo ($availablePaymentPluginsCount == 0 || $isAmending || (!$isGuestMakingReservation && $processOnlinePaymentCheck == '')) ? 'style="display: none"' : '' ?>>
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <ul class="unstyled list-unstyled payment_method_list">
				<?php
				// For extra payment methods provide via plugins
				foreach ($solidresPaymentPlugins as $paymentPlugin) :
					$paymentPluginId = $paymentPlugin->element;

					if ($solidresPaymentConfigData->get('payments/' . $paymentPluginId . '/' . $paymentPluginId . '_enabled')) :
						$checked = '';
						if (isset($reservationDetails->guest["payment_method_id"])) :
							if ($reservationDetails->guest["payment_method_id"] == $paymentPluginId) :
								$checked = "checked";
							endif;
						else :
							if ($solidresPaymentConfigData->get("payments/$paymentPluginId/{$paymentPluginId}_is_default") == 1):
								$checked = "checked";
							endif;
						endif;

						// Load custom payment plugin field template if it is available, otherwise just render it normally
						$fieldTemplatePath = JPATH_PLUGINS . '/solidrespayment/' . $paymentPluginId . '/form/field.php';
						if (SRPayment::hasCardForm($paymentPlugin->element)):
							$cardFormData = [
								'checked'                   => $checked,
								'element'                   => $paymentPlugin->element,
								'solidresPaymentConfigData' => $solidresPaymentConfigData,
								'reservationDetails'        => $reservationDetails,
							];
							echo '<li>' . SRLayoutHelper::render('payment.cardform', $cardFormData) . '</li>';
                        elseif (file_exists($fieldTemplatePath)) :
							@ob_start();
							include $fieldTemplatePath;
							echo @ob_get_clean();
						else :
							?>
                            <li>
                                <input id="payment_method_<?php echo $paymentPluginId ?>"
                                       type="radio"
                                       name="jform[payment_method_id]"
                                       value="<?php echo $paymentPluginId ?>"
                                       class="payment_method_radio"
									<?php echo $checked ?>
                                />
                                <span class="popover_payment_methods"
                                      data-content="<?php echo SRUtilities::translateText($solidresPaymentConfigData->get('payments/' . $paymentPluginId . '/' . $paymentPluginId . '_frontend_message')) ?>"
                                      data-title="<?php echo JText::_("SR_PAYMENT_METHOD_" . $paymentPluginId) ?>">
							<?php echo JText::_("SR_PAYMENT_METHOD_" . $paymentPluginId) ?>
                                    <i class="fa fa-question-circle"></i>
						</span>
                            </li>
						<?php
						endif;

					endif;
				endforeach;
				?>
            </ul>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isFrontEnd) : ?>
                    <p><?php echo JText::_('SR_GUEST_INFO_STEP_NOTICE') ?></p>
				<?php endif ?>
            </div>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="guestinfo"
                            data-prevstep="room">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button data-step="guestinfo" type="submit" class="btn btn-success">
                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

	<?php echo JHtml::_("form.token") ?>
    <input type="hidden" name="jform[next_step]" value="confirmation"/>
</form>
layouts/asset/roomtypeform_style3.php000060400000066464150751740420014162 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/roomtypeform_style3.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);
$roomFields = [];

if (SRPlugin::isEnabled('customfield'))
{
	$categories = isset($reservationDetails->asset_category_id) ? [$reservationDetails->asset_category_id] : [];
	$roomFields = SRCustomFieldHelper::findFields(['context' => 'com_solidres.room'], $categories);
}

for ($i = 0; $i < $quantity; $i++) :
	$currentRoomIndex = null;
	if (isset($reservationDetails->room['room_types'][$roomTypeId][$tariffId][$i])) :
		$currentRoomIndex = $reservationDetails->room['room_types'][$roomTypeId][$tariffId][$i];
	endif;
	$identity = $roomType->id . '_' . $tariffId . '_' . $i;

	// Html for adult selection
	$htmlAdultSelection = '';
	if (!isset($roomType->params['show_adult_option'])) :
		$roomType->params['show_adult_option'] = 1;
	endif;
	if ($roomType->params['show_adult_option'] == 1) :
		for ($j = 1; $j <= $roomType->occupancy_adult; $j++) :
			$disabled = '';
			$selected = '';
			if (isset($currentRoomIndex['adults_number'])) :
				$selected = $currentRoomIndex['adults_number'] == $j ? 'selected' : '';
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['adults'])) :
					$selected = $reservationDetails->room_opt[$i + 1]['adults'] == $j ? 'selected' : '';
				endif;
			else :
				if (!empty($tariff->p_min)) :
					if ($j == $tariff->p_min) :
						$selected = 'selected';
					endif;
				else :
					if ($j == 1) :
						$selected = 'selected';
					endif;
				endif;
			endif;

			if (!empty($tariff->p_min) && $j < $tariff->p_min) :
				$disabled = 'disabled';
			endif;

			if (!empty($tariff->p_max) && $j > $tariff->p_max) :
				$disabled = 'disabled';
			endif;
			$htmlAdultSelection .= '<option ' . $disabled . ' ' . $selected . ' value="' . $j . '">' . JText::plural('SR_SELECT_ADULT_QUANTITY', $j) . '</option>';
		endfor;
	endif;

	$htmlGuestSelection = '';
	$showGuestOption    = 0;
	if (isset($roomType->params['show_guest_option'])) :
		$showGuestOption = $roomType->params['show_guest_option'];
	endif;
	if ($showGuestOption == 1) :
		for ($j = 1; $j <= $roomType->occupancy_max; $j++) :
			$disabled = '';
			$selected = '';
			if (isset($currentRoomIndex['guests_number'])) :
				$selected = $currentRoomIndex['guests_number'] == $j ? 'selected' : '';
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['guests'])) :
					$selected = $reservationDetails->room_opt[$i + 1]['guests'] == $j ? 'selected' : '';
				endif;
			else :
				if (!empty($tariff->p_min)) :
					if ($j == $tariff->p_min) :
						$selected = 'selected';
					endif;
				else :
					if ($j == 1) :
						$selected = 'selected';
					endif;
				endif;
			endif;

			if (!empty($tariff->p_min) && $j < $tariff->p_min) :
				$disabled = 'disabled';
			endif;

			if (!empty($tariff->p_max) && $j > $tariff->p_max) :
				$disabled = 'disabled';
			endif;
			$htmlGuestSelection .= '<option ' . $disabled . ' ' . $selected . ' value="' . $j . '">'
				. JText::plural('SR_SELECT_GUEST_QUANTITY', $j)
				. '</option>';
		endfor;
	endif;

	// Html for children selection
	$htmlChildSelection = '';
	$htmlChildrenAges   = '';
	if (!isset($roomType->params['show_child_option'])) :
		$roomType->params['show_child_option'] = 1;
	endif;

	// Only show child option if it is enabled and the child quantity > 0
	if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) :
		$htmlChildSelection .= '<option value="">' . JText::_('SR_CHILD') . '</option>';

		for ($j = 1; $j <= $roomType->occupancy_child; $j++) :
			$selected2 = '';
			if (isset($currentRoomIndex['children_number'])) :
				$selected2 = $currentRoomIndex['children_number'] == $j ? 'selected' : '';
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['children'])) :
					$selected2 = $reservationDetails->room_opt[$i + 1]['children'] == $j ? 'selected' : '';
				endif;
			endif;
			$htmlChildSelection .= '
				<option ' . $selected2 . ' value="' . $j . '">' . JText::plural('SR_SELECT_CHILD_QUANTITY', $j) . '</option>
			';
		endfor;

		// Html for children ages, show if there was previous session data or from room_opt variables
		if (isset($currentRoomIndex['children_ages']) || isset($reservationDetails->room_opt[$i + 1])) :
			$childDropBoxCount = 0;
			if (isset($currentRoomIndex['children_ages'])) :
				$childDropBoxCount = count($currentRoomIndex['children_ages']);
            elseif (isset($reservationDetails->room_opt[$i + 1])) :
				if (isset($reservationDetails->room_opt[$i + 1]['children'])) :
					$childDropBoxCount = $reservationDetails->room_opt[$i + 1]['children'];
				endif;
			endif;

			for ($j = 0; $j < $childDropBoxCount; $j++) :
				$htmlChildrenAges .= '
					<li>
						' . JText::_('SR_CHILD') . ' ' . ($j + 1) . '
						<select name="jform[room_types][' . $roomTypeId . '][' . $tariffId . '][' . $i . '][children_ages][' . $j . ']"
							data-raid="' . $assetId . '"
							data-roomtypeid="' . $roomTypeId . '"
							data-tariffid="' . $tariffId . '"
							data-roomindex="' . $i . '"
							class="' . SR_UI_GRID_COL_6 . ' child_age_' . $roomTypeId . '_' . $tariffId . '_' . $i . '_' . $j . ' trigger_tariff_calculating"
							required
						>';
				$htmlChildrenAges .= '<option value=""></option>';
				for ($age = 0; $age <= $childMaxAge; $age++) :
					$selectedAge = '';
					if (isset($currentRoomIndex['children_ages']) && $age == $currentRoomIndex['children_ages'][$j]) :
						$selectedAge = 'selected';
					endif;
					$htmlChildrenAges .= '<option ' . $selectedAge . ' value="' . $age . '">' . JText::plural('SR_CHILD_AGE_SELECTION', $age) . '</option>';
				endfor;

				$htmlChildrenAges .= '
						</select>
					</li>';
			endfor;
		endif;
	endif;

	// Smoking
	$htmlSmokingOption = '';
	if (!isset($roomType->params['show_smoking_option'])) :
		$roomType->params['show_smoking_option'] = 1;
	endif;

	if ($roomType->params['show_smoking_option'] == 1) :
		$selectedNonSmoking = '';
		$selectedSmoking    = '';
		if (isset($currentRoomIndex['preferences']['smoking'])) :
			if ($currentRoomIndex['preferences']['smoking'] == 0) :
				$selectedNonSmoking = 'selected';
			else :
				$selectedSmoking = 'selected';
			endif;
		endif;
		$htmlSmokingOption = '
			<select class="form-control" name="jform[room_types][' . $roomTypeId . '][' . $tariffId . '][' . $i . '][preferences][smoking]">
				<option value="">' . JText::_('SR_SMOKING') . '</option>
				<option ' . $selectedNonSmoking . ' value="0">' . JText::_('SR_NON_SMOKING_ROOM') . '</option>
				<option ' . $selectedSmoking . ' value="1">' . JText::_('SR_SMOKING_ROOM') . '</option>
			</select>
		';
	endif;

	if (!isset($roomType->params['show_guest_name_field'])) :
		$roomType->params['show_guest_name_field'] = 1;
	endif;

	if (!isset($roomType->params['guest_name_optional'])) :
		$roomType->params['guest_name_optional'] = 0;
	endif;
	?>

    <div class="room-form">
        <div class="<?php echo SR_UI_GRID_CONTAINER ?> room-form-item">
            <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                <div class="<?php echo SR_UI_GRID_CONTAINER ?> room_index_form_heading">
                    <div class="inner">
                        <h4><?php echo JText::_($roomType->is_private ? 'SR_ROOM' : 'SR_BED') . ' ' . ($i + 1) ?>: <span
                                    class="tariff_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">0</span>

                            <a href="javascript:void(0)"
                               class="toggle_breakdown"
                               data-target="<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">
								<?php echo JText::_('SR_VIEW_TARIFF_BREAKDOWN') ?>
                            </a>
                        </h4>
                        <span style="display: none" class="breakdown"
                              id="breakdown_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">

						</span>
                    </div>
                </div>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                        <div class="<?php echo SR_UI_GRID_CONTAINER ?> occupancy-selection">
                            <div class="inner">
								<?php if ($roomType->params['show_adult_option'] == 1) : ?>
                                    <select
                                            data-raid="<?php echo $assetId ?>"
                                            data-roomtypeid="<?php echo $roomTypeId ?>"
                                            data-tariffid="<?php echo $tariffId ?>"
                                            data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                            data-roomindex="<?php echo $i ?>"
                                            data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                            data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                            name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][adults_number]"
                                            required
                                            data-identity="<?php echo $identity ?>"
                                            class="<?php echo SR_UI_GRID_COL_6 ?> adults_number occupancy_max_constraint occupancy_max_constraint_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?> occupancy_adult_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?> trigger_tariff_calculating">
										<?php echo $htmlAdultSelection ?>
                                    </select>
								<?php else :
									if (!$showGuestOption) : ?>
                                        <input type="hidden"
                                               data-raid="<?php echo $assetId ?>"
                                               data-roomtypeid="<?php echo $roomTypeId ?>"
                                               data-tariffid="<?php echo $tariffId ?>"
                                               data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                               data-roomindex="<?php echo $i ?>"
                                               data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                               data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                               name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][adults_number]"
                                               class="<?php echo SR_UI_GRID_COL_6 ?> adults_number occupancy_max_constraint occupancy_max_constraint_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?> occupancy_adult_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?> trigger_tariff_calculating"
                                               value="1"
                                               data-identity="<?php echo $identity ?>"
                                        />
									<?php endif ?>
								<?php endif ?>
								<?php if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) : ?>
                                    <select
                                            data-raid="<?php echo $assetId ?>"
                                            data-roomtypeid="<?php echo $roomTypeId ?>"
                                            data-roomindex="<?php echo $i ?>"
                                            data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                            data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                            data-tariffid="<?php echo $tariffId ?>"
                                            data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                            data-identity="<?php echo $identity ?>"
                                            name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][children_number]"
                                            class="<?php echo SR_UI_GRID_COL_6 ?> children_number occupancy_max_constraint occupancy_max_constraint_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?> reservation-form-child-quantity trigger_tariff_calculating occupancy_child_<?php echo $roomTypeId . '_' . $tariffId . '_' . $i ?>">
										<?php echo $htmlChildSelection ?>
                                    </select>
								<?php endif ?>
								<?php if ($showGuestOption) : ?>
                                    <select
                                            data-raid="<?php echo $assetId ?>"
                                            data-roomtypeid="<?php echo $roomTypeId ?>"
                                            data-tariffid="<?php echo $tariffId ?>"
                                            data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                            data-roomindex="<?php echo $i ?>"
                                            data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                            data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                            name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][guests_number]"
                                            required
                                            data-identity="<?php echo $identity ?>"
                                            class="<?php echo SR_UI_GRID_COL_6 ?> guests_number trigger_tariff_calculating">
										<?php echo $htmlGuestSelection ?>
                                    </select>
								<?php endif; ?>
                                <div class="alert alert-warning"
                                     id="error_<?php echo $i ?>_<?php echo $tariffId ?>_<?php echo $roomTypeId ?>"
                                     style="display: none">
									<?php echo JText::sprintf('SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED', $tariff->p_min, $tariff->p_max) ?>
                                </div>
                                <div
                                        class="child-age-details <?php echo(empty($htmlChildrenAges) ? 'nodisplay' : '') ?>">
                                    <p><?php echo JText::_('SR_AGE_OF_CHILD_AT_CHECKOUT') ?></p>
                                    <ul class="unstyled list-unstyled"><?php echo $htmlChildrenAges ?></ul>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                        <div class="inner">
							<?php if ($roomType->params['show_guest_name_field'] == 1) : ?>
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                        <input name="jform[room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $i ?>][guest_fullname]"
											<?php echo $roomType->params['guest_name_optional'] == 0 ? 'required' : '' ?>
                                               type="text"
                                               class="<?php echo 'bs3' == SR_UI ? 'form-control' : '' ?> <?php echo SR_UI_GRID_COL_12 ?>"
                                               value="<?php echo(isset($currentRoomIndex['guest_fullname']) ? $currentRoomIndex['guest_fullname'] : '') ?>"
                                               placeholder="<?php echo JText::_('SR_GUEST_NAME') ?>"/>
                                    </div>
                                </div>
							<?php endif ?>

							<?php if (!empty($htmlSmokingOption)) : ?>
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
										<?php echo $htmlSmokingOption ?>
                                    </div>
                                </div>
							<?php endif ?>

                            <!-- Room Form -->
	                        <?php

	                        if (!empty($roomFields))
	                        {
		                        foreach ($roomFields as $roomField)
		                        {
			                        $field = clone $roomField;
			                        $field->field_name = 'roomFields][' . $tariffId . '][' . $field->id . '][' . $i;
			                        $field->inputId    = 'roomFields-' . $tariffId . '-' . $field->id . '-' . $i;
			                        $field->id         = $field->inputId;

			                        if (isset($reservationDetails->room['roomFields'][$tariffId][$roomField->id][$i]))
			                        {
				                        $field->value = $reservationDetails->room['roomFields'][$tariffId][$roomField->id][$i];
			                        }

			                        echo SRCustomFieldHelper::render($field);
			                        unset($field);
		                        }
	                        }

	                        ?>

							<?php
                            if (is_array($extras)) :
                                foreach ($extras as $extra) :

                                    if (8 == $extra->charge_type && !$extra->allow_early_arrival) :
                                        continue;
                                    endif;

                                    $extraInputCommonName = 'jform[room_types][' . $roomTypeId . '][' . $tariffId . '][' . $i . '][extras][' . $extra->id . ']';
                                    $checked              = '';
                                    $disabledCheckbox     = '';
                                    $disabledSelect       = 'disabled="disabled"';
                                    $alreadySelected      = false;
                                    if (isset($currentRoomIndex['extras'])) :
                                        $alreadySelected = array_key_exists($extra->id, (array) $currentRoomIndex['extras']);
                                    endif;

                                    if ($extra->mandatory == 1 || $alreadySelected) :
                                        $checked = 'checked="checked"';
                                    endif;

                                    if ($extra->mandatory == 1) :
                                        $disabledCheckbox = 'disabled="disabled"';
                                        $disabledSelect   = 'disabled="disabled"';
                                    endif;

                                    if ($alreadySelected && $extra->mandatory == 0) :
                                        $disabledSelect = '';
                                    endif;
                                    ?>
                                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                        <div class="<?php echo SR_UI_GRID_COL_12 ?> extras_row_roomtypeform"
                                             id="extras_row_roomtypeform_<?php echo $identity ?>">

                                            <input <?php echo $checked ?> <?php echo $disabledCheckbox ?> type="checkbox"
                                                                                                          data-target="extra_<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>"
                                                                                                          data-extraid="<?php echo $extra->id ?>"
                                            />
                                            <?php if ($extra->mandatory == 1) : ?>
                                                <input type="hidden" name="<?php echo $extraInputCommonName ?>[quantity]"
                                                       value="1"/>
                                            <?php endif ?>

                                            <select class="<?php echo SR_UI_GRID_COL_2 ?> extra_quantity trigger_tariff_calculating"
                                                    id="extra_<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>"
                                                    data-raid="<?php echo $assetId ?>"
                                                    data-roomtypeid="<?php echo $roomTypeId ?>"
                                                    data-tariffid="<?php echo $tariffId ?>"
                                                    data-adjoininglayer="<?php echo $adjoiningLayer ?>"
                                                    data-roomindex="<?php echo $i ?>"
                                                    data-max="<?php echo isset($tariff->p_max) && $tariff->p_max > 0 ? $tariff->p_max : $roomType->occupancy_max ?>"
                                                    data-min="<?php echo isset($tariff->p_min) && $tariff->p_min > 0 ? $tariff->p_min : 0 ?>"
                                                    data-identity="<?php echo $identity ?>"
                                                    name="<?php echo $extraInputCommonName ?>[quantity]"
                                                <?php echo $disabledSelect ?>>
                                                <?php
                                                for ($quantitySelection = 1; $quantitySelection <= $extra->max_quantity; $quantitySelection++) :
                                                    $checked = '';
                                                    if (isset($currentRoomIndex['extras'][$extra->id]['quantity'])) :
                                                        $checked = ($currentRoomIndex['extras'][$extra->id]['quantity'] == $quantitySelection) ? 'selected' : '';
                                                    endif;
                                                    ?>
                                                    <option <?php echo $checked ?>
                                                            value="<?php echo $quantitySelection ?>"><?php echo $quantitySelection ?></option>
                                                <?php
                                                endfor;
                                                ?>
                                            </select>
                                            <span>
                                                <?php echo $extra->name ?>
                                                <a href="javascript:void(0)"
                                                   class="toggle_extra_details"
                                                   data-target="extra_details_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>">
                                                    <?php echo JText::_('SR_EXTRA_MORE_DETAILS') ?>
                                                </a>
                                            </span>
                                            <span class="extra_details"
                                                  id="extra_details_<?php echo $tariffId ?>_<?php echo $i ?>_<?php echo $extra->id ?>"
                                                  style="display: none">
                                                <?php if ($extra->charge_type == 3 || $extra->charge_type == 5 || $extra->charge_type == 6) : ?>
                                                    <span>
                                                    <?php echo JText::_('SR_EXTRA_PRICE_ADULT') . ': ' . $extra->currencyAdult->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                                </span>
                                                    <span>
                                                    <?php echo JText::_('SR_EXTRA_PRICE_CHILD') . ': ' . $extra->currencyChild->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                                </span>
                                                <?php elseif ($extra->charge_type == 7 || $extra->charge_type == 8) : ?>
                                                    <span>
                                                    <?php echo JText::sprintf('SR_EXTRA_PRICE_DAILY_RATE', $extra->name, ($extra->price * 100)) . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                                </span>
                                                <?php else : ?>
                                                    <span>
                                                    <?php echo JText::_('SR_EXTRA_PRICE') . ': ' . $extra->currency->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
                                                </span>
                                                <?php endif; ?>

                                                <span>
                                                    <?php echo $extra->description ?>
                                                </span>
                                            </span>
                                        </div>
                                    </div>
							<?php
							    endforeach;
							endif;
							?>

                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                                    <button data-step="room" type="submit"
                                            class="btn <?php echo SR_UI_GRID_COL_12 ?> btn-success btn-block">
                                        <i class="fa fa-arrow-right"></i>
										<?php echo JText::_('SR_NEXT') ?>
                                    </button>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
<?php
endfor;
layouts/asset/confirmationform.php000060400000121407150751740420013456 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/confirmationform.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

if (!isset($reservationDetails->hub_dashboard)) :
	$reservationDetails->hub_dashboard = 0;
endif;

$isGuestMakingReservation = JFactory::getApplication()->isClient('site') && !$reservationDetails->hub_dashboard;
?>

<form
        id="sr-reservation-form-confirmation"
        enctype="multipart/form-data"
        action="<?php echo JRoute::_("index.php?option=com_solidres&task=" . $task) ?>"
        method="POST">

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-top">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isGuestMakingReservation) : ?>
                    <p><?php echo JText::_("SR_RESERVATION_NOTICE_CONFIRMATION") ?></p>
				<?php endif ?>
            </div>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="confirmation"
                            data-prevstep="guestinfo">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button <?php echo $isGuestMakingReservation ? 'disabled' : '' ?> data-step="confirmation"
                                                                                      type="submit"
                                                                                      class="btn btn-success">
                        <i class="fa fa-check"></i> <?php echo JText::_('SR_BUTTON_RESERVATION_FINAL_SUBMIT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <div class="inner">
                <div id="reservation-confirmation-box">
					<?php if ($isGuestMakingReservation) : ?>
                        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <strong>
									<?php
									echo JText::_('SR_YOUR_SEARCH_INFORMATION_CHECKIN') . ' ' .
										JDate::getInstance($reservationDetails->checkin, $timezone)
											->format($dateFormat, true) ?>
                                </strong>
                            </div>
							<?php if (isset($reservationDetails->guest['customer_lastname'])
								&&
								isset($reservationDetails->guest['customer_firstname'])
							) : ?>
                                <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                    <strong>
										<?php
										echo JText::_('SR_CONFIRMATION_FULLNAME') . $reservationDetails->guest['customer_firstname'] . ' ' .
											$reservationDetails->guest['customer_lastname']
										?>
                                    </strong>
                                </div>
							<?php endif ?>
                        </div>
                        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <strong>
									<?php
									echo JText::_('SR_YOUR_SEARCH_INFORMATION_CHECKOUT') . ' ' .
										JDate::getInstance($reservationDetails->checkout, $timezone)
											->format($dateFormat, true) ?>
                                </strong>
                            </div>
                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <strong>
									<?php echo JText::_('SR_CONFIRMATION_EMAIL') .
										$reservationDetails->guest['customer_email'] ?>
                                </strong>
                            </div>
                        </div>
                        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <strong>
									<?php
									echo JText::_('SR_CONFIRMATION_PAYMENT_METHOD') . ' ' .
										JText::_('SR_PAYMENT_METHOD_' . $reservationDetails->guest['payment_method_id']); ?>
                                </strong>
                            </div>
                            <div class="<?php echo SR_UI_GRID_COL_6 ?>">
                                <strong>
									<?php
									echo JText::_('SR_CONFIRMATION_MOBILE') . ' ' .
										$reservationDetails->guest['customer_mobilephone']; ?>
                                </strong>
                            </div>
                        </div>

					<?php endif ?>

                    <table class="table table-bordered">
                        <tbody>
						<?php
						// Room cost
						$extraList                      = array();
						foreach ($roomTypes as $roomTypeId => $roomTypeDetails) :
							foreach ($roomTypeDetails['rooms'] as $tariffId => $roomDetails) :
								$tariffType = SRUtilities::getTariffType($tariffId);
								$isBookingWholeRoomType = false;
								$rowspan                = 0;
								if ($tariffType == PER_ROOM_TYPE_PER_STAY) :
									$isBookingWholeRoomType = true;
									$rowspan                = count($roomTypeDetails['rooms'][$tariffId]);
								endif;

								$roomIndexCount = 1;
								foreach ($roomDetails as $roomIndex => $roomCost) :
									$hasDiscount = false;
									if ($roomCost['currency']['total_discount'] > 0) :
										$hasDiscount = true;
									endif;

									$skipCost = false;
									if ($isBookingWholeRoomType && $roomIndexCount > 1) :
										$skipCost = true;
									endif;

									$roomInfo = $reservationDetails->room['room_types'][$roomTypeId][$tariffId][$roomIndex];

									// Build a per room extra list array
									if (isset($roomInfo['extras']) && is_array($roomInfo['extras'])) :
										foreach ($roomInfo['extras'] as $extraItemKey => $extraItemDetails) :
											$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['room_type_name'] = $roomTypeDetails['name'];
											$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['name']           = $extraItemDetails['name'];
											$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['quantity']       = $extraItemDetails['quantity'];
											$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency']       = clone $currency;
											$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency']->setValue($extraItemDetails['total_extra_cost_tax_' . ($showRoomTax ? 'excl' : 'incl')]);
											$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency_tax'] = clone $currency;
											$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency_tax']->setValue($extraItemDetails['total_extra_cost_tax_incl'] - $extraItemDetails['total_extra_cost_tax_excl']);
										endforeach;
									endif;
									?>
                                    <tr>
                                        <td>
											<?php echo JText::_('SR_ROOM') . ': ' ?>
											<?php echo $roomTypeDetails["name"] ?>

                                            <a href="javascript:void(0)" class="toggle_room_confirmation"
                                               <?php echo $roomTypeDetails['is_exclusive'] && $roomTypeDetails['skip_room_form'] ? 'style="display: none"' : '' ?>
                                               data-target="<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $roomIndex ?>">
												<?php echo JText::_('SR_CONFIRMATION_ROOM_DETAILS') ?>
                                            </a>

											<?php if ($isBookingWholeRoomType) : ?>
                                                <p><?php echo !empty($roomCost['currency']['title']) ? '(' . $roomCost['currency']['title'] . ')' : '' ?></p>
											<?php endif ?>

                                            <ul id="rc_<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $roomIndex ?>_confirmation"
                                                style="display: none">
												<?php if (!empty($roomInfo['guest_fullname'])) : ?>
                                                    <li><?php echo JText::_('SR_CONFIRMATION_GUEST_NAME') . ': ' . $roomInfo['guest_fullname'] ?></li>
												<?php endif; ?>
                                                <li><?php echo JText::_('SR_CONFIRMATION_ADULT_NUMBER') . ': ' . (isset($roomInfo['adults_number']) ? $roomInfo['adults_number'] : 0) ?></li>
												<?php if (!empty($roomInfo['children_number'])) : ?>
                                                    <li><?php echo JText::_('SR_CONFIRMATION_CHILD_NUMBER') . ': ' . $roomInfo['children_number'] ?></li>
												<?php endif ?>
                                            </ul>
                                        </td>

                                        <td>
											<?php
											if (0 == $bookingType) :
												echo JText::plural("SR_NIGHTS", $stayLength);
											else :
												echo JText::plural("SR_DAYS", $stayLength + 1);
											endif;
											?>
                                        </td>

										<?php if (!$isGuestMakingReservation) : ?>
                                            <td class="sr-align-right">
                                                <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                                <span class="add-on input-group-addon">
                                                    <?php echo JText::_('SR_AMENDED_PRICE') ?>
                                                    <?php
                                                    if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
	                                                    echo '(' . $currencyCode . ')';
                                                    endif;
                                                    ?>
                                                </span>
                                                    <input type="text"
                                                           class="total_price_tax_excl_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                           value="<?php
													       if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
														       echo $roomCost['currency']['total_price_tax_excl_formatted']->getValue(true, true);
													       endif;
													       ?>"
                                                           name="jform[override_cost][room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $roomIndex ?>][total_price_tax_excl]"/>
                                                </div>
                                                <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                                <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_TAX') ?>
	                                                <?php
	                                                if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
		                                                echo '(' . $currencyCode . ')';
	                                                endif;
	                                                ?>
                                                    </span>
                                                    <input type="text"
                                                           class="room_price_tax_amount_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                           value="<?php
													       if (isset($roomCost['currency']['total_price_tax_incl_formatted'])) :
														       echo $roomCost['currency']['total_price_tax_incl_formatted']->getValue(true, true) - $roomCost['currency']['total_price_tax_excl_formatted']->getValue(true, true);
													       endif;
													       ?>"
                                                           name="jform[override_cost][room_types][<?php echo $roomTypeId ?>][<?php echo $tariffId ?>][<?php echo $roomIndex ?>][tax_amount]"/>
                                                </div>
                                            </td>
										<?php else :
											if (!$isBookingWholeRoomType || ($isBookingWholeRoomType && $roomIndexCount == 1)) :
												?>
                                                <td class="sr-align-right" <?php echo $isBookingWholeRoomType ? 'rowspan="' . $rowspan . '" style="vertical-align: middle"' : '' ?>>
													<?php
													if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
														echo $roomCost['currency']['total_price_tax_excl_formatted']->format();
													endif;
													?>
                                                </td>
											<?php
											endif;
										endif;
										?>
                                    </tr>
									<?php
									$roomIndexCount++;
								endforeach;
							endforeach;
						endforeach;

						// Total room cost
						$totalRoomCost = clone $currency;
						$totalRoomCost->setValue($cost['total_price_tax_' . ($showRoomTax ? 'excl' : 'incl')]);
						?>

                        <tr class="nobordered first">
                            <td colspan="2" class="sr-align-right">
								<?php echo JText::_("SR_TOTAL_ROOM_COST_TAX_" . ($showRoomTax ? 'EXCL' : 'INCL')) ?>
                            </td>
                            <td class="sr-align-right noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="total_price_tax_excl grand_total_sub" val="<?php echo $totalRoomCost->getValue(true, true) ?>"><?php echo $totalRoomCost->getValue(true, true) ?></span>
								<?php else : ?>
									<?php echo $totalRoomCost->format() ?>
								<?php endif ?>
                            </td>
                        </tr>

						<?php
						// In case of pre tax discount
						if ($isDiscountPreTax && ($cost['total_discount'] > 0 || !$isGuestMakingReservation)) :
							$totalDiscount = null;
                            if ($cost['total_discount'] > 0) :
	                            $totalDiscount = clone $currency;
							    $totalDiscount->setValue($cost['total_discount']);
                            endif;

						    if (isset($currentReservationData)) :
                                $totalDiscountCurrent =  clone $currency;
                                $totalDiscountCurrent->setValue($currentReservationData->total_discount);
						    endif;
							?>
                            <tr class="nobordered">
                                <td colspan="2" class="sr-align-right">
									<?php echo JText::_("SR_TOTAL_DISCOUNT") ?>
                                </td>
                                <td class="sr-align-right noleftborder">
									<?php if (!$isGuestMakingReservation) : ?>
                                        <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                            <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                            <input type="text"
                                                   class="total_discount grand_total_sub <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                   value="<?php echo isset($totalDiscount) ? '-' . $totalDiscount->getValue(true, true) : '-0' ?>"
                                                   name="jform[override_cost][total_discount]"/>
                                        </div>
                                        <?php if (isset($currentReservationData) && $currentReservationData->total_discount > 0) : ?>
                                        <p class=""><?php echo JText::sprintf('SR_DISCOUNT_NOTICE', $totalDiscountCurrent->format()) ?></p>
                                        <?php endif ?>
									<?php else : ?>
										<?php echo $cost['total_discount'] > 0 ? '-' . $totalDiscount->format() : ''?>
									<?php endif ?>
                                </td>
                            </tr>
						<?php
						endif;

						// Imposed taxes
						if ($showRoomTax) :
							$taxItem = clone $currency;
							$taxItem->setValue($cost['tax_amount']);
							?>
                            <tr class="nobordered">
                                <td colspan="2" class="sr-align-right">
									<?php echo JText::_('SR_TOTAL_ROOM_TAX') ?>
                                </td>
                                <td class="sr-align-right noleftborder">
									<?php if (!$isGuestMakingReservation) : ?>
                                        <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                            <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                            <input type="text"
                                                   class="tax_amount grand_total_sub <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                   value="<?php echo $taxItem->getValue(true, true) ?>"
                                                   name="jform[override_cost][tax_amount]"/>
                                        </div>
									<?php else : ?>
										<?php echo $taxItem->format() ?>
									<?php endif ?>
                                </td>
                            </tr>
						<?php
						endif;

						// In case of after tax discount
						if (!$isDiscountPreTax && ($cost['total_discount'] > 0 || !$isGuestMakingReservation)) :
							$totalDiscount = null;
                            if ($cost['total_discount'] > 0) :
	                            $totalDiscount = clone $currency;
							    $totalDiscount->setValue($cost['total_discount']);
                            endif;

                            if (isset($currentReservationData)) :
                                $totalDiscountCurrent = clone $currency;
                                $totalDiscountCurrent->setValue($currentReservationData->total_discount);
							endif;
							?>
                            <tr class="nobordered">
                                <td colspan="2" class="sr-align-right">
									<?php echo JText::_("SR_TOTAL_DISCOUNT") ?>
                                </td>
                                <td class="sr-align-right noleftborder">
									<?php if (!$isGuestMakingReservation) : ?>
                                        <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                            <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                            <input type="text"
                                                   class="total_discount grand_total_sub <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                   value="<?php echo isset($totalDiscount) ?  '-' . $totalDiscount->getValue(true, true) : '-0' ?>"
                                                   name="jform[override_cost][total_discount]"/>
                                        </div>
										<?php if (isset($currentReservationData) && $currentReservationData->total_discount > 0) : ?>
                                            <p class=""><?php echo JText::sprintf('SR_DISCOUNT_NOTICE', $totalDiscountCurrent->format()) ?></p>
										<?php endif ?>
									<?php else : ?>
										<?php echo $cost['total_discount'] > 0 ? '-' . $totalDiscount->format() : '' ?>
									<?php endif ?>
                                </td>
                            </tr>
						<?php
						endif;

						// Per room extra list
						if (!empty($extraList)) :
							foreach ($extraList as $extraRoomTypeId => $extraRoomTypeTariffs) :
								foreach ($extraRoomTypeTariffs as $extraTariffId => $extraRooms) :
									foreach ($extraRooms as $extraRoomIndex => $extraRoomExtras) :
										foreach ($extraRoomExtras as $extraRoomExtraKey => $extraRoomExtraDetails) :
											foreach ($extraRoomExtraDetails as $extraRoomExtraId => $extraRoomExtraIdDetails) :
												?>
                                                <tr class="extracost_confirmation" style="display: none">
                                                    <td>
                                                        <p>
															<?php echo JText::_('SR_EXTRA') . ': ' ?><?php echo $extraRoomExtraIdDetails['name'] ?>
                                                        </p>
                                                        <p>
															<?php echo JText::_('SR_ROOM') . ': ' ?><?php echo $extraRoomExtraIdDetails['room_type_name'] ?>
                                                        </p>
                                                    </td>
                                                    <td>
														<?php echo $extraRoomExtraIdDetails['quantity'] ?>
                                                    </td>
                                                    <td class="sr-align-right ">
														<?php if (!$isGuestMakingReservation) : ?>
                                                            <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                                                <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_PRICE') ?>
                                                                    (<?php echo $currencyCode ?>
                                                                    )</span>
                                                                <input class="extra_price_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                                       type="text"
                                                                       value="<?php echo $extraRoomExtraIdDetails['currency']->getValue(true, true) ?>"
                                                                       name="jform[override_cost][room_types][<?php echo $extraRoomTypeId ?>][<?php echo $extraTariffId ?>][<?php echo $extraRoomIndex ?>][extras][<?php echo $extraRoomExtraId ?>][price]"/>
                                                            </div>
                                                            <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                                                <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_TAX') ?>
                                                                    (<?php echo $currencyCode ?>
                                                                    )</span>
                                                                <input class="extra_tax_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                                       type="text"
                                                                       value="<?php echo $extraRoomExtraIdDetails['currency_tax']->getValue(true, true) ?>"
                                                                       name="jform[override_cost][room_types][<?php echo $extraRoomTypeId ?>][<?php echo $extraTariffId ?>][<?php echo $extraRoomIndex ?>][extras][<?php echo $extraRoomExtraId ?>][tax_amount]"/>
                                                            </div>
														<?php else : ?>
															<?php echo $extraRoomExtraIdDetails['currency']->format() ?>
														<?php endif ?>
                                                    </td>
                                                </tr>
											<?php
											endforeach;
										endforeach;
									endforeach;
								endforeach;
							endforeach;
						endif;

						// Per booking extra list
						$perBookingExtraList = isset($reservationDetails->guest['extras']) ? $reservationDetails->guest['extras'] : array();

						foreach ($perBookingExtraList as $perBookingExtraId => $perBookingExtraDetails) :
							?>
                            <tr class="extracost_confirmation" style="display: none">
                                <td>
                                    <p>
										<?php echo JText::_('SR_EXTRA') . ': ' ?><?php echo $perBookingExtraDetails['name'] ?>
                                    </p>
                                    <p>
										<?php echo JText::_('SR_EXTRA_PER_BOOKING') ?>
                                    </p>
                                </td>
                                <td>
									<?php echo $perBookingExtraDetails['quantity'] ?>
                                </td>
                                <td class="sr-align-right ">
									<?php
									$perBookingExtraCurrency = clone $currency;
									$perBookingExtraCurrency->setValue($perBookingExtraDetails['total_extra_cost_tax_excl']);
									$perBookingExtraCurrencyTax = clone $currency;
									$perBookingExtraCurrencyTax->setValue($perBookingExtraDetails['total_extra_cost_tax_incl'] - $perBookingExtraDetails['total_extra_cost_tax_excl']);
									?>
									<?php if (!$isGuestMakingReservation) : ?>
                                        <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                            <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_PRICE') ?>
                                                (<?php echo $currencyCode ?>)</span>
                                            <input class="extra_price_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                   type="text"
                                                   value="<?php echo $perBookingExtraCurrency->getValue(true, true) ?>"
                                                   name="jform[override_cost][extras_per_booking][<?php echo $perBookingExtraId ?>][price]"/>
                                        </div>
                                        <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                            <span class="add-on input-group-addon"><?php echo JText::_('SR_AMENDED_TAX') ?>
                                                (<?php echo $currencyCode ?>)</span>
                                            <input class="extra_tax_single_line <?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                   type="text"
                                                   value="<?php echo $perBookingExtraCurrencyTax->getValue(true, true) ?>"
                                                   name="jform[override_cost][extras_per_booking][<?php echo $perBookingExtraId ?>][tax_amount]"/>
                                        </div>
									<?php else : ?>
										<?php echo $perBookingExtraCurrency->format() ?>
									<?php endif ?>
                                </td>
                            </tr>
						<?php
						endforeach;

						// Extra cost
						$totalExtraCost = clone $currency;
						$totalExtraCostTaxAmount = clone $currency;
						$totalExtraCost->setValue($showRoomTax ? $totalRoomTypeExtraCostTaxExcl : $totalRoomTypeExtraCostTaxIncl);
						$totalExtraCostTaxAmount->setValue($totalRoomTypeExtraCostTaxIncl - $totalRoomTypeExtraCostTaxExcl, $reservationDetails->currency_id);

						if ($totalExtraCost->getValue() > 0) :
							?>
                            <tr class="nobordered extracost_row">
                                <td colspan="2" class="sr-align-right">
                                    <a href="javascript:void(0)" class="toggle_extracost_confirmation">
										<?php echo JText::_('SR_TOTAL_EXTRA_COST_TAX_' . ($showRoomTax ? 'EXCL' : 'INCL')) ?>
                                    </a>
                                </td>
                                <td id="total-extra-cost" class="sr-align-right noleftborder">
									<?php if (!$isGuestMakingReservation) : ?>
                                        <span class="add-on"><?php echo $currencyCode ?></span>
                                        <span class="total_extra_price grand_total_sub" val="<?php echo $totalExtraCost->getValue(true, true) ?>"><?php echo $totalExtraCost->getValue(true, true) ?></span>
									<?php else : ?>
										<?php echo $totalExtraCost->format() ?>
									<?php endif ?>
                                </td>
                            </tr>

							<?php if ($showRoomTax) : ?>
                            <tr class="nobordered">
                                <td colspan="2" class="sr-align-right">
									<?php echo JText::_("SR_TOTAL_EXTRA_COST_TAX_AMOUNT") ?>
                                </td>
                                <td id="total-extra-cost" class="sr-align-right noleftborder">
									<?php if (!$isGuestMakingReservation) : ?>
                                        <span class="add-on"><?php echo $currencyCode ?></span>
                                        <span class="total_extra_tax grand_total_sub" val="<?php echo $totalExtraCostTaxAmount->getValue(true, true) ?>"><?php echo $totalExtraCostTaxAmount->getValue(true, true) ?></span>
									<?php else : ?>
										<?php echo $totalExtraCostTaxAmount->format() ?>
									<?php endif ?>
                                </td>
                            </tr>
						<?php endif ?>
						<?php
						endif;

						// Tourist tax cost
						if ($cost['tourist_tax_amount'] > 0) :
							$touristTaxAmount = clone $currency;
							$touristTaxAmount->setValue($cost['tourist_tax_amount']);
							?>
                            <tr class="nobordered">
                                <td colspan="2" class="sr-align-right">
									<?php echo JText::_("SR_TOURIST_TAX_AMOUNT") ?>
                                </td>
                                <td class="sr-align-right noleftborder">
									<?php if (!$isGuestMakingReservation) : ?>
                                        <span class="add-on"><?php echo $currencyCode ?></span>
                                        <span class="tourist_tax_amount grand_total_sub" val="<?php echo $touristTaxAmount->getValue(true, true) ?>"><?php echo $touristTaxAmount->getValue(true, true) ?></span>
									<?php else : ?>
										<?php echo $touristTaxAmount->format() ?>
									<?php endif ?>
                                </td>
                            </tr>
						<?php
						endif;

						// Grand total cost
						if ($isDiscountPreTax) :
							$grandTotalAmount = $cost['total_price_tax_excl_discounted'] + $cost['tax_amount'] + $totalRoomTypeExtraCostTaxIncl;
						else :
							$grandTotalAmount = $cost['total_price_tax_excl'] + $cost['tax_amount'] - $cost['total_discount'] + $totalRoomTypeExtraCostTaxIncl;
						endif;

						if ($cost['tourist_tax_amount'] > 0) :
							$grandTotalAmount += $cost['tourist_tax_amount'];
						endif;

						$grandTotal = clone $currency;
						$grandTotal->setValue($grandTotalAmount);

						?>
                        <tr class="nobordered">
                            <td colspan="2" class="sr-align-right">
                                <strong><?php echo JText::_("SR_GRAND_TOTAL") ?></strong>
                            </td>
                            <td class="sr-align-right gra noleftborder">
								<?php if (!$isGuestMakingReservation) : ?>
                                    <span class="add-on"><?php echo $currencyCode ?></span>
                                    <span class="grand_total"><?php echo $grandTotal->getValue(true, true) ?></span>
								<?php else : ?>
                                    <strong><?php echo $grandTotal->format() ?></strong>
								<?php endif ?>
                            </td>
                        </tr>

						<?php
						// Deposit amount, if enabled
						$deposit            = null;
						if (isset($reservationDetails->deposit)):
							$deposit = $reservationDetails->deposit;
						endif;

						if (isset($deposit) && isset($deposit['deposit_amount'])) :
							$depositTotalAmount = clone $currency;
							$depositTotalAmount->setValue($deposit['deposit_amount']);
							$dueTotalAmount = clone $currency;
							$dueTotalAmount->setValue($grandTotalAmount - $deposit['deposit_amount'])
							?>
                            <tr class="nobordered">
                                <td colspan="2" class="sr-align-right">
                                    <strong><?php echo JText::_("SR_DEPOSIT_AMOUNT") ?></strong>
                                </td>
                                <td class="sr-align-right gra noleftborder">
									<?php if (!$isGuestMakingReservation) : ?>
                                        <div class="<?php echo SR_UI_INPUT_PREPEND ?>">
                                            <span class="add-on input-group-addon"><?php echo $currencyCode ?></span>
                                            <input type="text"
                                                   class="<?php echo 'bs3' == SR_UI ? 'form-control' : '' ?>"
                                                   value="<?php echo $depositTotalAmount->getValue(true, true) ?>"
                                                   name="jform[override_cost][deposit_amount]"/>
                                        </div>
									<?php else : ?>
                                        <strong><?php echo $depositTotalAmount->format() ?></strong>
									<?php endif ?>
                                </td>
                            </tr>
						<?php
						endif;

						// Payment method surcharge cost
						if (isset($reservationDetails->guest['payment_method_id'])) :
							$paymentMethodLabel = JText::_("SR_PAYMENT_METHOD_" . $reservationDetails->guest['payment_method_id']);
						endif;
						if ($cost['payment_method_surcharge'] > 0) :
							$paymentMethodSurchargeAmount = clone $currency;
							$paymentMethodSurchargeAmount->setValue($cost['payment_method_surcharge']);
							?>
                            <tr class="nobordered">
                                <td colspan="2" class="sr-align-right">
									<?php echo JText::sprintf("SR_PAYMENT_METHOD_SURCHARGE_AMOUNT", $paymentMethodLabel) ?>
                                </td>
                                <td class="sr-align-right noleftborder">
									<?php if (!$isGuestMakingReservation) : ?>
                                        <span class="add-on"><?php echo $currencyCode ?></span>
                                        <span class="payment_surcharge_amount"><?php echo $paymentMethodSurchargeAmount->getValue(true, true) ?></span>
									<?php else : ?>
										<?php echo $paymentMethodSurchargeAmount->format() ?>
									<?php endif ?>
                                </td>
                            </tr>
						<?php
						endif;

						// Payment method discount cost
						if ($cost['payment_method_discount'] > 0) :
							$paymentMethodDiscountAmount = clone $currency;
							$paymentMethodDiscountAmount->setValue($cost['payment_method_discount']);
							?>
                            <tr class="nobordered">
                                <td colspan="2" class="sr-align-right">
									<?php echo JText::sprintf("SR_PAYMENT_METHOD_DISCOUNT_AMOUNT", $paymentMethodLabel) ?>
                                </td>
                                <td class="sr-align-right noleftborder">
									<?php if (!$isGuestMakingReservation) : ?>
                                        <span class="add-on"><?php echo $currencyCode ?></span>
                                        <span class="payment_discount_amount"><?php echo $paymentMethodDiscountAmount->getValue(true, true) ?></span>
									<?php else : ?>
										<?php echo '-' . $paymentMethodDiscountAmount->format() ?>
									<?php endif ?>
                                </td>
                            </tr>
						<?php endif; ?>

						<?php
						if ($deposit['deposit_amount']) :
							// Only show total due for guest
							if ($isGuestMakingReservation) : ?>
                                <tr class="nobordered">
                                    <td colspan="2" class="sr-align-right">
                                        <strong><?php echo JText::_("SR_DUE_AMOUNT") ?></strong>
                                    </td>
                                    <td class="sr-align-right gra noleftborder">
                                        <strong><?php echo $dueTotalAmount->format() ?></strong>
                                    </td>
                                </tr>
							<?php endif ?>
						<?php endif;?>

						<?php if (!empty($recaptcha)): ?>
                            <tr class="nobordered">
                                <td colspan="3">
	                                <?php echo $recaptcha; ?>
                                </td>
                            </tr>
						<?php endif; ?>

                        <?php
						// Terms and conditions
						if ($isGuestMakingReservation) :
							$bookingConditionsLink = JRoute::_(ContentHelperRoute::getArticleRoute($reservationDetails->booking_conditions));
							$privacyPolicyLink = JRoute::_(ContentHelperRoute::getArticleRoute($reservationDetails->privacy_policy));
							?>
                            <tr class="nobordered termsandconditions">
                                <td colspan="3">
                                    <p>
                                        <input type="checkbox" id="termsandconditions" data-target="finalbutton"/>
										<?php echo JText::_('SR_I_AGREE_WITH') ?>
                                        <a target="_blank"
                                           href="<?php echo $bookingConditionsLink ?>"><?php echo JText::_('SR_BOOKING_CONDITIONS') ?></a> <?php echo JText::_('SR_AND') ?>
                                        <a target="_blank"
                                           href="<?php echo $privacyPolicyLink ?>"><?php echo JText::_('SR_PRIVACY_POLICY') ?></a>
                                    </p>
                                </td>
                            </tr>
						<?php else : ?>
                            <tr class="nobordered sendoutgoingemails">
                                <td colspan="3">
                                    <p>
                                        <input type="checkbox" name="jform[sendoutgoingemails]" id="sendoutgoingemails"
                                               checked/>
										<?php echo JText::_('SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS') ?>
                                    </p>
                                </td>
                            </tr>
						<?php endif; ?>
                        </tbody>
                    </table>
                </div>
            </div>
            <input type="hidden" name="id" value="<?php echo $assetId ?>"/>
        </div>
    </div>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
            <div class="inner">
				<?php if ($isGuestMakingReservation) : ?>
                    <p><?php echo JText::_("SR_RESERVATION_NOTICE_CONFIRMATION") ?></p>
				<?php endif ?>
            </div>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button type="button" class="btn btn-default reservation-navigate-back" data-step="confirmation"
                            data-prevstep="guestinfo">
                        <i class="fa fa-arrow-left"></i> <?php echo JText::_('SR_BACK') ?>
                    </button>
                    <button <?php echo $isGuestMakingReservation ? 'disabled ' : '' ?> data-step="confirmation"
                                                                                       type="submit"
                                                                                       class="btn btn-default btn-success">
                        <i class="fa fa-check"></i> <?php echo JText::_('SR_BUTTON_RESERVATION_FINAL_SUBMIT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>

	<?php echo JHtml::_("form.token") ?>
</form>
layouts/asset/checkinoutform_style1.php000060400000006046150751740420014424 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/checkinoutform_style1.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

?>

<div class="inner">
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
            <label for="checkin_roomtype">
				<?php echo JText::_('SR_SEARCH_CHECKIN_DATE') ?>
            </label>
            <div class="checkin_roomtype datefield" data-placeholder="<?php echo JText::_('SR_CHECKIN_PLACEHOLDER') ?>">
				<?php echo JText::_('SR_CHECKIN_PLACEHOLDER') ?>
                <i class="fa fa-calendar"></i>
            </div>
            <div class="checkin_datepicker_inline datepicker_inline" style="display: none"></div>
			<?php // this field must always be "Y-m-d" as it is used internally only ?>
            <input type="hidden" name="checkin" value=""/>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
            <label for="checkout_roomtype">
				<?php echo JText::_('SR_SEARCH_CHECKOUT_DATE') ?>
            </label>
            <div class="checkout_roomtype datefield disabledCalendar"
                 data-placeholder="<?php echo JText::_('SR_CHECKOUT_PLACEHOLDER') ?>">
				<?php echo JText::_('SR_CHECKOUT_PLACEHOLDER') ?>
                <i class="fa fa-calendar"></i>
            </div>
            <div class="checkout_datepicker_inline datepicker_inline" style="display: none"></div>
			<?php // this field must always be "Y-m-d" as it is used internally only ?>
            <input type="hidden" name="checkout" value=""/>
        </div>
    </div>
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <input type="hidden" name="fts" value="<?php echo time() ?>"/>

            <button type="button"
                    class="btn btn-block btn-primary primary searchbtn"
                    data-roomtypeid="<?php echo $displayData['roomTypeId'] ?>"
                    data-tariffid="<?php echo $displayData['tariff']->id ?>"
                    disabled>
                <i class="fa fa-search "></i> <?php echo JText::_('SR_SEARCH') ?>
            </button>
        </div>
    </div>
</div>layouts/asset/rooms_style2.php000060400000053151150751740420012543 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/rooms_style2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

$isFrontEnd = JFactory::getApplication()->isClient('site');
?>

<form enctype="multipart/form-data"
      id="sr-reservation-form-room"
      class="sr-reservation-form"
      action="index.php?option=com_solidres&task=reservation<?php echo $isFrontEnd ? '' : 'base' ?>.process&step=room&format=json"
      method="POST">
	<?php
	foreach ($roomTypes as $roomType) :
		?>
        <h3>
            <span class="label label-info"><?php echo $roomType->occupancy_max > 0 ? $roomType->occupancy_max : (int) $roomType->occupancy_adult + (int) $roomType->occupancy_child ?>
                <i class="fa fa-user"></i></span> <?php echo $roomType->name ?>
        </h3>
		<?php if (!empty($roomType->rooms)) :
		$itemPerRow = 2;
		$spanNum = 12 / (int) $itemPerRow;
		$totalRoomCount = count($roomType->rooms);
		for ($count = 0; $count <= $totalRoomCount; $count++) :
			if ($count % $itemPerRow == 0 && $count == 0) :
				echo '<div class="' . SR_UI_GRID_CONTAINER . '">';
            elseif ($count % $itemPerRow == 0 && $count != $totalRoomCount) :
				echo '</div><div class="' . SR_UI_GRID_CONTAINER . '">';
            elseif ($count == $totalRoomCount) :
				echo '</div>';
			endif;

			if ($count < $totalRoomCount) :
				$currentRoomIndex = null;
				$arrayHolder = 'xtariffidx';
				$room = $roomType->rooms[$count];
				if (isset($currentReservationData->reserved_room_details[$room->id])) :
					$currentRoomIndex = (array) $currentReservationData->reserved_room_details[$room->id];
					$arrayHolder      = $currentRoomIndex['tariff_id'];
				endif;
				$identity = $roomType->id . '_' . (isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : $arrayHolder) . '_' . $room->id;

				$checked  = '';
				$disabled = !$room->isAvailable && !$room->isReservedForThisReservation ? 'disabled' : '';

				if (!$room->isAvailable || $room->isReservedForThisReservation) :
					$checked = 'checked';
				endif;

				// Html for adult selection
				$htmlAdultSelection = '';
				$htmlAdultSelection .= '<option value="">' . JText::_('SR_ADULT') . '</option>';

				for ($j = 1; $j <= $roomType->occupancy_adult; $j++) :
					$selected = '';
					if (isset($currentRoomIndex['adults_number'])) :
						$selected = $currentRoomIndex['adults_number'] == $j ? 'selected' : '';
					else :
						if ($j == 1) :
							$selected = 'selected';
						endif;
					endif;
					$htmlAdultSelection .= '<option ' . $selected . ' value="' . $j . '">' . JText::plural('SR_SELECT_ADULT_QUANTITY', $j) . '</option>';
				endfor;

				// Html for children selection
				$htmlChildSelection = '';
				$htmlChildrenAges   = '';
				if (!isset($roomType->params['show_child_option'])) :
					$roomType->params['show_child_option'] = 1;
				endif;

				// Only show child option if it is enabled and the child quantity > 0
				if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) :
					$htmlChildSelection .= '';
					$htmlChildSelection .= '<option value="">' . JText::_('SR_CHILD') . '</option>';

					for ($j = 1; $j <= $roomType->occupancy_child; $j++) :
						if (isset($currentRoomIndex['children_number'])) :
							$selected = $currentRoomIndex['children_number'] == $j ? 'selected' : '';
						endif;
						$htmlChildSelection .= '
			<option ' . $selected . ' value="' . $j . '">' . JText::plural('SR_SELECT_CHILD_QUANTITY', $j) . '</option>
		';
					endfor;

					// Html for children ages
					// Restructure to match front end
					if (is_array($currentRoomIndex['other_info'])) :
						foreach ($currentRoomIndex['other_info'] as $info) :
							if (substr($info->key, 0, 5) == 'child') :
								$currentRoomIndex['children_ages'][] = $info->value;
							endif;
						endforeach;
					endif;

					if (isset($currentRoomIndex['children_ages'])) :
						for ($j = 0; $j < count($currentRoomIndex['children_ages']); $j++) :
							$htmlChildrenAges .= '
				<li>
					' . JText::_('SR_CHILD') . ' ' . ($j + 1) . '
					<select name="jform[room_types][' . $roomType->id . '][' . $arrayHolder . '][' . $room->id . '][children_ages][]"
						data-raid="' . $raid . '"
						data-roomtypeid="' . $roomType->id . '"
						data-roomid="' . $room->id . '"
						class="' . SR_UI_GRID_COL_6 . ' child_age_' . $roomType->id . '_' . $arrayHolder . '_' . $room->id . '_' . $j . ' trigger_tariff_calculating"
						required
					>';
							$htmlChildrenAges .= '<option value=""></option>';
							for ($age = 1; $age <= $childMaxAge; $age++) :
								$selectedAge = '';
								if ($age == $currentRoomIndex['children_ages'][$j]) :
									$selectedAge = 'selected';
								endif;
								$htmlChildrenAges .= '<option ' . $selectedAge . ' value="' . $age . '">' . JText::plural('SR_CHILD_AGE_SELECTION', $age) . '</option>';
							endfor;

							$htmlChildrenAges .= '
					</select>
				</li>';
						endfor;
					endif;
				endif;
				?>
                <div class="<?php echo constant('SR_UI_GRID_COL_' . $spanNum) ?> room-form" id="room<?php echo $room->id ?>">
                    <dl class="room_selection_wrapper room-form-item">
                        <dt>
                            <label class="checkbox">
                                <input type="checkbox"
                                       value="<?php echo $room->id ?>"
                                       class="reservation_room_select"
                                       name="jform[reservation_room_select][]" <?php echo $checked ?> <?php echo $disabled ?> />
                                <span class="label <?php echo $room->isReservedForThisReservation ? 'label-success' : '' ?>">
										<?php echo $room->label ?>
									</span>
                            </label>
                            <table class="table table-condensed table-bordered"
                                   style="<?php echo $room->isReservedForThisReservation ? '' : 'display: none;' ?>">
                                <tbody>
                                <tr>
                                    <td>
										<?php echo JText::_('SR_AMEND_RESERVATION_TARIFF_CURRENT') ?>
                                    </td>
                                    <td class="sr-align-right">
										<?php
										if ($room->isReservedForThisReservation) :
											$tmpCurrency = clone $currency;
											$tmpCurrency->setValue($currentRoomIndex['room_price_tax_incl']);
											echo $tmpCurrency->format();
										else :
											echo 0;
										endif;
										?>
                                    </td>
                                </tr>
                                <tr>
                                    <td>
										<?php echo JText::_('SR_AMEND_RESERVATION_TARIFF_NEW') ?>
                                    </td>
                                    <td class="sr-align-right">
                                        <a href="javascript:void(0)"
                                           class="toggle_breakdown tariff_breakdown_<?php echo $room->id ?>"
                                           data-target="<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?>"
                                           style="display: none"
                                        >
											<?php echo JText::_('SR_VIEW_TARIFF_BREAKDOWN') ?>
                                        </a>
                                        <span
                                                class="tariff_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?> tariff_breakdown_<?php echo $room->id ?>"
                                                style=""
                                        >
													0
												</span>
                                    </td>
                                </tr>
                                </tbody>
                            </table>
                            <span style="display: none"
                                  class="breakdown"
                                  id="breakdown_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?>">

								</span>
                        </dt>
                        <dd class="room_selection_details" id="room_selection_details_<?php echo $room->id ?>"
                            style="<?php echo $room->isReservedForThisReservation ? '' : 'display: none;' ?>">
                            <select
                                    name="jform[ignore]"
                                    data-roomid="<?php echo $room->id ?>"
                                    class="<?php echo SR_UI_GRID_COL_6 ?> tariff_selection" <?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
								<?php echo $room->isReservedForThisReservation ? '' : 'required' ?>
                            >
                                <option value=""><?php echo JText::_('SR_AMEND_RESERVATION_CHOOSE_TARIFF') ?></option>
								<?php
								foreach ($roomType->availableTariffs as $tariffKey => $tariffInfo) :
									$selected_tariff = '';
									if (isset($currentRoomIndex['tariff_id']) && $tariffKey == $currentRoomIndex['tariff_id']) :
										//$selected_tariff = 'selected';
									endif;
									?>
                                    <option data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
										<?php echo $selected_tariff ?>
                                            value="<?php echo $tariffKey ?>"
                                    >
										<?php echo empty($tariffInfo['tariffTitle']) ? JText::_('SR_STANDARD_TARIFF') : $tariffInfo['tariffTitle'] ?>
                                    </option>
								<?php endforeach ?>
                            </select>
                            <input type="text"
                                   name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $arrayHolder ?>][<?php echo $room->id ?>][guest_fullname]"
                                   class="<?php echo SR_UI_GRID_COL_6 ?> guest_fullname"
                                   placeholder="<?php echo JText::_('SR_GUEST_NAME') ?>"
                                   value="<?php echo $currentRoomIndex['guest_fullname'] ?>"
								<?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
                            />
                            <select
                                    data-roomtypeid="<?php echo $roomType->id ?>"
                                    data-tariffid="<?php echo isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : '' ?>"
                                    data-adjoininglayer=""
                                    data-roomid="<?php echo $room->id ?>"
                                    data-max="<?php echo $roomType->occupancy_max ?>"
                                    name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $arrayHolder ?>][<?php echo $room->id ?>][adults_number]"
                                    required
                                    data-identity="<?php echo $identity ?>"
                                    class="<?php echo SR_UI_GRID_COL_6 ?> adults_number occupancy_max_constraint occupancy_max_constraint_<?php echo $room->id ?>_<?php echo $arrayHolder ?>_<?php echo $roomType->id ?> occupancy_adult_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?> trigger_tariff_calculating"
								<?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
                            >
								<?php echo $htmlAdultSelection ?>
                            </select>
							<?php if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) : ?>
                                <select
                                        data-roomtypeid="<?php echo $roomType->id ?>"
                                        data-tariffid="<?php echo isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : '' ?>"
                                        data-adjoininglayer=""
                                        data-roomid="<?php echo $room->id ?>"
                                        data-max="<?php echo $roomType->occupancy_max ?>"
                                        data-identity="<?php echo $identity ?>"
                                        name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $arrayHolder ?>][<?php echo $room->id ?>][children_number]"
                                        class="<?php echo SR_UI_GRID_COL_6 ?> children_number occupancy_max_constraint occupancy_max_constraint_<?php echo $room->id ?>_<?php echo $arrayHolder ?>_<?php echo $roomType->id ?> reservation-form-child-quantity trigger_tariff_calculating occupancy_child_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?>"
									<?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
                                >
									<?php echo $htmlChildSelection ?>
                                </select>
							<?php endif ?>

                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <div
                                        class="<?php echo SR_UI_GRID_COL_6 ?> <?php echo SR_UI_GRID_OFFSET_6 ?> child-age-details <?php echo(empty($htmlChildrenAges) ? 'nodisplay' : '') ?>">
                                    <p><?php echo JText::_('SR_AGE_OF_CHILD_AT_CHECKOUT') ?></p>
                                    <ul class="unstyled list-unstyled"><?php echo $htmlChildrenAges ?></ul>
                                </div>
                            </div>

                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <ul class="unstyled list-unstyled <?php echo SR_UI_GRID_COL_12 ?>">
									<?php
									foreach ($roomType->extras as $extra) :
										$extraInputCommonName = 'jform[room_types][' . $roomType->id . '][' . $arrayHolder . '][' . $room->id . '][extras][' . $extra->id . ']';
										$checked = '';
										$disabledCheckbox = '';
										$disabledSelect = 'disabled="disabled"';
										$alreadySelected = false;
										$canBeEnabled = true;
										if (isset($currentRoomIndex['extras'])) :
											$alreadySelected = array_key_exists($extra->id, (array) $currentRoomIndex['extras']);
										endif;

										if ($extra->mandatory == 1 || $alreadySelected) :
											$checked = 'checked="checked"';
										endif;

										if ($extra->mandatory == 1) :
											$disabledCheckbox = ''; // don't force mandatory for admin
											$canBeEnabled     = false;
											//$disabledSelect   = ''; // don't force mandatory for admin
										endif;

										if ($alreadySelected) :
											$disabledSelect = '';
										endif;
										?>
                                        <li class="extras_row_roomtypeform"
                                            id="extras_row_roomtypeform_<?php echo $identity ?>">
                                            <input <?php echo $checked ?> <?php echo $disabledCheckbox ?>
                                                    type="checkbox"
                                                    class="<?php echo $canBeEnabled ? '' : 'no_enable' ?>"
                                                    data-target="extra_<?php echo $roomType->id ?>_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>"
                                                    data-extraid="<?php echo $extra->id ?>"
                                            />
											<?php if ($extra->mandatory == 1) : ?>
                                                <input type="hidden"
                                                       name="<?php echo $extraInputCommonName ?>[quantity]"
                                                       value="1" <?php echo $disabledCheckbox ?>
                                                       class="<?php echo $canBeEnabled ? '' : 'no_enable' ?>"
                                                       disabled
                                                />
											<?php endif ?>

                                            <select
                                                    class="<?php echo SR_UI_GRID_COL_2 ?> extra_quantity trigger_tariff_calculating"
                                                    id="extra_<?php echo $roomType->id ?>_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>"
                                                    data-raid="<?php echo $raid ?>"
                                                    data-roomtypeid="<?php echo $roomType->id ?>"
                                                    data-tariffid="<?php echo isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : '' ?>"
                                                    data-adjoininglayer=""
                                                    data-roomid="<?php echo $room->id ?>"
                                                    name="<?php echo $extraInputCommonName ?>[quantity]"
												<?php echo $disabledSelect ?>
                                            >
												<?php
												for ($quantitySelection = 1; $quantitySelection <= $extra->max_quantity; $quantitySelection++) :
													$checked = '';
													if (isset($currentRoomIndex['extras'][$extra->id]['quantity'])) :
														$checked = ($currentRoomIndex['extras'][$extra->id]['quantity'] == $quantitySelection) ? 'selected' : '';
													endif;
													?>
                                                    <option <?php echo $checked ?>
                                                            value="<?php echo $quantitySelection ?>"><?php echo $quantitySelection ?></option>
												<?php
												endfor;
												?>
                                            </select>
                                            <span>
													<?php echo $extra->name ?>
                                                <a href="javascript:void(0)"
                                                   class="toggle_extra_details"
                                                   data-target="extra_details_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>">
														<?php echo JText::_('SR_EXTRA_MORE_DETAILS') ?>
													</a>
												</span>
                                            <span class="extra_details"
                                                  id="extra_details_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>"
                                                  style="display: none">
													<?php if ($extra->charge_type == 3 || $extra->charge_type == 5 || $extra->charge_type == 6) : ?>
                                                        <span>
														<?php echo JText::_('SR_EXTRA_PRICE_ADULT') . ': ' . $extra->currencyAdult->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
													</span>
                                                        <span>
														<?php echo JText::_('SR_EXTRA_PRICE_CHILD') . ': ' . $extra->currencyChild->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
													</span>
													<?php else: ?>
                                                        <span>
														<?php echo JText::_('SR_EXTRA_PRICE') . ': ' . $extra->currency->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
													</span>
													<?php endif; ?>

                                                <span>
														<?php echo $extra->description ?>
													</span>
												</span>
                                        </li>
									<?php
									endforeach;
									?>
                                </ul>
                            </div>
	                        <?php if (!empty($room->roomForm)): ?>
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
			                        <?php echo $room->roomForm; ?>
                                </div>
	                        <?php endif; ?>
                        </dd>
                    </dl>
                </div>
			<?php
			endif;
		endfor;
	endif; ?>
	<?php endforeach; ?>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button data-step="room" type="submit" class="btn btn-success">
                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>
    <input type="hidden" name="jform[next_step]" value="guestinfo"/>
    <input type="hidden" name="jform[raid]" value="<?php echo $raid ?>"/>
	<?php echo JHtml::_('form.token'); ?>
</form>
layouts/asset/rooms_and_rates.php000060400000030657150751740420013267 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/rooms_and_rates.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);
?>

<h3><?php echo JText::_('SR_ROOM_AND_RATE_INFORMATION') ?></h3>

<table class="table table-bordered">
    <tbody>
	<?php
	// Room cost
	$extraList                      = array();
	foreach ($roomTypes as $roomTypeId => $roomTypeDetails) :
		foreach ($roomTypeDetails['rooms'] as $tariffId => $roomDetails) :
			$tariffType = SRUtilities::getTariffType($tariffId);
			$isBookingWholeRoomType = false;
			$rowspan                = 0;
			if ($tariffType == PER_ROOM_TYPE_PER_STAY) :
				$isBookingWholeRoomType = true;
				$rowspan                = count($roomTypeDetails['rooms'][$tariffId]);
			endif;

			$roomIndexCount = 1;
			foreach ($roomDetails as $roomIndex => $roomCost) :
				$hasDiscount = false;
				if ($roomCost['currency']['total_discount'] > 0) :
					$hasDiscount = true;
				endif;

				$skipCost = false;
				if ($isBookingWholeRoomType && $roomIndexCount > 1) :
					$skipCost = true;
				endif;

				$roomInfo = $reservationDetails->room['room_types'][$roomTypeId][$tariffId][$roomIndex];

				// Build a per room extra list array
				if (isset($roomInfo['extras']) && is_array($roomInfo['extras'])) :
					foreach ($roomInfo['extras'] as $extraItemKey => $extraItemDetails) :
						$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['room_type_name'] = $roomTypeDetails['name'];
						$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['name']           = $extraItemDetails['name'];
						$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['quantity']       = $extraItemDetails['quantity'];
						$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency']       = clone $currency;
						$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency']->setValue($extraItemDetails['total_extra_cost_tax_' . ($showRoomTax ? 'excl' : 'incl')]);
						$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency_tax'] = clone $currency;
						$extraList[$roomTypeId][$tariffId][$roomIndex]['extras'][$extraItemKey]['currency_tax']->setValue($extraItemDetails['total_extra_cost_tax_incl'] - $extraItemDetails['total_extra_cost_tax_excl']);
					endforeach;
				endif;
				?>
                <tr>
                    <td>
						<?php echo JText::_('SR_ROOM') . ': ' ?>
						<?php echo $roomTypeDetails["name"] ?>
                        <a href="javascript:void(0)" class="toggle_room_confirmation"
                           data-target="<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $roomIndex ?>">
							<?php echo JText::_('SR_CONFIRMATION_ROOM_DETAILS') ?>
                        </a>
						<?php if ($isBookingWholeRoomType) : ?>
                            <p><?php echo !empty($roomCost['currency']['title']) ? '(' . $roomCost['currency']['title'] . ')' : '' ?></p>
						<?php endif ?>
                        <ul id="rc_<?php echo $roomTypeId ?>_<?php echo $tariffId ?>_<?php echo $roomIndex ?>_guestinfo"
                            style="display: none">
							<?php if (!empty($roomInfo['guest_fullname'])) : ?>
                                <li><?php echo JText::_('SR_CONFIRMATION_GUEST_NAME') . ': ' . $roomInfo['guest_fullname'] ?></li>
							<?php endif; ?>
                            <li><?php echo JText::_('SR_CONFIRMATION_ADULT_NUMBER') . ': ' . (isset($roomInfo['adults_number']) ? $roomInfo['adults_number'] : 0) ?></li>
							<?php if (!empty($roomInfo['children_number'])) : ?>
                                <li><?php echo JText::_('SR_CONFIRMATION_CHILD_NUMBER') . ': ' . $roomInfo['children_number'] ?></li>
							<?php endif ?>
                        </ul>
                    </td>
                    <td>
						<?php
						if (0 == $bookingType) :
							echo JText::plural("SR_NIGHTS", $stayLength);
						else :
							echo JText::plural("SR_DAYS", $stayLength + 1);
						endif;
						?>
                    </td>
					<?php if (!$isBookingWholeRoomType || ($isBookingWholeRoomType && $roomIndexCount == 1)) : ?>
                        <td class="sr-align-right" <?php echo $isBookingWholeRoomType ? 'rowspan="' . $rowspan . '" style="vertical-align: middle"' : '' ?>>
							<?php
							if (isset($roomCost['currency']['total_price_tax_excl_formatted'])) :
								echo $roomCost['currency']['total_price_tax_excl_formatted']->format();
							endif
							?>
                        </td>
					<?php endif ?>
                </tr>
				<?php
				$roomIndexCount++;
			endforeach;
		endforeach;
	endforeach;

	// Total room cost
	$showRoomTax = 0;
	if (isset($reservationDetails->asset_params['show_room_tax_confirmation'])) :
		$showRoomTax = $reservationDetails->asset_params['show_room_tax_confirmation'];
	endif;
	$totalRoomCost = new SRCurrency($cost['total_price_tax_' . ($showRoomTax ? 'excl' : 'incl')], $reservationDetails->currency_id);
	?>

    <tr class="nobordered first">
        <td colspan="2" class="sr-align-right">
			<?php echo JText::_("SR_TOTAL_ROOM_COST_TAX_" . ($showRoomTax ? 'EXCL' : 'INCL')) ?>
        </td>
        <td class="sr-align-right noleftborder">
			<?php echo $totalRoomCost->format() ?>
        </td>
    </tr>

	<?php
	// In case of pre tax discount
	if ($cost['total_discount'] > 0 && $isDiscountPreTax) :
		$totalDiscount = new SRCurrency($cost['total_discount'], $reservationDetails->currency_id);
		?>
        <tr class="nobordered">
            <td colspan="2" class="sr-align-right">
				<?php echo JText::_("SR_TOTAL_DISCOUNT") ?>
            </td>
            <td class="sr-align-right noleftborder">
				<?php echo '-' . $totalDiscount->format() ?>
            </td>
        </tr>
	<?php
	endif;

	// Imposed taxes
	if ($showRoomTax) :
		$taxItem = new SRCurrency($cost['tax_amount'], $reservationDetails->currency_id);
		?>
        <tr class="nobordered">
            <td colspan="2" class="sr-align-right">
				<?php echo JText::_('SR_TOTAL_ROOM_TAX') ?>
            </td>
            <td class="sr-align-right noleftborder">
				<?php echo $taxItem->format() ?>
            </td>
        </tr>
	<?php
	endif;

	// In case of after tax discount
	if ($cost['total_discount'] > 0 && !$isDiscountPreTax) :
		$totalDiscount = new SRCurrency($cost['total_discount'], $reservationDetails->currency_id);
		?>
        <tr class="nobordered">
            <td colspan="2" class="sr-align-right">
				<?php echo JText::_("SR_TOTAL_DISCOUNT") ?>
            </td>
            <td class="sr-align-right noleftborder">
				<?php echo '-' . $totalDiscount->format() ?>
            </td>
        </tr>
	<?php
	endif;

	// Per room extra list
	if (!empty($extraList)) :
		foreach ($extraList as $extraRoomTypeId => $extraRoomTypeTariffs) :
			foreach ($extraRoomTypeTariffs as $extraTariffId => $extraRooms) :
				foreach ($extraRooms as $extraRoomIndex => $extraRoomExtras) :
					foreach ($extraRoomExtras as $extraRoomExtraKey => $extraRoomExtraDetails) :
						foreach ($extraRoomExtraDetails as $extraRoomExtraId => $extraRoomExtraIdDetails) :
							?>
                            <tr class="extracost_confirmation" style="display: none">
                                <td>
                                    <p>
										<?php echo JText::_('SR_EXTRA') . ': ' ?><?php echo $extraRoomExtraIdDetails['name'] ?>
                                    </p>
                                    <p>
										<?php echo JText::_('SR_ROOM') . ': ' ?><?php echo $extraRoomExtraIdDetails['room_type_name'] ?>
                                    </p>
                                </td>
                                <td>
									<?php echo $extraRoomExtraIdDetails['quantity'] ?>
                                </td>
                                <td class="sr-align-right ">
									<?php echo $extraRoomExtraIdDetails['currency']->format() ?>
                                </td>
                            </tr>
						<?php
						endforeach;
					endforeach;
				endforeach;
			endforeach;
		endforeach;
	endif;

	// Per booking extra list
	$perBookingExtraList = isset($reservationDetails->guest['extras']) ? $reservationDetails->guest['extras'] : array();

	foreach ($perBookingExtraList as $perBookingExtraId => $perBookingExtraDetails) :
		?>
        <tr class="extracost_confirmation" style="display: none">
            <td>
                <p>
					<?php echo JText::_('SR_EXTRA') . ': ' ?><?php echo $perBookingExtraDetails['name'] ?>
                </p>
                <p>
					<?php echo JText::_('SR_EXTRA_PER_BOOKING') ?>
                </p>
            </td>
            <td>
				<?php echo $perBookingExtraDetails['quantity'] ?>
            </td>
            <td class="sr-align-right ">
				<?php
				$perBookingExtraCurrency = clone $currency;
				$perBookingExtraCurrency->setValue($perBookingExtraDetails['total_extra_cost_tax_excl']);
				$perBookingExtraCurrencyTax = clone $currency;
				$perBookingExtraCurrencyTax->setValue($perBookingExtraDetails['total_extra_cost_tax_incl'] - $perBookingExtraDetails['total_extra_cost_tax_excl']);
				?>
				<?php echo $perBookingExtraCurrency->format() ?>
            </td>
        </tr>
	<?php
	endforeach;

	// Extra cost
	$totalExtraCost          = new SRCurrency($showRoomTax ? $totalRoomTypeExtraCostTaxExcl : $totalRoomTypeExtraCostTaxIncl, $reservationDetails->currency_id);
	$totalExtraCostTaxAmount = new SRCurrency($totalRoomTypeExtraCostTaxIncl - $totalRoomTypeExtraCostTaxExcl, $reservationDetails->currency_id);

	if ($totalExtraCost->getValue() > 0) :
		?>
        <tr class="nobordered extracost_row">
            <td colspan="2" class="sr-align-right">
                <a href="javascript:void(0)" class="toggle_extracost_confirmation">
					<?php echo JText::_('SR_TOTAL_EXTRA_COST_TAX_' . ($showRoomTax ? 'EXCL' : 'INCL')) ?>
                </a>
            </td>
            <td id="total-extra-cost" class="sr-align-right noleftborder">
				<?php echo $totalExtraCost->format() ?>
            </td>
        </tr>

		<?php if ($showRoomTax) : ?>
        <tr class="nobordered">
            <td colspan="2" class="sr-align-right">
				<?php echo JText::_("SR_TOTAL_EXTRA_COST_TAX_AMOUNT") ?>
            </td>
            <td id="total-extra-cost" class="sr-align-right noleftborder">
				<?php echo $totalExtraCostTaxAmount->format() ?>
            </td>
        </tr>
	<?php endif; ?>

	<?php endif; ?>

	<?php

	// Tourist tax cost
	if ($cost['tourist_tax_amount'] > 0) :
		$touristTaxAmount = new SRCurrency($cost['tourist_tax_amount'], $reservationDetails->currency_id);
		?>
        <tr class="nobordered">
            <td colspan="2" class="sr-align-right">
				<?php echo JText::_("SR_TOURIST_TAX_AMOUNT") ?>
            </td>
            <td class="sr-align-right noleftborder">
				<?php echo $touristTaxAmount->format() ?>
            </td>
        </tr>
	<?php
	endif;

	// Grand total cost
	if ($isDiscountPreTax) :
		$grandTotalAmount = $cost['total_price_tax_excl_discounted'] + $cost['tax_amount'] + $totalRoomTypeExtraCostTaxIncl;
	else :
		$grandTotalAmount = $cost['total_price_tax_excl'] + $cost['tax_amount'] - $cost['total_discount'] + $totalRoomTypeExtraCostTaxIncl;
	endif;

	if ($cost['tourist_tax_amount'] > 0) :
		$grandTotalAmount += $cost['tourist_tax_amount'];
	endif;

	$grandTotal = new SRCurrency($grandTotalAmount, $reservationDetails->currency_id);

	?>
    <tr class="nobordered">
        <td colspan="2" class="sr-align-right">
            <strong><?php echo JText::_("SR_GRAND_TOTAL") ?></strong>
        </td>
        <td class="sr-align-right gra noleftborder">
            <strong><?php echo $grandTotal->format() ?></strong>
        </td>
    </tr>
    </tbody>
</table>layouts/asset/checkinoutform_style2.php000060400000006062150751740420014423 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/checkinoutform_style2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

?>

<div class="inner">
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <label for="checkin_roomtype">
				<?php echo JText::_('SR_SEARCH_CHECKIN_DATE') ?>
            </label>
            <div class="checkin_roomtype datefield" data-placeholder="<?php echo JText::_('SR_CHECKIN_PLACEHOLDER') ?>">
				<?php echo JText::_('SR_CHECKIN_PLACEHOLDER') ?>
                <i class="fa fa-calendar"></i>
            </div>
            <div class="checkin_datepicker_inline datepicker_inline" style="display: none"></div>
			<?php // this field must always be "Y-m-d" as it is used internally only ?>
            <input type="hidden" name="checkin" value=""/>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <label for="checkout_roomtype">
				<?php echo JText::_('SR_SEARCH_CHECKOUT_DATE') ?>
            </label>
            <div class="checkout_roomtype datefield disabledCalendar"
                 data-placeholder="<?php echo JText::_('SR_CHECKOUT_PLACEHOLDER') ?>">
				<?php echo JText::_('SR_CHECKOUT_PLACEHOLDER') ?>
                <i class="fa fa-calendar"></i>
            </div>
            <div class="checkout_datepicker_inline datepicker_inline" style="display: none"></div>
			<?php // this field must always be "Y-m-d" as it is used internally only ?>
            <input type="hidden" name="checkout" value=""/>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="action">
                <input type="hidden" name="fts" value="<?php echo time() ?>"/>
                <label>&nbsp;</label>
                <button class="btn btn-block searchbtn"
                        data-roomtypeid="<?php echo $displayData['roomTypeId'] ?>"
                        data-tariffid="<?php echo $displayData['tariff']->id ?>" type="button"
                        disabled>
                    <i class="fa fa-search "></i> <?php echo JText::_('SR_SEARCH') ?>
                </button>
            </div>
        </div>
    </div>
</div>layouts/asset/tariff_book.php000060400000020466150751740420012372 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/tariff_book.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

?>

<div class="<?php echo SR_UI_GRID_CONTAINER ?>">
    <div id="tariff-box-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>" data-targetcolor="FF981D"
         class="<?php echo SR_UI_GRID_COL_12 ?> tariff-box <?php echo $tariffInfo['tariffType'] == PER_ROOM_TYPE_PER_STAY ? 'is-whole' : '' ?>">
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo !$disableOnlineBooking ? SR_UI_GRID_COL_5 : SR_UI_GRID_COL_8; ?> tariff-title-desc">
                <strong>
					<?php
					if (!empty($tariffInfo['tariffTitle'])) :
						echo $tariffInfo['tariffTitle'];
					else :
						if ($item->booking_type == 0) :
							echo JText::plural('SR_PRICE_IS_FOR_X_NIGHT', $stayLength);
						else :
							echo JText::plural('SR_PRICE_IS_FOR_X_DAY', $stayLength + 1);
						endif;
					endif;
					?>
                </strong>
				<?php
				if (!empty($tariffInfo['tariffDescription'])) :
					echo '<p>' . $tariffInfo['tariffDescription'] . '</p>';
				endif;
				?>
            </div>
            <div class="<?php echo SR_UI_GRID_COL_4 ?> tariff-value">
				<?php echo $minPrice; ?>
            </div>
			<?php if (!$disableOnlineBooking): ?>
                <div class="<?php echo SR_UI_GRID_COL_3 ?>">
					<?php
					if (isset ($roomType->totalAvailableRoom)) :
						if ($roomType->totalAvailableRoom == 0) :
							echo JText::_('SR_NO_ROOM_AVAILABLE');
						else :
							if (!$isExclusive && $tariffInfo['tariffType'] != 4) :

                                if ($roomType->totalAvailableRoom == 1 && $showRemainingRooms) :
                                    echo '<p class="last_chance">' . JText::_('SR_LAST_CHANCE_LAST_' . ($roomType->is_private ? 'ROOM' : 'BED')) . '</p>';
                                endif;

								?>
                                <select
                                        name="solidres[ign<?php echo rand() ?>]"
                                        data-raid="<?php echo $item->id ?>"
                                        data-rtid="<?php echo $roomType->id ?>"
                                        data-tariffid="<?php echo $tariffKey ?>"
                                        data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
                                        data-totalroomsleft="<?php echo $roomType->totalAvailableRoom ?>"
                                        data-isprivate="<?php echo $roomType->is_private ?>"
                                        class="<?php echo SR_UI_GRID_COL_12 ?> roomtype-quantity-selection quantity_<?php echo $roomType->id ?> <?php echo $roomType->totalAvailableRoom == 1 && $showRemainingRooms ? 'last_chance' : '' ?>">
                                    <option value="0"><?php echo JText::_('SR_ROOMTYPE_QUANTITY') ?></option>
									<?php
									for ($i = 1; $i <= $roomType->totalAvailableRoom; $i++) :
										$selected = '';
										if (isset($selectedRoomTypes['room_types'][$roomType->id][$tariffKey])) :
											$selected = ($i == count($selectedRoomTypes['room_types'][$roomType->id][$tariffKey])) ? 'selected="selected"' : '';
										endif;

										echo '<option ' . $selected . ' value="' . $i . '">' . JText::plural($roomType->is_private ? 'SR_SELECT_ROOM_QUANTITY' : 'SR_SELECT_BED_QUANTITY', $i) . '</option>';
									endfor;
									?>
                                </select>
							<?php else : ?>
                                <button <?php echo (($isExclusive && $skipRoomForm) || $tariffInfo['tariffType'] == 4) ? 'data-step="room"' : '' ?>
                                        type="button"
                                        data-raid="<?php echo $item->id ?>"
                                        data-rtid="<?php echo $roomType->id ?>"
                                        data-tariffid="<?php echo $tariffKey ?>"
                                        data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
                                        data-totalroomsleft="<?php echo $roomType->totalAvailableRoom ?>"
                                        class="btn btn-default <?php echo SR_UI_GRID_COL_12 ?> <?php echo (($isExclusive && $skipRoomForm) || $tariffInfo['tariffType'] == 4) ? 'roomtype-reserve-exclusive' : 'roomtype-reserve' ?> quantity_<?php echo $roomType->id ?>">
									<?php echo JText::_('SR_RESERVE') ?>
                                </button>
							<?php endif ?>

                            <input type="hidden"
                                   name="jform[selected_tariffs][<?php echo $roomType->id ?>][]"
                                   value="<?php echo $tariffKey ?>"
                                   id="selected_tariff_<?php echo $roomType->id ?>_<?php echo $tariffKey ?>"
                                   class="selected_tariff_hidden_<?php echo $roomType->id ?>"
                                   disabled
                            />
                            <div class="processing" style="display: none"></div>

							<?php
							// Mostly for apartment booking when there is only 1 room type bookable
							// and guest option is replaced adult & child
							if (($isExclusive && $skipRoomForm) || $tariffInfo['tariffType'] == 4) :

								$loopCount = 1;
								if ($tariffInfo['tariffType'] == 4 && $roomType->number_of_room == $roomType->totalAvailableRoom) :
									$loopCount = $roomType->number_of_room;
								endif;

								for ($l = 0; $l < $loopCount; $l++) :
									?>
                                    <input type="hidden"
                                           data-raid="<?php echo $item->id ?>"
                                           data-roomtypeid="<?php echo $roomType->id ?>"
                                           data-tariffid="<?php echo $tariffKey ?>"
                                           data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
                                           data-roomindex="<?php echo $l ?>"
                                           name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $tariffKey ?>][<?php echo $l ?>][adults_number]"
                                           value="<?php echo ($item->roomsOccupancyOptionsCount == 1 && $item->roomsOccupancyOptionsGuests > 0) ? $item->roomsOccupancyOptionsGuests : 1 ?>"
                                           class="exclusive-hidden exclusive-hidden-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>"
                                           disabled
                                    />
								<?php
								endfor;
							endif;
						endif;
					endif;
					?>
                </div>
			<?php endif; ?>
        </div>

        <!-- check in form -->
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?> checkinoutform"
                 id="checkinoutform-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>" style="display: none">

            </div>
        </div>
        <!-- /check in form -->


        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_12 ?> room-form room-form-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>"
                 id="room-form-<?php echo $roomType->id ?>-<?php echo $tariffKey ?>" style="display: none">

            </div>
        </div>

    </div> <!-- end of span12 -->
</div> <!-- end of row-fluid -->
layouts/asset/captcha.php000060400000003400150751740420011475 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/captcha.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;
$publicKey = $displayData['params']->get('public_key');
$theme     = $displayData['params']->get('theme');
?>
<div id="sr_reservation_recaptcha" class="g-recaptcha"></div>
<script>
    var $j = Solidres.jQuery;
	<?php if($displayData['params']->get('version', '2.0') === '2.0'): ?>
    $j('#termsandconditions').prop('disabled', true);
    grecaptcha.render('sr_reservation_recaptcha', {
        sitekey: '<?php echo $publicKey; ?>',
        theme: '<?php echo $theme; ?>',
        callback: function (res) {
            $j('#termsandconditions').prop('disabled', false);
        }
    });
	<?php else: ?>
    Recaptcha.create('<?php echo $publicKey; ?>', 'sr_reservation_recaptcha', {
        theme: '<?php echo $theme; ?>'
    });
	<?php endif; ?>
</script>layouts/asset/tariff_list_style2.php000060400000006256150751740420013716 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/tariff_list_style2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

$tariffTypeMapping = SRUtilities::getTariffTypeMapping();

?>

<div id="tariff-box-<?php echo $roomType->id ?>-<?php echo $tariff->id ?>" data-targetcolor="FF981D"
     class="tariff-box <?php echo $tariff->type == PER_ROOM_TYPE_PER_STAY ? 'is-whole' : '' ?>">
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo !$disableOnlineBooking ? SR_UI_GRID_COL_9 : SR_UI_GRID_COL_12; ?>">
            <div class="tariff-value">
				<?php echo $minPrice ?>
            </div>

            <div class="tariff-title-desc">
                <strong><?php echo empty($tariff->title) ? JText::_('SR_STANDARD_TARIFF') : $tariff->title ?></strong>
                <p><?php echo $tariff->description ?></p>
            </div>
        </div>

		<?php if (!$disableOnlineBooking): ?>
            <div class="<?php echo SR_UI_GRID_COL_3 ?>">
                <div class="tariff-button">

                    <span class="tariff_type"><?php echo $tariffTypeMapping[$tariff->type] ?></span>

                    <button class="btn btn-default btn-block trigger_checkinoutform" type="button"
                            data-roomtypeid="<?php echo $roomType->id ?>"
                            data-itemid="<?php echo $Itemid ?>"
                            data-assetid="<?php echo $item->id ?>"
                            data-tariffid="<?php echo $tariff->id ?>"
                    ><?php echo JText::_('SR_SELECT_TARIFF') ?></button>
                </div>
            </div>
		<?php endif; ?>
    </div>

    <!-- check in form -->
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?> checkinoutform"
             id="checkinoutform-<?php echo $roomType->id ?>-<?php echo $tariff->id ?>" style="display: none">

        </div>
    </div>
    <!-- /check in form -->

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?> room-form room-form-<?php echo $roomType->id ?>-<?php echo $roomType->id ?>"
             id="room-form-<?php echo $roomType->id ?>-<?php echo $tariff->id ?>" style="display: none">

        </div>
    </div>
</div> <!-- end of span12 -->
layouts/asset/checkinoutform_style3.php000060400000006022150751740420014420 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/checkinoutform_style3.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

?>

<div class="inner">
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
            <label for="checkin_roomtype">
				<?php echo JText::_('SR_SEARCH_CHECKIN_DATE') ?>
            </label>
            <div class="checkin_roomtype datefield" data-placeholder="<?php echo JText::_('SR_CHECKIN_PLACEHOLDER') ?>">
				<?php echo JText::_('SR_CHECKIN_PLACEHOLDER') ?>
                <i class="fa fa-calendar"></i>
            </div>
            <div class="checkin_datepicker_inline datepicker_inline" style="display: none"></div>
			<?php // this field must always be "Y-m-d" as it is used internally only ?>
            <input type="hidden" name="checkin" value=""/>
        </div>
        <div class="<?php echo SR_UI_GRID_COL_6 ?>">
            <label for="checkout_roomtype">
				<?php echo JText::_('SR_SEARCH_CHECKOUT_DATE') ?>
            </label>
            <div class="checkout_roomtype datefield disabledCalendar"
                 data-placeholder="<?php echo JText::_('SR_CHECKOUT_PLACEHOLDER') ?>">
				<?php echo JText::_('SR_CHECKOUT_PLACEHOLDER') ?>
                <i class="fa fa-calendar"></i>
            </div>
            <div class="checkout_datepicker_inline datepicker_inline" style="display: none"></div>
			<?php // this field must always be "Y-m-d" as it is used internally only ?>
            <input type="hidden" name="checkout" value=""/>
        </div>
    </div>
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <input type="hidden" name="fts" value="<?php echo time() ?>"/>

            <button class="btn btn-block searchbtn"
                    data-roomtypeid="<?php echo $displayData['roomTypeId'] ?>"
                    data-tariffid="<?php echo $displayData['tariff']->id ?>"
                    type="button"
                    disabled>
                <i class="fa fa-search "></i> <?php echo JText::_('SR_SEARCH') ?>
            </button>
        </div>
    </div>
</div>layouts/asset/rooms_style3.php000060400000053151150751740420012544 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/rooms_style3.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

$isFrontEnd = JFactory::getApplication()->isClient('site');
?>

<form enctype="multipart/form-data"
      id="sr-reservation-form-room"
      class="sr-reservation-form"
      action="index.php?option=com_solidres&task=reservation<?php echo $isFrontEnd ? '' : 'base' ?>.process&step=room&format=json"
      method="POST">
	<?php
	foreach ($roomTypes as $roomType) :
		?>
        <h3>
            <span class="label label-info"><?php echo $roomType->occupancy_max > 0 ? $roomType->occupancy_max : (int) $roomType->occupancy_adult + (int) $roomType->occupancy_child ?>
                <i class="fa fa-user"></i></span> <?php echo $roomType->name ?>
        </h3>
		<?php if (!empty($roomType->rooms)) :
		$itemPerRow = 2;
		$spanNum = 12 / (int) $itemPerRow;
		$totalRoomCount = count($roomType->rooms);
		for ($count = 0; $count <= $totalRoomCount; $count++) :
			if ($count % $itemPerRow == 0 && $count == 0) :
				echo '<div class="' . SR_UI_GRID_CONTAINER . '">';
            elseif ($count % $itemPerRow == 0 && $count != $totalRoomCount) :
				echo '</div><div class="' . SR_UI_GRID_CONTAINER . '">';
            elseif ($count == $totalRoomCount) :
				echo '</div>';
			endif;

			if ($count < $totalRoomCount) :
				$currentRoomIndex = null;
				$arrayHolder = 'xtariffidx';
				$room = $roomType->rooms[$count];
				if (isset($currentReservationData->reserved_room_details[$room->id])) :
					$currentRoomIndex = (array) $currentReservationData->reserved_room_details[$room->id];
					$arrayHolder      = $currentRoomIndex['tariff_id'];
				endif;
				$identity = $roomType->id . '_' . (isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : $arrayHolder) . '_' . $room->id;

				$checked  = '';
				$disabled = !$room->isAvailable && !$room->isReservedForThisReservation ? 'disabled' : '';

				if (!$room->isAvailable || $room->isReservedForThisReservation) :
					$checked = 'checked';
				endif;

				// Html for adult selection
				$htmlAdultSelection = '';
				$htmlAdultSelection .= '<option value="">' . JText::_('SR_ADULT') . '</option>';

				for ($j = 1; $j <= $roomType->occupancy_adult; $j++) :
					$selected = '';
					if (isset($currentRoomIndex['adults_number'])) :
						$selected = $currentRoomIndex['adults_number'] == $j ? 'selected' : '';
					else :
						if ($j == 1) :
							$selected = 'selected';
						endif;
					endif;
					$htmlAdultSelection .= '<option ' . $selected . ' value="' . $j . '">' . JText::plural('SR_SELECT_ADULT_QUANTITY', $j) . '</option>';
				endfor;

				// Html for children selection
				$htmlChildSelection = '';
				$htmlChildrenAges   = '';
				if (!isset($roomType->params['show_child_option'])) :
					$roomType->params['show_child_option'] = 1;
				endif;

				// Only show child option if it is enabled and the child quantity > 0
				if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) :
					$htmlChildSelection .= '';
					$htmlChildSelection .= '<option value="">' . JText::_('SR_CHILD') . '</option>';

					for ($j = 1; $j <= $roomType->occupancy_child; $j++) :
						if (isset($currentRoomIndex['children_number'])) :
							$selected = $currentRoomIndex['children_number'] == $j ? 'selected' : '';
						endif;
						$htmlChildSelection .= '
			<option ' . $selected . ' value="' . $j . '">' . JText::plural('SR_SELECT_CHILD_QUANTITY', $j) . '</option>
		';
					endfor;

					// Html for children ages
					// Restructure to match front end
					if (is_array($currentRoomIndex['other_info'])) :
						foreach ($currentRoomIndex['other_info'] as $info) :
							if (substr($info->key, 0, 5) == 'child') :
								$currentRoomIndex['children_ages'][] = $info->value;
							endif;
						endforeach;
					endif;

					if (isset($currentRoomIndex['children_ages'])) :
						for ($j = 0; $j < count($currentRoomIndex['children_ages']); $j++) :
							$htmlChildrenAges .= '
				<li>
					' . JText::_('SR_CHILD') . ' ' . ($j + 1) . '
					<select name="jform[room_types][' . $roomType->id . '][' . $arrayHolder . '][' . $room->id . '][children_ages][]"
						data-raid="' . $raid . '"
						data-roomtypeid="' . $roomType->id . '"
						data-roomid="' . $room->id . '"
						class="' . SR_UI_GRID_COL_6 . ' child_age_' . $roomType->id . '_' . $arrayHolder . '_' . $room->id . '_' . $j . ' trigger_tariff_calculating"
						required
					>';
							$htmlChildrenAges .= '<option value=""></option>';
							for ($age = 1; $age <= $childMaxAge; $age++) :
								$selectedAge = '';
								if ($age == $currentRoomIndex['children_ages'][$j]) :
									$selectedAge = 'selected';
								endif;
								$htmlChildrenAges .= '<option ' . $selectedAge . ' value="' . $age . '">' . JText::plural('SR_CHILD_AGE_SELECTION', $age) . '</option>';
							endfor;

							$htmlChildrenAges .= '
					</select>
				</li>';
						endfor;
					endif;
				endif;
				?>
                <div class="<?php echo constant('SR_UI_GRID_COL_' . $spanNum) ?> room-form" id="room<?php echo $room->id ?>">
                    <dl class="room_selection_wrapper room-form-item">
                        <dt>
                            <label class="checkbox">
                                <input type="checkbox"
                                       value="<?php echo $room->id ?>"
                                       class="reservation_room_select"
                                       name="jform[reservation_room_select][]" <?php echo $checked ?> <?php echo $disabled ?> />
                                <span class="label <?php echo $room->isReservedForThisReservation ? 'label-success' : '' ?>">
										<?php echo $room->label ?>
									</span>
                            </label>
                            <table class="table table-condensed table-bordered"
                                   style="<?php echo $room->isReservedForThisReservation ? '' : 'display: none;' ?>">
                                <tbody>
                                <tr>
                                    <td>
										<?php echo JText::_('SR_AMEND_RESERVATION_TARIFF_CURRENT') ?>
                                    </td>
                                    <td class="sr-align-right">
										<?php
										if ($room->isReservedForThisReservation) :
											$tmpCurrency = clone $currency;
											$tmpCurrency->setValue($currentRoomIndex['room_price_tax_incl']);
											echo $tmpCurrency->format();
										else :
											echo 0;
										endif;
										?>
                                    </td>
                                </tr>
                                <tr>
                                    <td>
										<?php echo JText::_('SR_AMEND_RESERVATION_TARIFF_NEW') ?>
                                    </td>
                                    <td class="sr-align-right">
                                        <a href="javascript:void(0)"
                                           class="toggle_breakdown tariff_breakdown_<?php echo $room->id ?>"
                                           data-target="<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?>"
                                           style="display: none"
                                        >
											<?php echo JText::_('SR_VIEW_TARIFF_BREAKDOWN') ?>
                                        </a>
                                        <span
                                                class="tariff_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?> tariff_breakdown_<?php echo $room->id ?>"
                                                style=""
                                        >
													0
												</span>
                                    </td>
                                </tr>
                                </tbody>
                            </table>
                            <span style="display: none"
                                  class="breakdown"
                                  id="breakdown_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?>">

								</span>
                        </dt>
                        <dd class="room_selection_details" id="room_selection_details_<?php echo $room->id ?>"
                            style="<?php echo $room->isReservedForThisReservation ? '' : 'display: none;' ?>">
                            <select
                                    name="jform[ignore]"
                                    data-roomid="<?php echo $room->id ?>"
                                    class="<?php echo SR_UI_GRID_COL_6 ?> tariff_selection" <?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
								<?php echo $room->isReservedForThisReservation ? '' : 'required' ?>
                            >
                                <option value=""><?php echo JText::_('SR_AMEND_RESERVATION_CHOOSE_TARIFF') ?></option>
								<?php
								foreach ($roomType->availableTariffs as $tariffKey => $tariffInfo) :
									$selected_tariff = '';
									if (isset($currentRoomIndex['tariff_id']) && $tariffKey == $currentRoomIndex['tariff_id']) :
										//$selected_tariff = 'selected';
									endif;
									?>
                                    <option data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
										<?php echo $selected_tariff ?>
                                            value="<?php echo $tariffKey ?>"
                                    >
										<?php echo empty($tariffInfo['tariffTitle']) ? JText::_('SR_STANDARD_TARIFF') : $tariffInfo['tariffTitle'] ?>
                                    </option>
								<?php endforeach ?>
                            </select>
                            <input type="text"
                                   name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $arrayHolder ?>][<?php echo $room->id ?>][guest_fullname]"
                                   class="<?php echo SR_UI_GRID_COL_6 ?> guest_fullname"
                                   placeholder="<?php echo JText::_('SR_GUEST_NAME') ?>"
                                   value="<?php echo $currentRoomIndex['guest_fullname'] ?>"
								<?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
                            />
                            <select
                                    data-roomtypeid="<?php echo $roomType->id ?>"
                                    data-tariffid="<?php echo isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : '' ?>"
                                    data-adjoininglayer=""
                                    data-roomid="<?php echo $room->id ?>"
                                    data-max="<?php echo $roomType->occupancy_max ?>"
                                    name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $arrayHolder ?>][<?php echo $room->id ?>][adults_number]"
                                    required
                                    data-identity="<?php echo $identity ?>"
                                    class="<?php echo SR_UI_GRID_COL_6 ?> adults_number occupancy_max_constraint occupancy_max_constraint_<?php echo $room->id ?>_<?php echo $arrayHolder ?>_<?php echo $roomType->id ?> occupancy_adult_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?> trigger_tariff_calculating"
								<?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
                            >
								<?php echo $htmlAdultSelection ?>
                            </select>
							<?php if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) : ?>
                                <select
                                        data-roomtypeid="<?php echo $roomType->id ?>"
                                        data-tariffid="<?php echo isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : '' ?>"
                                        data-adjoininglayer=""
                                        data-roomid="<?php echo $room->id ?>"
                                        data-max="<?php echo $roomType->occupancy_max ?>"
                                        data-identity="<?php echo $identity ?>"
                                        name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $arrayHolder ?>][<?php echo $room->id ?>][children_number]"
                                        class="<?php echo SR_UI_GRID_COL_6 ?> children_number occupancy_max_constraint occupancy_max_constraint_<?php echo $room->id ?>_<?php echo $arrayHolder ?>_<?php echo $roomType->id ?> reservation-form-child-quantity trigger_tariff_calculating occupancy_child_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?>"
									<?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
                                >
									<?php echo $htmlChildSelection ?>
                                </select>
							<?php endif ?>

                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <div
                                        class="<?php echo SR_UI_GRID_COL_6 ?> <?php echo SR_UI_GRID_OFFSET_6 ?> child-age-details <?php echo(empty($htmlChildrenAges) ? 'nodisplay' : '') ?>">
                                    <p><?php echo JText::_('SR_AGE_OF_CHILD_AT_CHECKOUT') ?></p>
                                    <ul class="unstyled list-unstyled"><?php echo $htmlChildrenAges ?></ul>
                                </div>
                            </div>

                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <ul class="unstyled list-unstyled <?php echo SR_UI_GRID_COL_12 ?>">
									<?php
									foreach ($roomType->extras as $extra) :
										$extraInputCommonName = 'jform[room_types][' . $roomType->id . '][' . $arrayHolder . '][' . $room->id . '][extras][' . $extra->id . ']';
										$checked = '';
										$disabledCheckbox = '';
										$disabledSelect = 'disabled="disabled"';
										$alreadySelected = false;
										$canBeEnabled = true;
										if (isset($currentRoomIndex['extras'])) :
											$alreadySelected = array_key_exists($extra->id, (array) $currentRoomIndex['extras']);
										endif;

										if ($extra->mandatory == 1 || $alreadySelected) :
											$checked = 'checked="checked"';
										endif;

										if ($extra->mandatory == 1) :
											$disabledCheckbox = ''; // don't force mandatory for admin
											$canBeEnabled     = false;
											//$disabledSelect   = ''; // don't force mandatory for admin
										endif;

										if ($alreadySelected) :
											$disabledSelect = '';
										endif;
										?>
                                        <li class="extras_row_roomtypeform"
                                            id="extras_row_roomtypeform_<?php echo $identity ?>">
                                            <input <?php echo $checked ?> <?php echo $disabledCheckbox ?>
                                                    type="checkbox"
                                                    class="<?php echo $canBeEnabled ? '' : 'no_enable' ?>"
                                                    data-target="extra_<?php echo $roomType->id ?>_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>"
                                                    data-extraid="<?php echo $extra->id ?>"
                                            />
											<?php if ($extra->mandatory == 1) : ?>
                                                <input type="hidden"
                                                       name="<?php echo $extraInputCommonName ?>[quantity]"
                                                       value="1" <?php echo $disabledCheckbox ?>
                                                       class="<?php echo $canBeEnabled ? '' : 'no_enable' ?>"
                                                       disabled
                                                />
											<?php endif ?>

                                            <select
                                                    class="<?php echo SR_UI_GRID_COL_2 ?> extra_quantity trigger_tariff_calculating"
                                                    id="extra_<?php echo $roomType->id ?>_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>"
                                                    data-raid="<?php echo $raid ?>"
                                                    data-roomtypeid="<?php echo $roomType->id ?>"
                                                    data-tariffid="<?php echo isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : '' ?>"
                                                    data-adjoininglayer=""
                                                    data-roomid="<?php echo $room->id ?>"
                                                    name="<?php echo $extraInputCommonName ?>[quantity]"
												<?php echo $disabledSelect ?>
                                            >
												<?php
												for ($quantitySelection = 1; $quantitySelection <= $extra->max_quantity; $quantitySelection++) :
													$checked = '';
													if (isset($currentRoomIndex['extras'][$extra->id]['quantity'])) :
														$checked = ($currentRoomIndex['extras'][$extra->id]['quantity'] == $quantitySelection) ? 'selected' : '';
													endif;
													?>
                                                    <option <?php echo $checked ?>
                                                            value="<?php echo $quantitySelection ?>"><?php echo $quantitySelection ?></option>
												<?php
												endfor;
												?>
                                            </select>
                                            <span>
													<?php echo $extra->name ?>
                                                <a href="javascript:void(0)"
                                                   class="toggle_extra_details"
                                                   data-target="extra_details_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>">
														<?php echo JText::_('SR_EXTRA_MORE_DETAILS') ?>
													</a>
												</span>
                                            <span class="extra_details"
                                                  id="extra_details_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>"
                                                  style="display: none">
													<?php if ($extra->charge_type == 3 || $extra->charge_type == 5 || $extra->charge_type == 6) : ?>
                                                        <span>
														<?php echo JText::_('SR_EXTRA_PRICE_ADULT') . ': ' . $extra->currencyAdult->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
													</span>
                                                        <span>
														<?php echo JText::_('SR_EXTRA_PRICE_CHILD') . ': ' . $extra->currencyChild->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
													</span>
													<?php else: ?>
                                                        <span>
														<?php echo JText::_('SR_EXTRA_PRICE') . ': ' . $extra->currency->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
													</span>
													<?php endif; ?>

                                                <span>
														<?php echo $extra->description ?>
													</span>
												</span>
                                        </li>
									<?php
									endforeach;
									?>
                                </ul>
                            </div>
	                        <?php if (!empty($room->roomForm)): ?>
                                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
			                        <?php echo $room->roomForm; ?>
                                </div>
	                        <?php endif; ?>
                        </dd>
                    </dl>
                </div>
			<?php
			endif;
		endfor;
	endif; ?>
	<?php endforeach; ?>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button data-step="room" type="submit" class="btn btn-success">
                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>
    <input type="hidden" name="jform[next_step]" value="guestinfo"/>
    <input type="hidden" name="jform[raid]" value="<?php echo $raid ?>"/>
	<?php echo JHtml::_('form.token'); ?>
</form>
layouts/asset/tariff_list_style3.php000060400000006023150751740420013707 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/tariff_list_style3.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

$tariffTypeMapping = SRUtilities::getTariffTypeMapping();

?>

<div id="tariff-box-<?php echo $roomType->id ?>-<?php echo $tariff->id ?>" data-targetcolor="FF981D"
     class="tariff-box <?php echo $tariff->type == PER_ROOM_TYPE_PER_STAY ? 'is-whole' : '' ?>">
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
            <div class="tariff-value">
				<?php echo $minPrice ?>
            </div>

            <div class="tariff-title-desc">
                <strong><?php echo empty($tariff->title) ? JText::_('SR_STANDARD_TARIFF') : $tariff->title ?></strong>
                <p><?php echo $tariff->description ?></p>
            </div>
        </div>

		<?php if (!$disableOnlineBooking): ?>

            <div class="tariff-button">

                <span class="tariff_type"><?php echo $tariffTypeMapping[$tariff->type] ?></span>

                <button class="btn btn-default btn-block trigger_checkinoutform" type="button"
                        data-roomtypeid="<?php echo $roomType->id ?>"
                        data-itemid="<?php echo $Itemid ?>"
                        data-assetid="<?php echo $item->id ?>"
                        data-tariffid="<?php echo $tariff->id ?>"
                ><?php echo JText::_('SR_SELECT_TARIFF') ?></button>
            </div>

		<?php endif; ?>
    </div>

    <!-- check in form -->
    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?> checkinoutform"
             id="checkinoutform-<?php echo $roomType->id ?>-<?php echo $tariff->id ?>" style="display: none">

        </div>
    </div>
    <!-- /check in form -->

    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
        <div class="<?php echo SR_UI_GRID_COL_12 ?> room-form room-form-<?php echo $roomType->id ?>-<?php echo $roomType->id ?>"
             id="room-form-<?php echo $roomType->id ?>-<?php echo $tariff->id ?>" style="display: none">

        </div>
    </div>
</div> <!-- end of span12 -->
layouts/asset/rooms.php000060400000054124150751740420011242 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/rooms.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

$isFrontEnd = JFactory::getApplication()->isClient('site');
?>

<form enctype="multipart/form-data"
      id="sr-reservation-form-room"
      class="sr-reservation-form"
      action="<?php echo JUri::base() ?>index.php?option=com_solidres&task=reservation<?php echo $isFrontEnd ? '' : 'base' ?>.process&step=room&format=json"
      method="POST" novalidate>
	<?php
	foreach ($roomTypes as $roomType) :
		?>
        <h3>
            <span class="label label-info"><?php echo $roomType->occupancy_max > 0 ? $roomType->occupancy_max : (int) $roomType->occupancy_adult + (int) $roomType->occupancy_child ?>
                <i class="fa fa-user"></i></span> <?php echo $roomType->name ?>
        </h3>
		<?php if (!empty($roomType->rooms)) :
		$itemPerRow = 2;
		$spanNum = 12 / (int) $itemPerRow;
		$totalRoomCount = count($roomType->rooms);
		for ($count = 0; $count <= $totalRoomCount; $count++) :
			if ($count % $itemPerRow == 0 && $count == 0) :
				echo '<div class="' . SR_UI_GRID_CONTAINER . '">';
            elseif ($count % $itemPerRow == 0 && $count != $totalRoomCount) :
				echo '</div><div class="' . SR_UI_GRID_CONTAINER . '">';
            elseif ($count == $totalRoomCount) :
				echo '</div>';
			endif;

			if ($count < $totalRoomCount) :
				$currentRoomIndex = null;
				$arrayHolder = 'xtariffidx';
				$room = $roomType->rooms[$count];
				if (isset($currentReservationData->reserved_room_details[$room->id])) :
					$currentRoomIndex = (array) $currentReservationData->reserved_room_details[$room->id];
					$arrayHolder      = $currentRoomIndex['tariff_id'];
				endif;
				$identity = $roomType->id . '_' . (isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : $arrayHolder) . '_' . $room->id;

				$checked  = '';
				$disabled = !$room->isAvailable && !$room->isReservedForThisReservation ? 'disabled' : '';

				if (!$room->isAvailable || $room->isReservedForThisReservation) :
					$checked = 'checked';
				endif;

				// Html for adult selection
				$htmlAdultSelection = '';
				$htmlAdultSelection .= '<option value="">' . JText::_('SR_ADULT') . '</option>';

				for ($j = 1; $j <= $roomType->occupancy_adult; $j++) :
					$selected = '';
					if (isset($currentRoomIndex['adults_number'])) :
						$selected = $currentRoomIndex['adults_number'] == $j ? 'selected' : '';
					else :
						if ($j == 1) :
							$selected = 'selected';
						endif;
					endif;
					$htmlAdultSelection .= '<option ' . $selected . ' value="' . $j . '">' . JText::plural('SR_SELECT_ADULT_QUANTITY', $j) . '</option>';
				endfor;

				// Html for children selection
				$htmlChildSelection = '';
				$htmlChildrenAges   = '';
				if (!isset($roomType->params['show_child_option'])) :
					$roomType->params['show_child_option'] = 1;
				endif;

				// Only show child option if it is enabled and the child quantity > 0
				if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) :
					$htmlChildSelection .= '';
					$htmlChildSelection .= '<option value="">' . JText::_('SR_CHILD') . '</option>';

					for ($j = 1; $j <= $roomType->occupancy_child; $j++) :
						if (isset($currentRoomIndex['children_number'])) :
							$selected = $currentRoomIndex['children_number'] == $j ? 'selected' : '';
						endif;
						$htmlChildSelection .= '
			<option ' . $selected . ' value="' . $j . '">' . JText::plural('SR_SELECT_CHILD_QUANTITY', $j) . '</option>
		';
					endfor;

					// Html for children ages
					// Restructure to match front end
					if (is_array($currentRoomIndex['other_info'])) :
						foreach ($currentRoomIndex['other_info'] as $info) :
							if (substr($info->key, 0, 5) == 'child') :
								$currentRoomIndex['children_ages'][] = $info->value;
							endif;
						endforeach;
					endif;

					if (isset($currentRoomIndex['children_ages'])) :
						for ($j = 0; $j < count($currentRoomIndex['children_ages']); $j++) :
							$htmlChildrenAges .= '
				<li>
					' . JText::_('SR_CHILD') . ' ' . ($j + 1) . '
					<select name="jform[room_types][' . $roomType->id . '][' . $arrayHolder . '][' . $room->id . '][children_ages][]"
						data-raid="' . $raid . '"
						data-roomtypeid="' . $roomType->id . '"
						data-roomid="' . $room->id . '"
						class="' . SR_UI_GRID_COL_6 . ' child_age_' . $roomType->id . '_' . $arrayHolder . '_' . $room->id . '_' . $j . ' trigger_tariff_calculating"
						required
					>';
							$htmlChildrenAges .= '<option value=""></option>';
							for ($age = 1; $age <= $childMaxAge; $age++) :
								$selectedAge = '';
								if ($age == $currentRoomIndex['children_ages'][$j]) :
									$selectedAge = 'selected';
								endif;
								$htmlChildrenAges .= '<option ' . $selectedAge . ' value="' . $age . '">' . JText::plural('SR_CHILD_AGE_SELECTION', $age) . '</option>';
							endfor;

							$htmlChildrenAges .= '
					</select>
				</li>';
						endfor;
					endif;
				endif;
				?>
                <div class="<?php echo constant('SR_UI_GRID_COL_' . $spanNum) ?> room-form" id="room<?php echo $room->id ?>">
                    <dl class="room_selection_wrapper room-form-item">
                        <dt>
                            <label class="checkbox">
                                <input type="checkbox"
                                       value="<?php echo $room->id ?>"
                                       class="reservation_room_select"
                                       name="jform[reservation_room_select][]" <?php echo $checked ?> <?php echo $disabled ?> />
                                <span class="label <?php echo $room->isReservedForThisReservation ? 'label-success' : '' ?>">
										<?php echo $room->label ?>
									</span>
                            </label>
                            <table class="table table-condensed table-bordered"
                                   style="<?php echo $room->isReservedForThisReservation ? '' : 'display: none;' ?>">
                                <tbody>
                                <tr>
                                    <td>
										<?php echo JText::_('SR_AMEND_RESERVATION_TARIFF_CURRENT') ?>
                                    </td>
                                    <td class="sr-align-right">
										<?php
										if ($room->isReservedForThisReservation) :
											$tmpCurrency = clone $currency;
											$tmpCurrency->setValue($currentRoomIndex['room_price_tax_incl']);
											echo $tmpCurrency->format();
										else :
											echo 0;
										endif;
										?>
                                    </td>
                                </tr>
                                <tr>
                                    <td>
										<?php echo JText::_('SR_AMEND_RESERVATION_TARIFF_NEW') ?>
                                    </td>
                                    <td class="sr-align-right">
                                        <a href="javascript:void(0)"
                                           class="toggle_breakdown tariff_breakdown_<?php echo $room->id ?>"
                                           data-target="<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?>"
                                           style="display: none"
                                        >
											<?php echo JText::_('SR_VIEW_TARIFF_BREAKDOWN') ?>
                                        </a>
                                        <span
                                                class="tariff_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?> tariff_breakdown_<?php echo $room->id ?>"
                                                style=""
                                        >
													0
												</span>
                                    </td>
                                </tr>
                                </tbody>
                            </table>
                            <span style="display: none"
                                  class="breakdown"
                                  id="breakdown_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?>">

								</span>
                        </dt>
                        <dd class="room_selection_details" id="room_selection_details_<?php echo $room->id ?>"
                            style="<?php echo $room->isReservedForThisReservation ? '' : 'display: none;' ?>">
                            <select
                                    name="jform[ignore]"
                                    data-roomid="<?php echo $room->id ?>"
                                    class="<?php echo SR_UI_GRID_COL_6 ?> tariff_selection" <?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
								<?php echo $room->isReservedForThisReservation ? '' : 'required' ?>
                            >
                                <option value=""><?php echo JText::_('SR_AMEND_RESERVATION_CHOOSE_TARIFF') ?></option>
								<?php
								foreach ($roomType->availableTariffs as $tariffKey => $tariffInfo) :
									$selected_tariff = '';
									if (isset($currentRoomIndex['tariff_id']) && $tariffKey == $currentRoomIndex['tariff_id']) :
										//$selected_tariff = 'selected';
									endif;
									?>
                                    <option data-adjoininglayer="<?php echo $tariffInfo['tariffAdjoiningLayer'] ?>"
										<?php echo $selected_tariff ?>
                                            value="<?php echo $tariffKey ?>"
                                    >
										<?php
										if (!empty($tariffInfo['tariffTitle'])) :
											echo $tariffInfo['tariffTitle'];
										else :
											if ($bookingType == 0) :
												echo JText::plural('SR_PRICE_IS_FOR_X_NIGHT', $stayLength);
											else :
												echo JText::plural('SR_PRICE_IS_FOR_X_DAY', $stayLength);
											endif;
										endif;
										?>
										<?php //echo empty( $tariffInfo['tariffTitle'] ) ? JText::_( 'SR_STANDARD_TARIFF' ) : $tariffInfo['tariffTitle']
										?>
                                    </option>
								<?php endforeach ?>
                            </select>
                            <input type="text"
                                   name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $arrayHolder ?>][<?php echo $room->id ?>][guest_fullname]"
                                   class="<?php echo SR_UI_GRID_COL_6 ?> guest_fullname"
                                   placeholder="<?php echo JText::_('SR_GUEST_NAME') ?>"
                                   value="<?php echo $currentRoomIndex['guest_fullname'] ?>"
								<?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
                            />
                            <select
                                    data-raid="<?php echo $raid ?>"
                                    data-roomtypeid="<?php echo $roomType->id ?>"
                                    data-tariffid="<?php echo isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : '' ?>"
                                    data-adjoininglayer=""
                                    data-roomid="<?php echo $room->id ?>"
                                    data-max="<?php echo $roomType->occupancy_max ?>"
                                    name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $arrayHolder ?>][<?php echo $room->id ?>][adults_number]"
                                    required
                                    data-identity="<?php echo $identity ?>"
                                    class="<?php echo SR_UI_GRID_COL_6 ?> adults_number occupancy_max_constraint occupancy_max_constraint_<?php echo $room->id ?>_<?php echo $arrayHolder ?>_<?php echo $roomType->id ?> occupancy_adult_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?> trigger_tariff_calculating"
								<?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
                            >
								<?php echo $htmlAdultSelection ?>
                            </select>
							<?php if ($roomType->params['show_child_option'] == 1 && $roomType->occupancy_child > 0) : ?>
                                <select
                                        data-roomtypeid="<?php echo $roomType->id ?>"
                                        data-tariffid="<?php echo isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : '' ?>"
                                        data-adjoininglayer=""
                                        data-roomid="<?php echo $room->id ?>"
                                        data-max="<?php echo $roomType->occupancy_max ?>"
                                        data-identity="<?php echo $identity ?>"
                                        name="jform[room_types][<?php echo $roomType->id ?>][<?php echo $arrayHolder ?>][<?php echo $room->id ?>][children_number]"
                                        class="<?php echo SR_UI_GRID_COL_6 ?> children_number occupancy_max_constraint occupancy_max_constraint_<?php echo $room->id ?>_<?php echo $arrayHolder ?>_<?php echo $roomType->id ?> reservation-form-child-quantity trigger_tariff_calculating occupancy_child_<?php echo $roomType->id . '_' . $arrayHolder . '_' . $room->id ?>"
									<?php echo $room->isReservedForThisReservation ? '' : 'disabled' ?>
                                >
									<?php echo $htmlChildSelection ?>
                                </select>
							<?php endif ?>

                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <div
                                        class="<?php echo SR_UI_GRID_COL_6 ?> <?php echo SR_UI_GRID_OFFSET_6 ?> child-age-details <?php echo(empty($htmlChildrenAges) ? 'nodisplay' : '') ?>">
                                    <p><?php echo JText::_('SR_AGE_OF_CHILD_AT_CHECKOUT') ?></p>
                                    <ul class="unstyled list-unstyled"><?php echo $htmlChildrenAges ?></ul>
                                </div>
                            </div>

                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <ul class="unstyled list-unstyled <?php echo SR_UI_GRID_COL_12 ?>">
									<?php
									foreach ($roomType->extras as $extra) :
										$extraInputCommonName = 'jform[room_types][' . $roomType->id . '][' . $arrayHolder . '][' . $room->id . '][extras][' . $extra->id . ']';
										$checked = '';
										$disabledCheckbox = '';
										$disabledSelect = 'disabled="disabled"';
										$alreadySelected = false;
										$canBeEnabled = true;
										if (isset($currentRoomIndex['extras'])) :
											$alreadySelected = array_key_exists($extra->id, (array) $currentRoomIndex['extras']);
										endif;

										if ($extra->mandatory == 1 || $alreadySelected) :
											$checked = 'checked="checked"';
										endif;

										if ($extra->mandatory == 1) :
											$disabledCheckbox = ''; // don't force mandatory for admin
											$canBeEnabled     = false;
											//$disabledSelect   = ''; // don't force mandatory for admin
										endif;

										if ($alreadySelected) :
											$disabledSelect = '';
										endif;
										?>
                                        <li class="extras_row_roomtypeform"
                                            id="extras_row_roomtypeform_<?php echo $identity ?>">
                                            <input <?php echo $checked ?> <?php echo $disabledCheckbox ?>
                                                    type="checkbox"
                                                    class="<?php echo $canBeEnabled ? '' : 'no_enable' ?>"
                                                    data-target="extra_<?php echo $roomType->id ?>_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>"
                                                    data-extraid="<?php echo $extra->id ?>"
                                            />
											<?php if ($extra->mandatory == 1) : ?>
                                                <input type="hidden"
                                                       name="<?php echo $extraInputCommonName ?>[quantity]"
                                                       value="1" <?php echo $disabledCheckbox ?>
                                                       class="<?php echo $canBeEnabled ? '' : 'no_enable' ?>"
                                                       disabled
                                                />
											<?php endif ?>

                                            <select
                                                    class="<?php echo SR_UI_GRID_COL_2 ?> extra_quantity trigger_tariff_calculating"
                                                    id="extra_<?php echo $roomType->id ?>_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>"
                                                    data-raid="<?php echo $raid ?>"
                                                    data-roomtypeid="<?php echo $roomType->id ?>"
                                                    data-tariffid="<?php echo isset($currentRoomIndex['tariff_id']) ? $currentRoomIndex['tariff_id'] : '' ?>"
                                                    data-adjoininglayer=""
                                                    data-roomid="<?php echo $room->id ?>"
                                                    name="<?php echo $extraInputCommonName ?>[quantity]"
												<?php echo $disabledSelect ?>
                                            >
												<?php
												for ($quantitySelection = 1; $quantitySelection <= $extra->max_quantity; $quantitySelection++) :
													$checked = '';
													if (isset($currentRoomIndex['extras'][$extra->id]['quantity'])) :
														$checked = ($currentRoomIndex['extras'][$extra->id]['quantity'] == $quantitySelection) ? 'selected' : '';
													endif;
													?>
                                                    <option <?php echo $checked ?>
                                                            value="<?php echo $quantitySelection ?>"><?php echo $quantitySelection ?></option>
												<?php
												endfor;
												?>
                                            </select>
                                            <span>
													<?php echo $extra->name ?>
                                                <a href="javascript:void(0)"
                                                   class="toggle_extra_details"
                                                   data-target="extra_details_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>">
														<?php echo JText::_('SR_EXTRA_MORE_DETAILS') ?>
													</a>
												</span>
                                            <span class="extra_details"
                                                  id="extra_details_<?php echo $arrayHolder ?>_<?php echo $room->id ?>_<?php echo $extra->id ?>"
                                                  style="display: none">
													<?php if ($extra->charge_type == 3 || $extra->charge_type == 5 || $extra->charge_type == 6) : ?>
                                                        <span>
														<?php echo JText::_('SR_EXTRA_PRICE_ADULT') . ': ' . $extra->currencyAdult->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
													</span>
                                                        <span>
														<?php echo JText::_('SR_EXTRA_PRICE_CHILD') . ': ' . $extra->currencyChild->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
													</span>
													<?php else: ?>
                                                        <span>
														<?php echo JText::_('SR_EXTRA_PRICE') . ': ' . $extra->currency->format() . ' (' . JText::_(SRExtra::$chargeTypes[$extra->charge_type]) . ')' ?>
													</span>
													<?php endif; ?>

                                                <span>
														<?php echo $extra->description ?>
													</span>
												</span>
                                        </li>
									<?php
									endforeach;
									?>
                                </ul>
                            </div>

                            <?php if (!empty($room->roomForm)): ?>
                            <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                                <?php echo $room->roomForm; ?>
                            </div>
                            <?php endif; ?>
                        </dd>
                    </dl>
                </div>
			<?php
			endif;
		endfor;
	endif; ?>
	<?php endforeach; ?>

    <div class="<?php echo SR_UI_GRID_CONTAINER ?> button-row button-row-bottom">
        <div class="<?php echo SR_UI_GRID_COL_8 ?>">
        </div>
        <div class="<?php echo SR_UI_GRID_COL_4 ?>">
            <div class="inner">
                <div class="btn-group">
                    <button data-step="room" type="submit" class="btn btn-success">
                        <i class="fa fa-arrow-right"></i> <?php echo JText::_('SR_NEXT') ?>
                    </button>
                </div>
            </div>
        </div>
    </div>
    <input type="hidden" name="jform[next_step]" value="guestinfo"/>
    <input type="hidden" name="jform[raid]" value="<?php echo $raid ?>"/>
	<?php echo JHtml::_('form.token'); ?>
</form>
layouts/asset/checkinoutform_date_blocks_2.php000060400000010200150751740420015661 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/asset/checkinoutform_date_blocks_2.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);
$datePairs   = array();
$datePairs[] = array($defaultMinCheckInDate->format('Y-m-d', true), $defaultMinCheckOutDate->format('Y-m-d', true));

for ($i = 0; $i < 10; $i++) :
	$datePairs[] = array($defaultMinCheckOutDate->format('Y-m-d', true), $defaultMinCheckOutDate->add(new DateInterval('P' . ($bookingType == 0 ? $tariff->d_min : $tariff->d_min - 1) . 'D'))->format('Y-m-d', true));
endfor;
$datePairsCount = count($datePairs);
$itemPerRow     = 4;
$spanNum        = 12 / (int) $itemPerRow;
$totalShow      = 7;

?>
<?php if ($datePairsCount > 0) : ?>
    <div class="row-fluid">
        <div class="span12">
            <div class="inner">
				<?php
				if (!empty($datePairs)) :
					$url = JRoute::_('index.php?option=com_solidres&task=reservationasset.checkavailability&checkin=&checkout=&id=' . (int) $assetId);
					for ($i = 0; $i <= $datePairsCount; $i++) :
						if ($i < $totalShow) :
							$dates = $datePairs[$i];

							if ($i % $itemPerRow == 0 && $i == 0) :
								echo '<div class="' . SR_UI_GRID_CONTAINER . ' solidres-roomtype-tariff-block">';
                            elseif ($i % $itemPerRow == 0 && $i != $datePairsCount) :
								echo '</div><div class="' . SR_UI_GRID_CONTAINER . ' solidres-roomtype-tariff-block">';
                            elseif ($i == $datePairsCount) :
								echo '</div>';
							endif;

							$newUrl = JUri::getInstance($url);
							$newUrl->setVar('checkin', $dates[0]);
							$newUrl->setVar('checkout', $dates[1]);
							if ($enableAutoScroll) :
								$newUrl->setFragment('srt_' . $roomTypeId);
							endif;
							$checkinDisplay         = JDate::getInstance($dates[0])->format('d M', true);
							$checkoutDisplay        = JDate::getInstance($dates[1])->format('d M', true);
							$checkinWeekDayDisplay  = JDate::getInstance($dates[0])->format('D', true);
							$checkoutWeekDayDisplay = JDate::getInstance($dates[1])->format('D', true);
							$lengthOfStay           = (int) SRUtilities::calculateDateDiff($dates[0], $dates[1]);

							echo '<div class="' . constant('SR_UI_GRID_COL_' . $spanNum) . ' solidres-roomtype-tariff-block-item">';
							echo '<a class="" href="' . $newUrl->toString() . '">
                                <span>' . JText::_('SR_CHECKIN') . '</span>
                                <span>' . $checkinDisplay . '</span>
                                <span>' . JText::_('SR_CHECKOUT') . '</span>
                                <span>' . $checkoutDisplay . '</span>
                             </a>';
							echo '</div>';
						endif;
					endfor;
					?>

				<?php
				endif;
				?>
            </div>
        </div>
    </div>
<?php endif ?>
<style>
    .solidres-roomtype-tariff-block-item {
        background: white;
        border: 1px solid #CCC;
        margin-bottom: 10px;
        color: #2A626C;
        text-align: center;
        font-weight: bold;
    }

    .solidres-roomtype-tariff-block-item a:link,
    .solidres-roomtype-tariff-block-item a:hover {
        display: block;
        margin: 15px;
        color: #2A626C;
    }

    .solidres-roomtype-tariff-block-item span {
        display: block;
    }
</style>
layouts/emails/reservation_note_notification_customer_html_inliner.php000060400000065373150751740420023067 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/emails/reservation_note_notification_customer_html_inliner.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

echo SRLayoutHelper::render('emails.header', $displayData);

extract($displayData);

?>

    <table class="body"
           style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; height: 100%; width: 100%; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;">
        <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
            align="left">
            <td class="center" align="center" valign="top"
                style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;">
                <center style="width: 100%; min-width: 580px;">

                    <!-- Begin email header -->
                    <table class="row header"
                           style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; background: #999999; padding: 0px;"
                           bgcolor="#999999">
                        <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                            align="left">
                            <td class="center" align="center"
                                style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                valign="top">
                                <center style="width: 100%; min-width: 580px;">

                                    <table class="container"
                                           style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: inherit; width: 580px; margin: 0 auto; padding: 0;">
                                        <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                            align="left">
                                            <td class="wrapper last"
                                                style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                                align="left" valign="top">

                                                <table class="twelve columns"
                                                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                        align="left">
                                                        <td class="six sub-columns"
                                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; min-width: 0px; width: 50%; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 10px 10px 0px;"
                                                            align="left" valign="top">
															<?php if (isset($asset->params['logo'])) : ?>
                                                                <img
                                                                src="<?php echo SRURI_MEDIA . '/assets/images/system/' . $asset->params['logo'] ?>"
                                                                alt="logo"
                                                                style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: auto; max-width: 100%; float: left; clear: both; display: block;"
                                                                align="left" /><?php endif ?></td>
                                                        <td class="six sub-columns last"
                                                            style="text-align: right; vertical-align: middle; word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; min-width: 0px; width: 50%; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                            align="right" valign="middle">
                                                            <span class="template-label"
                                                                  style="color: #ffffff; font-weight: bold; font-size: 11px;"><?php echo JText::_('SR_EMAIL_RESERVATION_NOTE') ?></span><br/>
                                                        </td>
                                                        <td class="expander"
                                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                            align="left" valign="top"></td>
                                                    </tr>
                                                </table>
                                            </td>
                                        </tr>
                                    </table>
                                </center>
                            </td>
                        </tr>
                    </table><!-- End of email header --><!-- Begin of email body -->
                    <table class="container"
                           style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: inherit; width: 580px; margin: 0 auto; padding: 0;">
                        <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                            align="left">
                            <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                align="left" valign="top">

                                <table class="row callout"
                                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                        align="left">
                                        <td class="wrapper last"
                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 20px;"
                                            align="left" valign="top">

                                            <table class="twelve columns"
                                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                    align="left">
                                                    <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                        align="left" valign="top">
                                                        <h3 style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 32px; margin: 0; padding: 0;"
                                                            align="left"><?php echo JText::sprintf('SR_EMAIL_GREETING_NAME', $reservation->customer_firstname, $reservation->customer_middlename, $reservation->customer_lastname) ?></h3>

                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left"> </p>

                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left"><?php echo $text ?></p>

                                                    </td>
                                                    <td class="expander"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                        align="left" valign="top"></td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
                                <table class="row footer"
                                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                        align="left">
                                        <td class="wrapper"
                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; background: #ebebeb; margin: 0; padding: 10px 20px 0px 0px;"
                                            align="left" bgcolor="#ebebeb" valign="top">

                                            <table class="six columns"
                                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                    align="left">
                                                    <td class="left-text-pad"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px 10px;"
                                                        align="left" valign="top">

                                                        <h5 style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; margin: 0; padding: 0 0 10px;"
                                                            align="left"><?php echo JText::_('SR_EMAIL_CONNECT_WITH_US') ?></h5>

														<?php if (!empty($asset->reservationasset_extra_fields['facebook_link'])
															&& $asset->reservationasset_extra_fields['facebook_show'] == 1) : ?>
                                                        <table class="tiny-button facebook"
                                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; overflow: hidden; padding: 0;">
                                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                                align="left">
                                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #ffffff; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; display: block; width: auto !important; background: #3b5998; margin: 0; padding: 5px 0 4px; border: 1px solid #2d4473;"
                                                                    align="center" bgcolor="#3b5998" valign="top">
                                                                    <a href="<?php echo $asset->reservationasset_extra_fields['facebook_link'] ?>"
                                                                       style="color: #ffffff; text-decoration: none; font-weight: normal; font-family: Helvetica, Arial, sans-serif; font-size: 12px;">Facebook</a>
                                                                </td>
                                                            </tr></table><?php endif; ?>
                                                        <br/><?php if (!empty($asset->reservationasset_extra_fields['twitter_link'])
															&& $asset->reservationasset_extra_fields['twitter_show'] == 1) : ?>
                                                        <table class="tiny-button twitter"
                                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; overflow: hidden; padding: 0;">
                                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                                align="left">
                                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #ffffff; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; display: block; width: auto !important; background: #00acee; margin: 0; padding: 5px 0 4px; border: 1px solid #0087bb;"
                                                                    align="center" bgcolor="#00acee" valign="top">

                                                                    <a href="<?php echo $asset->reservationasset_extra_fields['twitter_link'] ?>"
                                                                       style="color: #ffffff; text-decoration: none; font-weight: normal; font-family: Helvetica, Arial, sans-serif; font-size: 12px;">Twitter</a>

                                                                </td>
                                                            </tr></table><?php endif; ?>
                                                        <br/><?php if (!empty($asset->reservationasset_extra_fields['youtube_link'])
															&& $asset->reservationasset_extra_fields['youtube_show'] == 1) : ?>
                                                        <table class="tiny-button youtube"
                                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; overflow: hidden; padding: 0;">
                                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                                align="left">
                                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #ffffff; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; display: block; width: auto !important; background: #DB4A39; margin: 0; padding: 5px 0 4px; border: 1px solid #cc0000;"
                                                                    align="center" bgcolor="#DB4A39" valign="top">

                                                                    <a href="<?php echo $asset->reservationasset_extra_fields['youtube_link'] ?>"
                                                                       style="color: #ffffff; text-decoration: none; font-weight: normal; font-family: Helvetica, Arial, sans-serif; font-size: 12px;">Youtube</a>

                                                                </td>
                                                            </tr></table><?php endif; ?></td>
                                                    <td class="expander"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                        align="left" valign="top"></td>
                                                </tr>
                                            </table>
                                        </td>
                                        <td class="wrapper last"
                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; background: #ebebeb; margin: 0; padding: 10px 0px 0px;"
                                            align="left" bgcolor="#ebebeb" valign="top">

                                            <table class="six columns"
                                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                    align="left">
                                                    <td class="last right-text-pad"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                        align="left" valign="top">
                                                        <h5 style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; margin: 0; padding: 0 0 10px;"
                                                            align="left"><?php echo JText::_('SR_EMAIL_CONTACT_INFO') ?></h5>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::_('SR_EMAIL_ADDRESS') . $asset->address_1 . ', ' . $asset->city . ', ' . (!empty($asset->geostate_code_2) ? $asset->geostate_code_2 . ' ' : '') . $asset->postcode ?>
                                                        </p>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left"><?php echo JText::_('SR_EMAIL_PHONE') ?><?php echo $asset->phone ?></p>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left"><?php echo JText::_('SR_EMAIL_EMAIL') ?><a
                                                                    href="mailto:<?php echo $asset->email ?>"
                                                                    style="color: #2ba6cb; text-decoration: none;"><?php echo $asset->email ?></a>
                                                        </p>
                                                    </td>
                                                    <td class="expander"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                        align="left" valign="top"></td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table><!-- container end below --></td>
                        </tr>
                    </table><!-- End of email body --></center>
            </td>
        </tr>
    </table>

<?php
echo SRLayoutHelper::render('emails.footer');layouts/emails/customer_fields.php000060400000003506150751740420013423 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/emails/customer_fields.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

?>
<?php

$fieldLength   = count($customerFields);
$partialNumber = ceil($fieldLength / 2);

?>

<table class="row">
    <tr align="left">
        <td class="wrapper" align="left" valign="top">
			<?php for ($i = 0; $i <= $partialNumber; $i++): ?>
                <p align="left">
					<?php echo $customerFields[$i]['title']; ?>
                    : <?php echo $customerFields[$i]['value']; ?>
                </p>
			<?php endfor; ?>
        </td>
        <td class="wrapper" align="left" valign="top">
			<?php for ($i = $partialNumber + 1; $i < $fieldLength; $i++): ?>
                <p align="left">
					<?php echo $customerFields[$i]['title']; ?>
                    : <?php echo $customerFields[$i]['value']; ?>
                </p>
			<?php endfor; ?>
        </td>
    </tr>
</table>layouts/emails/reservation_complete_owner_html_inliner.php000060400000206764150751740420020456 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/emails/reservation_complete_owner_html_inliner.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

echo SRLayoutHelper::render('emails.header', $displayData);

extract($displayData);

?>

<table class="body"
       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; height: 100%; width: 100%; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;">
    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
        align="left">
        <td class="center" align="center" valign="top"
            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;">
            <center style="width: 100%; min-width: 580px;">

                <!-- Begin email header -->
                <table class="row header"
                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; background: #999999; padding: 0px;"
                       bgcolor="#999999">
                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                        align="left">
                        <td class="center" align="center"
                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                            valign="top">
                            <center style="width: 100%; min-width: 580px;">

                                <table class="container"
                                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: inherit; width: 580px; margin: 0 auto; padding: 0;">
                                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                        align="left">
                                        <td class="wrapper last"
                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                            align="left" valign="top">

                                            <table class="twelve columns"
                                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                    align="left">
                                                    <td class="six sub-columns"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; min-width: 0px; width: 50%; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 10px 10px 0px;"
                                                        align="left" valign="top">
														<?php $assetLogo = $asset->params['logo'];
														if (isset($assetLogo) && !empty($assetLogo)) :
															if (file_exists(JPATH_ROOT . '/media/com_solidres/assets/images/system/' . $assetLogo)) : ?>
                                                                <img
                                                                src="<?php echo SRURI_MEDIA . '/assets/images/system/' . $assetLogo ?>"
                                                                alt="logo"
                                                                style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: auto; max-width: 100%; float: left; clear: both; display: block;"
                                                                align="left" /><?php endif; endif ?></td>
                                                    <td class="six sub-columns last"
                                                        style="text-align: right; vertical-align: middle; word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; min-width: 0px; width: 50%; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                        align="right" valign="middle">
                                                        <span class="template-label"
                                                              style="color: #ffffff; font-weight: bold; font-size: 11px;"><?php echo JText::_('SR_EMAIL_CONFIRM_RESERVATION') ?></span><br/><span
                                                                class="template-label"
                                                                style="color: #ffffff; font-weight: bold; font-size: 11px;">
															<a href="<?php echo $editLink ?>" target="_blank"
                                                               style="color: #2ba6cb; text-decoration: none;">
																<?php echo JText::sprintf('SR_EMAIL_REF_ID', $reservation->code) ?>
															</a>
														</span>
                                                    </td>
                                                    <td class="expander"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                        align="left" valign="top"></td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
                            </center>
                        </td>
                    </tr>
                </table><!-- End of email header --><!-- Begin of email body -->
                <table class="container"
                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: inherit; width: 580px; margin: 0 auto; padding: 0;">
                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                        align="left">
                        <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                            align="left" valign="top">

                            <table class="row callout"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 20px;"
                                        align="left" valign="top">

                                        <table class="twelve columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <h3 style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 32px; margin: 0; padding: 0;"
                                                        align="left"><?php echo JText::sprintf('SR_EMAIL_GREETING_NAME_OWNER') ?></h3>

                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"> </p>

													<?php echo call_user_func_array('JText::sprintf', $greetingText) ?></td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                            <h5 class="email_heading"
                                style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                align="left"><?php echo JText::_("SR_GENERAL_INFO") ?></h5>

                            <table class="row"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 20px 0px 0px;"
                                        align="left" valign="top">

                                        <table class="six columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_CHECKIN') . JDate::getInstance($reservation->checkin, $timezone)->format($dateFormat, true) ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_CHECKOUT') . JDate::getInstance($reservation->checkout, $timezone)->format($dateFormat, true) ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_PAYMENT_METHOD') . JText::_('SR_PAYMENT_METHOD_' . $reservation->payment_method_id) ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_EMAIL') . $reservation->customer_email ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_LENGTH_OF_STAY') ?>
														<?php if ($reservation->booking_type == 0) :
															echo JText::plural('SR_NIGHTS', $stayLength);
														else :
															echo JText::plural('SR_DAYS', $stayLength + 1);
														endif; ?>
                                                    </p>
													<?php if (!empty($reservation->coupon_code)) : ?>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left"><?php echo JText::_('SR_EMAIL_COUPON_CODE') . $reservation->coupon_code ?></p>
													<?php endif ?>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_NOTE') . $customerNote ?> </p>
                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                        align="left" valign="top">

                                        <table class="six columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_SUB_TOTAL') . $subTotal ?></p>
													<?php if ($discountPreTax && !is_null($totalDiscount)) : ?><p
                                                        style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                        align="left"><?php echo JText::_('SR_EMAIL_TOTAL_DISCOUNT') . '-' . $totalDiscount ?></p>
													<?php endif; ?><p
                                                            style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                            align="left"><?php echo JText::_('SR_EMAIL_TAX') . $tax ?></p>
													<?php if (!$discountPreTax && !is_null($totalDiscount)) : ?><p
                                                        style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                        align="left"><?php echo JText::_('SR_EMAIL_TOTAL_DISCOUNT') . '-' . $totalDiscount ?></p>
													<?php endif; ?><p
                                                            style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                            align="left"><?php echo JText::_('SR_EMAIL_EXTRA_TAX_EXCL') . $totalExtraPriceTaxExcl ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_EXTRA_TAX_AMOUNT') . $extraTax ?></p>
													<?php if ($reservation->payment_method_surcharge > 0) : ?>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::sprintf("SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT", $paymentMethodLabel) . $paymentMethodSurcharge; ?>
                                                        </p>
													<?php endif ?>
													<?php if ($reservation->payment_method_discount > 0) : ?>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::sprintf("SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT", $paymentMethodLabel) . '-' . $paymentMethodDiscount; ?>
                                                        </p>
													<?php endif ?>
													<?php if ($enableTouristTax) : ?>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::_('SR_EMAIL_TOURIST_TAX') . $touristTax; ?></p>
													<?php endif ?>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_GRAND_TOTAL') . $grandTotal ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_DEPOSIT_AMOUNT') . $depositAmount ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_TOTAL_PAID') . $totalPaid ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_DUE_AMOUNT') . $dueAmount ?></p>
                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                            <!-- Customer (or custom fields maybe) -->
                            <h5 class="email_heading"
                                style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                align="left">
								<?php echo JText::_('SR_GUEST_INFO'); ?>
                            </h5>
	                        <?php echo SRLayoutHelper::render('emails.customer_fields', $displayData, false); ?>
							<?php if (!empty($bankwireInstructions)) : ?><h5 class="email_heading"
                                                                             style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                                                             align="left"><?php echo JText::_("SR_EMAIL_BANKWIRE_INFO") ?></h5>

                            <table class="row"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                        align="left" valign="top">

                                        <table class="twelve columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left">
														<?php echo $bankwireInstructions['account_name'];
														?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left">
														<?php echo $bankwireInstructions['account_details'];
														?></p>
                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr></table><?php endif ?><?php if (!empty($paymentMethodCustomEmailContent)) : ?><h5
                                class="email_heading"
                                style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                align="left"><?php echo JText::_("SR_EMAIL_PAYMENT_METHOD_INFO") ?></h5>

                            <table class="row"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                        align="left" valign="top">

                                        <table class="twelve columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
													<?php echo $paymentMethodCustomEmailContent
													?></td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr></table><?php endif ?><h5 class="email_heading"
                                                               style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                                               align="left"><?php echo JText::_("SR_ROOM_EXTRA_INFO") ?></h5>

							<?php foreach ($reservation->reserved_room_details as $room) : ?>
                                <p class="email_roomtype_name"
                                   style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: bold; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; border-bottom-style: solid; border-bottom-color: #CCC; border-bottom-width: 1px; margin: 10px 0 5px; padding: 0;"
                                   align="left">
									<?php echo $room->room_type_name ?>
                                </p>

                                <table class="row"
                                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                        align="left">
                                        <td class="wrapper"
                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 20px 0px 0px;"
                                            align="left" valign="top">

                                            <table class="six columns"
                                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                    align="left">
                                                    <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                        align="left" valign="top">
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::_("SR_GUEST_FULLNAME") . ': ' . $room->guest_fullname ?>
                                                        </p>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php foreach ($room->other_info as $info) : if (substr($info->key, 0, 7) == 'smoking') : ?>
																<?php echo JText::_('SR_' . $info->key) . ': ' . ($info->value == '' ? JText::_('SR_NO_PREFERENCES') : ($info->value == 1 ? JText::_('SR_YES') : JText::_('SR_NO'))); ?>
															<?php endif; endforeach; ?></p>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::_("SR_ADULT_NUMBER") . ': ' . $room->adults_number ?>
                                                        </p>
														<?php if ($room->children_number > 0) : ?>
                                                            <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                               align="left">
																<?php echo JText::_("SR_CHILDREN_NUMBER") . ': ' . $room->children_number ?>
                                                            </p>
															<?php foreach ($room->other_info as $info) : ?>
                                                                <ul><?php if (substr($info->key, 0, 5) == 'child') : ?>
                                                                    <li>
																		<?php echo JText::_('SR_' . $info->key) . ': ' . JText::plural('SR_CHILD_AGE_SELECTION', $info->value) ?>
                                                                    </li>
																<?php endif; ?></ul><?php endforeach; ?><?php endif; ?>
	                                                    <?php

	                                                    if (isset($roomFields[$room->id]))
	                                                    {
		                                                    echo SRLayoutHelper::render('emails.room_fields', ['roomFields' => $roomFields[$room->id], 'roomExtras' => isset($room->extras) ? $room->extras : []]);
	                                                    }

	                                                    ?>
                                                    </td>
                                                    <td class="expander"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                        align="left" valign="top"></td>
                                                </tr>
                                            </table>
                                        </td>
                                        <td class="wrapper last"
                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                            align="left" valign="top">

                                            <table class="six columns"
                                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                    align="left">
                                                    <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                        align="left" valign="top">
														<?php if (isset($room->extras) && is_array($room->extras)) : ?>
                                                            <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                               align="left"><?php echo JText::_('SR_EMAIL_EXTRAS_ITEMS') ?></p>
															<?php foreach ($room->extras as $extra) : ?>

                                                                <dl>
                                                                <dt>
																	<?php echo $extra->extra_name ?>
                                                                </dt>
                                                                <dd>
																	<?php echo JText::_('SR_EMAIL_EXTRA_QUANTITY') . $extra->extra_quantity ?>
                                                                </dd>
                                                                <dd>
																	<?php $roomExtraCurrency = clone $baseCurrency;
																	$roomExtraCurrency->setValue($extra->extra_price);
																	echo JText::_('SR_EMAIL_EXTRA_PRICE') . $roomExtraCurrency->format()
																	?>
                                                                </dd>
                                                                </dl><?php endforeach; ?><?php endif; ?></td>
                                                    <td class="expander"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                        align="left" valign="top"></td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
								<?php
								$showTariffInEmail = $asset->params['show_tariff_in_email'];
								$showTariffInEmail = isset($showTariffInEmail) ? $showTariffInEmail : 0;
								if (0 != $showTariffInEmail) :
									?>
                                    <table class="row"
                                           style="border-spacing: 0; border-collapse: collapse; width: 100%; position: relative; padding: 0px;">
                                    <tr style="">
                                        <td class="wrapper"
                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; position: relative; font-size: 14px; line-height: 19px; padding: 10px 20px 0px 0px;">

                                            <table class="twelve columns"
                                                   style="border-spacing: 0; border-collapse: collapse; width: 580px; margin: 0 auto;">
                                                <tr style="">
                                                    <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; font-size: 14px; line-height: 19px; padding: 0px 0px 10px;">
														<?php
														if (1 == $showTariffInEmail || 3 == $showTariffInEmail) :
															echo $room->tariff_title;
														endif;
														?>

														<?php if (3 == $showTariffInEmail) : ?>
                                                            <br><?php endif; ?><?php if (2 == $showTariffInEmail || 3 == $showTariffInEmail) :
															echo $room->tariff_description;
														endif;
														?>
                                                    </td>
                                                    <td class="expander"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0px; font-size: 14px; line-height: 19px; padding: 0;"></td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr></table><?php endif; endforeach; ?><h5 class="email_heading"
                                                                                style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                                                                align="left"><?php echo JText::_("SR_EMAIL_OTHER_INFO") ?></h5>

                            <table class="row"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                        align="left" valign="top">

                                        <table class="twelve columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <dl><?php if (isset($reservation->extras) && is_array($reservation->extras)) :
															foreach ($reservation->extras as $extra) : ?>
                                                                <dt>
																	<?php echo $extra->extra_name ?>
                                                                </dt>
                                                                <dd>
																	<?php echo JText::_('SR_EMAIL_EXTRA_QUANTITY') . $extra->extra_quantity ?>
                                                                </dd>
                                                                <dd>
																	<?php $bookingExtraCurrency = clone $baseCurrency;
																	$bookingExtraCurrency->setValue($extra->extra_price);
																	echo JText::_('SR_EMAIL_EXTRA_PRICE') . $bookingExtraCurrency->format()
																	?>
                                                                </dd>
															<?php endforeach;
														endif;
														?></dl>
                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                            <table class="row footer"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; background: #ebebeb; margin: 0; padding: 10px 20px 0px 0px;"
                                        align="left" bgcolor="#ebebeb" valign="top">

                                        <table class="six columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td class="left-text-pad"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px 10px;"
                                                    align="left" valign="top">

                                                    <h5 style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; margin: 0; padding: 0 0 10px;"
                                                        align="left"><?php echo JText::_('SR_EMAIL_CONNECT_WITH_US') ?></h5>

													<?php if (!empty($asset->reservationasset_extra_fields['facebook_link'])
														&& $asset->reservationasset_extra_fields['facebook_show'] == 1) : ?>
                                                    <table class="tiny-button facebook"
                                                           style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; overflow: hidden; padding: 0;">
                                                        <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                            align="left">
                                                            <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #ffffff; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; display: block; width: auto !important; background: #3b5998; margin: 0; padding: 5px 0 4px; border: 1px solid #2d4473;"
                                                                align="center" bgcolor="#3b5998" valign="top">
                                                                <a href="<?php echo $asset->reservationasset_extra_fields['facebook_link'] ?>"
                                                                   style="color: #ffffff; text-decoration: none; font-weight: normal; font-family: Helvetica, Arial, sans-serif; font-size: 12px;">Facebook</a>
                                                            </td>
                                                        </tr></table><?php endif; ?>
                                                    <br/><?php if (!empty($asset->reservationasset_extra_fields['twitter_link'])
														&& $asset->reservationasset_extra_fields['twitter_show'] == 1) : ?>
                                                    <table class="tiny-button twitter"
                                                           style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; overflow: hidden; padding: 0;">
                                                        <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                            align="left">
                                                            <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #ffffff; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; display: block; width: auto !important; background: #00acee; margin: 0; padding: 5px 0 4px; border: 1px solid #0087bb;"
                                                                align="center" bgcolor="#00acee" valign="top">

                                                                <a href="<?php echo $asset->reservationasset_extra_fields['twitter_link'] ?>"
                                                                   style="color: #ffffff; text-decoration: none; font-weight: normal; font-family: Helvetica, Arial, sans-serif; font-size: 12px;">Twitter</a>

                                                            </td>
                                                        </tr></table><?php endif; ?>
                                                    <br/><?php if (!empty($asset->reservationasset_extra_fields['youtube_link'])
														&& $asset->reservationasset_extra_fields['youtube_show'] == 1) : ?>
                                                    <table class="tiny-button youtube"
                                                           style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; overflow: hidden; padding: 0;">
                                                        <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                            align="left">
                                                            <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #ffffff; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; display: block; width: auto !important; background: #DB4A39; margin: 0; padding: 5px 0 4px; border: 1px solid #cc0000;"
                                                                align="center" bgcolor="#DB4A39" valign="top">

                                                                <a href="<?php echo $asset->reservationasset_extra_fields['youtube_link'] ?>"
                                                                   style="color: #ffffff; text-decoration: none; font-weight: normal; font-family: Helvetica, Arial, sans-serif; font-size: 12px;">Youtube</a>

                                                            </td>
                                                        </tr></table><?php endif; ?></td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; background: #ebebeb; margin: 0; padding: 10px 0px 0px;"
                                        align="left" bgcolor="#ebebeb" valign="top">

                                        <table class="six columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td class="last right-text-pad"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <h5 style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; margin: 0; padding: 0 0 10px;"
                                                        align="left"><?php echo JText::_('SR_EMAIL_CONTACT_INFO') ?></h5>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left">
														<?php echo JText::_('SR_EMAIL_ADDRESS') . $asset->address_1 . ', ' . $asset->city . ', ' . (!empty($asset->geostate_code_2) ? $asset->geostate_code_2 . ' ' : '') . $asset->postcode ?>
                                                    </p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_PHONE') ?><?php echo $asset->phone ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_EMAIL') ?><a
                                                                href="mailto:<?php echo $asset->email ?>"
                                                                style="color: #2ba6cb; text-decoration: none;"><?php echo $asset->email ?></a>
                                                    </p>
                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table><!-- container end below --></td>
                    </tr>
                </table><!-- End of email body --></center>
        </td>
    </tr>
</table>

<?php
echo SRLayoutHelper::render('emails.footer');
layouts/emails/room_fields.php000060400000003431150751740420012533 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/emails/room_fields.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

echo '<hr/><ul>';

$selectedExtras = [];
foreach ($roomExtras as $extra)
{
	$selectedExtras[] = $extra->extra_id;
}

foreach ($roomFields as $id => $field)
{
	$attribs = json_decode($field['attribs'], true);
	$assignedExtras = [];
	if (!empty($attribs['assigned_extras']))
	{
		$assignedExtras = explode(',', $attribs['assigned_extras']);
	}

	$showField = true;
	if (is_array($assignedExtras) && count($assignedExtras) > 0)
	{
		$matchedExtra = array_intersect($selectedExtras, $assignedExtras);

		if (!is_array($matchedExtra) || count($matchedExtra) == 0)
		{
			$showField = false;
		}
	}
	echo '<li style="' . ($showField ? '' : 'display: none') . '"><label>' . JText::_($field['title']) . ':</label> ' . $field['value'] . '</li>';
}

echo '</ul>';
layouts/emails/header.php000060400000026520150751740420011465 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/emails/header.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

extract($displayData);

?>
<!-- Inliner Build Version 4380b7741bb759d6cb997545f3add21ad48f010b -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" dir="<?php echo $direction ?>">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta name="viewport" content="width=device-width"/>
    <title>
		<?php echo $asset->name ?>
    </title>
</head>
<body style="width: 100% !important; min-width: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0; padding: 0;">
<style type="text/css">
    a:hover {
        color: #2795b6 !important;
    }

    a:active {
        color: #2795b6 !important;
    }

    a:visited {
        color: #2ba6cb !important;
    }

    h1 a:active {
        color: #2ba6cb !important;
    }

    h2 a:active {
        color: #2ba6cb !important;
    }

    h3 a:active {
        color: #2ba6cb !important;
    }

    h4 a:active {
        color: #2ba6cb !important;
    }

    h5 a:active {
        color: #2ba6cb !important;
    }

    h6 a:active {
        color: #2ba6cb !important;
    }

    h1 a:visited {
        color: #2ba6cb !important;
    }

    h2 a:visited {
        color: #2ba6cb !important;
    }

    h3 a:visited {
        color: #2ba6cb !important;
    }

    h4 a:visited {
        color: #2ba6cb !important;
    }

    h5 a:visited {
        color: #2ba6cb !important;
    }

    h6 a:visited {
        color: #2ba6cb !important;
    }

    table.button:hover td {
        background: #2795b6 !important;
    }

    table.button:visited td {
        background: #2795b6 !important;
    }

    table.button:active td {
        background: #2795b6 !important;
    }

    table.button:hover td a {
        color: #fff !important;
    }

    table.button:visited td a {
        color: #fff !important;
    }

    table.button:active td a {
        color: #fff !important;
    }

    table.button:hover td {
        background: #2795b6 !important;
    }

    table.tiny-button:hover td {
        background: #2795b6 !important;
    }

    table.small-button:hover td {
        background: #2795b6 !important;
    }

    table.medium-button:hover td {
        background: #2795b6 !important;
    }

    table.large-button:hover td {
        background: #2795b6 !important;
    }

    table.button:hover td a {
        color: #ffffff !important;
    }

    table.button:active td a {
        color: #ffffff !important;
    }

    table.button td a:visited {
        color: #ffffff !important;
    }

    table.tiny-button:hover td a {
        color: #ffffff !important;
    }

    table.tiny-button:active td a {
        color: #ffffff !important;
    }

    table.tiny-button td a:visited {
        color: #ffffff !important;
    }

    table.small-button:hover td a {
        color: #ffffff !important;
    }

    table.small-button:active td a {
        color: #ffffff !important;
    }

    table.small-button td a:visited {
        color: #ffffff !important;
    }

    table.medium-button:hover td a {
        color: #ffffff !important;
    }

    table.medium-button:active td a {
        color: #ffffff !important;
    }

    table.medium-button td a:visited {
        color: #ffffff !important;
    }

    table.large-button:hover td a {
        color: #ffffff !important;
    }

    table.large-button:active td a {
        color: #ffffff !important;
    }

    table.large-button td a:visited {
        color: #ffffff !important;
    }

    table.secondary:hover td {
        background: #d0d0d0 !important;
        color: #555;
    }

    table.secondary:hover td a {
        color: #555 !important;
    }

    table.secondary td a:visited {
        color: #555 !important;
    }

    table.secondary:active td a {
        color: #555 !important;
    }

    table.success:hover td {
        background: #457a1a !important;
    }

    table.alert:hover td {
        background: #970b0e !important;
    }

    table.facebook:hover td {
        background: #2d4473 !important;
    }

    table.twitter:hover td {
        background: #0087bb !important;
    }

    table.google-plus:hover td {
        background: #CC0000 !important;
    }

    @media only screen and (max-width: 600px) {
        table[class="body"] img {
            width: auto !important;
            height: auto !important;
        }

        table[class="body"] center {
            min-width: 0 !important;
        }

        table[class="body"] .container {
            width: 95% !important;
        }

        table[class="body"] .row {
            width: 100% !important;
            display: block !important;
        }

        table[class="body"] .wrapper {
            display: block !important;
            padding-right: 0 !important;
        }

        table[class="body"] .columns {
            table-layout: fixed !important;
            float: none !important;
            width: 100% !important;
            padding-right: 0px !important;
            padding-left: 0px !important;
            display: block !important;
        }

        table[class="body"] .column {
            table-layout: fixed !important;
            float: none !important;
            width: 100% !important;
            padding-right: 0px !important;
            padding-left: 0px !important;
            display: block !important;
        }

        table[class="body"] .wrapper.first .columns {
            display: table !important;
        }

        table[class="body"] .wrapper.first .column {
            display: table !important;
        }

        table[class="body"] table.columns td {
            width: 100% !important;
        }

        table[class="body"] table.column td {
            width: 100% !important;
        }

        table[class="body"] .columns td.one {
            width: 8.333333% !important;
        }

        table[class="body"] .column td.one {
            width: 8.333333% !important;
        }

        table[class="body"] .columns td.two {
            width: 16.666666% !important;
        }

        table[class="body"] .column td.two {
            width: 16.666666% !important;
        }

        table[class="body"] .columns td.three {
            width: 25% !important;
        }

        table[class="body"] .column td.three {
            width: 25% !important;
        }

        table[class="body"] .columns td.four {
            width: 33.333333% !important;
        }

        table[class="body"] .column td.four {
            width: 33.333333% !important;
        }

        table[class="body"] .columns td.five {
            width: 41.666666% !important;
        }

        table[class="body"] .column td.five {
            width: 41.666666% !important;
        }

        table[class="body"] .columns td.six {
            width: 50% !important;
        }

        table[class="body"] .column td.six {
            width: 50% !important;
        }

        table[class="body"] .columns td.seven {
            width: 58.333333% !important;
        }

        table[class="body"] .column td.seven {
            width: 58.333333% !important;
        }

        table[class="body"] .columns td.eight {
            width: 66.666666% !important;
        }

        table[class="body"] .column td.eight {
            width: 66.666666% !important;
        }

        table[class="body"] .columns td.nine {
            width: 75% !important;
        }

        table[class="body"] .column td.nine {
            width: 75% !important;
        }

        table[class="body"] .columns td.ten {
            width: 83.333333% !important;
        }

        table[class="body"] .column td.ten {
            width: 83.333333% !important;
        }

        table[class="body"] .columns td.eleven {
            width: 91.666666% !important;
        }

        table[class="body"] .column td.eleven {
            width: 91.666666% !important;
        }

        table[class="body"] .columns td.twelve {
            width: 100% !important;
        }

        table[class="body"] .column td.twelve {
            width: 100% !important;
        }

        table[class="body"] td.offset-by-one {
            padding-left: 0 !important;
        }

        table[class="body"] td.offset-by-two {
            padding-left: 0 !important;
        }

        table[class="body"] td.offset-by-three {
            padding-left: 0 !important;
        }

        table[class="body"] td.offset-by-four {
            padding-left: 0 !important;
        }

        table[class="body"] td.offset-by-five {
            padding-left: 0 !important;
        }

        table[class="body"] td.offset-by-six {
            padding-left: 0 !important;
        }

        table[class="body"] td.offset-by-seven {
            padding-left: 0 !important;
        }

        table[class="body"] td.offset-by-eight {
            padding-left: 0 !important;
        }

        table[class="body"] td.offset-by-nine {
            padding-left: 0 !important;
        }

        table[class="body"] td.offset-by-ten {
            padding-left: 0 !important;
        }

        table[class="body"] td.offset-by-eleven {
            padding-left: 0 !important;
        }

        table[class="body"] table.columns td.expander {
            width: 1px !important;
        }

        table[class="body"] .right-text-pad {
            padding-left: 10px !important;
        }

        table[class="body"] .text-pad-right {
            padding-left: 10px !important;
        }

        table[class="body"] .left-text-pad {
            padding-right: 10px !important;
        }

        table[class="body"] .text-pad-left {
            padding-right: 10px !important;
        }

        table[class="body"] .hide-for-small {
            display: none !important;
        }

        table[class="body"] .show-for-desktop {
            display: none !important;
        }

        table[class="body"] .show-for-small {
            display: inherit !important;
        }

        table[class="body"] .hide-for-desktop {
            display: inherit !important;
        }

        table[class="body"] .right-text-pad {
            padding-left: 10px !important;
        }

        table[class="body"] .left-text-pad {
            padding-right: 10px !important;
        }
    }
</style>layouts/emails/reservation_note_notification_customer_html.php000060400000022776150751740420021347 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/emails/reservation_note_notification_customer_html.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

echo SRLayoutHelper::render('emails.header', $displayData);

extract($displayData);

?>

    <table class="body">
        <tr>
            <td class="center" align="center" valign="top">
                <center>

                    <!-- Begin email header -->
                    <table class="row header">
                        <tr>
                            <td class="center" align="center">
                                <center>

                                    <table class="container">
                                        <tr>
                                            <td class="wrapper last">

                                                <table class="twelve columns">
                                                    <tr>
                                                        <td class="six sub-columns">
															<?php if (isset($asset->params['logo'])) : ?>
                                                                <img src="<?php echo SRURI_MEDIA . '/assets/images/system/' . $asset->params['logo'] ?>"
                                                                     alt="logo"/>
															<?php endif ?>
                                                        </td>
                                                        <td class="six sub-columns last"
                                                            style="text-align:right; vertical-align:middle;">
                                                            <span class="template-label"><?php echo JText::_('SR_EMAIL_RESERVATION_NOTE') ?></span><br/>
                                                        </td>
                                                        <td class="expander"></td>
                                                    </tr>
                                                </table>

                                            </td>
                                        </tr>
                                    </table>

                                </center>
                            </td>
                        </tr>
                    </table>
                    <!-- End of email header -->

                    <!-- Begin of email body -->
                    <table class="container">
                        <tr>
                            <td>

                                <table class="row callout">
                                    <tr>
                                        <td class="wrapper last">

                                            <table class="twelve columns">
                                                <tr>
                                                    <td>
                                                        <h3><?php echo JText::sprintf('SR_EMAIL_GREETING_NAME', $reservation->customer_firstname, $reservation->customer_middlename, $reservation->customer_lastname) ?></h3>

                                                        <p>&nbsp;</p>

                                                        <p><?php echo $text ?></p>

                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                    </tr>
                                </table>

                                <table class="row footer">
                                    <tr>
                                        <td class="wrapper">

                                            <table class="six columns">
                                                <tr>
                                                    <td class="left-text-pad">

                                                        <h5><?php echo JText::_('SR_EMAIL_CONNECT_WITH_US') ?></h5>

														<?php if (!empty($asset->reservationasset_extra_fields['facebook_link'])
															&& $asset->reservationasset_extra_fields['facebook_show'] == 1) : ?>
                                                            <table class="tiny-button facebook">
                                                                <tr>
                                                                    <td>
                                                                        <a href="<?php echo $asset->reservationasset_extra_fields['facebook_link'] ?>">Facebook</a>
                                                                    </td>
                                                                </tr>
                                                            </table>
														<?php endif; ?>

                                                        <br>

														<?php if (!empty($asset->reservationasset_extra_fields['twitter_link'])
															&& $asset->reservationasset_extra_fields['twitter_show'] == 1) : ?>
                                                            <table class="tiny-button twitter">
                                                                <tr>
                                                                    <td>

                                                                        <a href="<?php echo $asset->reservationasset_extra_fields['twitter_link'] ?>">Twitter</a>

                                                                    </td>
                                                                </tr>
                                                            </table>
														<?php endif; ?>

                                                        <br>

														<?php if (!empty($asset->reservationasset_extra_fields['youtube_link'])
															&& $asset->reservationasset_extra_fields['youtube_show'] == 1) : ?>
                                                            <table class="tiny-button youtube">
                                                                <tr>
                                                                    <td>

                                                                        <a href="<?php echo $asset->reservationasset_extra_fields['youtube_link'] ?>">Youtube</a>

                                                                    </td>
                                                                </tr>
                                                            </table>
														<?php endif; ?>

                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                        <td class="wrapper last">

                                            <table class="six columns">
                                                <tr>
                                                    <td class="last right-text-pad">
                                                        <h5><?php echo JText::_('SR_EMAIL_CONTACT_INFO') ?></h5>
                                                        <p>
															<?php
															echo JText::_('SR_EMAIL_ADDRESS') . $asset->address_1 . ', ' . $asset->city . ', ' . (!empty($asset->geostate_code_2) ? $asset->geostate_code_2 . ' ' : '') . $asset->postcode
															?>
                                                        </p>
                                                        <p><?php echo JText::_('SR_EMAIL_PHONE') ?><?php echo $asset->phone ?></p>
                                                        <p><?php echo JText::_('SR_EMAIL_EMAIL') ?><a
                                                                    href="mailto:<?php echo $asset->email ?>"><?php echo $asset->email ?></a>
                                                        </p>
                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                    </tr>
                                </table>

                                <!-- container end below -->
                            </td>
                        </tr>
                    </table>
                    <!-- End of email body -->

                </center>
            </td>
        </tr>
    </table>
<?php
echo SRLayoutHelper::render('emails.footer');layouts/emails/reservation_complete_owner_html.php000060400000065073150751740420016732 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/emails/reservation_complete_owner_html.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

echo SRLayoutHelper::render('emails.header', $displayData);

extract($displayData);

?>

    <table class="body">
        <tr>
            <td class="center" align="center" valign="top">
                <center>

                    <!-- Begin email header -->
                    <table class="row header">
                        <tr>
                            <td class="center" align="center">
                                <center>

                                    <table class="container">
                                        <tr>
                                            <td class="wrapper last">

                                                <table class="twelve columns">
                                                    <tr>
                                                        <td class="six sub-columns">
															<?php
															$assetLogo = $asset->params['logo'];
															if (isset($assetLogo) && !empty($assetLogo)) :
																if (file_exists(JPATH_ROOT . '/media/com_solidres/assets/images/system/' . $assetLogo)) :
																	?>
                                                                    <img src="<?php echo SRURI_MEDIA . '/assets/images/system/' . $assetLogo ?>"
                                                                         alt="logo"/>
																<?php endif; endif ?>
                                                        </td>
                                                        <td class="six sub-columns last"
                                                            style="text-align:right; vertical-align:middle;">
                                                            <span class="template-label"><?php echo JText::_('SR_EMAIL_CONFIRM_RESERVATION') ?></span><br/>
                                                            <span class="template-label">
															<a href="<?php echo $editLink ?>" target="_blank">
															<?php echo JText::sprintf('SR_EMAIL_REF_ID', $reservation->code) ?>
															</a>
														</span>
                                                        </td>
                                                        <td class="expander"></td>
                                                    </tr>
                                                </table>

                                            </td>
                                        </tr>
                                    </table>

                                </center>
                            </td>
                        </tr>
                    </table>
                    <!-- End of email header -->

                    <!-- Begin of email body -->
                    <table class="container">
                        <tr>
                            <td>

                                <table class="row callout">
                                    <tr>
                                        <td class="wrapper last">

                                            <table class="twelve columns">
                                                <tr>
                                                    <td>
                                                        <h3><?php echo JText::sprintf('SR_EMAIL_GREETING_NAME_OWNER') ?></h3>

                                                        <p>&nbsp;</p>

														<?php echo call_user_func_array('JText::sprintf', $greetingText); ?>

                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                    </tr>
                                </table>

                                <h5 class="email_heading"><?php echo JText::_("SR_GENERAL_INFO") ?></h5>

                                <table class="row">
                                    <tr>
                                        <td class="wrapper">

                                            <table class="six columns">
                                                <tr>
                                                    <td>
                                                        <p><?php echo JText::_('SR_EMAIL_CHECKIN') . JDate::getInstance($reservation->checkin, $timezone)->format($dateFormat, true) ?></p>
                                                        <p><?php echo JText::_('SR_EMAIL_CHECKOUT') . JDate::getInstance($reservation->checkout, $timezone)->format($dateFormat, true) ?></p>
                                                        <p><?php echo JText::_('SR_EMAIL_PAYMENT_METHOD') . $paymentMethodLabel ?></p>
                                                        <p><?php echo JText::_('SR_EMAIL_EMAIL') . $reservation->customer_email ?></p>
                                                        <p><?php echo JText::_('SR_EMAIL_LENGTH_OF_STAY') ?>
															<?php
															if ($reservation->booking_type == 0) :
																echo JText::plural('SR_NIGHTS', $stayLength);
															else :
																echo JText::plural('SR_DAYS', $stayLength + 1);
															endif;
															?>
                                                        </p>
														<?php if (!empty($reservation->coupon_code)) : ?>
                                                            <p><?php echo JText::_('SR_EMAIL_COUPON_CODE') . $reservation->coupon_code ?></p>
														<?php endif ?>
                                                        <p><?php echo JText::_('SR_EMAIL_NOTE') . $customerNote ?> </p>
                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                        <td class="wrapper last">

                                            <table class="six columns">
                                                <tr>
                                                    <td>
                                                        <p><?php echo JText::_('SR_EMAIL_SUB_TOTAL') . $subTotal ?></p>
														<?php if ($discountPreTax && !is_null($totalDiscount)) : ?>
                                                            <p><?php echo JText::_('SR_EMAIL_TOTAL_DISCOUNT') . '-' . $totalDiscount ?></p>
														<?php endif; ?>
                                                        <p><?php echo JText::_('SR_EMAIL_TAX') . $tax ?> </p>
														<?php if (!$discountPreTax && !is_null($totalDiscount)) : ?>
                                                            <p><?php echo JText::_('SR_EMAIL_TOTAL_DISCOUNT') . '-' . $totalDiscount ?></p>
														<?php endif; ?>
                                                        <p><?php echo JText::_('SR_EMAIL_EXTRA_TAX_EXCL') . $totalExtraPriceTaxExcl ?></p>
                                                        <p><?php echo JText::_('SR_EMAIL_EXTRA_TAX_AMOUNT') . $extraTax ?> </p>
														<?php if ($reservation->payment_method_surcharge > 0) : ?>
                                                            <p>
																<?php echo JText::sprintf("SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT", $paymentMethodLabel) . $paymentMethodSurcharge; ?>
                                                            </p>
														<?php endif; ?>
														<?php if ($reservation->payment_method_discount > 0) : ?>
                                                            <p>
																<?php echo JText::sprintf("SR_PAYMENT_METHOD_DISCOUNT_AMOUNT", $paymentMethodLabel) . '-' . $paymentMethodDiscount; ?>
                                                            </p>
														<?php endif; ?>
														<?php if ($enableTouristTax) : ?>
                                                            <p><?php echo JText::_('SR_EMAIL_TOURIST_TAX') . $touristTax; ?></p>
														<?php endif ?>
                                                        <p><?php echo JText::_('SR_EMAIL_GRAND_TOTAL') . $grandTotal ?> </p>
                                                        <p><?php echo JText::_('SR_EMAIL_DEPOSIT_AMOUNT') . $depositAmount ?> </p>
                                                        <p><?php echo JText::_('SR_EMAIL_TOTAL_PAID') . $totalPaid ?> </p>
                                                        <p><?php echo JText::_('SR_EMAIL_DUE_AMOUNT') . $dueAmount ?> </p>
                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                    </tr>
                                </table>

                                <h5 class="email_heading">
									<?php echo JText::_('SR_GUEST_INFO'); ?>
                                </h5>
	                            <?php echo SRLayoutHelper::render('emails.customer_fields', $displayData, false); ?>

								<?php if (!empty($bankwireInstructions)) : ?>
                                    <h5 class="email_heading"><?php echo JText::_("SR_EMAIL_BANKWIRE_INFO") ?></h5>

                                    <table class="row">
                                        <tr>
                                            <td class="wrapper last">

                                                <table class="twelve columns">
                                                    <tr>
                                                        <td>
                                                            <p>
																<?php
																echo $bankwireInstructions['account_name'];
																?>
                                                            </p>
                                                            <p>
																<?php
																echo $bankwireInstructions['account_details'];
																?>
                                                            </p>
                                                        </td>
                                                        <td class="expander"></td>
                                                    </tr>
                                                </table>

                                            </td>
                                        </tr>
                                    </table>

								<?php endif ?>

								<?php if (!empty($paymentMethodCustomEmailContent)) : ?>
                                    <h5 class="email_heading"><?php echo JText::_("SR_EMAIL_PAYMENT_METHOD_INFO") ?></h5>

                                    <table class="row">
                                        <tr>
                                            <td class="wrapper last">

                                                <table class="twelve columns">
                                                    <tr>
                                                        <td>
															<?php
															echo $paymentMethodCustomEmailContent
															?>
                                                        </td>
                                                        <td class="expander"></td>
                                                    </tr>
                                                </table>

                                            </td>
                                        </tr>
                                    </table>

								<?php endif ?>

                                <h5 class="email_heading"><?php echo JText::_("SR_ROOM_EXTRA_INFO") ?></h5>

								<?php foreach ($reservation->reserved_room_details as $room) : ?>
                                    <p class="email_roomtype_name">
										<?php echo $room->room_type_name ?>
                                    </p>

                                    <table class="row">
                                        <tr>
                                            <td class="wrapper">

                                                <table class="six columns">
                                                    <tr>
                                                        <td>
                                                            <p>
																<?php echo JText::_("SR_GUEST_FULLNAME") . ': ' . $room->guest_fullname ?>
                                                            </p>
                                                            <p>
																<?php foreach ($room->other_info as $info) : if (substr($info->key, 0, 7) == 'smoking') : ?>
																	<?php echo JText::_('SR_' . $info->key) . ': ' . ($info->value == '' ? JText::_('SR_NO_PREFERENCES') : ($info->value == 1 ? JText::_('SR_YES') : JText::_('SR_NO'))); ?>
																<?php endif; endforeach; ?>
                                                            </p>
                                                            <p>
																<?php echo JText::_("SR_ADULT_NUMBER") . ': ' . $room->adults_number ?>
                                                            </p>
															<?php if ($room->children_number > 0) : ?>
                                                                <p>
																	<?php echo JText::_("SR_CHILDREN_NUMBER") . ': ' . $room->children_number ?>
                                                                </p>
																<?php foreach ($room->other_info as $info) : ?>
                                                                    <ul>
																		<?php if (substr($info->key, 0, 5) == 'child') : ?>
                                                                            <li>
																				<?php echo JText::_('SR_' . $info->key) . ': ' . JText::plural('SR_CHILD_AGE_SELECTION', $info->value) ?>
                                                                            </li>
																		<?php endif; ?>
                                                                    </ul>
																<?php endforeach; ?>
															<?php endif; ?>
	                                                        <?php

	                                                        if (isset($roomFields[$room->id]))
	                                                        {
		                                                        echo SRLayoutHelper::render('emails.room_fields', ['roomFields' => $roomFields[$room->id], 'roomExtras' => isset($room->extras) ? $room->extras : []]);
	                                                        }

	                                                        ?>
                                                        </td>
                                                        <td class="expander"></td>
                                                    </tr>
                                                </table>

                                            </td>
                                            <td class="wrapper last">

                                                <table class="six columns">
                                                    <tr>
                                                        <td>
															<?php if (isset($room->extras) && is_array($room->extras)) : ?>
                                                                <p><?php echo JText::_('SR_EMAIL_EXTRAS_ITEMS') ?></p>
																<?php foreach ($room->extras as $extra) : ?>

                                                                    <dl>
                                                                        <dt>
																			<?php echo $extra->extra_name ?>
                                                                        </dt>
                                                                        <dd>
																			<?php echo JText::_('SR_EMAIL_EXTRA_QUANTITY') . $extra->extra_quantity ?>
                                                                        </dd>
                                                                        <dd>
																			<?php
																			$roomExtraCurrency = clone $baseCurrency;
																			$roomExtraCurrency->setValue($extra->extra_price);
																			echo JText::_('SR_EMAIL_EXTRA_PRICE') . $roomExtraCurrency->format() ?>
                                                                        </dd>
                                                                    </dl>
																<?php endforeach; ?>
															<?php endif; ?>
                                                        </td>
                                                        <td class="expander"></td>
                                                    </tr>
                                                </table>

                                            </td>
                                        </tr>
                                    </table>
									<?php
									$showTariffInEmail = $asset->params['show_tariff_in_email'];
									$showTariffInEmail = isset($showTariffInEmail) ? $showTariffInEmail : 0;
									if (0 != $showTariffInEmail) :
										?>
                                        <table class="row">
                                            <tr>
                                                <td class="wrapper">

                                                    <table class="twelve columns">
                                                        <tr>
                                                            <td>
																<?php

																if (1 == $showTariffInEmail || 3 == $showTariffInEmail) :
																	echo $room->tariff_title;
																endif;
																?>

																<?php if (3 == $showTariffInEmail) : ?>
                                                                    <br/>
																<?php endif; ?>

																<?php
																if (2 == $showTariffInEmail || 3 == $showTariffInEmail) :
																	echo $room->tariff_description;
																endif;
																?>
                                                            </td>
                                                            <td class="expander"></td>
                                                        </tr>

                                                    </table>

                                                </td>
                                            </tr>
                                        </table>
									<?php endif; endforeach; ?>

                                <h5 class="email_heading"><?php echo JText::_("SR_EMAIL_OTHER_INFO") ?></h5>

                                <table class="row">
                                    <tr>
                                        <td class="wrapper last">

                                            <table class="twelve columns">
                                                <tr>
                                                    <td>
                                                        <dl>
															<?php
															if (isset($reservation->extras) && is_array($reservation->extras)) :
																foreach ($reservation->extras as $extra) : ?>
                                                                    <dt>
																		<?php echo $extra->extra_name ?>
                                                                    </dt>
                                                                    <dd>
																		<?php echo JText::_('SR_EMAIL_EXTRA_QUANTITY') . $extra->extra_quantity ?>
                                                                    </dd>
                                                                    <dd>
																		<?php
																		$bookingExtraCurrency = clone $baseCurrency;
																		$bookingExtraCurrency->setValue($extra->extra_price);
																		echo JText::_('SR_EMAIL_EXTRA_PRICE') . $bookingExtraCurrency->format()
																		?>
                                                                    </dd>
																<?php
																endforeach;
															endif;
															?>
                                                        </dl>
                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                    </tr>
                                </table>

                                <table class="row footer">
                                    <tr>
                                        <td class="wrapper">

                                            <table class="six columns">
                                                <tr>
                                                    <td class="left-text-pad">

                                                        <h5><?php echo JText::_('SR_EMAIL_CONNECT_WITH_US') ?></h5>

														<?php if (!empty($asset->reservationasset_extra_fields['facebook_link'])
															&& $asset->reservationasset_extra_fields['facebook_show'] == 1) : ?>
                                                            <table class="tiny-button facebook">
                                                                <tr>
                                                                    <td>
                                                                        <a href="<?php echo $asset->reservationasset_extra_fields['facebook_link'] ?>">Facebook</a>
                                                                    </td>
                                                                </tr>
                                                            </table>
														<?php endif; ?>

                                                        <br>

														<?php if (!empty($asset->reservationasset_extra_fields['twitter_link'])
															&& $asset->reservationasset_extra_fields['twitter_show'] == 1) : ?>
                                                            <table class="tiny-button twitter">
                                                                <tr>
                                                                    <td>

                                                                        <a href="<?php echo $asset->reservationasset_extra_fields['twitter_link'] ?>">Twitter</a>

                                                                    </td>
                                                                </tr>
                                                            </table>
														<?php endif; ?>

                                                        <br>

														<?php if (!empty($asset->reservationasset_extra_fields['youtube_link'])
															&& $asset->reservationasset_extra_fields['youtube_show'] == 1) : ?>
                                                            <table class="tiny-button youtube">
                                                                <tr>
                                                                    <td>

                                                                        <a href="<?php echo $asset->reservationasset_extra_fields['youtube_link'] ?>">Youtube</a>

                                                                    </td>
                                                                </tr>
                                                            </table>
														<?php endif; ?>

                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                        <td class="wrapper last">

                                            <table class="six columns">
                                                <tr>
                                                    <td class="last right-text-pad">
                                                        <h5><?php echo JText::_('SR_EMAIL_CONTACT_INFO') ?></h5>
                                                        <p>
															<?php
															echo JText::_('SR_EMAIL_ADDRESS') . $asset->address_1 . ', ' . $asset->city . ', ' . (!empty($asset->geostate_code_2) ? $asset->geostate_code_2 . ' ' : '') . $asset->postcode
															?>
                                                        </p>
                                                        <p><?php echo JText::_('SR_EMAIL_PHONE') ?><?php echo $asset->phone ?></p>
                                                        <p><?php echo JText::_('SR_EMAIL_EMAIL') ?><a
                                                                    href="mailto:<?php echo $asset->email ?>"><?php echo $asset->email ?></a>
                                                        </p>
                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                    </tr>
                                </table>

                                <!-- container end below -->
                            </td>
                        </tr>
                    </table>
                    <!-- End of email body -->

                </center>
            </td>
        </tr>
    </table>
<?php
echo SRLayoutHelper::render('emails.footer');
layouts/emails/footer.php000060400000002035150751740420011526 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/emails/footer.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

?>

</body>
</html>layouts/emails/reservation_complete_customer_html.php000060400000060523150751740420017434 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/emails/reservation_complete_customer_html.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

echo SRLayoutHelper::render('emails.header', $displayData);

extract($displayData);

?>

<table class="body">
    <tr>
        <td class="center" align="center" valign="top">
            <center>

                <!-- Begin email header -->
                <table class="row header">
                    <tr>
                        <td class="center" align="center">
                            <center>

                                <table class="container">
                                    <tr>
                                        <td class="wrapper last">

                                            <table class="twelve columns">
                                                <tr>
                                                    <td class="six sub-columns">
														<?php
														$assetLogo = $asset->params['logo'];
														if (isset($assetLogo) && !empty($assetLogo)) :
															if (file_exists(JPATH_ROOT . '/media/com_solidres/assets/images/system/' . $assetLogo)) :
																?>
                                                                <img src="<?php echo SRURI_MEDIA . '/assets/images/system/' . $assetLogo ?>"
                                                                     alt="logo"/>
															<?php endif; endif ?>
                                                    </td>
                                                    <td class="six sub-columns last"
                                                        style="text-align:right; vertical-align:middle;">
                                                        <span class="template-label"><?php echo JText::_('SR_EMAIL_CONFIRM_RESERVATION') ?></span><br/>
                                                        <span class="template-label"><?php echo JText::sprintf('SR_EMAIL_REF_ID', $reservation->code) ?></span>
                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                    </tr>
                                </table>

                            </center>
                        </td>
                    </tr>
                </table>
                <!-- End of email header -->

                <!-- Begin of email body -->
                <table class="container">
                    <tr>
                        <td>

                            <table class="row callout">
                                <tr>
                                    <td class="wrapper last">

                                        <table class="twelve columns">
                                            <tr>
                                                <td>
                                                    <h3><?php echo JText::sprintf('SR_EMAIL_GREETING_NAME', $reservation->customer_firstname, $reservation->customer_middlename, $reservation->customer_lastname) ?></h3>

                                                    <p>&nbsp;</p>

													<?php echo call_user_func_array('JText::sprintf', $greetingText) ?>

                                                </td>
                                                <td class="expander"></td>
                                            </tr>
                                        </table>

                                    </td>
                                </tr>
                            </table>

                            <h5 class="email_heading"><?php echo JText::_("SR_GENERAL_INFO") ?></h5>

                            <table class="row">
                                <tr>
                                    <td class="wrapper">

                                        <table class="six columns">
                                            <tr>
                                                <td>
                                                    <p><?php echo JText::_('SR_EMAIL_CHECKIN') . JDate::getInstance($reservation->checkin, $timezone)->format($dateFormat, true) ?></p>
                                                    <p><?php echo JText::_('SR_EMAIL_CHECKOUT') . JDate::getInstance($reservation->checkout, $timezone)->format($dateFormat, true) ?></p>
                                                    <p><?php echo JText::_('SR_EMAIL_PAYMENT_METHOD') . $paymentMethodLabel ?></p>
                                                    <p><?php echo JText::_('SR_EMAIL_EMAIL') . $reservation->customer_email ?></p>
                                                    <p><?php echo JText::_('SR_EMAIL_LENGTH_OF_STAY') ?>
														<?php
														if ($reservation->booking_type == 0) :
															echo JText::plural('SR_NIGHTS', $stayLength);
														else :
															echo JText::plural('SR_DAYS', $stayLength + 1);
														endif;
														?>
                                                    </p>
													<?php if (!empty($reservation->coupon_code)) : ?>
                                                        <p><?php echo JText::_('SR_EMAIL_COUPON_CODE') . $reservation->coupon_code ?></p>
													<?php endif ?>
                                                    <p><?php echo JText::_('SR_EMAIL_NOTE') . $customerNote ?> </p>
                                                </td>
                                                <td class="expander"></td>
                                            </tr>
                                        </table>

                                    </td>
                                    <td class="wrapper last">

                                        <table class="six columns">
                                            <tr>
                                                <td>
                                                    <p><?php echo JText::_('SR_EMAIL_SUB_TOTAL') . $subTotal ?></p>
													<?php if ($discountPreTax && !is_null($totalDiscount)) : ?>
                                                        <p><?php echo JText::_('SR_EMAIL_TOTAL_DISCOUNT') . '-' . $totalDiscount ?></p>
													<?php endif; ?>
                                                    <p><?php echo JText::_('SR_EMAIL_TAX') . $tax ?> </p>
													<?php if (!$discountPreTax && !is_null($totalDiscount)) : ?>
                                                        <p><?php echo JText::_('SR_EMAIL_TOTAL_DISCOUNT') . '-' . $totalDiscount ?></p>
													<?php endif; ?>
                                                    <p><?php echo JText::_('SR_EMAIL_EXTRA_TAX_EXCL') . $totalExtraPriceTaxExcl ?></p>
                                                    <p><?php echo JText::_('SR_EMAIL_EXTRA_TAX_AMOUNT') . $extraTax ?> </p>
													<?php if ($reservation->payment_method_surcharge > 0) : ?>
                                                        <p>
															<?php echo JText::sprintf("SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT", $paymentMethodLabel) . $paymentMethodSurcharge; ?>
                                                        </p>
													<?php endif; ?>
													<?php if ($reservation->payment_method_discount > 0) : ?>
                                                        <p>
															<?php echo JText::sprintf("SR_PAYMENT_METHOD_DISCOUNT_AMOUNT", $paymentMethodLabel) . '-' . $paymentMethodDiscount; ?>
                                                        </p>
													<?php endif; ?>
													<?php if ($enableTouristTax) : ?>
                                                        <p><?php echo JText::_('SR_EMAIL_TOURIST_TAX') . $touristTax; ?></p>
													<?php endif ?>
                                                    <p><?php echo JText::_('SR_EMAIL_GRAND_TOTAL') . $grandTotal ?> </p>
                                                    <p><?php echo JText::_('SR_EMAIL_DEPOSIT_AMOUNT') . $depositAmount ?> </p>
                                                    <p><?php echo JText::_('SR_EMAIL_TOTAL_PAID') . $totalPaid ?> </p>
                                                    <p><?php echo JText::_('SR_EMAIL_DUE_AMOUNT') . $dueAmount ?> </p>
                                                </td>
                                                <td class="expander"></td>
                                            </tr>
                                        </table>

                                    </td>
                                </tr>
                            </table>

                            <h5 class="email_heading">
								<?php echo JText::_('SR_GUEST_INFO'); ?>
                            </h5>

							<?php echo SRLayoutHelper::render('emails.customer_fields', $displayData, false); ?>

							<?php if (!empty($bankwireInstructions)) : ?>
                                <h5 class="email_heading"><?php echo JText::_("SR_EMAIL_BANKWIRE_INFO") ?></h5>

                                <table class="row">
                                    <tr>
                                        <td class="wrapper last">

                                            <table class="twelve columns">
                                                <tr>
                                                    <td>
                                                        <p>
															<?php
															echo $bankwireInstructions['account_name'];
															?>
                                                        </p>
                                                        <p>
															<?php
															echo $bankwireInstructions['account_details'];
															?>
                                                        </p>
                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                    </tr>
                                </table>

							<?php endif ?>

                            <h5 class="email_heading"><?php echo JText::_("SR_ROOM_EXTRA_INFO") ?></h5>

							<?php foreach ($reservation->reserved_room_details as $room) : ?>
                                <p class="email_roomtype_name">
									<?php echo $room->room_type_name ?>
                                </p>

                                <table class="row">
                                    <tr>
                                        <td class="wrapper">

                                            <table class="six columns">
                                                <tr>
                                                    <td>
                                                        <p>
															<?php echo JText::_("SR_GUEST_FULLNAME") . ': ' . $room->guest_fullname ?>
                                                        </p>
                                                        <p>
															<?php foreach ($room->other_info as $info) : if (substr($info->key, 0, 7) == 'smoking') : ?>
																<?php echo JText::_('SR_' . $info->key) . ': ' . ($info->value == '' ? JText::_('SR_NO_PREFERENCES') : ($info->value == 1 ? JText::_('SR_YES') : JText::_('SR_NO'))); ?>
															<?php endif; endforeach; ?>
                                                        </p>
                                                        <p>
															<?php echo JText::_("SR_ADULT_NUMBER") . ': ' . $room->adults_number ?>
                                                        </p>
														<?php if ($room->children_number > 0) : ?>
                                                            <p>
																<?php echo JText::_("SR_CHILDREN_NUMBER") . ': ' . $room->children_number ?>
                                                            </p>
															<?php foreach ($room->other_info as $info) : ?>
                                                                <ul>
																	<?php if (substr($info->key, 0, 5) == 'child') : ?>
                                                                        <li>
																			<?php echo JText::_('SR_' . $info->key) . ': ' . JText::plural('SR_CHILD_AGE_SELECTION', $info->value) ?>
                                                                        </li>
																	<?php endif; ?>
                                                                </ul>
															<?php endforeach; ?>
														<?php endif ?>

	                                                    <?php

	                                                    if (isset($roomFields[$room->id]))
	                                                    {
		                                                   echo SRLayoutHelper::render('emails.room_fields', ['roomFields' => $roomFields[$room->id], 'roomExtras' => isset($room->extras) ? $room->extras : []]);
	                                                    }

	                                                    ?>
                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>
                                            </table>

                                        </td>
                                        <td class="wrapper last">

                                            <table class="six columns">
                                                <tr>
                                                    <td>
														<?php if (isset($room->extras) && is_array($room->extras)) : ?>
                                                            <p><?php echo JText::_('SR_EMAIL_EXTRAS_ITEMS') ?></p>
															<?php foreach ($room->extras as $extra) : ?>

                                                                <dl>
                                                                    <dt>
																		<?php echo $extra->extra_name ?>
                                                                    </dt>
                                                                    <dd>
																		<?php echo JText::_('SR_EMAIL_EXTRA_QUANTITY') . $extra->extra_quantity ?>
                                                                    </dd>
                                                                    <dd>
																		<?php
																		$roomExtraCurrency = clone $baseCurrency;
																		$roomExtraCurrency->setValue($extra->extra_price);
																		echo JText::_('SR_EMAIL_EXTRA_PRICE') . $roomExtraCurrency->format()
																		?>
                                                                    </dd>
                                                                </dl>
															<?php endforeach; ?>
														<?php endif; ?>
                                                    </td>
                                                    <td class="expander"></td>
                                                </tr>

                                            </table>

                                        </td>
                                    </tr>
                                </table>
								<?php
								$showTariffInEmail = $asset->params['show_tariff_in_email'];
								$showTariffInEmail = isset($showTariffInEmail) ? $showTariffInEmail : 0;
								if (0 != $showTariffInEmail) :
									?>
                                    <table class="row">
                                        <tr>
                                            <td class="wrapper">

                                                <table class="twelve columns">
                                                    <tr>
                                                        <td>
															<?php

															if (1 == $showTariffInEmail || 3 == $showTariffInEmail) :
																echo $room->tariff_title;
															endif;
															?>

															<?php if (3 == $showTariffInEmail) : ?>
                                                                <br/>
															<?php endif; ?>

															<?php
															if (2 == $showTariffInEmail || 3 == $showTariffInEmail) :
																echo $room->tariff_description;
															endif;
															?>
                                                        </td>
                                                        <td class="expander"></td>
                                                    </tr>

                                                </table>

                                            </td>
                                        </tr>
                                    </table>
								<?php endif; endforeach; ?>

                            <h5 class="email_heading"><?php echo JText::_("SR_EMAIL_OTHER_INFO") ?></h5>

                            <table class="row">
                                <tr>
                                    <td class="wrapper last">

                                        <table class="twelve columns">
                                            <tr>
                                                <td>
                                                    <dl>
														<?php
														if (isset($reservation->extras) && is_array($reservation->extras)) :
															foreach ($reservation->extras as $extra) : ?>
                                                                <dt>
																	<?php echo $extra->extra_name ?>
                                                                </dt>
                                                                <dd>
																	<?php echo JText::_('SR_EMAIL_EXTRA_QUANTITY') . $extra->extra_quantity ?>
                                                                </dd>
                                                                <dd>
																	<?php
																	$bookingExtraCurrency = clone $baseCurrency;
																	$bookingExtraCurrency->setValue($extra->extra_price);
																	echo JText::_('SR_EMAIL_EXTRA_PRICE') . $bookingExtraCurrency->format()
																	?>
                                                                </dd>
															<?php
															endforeach;
														endif;
														?>
                                                    </dl>
                                                </td>
                                                <td class="expander"></td>
                                            </tr>
                                        </table>

                                    </td>
                                </tr>
                            </table>

                            <table class="row footer">
                                <tr>
                                    <td class="wrapper">

                                        <table class="six columns">
                                            <tr>
                                                <td class="left-text-pad">

                                                    <h5><?php echo JText::_('SR_EMAIL_CONNECT_WITH_US') ?></h5>

													<?php if (!empty($asset->reservationasset_extra_fields['facebook_link'])
														&& $asset->reservationasset_extra_fields['facebook_show'] == 1) : ?>
                                                        <table class="tiny-button facebook">
                                                            <tr>
                                                                <td>
                                                                    <a href="<?php echo $asset->reservationasset_extra_fields['facebook_link'] ?>">Facebook</a>
                                                                </td>
                                                            </tr>
                                                        </table>
													<?php endif; ?>

                                                    <br>

													<?php if (!empty($asset->reservationasset_extra_fields['twitter_link'])
														&& $asset->reservationasset_extra_fields['twitter_show'] == 1) : ?>
                                                        <table class="tiny-button twitter">
                                                            <tr>
                                                                <td>

                                                                    <a href="<?php echo $asset->reservationasset_extra_fields['twitter_link'] ?>">Twitter</a>

                                                                </td>
                                                            </tr>
                                                        </table>
													<?php endif; ?>

                                                    <br>

													<?php if (!empty($asset->reservationasset_extra_fields['youtube_link'])
														&& $asset->reservationasset_extra_fields['youtube_show'] == 1) : ?>
                                                        <table class="tiny-button youtube">
                                                            <tr>
                                                                <td>

                                                                    <a href="<?php echo $asset->reservationasset_extra_fields['youtube_link'] ?>">Youtube</a>

                                                                </td>
                                                            </tr>
                                                        </table>
													<?php endif; ?>

                                                </td>
                                                <td class="expander"></td>
                                            </tr>
                                        </table>

                                    </td>
                                    <td class="wrapper last">

                                        <table class="six columns">
                                            <tr>
                                                <td class="last right-text-pad">
                                                    <h5><?php echo JText::_('SR_EMAIL_CONTACT_INFO') ?></h5>
                                                    <p>
														<?php
														echo JText::_('SR_EMAIL_ADDRESS') . $asset->address_1 . ', ' . $asset->city . ', ' . (!empty($asset->geostate_code_2) ? $asset->geostate_code_2 . ' ' : '') . $asset->postcode
														?>
                                                    </p>
                                                    <p><?php echo JText::_('SR_EMAIL_PHONE') ?><?php echo $asset->phone ?></p>
                                                    <p><?php echo JText::_('SR_EMAIL_EMAIL') ?><a
                                                                href="mailto:<?php echo $asset->email ?>"><?php echo $asset->email ?></a>
                                                    </p>
                                                </td>
                                                <td class="expander"></td>
                                            </tr>
                                        </table>

                                    </td>
                                </tr>
                            </table>

                            <!-- container end below -->
                        </td>
                    </tr>
                </table>
                <!-- End of email body -->

            </center>
        </td>
    </tr>
</table>
<?php
echo SRLayoutHelper::render('emails.footer');
layouts/emails/reservation_complete_customer_html_inliner.php000060400000177320150751740420021160 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/emails/reservation_complete_customer_html_inliner.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

echo SRLayoutHelper::render('emails.header', $displayData);

extract($displayData);

?>

<table class="body"
       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; height: 100%; width: 100%; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;">
    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
        align="left">
        <td class="center" align="center" valign="top"
            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;">
            <center style="width: 100%; min-width: 580px;">

                <!-- Begin email header -->
                <table class="row header"
                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; background: #999999; padding: 0px;"
                       bgcolor="#999999">
                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                        align="left">
                        <td class="center" align="center"
                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                            valign="top">
                            <center style="width: 100%; min-width: 580px;">

                                <table class="container"
                                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: inherit; width: 580px; margin: 0 auto; padding: 0;">
                                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                        align="left">
                                        <td class="wrapper last"
                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                            align="left" valign="top">

                                            <table class="twelve columns"
                                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                    align="left">
                                                    <td class="six sub-columns"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; min-width: 0px; width: 50%; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 10px 10px 0px;"
                                                        align="left" valign="top">
														<?php $assetLogo = $asset->params['logo'];
														if (isset($assetLogo) && !empty($assetLogo)) :
															if (file_exists(JPATH_ROOT . '/media/com_solidres/assets/images/system/' . $assetLogo)) : ?>
                                                                <img
                                                                src="<?php echo SRURI_MEDIA . '/assets/images/system/' . $assetLogo ?>"
                                                                alt="logo"
                                                                style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: auto; max-width: 100%; float: left; clear: both; display: block;"
                                                                align="left" /><?php endif; endif ?></td>
                                                    <td class="six sub-columns last"
                                                        style="text-align: right; vertical-align: middle; word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; min-width: 0px; width: 50%; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                        align="right" valign="middle">
                                                        <span class="template-label"
                                                              style="color: #ffffff; font-weight: bold; font-size: 11px;"><?php echo JText::_('SR_EMAIL_CONFIRM_RESERVATION') ?></span><br/><span
                                                                class="template-label"
                                                                style="color: #ffffff; font-weight: bold; font-size: 11px;"><?php echo JText::sprintf('SR_EMAIL_REF_ID', $reservation->code) ?></span>
                                                    </td>
                                                    <td class="expander"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                        align="left" valign="top"></td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
                            </center>
                        </td>
                    </tr>
                </table><!-- End of email header --><!-- Begin of email body -->
                <table class="container"
                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: inherit; width: 580px; margin: 0 auto; padding: 0;">
                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                        align="left">
                        <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                            align="left" valign="top">

                            <table class="row callout"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 20px;"
                                        align="left" valign="top">

                                        <table class="twelve columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <h3 style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 32px; margin: 0; padding: 0;"
                                                        align="left"><?php echo JText::sprintf('SR_EMAIL_GREETING_NAME', $reservation->customer_firstname, $reservation->customer_middlename, $reservation->customer_lastname) ?></h3>

                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"> </p>

													<?php echo call_user_func_array('JText::sprintf', $greetingText) ?>

                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                            <h5 class="email_heading"
                                style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                align="left"><?php echo JText::_("SR_GENERAL_INFO") ?></h5>

                            <table class="row"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 20px 0px 0px;"
                                        align="left" valign="top">

                                        <table class="six columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_CHECKIN') . JDate::getInstance($reservation->checkin, $timezone)->format($dateFormat, true) ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_CHECKOUT') . JDate::getInstance($reservation->checkout, $timezone)->format($dateFormat, true) ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_PAYMENT_METHOD') . JText::_($paymentMethodLabel) ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_EMAIL') . $reservation->customer_email ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_LENGTH_OF_STAY') ?>
														<?php if ($reservation->booking_type == 0) :
															echo JText::plural('SR_NIGHTS', $stayLength);
														else :
															echo JText::plural('SR_DAYS', $stayLength + 1);
														endif; ?>
                                                    </p>
													<?php if (!empty($reservation->coupon_code)) : ?>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left"><?php echo JText::_('SR_EMAIL_COUPON_CODE') . $reservation->coupon_code ?></p>
													<?php endif ?>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_NOTE') . $customerNote ?> </p>
                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                        align="left" valign="top">

                                        <table class="six columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_SUB_TOTAL') . $subTotal ?></p>
													<?php if ($discountPreTax && !is_null($totalDiscount)) : ?><p
                                                        style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                        align="left"><?php echo JText::_('SR_EMAIL_TOTAL_DISCOUNT') . '-' . $totalDiscount ?></p>
													<?php endif; ?><p
                                                            style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                            align="left"><?php echo JText::_('SR_EMAIL_TAX') . $tax ?></p>
													<?php if (!$discountPreTax && !is_null($totalDiscount)) : ?><p
                                                        style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                        align="left"><?php echo JText::_('SR_EMAIL_TOTAL_DISCOUNT') . '-' . $totalDiscount ?></p>
													<?php endif; ?><p
                                                            style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                            align="left"><?php echo JText::_('SR_EMAIL_EXTRA_TAX_EXCL') . $totalExtraPriceTaxExcl ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_EXTRA_TAX_AMOUNT') . $extraTax ?></p>
													<?php if ($reservation->payment_method_surcharge > 0) : ?>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::sprintf("SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT", $paymentMethodLabel) . $paymentMethodSurcharge; ?></p>
													<?php endif ?>
													<?php if ($reservation->payment_method_discount > 0) : ?>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::sprintf("SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT", $paymentMethodLabel) . '-' . $paymentMethodDiscount; ?></p>
													<?php endif ?>
													<?php if ($enableTouristTax) : ?>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::_('SR_EMAIL_TOURIST_TAX') . $touristTax; ?></p>
													<?php endif ?>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_GRAND_TOTAL') . $grandTotal ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_DEPOSIT_AMOUNT') . $depositAmount ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_TOTAL_PAID') . $totalPaid ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_DUE_AMOUNT') . $dueAmount ?></p>
                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                            <!-- Customer (or custom fields maybe) -->
                            <h5 class="email_heading"
                                style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                align="left">
								<?php echo JText::_('SR_GUEST_INFO'); ?>
                            </h5>
	                        <?php echo SRLayoutHelper::render('emails.customer_fields', $displayData, false); ?>
							<?php if (!empty($bankwireInstructions)) : ?><h5 class="email_heading"
                                                                             style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                                                             align="left"><?php echo JText::_("SR_EMAIL_BANKWIRE_INFO") ?></h5>

                            <table class="row"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                        align="left" valign="top">

                                        <table class="twelve columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left">
														<?php echo $bankwireInstructions['account_name']; ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left">
														<?php echo $bankwireInstructions['account_details']; ?></p>
                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr></table><?php endif ?><h5 class="email_heading"
                                                               style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                                               align="left"><?php echo JText::_("SR_ROOM_EXTRA_INFO") ?></h5>

							<?php foreach ($reservation->reserved_room_details as $room) : ?>
                                <p class="email_roomtype_name"
                                   style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: bold; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; border-bottom-style: solid; border-bottom-color: #CCC; border-bottom-width: 1px; margin: 10px 0 5px; padding: 0;"
                                   align="left">
									<?php echo $room->room_type_name ?>
                                </p>

                                <table class="row"
                                       style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                    <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                        align="left">
                                        <td class="wrapper"
                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 20px 0px 0px;"
                                            align="left" valign="top">

                                            <table class="six columns"
                                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                    align="left">
                                                    <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                        align="left" valign="top">
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::_("SR_GUEST_FULLNAME") . ': ' . $room->guest_fullname ?>
                                                        </p>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php foreach ($room->other_info as $info) : if (substr($info->key, 0, 7) == 'smoking') : ?>
																<?php echo JText::_('SR_' . $info->key) . ': ' . ($info->value == '' ? JText::_('SR_NO_PREFERENCES') : ($info->value == 1 ? JText::_('SR_YES') : JText::_('SR_NO'))); ?>
															<?php endif; endforeach; ?></p>
                                                        <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                           align="left">
															<?php echo JText::_("SR_ADULT_NUMBER") . ': ' . $room->adults_number ?>
                                                        </p>
														<?php if ($room->children_number > 0) : ?>
                                                            <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                               align="left">
																<?php echo JText::_("SR_CHILDREN_NUMBER") . ': ' . $room->children_number ?>
                                                            </p>
															<?php foreach ($room->other_info as $info) : ?>
                                                                <ul><?php if (substr($info->key, 0, 5) == 'child') : ?>
                                                                    <li>
																		<?php echo JText::_('SR_' . $info->key) . ': ' . JText::plural('SR_CHILD_AGE_SELECTION', $info->value) ?>
                                                                    </li>
																<?php endif; ?></ul><?php endforeach; ?><?php endif; ?>
														<?php

														if (isset($roomFields[$room->id]))
														{
															echo SRLayoutHelper::render('emails.room_fields', ['roomFields' => $roomFields[$room->id], 'roomExtras' => isset($room->extras) ? $room->extras : []]);
														}

														?>
                                                    </td>
                                                    <td class="expander"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                        align="left" valign="top"></td>
                                                </tr>
                                            </table>
                                        </td>
                                        <td class="wrapper last"
                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                            align="left" valign="top">

                                            <table class="six columns"
                                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                    align="left">
                                                    <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                        align="left" valign="top">
														<?php if (isset($room->extras) && is_array($room->extras)) : ?>
                                                            <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                               align="left"><?php echo JText::_('SR_EMAIL_EXTRAS_ITEMS') ?></p>
															<?php foreach ($room->extras as $extra) : ?>

                                                                <dl>
                                                                <dt>
																	<?php echo $extra->extra_name ?>
                                                                </dt>
                                                                <dd>
																	<?php echo JText::_('SR_EMAIL_EXTRA_QUANTITY') . $extra->extra_quantity ?>
                                                                </dd>
                                                                <dd>
																	<?php $roomExtraCurrency = clone $baseCurrency;
																	$roomExtraCurrency->setValue($extra->extra_price);
																	echo JText::_('SR_EMAIL_EXTRA_PRICE') . $roomExtraCurrency->format()
																	?>
                                                                </dd>
                                                                </dl><?php endforeach; ?><?php endif; ?></td>
                                                    <td class="expander"
                                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                        align="left" valign="top"></td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
								<?php
								$showTariffInEmail = $asset->params['show_tariff_in_email'];
								$showTariffInEmail = isset($showTariffInEmail) ? $showTariffInEmail : 0;
								if (0 != $showTariffInEmail) :
									?>
                                    <table class="row"
                                           style="border-spacing: 0; border-collapse: collapse; width: 100%; position: relative; padding: 0px;">
                                        <tr style="">
                                            <td class="wrapper"
                                                style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; position: relative; font-size: 14px; line-height: 19px; padding: 10px 20px 0px 0px;">

                                                <table class="twelve columns"
                                                       style="border-spacing: 0; border-collapse: collapse; width: 580px; margin: 0 auto;">
                                                    <tr style="">
                                                        <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; font-size: 14px; line-height: 19px; padding: 0px 0px 10px;">
															<?php
															if (1 == $showTariffInEmail || 3 == $showTariffInEmail) :
																echo $room->tariff_title;
															endif;
															?>

															<?php if (3 == $showTariffInEmail) : ?>
                                                                <br><?php endif; ?><?php if (2 == $showTariffInEmail || 3 == $showTariffInEmail) :
																echo $room->tariff_description;
															endif;
															?>
                                                        </td>
                                                        <td class="expander"
                                                            style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0px; font-size: 14px; line-height: 19px; padding: 0;"></td>
                                                    </tr>
                                                </table>
                                            </td>
                                        </tr>
                                    </table>
								<?php endif; endforeach; ?><h5 class="email_heading"
                                                               style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; background: #f2f2f2; margin: 0; padding: 5px; border: 1px solid #d9d9d9;"
                                                               align="left"><?php echo JText::_("SR_EMAIL_OTHER_INFO") ?></h5>

                            <table class="row"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;"
                                        align="left" valign="top">

                                        <table class="twelve columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 580px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <dl><?php if (isset($reservation->extras) && is_array($reservation->extras)) :
															foreach ($reservation->extras as $extra) : ?>
                                                                <dt>
																	<?php echo $extra->extra_name ?>
                                                                </dt>
                                                                <dd>
																	<?php echo JText::_('SR_EMAIL_EXTRA_QUANTITY') . $extra->extra_quantity ?>
                                                                </dd>
                                                                <dd>
																	<?php $bookingExtraCurrency = clone $baseCurrency;
																	$bookingExtraCurrency->setValue($extra->extra_price);
																	echo JText::_('SR_EMAIL_EXTRA_PRICE') . $bookingExtraCurrency->format()
																	?>
                                                                </dd>
															<?php endforeach;
														endif;
														?></dl>
                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                            <table class="row footer"
                                   style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; position: relative; display: block; padding: 0px;">
                                <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                    align="left">
                                    <td class="wrapper"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; background: #ebebeb; margin: 0; padding: 10px 20px 0px 0px;"
                                        align="left" bgcolor="#ebebeb" valign="top">

                                        <table class="six columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td class="left-text-pad"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px 10px;"
                                                    align="left" valign="top">

                                                    <h5 style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; margin: 0; padding: 0 0 10px;"
                                                        align="left"><?php echo JText::_('SR_EMAIL_CONNECT_WITH_US') ?></h5>

													<?php if (!empty($asset->reservationasset_extra_fields['facebook_link'])
														&& $asset->reservationasset_extra_fields['facebook_show'] == 1) : ?>
                                                    <table class="tiny-button facebook"
                                                           style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; overflow: hidden; padding: 0;">
                                                        <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                            align="left">
                                                            <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #ffffff; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; display: block; width: auto !important; background: #3b5998; margin: 0; padding: 5px 0 4px; border: 1px solid #2d4473;"
                                                                align="center" bgcolor="#3b5998" valign="top">
                                                                <a href="<?php echo $asset->reservationasset_extra_fields['facebook_link'] ?>"
                                                                   style="color: #ffffff; text-decoration: none; font-weight: normal; font-family: Helvetica, Arial, sans-serif; font-size: 12px;">Facebook</a>
                                                            </td>
                                                        </tr></table><?php endif; ?>
                                                    <br/><?php if (!empty($asset->reservationasset_extra_fields['twitter_link'])
														&& $asset->reservationasset_extra_fields['twitter_show'] == 1) : ?>
                                                    <table class="tiny-button twitter"
                                                           style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; overflow: hidden; padding: 0;">
                                                        <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                            align="left">
                                                            <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #ffffff; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; display: block; width: auto !important; background: #00acee; margin: 0; padding: 5px 0 4px; border: 1px solid #0087bb;"
                                                                align="center" bgcolor="#00acee" valign="top">

                                                                <a href="<?php echo $asset->reservationasset_extra_fields['twitter_link'] ?>"
                                                                   style="color: #ffffff; text-decoration: none; font-weight: normal; font-family: Helvetica, Arial, sans-serif; font-size: 12px;">Twitter</a>

                                                            </td>
                                                        </tr></table><?php endif; ?>
                                                    <br/><?php if (!empty($asset->reservationasset_extra_fields['youtube_link'])
														&& $asset->reservationasset_extra_fields['youtube_show'] == 1) : ?>
                                                    <table class="tiny-button youtube"
                                                           style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 100%; overflow: hidden; padding: 0;">
                                                        <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                            align="left">
                                                            <td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; color: #ffffff; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; display: block; width: auto !important; background: #DB4A39; margin: 0; padding: 5px 0 4px; border: 1px solid #cc0000;"
                                                                align="center" bgcolor="#DB4A39" valign="top">

                                                                <a href="<?php echo $asset->reservationasset_extra_fields['youtube_link'] ?>"
                                                                   style="color: #ffffff; text-decoration: none; font-weight: normal; font-family: Helvetica, Arial, sans-serif; font-size: 12px;">Youtube</a>

                                                            </td>
                                                        </tr></table><?php endif; ?></td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                    <td class="wrapper last"
                                        style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; position: relative; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; background: #ebebeb; margin: 0; padding: 10px 0px 0px;"
                                        align="left" bgcolor="#ebebeb" valign="top">

                                        <table class="six columns"
                                               style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; width: 280px; margin: 0 auto; padding: 0;">
                                            <tr style="vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; padding: 0;"
                                                align="left">
                                                <td class="last right-text-pad"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0px 0px 10px;"
                                                    align="left" valign="top">
                                                    <h5 style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 1.3; word-break: normal; font-size: 24px; margin: 0; padding: 0 0 10px;"
                                                        align="left"><?php echo JText::_('SR_EMAIL_CONTACT_INFO') ?></h5>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left">
														<?php echo JText::_('SR_EMAIL_ADDRESS') . $asset->address_1 . ', ' . $asset->city . ', ' . (!empty($asset->geostate_code_2) ? $asset->geostate_code_2 . ' ' : '') . $asset->postcode ?>
                                                    </p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_PHONE') ?><?php echo $asset->phone ?></p>
                                                    <p style="color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; line-height: 19px; font-size: 14px; margin: 0 0 10px; padding: 0;"
                                                       align="left"><?php echo JText::_('SR_EMAIL_EMAIL') ?><a
                                                                href="mailto:<?php echo $asset->email ?>"
                                                                style="color: #2ba6cb; text-decoration: none;"><?php echo $asset->email ?></a>
                                                    </p>
                                                </td>
                                                <td class="expander"
                                                    style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: <?php echo $direction == 'ltr' ? 'left' : 'right' ?>; visibility: hidden; width: 0px; color: #222222; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"
                                                    align="left" valign="top"></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table><!-- container end below --></td>
                    </tr>
                </table><!-- End of email body --></center>
        </td>
    </tr>
</table>

<?php
echo SRLayoutHelper::render('emails.footer');
layouts/solidres/form/field/random_code.php000060400000002202150751740420015076 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/solidres/form/field/random_code.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

require JPATH_ADMINISTRATOR . '/components/com_solidres/layouts/solidres/form/field/random_code.php';
layouts/payment/cardform.php000060400000013726150751740420012241 0ustar00<?php
/*------------------------------------------------------------------------
  Solidres - Hotel booking extension for Joomla
  ------------------------------------------------------------------------
  @Author    Solidres Team
  @Website   http://www.solidres.com
  @Copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
  @License   GNU General Public License version 3, or later
------------------------------------------------------------------------*/

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/payment/cardform.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

/**
 * @var array    $displayData
 * @var string   $checked
 * @var string   $element
 * @var SRConfig $solidresPaymentConfigData
 * @var stdClass $reservationDetails
 */

use Joomla\CMS\Language\Text;

extract($displayData);

$title                   = Text::_('SR_PAYMENT_METHOD_' . strtoupper($element));
$configuredAcceptedCards = trim($solidresPaymentConfigData->get('payments/' . $element . '/' . $element . '_accepted_cards', ''));
$accepted                = [];
$acceptedJs              = [];

if (!empty($configuredAcceptedCards))
{
	$acceptedCards = json_decode($configuredAcceptedCards, true) ?: [];
	$cardList      = [
		'visa'       => 'Visa',
		'mastercard' => 'MasterCard',
		'amex'       => 'Amex',
		'dinersclub' => 'Diners Club',
		'enroute'    => 'enRoute',
		'discover'   => 'Discover',
		'jcb'        => 'JCB',
	];

	foreach ($acceptedCards as $card)
	{
		$accepted[]        = $cardList[$card];
		$acceptedJs[$card] = true;
	}
}

if (empty($acceptedJs))
{
	$acceptedJs['all'] = true;
}

?>

<div class="sr-payment-card-form-container"
     data-element="<?php echo $element; ?>"
     data-accepted-cards="<?php echo htmlspecialchars(json_encode($acceptedJs)); ?>">

	<?php if (empty($hideCheckbox)): ?>
        <input class="payment_method_radio" id="payment-method-<?php echo $element; ?>"
               type="radio"
               name="jform[payment_method_id]"
               value="<?php echo $element; ?>"
			<?php echo $checked ?>
        />

        <span class="popover_payment_methods"
              data-content="<?php echo SRUtilities::translateText($solidresPaymentConfigData->get('payments/' . $element . '/' . $element . '_frontend_message')); ?>"
              data-title="<?php echo $title; ?>">
		<?php echo $title; ?>
		<i class="fa fa-question-circle"></i>
	</span>
	<?php endif; ?>

    <div class="payment_method_<?php echo $element; ?>_details payment_method_details <?php echo $checked == 'checked' ? '' : 'nodisplay'; ?>">
        <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
            <div class="<?php echo SR_UI_GRID_COL_6 ?>">

                <label for="jform[<?php echo $element; ?>][cardholder]">
					<?php echo Text::_('SR_PAYMENT_CARD_HOLDER') ?>
                </label>

                <input class="input-block-level form-control"
                       name="jform[<?php echo $element; ?>][cardHolder]"
                       type="text"
                       autocomplete="off"
                       value="<?php echo isset($reservationDetails->guest[$element]['cardHolder']) ? $reservationDetails->guest[$element]['cardHolder'] : ''; ?>"
                />
                <label for="jform[<?php echo $element; ?>][cardNumber]">
					<?php echo Text::_('SR_PAYMENT_CARD_NUMBER') ?>
                </label>

                <input class="input-block-level form-control"
                       name="jform[<?php echo $element; ?>][cardNumber]"
                       type="text"
                       autocomplete="off"
                       value=""
                />
				<?php if ($accepted): ?>
                    <span class="help-block">
                        <?php echo Text::sprintf('SR_PAYMENT_WE_ACCEPT_FORMAT', join(', ', $accepted)); ?>
                    </span>
				<?php endif; ?>
            </div>

            <div class="<?php echo SR_UI_GRID_COL_6; ?>">
                <?php $cvv = $solidresPaymentConfigData->get('payments/' . $element . '/' . $element . '_enable_cvv'); ?>
				<?php if (null === $cvv || 1 == $cvv) : ?>
                    <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                        <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                            <label for="jform[<?php echo $element; ?>][cardCVV]">
								<?php echo Text::_('SR_PAYMENT_CARD_CVV') ?>
                            </label>
                            <input class="input-block-level form-control" name="jform[<?php echo $element; ?>][cardCVV]"
                                   type="text"
                                   autocomplete="off"/>
                        </div>
                    </div>
				<?php endif ?>

                <div class="<?php echo SR_UI_GRID_CONTAINER ?>">
                    <div class="<?php echo SR_UI_GRID_COL_12 ?>">
                        <input type="hidden" name="jform[<?php echo $element; ?>][expiryMonth]"/>
                        <input type="hidden" name="jform[<?php echo $element; ?>][expiryYear]"/>
                        <label for="sr-<?php echo $element; ?>-expiration">
							<?php echo Text::_('SR_PAYMENT_EXPIRATION'); ?>
                        </label>
                        <input class="input-block-level form-control sr-payment-<?php echo $element; ?>-expiration"
                               name="sr_payment_<?php echo $element; ?>_expiration"
                               type="text" size="5"
                               id="sr-<?php echo $element; ?>-expiration"
                               placeholder="MM/YY"/>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>layouts/tracking/tracking.php000060400000007536150751740420012375 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/tracking/tracking.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;
$trackingCode  = isset($displayData['trackingCode']) ? $displayData['trackingCode'] : '';
$trackingEmail = isset($displayData['trackingEmail']) ? $displayData['trackingEmail'] : '';
$menuId        = isset($displayData['menuId']) ? $displayData['menuId'] : '';
$scope         = empty($displayData['scope']) ? '' : 'exp';
$link          = 'index.php?option=com_solidres&view=' . ($scope) . 'tracking';


if ($trackingCode)
{
	$link .= '&trackingCode=' . $trackingCode;
}

if ($trackingEmail)
{
	$link .= '&trackingEmail=' . $trackingEmail;
}

if ($menuId)
{
	$link .= '&Itemid=' . $menuId;
}

JHtml::_('behavior.formvalidator');
JFactory::getDocument()->addScriptDeclaration('Solidres.jQuery(document).ready(function ($) {
    $("form.sr-' . ($scope == 'exp' ? $scope . '-' : '') . 'tracking-form").on("submit", function(e) {    
        return document.formvalidator.isValid(this);
    });
});');
?>

<form action="<?php echo JRoute::_($link, false); ?>" method="post"
      class="sr-<?php echo($scope == 'exp' ? $scope . '-' : '') ?>tracking-form form-validate"
      novalidate>
    <div class="<?php echo SR_UI_FORM_FIELD; ?>">
        <label class="<?php echo SR_UI_FORM_LABEL; ?>"
               for="sr-<?php echo($scope == 'exp' ? $scope . '-' : '') ?>tracking-code">
			<?php echo JText::_('SR_' . ($scope == 'exp' ? strtoupper($scope) . '_' : '') . 'ENTER_YOUR_RESERVATION_CODE') . '*'; ?>
        </label>
        <div class="<?php echo SR_UI_FORM_ROW; ?>">
            <input type="text" name="trackingCode"
                   id="sr-<?php echo($scope == 'exp' ? $scope . '-' : '') ?>tracking-code"
                   class="<?php echo SR_UI == 'bs3' ? 'form-' : ''; ?>control<?php echo empty($displayData['isModule']) ? '' : ' input-block-level'; ?> required"
                   value="<?php echo $trackingCode; ?>"/>
        </div>
    </div>
    <div class="<?php echo SR_UI_FORM_FIELD; ?>">
        <label class="<?php echo SR_UI_FORM_LABEL; ?>"
               for="sr-<?php echo($scope == 'exp' ? $scope . '-' : '') ?>tracking-email">
			<?php echo JText::_('SR_' . ($scope == 'exp' ? strtoupper($scope) . '_' : '') . 'ENTER_YOUR_EMAIL') . '*'; ?>
        </label>
        <div class="<?php echo SR_UI_FORM_ROW; ?>">
            <input type="email" name="trackingEmail"
                   id="sr-<?php echo($scope == 'exp' ? $scope . '-' : '') ?>tracking-email"
                   class="<?php echo SR_UI == 'bs3' ? 'form-' : ''; ?>control<?php echo empty($displayData['isModule']) ? '' : ' input-block-level'; ?> required validate-email"
                   value="<?php echo $trackingEmail; ?>"/>
        </div>
    </div>
    <div class="actions">
        <button type="submit" class="btn btn-primary">
            <i class="fa fa-search"></i>
			<?php echo JText::_('SR_' . ($scope ? strtoupper($scope) . '_' : '') . 'FIND_RESERVATION'); ?>
        </button>
    </div>
</form>
layouts/joomla/searchtools/default/list.php000060400000002633150751740420015170 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/joomla/searchtools/default/list.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('JPATH_BASE') or die;

$data = $displayData;

// Load the form list fields
$list = $data['view']->filterForm->getGroup('list');
?>
<?php if ($list) : ?>
    <div class="ordering-select hidden-phone">
		<?php foreach ($list as $fieldName => $field) : ?>
            <div class="js-stools-field-list">
				<?php echo $field->input; ?>
            </div>
		<?php endforeach; ?>
    </div>
<?php endif; ?>
layouts/joomla/searchtools/default/bar.php000060400000006671150751740420014767 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/joomla/searchtools/default/bar.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('JPATH_BASE') or die;

use Joomla\Registry\Registry;

$data = $displayData;

// Receive overridable options
$data['options'] = !empty($data['options']) ? $data['options'] : array();

if (is_array($data['options']))
{
	$data['options'] = new Registry($data['options']);
}

// Options
$filterButton = $data['options']->get('filterButton', true);
$searchButton = $data['options']->get('searchButton', true);

$filters = $data['view']->filterForm->getGroup('filter');
?>

<?php if (!empty($filters['filter_search'])) : ?>
	<?php echo 'bs3' == SR_UI ? '<div class="row">' : '' ?>
	<?php if ($searchButton) : ?>
		<?php echo 'bs3' == SR_UI ? '<div class="col-md-6">' : '' ?>
        <label for="filter_search" class="element-invisible">
			<?php echo JText::_('JSEARCH_FILTER'); ?>
        </label>
        <div class="<?php echo 'bs2' == SR_UI ? 'btn-wrapper' : '' ?> input-append input-group">
			<?php echo $filters['filter_search']->input; ?>
			<?php if ($filters['filter_search']->description) : ?>
				<?php JHtmlBootstrap::tooltip('#filter_search', array('title' => JText::_($filters['filter_search']->description))); ?>
			<?php endif; ?>
            <span class="input-group-btn">
				    <button type="submit" class="btn btn-default hasTooltip"
                            title="<?php echo JHtml::tooltipText('JSEARCH_FILTER_SUBMIT'); ?>">
		                <span class="<?php echo 'bs2' == SR_UI ? 'icon-search' : '' ?> fa fa-search"></span>
		            </button>
	            </span>
        </div>
		<?php echo 'bs3' == SR_UI ? '</div>' : '' ?>
	<?php endif; ?>

	<?php if ($filterButton) : ?>
		<?php echo 'bs3' == SR_UI ? '<div class="col-md-6">' : '' ?>
        <div class="btn-wrapper">
            <button type="button" class="btn btn-default hasTooltip js-stools-btn-filter"
                    title="<?php echo JHtml::tooltipText('JSEARCH_TOOLS_DESC'); ?>">
				<?php echo JText::_('JSEARCH_TOOLS'); ?> <span class="caret"></span>
            </button>
        </div>
        <div class="btn-wrapper">
            <button type="button" class="btn btn-default hasTooltip js-stools-btn-clear"
                    onclick="jQuery('.js-stools-field-filter input').val('');"
                    title="<?php echo JHtml::tooltipText('JSEARCH_FILTER_CLEAR'); ?>">

                <i class="fa fa-times"></i>
            </button>
        </div>
		<?php echo 'bs3' == SR_UI ? '</div>' : '' ?>
	<?php endif; ?>
	<?php echo 'bs3' == SR_UI ? '</div>' : '' ?>
<?php endif;
layouts/joomla/searchtools/default/filters.php000060400000003503150751740420015662 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/joomla/searchtools/default/filters.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('JPATH_BASE') or die;

$data = $displayData;

// Load the form filters
$filters = $data['view']->filterForm->getGroup('filter');
JFactory::getDocument()->addStyleDeclaration('.js-stools-field-filter .input-append, .js-stools-field-filter input{margin-bottom: 0}')
?>
<?php if ($filters) : ?>
	<?php foreach ($filters as $fieldName => $field) :
		$show_label = (bool) $field->getAttribute('showlabel');
		?>
		<?php if ($fieldName != 'filter_search') : ?>
        <div class="js-stools-field-filter">
			<?php echo $field->input; ?>
			<?php if ($field->getAttribute('type') == 'calendar'): ?>
                <button type="submit" class="btn calendar-submit">
                    <i class="icon-filter"></i>
                </button>
			<?php endif; ?>
        </div>
	<?php endif; ?>
	<?php endforeach; ?>
<?php endif; ?>
layouts/joomla/searchtools/default.php000060400000005033150751740420014212 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/joomla/searchtools/default.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('JPATH_BASE') or die;

$data = $displayData;

// Receive overridable options
$data['options'] = !empty($data['options']) ? $data['options'] : array();

// Set some basic options
$customOptions = array(
	'filtersHidden'       => isset($data['options']['filtersHidden']) ? $data['options']['filtersHidden'] : empty($data['view']->activeFilters),
	'defaultLimit'        => isset($data['options']['defaultLimit']) ? $data['options']['defaultLimit'] : JFactory::getApplication()->get('list_limit', 20),
	'searchFieldSelector' => '#filter_search',
	'orderFieldSelector'  => '#list_fullordering'
);

$data['options'] = array_merge($customOptions, $data['options']);

$formSelector = !empty($data['options']['formSelector']) ? $data['options']['formSelector'] : '#adminForm';

// Load search tools
JHtml::_('searchtools.form', $formSelector, $data['options']);
?>
<div class="js-stools clearfix">
    <div class="clearfix <?php echo 'bs3' == SR_UI ? 'row' : '' ?>">
        <div class="js-stools-container-bar <?php echo 'bs3' == SR_UI ? 'col-md-10' : '' ?>">
			<?php echo JLayoutHelper::render('joomla.searchtools.default.bar', $data); ?>
        </div>
        <div class="js-stools-container-list hidden-phone hidden-tablet <?php echo 'bs3' == SR_UI ? 'col-md-2' : '' ?>">
			<?php echo JLayoutHelper::render('joomla.searchtools.default.list', $data); ?>
        </div>
    </div>
    <!-- Filters div -->
    <div class="js-stools-container-filters clearfix">
		<?php echo JLayoutHelper::render('joomla.searchtools.default.filters', $data); ?>
    </div>
</div>
layouts/joomla/searchtools/grid/sort.php000060400000003475150751740420014512 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/joomla/searchtools/grid/sort.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('JPATH_BASE') or die;

$data = $displayData;

$metatitle = JHtml::tooltipText(JText::_($data->tip ? $data->tip : $data->title), JText::_('JGLOBAL_CLICK_TO_SORT_THIS_COLUMN'), 0);
JHtml::_('bootstrap.tooltip');
?>
<a href="#" onclick="return false;" class="js-stools-column-order hasTooltip" data-order="<?php echo $data->order; ?>"
   data-direction="<?php echo strtoupper($data->direction); ?>" data-name="<?php echo JText::_($data->title); ?>"
   title="<?php echo $metatitle; ?>">
	<?php if (!empty($data->icon)) : ?>
        <span class="<?php echo $data->icon; ?>"></span>
	<?php endif; ?>
	<?php if (!empty($data->title)) : ?>
		<?php echo JText::_($data->title); ?>
	<?php endif; ?>
	<?php if ($data->order == $data->selected) : ?>
        <span class="<?php echo $data->orderIcon; ?>"></span>
	<?php endif; ?>
</a>
layouts/joomla/toolbar/standard.php000060400000004104150751740420013500 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/joomla/toolbar/standard.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('JPATH_BASE') or die;

JHtml::_('behavior.core');

$doTask      = $displayData['doTask'];
$class       = $displayData['class'];
$text        = $displayData['text'];
$btnClass    = $displayData['btnClass'];
$iconMapping = array(
	'icon-new'              => 'fa fa-plus-circle',
	'icon-new icon-white'   => 'fa fa-plus-square-o',
	'icon-apply icon-white' => 'fa fa-pencil-square-o',
	'icon-edit'             => 'fa fa-edit',
	'icon-publish'          => 'fa fa-check',
	'icon-unpublish'        => 'fa fa-close',
	'icon-trash'            => 'fa fa-trash',
	'icon-copy'             => 'fa fa-copy',
	'icon-cancel'           => 'fa fa-times-circle',
	'icon-save'             => 'fa fa-check',
	'icon-download'         => 'fa fa-download',
	'icon-save-new'         => 'fa fa-plus',
	'icon-save-copy'        => 'fa fa-clone',
	'icon-delete'           => 'fa fa-remove'
);

?>
<button onclick="<?php echo $doTask; ?>" class="btn-default btn-sm <?php echo $btnClass; ?>">
    <span class="<?php //echo trim($class); ?> <?php echo $iconMapping[trim($class)] ?>"></span>
	<?php echo $text; ?>
</button>
layouts/joomla/form/renderlabel.php000060400000004671150751740420013471 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/joomla/form/renderlabel.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('JPATH_BASE') or die;

extract($displayData);

/**
 * Layout variables
 * ---------------------
 *    $text         : (string)  The label text
 *    $description  : (string)  An optional description to use in a tooltip
 *    $for          : (string)  The id of the input this label is for
 *    $required     : (boolean) True if a required field
 *    $classes      : (array)   A list of classes
 *    $position     : (string)  The tooltip position. Bottom for alias
 */

$classes = array_filter((array) $classes);

$id    = $for . '-lbl';
$title = '';

if (!empty($description))
{
	if ($text && $text != $description)
	{
		JHtml::_('bootstrap.popover');
		$classes[] = 'hasPopover';
		$title     = ' title="' . htmlspecialchars(trim($text, ':')) . '"'
			. ' data-content="' . htmlspecialchars($description) . '"';

		if (JFactory::getLanguage()->isRtl() && !$position)
		{
			$position = ' data-placement="left" ';
		}
	}
	else
	{
		JHtml::_('bootstrap.tooltip');
		$classes[] = 'hasTooltip';
		$title     = ' title="' . JHtml::tooltipText(trim($text, ':'), $description, 0) . '"';
	}
}

if ($required)
{
	$classes[] = 'required';
}

if (SR_UI == 'bs3')
{
	$classes[] = 'control-label col-sm-2';
}

?>
<label id="<?php echo $id; ?>" for="<?php echo $for; ?>"
       class="<?php echo implode(' ', $classes); ?>"<?php echo $title; ?><?php echo $position; ?>>
	<?php echo $text; ?><?php if ($required) : ?><span class="star">&#160;*</span><?php endif; ?>
</label>
layouts/joomla/form/renderfield.php000060400000010114150751740420013462 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/joomla/form/renderfield.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('JPATH_BASE') or die;

extract($displayData);

/**
 * Layout variables
 * ---------------------
 *    $options         : (array)  Optional parameters
 *    $label           : (string) The html code for the label (not required if $options['hiddenLabel'] is true)
 *    $input           : (string) The input field html code
 */

if (!empty($options['showonEnabled']))
{
	JHtml::_('jquery.framework');
	JHtml::_('script', 'jui/cms.js', false, true);
}

$class = empty($options['class']) ? '' : ' ' . $options['class'];
$rel   = empty($options['rel']) ? '' : ' ' . $options['rel'];

global $uiAppendScript;

if (true !== $uiAppendScript)
{
	$uiAppendScript = true;

	if (SR_UI == 'bs3')
	{
		JFactory::getDocument()->addScriptDeclaration('
				Solidres.jQuery(document).ready(function($){				
					$(".bs3 .form-group input[type=\'text\'],"
						+ ".bs3 .form-group input[type=\'email\'],"
						+ ".bs3 .form-group input[type=\'password\'],"
						+ ".bs3 .form-group select,"
						+ ".bs3 .form-group textarea").addClass("form-control");
					$(".bs3 .form-group .input-append").addClass("input-group")
						.find(">.btn").addClass("btn-default")
						.find(".icon-calendar").addClass("fa fa-calendar").removeClass("icon-calendar");
					var modal = $(".bs3 .form-group [id^=\'articleSelectjform\']").removeClass("hide").hide();						
					if(modal.find(">.modal-dialog").length == 0){
						modal.each(function(){
							var el = $(this), dialog = $("<div class=\'modal-dialog modal-lg\'></div>").append("<div class=\'modal-content\'></div>");
							dialog.find(">.modal-content").append(el.find(">.modal-header, >.modal-body, >.modal-footer"));
							dialog.find(".modal-footer .btn").addClass("btn-default");													
							el.append(dialog);							
						});						
					}
					modal.on("DOMSubtreeModified", function(){
						$(this).find("iframe").on("load", function(){
							var frame = $(this).contents();
							frame.find("body .icon-search").addClass("fa fa-search").removeClass("icon-search");
							frame.find("body .icon-publish").addClass("fa fa-check").removeClass("icon-publish");
							frame.find("body .icon-unpublish").addClass("fa fa-times-circle").removeClass("icon-unpublish");
						});
					});
				});
		')
			->addStyleDeclaration('
			@media (min-width: 992px){
				.bs3 .modal-dialog {
	                width: 900px;
				}	
			}
			.bs3 .modal-dialog .modal-body{
				padding: 0;
			}
			.bs3 .modal-dialog iframe{
				border: none;
				width: 100%;
			}
		');
	}
}

?>
<?php if (empty($options['input_only'])): ?>
    <div class="<?php echo SR_UI_FORM_ROW; ?><?php echo $class; ?>"<?php echo $rel; ?>>
		<?php if (empty($options['hiddenLabel'])) : ?>
			<?php if ('bs2' == SR_UI) : ?><div class="<?php echo SR_UI_FORM_LABEL ?>"><?php endif ?>
			<?php echo $label; ?>
			<?php if ('bs2' == SR_UI) : ?></div><?php endif ?>
		<?php endif; ?>
        <div
                class="<?php echo SR_UI_FORM_FIELD ?> <?php echo (isset($options['hiddenLabel']) && 'bs3' == SR_UI) ? ' col-sm-offset-2' : ''; ?>">
			<?php echo $input; ?>
        </div>
    </div>
<?php else: ?>
	<?php echo $input; ?>
<?php endif; ?>layouts/joomla/form/field/calendar.php000060400000015563150751740420014050 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/joomla/form/field/calendar.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('JPATH_BASE') or die;

use Joomla\Utilities\ArrayHelper;

extract($displayData);

// Get some system objects.
$document = JFactory::getDocument();

/**
 * Layout variables
 * -----------------
 * @var   string  $autocomplete   Autocomplete attribute for the field.
 * @var   boolean $autofocus      Is autofocus enabled?
 * @var   string  $class          Classes for the input.
 * @var   string  $description    Description of the field.
 * @var   boolean $disabled       Is this field disabled?
 * @var   string  $group          Group the field belongs to. <fields> section in form XML.
 * @var   boolean $hidden         Is this field hidden in the form?
 * @var   string  $hint           Placeholder for the field.
 * @var   string  $id             DOM id of the field.
 * @var   string  $label          Label of the field.
 * @var   string  $labelclass     Classes to apply to the label.
 * @var   boolean $multiple       Does this field support multiple values?
 * @var   string  $name           Name of the input field.
 * @var   string  $onchange       Onchange attribute for the field.
 * @var   string  $onclick        Onclick attribute for the field.
 * @var   string  $pattern        Pattern (Reg Ex) of value of the form field.
 * @var   boolean $readonly       Is this field read only?
 * @var   boolean $repeat         Allows extensions to duplicate elements.
 * @var   boolean $required       Is this field required?
 * @var   integer $size           Size attribute of the input.
 * @var   boolean $spellcheck     Spellcheck state for the form field.
 * @var   string  $validate       Validation rules to apply.
 * @var   string  $value          Value attribute of the field.
 * @var   array   $checkedOptions Options that will be set as checked.
 * @var   boolean $hasValue       Has this field a value assigned?
 * @var   array   $options        Options available for this field.
 *
 * Calendar Specific
 * @var   string  $localesPath    The relative path for the locale file
 * @var   string  $helperPath     The relative path for the helper file
 * @var   string  $minYear        The minimum year, that will be subtracted/added to current year
 * @var   string  $maxYear        The maximum year, that will be subtracted/added to current year
 * @var   integer $todaybutton    The today button
 * @var   integer $weeknumbers    The week numbers display
 * @var   integer $showtime       The time selector display
 * @var   integer $filltable      The previous/next month filling
 * @var   integer $timeformat     The time format
 * @var   integer $singleheader   Display different header row for month/year
 * @var   integer $direction      The document direction
 */

$inputvalue = '';

// Build the attributes array.
$attributes = array();

empty($size) ? null : $attributes['size'] = $size;
empty($maxlength) ? null : $attributes['maxlength'] = $maxLength;
empty($class) ? $attributes['class'] = 'form-control' : $attributes['class'] = 'form-control ' . $class;
!$readonly ? null : $attributes['readonly'] = 'readonly';
!$disabled ? null : $attributes['disabled'] = 'disabled';
empty($onchange) ? null : $attributes['onchange'] = $onchange;

if ($required)
{
	$attributes['required']      = '';
	$attributes['aria-required'] = 'true';
}

// Handle the special case for "now".
if (strtoupper($value) == 'NOW')
{
	$value = JFactory::getDate()->format('Y-m-d H:i:s');
}

$readonly = isset($attributes['readonly']) && $attributes['readonly'] == 'readonly';
$disabled = isset($attributes['disabled']) && $attributes['disabled'] == 'disabled';

if (is_array($attributes))
{
	$attributes = ArrayHelper::toString($attributes);
}

$cssFileExt = ($direction === 'rtl') ? '-rtl.css' : '.css';

// The static assets for the calendar
JHtml::_('script', $localesPath, false, true, false, false, true);
JHtml::_('script', $helperPath, false, true, false, false, true);
JHtml::_('script', 'system/fields/calendar.min.js', false, true, false, false, true);
JHtml::_('stylesheet', 'system/fields/calendar' . $cssFileExt, array(), true);
?>
<div class="field-calendar">
	<?php if (!$readonly && !$disabled) : ?>
    <div class="<?php echo 'bs2' == SR_UI ? 'input-append' : 'input-group'; ?>">
		<?php endif; ?>
        <input
                type="text"
                id="<?php echo $id; ?>"
                name="<?php echo $name; ?>"
                value="<?php echo htmlspecialchars(($value !== '0000-00-00 00:00:00') ? $value : '', ENT_COMPAT, 'UTF-8'); ?>"
			<?php echo $attributes; ?>
			<?php echo !empty($hint) ? 'placeholder="' . htmlspecialchars($hint, ENT_COMPAT, 'UTF-8') . '"' : ''; ?>
                data-alt-value="<?php echo htmlspecialchars($value, ENT_COMPAT, 'UTF-8'); ?>" autocomplete="off">
        <span class="<?php echo 'bs2' == SR_UI ? '' : 'input-group-btn'; ?>">
			<button type="button" class="<?php echo ($readonly || $disabled) ? 'hidden ' : ''; ?>btn btn-secondary"
                    id="<?php echo $id; ?>_btn"
                    data-inputfield="<?php echo $id; ?>"
                    data-dayformat="<?php echo $format; ?>"
                    data-button="<?php echo $id; ?>_btn"
                    data-firstday="<?php echo JFactory::getLanguage()->getFirstDay(); ?>"
                    data-weekend="<?php echo JFactory::getLanguage()->getWeekEnd(); ?>"
                    data-today-btn="<?php echo $todaybutton; ?>"
                    data-week-numbers="<?php echo $weeknumbers; ?>"
                    data-show-time="<?php echo $showtime; ?>"
                    data-show-others="<?php echo $filltable; ?>"
                    data-time-24="<?php echo $timeformat; ?>"
                    data-only-months-nav="<?php echo $singleheader; ?>"
				<?php echo !empty($minYear) ? 'data-min-year="' . $minYear . '"' : ''; ?>
				<?php echo !empty($maxYear) ? 'data-max-year="' . $maxYear . '"' : ''; ?>
            ><span class="fa fa-calendar"></span></button>
		</span>
		<?php if (!$readonly && !$disabled) : ?>
    </div>
<?php endif; ?>
</div>
layouts/joomla/form/field/media.php000060400000016147150751740420013355 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/joomla/form/field/media.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('JPATH_BASE') or die;

/**
 * Layout variables
 * -----------------
 * @var   string  $autocomplete   Autocomplete attribute for the field.
 * @var   boolean $autofocus      Is autofocus enabled?
 * @var   string  $class          Classes for the input.
 * @var   string  $description    Description of the field.
 * @var   boolean $disabled       Is this field disabled?
 * @var   string  $group          Group the field belongs to. <fields> section in form XML.
 * @var   boolean $hidden         Is this field hidden in the form?
 * @var   string  $hint           Placeholder for the field.
 * @var   string  $id             DOM id of the field.
 * @var   string  $label          Label of the field.
 * @var   string  $labelclass     Classes to apply to the label.
 * @var   boolean $multiple       Does this field support multiple values?
 * @var   string  $name           Name of the input field.
 * @var   string  $onchange       Onchange attribute for the field.
 * @var   string  $onclick        Onclick attribute for the field.
 * @var   string  $pattern        Pattern (Reg Ex) of value of the form field.
 * @var   boolean $readonly       Is this field read only?
 * @var   boolean $repeat         Allows extensions to duplicate elements.
 * @var   boolean $required       Is this field required?
 * @var   integer $size           Size attribute of the input.
 * @var   boolean $spellcheck     Spellcheck state for the form field.
 * @var   string  $validate       Validation rules to apply.
 * @var   string  $value          Value attribute of the field.
 * @var   array   $checkedOptions Options that will be set as checked.
 * @var   boolean $hasValue       Has this field a value assigned?
 * @var   array   $options        Options available for this field.
 *
 * @var   string  $preview        The preview image relative path
 * @var   integer $previewHeight  The image preview height
 * @var   integer $previewWidth   The image preview width
 * @var   string  $asset          The asset text
 * @var   string  $authorField    The label text
 * @var   string  $folder         The folder text
 * @var   string  $link           The link text
 */
extract($displayData);

// Load the modal behavior script.
JHtml::_('behavior.modal', 'a.modal_popup');

// Include jQuery
JHtml::_('jquery.framework');
JHtml::_('script', 'media/mediafield-mootools.min.js', true, true, false, false, true);

// Tooltip for INPUT showing whole image path
$options = array(
	'onShow' => 'jMediaRefreshImgpathTip',
);

JHtml::_('behavior.tooltip', '.hasTipImgpath', $options);

if (!empty($class))
{
	$class .= ' hasTipImgpath';
}
else
{
	$class = 'hasTipImgpath';
}

$attr = '';

$attr .= ' title="' . htmlspecialchars('<span id="TipImgpath"></span>', ENT_COMPAT, 'UTF-8') . '"';

// Initialize some field attributes.
$attr .= !empty($class) ? ' class="input-small field-media-input ' . $class . '"' : ' class="input-small"';
$attr .= !empty($size) ? ' size="' . $size . '"' : '';

// Initialize JavaScript field attributes.
$attr .= !empty($onchange) ? ' onchange="' . $onchange . '"' : '';

// The text field.
echo '<div class="' . (SR_UI == 'bs2' ? 'input-prepend input-append' : 'input-group') . '">';

// The Preview.
$showPreview   = true;
$showAsTooltip = false;

switch ($preview)
{
	case 'no': // Deprecated parameter value
	case 'false':
	case 'none':
		$showPreview = false;
		break;

	case 'yes': // Deprecated parameter value
	case 'true':
	case 'show':
		break;
	case 'tooltip':
	default:
		$showAsTooltip = true;
		$options       = array(
			'onShow' => 'jMediaRefreshPreviewTip',
		);
		JHtml::_('behavior.tooltip', '.hasTipPreview', $options);
		break;
}

// Pre fill the contents of the popover
if ($showPreview)
{
	if ($value && file_exists(JPATH_ROOT . '/' . $value))
	{
		$src = JUri::root() . $value;
	}
	else
	{
		$src = '';
	}

	$width  = $previewWidth;
	$height = $previewHeight;
	$style  = '';
	$style  .= ($width > 0) ? 'max-width:' . $width . 'px;' : '';
	$style  .= ($height > 0) ? 'max-height:' . $height . 'px;' : '';

	$imgattr = array(
		'id'    => $id . '_preview',
		'class' => 'media-preview',
		'style' => $style,
	);

	$img             = JHtml::image($src, JText::_('JLIB_FORM_MEDIA_PREVIEW_ALT'), $imgattr);
	$previewImg      = '<div id="' . $id . '_preview_img"' . ($src ? '' : ' style="display:none"') . '>' . $img . '</div>';
	$previewImgEmpty = '<div id="' . $id . '_preview_empty"' . ($src ? ' style="display:none"' : '') . '>'
		. JText::_('JLIB_FORM_MEDIA_PREVIEW_EMPTY') . '</div>';

}

echo '	<input type="text" name="' . $name . '" id="' . $id . '" value="'
	. htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '" readonly="readonly"' . $attr . ' data-basepath="'
	. JUri::root() . '" style="border-radius: 4px 0 0 4px; margin-bottom: 0"/>';

?>
<div class="<?php echo SR_UI == 'bs3' ? ' input-group-btn' : ''; ?>"
     style="width: auto;<?php echo SR_UI == 'bs2' ? ' display: inline-block' : ''; ?>; vertical-align: middle;">
	<?php
	if ($showAsTooltip)
	{
		echo '<button type="button" class="btn btn-default media-preview" style="border-radius: 0">';
		$tooltip = $previewImgEmpty . $previewImg;
		$options = array(
			'title' => JText::_('JLIB_FORM_MEDIA_PREVIEW_SELECTED_IMAGE'),
			'text'  => '<i class="fa fa-eye"></i>',
			'class' => 'hasTipPreview'
		);

		echo JHtml::tooltip($tooltip, $options);
		echo '</button>';
	}
	else
	{
		echo '<button type="button" class="media-preview" style="height: auto">';
		echo ' ' . $previewImgEmpty;
		echo ' ' . $previewImg;
		echo '</button>';
	}
	?>
    <a class="modal_popup btn btn-default"
       title="<?php echo JText::_('JLIB_FORM_BUTTON_SELECT'); ?>" href="
<?php echo ($readonly ? ''
			: ($link ? $link
				: 'index.php?option=com_media&amp;view=images&amp;tmpl=component&amp;asset=' . $asset . '&amp;author='
				. $authorField) . '&amp;fieldid=' . $id . '&amp;folder=' . $folder) . '"'
		. ' rel="{handler: \'iframe\', size: {x: 800, y: 500}}"'; ?>>
 <?php echo JText::_('JLIB_FORM_BUTTON_SELECT'); ?></a>
 <a class=" btn btn-default
       hasTooltip" title="<?php echo JText::_('JLIB_FORM_BUTTON_CLEAR'); ?>" href="#" onclick="jInsertFieldValue('',
    '<?php echo $id; ?>'); return false;">
    <i class="fa fa-times"></i>
    </a>
</div>
</div>layouts/pagination/pagination.php000060400000014666150751740420013255 0ustar00<?php
/**
 ------------------------------------------------------------------------
 SOLIDRES - Accommodation booking extension for Joomla
 ------------------------------------------------------------------------
 * @author    Solidres Team <contact@solidres.com>
 * @website   https://www.solidres.com
 * @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
 * @license   GNU General Public License version 3, or later
 ------------------------------------------------------------------------
 */

/*
 * This layout file can be overridden by copying to:
 *
 * /templates/TEMPLATENAME/html/layouts/com_solidres/pagination/pagination.php
 *
 * However, occasionally we will need to update template/layout related files and it is the template developers'
 * responsibility to update the overridden files (if any) to maintain full compatibility with Solidres.
 *
 * We do not provide support if any of the overridden files are out of date and are not compatible with Solidres.
 *
 * @version 2.8.0
 */

defined('_JEXEC') or die;

/**
 * This is a file to add template specific chrome to pagination rendering.
 *
 * pagination_list_footer
 *    Input variable $list is an array with offsets:
 *        $list[limit]        : int
 *        $list[limitstart]    : int
 *        $list[total]        : int
 *        $list[limitfield]    : string
 *        $list[pagescounter]    : string
 *        $list[pageslinks]    : string
 *
 * pagination_list_render
 *    Input variable $list is an array with offsets:
 *        $list[all]
 *            [data]        : string
 *            [active]    : boolean
 *        $list[start]
 *            [data]        : string
 *            [active]    : boolean
 *        $list[previous]
 *            [data]        : string
 *            [active]    : boolean
 *        $list[next]
 *            [data]        : string
 *            [active]    : boolean
 *        $list[end]
 *            [data]        : string
 *            [active]    : boolean
 *        $list[pages]
 *            [{PAGE}][data]        : string
 *            [{PAGE}][active]    : boolean
 *
 * pagination_item_active
 *    Input variable $item is an object with fields:
 *        $item->base    : integer
 *        $item->link    : string
 *        $item->text    : string
 *
 * pagination_item_inactive
 *    Input variable $item is an object with fields:
 *        $item->base    : integer
 *        $item->link    : string
 *        $item->text    : string
 *
 * This gives template designers ultimate control over how pagination is rendered.
 *
 * NOTE: If you override pagination_item_active OR pagination_item_inactive you MUST override them both
 */

/**
 * Renders the pagination footer
 *
 * @param   array $list Array containing pagination footer
 *
 * @return  string         HTML markup for the full pagination footer
 *
 * @since   3.0
 */
function pagination_list_footer($list)
{
	$html = "<div class=\"pagination\">\n";
	$html .= $list['pageslinks'];
	$html .= "\n<input type=\"hidden\" name=\"" . $list['prefix'] . "limitstart\" value=\"" . $list['limitstart'] . "\" />";
	$html .= "\n</div>";

	return $html;
}

/**
 * Renders the pagination list
 *
 * @param   array $list Array containing pagination information
 *
 * @return  string         HTML markup for the full pagination object
 *
 * @since   3.0
 */
function pagination_list_render($list)
{
	// Calculate to display range of pages
	$currentPage = 1;
	$range       = 1;
	$step        = 5;
	foreach ($list['pages'] as $k => $page)
	{
		if (!$page['active'])
		{
			$currentPage = $k;
		}
	}
	if ($currentPage >= $step)
	{
		if ($currentPage % $step == 0)
		{
			$range = ceil($currentPage / $step) + 1;
		}
		else
		{
			$range = ceil($currentPage / $step);
		}
	}

	$html = '<ul class="pagination-list">';
	$html .= $list['start']['data'];
	$html .= $list['previous']['data'];

	foreach ($list['pages'] as $k => $page)
	{
		if (in_array($k, range($range * $step - ($step + 1), $range * $step)))
		{
			if (($k % $step == 0 || $k == $range * $step - ($step + 1)) && $k != $currentPage && $k != $range * $step - $step)
			{
				$page['data'] = preg_replace('#(<a.*?>).*?(</a>)#', '$1...$2', $page['data']);
			}
		}

		$html .= $page['data'];
	}

	$html .= $list['next']['data'];
	$html .= $list['end']['data'];

	$html .= '</ul>';

	return $html;
}

/**
 * Renders an active item in the pagination block
 *
 * @param   JPaginationObject $item The current pagination object
 *
 * @return  string                    HTML markup for active item
 *
 * @since   3.0
 */
function pagination_item_active(&$item)
{
	$class = '';

	// Check for "Start" item
	if ($item->text == JText::_('JLIB_HTML_START'))
	{
		$display = '<i class="icon-first"></i>';
	}

	// Check for "Prev" item
	if ($item->text == JText::_('JPREV'))
	{
		$display = '<i class="icon-previous"></i>';
	}

	// Check for "Next" item
	if ($item->text == JText::_('JNEXT'))
	{
		$display = '<i class="icon-next"></i>';
	}

	// Check for "End" item
	if ($item->text == JText::_('JLIB_HTML_END'))
	{
		$display = '<i class="icon-last"></i>';
	}

	// If the display object isn't set already, just render the item with its text
	if (!isset($display))
	{
		$display = $item->text;
		$class   = ' class="hidden-phone"';
	}

	return '<li' . $class . '><a data-start="' . $item->base . '" title="' . $item->text . '" href="' . $item->link . '" class="pagenav">' . $display . '</a></li>';
}

/**
 * Renders an inactive item in the pagination block
 *
 * @param   JPaginationObject $item The current pagination object
 *
 * @return  string  HTML markup for inactive item
 *
 * @since   3.0
 */
function pagination_item_inactive(&$item)
{
	// Check for "Start" item
	if ($item->text == JText::_('JLIB_HTML_START'))
	{
		return '<li class="disabled"><a><i class="icon-first"></i></a></li>';
	}

	// Check for "Prev" item
	if ($item->text == JText::_('JPREV'))
	{
		return '<li class="disabled"><a><i class="icon-previous"></i></a></li>';
	}

	// Check for "Next" item
	if ($item->text == JText::_('JNEXT'))
	{
		return '<li class="disabled"><a><i class="icon-next"></i></a></li>';
	}

	// Check for "End" item
	if ($item->text == JText::_('JLIB_HTML_END'))
	{
		return '<li class="disabled"><a><i class="icon-last"></i></a></li>';
	}

	// Check if the item is the active page
	if (isset($item->active) && ($item->active))
	{
		return '<li class="active hidden-phone"><a>' . $item->text . '</a></li>';
	}

	// Doesn't match any other condition, render a normal item
	return '<li class="disabled hidden-phone"><a>' . $item->text . '</a></li>';
}
language/de-DE/de-DE.com_solidres.ini000060400000075632150751740420013263 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Suchbegriff"
SR_SEARCH_FIELD_COUNTRY="Land"
SR_SEARCH_FIELD_STATE="Bundesland"
SR_SEARCH_FIELD_CITY="Stadt"
SR_SEARCH_CHECKIN_DATE="Anreisetag"
SR_SEARCH_CHECKOUT_DATE="Abreisetag"
SR_SEARCH="Verf&uuml;gbarkeit pr&uuml;fen"
SR_RESET="Zurücksetzen"
SR_REMEMBER_ME="Merken"
SR_FORGOT_YOUR_PASSWORD="Passwort vergessen?"
SR_FORGOT_YOUR_USERNAME="Benutzername vergessen?"
SR_REGISTER="Registrieren"
SR_SELECTED_RESERVATION_ASSET="Gew&auml;hlte Unterkunft"
SR_STAYING_INFO="Informationen zum Aufenthalt"
SR_NUMBER_OF_ROOM="Anzahl Unterkunft"
SR_GUEST_PER_ROOM="G&auml;ste pro Unterkunft"
SR_ROOM_RATE_INFO="Informationen Unterkunftrate"
SR_ROOM_DESCRIPTION="Unterkunftbeschreibung"
SR_ROOM_RATE_TYPE="Rate"
SR_GUEST_INFO="Gastinformation"
SR_FIRSTNAME="Vorname"
SR_LASTNAME="Name"
SR_EMAIL="Mail-Adresse"
SR_PHONENUMBER="Telefonnummer"
SR_CONTACT_INFO="Kontaktinformation"
SR_HOLD_GUARANTEE_INFO="Anzahlungsinformation"
SR_ARRIVAL_INFO="Ankunftsinformation"
SR_TRAVEL_INFO="Reiseinformationen"
SR_COMPANY="Firma (optional)"
SR_ADDRESS_1="Adresse 1"
SR_ADDRESS_2="Adresse 2 (optional)"
SR_CITY="Stadt"
SR_ZIP="Postleitzahl (optional)"
SR_STATE="Land (optional)"
SR_COUNTRY="Land"
SR_TRAVEL_FOR_BUSINESS="Gesch&auml;ftsreise"
SR_TRAVEL_FOR_BUSINESS_DESC="Ich reise gesch&auml;ftlich und m&ouml;chte auch mobil arbeiten"
SR_TRAVEL_FOR_RELAX="Erholungsurlaub"
SR_TRAVEL_FOR_RELAX_DESC="Ich m&ouml;chte entspannen, wenn ich unterwegs bin"
SR_TRAVEL_FOR_ENTERTAINMENT="Freizeiturlaub"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Ich will Spa&szlig; haben und sehen sehen was die Gegend zu bieten hat"
SR_TRAVEL_FOR_FAMILY="Familie"
SR_TRAVEL_FOR_FAMILY_DESC="Ich reise mit meiner Familie"
SR_TRAVEL_FOR_HONEYMOON="Hochzeitsreise"
SR_TRAVEL_FOR_HONEYMOON_DESC="Ich verbringe meine Flitterwochen hier"
SR_COMMENT="Kommentar"
SR_COMMENT_DESC="Bitte hinterlasse Deinen Kommentar hier"
SR_TAX="Steuern"
SR_RULE_RESTRICTION="Nur noch 4 Unterkünfte"
SR_SELECT_TARIFF="Rate w&auml;hlen"
SR_SHOW_MAP="Auf Karte zeigen"
SR_READMORE="weiterlesen ..."
SR_PRICE_FROM="Preis von"
SR_FIELD_RESERVE="Jetzt reservieren"
SR_FIELD_CONDITIONS="Bedingungen"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Suche hier nach Deiner Unterkunft"
SR_NO_ROOM_AVAILABLE="Ausgebucht!"
SR_MAX="Max people allowed"
SR_HAS_ROOM_AVAILABLE="Verf&uuml;gbar!"
SR_AVAILABILITY="Verf&uuml;gbarkeit"
SR_AVAILABLE_ROOM_TYPES="freie Unterkunft"
SR_VIEW_GALLERY="Galerie ansehen"
SR_YOUR_SEARCH_INFORMATION="Ihre Suchinformation"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Check-In:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Check-Out:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Max. Erwachsene pro Unterkunft:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Max. Kinder pro Unterkunft:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="weiter..."
SR_EXTRA_PACKAGES="Extras"
SR_ROOM_TYPE_NAME="Unterkunft"
SR_ROOM_TYPE_QUANTITY="Anzahl"
SR_ROOM_TYPE_GUEST_PER_ROOM="G&auml;ste pro Unterkunft"
SR_NUMBER_OF_NIGHT="Anzahl N&auml;chte"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Unterkunft & Preis"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Extras"
SR_RESERVATION_PROGRESS_GUEST_INFO="Gastinformation"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Zahlungsinformation"
SR_RESERVATION_CONFIRMATION="Best&auml;tigung"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Reservierung abschlie&szlig;en"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Scheck/Bargeld"
SR_PAYMENT_METHOD_PAYPAL="PayPal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Die Anzahl an Unterk&uuml;nften &uuml;berschreitet die Anzahl verf&uuml;gbarer Unterk&uuml;nfte. Bitte <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">klicke hier</a> um die Auswahl zu &auml;ndern."
SR_CHANGE="Wechsel"
SR_NOTE="Kommentar (optional)"
SR_MIDDLENAME="2. Vorname (optional)"
SR_RESERVATION_PROGRESS_DATES="Datum & Pr&auml;ferenzen"
SR_ROOM_SELECTION="Unterkunft w&auml;hlen"
SR_ROOM_TYPE_ADULT_PER_ROOM="Erwachsene pro Unterkunft"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Kinder pro Unterkunft"
SR_ROOM_TYPE_GUEST_NAME="Name des Gastes"
SR_RESERVATION_NOTICE_CONFIRMATION="Bitte, pr&uuml;fe die Buchungsdetail und klicke auf 'Reservierung abschlie&szlig;en'. Du erh&auml;lst eine Best&auml;tigungsmail. Wir setzen uns kurzfristig mit Dir in Verbindung."
SR_SEARCH_COUPON="Gutschein"
SR_MAXIMUM_OCCUPANCY="Maximale Belegung"
SR_OCCUPANCY_ADULT="Erwachsene"
SR_OCCUPANCY_CHILD="Kind(er)"
SR_NIGHTS="%d N&auml;chte"
SR_NIGHTS_1="%d Nacht"
SR_TOTAL_ROOM_COST_TAX_EXCL="Unterkunftspreis (exkl. Steuern)"
SR_TOTAL_ROOM_COST_TAX_INCL="Unterkunftspreis (inkl. Steuern)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Extra-Kosten (exkl. Steuern)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Extra-Kosten (inkl. Steuern)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Steuern f&uuml;r Extra-Kosten"
SR_PRICE_FOR_X_NIGHTS="Preis f&uuml;r %d N&auml;chte"
SR_ROOM_TYPE="Unterkunftstyp"
SR_NUMBER_OF_ROOMS="Anzahl der Unterk&uuml;nfte"
SR_TARIFF_BREAK_DOWN="Nettopreis"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Anzahl Ewachsene"
SR_SEARCH_CHILDREN_NUMBER="Anzahl Kinder"
SR_NO_TARIFF_AVAILABLE="keine Rate verf&uuml;gbar"
SR_EMAIL_RESERVATION_COMPLETE="Deine Buchung ist abgeschlossen"

; Extra
SR_RESERVATION_EXTRA="Bezeichnung"
SR_RESERVATION_EXTRA_COST="Kosten"
SR_RESERVATION_EXTRA_QUANTITY="Menge"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="Die Best&auml;tigungsmail konnte nicht gesendet werden."

SR_BOOK_NOW="Reservieren"
SR_TOTAL_PRICE="Gesamtpreis"
SR_TAX_7_NOT_INCLUDED="Steuer nicht enthalten"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Servicegeb&uuml;hren (10.70%) nicht enthalten"

SR_RESERVATION_NOTE="Gib alle Informationen und Fragen hier an. Wir versuchen die Anfrage so schnell wie m&ouml;glich zu beantworten."
SR_ASK_FOR_CHECKIN_CHECKOUT="Gib bitte den gew&uuml;nschten Check-In und Check-Out-Termin an, um die Verf&uuml;gbarkeit und Raten zu pr&uuml;fen."
SR_GRAND_TOTAL="Gesamtpreis"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Einrichtung"
SR_CUSTOMFIELD_POLICIES="Regeln"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="soziale Netzwerke"
SR_CUSTOMFIELD_GENERAL="Allgemein"
SR_CUSTOMFIELD_ACTIVITIES="Aktivit&auml;ten"
SR_CUSTOMFIELD_SERVICES="Leistungen"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parken:"
SR_CUSTOMFIELD_CHECKIN="Check-In:"
SR_CUSTOMFIELD_CHECKOUT="Check-Out:"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Stornobedingungen / Anzahlung"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Kinder und Aufbettung"
SR_CUSTOMFIELD_PETS="Haustiere"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Kreditkarten"
SR_BREAKFAST_INCLUDED="Fr&uuml;hst&uuml;ck inbegriffen"
SR_BREAKFAST_EXCLUDED="Fr&uuml;hst&uuml;ck nicht inbegriffen"
SR_FREE_CANCELLATION="Kostenlose Stornierung"
SR_NON_REFUNDABLE="Nicht erstattbar"
SR_ROOM_OCCUPANCY="Maximale Belegung"
SR_TAXES="Steuern"
SR_PREPAYMENT="Anzahlung"
SR_ROOM_FACILITIES="Ausstattung der Unterkunft"
SR_ROOM_SIZE="Gr&ouml;&szlig;e der Unterkunft"
SR_BED_SIZE="Gr&ouml;&szlig;e der Betten"

SR_COUPON_ENTER="Gutschein-Code (optional)"
SR_COUPON_ACCEPTED="Gutschein akzeptiert"
SR_COUPON_REJECTED="Gutschein ung&uuml;ltig"
SR_APPLY_COUPON="Gutschein anwenden"

SR_ROOM_AVAILABLE_FROM_TO="Es gibt noch %s freie Unterkunft/Unterk&uuml;nfte vom %s bis %s f&uuml;r %s Erwachsene und %s Kind(er)"
SR_APPLIED_COUPON="Gutschein angewendet"
SR_REMOVE="L&ouml;schen"
SR_CAN_NOT_REMOVE_COUPON="Gutschein kann nicht entfernt werden"
SR_AVAILABILITY_CALENDAR="Verf&uuml;gbarkeitskalender"
SR_AVAILABILITY_CALENDAR_VIEW="Kalender ansehen"

SR_AVAILABILITY_CALENDAR_BUSY="Belegt"
SR_FEATURED_ROOM_TYPE="Empfehlung"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="W&auml;hle mindestens eine Unterkunft aus"
SR_INVALID_CHECKIN_CHECKOUT_DATE="Ung&uuml;ltiges Anreisedatum. Es kann maximal %d Tag(e) und nicht mehr als %d Tag(e) vor Ihrer Ankunft reserviert werden. Mindestaufenthalt ist %d Tage."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Ung&uuml;ltiges Abreisedatum. Die Abreise muss mindestens einen Tag nach der Anreise sein."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Ung&uuml;ltige &Uuml;bernachtungsanzahl! Mindestens %d N&auml;chte."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Ung&uuml;ltig! Du musst mindestens %d Tag vor der Anreise buchen."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Ung&uuml;ltig! Du kannst nicht mehr als %d Tage vor der Anreise buchen!"
SR_NEXT="Weiter"
SR_BACK="Zur&uuml;ck"
SR_CUSTOMER_TITLE="Titel"
SR_CUSTOMER_TITLE_MR="Hr."
SR_CUSTOMER_TITLE_MRS="Fr."
SR_CUSTOMER_TITLE_MS="Fr."
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Tarif: pro Person pro Nacht. Bitte w&auml;hle die Unterkunft und gew&uuml;nschte Belegung f&uuml;r die exakte Rate aus."
SR_ERROR_CHILD_MAX_AGE="Altersangabe notwendig"
SR_BOOKING_CONDITIONS="Buchungsbedigungen"
SR_PRIVACY_POLICY="Privatsphäreeinstellungen"
SR_ROOM_COST="Unterkunftspreis:"
SR_ENHANCE_YOUR_STAY="Aufenthalt aufwerten"
SR_I_AGREE_WITH="Einverstanden mit"
SR_GUEST_INFORMATION="Gastinformation"
SR_PAYMENT_INFO="Zahlungsinformation"
SR_GUEST_INFO_STEP_NOTICE="Gastinformation eingeben"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Bitte w&auml;hle die Unterkunft aus und klicke auf 'Weiter'"
SR_AGE_OF_CHILD_AT_CHECKOUT="Alter des Kindes bei Check-Out"
SR_GUEST_NAME="Gastname"
SR_ROOM="Unterkunft"
SR_CHILD="Kind"
SR_ADULT="Erwachsener"
SR_ROOMTYPE_QUANTITY="Anzahl"
SR_AND="und"
SR_STEP_ROOM_AND_RATE="Unterkunft & Preis"
SR_STEP_GUEST_INFO_AND_PAYMENT="Info & Zahlung"
SR_STEP_CONFIRMATION="Best&auml;tigung"
SR_PAYMENT_METHOD_PAYLATER="Sp&auml;ter bezahlen"
SR_PAYMENT_METHOD_BANKWIRE="&Uuml;berweisung"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="#Bitte bedenke, dass eine &Uuml;berweisung ein paar Tage braucht damit Sie auf unserem Konto ist! Bitte gib bei der &Uuml;berweisung die Buchungsnummer an, damit wir die Zahlung leichter zuordnen k&ouml;nnen."
SR_PROCESSING="In Bearbeitung..."

; Since 0.6.0
SR_STAR="Stern"
SR_STARS="Sterne"
JGLOBAL_FIELDSET_PUBLISHING="Veröffentlichen"
JTOOLBAR_APPLY="Speichern"
JTOOLBAR_ARCHIVE="Archiv"
JTOOLBAR_ASSIGN="Zuweisen"
JTOOLBAR_BACK="Zur&uuml;ck"
JTOOLBAR_BATCH="Stapel"
JTOOLBAR_CANCEL="Stornieren"
JTOOLBAR_CHECKIN="Check-In"
JTOOLBAR_CLOSE="Schlie&szlig;en"
JTOOLBAR_DEFAULT="Standard"
JTOOLBAR_DELETE="L&ouml;schen"
JTOOLBAR_DISABLE="Deaktivieren"
JTOOLBAR_DUPLICATE="Kopieren"
JTOOLBAR_EDIT="Bearbeiten"
JTOOLBAR_EDIT_CSS="CSS bearbeiten"
JTOOLBAR_EDIT_HTML="HTML bearbeiten"
JTOOLBAR_EMPTY_TRASH="Papierkorb leeren"
JTOOLBAR_ENABLE="Aktivieren"
JTOOLBAR_EXPORT="Exportieren"
JTOOLBAR_HELP="Hilfe"
JTOOLBAR_INSTALL="Installieren"
JTOOLBAR_NEW="Neu"
JTOOLBAR_OPTIONS="Optionen"
JTOOLBAR_PUBLISH="Ver&ouml;ffentlichen"
JTOOLBAR_PURGE_CACHE="Cache l&ouml;schen"
JTOOLBAR_REBUILD="Wiederherstellen"
JTOOLBAR_REFRESH_CACHE="Cache neu laden"
JTOOLBAR_REMOVE="L&ouml;schen"
JTOOLBAR_SAVE="Speichern &amp; schlie&szlig;en"
JTOOLBAR_SAVE_AND_NEW="Speichern &amp; neu"
JTOOLBAR_SAVE_AS_COPY="Kopie speichern"
JTOOLBAR_UNARCHIVE="Archiv wiederherstellen"
JTOOLBAR_UNINSTALL="Deinstallieren"
JTOOLBAR_UNPUBLISH="Ver&ouml;ffentlichung r&uuml;ckg&auml;ngig machen"
JTOOLBAR_UPLOAD="Hochladen"
JTOOLBAR_TRASH="L&ouml;schen"
JTOOLBAR_UNTRASH="Wiederherstellen"
JTOOLBAR_REBUILD_SUCCESS="Erfolgreich wiederhergestellt"
JTOOLBAR_VERSIONS="Versionen"
SR_SEARCH_LOCATION="Ort"
SR_DASHBOARD="Dashboard"
SR_PHONE="Telefon"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Anzahlungsbetrag"
SR_TOTAL_ROOM_TAX="Steuern"

; Since 0.7.0
SR_STANDARD_TARIFF="Standardtarif"
SR_SEARCH_RESET="Zurücksetzen"
SR_SELECT_A_TARIFF="Tarif w&auml;hlen"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="F&uuml;r den Zeitraum von %s bis %s ist keine Unterkunft verf&uuml;gbar. <a href="_QQ_"%s"_QQ_"> Klicke hier um eine neue Suche zu starten.</a>"
SR_SELECT_A_TARIFF_FIRST="Bitte Rate w&auml;hlen."
SR_SMOKING="Raucheroptionen"
SR_SMOKING_ROOM="Raucherunterkunft"
SR_NON_SMOKING_ROOM="Nichtraucherunterkunft"
SR_SELECT_ROOM_QUANTITY="%s Unterk&uuml;nfte"
SR_SELECT_ROOM_QUANTITY_1="1 Unterkunft"
SR_SELECT_ADULT_QUANTITY="%s Erwachsene"
SR_SELECT_ADULT_QUANTITY_1="1 Erwachsener"
SR_SELECT_CHILD_QUANTITY="%s Kinder"
SR_SELECT_CHILD_QUANTITY_1="1 Kind"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s N&auml;chte"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ pro Nacht"
SR_TARIFF_SUFFIX_PER_ROOM="/ Unterkunft"
SR_CHILD_AGE_SELECTION="%s Jahre"
SR_CHILD_AGE_SELECTION_1="%s Jahr"
SR_CHILD_AGE_SELECTION_JS="Jahre"
SR_CHILD_AGE_SELECTION_1_JS="Jahr"
SR_EMAIL_CONFIRM_RESERVATION="Best&auml;tigung der Buchung"
SR_EMAIL_REF_ID="Reference ID: %s"
SR_EMAIL_GREETING_NAME="Liebe(r) %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Danke f&uuml;r Deine Buchung in %s. F&uuml;r Fragen stehen wir gerne zur Verf&uuml;gung.</p><p>Wir best&auml;tigen die Buchung wie folgt:</p>"
SR_EMAIL_CHECKIN="Check-In: "
SR_EMAIL_CHECKOUT="Check-Out: "
SR_EMAIL_PAYMENT_METHOD="Zahlungart: "
SR_EMAIL_EMAIL="Email: "
SR_EMAIL_NUM_NIGHT="Anzahl der N&auml;chte: "
SR_EMAIL_SUB_TOTAL="Preis der Unterkunft (exkl. Steuern): "
SR_EMAIL_TAX="Steuer: "
SR_EMAIL_GRAND_TOTAL="Gesamtpreis: "
SR_EMAIL_DEPOSIT_AMOUNT="Anzahlungsbetrag: "
SR_EMAIL_EXTRAS_ITEMS="Extras: "
SR_EMAIL_CONNECT_WITH_US="Kontaktiere uns: "
SR_EMAIL_CONTACT_INFO="Kontakt: "
SR_EMAIL_ADDRESS="Adresse: "
SR_EMAIL_PHONE="Telefon: "
SR_EMAIL_OTHER_INFO="Andere Infos: "
SR_EMAIL_EXTRA_QUANTITY="Anzahl: "
SR_EMAIL_EXTRA_PRICE="Preis: "
SR_EMAIL_NOTE="Kommentar: "
SR_EMAIL_BANKWIRE_INFO="&Uuml;berweisung: "
SR_EMAIL_NOTIFICATION_RESERVATION="Buchungsinfo: "
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>Es ist eine neue Reservierung eingegangen. Bitte Details pr&uuml;fen oder <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">hier klicken</a> zum sofortigen Anzeigen:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Hallo,"
SR_EMAIL_EXTRA_TAX_EXCL="Extrakosten (exkl. Steuern): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Steuer f&uuml;r Extras: "
SR_VAT_NUMBER="Steuernummer (optional)"
SR_PASSWORD="Passwort"
SR_USERNAME="Benutzername"
SR_WE_HAVE_X_ROOM_LEFT="Wir haben noch %s Unterk&uuml;nfte"
SR_WE_HAVE_X_ROOM_LEFT_1="Wir haben noch %s Unterkunft"
SR_ONLY_1_LEFT="Letzte Chance: nur noch 1 Unterkunft!"
SR_ONLY_2_LEFT="Nur noch 2 Unterk&uuml;nfte"
SR_ONLY_3_LEFT="Nur noch 3 Unterk&uuml;nfte"
SR_ONLY_4_LEFT="Nur noch 4 Unterk&uuml;nfte"
SR_ONLY_5_LEFT="Nur noch 5 Unterk&uuml;nfte"
SR_ONLY_6_LEFT="Nur noch 6 Unterk&uuml;nfte"
SR_ONLY_7_LEFT="Nur noch 7 Unterk&uuml;nfte"
SR_ONLY_8_LEFT="Nur noch 8 Unterk&uuml;nfte"
SR_ONLY_9_LEFT="Nur noch 9 Unterk&uuml;nfte"
SR_ONLY_10_LEFT="Noch 10 Unterk&uuml;nfte"
SR_ONLY_11_LEFT="Noch 11 Unterk&uuml;nfte"
SR_ONLY_12_LEFT="Noch 12 Unterk&uuml;nfte"
SR_ONLY_13_LEFT="Noch 13 Unterk&uuml;nfte"
SR_ONLY_14_LEFT="Noch 14 Unterk&uuml;nfte"
SR_ONLY_15_LEFT="Noch 15 Unterk&uuml;nfte"
SR_ONLY_16_LEFT="Noch 16 Unterk&uuml;nfte"
SR_ONLY_17_LEFT="Noch 17 Unterk&uuml;nfte"
SR_ONLY_18_LEFT="Noch 18 Unterk&uuml;nfte"
SR_ONLY_19_LEFT="Noch 19 Unterk&uuml;nfte"
SR_ONLY_20_LEFT="Noch 20 Unterk&uuml;nfte"
SR_SHOW_MORE_INFO="Mehr Informationen"
SR_HIDE_MORE_INFO="Informationen ausblenden"
SR_AVAILABILITY_CALENDAR_CLOSE="Kalender ausblenden"
SR_STARTING_FROM="Ab"
SR_SELECT="w&auml;hlen"
SU="So"
MO="Mo"
TU="Di"
WE="Mi"
TH="Do"
FR="Fr"
SA="Sa"
SR_USERNAME_EXISTS="Dieser Benutzername existiert bereits. Bitte w&auml;hle einen anderen."
JFIELD_METADATA_ROBOTS_DESC="Roboter Instruktionen"
JFIELD_METADATA_ROBOTS_LABEL="Roboter"
JFIELD_XREFERENCE_DESC="Optionale Angabe, um den Datensatz mit einem externen System zu verbinden."
JFIELD_XREFERENCE_LABEL="Externe Referenz"
JCLEAR="L&ouml;schen"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Registriere Dich bei uns um noch einfacher und schneller zu buchen! Bitte gib deinen gewünschten Benutzernamen und ein Passwort ein."
SR_PRICE_IS_FOR_X_NIGHT="Preis f&uuml;r %s N&auml;chte"
SR_PRICE_IS_FOR_X_NIGHT_1="Preis f&uuml;r %s Nacht"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="Es wurde keine passenende Unterkunft gefunden. Bitte passe die Buchungsdaten oder Unterkunftoptionen an!"
SR_ROOM_AVAILABLE_FROM_TO_MSG1="Es wurden %s Unterkunft gefunden, die Deiner Suche vom %s bis %s f&uuml;r %s Erwachsene(n) und %s Kind(er) entsprechen."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="Wir haben weniger als die angefragten Unterk&uuml;nfte verf&uuml;gbar. Aber es ist/sind %s Unterkunft/Unterk&uuml;nfte vom %s bis %s f&uuml;r %s Erwachsene(n) und %s Kind(er) verf&uuml;gbar. W&auml;hle bitte eine andere Anzahl an Unterk&uuml;nften."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Leider ist f&uuml;r Deine Anfrage vom %s bis %s f&uuml;r %s Erwachsene(n) und %s Kind(er) keine Unterkunft verf&uuml;gbar."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="Es wurde(n) %s Unterkunft/Unterk&uuml;nfte gefunden, die Deiner Suche vom %s bis %s entsprechen."
SR_MOBILEPHONE="Mobiltelefon"
SR_RESERVATION_SAVE_ERROR="Deine Reservierung konnte nicht gespeichert werden. Bitte versuche es noch einmal!"
SR_EMAIL_PAYMENT_METHOD_INFO="Zahlungsinformation"
SR_RESERVATION_COMPLETE="<h3>Danke %s! Deine Reservierung wurde erfolgreich mit der Reservierungsnummer %s durchgef&uuml;hrt.</h3><ul> <li>Wir haben eine Best&auml;tigungsemail an %s gesendet</li><li style=\"display:none\">Wir haben auch %s &uuml;ber Deinen Aufenthalt informiert.</li><li><a href="_QQ_"%s"_QQ_">Hier klicken</a>, um auf die Hauptseite zur&uuml;ckzukehren</li></ul>"
SR_EXTRA_PRICE_ADULT="F&uuml;r Erwachsene"
SR_EXTRA_PRICE_CHILD="F&uuml;r Kinder"
SR_EXTRA_MORE_DETAILS="Details"
SR_EXTRA_PRICE="Preis"
SR_TOTAL_DISCOUNT="Rabatt gesamt"
SR_EMAIL_TOTAL_DISCOUNT="Rabatt gesamt: "
SR_ROOM_X_COST="Unterkunftspreis"
SR_ROOM_X_DISCOUNTED_AMOUNT="reduzierter Unterkunftspreis"
SR_ROOM_X_DISCOUNTED_COST="Unterkunftspreis nach Abzug des Rabatts"
SR_VIEW_TARIFF_BREAKDOWN="Details"
SR_SHOW_TARIFFS="Preise"
SR_HIDE_TARIFFS="Preise"
SR_CONFIRMATION_ROOM_DETAILS="Details"
SR_CONFIRMATION_GUEST_NAME="Gastname"
SR_CONFIRMATION_ADULT_NUMBER="Anzahl Erwachsene"
SR_CONFIRMATION_CHILD_NUMBER="Anzahl Kinder"
SR_CONFIRMATION_FULLNAME="Vollst&auml;ndiger Name: "
SR_EXTRA="Extra"
SR_EXTRA_PER_BOOKING="pro Buchung"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="pro Buchung"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="pro Unterkunft"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="pro Buchung pro Nacht"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="pro Buchung pro Person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="pro Unterkunft pro Nacht"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="pro Unterkunft pro Person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="pro Person pro Nacht"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="pro Person pro Unterkunft pro Nacht"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Preis pro Erwachsener"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Preis eingeben f&uuml;r das/die Extra/Service pro Erwachsenem. Die W&auml;hrung wird hier angezeigt."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Preis pro Kind"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Preis eingeben f&uuml;r das/die Extra/Service pro Kind. Die W&auml;hrung wird hier angezeigt."

; Since 0.9.0
SR_DAYS="%d Tage"
SR_DAYS_1="%d Tag"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s Tage"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 Tag"
SR_LENGTH_OF_STAY="Aufenthaltsdauer"
SR_EMAIL_LENGTH_OF_STAY="Aufenthaltsdauer: "
SR_PRICE_IS_FOR_X_DAY="Preis ist f&uuml;r %s Tage"
SR_PRICE_IS_FOR_X_DAY_1="Preis ist f&uuml;r %s Tag"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Unterkunft Einzel-Zuschlag"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Unterkunftspreis inkl. Zuschlag"
JLIB_APPLICATION_SAVE_SUCCESS="Erfolgreich gespeichert"
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Erfolgreich &uuml;bertragen"
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="Neue Reservierung %s von %s %s"
SR_RESERVATION_CODE="Code"
SR_RESERVATION_INVOICE="Rechnung"
SR_RESERVATION_CHECKIN="Check-In"
SR_RESERVATION_CHECKOUT="Check-Out"
SR_RESERVATION_ASSET="Unterkunft"
SR_RESERVATION_TOTAL_PAID="Bezahlt"
SR_DESCRIPTION="Beschreibung"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Buchungsnummer"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Buchungsdetails"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s Unterk&uuml;nfte"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s Unterkunft"
SR_CONFIRMATION_CHECKIN="Check-In"
SR_CONFIRMATION_CHECKOUT="Check-Out"
SR_CONFIRMATION_TOTAL_PRICE="Gesamtpreis"
SR_CONFIRMATION_ASSET_NAME="Name"
SR_CONFIRMATION_ASSET_ADDRESS="Adresse"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Telefon"
SR_ASSET_INFO="Unterkunftsinformation"
SR_BOOKING_INFO="Buchungsdetails"
SR_BOOKING_CONFIRMATION_ADULTS="%s Erwachsene"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s Erwachsener"
SR_BOOKING_CONFIRMATION_CHILDREN="%s Kinder"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s Kind"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Vollst&auml;ndiger Name"
SR_BOOKING_CONFIRMATION_SMOKING="Raucher"
SR_BOOKING_CONFIRMATION_ROOM_COST="Unterkunftspreis"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Unterkunftsdetails"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Der Buchungszeitraum liegt (teilweise) in der Vergangenheit."

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Danke %s! Deine Reservierung mit der Nummer %s ist abgeschlossen. Die Zahlung steht noch aus.</h3><ul> <li>Wir haben eine Best&auml;tigungsmail an %s gesendet.</li><li style=\"display:none\">Wir haben auch %s &uuml;ber Deinen Aufenthalt informiert.</li><li><a href="_QQ_"%s"_QQ_">Klicke hier</a>, um zur Startseite zur&uuml;ckzukehren.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Ung&uuml;ltig! Die Mindestaufenthaltsdauer ist %d N&auml;chte."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Ung&uuml;ltig! Die Mindestaufenthaltsdauer ist %d Tage."
SR_USER_INFO_USERNAME_PLURAL="Du bist mit dem Benutzernamen %s angemeldet."

; Since 0.9.4
SR_COUPON_CHECK="Check"
SR_RESERVATION_ORIGIN_DIRECT="Direkt"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="Diese Unterkunft ist f&uuml;r mindestens %d und maximal %d Erwachsene ausgelegt."
SR_RESERVE="Reservieren"
SR_SEARCH_ROOMS="Unterk&uuml;nfte"
SR_SEARCH_ROOM="Unterkunft"
SR_SEARCH_ROOM_ADULTS="Erwachsene"
SR_SEARCH_ROOM_CHILDREN="Kinder"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Die Reservierung wurde storniert."
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Die Reservierung %s vom %s %s wurde storniert."
SR_EMAIL_GREETING_TEXT_CANCELLED="Deine Reservierung %s am %s wurde storniert."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Reservierung %s wurde storniert. Bitte pr&uuml;fe die folgenden Details oder <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">klicke hier</a> um sie anzusehen:</p>"
SR_EMAIL_COUPON_CODE="Gutschein-Code: "

; Since 1.8.0
SR_FULLNAME="Vollst&auml;ndiger Name"
SR_MESSAGE="Nachricht"
SR_SEND_MESSAGE="Sende Nachricht"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Buchungsanfrage vom %s f&uuml;r %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Danke, Deine Buchungsanfrage wurde erfolgreich versendet. Wir werden uns so schnell wie m&ouml;glich mit Dir in Verbindung setzen."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Pro Reservierung und Aufenthalt"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Pro Unterkunft und Aufenthalt"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Pro Unterkunft, Person und Aufenthalt"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Prozentsatz des &Uuml;bernachtungspreises"
SR_EXTRA_PRICE_DAILY_RATE="%s betr&auml;gt %d Prozent der Tagesrate pro Aufenthalt"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Deine Sitzung l&auml;uft bald ab!"
SR_WARNING_SESSION_EXPIRED="Deine Sitzung ist abgelaufen, <a href="_QQ_"#"_QQ_">klicke hier</a> um eine neue Sitzung zu starten."
SR_WEBSITE="Webseite"
SR_YOUR_STAY="Dein Aufenthalt"
SR_AVAILABLE_ROOMS="Verf&uuml;gbare Unterk&uuml;nfte"
SR_MAX_GUESTS="Max. Anzahl G&auml;ste"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Jetzt buchen!"
SR_TARIFF_PACKAGE_PER_ROOM="Paket pro Unterkunft"
SR_TARIFF_PACKAGE_PER_PERSON="Paket pro Person"
SR_TARIFF_PER_ROOM_PER_NIGHT="Rate pro Unterkunft und Aufenthalt"
SR_TARIFF_PER_PERSON_PER_NIGHT="Rate pro Person und Aufenthalt"
SR_ROOM_X_EXTRA_AMOUNT="Extrakosten f&uuml;r die Unterkunft"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Deine Reservierung wurde erfolgreich angepasst."
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Mails versenden?"
SR_FIELD_COUNTRY_SELECT=" - Land w&auml;hlen - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Onlinezahlung abschließen?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Deine Reservierung wurde erfolgreich hinzugef&uuml;gt"
SR_SELECT_BED_QUANTITY="%s Betten"
SR_SELECT_BED_QUANTITY_1="1 Bett"
SR_BED="Bett"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Vielen Dank %s! Deine Reservierungsanfrage %s wurde an uns versendet. Wir werden uns schnellst möglich wieder bei dir melden, um deine Reservierung zu bestätigen.</h3><ul><li><a href="_QQ_"%s"_QQ_">Klicke hier</a>, um zu unserer Startseite zurückzukehren.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Deine Reservierung mit der Nummer %s wurde storniert.</h3><ul> <li><a href="/_QQ_"%s"_QQ_">Klicke hier</a>, um zur Startseite zurückzukehren.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Kurtaxe"
SR_EMAIL_TOURIST_TAX="Kurtaxe: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s Zuschlag"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s Rabatt"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s Zuschlag: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s Rabatt: "
SR_CONFIRMATION_GUEST_NUMBER="Gast Nummer"
SR_SELECT_GUEST_QUANTITY="%s Gäste"
SR_SELECT_GUEST_QUANTITY_1="1 Gast"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Zimmer- und Tarifinformationen"
SR_CONFIRMATION_PAYMENT_METHOD="Zahlungsmethode: "
SR_CONFIRMATION_MOBILE="Mobiltelefon: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Unbezahlt"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Bezahlt"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Storniert"
SR_RESERVATION_PAYMENT_STATUS_PENDING="Ausstehend"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ Bett "
SR_WE_HAVE_X_BED_LEFT="Wir haben noch %s Betten"
SR_WE_HAVE_X_BED_LEFT_1="Wir haben noch %s Betten!"
SR_ONLY_1_LEFT_BED="Letzte Chance! Nur noch 1 Bett übrig"
SR_ONLY_2_LEFT_BED="Nur 2 Betten übrig"
SR_ONLY_3_LEFT_BED="Nur 3 Betten übrig"
SR_ONLY_4_LEFT_BED="Nur 4 Betten übrig"
SR_ONLY_5_LEFT_BED="Nur 5 Betten übrig"
SR_ONLY_6_LEFT_BED="Nur 6 Betten übrig"
SR_ONLY_7_LEFT_BED="Nur 7 Betten übrig"
SR_ONLY_8_LEFT_BED="Nur 8 Betten übrig"
SR_ONLY_9_LEFT_BED="Nur 9 Betten übrig"
SR_ONLY_10_LEFT_BED="Nur 10 Betten übrig"
SR_ONLY_11_LEFT_BED="Nur 11 Betten übrig"
SR_ONLY_12_LEFT_BED="Nur 12 Betten übrig"
SR_ONLY_13_LEFT_BED="Nur 13 Betten übrig"
SR_ONLY_14_LEFT_BED="Nur 14 Betten übrig"
SR_ONLY_15_LEFT_BED="Nur 15 Betten übrig"
SR_ONLY_16_LEFT_BED="Nur 16 Betten übrig"
SR_ONLY_17_LEFT_BED="Nur 17 Betten übrig"
SR_ONLY_18_LEFT_BED="Nur 18 Betten übrig"
SR_ONLY_19_LEFT_BED="Nur 19 Betten übrig"
SR_ONLY_20_LEFT_BED="Nur 20 Betten übrig"
SR_DUE_AMOUNT="Gesamter offener Betrag"
SR_EMAIL_DUE_AMOUNT="Offener Betrag: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Deine Reservierung wurde storniert."
SR_CHECKIN_PLACEHOLDER="Dein Check-In Datum"
SR_CHECKOUT_PLACEHOLDER="Dein Check-Out Datum"
SR_CHOOSE_ANOTHER_CHECKIN="Bitte wähle ein anderes Check-In Datum aus."
SR_WARNING_SESSION_RENEW="Erneuern"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Gib deine E-Mail Adresse ein"
SR_ENTER_YOUR_RESERVATION_CODE="Gib deinen Reservierungscode ein"
SR_FIND_RESERVATION="Reservierung anzeigen"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reservierungscode %s wurde gefunden."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="Wir konnten keine Reservierungen mit den angegebenen Informationen finden, bitte überprüfe die Informationen und versuche es erneut."
SR_RESERVATION_STATUS_FORMAT="Reservierungsstatus: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Zeige das Nachverfolgungsformular der Unterkunft"
SR_TRACKING_VIEW_DEFAULT_DESC="Erlaube Gästen, ihre Reservierung mithilfe ihres Reservierungscodes und ihrer E-Mail Adresse zu überprüfen"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ 1 Person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s Personen "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Verboten"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Zahle für den Reservierungscode %s bei %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Insgesamt gezahlt: "
SR_CONFIRM_EMAIL="E-Mail Adresse bestätigen"
SR_EMAIL_NOT_MATCH_MESSAGE="Die E-Mail Adressen, die du eingegeben hast, stimmen nicht miteinander überein. Bitte gib deine E-Mail Adresse in dem E-Mail Adress Feld ein und bestätige deine Eingabe, indem du sie in dem E-Mail Adresse bestätigen Feld erneut eingibst."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Danke für deine Reservierung. Gerne möchten wir dich jedoch darauf hinweisen, dass deine Zahlung noch nicht vollständig und deine Reservierung somit noch nicht bestätigt ist. Bitte versuche es erneut oder kontaktiere uns für weitere Informationen.</h3><ul><li><a href="_QQ_"%s"_QQ_">Klicke hier</a> um zurück auf die Startseite zu gelangen.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="Diese Datei ist zu groß, um sie hochzuladen."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="Du musst dieses Dateifeld hochladen: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Vielen Dank %s! Deine Reservierung mit der Nummer %s wurde erfolgreich bearbeitet.</h3><ul> <li>Wir haben eine Bestätigungsmail an %s gesendet.</li><li>Außerdem haben wir %s über deinen Aufenthalt informiert.</li><li><a href="_QQ_"%s"_QQ_">Klicke hier</a>, um zu deinem Kundendashboard zurückzukehren.</li></ul>"
SR_AMENDING_HEADING="Reservierung bearbeiten"
SR_LAST_CHANCE_LAST_ROOM="Letzte Chance! Wir haben nur noch 1 Zimmer übrig!"
SR_LAST_CHANCE_LAST_BED="Letzte Chance! Wir haben nur noch 1 Bett übrig!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Dein gewählter Zimmertyp <strong>%s</strong> wird oben angezeigt <i class='fa fa-arrow-up'></i>, wir haben außerdem noch %s andere Zimmertypen, welche dir ebenfalls gefallen könnten. Bitte <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">klicke hier</a>, um diese anzuzeigen <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Dein gewählter Zimmertyp <strong>%s</strong> wird oben angezeigt <i class='fa fa-arrow-up'></i>, wir haben außerdem noch einen anderen Zimmertypen, welcher dir ebenfalls gefallen könnte. Bitte <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">klicke hier</a>, um diesen anzuzeigen <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Dein gewählter Zimmertyp"
SR_ADD_TO_WISH_LIST="Zur Wunschliste hinzufügen"
SR_ADD_TO_WISH_LIST_SUCCESS="Erfolgreich"
SR_WISH_LIST_WAS_ADDED="wurde hinzugefügt."
SR_GO_TO_WISH_LIST="Gehe zur Wunschliste"
SR_WISH_LIST_EMPTY="Deine Wunschliste ist leer!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="Meine Wunschliste"
SR_SHARE_ON_FACEBOOK="Auf Facebook teilen"
SR_SHARE_ON_TWITTER="Auf Twitter teilen"
SR_SHARE_RESERVATION_ASSET_PLURAL="%s teilen"
SR_RESERVE_NOW="Jetzt reservieren"
SR_ADD_TO_WISHLIST="Zu meiner Wunschliste hinzufügen"
SR_SHARE_NOW="Teile die mit meinen Freunden über soziale Netzwerke"
SR_PIN_THIS="Dies anpinnen"
SR_PRIVACY_CONSENT_NOTE="Indem du dich bei dieser Webseite registrierst, stimmst du automatisch den Privatsphäreeinstellungen und der Speicherung deiner Daten zu."
SR_ERR_PRIVACY_CONSENT_MSG="Um dich bei dieser Webseite zu registrieren und eine Reservierung vorzunehmen, musst du unseren Privatsphäreeinstellungen zustimmen."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Bitte nur Buchstaben und Leerstellen eintragen."
SR_WARN_INVALID_EXPIRATION_MSG="Das Jahr, in dem deine Karte abläuft, ist ungültig oder liegt in der Vergangenheit."
SR_PAYMENT_CARD_HOLDER="Vollständiger Name des Karteninhabers"
SR_PAYMENT_CARD_NUMBER="Kreditkartennummer"
SR_PAYMENT_CARD_CVV="CVV Code der Karte"
SR_PAYMENT_EXPIRATION="Ablaufdatum"
SR_PAYMENT_WE_ACCEPT_FORMAT="Wir akzeptieren: %s"
language/pl-PL/pl-PL.com_solidres.ini000060400000072414150751740420013372 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Kryteria wyszukiwania"
SR_SEARCH_FIELD_COUNTRY="Kraj"
SR_SEARCH_FIELD_STATE="Województwo / Stan"
SR_SEARCH_FIELD_CITY="Miasto"
SR_SEARCH_CHECKIN_DATE="Data przyjazdu"
SR_SEARCH_CHECKOUT_DATE="Data wyjazdu"
SR_SEARCH="Szukaj"
SR_RESET="Wyczyść"
SR_REMEMBER_ME="Zapamiętaj mnie"
SR_FORGOT_YOUR_PASSWORD="Nie pamiętasz hasła?"
SR_FORGOT_YOUR_USERNAME="Nie pamiętasz nazwy?"
SR_REGISTER="Rejestruj"
SR_SELECTED_RESERVATION_ASSET="Wybierz hotel"
SR_STAYING_INFO="Informacje na temat pobytu"
SR_NUMBER_OF_ROOM="Pokoje"
SR_GUEST_PER_ROOM="Ilość gości w pokoju"
SR_ROOM_RATE_INFO="Stawki za pokój"
SR_ROOM_DESCRIPTION="Opis pokoju"
SR_ROOM_RATE_TYPE="Rodzaje pokoi"
SR_GUEST_INFO="Informacje na temat gościa"
SR_FIRSTNAME="Imię"
SR_LASTNAME="Nazwisko"
SR_EMAIL="E-mail"
SR_PHONENUMBER="Telefon stacjonarny"
SR_CONTACT_INFO="Informacje kontaktowe"
SR_HOLD_GUARANTEE_INFO="Informacje na temat gwarancji"
SR_ARRIVAL_INFO="Informacje na temat przyjazdu"
SR_TRAVEL_INFO="Informacje na temat podróży"
SR_COMPANY="Firma (opcjonalnie)"
SR_ADDRESS_1="Adres"
SR_ADDRESS_2="Adres 2 (opcjonalnie)"
SR_CITY="Miasto"
SR_ZIP="Kod pocztowy (opcjonalnie)"
SR_STATE="Województwo / Stan (opcjonalnie)"
SR_COUNTRY="Kraj"
SR_TRAVEL_FOR_BUSINESS="Wydajność / Biznes"
SR_TRAVEL_FOR_BUSINESS_DESC="Lubię być w stanie wykonywać pracę i być produktywnym, gdy jestem w trasie."
SR_TRAVEL_FOR_RELAX="Relaks / Spa"
SR_TRAVEL_FOR_RELAX_DESC="Lubię się zrelaksować i odmłodzić, gdy jestem z dala od domu."
SR_TRAVEL_FOR_ENTERTAINMENT="Rozrywka / Atrakcje"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Chcę się dobrze bawić i zobaczyć co najlepsze ma do zaoferowania cel mojej podróży."
SR_TRAVEL_FOR_FAMILY="Rodzina"
SR_TRAVEL_FOR_FAMILY_DESC="Uczestniczę w spotkaniach rodzinnych lub przebywam z rodzina na wakacjach."
SR_TRAVEL_FOR_HONEYMOON="Miesiąc miodowy"
SR_TRAVEL_FOR_HONEYMOON_DESC="Rozkoszuję się moim miesiącem miodowym."
SR_COMMENT="Komentarz"
SR_COMMENT_DESC="Proszę wpisz swój komentarz."
SR_TAX="Podatki"
SR_RULE_RESTRICTION="Zostały tylko 4 pokoje"
SR_SELECT_TARIFF="Wybierz"
SR_SHOW_MAP="Pokaż mapę"
SR_READMORE="Czytaj więcej"
SR_PRICE_FROM="Cena od"
SR_FIELD_RESERVE="Rezerwuj teraz"
SR_FIELD_CONDITIONS="Warunki"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Szukaj hotelu za pomocą formularza powyżej."
SR_NO_ROOM_AVAILABLE="Wyprzedane!"
SR_MAX="Dozwolone maksimum osób"
SR_HAS_ROOM_AVAILABLE="Dostępny"
SR_AVAILABILITY="Dostępność"
SR_AVAILABLE_ROOM_TYPES="Dostępne rodzaje pokoi"
SR_VIEW_GALLERY="Zobacz galerię"
SR_YOUR_SEARCH_INFORMATION="Informacje wyszukiwania"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Data przyjazdu:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Data wyjazdu:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Ilość dorosłych na pokój:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Ilość dzieci na pokój:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Kontynuuj"
SR_EXTRA_PACKAGES="Dodatkowe pakiety"
SR_ROOM_TYPE_NAME="Rodzaj pokoju"
SR_ROOM_TYPE_QUANTITY="Ilość"
SR_ROOM_TYPE_GUEST_PER_ROOM="Ilość gości w pokoju"
SR_NUMBER_OF_NIGHT="Liczba nocy"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Pokój i Cena"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Dodatkowe pakiety"
SR_RESERVATION_PROGRESS_GUEST_INFO="Informacje na temat gościa"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Informacje na temat płatności"
SR_RESERVATION_CONFIRMATION="Potwierdzenie"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Potwierdzam"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Czek / Gotówka"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Wybrany ilość pokój przekracza liczbę dostępnych, <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">kliknij tutaj</a> aby dokonać ponownego wyboru."
SR_CHANGE="Zmień"
SR_NOTE="Uwagi (opcjonalnie)"
SR_MIDDLENAME="Drugie imię (opcjonalnie)"
SR_RESERVATION_PROGRESS_DATES="Daty i Preferencje"
SR_ROOM_SELECTION="Wybór pokoju"
SR_ROOM_TYPE_ADULT_PER_ROOM="Dorosłych na pokój"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Dzieci na pokój"
SR_ROOM_TYPE_GUEST_NAME="Imię gościa"
SR_RESERVATION_NOTICE_CONFIRMATION="Proszę przejrzeć szczegóły rezerwacji i kliknąć przycisk Potwierdzam. E-mail z potwierdzeniem zostanie wysłany na podany przez Ciebie adres."
SR_SEARCH_COUPON="Kupon"
SR_MAXIMUM_OCCUPANCY="Maksymalne obłożenie"
SR_OCCUPANCY_ADULT="Dorośli"
SR_OCCUPANCY_CHILD="Dzieci"
SR_NIGHTS="Ilość nocy: %d"
SR_NIGHTS_1="%d noc"
SR_TOTAL_ROOM_COST_TAX_EXCL="Cena pokoi netto"
SR_TOTAL_ROOM_COST_TAX_INCL="Cena pokoi brutto"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Cena dodatków netto"
SR_TOTAL_EXTRA_COST_TAX_INCL="Cena dodatków brutto"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Podatek"
SR_PRICE_FOR_X_NIGHTS="Cena za %d noc/e"
SR_ROOM_TYPE="Rodzaj pokoju"
SR_NUMBER_OF_ROOMS="Ilość pokoi"
SR_TARIFF_BREAK_DOWN="Taryfa anulowana"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Liczba dorosłych"
SR_SEARCH_CHILDREN_NUMBER="Liczba dzieci"
SR_NO_TARIFF_AVAILABLE="Brak dostępnej taryfy"
SR_EMAIL_RESERVATION_COMPLETE="Potwierdzenie przyjęcia rezerwacji"

; Extra
SR_RESERVATION_EXTRA="Nazwa"
SR_RESERVATION_EXTRA_COST="Koszt"
SR_RESERVATION_EXTRA_QUANTITY="Ilość"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="E-mail zawierający podsumowanie rezerwacji nie może zostać wysłany."

SR_BOOK_NOW="Rezerwuj teraz"
SR_TOTAL_PRICE="Łączna cena"
SR_TAX_7_NOT_INCLUDED="Podatek (7%) nie wliczony"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Koszt obsługi (10.70%) nie wliczony"

SR_RESERVATION_NOTE="Wpisz informacje, które chcesz dołączyć do rezerwacji."
SR_ASK_FOR_CHECKIN_CHECKOUT="Aby sprawdzić cenę i dostępność, należy wpisać datę zameldowania i wymeldowania w poniższym formularzu"
SR_GRAND_TOTAL="Suma całkowita"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Wyposażenie"
SR_CUSTOMFIELD_POLICIES="Reguły"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Serwisy społecznościowe"
SR_CUSTOMFIELD_GENERAL="Ogólnie"
SR_CUSTOMFIELD_ACTIVITIES="Działania"
SR_CUSTOMFIELD_SERVICES="Usługi"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parking"
SR_CUSTOMFIELD_CHECKIN="Data przyjazdu"
SR_CUSTOMFIELD_CHECKOUT="Data wyjazdu"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Anulowanie / Przedpłata"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Dzieci i dodatkowe łóżka"
SR_CUSTOMFIELD_PETS="Zwierzęta"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Akceptowane karty kredytowe"
SR_BREAKFAST_INCLUDED="Śniadanie wliczony"
SR_BREAKFAST_EXCLUDED="Śniadanie nie wliczone"
SR_FREE_CANCELLATION="Darmowe anulowanie"
SR_NON_REFUNDABLE="Nie podlega zwrotowi"
SR_ROOM_OCCUPANCY="Obłożenie"
SR_TAXES="Podatki"
SR_PREPAYMENT="Przedpłata"
SR_ROOM_FACILITIES="Wyposażenie pokoju"
SR_ROOM_SIZE="Wielkość pokoju"
SR_BED_SIZE="Wielkość łóżka"

SR_COUPON_ENTER="Wprowadź kod kuponu"
SR_COUPON_ACCEPTED="Kupon został przyjęty"
SR_COUPON_REJECTED="Kupon został odrzucony"
SR_APPLY_COUPON="Zatwierdź kupon"

SR_ROOM_AVAILABLE_FROM_TO="Posiadamy %s dostępnych pokoi od %s do %s dla %s dorosłych i %s dzieci"
SR_APPLIED_COUPON="Zastosuj kupon"
SR_REMOVE="Usuń"
SR_CAN_NOT_REMOVE_COUPON="Nie można usunąć kuponu"
SR_AVAILABILITY_CALENDAR="Kalendarz dostępności"
SR_AVAILABILITY_CALENDAR_VIEW="Zobacz kalendarz"

SR_AVAILABILITY_CALENDAR_BUSY="Nie dostępne"
SR_FEATURED_ROOM_TYPE="Polecane"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Aby kontynuować proszę wybrać przynajmniej jeden typ pokoju."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Błąd. Trzeba zarezerwować co najmniej %d dni. Minimalna długość pobytu wynosi %d dni."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Błąd. Sprawdź datę wyjazdu, musi być po dacie przyjazdu."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Błąd. Minimalna długość pobytu wynosi %d noc/e."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Błąd. Trzeba zarezerwować co najmniej %d dni przed przyjazdem."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Błąd. Nie masz uprawnień, aby zarezerwować więcej niż %d dni przed przyjazdem."
SR_NEXT="Dalej"
SR_BACK="Wróć"
SR_CUSTOMER_TITLE="Twój tytuł (opcjonalnie)"
SR_CUSTOMER_TITLE_MR="Pan"
SR_CUSTOMER_TITLE_MRS="Pani"
SR_CUSTOMER_TITLE_MS="Panna"
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Rodzaj taryfy: za osobę za noc, proszę wybrać ilość pokoi, a następnie podać swoje obłożenie w celu uzyskania dokładnej taryfy dla tego pokoju"
SR_ERROR_CHILD_MAX_AGE="Wiek musi być pomiędzy"
SR_BOOKING_CONDITIONS="Warunki rezerwacji"
SR_PRIVACY_POLICY="Politykę prywatności"
SR_ROOM_COST="Cena pokoju: "
SR_ENHANCE_YOUR_STAY="Wzbogać swój pobyt"
SR_I_AGREE_WITH="Akceptuję "
SR_GUEST_INFORMATION="Informacje kontaktowe"
SR_PAYMENT_INFO="Forma płatności"
SR_GUEST_INFO_STEP_NOTICE="Wpisz swoje dane kontaktowe"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Wybierz rodzaj pokoju, określ ilość i kliknij przycisk Dalej, aby kontynuować"
SR_AGE_OF_CHILD_AT_CHECKOUT="Wiek dzieci:"
SR_GUEST_NAME="Imię gościa"
SR_ROOM="Pokój"
SR_CHILD="Dziecko"
SR_ADULT="Dorosły"
SR_ROOMTYPE_QUANTITY="Ilość"
SR_AND="i"
SR_STEP_ROOM_AND_RATE="Pokoje i Ceny"
SR_STEP_GUEST_INFO_AND_PAYMENT="Dane kontaktowe"
SR_STEP_CONFIRMATION="Potwierdzenie"
SR_PAYMENT_METHOD_PAYLATER="Zapłać później"
SR_PAYMENT_METHOD_BANKWIRE="Przelew bankowy"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Proszę pamiętać, że może to potrwać kilka dni. W tytule przelewu proszę umieścić swój kod rezerwacji aby umożliwić nam szybszą realizację rezerwacji."
SR_PROCESSING="Czekaj..."

; Since 0.6.0
SR_STAR="gwiazdka"
SR_STARS="gwiazdki"
JGLOBAL_FIELDSET_PUBLISHING="Publikowanie"
JTOOLBAR_APPLY="Zapisz"
JTOOLBAR_ARCHIVE="Archiwizuj"
JTOOLBAR_ASSIGN="Przypisz"
JTOOLBAR_BACK="Wróć"
JTOOLBAR_BATCH="Partia"
JTOOLBAR_CANCEL="Anuluj"
JTOOLBAR_CHECKIN="Data przyjazdu"
JTOOLBAR_CLOSE="Zamknij"
JTOOLBAR_DEFAULT="Domyślny"
JTOOLBAR_DELETE="Usuń"
JTOOLBAR_DISABLE="Wyłącz"
JTOOLBAR_DUPLICATE="Duplikuj"
JTOOLBAR_EDIT="Edytuj"
JTOOLBAR_EDIT_CSS="Edytuj CSS"
JTOOLBAR_EDIT_HTML="Edytuj HTML"
JTOOLBAR_EMPTY_TRASH="Opróżnij kosz"
JTOOLBAR_ENABLE="Odblokuj"
JTOOLBAR_EXPORT="Eksportuj"
JTOOLBAR_HELP="Pomoc"
JTOOLBAR_INSTALL="Instaluj"
JTOOLBAR_NEW="Nowy"
JTOOLBAR_OPTIONS="Opcje"
JTOOLBAR_PUBLISH="Publikuj"
JTOOLBAR_PURGE_CACHE="Wyczyść Cache"
JTOOLBAR_REBUILD="Przebuduj"
JTOOLBAR_REFRESH_CACHE="Odśwież Cache"
JTOOLBAR_REMOVE="Usuń"
JTOOLBAR_SAVE="Zapisz i Zamknij"
JTOOLBAR_SAVE_AND_NEW="Zapisz i Nowy"
JTOOLBAR_SAVE_AS_COPY="Zapisz jako kopię"
JTOOLBAR_UNARCHIVE="Przywróć"
JTOOLBAR_UNINSTALL="Odinstaluj"
JTOOLBAR_UNPUBLISH="Wyłącz publikacje"
JTOOLBAR_UPLOAD="Prześlij"
JTOOLBAR_TRASH="Wyrzuć do kosza"
JTOOLBAR_UNTRASH="Przywróć z kosza"
JTOOLBAR_REBUILD_SUCCESS="Pomyślnie przebudowany"
JTOOLBAR_VERSIONS="Wersje"
SR_SEARCH_LOCATION="Lokalizacja"
SR_DASHBOARD="Pulpit"
SR_PHONE="Telefon"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Kwota depozytu"
SR_TOTAL_ROOM_TAX="Całkowity podatek"

; Since 0.7.0
SR_STANDARD_TARIFF="Taryfa standardowa"
SR_SEARCH_RESET="Wyczyść"
SR_SELECT_A_TARIFF="Wybierz taryfę"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="Brak taryfy dla Twojego meldunku. <a href="_QQ_"%s"_QQ_">Kliknij tutaj aby zobaczyć dostępne taryfy.</a>"
SR_SELECT_A_TARIFF_FIRST="Proszę najpierw wybrać taryfę cenową."
SR_SMOKING="Wybierz opcje dla palaczy"
SR_SMOKING_ROOM="Pokój dla palących"
SR_NON_SMOKING_ROOM="Pokój dla nie palących"
SR_SELECT_ROOM_QUANTITY="%s pokoje/pokoi"
SR_SELECT_ROOM_QUANTITY_1="1 pokój"
SR_SELECT_ADULT_QUANTITY="%s dorosłych"
SR_SELECT_ADULT_QUANTITY_1="1 dorosły"
SR_SELECT_CHILD_QUANTITY="%s dzieci"
SR_SELECT_CHILD_QUANTITY_1="1 dziecko"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="za %s noce/nocy"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="za noc"
SR_TARIFF_SUFFIX_PER_ROOM="za 1 pokój "
SR_CHILD_AGE_SELECTION="%s lat"
SR_CHILD_AGE_SELECTION_1="%s rok"
SR_CHILD_AGE_SELECTION_JS="lat"
SR_CHILD_AGE_SELECTION_1_JS="rok"
SR_EMAIL_CONFIRM_RESERVATION="Potwierdzenie przyjęcia rezerwacji"
SR_EMAIL_REF_ID="ID: %s"
SR_EMAIL_GREETING_NAME="Szanowny(a) %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Dziękujemy za złożenie rezerwacji.</p>"
SR_EMAIL_CHECKIN="Data przyjazdu: "
SR_EMAIL_CHECKOUT="Data wyjazdu: "
SR_EMAIL_PAYMENT_METHOD="Metoda płatności: "
SR_EMAIL_NUM_NIGHT="Liczba nocy: "
SR_EMAIL_SUB_TOTAL="Cena pokoju netto: "
SR_EMAIL_TAX="Cena pokoju (podatek): "
SR_EMAIL_GRAND_TOTAL="Łącznie: "
SR_EMAIL_DEPOSIT_AMOUNT="Kwota depozytu: "
SR_EMAIL_EXTRAS_ITEMS="Dodatkowe elementy: "
SR_EMAIL_CONNECT_WITH_US="Kontakt z nami "
SR_EMAIL_CONTACT_INFO="Informacje kontaktowe "
SR_EMAIL_ADDRESS="Adres: "
SR_EMAIL_PHONE="Telefon: "
SR_EMAIL_EMAIL="E-mail: "
SR_EMAIL_OTHER_INFO="Informacje dodatkowe"
SR_EMAIL_EXTRA_QUANTITY="Ilość: "
SR_EMAIL_EXTRA_PRICE="Cena: "
SR_EMAIL_NOTE="Uwagi: "
SR_EMAIL_BANKWIRE_INFO="Informacja na temat przelewu bankowego"
SR_EMAIL_NOTIFICATION_RESERVATION="Informacja o rezerwacji"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>Nowa rezerwacja została utworzona, sprawdź szczegóły poniżej lub <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">kliknij tutaj</a> aby je zobaczyć:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Witaj,"
SR_EMAIL_EXTRA_TAX_EXCL="Koszty dodatkowe netto: "
SR_EMAIL_EXTRA_TAX_AMOUNT="Koszty dodatkowe (podatek): "
SR_VAT_NUMBER="Numer VAT (opcjonalnie)"
SR_PASSWORD="Hasło"
SR_USERNAME="Użytkownik"
SR_WE_HAVE_X_ROOM_LEFT="Wolnych pokoi: %s"
SR_WE_HAVE_X_ROOM_LEFT_1="Mamy %s wolny pokój w tym terminie!"
SR_ONLY_1_LEFT="Ostatnia szansa! Pozostał tylko 1 pokój"
SR_ONLY_2_LEFT="Zostały tylko 2 pokoje"
SR_ONLY_3_LEFT="Zostały tylko 3 pokoje"
SR_ONLY_4_LEFT="Zostały tylko 4 pokoje"
SR_ONLY_5_LEFT="Zostało tylko 5 pokoi"
SR_ONLY_6_LEFT="Zostało tylko 6 pokoi"
SR_ONLY_7_LEFT="Zostało tylko 7 pokoi"
SR_ONLY_8_LEFT="Zostało tylko 8 pokoi"
SR_ONLY_9_LEFT="Zostało tylko 9 pokoi"
SR_ONLY_10_LEFT="Zostało tylko 10 pokoi"
SR_ONLY_11_LEFT="Zostało tylko 11 pokoi"
SR_ONLY_12_LEFT="Zostało tylko 12 pokoi"
SR_ONLY_13_LEFT="Zostało tylko 13 pokoi"
SR_ONLY_14_LEFT="Zostało tylko 14 pokoi"
SR_ONLY_15_LEFT="Zostało tylko 15 pokoi"
SR_ONLY_16_LEFT="Zostało tylko 16 pokoi"
SR_ONLY_17_LEFT="Zostało tylko 17 pokoi"
SR_ONLY_18_LEFT="Zostało tylko 18 pokoi"
SR_ONLY_19_LEFT="Zostało tylko 19 pokoi"
SR_ONLY_20_LEFT="Zostało tylko 20 pokoi"
SR_SHOW_MORE_INFO="Dodatki"
SR_HIDE_MORE_INFO="Ukryj dodatki"
SR_AVAILABILITY_CALENDAR_CLOSE="Zamknij kalendarz"
SR_STARTING_FROM="Cena"
SR_SELECT="Wybierz"
SU="N"
MO="Pn"
TU="Wt"
WE="Śr"
TH="Cz"
FR="Pt"
SA="So"
SR_USERNAME_EXISTS="Taki użytkownik już istniej, proszę wybrać inną nazwę."
JFIELD_METADATA_ROBOTS_DESC="Instrukcje dla robotów"
JFIELD_METADATA_ROBOTS_LABEL="Roboty"
JFIELD_XREFERENCE_DESC="Pola dodatkowe zawierające specyficzne dane dla systemu."
JFIELD_XREFERENCE_LABEL="Odniesienia zewnętrzne"
JCLEAR="Wyczyść"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Zarejestruj się u nas w celu wygodnej rezerwacji w przyszłości. Wpisz żądaną nazwę użytkownika i hasło w następujących polach."
SR_PRICE_IS_FOR_X_NIGHT="Cena za %s noce\nocy)"
SR_PRICE_IS_FOR_X_NIGHT_1="Cena za %s noc"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="Nie znaleziono żadnych dostępnych pokoi."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="Znaleziono %s pokoje/pokoi, w terminie od %s do %s dla %s dorosłych i %s dzieci."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="Znaleziono mniej pokoi niż szukasz (%s) w terminie od %s do %s dla %s dorosłych i %s dzieci musisz wybrać inną ilość pokoi."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Przykro nam ale nasze pokoje nie są dostępne w terminie od %s do %s dla %s dorosłych i %s dzieci."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="Ilość znalezionych pokoi: %s. W terminie od %s do %s."
SR_MOBILEPHONE="Telefon komórkowy"
SR_RESERVATION_SAVE_ERROR="Twoja rezerwacja nie może zostać zapisana. Spróbuj ponownie."
SR_EMAIL_PAYMENT_METHOD_INFO="Informacje o płatności"
SR_RESERVATION_COMPLETE="<h3>Dziękujemy %s!</h3><ul><li>Twoja rezerwacja o numerze: <strong>%s</strong> została przyjęta.</li><li>E-mail z potwierdzeniem został wysłany na adres: %s</li><li>Dodatkowe informacje o statusie rezerwacji będą przesyłane na wskazany adres e-mail.</li><li><a href="_QQ_"%s"_QQ_">Kliknij tutaj</a> aby powrócić na stronę główną rezerwacji.</li></ul>"
SR_EXTRA_PRICE_ADULT="Dla dorosłych"
SR_EXTRA_PRICE_CHILD="Dla dzieci"
SR_EXTRA_MORE_DETAILS="Szczegóły"
SR_EXTRA_PRICE="Cena"
SR_TOTAL_DISCOUNT="Zniżki razem"
SR_EMAIL_TOTAL_DISCOUNT="Zniżki razem: "
SR_ROOM_X_COST="Pokój - koszt"
SR_ROOM_X_DISCOUNTED_AMOUNT="Pokój - zniżki"
SR_ROOM_X_DISCOUNTED_COST="Pokój - po zniżkach"
SR_VIEW_TARIFF_BREAKDOWN="Szczegóły"
SR_SHOW_TARIFFS="Taryfy"
SR_HIDE_TARIFFS="Taryfy"
SR_CONFIRMATION_ROOM_DETAILS="Szczegóły"
SR_CONFIRMATION_GUEST_NAME="Imię gościa"
SR_CONFIRMATION_ADULT_NUMBER="Liczba dorosłych"
SR_CONFIRMATION_CHILD_NUMBER="Liczba dzieci"
SR_CONFIRMATION_FULLNAME="Imię i Nazwisko: "
SR_EXTRA="Dodatki"
SR_EXTRA_PER_BOOKING="Za rezerwację"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Za rezerwację"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Za pokój"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Za rezerwację za noc"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Za rezerwację za osobę"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Za pokój za noc"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Za pokój za osobę"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Za osobę za noc"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Za pokój za osobę za noc"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Cena dla dorosłych"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Wprowadź cenę dla dorosłych."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Cena dla dzieci"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Wprowadź cenę dla dzieci."

; Since 0.9.0
SR_DAYS="%d days"
SR_DAYS_1="%d day"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s days"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 day"
SR_LENGTH_OF_STAY="Length of stay"
SR_EMAIL_LENGTH_OF_STAY="Length of stay: "
SR_PRICE_IS_FOR_X_DAY="Price is for %s days"
SR_PRICE_IS_FOR_X_DAY_1="Price is for %s day"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Room single supplement"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Room cost after single supplement"
JLIB_APPLICATION_SAVE_SUCCESS="Item successfully saved."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Item successfully submitted."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="New reservation %s from %s %s"
SR_RESERVATION_CODE="Code"
SR_RESERVATION_INVOICE="Invoice"
SR_RESERVATION_CHECKIN="Checkin"
SR_RESERVATION_CHECKOUT="Checkout"
SR_RESERVATION_ASSET="Property"
SR_RESERVATION_TOTAL_PAID="Total paid"
SR_DESCRIPTION="Description"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Booking number"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Booking details"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s rooms"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s room"
SR_CONFIRMATION_CHECKIN="Check-in"
SR_CONFIRMATION_CHECKOUT="Check-out"
SR_CONFIRMATION_TOTAL_PRICE="Total price"
SR_CONFIRMATION_ASSET_NAME="Name"
SR_CONFIRMATION_ASSET_ADDRESS="Address"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Phone"
SR_ASSET_INFO="Hotel information"
SR_BOOKING_INFO="Your booking information"
SR_BOOKING_CONFIRMATION_ADULTS="%s adults"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s adult"
SR_BOOKING_CONFIRMATION_CHILDREN="%s children"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s child"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Guest full name"
SR_BOOKING_CONFIRMATION_SMOKING="Smoking"
SR_BOOKING_CONFIRMATION_ROOM_COST="Room cost"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Room details"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Your dates appear to be in the past"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Thank you %s! Your reservation number %s has been completed successfully but the payment is not yet completed.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Invalid. Minimum length of stay is %d days."
SR_USER_INFO_USERNAME_PLURAL="You have logged with username: %s"

; Since 0.9.4
SR_COUPON_CHECK="Check"
SR_RESERVATION_ORIGIN_DIRECT="Direct"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="This room type requires at least %d people and maximum %d people."
SR_RESERVE="Reserve"
SR_SEARCH_ROOMS="Rooms"
SR_SEARCH_ROOM="Room"
SR_SEARCH_ROOM_ADULTS="Adults"
SR_SEARCH_ROOM_CHILDREN="Children"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Reservation has been cancelled"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Reservation %s from %s %s has been cancelled"
SR_EMAIL_GREETING_TEXT_CANCELLED="Your reservation %s at %s has been cancelled."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Reservation %s has been cancelled, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_COUPON_CODE="Coupon code: "

; Since 1.8.0
SR_FULLNAME="Full name"
SR_MESSAGE="Message"
SR_SEND_MESSAGE="Send message"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Booking inquiry from %s for %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Thank you, your inquiry has been sent successfully. We will get back to you as soon as possible."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per booking per stay (night or day)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Per room per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per room per person per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Percentage of room's daily rate"
SR_EXTRA_PRICE_DAILY_RATE="%s costs %d percent of room daily rate per stay"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Your session is expiring soon."
SR_WARNING_SESSION_EXPIRED="Your session has been expired, <a href="_QQ_"#"_QQ_">click here</a> to start a new session."
SR_WEBSITE="Website"
SR_YOUR_STAY="Your stay"
SR_AVAILABLE_ROOMS="Available room"
SR_MAX_GUESTS="Max guests"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Book Now"
SR_TARIFF_PACKAGE_PER_ROOM="Package per room"
SR_TARIFF_PACKAGE_PER_PERSON="Package per person"
SR_TARIFF_PER_ROOM_PER_NIGHT="Rate per room per stay"
SR_TARIFF_PER_PERSON_PER_NIGHT="Rate per person per stay"
SR_ROOM_X_EXTRA_AMOUNT="Room extras item cost"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Your reservation has been amended successfully"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Send outgoing emails?"
SR_FIELD_COUNTRY_SELECT=" - Select Country - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Process online payment?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Your reservation has been added successfully"
SR_SELECT_BED_QUANTITY="%s beds"
SR_SELECT_BED_QUANTITY_1="1 bed"
SR_BED="Bed"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Thank you %s! Your reservation request %s has been sent to us, we will get back to you as soon as possible to confirm this reservation.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Your reservation number %s has been cancelled.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Tourist tax"
SR_EMAIL_TOURIST_TAX="Tourist tax: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount: "
SR_CONFIRMATION_GUEST_NUMBER="Guest number"
SR_SELECT_GUEST_QUANTITY="%s guests"
SR_SELECT_GUEST_QUANTITY_1="1 guest"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Rooms and rates information"
SR_CONFIRMATION_PAYMENT_METHOD="Payment method: "
SR_CONFIRMATION_MOBILE="Mobile phone: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Unpaid"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Paid"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Cancelled"
SR_RESERVATION_PAYMENT_STATUS_PENDING="Pending"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ bed "
SR_WE_HAVE_X_BED_LEFT="We have %s beds left"
SR_WE_HAVE_X_BED_LEFT_1="We have %s bed left!"
SR_ONLY_1_LEFT_BED="Last chance! Only 1 bed left"
SR_ONLY_2_LEFT_BED="Only 2 beds left"
SR_ONLY_3_LEFT_BED="Only 3 beds left"
SR_ONLY_4_LEFT_BED="Only 4 beds left"
SR_ONLY_5_LEFT_BED="Only 5 beds left"
SR_ONLY_6_LEFT_BED="Only 6 beds left"
SR_ONLY_7_LEFT_BED="Only 7 beds left"
SR_ONLY_8_LEFT_BED="Only 8 beds left"
SR_ONLY_9_LEFT_BED="Only 9 beds left"
SR_ONLY_10_LEFT_BED="Only 10 beds left"
SR_ONLY_11_LEFT_BED="Only 11 beds left"
SR_ONLY_12_LEFT_BED="Only 12 beds left"
SR_ONLY_13_LEFT_BED="Only 13 beds left"
SR_ONLY_14_LEFT_BED="Only 14 beds left"
SR_ONLY_15_LEFT_BED="Only 15 beds left"
SR_ONLY_16_LEFT_BED="Only 16 beds left"
SR_ONLY_17_LEFT_BED="Only 17 beds left"
SR_ONLY_18_LEFT_BED="Only 18 beds left"
SR_ONLY_19_LEFT_BED="Only 19 beds left"
SR_ONLY_20_LEFT_BED="Only 20 beds left"
SR_DUE_AMOUNT="Total due amount"
SR_EMAIL_DUE_AMOUNT="Due Amount: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Your reservation has been cancelled."
SR_CHECKIN_PLACEHOLDER="Your check-in date"
SR_CHECKOUT_PLACEHOLDER="Your check-out date"
SR_CHOOSE_ANOTHER_CHECKIN="Please choose another check-in date"
SR_WARNING_SESSION_RENEW="Renew"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Enter your email"
SR_ENTER_YOUR_RESERVATION_CODE="Enter your reservation code"
SR_FIND_RESERVATION="Find reservation"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reservation code %s found."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="We can not find any reservations with your given information, please recheck your information and try again."
SR_RESERVATION_STATUS_FORMAT="Reservation status: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Show property's reservation tracking form"
SR_TRACKING_VIEW_DEFAULT_DESC="Allow guests check their reservation using reservation code + email address"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ 1 person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s people "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/el-GR/el-GR.com_solidres.ini000060400000121500150751740420013325 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Κριτήρια αναζήτησης"
SR_SEARCH_FIELD_COUNTRY="Χώρα"
SR_SEARCH_FIELD_STATE="Νομός"
SR_SEARCH_FIELD_CITY="Πόλη"
SR_SEARCH_CHECKIN_DATE="Ημερομηνία άφιξης"
SR_SEARCH_CHECKOUT_DATE="Ημερομηνία αναχώρησης"
SR_SEARCH="Αναζήτηση"
SR_RESET="Εκκαθάριση"
SR_REMEMBER_ME="Να με θυμάσαι"
SR_FORGOT_YOUR_PASSWORD="Ξεχάσατε τον κωδικό σας;"
SR_FORGOT_YOUR_USERNAME="Ξεχάσατε το όνομα χρήστη;"
SR_REGISTER="Εγγραφή"
SR_SELECTED_RESERVATION_ASSET="Επιλεγμένο ξενοδοχείο"
SR_STAYING_INFO="Πληροφορίες διαμονής"
SR_NUMBER_OF_ROOM="Αριθμός δωματίων"
SR_GUEST_PER_ROOM="Άτομα ανά δωμάτιο"
SR_ROOM_RATE_INFO="Πληροφορίες για την τιμή δωματίου"
SR_ROOM_DESCRIPTION="Περιγραφή δωματίου"
SR_ROOM_RATE_TYPE="Τύπος τιμών δωματίου"
SR_GUEST_INFO="Πληροφορίες πελατών"
SR_FIRSTNAME="Όνομα"
SR_LASTNAME="Επίθετο"
SR_EMAIL="E-mail"
SR_PHONENUMBER="Τηλέφωνο"
SR_CONTACT_INFO="Στοιχεία επικοινωνίας"
SR_HOLD_GUARANTEE_INFO="Προσωπικά δεδομένα"
SR_ARRIVAL_INFO="Πληροφορίες άφιξης"
SR_TRAVEL_INFO="Ταξιδιωτικές πληροφορίες"
SR_COMPANY="Εταιρεία"
SR_ADDRESS_1="Διεύθυνση 1"
SR_ADDRESS_2="Διεύθυνση 2"
SR_CITY="Πόλη"
SR_ZIP="ΤΚ"
SR_STATE="Νομός"
SR_COUNTRY="Χώρα"
SR_TRAVEL_FOR_BUSINESS="Επαγγελματικό ταξίδι"
SR_TRAVEL_FOR_BUSINESS_DESC="Για επαγγελματικό ταξίδι"
SR_TRAVEL_FOR_RELAX="Ταξίδι χαλάρωσης και περιποίησης"
SR_TRAVEL_FOR_RELAX_DESC="Για ταξίδι χαλάρωσης και ανανέωσης"
SR_TRAVEL_FOR_ENTERTAINMENT="Ταξίδι διασκέδασης"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Για ταξίδι διασκέδασης και αφιέρωση χρόνου για τα καλύτερα αξιοθέατα και μέρη της περιοχής"
SR_TRAVEL_FOR_FAMILY="Οικογενειακό ταξίδι"
SR_TRAVEL_FOR_FAMILY_DESC="Για ταξίδι οικογενειακών υποχρεώσεων (γάμος, βαφτίσια κτλ)"
SR_TRAVEL_FOR_HONEYMOON="Μήνας του μέλιτος"
SR_TRAVEL_FOR_HONEYMOON_DESC="Για ταξίδι μήνα του μέλιτος"
SR_COMMENT="Σχόλιο"
SR_COMMENT_DESC="Γράψτε ένα σχόλιο για μας"
SR_TAX="Φόρος"
SR_RULE_RESTRICTION="Κανόνες περιορισμού"
SR_SELECT_TARIFF="Επιλογή"
SR_SHOW_MAP="Εμφάνιση χάρτη"
SR_READMORE="Περισσότερα"
SR_PRICE_FROM="Τιμές από"
SR_FIELD_RESERVE="Κάντε κράτηση τώρα"
SR_FIELD_CONDITIONS="Συνθήκες"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Βρείτε το ξενοδοχείο χρησιμοποιώντας την ηλεκτρονική φόρμα"
SR_NO_ROOM_AVAILABLE="Δεν υπάρχει διαθέσιμο δωμάτιο"
SR_MAX="Μέγιστος αριθμός ατόμων"
SR_HAS_ROOM_AVAILABLE="Διαθέσιμα δωμάτια"
SR_AVAILABILITY="Διαθεσιμότητα"
SR_AVAILABLE_ROOM_TYPES="Διαθέσιμα διάφοροι τύποι δωματίου"
SR_VIEW_GALLERY="Προβολή Gallery"
SR_YOUR_SEARCH_INFORMATION="Αναζήτηση πληροφοριών"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Άφιξη:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Αναχώρηση:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Συνολικός αριθμός ενηλίκων ανά δωμάτιο"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Συνολικός αριθμός παιδιών ανά δωμάτιο"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Επιβεβαίωση & συνέχεια"
SR_EXTRA_PACKAGES="Επιπλέον αποσκευές"
SR_ROOM_TYPE_NAME="Τύπος δωματίου"
SR_ROOM_TYPE_QUANTITY="Αριθμός δωματίων"
SR_ROOM_TYPE_GUEST_PER_ROOM="Φιλοξενούμενοι ανά δωμάτιο"
SR_NUMBER_OF_NIGHT="Πόσες νύχτες θα μείνετε"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Βαθμολογία δωματίου"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Επιπλέον αποσκευές"
SR_RESERVATION_PROGRESS_GUEST_INFO="Προσωπικές πληροφορίες"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Πληροφορίες για τη διαδικασία πληρωμής"
SR_RESERVATION_CONFIRMATION="Επιβεβαίωση"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Ολοκλήρωση"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Επιταγή"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Ο επιλεγμένος αριθμός δωματίων υπερβαίνει τον αριθμό των διαθέσιμων. Προσπαθήσετε ξανά"
SR_CHANGE="Αλλαγή"
SR_NOTE="Σημείωση"
SR_MIDDLENAME="Μεσαίο όνομα"
SR_RESERVATION_PROGRESS_DATES="Προτεινόμενες ημερομηνίες"
SR_ROOM_SELECTION="Επιλογή δωματίου"
SR_ROOM_TYPE_ADULT_PER_ROOM="Ενήλικοι ανά δωμάτιο"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Παιδιά ανά δωμάτιο"
SR_ROOM_TYPE_GUEST_NAME="Όνομα δωματίου"
SR_RESERVATION_NOTICE_CONFIRMATION="Ελέγξτε τις λεπτομέρειες κράτησης & κάντε κλικ στο κουμπί Ολοκλήρωση. Θα λάβετε ένα email επιβεβαίωσης."
SR_SEARCH_COUPON="Ψάξτε για κουπόνια"
SR_MAXIMUM_OCCUPANCY="Mέγιστη πληρότητα"
SR_OCCUPANCY_ADULT="Ενήληκος(οι)"
SR_OCCUPANCY_CHILD="Παιδί(ά)"
SR_NIGHTS="%d βράδια"
SR_NIGHTS_1="%d βράδι"
SR_TOTAL_ROOM_COST_TAX_EXCL="Συνολική τιμή δωματίου (χωρίς φόρους)"
SR_TOTAL_ROOM_COST_TAX_INCL="Συνολική τιμή δωματίου (με φόρους)"
SR_TOTAL_EXTRA_COST_TAX_EXCL ="Συνολική τιμή για τα έξτρα (χωρίς φόρους)"
SR_TOTAL_EXTRA_COST_TAX_INCL ="Συνολική τιμή για τα έξτρα (με φόρους)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Συνολικός φόρος για τα έξτρα"
SR_PRICE_FOR_X_NIGHTS="Τιμή για %d νύχτες"
SR_ROOM_TYPE="Τύποι δωματίων"
SR_NUMBER_OF_ROOMS="Αριθμός δωματίων"
SR_TARIFF_BREAK_DOWN="Αναλυτική χρέωση"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Αριθμός ενηλίκων"
SR_SEARCH_CHILDREN_NUMBER="Αριθμός παιδιών"
SR_NO_TARIFF_AVAILABLE="Δεν υπάρχει διαθέσιμη τιμή"
SR_EMAIL_RESERVATION_COMPLETE="Η Κράτησή σας έγινε επιτυχώς!"

; Extra
SR_RESERVATION_EXTRA="Όνομα επιπλέον κράτησης"
SR_RESERVATION_EXTRA_COST="Επιπλέον κόστος"
SR_RESERVATION_EXTRA_QUANTITY="Ποσότητα"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="Το περιεχόμενο του email περιέχει πληροφορίες που δεν μπορούν να αποσταλούν"

SR_BOOK_NOW="Κάντε κράτηση τώρα"
SR_TOTAL_PRICE="Συνολική τιμή"
SR_TAX_7_NOT_INCLUDED="Δεν συμπεριλαμβάνεται φόρος"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Δεν συμπεριλαμβάνεται χρέωση υπηρεσιών (10.70%)"

SR_RESERVATION_NOTE="Πληκτρολογήστε πληροφορίες που αφορούν την κράτησή σας. Αποφύγετε τη χρήση ειδικών χαρακτήρων."
SR_ASK_FOR_CHECKIN_CHECKOUT="Εισάγετε την ημερομηνία Άφιξης και Αναχώρησης στα παρακάτω πεδία, για να ελέγξετε τις τιμές και τη διαθεσιμότητα των δωματίων!"
SR_GRAND_TOTAL="Γενικό Σύνολο"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Παροχές"
SR_CUSTOMFIELD_POLICIES="Πολιτική ξενοδοχείου"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Κοινωνικά δίκτυα"
SR_CUSTOMFIELD_GENERAL="Γενικά"
SR_CUSTOMFIELD_ACTIVITIES="Δραστηριότητες"
SR_CUSTOMFIELD_SERVICES="Υπηρεσίες"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Χώρος στάθμευσης"
SR_CUSTOMFIELD_CHECKIN="Άφιξη"
SR_CUSTOMFIELD_CHECKOUT="Αναχώρηση"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Ακύρωση συναλλαγής"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Παιδιά & επιπλέον κρεβάτια"
SR_CUSTOMFIELD_PETS="Κατοικίδια"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Πιστωτικές κάρτες"
SR_BREAKFAST_INCLUDED="Το πρωινό συμπεριλαμβάνεται στην τιμή"
SR_BREAKFAST_EXCLUDED="Το πρωινό δεν συμπεριλαμβάνεται στην τιμή"
SR_FREE_CANCELLATION="Ακύρωση χωρίς επιπλέον χρέωση"
SR_NON_REFUNDABLE="Χωρίς επιστροφή χρημάτων"
SR_ROOM_OCCUPANCY="Πληρότητα"
SR_TAXES="Φόροι"
SR_PREPAYMENT="Προπληρωμή"
SR_ROOM_FACILITIES="Παροχές δωματίου"
SR_ROOM_SIZE="Μέγεθος δωματίου"
SR_BED_SIZE="Μονό / διπλό κρεβάτι"

SR_COUPON_ENTER="Εισάγετε τον αριθμό κουπονιού (προαιρετικό)"
SR_COUPON_ACCEPTED="Το κουπόνι σας έγινε δεκτό!"
SR_COUPON_REJECTED="Το κουπόνι σας δεν έγινε δεκτό"
SR_APPLY_COUPON="Εισάγετε τον αριθμό κουπονιού"

SR_ROOM_AVAILABLE_FROM_TO="Υπάρχουν %s διαθέσιμα δωμάτια από %s έως %s, για την αναζήτησή σας για %s ενήλικες και %s παιδιά"
SR_APPLIED_COUPON="Κουπόνι"
SR_REMOVE="Αφαίρεση"
SR_CAN_NOT_REMOVE_COUPON="Δεν μπορείτε να αφαιρέσετε το κουπόνι"
SR_AVAILABILITY_CALENDAR="Ημερολόγιο διαθεσιμότητας"
SR_AVAILABILITY_CALENDAR_VIEW="Δείτε το ημερολόγιο"

SR_AVAILABILITY_CALENDAR_BUSY="Δεν είναι διαθέσιμο"
SR_FEATURED_ROOM_TYPE="Προτεινόμενο"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Επιλέξτε τουλάχιστον ένα δωμάτιο για να προχωρήσετε"
SR_INVALID_CHECKIN_CHECKOUT_DATE="Άκυρο. Πρέπει να κάνετε κράτηση τουλάχιστον %d ημέρες και όχι περισσότερες από %d ημέρες πριν την άφιξή σας. Η ελάχιστη περίοδος διαμονής είναι  %d ημέρες."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Άκυρο. Η μέρα αναχώρησης πρέπει να είναι μεταγενέστερη της μέρας άφιξης."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Άκυρο. Η ελάχιστη περίοδος διαμονής είναι %d νύχτες."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Άκυρο. Πρέπει να κάνετε κράτηση τουλάχιστον %d ημέρες πριν την άφιξή σας."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Άκυρο. Δεν μπορείτε να κάνετε κράτηση περισσότερες από %d ημέρες πριν την άφιξή σας."
SR_NEXT="Επόμενο"
SR_BACK="Πίσω"
SR_CUSTOMER_TITLE="Ο τίτλος σας (προαιρετικό)"
SR_CUSTOMER_TITLE_MR="Κύριος"
SR_CUSTOMER_TITLE_MRS="Κυρία"
SR_CUSTOMER_TITLE_MS=""
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Τύπος τιμής:: Ανά άτομο ανά διανυκτέρευση, επιλέξτε τον αριθμό των δωματίων που επιθυμείτε και δηλώστε την πληρότητά σας, ώστε να δείτε την τελική τιμή γι αυτό το δωμάτιο"
SR_ERROR_CHILD_MAX_AGE="Αποδεκτές ηλικίες μεταξύ"
SR_BOOKING_CONDITIONS="Όρους κράτησης"
SR_PRIVACY_POLICY="Προσωπικά δεδομένα"
SR_ROOM_COST="Κόστος δωματίου: "
SR_ENHANCE_YOUR_STAY="Βελτιώστε τη διαμονή σας"
SR_I_AGREE_WITH="Συμφωνώ με τους "
SR_GUEST_INFORMATION="Πληροφορίες επισκέπτη"
SR_PAYMENT_INFO="Πληροφορίες πληρωμής"
SR_GUEST_INFO_STEP_NOTICE="Εισάγετε τα στοιχεία σας και τον τρόπο πληρωμής"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Επιλέξτε τον τύπο δωματίου σας, ελέγξτε τις τιμές και πατήστε Επόμενο για να συνεχίσετε"
SR_AGE_OF_CHILD_AT_CHECKOUT="Ηλικία παιδιών"
SR_GUEST_NAME="Όνομα επισκέπτη"
SR_ROOM="Δωμάτια"
SR_CHILD="Παιδί"
SR_ADULT="Ενήλικας"
SR_ROOMTYPE_QUANTITY="Αριθμός δωματίων"
SR_AND="και τα"
SR_STEP_ROOM_AND_RATE="Δωμάτια & Τιμές"
SR_STEP_GUEST_INFO_AND_PAYMENT="Στοιχεία επισκέπτη & Πληρωμή"
SR_STEP_CONFIRMATION="Επιβεβαίωση"
SR_PAYMENT_METHOD_PAYLATER="Πληρώστε Αργότερα"
SR_PAYMENT_METHOD_BANKWIRE="Έμβασμα"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Σημειώστε ότι μπορεί να περάσουν μερικές  ημέρες για την εμφάνιση της πληρωμής. Στο έμβασμα συμπληρώστε τον κωδικό κράτησης, ώστε να επεξεργαστούμε την κράτησή σας γρηγορότερα."
SR_PROCESSING="Επεξεργασία..."

; Since 0.6.0
SR_STAR="αστέρι"
SR_STARS="αστέρια"
JGLOBAL_FIELDSET_PUBLISHING="Δημοσίευση"
JTOOLBAR_APPLY="Αποθήκευση"
JTOOLBAR_ARCHIVE="Αρχείο"
JTOOLBAR_ASSIGN="Προσδιορισμός"
JTOOLBAR_BACK="Πίσω"
JTOOLBAR_BATCH="Μαζικό"
JTOOLBAR_CANCEL="Ακύρωση"
JTOOLBAR_CHECKIN="Άφιξη"
JTOOLBAR_CLOSE="Κλείσιμο"
JTOOLBAR_DEFAULT="Προεπιλογή"
JTOOLBAR_DELETE="Διαγραφή"
JTOOLBAR_DISABLE="Απενεργοποίηση"
JTOOLBAR_DUPLICATE="Αντιγραφή"
JTOOLBAR_EDIT="Επεξεργασία"
JTOOLBAR_EDIT_CSS="Επεξεργασία του CSS"
JTOOLBAR_EDIT_HTML="Επεξεργασία του HTML"
JTOOLBAR_EMPTY_TRASH="Άδειασμα Κάδου"
JTOOLBAR_ENABLE="Ενεργοποίηση"
JTOOLBAR_EXPORT="Εξαγωγή"
JTOOLBAR_HELP="Βοήθεια"
JTOOLBAR_INSTALL="Εγκατάσταση"
JTOOLBAR_NEW="Νέο"
JTOOLBAR_OPTIONS="Επιλογές"
JTOOLBAR_PUBLISH="Δημοσίευση"
JTOOLBAR_PURGE_CACHE="Εκκαθάριση Προσωρινής Μνήμης"
JTOOLBAR_REBUILD="Ανοικοδόμηση"
JTOOLBAR_REFRESH_CACHE="Ανανέωση Προσωρινής Μνήμης"
JTOOLBAR_REMOVE="Κατάργηση"
JTOOLBAR_SAVE="Αποθήκευση & Κλείσιμο"
JTOOLBAR_SAVE_AND_NEW="Αποθήκευση & Νέο"
JTOOLBAR_SAVE_AS_COPY="Αποθήκευση ως Αντίγραφο"
JTOOLBAR_UNARCHIVE="Κατάργηση αρχειοθέτησης"
JTOOLBAR_UNINSTALL="Απεγκατάσταση"
JTOOLBAR_UNPUBLISH="Αποδημοσίευση"
JTOOLBAR_UPLOAD="Μεταφόρτωση"
JTOOLBAR_TRASH="Στον κάδο"
JTOOLBAR_UNTRASH="Επαναφορά από τον κάδο"
JTOOLBAR_REBUILD_SUCCESS="Επιτυχής Ανοικοδόμηση"
JTOOLBAR_VERSIONS="Εκδόσεις"
SR_SEARCH_LOCATION="Τοποθεσία"
SR_DASHBOARD="Ταμπλό"
SR_PHONE="Τηλέφωνο"
SR_FAX="Φαξ"
SR_DEPOSIT_AMOUNT="Ποσό Κατάθεσης"
SR_TOTAL_ROOM_TAX="Σύνολο φόρου δωματίου"

; Since 0.7.0
SR_STANDARD_TARIFF="Κανονική τιμή"
SR_SEARCH_RESET="Επαναφορά"
SR_SELECT_A_TARIFF="Επιλέξτε μιά τιμή"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="Δεν υπάρχει διαθεσιμότητα γι αυτόν τον τύπο δωματίου μεταξύ %s και %s. <a href="_QQ_"%s"_QQ_">Κάντε κλικ εδώ για να προσπαθήσετε πάλι, αλλάζοντας τις ημερομηνίες σας.</a>"
SR_SELECT_A_TARIFF_FIRST="Επιλέξτε πρώτα μια τιμή."
SR_SMOKING="Επιλογές καπνίσματος"
SR_SMOKING_ROOM="Δωμάτιο καπνιστών"
SR_NON_SMOKING_ROOM="Δωμάτιο μη καπνιστών"
SR_SELECT_ROOM_QUANTITY="%s δωμάτια"
SR_SELECT_ROOM_QUANTITY_1="1 δωμάτιο"
SR_SELECT_ADULT_QUANTITY="%s ενήλικες"
SR_SELECT_ADULT_QUANTITY_1="1 ενήλικας"
SR_SELECT_CHILD_QUANTITY="%s παιδιά"
SR_SELECT_CHILD_QUANTITY_1="1 παιδί"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s νύχτες"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 νύχτα"
SR_TARIFF_SUFFIX_PER_ROOM="/ δωμάτιο "
SR_CHILD_AGE_SELECTION="%s ετών"
SR_CHILD_AGE_SELECTION_1="%s έτους"
SR_CHILD_AGE_SELECTION_JS="ετών"
SR_CHILD_AGE_SELECTION_1_JS="έτους"
SR_EMAIL_CONFIRM_RESERVATION="Επιβεβαίωση της κράτησης"
SR_EMAIL_REF_ID="Αριθμός Αναφοράς: %s"
SR_EMAIL_GREETING_NAME="Αγαπητέ %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Σας ευχαριστούμε για την κράτηση σας σε %s. Αν έχετε οποιαδήποτε ερώτηση, μην διστάσετε να επικοινωνήσετε μαζί μας ανά πάσα στιγμή.</p><p>Επιβεβαιώνουμε την κράτησή σας ως εξής:</p>"
SR_EMAIL_CHECKIN="Άφιξη: "
SR_EMAIL_CHECKOUT="Αναχώρηση: "
SR_EMAIL_PAYMENT_METHOD="Μέθοδος πληρωμής: "
SR_EMAIL_EMAIL="Email: "
SR_EMAIL_NUM_NIGHT="Αριθμός διανυκτερεύσεων: "
SR_EMAIL_SUB_TOTAL="Κόστος δωματίου (χωρίς φόρο): "
SR_EMAIL_TAX="Φόρος τιμής δωματίου: "
SR_EMAIL_GRAND_TOTAL="Γενικό σύνολο: "
SR_EMAIL_DEPOSIT_AMOUNT="Ποσό κατάθεσης: "
SR_EMAIL_EXTRAS_ITEMS="Πρόσθετες υπηρεσίες: "
SR_EMAIL_CONNECT_WITH_US="Συνδεθείτε μαζί μας: "
SR_EMAIL_CONTACT_INFO="Επικοινωνία: "
SR_EMAIL_ADDRESS="Διεύθυνση: "
SR_EMAIL_PHONE="Τηλέφωνο: "
SR_EMAIL_OTHER_INFO="Άλλες πληροφορίες"
SR_EMAIL_EXTRA_QUANTITY="Ποσότητα: "
SR_EMAIL_EXTRA_PRICE="Τιμή: "
SR_EMAIL_NOTE="Σημείωση: "
SR_EMAIL_BANKWIRE_INFO="Πληροφορίες Εμβάσματος"
SR_EMAIL_NOTIFICATION_RESERVATION="Ειδοποίηση Κράτησης"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>Έγινε μια νέα κράτηση, ελέγξτε τις λεπτομέρειες παρακάτω ή <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">κάντε κλικ εδώ</a> για να τις δείτε:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Γειά σας,"
SR_EMAIL_EXTRA_TAX_EXCL="Επιπλέον κόστος (χωρίς φόρο): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Επιπλέον φόρος: "
SR_VAT_NUMBER="ΑΦΜ (προαιρετικό)"
SR_PASSWORD="Κώδικας πρόσβασης"
SR_USERNAME="Όνομα χρήστη"
SR_WE_HAVE_X_ROOM_LEFT="Υπάρχουν ακόμη %s δωμάτια"
SR_WE_HAVE_X_ROOM_LEFT_1="Υπάρχει ακόμη %s δωμάτιο!"
SR_ONLY_1_LEFT="Τελευταία ευκαιρία! Υπάρχει μόνο 1 δωμάτιο"
SR_ONLY_2_LEFT="Υπάρχουν μόνο 2 δωμάτια"
SR_ONLY_3_LEFT="Υπάρχουν μόνο 3 δωμάτια"
SR_ONLY_4_LEFT="Υπάρχουν μόνο 4 δωμάτια"
SR_ONLY_5_LEFT="Υπάρχουν μόνο 5 δωμάτια"
SR_ONLY_6_LEFT="Υπάρχουν μόνο 6 δωμάτια"
SR_ONLY_7_LEFT="Υπάρχουν μόνο 7 δωμάτια"
SR_ONLY_8_LEFT="Υπάρχουν μόνο 8 δωμάτια"
SR_ONLY_9_LEFT="Υπάρχουν μόνο 9 δωμάτια"
SR_ONLY_10_LEFT="Υπάρχουν μόνο 10 δωμάτια"
SR_ONLY_11_LEFT="Υπάρχουν μόνο 11 δωμάτια"
SR_ONLY_12_LEFT="Υπάρχουν μόνο 12 δωμάτια"
SR_ONLY_13_LEFT="Υπάρχουν μόνο 13 δωμάτια"
SR_ONLY_14_LEFT="Υπάρχουν μόνο 14 δωμάτια"
SR_ONLY_15_LEFT="Υπάρχουν μόνο 15 δωμάτια"
SR_ONLY_16_LEFT="Υπάρχουν μόνο 16 δωμάτια"
SR_ONLY_17_LEFT="Υπάρχουν μόνο 17 δωμάτια"
SR_ONLY_18_LEFT="Υπάρχουν μόνο 18 δωμάτια"
SR_ONLY_19_LEFT="Υπάρχουν μόνο 19 δωμάτια"
SR_ONLY_20_LEFT="Υπάρχουν μόνο 20 δωμάτια"
SR_SHOW_MORE_INFO="Περισσότερα"
SR_HIDE_MORE_INFO="Απόκρυψη"
SR_AVAILABILITY_CALENDAR_CLOSE="Κλείσιμο ημερολογίου"
SR_STARTING_FROM="Από"
SR_SELECT="Επιλέξτε"
SU="Κυ"
MO="Δε"
TU="Τρ"
WE="Τε"
TH="Πε"
FR="Πα"
SA="Σα"
SR_USERNAME_EXISTS="Το όνομα χρήστη υπάρχει ήδη. Επιλέξτε ένα άλλο."
JFIELD_METADATA_ROBOTS_DESC="Οδηγίες ρομπότ"
JFIELD_METADATA_ROBOTS_LABEL="Ρομπότ"
JFIELD_XREFERENCE_DESC="Προαιρετικό πεδίο, που επιτρέπει σε αυτή τη καταγραφή να παραπέμπει σε ένα εξωτερικό σύστημα δεδομένων, εάν απαιτείται."
JFIELD_XREFERENCE_LABEL="Εξωτερική Αναφορά"
JCLEAR="Καθαρισμός"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Εγγραφείτε σε μας για μελλοντική σας διευκόλυνση: γρήγορη και εύκολη κράτηση. Εισάγετε το επιθυμητό όνομα χρήστη και password σας στα παρακάτω πεδία."
SR_PRICE_IS_FOR_X_NIGHT="Η τιμή είναι για %s νύχτες"
SR_PRICE_IS_FOR_X_NIGHT_1="Η τιμή είναι για %s νύχτα"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="Δεν βρήκαμε δωμάτια από %s έως %s, ρυθμίστε τις ημερομηνίες κράτησης ή τις επιλογές δωματίου."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="Βρέθηκαν %s δωμάτια για την αναζήτησή σας από %s εως %s για %s ενήλικες και %s παιδιά."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="Έχουμε λιγότερα δωμάτια από τον αριθμό που ζητήθηκε, αλλά τα διαθέσιμα δωμάτιά μας (%s) θα μπορούσαν να ικανοποιήσουν την αναζήτησή σας από %s έως %s για %s ενήλικες και %s παιδιά, αν επιλέξετε ένα διαφορετικό αριθμό δωματίων."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Συγνώμη, αλλά τα δωμάτια μας δεν είναι διαθέσιμα για την αναζήτησή σας από %s έως %s για %s ενήλικες και %s παιδιά."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="Βρέθηκαν %s δωμάτια που να ταιριάζουν στην αναζήτησή σας από %s εως %s."
SR_MOBILEPHONE="Κινητό Τηλέφωνο"
SR_RESERVATION_SAVE_ERROR="Η κράτησή σας δεν μπόρεσε να αποθηκευτεί, προσπαθήστε ξανά."
SR_EMAIL_PAYMENT_METHOD_INFO="Πληροφορίες πληρωμής"
SR_RESERVATION_COMPLETE="<h3>Ευχαριστούμε %s! Ο αριθμός κράτησής σας %s έχει ολοκληρωθεί επιτυχώς!</h3><ul><li>Εστάλη ένα email επιβεβαίωσης στο %s</li><li>Επίσης ενημερωθήκαμε %s για την επερχόμενη διαμονή σας</li><li><a href="_QQ_"%s"_QQ_">Κάντε κλικ εδώ</a> για να επιστρέψετε στην αρχική σελίδα μας.</li></ul>"
SR_EXTRA_PRICE_ADULT="Για ενήλικες"
SR_EXTRA_PRICE_CHILD="Για το παιδί"
SR_EXTRA_MORE_DETAILS="Λεπτομέρειες"
SR_EXTRA_PRICE="Τιμή"
SR_TOTAL_DISCOUNT="Συνολική έκπτωση"
SR_EMAIL_TOTAL_DISCOUNT="Συνολική έκπτωση: "
SR_ROOM_X_COST="Κόστος δωματίου"
SR_ROOM_X_DISCOUNTED_AMOUNT="Ποσό έκπτωσης δωματίου"
SR_ROOM_X_DISCOUNTED_COST="Κόστος δωματίου μετά την έκπτωση"
SR_VIEW_TARIFF_BREAKDOWN="Λεπτομέρειες"
SR_SHOW_TARIFFS="Τιμές"
SR_HIDE_TARIFFS="Τιμές"
SR_CONFIRMATION_ROOM_DETAILS="Λεπτομέρειες"
SR_CONFIRMATION_GUEST_NAME="Όνομα επισκέπτη"
SR_CONFIRMATION_ADULT_NUMBER="Αριθμός ενηλίκων"
SR_CONFIRMATION_CHILD_NUMBER="Αριθμός παιδιών"
SR_CONFIRMATION_FULLNAME="Ονοματεπώνυμο: "
SR_EXTRA="Επιπλέον"
SR_EXTRA_PER_BOOKING="Ανά κράτηση"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Ανά κράτηση"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Ανά δωμάτιο"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Ανά κράτηση ανά διανυκτέρευση"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Ανά κράτηση ανά άτομο"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Ανά δωμάτιο ανά διανυκτέρευση"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Ανά δωμάτιο ανά άτομο"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Ανά άτομο ανά διανυκτέρευση"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Ανά δωμάτιο ανά άτομο ανά διανυκτέρευση"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Τιμή για ενήλικες"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Εισάγετε την τιμή των επιπλέον υπηρεσιών για ενήλικες, στο νόμισμα των στοιχείων κράτησης."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Παιδική Τιμή"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Εισάγετε την τιμή των επιπλέον υπηρεσιών για παιδιά στο νόμισμα των στοιχείων κράτησης."

; Since 0.9.0
SR_DAYS="%d ημέρες"
SR_DAYS_1="%d μέρα"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s ημέρες"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 μέρα"
SR_LENGTH_OF_STAY="Περίοδος διαμονής"
SR_EMAIL_LENGTH_OF_STAY="Περίοδος διαμονής: "
SR_PRICE_IS_FOR_X_DAY="Η τιμή είναι για  %s ημέρες"
SR_PRICE_IS_FOR_X_DAY_1="Η τιμή είναι για  %s μέρα"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Room single supplement"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Room cost after single supplement"
JLIB_APPLICATION_SAVE_SUCCESS="Επιτυχής αποθήκευση."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Επιτυχής αποστολή."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="Νέα κράτηση %s από %s %s"
SR_RESERVATION_CODE="Κωδικός"
SR_RESERVATION_INVOICE="Τιμολόγιο"
SR_RESERVATION_CHECKIN="Άφιξη"
SR_RESERVATION_CHECKOUT="Αναχώρηση"
SR_RESERVATION_ASSET="Δωμάτιο"
SR_RESERVATION_TOTAL_PAID="Σύνολο πληρωμής"
SR_DESCRIPTION="Περιγραφή"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Αριθμός κράτησης"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Πληροφορίες κράτησης"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s δωμάτια"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s δωμάτιο"
SR_CONFIRMATION_CHECKIN="Άφιξη"
SR_CONFIRMATION_CHECKOUT="Αναχώρηση"
SR_CONFIRMATION_TOTAL_PRICE="Σύνολο τιμής"
SR_CONFIRMATION_ASSET_NAME="Όνομα"
SR_CONFIRMATION_ASSET_ADDRESS="Διεύθυνση"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Τηλέφωνο"
SR_ASSET_INFO="Πληροφορίες ξενοδοχείου"
SR_BOOKING_INFO="Πληροφορίες της κράτησής σας"
SR_BOOKING_CONFIRMATION_ADULTS="%s ενήλικες"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s ενήλικα"
SR_BOOKING_CONFIRMATION_CHILDREN="%s παιδιά"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s παιδί"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Ονοματεπώνυμο επισκέπτη"
SR_BOOKING_CONFIRMATION_SMOKING="Καπνιστών"
SR_BOOKING_CONFIRMATION_ROOM_COST="Κόστος δωματίου"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Πληροφορίες δωματίου"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Οι ημερομηνίες σας φαίνεται να είναι παρελθοντικές"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Ευχαριστούμε %s! Ο αριθμός κράτησής σας %s ολοκληρώθηκε με επιτυχία, αλλά η πληρωμή δεν έχει ολοκληρωθεί ακόμη.</h3><ul> <li>Στείλαμε ένα email επιβεβαίωσης στο %s</li><li>Ενημερώσαμε επίσης %s για την επερχόμενη διαμονή σας</li><li><a href="_QQ_"%s"_QQ_">Κάντε κλικ εδώ</a> για να επιστρέψετε την αρχική σελίδα μας.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Άκυρο. Ελάχιστη περίοδος διαμονής είναι %d νύχτες."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Άκυρο. Ελάχιστη περίοδος διαμονής είναι %d ημέρες."
SR_USER_INFO_USERNAME_PLURAL="Έχετε εισέλθει με όνομα χρήστη: %s"

; Since 0.9.4
SR_COUPON_CHECK="Έλεγχος"
SR_RESERVATION_ORIGIN_DIRECT="Άμεσος"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="Αυτός ο τύπος δωματίου απαιτεί τουλάχιστον %d άτομα και κατά μέγιστο %d άτομα."
SR_RESERVE="Κράτηση"
SR_SEARCH_ROOMS="Δωμάτια"
SR_SEARCH_ROOM="Δωμάτιο"
SR_SEARCH_ROOM_ADULTS="Ενήλικες"
SR_SEARCH_ROOM_CHILDREN="Παιδιά"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Η κράτηση ακυρώθηκε"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Η κράτηση %s από %s %s ακυρώθηκε"
SR_EMAIL_GREETING_TEXT_CANCELLED="Η κράτησή σας %s σε %s ακυρώθηκε."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Η κράτηση %s ακυρώθηκε, δείτε τις λεπτομέρειες παρακάτω ή <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">κάντε κλιμ εδώ</a> για να τις δείτε:</p>"
SR_EMAIL_COUPON_CODE="Κωδικός κουπονιού: "

; Since 1.8.0
SR_FULLNAME="Ονοματεπώνυμο"
SR_MESSAGE="Μήνυμα"
SR_SEND_MESSAGE="Αποστολή"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Διερεύνηση κράτησης από %s για %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Ευχαριστούμε, η ερώτησή σας εστάλη επιτυχώς. Θα σας απαντήσουμε το συντομότερο δυνατόν."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Ανά κράτηση ανά διαμονή (νύχτα ή μέρα)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Ανά δωμάτιο ανά διαμονή"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Ανά δωμάτιο ανά άτομο ανά διαμονή"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Ποσοστό της ημερήσιας τιμής δωματίου"
SR_EXTRA_PRICE_DAILY_RATE="%s κόστη %d ποσοστό της ημερήσιας τιμής δωματίου ανά διαμονή"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Ο χρόνος παραμονής σας εδώ τελειώνει σύντομα."
SR_WARNING_SESSION_EXPIRED="Ο χρόνος παραμονής σας εδώ τελείωσε, <a href="_QQ_"#"_QQ_">κάντε κλικ εδώ</a> για να ξεκινήσετε πάλι."
SR_WEBSITE="Website"
SR_YOUR_STAY="Η διαμονή σας"
SR_AVAILABLE_ROOMS="Διαθέσιμο Δωμάτιο"
SR_MAX_GUESTS="Επισκέπτες κατά μέγιστο"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Κράτηση τώρα"
SR_TARIFF_PACKAGE_PER_ROOM="Πακέτο ανά δωμάτιο"
SR_TARIFF_PACKAGE_PER_PERSON="Πακέτο ανά άτομο"
SR_TARIFF_PER_ROOM_PER_NIGHT="Τιμή δωματίου ανά διαμονή"
SR_TARIFF_PER_PERSON_PER_NIGHT="Τιμή ανά άτομο ανά διαμονή"
SR_ROOM_X_EXTRA_AMOUNT="Τιμή πρόσθετων υπηρεσιών δωματίου"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Η κράτησή σας τροποποιήθηκε επιτυχώς"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Αποστολή emails;"
SR_FIELD_COUNTRY_SELECT=" - Επιλέξτε Χώρα - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Επεξεργασία της online πληρωμής;"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Η κράτησή σας προστέθηκε επιτυχώς"
SR_SELECT_BED_QUANTITY="%s κρεβάτια"
SR_SELECT_BED_QUANTITY_1="1 κρεβάτι"
SR_BED="Κρεβάτι"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Ευχαριστούμε %s! Η κράτησή σας εστάλη επιτυχώς, θα σας απαντήσουμε το συντομότερο δυνατόν για την επικύρωσή της.</h3><ul><li><a href="_QQ_"%s"_QQ_">Κάντε κλικ εδώ </a> για να επιστρέψετε στην αρχική σελίδα μας.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Ο αριθμός κράτησής σας %s ακυρώθηκε.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Κάντε κλικ εδώ </a> για να επιστρέψετε στην αρχική σελίδα μας.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Τουριστικός φόρος"
SR_EMAIL_TOURIST_TAX="Τουριστικός φόρος: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s επιβάρυνση"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s έκπτωση"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s επιβάρυνση: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s έκπτωση: "
SR_CONFIRMATION_GUEST_NUMBER="Αριθμός επισκεπτών"
SR_SELECT_GUEST_QUANTITY="%s επισκέπτες"
SR_SELECT_GUEST_QUANTITY_1="1 επισκέπτης"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Πληροφορίες για δωμάτια και τιμές"
SR_CONFIRMATION_PAYMENT_METHOD="Μέθοδος πληρωμής: "
SR_CONFIRMATION_MOBILE="Κινητό τηλέφωνο: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Οφειλόμενο"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Πληρωμένο"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Ακυρωμένο"
SR_RESERVATION_PAYMENT_STATUS_PENDING="Εκκρεμεί"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ κρεβάτι "
SR_WE_HAVE_X_BED_LEFT="Έχουν μείνει %s κρεβάτια"
SR_WE_HAVE_X_BED_LEFT_1="Έχει μείνει %s κρεβάτι!"
SR_ONLY_1_LEFT_BED="Τελευταία ευκαιρία! Έχει μείνει 1 κρεβάτι"
SR_ONLY_2_LEFT_BED="Έχουν μείνει μόνον 2 κρεβάτια"
SR_ONLY_3_LEFT_BED="Έχουν μείνει μόνον 3 κρεβάτια"
SR_ONLY_4_LEFT_BED="Έχουν μείνει μόνον 4 κρεβάτια"
SR_ONLY_5_LEFT_BED="Έχουν μείνει μόνον 5 κρεβάτια"
SR_ONLY_6_LEFT_BED="Έχουν μείνει μόνον 6 κρεβάτια"
SR_ONLY_7_LEFT_BED="Έχουν μείνει μόνον 7 κρεβάτια"
SR_ONLY_8_LEFT_BED="Έχουν μείνει μόνον 8 κρεβάτια"
SR_ONLY_9_LEFT_BED="Έχουν μείνει μόνον 9 κρεβάτια"
SR_ONLY_10_LEFT_BED="Έχουν μείνει μόνον 10 κρεβάτια"
SR_ONLY_11_LEFT_BED="Έχουν μείνει μόνον 11 κρεβάτια"
SR_ONLY_12_LEFT_BED="Έχουν μείνει μόνον 12 κρεβάτια"
SR_ONLY_13_LEFT_BED="Έχουν μείνει μόνον 13 κρεβάτια"
SR_ONLY_14_LEFT_BED="Έχουν μείνει μόνον 14 κρεβάτια"
SR_ONLY_15_LEFT_BED="Έχουν μείνει μόνον 15 κρεβάτια"
SR_ONLY_16_LEFT_BED="Έχουν μείνει μόνον 16 κρεβάτια"
SR_ONLY_17_LEFT_BED="Έχουν μείνει μόνον 17 κρεβάτια"
SR_ONLY_18_LEFT_BED="Έχουν μείνει μόνον 18 κρεβάτια"
SR_ONLY_19_LEFT_BED="Έχουν μείνει μόνον 19 κρεβάτια"
SR_ONLY_20_LEFT_BED="Έχουν μείνει μόνον 20 κρεβάτια"
SR_DUE_AMOUNT="Σύνολο οφειλόμενου ποσού"
SR_EMAIL_DUE_AMOUNT="Οφειλόμενο ποσό: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Η κράτησή σας ακυρώθηκε."
SR_CHECKIN_PLACEHOLDER="Η ημερομηνία άφιξής σας"
SR_CHECKOUT_PLACEHOLDER="Η ημερομηνία αναχώρησής σας"
SR_CHOOSE_ANOTHER_CHECKIN="Επιλέξτε άλλη ημερομηνία άφιξης"
SR_WARNING_SESSION_RENEW="Ανανέωση"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Enter your email"
SR_ENTER_YOUR_RESERVATION_CODE="Enter your reservation code"
SR_FIND_RESERVATION="Find reservation"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reservation code %s found."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="We can not find any reservations with your given information, please recheck your information and try again."
SR_RESERVATION_STATUS_FORMAT="Reservation status: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Show property's reservation tracking form"
SR_TRACKING_VIEW_DEFAULT_DESC="Allow guests check their reservation using reservation code + email address"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ 1 person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s people "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/pt-BR/pt-BR.com_solidres.ini000060400000072556150751740420013401 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Criterio de Pesquisa"
SR_SEARCH_FIELD_COUNTRY="País"
SR_SEARCH_FIELD_STATE="Estado"
SR_SEARCH_FIELD_CITY="Cidade"
SR_SEARCH_CHECKIN_DATE="Data de Check-in"
SR_SEARCH_CHECKOUT_DATE="Data de Check-out"
SR_SEARCH="Pesquisar"
SR_RESET="Reset"
SR_REMEMBER_ME="Lembrar"
SR_FORGOT_YOUR_PASSWORD="Esqueceu sua senha"
SR_FORGOT_YOUR_USERNAME="Esqueceu seu nome de usuário"
SR_REGISTER="Registrar"
SR_SELECTED_RESERVATION_ASSET="Hotel selecionado"
SR_STAYING_INFO="Informação da Estadia"
SR_NUMBER_OF_ROOM="Aptos"
SR_GUEST_PER_ROOM="Hóspedes por apto"
SR_ROOM_RATE_INFO="Informação de tarifas"
SR_ROOM_DESCRIPTION="Descrição do apto"
SR_ROOM_RATE_TYPE="Tipo de Tarifa"
SR_GUEST_INFO="Informação do Hóspede"
SR_FIRSTNAME="Nome"
SR_LASTNAME="Sobrenome"
SR_EMAIL="Email"
SR_PHONENUMBER="Telefone"
SR_CONTACT_INFO="Informação de contato"
SR_HOLD_GUARANTEE_INFO="Informação de garantia"
SR_ARRIVAL_INFO="Informação de chegada"
SR_TRAVEL_INFO="Informação de viagem"
SR_COMPANY="Empresa"
SR_ADDRESS_1="Endereço 1"
SR_ADDRESS_2="Endereço 2"
SR_CITY="Cidade"
SR_ZIP="CEP/Código postal"
SR_STATE="Estado/Provincia"
SR_COUNTRY="Pais"
SR_TRAVEL_FOR_BUSINESS="Productividade/Negócios"
SR_TRAVEL_FOR_BUSINESS_DESC="Gostaria de contar com a posibilidade de trabalhar em quanto estou viajando"
SR_TRAVEL_FOR_RELAX="Relax / Descanso"
SR_TRAVEL_FOR_RELAX_DESC="Gosto de relaxar e descansar nas minhas viagens."
SR_TRAVEL_FOR_ENTERTAINMENT="Entretenimento/Atrações"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Gostaria de me divertir e ver o melhor do destino."
SR_TRAVEL_FOR_FAMILY="Família"
SR_TRAVEL_FOR_FAMILY_DESC="Férias o evento em família."
SR_TRAVEL_FOR_HONEYMOON="Lua de Mel"
SR_TRAVEL_FOR_HONEYMOON_DESC="Estarei na minha Lua de Mel."
SR_COMMENT="Comentários"
SR_COMMENT_DESC="Por favor, deixe aqui seus coméntarios."
SR_TAX="Taxas"
SR_RULE_RESTRICTION=""
SR_SELECT_TARIFF="Selecionar"
SR_SHOW_MAP="Mostrar Mapa"
SR_READMORE="Ver mais"
SR_PRICE_FROM="Preço de"
SR_FIELD_RESERVE="Reserve Agora"
SR_FIELD_CONDITIONS="Condições"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Pesquise usando o formulário  abaixo"
SR_NO_ROOM_AVAILABLE="Não há apartamentos disponíveis para esta data"
SR_MAX="Max pessoas permitidas"
SR_HAS_ROOM_AVAILABLE="Disponível"
SR_AVAILABILITY="Disponibilidade"
SR_AVAILABLE_ROOM_TYPES="Tipos de aptos disponíveis"
SR_VIEW_GALLERY="Ver galeria"
SR_YOUR_SEARCH_INFORMATION="Informação de busca"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Checkin:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Checkout:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Total de adultos por apto:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Total de crinças por apto:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Continue"
SR_EXTRA_PACKAGES="Pacotes extra"
SR_ROOM_TYPE_NAME="Tipo de apto"
SR_ROOM_TYPE_QUANTITY="Quantidade"
SR_ROOM_TYPE_GUEST_PER_ROOM="Hóspedes por apto"
SR_NUMBER_OF_NIGHT="Número de diárias"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Apto & Tarifa"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Pacotes extra"
SR_RESERVATION_PROGRESS_GUEST_INFO="Informação do Hóspede"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Informação de Pagamento"
SR_RESERVATION_CONFIRMATION="Confirmação"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Finalizar"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Cheque/Dinheiro"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="A quantidade de aptos selecionada excede o número de aptos disponíveis, por favor <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">clique aqui</a> para voltar e fazer outra escolha."
SR_CHANGE="Alterar datas"
SR_NOTE="Nota"
SR_MIDDLENAME="Segundo Nome"
SR_RESERVATION_PROGRESS_DATES="Datas & Preferencias"
SR_ROOM_SELECTION="Escolha de Aptos"
SR_ROOM_TYPE_ADULT_PER_ROOM="Adultos por apto"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Crianças por apto"
SR_ROOM_TYPE_GUEST_NAME="Nome do Hóspede"
SR_RESERVATION_NOTICE_CONFIRMATION="Por favor confira sua reserva e clique no botão abaixo para confirmar sua reserva. Um email de confirmação será enviado para o endereço registrado."
SR_SEARCH_COUPON="Cupom"
SR_MAXIMUM_OCCUPANCY="Ocupação máxima"
SR_OCCUPANCY_ADULT="Adulto(s)"
SR_OCCUPANCY_CHILD="Criança(s)"
SR_NIGHTS="%d diárias"
SR_NIGHTS_1="%d diária"
SR_TOTAL_ROOM_COST_TAX_EXCL="Custo total do Apto (sem taxas)"
SR_TOTAL_ROOM_COST_TAX_INCL="Custo total do Apto (taxas inclusas)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Custo total de Extras(sem taxas)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Custo total de Extras (taxas inclusas)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Total de taxa extra"
SR_PRICE_FOR_X_NIGHTS="Preço por %d diárias"
SR_ROOM_TYPE="Tipos de apto"
SR_NUMBER_OF_ROOMS="Número de aptos"
SR_TARIFF_BREAK_DOWN="Rate break down"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Número de adultos"
SR_SEARCH_CHILDREN_NUMBER="Número de crianças"
SR_NO_TARIFF_AVAILABLE="Tarifa não disponível"
SR_EMAIL_RESERVATION_COMPLETE="Sua reserva está completa"

; Extra
SR_RESERVATION_EXTRA="Nome"
SR_RESERVATION_EXTRA_COST="Custo"
SR_RESERVATION_EXTRA_QUANTITY="Quantidade"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="O email com os detalhes da sua reserva não pode ser enviado."

SR_BOOK_NOW="Reserve agora"
SR_TOTAL_PRICE="Preço total"
SR_TAX_7_NOT_INCLUDED="TAX (7%) not included"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Service charge (10.70%) not included"

SR_RESERVATION_NOTE="Insira as informações  que deseje enviar junto com sua reserva. O hotel não pode garantir pedidos adicionais, mais teremos em conta sua solicitação."
SR_ASK_FOR_CHECKIN_CHECKOUT="Para verificar tarifas e disponibilidade, por favor insira as datas de check-in e check-out no formulário"
SR_GRAND_TOTAL="Total Geral"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Instalações"
SR_CUSTOMFIELD_POLICIES="Políticas"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Redes sociais"
SR_CUSTOMFIELD_GENERAL="Geral"
SR_CUSTOMFIELD_ACTIVITIES="Atividades"
SR_CUSTOMFIELD_SERVICES="Serviços"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Estacionamento"
SR_CUSTOMFIELD_CHECKIN="Checkin"
SR_CUSTOMFIELD_CHECKOUT="Checkout"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Cancelamento / Pré-pagamento"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Crianças e camas extras"
SR_CUSTOMFIELD_PETS="Animais"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Cartões de crédito aceitos"
SR_BREAKFAST_INCLUDED="Café da manhã incluso"
SR_BREAKFAST_EXCLUDED="Café da manhã não incluso"
SR_FREE_CANCELLATION="Cancelamento sem custo"
SR_NON_REFUNDABLE="Não reembolsável"
SR_ROOM_OCCUPANCY="Ocupação do apto"
SR_TAXES="Taxas"
SR_PREPAYMENT="Pré-pagamento"
SR_ROOM_FACILITIES="Instalaçoes no apto"
SR_ROOM_SIZE="Tamanho do apto"
SR_BED_SIZE="Tipo de cama"

SR_COUPON_ENTER="Insira código de cupom (Opcional)"
SR_COUPON_ACCEPTED="Cupom aceito"
SR_COUPON_REJECTED="Cupom não válido"
SR_APPLY_COUPON="Aplicar cupom"

SR_ROOM_AVAILABLE_FROM_TO="Apartamentos disponíveis de %s a %s"
SR_APPLIED_COUPON="Cupom aplicado"
SR_REMOVE="Remover"
SR_CAN_NOT_REMOVE_COUPON="Não é possível remover cupom"
SR_AVAILABILITY_CALENDAR="Calendário de disponibilidade"
SR_AVAILABILITY_CALENDAR_VIEW="Ver calendário de disponibilidade"

SR_AVAILABILITY_CALENDAR_BUSY="Não disponível"
SR_FEATURED_ROOM_TYPE="Destacado"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Por favor selecione um tipo de apto para continuar."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Data inválida. Reserve um mínimo de %d diárias e não mais que %d diárias. A permanência mínima é de %d diárias."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Data inválida. Data de Check out deve ser posterior à data de Check in."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Data inválida. A permanência mínima é de %d diárias."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Data inválida. Reserve pelo menos %d diárias a partir da sua chegada."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Data inválida. Reserve um máximo de %d diárias a partir da sua chegada."
SR_NEXT="Próximo"
SR_BACK="Atrás"
SR_CUSTOMER_TITLE="Título"
SR_CUSTOMER_TITLE_MR="Sr."
SR_CUSTOMER_TITLE_MRS="Sra."
SR_CUSTOMER_TITLE_MS="Senhorita"
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Selecione ao lado a quantidade de aptos. e logo abaixo a quantidade de hóspedes para obter a tarifa."
SR_ERROR_CHILD_MAX_AGE="As idades devem ser entre"
SR_BOOKING_CONDITIONS="Condições da reserva"
SR_PRIVACY_POLICY="Politica de Privacidade"
SR_ROOM_COST="Valor total de diárias: "
SR_ENHANCE_YOUR_STAY="Faça mais confortável sua estadia"
SR_I_AGREE_WITH="Concordo com "
SR_GUEST_INFORMATION="Informação do hóspede"
SR_PAYMENT_INFO="Informação de pagamento"
SR_GUEST_INFO_STEP_NOTICE="Por favor, preencha com seus dados e método de pagamento."
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Selecione o tipo de apartamento, confira os preços e clique em Próximo para continuar"
SR_AGE_OF_CHILD_AT_CHECKOUT="Idade das crianças"
SR_GUEST_NAME="Nome do Hóspede"
SR_ROOM="Apartamento"
SR_CHILD="Crianças"
SR_ADULT="Adultos"
SR_ROOMTYPE_QUANTITY="Quantidade de Aptos"
SR_AND="e"
SR_STEP_ROOM_AND_RATE="Apartamentos & Tarifas"
SR_STEP_GUEST_INFO_AND_PAYMENT="Informação & Pagamento"
SR_STEP_CONFIRMATION="Confirmação"
SR_PAYMENT_METHOD_PAYLATER="Pague no Check-in"
SR_PAYMENT_METHOD_BANKWIRE="Tranferência Bancaria"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Tenha em mente que o seu pagamento demorará uns dias. Na nota de pagamento, por favor envie seu código de reserva para agilizar o processo."
SR_PROCESSING="Processando..."

; Since 0.6.0
SR_STAR="estrela"
SR_STARS="estrelas"
JGLOBAL_FIELDSET_PUBLISHING="Publicação"
JTOOLBAR_APPLY="Salvar"
JTOOLBAR_ARCHIVE="Arquivar"
JTOOLBAR_ASSIGN="Assign"
JTOOLBAR_BACK="Atrás"
JTOOLBAR_BATCH="Batch"
JTOOLBAR_CANCEL="Cancelar"
JTOOLBAR_CHECKIN="Check In"
JTOOLBAR_CLOSE="Fechar"
JTOOLBAR_DEFAULT="Default"
JTOOLBAR_DELETE="Apagar"
JTOOLBAR_DISABLE="Desativar"
JTOOLBAR_DUPLICATE="Duplicar"
JTOOLBAR_EDIT="Editar"
JTOOLBAR_EDIT_CSS="Editar CSS"
JTOOLBAR_EDIT_HTML="Editar HTML"
JTOOLBAR_EMPTY_TRASH="Esvaziar lixeira"
JTOOLBAR_ENABLE="Ativar"
JTOOLBAR_EXPORT="Exportar"
JTOOLBAR_HELP="Ajuda"
JTOOLBAR_INSTALL="Instalar"
JTOOLBAR_NEW="Novo"
JTOOLBAR_OPTIONS="Opções"
JTOOLBAR_PUBLISH="Publicar"
JTOOLBAR_PURGE_CACHE="Limpar cache"
JTOOLBAR_REBUILD="Reconstruir"
JTOOLBAR_REFRESH_CACHE="Refrescar cache"
JTOOLBAR_REMOVE="Remover"
JTOOLBAR_SAVE="Salvar &amp; Fechar"
JTOOLBAR_SAVE_AND_NEW="Salvar &amp; Novo"
JTOOLBAR_SAVE_AS_COPY="Salvar como Cópia"
JTOOLBAR_UNARCHIVE="Desarquivar"
JTOOLBAR_UNINSTALL="Desinstalar"
JTOOLBAR_UNPUBLISH="Despublicar"
JTOOLBAR_UPLOAD="Upload"
JTOOLBAR_TRASH="Lixeira"
JTOOLBAR_UNTRASH="Tirar da lixeira"
JTOOLBAR_REBUILD_SUCCESS="Reconstruido com sucesso"
JTOOLBAR_VERSIONS="Versões"
SR_SEARCH_LOCATION="Local"
SR_DASHBOARD="Painel"
SR_PHONE="Fone"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Valor do depósito"
SR_TOTAL_ROOM_TAX="Total tasa do apto"

; Since 0.7.0
SR_STANDARD_TARIFF="Standard rate"
SR_SEARCH_RESET="Reset"
SR_SELECT_A_TARIFF="Select a rate"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="We have no availability for this room type between %s and %s. <a href="_QQ_"%s"_QQ_">Click here to start over by changing your dates.</a>"
SR_SELECT_A_TARIFF_FIRST="Please select a rate first."
SR_SMOKING="Smoking options"
SR_SMOKING_ROOM="Smoking room"
SR_NON_SMOKING_ROOM="Non smoking room"
SR_SELECT_ROOM_QUANTITY="%s rooms"
SR_SELECT_ROOM_QUANTITY_1="1 room"
SR_SELECT_ADULT_QUANTITY="%s adults"
SR_SELECT_ADULT_QUANTITY_1="1 adult"
SR_SELECT_CHILD_QUANTITY="%s children"
SR_SELECT_CHILD_QUANTITY_1="1 child"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s nights"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 night"
SR_TARIFF_SUFFIX_PER_ROOM="/ room "
SR_CHILD_AGE_SELECTION="%s years old"
SR_CHILD_AGE_SELECTION_1="%s year old"
SR_CHILD_AGE_SELECTION_JS="years old"
SR_CHILD_AGE_SELECTION_1_JS="year old"
SR_EMAIL_CONFIRM_RESERVATION="Reservation confirmation"
SR_EMAIL_REF_ID="Reference ID: %s"
SR_EMAIL_GREETING_NAME="Dear %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Thank you for your reservation at %s. Should you have any further information, please do not hesitate to contact us at any time.</p><p>We are pleased to confirm your reservation as follows:</p>"
SR_EMAIL_CHECKIN="Checkin: "
SR_EMAIL_CHECKOUT="Checkout: "
SR_EMAIL_PAYMENT_METHOD="Payment method: "
SR_EMAIL_EMAIL="Email: "
SR_EMAIL_NUM_NIGHT="Number of nights: "
SR_EMAIL_SUB_TOTAL="Room cost (excl tax): "
SR_EMAIL_TAX="Room cost tax: "
SR_EMAIL_GRAND_TOTAL="Grand total: "
SR_EMAIL_DEPOSIT_AMOUNT="Deposit Amount: "
SR_EMAIL_EXTRAS_ITEMS="Extras items: "
SR_EMAIL_CONNECT_WITH_US="Connect With Us: "
SR_EMAIL_CONTACT_INFO="Contact Info: "
SR_EMAIL_ADDRESS="Address: "
SR_EMAIL_PHONE="Phone: "
SR_EMAIL_OTHER_INFO="Other info"
SR_EMAIL_EXTRA_QUANTITY="Quantity: "
SR_EMAIL_EXTRA_PRICE="Price: "
SR_EMAIL_NOTE="Note: "
SR_EMAIL_BANKWIRE_INFO="Bankwire info"
SR_EMAIL_NOTIFICATION_RESERVATION="Reservation Notification"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>A new reservation has been made, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Hello,"
SR_EMAIL_EXTRA_TAX_EXCL="Extra cost (excl tax): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Extra tax: "
SR_VAT_NUMBER="VAT Number (Optional)"
SR_PASSWORD="Password"
SR_USERNAME="Username"
SR_WE_HAVE_X_ROOM_LEFT="We have %s rooms left"
SR_WE_HAVE_X_ROOM_LEFT_1="We have %s room left!"
SR_ONLY_1_LEFT="Last chance! Only 1 room left"
SR_ONLY_2_LEFT="Only 2 rooms left"
SR_ONLY_3_LEFT="Only 3 rooms left"
SR_ONLY_4_LEFT="Only 4 rooms left"
SR_ONLY_5_LEFT="Only 5 rooms left"
SR_ONLY_6_LEFT="Only 6 rooms left"
SR_ONLY_7_LEFT="Only 7 rooms left"
SR_ONLY_8_LEFT="Only 8 rooms left"
SR_ONLY_9_LEFT="Only 9 rooms left"
SR_ONLY_10_LEFT="Only 10 rooms left"
SR_ONLY_11_LEFT="Only 11 rooms left"
SR_ONLY_12_LEFT="Only 12 rooms left"
SR_ONLY_13_LEFT="Only 13 rooms left"
SR_ONLY_14_LEFT="Only 14 rooms left"
SR_ONLY_15_LEFT="Only 15 rooms left"
SR_ONLY_16_LEFT="Only 16 rooms left"
SR_ONLY_17_LEFT="Only 17 rooms left"
SR_ONLY_18_LEFT="Only 18 rooms left"
SR_ONLY_19_LEFT="Only 19 rooms left"
SR_ONLY_20_LEFT="Only 20 rooms left"
SR_SHOW_MORE_INFO="More info"
SR_HIDE_MORE_INFO="Hide info"
SR_AVAILABILITY_CALENDAR_CLOSE="Close calendar"
SR_STARTING_FROM="Starting from"
SR_SELECT="Select"
SU="Su"
MO="Mo"
TU="Tu"
WE="We"
TH="Th"
FR="Fr"
SA="Sa"
SR_USERNAME_EXISTS="Username exists. Please choose another one."
JFIELD_METADATA_ROBOTS_DESC="Robots Instructions"
JFIELD_METADATA_ROBOTS_LABEL="Robots"
JFIELD_XREFERENCE_DESC="An optional field to allow this record to be cross-referenced to an external data system if required."
JFIELD_XREFERENCE_LABEL="External Reference"
JCLEAR="Clear"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Register with us for future convenience: fast and easy booking. Please enter your desired username and password in the following fields."
SR_PRICE_IS_FOR_X_NIGHT="Price is for %s nights"
SR_PRICE_IS_FOR_X_NIGHT_1="Price is for %s night"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="We found no matched rooms for your search from %s to %s, please adjust your booking dates or room options."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="We found %s rooms that matched your search from %s to %s for %s adult(s) and %s child(ren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="We have less than your number of requested rooms, but our current available rooms (%s) could satisfy your search from %s to %s for %s adult(s) and %s child(ren) if you select a different number of rooms."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Sorry but our rooms are not available for your search from %s to %s for %s adult(s) and %s child(ren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="We found %s rooms that matched your search from %s to %s."
SR_MOBILEPHONE="Mobile phone"
SR_RESERVATION_SAVE_ERROR="Your reservation could not be saved, please try again."
SR_EMAIL_PAYMENT_METHOD_INFO="Payment information"
SR_RESERVATION_COMPLETE="<h3>Thank you %s! Your reservation number %s has been completed successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_EXTRA_PRICE_ADULT="For adult"
SR_EXTRA_PRICE_CHILD="For child"
SR_EXTRA_MORE_DETAILS="Details"
SR_EXTRA_PRICE="Price"
SR_TOTAL_DISCOUNT="Total discount"
SR_EMAIL_TOTAL_DISCOUNT="Total discount: "
SR_ROOM_X_COST="Room cost"
SR_ROOM_X_DISCOUNTED_AMOUNT="Room discounted amount"
SR_ROOM_X_DISCOUNTED_COST="Room cost after discounted"
SR_VIEW_TARIFF_BREAKDOWN="Details"
SR_SHOW_TARIFFS="Rates"
SR_HIDE_TARIFFS="Rates"
SR_CONFIRMATION_ROOM_DETAILS="Details"
SR_CONFIRMATION_GUEST_NAME="Guest name"
SR_CONFIRMATION_ADULT_NUMBER="Adult number"
SR_CONFIRMATION_CHILD_NUMBER="Child number"
SR_CONFIRMATION_FULLNAME="Your full name: "
SR_EXTRA="Extra"
SR_EXTRA_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Per room"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Per booking per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Per booking per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Per room per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Per room per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Per person per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Per room per person per night"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Price for adult"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Enter the price for adult of this Extra/Service. The currency of Property will apply here."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Price for child"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Enter the price for child of this Extra/Service. The currency of Property will apply here."

; Since 0.9.0
SR_DAYS="%d days"
SR_DAYS_1="%d day"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s days"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 day"
SR_LENGTH_OF_STAY="Length of stay"
SR_EMAIL_LENGTH_OF_STAY="Length of stay: "
SR_PRICE_IS_FOR_X_DAY="Price is for %s days"
SR_PRICE_IS_FOR_X_DAY_1="Price is for %s day"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Room single supplement"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Room cost after single supplement"
JLIB_APPLICATION_SAVE_SUCCESS="Item successfully saved."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Item successfully submitted."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="New reservation %s from %s %s"
SR_RESERVATION_CODE="Code"
SR_RESERVATION_INVOICE="Invoice"
SR_RESERVATION_CHECKIN="Checkin"
SR_RESERVATION_CHECKOUT="Checkout"
SR_RESERVATION_ASSET="Property"
SR_RESERVATION_TOTAL_PAID="Total paid"
SR_DESCRIPTION="Description"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Booking number"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Booking details"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s rooms"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s room"
SR_CONFIRMATION_CHECKIN="Check-in"
SR_CONFIRMATION_CHECKOUT="Check-out"
SR_CONFIRMATION_TOTAL_PRICE="Total price"
SR_CONFIRMATION_ASSET_NAME="Name"
SR_CONFIRMATION_ASSET_ADDRESS="Address"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Phone"
SR_ASSET_INFO="Hotel information"
SR_BOOKING_INFO="Your booking information"
SR_BOOKING_CONFIRMATION_ADULTS="%s adults"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s adult"
SR_BOOKING_CONFIRMATION_CHILDREN="%s children"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s child"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Guest full name"
SR_BOOKING_CONFIRMATION_SMOKING="Smoking"
SR_BOOKING_CONFIRMATION_ROOM_COST="Room cost"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Room details"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Your dates appear to be in the past"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Thank you %s! Your reservation number %s has been completed successfully but the payment is not yet completed.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Invalid. Minimum length of stay is %d days."
SR_USER_INFO_USERNAME_PLURAL="You have logged with username: %s"

; Since 0.9.4
SR_COUPON_CHECK="Check"
SR_RESERVATION_ORIGIN_DIRECT="Direct"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="This room type requires at least %d people and maximum %d people."
SR_RESERVE="Reserve"
SR_SEARCH_ROOMS="Rooms"
SR_SEARCH_ROOM="Room"
SR_SEARCH_ROOM_ADULTS="Adults"
SR_SEARCH_ROOM_CHILDREN="Children"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Reservation has been cancelled"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Reservation %s from %s %s has been cancelled"
SR_EMAIL_GREETING_TEXT_CANCELLED="Your reservation %s at %s has been cancelled."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Reservation %s has been cancelled, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_COUPON_CODE="Coupon code: "

; Since 1.8.0
SR_FULLNAME="Full name"
SR_MESSAGE="Message"
SR_SEND_MESSAGE="Send message"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Booking inquiry from %s for %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Thank you, your inquiry has been sent successfully. We will get back to you as soon as possible."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per booking per stay (night or day)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Per room per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per room per person per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Percentage of room's daily rate"
SR_EXTRA_PRICE_DAILY_RATE="%s costs %d percent of room daily rate per stay"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Your session is expiring soon."
SR_WARNING_SESSION_EXPIRED="Your session has been expired, <a href="_QQ_"#"_QQ_">click here</a> to start a new session."
SR_WEBSITE="Website"
SR_YOUR_STAY="Your stay"
SR_AVAILABLE_ROOMS="Available room"
SR_MAX_GUESTS="Max guests"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Book Now"
SR_TARIFF_PACKAGE_PER_ROOM="Package per room"
SR_TARIFF_PACKAGE_PER_PERSON="Package per person"
SR_TARIFF_PER_ROOM_PER_NIGHT="Rate per room per stay"
SR_TARIFF_PER_PERSON_PER_NIGHT="Rate per person per stay"
SR_ROOM_X_EXTRA_AMOUNT="Room extras item cost"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Your reservation has been amended successfully"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Send outgoing emails?"
SR_FIELD_COUNTRY_SELECT=" - Select Country - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Process online payment?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Your reservation has been added successfully"
SR_SELECT_BED_QUANTITY="%s beds"
SR_SELECT_BED_QUANTITY_1="1 bed"
SR_BED="Bed"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Thank you %s! Your reservation request %s has been sent to us, we will get back to you as soon as possible to confirm this reservation.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Your reservation number %s has been cancelled.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Tourist tax"
SR_EMAIL_TOURIST_TAX="Tourist tax: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount: "
SR_CONFIRMATION_GUEST_NUMBER="Guest number"
SR_SELECT_GUEST_QUANTITY="%s guests"
SR_SELECT_GUEST_QUANTITY_1="1 guest"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Rooms and rates information"
SR_CONFIRMATION_PAYMENT_METHOD="Payment method: "
SR_CONFIRMATION_MOBILE="Mobile phone: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Unpaid"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Paid"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Cancelled"
SR_RESERVATION_PAYMENT_STATUS_PENDING="Pending"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ bed "
SR_WE_HAVE_X_BED_LEFT="We have %s beds left"
SR_WE_HAVE_X_BED_LEFT_1="We have %s bed left!"
SR_ONLY_1_LEFT_BED="Last chance! Only 1 bed left"
SR_ONLY_2_LEFT_BED="Only 2 beds left"
SR_ONLY_3_LEFT_BED="Only 3 beds left"
SR_ONLY_4_LEFT_BED="Only 4 beds left"
SR_ONLY_5_LEFT_BED="Only 5 beds left"
SR_ONLY_6_LEFT_BED="Only 6 beds left"
SR_ONLY_7_LEFT_BED="Only 7 beds left"
SR_ONLY_8_LEFT_BED="Only 8 beds left"
SR_ONLY_9_LEFT_BED="Only 9 beds left"
SR_ONLY_10_LEFT_BED="Only 10 beds left"
SR_ONLY_11_LEFT_BED="Only 11 beds left"
SR_ONLY_12_LEFT_BED="Only 12 beds left"
SR_ONLY_13_LEFT_BED="Only 13 beds left"
SR_ONLY_14_LEFT_BED="Only 14 beds left"
SR_ONLY_15_LEFT_BED="Only 15 beds left"
SR_ONLY_16_LEFT_BED="Only 16 beds left"
SR_ONLY_17_LEFT_BED="Only 17 beds left"
SR_ONLY_18_LEFT_BED="Only 18 beds left"
SR_ONLY_19_LEFT_BED="Only 19 beds left"
SR_ONLY_20_LEFT_BED="Only 20 beds left"
SR_DUE_AMOUNT="Total due amount"
SR_EMAIL_DUE_AMOUNT="Due Amount: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Your reservation has been cancelled."
SR_CHECKIN_PLACEHOLDER="Your check-in date"
SR_CHECKOUT_PLACEHOLDER="Your check-out date"
SR_CHOOSE_ANOTHER_CHECKIN="Please choose another check-in date"
SR_WARNING_SESSION_RENEW="Renew"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Enter your email"
SR_ENTER_YOUR_RESERVATION_CODE="Enter your reservation code"
SR_FIND_RESERVATION="Find reservation"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reservation code %s found."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="We can not find any reservations with your given information, please recheck your information and try again."
SR_RESERVATION_STATUS_FORMAT="Reservation status: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Show property's reservation tracking form"
SR_TRACKING_VIEW_DEFAULT_DESC="Allow guests check their reservation using reservation code + email address"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ 1 person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s people "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/ar-AA/ar-AA.com_solidres.ini000060400000074121150751740420013261 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="معايير البحث"
SR_SEARCH_FIELD_COUNTRY="البلد"
SR_SEARCH_FIELD_STATE="الدوله"
SR_SEARCH_FIELD_CITY="المدينه"
SR_SEARCH_CHECKIN_DATE="تاريخ الوصول"
SR_SEARCH_CHECKOUT_DATE="تاريخ المغادره"
SR_SEARCH="بحث"
SR_RESET="اعاده تعيين"
SR_REMEMBER_ME="تذكرني"
SR_FORGOT_YOUR_PASSWORD="نسيت كلمه السر"
SR_FORGOT_YOUR_USERNAME="نسيت اسم المستخدم"
SR_REGISTER="سجل معنا"
SR_SELECTED_RESERVATION_ASSET="اختر الفندق"
SR_STAYING_INFO="معلومات الاقامه"
SR_NUMBER_OF_ROOM="غرف"
SR_GUEST_PER_ROOM="نزيل بالغرفه"
SR_ROOM_RATE_INFO="معلومات تسعير الغرفه"
SR_ROOM_DESCRIPTION="وصف الغرفه"
SR_ROOM_RATE_TYPE="نوعيه تسعير الغرفه"
SR_GUEST_INFO="معلومات النزيل"
SR_FIRSTNAME="الاسم الاول"
SR_LASTNAME="الاسم الاخير"
SR_EMAIL="البريد الالكتروني"
SR_PHONENUMBER="رقم التليفون"
SR_CONTACT_INFO="معلومات الاتصال"
SR_HOLD_GUARANTEE_INFO="Hold/Guarantee information"
SR_ARRIVAL_INFO="معلومات القدوم"
SR_TRAVEL_INFO="معلومات السفر"
SR_COMPANY="الشركه (Optional)"
SR_ADDRESS_1="العنوان 1"
SR_ADDRESS_2="العنوان 2 (Optional)"
SR_CITY="المدينه"
SR_ZIP="الرمز البريدي (Optional)"
SR_STATE="البلد (Optional)"
SR_COUNTRY="الدوله"
SR_TRAVEL_FOR_BUSINESS="Productivity/Business"
SR_TRAVEL_FOR_BUSINESS_DESC="I like to be able to get work done and be productive when I'm on the road"
SR_TRAVEL_FOR_RELAX="Relaxation / Pampering"
SR_TRAVEL_FOR_RELAX_DESC="I like to relax and rejuvenate when I'm away from home."
SR_TRAVEL_FOR_ENTERTAINMENT="Entertainment / Attractions"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="I want to have fun and see the best my destination has to offer."
SR_TRAVEL_FOR_FAMILY="Family"
SR_TRAVEL_FOR_FAMILY_DESC="I am attending a family event or vacationing with my family."
SR_TRAVEL_FOR_HONEYMOON="Honeymoon"
SR_TRAVEL_FOR_HONEYMOON_DESC="I am going to enjoy my honey moon."
SR_COMMENT="تعليق"
SR_COMMENT_DESC="Please enter here if you have any comments to us."
SR_TAX="الضريبه"
SR_RULE_RESTRICTION="فقد 4 غرف متاحه"
SR_SELECT_TARIFF="اختار"
SR_SHOW_MAP="اظهر الخريطه"
SR_READMORE="المزيد"
SR_PRICE_FROM="السعر من"
SR_FIELD_RESERVE="احجز الان"
SR_FIELD_CONDITIONS="الشروط"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Search for your hotel by using the form above"
SR_NO_ROOM_AVAILABLE="مباع!"
SR_MAX="اكثر عدد اشخاص مسموح به"
SR_HAS_ROOM_AVAILABLE="متاح"
SR_AVAILABILITY="الامكانيه"
SR_AVAILABLE_ROOM_TYPES="نوعيه الغرف المتاحه"
SR_VIEW_GALLERY="معرض الصور"
SR_YOUR_SEARCH_INFORMATION="Your search information"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="الوصول:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="المغادره:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="عدد النزلاء بالغرفه:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="عدد الاطفال بالغرفه:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="اكمل"
SR_EXTRA_PACKAGES="اضافات"
SR_ROOM_TYPE_NAME="نوعيه الغرفه"
SR_ROOM_TYPE_QUANTITY="العدد"
SR_ROOM_TYPE_GUEST_PER_ROOM="نزيل بالغرفه"
SR_NUMBER_OF_NIGHT="عدد الليالي"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="الغرفه & السعر"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="أضافات"
SR_RESERVATION_PROGRESS_GUEST_INFO="معلومات النزيل"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="معلومات الدفع"
SR_RESERVATION_CONFIRMATION="التأكيد"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="انتهي"
SR_PAYMENT_METHOD_CHEQUE_MONEY="شيك/نقود"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Your selected room quantity exceed the number of available rooms, please <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">click here</a> to go back and make another selection."
SR_CHANGE="Change"
SR_NOTE="ملاحظات (Optional)"
SR_MIDDLENAME="الاسم الاوسط (Optional)"
SR_RESERVATION_PROGRESS_DATES="التواريخ & التفضيلات"
SR_ROOM_SELECTION="اختيار الغرفه"
SR_ROOM_TYPE_ADULT_PER_ROOM="اشخاص بالغرفه"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="اطفال بالغرفه"
SR_ROOM_TYPE_GUEST_NAME="اسم النزيل"
SR_RESERVATION_NOTICE_CONFIRMATION="Please review the your reservation details and click on the below button to finish your reservation. A confirmation email will be sent to your given email address."
SR_SEARCH_COUPON="كوبون"
SR_MAXIMUM_OCCUPANCY="Maximum occupancy"
SR_OCCUPANCY_ADULT="شخص(s)"
SR_OCCUPANCY_CHILD="طفل(ren)"
SR_NIGHTS="%d ليالي"
SR_NIGHTS_1="%d ليله"
SR_TOTAL_ROOM_COST_TAX_EXCL="مجموع تكلفه الغرفه (exclude taxes)"
SR_TOTAL_ROOM_COST_TAX_INCL="Total room cost (include taxes)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Total extra cost (exclude taxes)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Total extra cost (include taxes)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Total extra tax"
SR_PRICE_FOR_X_NIGHTS="سعر  %d الليالي"
SR_ROOM_TYPE="نوعيه الغرف"
SR_NUMBER_OF_ROOMS="عدد الغرف"
SR_TARIFF_BREAK_DOWN="Rate break down"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="عدد الاشخاص"
SR_SEARCH_CHILDREN_NUMBER="عدد الاطفال"
SR_NO_TARIFF_AVAILABLE="لا يوجد سعر"
SR_EMAIL_RESERVATION_COMPLETE="تم حجزك بنجاح"

; Extra
SR_RESERVATION_EXTRA="الاسم"
SR_RESERVATION_EXTRA_COST="التكلفه"
SR_RESERVATION_EXTRA_QUANTITY="العدد"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="An email contains summary of your reservation could not be sent."

SR_BOOK_NOW="احجز الان"
SR_TOTAL_PRICE="مجموع السعر"
SR_TAX_7_NOT_INCLUDED="TAX (7%) not included"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Service charge (10.70%) not included"

SR_RESERVATION_NOTE="Enter any information you wish to attach to your reservation. The staff cannot guarantee additional requests or comments. Please avoid the use of special characters."
SR_ASK_FOR_CHECKIN_CHECKOUT="To check for room rates and availability, please enter your check-in and check-out dates in the form below"
SR_GRAND_TOTAL="Grand Total"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="المرفقات"
SR_CUSTOMFIELD_POLICIES="السياسات"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="قنوات اجتماعيه"
SR_CUSTOMFIELD_GENERAL="عام"
SR_CUSTOMFIELD_ACTIVITIES="الانشطه"
SR_CUSTOMFIELD_SERVICES="الخدمات"
SR_CUSTOMFIELD_INTERNET="انترنت"
SR_CUSTOMFIELD_PARKING="مواقف سيارات"
SR_CUSTOMFIELD_CHECKIN="الوصول"
SR_CUSTOMFIELD_CHECKOUT="المغادره"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="الغاء الحجز / الدفع"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="الاطفال والاسره الاضافيه"
SR_CUSTOMFIELD_PETS="الحيوانات"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="نقبل بطاقات الدفع"
SR_BREAKFAST_INCLUDED="شامل الافطار"
SR_BREAKFAST_EXCLUDED="غير شامل الافطار"
SR_FREE_CANCELLATION="ألغاء مجاني"
SR_NON_REFUNDABLE="غير قابل للالغاء"
SR_ROOM_OCCUPANCY="الاشغال"
SR_TAXES="Taxes"
SR_PREPAYMENT="مسبق الدفع"
SR_ROOM_FACILITIES="مرفقات الغرفه"
SR_ROOM_SIZE="حجم الغرفه"
SR_BED_SIZE="حجم السرير"

SR_COUPON_ENTER="فضلا ادخل رقم الكوبون (Optional)"
SR_COUPON_ACCEPTED="تم قبول الكوبون"
SR_COUPON_REJECTED="الرقم غير صحيح"
SR_APPLY_COUPON="Apply coupon"

SR_ROOM_AVAILABLE_FROM_TO="We have %s rooms available from %s to %s for your search for %s adults and %s children"
SR_APPLIED_COUPON="Applied coupon"
SR_REMOVE="Remove"
SR_CAN_NOT_REMOVE_COUPON="Can not remove coupon"
SR_AVAILABILITY_CALENDAR="الايام المتاحه"
SR_AVAILABILITY_CALENDAR_VIEW="رؤيه التقويم"

SR_AVAILABILITY_CALENDAR_BUSY="غير متاح"
SR_FEATURED_ROOM_TYPE="مميزه"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Please select at least one room type to proceed."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Invalid. You must book at least %d days and no more than %d days in advance of your arrival. The minimum length of stay is %d days."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Invalid. Check out date must be after check in date."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Invalid. You have to book at least %d days in advance of your arrival."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Invalid. You are not allowed to book more than %d days in advance of your arrival."
SR_NEXT="التالي"
SR_BACK="رجوع"
SR_CUSTOMER_TITLE="Your title (Optional)"
SR_CUSTOMER_TITLE_MR="Mr."
SR_CUSTOMER_TITLE_MRS="Mrs."
SR_CUSTOMER_TITLE_MS="Ms."
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Rate type: Per person per night, please select your room quantity, then provide your occupancy in order to get the exact rate for this room"
SR_ERROR_CHILD_MAX_AGE="Ages must be between"
SR_BOOKING_CONDITIONS="Booking conditions"
SR_PRIVACY_POLICY="سياسات الخصوصيه"
SR_ROOM_COST="تكلفه الغرفه: "
SR_ENHANCE_YOUR_STAY="عزز أقامتك"
SR_I_AGREE_WITH="I agree with "
SR_GUEST_INFORMATION="معلومات النزبل"
SR_PAYMENT_INFO="معلومات الدفع"
SR_GUEST_INFO_STEP_NOTICE="Enter your information and payment method"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="فضلا اختر نوعيه الغرفه والسعر واضغط التالي للمتابعه"
SR_AGE_OF_CHILD_AT_CHECKOUT="Age of child(ren) at checkout"
SR_GUEST_NAME="Guest name"
SR_ROOM="Room"
SR_CHILD="Child"
SR_ADULT="Adult"
SR_ROOMTYPE_QUANTITY="العدد"
SR_AND="و"
SR_STEP_ROOM_AND_RATE="الغرفه & والاسعار"
SR_STEP_GUEST_INFO_AND_PAYMENT="معلومات النزيل  الدفع"
SR_STEP_CONFIRMATION="التاكيد"
SR_PAYMENT_METHOD_PAYLATER="ادفع لاحقا"
SR_PAYMENT_METHOD_BANKWIRE="تحويل بنكي"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Please keep in mind that it may take a few days for the payment to be clear. In the wire transfer payment notes, please put your reservation code to help us process your reservation faster."
SR_PROCESSING="تحويل..."

; Since 0.6.0
SR_STAR="نجمه"
SR_STARS="نجوم"
JGLOBAL_FIELDSET_PUBLISHING="Publishing"
JTOOLBAR_APPLY="حفظ"
JTOOLBAR_ARCHIVE="الارشيف"
JTOOLBAR_ASSIGN="Assign"
JTOOLBAR_BACK="خلف"
JTOOLBAR_BATCH="Batch"
JTOOLBAR_CANCEL="الغاء"
JTOOLBAR_CHECKIN="وصول"
JTOOLBAR_CLOSE="اغلاق"
JTOOLBAR_DEFAULT="الافتراضي"
JTOOLBAR_DELETE="مسح"
JTOOLBAR_DISABLE="Disable"
JTOOLBAR_DUPLICATE="Duplicate"
JTOOLBAR_EDIT="Edit"
JTOOLBAR_EDIT_CSS="Edit CSS"
JTOOLBAR_EDIT_HTML="Edit HTML"
JTOOLBAR_EMPTY_TRASH="Empty trash"
JTOOLBAR_ENABLE="Enable"
JTOOLBAR_EXPORT="Export"
JTOOLBAR_HELP="Help"
JTOOLBAR_INSTALL="Install"
JTOOLBAR_NEW="New"
JTOOLBAR_OPTIONS="Options"
JTOOLBAR_PUBLISH="Publish"
JTOOLBAR_PURGE_CACHE="Purge Cache"
JTOOLBAR_REBUILD="Rebuild"
JTOOLBAR_REFRESH_CACHE="Refresh Cache"
JTOOLBAR_REMOVE="Remove"
JTOOLBAR_SAVE="Save &amp; Close"
JTOOLBAR_SAVE_AND_NEW="Save &amp; New"
JTOOLBAR_SAVE_AS_COPY="Save as Copy"
JTOOLBAR_UNARCHIVE="Unarchive"
JTOOLBAR_UNINSTALL="Uninstall"
JTOOLBAR_UNPUBLISH="Unpublish"
JTOOLBAR_UPLOAD="Upload"
JTOOLBAR_TRASH="Trash"
JTOOLBAR_UNTRASH="Untrash"
JTOOLBAR_REBUILD_SUCCESS="Successfully rebuilt"
JTOOLBAR_VERSIONS="Versions"
SR_SEARCH_LOCATION="Location"
SR_DASHBOARD="Dashboard"
SR_PHONE="Phone"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Deposit amount"
SR_TOTAL_ROOM_TAX="Total room tax"

; Since 0.7.0
SR_STANDARD_TARIFF="Standard rate"
SR_SEARCH_RESET="Reset"
SR_SELECT_A_TARIFF="Select a rate"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="We have no availability for this room type between %s and %s. <a href="_QQ_"%s"_QQ_">Click here to start over by changing your dates.</a>"
SR_SELECT_A_TARIFF_FIRST="Please select a rate first."
SR_SMOKING="فضلا اخر مدخن او غير مدخن"
SR_SMOKING_ROOM="غرفه مدخنين"
SR_NON_SMOKING_ROOM="غرفه غير مدخنين"
SR_SELECT_ROOM_QUANTITY="%s غرف"
SR_SELECT_ROOM_QUANTITY_1="1 غرفه"
SR_SELECT_ADULT_QUANTITY="%s اشخاص"
SR_SELECT_ADULT_QUANTITY_1="1 شخص"
SR_SELECT_CHILD_QUANTITY="%s اطفال"
SR_SELECT_CHILD_QUANTITY_1="1 طفل"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s ليالي"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 ليله"
SR_TARIFF_SUFFIX_PER_ROOM="/ غرفه "
SR_CHILD_AGE_SELECTION="%s سنين"
SR_CHILD_AGE_SELECTION_1="%s سنه"
SR_CHILD_AGE_SELECTION_JS="سنين"
SR_CHILD_AGE_SELECTION_1_JS="سنه"
SR_EMAIL_CONFIRM_RESERVATION="معلومات الحجز"
SR_EMAIL_REF_ID="رقم مرجع الحجز: %s"
SR_EMAIL_GREETING_NAME="عزيزي %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>شكرا لحجزك %s. لو ارت اي معلومات اضافيه, رجاء لا تتردد في الاتصال بنا في اي وقت.</p><p>We are pleased to confirm your reservation as follows:</p>"
SR_EMAIL_CHECKIN="الوصول: "
SR_EMAIL_CHECKOUT="المغادره: "
SR_EMAIL_PAYMENT_METHOD="طريقه الدفع: "
SR_EMAIL_EMAIL="البريد الالكتروني: "
SR_EMAIL_NUM_NIGHT="عدد الليالي: "
SR_EMAIL_SUB_TOTAL="تكلفه الغرفه (excl tax): "
SR_EMAIL_TAX="تكلفه الضريبه للغرفه: "
SR_EMAIL_GRAND_TOTAL="المجموع: "
SR_EMAIL_DEPOSIT_AMOUNT="Deposit Amount: "
SR_EMAIL_EXTRAS_ITEMS="اشياء اضافيه: "
SR_EMAIL_CONNECT_WITH_US="اتصل بنا: "
SR_EMAIL_CONTACT_INFO="معلومات الاتصال: "
SR_EMAIL_ADDRESS="العنوان: "
SR_EMAIL_PHONE="الهاتف: "
SR_EMAIL_OTHER_INFO="معلومات اخري"
SR_EMAIL_EXTRA_QUANTITY="العدد: "
SR_EMAIL_EXTRA_PRICE="السعر: "
SR_EMAIL_NOTE="ملاحظات: "
SR_EMAIL_BANKWIRE_INFO="معلومات التحويل البنكي"
SR_EMAIL_NOTIFICATION_RESERVATION="تنبيه الحجز"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>A new reservation has been made, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_GREETING_NAME_OWNER="مرحبا,"
SR_EMAIL_EXTRA_TAX_EXCL="Extra cost (excl tax): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Extra tax: "
SR_VAT_NUMBER="VAT Number (Optional)"
SR_PASSWORD="Password"
SR_USERNAME="Username"
SR_WE_HAVE_X_ROOM_LEFT="لدينا %s غرف متبقيه"
SR_WE_HAVE_X_ROOM_LEFT_1="لدينا %s غرفه متبقيه!"
SR_ONLY_1_LEFT="اخر فرصه! فقط غرفه متبقيه"
SR_ONLY_2_LEFT="فقط 2 غرفه متبقيه"
SR_ONLY_3_LEFT="فقط 3 غرف متبقيه"
SR_ONLY_4_LEFT="فقط 4 غرف متبقيه"
SR_ONLY_5_LEFT="فقط 5 غرف متبقيه"
SR_ONLY_6_LEFT="Only 6 rooms left"
SR_ONLY_7_LEFT="Only 7 rooms left"
SR_ONLY_8_LEFT="Only 8 rooms left"
SR_ONLY_9_LEFT="Only 9 rooms left"
SR_ONLY_10_LEFT="Only 10 rooms left"
SR_ONLY_11_LEFT="Only 11 rooms left"
SR_ONLY_12_LEFT="Only 12 rooms left"
SR_ONLY_13_LEFT="Only 13 rooms left"
SR_ONLY_14_LEFT="Only 14 rooms left"
SR_ONLY_15_LEFT="Only 15 rooms left"
SR_ONLY_16_LEFT="Only 16 rooms left"
SR_ONLY_17_LEFT="Only 17 rooms left"
SR_ONLY_18_LEFT="Only 18 rooms left"
SR_ONLY_19_LEFT="Only 19 rooms left"
SR_ONLY_20_LEFT="Only 20 rooms left"
SR_SHOW_MORE_INFO="معلومات اضافيه"
SR_HIDE_MORE_INFO="اخفاء المعلومات"
SR_AVAILABILITY_CALENDAR_CLOSE="اغلق التقويم"
SR_STARTING_FROM="يبدأ من"
SR_SELECT="اختر"
SU="Su"
MO="Mo"
TU="Tu"
WE="We"
TH="Th"
FR="Fr"
SA="Sa"
SR_USERNAME_EXISTS="اسم المستخدم موجود . فضلا اختر اسم اخر."
JFIELD_METADATA_ROBOTS_DESC="Robots Instructions"
JFIELD_METADATA_ROBOTS_LABEL="Robots"
JFIELD_XREFERENCE_DESC="An optional field to allow this record to be cross-referenced to an external data system if required."
JFIELD_XREFERENCE_LABEL="External Reference"
JCLEAR="مسح"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Register with us for future convenience: fast and easy booking. Please enter your desired username and password in the following fields."
SR_PRICE_IS_FOR_X_NIGHT="Price is for %s nights"
SR_PRICE_IS_FOR_X_NIGHT_1="السعر ل  %s ليله"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="We found no matched room types, please adjust your booking dates or room options."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="وجدنا %s غرف تتناسب ونوعيه بحثك من %s الي %s ل %s اشخاص و %s اطفال."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="We have less than your number of requested rooms, but our current available rooms (%s) could satisfy your search from %s to %s for %s adults and %s children if you select a different number of rooms."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Sorry but our rooms are not available for your search from %s to %s for %s adults and %s children."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="وجدنا %s غرف تطابقت مع نوعيه بحثك من  %s الي %s."
SR_MOBILEPHONE="Mobile phone"
SR_RESERVATION_SAVE_ERROR="Your reservation could not be saved, please try again."
SR_EMAIL_PAYMENT_METHOD_INFO="Payment information"
SR_RESERVATION_COMPLETE="<h3>Thank you %s! Your reservation number %s has been completed successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_EXTRA_PRICE_ADULT="For adult"
SR_EXTRA_PRICE_CHILD="For child"
SR_EXTRA_MORE_DETAILS="Details"
SR_EXTRA_PRICE="Price"
SR_TOTAL_DISCOUNT="Total discount"
SR_EMAIL_TOTAL_DISCOUNT="Total discount: "
SR_ROOM_X_COST="Room cost"
SR_ROOM_X_DISCOUNTED_AMOUNT="Room discounted amount"
SR_ROOM_X_DISCOUNTED_COST="Room cost after discounted"
SR_VIEW_TARIFF_BREAKDOWN="التفاصيل"
SR_SHOW_TARIFFS="السعر"
SR_HIDE_TARIFFS="السعر"
SR_CONFIRMATION_ROOM_DETAILS="التفاصيل"
SR_CONFIRMATION_GUEST_NAME="Guest name"
SR_CONFIRMATION_ADULT_NUMBER="Adult number"
SR_CONFIRMATION_CHILD_NUMBER="Child number"
SR_CONFIRMATION_FULLNAME="Your full name: "
SR_EXTRA="Extra"
SR_EXTRA_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Per room"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Per booking per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Per booking per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Per room per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Per room per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Per person per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Per room per person per night"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Price for adult"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Enter the price for adult of this Extra/Service. The currency of Property will apply here."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Price for child"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Enter the price for child of this Extra/Service. The currency of Property will apply here."

; Since 0.9.0
SR_DAYS="%d days"
SR_DAYS_1="%d day"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s days"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 day"
SR_LENGTH_OF_STAY="Length of stay"
SR_EMAIL_LENGTH_OF_STAY="Length of stay: "
SR_PRICE_IS_FOR_X_DAY="Price is for %s days"
SR_PRICE_IS_FOR_X_DAY_1="Price is for %s day"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Room single supplement"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Room cost after single supplement"
JLIB_APPLICATION_SAVE_SUCCESS="Item successfully saved."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Item successfully submitted."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="New reservation %s from %s %s"
SR_RESERVATION_CODE="Code"
SR_RESERVATION_INVOICE="Invoice"
SR_RESERVATION_CHECKIN="Checkin"
SR_RESERVATION_CHECKOUT="Checkout"
SR_RESERVATION_ASSET="Property"
SR_RESERVATION_TOTAL_PAID="Total paid"
SR_DESCRIPTION="Description"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Booking number"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Booking details"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s rooms"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s room"
SR_CONFIRMATION_CHECKIN="Check-in"
SR_CONFIRMATION_CHECKOUT="Check-out"
SR_CONFIRMATION_TOTAL_PRICE="Total price"
SR_CONFIRMATION_ASSET_NAME="Name"
SR_CONFIRMATION_ASSET_ADDRESS="Address"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Phone"
SR_ASSET_INFO="Hotel information"
SR_BOOKING_INFO="Your booking information"
SR_BOOKING_CONFIRMATION_ADULTS="%s adults"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s adult"
SR_BOOKING_CONFIRMATION_CHILDREN="%s children"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s child"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Guest full name"
SR_BOOKING_CONFIRMATION_SMOKING="Smoking"
SR_BOOKING_CONFIRMATION_ROOM_COST="Room cost"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Room details"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Your dates appear to be in the past"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Thank you %s! Your reservation number %s has been completed successfully but the payment is not yet completed.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Invalid. Minimum length of stay is %d days."
SR_USER_INFO_USERNAME_PLURAL="You have logged with username: %s"

; Since 0.9.4
SR_COUPON_CHECK="Check"
SR_RESERVATION_ORIGIN_DIRECT="Direct"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="This room type requires at least %d people and maximum %d people."
SR_RESERVE="Reserve"
SR_SEARCH_ROOMS="Rooms"
SR_SEARCH_ROOM="Room"
SR_SEARCH_ROOM_ADULTS="Adults"
SR_SEARCH_ROOM_CHILDREN="Children"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Reservation has been cancelled"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Reservation %s from %s %s has been cancelled"
SR_EMAIL_GREETING_TEXT_CANCELLED="Your reservation %s at %s has been cancelled."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Reservation %s has been cancelled, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_COUPON_CODE="Coupon code: "

; Since 1.8.0
SR_FULLNAME="Full name"
SR_MESSAGE="Message"
SR_SEND_MESSAGE="Send message"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Booking inquiry from %s for %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Thank you, your inquiry has been sent successfully. We will get back to you as soon as possible."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per booking per stay (night or day)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Per room per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per room per person per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Percentage of room's daily rate"
SR_EXTRA_PRICE_DAILY_RATE="%s costs %d percent of room daily rate per stay"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Your session is expiring soon."
SR_WARNING_SESSION_EXPIRED="Your session has been expired, <a href="_QQ_"#"_QQ_">click here</a> to start a new session."
SR_WEBSITE="Website"
SR_YOUR_STAY="Your stay"
SR_AVAILABLE_ROOMS="Available room"
SR_MAX_GUESTS="Max guests"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Book Now"
SR_TARIFF_PACKAGE_PER_ROOM="Package per room"
SR_TARIFF_PACKAGE_PER_PERSON="Package per person"
SR_TARIFF_PER_ROOM_PER_NIGHT="Rate per room per stay"
SR_TARIFF_PER_PERSON_PER_NIGHT="Rate per person per stay"
SR_ROOM_X_EXTRA_AMOUNT="Room extras item cost"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Your reservation has been amended successfully"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Send outgoing emails?"
SR_FIELD_COUNTRY_SELECT=" - Select Country - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Process online payment?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Your reservation has been added successfully"
SR_SELECT_BED_QUANTITY="%s beds"
SR_SELECT_BED_QUANTITY_1="1 bed"
SR_BED="Bed"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Thank you %s! Your reservation request %s has been sent to us, we will get back to you as soon as possible to confirm this reservation.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Your reservation number %s has been cancelled.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Tourist tax"
SR_EMAIL_TOURIST_TAX="Tourist tax: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount: "
SR_CONFIRMATION_GUEST_NUMBER="Guest number"
SR_SELECT_GUEST_QUANTITY="%s guests"
SR_SELECT_GUEST_QUANTITY_1="1 guest"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Rooms and rates information"
SR_CONFIRMATION_PAYMENT_METHOD="Payment method: "
SR_CONFIRMATION_MOBILE="Mobile phone: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Unpaid"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Paid"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Cancelled"
SR_RESERVATION_PAYMENT_STATUS_PENDING="Pending"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ bed "
SR_WE_HAVE_X_BED_LEFT="We have %s beds left"
SR_WE_HAVE_X_BED_LEFT_1="We have %s bed left!"
SR_ONLY_1_LEFT_BED="Last chance! Only 1 bed left"
SR_ONLY_2_LEFT_BED="Only 2 beds left"
SR_ONLY_3_LEFT_BED="Only 3 beds left"
SR_ONLY_4_LEFT_BED="Only 4 beds left"
SR_ONLY_5_LEFT_BED="Only 5 beds left"
SR_ONLY_6_LEFT_BED="Only 6 beds left"
SR_ONLY_7_LEFT_BED="Only 7 beds left"
SR_ONLY_8_LEFT_BED="Only 8 beds left"
SR_ONLY_9_LEFT_BED="Only 9 beds left"
SR_ONLY_10_LEFT_BED="Only 10 beds left"
SR_ONLY_11_LEFT_BED="Only 11 beds left"
SR_ONLY_12_LEFT_BED="Only 12 beds left"
SR_ONLY_13_LEFT_BED="Only 13 beds left"
SR_ONLY_14_LEFT_BED="Only 14 beds left"
SR_ONLY_15_LEFT_BED="Only 15 beds left"
SR_ONLY_16_LEFT_BED="Only 16 beds left"
SR_ONLY_17_LEFT_BED="Only 17 beds left"
SR_ONLY_18_LEFT_BED="Only 18 beds left"
SR_ONLY_19_LEFT_BED="Only 19 beds left"
SR_ONLY_20_LEFT_BED="Only 20 beds left"
SR_DUE_AMOUNT="Total due amount"
SR_EMAIL_DUE_AMOUNT="Due Amount: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Your reservation has been cancelled."
SR_CHECKIN_PLACEHOLDER="Your check-in date"
SR_CHECKOUT_PLACEHOLDER="Your check-out date"
SR_CHOOSE_ANOTHER_CHECKIN="Please choose another check-in date"
SR_WARNING_SESSION_RENEW="Renew"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Enter your email"
SR_ENTER_YOUR_RESERVATION_CODE="Enter your reservation code"
SR_FIND_RESERVATION="Find reservation"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reservation code %s found."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="We can not find any reservations with your given information, please recheck your information and try again."
SR_RESERVATION_STATUS_FORMAT="Reservation status: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Show property's reservation tracking form"
SR_TRACKING_VIEW_DEFAULT_DESC="Allow guests check their reservation using reservation code + email address"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ 1 person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s people "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"
language/fr-FR/fr-FR.com_solidres.ini000060400000077663150751740420013365 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Critères de recherche"
SR_SEARCH_FIELD_COUNTRY="Pays"
SR_SEARCH_FIELD_STATE="Régions"
SR_SEARCH_FIELD_CITY="Ville"
SR_SEARCH_CHECKIN_DATE="Arrivée"
SR_SEARCH_CHECKOUT_DATE="Départ"
SR_SEARCH="Recherche"
SR_RESET="Réinitialisation"
SR_REMEMBER_ME="Se souvenir de moi"
SR_FORGOT_YOUR_PASSWORD="Mot de passe oublié"
SR_FORGOT_YOUR_USERNAME="Identifiant oublié"
SR_REGISTER="S'enregistrer"
SR_SELECTED_RESERVATION_ASSET="Établissement choisi"
SR_STAYING_INFO="Information de séjour"
SR_NUMBER_OF_ROOM="Chambres"
SR_GUEST_PER_ROOM="Nombre de personne par chambre"
SR_ROOM_RATE_INFO="Information sur le prix de la chambre"
SR_ROOM_DESCRIPTION="Description de la chambre"
SR_ROOM_RATE_TYPE="Types des prix des chambres"
SR_GUEST_INFO="Informations clients"
SR_FIRSTNAME="Prénom"
SR_LASTNAME="Nom"
SR_EMAIL="Email"
SR_PHONENUMBER="Numéro de téléphone"
SR_CONTACT_INFO="Information de contact"
SR_HOLD_GUARANTEE_INFO="Information sur le versement des acomptes"
SR_ARRIVAL_INFO="Information d'arrivée"
SR_TRAVEL_INFO="Information de voyage"
SR_COMPANY="Companie (optionnel)"
SR_ADDRESS_1="Adresse"
SR_ADDRESS_2="Adresse complémentaire (optionnel)"
SR_CITY="Ville"
SR_ZIP="Code Postal"
SR_STATE="Région (Optional)"
SR_COUNTRY="Pays"
SR_TRAVEL_FOR_BUSINESS="Travail"
SR_TRAVEL_FOR_BUSINESS_DESC="J'aime que le travail soit fait quand je suis sur la route"
SR_TRAVEL_FOR_RELAX="Relaxation"
SR_TRAVEL_FOR_RELAX_DESC="J'aime me détendre quand je ne suis pas à la maison"
SR_TRAVEL_FOR_ENTERTAINMENT="Loisirs"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Je veux prendre du plaisir et voir le meilleur que la destination peut offrir"
SR_TRAVEL_FOR_FAMILY="Famille"
SR_TRAVEL_FOR_FAMILY_DESC="Je suis en attente d'un évènement familial ou des vacances en famille"
SR_TRAVEL_FOR_HONEYMOON="Voyage de noces"
SR_TRAVEL_FOR_HONEYMOON_DESC="Je veux apprécier mon voyage de noces"
SR_COMMENT="Commentaire"
SR_COMMENT_DESC="Entrer vos commentaires ici."
SR_TAX="Taxes"
SR_SELECT_TARIFF="Choisir cette chambre."
SR_SHOW_MAP="Montrer la carte"
SR_READMORE="Lire la suite"
SR_PRICE_FROM="Prix à partir de"
SR_FIELD_RESERVE="Réservez maintenant !"
SR_FIELD_CONDITIONS="Conditions"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Recherche de l'établissement avec le formulaire ci-dessus"
SR_NO_ROOM_AVAILABLE="Complet !"
SR_MAX="Maximum de personnes autorisées"
SR_HAS_ROOM_AVAILABLE="Valide"
SR_AVAILABILITY="Disponibilité"
SR_AVAILABLE_ROOM_TYPES="Chambres disponibles"
SR_VIEW_GALLERY="Voir photos"
SR_YOUR_SEARCH_INFORMATION="Vos echerches d'informations"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Arrivée : "
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Départ : "
SR_YOUR_SEARCH_INFORMATION_ADULTS="Total d'adulte(s) par chambre : "
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Total d'enfant(s) par chambre : "
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Continuer"
SR_EXTRA_PACKAGES="Services complémentaires"
SR_ROOM_TYPE_NAME="Chambre"
SR_ROOM_TYPE_QUANTITY="Quantité"
SR_ROOM_TYPE_GUEST_PER_ROOM="Nombre de personne(s) par chambre"
SR_NUMBER_OF_NIGHT="Nombre de nuitées"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Chambres & Tarifs"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Services complémentaires"
SR_RESERVATION_PROGRESS_GUEST_INFO="Information client"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Information sur le paiement"
SR_RESERVATION_CONFIRMATION="Validation"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Valider"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Chèque/Espèce"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Votre sélection exéde le nombre de chambres disponibles ! SVP, <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">cliquez ici</a> pour faire une autre sélection, merci."
SR_CHANGE="Changer"
SR_NOTE="Note (optionnel)"
SR_MIDDLENAME="Second prénom (optionnel)"
SR_RESERVATION_PROGRESS_DATES="Dates & Préferences"
SR_ROOM_SELECTION="Sélection de la chambre"
SR_ROOM_TYPE_ADULT_PER_ROOM="Nombre d'adulte(s) par chambre"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Nombre d'enfant(s) par chambre"
SR_ROOM_TYPE_GUEST_NAME="Personne(s) occupant la chambre"
SR_RESERVATION_NOTICE_CONFIRMATION="Veuillez vérifier les informations, puis validez. Un mail de confirmation vous sera envoyé."
SR_SEARCH_COUPON="Coupon"
SR_MAXIMUM_OCCUPANCY="Nombre maximum d'occupants"
SR_OCCUPANCY_ADULT="Adulte(s)"
SR_OCCUPANCY_CHILD="Enfant(s)"
SR_NIGHTS="%d nuits"
SR_NIGHTS_1="%d nuit"
SR_TOTAL_ROOM_COST_TAX_EXCL="Prix total HT"
SR_TOTAL_ROOM_COST_TAX_INCL="Prix total TTC"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Total des services HT"
SR_TOTAL_EXTRA_COST_TAX_INCL="Total des services TTC"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Total des taxes sur les suppléments"
SR_PRICE_FOR_X_NIGHTS="Prix pour %d nuits"
SR_ROOM_TYPE="Type de chambre"
SR_NUMBER_OF_ROOMS="Numéro de chambres"
SR_TARIFF_BREAK_DOWN="Abandon du tarif"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Nombre d'adulte(s) "
SR_SEARCH_CHILDREN_NUMBER="Nombre d'enfant(s) "
SR_NO_TARIFF_AVAILABLE="Pas de tarif disponible"
SR_EMAIL_RESERVATION_COMPLETE="Votre réservation est complète !"

; Extra
SR_RESERVATION_EXTRA="Nom"
SR_RESERVATION_EXTRA_COST="Prix"
SR_RESERVATION_EXTRA_QUANTITY="Quantité"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="Le mail récapitulatif de votre réservation n'a pas pu être envoyé !"

SR_BOOK_NOW="Réservez maintenant !"
SR_TOTAL_PRICE="Prix Total"
SR_TAX_7_NOT_INCLUDED="TAXE non comprise"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Frais de service non inclus"

SR_RESERVATION_NOTE="Reneigner toutes informations que vous jugez utiles à la réservation. Nous ne pouvons garantir les demandes complémentaires. Veuillez éviter d'utiliser des caractères spéciaux."
SR_ASK_FOR_CHECKIN_CHECKOUT="Pour vérifier le prix et la disponibilité, entrer la date d'arrivée et la date de départ dans le formulaire ci-dessous "
SR_GRAND_TOTAL="Total TTC"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Installations/Services"
SR_CUSTOMFIELD_POLICIES="Conditions Générales de Ventes et RGPD"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Réseaux sociaux"
SR_CUSTOMFIELD_GENERAL="Géneral"
SR_CUSTOMFIELD_ACTIVITIES="Activités"
SR_CUSTOMFIELD_SERVICES="Services"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parking"
SR_CUSTOMFIELD_CHECKIN="Arrivée"
SR_CUSTOMFIELD_CHECKOUT="Départ"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Annulation/Acomptes"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Enfant(s) et lit(s) supplémentaire(s)"
SR_CUSTOMFIELD_PETS="Animaux"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Cartes de crédit acceptées"
SR_BREAKFAST_INCLUDED="Petit déjeuner compris"
SR_BREAKFAST_EXCLUDED="Petit déjeuner non compris"
SR_FREE_CANCELLATION="Annulation sans frais"
SR_NON_REFUNDABLE="Non remboursable"
SR_ROOM_OCCUPANCY="Occupation"
SR_TAXES="Taxes"
SR_PREPAYMENT="Acompte"
SR_ROOM_FACILITIES="Équipements de la chambre"
SR_ROOM_SIZE="Taille de la chambre"
SR_BED_SIZE="Taille du lit"

SR_COUPON_ENTER="Code coupon (optionnel)"
SR_COUPON_ACCEPTED="Coupon accepté"
SR_COUPON_REJECTED="Coupon invalide"
SR_APPLY_COUPON="Appliquer le coupon"

SR_ROOM_AVAILABLE_FROM_TO="Nous avons %s chambre(s) disponible(s) du %s au %s pour votre recherche concernant %s adulte(s) et %s enfant(s)"
SR_APPLIED_COUPON="Coupon appliqué"
SR_REMOVE="Supprimer"
SR_CAN_NOT_REMOVE_COUPON="Impossible de supprimer le coupon"
SR_AVAILABILITY_CALENDAR="Calendrier des disponibilités"
SR_AVAILABILITY_CALENDAR_VIEW="Voir le calendrier"

SR_AVAILABILITY_CALENDAR_BUSY="Indisponible"
SR_FEATURED_ROOM_TYPE="En vedette"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Choisir au moins une chambre, s'il vous plait."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Veuillez recommencer, merci ! Vous devez réserver entre %d jours et %d jours avant votre date prévu de séjour. La duré minimum de séjour est de %d jour."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Veuillez recommencer, merci ! La date de départ doit être postérieure à la date d'arrivée."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Veuillez recommencer, merci ! Le séjour minimum doit être d'au moins %d nuit."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Veuillez recommencer, merci ! Vous devez réserver au moins %d jours avant l'arrivée"
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Veuillez recommencer, merci ! Vous ne pouvez pas réserver plus de %d jours avant l'arrivée"
SR_NEXT="Suivant"
SR_BACK="Retour"
SR_CUSTOMER_TITLE="Civilité (optionnel)"
SR_CUSTOMER_TITLE_MR="M."
SR_CUSTOMER_TITLE_MRS="Mme"
SR_CUSTOMER_TITLE_MS="Mlle"
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Tarif par personne et par nuit : s'il vous plait, sélectionnez le nombre de chambres, puis indiquez le nombre de personnes pour voir le prix exact pour cette chambre"
SR_ERROR_CHILD_MAX_AGE="L'âge doit être renseigné"
SR_BOOKING_CONDITIONS="Conditions Générales de Ventes et RGPD"
SR_PRIVACY_POLICY="RGPD : la gestion des données personnelles"
SR_ROOM_COST="Prix de la chambre : "
SR_ENHANCE_YOUR_STAY="Valorisez votre séjour"
SR_I_AGREE_WITH="Veuillez cocher en premier Je ne suis pas un robot ci-dessous, puis confirmer que vous avez lu et accepté les "
SR_GUEST_INFORMATION="Informations client"
SR_PAYMENT_INFO="Information de paiement"
SR_GUEST_INFO_STEP_NOTICE="Entrer votre moyen de paiement"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Réservez la chambre, visualisez les prix et cliquez sur Suite pour continuer"
SR_AGE_OF_CHILD_AT_CHECKOUT="L'âge de(s) l'enfant(s) à la date de la fin du séjour"
SR_GUEST_NAME="Personne(s) occupant la chambre"
SR_ROOM="Chambre"
SR_CHILD="Enfant"
SR_ADULT="Adulte"
SR_ROOMTYPE_QUANTITY="Nombre"
SR_AND="et"
SR_STEP_ROOM_AND_RATE="Chambres & Tarifs"
SR_STEP_GUEST_INFO_AND_PAYMENT="Info & Paiement client"
SR_STEP_CONFIRMATION="Validation"
SR_PAYMENT_METHOD_PAYLATER="Payer plus tard"
SR_PAYMENT_METHOD_BANKWIRE="Virement bancaire"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="S'il vous plaît gardez à l'esprit que quelques jours peuvent être nécessaire à la validation de votre paiement. Dans les notes/commentaires de paiement du virement bancaire, s'il vous plaît, renseignez votre code de réservation pour nous aider à traiter votre réservation plus rapidement."
SR_PROCESSING="En cours de traitement..."

; Since 0.6.0
SR_STAR="Étoile"
SR_STARS="Étoiles"
JGLOBAL_FIELDSET_PUBLISHING="En cours de publication"
JTOOLBAR_APPLY="Enregistrer"
JTOOLBAR_ARCHIVE="Archiver"
JTOOLBAR_ASSIGN="Assigner"
JTOOLBAR_BACK="Retour"
JTOOLBAR_BATCH="Grouper"
JTOOLBAR_CANCEL="Annuler"
JTOOLBAR_CHECKIN="Arrivée"
JTOOLBAR_CLOSE="Fermer"
JTOOLBAR_DEFAULT="Par défaut"
JTOOLBAR_DELETE="Supprimer"
JTOOLBAR_DISABLE="Désactiver"
JTOOLBAR_DUPLICATE="Dupliquer"
JTOOLBAR_EDIT="Modifier"
JTOOLBAR_EDIT_CSS="Modifier le CSS"
JTOOLBAR_EDIT_HTML="Modifier le HTML"
JTOOLBAR_EMPTY_TRASH="Vider la corbeille"
JTOOLBAR_ENABLE="Valider"
JTOOLBAR_EXPORT="Exporter"
JTOOLBAR_HELP="Aide"
JTOOLBAR_INSTALL="Installer"
JTOOLBAR_NEW="Nouveau"
JTOOLBAR_OPTIONS="Options"
JTOOLBAR_PUBLISH="Publier"
JTOOLBAR_PURGE_CACHE="Purger le cache"
JTOOLBAR_REBUILD="Reconstruire"
JTOOLBAR_REFRESH_CACHE="Rafraichir le cache"
JTOOLBAR_REMOVE="Supprimer"
JTOOLBAR_SAVE="Enregistrer & Fermer"
JTOOLBAR_SAVE_AND_NEW="Enregistrer & Nouveau"
JTOOLBAR_SAVE_AS_COPY="Enregistrer en copie"
JTOOLBAR_UNARCHIVE="Désarchiver"
JTOOLBAR_UNINSTALL="Désinstaller"
JTOOLBAR_UNPUBLISH="Dépublier"
JTOOLBAR_UPLOAD="Télécharger"
JTOOLBAR_TRASH="Mettre à la poubelle"
JTOOLBAR_UNTRASH="Sortir de la poubelle"
JTOOLBAR_REBUILD_SUCCESS="Reconstruit avec succès !"
JTOOLBAR_VERSIONS="Versions"
SR_SEARCH_LOCATION="Localisation"
SR_DASHBOARD="Tableau de bord"
SR_PHONE="Téléphone"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Montant des acomptes"
SR_TOTAL_ROOM_TAX="Total TVA"

; Since 0.7.0
SR_STANDARD_TARIFF="Tarif standard"
SR_SEARCH_RESET="Réinitialiser"
SR_SELECT_A_TARIFF="Sélectionner un tarif"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="Cette chambre est déjà réservée du %s au %s. <a href="_QQ_"%s"_QQ_">Cliquez ici pour choisir de nouvelles dates...</a>"
SR_SELECT_A_TARIFF_FIRST="Merci de renseigner un tarif en premier."
SR_SMOKING="Option fumeur"
SR_SMOKING_ROOM="Chambre fumeur"
SR_NON_SMOKING_ROOM="Chambre non fumeur"
SR_SELECT_ROOM_QUANTITY="%s chambres"
SR_SELECT_ROOM_QUANTITY_1="1 chambre"
SR_SELECT_ADULT_QUANTITY="%s adultes"
SR_SELECT_ADULT_QUANTITY_1="1 adulte"
SR_SELECT_CHILD_QUANTITY="%s enfants"
SR_SELECT_CHILD_QUANTITY_1="1 enfant"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s nuits"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 nuit"
SR_TARIFF_SUFFIX_PER_ROOM="/ chambre "
SR_CHILD_AGE_SELECTION="%s ans"
SR_CHILD_AGE_SELECTION_1="%s an"
SR_CHILD_AGE_SELECTION_JS="ans"
SR_CHILD_AGE_SELECTION_1_JS="an"
SR_EMAIL_CONFIRM_RESERVATION="Confirmation de réservation "
SR_EMAIL_REF_ID="ID : %s"
SR_EMAIL_GREETING_NAME="Cher(e) %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Merci d’avoir choisi %s pour votre séjour. N'hésitez pas à nous contacter pour toutes informations scomplémentaires</br><Vous trouverez votre facture en pièce jointe.</p>"
SR_EMAIL_CHECKIN="Arrivée : "
SR_EMAIL_CHECKOUT="Départ : "
SR_EMAIL_PAYMENT_METHOD="Moyen de paiement : "
SR_EMAIL_EMAIL="Mail : "
SR_EMAIL_NUM_NIGHT="Nombre de nuit(s) : "
SR_EMAIL_SUB_TOTAL="Prix HT de la chambre : "
SR_EMAIL_TAX="Taxes : "
SR_EMAIL_GRAND_TOTAL="Total TTC : "
SR_EMAIL_DEPOSIT_AMOUNT="Acompte versé : "
SR_EMAIL_EXTRAS_ITEMS="Suppléments : "
SR_EMAIL_CONNECT_WITH_US="Contactez-nous : "
SR_EMAIL_CONTACT_INFO="Information de contact : "
SR_EMAIL_ADDRESS="Adresse : "
SR_EMAIL_PHONE="Téléphone : "
SR_EMAIL_OTHER_INFO="Autre(s) information(s) : "
SR_EMAIL_EXTRA_QUANTITY="Quantité : "
SR_EMAIL_EXTRA_PRICE="Prix : "
SR_EMAIL_NOTE="Note & commentaires : "
SR_EMAIL_BANKWIRE_INFO="Information de virement bancaire"
SR_EMAIL_NOTIFICATION_RESERVATION="Notification de réservation "
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>Une nouvelle réservation a été faite, merci de vérifier les informations ci-dessous ou <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">cliquez ici</a> pour les voir : </p>"
SR_EMAIL_GREETING_NAME_OWNER="Bonjour,"
SR_EMAIL_EXTRA_TAX_EXCL="Montant HT des supplément : "
SR_EMAIL_EXTRA_TAX_AMOUNT="Taxes sur les suppléments : "
SR_VAT_NUMBER="Numéro de TVA (optionnel)"
SR_PASSWORD="Mot de passe"
SR_USERNAME="Identifiant"
SR_WE_HAVE_X_ROOM_LEFT="Il reste %s chambre(s)"
SR_WE_HAVE_X_ROOM_LEFT_1="Nous avons %s disponibilité(s)..."
SR_ONLY_1_LEFT="Réservez vite ! Plus qu'une chambre !"
SR_ONLY_2_LEFT="Plus que 2 chambres"
SR_ONLY_3_LEFT="Plus que 3 chambres"
SR_ONLY_4_LEFT="Plus que 4 chambres"
SR_ONLY_5_LEFT="Plus que 5 chambres"
SR_ONLY_6_LEFT="Plus que 6 chambres"
SR_ONLY_7_LEFT="Plus que 7 chambres"
SR_ONLY_8_LEFT="Plus que 8 chambres"
SR_ONLY_9_LEFT="Plus que 9 chambres"
SR_ONLY_10_LEFT="Plus que 10 chambres"
SR_ONLY_11_LEFT="Plus que 11 chambres"
SR_ONLY_12_LEFT="Plus que 12 chambres"
SR_ONLY_13_LEFT="Plus que 13 chambres"
SR_ONLY_14_LEFT="Plus que 14 chambres"
SR_ONLY_15_LEFT="Plus que 15 chambres"
SR_ONLY_16_LEFT="Plus que 16 chambres"
SR_ONLY_17_LEFT="Plus que 17 chambres"
SR_ONLY_18_LEFT="Plus que 18 chambres"
SR_ONLY_19_LEFT="Plus que 19 chambres"
SR_ONLY_20_LEFT="Plus que 20 chambres"
SR_SHOW_MORE_INFO="Plus d'informations"
SR_HIDE_MORE_INFO="Cacher les informations"
SR_AVAILABILITY_CALENDAR_CLOSE="Fermer le calendrier"
SR_STARTING_FROM="A partir de"
SR_SELECT="Sélectionner"
SU="Dim"
MO="Lun"
TU="Mar"
WE="Mer"
TH="Jeu"
FR="Ven"
SA="Sam"
SR_USERNAME_EXISTS="Cette identifiant existe déjà ! Merci d'en choisir un autre."
JFIELD_METADATA_ROBOTS_DESC="Instructions robots"
JFIELD_METADATA_ROBOTS_LABEL="Robots"
JFIELD_XREFERENCE_DESC="Un champ facultatif pour permettre à cet enregistrement d'être renvoyé à une base de données externe si nécessaire."
JFIELD_XREFERENCE_LABEL="Réference externe"
JCLEAR="Effacer"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="COCHER CETTE CASE pour créer rapidement votre compte client.</br> Cela vous évitera d’avoir à le faire ultérieurement.</br>En cochant cette case, vous déclarez aussi avoir lu et compris notre <a href="./gestion-des-donnees-personnelles.html" target="_blank">politique de gestion des données</a>.</br> Merci de votre confiance !"
SR_PRICE_IS_FOR_X_NIGHT="Le prix est pour %s nuits"
SR_PRICE_IS_FOR_X_NIGHT_1="Le prix est pour %s nuit"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="Nous n'avons pas trouvé de disponibilités pour votre recherche du %s au %s ! Merci de modifier vos dates ou les options de réservation."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="Nous avons %s chambre(s) correspondant à votre demande du %s au %s pour %s adulte(s) and %s enfant(s)."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="Nous avons moins de disponibilités que le nombre de chambres demandées, mais nos chambres disponibles actuelles (%s) pourrait satisfaire votre recherche du %s au %s pour %s adulte(s) et %s enfant(s) si vous sélectionnez un nombre différent de chambres."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Désolé, mais nous n'avons plus de disponibilité pour votre recherche du %s au %s pour %s adulte(s) et %s enfant(s)."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="Nous avons %s chambre(s) répondant à votre recherche du %s au %s."
SR_MOBILEPHONE="Tél mobile"
SR_RESERVATION_SAVE_ERROR="Votre réservation n'a pas pu être enregistrée. Veuillez réessayer, merci."
SR_EMAIL_PAYMENT_METHOD_INFO="Informations de paiement"			
SR_RESERVATION_COMPLETE="<h3>Merci %s ! Voici votre code de réservation %s, conservez-le.</h3><ul> <li>Nous vous avons envoyé un mail de confirmation à %s</li><li>Nous avons également envoyé un mail de notification à la réception de %s concernant votre prochain séjour.</li><li><a href="_QQ_"%s"_QQ_">Cliquez ici</a> pour retourner à la page d'accueil.</li></ul>"
SR_EXTRA_PRICE_ADULT="Pour adulte"
SR_EXTRA_PRICE_CHILD="Pour enfant"
SR_EXTRA_MORE_DETAILS="Détails"
SR_EXTRA_PRICE="Prix"
SR_TOTAL_DISCOUNT="Remise totale"
SR_EMAIL_TOTAL_DISCOUNT="Remise totale : "
SR_ROOM_X_COST="Prix de la chambre "
SR_ROOM_X_DISCOUNTED_AMOUNT="Remise sur le prix de la chambre "
SR_ROOM_X_DISCOUNTED_COST="Prix de la chambre après remise"
SR_VIEW_TARIFF_BREAKDOWN="Détails"
SR_SHOW_TARIFFS="Tarifs"
SR_HIDE_TARIFFS="Tarifs"
SR_CONFIRMATION_ROOM_DETAILS="Détails"
SR_CONFIRMATION_GUEST_NAME="Nom du client"
SR_CONFIRMATION_ADULT_NUMBER="Nombre d'adulte(s) "
SR_CONFIRMATION_CHILD_NUMBER="Nombre d'enfant(s) "
SR_CONFIRMATION_FULLNAME="Nom et Prénom : "
SR_EXTRA="Supplément"
SR_EXTRA_PER_BOOKING="Par réservation"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Par réservation"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Par chambre"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Par réservation et par nuit"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Par réservation et par personne"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Par chambre et par nuit"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Par chambre et par personne"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Par personne et par nuit"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Par chambre, par personne et par nuit"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Prix pour les adultes"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Renseigner le prix pour les adultes de ce supplément/Service. La devise de l'établissement s'appliquera ici."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Prix pour les enfants"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Renseigner le prix pour les enfants de ce supplément / Service. La devise de l'établissement s'appliquera ici."

; Since 0.9.0
SR_DAYS="%d jours"
SR_DAYS_1="%d jour"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s jours"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 jour"
SR_LENGTH_OF_STAY="Durée du séjour"
SR_EMAIL_LENGTH_OF_STAY="Durée du séjour : "
SR_PRICE_IS_FOR_X_DAY="Le prix est pour %s jours"
SR_PRICE_IS_FOR_X_DAY_1="Le prix est pour %s jour"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Supplément chambre individuelle"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Prix de la chambre après application du supplément chambre individuelle"
JLIB_APPLICATION_SAVE_SUCCESS="Enregistré avec succès !"
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Soumis avec succès !"
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="Nouvelle réservation %s à partir du %s %s"
SR_RESERVATION_CODE="Code"
SR_RESERVATION_INVOICE="Facture"
SR_RESERVATION_CHECKIN="Arrivée"
SR_RESERVATION_CHECKOUT="Départ"
SR_RESERVATION_ASSET="Établissement"
SR_RESERVATION_TOTAL_PAID="Total payé"
SR_DESCRIPTION="Description"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Numéro de la réservation"
SR_CONFIRMATION_EMAIL="Mail : "
SR_CONFIRMATION_BOOKING_DETAILS="Détails de la réservation"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s chambres"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s chambre"
SR_CONFIRMATION_CHECKIN="Arrivée"
SR_CONFIRMATION_CHECKOUT="Départ"
SR_CONFIRMATION_TOTAL_PRICE="Prix total"
SR_CONFIRMATION_ASSET_NAME="Nom"
SR_CONFIRMATION_ASSET_ADDRESS="Adresse"
SR_CONFIRMATION_ASSET_EMAIL="Mail"
SR_CONFIRMATION_ASSET_PHONE="Téléphone"
SR_ASSET_INFO="Information sur l'établissement"
SR_BOOKING_INFO="Vos informations de réservation"
SR_BOOKING_CONFIRMATION_ADULTS="%s adulte(s)"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s adulte"
SR_BOOKING_CONFIRMATION_CHILDREN="%s enfant(s) "
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s enfant"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Nom et prénom du client"
SR_BOOKING_CONFIRMATION_SMOKING="Fumeur"
SR_BOOKING_CONFIRMATION_ROOM_COST="Prix de la chambre"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Détails de la chambre"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Vos dates de réservation sont passées !"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Merci %s ! Votre réservation, numéro %s, a bien été enregistrée, cependant votre paiement n'a pas encore été finalisé.</h3><ul> <li>Nous avons envoyé un mail de confirmation à %s</li><li>Nous avons également notifié %s de votre prochain séjour</li><li><a href="_QQ_"%s"_QQ_">Clickez ici</a> pour retourner à la page d'accueil.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Erreur ! Le séjour minimum est de %d nuit(s)."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Erreur ! Le séjour minimum est de %d jour(s)."
SR_USER_INFO_USERNAME_PLURAL="Vous êtes connecté en tant que %s"

; Since 0.9.4
SR_COUPON_CHECK="Vérifier"
SR_RESERVATION_ORIGIN_DIRECT="Directe"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="Ce type de chambre nécessite au moins %d personne(s) et un maximum de %d personne(s)."
SR_RESERVE="Réservez"
SR_SEARCH_ROOMS="Chambres"
SR_SEARCH_ROOM="Chambre"
SR_SEARCH_ROOM_ADULTS="Adulte(s)"
SR_SEARCH_ROOM_CHILDREN="Enfant(s)"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Cette réservation a été annulée."
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="La réservation %s de %s %s a été annulée."
SR_EMAIL_GREETING_TEXT_CANCELLED="Votre réservation %s à %s a été annulée."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Votre réservation %s a été annulé, veuillez vérifier les détails ci-dessous ou <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">cliquer ici</a> pour la voir : </p>"
SR_EMAIL_COUPON_CODE="Code du coupon : "

; Since 1.8.0
SR_FULLNAME="Nom et prénom"
SR_MESSAGE="Message"
SR_SEND_MESSAGE="Envoyer le message"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Demande de réservation du %s au %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Merci, votre demande a été envoyée avec succès. Nous reviendrons vers vous dès que possible."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Par réservation et par séjour (nuit ou jour)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Par séjour et par chambre"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Par chambre, par personne et par séjour"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Pourcentage du tarif journalier de la chambre"
SR_EXTRA_PRICE_DAILY_RATE="%s de prix, %d pourcents du tarif journalier de la chambre par séjour"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Votre session expire bientôt."
SR_WARNING_SESSION_EXPIRED="Votre session a expirée ! <a href="_QQ_"#"_QQ_">Cliquer ici</a> pour commencer une nouvelle session."
SR_WEBSITE="Site internet"
SR_YOUR_STAY="Votre séjour"
SR_AVAILABLE_ROOMS="Chambre disponible"
SR_MAX_GUESTS="Nombre maximum de client(s)"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Réservez maintenant !"
SR_TARIFF_PACKAGE_PER_ROOM="Formule par chambre"
SR_TARIFF_PACKAGE_PER_PERSON="Formule par personne"
SR_TARIFF_PER_ROOM_PER_NIGHT="Tarif par chambre et par séjour"
SR_TARIFF_PER_PERSON_PER_NIGHT="Tarif par personne et par séjour"
SR_ROOM_X_EXTRA_AMOUNT="Prix des suppléments de la chambre"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Votre réservation a été modifiée avec succès !"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Envoyer une notification par mail au client ?"
SR_FIELD_COUNTRY_SELECT=" - Sélectionner un pays - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Traiter le paiement en ligne ?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Votre réservation a été ajoutée avec succès !"
SR_SELECT_BED_QUANTITY="%s lits"
SR_SELECT_BED_QUANTITY_1="1 lit"
SR_BED="Lit"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Merci %s ! Votre demande de réservation %s nous a bien été envoyée. Nous reviendrons vers vous dès que possible pour confirmer cette réservation.</h3><ul><li><a href="_QQ_"%s"_QQ_">Cliquer ici</a> pour retourner à la page d'accueil.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Votre réservation numéro %s a été annulée !</h3><ul> <li><a href="_QQ_"%s"_QQ_">Cliquer ici</a> pour retourner à la page d'accueil.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Taxe de séjour"
SR_EMAIL_TOURIST_TAX="Taxe de séjour : "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s de supplément tarifaire"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s de réduction"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s supplément tarifaire : "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s réduction : "
SR_CONFIRMATION_GUEST_NUMBER="Numéro client"
SR_SELECT_GUEST_QUANTITY="%s clients"
SR_SELECT_GUEST_QUANTITY_1="1 client"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Votre réservation"
SR_CONFIRMATION_PAYMENT_METHOD="Méthode de paiement : "
SR_CONFIRMATION_MOBILE="Numéro de téléphone mobile : "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Non payée"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Payée"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Annulée"
SR_RESERVATION_PAYMENT_STATUS_PENDING="En attente"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ lit "
SR_WE_HAVE_X_BED_LEFT="Il nous reste %s lits"
SR_WE_HAVE_X_BED_LEFT_1="Il nous reste %s lit !"
SR_ONLY_1_LEFT_BED="Réservez au plus vite ! Il nous reste seulement 1 lit"
SR_ONLY_2_LEFT_BED="Il nous reste seulement 2 lits"
SR_ONLY_3_LEFT_BED="Il nous reste seulement 3 lits"
SR_ONLY_4_LEFT_BED="Il nous reste seulement 4 lits"
SR_ONLY_5_LEFT_BED="Il nous reste seulement 5 lits"
SR_ONLY_6_LEFT_BED="Il nous reste seulement 6 lits"
SR_ONLY_7_LEFT_BED="Il nous reste seulement 7 lits"
SR_ONLY_8_LEFT_BED="Il nous reste seulement 8 lits"
SR_ONLY_9_LEFT_BED="Il nous reste seulement 9 lits"
SR_ONLY_10_LEFT_BED="Il nous reste seulement 10 lits"
SR_ONLY_11_LEFT_BED="Il nous reste seulement 11 lits"
SR_ONLY_12_LEFT_BED="Il nous reste seulement 12 lits"
SR_ONLY_13_LEFT_BED="Il nous reste seulement 13 lits"
SR_ONLY_14_LEFT_BED="Il nous reste seulement 14 lits"
SR_ONLY_15_LEFT_BED="Il nous reste seulement 15 lits"
SR_ONLY_16_LEFT_BED="Il nous reste seulement 16 lits"
SR_ONLY_17_LEFT_BED="Il nous reste seulement 17 lits"
SR_ONLY_18_LEFT_BED="Il nous reste seulement 18 lits"
SR_ONLY_19_LEFT_BED="Il nous reste seulement 19 lits"
SR_ONLY_20_LEFT_BED="Il nous reste seulement 20 lits"
SR_DUE_AMOUNT="Montant total dû"
SR_EMAIL_DUE_AMOUNT="Montant dû : "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Votre réservation a été annulée."
SR_CHECKIN_PLACEHOLDER="Votre date d'arrivée"
SR_CHECKOUT_PLACEHOLDER="Votre date de départ"
SR_CHOOSE_ANOTHER_CHECKIN="Veuillez choisir une autre date d'arrivée"
SR_WARNING_SESSION_RENEW="Rafraichir"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Renseigner votre mail"
SR_ENTER_YOUR_RESERVATION_CODE="Renseigner votre code de réservation"
SR_FIND_RESERVATION="Trouver une réservation"
SR_TRACKING_RESERVATION_FOUND_FORMAT="La réservation %s a été trouvée."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="Nous ne trouvons auncune réservation correspondant  à votre recherche ! Merci de modifier les informations et de recommencer !"
SR_RESERVATION_STATUS_FORMAT="Statut de réservation : %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Afficher le formulaire de recherche de réservation"
SR_TRACKING_VIEW_DEFAULT_DESC="Autoriser les clients à vérifier leur réservation en utilisant le code de réservation + l'adresse mail"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ personne "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s personnes "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restreint"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Payer pour la réservation %s à %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total payé : "
SR_CONFIRM_EMAIL="Confirmer le mail"
SR_EMAIL_NOT_MATCH_MESSAGE="Les mails renseignés ne correspondent pas. Veuillez entrer votre mail dans le champ d'adresse mail et confirmez-le en le saisissant dans le champ de confirmation de mail."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Merci pour votre réservation dans notre établissement. Toutefois, nous tenons à vous informer que le paiement de votre réservation n'est pas encore finalisé. Par conséquent, votre réservation n'est pas confirmée. Veuillez réessayer ou contactez-nous pour plus d'informations. </h3> <ul> <li> <a href="_QQ_"%s"_QQ_"> Cliquer ici </a> pour revenir à notre page d'accueil. </li> </ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="Le fichier est trop volumineux pour être téléchargé."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="Vous devez télécharger le champ de fichier : %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Merci %s! Votre numéro de réservation %s a été modifié avec succès.</h3><ul> <li>Nous avons envoyé un mail de confirmation à %s</li><li>Nous avons également notifié %s de votre prochain séjour</li><li><a href="_QQ_"%s"_QQ_">Cliquer ici</a> pour retourner à votre espace client</li></ul>"
SR_AMENDING_HEADING="Modification de la réservation"
SR_LAST_CHANCE_LAST_ROOM="Réservez vite ! Il ne nous reste qu'une seule chambre !"
SR_LAST_CHANCE_LAST_BED="Réservez vite ! Il ne nous reste qu'un seul lit !"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Votre type de chambre choisi <strong>%s</strong> est affiché ci-dessus <i class='fa fa-arrow-up'></i>, nous avons aussi %s autre(s) type(s) de chambres qui pourrai(en)t vous intéresser. Merci <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">de cliquer ici</a> pour les afficher<i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Votre type de chambre choisi <strong>%s</strong> est affiché ci-dessus <i class='fa fa-arrow-up'></i>, nous avons aussi un autre type de chambre qui pourrait vous intéresser. Merci <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">de cliquer ici</a> pour les afficher<i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Votre choix de type de chambres"
SR_ADD_TO_WISH_LIST="Ajouter à votre liste de souhaits"
SR_ADD_TO_WISH_LIST_SUCCESS="Succès !"
SR_WISH_LIST_WAS_ADDED=" a été ajouté."
SR_GO_TO_WISH_LIST="Voir votre liste de souhaits"
SR_WISH_LIST_EMPTY="Votre liste de souhaits est vide !"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="Ma liste de souhaits"
SR_SHARE_ON_FACEBOOK="Partager sur Facebook"
SR_SHARE_ON_TWITTER="SPartager sur Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Partager %s"
SR_RESERVE_NOW="Réservez maintenant !"
SR_ADD_TO_WISHLIST="Ajouter à ma liste de souhaits"
SR_SHARE_NOW="Partagez ceci avec mes amis via les réseaux sociaux"
SR_PIN_THIS="Épingler ceci"
SR_PRIVACY_CONSENT_NOTE="En vous inscrivant à ce site, vous déclarez avoir lu, compris et accepter  notre politique de gestion des données personnelles."
SR_ERR_PRIVACY_CONSENT_MSG="En vous inscrivant à ce site et en réservant, vous déclarez avoir lu, compris et accepter  nos Conditions Générales de Ventes."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Lettres et espaces seulement, s'il vous plaît."
SR_WARN_INVALID_EXPIRATION_MSG="La date d'expiration de votre carte bancaire est invalide !"
SR_PAYMENT_CARD_HOLDER="Nom complet du porteur de la carte bancaire"
SR_PAYMENT_CARD_NUMBER="Numéro de la carte bancaire"
SR_PAYMENT_CARD_CVV="CVV"
SR_PAYMENT_EXPIRATION="Date d'xpiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="Nous acceptons : %s"
language/en-GB/en-GB.com_solidres.ini000060400000070702150751740420013300 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Search criteria"
SR_SEARCH_FIELD_COUNTRY="Country"
SR_SEARCH_FIELD_STATE="State"
SR_SEARCH_FIELD_CITY="City"
SR_SEARCH_CHECKIN_DATE="Check-in date"
SR_SEARCH_CHECKOUT_DATE="Check-out date"
SR_SEARCH="Search"
SR_RESET="Reset"
SR_REMEMBER_ME="Remember me"
SR_FORGOT_YOUR_PASSWORD="Forgot your password"
SR_FORGOT_YOUR_USERNAME="Forgot your username"
SR_REGISTER="Register"
SR_SELECTED_RESERVATION_ASSET="Selected hotel"
SR_STAYING_INFO="Staying information"
SR_NUMBER_OF_ROOM="Rooms"
SR_GUEST_PER_ROOM="Guest per room"
SR_ROOM_RATE_INFO="Room rate information"
SR_ROOM_DESCRIPTION="Room description"
SR_ROOM_RATE_TYPE="Room rate type"
SR_GUEST_INFO="Guest information"
SR_FIRSTNAME="First name"
SR_LASTNAME="Last name"
SR_EMAIL="Email"
SR_PHONENUMBER="Landline number"
SR_CONTACT_INFO="Contact information"
SR_HOLD_GUARANTEE_INFO="Hold/Guarantee information"
SR_ARRIVAL_INFO="Arrival information"
SR_TRAVEL_INFO="Travel information"
SR_COMPANY="Company (Optional)"
SR_ADDRESS_1="Address 1"
SR_ADDRESS_2="Address 2 (Optional)"
SR_CITY="City"
SR_ZIP="Zip/Postal code (Optional)"
SR_STATE="State/Province (Optional)"
SR_COUNTRY="Country"
SR_TRAVEL_FOR_BUSINESS="Productivity/Business"
SR_TRAVEL_FOR_BUSINESS_DESC="I like to be able to get work done and be productive when I'm on the road"
SR_TRAVEL_FOR_RELAX="Relaxation / Pampering"
SR_TRAVEL_FOR_RELAX_DESC="I like to relax and rejuvenate when I'm away from home."
SR_TRAVEL_FOR_ENTERTAINMENT="Entertainment / Attractions"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="I want to have fun and see the best my destination has to offer."
SR_TRAVEL_FOR_FAMILY="Family"
SR_TRAVEL_FOR_FAMILY_DESC="I am attending a family event or vacationing with my family."
SR_TRAVEL_FOR_HONEYMOON="Honeymoon"
SR_TRAVEL_FOR_HONEYMOON_DESC="I am going to enjoy my honey moon."
SR_COMMENT="Comment"
SR_COMMENT_DESC="Please enter here if you have any comments to us."
SR_TAX="Taxes"
SR_SELECT_TARIFF="Select"
SR_SHOW_MAP="Show map"
SR_READMORE="Read more"
SR_PRICE_FROM="Price from"
SR_FIELD_RESERVE="Reserve Now"
SR_FIELD_CONDITIONS="Conditions"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Search for your hotel by using the form above"
SR_NO_ROOM_AVAILABLE="Sold out!"
SR_MAX="Max people allowed"
SR_HAS_ROOM_AVAILABLE="Available"
SR_AVAILABILITY="Availability"
SR_AVAILABLE_ROOM_TYPES="Available room types"
SR_VIEW_GALLERY="View gallery"
SR_YOUR_SEARCH_INFORMATION="Your search information"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Checkin:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Checkout:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Total of adults per room:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Total of children per room:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Continue"
SR_EXTRA_PACKAGES="Extra packages"
SR_ROOM_TYPE_NAME="Room type"
SR_ROOM_TYPE_QUANTITY="Quantity"
SR_ROOM_TYPE_GUEST_PER_ROOM="Guest per room"
SR_NUMBER_OF_NIGHT="Number of nights"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Room & Rate"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Extra packages"
SR_RESERVATION_PROGRESS_GUEST_INFO="Guest information"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Payment information"
SR_RESERVATION_CONFIRMATION="Confirmation"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Finish"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Cheque/Money"
SR_PAYMENT_METHOD_PAYPAL="PayPal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Your selected room quantity exceed the number of available rooms, please <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">click here</a> to go back and make another selection."
SR_CHANGE="Change"
SR_NOTE="Note (Optional)"
SR_MIDDLENAME="Middle name (Optional)"
SR_RESERVATION_PROGRESS_DATES="Dates & Preferences"
SR_ROOM_SELECTION="Room Selection"
SR_ROOM_TYPE_ADULT_PER_ROOM="Adult per room"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Children per room"
SR_ROOM_TYPE_GUEST_NAME="Guest name"
SR_RESERVATION_NOTICE_CONFIRMATION="Please review your reservation details and click on the Finish button to complete your reservation. A confirmation email will be sent to your given email address."
SR_SEARCH_COUPON="Coupon"
SR_MAXIMUM_OCCUPANCY="Maximum occupancy"
SR_OCCUPANCY_ADULT="Adult(s)"
SR_OCCUPANCY_CHILD="Child(ren)"
SR_NIGHTS="%d nights"
SR_NIGHTS_1="%d night"
SR_TOTAL_ROOM_COST_TAX_EXCL="Total room cost (exclude taxes)"
SR_TOTAL_ROOM_COST_TAX_INCL="Total room cost (include taxes)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Total extra cost (exclude taxes)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Total extra cost (include taxes)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Total extra tax"
SR_PRICE_FOR_X_NIGHTS="Price for %d nights"
SR_ROOM_TYPE="Room types"
SR_NUMBER_OF_ROOMS="Number of rooms"
SR_TARIFF_BREAK_DOWN="Rate break down"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Adult number"
SR_SEARCH_CHILDREN_NUMBER="Children number"
SR_NO_TARIFF_AVAILABLE="No available rate"
SR_EMAIL_RESERVATION_COMPLETE="Your reservation is completed"

; Extra
SR_RESERVATION_EXTRA="Name"
SR_RESERVATION_EXTRA_COST="Cost"
SR_RESERVATION_EXTRA_QUANTITY="Quantity"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="An email contains summary of your reservation could not be sent."

SR_BOOK_NOW="Book now"
SR_TOTAL_PRICE="Total Price"
SR_TAX_7_NOT_INCLUDED="TAX (7%) not included"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Service charge (10.70%) not included"

SR_RESERVATION_NOTE="Enter any information you wish to attach to your reservation. The staff cannot guarantee additional requests or comments. Please avoid the use of special characters."
SR_ASK_FOR_CHECKIN_CHECKOUT="To check for room rates and availability, please enter your check-in and check-out dates in the form below"
SR_GRAND_TOTAL="Grand Total"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Facilities"
SR_CUSTOMFIELD_POLICIES="Policies"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Social networks"
SR_CUSTOMFIELD_GENERAL="General"
SR_CUSTOMFIELD_ACTIVITIES="Activities"
SR_CUSTOMFIELD_SERVICES="Services"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parking"
SR_CUSTOMFIELD_CHECKIN="Checkin"
SR_CUSTOMFIELD_CHECKOUT="Checkout"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Cancellation / Prepayment"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Children and extra beds"
SR_CUSTOMFIELD_PETS="Pets"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Accepted credit cards"
SR_BREAKFAST_INCLUDED="Breakfast included"
SR_BREAKFAST_EXCLUDED="Breakfast not included"
SR_FREE_CANCELLATION="Free cancellation"
SR_NON_REFUNDABLE="Non refundable"
SR_ROOM_OCCUPANCY="Occupancy"
SR_TAXES="Taxes"
SR_PREPAYMENT="Prepayment"
SR_ROOM_FACILITIES="Room facilities"
SR_ROOM_SIZE="Room size"
SR_BED_SIZE="Bed size"

SR_COUPON_ENTER="Enter coupon code (Optional)"
SR_COUPON_ACCEPTED="Coupon is accepted"
SR_COUPON_REJECTED="Coupon is not valid"
SR_APPLY_COUPON="Apply coupon"

SR_ROOM_AVAILABLE_FROM_TO="We have %s rooms available from %s to %s for your search for %s adults and %s children"
SR_APPLIED_COUPON="Applied coupon"
SR_REMOVE="Remove"
SR_CAN_NOT_REMOVE_COUPON="Can not remove coupon"
SR_AVAILABILITY_CALENDAR="Availability Calendar"
SR_AVAILABILITY_CALENDAR_VIEW="View calendar"

SR_AVAILABILITY_CALENDAR_BUSY="Not available"
SR_FEATURED_ROOM_TYPE="Featured"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Please select at least one room type to proceed."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Invalid. You must book at least %d days and no more than %d days in advance of your arrival. The minimum length of stay is %d days."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Invalid. Check out date must be after check in date."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Invalid. You have to book at least %d days in advance of your arrival."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Invalid. You are not allowed to book more than %d days in advance of your arrival."
SR_NEXT="Next"
SR_BACK="Back"
SR_CUSTOMER_TITLE="Your title (Optional)"
SR_CUSTOMER_TITLE_MR="Mr."
SR_CUSTOMER_TITLE_MRS="Mrs."
SR_CUSTOMER_TITLE_MS="Ms."
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Rate type: Per person per night, please select your room quantity, then provide your occupancy in order to get the exact rate for this room"
SR_ERROR_CHILD_MAX_AGE="Ages must be between"
SR_BOOKING_CONDITIONS="Booking conditions"
SR_PRIVACY_POLICY="Privacy Policy"
SR_ROOM_COST="Room cost: "
SR_ENHANCE_YOUR_STAY="Enhance your stay"
SR_I_AGREE_WITH="I agree with "
SR_GUEST_INFORMATION="Guest information"
SR_PAYMENT_INFO="Payment information"
SR_GUEST_INFO_STEP_NOTICE="Enter your information and payment method"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Select your room type, review the prices and click Next to continue"
SR_AGE_OF_CHILD_AT_CHECKOUT="Age of child(ren) at checkout"
SR_GUEST_NAME="Guest name"
SR_ROOM="Room"
SR_CHILD="Child"
SR_ADULT="Adult"
SR_ROOMTYPE_QUANTITY="Quantity"
SR_AND="and"
SR_STEP_ROOM_AND_RATE="Room & Rates"
SR_STEP_GUEST_INFO_AND_PAYMENT="Guest info & Payment"
SR_STEP_CONFIRMATION="Confirmation"
SR_PAYMENT_METHOD_PAYLATER="Pay Later"
SR_PAYMENT_METHOD_BANKWIRE="Bank Wire"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Please keep in mind that it may take a few days for the payment to be clear. In the wire transfer payment notes, please put your reservation code to help us process your reservation faster."
SR_PROCESSING="Processing..."

; Since 0.6.0
SR_STAR="star"
SR_STARS="stars"
JGLOBAL_FIELDSET_PUBLISHING="Publishing"
JTOOLBAR_APPLY="Save"
JTOOLBAR_ARCHIVE="Archive"
JTOOLBAR_ASSIGN="Assign"
JTOOLBAR_BACK="Back"
JTOOLBAR_BATCH="Batch"
JTOOLBAR_CANCEL="Cancel"
JTOOLBAR_CHECKIN="Check In"
JTOOLBAR_CLOSE="Close"
JTOOLBAR_DEFAULT="Default"
JTOOLBAR_DELETE="Delete"
JTOOLBAR_DISABLE="Disable"
JTOOLBAR_DUPLICATE="Duplicate"
JTOOLBAR_EDIT="Edit"
JTOOLBAR_EDIT_CSS="Edit CSS"
JTOOLBAR_EDIT_HTML="Edit HTML"
JTOOLBAR_EMPTY_TRASH="Empty trash"
JTOOLBAR_ENABLE="Enable"
JTOOLBAR_EXPORT="Export"
JTOOLBAR_HELP="Help"
JTOOLBAR_INSTALL="Install"
JTOOLBAR_NEW="New"
JTOOLBAR_OPTIONS="Options"
JTOOLBAR_PUBLISH="Publish"
JTOOLBAR_PURGE_CACHE="Purge Cache"
JTOOLBAR_REBUILD="Rebuild"
JTOOLBAR_REFRESH_CACHE="Refresh Cache"
JTOOLBAR_REMOVE="Remove"
JTOOLBAR_SAVE="Save &amp; Close"
JTOOLBAR_SAVE_AND_NEW="Save &amp; New"
JTOOLBAR_SAVE_AS_COPY="Save as Copy"
JTOOLBAR_UNARCHIVE="Unarchive"
JTOOLBAR_UNINSTALL="Uninstall"
JTOOLBAR_UNPUBLISH="Unpublish"
JTOOLBAR_UPLOAD="Upload"
JTOOLBAR_TRASH="Trash"
JTOOLBAR_UNTRASH="Untrash"
JTOOLBAR_REBUILD_SUCCESS="Successfully rebuilt"
JTOOLBAR_VERSIONS="Versions"
SR_SEARCH_LOCATION="Location"
SR_DASHBOARD="Dashboard"
SR_PHONE="Phone"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Deposit amount"
SR_TOTAL_ROOM_TAX="Total room tax"

; Since 0.7.0
SR_STANDARD_TARIFF="Standard rate"
SR_SEARCH_RESET="Reset"
SR_SELECT_A_TARIFF="Select a rate"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="We have no availability for this room type between %s and %s. <a href="_QQ_"%s"_QQ_">Click here to start over by changing your dates.</a>"
SR_SELECT_A_TARIFF_FIRST="Please select a rate first."
SR_SMOKING="Smoking options"
SR_SMOKING_ROOM="Smoking room"
SR_NON_SMOKING_ROOM="Non smoking room"
SR_SELECT_ROOM_QUANTITY="%s rooms"
SR_SELECT_ROOM_QUANTITY_1="1 room"
SR_SELECT_ADULT_QUANTITY="%s adults"
SR_SELECT_ADULT_QUANTITY_1="1 adult"
SR_SELECT_CHILD_QUANTITY="%s children"
SR_SELECT_CHILD_QUANTITY_1="1 child"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s nights"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 night"
SR_TARIFF_SUFFIX_PER_ROOM="/ room "
SR_CHILD_AGE_SELECTION="%s years old"
SR_CHILD_AGE_SELECTION_1="%s year old"
SR_CHILD_AGE_SELECTION_JS="years old"
SR_CHILD_AGE_SELECTION_1_JS="year old"
SR_EMAIL_CONFIRM_RESERVATION="Reservation confirmation"
SR_EMAIL_REF_ID="Reference ID: %s"
SR_EMAIL_GREETING_NAME="Dear %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Thank you for your reservation at %s. Should you have any further questions, please do not hesitate to contact us at any time.</p><p>We are pleased to confirm your reservation as follows:</p>"
SR_EMAIL_CHECKIN="Checkin: "
SR_EMAIL_CHECKOUT="Checkout: "
SR_EMAIL_PAYMENT_METHOD="Payment method: "
SR_EMAIL_EMAIL="Email: "
SR_EMAIL_NUM_NIGHT="Number of nights: "
SR_EMAIL_SUB_TOTAL="Room cost (excl tax): "
SR_EMAIL_TAX="Room cost tax: "
SR_EMAIL_GRAND_TOTAL="Grand total: "
SR_EMAIL_DEPOSIT_AMOUNT="Deposit Amount: "
SR_EMAIL_EXTRAS_ITEMS="Extras items: "
SR_EMAIL_CONNECT_WITH_US="Connect With Us: "
SR_EMAIL_CONTACT_INFO="Contact Info: "
SR_EMAIL_ADDRESS="Address: "
SR_EMAIL_PHONE="Phone: "
SR_EMAIL_OTHER_INFO="Other info"
SR_EMAIL_EXTRA_QUANTITY="Quantity: "
SR_EMAIL_EXTRA_PRICE="Price: "
SR_EMAIL_NOTE="Note: "
SR_EMAIL_BANKWIRE_INFO="Bank wire info"
SR_EMAIL_NOTIFICATION_RESERVATION="Reservation Notification"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>A new reservation has been made, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Hello,"
SR_EMAIL_EXTRA_TAX_EXCL="Extra cost (excl tax): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Extra tax: "
SR_VAT_NUMBER="VAT Number (Optional)"
SR_PASSWORD="Password"
SR_USERNAME="Username"
SR_WE_HAVE_X_ROOM_LEFT="We have %s rooms left"
SR_WE_HAVE_X_ROOM_LEFT_1="We have %s room left!"
SR_ONLY_1_LEFT="Last chance! Only 1 room left"
SR_ONLY_2_LEFT="Only 2 rooms left"
SR_ONLY_3_LEFT="Only 3 rooms left"
SR_ONLY_4_LEFT="Only 4 rooms left"
SR_ONLY_5_LEFT="Only 5 rooms left"
SR_ONLY_6_LEFT="Only 6 rooms left"
SR_ONLY_7_LEFT="Only 7 rooms left"
SR_ONLY_8_LEFT="Only 8 rooms left"
SR_ONLY_9_LEFT="Only 9 rooms left"
SR_ONLY_10_LEFT="Only 10 rooms left"
SR_ONLY_11_LEFT="Only 11 rooms left"
SR_ONLY_12_LEFT="Only 12 rooms left"
SR_ONLY_13_LEFT="Only 13 rooms left"
SR_ONLY_14_LEFT="Only 14 rooms left"
SR_ONLY_15_LEFT="Only 15 rooms left"
SR_ONLY_16_LEFT="Only 16 rooms left"
SR_ONLY_17_LEFT="Only 17 rooms left"
SR_ONLY_18_LEFT="Only 18 rooms left"
SR_ONLY_19_LEFT="Only 19 rooms left"
SR_ONLY_20_LEFT="Only 20 rooms left"
SR_SHOW_MORE_INFO="More info"
SR_HIDE_MORE_INFO="Hide info"
SR_AVAILABILITY_CALENDAR_CLOSE="Close calendar"
SR_STARTING_FROM="Starting from"
SR_SELECT="Select"
SU="Su"
MO="Mo"
TU="Tu"
WE="We"
TH="Th"
FR="Fr"
SA="Sa"
SR_USERNAME_EXISTS="Username exists. Please choose another one."
JFIELD_METADATA_ROBOTS_DESC="Robots Instructions"
JFIELD_METADATA_ROBOTS_LABEL="Robots"
JFIELD_XREFERENCE_DESC="An optional field to allow this record to be cross-referenced to an external data system if required."
JFIELD_XREFERENCE_LABEL="External Reference"
JCLEAR="Clear"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Register with us for future convenience: fast and easy booking. Please enter your desired username and password in the following fields."
SR_PRICE_IS_FOR_X_NIGHT="Price is for %s nights"
SR_PRICE_IS_FOR_X_NIGHT_1="Price is for %s night"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="We found no matched rooms for your search from %s to %s, please adjust your booking dates or room options."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="We found %s rooms that matched your search from %s to %s for %s adult(s) and %s child(ren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="We have less than your number of requested rooms, but our current available rooms (%s) could satisfy your search from %s to %s for %s adult(s) and %s child(ren) if you select a different number of rooms."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Sorry but our rooms are not available for your search from %s to %s for %s adult(s) and %s child(ren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="We found %s rooms that matched your search from %s to %s."
SR_MOBILEPHONE="Mobile phone"
SR_RESERVATION_SAVE_ERROR="Your reservation could not be saved, please try again."
SR_EMAIL_PAYMENT_METHOD_INFO="Payment information"
SR_RESERVATION_COMPLETE="<h3>Thank you %s! Your reservation number %s has been completed successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_EXTRA_PRICE_ADULT="For adult"
SR_EXTRA_PRICE_CHILD="For child"
SR_EXTRA_MORE_DETAILS="Details"
SR_EXTRA_PRICE="Price"
SR_TOTAL_DISCOUNT="Total discount"
SR_EMAIL_TOTAL_DISCOUNT="Total discount: "
SR_ROOM_X_COST="Room cost"
SR_ROOM_X_DISCOUNTED_AMOUNT="Room discounted amount"
SR_ROOM_X_DISCOUNTED_COST="Room cost after discounted"
SR_VIEW_TARIFF_BREAKDOWN="Details"
SR_SHOW_TARIFFS="Rates"
SR_HIDE_TARIFFS="Rates"
SR_CONFIRMATION_ROOM_DETAILS="Details"
SR_CONFIRMATION_GUEST_NAME="Guest name"
SR_CONFIRMATION_ADULT_NUMBER="Adult number"
SR_CONFIRMATION_CHILD_NUMBER="Child number"
SR_CONFIRMATION_FULLNAME="Your full name: "
SR_EXTRA="Extra"
SR_EXTRA_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Per room"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Per booking per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Per booking per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Per room per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Per room per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Per person per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Per room per person per night"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Price for adult"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Enter the price for adult of this Extra/Service. The currency of Property will apply here."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Price for child"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Enter the price for child of this Extra/Service. The currency of Property will apply here."

; Since 0.9.0
SR_DAYS="%d days"
SR_DAYS_1="%d day"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s days"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 day"
SR_LENGTH_OF_STAY="Length of stay"
SR_EMAIL_LENGTH_OF_STAY="Length of stay: "
SR_PRICE_IS_FOR_X_DAY="Price is for %s days"
SR_PRICE_IS_FOR_X_DAY_1="Price is for %s day"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Room single supplement"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Room cost after single supplement"
JLIB_APPLICATION_SAVE_SUCCESS="Item successfully saved."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Item successfully submitted."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="New reservation %s from %s %s"
SR_RESERVATION_CODE="Code"
SR_RESERVATION_INVOICE="Invoice"
SR_RESERVATION_CHECKIN="Checkin"
SR_RESERVATION_CHECKOUT="Checkout"
SR_RESERVATION_ASSET="Property"
SR_RESERVATION_TOTAL_PAID="Total paid"
SR_DESCRIPTION="Description"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Booking number"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Booking details"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s rooms"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s room"
SR_CONFIRMATION_CHECKIN="Check-in"
SR_CONFIRMATION_CHECKOUT="Check-out"
SR_CONFIRMATION_TOTAL_PRICE="Total price"
SR_CONFIRMATION_ASSET_NAME="Name"
SR_CONFIRMATION_ASSET_ADDRESS="Address"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Phone"
SR_ASSET_INFO="Hotel information"
SR_BOOKING_INFO="Your booking information"
SR_BOOKING_CONFIRMATION_ADULTS="%s adults"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s adult"
SR_BOOKING_CONFIRMATION_CHILDREN="%s children"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s child"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Guest full name"
SR_BOOKING_CONFIRMATION_SMOKING="Smoking"
SR_BOOKING_CONFIRMATION_ROOM_COST="Room cost"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Room details"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Your dates appear to be in the past"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Thank you %s! Your reservation number %s has been completed successfully but the payment is not yet completed.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Invalid. Minimum length of stay is %d days."
SR_USER_INFO_USERNAME_PLURAL="You have logged with username: %s"

; Since 0.9.4
SR_COUPON_CHECK="Check"
SR_RESERVATION_ORIGIN_DIRECT="Direct"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="This room type requires at least %d people and maximum %d people."
SR_RESERVE="Reserve"
SR_SEARCH_ROOMS="Rooms"
SR_SEARCH_ROOM="Room"
SR_SEARCH_ROOM_ADULTS="Adults"
SR_SEARCH_ROOM_CHILDREN="Children"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Reservation has been cancelled"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Reservation %s from %s %s has been cancelled"
SR_EMAIL_GREETING_TEXT_CANCELLED="Your reservation %s at %s has been cancelled."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Reservation %s has been cancelled, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_COUPON_CODE="Coupon code: "

; Since 1.8.0
SR_FULLNAME="Full name"
SR_MESSAGE="Message"
SR_SEND_MESSAGE="Send message"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Booking inquiry from %s for %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Thank you, your inquiry has been sent successfully. We will get back to you as soon as possible."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per booking per stay (night or day)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Per room per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per room per person per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Percentage of room's daily rate"
SR_EXTRA_PRICE_DAILY_RATE="%s costs %d percent of room daily rate per stay"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Your session is expiring soon."
SR_WARNING_SESSION_EXPIRED="Your session has been expired, <a href="_QQ_"#"_QQ_">click here</a> to start a new session."
SR_WEBSITE="Website"
SR_YOUR_STAY="Your stay"
SR_AVAILABLE_ROOMS="Available room"
SR_MAX_GUESTS="Max guests"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Book Now"
SR_TARIFF_PACKAGE_PER_ROOM="Package per room"
SR_TARIFF_PACKAGE_PER_PERSON="Package per person"
SR_TARIFF_PER_ROOM_PER_NIGHT="Rate per room per stay"
SR_TARIFF_PER_PERSON_PER_NIGHT="Rate per person per stay"
SR_ROOM_X_EXTRA_AMOUNT="Room extras item cost"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Your reservation has been amended successfully"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Send outgoing emails?"
SR_FIELD_COUNTRY_SELECT=" - Select Country - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Process online payment?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Your reservation has been added successfully"
SR_SELECT_BED_QUANTITY="%s beds"
SR_SELECT_BED_QUANTITY_1="1 bed"
SR_BED="Bed"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Thank you %s! Your reservation request %s has been sent to us, we will get back to you as soon as possible to confirm this reservation.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Your reservation number %s has been cancelled.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Tourist tax"
SR_EMAIL_TOURIST_TAX="Tourist tax: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount: "
SR_CONFIRMATION_GUEST_NUMBER="Guest number"
SR_SELECT_GUEST_QUANTITY="%s guests"
SR_SELECT_GUEST_QUANTITY_1="1 guest"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Rooms and rates information"
SR_CONFIRMATION_PAYMENT_METHOD="Payment method: "
SR_CONFIRMATION_MOBILE="Mobile phone: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Unpaid"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Paid"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Cancelled"
SR_RESERVATION_PAYMENT_STATUS_PENDING="Pending"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ bed "
SR_WE_HAVE_X_BED_LEFT="We have %s beds left"
SR_WE_HAVE_X_BED_LEFT_1="We have %s bed left!"
SR_ONLY_1_LEFT_BED="Last chance! Only 1 bed left"
SR_ONLY_2_LEFT_BED="Only 2 beds left"
SR_ONLY_3_LEFT_BED="Only 3 beds left"
SR_ONLY_4_LEFT_BED="Only 4 beds left"
SR_ONLY_5_LEFT_BED="Only 5 beds left"
SR_ONLY_6_LEFT_BED="Only 6 beds left"
SR_ONLY_7_LEFT_BED="Only 7 beds left"
SR_ONLY_8_LEFT_BED="Only 8 beds left"
SR_ONLY_9_LEFT_BED="Only 9 beds left"
SR_ONLY_10_LEFT_BED="Only 10 beds left"
SR_ONLY_11_LEFT_BED="Only 11 beds left"
SR_ONLY_12_LEFT_BED="Only 12 beds left"
SR_ONLY_13_LEFT_BED="Only 13 beds left"
SR_ONLY_14_LEFT_BED="Only 14 beds left"
SR_ONLY_15_LEFT_BED="Only 15 beds left"
SR_ONLY_16_LEFT_BED="Only 16 beds left"
SR_ONLY_17_LEFT_BED="Only 17 beds left"
SR_ONLY_18_LEFT_BED="Only 18 beds left"
SR_ONLY_19_LEFT_BED="Only 19 beds left"
SR_ONLY_20_LEFT_BED="Only 20 beds left"
SR_DUE_AMOUNT="Total due amount"
SR_EMAIL_DUE_AMOUNT="Due Amount: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Your reservation has been cancelled."
SR_CHECKIN_PLACEHOLDER="Your check-in date"
SR_CHECKOUT_PLACEHOLDER="Your check-out date"
SR_CHOOSE_ANOTHER_CHECKIN="Please choose another check-in date"
SR_WARNING_SESSION_RENEW="Renew"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Enter your email"
SR_ENTER_YOUR_RESERVATION_CODE="Enter your reservation code"
SR_FIND_RESERVATION="Find reservation"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reservation code %s found."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="We can not find any reservations with your given information, please recheck your information and try again."
SR_RESERVATION_STATUS_FORMAT="Reservation status: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Show property's reservation tracking form"
SR_TRACKING_VIEW_DEFAULT_DESC="Allow guests check their reservation using reservation code + email address"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s people "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/ro-RO/ro-RO.com_solidres.ini000060400000076343150751740420013423 0ustar00; Joomla! Proiect
; Drepturi de autor (C) 2005 - 2010 Open source contează. Toate drepturile rezervate.
; Licență GNU General Public License versiunea 2 sau ulterioară; consultați LICENSE.txt, consultați LICENSE.php
; Notă: Toate fișierele .ini trebuie salvate ca UTF-8

SR_SEARCH_RESERVATION_ASSET="Criteriu de cautare"
SR_SEARCH_FIELD_COUNTRY="Țară"
SR_SEARCH_FIELD_STATE="Stat"
SR_SEARCH_FIELD_CITY="Oraș"
SR_SEARCH_CHECKIN_DATE="Data check-in-ului"
SR_SEARCH_CHECKOUT_DATE="Data check-out-ului"
SR_SEARCH="Căutare"
SR_RESET="Resetează"
SR_REMEMBER_ME="Tine-ma minte"
SR_FORGOT_YOUR_PASSWORD="Ți-ai uitat parola?"
SR_FORGOT_YOUR_USERNAME="Ți-ai uitat utilizatoru?"
SR_REGISTER="Înregistreaza-te"
SR_SELECTED_RESERVATION_ASSET="Hotelul selectat"
SR_STAYING_INFO="Informații de ședere"
SR_NUMBER_OF_ROOM="Camere"
SR_GUEST_PER_ROOM="Oaspeți per cameră"
SR_ROOM_RATE_INFO="Informații despre tariful camerei"
SR_ROOM_DESCRIPTION="Descrierea camerei"
SR_ROOM_RATE_TYPE="Tipul tarifului a camerei"
SR_GUEST_INFO="Informație oaspete"
SR_FIRSTNAME="Nume"
SR_LASTNAME="Numele de familie"
SR_EMAIL="E-mail"
SR_PHONENUMBER="Număr de telefon fix"
SR_CONTACT_INFO="Informatii de contact"
SR_HOLD_GUARANTEE_INFO="Informații despre reținere / garanție"
SR_ARRIVAL_INFO="Informații despre sosire"
SR_TRAVEL_INFO="Informații de călătorie"
SR_COMPANY="Companie (optional)"
SR_ADDRESS_1="Adresa 1"
SR_ADDRESS_2="Adresa 2 (optional)"
SR_CITY="Oraș"
SR_ZIP="Zip / Cod Poștal (Optional)"
SR_STATE="Stat / Provincie (Optional)"
SR_COUNTRY="Țară"
SR_TRAVEL_FOR_BUSINESS="Productivitate / Business"
SR_TRAVEL_FOR_BUSINESS_DESC="Îmi place să pot lucra și să fiu productiv atunci când sunt în călătorie"
SR_TRAVEL_FOR_RELAX="Relaxare / răsfăț"
SR_TRAVEL_FOR_RELAX_DESC="Îmi place să mă relaxez și să întineresc când sunt plecat de acasă."
SR_TRAVEL_FOR_ENTERTAINMENT="Divertisment / Atracții"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Vreau să mă distrez și să văd ce e m-ai bun în destinația aleasă."
SR_TRAVEL_FOR_FAMILY="Familie"
SR_TRAVEL_FOR_FAMILY_DESC="Particip la un eveniment de familie sau vacanță cu familia."
SR_TRAVEL_FOR_HONEYMOON="Luna de miere"
SR_TRAVEL_FOR_HONEYMOON_DESC="O să mă bucur de luna mea de miere."
SR_COMMENT="Cometariu"
SR_COMMENT_DESC="Vă rugăm să introduceți aici dacă aveți comentarii."
SR_TAX="Taxe"
SR_RULE_RESTRICTION="Au rămas doar 4 camere"
SR_SELECT_TARIFF="Selectați"
SR_SHOW_MAP="Arată harta"
SR_READMORE="Citeste mai mult"
SR_PRICE_FROM="Preț de la"
SR_FIELD_RESERVE="Rezervați acum"
SR_FIELD_CONDITIONS="Condiții"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Căutați-vă hotelul utilizând formularul de mai sus"
SR_NO_ROOM_AVAILABLE="Vândut!"
SR_MAX="Maximum oaspeti permiși"
SR_HAS_ROOM_AVAILABLE="Disponibil"
SR_AVAILABILITY="Disponibilitate"
SR_AVAILABLE_ROOM_TYPES="Tipuri de cameră disponibile"
SR_VIEW_GALLERY="Vezi galeria"
SR_YOUR_SEARCH_INFORMATION="Informațiile dvs. de căutare"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Check-in:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Check-out:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Total adulți per cameră:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Total copii per cameră:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Continuă"
SR_EXTRA_PACKAGES="Pachete suplimentare"
SR_ROOM_TYPE_NAME="Tip cameră"
SR_ROOM_TYPE_QUANTITY="Cantitate"
SR_ROOM_TYPE_GUEST_PER_ROOM="Oaspeți per cameră"
SR_NUMBER_OF_NIGHT="Număr de nopți"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Cameră și tarif"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Pachete suplimentare"
SR_RESERVATION_PROGRESS_GUEST_INFO="Informații oaspete"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Informații de plată"
SR_RESERVATION_CONFIRMATION="Confirmare"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Finalizare"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Cec/Bani"
SR_PAYMENT_METHOD_PAYPAL="PayPal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Cantitatea de camere selectate depășește numărul de camere disponibile, vă rugăm <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">click aici</a> ca să vă întoarceți și să faceți o altă selecție."
SR_CHANGE="Schimbă"
SR_NOTE="Notă (Opțional)"
SR_MIDDLENAME="Al doilea nume (Opțional)"
SR_RESERVATION_PROGRESS_DATES="Date și preferințe"
SR_ROOM_SELECTION="Selectarea camerei"
SR_ROOM_TYPE_ADULT_PER_ROOM="Adult per cameră"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Copii per cameră"
SR_ROOM_TYPE_GUEST_NAME="Nume oaspete"
SR_RESERVATION_NOTICE_CONFIRMATION="Vă rugăm să consultați detaliile rezervării și dați clic pe butonul finalizare pentru a finaliza rezervarea. Un e-mail de confirmare va fi trimis la adresa dvs. de e-mail."
SR_SEARCH_COUPON="Coupon"
SR_MAXIMUM_OCCUPANCY="Ocupare maximă"
SR_OCCUPANCY_ADULT="Adult(i)"
SR_OCCUPANCY_CHILD="Copil(ii)"
SR_NIGHTS="%d nopți"
SR_NIGHTS_1="%d noapte"
SR_TOTAL_ROOM_COST_TAX_EXCL="Costul total al camerei (fără taxe)"
SR_TOTAL_ROOM_COST_TAX_INCL="Costul total al camerei (inclusiv taxele)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Cost suplimentar total (fără taxe)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Cost suplimentar total (inclusiv taxe)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Impozit total suplimentar "
SR_PRICE_FOR_X_NIGHTS="Pret pentru %d nopți"
SR_ROOM_TYPE="Tipuri de cameră"
SR_NUMBER_OF_ROOMS="Număr de camere"
SR_TARIFF_BREAK_DOWN="Defalcarea ratei"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Numărul adultului"
SR_SEARCH_CHILDREN_NUMBER="Numărul copilului"
SR_NO_TARIFF_AVAILABLE="Tarif indisponibil"
SR_EMAIL_RESERVATION_COMPLETE="Rezervarea dvs. este finalizată"

; Extra
SR_RESERVATION_EXTRA="Nume"
SR_RESERVATION_EXTRA_COST="Cost"
SR_RESERVATION_EXTRA_QUANTITY="Cantitate"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="Un e-mail ce conține un rezumat al rezervării dvs. nu a putut fi trimis."

SR_BOOK_NOW="Rezerva acum"
SR_TOTAL_PRICE="Prețul total"
SR_TAX_7_NOT_INCLUDED="TAXA (7%) nu este inclusă"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Taxa pentru servicii (10.70%) nu este inclusă"

SR_RESERVATION_NOTE="Introduceți toate informațiile pe care doriți să le atașați rezervării. Personalul nu poate garanta cereri sau comentarii suplimentare. Vă rugăm să evitați utilizarea unor caractere speciale."
SR_ASK_FOR_CHECKIN_CHECKOUT="Pentru a verifica tarifele și disponibilitatea camerelor, vă rugăm să introduceți datele de check-in și check-out în formularul de mai jos"
SR_GRAND_TOTAL="Sumă totală"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Facilităţi"
SR_CUSTOMFIELD_POLICIES="Politici"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Rețele sociale"
SR_CUSTOMFIELD_GENERAL="General"
SR_CUSTOMFIELD_ACTIVITIES="Activitați"
SR_CUSTOMFIELD_SERVICES="Servicii"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parcare"
SR_CUSTOMFIELD_CHECKIN="Check-in"
SR_CUSTOMFIELD_CHECKOUT="Check-out"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Anulare / plată în avans"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Copii și paturi suplimentare"
SR_CUSTOMFIELD_PETS="Animale de companie"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Carduri de credit acceptate"
SR_BREAKFAST_INCLUDED="Mic dejun inclus"
SR_BREAKFAST_EXCLUDED="Micul dejun nu este inclus"
SR_FREE_CANCELLATION="Anulare gratuită"
SR_NON_REFUNDABLE="Nerambursabile"
SR_ROOM_OCCUPANCY="Ocupare"
SR_TAXES="Taxe"
SR_PREPAYMENT="Avans"
SR_ROOM_FACILITIES="Facilitati camere"
SR_ROOM_SIZE="Dimensiunea camerei"
SR_BED_SIZE="Dimensiunea patului"

SR_COUPON_ENTER="Introduceți codul promoțional (opțional)"
SR_COUPON_ACCEPTED="Cuponul este acceptat"
SR_COUPON_REJECTED="Cuponul nu este valabil"
SR_APPLY_COUPON="Aplicați cupon"

SR_ROOM_AVAILABLE_FROM_TO="Noi avem %s camere disponibile din %s pînă %s pentru căutarea dvs. pentru %s adulți și %s copii"
SR_APPLIED_COUPON="Cupon aplicat"
SR_REMOVE="Elimină"
SR_CAN_NOT_REMOVE_COUPON="Nu se poate de eliminat cuponul"
SR_AVAILABILITY_CALENDAR="Calendar de disponibilitate"
SR_AVAILABILITY_CALENDAR_VIEW="Vizualizați calendarul"

SR_AVAILABILITY_CALENDAR_BUSY="Nu e disponibil"
SR_FEATURED_ROOM_TYPE="Recomandate"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Vă rugăm să selectați cel puțin un tip de cameră pentru a continua."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Invalid. Trebuie să rezervați cel puțin %d zile și nu mai mult de %d cu zile înainte de sosirea dvs. Durata minimă de ședere este %d zile."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Invalid. Data de plecare trebuie să fie după data check-in-ului."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Invalid. Durata minimă de ședere este %d nopți."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Invalid. Trebuie să rezervați cel puțin %d cu zile înainte de sosirea dvs."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Invalid. Nu aveți voie să rezervați mai mult de %d cu zile înainte de sosirea dvs."
SR_NEXT="Următor"
SR_BACK="Înapoi"
SR_CUSTOMER_TITLE="Titlul dvs. (opțional)"
SR_CUSTOMER_TITLE_MR="Domnul."
SR_CUSTOMER_TITLE_MRS="Doamna."
SR_CUSTOMER_TITLE_MS="Domnișoară."
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Tip de tarif: Per persoană pe noapte, vă rugăm să selectați numărul dvs. de camere, apoi asigurați-vă ocuparea pentru a obține tariful exact pentru această cameră"
SR_ERROR_CHILD_MAX_AGE="Vârstele trebuie să fie între"
SR_BOOKING_CONDITIONS="Condiții de rezervare"
SR_PRIVACY_POLICY="Politica de Confidențialitate"
SR_ROOM_COST="Costul camerei: "
SR_ENHANCE_YOUR_STAY="Îmbunătățește-ți șederea"
SR_I_AGREE_WITH="Sunt de acord cu "
SR_GUEST_INFORMATION="Informații pentru oaspeți"
SR_PAYMENT_INFO="Informatii de plata"
SR_GUEST_INFO_STEP_NOTICE="Introduceți informațiile și metoda de plată"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Selectați tipul de cameră, examinați prețurile și faceți clic pe Următorul pentru a continua"
SR_AGE_OF_CHILD_AT_CHECKOUT="Vîrsta copilului (iilor) la check-out"
SR_GUEST_NAME="Numele oaspetelui"
SR_ROOM="Cameră"
SR_CHILD="Copil"
SR_ADULT="Adult"
SR_ROOMTYPE_QUANTITY="Cantitate"
SR_AND="și"
SR_STEP_ROOM_AND_RATE="Camere și tarife"
SR_STEP_GUEST_INFO_AND_PAYMENT="Informații oaspete și plată"
SR_STEP_CONFIRMATION="Confirmare"
SR_PAYMENT_METHOD_PAYLATER="Plateste mai tarziu"
SR_PAYMENT_METHOD_BANKWIRE="Tranfer Bancar"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Vă rugăm să rețineți că este posibil să fie nevoie de câteva zile. În notele de plată prin transfer bancar, introduceți codul de rezervare pentru a ne ajuta să prelucrăm mai rapid rezervarea."
SR_PROCESSING="Prelucrare..."

; Since 0.6.0
SR_STAR="stea"
SR_STARS="stele"
JGLOBAL_FIELDSET_PUBLISHING="Publicare"
JTOOLBAR_APPLY="Salvați"
JTOOLBAR_ARCHIVE="Arhiva"
JTOOLBAR_ASSIGN="Atribui"
JTOOLBAR_BACK="Înapoi"
JTOOLBAR_BATCH="Lot"
JTOOLBAR_CANCEL="Anulare"
JTOOLBAR_CHECKIN="Check In"
JTOOLBAR_CLOSE="Închide"
JTOOLBAR_DEFAULT="Mod implicit"
JTOOLBAR_DELETE="Șterge"
JTOOLBAR_DISABLE="Dezactivați"
JTOOLBAR_DUPLICATE="Duplicat"
JTOOLBAR_EDIT="Editați"
JTOOLBAR_EDIT_CSS="Editați CSS"
JTOOLBAR_EDIT_HTML="Editează HTML"
JTOOLBAR_EMPTY_TRASH="Goliți coșul"
JTOOLBAR_ENABLE="Permite"
JTOOLBAR_EXPORT="Export"
JTOOLBAR_HELP="Ajutor"
JTOOLBAR_INSTALL="Instalare"
JTOOLBAR_NEW="Nou"
JTOOLBAR_OPTIONS="Opțiuni"
JTOOLBAR_PUBLISH="Publică"
JTOOLBAR_PURGE_CACHE="Șterge Cache"
JTOOLBAR_REBUILD="Reconstruește"
JTOOLBAR_REFRESH_CACHE="Actualizați memoria Cache"
JTOOLBAR_REMOVE="Elimina"
JTOOLBAR_SAVE="Salvați &amp; Închide"
JTOOLBAR_SAVE_AND_NEW="Salvați &amp; Nou"
JTOOLBAR_SAVE_AS_COPY="Salvați ca copie"
JTOOLBAR_UNARCHIVE="Dezarhivați"
JTOOLBAR_UNINSTALL="Dezinstalați"
JTOOLBAR_UNPUBLISH="Anulați publicarea"
JTOOLBAR_UPLOAD="Încărcați"
JTOOLBAR_TRASH="Coș de gunoi"
JTOOLBAR_UNTRASH="Anulați ștergerea"
JTOOLBAR_REBUILD_SUCCESS="Reconstruită cu succes"
JTOOLBAR_VERSIONS="Versiuni"
SR_SEARCH_LOCATION="Locație"
SR_DASHBOARD="Dashboard"
SR_PHONE="Telefon"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Suma depusă"
SR_TOTAL_ROOM_TAX="Taxa totală a camerei"

; Since 0.7.0
SR_STANDARD_TARIFF="Rata standard"
SR_SEARCH_RESET="Resetare"
SR_SELECT_A_TARIFF="Selectați o rată"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="Nu avem disponibilitate pentru acest tip de cameră între %s și %s. <a href="_QQ_"%s"_QQ_">Faceți clic aici pentru a începe prin a schimba datele.</a>"
SR_SELECT_A_TARIFF_FIRST="Vă rugăm să selectați mai întâi o rată."
SR_SMOKING="Opțiuni pentru fumat"
SR_SMOKING_ROOM="Camera pentru fumat"
SR_NON_SMOKING_ROOM="Cameră pentru nefumători"
SR_SELECT_ROOM_QUANTITY="%s camere"
SR_SELECT_ROOM_QUANTITY_1="1 cameră"
SR_SELECT_ADULT_QUANTITY="%s adulți"
SR_SELECT_ADULT_QUANTITY_1="1 adult"
SR_SELECT_CHILD_QUANTITY="%s copii"
SR_SELECT_CHILD_QUANTITY_1="1 copil"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s nopți"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 noapte"
SR_TARIFF_SUFFIX_PER_ROOM="/ cameră "
SR_CHILD_AGE_SELECTION="%s varsta"
SR_CHILD_AGE_SELECTION_1="%s varsta"
SR_CHILD_AGE_SELECTION_JS="varsta"
SR_CHILD_AGE_SELECTION_1_JS="varsta"
SR_EMAIL_CONFIRM_RESERVATION="Confirmarea rezervarii"
SR_EMAIL_REF_ID="ID de referinta: %s"
SR_EMAIL_GREETING_NAME="Dragă %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Vă mulțumim pentru rezervare la %s. Dacă aveți alte întrebări, nu ezitați să ne contactați în orice moment.</p><p>Suntem încântați să confirmăm rezervarea după cum urmează:</p>"
SR_EMAIL_CHECKIN="Check-in: "
SR_EMAIL_CHECKOUT="Check-out: "
SR_EMAIL_PAYMENT_METHOD="Modalitate de plată:"
SR_EMAIL_EMAIL="E-mail: "
SR_EMAIL_NUM_NIGHT="Număr de nopți: "
SR_EMAIL_SUB_TOTAL="Costul camerei (fără taxe): "
SR_EMAIL_TAX="Taxa de cost: "
SR_EMAIL_GRAND_TOTAL="Total general: "
SR_EMAIL_DEPOSIT_AMOUNT="Suma depusă: "
SR_EMAIL_EXTRAS_ITEMS="Elemente suplimentare: "
SR_EMAIL_CONNECT_WITH_US="Conecteaza-te cu noi: "
SR_EMAIL_CONTACT_INFO="Informatii de contact: "
SR_EMAIL_ADDRESS="Aadresă: "
SR_EMAIL_PHONE="Telefon: "
SR_EMAIL_OTHER_INFO="Alte informații"
SR_EMAIL_EXTRA_QUANTITY="Cantitate: "
SR_EMAIL_EXTRA_PRICE="Preț: "
SR_EMAIL_NOTE="Notă: "
SR_EMAIL_BANKWIRE_INFO="Informații despre transfer bancar"
SR_EMAIL_NOTIFICATION_RESERVATION="Notificare de rezervare"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>O nouă rezervare a fost făcută, vă rugăm să verificați detaliile de mai jos sau<a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">faceți clic aici</a> pentru a o vedea:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Salut,"
SR_EMAIL_EXTRA_TAX_EXCL="Cost suplimentar (fără taxe): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Taxa suplimentara: "
SR_VAT_NUMBER="Numărul de TVA (opțional)"
SR_PASSWORD="Parola"
SR_USERNAME="Utilizator"
SR_WE_HAVE_X_ROOM_LEFT="Mai avem %s camere rămase"
SR_WE_HAVE_X_ROOM_LEFT_1="Mai avem %s cameră!"
SR_ONLY_1_LEFT="Ultima sansa! A rămas doar 1 cameră"
SR_ONLY_2_LEFT="Au rămas doar 2 camere"
SR_ONLY_3_LEFT="Au rămas doar 3 camere"
SR_ONLY_4_LEFT="Au rămas doar 4 camere"
SR_ONLY_5_LEFT="Au rămas doar 5 camere"
SR_ONLY_6_LEFT="Au rămas doar 6 camere"
SR_ONLY_7_LEFT="Au rămas doar 7 camere"
SR_ONLY_8_LEFT="Au rămas doar 8 camere"
SR_ONLY_9_LEFT="Au rămas doar 9 camere"
SR_ONLY_10_LEFT="Au rămas doar 10 camere"
SR_ONLY_11_LEFT="Au rămas doar 11 camere"
SR_ONLY_12_LEFT="Au rămas doar 12 camere"
SR_ONLY_13_LEFT="Au rămas doar 13 camere"
SR_ONLY_14_LEFT="Au rămas doar 14 camere"
SR_ONLY_15_LEFT="Au rămas doar 15 camere"
SR_ONLY_16_LEFT="Au rămas doar 16 camere"
SR_ONLY_17_LEFT="Au rămas doar 17 camere"
SR_ONLY_18_LEFT="Au rămas doar 18 camere"
SR_ONLY_19_LEFT="Au rămas doar 19 camere"
SR_ONLY_20_LEFT="Au rămas doar 20 camere"
SR_SHOW_MORE_INFO="Mai multe informatii"
SR_HIDE_MORE_INFO="Ascundeți informațiile"
SR_AVAILABILITY_CALENDAR_CLOSE="Închideți calendarul"
SR_STARTING_FROM="Începând de la"
SR_SELECT="Selectează"
SU="Dm"
MO="Lu"
TU="Ma"
WE="Mi"
TH="Jo"
FR="Vi"
SA="Sî"
SR_USERNAME_EXISTS="Numele de utilizator există. Vă rugăm să alegeți altul."
JFIELD_METADATA_ROBOTS_DESC="Instrucțiuni despre roboți"
JFIELD_METADATA_ROBOTS_LABEL="Roboți"
JFIELD_XREFERENCE_DESC="Un câmp opțional pentru a permite trimiterea acestei înregistrări la un sistem de date extern, dacă este necesar."
JFIELD_XREFERENCE_LABEL="Referință externă"
JCLEAR="Ștergeți"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Înregistrează-te la noi pentru comoditate pe viitoar: rezervare rapidă și ușoară. Vă rugăm să introduceți numele de utilizator și parola dorită în următoarele câmpuri."
SR_PRICE_IS_FOR_X_NIGHT="Prețul este pentru %s nopți"
SR_PRICE_IS_FOR_X_NIGHT_1="Prețul este pentru %s noapte"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="Nu am găsit camere potrivite pentru căutarea dvs. de la %s pînă la %s, vă rugăm să ajustați datele de rezervare sau opțiunile camerei."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="Am gasit %s camere care corespund căutării dvs. din %s pînă %s pentru %s adult(i) și %s copil(ii)."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="Avem mai puține camere decît ați solicitat, la moment sunt camere disponibile (%s) care v-ar putea satisface căutarea de la %s pînă la %s pentru %s adult(i) și %s copil(ii) dacă selectați un număr diferit de camere."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Ne pare rău, dar camerele noastre nu sunt disponibile pentru căutarea dvs. din %s pînă la %s pentru %s adult(i) and %s copil(ii)."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="Am gasit %s camere care corespund căutării dvs. din %s pînă la %s."
SR_MOBILEPHONE="Telefon mobil"
SR_RESERVATION_SAVE_ERROR="Rezervarea dvs. nu a putut fi salvată. Încercați din nou."
SR_EMAIL_PAYMENT_METHOD_INFO="Informatii de plata"
SR_RESERVATION_COMPLETE="<h3>Vă mulțumim %s! Numărul dvs. de rezervare %s a fost finalizat cu succes.</h3><ul> <li>Am trimis un e-mail de confirmare la %s</li><li>Am mai notificat %s despre viitoarea ședere</li><li><a href="_QQ_"%s"_QQ_">Click aici</a> pentru a reveni la pagina principală.</li></ul>"
SR_EXTRA_PRICE_ADULT="Pentru adult"
SR_EXTRA_PRICE_CHILD="Pentru copil"
SR_EXTRA_MORE_DETAILS="Detalii"
SR_EXTRA_PRICE="Preț"
SR_TOTAL_DISCOUNT="Reducerea totală"
SR_EMAIL_TOTAL_DISCOUNT="Reducerea totală: "
SR_ROOM_X_COST="Prețul camerei"
SR_ROOM_X_DISCOUNTED_AMOUNT="Suma cu reducere a camerei"
SR_ROOM_X_DISCOUNTED_COST="Costul camerei după reducere"
SR_VIEW_TARIFF_BREAKDOWN="Detalii"
SR_SHOW_TARIFFS="Tarife"
SR_HIDE_TARIFFS="Tarife"
SR_CONFIRMATION_ROOM_DETAILS="Detalii"
SR_CONFIRMATION_GUEST_NAME="Numele oaspetelui"
SR_CONFIRMATION_ADULT_NUMBER="Numărul adultului"
SR_CONFIRMATION_CHILD_NUMBER="Numărul copilului"
SR_CONFIRMATION_FULLNAME="Numele tău complet: "
SR_EXTRA="Suplimentar"
SR_EXTRA_PER_BOOKING="Per rezervare"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Per rezervare"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Per cameră"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Per rezervare pe noapte"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Per rezervare de persoană"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Per cameră pe noapte"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Per cameră de persoană"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Per persoană pe noapte"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Per cameră per persoană per noapte"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Preț pentru adult"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Introduceți prețul pentru adult al acestui serviciu suplimentar /. Valuta de proprietate se va aplica aici."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Preț pentru copil"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="ntroduceți prețul pentru copilul acestui serviciu suplimentar /. Valuta de proprietate se va aplica aici."

; Since 0.9.0
SR_DAYS="%d zile"
SR_DAYS_1="%d zi"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s zile"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 zi"
SR_LENGTH_OF_STAY="Durata șederii"
SR_EMAIL_LENGTH_OF_STAY="Durata șederii: "
SR_PRICE_IS_FOR_X_DAY="Prețul este pentru %s zile"
SR_PRICE_IS_FOR_X_DAY_1="Prețul este pentru %s zi"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Supliment unic"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Costul camerei după supliment"
JLIB_APPLICATION_SAVE_SUCCESS="Elementul a fost salvat cu succes"
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Elementul a fost trimis cu succes."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="Noua rezervare %s de la %s %s"
SR_RESERVATION_CODE="Cod"
SR_RESERVATION_INVOICE="Invoice"
SR_RESERVATION_CHECKIN="Check-in"
SR_RESERVATION_CHECKOUT="Check-out"
SR_RESERVATION_ASSET="Proprietate"
SR_RESERVATION_TOTAL_PAID="Plata totala"
SR_DESCRIPTION="Descriere"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Numarul de rezervare"
SR_CONFIRMATION_EMAIL="E-mail: "
SR_CONFIRMATION_BOOKING_DETAILS="Detaliile rezervării"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s camere"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s cameră"
SR_CONFIRMATION_CHECKIN="Check-in"
SR_CONFIRMATION_CHECKOUT="Check-out"
SR_CONFIRMATION_TOTAL_PRICE="Prețul total"
SR_CONFIRMATION_ASSET_NAME="Nume"
SR_CONFIRMATION_ASSET_ADDRESS="Adresa"
SR_CONFIRMATION_ASSET_EMAIL="E-mail"
SR_CONFIRMATION_ASSET_PHONE="Telefon"
SR_ASSET_INFO="Informatii despre hotel"
SR_BOOKING_INFO="Informațiile dvs. de rezervare"
SR_BOOKING_CONFIRMATION_ADULTS="%s adulți"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s adult"
SR_BOOKING_CONFIRMATION_CHILDREN="%s copii"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s copil"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Numele complet al oaspetelui"
SR_BOOKING_CONFIRMATION_SMOKING="Fumător"
SR_BOOKING_CONFIRMATION_ROOM_COST="Costul camerei"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Detalii camera"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Datele dvs. par să fie în trecut"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Vă mulțumim %s! Numărul dvs. de rezervare %s a fost finalizată cu succes, dar plata nu este încă finalizată.</h3><ul> <li>Am trimis un e-mail de confirmare la %s</li><li>Am mai notificat %s despre viitoarea ședere a dvs.</li><li><a href="_QQ_"%s"_QQ_">Click aici</a> pentru a reveni la pagina principală</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Invalid. Durata minimă de ședere este %d nopți."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Invalid. Durata minimă de ședere este %d zile."
SR_USER_INFO_USERNAME_PLURAL="V-ați autentificat cu numele de utilizator: %s"

; Since 0.9.4
SR_COUPON_CHECK="Verifică"
SR_RESERVATION_ORIGIN_DIRECT="Direct"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="Acest tip de cameră necesită cel puțin %d oameni și maxim %d oameni."
SR_RESERVE="Rezervă"
SR_SEARCH_ROOMS="Camere"
SR_SEARCH_ROOM="Cameră"
SR_SEARCH_ROOM_ADULTS="Adulți"
SR_SEARCH_ROOM_CHILDREN="Copii"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Rezervarea a fost anulată"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Rezervarea %s de la %s %s a fost anulată"
SR_EMAIL_GREETING_TEXT_CANCELLED="Rezervarea dvs. %s din %s a fost anulată."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Rezervarea %s a fost anulată, verificați detaliile de mai jos sau <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click aici</a> pentru a o vedea:</p>"
SR_EMAIL_COUPON_CODE="Codul promoțional: "

; Since 1.8.0
SR_FULLNAME="Numele complet"
SR_MESSAGE="Mesaj"
SR_SEND_MESSAGE="Trimite mesaj"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Cerere de rezervare de la %s pentru %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Vă mulțumim, ancheta dvs. a fost trimisă cu succes. Vom reveni cât mai curând posibil."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per rezervare pe sejur (noapte sau zi)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Per cameră per sejur"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per cameră per persoană per sejur"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Procentul ratei zilnice a camerei"
SR_EXTRA_PRICE_DAILY_RATE="%s costă %d procentul ratei zilnice a camerei per sejur"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Sesiunea dvs. expiră curând."
SR_WARNING_SESSION_EXPIRED="Your session has been expired, <a href="_QQ_"#"_QQ_">click aici</a> pentru a începe o nouă sesiune."
SR_WEBSITE="Website"
SR_YOUR_STAY="Sederea dvs."
SR_AVAILABLE_ROOMS="Cameră disponibilă"
SR_MAX_GUESTS="Maxim oaspeți"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Rezervează acum"
SR_TARIFF_PACKAGE_PER_ROOM="Pachet per cameră"
SR_TARIFF_PACKAGE_PER_PERSON="Pachet per persoană"
SR_TARIFF_PER_ROOM_PER_NIGHT="Tarif per cameră per sejur"
SR_TARIFF_PER_PERSON_PER_NIGHT="Tarif per persoană per sejur"
SR_ROOM_X_EXTRA_AMOUNT="Costul suplimentar al camerei"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Rezervarea dvs. a fost modificată cu succes"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Trimiteți e-mailuri de ieșire?"
SR_FIELD_COUNTRY_SELECT=" - Selecteaza Țara - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Procesați plata online?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Rezervarea dvs. a fost adăugată cu succes"
SR_SELECT_BED_QUANTITY="%s paturi"
SR_SELECT_BED_QUANTITY_1="1 pat"
SR_BED="Pat"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Vă Mulțumim %s! Cererea dvs. de rezervare %s ne-a fost trimisă, vă vom contacta în cel mai scurt timp posibil pentru a confirma această rezervare.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click aici</a> pentru a reveni la pagina principală.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Numărul dvs. de rezervare %s a fost anulat.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Click aici</a> pentru a reveni la pagina principală.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Taxa de turism"
SR_EMAIL_TOURIST_TAX="Taxa de turism: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s suprataxă"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s reducere"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s suprataxă: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s reducere: "
SR_CONFIRMATION_GUEST_NUMBER="Numărul oaspeților"
SR_SELECT_GUEST_QUANTITY="%s oaspeți"
SR_SELECT_GUEST_QUANTITY_1="1 oaspete"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Informații despre camere și tarife"
SR_CONFIRMATION_PAYMENT_METHOD="Modalitate de plată: "
SR_CONFIRMATION_MOBILE="Telefon mobil: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Neplătit"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Plătit"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Anulat"
SR_RESERVATION_PAYMENT_STATUS_PENDING="In asteptare"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ pat "
SR_WE_HAVE_X_BED_LEFT="Avem %s paturi rămase"
SR_WE_HAVE_X_BED_LEFT_1="Avem %s pat rămas!"
SR_ONLY_1_LEFT_BED="Last chance! Only 1 bed left"
SR_ONLY_2_LEFT_BED="Doar 2 paturi rămase"
SR_ONLY_3_LEFT_BED="Doar 3 paturi rămase"
SR_ONLY_4_LEFT_BED="Doar 4 paturi rămase"
SR_ONLY_5_LEFT_BED="Doar 5 paturi rămase"
SR_ONLY_6_LEFT_BED="Doar 6 paturi rămase"
SR_ONLY_7_LEFT_BED="Doar 7 paturi rămase"
SR_ONLY_8_LEFT_BED="Doar 8 paturi rămase"
SR_ONLY_9_LEFT_BED="Doar 9 paturi rămase"
SR_ONLY_10_LEFT_BED="Doar 10 paturi rămase"
SR_ONLY_11_LEFT_BED="Doar 11 paturi rămase"
SR_ONLY_12_LEFT_BED="Doar 12 paturi rămase"
SR_ONLY_13_LEFT_BED="Doar 13 paturi rămase"
SR_ONLY_14_LEFT_BED="Doar 14 paturi rămase"
SR_ONLY_15_LEFT_BED="Doar 15 paturi rămase"
SR_ONLY_16_LEFT_BED="Doar 16 paturi rămase"
SR_ONLY_17_LEFT_BED="Doar 17 paturi rămase"
SR_ONLY_18_LEFT_BED="Doar 18 paturi rămase"
SR_ONLY_19_LEFT_BED="Doar 19 paturi rămase"
SR_ONLY_20_LEFT_BED="Doar 20 paturi rămase"
SR_DUE_AMOUNT="Suma totală datorată"
SR_EMAIL_DUE_AMOUNT="Suma datorată: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Rezervarea dvs. a fost anulată."
SR_CHECKIN_PLACEHOLDER="Data de check-in"
SR_CHECKOUT_PLACEHOLDER="Data de check-out"
SR_CHOOSE_ANOTHER_CHECKIN="Vă rugăm să alegeți o altă dată de check-in"
SR_WARNING_SESSION_RENEW="Reînnoieste"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Introduceți adresa dvs. de email"
SR_ENTER_YOUR_RESERVATION_CODE="Introduceți codul de rezervare"
SR_FIND_RESERVATION="Găsiți rezervarea"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Codul de rezervare %s a fost găsit."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="Nu putem găsi nicio rezervare cu informațiile date, vă rugăm să verificați informațiile dvs. și să încercați din nou."
SR_RESERVATION_STATUS_FORMAT="Starea rezervării: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Afișați formularul de urmărire a rezervării proprietății"
SR_TRACKING_VIEW_DEFAULT_DESC="Permiteți oaspeților să verifice rezervarea utilizând codul de rezervare + adresa de e-mail"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ persoană "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s persoane "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricționat"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Plata pentru codul de rezervare %s la %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Plata totala: "
SR_CONFIRM_EMAIL="Confirmați adresa de e-mail"
SR_EMAIL_NOT_MATCH_MESSAGE="Adresele de e-mail introduse nu se potrivesc. Vă rugăm să introduceți adresa de e-mail în câmpul de adresă de e-mail și să confirmați introducerea acesteia în câmpul de confirmare a adresei de e-mail."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Vă mulțumim că ați făcut rezervarea. Cu toate acestea, am dori să vă informăm că plata rezervării dvs. nu este încă finalizată, prin urmare, rezervarea dvs. nu este încă confirmată. Încercați din nou sau contactați-ne pentru mai multe informații.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click aici</a> pentru a reveni la pagina principală</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="Fișierul este prea mare pentru a fi încărcat."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="Trebuie să încărcați câmpul fișierului: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Vă mulțumim %s! Numărul dvs. de rezervare %s a fost modificat cu succes.</h3><ul> <li>Am trimis un e-mail de confirmare la %s</li><li>Am mai notificat %s despre viitoarea ședere </li><li><a href="_QQ_"%s"_QQ_">Click aici</a> pentru a reveni la pagina dashboard.</li></ul>"
SR_AMENDING_HEADING="Modificare rezervare"
SR_LAST_CHANCE_LAST_ROOM="Ultima sansa! Mai avem doar 1 cameră!"
SR_LAST_CHANCE_LAST_BED="Ultima sansa! Mai avem doar 1 pat!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Tipul de cameră ales de dvs. <strong>%s</strong> este afișată mai sus <i class='fa fa-arrow-up'></i>, de asemenea avem %s alte tipuri de camere care v-ar putea interesa. Vă rugăm <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">apăsați aici</a> pentru a le vizualiza <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Tipul de cameră ales de dvs.  <strong>%s</strong> este afișată mai sus <i class='fa fa-arrow-up'></i>, avem și un alt tip de cameră care v-ar putea interesa. Vă rugăm <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">apăsați aici</a> pentru a o vizualiza <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Tipul de cameră ales de dvs. "
SR_ADD_TO_WISH_LIST="Adaugă la lista de preferințe"
SR_ADD_TO_WISH_LIST_SUCCESS="Succes"
SR_WISH_LIST_WAS_ADDED="a fost adăugat."
SR_GO_TO_WISH_LIST="Accesați lista de preferințe"
SR_WISH_LIST_EMPTY="Lista dvs. de preferințe este goală!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="Lista mea de preferințe"
SR_SHARE_ON_FACEBOOK="Distribuie pe Facebook"
SR_SHARE_ON_TWITTER="Distribuie pe Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Distribuie %s"
SR_RESERVE_NOW="Rezervați acum"
SR_ADD_TO_WISHLIST="Adaugă pe lista mea de preferințe"
SR_SHARE_NOW="Distribuie asta prietenilor mei prin rețelele de socializare"
SR_PIN_THIS="Fixați acesta"
SR_PRIVACY_CONSENT_NOTE="Înscriindu-vă pe acest site web și acceptând Politica de confidențialitate, sunteți de acord cu acest site web care vă stochează informațiile."
SR_ERR_PRIVACY_CONSENT_MSG="Pentru a vă înscrie pe acest site web și a face rezervare, trebuie să fiți de acord cu Politica noastră de confidențialitate."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Litere și spații doar."
SR_WARN_INVALID_EXPIRATION_MSG="Anul de expirare al cardului dvs. este nevalid sau e în trecut."
SR_PAYMENT_CARD_HOLDER="Numele complet al titularului cardului"
SR_PAYMENT_CARD_NUMBER="Număr card"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expirare"
SR_PAYMENT_WE_ACCEPT_FORMAT="Noi acceptam: %s"language/he-IL/he-IL.com_solidres.ini000060400000100603150751740420013306 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="קריטריון חיפוש"
SR_SEARCH_FIELD_COUNTRY="מדינה"
SR_SEARCH_FIELD_STATE="מדינה (ארה״ב)"
SR_SEARCH_FIELD_CITY="עיר"
SR_SEARCH_CHECKIN_DATE="תאריך הגעה"
SR_SEARCH_CHECKOUT_DATE="תאריך עזיבה"
SR_SEARCH="חיפוש"
SR_RESET="איפוס"
SR_REMEMBER_ME="זכור אותי"
SR_FORGOT_YOUR_PASSWORD="שכחתי סיסמא"
SR_FORGOT_YOUR_USERNAME="שכחתי שם משתמש"
SR_REGISTER="הרשמה"
SR_SELECTED_RESERVATION_ASSET="יחידת אירוח נבחרת"
SR_STAYING_INFO="מידע שהייה"
SR_NUMBER_OF_ROOM="חדרים"
SR_GUEST_PER_ROOM="אורחים בחדר"
SR_ROOM_RATE_INFO="מידע על תעריף החדרים"
SR_ROOM_DESCRIPTION="תאור החדר"
SR_ROOM_RATE_TYPE="סוג תעריף החדר"
SR_GUEST_INFO="פרטי אורח"
SR_FIRSTNAME="שם פרטי"
SR_LASTNAME="שם משפחה"
SR_EMAIL="כתובת מייל"
SR_PHONENUMBER="מספר טלפון"
SR_CONTACT_INFO="פרטי יצירת קשר"
SR_HOLD_GUARANTEE_INFO="פרטי עירבון"
SR_ARRIVAL_INFO="מידע על זמן ההגעה"
SR_TRAVEL_INFO="מידע על הטיול"
SR_COMPANY="חברה (לא חובה)"
SR_ADDRESS_1="כתובת 1"
SR_ADDRESS_2="כתובת 2"
SR_CITY="עיר"
SR_ZIP="מיקוד"
SR_STATE="מחוז (אופציונלי)"
SR_COUNTRY="ארץ"
SR_TRAVEL_FOR_BUSINESS="עסקים"
SR_TRAVEL_FOR_BUSINESS_DESC="אני מעדיף שיש לי את האפשרות לעבוד כשאני בדרכים"
SR_TRAVEL_FOR_RELAX="הרפיה/פינוק"
SR_TRAVEL_FOR_RELAX_DESC="אני אוהב להירגע ולהטעין את עצמי מחדש כשאני מחוץ לבית"
SR_TRAVEL_FOR_ENTERTAINMENT="בידור/אטרקציות"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="אני רוצה להנות ולראות את המקומות הטובים ביותר באזור"
SR_TRAVEL_FOR_FAMILY="משפחה"
SR_TRAVEL_FOR_FAMILY_DESC="אני מגיע לצורך מפגש משפחתי או חופשה עם משפחתי"
SR_TRAVEL_FOR_HONEYMOON="ירח דבש"
SR_TRAVEL_FOR_HONEYMOON_DESC="אני הולך להנות מירח הדבש שלי."
SR_COMMENT="תגובה"
SR_COMMENT_DESC="השאר תגובה כאן"
SR_TAX="מיסים"
SR_RULE_RESTRICTION="רק 4 חדרים נותרו"
SR_SELECT_TARIFF="בחר"
SR_SHOW_MAP="הצג מפה"
SR_READMORE="קרא עוד"
SR_PRICE_FROM="מחיר מ"
SR_FIELD_RESERVE="הזמינו עכשיו"
SR_FIELD_CONDITIONS="תנאים"
SR_NOTICE_USER_FIELD_SEARCH_FORM="חפש את יחידת האירוח שלך בסרגל החיפוש המופיע למעלה"
SR_NO_ROOM_AVAILABLE="אזל!"
SR_MAX="מקסימום אנשים"
SR_HAS_ROOM_AVAILABLE="זמין"
SR_AVAILABILITY="זמינות"
SR_AVAILABLE_ROOM_TYPES="סוגי חדרים זמינים"
SR_VIEW_GALLERY="צפייה בגלריה"
SR_YOUR_SEARCH_INFORMATION="תוצאות החיפוש"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="הגעה"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="עזיבה"
SR_YOUR_SEARCH_INFORMATION_ADULTS="סך הכל מבוגרים לחדר"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="סך הכל ילדים לחדר"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="המשך"
SR_EXTRA_PACKAGES="חבילות נוספות"
SR_ROOM_TYPE_NAME="סוג חדר"
SR_ROOM_TYPE_QUANTITY="כמות"
SR_ROOM_TYPE_GUEST_PER_ROOM="מספר אורחים בחדר"
SR_NUMBER_OF_NIGHT="מספר לילות"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="חדר ותעריף"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="חבילות נוספות"
SR_RESERVATION_PROGRESS_GUEST_INFO="פרטי האורח"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="פרטי התשלום"
SR_RESERVATION_CONFIRMATION="אישור"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="סיום"
SR_PAYMENT_METHOD_CHEQUE_MONEY="צ'ק/מזומן"
SR_PAYMENT_METHOD_PAYPAL="PayPal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="כמות החדרים שבחרת חורגת ממספר החדרים הזמינים,  לחץ כאן  כדי לחזור ולבצע בחירה נוספת."
SR_CHANGE="שנה"
SR_NOTE="הערה (אופציונלי)"
SR_MIDDLENAME="שם אמצעי (אופציונלי)"
SR_RESERVATION_PROGRESS_DATES="תאריכים והעדפות"
SR_ROOM_SELECTION="מבחר חדרים"
SR_ROOM_TYPE_ADULT_PER_ROOM="מספר מבוגרים בחדר"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="מספר ילדים בחדר"
SR_ROOM_TYPE_GUEST_NAME="שם האורח"
SR_RESERVATION_NOTICE_CONFIRMATION="אנא בדוק את פרטי ההזמנה ולחץ לסיום. פרטי אישור ההזמנה ישלחו אלייך במייל"
SR_SEARCH_COUPON="שובר הנחה"
SR_MAXIMUM_OCCUPANCY="תפוסה מקסימלית"
SR_OCCUPANCY_ADULT="מבוגרים"
SR_OCCUPANCY_CHILD="ילדים"
SR_NIGHTS="%d לילות"
SR_NIGHTS_1="לילה %d"
SR_TOTAL_ROOM_COST_TAX_EXCL="סך הכל עלות חדר (ללא מיסים)"
SR_TOTAL_ROOM_COST_TAX_INCL="סך הכל עלות חדר (כולל מיסים)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="סך הכל עלויות נוספות (ללא מיסים)"
SR_TOTAL_EXTRA_COST_TAX_INCL="סך הכל עלויות נוספות (כולל מיסים)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="סך הכל מיסים"
SR_PRICE_FOR_X_NIGHTS="מחיר עבור %d לילות "
SR_ROOM_TYPE="סוגי חדרים"
SR_NUMBER_OF_ROOMS="מספר חדרים"
SR_TARIFF_BREAK_DOWN="פירוט התעריף"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="מספר מבוגרים"
SR_SEARCH_CHILDREN_NUMBER="מספר ילדים"
SR_NO_TARIFF_AVAILABLE="אין תעריף זמין"
SR_EMAIL_RESERVATION_COMPLETE="ההזמנה הושלמה"

; Extra
SR_RESERVATION_EXTRA="שם"
SR_RESERVATION_EXTRA_COST="עלות"
SR_RESERVATION_EXTRA_QUANTITY="כמות"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="איימיל עם פרטי הזמנתך לא נשלח בהצלחה."

SR_BOOK_NOW="הזמן עכשיו"
SR_TOTAL_PRICE="מחיר סופי"
SR_TAX_7_NOT_INCLUDED="7% מס לא כלול במחיר"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="דמי שירות (10.70%) לא כלולים"

SR_RESERVATION_NOTE="הכנס כאן פרטים נוספים להזמנתך, מקום האירוח לא מתחייב שזה יבוצע. אנא המנע מתווים מיוחדים"
SR_ASK_FOR_CHECKIN_CHECKOUT="לבדיקת זמינות החדרים הכנס את תאריך ההגעה והעזיבה בשורת החיפוש למטה"
SR_GRAND_TOTAL="סכום סופי"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="מתקנים"
SR_CUSTOMFIELD_POLICIES="מדיניות המקום"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="רשתות חברתיות"
SR_CUSTOMFIELD_GENERAL="כללי"
SR_CUSTOMFIELD_ACTIVITIES="פעילויות"
SR_CUSTOMFIELD_SERVICES="שירותים"
SR_CUSTOMFIELD_INTERNET="אינטרנט"
SR_CUSTOMFIELD_PARKING="חניה"
SR_CUSTOMFIELD_CHECKIN="הגעה"
SR_CUSTOMFIELD_CHECKOUT="עזיבה"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="ביטול \ תשלום מראש"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="ילדים ומיטות נוספות."
SR_CUSTOMFIELD_PETS="בעלי חיים"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="כרטיסי אשראי מכובדים"
SR_BREAKFAST_INCLUDED="ארוחת בוקר כלולה"
SR_BREAKFAST_EXCLUDED="ארוחת בוקר אינה כלולה"
SR_FREE_CANCELLATION="ביטול חינם"
SR_NON_REFUNDABLE="לא ניתן לביטול"
SR_ROOM_OCCUPANCY="תפוסה"
SR_TAXES="מיסים"
SR_PREPAYMENT="תשלום מראש"
SR_ROOM_FACILITIES="מתקני החדר"
SR_ROOM_SIZE="גודל החדר"
SR_BED_SIZE="גודל המיטה"

SR_COUPON_ENTER="הכנס שובר הנחה"
SR_COUPON_ACCEPTED="השובר התקבל"
SR_COUPON_REJECTED="השובר אינו תקין"
SR_APPLY_COUPON="החל שובר הנחה"

SR_ROOM_AVAILABLE_FROM_TO="יש לנו %s חדרים זמינים מ-%s עד %s לחיפוש שלך עבור %s מבוגרים ו-%s ילדים"
SR_APPLIED_COUPON="שובר פעיל"
SR_REMOVE="הסר"
SR_CAN_NOT_REMOVE_COUPON="לא ניתן להסיר את השובר"
SR_AVAILABILITY_CALENDAR="זמינות בלוח השנה"
SR_AVAILABILITY_CALENDAR_VIEW="הצג לוח שנה"

SR_AVAILABILITY_CALENDAR_BUSY="לא זמין"
SR_FEATURED_ROOM_TYPE="מומלצים"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="אנא בחר סוג חדר על מנת להמשיך"
SR_INVALID_CHECKIN_CHECKOUT_DATE="שגיאה. ההזמנה חייבת להיות לפחות %d ימים, ולא מעל %d ימים לפני הגעתך. זמן השהייה המינימלי הוא %d ימים"
SR_ERROR_INVALID_CHECKIN_CHECKOUT="שגיאה, תאריך העזיבה צריך להיות אחרי תאריך ההגעה"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="שגיאה, אורך השהייה הוא מינימום %d לילות."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="שגיאה, עליך להזמין לפחות %d ימים לפני הגעתך."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="שגיאה, לא ניתן לבצע הזמנה ליותר מ%d ימים לפני הגעתך"
SR_NEXT="הבא"
SR_BACK="הקודם"
SR_CUSTOMER_TITLE="התואר שלך (אופציונלי)"
SR_CUSTOMER_TITLE_MR="אדון"
SR_CUSTOMER_TITLE_MRS="גברת"
SR_CUSTOMER_TITLE_MS="גברת"
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="סוג התעריף: לאדם ללילה, אנא בחר את כמות החדרים שלך, ולאחר מכן ספק את התפוסה על מנת לקבל את התעריף המדויק עבור חדר זה"
SR_ERROR_CHILD_MAX_AGE="גילאים צריכים להיות בין"
SR_BOOKING_CONDITIONS="תנאי ההזמנה"
SR_PRIVACY_POLICY="פרטיות"
SR_ROOM_COST="מחיר החדר"
SR_ENHANCE_YOUR_STAY="שפר את שהותך"
SR_I_AGREE_WITH="אני מסכים עם"
SR_GUEST_INFORMATION="פרטי אורח"
SR_PAYMENT_INFO="פרטי התשלום"
SR_GUEST_INFO_STEP_NOTICE="אנא הכנס את פרטיך ופרטי אמצעי התשלום"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="בחר את סוג החדר, צפה במחירים והמשך"
SR_AGE_OF_CHILD_AT_CHECKOUT="גיל הילדים בעזיבה"
SR_GUEST_NAME="שם האורח"
SR_ROOM="חדר"
SR_CHILD="ילד"
SR_ADULT="מבוגר"
SR_ROOMTYPE_QUANTITY="כמות"
SR_AND="ו"
SR_STEP_ROOM_AND_RATE="חדר ותעריף"
SR_STEP_GUEST_INFO_AND_PAYMENT="פרטי האורח והתשלום"
SR_STEP_CONFIRMATION="אישור"
SR_PAYMENT_METHOD_PAYLATER="שלם אחר כך"
SR_PAYMENT_METHOD_BANKWIRE="העברה בנקאית"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="שים לב שיתכן שיעברו מספר ימים עד שהתשלום יועבר במלואו. במקרה של העברה בנקאית יש לציין את קוד ההזמנה על מנת שנוכל לאשר את ההזמנה מהר יותר."
SR_PROCESSING="מעבד נתונים"

; Since 0.6.0
SR_STAR="כוכב"
SR_STARS="כוכבים"
JGLOBAL_FIELDSET_PUBLISHING="מפרסם"
JTOOLBAR_APPLY="שמור"
JTOOLBAR_ARCHIVE="שלח לארכיון"
JTOOLBAR_ASSIGN="שייך ל"
JTOOLBAR_BACK="הקודם"
JTOOLBAR_BATCH="קבוצה"
JTOOLBAR_CANCEL="ביטול"
JTOOLBAR_CHECKIN="הגעה"
JTOOLBAR_CLOSE="סגור"
JTOOLBAR_DEFAULT="ברירת מחדל"
JTOOLBAR_DELETE="מחק"
JTOOLBAR_DISABLE="השבת"
JTOOLBAR_DUPLICATE="שכפל"
JTOOLBAR_EDIT="ערוך"
JTOOLBAR_EDIT_CSS="ערוך CSS"
JTOOLBAR_EDIT_HTML="ערוך HTML"
JTOOLBAR_EMPTY_TRASH="רוקן אשפה"
JTOOLBAR_ENABLE="אפשר"
JTOOLBAR_EXPORT="יצא"
JTOOLBAR_HELP="עזרה"
JTOOLBAR_INSTALL="התקן"
JTOOLBAR_NEW="חדש"
JTOOLBAR_OPTIONS="אפשרויות"
JTOOLBAR_PUBLISH="פרסם"
JTOOLBAR_PURGE_CACHE="נקה Cache"
JTOOLBAR_REBUILD="בנה מחדש"
JTOOLBAR_REFRESH_CACHE="רענן Cache"
JTOOLBAR_REMOVE="הסר"
JTOOLBAR_SAVE="שמור & סגור"
JTOOLBAR_SAVE_AND_NEW="שמור & חדש"
JTOOLBAR_SAVE_AS_COPY="שמור כעותק"
JTOOLBAR_UNARCHIVE="הוצא מהארכיון"
JTOOLBAR_UNINSTALL="הסר"
JTOOLBAR_UNPUBLISH="הסר פרסום"
JTOOLBAR_UPLOAD="העלה"
JTOOLBAR_TRASH="פח אשפה"
JTOOLBAR_UNTRASH="שחזר מפח האשפה"
JTOOLBAR_REBUILD_SUCCESS="נבנה מחדש בהצלחה"
JTOOLBAR_VERSIONS="גרסאות"
SR_SEARCH_LOCATION="מיקום"
SR_DASHBOARD="לוח בקרה"
SR_PHONE="טלפון"
SR_FAX="פקס"
SR_DEPOSIT_AMOUNT="סכום הפקדה"
SR_TOTAL_ROOM_TAX="מס מקסימלי לחדר"

; Since 0.7.0
SR_STANDARD_TARIFF="תעריף סטנדרטי"
SR_SEARCH_RESET="אתחל"
SR_SELECT_A_TARIFF="בחר תעריף"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="אין לנו חדרים זמינים עבור סוג חדר זה בין %s ועד %s. לחץ כאן על מנת להתחיל מחדש ולשנות תאריכים/a"
SR_SELECT_A_TARIFF_FIRST="אנא בחר תעריף קודם"
SR_SMOKING="עישון"
SR_SMOKING_ROM="חדר מעשנים"
SR_NON_SMOKING_ROOM="חדר ללא עישון"
SR_SELECT_ROOM_QUANTITY="%s חדרים"
SR_SELECT_ROOM_QUANTITY_1="חדר 1"
SR_SELECT_ADULT_QUANTITY="%s מבוגרים"
SR_SELECT_ADULT_QUANTITY_1="מבוגר 1"
SR_SELECT_CHILD_QUANTITY="%s ילדים"
SR_SELECT_CHILD_QUANTITY_1="ילד 1"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="%s לילות"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="לילה 1 \"
SR_TARIFF_SUFFIX_PER_ROOM="חדר \"
SR_CHILD_AGE_SELECTION="בן/בת %s שנים"
SR_CHILD_AGE_SELECTION_1="בן/בת %s שנה"
SR_CHILD_AGE_SELECTION_JS="בן/בת"
SR_CHILD_AGE_SELECTION_1_JS="בן/בת"
SR_EMAIL_CONFIRM_RESERVATION="אישור ההזמנה"
SR_EMAIL_REF_ID="מספר הפנייה: %s"
SR_EMAIL_GREETING_NAME="%s %s %s היקר"
SR_EMAIL_GREETING_TEXT=" תודה על הזמנתך ב-%s. אם יש לך שאלות נוספות, אנא אל תהסס לפנות אלינו בכל עת.   אנו שמחים לאשר את הזמנתך : "
SR_EMAIL_CHECKIN="הגעה:"
SR_EMAIL_CHECKOUT="עזיבה:"
SR_EMAIL_PAYMENT_METHOD="אמצעי תשלום:"
SR_EMAIL_EMAIL="דואר אלקטרוני:"
SR_EMAIL_NUM_NIGHT="מספר לילות:"
SR_EMAIL_SUB_TOTAL="מחיר החדר (ללא מיסים):"
SR_EMAIL_TAX="עלות מיסים לחדר:"
SR_EMAIL_GRAND_TOTAL="סכום כולל:"
SR_EMAIL_DEPOSIT_AMOUNT="סכום הפקדה:"
SR_EMAIL_EXTRAS_ITEMS="אימייל נוסף:"
SR_EMAIL_CONNECT_WITH_US="צור איתנו קשר:"
SR_EMAIL_CONTACT_INFO="פרטי יצירת קשר:"
SR_EMAIL_ADDRESS="כתובת דואר אלקטרוני:"
SR_EMAIL_PHONE="טלפון:"
SR_EMAIL_OTHER_INFO="מידע נוסף:"
SR_EMAIL_EXTRA_QUANTITY="כמות: "
SR_EMAIL_EXTRA_PRICE="מחיר:"
SR_EMAIL_NOTE="הערה:"
SR_EMAIL_BANKWIRE_INFO="פרטי/ העברה בנקאית"
SR_EMAIL_NOTIFICATION_RESERVATION="התראה על ההזמנה"
SR_EMAIL_NOTIFICATION_GREETING_TEXT=" בוצעה הזמנה חדשה, עיין בפרטים הבאים או  לחץ כאן  כדי להציג אותה: "
SR_EMAIL_GREETING_NAME_OWNER="שלום,"
SR_EMAIL_EXTRA_TAX_EXCL="עלות נוספת (לא כולל מס):"
SR_EMAIL_EXTRA_TAX_AMOUNT="מס נוסף:"
SR_VAT_NUMBER="מס' עוסק מורשה/ת.ז (אופציונלי)"
SR_PASSWORD="סיסמא"
SR_USERNAME="שם משתמש"
SR_WE_HAVE_X_ROOM_LEFT="נשארו רק %s חדרים "
SR_WE_HAVE_X_ROOM_LEFT_1="נשארו רק %s חדרים!"
SR_ONLY_1_LEFT="הזדמנות אחרונה! נותר חדר אחד בלבד"
SR_ONLY_2_LEFT="רק 2 חדרים נותרו"
SR_ONLY_3_LEFT="רק 3 חדרים נותרו"
SR_ONLY_4_LEFT="רק 4 חדרים נותרו"
SR_ONLY_5_LEFT="רק 5 חדרים נותרו"
SR_ONLY_6_LEFT="רק 6 חדרים נותרו"
SR_ONLY_7_LEFT="רק 7 חדרים נותרו"
SR_ONLY_8_LEFT="רק 8 חדרים נותרו"
SR_ONLY_9_LEFT="רק 9 חדרים נותרו"
SR_ONLY_10_LEFT="רק 10 חדרים נותרו"
SR_ONLY_11_LEFT="רק 11 חדרים נותרו"
SR_ONLY_12_LEFT="רק 12 חדרים נותרו"
SR_ONLY_13_LEFT="רק 13 חדרים נותרו"
SR_ONLY_14_LEFT="רק 14 חדרים נותרו"
SR_ONLY_15_LEFT="רק 15 חדרים נותרו"
SR_ONLY_16_LEFT="רק 16 חדרים נותרו"
SR_ONLY_17_LEFT="רק 17 חדרים נותרו"
SR_ONLY_18_LEFT="רק 18 חדרים נותרו"
SR_ONLY_19_LEFT="רק 19 חדרים נותרו"
SR_ONLY_20_LEFT="רק 20 חדרים נותרו"
SR_SHOW_MORE_INFO="מידע נוסף"
SR_HIDE_MORE_INFO="הסתר מידע "
SR_AVAILABILITY_CALENDAR_CLOSE="סגור לוח שנה"
SR_STARTING_FROM="החל מ"
SR_SELECT="בחר"
SU="ראשון"
MO="שני "
TU="שלישי"
WE="רביעי"
TH="חמישי "
FR="שישי"
SA="שבת"
SR_USERNAME_EXISTS="שם המשתמש כבר קיים במערכת, אנא בחר שם משתמש אחר"
JFIELD_METADATA_ROBOTS_DESC="הוראות בוט"
JFIELD_METADATA_ROBOTS_LABEL="בוט"
JFIELD_XREFERENCE_DESC="שדה אופציונלי על מנת לאפשר הרשאה זו של הפניה למערכת נתונים חיצונית, אם נדרש."
JFIELD_XREFERENCE_LABEL="הפנייה חיצונית"
JCLEAR="נקה"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="הירשם עכשיו ולנוחיותך בעתיד תוכל לבצע הזמנה מהירה וקלה יותר, בחר את שם המשתמש וסיסמא בשדות למטה"
SR_PRICE_IS_FOR_X_NIGHT="המחיר עבור %s לילות"
SR_PRICE_IS_FOR_X_NIGHT_1="המחיר עבור לילה %s"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="לא נמצאו התאמות לחדרים לתאריכים שבחרת מ%s ועד %s, אנא בחר תאריכים אחרים לקבלת אפשרויות נוספות."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="מצאנו עבורך %s חדרים אשר מתאימים לחיפושך החל מ%s ועד %s עבור %s מבוגרים ו-%s ילדים "
SR_ROOM_AVAILABLE_FROM_TO_MSG2="יש לנו פחות ממספר החדרים המבוקשים, אך החדרים הזמינים כעת (%s) יכולים לענות על דרישת החיפוש שלך מ-%s ועד %s עבור %s מבוגר(ים) ו-%s ילד(ים), במידה ותבחר מספר שונה של חדרים."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="מצטערים, אין חדרים זמינים לתאריכים %s עד %s עבור %s מבוגר(ים) ו -%s ילד(ים)"
SR_ROOM_AVAILABLE_FROM_TO_MSG4="מצאנו %s חדרים אשר מתאימים לתאריכים שחיפשת מ-%s ועד %s "
SR_MOBILEPHONE="מספר נייד"
SR_RESERVATION_SAVE_ERROR="אירע שגיאה במהלך שמירת פרטי ההזמנה שלך."
SR_EMAIL_PAYMENT_METHOD_INFO="פרטי התשלום"
SR_RESERVATION_COMPLETE="תודה לך %s! הזמנתך מספר %s הושלמה בהצלחה. שלחנו לך מייל אישור אל %sובנוסף יידענו את %s על שהייתך הקרובה לחץ כאן על מנת לחזור לדף הבית."
SR_EXTRA_PRICE_ADULT="עבור מבוגר"
SR_EXTRA_PRICE_CHILD="עבור ילד"
SR_EXTRA_MORE_DETAILS="פרטים"
SR_EXTRA_PRICE="מחיר"
SR_TOTAL_DISCOUNT="סה"_QQ_"כ הנחה"
SR_EMAIL_TOTAL_DISCOUNT="סך הכל הנחה:"
SR_ROOM_X_COST="מחיר לחדר"
SR_ROOM_X_DISCOUNTED_AMOUNT="הנחה עבור החדר"
SR_ROOM_X_DISCOUNTED_COST="מחיר החדר לאחר ההנחה"
SR_VIEW_TARIFF_BREAKDOWN="פרטים"
SR_SHOW_TARIFFS="תעריפים"
SR_HIDE_TARIFFS="תעריפים"
SR_CONFIRMATION_ROOM_DETAILS="פרטים"
SR_CONFIRMATION_GUEST_NAME="שם אורח"
SR_CONFIRMATION_ADULT_NUMBER="מספר מבוגרים"
SR_CONFIRMATION_CHILD_NUMBER="מספר ילדים"
SR_CONFIRMATION_FULLNAME="שמך המלא:"
SR_EXTRA="תוספות מיוחדות"
SR_EXTRA_PER_BOOKING="עבור הזמנה"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="עבור הזמנה"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="עבור חדר"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="עבור הזמנה ללילה"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="עבור הזמנה לאדם"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="עבור חדר ללילה"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="עבור חדר לאדם"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="עבור אדם ללילה "
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="עבור אדם בחדר ללילה"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="מחיר למבוגר"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="הזן את המחיר למבוגר עבור תוספת מיוחדת זו. המטבע של יחידת האירוח יופיע כאן."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="מחיר לילד"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="הזן את המחיר לילד עבור תוספת מיוחדת זו. המטבע של יחידת האירוח יופיע כאן."

; Since 0.9.0
SR_DAYS="%d ימים"
SR_DAYS_1="יום %d"
SR_TARIFF_SUFFIX_DAY_NUMBER="%d ימים \"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="יום 1 \"
SR_LENGTH_OF_STAY="משך שהייה"
SR_EMAIL_LENGTH_OF_STAY="משך שהייה:"
SR_PRICE_IS_FOR_X_DAY="המחיר הוא עבור %s ימים"
SR_PRICE_IS_FOR_X_DAY_1="המחיר הוא עבור יום %s"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="חדר יחיד בתוספת"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="עלות החדר לאחר תוספת אחת"
JLIB_APPLICATION_SAVE_SUCCESS="הפריט נשמר בהצלחה"
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="הפריט נשלח בהצלחה"
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="הזמנה חדשה"
SR_RESERVATION_CODE="קוד"
SR_RESERVATION_INVOICE="חשבונית"
SR_RESERVATION_CHECKIN="הגעה"
SR_RESERVATION_CHECKOUT="עזיבה"
SR_RESERVATION_ASSET="יחידת אירוח"
SR_RESERVATION_TOTAL_PAID="סך הכל שולם"
SR_DESCRIPTION="תיאור"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="מספר הזמנה"
SR_CONFIRMATION_EMAIL="כתובת דואר האלקטרוני שלך:"
SR_CONFIRMATION_BOOKING_DETAILS="פרטי הזמנה"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s חדרים"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="חדר %s"
SR_CONFIRMATION_CHECKIN="הגעה"
SR_CONFIRMATION_CHECKOUT="עזיבה"
SR_CONFIRMATION_TOTAL_PRICE="מחיר סופי"
SR_CONFIRMATION_ASSET_NAME="שם"
SR_CONFIRMATION_ASSET_ADDRESS="כתובת"
SR_CONFIRMATION_ASSET_EMAIL="דואר אלקטרוני"
SR_CONFIRMATION_ASSET_PHONE="טלפון"
SR_ASSET_INFO="מידע על יחידות האירוח"
SR_BOOKING_INFO="פרטי הזמנתך"
SR_BOOKING_CONFIRMATION_ADULTS="%s מבוגרים"
SR_BOOKING_CONFIRMATION_ADULTS_1="מבוגר %s"
SR_BOOKING_CONFIRMATION_CHILDREN="%s ילדים"
SR_BOOKING_CONFIRMATION_CHILDREN_1="ילד %s"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="שם מלא של האורח"
SR_BOOKING_CONFIRMATION_SMOKING="עישון"
SR_BOOKING_CONFIRMATION_ROOM_COST="מחיר החדר"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="פרטי החדר"
SR_ERROR_PAST_CHECKIN_CHECKOUT="נראה שהתאריכים שלך הם בעבר"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="תודה לך %s! הזמנתך מספר %s נשלחה בהצלחה, אך התשלום עדיין לא הושלם. בנוסף, שלחנו מייל אישור אל %sבנוסף יידענו גם את %s על שהייתך הקרובהלחץ כאן על מנת לחזור לעמוד הבית."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="שגיאה. אורך שהייה מינימלי הינו %d לילות"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="שגיאה. אורך שהייה מינימלי הינו %d ימים"
SR_USER_INFO_USERNAME_PLURAL="נכנסת כעת למערכת עם שם המשתמש : %s"

; Since 0.9.4
SR_COUPON_CHECK="בדוק"
SR_RESERVATION_ORIGIN_DIRECT="ישיר"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="סוג החדר שנבחר דורש מינימום %d אורחים ומקסימום %d אורחים"
SR_RESERVE="להזמין"
SR_SEARCH_ROOMS="חדרים"
SR_SEARCH_ROOM="חדר"
SR_SEARCH_ROOM_ADULTS="מבוגרים"
SR_SEARCH_ROOM_CHILDREN="ילדים"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="ההזמנה בוטלה"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="ההזמנה %s מתאריך %s עד לתאריך %s בוטלה"
SR_EMAIL_GREETING_TEXT_CANCELLED="הזמנה שלך %s ב %s בוטלה "
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="הזמנה מספר %s בוטלה, אנא בדוק את הפרטים למטה או לחץ כאן על מנת לצפות בהם:"
SR_EMAIL_COUPON_CODE="שובר הנחה:"

; Since 1.8.0
SR_FULLNAME="שם מלא"
SR_MESSAGE="הודעה"
SR_SEND_MESSAGE="שלח הודעה"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="ביצעת הזמנה מ-%s עבור %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="פנייתך נשלחה בהצלחה, נחזור אלייך בהקדם האפשרי."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="להזמנה עבור שהייה (לילה או יום)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="לחדר עבור שהייה"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="לחדר יחיד עבור שהייה"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="אחוז מהתעריף היומי של החדר"
SR_EXTRA_PRICE_DAILY_RATE="%s עולה %d אחוז מהעלות היומית של החדר לשהייה"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="הזמנתך עומדת להתבטל בקרוב."
SR_WARNING_SESSION_EXPIRED="הזמנתך התבטלה לחץ כאןעל מנת להתחיל מחדש."
SR_WEBSITE="אתר"
SR_YOUR_STAY="השהות שלך"
SR_AVAILABLE_ROOMS="חדרים זמינים"
SR_MAX_GUESTS="מקסימום אורחים"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="הזמן עכשיו"
SR_TARIFF_PACKAGE_PER_ROOM="חבילה עבור חדר"
SR_TARIFF_PACKAGE_PER_PERSON="חבילה עבור אדם"
SR_TARIFF_PER_ROOM_PER_NIGHT="מחיר עבור חדר לשהייה"
SR_TARIFF_PER_PERSON_PER_NIGHT="מחיר עבור אדם לשהייה"
SR_ROOM_X_EXTRA_AMOUNT="מחיר לתוספות מיוחדות עבור החדר"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="הזמנתך תוקנה בהצלחה."
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="האם לשלוח הודעת אימייל?"
SR_FIELD_COUNTRY_SELECT="- בחר מדינה - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="האם להמשיך לתשלום?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="הזמנתך נוספה בהצלחה"
SR_SELECT_BED_QUANTITY="%s מיטות"
SR_SELECT_BED_QUANTITY_1="מיטה 1"
SR_BED="מיטה"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="תודה לך %s! בקשתך להזמנה נשלחה אלינו, נחזור אלייך בהקדם האפשרי לאישור ההזמנה.לחץ כאןכדי לחזור לדף הבית."
SR_RESERVATION_CANCEL="הזמנתך מספר %s בוטלה. לחץ כאן כדי לחזור לדף הבית."
SR_TOURIST_TAX_AMOUNT="מס תיירים"
SR_EMAIL_TOURIST_TAX="מס תיירים:"
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s תשלום נוסף "
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s הנחה"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s תשלום נוסף:"
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s הנחה:"
SR_CONFIRMATION_GUEST_NUMBER="מספר אורח:"
SR_SELECT_GUEST_QUANTITY="%s אורחים"
SR_SELECT_GUEST_QUANTITY_1="אורח 1 "

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="מידע על חדרים ותעריפים"
SR_CONFIRMATION_PAYMENT_METHOD="פרטי התשלום"
SR_CONFIRMATION_MOBILE="מספר טלפון"

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="לא שולם"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="שולם"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="בוטל"
SR_RESERVATION_PAYMENT_STATUS_PENDING="ממתין לאישור התשלום"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="מיטה \ "
SR_WE_HAVE_X_BED_LEFT="נשארו רק %s מיטות"
SR_WE_HAVE_X_BED_LEFT_1="נשארו רק %s מיטות "
SR_ONLY_1_LEFT_BED="הזדמנות אחרונה! נותרה מיטה אחת בלבד"
SR_ONLY_2_LEFT_BED="רק 2 מיטות נשארו"
SR_ONLY_3_LEFT_BED="רק 3 מיטות נשארו"
SR_ONLY_4_LEFT_BED="רק 4 מיטות נשארו"
SR_ONLY_5_LEFT_BED="רק 5 מיטות נשארו"
SR_ONLY_6_LEFT_BED="רק 6 מיטות נשארו"
SR_ONLY_7_LEFT_BED="רק 7 מיטות נשארו"
SR_ONLY_8_LEFT_BED="רק 8 מיטות נשארו"
SR_ONLY_9_LEFT_BED="רק 9 מיטות נשארו"
SR_ONLY_10_LEFT_BED="רק 10 מיטות נשארו"
SR_ONLY_11_LEFT_BED="רק 11 מיטות נשארו"
SR_ONLY_12_LEFT_BED="רק 12 מיטות נשארו"
SR_ONLY_13_LEFT_BED="רק 13 מיטות נשארו"
SR_ONLY_14_LEFT_BED="רק 14 מיטות נשארו"
SR_ONLY_15_LEFT_BED="רק 15 מיטות נשארו"
SR_ONLY_16_LEFT_BED="רק 16 מיטות נשארו"
SR_ONLY_17_LEFT_BED="רק 17 מיטות נשארו"
SR_ONLY_18_LEFT_BED="רק 18 מיטות נשארו"
SR_ONLY_19_LEFT_BED="רק 19 מיטות נשארו"
SR_ONLY_20_LEFT_BED="רק 20 מיטות נשארו"
SR_DUE_AMOUNT="סך כל הסכום"
SR_EMAIL_DUE_AMOUNT="סכום לתשלום:"

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="הזמנתך בוטלה"
SR_CHECKIN_PLACEHOLDER="תאריך הגעה"
SR_CHECKOUT_PLACEHOLDER="תאריך עזיבה"
SR_CHOOSE_ANOTHER_CHECKIN="אנא בחר תאריך הגעה נוסף"
SR_WARNING_SESSION_RENEW="לחדש"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="הכנס את כתובת המייל שלך"
SR_ENTER_YOUR_RESERVATION_CODE="הכנס את קוד ההזמנה שלך"
SR_FIND_RESERVATION="מצא הזמנה"
SR_TRACKING_RESERVATION_FOUND_FORMAT="קוד הזמנה %s נמצא."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="לא הצלחנו למצוא הזמנה באמצעות המידע שניתן, אנא בדוק שוב את הפרטים ונסה שוב."
SR_RESERVATION_STATUS_FORMAT="מצב הזמנה: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="הצג את טופס מעקב ההזמנה של יחידת האירוח"
SR_TRACKING_VIEW_DEFAULT_DESC="אפשר לאורחים לבדוק את הזמנתם באמצעות קוד הזמנה + כתובת דוא"_QQ_"ל"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ person "
SR_TARIFF_SUFFIX_PER_PERSON="אדם \ "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/ru-RU/ru-RU.com_solidres.ini000060400000117060150751740420013443 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Критерии поиска"
SR_SEARCH_FIELD_COUNTRY="Страна"
SR_SEARCH_FIELD_STATE="Регион"
SR_SEARCH_FIELD_CITY="Город"
SR_SEARCH_CHECKIN_DATE="Дата заезда"
SR_SEARCH_CHECKOUT_DATE="Дата выезда"
SR_SEARCH="Поиск"
SR_RESET="Сброс"
SR_REMEMBER_ME="Запомнить меня"
SR_FORGOT_YOUR_PASSWORD="Забыли пароль?"
SR_FORGOT_YOUR_USERNAME="Забыли имя пользователя?"
SR_REGISTER="Регистрация"
SR_SELECTED_RESERVATION_ASSET="Выбрать отель"
SR_STAYING_INFO="Информация о размещении"
SR_NUMBER_OF_ROOM="Номеров"
SR_GUEST_PER_ROOM="Гостей в номере"
SR_ROOM_RATE_INFO="Инфо о рейтинге номера"
SR_ROOM_DESCRIPTION="Описание номера"
SR_ROOM_RATE_TYPE="Тип тарифа за номер"
SR_GUEST_INFO="Информация о госте"
SR_FIRSTNAME="Имя"
SR_LASTNAME="Фамилия"
SR_EMAIL="Email"
SR_PHONENUMBER="Телефон"
SR_CONTACT_INFO="Контактная информация"
SR_HOLD_GUARANTEE_INFO="Информация о гарантии бронирования"
SR_ARRIVAL_INFO="Информация о прибытии"
SR_TRAVEL_INFO="Информация о поездке"
SR_COMPANY="Компания"
SR_ADDRESS_1="Адрес строка 1"
SR_ADDRESS_2="Адрес строка 2"
SR_CITY="Город"
SR_ZIP="Почтовый индекс"
SR_STATE="Регион"
SR_COUNTRY="Страна"
SR_TRAVEL_FOR_BUSINESS="Командировка/Бизнес поездка"
SR_TRAVEL_FOR_BUSINESS_DESC="Мне нужно заняться делами во время поездки."
SR_TRAVEL_FOR_RELAX="Отдых"
SR_TRAVEL_FOR_RELAX_DESC="Я бы хотел расслабиться и отдохнуть пока нахожусь вне дома."
SR_TRAVEL_FOR_ENTERTAINMENT="Развлечения"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Я хотел бы развлечься и посмотреть все лучшее, что мне может предложить город."
SR_TRAVEL_FOR_FAMILY="Семья"
SR_TRAVEL_FOR_FAMILY_DESC="Я посещаю семейное торжество или провожу отпуск с семьей."
SR_TRAVEL_FOR_HONEYMOON="Медовый месяц"
SR_TRAVEL_FOR_HONEYMOON_DESC="Я собираюсь наслаждаться моим медовым месяцем."
SR_COMMENT="Комментарий"
SR_COMMENT_DESC="Пожалуйста, укажите здесь, есть ли у Вас комментарий."
SR_TAX="Налоги"
SR_RULE_RESTRICTION="Ограничения"
SR_SELECT_TARIFF="Выбрать тариф"
SR_SHOW_MAP="Показать карту"
SR_READMORE="Подробнее"
SR_PRICE_FROM="Цена от"
SR_FIELD_RESERVE="Бронировать сейчас"
SR_FIELD_CONDITIONS="Условия"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Найдите отель, используя форму ниже"
SR_NO_ROOM_AVAILABLE="Нет свободных номеров"
SR_MAX="Допустимый максимум человек"
SR_HAS_ROOM_AVAILABLE="Доступно"
SR_AVAILABILITY="Наличие"
SR_AVAILABLE_ROOM_TYPES="Доступные категории номеров"
SR_VIEW_GALLERY="Просмотр галереи"
SR_YOUR_SEARCH_INFORMATION="Информация по Вашему запросу"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Заезд:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Выезд:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Всего взрослых в номере:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Всего детей в номере:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Продолжить"
SR_EXTRA_PACKAGES="Дополнительные пакеты услуг"
SR_ROOM_TYPE_NAME="Категория номера"
SR_ROOM_TYPE_QUANTITY="Количество"
SR_ROOM_TYPE_GUEST_PER_ROOM="Гостей в номере"
SR_NUMBER_OF_NIGHT="Количество ночей"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Номер & Тарифы"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Дополнительные пакеты услуг"
SR_RESERVATION_PROGRESS_GUEST_INFO="Информация о госте"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Платежная информация"
SR_RESERVATION_CONFIRMATION="Подтверждение"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Завершить"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Чек/Наличными"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Выбранное Вами количество номеров превосходит максимально допустимое количество. Пожалуйста, <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">нажмите сюда</a>, чтобы вернуться и сделать другой выбор."
SR_CHANGE="Изменить"
SR_NOTE="Заметка"
SR_MIDDLENAME="Отчество"
SR_RESERVATION_PROGRESS_DATES="Даты & Предпочтения"
SR_ROOM_SELECTION="Выбор номера"
SR_ROOM_TYPE_ADULT_PER_ROOM="Взрослых в номере"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Детей в номере"
SR_ROOM_TYPE_GUEST_NAME="Фамилия/Имя гостя (-ей)"
SR_RESERVATION_NOTICE_CONFIRMATION="Пожалуйста, ознакомьтесь с деталями бронирования и нажмите на кнопку рядом, чтобы завершить.</br>На указанный вами почтовый адрес будет выслано подтверждение."
SR_SEARCH_COUPON="Купон"
SR_MAXIMUM_OCCUPANCY="Максимальная вместимость"
SR_OCCUPANCY_ADULT="Взрослых"
SR_OCCUPANCY_CHILD="Детей"
SR_NIGHTS="%d ночей"
SR_NIGHTS_1="%d ночь"
SR_TOTAL_ROOM_COST_TAX_EXCL="Итого цена за номер (без налогов)"
SR_TOTAL_ROOM_COST_TAX_INCL="Итого цена за номер (с налогами)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Итого за заказанные доп.услуги"
SR_TOTAL_EXTRA_COST_TAX_INCL="Итого за заказанные доп.услуги (с налогами)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Налоги за доп. услуги"
SR_PRICE_FOR_X_NIGHTS="Цена за %d ночей"
SR_ROOM_TYPE="Категория номера"
SR_NUMBER_OF_ROOMS="Количество номеров"
SR_TARIFF_BREAK_DOWN="Расшифровка тарифа"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Количество взрослых"
SR_SEARCH_CHILDREN_NUMBER="Количество детей"
SR_NO_TARIFF_AVAILABLE="Нет доступных тарифов"
SR_EMAIL_RESERVATION_COMPLETE="Ваша заявка на бронирование оформлена"

; Extra
SR_RESERVATION_EXTRA="Название"
SR_RESERVATION_EXTRA_COST="Цена"
SR_RESERVATION_EXTRA_QUANTITY="Количество"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="Ваше письмо с информацией о бронировании не может быть отправлено."

SR_BOOK_NOW="Забронировать"
SR_TOTAL_PRICE="Общая стоимость"
SR_TAX_7_NOT_INCLUDED="Налог (7%) не включен"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Сбор за обслуживание (10.70%) не включен"

SR_RESERVATION_NOTE="Введите любую информацию, которую вы хотели бы указать при бронировании. Персонал не может гарантировать ответ на дополнительный запрос или комментарий. Пожалуйста, избегайте использование специальных символов."
SR_ASK_FOR_CHECKIN_CHECKOUT="Для проверки стоимости и доступности номера, пожалуйста, введите даты заезда и выезда в форме"
SR_GRAND_TOTAL="Общая сумма"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Услуги и оснащение"
SR_CUSTOMFIELD_POLICIES="Правила"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Социальные сети"
SR_CUSTOMFIELD_GENERAL="Общие"
SR_CUSTOMFIELD_ACTIVITIES="Активный отдых"
SR_CUSTOMFIELD_SERVICES="Услуги"
SR_CUSTOMFIELD_INTERNET="Интернет"
SR_CUSTOMFIELD_PARKING="Парковка"
SR_CUSTOMFIELD_CHECKIN="Заезд"
SR_CUSTOMFIELD_CHECKOUT="Выезд"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Отмена / Предоплата"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Дети и дополнительные спальные места"
SR_CUSTOMFIELD_PETS="Животные"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Принимаемые кредитные карты"
SR_BREAKFAST_INCLUDED="Завтрак включен"
SR_BREAKFAST_EXCLUDED="Завтрак не включен"
SR_FREE_CANCELLATION="Бесплатная отмена"
SR_NON_REFUNDABLE="Невозвратный тариф"
SR_ROOM_OCCUPANCY="Наличие номера"
SR_TAXES="Налоги"
SR_PREPAYMENT="Оплата"
SR_ROOM_FACILITIES="Оснащение номера"
SR_ROOM_SIZE="Площадь номера"
SR_BED_SIZE="Спальные места"

SR_COUPON_ENTER="Введите код купона (необязательное)"
SR_COUPON_ACCEPTED="Купон принят"
SR_COUPON_REJECTED="Купон не действительный"
SR_APPLY_COUPON="Применить купон"

SR_ROOM_AVAILABLE_FROM_TO="У нас есть %s доступных номеров с %s по %s согласно Вашему запросу для %s для взрослых и %s детей"
SR_APPLIED_COUPON="Использованный купон"
SR_REMOVE="Удалить"
SR_CAN_NOT_REMOVE_COUPON="Невозможно удалить купон"
SR_AVAILABILITY_CALENDAR="Календарь доступности номеров"
SR_AVAILABILITY_CALENDAR_VIEW="Посмотреть календарь"

SR_AVAILABILITY_CALENDAR_BUSY="Не доступно"
SR_FEATURED_ROOM_TYPE="Рекомендуемый"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Пожалуйста, выберите по крайней мере один тип номера, чтобы продолжить."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Неверно. Вы должны бронировать как минимум на %d дней и не более, чем за %d дней до Вашего приезда. Минимальный срок пребывания %d дней."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Неверно. Дата выезда должна быть указана после даты заезда."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Неверно. Минимальный срок пребывания %d ночей."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Неверно. Вы должны забронировать минимум %d дней до Вашего приезда."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Неверно. Вы не можете бронировать за %d дней до Вашего приезда."
SR_NEXT="Далее"
SR_BACK="Назад"
SR_CUSTOMER_TITLE="Обращение"
SR_CUSTOMER_TITLE_MR="Господин"
SR_CUSTOMER_TITLE_MRS="Госпожа"
SR_CUSTOMER_TITLE_MS="Госпожа"
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Тип тарифа: с человека за ночь. Пожалуйста, выберите количество номеров и тип размещения, чтобы получить точную стоимость"
SR_ERROR_CHILD_MAX_AGE="Возраст должен быть от/до"
SR_BOOKING_CONDITIONS="Правилами бронирования"
SR_PRIVACY_POLICY="Политикой конфиденциальности"
SR_ROOM_COST="Стоимость номера: "
SR_ENHANCE_YOUR_STAY="Наш дополнительный сервис"
SR_I_AGREE_WITH="Я согласен с "
SR_GUEST_INFORMATION="Информация о госте"
SR_PAYMENT_INFO="Платежная информация"
SR_GUEST_INFO_STEP_NOTICE="Введите информацию и способ оплаты"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Выберите категорию номера, посмотрите предложенные тарифы и нажмите Далее, чтобы продолжить"
SR_AGE_OF_CHILD_AT_CHECKOUT="Возраст ребенка на дату заезда"
SR_GUEST_NAME="Фамилия/Имя гостя (-ей)"
SR_ROOM="Номер"
SR_CHILD="Ребенок"
SR_ADULT="Взрослые"
SR_ROOMTYPE_QUANTITY="Количество"
SR_AND="и"
SR_STEP_ROOM_AND_RATE="Номер & Цена"
SR_STEP_GUEST_INFO_AND_PAYMENT="Бронь & Оплата"
SR_STEP_CONFIRMATION="Подтверждение"
SR_PAYMENT_METHOD_PAYLATER="Оплатить позже"
SR_PAYMENT_METHOD_BANKWIRE="Банковский перевод"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Пожалуйста, имейте в виду, что оплата может занять несколько дней. При денежных переводах, пожалуйста, укажите код бронирования, чтобы помочь нам обработать Ваш заказ быстрее."
SR_PROCESSING="Обрабатывается..."

; Since 0.6.0
SR_STAR="звезда"
SR_STARS="звезд"
JGLOBAL_FIELDSET_PUBLISHING="Публикация"
JTOOLBAR_APPLY="Применить"
JTOOLBAR_ARCHIVE="В архив"
JTOOLBAR_ASSIGN="Присвоить"
JTOOLBAR_BACK="Назад"
JTOOLBAR_BATCH="Общее действие"
JTOOLBAR_CANCEL="Отмена"
JTOOLBAR_CHECKIN="Заехал"
JTOOLBAR_CLOSE="Закрыть"
JTOOLBAR_DEFAULT="По умолчанию"
JTOOLBAR_DELETE="Удалить"
JTOOLBAR_DISABLE="Отключить"
JTOOLBAR_DUPLICATE="Дублировать"
JTOOLBAR_EDIT="Изменить"
JTOOLBAR_EDIT_CSS="Редактировать CSS"
JTOOLBAR_EDIT_HTML="Редактировать HTML"
JTOOLBAR_EMPTY_TRASH="Очистить корзину"
JTOOLBAR_ENABLE="Включить"
JTOOLBAR_EXPORT="Экспорт"
JTOOLBAR_HELP="Помощь"
JTOOLBAR_INSTALL="Установить"
JTOOLBAR_NEW="Новый"
JTOOLBAR_OPTIONS="Настройки"
JTOOLBAR_PUBLISH="В онлайн"
JTOOLBAR_PURGE_CACHE="Очистить кэш"
JTOOLBAR_REBUILD="Пересоздать"
JTOOLBAR_REFRESH_CACHE="Обновить кэш"
JTOOLBAR_REMOVE="Удалить"
JTOOLBAR_SAVE="Сохранить &amp; закрыть"
JTOOLBAR_SAVE_AND_NEW="Сохранить &amp; создать"
JTOOLBAR_SAVE_AS_COPY="Сохранить как копию"
JTOOLBAR_UNARCHIVE="Из архива"
JTOOLBAR_UNINSTALL="Удалить"
JTOOLBAR_UNPUBLISH="В офлайн"
JTOOLBAR_UPLOAD="Загрузить"
JTOOLBAR_TRASH="В корзину"
JTOOLBAR_UNTRASH="Из корзины"
JTOOLBAR_REBUILD_SUCCESS="Успешно пересоздано"
JTOOLBAR_VERSIONS="Версии"
SR_SEARCH_LOCATION="Местоположение"
SR_DASHBOARD="Панель управления"
SR_PHONE="Телефон"
SR_FAX="Факс"
SR_DEPOSIT_AMOUNT="Размер депозита"
SR_TOTAL_ROOM_TAX="Итого налоги за номер"

; Since 0.7.0
SR_STANDARD_TARIFF="Стандартный тариф"
SR_SEARCH_RESET="Сброс"
SR_SELECT_A_TARIFF="Выберите тариф"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="Нет подходяших тарифов в этот период с %s по %s.<a href="_QQ_"%s"_QQ_"> Нажмите сюда, чтобы начать все сначала, изменив даты.</a>"
SR_SELECT_A_TARIFF_FIRST="Пожалуйста, выберите сначала тариф."
SR_SMOKING="Курящий или некурящий."
SR_SMOKING_ROOM="Курящий"
SR_NON_SMOKING_ROOM="Некурящий"
SR_SELECT_ROOM_QUANTITY="%s номеров"
SR_SELECT_ROOM_QUANTITY_1="1 номер"
SR_SELECT_ADULT_QUANTITY="%s взрослых"
SR_SELECT_ADULT_QUANTITY_1="1 взрослый"
SR_SELECT_CHILD_QUANTITY="%s детей"
SR_SELECT_CHILD_QUANTITY_1="1 ребёнок"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s ночей"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 ночь"
SR_TARIFF_SUFFIX_PER_ROOM="/ номер "
SR_CHILD_AGE_SELECTION="%s лет"
SR_CHILD_AGE_SELECTION_1="%s год"
SR_CHILD_AGE_SELECTION_JS="лет"
SR_CHILD_AGE_SELECTION_1_JS="год"
SR_EMAIL_CONFIRM_RESERVATION="Подтверждение заявки на бронирование"
SR_EMAIL_REF_ID="Номер брони: %s"
SR_EMAIL_GREETING_NAME="Уважаемый (-ая) %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Спасибо за заявку на бронирование в %s.</p><p>В ближайшее время ожидайте письмо о подтверждении бронирования.<br>Если Вам понадобится какая-либо информация, пожалуйста свяжитесь с нами.</p><p>Мы очень рады принять Вашу заявку.</p>"
SR_EMAIL_CHECKIN="Заезд: "
SR_EMAIL_CHECKOUT="Выезд: "
SR_EMAIL_PAYMENT_METHOD="Способ оплаты: "
SR_EMAIL_EMAIL="Email: "
SR_EMAIL_NUM_NIGHT="Количество ночей: "
SR_EMAIL_SUB_TOTAL="Цена за номер: "
SR_EMAIL_TAX="Налоги за номер: "
SR_EMAIL_GRAND_TOTAL="Общая сумма: "
SR_EMAIL_DEPOSIT_AMOUNT="Размер депозита: "
SR_EMAIL_EXTRAS_ITEMS="Дополнительно: "
SR_EMAIL_CONNECT_WITH_US="Мы в социальных сетях: "
SR_EMAIL_CONTACT_INFO="Наши контакты: "
SR_EMAIL_ADDRESS="Адрес: "
SR_EMAIL_PHONE="Телефон: "
SR_EMAIL_OTHER_INFO="Другая информация"
SR_EMAIL_EXTRA_QUANTITY="Количество: "
SR_EMAIL_EXTRA_PRICE="Цена: "
SR_EMAIL_NOTE="Заметки: "
SR_EMAIL_BANKWIRE_INFO="Банковская информация"
SR_EMAIL_NOTIFICATION_RESERVATION="Уведомление о бронировании"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>Новое бронирование успешно осуществлено, пожалуйста, проверьте следующую информацию или <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">нажмите здесь</a> чтобы просмотреть:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Здравствуйте,"
SR_EMAIL_EXTRA_TAX_EXCL="Заказанные доп.услуги: "
SR_EMAIL_EXTRA_TAX_AMOUNT="Налоги за доп.услуги: "
SR_VAT_NUMBER="ИНН"
SR_PASSWORD="Пароль"
SR_USERNAME="Логин"
SR_WE_HAVE_X_ROOM_LEFT="В наличии %s номер/а/ов"
SR_WE_HAVE_X_ROOM_LEFT_1="У нас остался %s номер!"
SR_ONLY_1_LEFT="Последний шанс! Остался 1 номер"
SR_ONLY_2_LEFT="Осталось 2 номера"
SR_ONLY_3_LEFT="Осталось 3 номера"
SR_ONLY_4_LEFT="Осталось 4 номера"
SR_ONLY_5_LEFT="Осталось 5 номера"
SR_ONLY_6_LEFT="Осталось 6 номеров"
SR_ONLY_7_LEFT="Осталось 7 номеров"
SR_ONLY_8_LEFT="Осталось 8 номеров"
SR_ONLY_9_LEFT="Осталось 9 номеров"
SR_ONLY_10_LEFT="Осталось 10 номеров"
SR_ONLY_11_LEFT="Осталось 11 номеров"
SR_ONLY_12_LEFT="Осталось 12 номеров"
SR_ONLY_13_LEFT="Осталось 13 номеров"
SR_ONLY_14_LEFT="Осталось 14 номеров"
SR_ONLY_15_LEFT="Осталось 15 номеров"
SR_ONLY_16_LEFT="Осталось 16 номеров"
SR_ONLY_17_LEFT="Осталось 17 номеров"
SR_ONLY_18_LEFT="Осталось 18 номеров"
SR_ONLY_19_LEFT="Осталось 19 номеров"
SR_ONLY_20_LEFT="Осталось 20 номеров"
SR_SHOW_MORE_INFO="Подробнее"
SR_HIDE_MORE_INFO="Скрыть"
SR_AVAILABILITY_CALENDAR_CLOSE="Закрыть календарь"
SR_STARTING_FROM="Начиная с"
SR_SELECT="Выбрать"
SU="Вс"
MO="Пн"
TU="Вт"
WE="Ср"
TH="Чт"
FR="Пт"
SA="Сб"
SR_USERNAME_EXISTS="Такое имя пользователя уже существует. Пожалуйста, выберите другое."
JFIELD_METADATA_ROBOTS_DESC="Инструкция для робота"
JFIELD_METADATA_ROBOTS_LABEL="Роботы"
JFIELD_XREFERENCE_DESC="Дополнительное поле для разрешения этой записи ссылаться на внешние данные."
JFIELD_XREFERENCE_LABEL="Внешняя ссылка"
JCLEAR="Очистить"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Зарегистрируйте меня для более быстрого, удобного бронирования и доступа к личному кабинету с полной информацией о моем бронировании.</br>Пожалуйста, введите Ваш Логин и Пароль."
SR_PRICE_IS_FOR_X_NIGHT="Цена за %s ночей"
SR_PRICE_IS_FOR_X_NIGHT_1="Цена за %s ночь"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="Мы не нашли подходящих номеров для Вас. Пожалуйста, измение дату или категорию номера."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="Мы нашли %s номеров, подходящих Вашим условиям с %s по %s для %s взрослых и %s детей."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="К сожалению, мы нашли меньше доступных номеров, чем Вы хотели, но они (%s) подходят остальным условиям проживания с %s по %s для %s взрослых и %s детей, если Вы выберете меньшее число номеров."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="К сожалению, мы не смогли найти подходящих номеров с %s по %s для %s взрослых и %s детей."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="Мы нашли %s подходящих номеров с %s по %s."
SR_MOBILEPHONE="Мобильный телефон"
SR_RESERVATION_SAVE_ERROR="Ваше бронирование не может быть сохранено, пожалуйста, попробуйте ещё раз."
SR_EMAIL_PAYMENT_METHOD_INFO="Платёжная информация"
SR_RESERVATION_COMPLETE="<h3>Огромное спасибо, %s!</br>Ваша бронь номер %s успешно сохранена.</h3><ul> <li>Мы отправили подтверждающее письмо на %s</li><li>Также мы уведомили %s о вашем бронировании</li><li><a href="_QQ_"%s"_QQ_">Нажмите сюда</a>, чтобы вернуться на главную страницу.</li></ul>"
SR_EXTRA_PRICE_ADULT="Цена для взрослых"
SR_EXTRA_PRICE_CHILD="Цена для детей"
SR_EXTRA_MORE_DETAILS="Детали"
SR_EXTRA_PRICE="Цена"
SR_TOTAL_DISCOUNT="Итоговая скидка"
SR_EMAIL_TOTAL_DISCOUNT="Итоговая скидка: "
SR_ROOM_X_COST="Номер стоит"
SR_ROOM_X_DISCOUNTED_AMOUNT="Скидка за номер"
SR_ROOM_X_DISCOUNTED_COST="Номер стоит со скидкой"
SR_VIEW_TARIFF_BREAKDOWN="Детали тарифа"
SR_SHOW_TARIFFS="Показать тарифы"
SR_HIDE_TARIFFS="Скрыть тарифы"
SR_CONFIRMATION_ROOM_DETAILS="Детали"
SR_CONFIRMATION_GUEST_NAME="Ваше имя"
SR_CONFIRMATION_ADULT_NUMBER="Количество взрослых"
SR_CONFIRMATION_CHILD_NUMBER="Количество детей"
SR_CONFIRMATION_FULLNAME="Ваше полное имя: "
SR_EXTRA="Доп.услуги"
SR_EXTRA_PER_BOOKING="За бронирование"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="За бронирование"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="За номер"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="За бронирование за ночь"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="За бронирование за человека"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="За номер за ночь"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="За номер на человека"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="За человека за ночь"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="За номер на человека за ночь"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Цена для взрослых"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Введите цену для взрослых для этой услуги. Валюта будет выбрана здесь."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Цена для детей"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Введите цену для детей для этой услуги. Валюта будет выбрана здесь."

; Since 0.9.0
SR_DAYS="%d дней"
SR_DAYS_1="%d день"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s дней"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 день"
SR_LENGTH_OF_STAY="Продолжительность"
SR_EMAIL_LENGTH_OF_STAY="Продолжительность: "
SR_PRICE_IS_FOR_X_DAY="Цена указана за %s дней"
SR_PRICE_IS_FOR_X_DAY_1="Цена указана за %s день"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Итого доплата за одноместное размещение"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Доплата за одноместное размещение"
JLIB_APPLICATION_SAVE_SUCCESS="Успешно сохранено."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Успешно отправлено."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="Новое бронирование %s от %s %s"
SR_RESERVATION_CODE="Номер брони"
SR_RESERVATION_INVOICE="Счет"
SR_RESERVATION_CHECKIN="Заезд"
SR_RESERVATION_CHECKOUT="Выезд"
SR_RESERVATION_ASSET="Гостиницв"
SR_RESERVATION_TOTAL_PAID="Итого оплачено"
SR_DESCRIPTION="Описание"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Номер заказа"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Детали заказа"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s номера"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s номер"
SR_CONFIRMATION_CHECKIN="Заезд"
SR_CONFIRMATION_CHECKOUT="Выезд"
SR_CONFIRMATION_TOTAL_PRICE="Итого"
SR_CONFIRMATION_ASSET_NAME="Имя"
SR_CONFIRMATION_ASSET_ADDRESS="Адрес"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Телефон"
SR_ASSET_INFO="Информация о гостинице"
SR_BOOKING_INFO="Информация о вашем заказе"
SR_BOOKING_CONFIRMATION_ADULTS="%s взрослые"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s взрослый"
SR_BOOKING_CONFIRMATION_CHILDREN="%s дети"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s ребенок"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Полное имя гостя"
SR_BOOKING_CONFIRMATION_SMOKING="Курение"
SR_BOOKING_CONFIRMATION_ROOM_COST="Стоимость номера"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Детали номера"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Ваши прошлые даты"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Огромное спасибо %s!</br>Ваша бронь номер %s успешно сохранена, но оплата еще не произведена.</h3><ul> <li>Мы отправили подтверждающее письмо на %s</li><li>Также мы уведомили %s о вашем бронировании</li><li><a href="_QQ_"%s"_QQ_">Нажмите сюда</a>, чтобы вернутся на главную страницу</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Ошибка. Минимальная продолжительность пребывания %d ночей."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Ошибка. Минимальная продолжительность пребывания %d дней."
SR_USER_INFO_USERNAME_PLURAL="Вы вошли под именем: %s"

; Since 0.9.4
SR_COUPON_CHECK="Проверка купона"
SR_RESERVATION_ORIGIN_DIRECT="Напрямую со страницы отеля"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="Минимальное количество гостей для данного номера - %d, максимальное - %d."
SR_RESERVE="Забронировать"
SR_SEARCH_ROOMS="Номера"
SR_SEARCH_ROOM="Номер"
SR_SEARCH_ROOM_ADULTS="Взрослые"
SR_SEARCH_ROOM_CHILDREN="Дети"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Бронирование было отменено"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Бронирование %s от %s %s было отменено"
SR_EMAIL_GREETING_TEXT_CANCELLED="Ваше бронирование %s на %s было отменено."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Бронирование %s было отменено, пожалуйста, проверьте подробности ниже или <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">нажмите здесь</a> для его просмотра:</p>"
SR_EMAIL_COUPON_CODE="Код купона: "

; Since 1.8.0
SR_FULLNAME="Полное имя"
SR_MESSAGE="Сообщение"
SR_SEND_MESSAGE="Отправить сообщение"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Запрос на бронирование от % на %"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Спасибо, Ваш запрос успешно отправлен. Мы свяжемся с Вами в кратчайшие сроки"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="За бронирование за период (ночь или день)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="За номер за период"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="За номер с человека за период"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Процент от стоимости номера за сутки"
SR_EXTRA_PRICE_DAILY_RATE="%s costs %d percent of room daily rate per stay"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Ваша сессия скоро истекает"
SR_WARNING_SESSION_EXPIRED="Ваша сессия истекла, <a href="_QQ_"#"_QQ_">нажмите здесь</a>, чтобы начать новую."
SR_WEBSITE="Сайт"
SR_YOUR_STAY="Ваше бронирование"
SR_AVAILABLE_ROOMS="Доступные номера"
SR_MAX_GUESTS="Максимальное количество гостей"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Забронировать сейчас"
SR_TARIFF_PACKAGE_PER_ROOM="Пакет за номер"
SR_TARIFF_PACKAGE_PER_PERSON="Пакет на человека"
SR_TARIFF_PER_ROOM_PER_NIGHT="Цена за номер за ночь"
SR_TARIFF_PER_PERSON_PER_NIGHT="Цена на человека за ночь"
SR_ROOM_X_EXTRA_AMOUNT="Дополнительная стоимость за номер"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Ваше бронирование успешно исправлено"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Послать сообщение по email?"
SR_FIELD_COUNTRY_SELECT=" - Выбрать страну - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Сделать онлайн-платеж?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Ваше бронирование успешно завершено"
SR_SELECT_BED_QUANTITY="%s кроватей"
SR_SELECT_BED_QUANTITY_1="1 кровать"
SR_BED="Кровать"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Спасибо %s! Ваш запрос на бронирование отправлен, мы свяжемся с вами в кратчайшие сроки, чтобы подтвердить бронирование.</h3><ul><li><a href="_QQ_"%s"_QQ_">Нажмите здесь, чтобы вернуться на домашнюю страницу.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Ваше бронирование номер %s было отменено.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Нажмите здесь </a> чтобы вернуться на домашнюю страницу.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Туристический налог"
SR_EMAIL_TOURIST_TAX="Туристический налог: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s доплата"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s скидка"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s доплата: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s скидка: "
SR_CONFIRMATION_GUEST_NUMBER="Количество гостей"
SR_SELECT_GUEST_QUANTITY="%s гостей"
SR_SELECT_GUEST_QUANTITY_1="1 гость"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Информация о номерах и ценах"
SR_CONFIRMATION_PAYMENT_METHOD="Способ оплаты: "
SR_CONFIRMATION_MOBILE="Мобильный телефон: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Неоплачено"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Оплачено"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Отменено"
SR_RESERVATION_PAYMENT_STATUS_PENDING="В процессе"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ кровать "
SR_WE_HAVE_X_BED_LEFT="У нас осталось %s кроватей"
SR_WE_HAVE_X_BED_LEFT_1="У нас осталось %s кроватей"
SR_ONLY_1_LEFT_BED="Последний шанс! Осталась одна кровать"
SR_ONLY_2_LEFT_BED="Осталось 2 кровати"
SR_ONLY_3_LEFT_BED="Осталось 3 кровати"
SR_ONLY_4_LEFT_BED="Осталось 4 кровати"
SR_ONLY_5_LEFT_BED="Осталось 5 кроватей"
SR_ONLY_6_LEFT_BED="Осталось 6 кроватей"
SR_ONLY_7_LEFT_BED="Осталось 7 кроватей"
SR_ONLY_8_LEFT_BED="Осталось 8 кроватей"
SR_ONLY_9_LEFT_BED="Осталось 9 кроватей"
SR_ONLY_10_LEFT_BED="Осталось 10 кроватей"
SR_ONLY_11_LEFT_BED="Осталось 11 кроватей"
SR_ONLY_12_LEFT_BED="Осталось 12 кроватей"
SR_ONLY_13_LEFT_BED="Осталось 13 кроватей"
SR_ONLY_14_LEFT_BED="Осталось 14 кроватей"
SR_ONLY_15_LEFT_BED="Осталось 15 кроватей"
SR_ONLY_16_LEFT_BED="Осталось 16 кроватей"
SR_ONLY_17_LEFT_BED="Осталось 17 кроватей"
SR_ONLY_18_LEFT_BED="Осталось 18 кроватей"
SR_ONLY_19_LEFT_BED="Осталось 19 кроватей"
SR_ONLY_20_LEFT_BED="Осталось 20 кроватей"
SR_DUE_AMOUNT="Сумма к оплате"
SR_EMAIL_DUE_AMOUNT="Сумма к оплате: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Ваше бронирование отменено"
SR_CHECKIN_PLACEHOLDER="Дата заезда"
SR_CHECKOUT_PLACEHOLDER="Дата выезда"
SR_CHOOSE_ANOTHER_CHECKIN="Пожалуйста, выберите другую дату заезда"
SR_WARNING_SESSION_RENEW="Обновить"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Введите Ваш email"
SR_ENTER_YOUR_RESERVATION_CODE="Введите номер брони"
SR_FIND_RESERVATION="Найти бронирование"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Номер брони %s найден"
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="Мы не можем найти бронирование, пожалуйста, попробуйте еще раз"
SR_RESERVATION_STATUS_FORMAT="Статус бронирования: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Показать форму отслеживания бронирования"
SR_TRACKING_VIEW_DEFAULT_DESC="Позволить гостям отслеживать их бронирования по номеру брони + email адресу"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ на человека "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s на человек (-а) "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Не доступно"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Оплатите за проживание по номеру брони %s в %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Итого оплачено: "
SR_CONFIRM_EMAIL="Подтвердите email"
SR_EMAIL_NOT_MATCH_MESSAGE="Адрес email, который Вы ввели не совпадает. Пожалуйста, введите адрес email в соответсвующее поле и подтвердите его в поле для подтверждения адреса email."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/cs-CZ/cs-CZ.com_solidres.ini000060400000072727150751740420013367 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Kriteria hledání"
SR_SEARCH_FIELD_COUNTRY="Stát"
SR_SEARCH_FIELD_STATE="Země"
SR_SEARCH_FIELD_CITY="Město"
SR_SEARCH_CHECKIN_DATE="Datum od"
SR_SEARCH_CHECKOUT_DATE="Datum do"
SR_SEARCH="Najít volné termíny"
SR_RESET="Zrušit hledání"
SR_REMEMBER_ME="Pamatovat mne"
SR_FORGOT_YOUR_PASSWORD="Zapomenuté heslo"
SR_FORGOT_YOUR_USERNAME="Zapomenuté jméno"
SR_REGISTER="Registrovat"
SR_SELECTED_RESERVATION_ASSET="Vybraný hotel"
SR_STAYING_INFO="Informace o pobytu"
SR_NUMBER_OF_ROOM="Místnosti"
SR_GUEST_PER_ROOM="Hostů na místnost"
SR_ROOM_RATE_INFO="Informace o hodnocení pokoje"
SR_ROOM_DESCRIPTION="Popis místnosti"
SR_ROOM_RATE_TYPE="Typ hodnocení místnosti"
SR_GUEST_INFO="Údaje hosta"
SR_FIRSTNAME="Jméno *"
SR_LASTNAME="Příjmení *"
SR_EMAIL="Email *"
SR_PHONENUMBER="Telefon *"
SR_CONTACT_INFO="Kontaktní informace"
SR_HOLD_GUARANTEE_INFO="Informace o rezervaci / záloze"
SR_ARRIVAL_INFO="Informace o příjezdu"
SR_TRAVEL_INFO="Cestovní informace"
SR_COMPANY="Společnost (volitelné)"
SR_ADDRESS_1="Adresa 1 *"
SR_ADDRESS_2="Adresa 2 (volitelné)"
SR_CITY="Město *"
SR_ZIP="PSČ (volitelné)"
SR_STATE="Stát (jen pro USA)"
SR_COUNTRY="Stát *"
SR_TRAVEL_FOR_BUSINESS="Produktivita/Obchod"
SR_TRAVEL_FOR_BUSINESS_DESC="Líbí se mi, aby bylo možné získat práci a být produktivní, když jsem na cestách"
SR_TRAVEL_FOR_RELAX="Relaxace / Pohodlí"
SR_TRAVEL_FOR_RELAX_DESC="Rád si odpočinu a osvěžím, když jsem daleko od domova."
SR_TRAVEL_FOR_ENTERTAINMENT="Zábava / Atrakce"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Chci se pobavit a vidět to nejlepší co mi můžete nabídnout."
SR_TRAVEL_FOR_FAMILY="Rodina"
SR_TRAVEL_FOR_FAMILY_DESC="Navštívil jsem rodinnou událost nebo jsem na dovolené s rodinou."
SR_TRAVEL_FOR_HONEYMOON="Líbánky"
SR_TRAVEL_FOR_HONEYMOON_DESC="Hodlám si užít líbánky při měsíčku."
SR_COMMENT="Komentář"
SR_COMMENT_DESC="Napište nám prosím, pokud nám chcete sdělit nějaké komentáře."
SR_TAX="Daně"
SR_RULE_RESTRICTION="Jen 4 pokoje volné"
SR_SELECT_TARIFF="Vybrat termín"
SR_SHOW_MAP="Mapa"
SR_READMORE="Číst dál"
SR_PRICE_FROM="Pobyt od"
SR_FIELD_RESERVE="Nová rezervace"
SR_FIELD_CONDITIONS="Podmínky"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Vyhledejte si svůj hotel pomocí formuláře výše"
SR_NO_ROOM_AVAILABLE="Je obsazeno!"
SR_MAX="Povoleno max. osob"
SR_HAS_ROOM_AVAILABLE="Volné"
SR_AVAILABILITY="Dostupnost"
SR_AVAILABLE_ROOM_TYPES="Dostupné druhy pokojů"
SR_VIEW_GALLERY="Zobrazit galerii"
SR_YOUR_SEARCH_INFORMATION="Vámi hledané informace"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Příjezd:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Odjezd:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Celkem dospělých na pokoj:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Celkem dětí na pokoj:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Pokračovat"
SR_EXTRA_PACKAGES="Balíčky navíc"
SR_ROOM_TYPE_NAME="Typ pokoje"
SR_ROOM_TYPE_QUANTITY="Počet pokojů"
SR_ROOM_TYPE_GUEST_PER_ROOM="Hostů na pokoj"
SR_NUMBER_OF_NIGHT="Počet nocí"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Pokoje & příplatky"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Balíčky navíc"
SR_RESERVATION_PROGRESS_GUEST_INFO="Údaje hosta"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Informace o platbě"
SR_RESERVATION_CONFIRMATION="Potvrzení"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Hotovo"
SR_PAYMENT_METHOD_CHEQUE_MONEY="V hotovosti"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Váš zvolený počet místností překročil počet dostupných, prosím <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">klikněte zde</a> pro návrat a k vytvoření jiného výběru."
SR_CHANGE="Změna"
SR_NOTE="Poznámka (volitelné)"
SR_MIDDLENAME="Druhé jméno (volitelné)"
SR_RESERVATION_PROGRESS_DATES="Data & Preference"
SR_ROOM_SELECTION="Výběr pokoje"
SR_ROOM_TYPE_ADULT_PER_ROOM="Dospělích na pokoj"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Dětí na pokoj"
SR_ROOM_TYPE_GUEST_NAME="Celé jméno hosta"
SR_RESERVATION_NOTICE_CONFIRMATION="Přečtěte si prosím detaily rezervace a klikněte na tlačítko níže pro dokončení Vaší rezervace. Potvrzovací e-mail bude zaslán na Vámi zadanou e-mailovou adresu."
SR_SEARCH_COUPON="Kupon"
SR_MAXIMUM_OCCUPANCY="Maximální obsazenost"
SR_OCCUPANCY_ADULT="Počet dospělých"
SR_OCCUPANCY_CHILD="Počet dětí"
SR_NIGHTS="%d nocí"
SR_NIGHTS_1="%d noc"
SR_TOTAL_ROOM_COST_TAX_EXCL="Celkem za ubytování (bez DPH)"
SR_TOTAL_ROOM_COST_TAX_INCL="Celkem za ubytování (s DPH)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Celkem příplatky (bez DPH)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Celkem za příplatky (s DPH)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="DPH za příplatky"
SR_PRICE_FOR_X_NIGHTS="Cena za %d nocí"
SR_ROOM_TYPE="Typy místností"
SR_NUMBER_OF_ROOMS="Poč. pokojů"
SR_TARIFF_BREAK_DOWN="Členění tarifu"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Počet dospělých"
SR_SEARCH_CHILDREN_NUMBER="Počet dětí"
SR_NO_TARIFF_AVAILABLE="Zvolený tarif není dostupný"
SR_EMAIL_RESERVATION_COMPLETE="Vaše rezervace je kompletní"

; Extra
SR_RESERVATION_EXTRA="Název"
SR_RESERVATION_EXTRA_COST="Cena"
SR_RESERVATION_EXTRA_QUANTITY="Množství na den"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="E-mail obsahující souhrn Vaší rezervace se nepodařilo odeslat."

SR_BOOK_NOW="Nová rezervace"
SR_TOTAL_PRICE="Cena celkem"
SR_TAX_7_NOT_INCLUDED="DPH není zahrnuto"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Není zahrnut poplatek za servis"

SR_RESERVATION_NOTE="Zadejte libovolné informace, které chcete připojit k vaší rezervaci. Zaměstnanci nemohou zaručit další požadavky či připomínky, které jste neuvedli. Vyvarujte se při psaní používání speciálních znaků."
SR_ASK_FOR_CHECKIN_CHECKOUT="Chcete-li zkontrolovat ceny pokojů a dostupnost, prosím, zadejte data svého příjezdu a odjezdu v níže uvedeném formuláři"
SR_GRAND_TOTAL="<strong>Celkem k platbě</strong>"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Vybavenost"
SR_CUSTOMFIELD_POLICIES="Pravidla"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Sociální sítě"
SR_CUSTOMFIELD_GENERAL="General"
SR_CUSTOMFIELD_ACTIVITIES="Aktivity"
SR_CUSTOMFIELD_SERVICES="Služby"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parkování"
SR_CUSTOMFIELD_CHECKIN="Příjezd"
SR_CUSTOMFIELD_CHECKOUT="Odjezd"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Zrušení / záloha"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Děti a přistýlky"
SR_CUSTOMFIELD_PETS="Zvířata"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Akceptace kreditních karet"
SR_BREAKFAST_INCLUDED="Snídaně v ceně"
SR_BREAKFAST_EXCLUDED="Bez snídaně"
SR_FREE_CANCELLATION="Zrušení zdarma"
SR_NON_REFUNDABLE="Nevratné"
SR_ROOM_OCCUPANCY="Obsazenost"
SR_TAXES="DPH"
SR_PREPAYMENT="Záloha"
SR_ROOM_FACILITIES="Vybavení pokoje"
SR_ROOM_SIZE="Velikost místnosti"
SR_BED_SIZE="Velikost pokoje"

SR_COUPON_ENTER="Vložte kód kuponu (volitelné)"
SR_COUPON_ACCEPTED="Kupón je akceptován"
SR_COUPON_REJECTED="Kupón není platný"
SR_APPLY_COUPON="Použít kupón"

SR_ROOM_AVAILABLE_FROM_TO="Volné místnosti od %s do %s"
SR_APPLIED_COUPON="Použit kupon
SR_REMOVE="Odebrat"
SR_CAN_NOT_REMOVE_COUPON="Nelze odebrat kupon"
SR_AVAILABILITY_CALENDAR="Kalendář dostupnosti"
SR_AVAILABILITY_CALENDAR_VIEW="Zobrazit kalendář"

SR_AVAILABILITY_CALENDAR_BUSY="Obsazeno"
SR_FEATURED_ROOM_TYPE="Nejlepší"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Vyberte prosím alespoň jeden typ místnosti pro pokračování."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Chyba. Musíte se rezervovat nejméně %d dní a ne více než %d dní před příjezdem. Minimální délka pobytu je %d den."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Chyba. Datum odjezdu musí být až po datu příjezdu."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Chyba. Minimální délka pobytu je %d noc."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Chyba. Musíte se rezervovat nejméně %d dní před příjezdem."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Chyba. Není dovoleno se rezervovat více než %d dní před příjezdem."
SR_NEXT="Další"
SR_BACK="Zpět"
SR_CUSTOMER_TITLE="Váš titul (volitelné)"
SR_CUSTOMER_TITLE_MR="Pan"
SR_CUSTOMER_TITLE_MRS="Paní"
SR_CUSTOMER_TITLE_MS="Slečna"
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Typ tarifu: Za osobu za noc, vyberte si prosím počet místností, pak zadejte svojí rezervaci a poté zjistíte přesný tarif pro tuto místnost"
SR_ERROR_CHILD_MAX_AGE="Věk musí být mezi"
SR_BOOKING_CONDITIONS="pravidly pro ubytování"
SR_PRIVACY_POLICY="jsem seznámen se způsobem ochrany osobních údajů"
SR_ROOM_COST="Cena místnosti: "
SR_ENHANCE_YOUR_STAY="Vylepšete si svůj pobyt"
SR_I_AGREE_WITH="Souhlasím s "
SR_GUEST_INFORMATION="Údaje hosta"
SR_PAYMENT_INFO="Informace o platbě"
SR_GUEST_INFO_STEP_NOTICE="Zadejte Vaše údaje a způsob platby"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Vyberte typ místnosti, zkontrolujte ceny a pokračujte klepnutím na tlačítko Další"
SR_AGE_OF_CHILD_AT_CHECKOUT="Věk dítěte/dětí pro platbu"
SR_GUEST_NAME="Celé jméno hosta"
SR_ROOM="Místnost"
SR_CHILD="Dítě"
SR_ADULT="Dospělý"
SR_ROOMTYPE_QUANTITY="Počet místností"
SR_AND="a"
SR_STEP_ROOM_AND_RATE="Místnosti & příplatky"
SR_STEP_GUEST_INFO_AND_PAYMENT="Údaje hosta & platba"
SR_STEP_CONFIRMATION="Potvrzení rezervace"
SR_PAYMENT_METHOD_PAYLATER="Platba hotově na místě"
SR_PAYMENT_METHOD_BANKWIRE="Platba bankovním převodem"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Prosím, mějte na paměti, že může trvat několik dní, než přijde platba. V poznámkách platebního příkazu zadejte svůj rezervační kód, to nám pomůže rychleji zpracovat Vaši objednávku."
SR_PROCESSING="Zpracovávám ..."

; Since 0.6.0
SR_STAR="hvězdička"
SR_STARS="hvězdiček"
JGLOBAL_FIELDSET_PUBLISHING="Publikováno"
JTOOLBAR_APPLY="Uložit"
JTOOLBAR_ARCHIVE="Archivovat"
JTOOLBAR_ASSIGN="Přiřazeno k"
JTOOLBAR_BACK="Zpět"
JTOOLBAR_BATCH="Dávka"
JTOOLBAR_CANCEL="Zrušit"
JTOOLBAR_CHECKIN="Zkontrolovat"
JTOOLBAR_CLOSE="Uzavřít"
JTOOLBAR_DEFAULT="Výchozí"
JTOOLBAR_DELETE="Smazat"
JTOOLBAR_DISABLE="Zakázat"
JTOOLBAR_DUPLICATE="Kopírovat"
JTOOLBAR_EDIT="Editovat"
JTOOLBAR_EDIT_CSS="Editovat CSS"
JTOOLBAR_EDIT_HTML="Editovat HTML"
JTOOLBAR_EMPTY_TRASH="Vyprázdnit koš"
JTOOLBAR_ENABLE="Povolit"
JTOOLBAR_EXPORT="Export"
JTOOLBAR_HELP="Pomoc"
JTOOLBAR_INSTALL="Instalovat"
JTOOLBAR_NEW="Nové"
JTOOLBAR_OPTIONS="Možnosti"
JTOOLBAR_PUBLISH="Publikováno"
JTOOLBAR_PURGE_CACHE="Vyčistit Cache"
JTOOLBAR_REBUILD="Rebuilt"
JTOOLBAR_REFRESH_CACHE="Obnovit Cache"
JTOOLBAR_REMOVE="Odebrat"
JTOOLBAR_SAVE="Uložit a zavřít"
JTOOLBAR_SAVE_AND_NEW="Uložit a nový"
JTOOLBAR_SAVE_AS_COPY="Uložit jako kopii"
JTOOLBAR_UNARCHIVE="Nearchivováno"
JTOOLBAR_UNINSTALL="Odinstalovat"
JTOOLBAR_UNPUBLISH="Nepublikováno"
JTOOLBAR_UPLOAD="Nahrát"
JTOOLBAR_TRASH="Do koše"
JTOOLBAR_UNTRASH="Z koše"
JTOOLBAR_REBUILD_SUCCESS="Úspěšně rebuildet"
JTOOLBAR_VERSIONS="Verze"
SR_SEARCH_LOCATION="Umístění"
SR_DASHBOARD="Přehled"
SR_PHONE="Telefon"
SR_FAX="Email"
SR_DEPOSIT_AMOUNT="Částka zálohy"
SR_TOTAL_ROOM_TAX="DPH za pokoj"

; Since 0.7.0
SR_STANDARD_TARIFF="Základní vybavení"
SR_SEARCH_RESET="<strong>Smazat a opakovat rezervaci</strong>"
SR_SELECT_A_TARIFF="Vybrat tarif"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="Žádný tarif neodpovídá zvolenému příjezdu a odjezdu. <a href="_QQ_"%s"_QQ_"> Klikněte zde pro zobrazení všech dalších dostupných tarifů. </a>"
SR_SELECT_A_TARIFF_FIRST="Prosím vyberte si nejdříve tarif."
SR_SMOKING="Vyberte možnost kouření"
SR_SMOKING_ROOM="Kuřácký pokoj"
SR_NON_SMOKING_ROOM="Nekuřácký pokoj"
SR_SELECT_ROOM_QUANTITY="%s pokojů"
SR_SELECT_ROOM_QUANTITY_1="1 pokoj"
SR_SELECT_ADULT_QUANTITY="%s dospělých"
SR_SELECT_ADULT_QUANTITY_1="1 dospělý"
SR_SELECT_CHILD_QUANTITY="%s dětí"
SR_SELECT_CHILD_QUANTITY_1="1 dítě"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s nocí"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 noc"
SR_TARIFF_SUFFIX_PER_ROOM="/místnost "
SR_CHILD_AGE_SELECTION="%s let"
SR_CHILD_AGE_SELECTION_1="%s let"
SR_CHILD_AGE_SELECTION_JS="let"
SR_CHILD_AGE_SELECTION_1_JS="let"
SR_EMAIL_CONFIRM_RESERVATION="Potvrdit rezervaci"
SR_EMAIL_REF_ID="Reference ID: %s"
SR_EMAIL_GREETING_NAME="Vážený(á) %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Děkujeme vám za rezervaci na %s. Pokud budete mít jakékoliv další dotazy, neváhejte se na nás kdykoliv obrátit</p><p>Budeme rádi, když nám potvrdíte rezervaci s těmito údaji: </p>"
SR_EMAIL_CHECKIN="Příjezd: "
SR_EMAIL_CHECKOUT="Odjezd: "
SR_EMAIL_PAYMENT_METHOD="Způsob platby: "
SR_EMAIL_EMAIL="Email: "
SR_EMAIL_NUM_NIGHT="Počet nocí: "
SR_EMAIL_SUB_TOTAL="Cena pokoje (bez daně): "
SR_EMAIL_TAX="DPH za místnost: "
SR_EMAIL_GRAND_TOTAL="Celkem k platbě: "
SR_EMAIL_DEPOSIT_AMOUNT="Záloha: "
SR_EMAIL_EXTRAS_ITEMS="Položky navíc: "
SR_EMAIL_CONNECT_WITH_US="Kontaktujte nás přes: "
SR_EMAIL_CONTACT_INFO="Kontaktní údaje: "
SR_EMAIL_ADDRESS="Adresa: "
SR_EMAIL_PHONE="Telefon: "
SR_EMAIL_OTHER_INFO="Další informace"
SR_EMAIL_EXTRA_QUANTITY="Množství na den: "
SR_EMAIL_EXTRA_PRICE="Cena na den: "
SR_EMAIL_NOTE="Poznámka: "
SR_EMAIL_BANKWIRE_INFO="Informace k platebnímu příkazu"
SR_EMAIL_NOTIFICATION_RESERVATION="Potvrzení rezervace"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>Nová rezervace byla provedena, zkontrolujte podrobnosti níže nebo <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">klikněte zde</a> pro zobrazení:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Dobrý den,"
SR_EMAIL_EXTRA_TAX_EXCL="Cena za doplňky (bez DPH): "
SR_EMAIL_EXTRA_TAX_AMOUNT="DPH za doplňky: "
SR_VAT_NUMBER="DIČ (volitelné)"
SR_PASSWORD="Heslo"
SR_USERNAME="Uživatelské jméno"
SR_WE_HAVE_X_ROOM_LEFT="Máme %s místností volných"
SR_WE_HAVE_X_ROOM_LEFT_1="Máme %s volnou místnost!"
SR_ONLY_1_LEFT="Poslední změna! Je jen 1 volnou místnost"
SR_ONLY_2_LEFT="Jsou jen 2 volné místnosti"
SR_ONLY_3_LEFT="Jsou jen 3 volné místnosti"
SR_ONLY_4_LEFT="Jsou jen 4 volné místnosti"
SR_ONLY_5_LEFT="Je 5 volných místností"
SR_ONLY_6_LEFT="Je 6 volných místností"
SR_ONLY_7_LEFT="Je 7 volných místností"
SR_ONLY_8_LEFT="Je 8 volných místností"
SR_ONLY_9_LEFT="Je 9 volných místností"
SR_ONLY_10_LEFT="Je 10 volných místností"
SR_ONLY_11_LEFT="Je 11 volných místností"
SR_ONLY_12_LEFT="Je 12 volných místností"
SR_ONLY_13_LEFT="Je 13 volných místností"
SR_ONLY_14_LEFT="Je 14 volných místností"
SR_ONLY_15_LEFT="Je 15 volných místností"
SR_ONLY_16_LEFT="Je 16 volných místností"
SR_ONLY_17_LEFT="Je 17 volných místností"
SR_ONLY_18_LEFT="Je 18 volných místností"
SR_ONLY_19_LEFT="Je 19 volných místností"
SR_ONLY_20_LEFT="Je 20 volných místností"
SR_SHOW_MORE_INFO="Další informace"
SR_HIDE_MORE_INFO="Skrýt informace"
SR_AVAILABILITY_CALENDAR_CLOSE="Zavřít kalendář"
SR_STARTING_FROM="Začíná od"
SR_SELECT="Vybrat"
SU="Ne"
MO="Po"
TU="Út"
WE="St"
TH="Čt"
FR="Pá"
SA="So"
SR_USERNAME_EXISTS="Uživatelské jméno je již použito. Prosím vyberte si jiné."
JFIELD_METADATA_ROBOTS_DESC="Instrukce pro roboty"
JFIELD_METADATA_ROBOTS_LABEL="Roboti"
JFIELD_XREFERENCE_DESC="Volitelné pole, tento záznam musí křížově odkazovat na externí datový systém v případě potřeby."
JFIELD_XREFERENCE_LABEL="Externí reference"
JCLEAR="Vyčistit"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Komfortní registrace v budoucnu: rychlá a snadná rezervace příště. Pokud jí chcete využít zadejte požadované uživatelské jméno a heslo do následujících položek."
SR_PRICE_IS_FOR_X_NIGHT="Cena je za %s nocí"
SR_PRICE_IS_FOR_X_NIGHT_1="Cena je za %s noc"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="We found no matched room types, please adjust your booking dates or room options."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="We found %s rooms that matched your search from %s to %s for %s adults and %s children."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="We have less than your number of requested rooms, but our current available rooms (%s) could satisfy your search from %s to %s for %s adults and %s children if you select a different number of rooms."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Sorry but our rooms are not available for your search from %s to %s for %s adults and %s children."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="We found %s rooms that matched your search from %s to %s."
SR_MOBILEPHONE="Mobile phone"
SR_RESERVATION_SAVE_ERROR="Your reservation could not be saved, please try again."
SR_EMAIL_PAYMENT_METHOD_INFO="Payment information"
SR_RESERVATION_COMPLETE="<h3>Thank you %s! Your reservation number %s has been completed successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_EXTRA_PRICE_ADULT="For adult"
SR_EXTRA_PRICE_CHILD="For child"
SR_EXTRA_MORE_DETAILS="Details"
SR_EXTRA_PRICE="Price"
SR_TOTAL_DISCOUNT="Total discount"
SR_EMAIL_TOTAL_DISCOUNT="Total discount: "
SR_ROOM_X_COST="Room cost"
SR_ROOM_X_DISCOUNTED_AMOUNT="Room discounted amount"
SR_ROOM_X_DISCOUNTED_COST="Room cost after discounted"
SR_VIEW_TARIFF_BREAKDOWN="Details"
SR_SHOW_TARIFFS="Rates"
SR_HIDE_TARIFFS="Rates"
SR_CONFIRMATION_ROOM_DETAILS="Details"
SR_CONFIRMATION_GUEST_NAME="Guest name"
SR_CONFIRMATION_ADULT_NUMBER="Adult number"
SR_CONFIRMATION_CHILD_NUMBER="Child number"
SR_CONFIRMATION_FULLNAME="Your full name: "
SR_EXTRA="Extra"
SR_EXTRA_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Per room"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Per booking per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Per booking per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Per room per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Per room per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Per person per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Per room per person per night"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Price for adult"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Enter the price for adult of this Extra/Service. The currency of Property will apply here."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Price for child"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Enter the price for child of this Extra/Service. The currency of Property will apply here."

; Since 0.9.0
SR_DAYS="%d days"
SR_DAYS_1="%d day"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s days"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 day"
SR_LENGTH_OF_STAY="Length of stay"
SR_EMAIL_LENGTH_OF_STAY="Length of stay: "
SR_PRICE_IS_FOR_X_DAY="Price is for %s days"
SR_PRICE_IS_FOR_X_DAY_1="Price is for %s day"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Room single supplement"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Room cost after single supplement"
JLIB_APPLICATION_SAVE_SUCCESS="Item successfully saved."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Item successfully submitted."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="New reservation %s from %s %s"
SR_RESERVATION_CODE="Code"
SR_RESERVATION_INVOICE="Invoice"
SR_RESERVATION_CHECKIN="Checkin"
SR_RESERVATION_CHECKOUT="Checkout"
SR_RESERVATION_ASSET="Property"
SR_RESERVATION_TOTAL_PAID="Total paid"
SR_DESCRIPTION="Description"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Booking number"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Booking details"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s rooms"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s room"
SR_CONFIRMATION_CHECKIN="Check-in"
SR_CONFIRMATION_CHECKOUT="Check-out"
SR_CONFIRMATION_TOTAL_PRICE="Total price"
SR_CONFIRMATION_ASSET_NAME="Name"
SR_CONFIRMATION_ASSET_ADDRESS="Address"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Phone"
SR_ASSET_INFO="Hotel information"
SR_BOOKING_INFO="Your booking information"
SR_BOOKING_CONFIRMATION_ADULTS="%s adults"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s adult"
SR_BOOKING_CONFIRMATION_CHILDREN="%s children"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s child"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Guest full name"
SR_BOOKING_CONFIRMATION_SMOKING="Smoking"
SR_BOOKING_CONFIRMATION_ROOM_COST="Room cost"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Room details"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Your dates appear to be in the past"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Thank you %s! Your reservation number %s has been completed successfully but the payment is not yet completed.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Invalid. Minimum length of stay is %d days."
SR_USER_INFO_USERNAME_PLURAL="You have logged with username: %s"

; Since 0.9.4
SR_COUPON_CHECK="Check"
SR_RESERVATION_ORIGIN_DIRECT="Direct"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="This room type requires at least %d people and maximum %d people."
SR_RESERVE="Reserve"
SR_SEARCH_ROOMS="Rooms"
SR_SEARCH_ROOM="Room"
SR_SEARCH_ROOM_ADULTS="Adults"
SR_SEARCH_ROOM_CHILDREN="Children"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Reservation has been cancelled"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Reservation %s from %s %s has been cancelled"
SR_EMAIL_GREETING_TEXT_CANCELLED="Your reservation %s at %s has been cancelled."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Reservation %s has been cancelled, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_COUPON_CODE="Coupon code: "

; Since 1.8.0
SR_FULLNAME="Full name"
SR_MESSAGE="Message"
SR_SEND_MESSAGE="Send message"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Booking inquiry from %s for %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Thank you, your inquiry has been sent successfully. We will get back to you as soon as possible."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per booking per stay (night or day)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Per room per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per room per person per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Percentage of room's daily rate"
SR_EXTRA_PRICE_DAILY_RATE="%s costs %d percent of room daily rate per stay"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Your session is expiring soon."
SR_WARNING_SESSION_EXPIRED="Your session has been expired, <a href="_QQ_"#"_QQ_">click here</a> to start a new session."
SR_WEBSITE="Website"
SR_YOUR_STAY="Your stay"
SR_AVAILABLE_ROOMS="Available room"
SR_MAX_GUESTS="Max guests"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Book Now"
SR_TARIFF_PACKAGE_PER_ROOM="Package per room"
SR_TARIFF_PACKAGE_PER_PERSON="Package per person"
SR_TARIFF_PER_ROOM_PER_NIGHT="Rate per room per stay"
SR_TARIFF_PER_PERSON_PER_NIGHT="Rate per person per stay"
SR_ROOM_X_EXTRA_AMOUNT="Room extras item cost"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Your reservation has been amended successfully"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Send outgoing emails?"
SR_FIELD_COUNTRY_SELECT=" - Select Country - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Process online payment?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Your reservation has been added successfully"
SR_SELECT_BED_QUANTITY="%s beds"
SR_SELECT_BED_QUANTITY_1="1 bed"
SR_BED="Bed"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Thank you %s! Your reservation request %s has been sent to us, we will get back to you as soon as possible to confirm this reservation.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Your reservation number %s has been cancelled.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Tourist tax"
SR_EMAIL_TOURIST_TAX="Tourist tax: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount: "
SR_CONFIRMATION_GUEST_NUMBER="Guest number"
SR_SELECT_GUEST_QUANTITY="%s guests"
SR_SELECT_GUEST_QUANTITY_1="1 guest"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Rooms and rates information"
SR_CONFIRMATION_PAYMENT_METHOD="Payment method: "
SR_CONFIRMATION_MOBILE="Mobile phone: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Unpaid"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Paid"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Cancelled"
SR_RESERVATION_PAYMENT_STATUS_PENDING="Pending"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ bed "
SR_WE_HAVE_X_BED_LEFT="We have %s beds left"
SR_WE_HAVE_X_BED_LEFT_1="We have %s bed left!"
SR_ONLY_1_LEFT_BED="Last chance! Only 1 bed left"
SR_ONLY_2_LEFT_BED="Only 2 beds left"
SR_ONLY_3_LEFT_BED="Only 3 beds left"
SR_ONLY_4_LEFT_BED="Only 4 beds left"
SR_ONLY_5_LEFT_BED="Only 5 beds left"
SR_ONLY_6_LEFT_BED="Only 6 beds left"
SR_ONLY_7_LEFT_BED="Only 7 beds left"
SR_ONLY_8_LEFT_BED="Only 8 beds left"
SR_ONLY_9_LEFT_BED="Only 9 beds left"
SR_ONLY_10_LEFT_BED="Only 10 beds left"
SR_ONLY_11_LEFT_BED="Only 11 beds left"
SR_ONLY_12_LEFT_BED="Only 12 beds left"
SR_ONLY_13_LEFT_BED="Only 13 beds left"
SR_ONLY_14_LEFT_BED="Only 14 beds left"
SR_ONLY_15_LEFT_BED="Only 15 beds left"
SR_ONLY_16_LEFT_BED="Only 16 beds left"
SR_ONLY_17_LEFT_BED="Only 17 beds left"
SR_ONLY_18_LEFT_BED="Only 18 beds left"
SR_ONLY_19_LEFT_BED="Only 19 beds left"
SR_ONLY_20_LEFT_BED="Only 20 beds left"
SR_DUE_AMOUNT="Total due amount"
SR_EMAIL_DUE_AMOUNT="Due Amount: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Your reservation has been cancelled."
SR_CHECKIN_PLACEHOLDER="Your check-in date"
SR_CHECKOUT_PLACEHOLDER="Your check-out date"
SR_CHOOSE_ANOTHER_CHECKIN="Please choose another check-in date"
SR_WARNING_SESSION_RENEW="Renew"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Enter your email"
SR_ENTER_YOUR_RESERVATION_CODE="Enter your reservation code"
SR_FIND_RESERVATION="Find reservation"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reservation code %s found."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="We can not find any reservations with your given information, please recheck your information and try again."
SR_RESERVATION_STATUS_FORMAT="Reservation status: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Show property's reservation tracking form"
SR_TRACKING_VIEW_DEFAULT_DESC="Allow guests check their reservation using reservation code + email address"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ 1 person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s people "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/zh-CN/zh-CN.com_solidres.ini000060400000072176150751740420013365 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Search criteria"
SR_SEARCH_FIELD_COUNTRY="国家"
SR_SEARCH_FIELD_STATE="州"
SR_SEARCH_FIELD_CITY="市"
SR_SEARCH_CHECKIN_DATE="Check-in date"
SR_SEARCH_CHECKOUT_DATE="Check-out date"
SR_SEARCH="查找"
SR_RESET="重设"
SR_REMEMBER_ME="Remember me"
SR_FORGOT_YOUR_PASSWORD="Forgot your password"
SR_FORGOT_YOUR_USERNAME="Forgot your username"
SR_REGISTER="Register"
SR_SELECTED_RESERVATION_ASSET="Selected hotel"
SR_STAYING_INFO="Staying information"
SR_NUMBER_OF_ROOM="房间"
SR_GUEST_PER_ROOM="Guest per room"
SR_ROOM_RATE_INFO="Room rate information"
SR_ROOM_DESCRIPTION="Room description"
SR_ROOM_RATE_TYPE="Room rate type"
SR_GUEST_INFO="Guest information"
SR_FIRSTNAME="名"
SR_LASTNAME="姓"
SR_EMAIL="邮件"
SR_PHONENUMBER="Landline number"
SR_CONTACT_INFO="Contact information"
SR_HOLD_GUARANTEE_INFO="Hold/Guarantee information"
SR_ARRIVAL_INFO="Arrival information"
SR_TRAVEL_INFO="Travel information"
SR_COMPANY="Company (Optional)"
SR_ADDRESS_1="地址 1"
SR_ADDRESS_2="地址 2 (Optional)"
SR_CITY="市"
SR_ZIP="Zip/Postal code (Optional)"
SR_STATE="州/Province (Optional)"
SR_COUNTRY="国家"
SR_TRAVEL_FOR_BUSINESS="Productivity/Business"
SR_TRAVEL_FOR_BUSINESS_DESC="I like to be able to get work done and be productive when I'm on the road"
SR_TRAVEL_FOR_RELAX="Relaxation / Pampering"
SR_TRAVEL_FOR_RELAX_DESC="I like to relax and rejuvenate when I'm away from home."
SR_TRAVEL_FOR_ENTERTAINMENT="Entertainment / Attractions"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="I want to have fun and see the best my destination has to offer."
SR_TRAVEL_FOR_FAMILY="Family"
SR_TRAVEL_FOR_FAMILY_DESC="I am attending a family event or vacationing with my family."
SR_TRAVEL_FOR_HONEYMOON="Honeymoon"
SR_TRAVEL_FOR_HONEYMOON_DESC="I am going to enjoy my honey moon."
SR_COMMENT="Comment"
SR_COMMENT_DESC="Please enter here if you have any comments to us."
SR_TAX="税项"
SR_RULE_RESTRICTION="Only 4 rooms left"
SR_SELECT_TARIFF="选择"
SR_SHOW_MAP="显示地图"
SR_READMORE="Read more"
SR_PRICE_FROM="Price from"
SR_FIELD_RESERVE="Reserve Now"
SR_FIELD_CONDITIONS="Conditions"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Search for your hotel by using the form above"
SR_NO_ROOM_AVAILABLE="Sold out!"
SR_MAX="Max people allowed"
SR_HAS_ROOM_AVAILABLE="Available"
SR_AVAILABILITY="Availability"
SR_AVAILABLE_ROOM_TYPES="Available room types"
SR_VIEW_GALLERY="View gallery"
SR_YOUR_SEARCH_INFORMATION="Your search information"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Checkin:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Checkout:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Total of adults per room:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Total of children per room:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Continue"
SR_EXTRA_PACKAGES="Extra packages"
SR_ROOM_TYPE_NAME="Room type"
SR_ROOM_TYPE_QUANTITY="数量"
SR_ROOM_TYPE_GUEST_PER_ROOM="Guest per room"
SR_NUMBER_OF_NIGHT="Number of nights"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Room & Rate"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Extra packages"
SR_RESERVATION_PROGRESS_GUEST_INFO="Guest information"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Payment information"
SR_RESERVATION_CONFIRMATION="Confirmation"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Finish"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Cheque/Money"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Your selected room quantity exceed the number of available rooms, please <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">click here</a> to go back and make another selection."
SR_CHANGE="Change"
SR_NOTE="Note (Optional)"
SR_MIDDLENAME="Middlename (Optional)"
SR_RESERVATION_PROGRESS_DATES="Dates & Preferences"
SR_ROOM_SELECTION="Room Selection"
SR_ROOM_TYPE_ADULT_PER_ROOM="Adult per room"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Children per room"
SR_ROOM_TYPE_GUEST_NAME="Guest name"
SR_RESERVATION_NOTICE_CONFIRMATION="Please review your reservation details and click on the Finish button to complete your reservation. A confirmation email will be sent to your given email address."
SR_SEARCH_COUPON="优惠券"
SR_MAXIMUM_OCCUPANCY="Maximum occupancy"
SR_OCCUPANCY_ADULT="Adult(s)"
SR_OCCUPANCY_CHILD="Child(ren)"
SR_NIGHTS="%d nights"
SR_NIGHTS_1="%d night"
SR_TOTAL_ROOM_COST_TAX_EXCL="Total room cost (exclude taxes)"
SR_TOTAL_ROOM_COST_TAX_INCL="Total room cost (include taxes)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Total extra cost (exclude taxes)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Total extra cost (include taxes)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Total extra tax"
SR_PRICE_FOR_X_NIGHTS="Price for %d nights"
SR_ROOM_TYPE="Room types"
SR_NUMBER_OF_ROOMS="Number of rooms"
SR_TARIFF_BREAK_DOWN="Rate break down"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Adult number"
SR_SEARCH_CHILDREN_NUMBER="Children number"
SR_NO_TARIFF_AVAILABLE="No available rate"
SR_EMAIL_RESERVATION_COMPLETE="Your reservation is completed"

; Extra
SR_RESERVATION_EXTRA="名称"
SR_RESERVATION_EXTRA_COST="Cost"
SR_RESERVATION_EXTRA_QUANTITY="数量"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="An email contains summary of your reservation could not be sent."

SR_BOOK_NOW="Book now"
SR_TOTAL_PRICE="Total Price"
SR_TAX_7_NOT_INCLUDED="TAX (7%) not included"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Service charge (10.70%) not included"

SR_RESERVATION_NOTE="Enter any information you wish to attach to your reservation. The staff cannot guarantee additional requests or comments. Please avoid the use of special characters."
SR_ASK_FOR_CHECKIN_CHECKOUT="To check for room rates and availability, please enter your check-in and check-out dates in the form below"
SR_GRAND_TOTAL="Grand Total"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Facilities"
SR_CUSTOMFIELD_POLICIES="Policies"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Social networks"
SR_CUSTOMFIELD_GENERAL="General"
SR_CUSTOMFIELD_ACTIVITIES="Activities"
SR_CUSTOMFIELD_SERVICES="Services"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parking"
SR_CUSTOMFIELD_CHECKIN="Checkin"
SR_CUSTOMFIELD_CHECKOUT="Checkout"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Cancellation / Prepayment"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Children and extra beds"
SR_CUSTOMFIELD_PETS="Pets"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Accepted credit cards"
SR_BREAKFAST_INCLUDED="Breakfast included"
SR_BREAKFAST_EXCLUDED="Breakfast not included"
SR_FREE_CANCELLATION="Free cancellation"
SR_NON_REFUNDABLE="Non refundable"
SR_ROOM_OCCUPANCY="Occupancy"
SR_TAXES="税项"
SR_PREPAYMENT="Prepayment"
SR_ROOM_FACILITIES="Room facilities"
SR_ROOM_SIZE="Room size"
SR_BED_SIZE="Bed size"

SR_COUPON_ENTER="Enter coupon code (Optional)"
SR_COUPON_ACCEPTED="Coupon is accepted"
SR_COUPON_REJECTED="Coupon is not valid"
SR_APPLY_COUPON="Apply coupon"

SR_ROOM_AVAILABLE_FROM_TO="We have %s rooms available from %s to %s for your search for %s adults and %s children"
SR_APPLIED_COUPON="Applied coupon"
SR_REMOVE="Remove"
SR_CAN_NOT_REMOVE_COUPON="Can not remove coupon"
SR_AVAILABILITY_CALENDAR="Availability Calendar"
SR_AVAILABILITY_CALENDAR_VIEW="View calendar"

SR_AVAILABILITY_CALENDAR_BUSY="不可用"
SR_FEATURED_ROOM_TYPE="Featured"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Please select at least one room type to proceed."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Invalid. You must book at least %d days and no more than %d days in advance of your arrival. The minimum length of stay is %d days."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Invalid. Check out date must be after check in date."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Invalid. You have to book at least %d days in advance of your arrival."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Invalid. You are not allowed to book more than %d days in advance of your arrival."
SR_NEXT="未来"
SR_BACK="背面"
SR_CUSTOMER_TITLE="Your title (Optional)"
SR_CUSTOMER_TITLE_MR="Mr."
SR_CUSTOMER_TITLE_MRS="Mrs."
SR_CUSTOMER_TITLE_MS="Ms."
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Rate type: Per person per night, please select your room quantity, then provide your occupancy in order to get the exact rate for this room"
SR_ERROR_CHILD_MAX_AGE="Ages must be between"
SR_BOOKING_CONDITIONS="Booking conditions"
SR_PRIVACY_POLICY="隐私规定"
SR_ROOM_COST="Room cost: "
SR_ENHANCE_YOUR_STAY="Enhance your stay"
SR_I_AGREE_WITH="I agree with "
SR_GUEST_INFORMATION="Guest information"
SR_PAYMENT_INFO="Payment information"
SR_GUEST_INFO_STEP_NOTICE="Enter your information and payment method"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Select your room type, review the prices and click Next to continue"
SR_AGE_OF_CHILD_AT_CHECKOUT="Age of child(ren) at checkout"
SR_GUEST_NAME="Guest name"
SR_ROOM="房间"
SR_CHILD="子女"
SR_ADULT="成人"
SR_ROOMTYPE_QUANTITY="数量"
SR_AND="和"
SR_STEP_ROOM_AND_RATE="Room & Rates"
SR_STEP_GUEST_INFO_AND_PAYMENT="Guest info & Payment"
SR_STEP_CONFIRMATION="Confirmation"
SR_PAYMENT_METHOD_PAYLATER="Pay Later"
SR_PAYMENT_METHOD_BANKWIRE="Bank Wire"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Please keep in mind that it may take a few days for the payment to be clear. In the wire transfer payment notes, please put your reservation code to help us process your reservation faster."
SR_PROCESSING="处理中..."

; Since 0.6.0
SR_STAR="star"
SR_STARS="stars"
JGLOBAL_FIELDSET_PUBLISHING="Publishing"
JTOOLBAR_APPLY="儲存"
JTOOLBAR_ARCHIVE="Archive"
JTOOLBAR_ASSIGN="Assign"
JTOOLBAR_BACK="背面"
JTOOLBAR_BATCH="Batch"
JTOOLBAR_CANCEL="Cancel"
JTOOLBAR_CHECKIN="Check In"
JTOOLBAR_CLOSE="Close"
JTOOLBAR_DEFAULT="默认值"
JTOOLBAR_DELETE="刪除"
JTOOLBAR_DISABLE="Disable"
JTOOLBAR_DUPLICATE="Duplicate"
JTOOLBAR_EDIT="Edit"
JTOOLBAR_EDIT_CSS="Edit CSS"
JTOOLBAR_EDIT_HTML="Edit HTML"
JTOOLBAR_EMPTY_TRASH="Empty trash"
JTOOLBAR_ENABLE="Enable"
JTOOLBAR_EXPORT="Export"
JTOOLBAR_HELP="Help"
JTOOLBAR_INSTALL="Install"
JTOOLBAR_NEW="New"
JTOOLBAR_OPTIONS="Options"
JTOOLBAR_PUBLISH="发布"
JTOOLBAR_PURGE_CACHE="Purge Cache"
JTOOLBAR_REBUILD="Rebuild"
JTOOLBAR_REFRESH_CACHE="Refresh Cache"
JTOOLBAR_REMOVE="Remove"
JTOOLBAR_SAVE="儲存和关闭"
JTOOLBAR_SAVE_AND_NEW="Save &amp; New"
JTOOLBAR_SAVE_AS_COPY="Save as Copy"
JTOOLBAR_UNARCHIVE="Unarchive"
JTOOLBAR_UNINSTALL="Uninstall"
JTOOLBAR_UNPUBLISH="Unpublish"
JTOOLBAR_UPLOAD="Upload"
JTOOLBAR_TRASH="垃圾桶"
JTOOLBAR_UNTRASH="Untrash"
JTOOLBAR_REBUILD_SUCCESS="Successfully rebuilt"
JTOOLBAR_VERSIONS="Versions"
SR_SEARCH_LOCATION="Location"
SR_DASHBOARD="Dashboard"
SR_PHONE="电话"
SR_FAX="传真"
SR_DEPOSIT_AMOUNT="Deposit amount"
SR_TOTAL_ROOM_TAX="Total room tax"

; Since 0.7.0
SR_STANDARD_TARIFF="Standard rate"
SR_SEARCH_RESET="重设"
SR_SELECT_A_TARIFF="Select a rate"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="We have no availability for this room type between %s and %s. <a href="_QQ_"%s"_QQ_">Click here to start over by changing your dates.</a>"
SR_SELECT_A_TARIFF_FIRST="Please select a rate first."
SR_SMOKING="Smoking options"
SR_SMOKING_ROOM="Smoking room"
SR_NON_SMOKING_ROOM="Non smoking room"
SR_SELECT_ROOM_QUANTITY="%s rooms"
SR_SELECT_ROOM_QUANTITY_1="1 room"
SR_SELECT_ADULT_QUANTITY="%s 成人"
SR_SELECT_ADULT_QUANTITY_1="1 成人"
SR_SELECT_CHILD_QUANTITY="%s 子女"
SR_SELECT_CHILD_QUANTITY_1="1 子女"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s nights"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 night"
SR_TARIFF_SUFFIX_PER_ROOM="/ room "
SR_CHILD_AGE_SELECTION="%s years old"
SR_CHILD_AGE_SELECTION_1="%s year old"
SR_CHILD_AGE_SELECTION_JS="years old"
SR_CHILD_AGE_SELECTION_1_JS="year old"
SR_EMAIL_CONFIRM_RESERVATION="Reservation confirmation"
SR_EMAIL_REF_ID="Reference ID: %s"
SR_EMAIL_GREETING_NAME="Dear %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Thank you for your reservation at %s. Should you have any further questions, please do not hesitate to contact us at any time.</p><p>We are pleased to confirm your reservation as follows:</p>"
SR_EMAIL_CHECKIN="Checkin: "
SR_EMAIL_CHECKOUT="Checkout: "
SR_EMAIL_PAYMENT_METHOD="Payment method: "
SR_EMAIL_EMAIL="邮件: "
SR_EMAIL_NUM_NIGHT="Number of nights: "
SR_EMAIL_SUB_TOTAL="Room cost (excl tax): "
SR_EMAIL_TAX="Room cost tax: "
SR_EMAIL_GRAND_TOTAL="Grand total: "
SR_EMAIL_DEPOSIT_AMOUNT="Deposit Amount: "
SR_EMAIL_EXTRAS_ITEMS="Extras items: "
SR_EMAIL_CONNECT_WITH_US="Connect With Us: "
SR_EMAIL_CONTACT_INFO="Contact Info: "
SR_EMAIL_ADDRESS="地址: "
SR_EMAIL_PHONE="电话: "
SR_EMAIL_OTHER_INFO="Other info"
SR_EMAIL_EXTRA_QUANTITY="数量: "
SR_EMAIL_EXTRA_PRICE="Price: "
SR_EMAIL_NOTE="Note: "
SR_EMAIL_BANKWIRE_INFO="Bankwire info"
SR_EMAIL_NOTIFICATION_RESERVATION="Reservation Notification"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>A new reservation has been made, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Hello,"
SR_EMAIL_EXTRA_TAX_EXCL="Extra cost (exl tax): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Extra tax: "
SR_VAT_NUMBER="VAT Number (Optional)"
SR_PASSWORD="密码"
SR_USERNAME="用户名字"
SR_WE_HAVE_X_ROOM_LEFT="We have %s rooms left"
SR_WE_HAVE_X_ROOM_LEFT_1="We have %s room left!"
SR_ONLY_1_LEFT="Last chance! Only 1 room left"
SR_ONLY_2_LEFT="Only 2 rooms left"
SR_ONLY_3_LEFT="Only 3 rooms left"
SR_ONLY_4_LEFT="Only 4 rooms left"
SR_ONLY_5_LEFT="Only 5 rooms left"
SR_ONLY_6_LEFT="Only 6 rooms left"
SR_ONLY_7_LEFT="Only 7 rooms left"
SR_ONLY_8_LEFT="Only 8 rooms left"
SR_ONLY_9_LEFT="Only 9 rooms left"
SR_ONLY_10_LEFT="Only 10 rooms left"
SR_ONLY_11_LEFT="Only 11 rooms left"
SR_ONLY_12_LEFT="Only 12 rooms left"
SR_ONLY_13_LEFT="Only 13 rooms left"
SR_ONLY_14_LEFT="Only 14 rooms left"
SR_ONLY_15_LEFT="Only 15 rooms left"
SR_ONLY_16_LEFT="Only 16 rooms left"
SR_ONLY_17_LEFT="Only 17 rooms left"
SR_ONLY_18_LEFT="Only 18 rooms left"
SR_ONLY_19_LEFT="Only 19 rooms left"
SR_ONLY_20_LEFT="Only 20 rooms left"
SR_SHOW_MORE_INFO="更多信息"
SR_HIDE_MORE_INFO="隐藏信息"
SR_AVAILABILITY_CALENDAR_CLOSE="Close calendar"
SR_STARTING_FROM="Starting from"
SR_SELECT="选择"
SU="周日"
MO="周一"
TU="周二"
WE="周三"
TH="周四"
FR="周五"
SA="周六"
SR_USERNAME_EXISTS="Username exists. Please choose another one."
JFIELD_METADATA_ROBOTS_DESC="Robots Instructions"
JFIELD_METADATA_ROBOTS_LABEL="Robots"
JFIELD_XREFERENCE_DESC="An optional field to allow this record to be cross-referenced to an external data system if required."
JFIELD_XREFERENCE_LABEL="External Reference"
JCLEAR="Clear"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Register with us for future convenience: fast and easy booking. Please enter your desired username and password in the following fields."
SR_PRICE_IS_FOR_X_NIGHT="Price is for %s nights"
SR_PRICE_IS_FOR_X_NIGHT_1="Price is for %s night"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="We found no matched rooms for your search from %s to %s, please adjust your booking dates or room options."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="We found %s rooms that matched your search from %s to %s for %s adult(s) and %s child(ren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="We have less than your number of requested rooms, but our current available rooms (%s) could satisfy your search from %s to %s for %s adult(s) and %s child(ren) if you select a different number of rooms."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Sorry but our rooms are not available for your search from %s to %s for %s adult(s) and %s child(ren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="We found %s rooms that matched your search from %s to %s."
SR_MOBILEPHONE="Mobile phone"
SR_RESERVATION_SAVE_ERROR="Your reservation could not be saved, please try again."
SR_EMAIL_PAYMENT_METHOD_INFO="Payment information"
SR_RESERVATION_COMPLETE="<h3>Thank you %s! Your reservation number %s has been completed successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_EXTRA_PRICE_ADULT="For adult"
SR_EXTRA_PRICE_CHILD="For child"
SR_EXTRA_MORE_DETAILS="细节"
SR_EXTRA_PRICE="价钱"
SR_TOTAL_DISCOUNT="Total discount"
SR_EMAIL_TOTAL_DISCOUNT="Total discount: "
SR_ROOM_X_COST="Room cost"
SR_ROOM_X_DISCOUNTED_AMOUNT="Room discounted amount"
SR_ROOM_X_DISCOUNTED_COST="Room cost after discounted"
SR_VIEW_TARIFF_BREAKDOWN="细节"
SR_SHOW_TARIFFS="Rates"
SR_HIDE_TARIFFS="Rates"
SR_CONFIRMATION_ROOM_DETAILS="细节"
SR_CONFIRMATION_GUEST_NAME="Guest name"
SR_CONFIRMATION_ADULT_NUMBER="Adult number"
SR_CONFIRMATION_CHILD_NUMBER="Child number"
SR_CONFIRMATION_FULLNAME="Your full name: "
SR_EXTRA="额外"
SR_EXTRA_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Per room"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Per booking per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Per booking per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Per room per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Per room per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Per person per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Per room per person per night"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Price for adult"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Enter the price for adult of this Extra/Service. The currency of Property will apply here."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Price for child"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Enter the price for child of this Extra/Service. The currency of Property will apply here."

; Since 0.9.0
SR_DAYS="%d 天"
SR_DAYS_1="%d 天"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s 天"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1天"
SR_LENGTH_OF_STAY="Length of stay"
SR_EMAIL_LENGTH_OF_STAY="Length of stay: "
SR_PRICE_IS_FOR_X_DAY="Price is for %s days"
SR_PRICE_IS_FOR_X_DAY_1="Price is for %s day"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Room single supplement"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Room cost after single supplement"
JLIB_APPLICATION_SAVE_SUCCESS="Item successfully saved."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Item successfully submitted."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="New reservation %s from %s %s"
SR_RESERVATION_CODE="Code"
SR_RESERVATION_INVOICE="Invoice"
SR_RESERVATION_CHECKIN="Checkin"
SR_RESERVATION_CHECKOUT="Checkout"
SR_RESERVATION_ASSET="Property"
SR_RESERVATION_TOTAL_PAID="Total paid"
SR_DESCRIPTION="Description"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Booking number"
SR_CONFIRMATION_EMAIL="邮件: "
SR_CONFIRMATION_BOOKING_DETAILS="Booking details"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s rooms"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s room"
SR_CONFIRMATION_CHECKIN="Check-in"
SR_CONFIRMATION_CHECKOUT="Check-out"
SR_CONFIRMATION_TOTAL_PRICE="Total price"
SR_CONFIRMATION_ASSET_NAME="名称"
SR_CONFIRMATION_ASSET_ADDRESS="地址"
SR_CONFIRMATION_ASSET_EMAIL="邮件"
SR_CONFIRMATION_ASSET_PHONE="电话"
SR_ASSET_INFO="Hotel information"
SR_BOOKING_INFO="Your booking information"
SR_BOOKING_CONFIRMATION_ADULTS="%s 成人"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s 成人"
SR_BOOKING_CONFIRMATION_CHILDREN="%s 子女"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s 子女"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Guest full name"
SR_BOOKING_CONFIRMATION_SMOKING="Smoking"
SR_BOOKING_CONFIRMATION_ROOM_COST="Room cost"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Room details"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Your dates appear to be in the past"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Thank you %s! Your reservation number %s has been completed successfully but the payment is not yet completed.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Invalid. Minimum length of stay is %d days."
SR_USER_INFO_USERNAME_PLURAL="You have logged with username: %s"

; Since 0.9.4
SR_COUPON_CHECK="校验"
SR_RESERVATION_ORIGIN_DIRECT="Direct"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="This room type requires at least %d people and maximum %d people."
SR_RESERVE="Reserve"
SR_SEARCH_ROOMS="Rooms"
SR_SEARCH_ROOM="房间"
SR_SEARCH_ROOM_ADULTS="成人"
SR_SEARCH_ROOM_CHILDREN="子女"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Reservation has been cancelled"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Reservation %s from %s %s has been cancelled"
SR_EMAIL_GREETING_TEXT_CANCELLED="Your reservation %s at %s has been cancelled."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Reservation %s has been cancelled, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_COUPON_CODE="优惠券代码: "

; Since 1.8.0
SR_FULLNAME="Full name"
SR_MESSAGE="Message"
SR_SEND_MESSAGE="Send message"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Booking inquiry from %s for %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Thank you, your inquiry has been sent successfully. We will get back to you as soon as possible."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per booking per stay (night or day)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Per room per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per room per person per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Percentage of room's daily rate"
SR_EXTRA_PRICE_DAILY_RATE="%s costs %d percent of room daily rate per stay"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Your session is expiring soon."
SR_WARNING_SESSION_EXPIRED="Your session has been expired, <a href="_QQ_"#"_QQ_">click here</a> to start a new session."
SR_WEBSITE="站点"
SR_YOUR_STAY="Your stay"
SR_AVAILABLE_ROOMS="Available room"
SR_MAX_GUESTS="Max guests"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Book Now"
SR_TARIFF_PACKAGE_PER_ROOM="Package per room"
SR_TARIFF_PACKAGE_PER_PERSON="Package per person"
SR_TARIFF_PER_ROOM_PER_NIGHT="Rate per room per stay"
SR_TARIFF_PER_PERSON_PER_NIGHT="Rate per person per stay"
SR_ROOM_X_EXTRA_AMOUNT="Room extras item cost"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Your reservation has been amended successfully"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Send outgoing emails?"
SR_FIELD_COUNTRY_SELECT=" - Select Country - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Process online payment?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Your reservation has been added successfully"
SR_SELECT_BED_QUANTITY="%s beds"
SR_SELECT_BED_QUANTITY_1="1 bed"
SR_BED="Bed"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Thank you %s! Your reservation request %s has been sent to us, we will get back to you as soon as possible to confirm this reservation.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Your reservation number %s has been cancelled.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Tourist tax"
SR_EMAIL_TOURIST_TAX="Tourist tax: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount: "
SR_CONFIRMATION_GUEST_NUMBER="Guest number"
SR_SELECT_GUEST_QUANTITY="%s guests"
SR_SELECT_GUEST_QUANTITY_1="1 guest"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Rooms and rates information"
SR_CONFIRMATION_PAYMENT_METHOD="Payment method: "
SR_CONFIRMATION_MOBILE="Mobile phone: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="未付"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="完成"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="取消"
SR_RESERVATION_PAYMENT_STATUS_PENDING="有待"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ bed "
SR_WE_HAVE_X_BED_LEFT="We have %s beds left"
SR_WE_HAVE_X_BED_LEFT_1="We have %s bed left!"
SR_ONLY_1_LEFT_BED="Last chance! Only 1 bed left"
SR_ONLY_2_LEFT_BED="Only 2 beds left"
SR_ONLY_3_LEFT_BED="Only 3 beds left"
SR_ONLY_4_LEFT_BED="Only 4 beds left"
SR_ONLY_5_LEFT_BED="Only 5 beds left"
SR_ONLY_6_LEFT_BED="Only 6 beds left"
SR_ONLY_7_LEFT_BED="Only 7 beds left"
SR_ONLY_8_LEFT_BED="Only 8 beds left"
SR_ONLY_9_LEFT_BED="Only 9 beds left"
SR_ONLY_10_LEFT_BED="Only 10 beds left"
SR_ONLY_11_LEFT_BED="Only 11 beds left"
SR_ONLY_12_LEFT_BED="Only 12 beds left"
SR_ONLY_13_LEFT_BED="Only 13 beds left"
SR_ONLY_14_LEFT_BED="Only 14 beds left"
SR_ONLY_15_LEFT_BED="Only 15 beds left"
SR_ONLY_16_LEFT_BED="Only 16 beds left"
SR_ONLY_17_LEFT_BED="Only 17 beds left"
SR_ONLY_18_LEFT_BED="Only 18 beds left"
SR_ONLY_19_LEFT_BED="Only 19 beds left"
SR_ONLY_20_LEFT_BED="Only 20 beds left"
SR_DUE_AMOUNT="Total due amount"
SR_EMAIL_DUE_AMOUNT="Due Amount: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Your reservation has been cancelled."
SR_CHECKIN_PLACEHOLDER="Your check-in date"
SR_CHECKOUT_PLACEHOLDER="Your check-out date"
SR_CHOOSE_ANOTHER_CHECKIN="Please choose another check-in date"
SR_WARNING_SESSION_RENEW="Renew"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Enter your email"
SR_ENTER_YOUR_RESERVATION_CODE="Enter your reservation code"
SR_FIND_RESERVATION="Find reservation"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reservation code %s found."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="We can not find any reservations with your given information, please recheck your information and try again."
SR_RESERVATION_STATUS_FORMAT="Reservation status: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Show property's reservation tracking form"
SR_TRACKING_VIEW_DEFAULT_DESC="Allow guests check their reservation using reservation code + email address"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ 1 person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s people "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/ja-JP/ja-JP.com_solidres.ini000060400000072013150751740420013317 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Search criteria"
SR_SEARCH_FIELD_COUNTRY="国"
SR_SEARCH_FIELD_STATE="州・都道府県"
SR_SEARCH_FIELD_CITY="市区町村"
SR_SEARCH_CHECKIN_DATE="Check-in date"
SR_SEARCH_CHECKOUT_DATE="Check-out date"
SR_SEARCH="検索"
SR_RESET="リセット"
SR_REMEMBER_ME="Remember me"
SR_FORGOT_YOUR_PASSWORD="Forgot your password"
SR_FORGOT_YOUR_USERNAME="Forgot your username"
SR_REGISTER="Register"
SR_SELECTED_RESERVATION_ASSET="Selected hotel"
SR_STAYING_INFO="Staying information"
SR_NUMBER_OF_ROOM="客室"
SR_GUEST_PER_ROOM="Guest per room"
SR_ROOM_RATE_INFO="Room rate information"
SR_ROOM_DESCRIPTION="Room description"
SR_ROOM_RATE_TYPE="Room rate type"
SR_GUEST_INFO="Guest information"
SR_FIRSTNAME="名"
SR_LASTNAME="姓"
SR_EMAIL="メール"
SR_PHONENUMBER="Landline number"
SR_CONTACT_INFO="連絡先情報"
SR_HOLD_GUARANTEE_INFO="Hold/Guarantee information"
SR_ARRIVAL_INFO="Arrival information"
SR_TRAVEL_INFO="Travel information"
SR_COMPANY="会社 (Optional)"
SR_ADDRESS_1="住所 1"
SR_ADDRESS_2="住所 2 (Optional)"
SR_CITY="市区町村"
SR_ZIP="郵便番号 (Optional)"
SR_STATE="州・都道府県/Province (Optional)"
SR_COUNTRY="国"
SR_TRAVEL_FOR_BUSINESS="Productivity/Business"
SR_TRAVEL_FOR_BUSINESS_DESC="I like to be able to get work done and be productive when I'm on the road"
SR_TRAVEL_FOR_RELAX="Relaxation / Pampering"
SR_TRAVEL_FOR_RELAX_DESC="I like to relax and rejuvenate when I'm away from home."
SR_TRAVEL_FOR_ENTERTAINMENT="Entertainment / Attractions"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="I want to have fun and see the best my destination has to offer."
SR_TRAVEL_FOR_FAMILY="Family"
SR_TRAVEL_FOR_FAMILY_DESC="I am attending a family event or vacationing with my family."
SR_TRAVEL_FOR_HONEYMOON="Honeymoon"
SR_TRAVEL_FOR_HONEYMOON_DESC="I am going to enjoy my honey moon."
SR_COMMENT="Comment"
SR_COMMENT_DESC="Please enter here if you have any comments to us."
SR_TAX="税"
SR_RULE_RESTRICTION="Only 4 rooms left"
SR_SELECT_TARIFF="選択"
SR_SHOW_MAP="地図を表示"
SR_READMORE="Read more"
SR_PRICE_FROM="Price from"
SR_FIELD_RESERVE="Reserve Now"
SR_FIELD_CONDITIONS="Conditions"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Search for your hotel by using the form above"
SR_NO_ROOM_AVAILABLE="売り切れ"
SR_MAX="Max people allowed"
SR_HAS_ROOM_AVAILABLE="Available"
SR_AVAILABILITY="Availability"
SR_AVAILABLE_ROOM_TYPES="Available room types"
SR_VIEW_GALLERY="View gallery"
SR_YOUR_SEARCH_INFORMATION="Your search information"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="チェックイン:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="チェックアウト:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Total of adults per room:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Total of children per room:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Continue"
SR_EXTRA_PACKAGES="Extra packages"
SR_ROOM_TYPE_NAME="客室タイプ"
SR_ROOM_TYPE_QUANTITY="数"
SR_ROOM_TYPE_GUEST_PER_ROOM="Guest per room"
SR_NUMBER_OF_NIGHT="Number of nights"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="客室と料金"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Extra packages"
SR_RESERVATION_PROGRESS_GUEST_INFO="Guest information"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="支払情報"
SR_RESERVATION_CONFIRMATION="内容確認"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="完了"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Cheque/Money"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Your selected room quantity exceed the number of available rooms, please <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">click here</a> to go back and make another selection."
SR_CHANGE="Change"
SR_NOTE="Note (Optional)"
SR_MIDDLENAME="Middlename (Optional)"
SR_RESERVATION_PROGRESS_DATES="Dates & Preferences"
SR_ROOM_SELECTION="Room Selection"
SR_ROOM_TYPE_ADULT_PER_ROOM="Adult per room"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Children per room"
SR_ROOM_TYPE_GUEST_NAME="お客様の氏名"
SR_RESERVATION_NOTICE_CONFIRMATION="Please review your reservation details and click on the Finish button to complete your reservation. A confirmation email will be sent to your given email address."
SR_SEARCH_COUPON="クーポン"
SR_MAXIMUM_OCCUPANCY="Maximum occupancy"
SR_OCCUPANCY_ADULT="大人の人数"
SR_OCCUPANCY_CHILD="子供の人数"
SR_NIGHTS="%d nights"
SR_NIGHTS_1="%d 泊"
SR_TOTAL_ROOM_COST_TAX_EXCL="Total room cost (exclude taxes)"
SR_TOTAL_ROOM_COST_TAX_INCL="Total room cost (include taxes)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Total extra cost (exclude taxes)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Total extra cost (include taxes)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Total extra tax"
SR_PRICE_FOR_X_NIGHTS="Price for %d nights"
SR_ROOM_TYPE="客室タイプ"
SR_NUMBER_OF_ROOMS="Number of rooms"
SR_TARIFF_BREAK_DOWN="Rate break down"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="大人の人数"
SR_SEARCH_CHILDREN_NUMBER="子供の人数"
SR_NO_TARIFF_AVAILABLE="No available rate"
SR_EMAIL_RESERVATION_COMPLETE="Your reservation is completed"

; Extra
SR_RESERVATION_EXTRA="名前"
SR_RESERVATION_EXTRA_COST="Cost"
SR_RESERVATION_EXTRA_QUANTITY="数"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="An email contains summary of your reservation could not be sent."

SR_BOOK_NOW="Book now"
SR_TOTAL_PRICE="合計金額"
SR_TAX_7_NOT_INCLUDED="TAX (7%) not included"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Service charge (10.70%) not included"

SR_RESERVATION_NOTE="Enter any information you wish to attach to your reservation. The staff cannot guarantee additional requests or comments. Please avoid the use of special characters."
SR_ASK_FOR_CHECKIN_CHECKOUT="To check for room rates and availability, please enter your check-in and check-out dates in the form below"
SR_GRAND_TOTAL="Grand Total"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="施設"
SR_CUSTOMFIELD_POLICIES="Policies"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Social networks"
SR_CUSTOMFIELD_GENERAL="General"
SR_CUSTOMFIELD_ACTIVITIES="Activities"
SR_CUSTOMFIELD_SERVICES="Services"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parking"
SR_CUSTOMFIELD_CHECKIN="チェックイン"
SR_CUSTOMFIELD_CHECKOUT="チェックアウト"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Cancellation / Prepayment"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Children and extra beds"
SR_CUSTOMFIELD_PETS="Pets"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Accepted credit cards"
SR_BREAKFAST_INCLUDED="Breakfast included"
SR_BREAKFAST_EXCLUDED="Breakfast not included"
SR_FREE_CANCELLATION="Free cancellation"
SR_NON_REFUNDABLE="Non refundable"
SR_ROOM_OCCUPANCY="Occupancy"
SR_TAXES="税"
SR_PREPAYMENT="Prepayment"
SR_ROOM_FACILITIES="Room facilities"
SR_ROOM_SIZE="Room size"
SR_BED_SIZE="Bed size"

SR_COUPON_ENTER="Enter coupon code (Optional)"
SR_COUPON_ACCEPTED="Coupon is accepted"
SR_COUPON_REJECTED="Coupon is not valid"
SR_APPLY_COUPON="クーポンを適用"

SR_ROOM_AVAILABLE_FROM_TO="We have %s rooms available from %s to %s for your search for %s adults and %s children"
SR_APPLIED_COUPON="Applied coupon"
SR_REMOVE="削除"
SR_CAN_NOT_REMOVE_COUPON="クーポンを削除できません"
SR_AVAILABILITY_CALENDAR="Availability Calendar"
SR_AVAILABILITY_CALENDAR_VIEW="カレンダーを表示"

SR_AVAILABILITY_CALENDAR_BUSY="利用できません"
SR_FEATURED_ROOM_TYPE="注目"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Please select at least one room type to proceed."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Invalid. You must book at least %d days and no more than %d days in advance of your arrival. The minimum length of stay is %d days."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Invalid. Check out date must be after check in date."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Invalid. You have to book at least %d days in advance of your arrival."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Invalid. You are not allowed to book more than %d days in advance of your arrival."
SR_NEXT="次へ"
SR_BACK="戻る"
SR_CUSTOMER_TITLE="Your title (Optional)"
SR_CUSTOMER_TITLE_MR="Mr."
SR_CUSTOMER_TITLE_MRS="Mrs."
SR_CUSTOMER_TITLE_MS="Ms."
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Rate type: Per person per night, please select your room quantity, then provide your occupancy in order to get the exact rate for this room"
SR_ERROR_CHILD_MAX_AGE="Ages must be between"
SR_BOOKING_CONDITIONS="Booking conditions"
SR_PRIVACY_POLICY="個人情報保護方針"
SR_ROOM_COST="客室料金: "
SR_ENHANCE_YOUR_STAY="Enhance your stay"
SR_I_AGREE_WITH="I agree with "
SR_GUEST_INFORMATION="Guest information"
SR_PAYMENT_INFO="支払情報"
SR_GUEST_INFO_STEP_NOTICE="Enter your information and payment method"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Select your room type, review the prices and click Next to continue"
SR_AGE_OF_CHILD_AT_CHECKOUT="Age of child(ren) at checkout"
SR_GUEST_NAME="お客様の氏名"
SR_ROOM="部屋"
SR_CHILD="子供"
SR_ADULT="大人"
SR_ROOMTYPE_QUANTITY="数"
SR_AND="と"
SR_STEP_ROOM_AND_RATE="客室と料金"
SR_STEP_GUEST_INFO_AND_PAYMENT="Guest info & Payment"
SR_STEP_CONFIRMATION="内容確認"
SR_PAYMENT_METHOD_PAYLATER="Pay Later"
SR_PAYMENT_METHOD_BANKWIRE="Bank Wire"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Please keep in mind that it may take a few days for the payment to be clear. In the wire transfer payment notes, please put your reservation code to help us process your reservation faster."
SR_PROCESSING="処理中…"

; Since 0.6.0
SR_STAR="star"
SR_STARS="stars"
JGLOBAL_FIELDSET_PUBLISHING="Publishing"
JTOOLBAR_APPLY="保存"
JTOOLBAR_ARCHIVE="Archive"
JTOOLBAR_ASSIGN="Assign"
JTOOLBAR_BACK="戻る"
JTOOLBAR_BATCH="Batch"
JTOOLBAR_CANCEL="Cancel"
JTOOLBAR_CHECKIN="Check In"
JTOOLBAR_CLOSE="Close"
JTOOLBAR_DEFAULT="デフォルト"
JTOOLBAR_DELETE="削除"
JTOOLBAR_DISABLE="無効化"
JTOOLBAR_DUPLICATE="Duplicate"
JTOOLBAR_EDIT="編集"
JTOOLBAR_EDIT_CSS="Edit CSS"
JTOOLBAR_EDIT_HTML="Edit HTML"
JTOOLBAR_EMPTY_TRASH="Empty trash"
JTOOLBAR_ENABLE="有効化"
JTOOLBAR_EXPORT="Export"
JTOOLBAR_HELP="Help"
JTOOLBAR_INSTALL="Install"
JTOOLBAR_NEW="新規"
JTOOLBAR_OPTIONS="Options"
JTOOLBAR_PUBLISH="公開"
JTOOLBAR_PURGE_CACHE="Purge Cache"
JTOOLBAR_REBUILD="Rebuild"
JTOOLBAR_REFRESH_CACHE="Refresh Cache"
JTOOLBAR_REMOVE="削除"
JTOOLBAR_SAVE="保存 &amp; Close"
JTOOLBAR_SAVE_AND_NEW="保存 &amp; 新規"
JTOOLBAR_SAVE_AS_COPY="Save as Copy"
JTOOLBAR_UNARCHIVE="Unarchive"
JTOOLBAR_UNINSTALL="Uninstall"
JTOOLBAR_UNPUBLISH="Unpublish"
JTOOLBAR_UPLOAD="Upload"
JTOOLBAR_TRASH="ゴミ箱"
JTOOLBAR_UNTRASH="Untrash"
JTOOLBAR_REBUILD_SUCCESS="Successfully rebuilt"
JTOOLBAR_VERSIONS="Versions"
SR_SEARCH_LOCATION="Location"
SR_DASHBOARD="Dashboard"
SR_PHONE="電話番号"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Deposit amount"
SR_TOTAL_ROOM_TAX="Total room tax"

; Since 0.7.0
SR_STANDARD_TARIFF="標準料金"
SR_SEARCH_RESET="リセット"
SR_SELECT_A_TARIFF="Select a rate"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="We have no availability for this room type between %s and %s. <a href="_QQ_"%s"_QQ_">Click here to start over by changing your dates.</a>"
SR_SELECT_A_TARIFF_FIRST="Please select a rate first."
SR_SMOKING="Smoking options"
SR_SMOKING_ROOM="Smoking room"
SR_NON_SMOKING_ROOM="禁煙ルーム"
SR_SELECT_ROOM_QUANTITY="%s 部屋"
SR_SELECT_ROOM_QUANTITY_1="1 部屋"
SR_SELECT_ADULT_QUANTITY="%s 大人"
SR_SELECT_ADULT_QUANTITY_1="大人1名"
SR_SELECT_CHILD_QUANTITY="%s 子供"
SR_SELECT_CHILD_QUANTITY_1="子供1名"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s nights"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 night"
SR_TARIFF_SUFFIX_PER_ROOM="/ 1部屋 "
SR_CHILD_AGE_SELECTION="%s 歳"
SR_CHILD_AGE_SELECTION_1="%s 歳"
SR_CHILD_AGE_SELECTION_JS="歳"
SR_CHILD_AGE_SELECTION_1_JS="歳"
SR_EMAIL_CONFIRM_RESERVATION="Reservation confirmation"
SR_EMAIL_REF_ID="Reference ID: %s"
SR_EMAIL_GREETING_NAME="Dear %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Thank you for your reservation at %s. Should you have any further information, please do not hesitate to contact us at any time.</p><p>We are pleased to confirm your reservation as follows:</p>"
SR_EMAIL_CHECKIN="チェックイン: "
SR_EMAIL_CHECKOUT="チェックアウト: "
SR_EMAIL_PAYMENT_METHOD="Payment method: "
SR_EMAIL_EMAIL="メール: "
SR_EMAIL_NUM_NIGHT="Number of nights: "
SR_EMAIL_SUB_TOTAL="客室料金 (税抜): "
SR_EMAIL_TAX="客室料金の税金: "
SR_EMAIL_GRAND_TOTAL="Grand total: "
SR_EMAIL_DEPOSIT_AMOUNT="Deposit Amount: "
SR_EMAIL_EXTRAS_ITEMS="Extras items: "
SR_EMAIL_CONNECT_WITH_US="Connect With Us: "
SR_EMAIL_CONTACT_INFO="連絡先情報: "
SR_EMAIL_ADDRESS="住所: "
SR_EMAIL_PHONE="電話番号: "
SR_EMAIL_OTHER_INFO="Other info"
SR_EMAIL_EXTRA_QUANTITY="数: "
SR_EMAIL_EXTRA_PRICE="価格: "
SR_EMAIL_NOTE="Note: "
SR_EMAIL_BANKWIRE_INFO="Bankwire info"
SR_EMAIL_NOTIFICATION_RESERVATION="Reservation Notification"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>A new reservation has been made, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_GREETING_NAME_OWNER="こんにちは。"
SR_EMAIL_EXTRA_TAX_EXCL="追加料金 (税抜): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Extra tax: "
SR_VAT_NUMBER="VAT (付加価値税) 番号 (Optional)"
SR_PASSWORD="パスワード"
SR_USERNAME="ユーザー名"
SR_WE_HAVE_X_ROOM_LEFT="We have %s rooms left"
SR_WE_HAVE_X_ROOM_LEFT_1="We have %s room left!"
SR_ONLY_1_LEFT="最後のチャンス ! 残り1室です"
SR_ONLY_2_LEFT="Only 2 rooms left"
SR_ONLY_3_LEFT="Only 3 rooms left"
SR_ONLY_4_LEFT="Only 4 rooms left"
SR_ONLY_5_LEFT="Only 5 rooms left"
SR_ONLY_6_LEFT="Only 6 rooms left"
SR_ONLY_7_LEFT="Only 7 rooms left"
SR_ONLY_8_LEFT="Only 8 rooms left"
SR_ONLY_9_LEFT="Only 9 rooms left"
SR_ONLY_10_LEFT="Only 10 rooms left"
SR_ONLY_11_LEFT="Only 11 rooms left"
SR_ONLY_12_LEFT="Only 12 rooms left"
SR_ONLY_13_LEFT="Only 13 rooms left"
SR_ONLY_14_LEFT="Only 14 rooms left"
SR_ONLY_15_LEFT="Only 15 rooms left"
SR_ONLY_16_LEFT="Only 16 rooms left"
SR_ONLY_17_LEFT="Only 17 rooms left"
SR_ONLY_18_LEFT="Only 18 rooms left"
SR_ONLY_19_LEFT="Only 19 rooms left"
SR_ONLY_20_LEFT="Only 20 rooms left"
SR_SHOW_MORE_INFO="詳細情報"
SR_HIDE_MORE_INFO="情報を隠す"
SR_AVAILABILITY_CALENDAR_CLOSE="カレンダーを閉じる"
SR_STARTING_FROM="Starting from"
SR_SELECT="選択"
SU="日"
MO="月"
TU="火"
WE="水"
TH="木"
FR="金"
SA="土"
SR_USERNAME_EXISTS="Username exists. Please choose another one."
JFIELD_METADATA_ROBOTS_DESC="Robots Instructions"
JFIELD_METADATA_ROBOTS_LABEL="ロボット"
JFIELD_XREFERENCE_DESC="An optional field to allow this record to be cross-referenced to an external data system if required."
JFIELD_XREFERENCE_LABEL="External Reference"
JCLEAR="Clear"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Register with us for future convenience: fast and easy booking. Please enter your desired username and password in the following fields."
SR_PRICE_IS_FOR_X_NIGHT="Price is for %s nights"
SR_PRICE_IS_FOR_X_NIGHT_1="Price is for %s night"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="We found no matched rooms for your search from %s to %s, please adjust your booking dates or room options."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="We found %s rooms that matched your search from %s to %s for %s adult(s) and %s child(ren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="We have less than your number of requested rooms, but our current available rooms (%s) could satisfy your search from %s to %s for %s adult(s) and %s child(ren) if you select a different number of rooms."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Sorry but our rooms are not available for your search from %s to %s for %s adult(s) and %s child(ren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="We found %s rooms that matched your search from %s to %s."
SR_MOBILEPHONE="携帯電話"
SR_RESERVATION_SAVE_ERROR="Your reservation could not be saved, please try again."
SR_EMAIL_PAYMENT_METHOD_INFO="支払情報"
SR_RESERVATION_COMPLETE="<h3>Thank you %s! Your reservation number %s has been completed successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_EXTRA_PRICE_ADULT="大人用"
SR_EXTRA_PRICE_CHILD="子供用"
SR_EXTRA_MORE_DETAILS="説明"
SR_EXTRA_PRICE="価格"
SR_TOTAL_DISCOUNT="割引合計"
SR_EMAIL_TOTAL_DISCOUNT="割引合計: "
SR_ROOM_X_COST="Room cost"
SR_ROOM_X_DISCOUNTED_AMOUNT="Room discounted amount"
SR_ROOM_X_DISCOUNTED_COST="Room cost after discounted"
SR_VIEW_TARIFF_BREAKDOWN="説明"
SR_SHOW_TARIFFS="Rates"
SR_HIDE_TARIFFS="Rates"
SR_CONFIRMATION_ROOM_DETAILS="説明"
SR_CONFIRMATION_GUEST_NAME="お客様の氏名"
SR_CONFIRMATION_ADULT_NUMBER="大人の人数"
SR_CONFIRMATION_CHILD_NUMBER="子供の人数"
SR_CONFIRMATION_FULLNAME="氏名: "
SR_EXTRA="エクストラ"
SR_EXTRA_PER_BOOKING="予約毎"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="予約毎"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Per room"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Per booking per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Per booking per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Per room per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Per room per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Per person per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Per room per person per night"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="大人1人あたりの価格"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Enter the price for adult of this Extra/Service. The currency of Property will apply here."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="子供1人あたりの価格"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Enter the price for child of this Extra/Service. The currency of Property will apply here."

; Since 0.9.0
SR_DAYS="%d days"
SR_DAYS_1="%d 日"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s days"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 day"
SR_LENGTH_OF_STAY="滞在の長さ"
SR_EMAIL_LENGTH_OF_STAY="滞在の長さ: "
SR_PRICE_IS_FOR_X_DAY="Price is for %s days"
SR_PRICE_IS_FOR_X_DAY_1="Price is for %s day"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Room single supplement"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Room cost after single supplement"
JLIB_APPLICATION_SAVE_SUCCESS="Item successfully saved."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Item successfully submitted."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="New reservation %s from %s %s"
SR_RESERVATION_CODE="コード"
SR_RESERVATION_INVOICE="請求書"
SR_RESERVATION_CHECKIN="チェックイン"
SR_RESERVATION_CHECKOUT="チェックアウト"
SR_RESERVATION_ASSET="アセット"
SR_RESERVATION_TOTAL_PAID="支払い合計"
SR_DESCRIPTION="説明"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="予約番号"
SR_CONFIRMATION_EMAIL="メール: "
SR_CONFIRMATION_BOOKING_DETAILS="予約詳細"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s 部屋"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s 部屋"
SR_CONFIRMATION_CHECKIN="チェックイン"
SR_CONFIRMATION_CHECKOUT="チェックアウト"
SR_CONFIRMATION_TOTAL_PRICE="合計金額"
SR_CONFIRMATION_ASSET_NAME="名前"
SR_CONFIRMATION_ASSET_ADDRESS="住所"
SR_CONFIRMATION_ASSET_EMAIL="メール"
SR_CONFIRMATION_ASSET_PHONE="電話番号"
SR_ASSET_INFO="ホテルの情報"
SR_BOOKING_INFO="あなたの予約情報"
SR_BOOKING_CONFIRMATION_ADULTS="%s 大人"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s 大人"
SR_BOOKING_CONFIRMATION_CHILDREN="%s 子供"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s 子供"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="お客様の氏名"
SR_BOOKING_CONFIRMATION_SMOKING="禁煙"
SR_BOOKING_CONFIRMATION_ROOM_COST="客室料金"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="客室の詳細"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Your dates appear to be in the past"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Thank you %s! Your reservation number %s has been completed successfully but the payment is not yet completed.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Invalid. Minimum length of stay is %d days."
SR_USER_INFO_USERNAME_PLURAL="You have logged with username: %s"

; Since 0.9.4
SR_COUPON_CHECK="チェック項目"
SR_RESERVATION_ORIGIN_DIRECT="Direct"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="This room type requires at least %d people and maximum %d people."
SR_RESERVE="予約"
SR_SEARCH_ROOMS="部屋"
SR_SEARCH_ROOM="部屋"
SR_SEARCH_ROOM_ADULTS="大人の人数"
SR_SEARCH_ROOM_CHILDREN="子供の数"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Reservation has been cancelled"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Reservation %s from %s %s has been cancelled"
SR_EMAIL_GREETING_TEXT_CANCELLED="Your reservation %s at %s has been cancelled."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Reservation %s has been cancelled, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_COUPON_CODE="クーポンコード: "

; Since 1.8.0
SR_FULLNAME="Full name"
SR_MESSAGE="Message"
SR_SEND_MESSAGE="Send message"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Booking inquiry from %s for %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Thank you, your inquiry has been sent successfully. We will get back to you as soon as possible."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per booking per stay (night or day)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="1部屋あたりの価格"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per room per person per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Percentage of room's daily rate"
SR_EXTRA_PRICE_DAILY_RATE="%s costs %d percent of room daily rate per stay"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Your session is expiring soon."
SR_WARNING_SESSION_EXPIRED="Your session has been expired, <a href="_QQ_"#"_QQ_">click here</a> to start a new session."
SR_WEBSITE="ウェブサイト"
SR_YOUR_STAY="Your stay"
SR_AVAILABLE_ROOMS="Available room"
SR_MAX_GUESTS="Max guests"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Book Now"
SR_TARIFF_PACKAGE_PER_ROOM="1部屋あたりのパッケージ"
SR_TARIFF_PACKAGE_PER_PERSON="1人あたりのパッケージ"
SR_TARIFF_PER_ROOM_PER_NIGHT="Rate per room per stay"
SR_TARIFF_PER_PERSON_PER_NIGHT="Rate per person per stay"
SR_ROOM_X_EXTRA_AMOUNT="Room extras item cost"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Your reservation has been amended successfully"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Send outgoing emails?"
SR_FIELD_COUNTRY_SELECT=" - Select Country - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Process online payment?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Your reservation has been added successfully"
SR_SELECT_BED_QUANTITY="%s beds"
SR_SELECT_BED_QUANTITY_1="1 bed"
SR_BED="Bed"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Thank you %s! Your reservation request %s has been sent to us, we will get back to you as soon as possible to confirm this reservation.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Your reservation number %s has been cancelled.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Tourist tax"
SR_EMAIL_TOURIST_TAX="Tourist tax: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount: "
SR_CONFIRMATION_GUEST_NUMBER="Guest number"
SR_SELECT_GUEST_QUANTITY="%s guests"
SR_SELECT_GUEST_QUANTITY_1="1 guest"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Rooms and rates information"
SR_CONFIRMATION_PAYMENT_METHOD="Payment method: "
SR_CONFIRMATION_MOBILE="携帯電話: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="未払い"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="完了"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="キャンセル済み"
SR_RESERVATION_PAYMENT_STATUS_PENDING="承認待ち"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ bed "
SR_WE_HAVE_X_BED_LEFT="We have %s beds left"
SR_WE_HAVE_X_BED_LEFT_1="We have %s bed left!"
SR_ONLY_1_LEFT_BED="Last chance! Only 1 bed left"
SR_ONLY_2_LEFT_BED="Only 2 beds left"
SR_ONLY_3_LEFT_BED="Only 3 beds left"
SR_ONLY_4_LEFT_BED="Only 4 beds left"
SR_ONLY_5_LEFT_BED="Only 5 beds left"
SR_ONLY_6_LEFT_BED="Only 6 beds left"
SR_ONLY_7_LEFT_BED="Only 7 beds left"
SR_ONLY_8_LEFT_BED="Only 8 beds left"
SR_ONLY_9_LEFT_BED="Only 9 beds left"
SR_ONLY_10_LEFT_BED="Only 10 beds left"
SR_ONLY_11_LEFT_BED="Only 11 beds left"
SR_ONLY_12_LEFT_BED="Only 12 beds left"
SR_ONLY_13_LEFT_BED="Only 13 beds left"
SR_ONLY_14_LEFT_BED="Only 14 beds left"
SR_ONLY_15_LEFT_BED="Only 15 beds left"
SR_ONLY_16_LEFT_BED="Only 16 beds left"
SR_ONLY_17_LEFT_BED="Only 17 beds left"
SR_ONLY_18_LEFT_BED="Only 18 beds left"
SR_ONLY_19_LEFT_BED="Only 19 beds left"
SR_ONLY_20_LEFT_BED="Only 20 beds left"
SR_DUE_AMOUNT="Total due amount"
SR_EMAIL_DUE_AMOUNT="Due Amount: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Your reservation has been cancelled."
SR_CHECKIN_PLACEHOLDER="Your check-in date"
SR_CHECKOUT_PLACEHOLDER="Your check-out date"
SR_CHOOSE_ANOTHER_CHECKIN="Please choose another check-in date"
SR_WARNING_SESSION_RENEW="Renew"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Enter your email"
SR_ENTER_YOUR_RESERVATION_CODE="Enter your reservation code"
SR_FIND_RESERVATION="Find reservation"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reservation code %s found."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="We can not find any reservations with your given information, please recheck your information and try again."
SR_RESERVATION_STATUS_FORMAT="Reservation status: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Show property's reservation tracking form"
SR_TRACKING_VIEW_DEFAULT_DESC="Allow guests check their reservation using reservation code + email address"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ 1 person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s people "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/vi-VN/vi-VN.com_solidres.ini000060400000102450150751740420013412 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Tiêu chí tìm kiếm"
SR_SEARCH_FIELD_COUNTRY="Quốc gia"
SR_SEARCH_FIELD_STATE="Tiểu bang"
SR_SEARCH_FIELD_CITY="Thành phố"
SR_SEARCH_CHECKIN_DATE="Ngày nhận phòng"
SR_SEARCH_CHECKOUT_DATE="Ngày trả phòng"
SR_SEARCH="Tìm kiếm"
SR_RESET="Thiết lập lại"
SR_REMEMBER_ME="Nhớ tài khoản"
SR_FORGOT_YOUR_PASSWORD="Quên mật khẩu của bạn"
SR_FORGOT_YOUR_USERNAME="Quên tên người dùng của bạn"
SR_REGISTER="Đăng ký"
SR_SELECTED_RESERVATION_ASSET="Khách sạn đã chọn"
SR_STAYING_INFO="Thông tin lưu trú"
SR_NUMBER_OF_ROOM="Phòng"
SR_GUEST_PER_ROOM="Khách mỗi phòng"
SR_ROOM_RATE_INFO="Thông tin về giá phòng"
SR_ROOM_DESCRIPTION="Mô tả phòng"
SR_ROOM_RATE_TYPE="Loại giá phòng"
SR_GUEST_INFO="Thông tin khách hàng"
SR_FIRSTNAME="Tên"
SR_LASTNAME="Họ"
SR_EMAIL="Email"
SR_PHONENUMBER="Số điện thoại cố định"
SR_CONTACT_INFO="Thông tin liên hệ"
SR_HOLD_GUARANTEE_INFO="Giữ/Bảo lãnh thông tin"
SR_ARRIVAL_INFO="Thông tin khách đến"
SR_TRAVEL_INFO="Thông tin du lịch"
SR_COMPANY="Công ty (Tùy chọn)"
SR_ADDRESS_1="Địa chỉ 1"
SR_ADDRESS_2="Địa chỉ 2 (Tùy chọn)"
SR_CITY="Thành phố"
SR_ZIP="Mã bưu chính (Tùy chọn)"
SR_STATE="Tiểu bang/Tỉnh (Tùy chọn)"
SR_COUNTRY="Quốc gia"
SR_TRAVEL_FOR_BUSINESS="Năng suất/Kinh doanh"
SR_TRAVEL_FOR_BUSINESS_DESC="Tôi muốn có thể hoàn thành công việc và làm việc hiệu quả khi tôi đang trên đường"
SR_TRAVEL_FOR_RELAX="Thư giãn / Nuông chiều"
SR_TRAVEL_FOR_RELAX_DESC="Tôi thích thư giãn và trẻ hóa khi tôi xa nhà."
SR_TRAVEL_FOR_ENTERTAINMENT="Giải trí / Danh lam thắng cảnh"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Tôi muốn vui chơi và biết được nơi đến tốt nhất của tôi."
SR_TRAVEL_FOR_FAMILY="Gia đình"
SR_TRAVEL_FOR_FAMILY_DESC="Tôi đang tham gia một sự kiện gia đình hoặc đi nghỉ mát cùng gia đình."
SR_TRAVEL_FOR_HONEYMOON="Tuần trăng mật"
SR_TRAVEL_FOR_HONEYMOON_DESC="Tôi sẽ tận hưởng trăng mật của tôi."
SR_COMMENT="Nhận xét"
SR_COMMENT_DESC="Vui lòng nhập vào đây nếu bạn có bất kỳ bình luận nào cho chúng tôi."
SR_TAX="Thuế"
SR_RULE_RESTRICTION="Chỉ còn 4 phòng trống"
SR_SELECT_TARIFF="Chọn"
SR_SHOW_MAP="Hiển thị bản đồ"
SR_READMORE="Đọc thêm"
SR_PRICE_FROM="Giá từ"
SR_FIELD_RESERVE="Đặt chỗ ngay bây giờ"
SR_FIELD_CONDITIONS="Điều kiện"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Tìm kiếm khách sạn của bạn bằng cách sử dụng biểu mẫu bên dưới"
SR_NO_ROOM_AVAILABLE="Hết phòng!"
SR_MAX="số người tối đa cho phép"
SR_HAS_ROOM_AVAILABLE="Còn trống"
SR_AVAILABILITY="Tính khả dụng"
SR_AVAILABLE_ROOM_TYPES="Loại phòng còn trống"
SR_VIEW_GALLERY="Xem thư viện"
SR_YOUR_SEARCH_INFORMATION="Thông tin tìm kiếm của bạn"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Nhận phòng:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Trả phòng:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Tổng số người lớn mỗi phòng:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Tổng số trẻ em mỗi phòng:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Tiếp tục"
SR_EXTRA_PACKAGES="Gói tiện ích"
SR_ROOM_TYPE_NAME="Loại phòng"
SR_ROOM_TYPE_QUANTITY="Số lượng"
SR_ROOM_TYPE_GUEST_PER_ROOM="Khách mỗi phòng"
SR_NUMBER_OF_NIGHT="Số đêm"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Phòng & Giá"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Gói tiện ích"
SR_RESERVATION_PROGRESS_GUEST_INFO="Thông tin khách hàng"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Thông tin thanh toán"
SR_RESERVATION_CONFIRMATION="Xác nhận"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Hoàn tất"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Séc/Tiền"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Số lượng phòng đã chọn của bạn vượt quá số lượng phòng trống, vui lòng <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">bấm cào đây</a> để quay trở lại và thực hiện một lựa chọn khác."
SR_CHANGE="Thay đổi"
SR_NOTE="Ghi chú (Tùy chọn)"
SR_MIDDLENAME="Tên đệm (Tùy chọn)"
SR_RESERVATION_PROGRESS_DATES="Ngày & Tùy chọn"
SR_ROOM_SELECTION="Lựa chọn phòng"
SR_ROOM_TYPE_ADULT_PER_ROOM="Người lớn trên mỗi phòng"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Trẻ em trên mỗi phòng"
SR_ROOM_TYPE_GUEST_NAME="Tên khách"
SR_RESERVATION_NOTICE_CONFIRMATION="Vui lòng xem lại chi tiết đặt chỗ của bạn và bấm vào nút Hoàn tất để hoàn tất các yêu cầu đặt chỗ của bạn. Một email xác nhận sẽ được gửi đến địa chỉ email đã cho của bạn."
SR_SEARCH_COUPON="Phiếu giảm giá"
SR_MAXIMUM_OCCUPANCY="Sức chứa tối đa"
SR_OCCUPANCY_ADULT="Số người lớn"
SR_OCCUPANCY_CHILD="Số trẻ em"
SR_NIGHTS="%d đêm"
SR_NIGHTS_1="%d đêm"
SR_TOTAL_ROOM_COST_TAX_EXCL="Tổng chi phí phòng (chưa bao gồm thuế)"
SR_TOTAL_ROOM_COST_TAX_INCL="Tổng chi phí phòng (đã bao gồm thuế)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Tổng chi phí tiệc ích (chưa bao gồm thuế)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Tổng chi phí tiệc ích (đã bao gồm thuế)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Tổng thuế tiện ích"
SR_PRICE_FOR_X_NIGHTS="Giá cho %d đêm"
SR_ROOM_TYPE="Loại phòng"
SR_NUMBER_OF_ROOMS="Số lượng phòng"
SR_TARIFF_BREAK_DOWN="Chi tiết giá"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Số người lớn"
SR_SEARCH_CHILDREN_NUMBER="Số trẻ em"
SR_NO_TARIFF_AVAILABLE="No available rate"
SR_EMAIL_RESERVATION_COMPLETE="Đặt chổ của bạn đã hoàn tất"

; Extra
SR_RESERVATION_EXTRA="Tên"
SR_RESERVATION_EXTRA_COST="Chi phí"
SR_RESERVATION_EXTRA_QUANTITY="Số lượng"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="Không thể gửi email chứa tóm tắt đặt chỗ của bạn."

SR_BOOK_NOW="Đặt ngay bây giờ"
SR_TOTAL_PRICE="Tổng giá"
SR_TAX_7_NOT_INCLUDED="Thuế (7%) chưa bao gồm"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Phí dịch vụ (10.70%) chưa bao gồm"

SR_RESERVATION_NOTE="NHập bất kỳ thông tin bào bạn muốn đính kèm vào đặt chỗ của bạn. Nhân viên không thể đảm bảo các yêu cầu hoặc nhận xét bổ sung. Vui lòng tránh sử dụng các ký tự đặc biệt."
SR_ASK_FOR_CHECKIN_CHECKOUT="Để kiểm tra giá phòng và tình trạng phòng trống, vui lòng nhập ngày nhận phòng và ngày trả phòng theo biểu mẫu dưới đây"
SR_GRAND_TOTAL="Tổng cộng"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Tiện nghi"
SR_CUSTOMFIELD_POLICIES="Chính sách"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Mạng xã hội"
SR_CUSTOMFIELD_GENERAL="Thông tin chung"
SR_CUSTOMFIELD_ACTIVITIES="Hoạt động"
SR_CUSTOMFIELD_SERVICES="Dịch vụ"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Bãi đậu xe"
SR_CUSTOMFIELD_CHECKIN="Nhận phòng"
SR_CUSTOMFIELD_CHECKOUT="Trả phòng"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Hủy / Thanh toán trước"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Trẻ em và giường phụ"
SR_CUSTOMFIELD_PETS="Thú cưng"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Thẻ tín dụng được chấp nhận"
SR_BREAKFAST_INCLUDED="Bao gồm bữa sáng"
SR_BREAKFAST_EXCLUDED="Không bao gồm bữa sáng"
SR_FREE_CANCELLATION="Hủy miễn phí"
SR_NON_REFUNDABLE="Không hoàn tiền"
SR_ROOM_OCCUPANCY="Sức chứa"
SR_TAXES="Thuế"
SR_PREPAYMENT="Thanh toán trước"
SR_ROOM_FACILITIES="Tiện nghi phòng"
SR_ROOM_SIZE="Kích thước phòng"
SR_BED_SIZE="Kích thước giường"

SR_COUPON_ENTER="Nhập mã phiếu giảm giá (Tùy chọn)"
SR_COUPON_ACCEPTED="Phiếu giảm giá được chấp nhận"
SR_COUPON_REJECTED="Phiếu giảm giá không hợp lệ"
SR_APPLY_COUPON="Áp dụng phiếu giảm giá"

SR_ROOM_AVAILABLE_FROM_TO="Chúng tôi có %s phòng trống từ %s đến %s cho tìm kiếm của bạn gồm %s người lớn và %s trẻ em"
SR_APPLIED_COUPON="Phiếu giảm giá đã áp dụng"
SR_REMOVE="Xóa"
SR_CAN_NOT_REMOVE_COUPON="Không thể xóa phiếu giảm giá"
SR_AVAILABILITY_CALENDAR="Lịch khả dụng"
SR_AVAILABILITY_CALENDAR_VIEW="Xem lịch"

SR_AVAILABILITY_CALENDAR_BUSY="Không khả dụng"
SR_FEATURED_ROOM_TYPE="Nổi bật"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Vui lòng chọn ít nhất một loại phòng để tiếp tục."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Không hợp lệ. Bạn phải đặt ít nhất %d ngày và không vượt quá %d ngày trước khi bạn đến. Thời gian lưu trú tối thiểu là %d ngày."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Không hợp lệ. Ngày trả phòng phải sau ngày nhận phòng."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Không hợp lệ. Thời gian lưu trú tối thiểu là %d đêm."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Không hợp lệ. Bạn phải đặt trước ít nhất %d ngày trước khi bạn đến."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Không hợp lệ. Bạn không được phép đặt nhiều hơn %d ngày trước khi bạn đến."
SR_NEXT="Tiếp theo"
SR_BACK="Quay lại"
SR_CUSTOMER_TITLE="Xưng hô của bạn (Tùy chọn)"
SR_CUSTOMER_TITLE_MR="Ông."
SR_CUSTOMER_TITLE_MRS="Bà."
SR_CUSTOMER_TITLE_MS="Cô."
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Loại giá: Mỗi người mỗi đêm, vui lòng chọn số lượng phòng của bạn, tsau đó cung cấp số người ở của bạn để có được mức thuế chính xác cho phòng này"
SR_ERROR_CHILD_MAX_AGE="Độ tuổi phải ở giữa"
SR_BOOKING_CONDITIONS="Điều kiện đặt phòng"
SR_PRIVACY_POLICY="Chính sách bảo mật"
SR_ROOM_COST="Chi phí phòng: "
SR_ENHANCE_YOUR_STAY="Tăng cường thời gian lưu trú của bạn"
SR_I_AGREE_WITH="Tôi đồng ý với "
SR_GUEST_INFORMATION="Thông tin khách hàng"
SR_PAYMENT_INFO="Thông tin thanh toán"
SR_GUEST_INFO_STEP_NOTICE="Nhập thông tin và phương thức thanh toán của bạn"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Chọn loại phòng của bạn, xem lại giá và nhấn Next để tiếp tục"
SR_AGE_OF_CHILD_AT_CHECKOUT="Tuổi của trẻ em khi thanh toán"
SR_GUEST_NAME="Tên khách hàng"
SR_ROOM="Phòng"
SR_CHILD="Trẻ em"
SR_ADULT="Người lớn"
SR_ROOMTYPE_QUANTITY="Số lượng"
SR_AND="và"
SR_STEP_ROOM_AND_RATE="Phòng & Giá"
SR_STEP_GUEST_INFO_AND_PAYMENT="Thông tin khách hàng & Thanh toán"
SR_STEP_CONFIRMATION="Xác nhận"
SR_PAYMENT_METHOD_PAYLATER="Thanh toán sau"
SR_PAYMENT_METHOD_BANKWIRE="Thanh toán qua ngân hàng"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Xin lưu ý rằng có thể mất vài ngày để thanh toán được rõ ràng. Trong ghi chú thanh toán bằng chuyển khoản ngân hàng, vui lòng nhập mã đặt chỗ của bạn để giúp chúng tôi xử lý yêu cầu đặt chỗ của bạn nhanh hơn."
SR_PROCESSING="Đang xử lý..."

; Since 0.6.0
SR_STAR="Sao"
SR_STARS="Sao"
JGLOBAL_FIELDSET_PUBLISHING="Xuất bản"
JTOOLBAR_APPLY="Lưu"
JTOOLBAR_ARCHIVE="Lưu trữ"
JTOOLBAR_ASSIGN="Gán"
JTOOLBAR_BACK="Quay lại"
JTOOLBAR_BATCH="Sao chép"
JTOOLBAR_CANCEL="Hủy"
JTOOLBAR_CHECKIN="Nhận phòng"
JTOOLBAR_CLOSE="Đóng"
JTOOLBAR_DEFAULT="Mặc định"
JTOOLBAR_DELETE="Xóa"
JTOOLBAR_DISABLE="Vô hiệu hóa"
JTOOLBAR_DUPLICATE="Trùng lặp"
JTOOLBAR_EDIT="Chỉnh sửa"
JTOOLBAR_EDIT_CSS="Chỉnh sửa CSS"
JTOOLBAR_EDIT_HTML="Chỉnh sửa HTML"
JTOOLBAR_EMPTY_TRASH="Dọn sạch thùng rác"
JTOOLBAR_ENABLE="Kích hoạt"
JTOOLBAR_EXPORT="Kết xuất"
JTOOLBAR_HELP="Trợ giúp"
JTOOLBAR_INSTALL="Cài đặt"
JTOOLBAR_NEW="Mới"
JTOOLBAR_OPTIONS="Tùy chọn"
JTOOLBAR_PUBLISH="Xuất bản"
JTOOLBAR_PURGE_CACHE="Xóa bộ nhớ cache"
JTOOLBAR_REBUILD="Xây dựng lại"
JTOOLBAR_REFRESH_CACHE="Làm mới bộ nhớ Cache"
JTOOLBAR_REMOVE="Xóa"
JTOOLBAR_SAVE="Lưu &amp; Đóng"
JTOOLBAR_SAVE_AND_NEW="Lưu &amp; Tạo mới"
JTOOLBAR_SAVE_AS_COPY="Lưu dưới dạng bản sao"
JTOOLBAR_UNARCHIVE="Hủy lưu trữ"
JTOOLBAR_UNINSTALL="Gỡ cài đặt"
JTOOLBAR_UNPUBLISH="Hủy xuất bản"
JTOOLBAR_UPLOAD="Tải lên"
JTOOLBAR_TRASH="Thùng rác"
JTOOLBAR_UNTRASH="Hồi phục xóa"
JTOOLBAR_REBUILD_SUCCESS="Xây dựng lại thành công"
JTOOLBAR_VERSIONS="Phiên bản"
SR_SEARCH_LOCATION="Vị trí"
SR_DASHBOARD="Bản điều khiển"
SR_PHONE="Điện thoại"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Số tiền đặt cọc"
SR_TOTAL_ROOM_TAX="Tổng thuế phòng"

; Since 0.7.0
SR_STANDARD_TARIFF="Giá tiêu chuẩn"
SR_SEARCH_RESET="Thiết lập lại"
SR_SELECT_A_TARIFF="Chọn giá"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="Chúng tôi không có sẵn cho loại phòng này giữa %s và %s. <a href="_QQ_"%s"_QQ_">Bấm vào đây để bắt đầu lại bằng cách thay đổi ngày của bạn.</a>"
SR_SELECT_A_TARIFF_FIRST="Vui lòng chọn giá trước."
SR_SMOKING="Tùy chọn hút thuốc"
SR_SMOKING_ROOM="Phòng hút thuốc"
SR_NON_SMOKING_ROOM="Phòng không hút thuốc"
SR_SELECT_ROOM_QUANTITY="%s phòng"
SR_SELECT_ROOM_QUANTITY_1="1 phòng"
SR_SELECT_ADULT_QUANTITY="%s người lớn"
SR_SELECT_ADULT_QUANTITY_1="1 người lớn"
SR_SELECT_CHILD_QUANTITY="%s trẻ em"
SR_SELECT_CHILD_QUANTITY_1="1 trẻ em"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s đêm"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 đêm"
SR_TARIFF_SUFFIX_PER_ROOM="/ phòng "
SR_CHILD_AGE_SELECTION="%s tuổi"
SR_CHILD_AGE_SELECTION_1="%s tuổi"
SR_CHILD_AGE_SELECTION_JS="tuổi"
SR_CHILD_AGE_SELECTION_1_JS="tuổi"
SR_EMAIL_CONFIRM_RESERVATION="Xác nhận đặt chỗ"
SR_EMAIL_REF_ID="ID tham chiếu: %s"
SR_EMAIL_GREETING_NAME="Kính thưa %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Cám ơn bạn đã đặt chỗ tại %s. , Nếu bạn có bất kỳ câu hỏi nào khác, vui lòng liên hệ với chúng tôi bất kỳ lúc nào.</p><p>Chúng tôi rất vui được xác nhận đặt chỗ của bạn như sau:</p>"
SR_EMAIL_CHECKIN="Nhận phòng: "
SR_EMAIL_CHECKOUT="Trả phòng: "
SR_EMAIL_PAYMENT_METHOD="Phương thức thanh toán: "
SR_EMAIL_EMAIL="Email: "
SR_EMAIL_NUM_NIGHT="Số đêm: "
SR_EMAIL_SUB_TOTAL="Chi phí phòng (chưa bao gồm thuế): "
SR_EMAIL_TAX="Chi phí thuế phòng: "
SR_EMAIL_GRAND_TOTAL="Tổng cộng: "
SR_EMAIL_DEPOSIT_AMOUNT="Số tiền đặt cọc: "
SR_EMAIL_EXTRAS_ITEMS="Các tiện ích: "
SR_EMAIL_CONNECT_WITH_US="Liên hệ với chúng tôi: "
SR_EMAIL_CONTACT_INFO="Thông tin liên hệ: "
SR_EMAIL_ADDRESS="Địa chỉ: "
SR_EMAIL_PHONE="Điện thoại: "
SR_EMAIL_OTHER_INFO="Thông tin khách"
SR_EMAIL_EXTRA_QUANTITY="Số lượng: "
SR_EMAIL_EXTRA_PRICE="Giá: "
SR_EMAIL_NOTE="Ghi chú: "
SR_EMAIL_BANKWIRE_INFO="Thông tin ngân hàng"
SR_EMAIL_NOTIFICATION_RESERVATION="Thông báo đặt chỗ"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>Một đặt chỗ mới đã được thực hiện, vui lòng kiểm tra chi tiết bên dưới hoặc <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">bấm vào đây</a> để xem:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Xin chào,"
SR_EMAIL_EXTRA_TAX_EXCL="Chi phí tiện ích (chưa bao gồm thuế): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Thuế tiện ích: "
SR_VAT_NUMBER="Số VAT (Tùy chọn)"
SR_PASSWORD="Mật khẩu"
SR_USERNAME="Tên người dùng"
SR_WE_HAVE_X_ROOM_LEFT="Chúng tôi còn lại %s phòng"
SR_WE_HAVE_X_ROOM_LEFT_1="Chúng tôi còn lại %s phòng!"
SR_ONLY_1_LEFT="Cơ hội cuối cùng! Chỉ còn 1 phòng"
SR_ONLY_2_LEFT="Chỉ còn 2 phòng"
SR_ONLY_3_LEFT="Chỉ còn 3 phòng"
SR_ONLY_4_LEFT="Chỉ còn 4 phòng"
SR_ONLY_5_LEFT="Chỉ còn 5 phòng"
SR_ONLY_6_LEFT="Chỉ còn 6 phòng"
SR_ONLY_7_LEFT="Chỉ còn 7 phòng"
SR_ONLY_8_LEFT="Chỉ còn 8 phòng"
SR_ONLY_9_LEFT="Chỉ còn 9 phòng"
SR_ONLY_10_LEFT="Chỉ còn 10 phòng"
SR_ONLY_11_LEFT="Chỉ còn 11 phòng"
SR_ONLY_12_LEFT="Chỉ còn 12 phòng"
SR_ONLY_13_LEFT="Chỉ còn 13 phòng"
SR_ONLY_14_LEFT="Chỉ còn 14 phòng"
SR_ONLY_15_LEFT="Chỉ còn 15 phòng"
SR_ONLY_16_LEFT="Chỉ còn 16 phòng"
SR_ONLY_17_LEFT="Chỉ còn 17 phòng"
SR_ONLY_18_LEFT="Chỉ còn 18 phòng"
SR_ONLY_19_LEFT="Chỉ còn 19 phòng"
SR_ONLY_20_LEFT="Chỉ còn 20 phòng"
SR_SHOW_MORE_INFO="Thêm thông tin"
SR_HIDE_MORE_INFO="Ẩn thông tin"
SR_AVAILABILITY_CALENDAR_CLOSE="Đóng lịch"
SR_STARTING_FROM="Giá từ"
SR_SELECT="Chọn"
SU="Chủ nhật"
MO="Thứ hai"
TU="Thứ ba"
WE="Thứ tư"
TH="Thứ năm"
FR="Thứ sáu"
SA="Thứ bảy"
SR_USERNAME_EXISTS="Tên người dùng đã tồn tại. Vui lòng chọn một tên khác."
JFIELD_METADATA_ROBOTS_DESC="Robot hướng dẫn"
JFIELD_METADATA_ROBOTS_LABEL="Robot"
JFIELD_XREFERENCE_DESC="Một trường tùy biến cho phép bản ghi này được tham chiếu chéo tới một hệ thống dữ liệu ngoài nếu được yêu cầu."
JFIELD_XREFERENCE_LABEL="Tham chiếu bên ngoài"
JCLEAR="Xóa"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Đăng ký với chúng tôi để thuận tiện trong tương lai: đặt phòng nhanh chóng và dễ dàng. Vui lòng nhập tên người dùng và mật khẩu bạn muốn trong các trường sau."
SR_PRICE_IS_FOR_X_NIGHT="Giá cho %s đêm"
SR_PRICE_IS_FOR_X_NIGHT_1="Giá cho %s đêm"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="Chúng tôi không tìm thấy phòng phù hợp cho tìm kiếm của bạn từ %s đến %s, vui lòng điều chỉnh ngày đặt phòng hoặc tùy chọn phòng của bạn."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="Chúng tôi tìm thấy %s phòng phù hợp với tìm kiếm của bạn từ %s đến %s cho %s người lớn và %s trẻ em."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="Chúng tôi có ít hơn số phòng bạn yêu cầu, nhưng các phòng hiện có của chúng tôi (%s) có thể thỏa yêu cầu tìm kiếm của bạn từ %s đến %s cho %s người lớn và %s trẻ em nếu bạn chọn số phòng khác nhau."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Xin lỗi nhưng phòng của chúng tôi không có sẵn cho tìm kiếm của bạn từ %s đến %s cho %s người lớn và %s trẻ em."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="Chúng tôi tìm thấy %s phòng phù hợp với tìm kiếm của bạn từ %s đến %s."
SR_MOBILEPHONE="Điện thoại di động"
SR_RESERVATION_SAVE_ERROR="Không thể lưu đặt chỗ của bạn, vui lòng thử lại."
SR_EMAIL_PAYMENT_METHOD_INFO="Thông tin thanh toán"
SR_RESERVATION_COMPLETE="<h3>Cám ơn %s! Số đặt chỗ của bạn %s đã được hoàn tất thành công.</h3><ul> <li>Chúng tôi đã gửi email xác nhận tới %s</li><li>Chúng tôi cũng đã thông báo cho %s về thười gian lưu trú sắp tới của bạn</li><li><a href="_QQ_"%s"_QQ_">Bấm vào đây</a> để quay lại trang chủ của chúng tôi.</li></ul>"
SR_EXTRA_PRICE_ADULT="Dành cho người lớn"
SR_EXTRA_PRICE_CHILD="Dành cho trẻ em"
SR_EXTRA_MORE_DETAILS="Chi tiết"
SR_EXTRA_PRICE="Giá"
SR_TOTAL_DISCOUNT="Tổng giảm giá"
SR_EMAIL_TOTAL_DISCOUNT="Tổng giảm giá: "
SR_ROOM_X_COST="Chi phí phòng"
SR_ROOM_X_DISCOUNTED_AMOUNT="Số tiền giảm giá phòng"
SR_ROOM_X_DISCOUNTED_COST="Chi phí phòng sau khi giảm giá"
SR_VIEW_TARIFF_BREAKDOWN="Chi tiết"
SR_SHOW_TARIFFS="Giá"
SR_HIDE_TARIFFS="Giá"
SR_CONFIRMATION_ROOM_DETAILS="Chi tiết"
SR_CONFIRMATION_GUEST_NAME="Tên khách hàng"
SR_CONFIRMATION_ADULT_NUMBER="Số người lớn"
SR_CONFIRMATION_CHILD_NUMBER="Số trẻ em"
SR_CONFIRMATION_FULLNAME="Tên đầy đủ của bạn: "
SR_EXTRA="Tiện ích bổ sung"
SR_EXTRA_PER_BOOKING="Mỗi đặt chỗ"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Mỗi đặt chỗ"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Mỗi phòng"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Mỗi đặt phòng cho mỗi đêm"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Mỗi đặt phòng cho mỗi người"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Mỗi phòng cho mỗi đêm"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Mỗi phòng cho mỗi người"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Mỗi người cho mỗi đêm"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Mỗi phòng một người mỗi đêm"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Giá cho người lớn"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Nhập giá cho người lớn của Tiện ích/Dịch vụ này. Đơn vị tiền tệ của tài sản này sẽ được áp dụng tại đây."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Giá cho trẻ em"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Nhập giá cho trẻ em của Tiện ích/Dịch vụ này. Đơn vị tiền tệ của tài sản này sẽ được áp dụng tại đây."

; Since 0.9.0
SR_DAYS="%d ngày"
SR_DAYS_1="%d ngày"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s ngày"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 ngày"
SR_LENGTH_OF_STAY="Thời gian lưu trú"
SR_EMAIL_LENGTH_OF_STAY="Thời gian lưu trú: "
SR_PRICE_IS_FOR_X_DAY="Giá cho %s ngày"
SR_PRICE_IS_FOR_X_DAY_1="Giá cho %s ngày"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Phụ thu phòng đơn"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Chi phí phòng sau khi phụ thu khách đơn"
JLIB_APPLICATION_SAVE_SUCCESS="Đã lưu thành công."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Đã gửi thành công."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="Đặt chỗ mới %s từ %s %s"
SR_RESERVATION_CODE="Mã"
SR_RESERVATION_INVOICE="Hóa đơn"
SR_RESERVATION_CHECKIN="Nhận phòng"
SR_RESERVATION_CHECKOUT="Trả phòng"
SR_RESERVATION_ASSET="Tài sản"
SR_RESERVATION_TOTAL_PAID="Tổng số tiền đã thanh toán"
SR_DESCRIPTION="Mổ tả"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Số đặt chỗ"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Chi tiết đặt chỗ"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s phòng"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s phòng"
SR_CONFIRMATION_CHECKIN="Nhận phòng"
SR_CONFIRMATION_CHECKOUT="Trả phòng"
SR_CONFIRMATION_TOTAL_PRICE="Tổng giá"
SR_CONFIRMATION_ASSET_NAME="Tên"
SR_CONFIRMATION_ASSET_ADDRESS="Địa chỉ"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Điện thoại"
SR_ASSET_INFO="Thông tin khách sạn"
SR_BOOKING_INFO="Thông tin đặt chỗ của bạn"
SR_BOOKING_CONFIRMATION_ADULTS="%s người lớn"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s người lớn"
SR_BOOKING_CONFIRMATION_CHILDREN="%s trẻ em"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s trẻ em"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Tên đầy đủ của khách"
SR_BOOKING_CONFIRMATION_SMOKING="Hút thuốc"
SR_BOOKING_CONFIRMATION_ROOM_COST="Chi phí phòng"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Chi tiết phòng"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Ngày của bạn xuất hiện trong quá khứ"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Cám ơn %s! Số đặt chỗ của bạn %s  đã được hoàn tất thành công nhưng thanh toán chưa được hoàn thành.</h3><ul> <li>Chúng tôi đã gửi email xác nhận đến %s</li><li>Chúng tôi cũng đã thông báo cho %s về thời gian lưu trú sắp tới của bạn</li><li><a href="_QQ_"%s"_QQ_">Bấm vào đây</a> để quay lại trang chủ của chúng tôi.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Không hợp lệ. Thời gian lưu trú tối thiểu là %d đêm."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Không hợp lệ. Thời gian lưu trú tối thiểu là %d ngày."
SR_USER_INFO_USERNAME_PLURAL="Bạn đã đăng nhập với tên người dùng: %s"

; Since 0.9.4
SR_COUPON_CHECK="Kiểm tra"
SR_RESERVATION_ORIGIN_DIRECT="Trực tiếp"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="Loại phòng này yêu cầu ít nhất %d người và tối đa %d người."
SR_RESERVE="Đặt chỗ"
SR_SEARCH_ROOMS="Phòng"
SR_SEARCH_ROOM="Phòng"
SR_SEARCH_ROOM_ADULTS="Người lớn"
SR_SEARCH_ROOM_CHILDREN="Trẻ em"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Đặt chỗ đã bị hủy"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Đặt chỗ %s từ %s %s đã bị hủy"
SR_EMAIL_GREETING_TEXT_CANCELLED="Đặt phòng của bạn %s tại %s đã bị hủy."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Đặt phòng %s đã bị hủy, vui lòng kiểm tra chi tiết bên dưới hoặc <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">bấm vào đây</a> để xem:</p>"
SR_EMAIL_COUPON_CODE="Mã phiếu giảm giá: "

; Since 1.8.0
SR_FULLNAME="Tên đầy đủ"
SR_MESSAGE="Tin nhắn"
SR_SEND_MESSAGE="Gửi tin nhắn"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Yêu cầu đặt chỗ từ %s cho %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Cảm ơn bạn, yêu cầu của bạn đã được gửi thành công. Chúng tôi sẽ liên hệ lại với bạn trong thời gian sớm nhất có thể."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Mỗi đặt phòng cho mỗi lần lưu trú (đêm hoặc ngày)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Mỗi phòng cho mỗi lần lưu trú"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Mỗi phòng cho mỗi người mỗi lần lưu trú"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Giá phần trăm theo phòng hằng ngày"
SR_EXTRA_PRICE_DAILY_RATE="%s chi phí %d giá phòng hàng ngày cho mỗi lần lưu trú"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Phiên của bạn sắp hết hạn."
SR_WARNING_SESSION_EXPIRED="Phiên của bạn đã hết hạn, <a href="_QQ_"#"_QQ_">bấm vào đây</a> để bắt đầu một phiên mới."
SR_WEBSITE="Trang web"
SR_YOUR_STAY="Chổ lưu trú của bạn"
SR_AVAILABLE_ROOMS="Phòng còn trống"
SR_MAX_GUESTS="Số khách tối đa"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Đặt ngay bây giờ"
SR_TARIFF_PACKAGE_PER_ROOM="Gói cho mỗi phòng"
SR_TARIFF_PACKAGE_PER_PERSON="Gói cho mỗi người"
SR_TARIFF_PER_ROOM_PER_NIGHT="Giá cho mỗi phòng mỗi lần lưu trú"
SR_TARIFF_PER_PERSON_PER_NIGHT="Giá cho mỗi người mỗi lần lưu trú"
SR_ROOM_X_EXTRA_AMOUNT="Chi phí tiện ích phòng"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Đặt chỗ của bạn đã được sửa đổi thành công"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Gửi email đi?"
SR_FIELD_COUNTRY_SELECT=" - Chọn quốc gia - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Xử lý thanh toán trực tuyến?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Đặt chỗ của bạn đã được thêm thành công"
SR_SELECT_BED_QUANTITY="%s giường"
SR_SELECT_BED_QUANTITY_1="1 giường"
SR_BED="Giường"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Cám ơn %s! Yêu cầu đặt chỗ của bạn %s đã được gửi cho chúng tối, chúng tôi sẽ liên hệ lại với bạn sớm nhất có thể để xác nhận việc đặt chỗ này.</h3><ul><li><a href="_QQ_"%s"_QQ_">Bấm vào đây</a> để quay lại trang chủ của chúng tôi.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Số đặt chỗ của bạn %s đã bị hủy.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Bấm vào đây</a> để quay lại trang chủ của chúng tôi.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Thuế du khách"
SR_EMAIL_TOURIST_TAX="Thuế du khách: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="Phụ thu %s"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="Giảm giá %s"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="Phụ thu %s: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="Giảm giá %s: "
SR_CONFIRMATION_GUEST_NUMBER="Số khách hàng"
SR_SELECT_GUEST_QUANTITY="%s khách hàng"
SR_SELECT_GUEST_QUANTITY_1="1 khách hàng"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Thông tin phòng và giá"
SR_CONFIRMATION_PAYMENT_METHOD="Phương thức thnah toán: "
SR_CONFIRMATION_MOBILE="Điện thoại di động: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Chưa thanh toán"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Đã thanh toán"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Đã hủy"
SR_RESERVATION_PAYMENT_STATUS_PENDING="Đang chờ xử lý"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ giường "
SR_WE_HAVE_X_BED_LEFT="Chúng tôi còn lại %s giường"
SR_WE_HAVE_X_BED_LEFT_1="Chúng tôi còn lại %s giường!"
SR_ONLY_1_LEFT_BED="Cơ hội cuối cùng! Chỉ còn 1 giường"
SR_ONLY_2_LEFT_BED="Chỉ còn 2 giường"
SR_ONLY_3_LEFT_BED="Chỉ còn 3 giường"
SR_ONLY_4_LEFT_BED="Chỉ còn 4 giườngt"
SR_ONLY_5_LEFT_BED="Chỉ còn 5 giường"
SR_ONLY_6_LEFT_BED="Chỉ còn 6 giường"
SR_ONLY_7_LEFT_BED="Chỉ còn 7 giường"
SR_ONLY_8_LEFT_BED="Chỉ còn 8 giường"
SR_ONLY_9_LEFT_BED="Chỉ còn 9 giường"
SR_ONLY_10_LEFT_BED="Chỉ còn 10 giường"
SR_ONLY_11_LEFT_BED="Chỉ còn 11 giường"
SR_ONLY_12_LEFT_BED="Chỉ còn 12 giường"
SR_ONLY_13_LEFT_BED="Chỉ còn 13 giường"
SR_ONLY_14_LEFT_BED="Chỉ còn 14 giường"
SR_ONLY_15_LEFT_BED="Chỉ còn 15 giường"
SR_ONLY_16_LEFT_BED="Chỉ còn 16 giường"
SR_ONLY_17_LEFT_BED="Chỉ còn 17 giường"
SR_ONLY_18_LEFT_BED="Chỉ còn 18 giường"
SR_ONLY_19_LEFT_BED="Chỉ còn 19 giường"
SR_ONLY_20_LEFT_BED="Chỉ còn 20 giường"
SR_DUE_AMOUNT="Tổng số tiền còn lại phải thanh toán"
SR_EMAIL_DUE_AMOUNT="Số tiền còn lại phải thanh toán: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Đặt chỗ của bạn đã bị hủy."
SR_CHECKIN_PLACEHOLDER="Ngày nhận phòng của bạn"
SR_CHECKOUT_PLACEHOLDER="Ngày trả phòng của bạn"
SR_CHOOSE_ANOTHER_CHECKIN="Vui lòng chonk ngày nhận phòng khác"
SR_WARNING_SESSION_RENEW="Gia hạn"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Nhập email của bạn"
SR_ENTER_YOUR_RESERVATION_CODE="Nhập mã đặt chỗ của bạn"
SR_FIND_RESERVATION="Tìm đặt chỗ"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Đã tìm thấy mã đặt chỗ %s."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="Chúng tôi không thể tìm thấy bất kỳ đặt chỗ nào với thông tin đã cho của bạn, vui lòng kiểm tra lại thông tin của bạn và thử lại."
SR_RESERVATION_STATUS_FORMAT="Trạng thái đặt chỗ: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Hiển thị biểu mẫu theo dõi đặt chỗ của tài sản"
SR_TRACKING_VIEW_DEFAULT_DESC="Cho phép khách hàng kiểm tra đặt chỗ của họ bằng mã đặt chỗ + địa chỉ email"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ người "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s người "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Bị giới hạn"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/nl-NL/nl-NL.com_solidres.ini000060400000074145150751740420013365 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Zoekcriteria"
SR_SEARCH_FIELD_COUNTRY="Land"
SR_SEARCH_FIELD_STATE="Staat"
SR_SEARCH_FIELD_CITY="Stad"
SR_SEARCH_CHECKIN_DATE="Aankomstdatum"
SR_SEARCH_CHECKOUT_DATE="Vertrekdatum"
SR_SEARCH="Zoeken"
SR_RESET="Reset"
SR_REMEMBER_ME="Onthoud mij"
SR_FORGOT_YOUR_PASSWORD="Wachtwoord vergeten"
SR_FORGOT_YOUR_USERNAME="Gebruikersnaam vergeten"
SR_REGISTER="Registreer"
SR_SELECTED_RESERVATION_ASSET="Geselecteerd hotel"
SR_STAYING_INFO="Verblijfsinformatie"
SR_NUMBER_OF_ROOM="Kamers"
SR_GUEST_PER_ROOM="Aantal pers. per kamer"
SR_ROOM_RATE_INFO="Informatie kamer prijs"
SR_ROOM_DESCRIPTION="Kamerbeschrijving"
SR_ROOM_RATE_TYPE="Waardering kamertype"
SR_GUEST_INFO="Gastinformatie"
SR_FIRSTNAME="Voornaam"
SR_LASTNAME="Naam"
SR_EMAIL="e-mail"
SR_PHONENUMBER="Telefoonnummer"
SR_CONTACT_INFO="Contactinformatie"
SR_HOLD_GUARANTEE_INFO="Waarborg/garantie informatie"
SR_ARRIVAL_INFO="Aankomst informatie"
SR_TRAVEL_INFO="Reisinformatie"
SR_COMPANY="Bedrijf (Optioneel)"
SR_ADDRESS_1="Adres 1"
SR_ADDRESS_2="Adres 2 (Optioneel)"
SR_CITY="Gemeente"
SR_ZIP="Postcode"
SR_STATE="Staat/Provincie (Optioneel)"
SR_COUNTRY="Land"
SR_TRAVEL_FOR_BUSINESS="Zakelijk"
SR_TRAVEL_FOR_BUSINESS_DESC="Ik vind het leuk om werk gedaan te krijgen en productief te zijn als ik onderweg ben"
SR_TRAVEL_FOR_RELAX="Ontspanning / verwennerij"
SR_TRAVEL_FOR_RELAX_DESC="Ik hou van ontspannen en verjongen als ik weg ben van huis."
SR_TRAVEL_FOR_ENTERTAINMENT="Entertainment / attracties"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Ik wil plezier hebben en zien wat mijn bestemming te bieden heeft."
SR_TRAVEL_FOR_FAMILY="Familie"
SR_TRAVEL_FOR_FAMILY_DESC="Ik woon een familie-evenement bij of ben op vakantie met mijn familie."
SR_TRAVEL_FOR_HONEYMOON="Huwelijksreis"
SR_TRAVEL_FOR_HONEYMOON_DESC="Ik ga om te genieten van mijn huwelijksreis."
SR_COMMENT="Commentaar"
SR_COMMENT_DESC="Indien u opmerkingen heeft voor ons, vul deze hier in aub."
SR_TAX="Belastingen"
SR_RULE_RESTRICTION="Slechts 4 kamers over"
SR_SELECT_TARIFF="Kies"
SR_SHOW_MAP="Toon kaart"
SR_READMORE="Lees meer"
SR_PRICE_FROM="Prijs vanaf"
SR_FIELD_RESERVE="Reserveer nu"
SR_FIELD_CONDITIONS="Voorwaarden"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Zoek naar uw verblijf door het bovenstaande formulier te gebruiken"
SR_NO_ROOM_AVAILABLE="Volgeboekt!"
SR_MAX="Max. aantal pers."
SR_HAS_ROOM_AVAILABLE="Beschikbaar"
SR_AVAILABILITY="Beschikbaarheid"
SR_AVAILABLE_ROOM_TYPES="Beschikbare kamertypes"
SR_VIEW_GALLERY="Bekijk galerij"
SR_YOUR_SEARCH_INFORMATION="Uw zoekinformatie"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Inchecken:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Uitchecken:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Max. aantal volwassenen per kamer:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Max. aantal kinderen per kamer:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Verder"
SR_EXTRA_PACKAGES="Extra diensten"
SR_ROOM_TYPE_NAME="Kamertypes"
SR_ROOM_TYPE_QUANTITY="Aantal"
SR_ROOM_TYPE_GUEST_PER_ROOM="Personen per kamer"
SR_NUMBER_OF_NIGHT="Aantal nachten"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Kamers & tarief"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Aanvulende diensten"
SR_RESERVATION_PROGRESS_GUEST_INFO="Gast informatie"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Betalingsinformatie"
SR_RESERVATION_CONFIRMATION="Bevestiging"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Voltooien"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Cheque/Contant"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="Uw geselecteerde aantal kamers overschrijdt het aantal beschikbare verblijven. <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_"> klik hier </a> om terug te gaan en een andere selectie te maken."
SR_CHANGE="Bewerk"
SR_NOTE="Notitie (Optioneel)"
SR_MIDDLENAME="middelste naam (Optioeel)"
SR_RESERVATION_PROGRESS_DATES="Data & voorkeuren"
SR_ROOM_SELECTION="Kamer selectie"
SR_ROOM_TYPE_ADULT_PER_ROOM="Volwassenen per kamer"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Kinderen per kamer"
SR_ROOM_TYPE_GUEST_NAME="Gast naam"
SR_RESERVATION_NOTICE_CONFIRMATION="Controleer uw reserveringsgegevens en klik op de knop Voltooien om uw reservering te voltooien. Er wordt een bevestigingsmail naar uw opgegeven e-mailadres gestuurd."
SR_SEARCH_COUPON="Kortingscode"
SR_MAXIMUM_OCCUPANCY="maximum bezetting"
SR_OCCUPANCY_ADULT="Volwassene(n)"
SR_OCCUPANCY_CHILD="Kind(eren)"
SR_NIGHTS="%d nachten"
SR_NIGHTS_1="%d nacht"
SR_TOTAL_ROOM_COST_TAX_EXCL="Totaal kost kamer (exclusief belastingen)"
SR_TOTAL_ROOM_COST_TAX_INCL="Totaal kost kamer (inclusief belastingen)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Totaal extra diensten (exclusief belastingen)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Totaal extra diensten (inclusief belastingen)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Totaal extra belasting"
SR_PRICE_FOR_X_NIGHTS="Prijs voor %d nachten"
SR_ROOM_TYPE="Soorten kamers"
SR_NUMBER_OF_ROOMS="Aantal kamers"
SR_TARIFF_BREAK_DOWN="Tarief uitsplitsing"

; RESERVERINGSFORMULIER
SR_SEARCH_ADULT_NUMBER="Aantal volwassenen"
SR_SEARCH_CHILDREN_NUMBER="Aantal kinderen"
SR_NO_TARIFF_AVAILABLE="Geen beschikbaar tarief"
SR_EMAIL_RESERVATION_COMPLETE="Uw reservering is voltooid"

; Extra
SR_RESERVATION_EXTRA="Naam"
SR_RESERVATION_EXTRA_COST="Prijs"
SR_RESERVATION_EXTRA_QUANTITY="Aantal"

; E-mail kwesties
SR_RESERVATION_CAN_NOT_SEND_EMAIL="Een e-mail met een samenvatting van uw reservering kan niet worden verzonden."

SR_BOOK_NOW="Nu boeken"
SR_TOTAL_PRICE="Totale prijs"
SR_TAX_7_NOT_INCLUDED="BTW (7%) niet inbegrepen"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Servicekosten (10,70%) niet inbegrepen"

SR_RESERVATION_NOTE="Geeft alle informatie in die u aan uw reservering wilt toevoegen. Het personeel kan geen aanvullende verzoeken of opmerkingen garanderen. Vermijd het gebruik van speciale tekens."
SR_ASK_FOR_CHECKIN_CHECKOUT="Om de kamerkosten en beschikbaarheid te controleren, vul de incheck- en uitcheckdatums in op onderstaande formulier."
SR_GRAND_TOTAL="Eindtotaal"

; Aangepaste velden
SR_CUSTOMFIELD_FACILITIES="Faciliteiten"
SR_CUSTOMFIELD_POLICIES="Beleid"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Sociale netwerken"
SR_CUSTOMFIELD_GENERAL="Algemeen"
SR_CUSTOMFIELD_ACTIVITIES="Activiteiten"
SR_CUSTOMFIELD_SERVICES="Diensten"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parking"
SR_CUSTOMFIELD_CHECKIN="Aankomst"
SR_CUSTOMFIELD_CHECKOUT="Vertrek"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Annulering / vooruitbetaling"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Kinderen en extra bedden"
SR_CUSTOMFIELD_PETS="Huisdieren"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Geaccepteerde kredietkaarten"
SR_BREAKFAST_INCLUDED="Ontbijt inbegrepen"
SR_BREAKFAST_EXCLUDED="Ontbijt niet inbegrepen"
SR_FREE_CANCELLATION="Gratis annulering"
SR_NON_REFUNDABLE="Niet terugbetaalbaar"
SR_ROOM_OCCUPANCY="Bezetting"
SR_TAXES="Belastingen"
SR_PREPAYMENT="Vooruitbetaling"
SR_ROOM_FACILITIES="Kamer faciliteiten"
SR_ROOM_SIZE="Afmeting van de kamer"
SR_BED_SIZE="Afmeting bed"

SR_COUPON_ENTER="Voer kortingscode in (Optioneel)"
SR_COUPON_ACCEPTED="Kortingscode werd geaccepteerd"
SR_COUPON_REJECTED="Kortingscode is niet geldig"
SR_APPLY_COUPON="Gebruik kortingscode"

SR_ROOM_AVAILABLE_FROM_TO="Wij hebben %s kamers beschikbaar van %s tot %s voor uw zoekopdracht, geschikt voor %s volwassenen en %s kinderen"
SR_APPLIED_COUPON="Toegepaste kortingscode"
SR_REMOVE="Verwijderen"
SR_CAN_NOT_REMOVE_COUPON="Kortingscode kan niet verwijderd worden"
SR_AVAILABILITY_CALENDAR="Beschikbaarheidskalender"
SR_AVAILABILITY_CALENDAR_VIEW="Kalender weergeven"

SR_AVAILABILITY_CALENDAR_BUSY="Niet beschikbaar"
SR_FEATURED_ROOM_TYPE="Uitgelicht"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Selecteer minimaal één kamertype om door te gaan."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Ongeldig. U moet ten minste %d dagen en niet meer dan %d dagen vóór uw aankomst boeken. De minimale verblijfsduur is %d dagen."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Ongeldig. Vertrekdatum moet na de dag van aankomst zijn."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Ongeldig. Minimale verblijfsduur is %d nachten."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Ongeldig. Je moet minstens %d dagen voor aankomst boeken."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Ongeldig. Het is niet toegestaan om meer dan %d dagen voor uw aankomst te boeken."
SR_NEXT="Volgende"
SR_BACK="Terug"
SR_CUSTOMER_TITLE="Aanspreking (Optioneel)"
SR_CUSTOMER_TITLE_MR="Dhr."
SR_CUSTOMER_TITLE_MRS="Mevr."
SR_CUSTOMER_TITLE_MS="Mej."
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Tarieftype: personen per nacht, geeft het aantal verblijven en daarna uw bezettingsgraad op om het exacte tarief te bekomen voor deze kamer."
SR_ERROR_CHILD_MAX_AGE="Leeftijden moeten zijn tussen"
SR_BOOKING_CONDITIONS="Boekingsvoorwaarden"
SR_PRIVACY_POLICY="Privacybeleid"
SR_ROOM_COST="Kamerkost: "
SR_ENHANCE_YOUR_STAY="Verbeter uw verblijf"
SR_I_AGREE_WITH="Ik ga akkoord met "
SR_GUEST_INFORMATION="Gast informatie"
SR_PAYMENT_INFO="Betalingsinformatie"
SR_GUEST_INFO_STEP_NOTICE="Vul uw gegevens in en betaalmethode"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Selecteer uw kamertype, bekijk de prijzen en klik op Volgende om verder te gaan"
SR_AGE_OF_CHILD_AT_CHECKOUT="Leeftijd van kind(eren) bij het vertrek"
SR_GUEST_NAME="Gast naam"
SR_ROOM="Kamer"
SR_CHILD="Kind"
SR_ADULT="Volwassen"
SR_ROOMTYPE_QUANTITY="Aantal"
SR_AND="en"
SR_STEP_ROOM_AND_RATE="Kamer & tarieven"
SR_STEP_GUEST_INFO_AND_PAYMENT="Info & betaling"
SR_STEP_CONFIRMATION="Bevestiging"
SR_PAYMENT_METHOD_PAYLATER="Betaal later"
SR_PAYMENT_METHOD_BANKWIRE="Bankoverschrijving"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Houd er rekening mee dat het enkele dagen kan duren voordat de betaling uitgevoerd is. In de betalingsinstructies voor bankoverschrijvingen dient u uw reservatienummer in te voeren zodat wij uw reservering sneller kunnen verwerken."
SR_PROCESSING="Verwerken..."

; Sinds 0.6.0
SR_STAR="ster"
SR_STARS="sterren"
JGLOBAL_FIELDSET_PUBLISHING="Publiceren"
JTOOLBAR_APPLY="Opslaan"
JTOOLBAR_ARCHIVE="Archief"
JTOOLBAR_ASSIGN="Toewijzen"
JTOOLBAR_BACK="Terug"
JTOOLBAR_BATCH="Batch"
JTOOLBAR_CANCEL="Annuleren"
JTOOLBAR_CHECKIN="Aankomst"
JTOOLBAR_CLOSE="Sluiten"
JTOOLBAR_DEFAULT="Standaard"
JTOOLBAR_DELETE="Verwijderen"
JTOOLBAR_DISABLE="Deactiverenr"
JTOOLBAR_DUPLICATE="Dupliceren"
JTOOLBAR_EDIT="Bewerk"
JTOOLBAR_EDIT_CSS="Bewerk CSS"
JTOOLBAR_EDIT_HTML="Bewerk HTML"
JTOOLBAR_EMPTY_TRASH="Prullenbak leegmaken"
JTOOLBAR_ENABLE="Inschakelen"
JTOOLBAR_EXPORT="Exporteren"
JTOOLBAR_HELP="Help"
JTOOLBAR_INSTALL="Installeren"
JTOOLBAR_NEW="Nieuw"
JTOOLBAR_OPTIONS="Opties"
JTOOLBAR_PUBLISH="Publiceren"
JTOOLBAR_PURGE_CACHE="Cache leegmaken"
JTOOLBAR_REBUILD="Opnieuw opbouwen"
JTOOLBAR_REFRESH_CACHE="Cache vernieuwen"
JTOOLBAR_REMOVE="Verwijderen"
JTOOLBAR_SAVE="Opslaan & Sluiten"
JTOOLBAR_SAVE_AND_NEW="Opslaan & Nieuw"
JTOOLBAR_SAVE_AS_COPY="Opslaan als kopie"
JTOOLBAR_UNARCHIVE="Uit archief halen"
JTOOLBAR_UNINSTALL="Deïnstalleren"
JTOOLBAR_UNPUBLISH="depubliceren"
JTOOLBAR_UPLOAD="Upload"
JTOOLBAR_TRASH="Prullenbak"
JTOOLBAR_UNTRASH="Terugplaatsen"
JTOOLBAR_REBUILD_SUCCESS="Succesvolle heropbouw"
JTOOLBAR_VERSIONS="Versies"
SR_SEARCH_LOCATION="Locatie"
SR_DASHBOARD="Dashboard"
SR_PHONE="Telefoon"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Overboekingsbedrag"
SR_TOTAL_ROOM_TAX="Totale kamerbelasting"

; Sinds 0.7.0
SR_STANDARD_TARIFF="Standaardtarief"
SR_SEARCH_RESET="Terugzetten"
SR_SELECT_A_TARIFF="Selecteer een tarief"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="We hebben geen kamers beschikbaar van dit type tussen %s en %s. <a href="_QQ_"%s"_QQ_">Klik hier om opnieuw te beginnen door uw datums te wijzigen.</a>"
SR_SELECT_A_TARIFF_FIRST="Selecteer eerst een tarief."
SR_SMOKING="Roken"
SR_SMOKING_ROOM="Rookkamer"
SR_NON_SMOKING_ROOM="Rookvrije kamer"
SR_SELECT_ROOM_QUANTITY="%s kamers"
SR_SELECT_ROOM_QUANTITY_1="1 kamer"
SR_SELECT_ADULT_QUANTITY="%s volwassenen"
SR_SELECT_ADULT_QUANTITY_1="1 volwassen"
SR_SELECT_CHILD_QUANTITY="%s kinderen"
SR_SELECT_CHILD_QUANTITY_1="1 kind"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s nachten"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 nacht"
SR_TARIFF_SUFFIX_PER_ROOM="/ kamer "
SR_CHILD_AGE_SELECTION="%s jaar oud"
SR_CHILD_AGE_SELECTION_1="%s jaar oud"
SR_CHILD_AGE_SELECTION_JS="jaar oud"
SR_CHILD_AGE_SELECTION_1_JS="jaar oud"
SR_EMAIL_CONFIRM_RESERVATION="Bevestiging van de reservering"
SR_EMAIL_REF_ID="Referentie ID: %s"
SR_EMAIL_GREETING_NAME="Best(e) %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Bedankt voor je reservering bij %s. Indien u nog vragen heeft, aarzel dan niet om contact met ons op te nemen.</p><p>We bevestigen uw reservering als volgt:</p>"
SR_EMAIL_CHECKIN="Aankomst: "
SR_EMAIL_CHECKOUT="Vertrek: "
SR_EMAIL_PAYMENT_METHOD="Betaalmethode: "
SR_EMAIL_EMAIL="e-mail: "
SR_EMAIL_NUM_NIGHT="Aantal nachten: "
SR_EMAIL_SUB_TOTAL="Prijs van de kamer (excl. BTW): "
SR_EMAIL_TAX="Belasting kamerkost: "
SR_EMAIL_GRAND_TOTAL="Eindtotaal: "
SR_EMAIL_DEPOSIT_AMOUNT="Bedrag voorschot: "
SR_EMAIL_EXTRAS_ITEMS="Extra items: "
SR_EMAIL_CONNECT_WITH_US="Maak contact met ons: "
SR_EMAIL_CONTACT_INFO="Contact info: "
SR_EMAIL_ADDRESS="Adres: "
SR_EMAIL_PHONE="Telefoon: "
SR_EMAIL_OTHER_INFO="Andere info"
SR_EMAIL_EXTRA_QUANTITY="Hoeveelheid: "
SR_EMAIL_EXTRA_PRICE="Prijs: "
SR_EMAIL_NOTE="Notitie: "
SR_EMAIL_BANKWIRE_INFO="Bankoverschrijving info"
SR_EMAIL_NOTIFICATION_RESERVATION="Boeking kennisgeving "
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>Een nieuwe reservering is gemaakt, kijk hieronder of <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">klik hier</a> om het te bekijken:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Hallo,"
SR_EMAIL_EXTRA_TAX_EXCL="Extra kosten (excl. BTW): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Extra belastingen: "
SR_VAT_NUMBER="BTW-nummer (Optioneel)"
SR_PASSWORD="Wachtwoord"
SR_USERNAME="Gebruikersnaam"
SR_WE_HAVE_X_ROOM_LEFT="We hebben nog %s kamers beschikbaar"
SR_WE_HAVE_X_ROOM_LEFT_1="We hebben nog slechts %s kamer beschikbaar"
SR_ONLY_1_LEFT="Laatste kans! Nog maar 1 kamer over."
SR_ONLY_2_LEFT="Nog 2 kamers beschikbaar"
SR_ONLY_3_LEFT="Nog 3 kamers beschikbaar"
SR_ONLY_4_LEFT="Nog 4 kamers beschikbaar"
SR_ONLY_5_LEFT="Nog 5 kamers beschikbaar"
SR_ONLY_6_LEFT="Nog 6 kamers beschikbaar"
SR_ONLY_7_LEFT="Nog 7 kamers beschikbaar"
SR_ONLY_8_LEFT="Nog 8 kamers beschikbaar"
SR_ONLY_9_LEFT="Nog 9 kamers beschikbaar"
SR_ONLY_10_LEFT="Nog 10 kamers beschikbaar"
SR_ONLY_11_LEFT="Nog 11 kamers beschikbaar"
SR_ONLY_12_LEFT="Nog 12 kamers beschikbaar"
SR_ONLY_13_LEFT="Nog 13 kamers beschikbaar"
SR_ONLY_14_LEFT="Nog 14 kamers beschikbaar"
SR_ONLY_15_LEFT="Nog 15 kamers beschikbaar"
SR_ONLY_16_LEFT="Nog 16 kamers beschikbaar"
SR_ONLY_17_LEFT="Nog 17 kamers beschikbaar"
SR_ONLY_18_LEFT="Nog 18 kamers beschikbaar"
SR_ONLY_19_LEFT="Nog 19 kamers beschikbaar"
SR_ONLY_20_LEFT="Nog 20 kamers beschikbaar"
SR_SHOW_MORE_INFO="Meer info"
SR_HIDE_MORE_INFO="Verbergen info"
SR_AVAILABILITY_CALENDAR_CLOSE="Kalender sluiten"
SR_STARTING_FROM="Vanaf"
SR_SELECT="Kies"
SU="Zo"
MO="Ma"
TU="Di"
WE="Wo"
TH="Do"
FR="Vr"
SA="Za"
SR_USERNAME_EXISTS="Gebruikersnaam bestaat. Kies alstublieft een andere."
JFIELD_METADATA_ROBOTS_DESC="Robots-instructies"
JFIELD_METADATA_ROBOTS_LABEL="Robots"
JFIELD_XREFERENCE_DESC="Een optioneel veld om toe te staan dat deze record indien nodig wordt doorverwezen naar een extern gegevenssysteem."
JFIELD_XREFERENCE_LABEL="Externe referentie"
JCLEAR="Wissen"

; Sinds 0.7.1
SR_REGISTER_WITH_US_TEXT="Meld je aan bij ons voor toekomstige reservatoes: snel en gemakkelijk boeken. Vuld de gewenste gebruikersnaam en wachtwoord in bij volgende velden."
SR_PRICE_IS_FOR_X_NIGHT="De prijs is voor %s nachten"
SR_PRICE_IS_FOR_X_NIGHT_1="De prijs is voor %s nacht"

; Sinds 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="We hebben geen overeenkomende kamers gevonden voor je zoekopdracht van %s tot %s, pas de boekingsdatums of kameropties aan..µ"
SR_ROOM_AVAILABLE_FROM_TO_MSG1="We hebben %s kamers gevonden die overeenkomen met je zoekopdracht van %s tot %s voor %s volwassen(en) en %s kind(eren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="We hebben minder dan uw aantal gevraagde kamers, maar onze huidige beschikbare kamers (%s) kunnen uw zoekopdracht van %s tot %s voor %s volwassen(en) en %s kind(eren) voldoen als u een ander aantal kamers kiest."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Sorry, maar onze kamers zijn niet beschikbaar voor uw zoekopdracht van %s tot %s voor %s volwassen(s) en %s kind(eren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="We hebben %s kamers gevonden die overeenkomen met uw zoekopdracht van %s tot %s."
SR_MOBILEPHONE="GSM"
SR_RESERVATION_SAVE_ERROR="Uw reservering kan niet worden opgeslagen. Probeer het opnieuw."
SR_EMAIL_PAYMENT_METHOD_INFO="Betalingsinformatie"
SR_RESERVATION_COMPLETE="<h3>Bedankt %s! Uw reserveringsnummer %s is met succes aangemaakt.</h3><ul> <li>We hebben een bevestigingsmail naar %s gestuurd</li><li>We hebben ook %s geïnformeerd over uw aanstaande verblijf </li><li><a href="_QQ_"%s"_QQ_">Klik hier</a> om terug te gaan naar onze startpagina.</li></ul>"
SR_EXTRA_PRICE_ADULT="Voor volwassenen"
SR_EXTRA_PRICE_CHILD="voor kinderen"
SR_EXTRA_MORE_DETAILS="Details"
SR_EXTRA_PRICE="Prijs"
SR_TOTAL_DISCOUNT="Totale korting"
SR_EMAIL_TOTAL_DISCOUNT="Totale korting: "
SR_ROOM_X_COST="Kamerkost"
SR_ROOM_X_DISCOUNTED_AMOUNT="Korting kamer"
SR_ROOM_X_DISCOUNTED_COST="Kamerkost na korting"
SR_VIEW_TARIFF_BREAKDOWN="Details"
SR_SHOW_TARIFFS="Toon prijzen"
SR_HIDE_TARIFFS="Verberg prijzen"
SR_CONFIRMATION_ROOM_DETAILS="Details"
SR_CONFIRMATION_GUEST_NAME="Gast naam"
SR_CONFIRMATION_ADULT_NUMBER="Aantal volwassenen"
SR_CONFIRMATION_CHILD_NUMBER="Aantal kinderen"
SR_CONFIRMATION_FULLNAME="Uw volledige naam: "
SR_EXTRA="Supplement"
SR_EXTRA_PER_BOOKING="Per reservatie"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Per reservatie"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Per kamer"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Per reservatie en per nacht"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Per reservatie en per persoon"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Per kamer en per nacht"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Per kamer en per persoon"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Per persoon en per nacht"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Per kamer, per persoon en per nacht"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Prijs voor een volwassene"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Voer de prijs in voor een volwassene van deze supplementen/diensten. De valuta van de reserveringsinstantie zal hier worden toegepast."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Prijs voor een kind"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Voer de prijs in voor een kind van deze supplementen/diensten. De valuta van de reserveringsinstantie zal hier worden toegepast."

; Sinds 0.9.0
SR_DAYS="%d dagen"
SR_DAYS_1="%d dag"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s dagen"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 dag"
SR_LENGTH_OF_STAY="Verblijfsduur"
SR_EMAIL_LENGTH_OF_STAY="Verblijfsduur:"
SR_PRICE_IS_FOR_X_DAY="Prijs is voor %s dagen"
SR_PRICE_IS_FOR_X_DAY_1="Prijs is voor %s dag"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Kamer enkel supplement"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Kamerkost na enkel supplement"
JLIB_APPLICATION_SAVE_SUCCESS="Item succesvol opgeslagen."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Item succesvol verstuurd."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="New reservation %s from %s %s"
SR_RESERVATION_CODE="Code"
SR_RESERVATION_INVOICE="Factuur"
SR_RESERVATION_CHECKIN="Aankomst"
SR_RESERVATION_CHECKOUT="Vertrek"
SR_RESERVATION_ASSET="Instantie"
SR_RESERVATION_TOTAL_PAID="Totaal betaald"
SR_DESCRIPTION="Beschrijving"

; Sinds 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Boekingsnummer"
SR_CONFIRMATION_EMAIL="e-mail: "
SR_CONFIRMATION_BOOKING_DETAILS="Boekingsdetails"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s kamers"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s kamer"
SR_CONFIRMATION_CHECKIN="Aankomst"
SR_CONFIRMATION_CHECKOUT="Vertrek"
SR_CONFIRMATION_TOTAL_PRICE="Totale prijs"
SR_CONFIRMATION_ASSET_NAME="Naam"
SR_CONFIRMATION_ASSET_ADDRESS="Adres"
SR_CONFIRMATION_ASSET_EMAIL="e-mail"
SR_CONFIRMATION_ASSET_PHONE="Telefoon"
SR_ASSET_INFO="Hotelinformatie"
SR_BOOKING_INFO="Uw boekingsinformatie"
SR_BOOKING_CONFIRMATION_ADULTS="%s volwassenen"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s volwassene"
SR_BOOKING_CONFIRMATION_CHILDREN="%s kinderen"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s kind"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Volledige gast naam"
SR_BOOKING_CONFIRMATION_SMOKING="Roken"
SR_BOOKING_CONFIRMATION_ROOM_COST="Kamerkost"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Kamerdetails"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Je datums lijken in het verleden te liggen"

; Sinds 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Bedankt %s! Uw reserveringsnummer %s is met succes verwerkt maar de betaling is nog niet voltooid.</h3><ul> <li>We hebben een bevestigingsmail naar %s gestuurd</li><li>We hebben ook %s geinformeerd over uw aanstaande verblijf</li><li><a href="_QQ_"%s"_QQ_">Klik hier</a> om terug te gaan naar onze startpagina.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Ongeldig. Minimale verblijfsduur is %d nachten."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Ongeldig. Minimale verblijfsduur is %d dagen."
SR_USER_INFO_USERNAME_PLURAL="U bent ingelogd met gebruikersnaam: %s"

; Sinds 0.9.4
SR_COUPON_CHECK="Controleer"
SR_RESERVATION_ORIGIN_DIRECT="Direct"

; Sinds 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="Voor dit kamertype zijn ten minste %d personen en maximum %d personen vereist."
SR_RESERVE="Reserveren"
SR_SEARCH_ROOMS="Kamers"
SR_SEARCH_ROOM="Kamer"
SR_SEARCH_ROOM_ADULTS="Volwassenen"
SR_SEARCH_ROOM_CHILDREN="Kinderen"

; Sinds 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Reservering is geannuleerd"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Reservering %s van %s %s is geannuleerd"
SR_EMAIL_GREETING_TEXT_CANCELLED="Uw reservering %s op %s is geannuleerd."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Reservering %s is geannuleerd, controleer de details hieronder of <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">klik hier</a> om het te bekijken:</p>"
SR_EMAIL_COUPON_CODE="Kortingscode: "

; Sinds 1.8.0
SR_FULLNAME="Volledige naam"
SR_MESSAGE="Bericht"
SR_SEND_MESSAGE="Verzend bericht"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Reserveringsaanvraag van %s voor %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Bedankt, uw aanvraag is met succes verzonden. We nemen zo snel mogelijk contact met u op."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per boeking per reservatie (nacht of dag)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Per kamer per reservatie"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per kamer per persoon per reservatie"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Percentage van het dagtarief van de kamer"
SR_EXTRA_PRICE_DAILY_RATE="%s kosten %d procent van dagelijkse kamerkost per verblijf"

; Sinds 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Uw sessie verloopt binnenkort."
SR_WARNING_SESSION_EXPIRED="Uw sessie is verlopen, <a href="_QQ_"#"_QQ_">klik hier</a> om een nieuwe sessie te starten."
SR_WEBSITE="Website"
SR_YOUR_STAY="Uw reservatie"
SR_AVAILABLE_ROOMS="Beschikbare kamer"
SR_MAX_GUESTS="Max. gasten"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Boek nu"
SR_TARIFF_PACKAGE_PER_ROOM="Pakket per kamer"
SR_TARIFF_PACKAGE_PER_PERSON="Pakket per persoon"
SR_TARIFF_PER_ROOM_PER_NIGHT="Tarief per kamer per verblijf"
SR_TARIFF_PER_PERSON_PER_NIGHT="Tarief per person per verblijf"
SR_ROOM_X_EXTRA_AMOUNT="Tarief van de extra kameritems"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Uw reservering is succesvol gewijzigd"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Verstuur uitgaande e-mails?"
SR_FIELD_COUNTRY_SELECT=" - Selecteer land - "

; Sinds 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Verwerk online betaling?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Uw reservering is succesvol toegevoegd"
SR_SELECT_BED_QUANTITY="%s bedden"
SR_SELECT_BED_QUANTITY_1="1 bed"
SR_BED="Bed"

; Sinds 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Bedankt %s! Uw reserveringsaanvraag %s is naar ons verzonden, wij nemen zo spoedig mogelijk contact met u op om deze reservering te bevestigen.</h3><ul><li><a href="_QQ_"%s"_QQ_">Klik hier</a> om terug te keren naar onze startpagina.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Uw reserveringsnummer %s is geannuleerd.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Klik hier</a> om terug te gaan naar onze startpagina.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Toeristenbelasting"
SR_EMAIL_TOURIST_TAX="Toeristenbelasting: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s toeslag"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s korting"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s toeslag: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s korting: "
SR_CONFIRMATION_GUEST_NUMBER="Gast nummer"
SR_SELECT_GUEST_QUANTITY="%s gasten"
SR_SELECT_GUEST_QUANTITY_1="1 gast"

; Sinds 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Kamers en tariefinformatie"
SR_CONFIRMATION_PAYMENT_METHOD="Betaalmethode: "
SR_CONFIRMATION_MOBILE="GSM: "

; Sinds 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Onbetaald"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Betaald"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Geannuleerd"
SR_RESERVATION_PAYMENT_STATUS_PENDING="In afwachting"

; Sinds 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ bed "
SR_WE_HAVE_X_BED_LEFT="We hebben %s bedden beschikbaar"
SR_WE_HAVE_X_BED_LEFT_1="We hebben %s bed beschikbaar!"
SR_ONLY_1_LEFT_BED="Laatste kans! Nog maar 1 bed beschikbaar"
SR_ONLY_2_LEFT_BED="Slechts 2 bedden beschikbaar"
SR_ONLY_3_LEFT_BED="Slechts 3 bedden beschikbaar"
SR_ONLY_4_LEFT_BED="Slechts 4 bedden beschikbaar"
SR_ONLY_5_LEFT_BED="Slechts 5 bedden beschikbaar"
SR_ONLY_6_LEFT_BED="Slechts 6 bedden beschikbaar"
SR_ONLY_7_LEFT_BED="Slechts 7 bedden beschikbaar"
SR_ONLY_8_LEFT_BED="Slechts 8 bedden beschikbaar"
SR_ONLY_9_LEFT_BED="Slechts 9 bedden beschikbaar"
SR_ONLY_10_LEFT_BED="Slechts 10 bedden beschikbaar"
SR_ONLY_11_LEFT_BED="Slechts 11 bedden beschikbaar"
SR_ONLY_12_LEFT_BED="Slechts 12 bedden beschikbaar"
SR_ONLY_13_LEFT_BED="Slechts 13 bedden beschikbaar"
SR_ONLY_14_LEFT_BED="Slechts 14 bedden beschikbaar"
SR_ONLY_15_LEFT_BED="Slechts 15 bedden beschikbaar"
SR_ONLY_16_LEFT_BED="Slechts 16 bedden beschikbaar"
SR_ONLY_17_LEFT_BED="Slechts 17 bedden beschikbaar"
SR_ONLY_18_LEFT_BED="Slechts 18 bedden beschikbaar"
SR_ONLY_19_LEFT_BED="Slechts 19 bbedden beschikbaar"
SR_ONLY_20_LEFT_BED="Slechts 20 bedden beschikbaar"
SR_DUE_AMOUNT="Totaal verschuldigd bedrag"
SR_EMAIL_DUE_AMOUNT="Verschuldigd bedrag: "

; Sinds 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Uw reservering is geannuleerd."
SR_CHECKIN_PLACEHOLDER="Uw aankomstdatum"
SR_CHECKOUT_PLACEHOLDER="Uw vertrekdatum"
SR_CHOOSE_ANOTHER_CHECKIN="Kies een andere aankomstdatum"
SR_WARNING_SESSION_RENEW="Vernieuw"

; Sinds 2.6.1
SR_ENTER_YOUR_EMAIL="Voer je e-mailadres in"
SR_ENTER_YOUR_RESERVATION_CODE="Voer uw reserveringscode in"
SR_FIND_RESERVATION="Vind reservering"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reserveringscode %s gevonden."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="We kunnen geen reserveringen vinden met de door u gegeven informatie. Controleer uw gegevens en probeer het opnieuw."
SR_RESERVATION_STATUS_FORMAT="Reserveringsstatus: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Toon reserveringsformulier van de instantie"
SR_TRACKING_VIEW_DEFAULT_DESC="Laat gasten hun reservering controleren met behulp van de reserveringscode + e-mailadres"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s people "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/es-ES/es-ES.com_solidres.ini000060400000073641150751740420013355 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Criterios de búsqueda"
SR_SEARCH_FIELD_COUNTRY="País"
SR_SEARCH_FIELD_STATE="Provincia"
SR_SEARCH_FIELD_CITY="Ciudad"
SR_SEARCH_CHECKIN_DATE="Fecha de Entrada"
SR_SEARCH_CHECKOUT_DATE="Fecha de salida"
SR_SEARCH="Buscar"
SR_RESET="Borrar"
SR_REMEMBER_ME="Recuérdame"
SR_FORGOT_YOUR_PASSWORD="¿Olvidaste tu contraseña?"
SR_FORGOT_YOUR_USERNAME="¿Has olvidado tu nombre de usuario?"
SR_REGISTER="Registrarse"
SR_SELECTED_RESERVATION_ASSET="Hotel seleccionado"
SR_STAYING_INFO="Información del alojamiento"
SR_NUMBER_OF_ROOM="Habitaciones"
SR_GUEST_PER_ROOM="Personas por habitación"
SR_ROOM_RATE_INFO="info de la Tarifa de la habitación"
SR_ROOM_DESCRIPTION="Descripción de la habitación"
SR_ROOM_RATE_TYPE="tipo de tarifa de la habitación"
SR_GUEST_INFO="Información del cliente"
SR_FIRSTNAME="Nombre"
SR_LASTNAME="2º Apellido"
SR_EMAIL="Email"
SR_PHONENUMBER="Número de teléfono"
SR_CONTACT_INFO="Información de contacto"
SR_HOLD_GUARANTEE_INFO="Mantenimiento / información de garantía"
SR_ARRIVAL_INFO="Información de llegada"
SR_TRAVEL_INFO="Cómo llegar"
SR_COMPANY="Compañía"
SR_ADDRESS_1="Dirección 1"
SR_ADDRESS_2="Dirección 2"
SR_CITY="Ciudad"
SR_ZIP="Código Postal"
SR_STATE="Estado / Provincia"
SR_COUNTRY="País"
SR_TRAVEL_FOR_BUSINESS="Productividad / Negocios"
SR_TRAVEL_FOR_BUSINESS_DESC="Me gustaría ser capaz de realizar su trabajo y ser productivo cuando estoy en el camino"
SR_TRAVEL_FOR_RELAX="Relajación"
SR_TRAVEL_FOR_RELAX_DESC="me gusta relajarme cuando estoy lejos de casa."
SR_TRAVEL_FOR_ENTERTAINMENT="Entretenimiento / Lugares de interés"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Yo quiero divertirme y ver lo mejor que mi destino tiene para ofrecer."
SR_TRAVEL_FOR_FAMILY="Familia"
SR_TRAVEL_FOR_FAMILY_DESC="Estoy asistiendo a un evento familiar o de vacaciones con mi familia."
SR_TRAVEL_FOR_HONEYMOON="luna de miel"
SR_TRAVEL_FOR_HONEYMOON_DESC="voy a disfrutar de mi luna de miel."
SR_COMMENT="Comentario"
SR_COMMENT_DESC="Por favor escribe aquí un comentario."
SR_TAX="Impuestos"
SR_RULE_RESTRICTION="solo 4 habitaciones disponibles"
SR_SELECT_TARIFF="Select"
SR_SHOW_MAP="Mostrar mapa"
SR_READMORE="Leer más"
SR_PRICE_FROM="Precio a partir de"
SR_FIELD_RESERVE="Reserva ahora"
SR_FIELD_CONDITIONS="Condiciones"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Busca un hotel utilizando el formulario de arriba"
SR_NO_ROOM_AVAILABLE="No hay espacio disponible"
SR_MAX="Número máximo de personas permitido"
SR_HAS_ROOM_AVAILABLE="Disponible"
SR_AVAILABILITY="disponibilidad"
SR_AVAILABLE_ROOM_TYPES="tipos de habitaciones disponibles"
SR_VIEW_GALLERY="Ver la galería"
SR_YOUR_SEARCH_INFORMATION="La información de su búsqueda"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Entrada"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Salida"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Total de adultos por habitación :"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Total de niños por habitación :"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Continuar"
SR_EXTRA_PACKAGES="paquetes adicionales"
SR_ROOM_TYPE_NAME="Tipo de habitación"
SR_ROOM_TYPE_QUANTITY="Cantidad"
SR_ROOM_TYPE_GUEST_PER_ROOM="Persona por habitación"
SR_NUMBER_OF_NIGHT="El número de noches"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="habitación y precio"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="paquetes adicionales"
SR_RESERVATION_PROGRESS_GUEST_INFO="Información del cliente"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Información de pago"
SR_RESERVATION_CONFIRMATION="Confirmación"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Finalizar"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Cheque/Dinero"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="El número de habitaciones seleccionadas excede el número de habitaciones disponibles en este momento, por favor <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">haga click aquí</a> para volver a hacer otra selección."
SR_CHANGE="Cambiar"
SR_NOTE="Nota"
SR_MIDDLENAME="1er Apellido"
SR_RESERVATION_PROGRESS_DATES="fecha y preferencias"
SR_ROOM_SELECTION="Selección de habitaciones"
SR_ROOM_TYPE_ADULT_PER_ROOM="Adultos por habitación"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Niños por habitación"
SR_ROOM_TYPE_GUEST_NAME="Nombre del cliente"
SR_RESERVATION_NOTICE_CONFIRMATION="Por favor, revise los detalles de su reserva y haga clic en el botón de abajo para finalizar su reserva . Un correo electrónico de confirmación será enviado a su dirección de correo electrónico indicada ."
SR_SEARCH_COUPON="Cupón"
SR_MAXIMUM_OCCUPANCY="Capacidad máxima"
SR_OCCUPANCY_ADULT="Adulto(s)"
SR_OCCUPANCY_CHILD="Niño(s)"
SR_NIGHTS="%d noches"
SR_NIGHTS_1="%d la noche"
SR_TOTAL_ROOM_COST_TAX_EXCL="Precio total ( excluye impuestos )"
SR_TOTAL_ROOM_COST_TAX_INCL="Precio total ( incluye impuestos )"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Coste total adicional ( excluye impuestos )"
SR_TOTAL_EXTRA_COST_TAX_INCL="Coste total adicional ( incluye impuestos )"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Total impuesto extra"
SR_PRICE_FOR_X_NIGHTS="Precio de % noches"
SR_ROOM_TYPE="Tipos de habitación"
SR_NUMBER_OF_ROOMS="número de habitación"
SR_TARIFF_BREAK_DOWN="Tarifa rota"

; FORMULARIO DE RESERVA
SR_SEARCH_ADULT_NUMBER="número de adultos"
SR_SEARCH_CHILDREN_NUMBER="número de niños"
SR_NO_TARIFF_AVAILABLE="No hay tarifa disponible"
SR_EMAIL_RESERVATION_COMPLETE="Su reserva está completada"

; extra
SR_RESERVATION_EXTRA="Nombre"
SR_RESERVATION_EXTRA_COST="Coste"
SR_RESERVATION_EXTRA_QUANTITY="Cantidad"

; cuestiones Email
SR_RESERVATION_CAN_NOT_SEND_EMAIL="EL Email que contiene el resumen de su reserva no se ha podido enviar."

SR_BOOK_NOW="Reserve ahora"
SR_TOTAL_PRICE="Precio Total"
SR_TAX_7_NOT_INCLUDED="TAX ( 7 %) no incluido"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Cargo de servicio ( 10,70 %) no incluido"

SR_RESERVATION_NOTE="Ingrese la información que desea adjuntar a su reserva . El personal del hotel no puede garantizar las peticiones o comentarios adicionales. Por favor, evite el uso de caracteres especiales."
SR_ASK_FOR_CHECKIN_CHECKOUT="Para chequear las tarifas de habitaciones y disponibilidad , por favor , introduzca su check-in y check-out fechas en el formulario de abajo"
SR_GRAND_TOTAL="Total general"

; Los campos personalizados
SR_CUSTOMFIELD_FACILITIES="Instalaciones"
SR_CUSTOMFIELD_POLICIES="Políticas"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="redes sociales"
SR_CUSTOMFIELD_GENERAL="General"
SR_CUSTOMFIELD_ACTIVITIES="Actividades"
SR_CUSTOMFIELD_SERVICES="Servicios"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parking"
SR_CUSTOMFIELD_CHECKIN="Entrada"
SR_CUSTOMFIELD_CHECKOUT="Salida"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Cancelaciones / Pago por adelantado"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Los niños y camas supletorias"
SR_CUSTOMFIELD_PETS="Animales"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Las tarjetas de crédito aceptadas"
SR_BREAKFAST_INCLUDED="Desayuno incluido"
SR_BREAKFAST_EXCLUDED="El desayuno no incluido"
SR_FREE_CANCELLATION="Cancelaciones sin cargos"
SR_NON_REFUNDABLE="no reembolsable"
SR_ROOM_OCCUPANCY="Ocupación de la habitación"
SR_TAXES="Impuestos"
SR_PREPAYMENT="Prepago"
SR_ROOM_FACILITIES="Equipamiento:"
SR_ROOM_SIZE="Tamaño de la habitación:"
SR_BED_SIZE="Cama:"

SR_COUPON_ENTER="Introduzca el código de cupón ( opcional)"
SR_COUPON_ACCEPTED="cupón se acepta"
SR_COUPON_REJECTED="El cupón no es válido"
SR_APPLY_COUPON="Aplicar cupón"

SR_ROOM_AVAILABLE_FROM_TO="Habitaciones disponibles desde % s hasta % s"
SR_APPLIED_COUPON="cupón Aplicada"
SR_REMOVE="Eliminar"
SR_CAN_NOT_REMOVE_COUPON="No se puede eliminar el cupón"
SR_AVAILABILITY_CALENDAR="Calendario de disponibilidad"
SR_AVAILABILITY_CALENDAR_VIEW="Ver calendario de disponibilidad"

SR_AVAILABILITY_CALENDAR_BUSY="No disponible"
SR_FEATURED_ROOM_TYPE="destacados"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Por favor seleccione al menos un tipo de habitación para continuar."
SR_INVALID_CHECKIN_CHECKOUT_DATE="no válida . Debes reservar al menos% d días y no más de % d días antes de su llegada. La duración mínima de la estancia es de% d días"
SR_ERROR_INVALID_CHECKIN_CHECKOUT="no válida . Fecha de salida debe ser después de la fecha."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="no válida . La estancia mínima es de% d noches."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="no válida . Usted tiene que reservar al menos % d días antes de su llegada."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="no válida . No está permitido reservar más de % d días antes de su llegada."
SR_NEXT="Siguiente"
SR_BACK="Volver"
SR_CUSTOMER_TITLE="Su título"
SR_CUSTOMER_TITLE_MR="Sr."
SR_CUSTOMER_TITLE_MRS="señora"
SR_CUSTOMER_TITLE_MS="Ms."
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="tipo arancelario: Por persona por noche , por favor seleccione su cantidad ambiente, a continuación proporcione su ocupación con el fin de obtener la tarifa exacta para esta sala"
SR_ERROR_CHILD_MAX_AGE="Edad debe estar entre"
SR_BOOKING_CONDITIONS="Condiciones de la reserva"
SR_PRIVACY_POLICY="Política de Privacidad"
SR_ROOM_COST="Coste de habitaciones : "
SR_ENHANCE_YOUR_STAY="Mejora tu estancia"
SR_I_AGREE_WITH="Estoy de acuerdo con "
SR_GUEST_INFORMATION="Información del cliente"
SR_PAYMENT_INFO="Información de pago"
SR_GUEST_INFO_STEP_NOTICE="Introduzca los datos necesarios y el método de pago"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Seleccione el tipo de habitación , revise el precio y haga clic en Siguiente para continuar"
SR_AGE_OF_CHILD_AT_CHECKOUT="Edad de niño (s) en la caja"
SR_GUEST_NAME="Nombre del cliente"
SR_ROOM="Habitación"
SR_CHILD="Niño"
SR_ADULT="adultos"
SR_ROOMTYPE_QUANTITY="Cantidad"
SR_AND="y"
SR_STEP_ROOM_AND_RATE="Ver precios"
SR_STEP_GUEST_INFO_AND_PAYMENT="info y condiciones de cliente"
SR_STEP_CONFIRMATION="Confirmación"
SR_PAYMENT_METHOD_PAYLATER="Pagar al llegar"
SR_PAYMENT_METHOD_BANKWIRE="Transferencia Bancaria"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Por favor, tenga en cuenta que puede el pago tardar un par de días para hacerse efectivo. En las notas del pago de transferencia bancaria , por favor, ponga su código de reserva para ayudar a procesar su reserva más rápido."
SR_PROCESSING="Procesando ..."

; Desde 0.6.0
SR_STAR="estrella"
SR_STARS="estrellas"
JGLOBAL_FIELDSET_PUBLISHING="Publicación"
JTOOLBAR_APPLY="Guardar"
JTOOLBAR_ARCHIVE="Archivo"
JTOOLBAR_ASSIGN="Asignar"
JTOOLBAR_BACK="Volver"
JTOOLBAR_BATCH="lote"
JTOOLBAR_CANCEL="Cancelar"
JTOOLBAR_CHECKIN="Entrada"
JTOOLBAR_CLOSE="Cerrar"
JTOOLBAR_DEFAULT="Predeterminado"
JTOOLBAR_DELETE="Eliminar"
JTOOLBAR_DISABLE="Desactivar"
JTOOLBAR_DUPLICATE="Duplicar"
JTOOLBAR_EDIT="Editar"
JTOOLBAR_EDIT_CSS="Editar CSS"
JTOOLBAR_EDIT_HTML="Editar HTML"
JTOOLBAR_EMPTY_TRASH="Vaciar papelera"
JTOOLBAR_ENABLE="Activar"
JTOOLBAR_EXPORT="Exportar"
JTOOLBAR_HELP="Ayuda"
JTOOLBAR_INSTALL="Instalar"
JTOOLBAR_NEW="Nuevo"
JTOOLBAR_OPTIONS="Opciones"
JTOOLBAR_PUBLISH="Publicar"
JTOOLBAR_PURGE_CACHE="Purgar caché"
JTOOLBAR_REBUILD="Reconstruir"
JTOOLBAR_REFRESH_CACHE="Refrescar Cache"
JTOOLBAR_REMOVE="Eliminar"
JTOOLBAR_SAVE="Guardar y cerrar"
JTOOLBAR_SAVE_AND_NEW="Guardar y Nuevo"
JTOOLBAR_SAVE_AS_COPY="Guardar como copia"
JTOOLBAR_UNARCHIVE="Eliminar del archivo"
JTOOLBAR_UNINSTALL="Desinstalar"
JTOOLBAR_UNPUBLISH="despublicar"
JTOOLBAR_UPLOAD="Subir"
JTOOLBAR_TRASH="Eliminar"
JTOOLBAR_UNTRASH="Desazer eliminar"
JTOOLBAR_REBUILD_SUCCESS="Se ha reconstruido"
JTOOLBAR_VERSIONS="Versiones"
SR_SEARCH_LOCATION="Ubicación"
SR_DASHBOARD="Panel"
SR_PHONE="Teléfono"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="cantidad de Depósito"
SR_TOTAL_ROOM_TAX="Impuesto total"

; Since 0.7.0
SR_STANDARD_TARIFF="Tarifa estándar"
SR_SEARCH_RESET="Resetear"
SR_SELECT_A_TARIFF="Seleccionar tarifa"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="No hay tarifas para a su fecha de entrada y salida.<a href="_QQ_"%s"_QQ_"> Haga clic aquí para ver el resto de tarifas disponibles.</a>"
SR_SELECT_A_TARIFF_FIRST="Por favor, seleccione una tarifa primero."
SR_SMOKING="Seleccione las opciones de fumador"
SR_SMOKING_ROOM="Habtición para fumadores"
SR_NON_SMOKING_ROOM="Habitación de no fumadores"
SR_SELECT_ROOM_QUANTITY="%s habitaciones"
SR_SELECT_ROOM_QUANTITY_1="1 habitación"
SR_SELECT_ADULT_QUANTITY="%s adultos"
SR_SELECT_ADULT_QUANTITY_1="1 adulto"
SR_SELECT_CHILD_QUANTITY="%s niños"
SR_SELECT_CHILD_QUANTITY_1="1 niño"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s noches"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 noche"
SR_TARIFF_SUFFIX_PER_ROOM="/ habitación "
SR_CHILD_AGE_SELECTION="%s años"
SR_CHILD_AGE_SELECTION_1="%s año"
SR_CHILD_AGE_SELECTION_JS="años"
SR_CHILD_AGE_SELECTION_1_JS="años"
SR_EMAIL_CONFIRM_RESERVATION="Confirmación de Reserva"
SR_EMAIL_REF_ID="Reference ID: %s"
SR_EMAIL_GREETING_NAME="Dear %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Muchas gracias por tu reserva en %s.  Si tienes cualquier información adicional, por favor no dudes en contactar con nosotros en cualquier momento </ p> <p> Estamos muy contentos de confirmar tu reserva de la siguiente manera.:</p>"
SR_EMAIL_CHECKIN="Entrada: "
SR_EMAIL_CHECKOUT="Salida: "
SR_EMAIL_PAYMENT_METHOD="Método de pago: "
SR_EMAIL_EMAIL="Email: "
SR_EMAIL_NUM_NIGHT="Número de noches: "
SR_EMAIL_SUB_TOTAL="Precio de la habitación (Imp excl): "
SR_EMAIL_TAX="Coste impuesto habitación: "
SR_EMAIL_GRAND_TOTAL="Importe total: "
SR_EMAIL_DEPOSIT_AMOUNT="Cantidad del depósito: "
SR_EMAIL_EXTRAS_ITEMS="Extras: "
SR_EMAIL_CONNECT_WITH_US="Contacte con nosotros: "
SR_EMAIL_CONTACT_INFO="Información de contacto: "
SR_EMAIL_ADDRESS="Dirección: "
SR_EMAIL_PHONE="Teléfono: "
SR_EMAIL_OTHER_INFO="Otra información"
SR_EMAIL_EXTRA_QUANTITY="Cantidad: "
SR_EMAIL_EXTRA_PRICE="Precio: "
SR_EMAIL_NOTE="Nota: "
SR_EMAIL_BANKWIRE_INFO="Información de transferencia Bancaria"
SR_EMAIL_NOTIFICATION_RESERVATION="Notificación de reserva"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>Se ha hecho una nueva reserva, por favor compruebe los detalles debajo o <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">haga click aquí</a> para verla:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Hola,"
SR_EMAIL_EXTRA_TAX_EXCL="Costes extra (Imp excl): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Impuesto adicional: "
SR_VAT_NUMBER="CIF (Opcional)"
SR_PASSWORD="Contraseña"
SR_USERNAME="Usuario"
SR_WE_HAVE_X_ROOM_LEFT="Quedan %s habitaciones"
SR_WE_HAVE_X_ROOM_LEFT_1="Quedan %s habitaciones!"
SR_ONLY_1_LEFT="última oportunidad! Solo 1 habitación disponible"
SR_ONLY_2_LEFT="Solo 2 habitaciones libres"
SR_ONLY_3_LEFT="Solo 3 habitaciones libres"
SR_ONLY_4_LEFT="Solo 4 habitaciones libres"
SR_ONLY_5_LEFT="Solo 5 habitaciones libres"
SR_ONLY_6_LEFT="Solo 6 habitaciones libres"
SR_ONLY_7_LEFT="Solo 7 habitaciones libres"
SR_ONLY_8_LEFT="Solo 8 habitaciones libres"
SR_ONLY_9_LEFT="Solo 9 habitaciones libres"
SR_ONLY_10_LEFT="Solo 10 habitaciones libres"
SR_ONLY_11_LEFT="Solo 11 habitaciones libres"
SR_ONLY_12_LEFT="Solo 12 habitaciones libres"
SR_ONLY_13_LEFT="Solo 13 habitaciones libres"
SR_ONLY_14_LEFT="Solo 14 habitaciones libres"
SR_ONLY_15_LEFT="Solo 15 habitaciones libres"
SR_ONLY_16_LEFT="Solo 16 habitaciones libres"
SR_ONLY_17_LEFT="Solo 17 habitaciones libres"
SR_ONLY_18_LEFT="Solo 18 habitaciones libres"
SR_ONLY_19_LEFT="Solo 19 habitaciones libres"
SR_ONLY_20_LEFT="Solo 20 habitaciones libres"
SR_SHOW_MORE_INFO="Más información"
SR_HIDE_MORE_INFO="Ocultar información"
SR_AVAILABILITY_CALENDAR_CLOSE="Cerrar calendario"
SR_STARTING_FROM="Desde"
SR_SELECT="Seleccionar"
SU="Do"
MO="Lu"
TU="Ma"
WE="Mi"
TH="Ju"
FR="Vi"
SA="Sa"
SR_USERNAME_EXISTS="Este usuario ya existe. Por favor elije otro nombre"
JFIELD_METADATA_ROBOTS_DESC="Instrucciones de los Robots"
JFIELD_METADATA_ROBOTS_LABEL="Robots"
JFIELD_XREFERENCE_DESC="Un campo opcional para permitir que este registro haga referencia a un sistema externo de datos si es necesario."
JFIELD_XREFERENCE_LABEL="Referencia externa"
JCLEAR="Borrar"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Regístrese para agilizar sus próximas reservas. Por favor, introduzca un nombre de usuario y contraseña"
SR_PRICE_IS_FOR_X_NIGHT="El precio es para %s noches"
SR_PRICE_IS_FOR_X_NIGHT_1="El precio es para %s noche"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="We found no matched rooms for your search from %s to %s, please adjust your booking dates or room options."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="We found %s rooms that matched your search from %s to %s for %s adult(s) and %s child(ren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="We have less than your number of requested rooms, but our current available rooms (%s) could satisfy your search from %s to %s for %s adult(s) and %s child(ren) if you select a different number of rooms."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Sorry but our rooms are not available for your search from %s to %s for %s adult(s) and %s child(ren)."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="We found %s rooms that matched your search from %s to %s."
SR_MOBILEPHONE="Mobile phone"
SR_RESERVATION_SAVE_ERROR="Your reservation could not be saved, please try again."
SR_EMAIL_PAYMENT_METHOD_INFO="Payment information"
SR_RESERVATION_COMPLETE="<h3>Thank you %s! Your reservation number %s has been completed successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_EXTRA_PRICE_ADULT="For adult"
SR_EXTRA_PRICE_CHILD="For child"
SR_EXTRA_MORE_DETAILS="Details"
SR_EXTRA_PRICE="Price"
SR_TOTAL_DISCOUNT="Total discount"
SR_EMAIL_TOTAL_DISCOUNT="Total discount: "
SR_ROOM_X_COST="Room cost"
SR_ROOM_X_DISCOUNTED_AMOUNT="Room discounted amount"
SR_ROOM_X_DISCOUNTED_COST="Room cost after discounted"
SR_VIEW_TARIFF_BREAKDOWN="Details"
SR_SHOW_TARIFFS="Rates"
SR_HIDE_TARIFFS="Rates"
SR_CONFIRMATION_ROOM_DETAILS="Details"
SR_CONFIRMATION_GUEST_NAME="Guest name"
SR_CONFIRMATION_ADULT_NUMBER="Adult number"
SR_CONFIRMATION_CHILD_NUMBER="Child number"
SR_CONFIRMATION_FULLNAME="Your full name: "
SR_EXTRA="Extra"
SR_EXTRA_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Per booking"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Per room"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Per booking per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Per booking per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Per room per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Per room per person"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Per person per night"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="Per room per person per night"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Price for adult"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Enter the price for adult of this Extra/Service. The currency of Property will apply here."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Price for child"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Enter the price for child of this Extra/Service. The currency of Property will apply here."

; Since 0.9.0
SR_DAYS="%d days"
SR_DAYS_1="%d day"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s days"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 day"
SR_LENGTH_OF_STAY="Length of stay"
SR_EMAIL_LENGTH_OF_STAY="Length of stay: "
SR_PRICE_IS_FOR_X_DAY="Price is for %s days"
SR_PRICE_IS_FOR_X_DAY_1="Price is for %s day"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Room single supplement"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Room cost after single supplement"
JLIB_APPLICATION_SAVE_SUCCESS="Item successfully saved."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Item successfully submitted."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="New reservation %s from %s %s"
SR_RESERVATION_CODE="Code"
SR_RESERVATION_INVOICE="Invoice"
SR_RESERVATION_CHECKIN="Checkin"
SR_RESERVATION_CHECKOUT="Checkout"
SR_RESERVATION_ASSET="Property"
SR_RESERVATION_TOTAL_PAID="Total paid"
SR_DESCRIPTION="Description"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Booking number"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Booking details"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s rooms"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s room"
SR_CONFIRMATION_CHECKIN="Check-in"
SR_CONFIRMATION_CHECKOUT="Check-out"
SR_CONFIRMATION_TOTAL_PRICE="Total price"
SR_CONFIRMATION_ASSET_NAME="Name"
SR_CONFIRMATION_ASSET_ADDRESS="Address"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Phone"
SR_ASSET_INFO="Hotel information"
SR_BOOKING_INFO="Your booking information"
SR_BOOKING_CONFIRMATION_ADULTS="%s adults"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s adult"
SR_BOOKING_CONFIRMATION_CHILDREN="%s children"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s child"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Guest full name"
SR_BOOKING_CONFIRMATION_SMOKING="Smoking"
SR_BOOKING_CONFIRMATION_ROOM_COST="Room cost"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Room details"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Your dates appear to be in the past"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Thank you %s! Your reservation number %s has been completed successfully but the payment is not yet completed.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Invalid. Minimum length of stay is %d nights."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Invalid. Minimum length of stay is %d days."
SR_USER_INFO_USERNAME_PLURAL="You have logged with username: %s"

; Since 0.9.4
SR_COUPON_CHECK="Check"
SR_RESERVATION_ORIGIN_DIRECT="Direct"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="This room type requires at least %d people and maximum %d people."
SR_RESERVE="Reserve"
SR_SEARCH_ROOMS="Rooms"
SR_SEARCH_ROOM="Room"
SR_SEARCH_ROOM_ADULTS="Adults"
SR_SEARCH_ROOM_CHILDREN="Children"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="Reservation has been cancelled"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="Reservation %s from %s %s has been cancelled"
SR_EMAIL_GREETING_TEXT_CANCELLED="Your reservation %s at %s has been cancelled."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>Reservation %s has been cancelled, please check details below or <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">click here</a> to view it:</p>"
SR_EMAIL_COUPON_CODE="Coupon code: "

; Since 1.8.0
SR_FULLNAME="Full name"
SR_MESSAGE="Message"
SR_SEND_MESSAGE="Send message"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Booking inquiry from %s for %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Thank you, your inquiry has been sent successfully. We will get back to you as soon as possible."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per booking per stay (night or day)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Per room per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per room per person per stay"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Percentage of room's daily rate"
SR_EXTRA_PRICE_DAILY_RATE="%s costs %d percent of room daily rate per stay"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="Your session is expiring soon."
SR_WARNING_SESSION_EXPIRED="Your session has been expired, <a href="_QQ_"#"_QQ_">click here</a> to start a new session."
SR_WEBSITE="Website"
SR_YOUR_STAY="Your stay"
SR_AVAILABLE_ROOMS="Available room"
SR_MAX_GUESTS="Max guests"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Book Now"
SR_TARIFF_PACKAGE_PER_ROOM="Package per room"
SR_TARIFF_PACKAGE_PER_PERSON="Package per person"
SR_TARIFF_PER_ROOM_PER_NIGHT="Rate per room per stay"
SR_TARIFF_PER_PERSON_PER_NIGHT="Rate per person per stay"
SR_ROOM_X_EXTRA_AMOUNT="Room extras item cost"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="Your reservation has been amended successfully"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Send outgoing emails?"
SR_FIELD_COUNTRY_SELECT=" - Select Country - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Process online payment?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="Your reservation has been added successfully"
SR_SELECT_BED_QUANTITY="%s beds"
SR_SELECT_BED_QUANTITY_1="1 bed"
SR_BED="Bed"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Thank you %s! Your reservation request %s has been sent to us, we will get back to you as soon as possible to confirm this reservation.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_RESERVATION_CANCEL="<h3>Your reservation number %s has been cancelled.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Tourist tax"
SR_EMAIL_TOURIST_TAX="Tourist tax: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s surcharge: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s discount: "
SR_CONFIRMATION_GUEST_NUMBER="Guest number"
SR_SELECT_GUEST_QUANTITY="%s guests"
SR_SELECT_GUEST_QUANTITY_1="1 guest"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Rooms and rates information"
SR_CONFIRMATION_PAYMENT_METHOD="Payment method: "
SR_CONFIRMATION_MOBILE="Mobile phone: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Unpaid"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Paid"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Cancelled"
SR_RESERVATION_PAYMENT_STATUS_PENDING="Pending"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ bed "
SR_WE_HAVE_X_BED_LEFT="We have %s beds left"
SR_WE_HAVE_X_BED_LEFT_1="We have %s bed left!"
SR_ONLY_1_LEFT_BED="Last chance! Only 1 bed left"
SR_ONLY_2_LEFT_BED="Only 2 beds left"
SR_ONLY_3_LEFT_BED="Only 3 beds left"
SR_ONLY_4_LEFT_BED="Only 4 beds left"
SR_ONLY_5_LEFT_BED="Only 5 beds left"
SR_ONLY_6_LEFT_BED="Only 6 beds left"
SR_ONLY_7_LEFT_BED="Only 7 beds left"
SR_ONLY_8_LEFT_BED="Only 8 beds left"
SR_ONLY_9_LEFT_BED="Only 9 beds left"
SR_ONLY_10_LEFT_BED="Only 10 beds left"
SR_ONLY_11_LEFT_BED="Only 11 beds left"
SR_ONLY_12_LEFT_BED="Only 12 beds left"
SR_ONLY_13_LEFT_BED="Only 13 beds left"
SR_ONLY_14_LEFT_BED="Only 14 beds left"
SR_ONLY_15_LEFT_BED="Only 15 beds left"
SR_ONLY_16_LEFT_BED="Only 16 beds left"
SR_ONLY_17_LEFT_BED="Only 17 beds left"
SR_ONLY_18_LEFT_BED="Only 18 beds left"
SR_ONLY_19_LEFT_BED="Only 19 beds left"
SR_ONLY_20_LEFT_BED="Only 20 beds left"
SR_DUE_AMOUNT="Total due amount"
SR_EMAIL_DUE_AMOUNT="Due Amount: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="Your reservation has been cancelled."
SR_CHECKIN_PLACEHOLDER="Your check-in date"
SR_CHECKOUT_PLACEHOLDER="Your check-out date"
SR_CHOOSE_ANOTHER_CHECKIN="Please choose another check-in date"
SR_WARNING_SESSION_RENEW="Renew"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Enter your email"
SR_ENTER_YOUR_RESERVATION_CODE="Enter your reservation code"
SR_FIND_RESERVATION="Find reservation"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Reservation code %s found."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="We can not find any reservations with your given information, please recheck your information and try again."
SR_RESERVATION_STATUS_FORMAT="Reservation status: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Show property's reservation tracking form"
SR_TRACKING_VIEW_DEFAULT_DESC="Allow guests check their reservation using reservation code + email address"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ 1 person "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s people "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"language/it-IT/it-IT.com_solidres.ini000060400000075563150751740420013406 0ustar00; Joomla! Project
; Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8

SR_SEARCH_RESERVATION_ASSET="Criteri di ricerca"
SR_SEARCH_FIELD_COUNTRY="Nazione"
SR_SEARCH_FIELD_STATE="Provincia/stato"
SR_SEARCH_FIELD_CITY="Città"
SR_SEARCH_CHECKIN_DATE="Data di arrivo"
SR_SEARCH_CHECKOUT_DATE="Data di partenza"
SR_SEARCH="Ricerca"
SR_RESET="Cancella"
SR_REMEMBER_ME="Ricordami"
SR_FORGOT_YOUR_PASSWORD="Password dimenticata"
SR_FORGOT_YOUR_USERNAME="Nome Utente dimenticato"
SR_REGISTER="Registrati"
SR_SELECTED_RESERVATION_ASSET="Seleziona Hotel"
SR_STAYING_INFO="Informazioni sul soggiorno"
SR_NUMBER_OF_ROOM="Camere"
SR_GUEST_PER_ROOM="Clienti per camera"
SR_ROOM_RATE_INFO="Informazioni tariffa della camera"
SR_ROOM_DESCRIPTION="Descrizione camera"
SR_ROOM_RATE_TYPE="Tariffa tipo camera"
SR_GUEST_INFO="Informazioni cliente"
SR_FIRSTNAME="Nome"
SR_LASTNAME="Cognome"
SR_EMAIL="Email"
SR_PHONENUMBER="Numero di telefono"
SR_CONTACT_INFO="Informazioni di contatto"
SR_HOLD_GUARANTEE_INFO="Informazioni Tenuta/Garanzia"
SR_ARRIVAL_INFO="Informazioni Arrivo"
SR_TRAVEL_INFO="Informazioni di viaggio"
SR_COMPANY="Azienda"
SR_ADDRESS_1="Indirizzo 1"
SR_ADDRESS_2="Indirizzo 2"
SR_CITY="Città"
SR_ZIP="CAP"
SR_STATE="Provincia/stato"
SR_COUNTRY="Nazione"
SR_TRAVEL_FOR_BUSINESS="Lavoro / Affari"
SR_TRAVEL_FOR_BUSINESS_DESC="Mi piace essere capace di ottenere il lavoro e di essere produttivo quando sono in viaggio"
SR_TRAVEL_FOR_RELAX="Relax / Soddisfazione"
SR_TRAVEL_FOR_RELAX_DESC="Mi piace per rilassarmi e rigenerarmi quando sono lontano da casa."
SR_TRAVEL_FOR_ENTERTAINMENT="Divertimento  / Attrazione"
SR_TRAVEL_FOR_ENTERTAINMENT_DESC="Ho voglia di divertirmi e di vedere il meglio che la mia destinazione ha da offrire."
SR_TRAVEL_FOR_FAMILY="Famiglia"
SR_TRAVEL_FOR_FAMILY_DESC="Parteciperò ad un evento familiare o sono in vacanza con la mia famiglia."
SR_TRAVEL_FOR_HONEYMOON="Viaggio di nozze"
SR_TRAVEL_FOR_HONEYMOON_DESC="Sto andando a godermi la mia luna di miele."
SR_COMMENT="Commenti"
SR_COMMENT_DESC="Ti preghiamo di inserire qui se avete dei commenti."
SR_TAX="Tasse"
SR_RULE_RESTRICTION="Restrizioni"
SR_SELECT_TARIFF="Seleziona"
SR_SHOW_MAP="Mostra la mappa"
SR_READMORE="Continua"
SR_PRICE_FROM="Prezzo da"
SR_FIELD_RESERVE="Prenota ora"
SR_FIELD_CONDITIONS="Condizioni"
SR_NOTICE_USER_FIELD_SEARCH_FORM="Cerca il tuo hotel utilizzando il modulo qui sopra"
SR_NO_ROOM_AVAILABLE="Nessuna camera disponibile"
SR_MAX="Massimo di persone consentito"
SR_HAS_ROOM_AVAILABLE="Disponibile"
SR_AVAILABILITY="Disponibilità"
SR_AVAILABLE_ROOM_TYPES="Tipologie di camere disponibili"
SR_VIEW_GALLERY="Visualizza la galleria"
SR_YOUR_SEARCH_INFORMATION="I tuoi dati di ricerca"
SR_YOUR_SEARCH_INFORMATION_CHECKIN="Arrivo:"
SR_YOUR_SEARCH_INFORMATION_CHECKOUT="Partenza:"
SR_YOUR_SEARCH_INFORMATION_ADULTS="Totale di adulti per camera:"
SR_YOUR_SEARCH_INFORMATION_CHILDREN="Totale di bambini per camera:"
SR_BUTTON_RESERVATION_PARTIAL_SUBMIT="Continua"
SR_EXTRA_PACKAGES="Pacchetti extra"
SR_ROOM_TYPE_NAME="Tipologia di camera"
SR_ROOM_TYPE_QUANTITY="Quantità"
SR_ROOM_TYPE_GUEST_PER_ROOM="Clienti per camera"
SR_NUMBER_OF_NIGHT="Numero di notti"
SR_RESERVATION_PROGRESS_ROOM_RATE_INFO="Camera & Tariffa"
SR_RESERVATION_PROGRESS_EXTRA_PACKAGE_INFO="Pacchetti extra"
SR_RESERVATION_PROGRESS_GUEST_INFO="Informazioni cliente"
SR_RESERVATION_PROGRESS_PAYMENT_INFO="Informazioni di pagamento"
SR_RESERVATION_CONFIRMATION="Conferma"
SR_BUTTON_RESERVATION_FINAL_SUBMIT="Fine"
SR_PAYMENT_METHOD_CHEQUE_MONEY="Assegno/Denaro"
SR_PAYMENT_METHOD_PAYPAL="Paypal"
SR_ROOM_QUANTITY_EXCEED_QUOTA="La quantità camere selezionata è superiore al numero di camere disponibili, prego <a href="_QQ_"#"_QQ_" onclick="_QQ_"history.go(-2)"_QQ_">clicca qui</a> per tornare indietro e fare un'altra selezione."
SR_CHANGE="Cambia"
SR_NOTE="Note"
SR_MIDDLENAME="Secondo nome"
SR_RESERVATION_PROGRESS_DATES="Date e Preferenze"
SR_ROOM_SELECTION="Seleziona camera"
SR_ROOM_TYPE_ADULT_PER_ROOM="Adulti per camera"
SR_ROOM_TYPE_CHILDREN_PER_ROOM="Bambini per camera"
SR_ROOM_TYPE_GUEST_NAME="Nome cliente"
SR_RESERVATION_NOTICE_CONFIRMATION="Si prega di controllare i dettagli della prenotazione e fare clic sul pulsante qui sotto per completare la prenotazione. Una email di conferma verrà inviata alll'indirizzo email indicato."
SR_SEARCH_COUPON="Codice sconto"
SR_MAXIMUM_OCCUPANCY="Massima capienza camera"
SR_OCCUPANCY_ADULT="Adulto(i)"
SR_OCCUPANCY_CHILD="Bambino(i)"
SR_NIGHTS="%d notti"
SR_NIGHTS_1="%d notte"
SR_TOTAL_ROOM_COST_TAX_EXCL="Costo totale della camera (tasse escluse)"
SR_TOTAL_ROOM_COST_TAX_INCL="Costo totale della camera (tasse incluse)"
SR_TOTAL_EXTRA_COST_TAX_EXCL="Costo totale degli extra (tasse escluse)"
SR_TOTAL_EXTRA_COST_TAX_INCL="Costo totale degli extra (tasse incluse)"
SR_TOTAL_EXTRA_COST_TAX_AMOUNT="Totale tasse extra"
SR_PRICE_FOR_X_NIGHTS="Prezzo per %d notti"
SR_ROOM_TYPE="Tipologie di camere"
SR_NUMBER_OF_ROOMS="Numero di camere"
SR_TARIFF_BREAK_DOWN="Scomposizione della tariffa"

; RESERVATION FORM
SR_SEARCH_ADULT_NUMBER="Numero di adulti"
SR_SEARCH_CHILDREN_NUMBER="Numero di bambini"
SR_NO_TARIFF_AVAILABLE="Nessuna tariffa è disponibile"
SR_EMAIL_RESERVATION_COMPLETE="La prenotazione è completata"

; Extra
SR_RESERVATION_EXTRA="Nome"
SR_RESERVATION_EXTRA_COST="Prezzo"
SR_RESERVATION_EXTRA_QUANTITY="Quantità"

; Email issues
SR_RESERVATION_CAN_NOT_SEND_EMAIL="La mail contenente il riepilogo della prenotazione non può essere inviata."

SR_BOOK_NOW="Prenota ora"
SR_TOTAL_PRICE="Prezzo Totale"
SR_TAX_7_NOT_INCLUDED="TASSE (7%) non incluse"
SR_SERVICE_CHARGE_10.70_NOT_INCLUDED="Costo del servizio (10.70%) non incluso"

SR_RESERVATION_NOTE="Immettere tutte le informazioni da allegare alla tua prenotazione. Il personale dell'hotel non è in grado di garantire che siano soddisfatte tutte le richieste o i commenti aggiuntivi. Si prega di evitare l'uso di caratteri speciali."
SR_ASK_FOR_CHECKIN_CHECKOUT="Per controllare le tariffe delle camere e la disponibilità, inserisci le date di arrivo e partenza nel modulo sottostante"
SR_GRAND_TOTAL="Totale"

; Custom fields
SR_CUSTOMFIELD_FACILITIES="Informazioni Servizi"
SR_CUSTOMFIELD_POLICIES="Condizioni del soggiorno"
SR_CUSTOMFIELD_SOCIAL_NETWORKS="Social network"
SR_CUSTOMFIELD_GENERAL="Generale"
SR_CUSTOMFIELD_ACTIVITIES="Attività"
SR_CUSTOMFIELD_SERVICES="Servizi"
SR_CUSTOMFIELD_INTERNET="Internet"
SR_CUSTOMFIELD_PARKING="Parcheggio"
SR_CUSTOMFIELD_CHECKIN="Arrivo"
SR_CUSTOMFIELD_CHECKOUT="Partenza"
SR_CUSTOMFIELD_CANCELLATION_PREPAYMENT="Cancellazione / Pagamento anticipato"
SR_CUSTOMFIELD_CHILDREN_EXTRA_BEDS="Bambini e letti aggiuntivi"
SR_CUSTOMFIELD_PETS="Animali"
SR_CUSTOMFIELD_ACCEPTED_CREDIT_CARDS="Accettiamo carte di credito"
SR_BREAKFAST_INCLUDED="Colazione inclusa"
SR_BREAKFAST_EXCLUDED="Colazione non inclusa"
SR_FREE_CANCELLATION="Cancellazione gratuita"
SR_NON_REFUNDABLE="Non rimborsabile"
SR_ROOM_OCCUPANCY="Capienza camera"
SR_TAXES="Tasse"
SR_PREPAYMENT="Pagamento anticipato"
SR_ROOM_FACILITIES="Servizi in camera"
SR_ROOM_SIZE="Dimensioni della camera"
SR_BED_SIZE="Dimensioni del letto"

SR_COUPON_ENTER="Inserisci il codice sconto (Optionale)"
SR_COUPON_ACCEPTED="Codice sconto accettato"
SR_COUPON_REJECTED="Il Codice sconto non è valido"
SR_APPLY_COUPON="Applica codice sconto"

SR_ROOM_AVAILABLE_FROM_TO="Camere disponibili da %s a %s"
SR_APPLIED_COUPON="Codice sconto applicato"
SR_REMOVE="Rimuovi"
SR_CAN_NOT_REMOVE_COUPON="Il codice di sconto non può essere rimosso"
SR_AVAILABILITY_CALENDAR="Calendario delle disponibilità"
SR_AVAILABILITY_CALENDAR_VIEW="Visualizza calendario delle disponibilità"

SR_AVAILABILITY_CALENDAR_BUSY="Non disponibile"
SR_FEATURED_ROOM_TYPE="In evidenza"

SR_SELECT_AT_LEAST_ONE_ROOMTYPE="Per procedere si prega di selezionare almeno una tipologia di camera."
SR_INVALID_CHECKIN_CHECKOUT_DATE="Non valida. È necessario prenotare almeno %d giorni e non più di %d giorni prima del vostro arrivo. La durata minima del soggiorno è di %d giorni."
SR_ERROR_INVALID_CHECKIN_CHECKOUT="Non valida. La data di partenza deve essere dopo la data di arrivo."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY="Non valido. La durata minima del soggiorno è di %d notti."
SR_ERROR_INVALID_MIN_DAYS_BOOK_IN_ADVANCE="Non valida. Devi prenotare con almeno %d giorni di anticipo rispetto al vostro arrivo."
SR_ERROR_INVALID_MAX_DAYS_BOOK_IN_ADVANCE="Non valida. Non è consentito prenotare con più di %d giorni di anticipo rispetto al vostro arrivo."
SR_NEXT="Avanti"
SR_BACK="Indietro"
SR_CUSTOMER_TITLE="Il vostro titolo"
SR_CUSTOMER_TITLE_MR="Sig."
SR_CUSTOMER_TITLE_MRS="Sig.ra."
SR_CUSTOMER_TITLE_MS="Signorina"
SR_TARIFF_IS_FOR_PER_PERSON_PER_NIGHT="Tipologia tariffa: Per persona a notte, si prega di selezionare la quantità di camere, quindi confermarci il vostro numero di persone al fine di ottenere la tariffa esatta per questa camera"
SR_ERROR_CHILD_MAX_AGE="L'età deve essere compresa tra"
SR_BOOKING_CONDITIONS="Condizioni di prenotazione"
SR_PRIVACY_POLICY="Informativa sulla privacy"
SR_ROOM_COST="Costo camera: "
SR_ENHANCE_YOUR_STAY="Per rendere più gradevole il soggiorno"
SR_I_AGREE_WITH="Accetto le "
SR_GUEST_INFORMATION="Informazioni cliente"
SR_PAYMENT_INFO="Informazioni sul pagamento"
SR_GUEST_INFO_STEP_NOTICE="Inserisci i tuoi dati e scegli il metodo di pagamento"
SR_ROOMINFO_STEP_NOTICE_MESSAGE="Seleziona la tipologia di camera, controlla i prezzi e fai clic su Avanti per continuare"
SR_AGE_OF_CHILD_AT_CHECKOUT="Età del bambino(i) al momento del checkout"
SR_GUEST_NAME="Nome cliente"
SR_ROOM="Camera"
SR_CHILD="Bambino"
SR_ADULT="Adulto"
SR_ROOMTYPE_QUANTITY="Quantità"
SR_AND="e"
SR_STEP_ROOM_AND_RATE="Camere & Tariffe"
SR_STEP_GUEST_INFO_AND_PAYMENT="Cliente & Pagamento"
SR_STEP_CONFIRMATION="Conferma"
SR_PAYMENT_METHOD_PAYLATER="Pagamento posticipato"
SR_PAYMENT_METHOD_BANKWIRE="Bonifico Bancario"
SR_PAYMENT_METHOD_BANKWIRE_INSTRUCTIONS="Si prega di tenere presente che potrebbero essere necessari alcuni giorni prima che il pagamento sia visibile sul nostro conto. Nella causale di pagamento del bonifico bancario, si prega di inserire il codice di prenotazione per consentirci di elaborare più rapidamente la prenotazione."
SR_PROCESSING="In elaborazione..."

; Since 0.6.0
SR_STAR="stella"
SR_STARS="stelle"
JGLOBAL_FIELDSET_PUBLISHING="Publicando"
JTOOLBAR_APPLY="Salva"
JTOOLBAR_ARCHIVE="Archivia"
JTOOLBAR_ASSIGN="Assegna"
JTOOLBAR_BACK="Indietro"
JTOOLBAR_BATCH="Gruppo"
JTOOLBAR_CANCEL="Cancella"
JTOOLBAR_CHECKIN="Check In"
JTOOLBAR_CLOSE="Chiudi"
JTOOLBAR_DEFAULT="Default"
JTOOLBAR_DELETE="Cancella"
JTOOLBAR_DISABLE="Disabilita"
JTOOLBAR_DUPLICATE="Duplica"
JTOOLBAR_EDIT="Modifica"
JTOOLBAR_EDIT_CSS="Modifica CSS"
JTOOLBAR_EDIT_HTML="Modifica HTML"
JTOOLBAR_EMPTY_TRASH="Svuota cestino"
JTOOLBAR_ENABLE="Abilita"
JTOOLBAR_EXPORT="Esporta"
JTOOLBAR_HELP="Aiuto"
JTOOLBAR_INSTALL="Installa"
JTOOLBAR_NEW="Nuovo"
JTOOLBAR_OPTIONS="Opzioni"
JTOOLBAR_PUBLISH="Pubblica"
JTOOLBAR_PURGE_CACHE="Pulisci cache"
JTOOLBAR_REBUILD="Ricostruisci"
JTOOLBAR_REFRESH_CACHE="Aggiorna cache"
JTOOLBAR_REMOVE="Rimuovi"
JTOOLBAR_SAVE="Salva &amp; Chiudi"
JTOOLBAR_SAVE_AND_NEW="Salva &amp; Nuovo"
JTOOLBAR_SAVE_AS_COPY="Salva come copia"
JTOOLBAR_UNARCHIVE="Disarchivia"
JTOOLBAR_UNINSTALL="Disinstalla"
JTOOLBAR_UNPUBLISH="Annulla Pubblicazione"
JTOOLBAR_UPLOAD="Carica"
JTOOLBAR_TRASH="Cestina"
JTOOLBAR_UNTRASH="Annulla cestina"
JTOOLBAR_REBUILD_SUCCESS="Ricostruito con successo"
JTOOLBAR_VERSIONS="Versione"
SR_SEARCH_LOCATION="Posto"
SR_DASHBOARD="Dashboard"
SR_PHONE="Telefono"
SR_FAX="Fax"
SR_DEPOSIT_AMOUNT="Importo del deposito"
SR_TOTAL_ROOM_TAX="Tassa camera"

; Since 0.7.0
SR_STANDARD_TARIFF="Prezzo standard"
SR_SEARCH_RESET="Reset"
SR_SELECT_A_TARIFF="Seleziona una tariffa"
SR_NO_TARIFF_MATCH_CHECKIN_CHECKOUT="Nessuna tariffa trovata per il tuo %s e %s. <a href="_QQ_"%s"_QQ_">Clicca qui per vedere tutte le altre tariffe disponibili.</a>"
SR_SELECT_A_TARIFF_FIRST="Per favore seleziona prima una tariffa."
SR_SMOKING="Seleziona le tue opzioni fumatore"
SR_SMOKING_ROOM="Camera fumatore"
SR_NON_SMOKING_ROOM="Camera non fumatore"
SR_SELECT_ROOM_QUANTITY="%s camere"
SR_SELECT_ROOM_QUANTITY_1="1 camera"
SR_SELECT_ADULT_QUANTITY="%s adulti"
SR_SELECT_ADULT_QUANTITY_1="1 adulto"
SR_SELECT_CHILD_QUANTITY="%s bambini"
SR_SELECT_CHILD_QUANTITY_1="1 bambino"
SR_TARIFF_SUFFIX_NIGHT_NUMBER="/ %s notti"
SR_TARIFF_SUFFIX_NIGHT_NUMBER_1="/ 1 notte"
SR_TARIFF_SUFFIX_PER_ROOM="/ camera "
SR_CHILD_AGE_SELECTION="%s anni"
SR_CHILD_AGE_SELECTION_1="%s anno"
SR_CHILD_AGE_SELECTION_JS="anni"
SR_CHILD_AGE_SELECTION_1_JS="anno"
SR_EMAIL_CONFIRM_RESERVATION="Conferma prenotazione"
SR_EMAIL_REF_ID="ID riferimento: %s"
SR_EMAIL_GREETING_NAME="Caro %s %s %s"
SR_EMAIL_GREETING_TEXT="<p>Grazie per la tua prenotaziuone a %s. Se avete ulteriori informazioni , non esitate a contattarci in qualsiasi momento.</p><p>Siamo lieti di confermare la prenotazione come segue:</p>"
SR_EMAIL_CHECKIN="Checkin: "
SR_EMAIL_CHECKOUT="Checkout: "
SR_EMAIL_PAYMENT_METHOD="Metodo pagamento: "
SR_EMAIL_EMAIL="Email: "
SR_EMAIL_NUM_NIGHT="Numero di notti: "
SR_EMAIL_SUB_TOTAL="Prezzo camera (escluso tassa): "
SR_EMAIL_TAX="TCosto della tassa per la camera: "
SR_EMAIL_GRAND_TOTAL="Totale: "
SR_EMAIL_DEPOSIT_AMOUNT="Importo dell acconto: "
SR_EMAIL_EXTRAS_ITEMS="Oggetti extra: "
SR_EMAIL_CONNECT_WITH_US="Contattaci: "
SR_EMAIL_CONTACT_INFO="Info contatto: "
SR_EMAIL_ADDRESS="Indirizzo: "
SR_EMAIL_PHONE="Telefono: "
SR_EMAIL_OTHER_INFO="Altre info"
SR_EMAIL_EXTRA_QUANTITY="Quantità: "
SR_EMAIL_EXTRA_PRICE="Prezzo: "
SR_EMAIL_NOTE="Note: "
SR_EMAIL_BANKWIRE_INFO="info bonifico bancario"
SR_EMAIL_NOTIFICATION_RESERVATION="Notifica della prenotazione"
SR_EMAIL_NOTIFICATION_GREETING_TEXT="<p>Una nuova prenotazione è stata fatta, per favore verifica i dettagli di seguito o <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">clicca qui</a> per vederli:</p>"
SR_EMAIL_GREETING_NAME_OWNER="Ciao,"
SR_EMAIL_EXTRA_TAX_EXCL="Costi extra (escl tassa): "
SR_EMAIL_EXTRA_TAX_AMOUNT="Tassa extra: "
SR_VAT_NUMBER="Numero VAT (opzionale)"
SR_PASSWORD="Password"
SR_USERNAME="Nome utente"
SR_WE_HAVE_X_ROOM_LEFT="Abbiamo %s camere rimanenti"
SR_WE_HAVE_X_ROOM_LEFT_1="We have %s camera rimanente!"
SR_ONLY_1_LEFT="Ultima opportunità! Una camera rimanente"
SR_ONLY_2_LEFT="Solo 2 camere rimanenti"
SR_ONLY_3_LEFT="Solo 3 camere rimanenti"
SR_ONLY_4_LEFT="Solo 4 camere rimanenti"
SR_ONLY_5_LEFT="Solo 5 camere rimanenti"
SR_ONLY_6_LEFT="Solo 6 camere rimanenti"
SR_ONLY_7_LEFT="Solo 7 camere rimanenti"
SR_ONLY_8_LEFT="Solo 8 camere rimanenti"
SR_ONLY_9_LEFT="Solo 9 camere rimanenti"
SR_ONLY_10_LEFT="Solo 10 camere rimanenti"
SR_ONLY_11_LEFT="Solo 11 camere rimanenti"
SR_ONLY_12_LEFT="Solo 12 camere rimanenti"
SR_ONLY_13_LEFT="Solo 13 camere rimanenti"
SR_ONLY_14_LEFT="Solo 14 camere rimanenti"
SR_ONLY_15_LEFT="Solo 15 camere rimanenti"
SR_ONLY_16_LEFT="Solo 16 camere rimanenti"
SR_ONLY_17_LEFT="Solo 17 camere rimanenti"
SR_ONLY_18_LEFT="Solo 18 camere rimanenti"
SR_ONLY_19_LEFT="Solo 19 camere rimanenti"
SR_ONLY_20_LEFT="Solo 20 camere rimanenti"
SR_SHOW_MORE_INFO="Altre info"
SR_HIDE_MORE_INFO="Nascondi info"
SR_AVAILABILITY_CALENDAR_CLOSE="Chiudi calendario"
SR_STARTING_FROM="Parrt da"
SR_SELECT="Seleziona"
SU="Do"
MO="Lu"
TU="Ma"
WE="Me"
TH="Gi"
FR="Ve"
SA="Sa"
SR_USERNAME_EXISTS="Nome utente già esistente. Per favore selezionarne un altro"
JFIELD_METADATA_ROBOTS_DESC="Istruzioni robot"
JFIELD_METADATA_ROBOTS_LABEL="Robots"
JFIELD_XREFERENCE_DESC="Un altro campo opzionale per permette a questo record di essere collegato ad un dato esterno al sistema se richiesto."
JFIELD_XREFERENCE_LABEL="Riferijmento esterno"
JCLEAR="Pulisci"

; Since 0.7.1
SR_REGISTER_WITH_US_TEXT="Registrati con noi per convenzioni future: prenotazioni facii e veloci. Per favore inserici il tuo nome utente e la tua password preferiti in questo campo."
SR_PRICE_IS_FOR_X_NIGHT="Il prezzo è per %s notti"
SR_PRICE_IS_FOR_X_NIGHT_1="Il prezzo è per %s notte"

; Since 0.8.0
SR_NO_ROOM_TYPES_MATCHED_SEARCH_CONDITIONS="Non abbiamo trovato camere corrispondenti, perfavore cambia le date o le opzioni della camera."
SR_ROOM_AVAILABLE_FROM_TO_MSG1="Abbiamo trovato %s camere che corrispondono alla tua ricerca dal %s al %s per %s adulti e %s bambini."
SR_ROOM_AVAILABLE_FROM_TO_MSG2="Abbiamo meno camere di quante ne avete richieste, ma le nostre camere disponibili (%s) possono soddisfare la tua ricerca dal %s al %s per %s adulti e %s bambini se selzioni un numero diverso di stanze."
SR_ROOM_AVAILABLE_FROM_TO_MSG3="Spiacente ma le nostre camere non sono disponibili per la tua ricerca dal %s al %s per %s adulti e %s bambini."
SR_ROOM_AVAILABLE_FROM_TO_MSG4="Abbiamo trovato %s camere che corrispondono alla tua ricerca dal %s al %s."
SR_MOBILEPHONE="Cellulare"
SR_RESERVATION_SAVE_ERROR="la tua prenotazione non può essere salvata, perfavore prova di nuovo."
SR_EMAIL_PAYMENT_METHOD_INFO="Informazioni pagamento"
SR_RESERVATION_COMPLETE="<h3>Grazie %s! Il tuo numero di prenotazione %s è stato completato con successo.</h3><ul> <li>Abbiamo inviato una e-mail di conferma a %s</li><li>Abbiamo ache notificato a %s circa il tuo soggiorno </li><li><a href="_QQ_"%s"_QQ_">Clicca qui </a> per tornare alla nostra homepage.</li></ul>"
SR_EXTRA_PRICE_ADULT="Per adulto"
SR_EXTRA_PRICE_CHILD="Per bambino"
SR_EXTRA_MORE_DETAILS="Dettagli"
SR_EXTRA_PRICE="Prezzo"
SR_TOTAL_DISCOUNT="Sconto totale"
SR_EMAIL_TOTAL_DISCOUNT="Sconto totale: "
SR_ROOM_X_COST="Prezzo della camera"
SR_ROOM_X_DISCOUNTED_AMOUNT="Importo scontato della camera"
SR_ROOM_X_DISCOUNTED_COST="Importo della camera dopo lo sconto"
SR_VIEW_TARIFF_BREAKDOWN="Dettagli"
SR_SHOW_TARIFFS="Tariffe"
SR_HIDE_TARIFFS="Tariffe"
SR_CONFIRMATION_ROOM_DETAILS="Dettagli"
SR_CONFIRMATION_GUEST_NAME="Nome ospite"
SR_CONFIRMATION_ADULT_NUMBER="Numero adulti"
SR_CONFIRMATION_CHILD_NUMBER="Numero bambini"
SR_CONFIRMATION_FULLNAME="Il tuo nome completo: "
SR_EXTRA="Extra"
SR_EXTRA_PER_BOOKING="Per prenotazione"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING="Per prenotazione"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM="Per camera"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_NIGHT="Per camera per notte"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_PERSON="Per prenotazione per persona"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_NIGHT="Per camera per notte"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON="Per camera per persona"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_PERSON_PER_NIGHT="Per persona per notte"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_NIGHT="per camera per persona per notte"
SR_FIELD_EXTRA_PRICE_ADULT_LABEL="Prezzo per adulto"
SR_FIELD_EXTRA_PRICE_ADULT_DESC="Inserisci il prezzo per adulto per questo Extra/Servizio. La valuta di questa struttura verrà applicata qui."
SR_FIELD_EXTRA_PRICE_CHILD_LABEL="Prezzo per bambino"
SR_FIELD_EXTRA_PRICE_CHILD_DESC="Inserisci il prezzo per bambino per questo Extra/Servizio. La valuta di questa struttura verrà applicata qui."

; Since 0.9.0
SR_DAYS="%d giorni"
SR_DAYS_1="%d giorno"
SR_TARIFF_SUFFIX_DAY_NUMBER="/ %s giorni"
SR_TARIFF_SUFFIX_DAY_NUMBER_1="/ 1 giorno"
SR_LENGTH_OF_STAY="Durata soggiorno"
SR_EMAIL_LENGTH_OF_STAY="Durata soggiorno: "
SR_PRICE_IS_FOR_X_DAY="Il prezzo è per %s giorni"
SR_PRICE_IS_FOR_X_DAY_1="Il prezzo è per %s giorno"
SR_ROOM_X_SINGLE_SUPPLEMENT_AMOUNT="Supplemento stanza singola"
SR_ROOM_X_SINGLE_SUPPLEMENT_COST="Costo della stanza dopo l'applicazione del supplemento per la stanza singola"
JLIB_APPLICATION_SAVE_SUCCESS="Oggetto salvato con successo."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Oggetto presentato con successo."
SR_EMAIL_NEW_RESERVATION_NOTIFICATION="Nuova prenotazione %s da %s %s"
SR_RESERVATION_CODE="Codice"
SR_RESERVATION_INVOICE="Fattura"
SR_RESERVATION_CHECKIN="Checkin"
SR_RESERVATION_CHECKOUT="Checkout"
SR_RESERVATION_ASSET="Struttura"
SR_RESERVATION_TOTAL_PAID="Totale pagamento"
SR_DESCRIPTION="Descrizione"

; Since 0.9.1
SR_CONFIRMATION_BOOKING_NUMBER="Numero prenotazione"
SR_CONFIRMATION_EMAIL="Email: "
SR_CONFIRMATION_BOOKING_DETAILS="Dettagli prenotazione"
SR_CONFIRMATION_BOOKING_ROOM_NUM="%s stanze"
SR_CONFIRMATION_BOOKING_ROOM_NUM_1="%s stanza"
SR_CONFIRMATION_CHECKIN="Check-in"
SR_CONFIRMATION_CHECKOUT="Check-out"
SR_CONFIRMATION_TOTAL_PRICE="Prezzo totale"
SR_CONFIRMATION_ASSET_NAME="Nome"
SR_CONFIRMATION_ASSET_ADDRESS="Indirizzo"
SR_CONFIRMATION_ASSET_EMAIL="Email"
SR_CONFIRMATION_ASSET_PHONE="Phone"
SR_ASSET_INFO="Informazioni hotel"
SR_BOOKING_INFO="Informazioni relative alla sua prenotazione"
SR_BOOKING_CONFIRMATION_ADULTS="%s adulti"
SR_BOOKING_CONFIRMATION_ADULTS_1="%s adulto"
SR_BOOKING_CONFIRMATION_CHILDREN="%s bambino"
SR_BOOKING_CONFIRMATION_CHILDREN_1="%s bambino"
SR_BOOKING_CONFIRMATION_GUEST_FULLNAME="Nome completo dell'ospite"
SR_BOOKING_CONFIRMATION_SMOKING="Fumatore"
SR_BOOKING_CONFIRMATION_ROOM_COST="Costo stanza"
SR_BOOKING_CONFIRMATION_ROOM_DETAILS="Dettagli camera"
SR_ERROR_PAST_CHECKIN_CHECKOUT="Il periodo scelto sembra essere passato"

; Since 0.9.3
SR_RESERVATION_COMPLETE_PAYMENT_CANCELLED="<h3>Grazie %s! La sua prenotazione numero %s è stata completata con successo ma il pagamento ancora non è stato effettuato.</h3><ul> <li>Abbiamo inviato una email di conferma a %s</li><li>Abbiamo inoltre notificato %s circa al suo imminente soggiorno</li><li><a href="_QQ_"%s"_QQ_">Clicca qui</a> per tornare alla nostra homepage.</li></ul>"
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_0="Non valido. Il periodo minimo di soggiorno è %d notti."
SR_ERROR_INVALID_MIN_LENGTH_OF_STAY_1="Non valido. La durata minima del periodo di soggiorno è %d giorni."
SR_USER_INFO_USERNAME_PLURAL="Hai eseguito l'accesso al sito con lo username: %s"

; Since 0.9.4
SR_COUPON_CHECK="Check"
SR_RESERVATION_ORIGIN_DIRECT="Diretto"

; Since 1.0.0
SR_ROOM_OCCUPANCY_CONSTRAINT_NOT_SATISFIED="Questo tipo di camera può ospitare un minimo di %d persone ed un massimo %d perone."
SR_RESERVE="Prenota"
SR_SEARCH_ROOMS="Stanze"
SR_SEARCH_ROOM="Stanza"
SR_SEARCH_ROOM_ADULTS="Adulti"
SR_SEARCH_ROOM_CHILDREN="Bambini"

; Since 1.6.0
SR_EMAIL_RESERVATION_CANCELLED="La prenotazione è stata cancellata"
SR_EMAIL_RESERVATION_CANCELLED_NOTIFICATION="La prenotazione %s da %s %s è stata cancellata"
SR_EMAIL_GREETING_TEXT_CANCELLED="La tua prenotazione  %s a %s è stata cancellata."
SR_EMAIL_NOTIFICATION_GREETING_TEXT_CANCELLED="<p>La prenotazione %s è stata cancellata, perfavore verifica i dettagli qui sotto oppure <a href="_QQ_"%s"_QQ_" target="_QQ_"_blank"_QQ_">clicca qui</a> per visualizzarli:</p>"
SR_EMAIL_COUPON_CODE="Codice Coupon: "

; Since 1.8.0
SR_FULLNAME="Nome completo"
SR_MESSAGE="Messaggio"
SR_SEND_MESSAGE="Invia messaggio"
SR_INQUIRY_FORM_SEND_MAIL_SUBJECT_PLURAL="Richiesta di prenotazione da %s per %s"
SR_INQUIRY_FORM_SEND_MAIL_SUCCESS_MESSAGE="Grazie, la sua richiesta di pranotazione è stata inviata con successo. Ti risponderemo il prima possibile."
SR_FIELD_EXTRA_CHARGE_TYPE_PER_BOOKING_PER_STAY="Per prenotazioni per durata (notte o giorno)"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_STAY="Per stanza per durata"
SR_FIELD_EXTRA_CHARGE_TYPE_PER_ROOM_PER_PERSON_PER_STAY="Per stanza per durata per persona"
SR_FIELD_EXTRA_CHARGE_TYPE_PERCENTAGE_OF_DAILY_RATE="Tasso percentuale giornaliero per camera"
SR_EXTRA_PRICE_DAILY_RATE="%s costo %d percentuale giornaliero di soggiorno per stanza"

; Since 1.9.0
SR_WARNING_SESSION_COMING_EXPIRE="La tua sessione terminerà presto."
SR_WARNING_SESSION_EXPIRED="La tua sessione è terminata, <a href="_QQ_"#"_QQ_">clicca qui</a> per avviare una nuova sessione."
SR_WEBSITE="Sito internet"
SR_YOUR_STAY="Tuo soggiorno"
SR_AVAILABLE_ROOMS="Stanze disponibili"
SR_MAX_GUESTS="Numero massimo di ospiti"
SR_SINGLE_ROOM_TYPE_VIEW_CALL_TO_ACTION="Prenota ora"
SR_TARIFF_PACKAGE_PER_ROOM="Pacchetto per camera"
SR_TARIFF_PACKAGE_PER_PERSON="Pacchetto per persona"
SR_TARIFF_PER_ROOM_PER_NIGHT="Tasso percentuale per camera per soggiorno"
SR_TARIFF_PER_PERSON_PER_NIGHT="Tasso percentuale per persona per soggiorno"
SR_ROOM_X_EXTRA_AMOUNT="Costo degli extra per camera"
SR_YOUR_RESERVATION_HAS_BEEN_AMENDED="La sua prenotazione è stata inviata con successo"
SR_RESERVATION_AMEND_SEND_OUTGOING_EMAILS="Inviare una mail di conferma?"
SR_FIELD_COUNTRY_SELECT=" - Seleziona nazione - "

; Since 1.9.4
SR_RESERVATION_AMEND_PROCESS_ONLINE_PAYMENT="Processare i pagamenti online?"
SR_YOUR_RESERVATION_HAS_BEEN_ADDED="La sua prenotazione è stata aggiunta con successo"
SR_SELECT_BED_QUANTITY="%s letti"
SR_SELECT_BED_QUANTITY_1="1 letto"
SR_BED="letto"

; Since 2.0.0
SR_RESERVATION_COMPLETE_REQUIRE_APPROVAL="<h3>Grazie %s! La sua richiesta di prenotazione %s ci è stata inoltrata, Le risponderemo il prima possibile per confermare la sua prenotazione.</h3><ul><li><a href="_QQ_"%s"_QQ_">Clicchi qui</a> per tornare all' home page.</li></ul>"
SR_RESERVATION_CANCEL="<h3>La sua prenotazione numero %s è stata cancellata.</h3><ul> <li><a href="_QQ_"%s"_QQ_">Clicchi qui</a> per tornare all' home page.</li></ul>"
SR_TOURIST_TAX_AMOUNT="Tassa turistica"
SR_EMAIL_TOURIST_TAX="Tassa turistica: "
SR_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s ricarico"
SR_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s sconto"
SR_EMAIL_PAYMENT_METHOD_SURCHARGE_AMOUNT="%s ricarico: "
SR_EMAIL_PAYMENT_METHOD_DISCOUNT_AMOUNT="%s sconto: "
SR_CONFIRMATION_GUEST_NUMBER="Numero ospiti"
SR_SELECT_GUEST_QUANTITY="%s ospiti"
SR_SELECT_GUEST_QUANTITY_1="1 ospite"

; Since 2.3.0
SR_ROOM_AND_RATE_INFORMATION="Informazioni su stanze ed aliquote "
SR_CONFIRMATION_PAYMENT_METHOD="Metodi di pagamento: "
SR_CONFIRMATION_MOBILE="Cellulare: "

; Since 2.3.3
SR_RESERVATION_PAYMENT_STATUS_UNPAID="Non pagato"
SR_RESERVATION_PAYMENT_STATUS_COMPLETED="Pagato"
SR_RESERVATION_PAYMENT_STATUS_CANCELLED="Cancellato"
SR_RESERVATION_PAYMENT_STATUS_PENDING="In attesa"

; Since 2.5.0
SR_TARIFF_SUFFIX_PER_BED="/ bed "
SR_WE_HAVE_X_BED_LEFT="Abbiamo %s letti disponibili"
SR_WE_HAVE_X_BED_LEFT_1="Abbiamo %s letto disponibile!"
SR_ONLY_1_LEFT_BED="Ultima occasione! Abbiamo un solo letot disponibile"
SR_ONLY_2_LEFT_BED="Solo 2 letti disponibili"
SR_ONLY_3_LEFT_BED="Solo 3 letti disponibili"
SR_ONLY_4_LEFT_BED="Solo 4 letti disponibili"
SR_ONLY_5_LEFT_BED="Solo 5 letti disponibili"
SR_ONLY_6_LEFT_BED="Solo 6 letti disponibili"
SR_ONLY_7_LEFT_BED="Solo 7 letti disponibili"
SR_ONLY_8_LEFT_BED="Solo 8 letti disponibili"
SR_ONLY_9_LEFT_BED="Solo 9 letti disponibili"
SR_ONLY_10_LEFT_BED="Solo 10 letti disponibili"
SR_ONLY_11_LEFT_BED="Solo 11 letti disponibili"
SR_ONLY_12_LEFT_BED="Solo 12 letti disponibili"
SR_ONLY_13_LEFT_BED="Solo 13 letti disponibili"
SR_ONLY_14_LEFT_BED="Solo 14 letti disponibili"
SR_ONLY_15_LEFT_BED="Solo 15 letti disponibili"
SR_ONLY_16_LEFT_BED="Solo 16 letti disponibili"
SR_ONLY_17_LEFT_BED="Solo 17 letti disponibili"
SR_ONLY_18_LEFT_BED="Solo 18 letti disponibili"
SR_ONLY_19_LEFT_BED="Solo 19 letti disponibili"
SR_ONLY_20_LEFT_BED="Solo 20 letti disponibili"
SR_DUE_AMOUNT="Totale dovuto"
SR_EMAIL_DUE_AMOUNT="Totale dovuto: "

; Since 2.6.0
SR_RESERVATION_CANCEL_MESSAGE="La sua prenotazione è stata cancellata."
SR_CHECKIN_PLACEHOLDER="La sua data di check-in"
SR_CHECKOUT_PLACEHOLDER="La sua data di check-out"
SR_CHOOSE_ANOTHER_CHECKIN="Perfavore scelga un altra data in cui effettuare il check-in"
SR_WARNING_SESSION_RENEW="Rinnova"

; Since 2.6.1
SR_ENTER_YOUR_EMAIL="Inserisca la sua email"
SR_ENTER_YOUR_RESERVATION_CODE="Inserisca il suo codice di prenotazione"
SR_FIND_RESERVATION="Rintraccia prenotazione"
SR_TRACKING_RESERVATION_FOUND_FORMAT="Codice di prenotazione %s trovato."
SR_TRACKING_RESERVATION_NOT_FOUND_MSG="Non siamo in grado di rintracciare nessuna prenotazione con le informazioni da lei fornite, perfavore ricontrolli le informazioni e provi di nuovo."
SR_RESERVATION_STATUS_FORMAT="Status della prenotazione: %s"
SR_TRACKING_VIEW_DEFAULT_TITLE="Visualizza il form per eseguire il racking delle prenotazioni per questa struttura"
SR_TRACKING_VIEW_DEFAULT_DESC="Abilita gli ospiti a ricercare la loro prenotazione usando il codice di prenotazione + indirizzo email"

; Since 2.7.0
SR_TARIFF_SUFFIX_PER_PERSON_1="/ 1 persona "
SR_TARIFF_SUFFIX_PER_PERSON="/ %s persone "
SR_AVAILABILITY_CALENDAR_RESTRICTED="Restricted"
SR_PAY_FOR_RESERVATION_CODE_AT_ASSET_FORMAT="Pay for reservation code %s at %s"

; Since 2.8.0
SR_EMAIL_TOTAL_PAID="Total paid: "
SR_CONFIRM_EMAIL="Confirm Email"
SR_EMAIL_NOT_MATCH_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Since 2.8.1
SR_RESERVATION_PAYMENT_FAILED="<h3>Thank you for making reservation with us. However we'd like to inform you that your reservation's payment is not yet completed therefore your reservation is not yet confirmed. Please try again or contact us for more info.</h3><ul><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to our home page.</li></ul>"

; Since 2.9.0
SR_ERROR_WARN_FILE_TOO_LARGE="The file is too large to upload."
SR_ERROR_WARN_FILE_UPLOAD_REQUIRE_MSG_FORMAT="You must upload the file field: %s"
SR_RESERVATION_AMEND_COMPLETE="<h3>Thank you %s! Your reservation number %s has been amended successfully.</h3><ul> <li>We've sent a confirmation email to %s</li><li>We've also notified %s about your upcoming stay</li><li><a href="_QQ_"%s"_QQ_">Click here</a> to return to your customer dashboard.</li></ul>"
SR_AMENDING_HEADING="Amending reservation"
SR_LAST_CHANCE_LAST_ROOM="Last chance! We only have 1 room left!"
SR_LAST_CHANCE_LAST_BED="Last chance! We only have 1 bed left!"
SR_PRIORITIZING_ROOMTYPE_NOTICE="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have %s other room types which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show them <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOMTYPE_NOTICE_1="Your chosen room type <strong>%s</strong> is displayed above <i class='fa fa-arrow-up'></i>, we also have another room type which you might be interested. Please <a href="_QQ_"javascript:void(0)"_QQ_" id="_QQ_"show-other-roomtypes"_QQ_">click here</a> to show it <i class='fa fa-arrow-down'></i>."
SR_PRIORITIZING_ROOM_TYPE="Your chosen room type"
SR_ADD_TO_WISH_LIST="Add to wish list"
SR_ADD_TO_WISH_LIST_SUCCESS="Success"
SR_WISH_LIST_WAS_ADDED="was added."
SR_GO_TO_WISH_LIST="Go to wish list"
SR_WISH_LIST_EMPTY="Your wish list is empty!"
SR_CUSTOMER_DASHBOARD_MY_WISHLIST="My wish list"
SR_SHARE_ON_FACEBOOK="Share on Facebook"
SR_SHARE_ON_TWITTER="Share on Twitter"
SR_SHARE_RESERVATION_ASSET_PLURAL="Share %s"
SR_RESERVE_NOW="Reserve now"
SR_ADD_TO_WISHLIST="Add to my wish list"
SR_SHARE_NOW="Share this to my friends via social networks"
SR_PIN_THIS="Pin this"
SR_PRIVACY_CONSENT_NOTE="By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information."
SR_ERR_PRIVACY_CONSENT_MSG="To sign up to this web site and make reservation you must agree to our Privacy Policy."
SR_WARN_ONLY_LETTERS_N_SPACES_MSG="Letters and spaces only please."
SR_WARN_INVALID_EXPIRATION_MSG="Your card's expiration year is invalid or in the past."
SR_PAYMENT_CARD_HOLDER="Card holder full name"
SR_PAYMENT_CARD_NUMBER="Card number"
SR_PAYMENT_CARD_CVV="Card CVV"
SR_PAYMENT_EXPIRATION="Expiration"
SR_PAYMENT_WE_ACCEPT_FORMAT="We accept: %s"

Youez - 2016 - github.com/yon3zu
LinuXploit