diff --git a/themes/bootstrap3/templates/search/advanced/eds.phtml b/themes/bootstrap3/templates/search/advanced/eds.phtml index b2fa127af21a53502f2d42e8266d74ccfe770aeb..8b0d01c6d4d15a3e1099c9677289c9ef234402fb 100644 --- a/themes/bootstrap3/templates/search/advanced/eds.phtml +++ b/themes/bootstrap3/templates/search/advanced/eds.phtml @@ -1,7 +1,7 @@ <? if (!empty($this->expanderList)): ?> <fieldset class="eds"> <legend><?=$this->transEsc('eds_modes_and_expanders')?></legend> - <? foreach ($this->expanderList as $field => $expander): + <? foreach ($this->expanderList as $field => $expander): $value = $expander['Value'] ?> <div class="checkbox"> <label for="expand_<?=$this->escapeHtmlAttr(str_replace(' ', '+', $field))?>"> @@ -13,7 +13,7 @@ <label for="searchModes"><?=$this->transEsc('Search Mode')?></label> <select id="searchMode_<?=$this->escapeHtmlAttr($field)?>" name="filter[]" class="form-control"> - <? foreach ($this->searchModes as $field => $searchMode): + <? foreach ($this->searchModes as $field => $searchMode): $value = $searchMode['Value'] ?> <option <?=(isset($searchMode['selected']) && $searchMode['selected'])?'selected="selected"':''?> value="SEARCHMODE:<?=$this->escapeHtmlAttr($value)?>"> <?= /* 'Label' comes from API and is always in English; try to translate structured value before using it: */ $this->transEsc('eds_mode_' . $value, array(), $searchMode['Label']) ?> @@ -27,7 +27,7 @@ <fieldset class="eds"> <legend><?=$this->transEsc('Limit To')?></legend> <? foreach ($this->limiterList as $field => $facet): ?> - <? switch($facet['Type']){ + <? switch($facet['Type']){ case 'multiselectvalue': ?> <label for="limit_<?=$this->escapeHtmlAttr(str_replace(' ', '+', $field))?>"><?=$this->transEsc($facet['Label'])?></label><br/> <select id="limit_<?=$this->escapeHtmlAttr($field)?>" name="filter[]" multiple="multiple" size="10" class="form-control"> @@ -37,8 +37,8 @@ <? endforeach; ?> </select> <!-- <br/> --> - <? break; - case 'select': + <? break; + case 'select': $value = $facet['LimiterValues'][0]['Value'] ?> <div class="checkbox"> <label for="limit_<?=$this->escapeHtmlAttr(str_replace(' ', '+', $field))?>"> @@ -46,28 +46,28 @@ <?=$this->transEsc('eds_limiter_' . $field, array(), $facet['Label'])?> </label> </div> - <? break; + <? break; case 'text': ?> <!-- not implemented --> - <? break; + <? break; case 'numeric':?> <!-- not implemented --> - <? break; + <? break; case 'numericrange':?> <!-- not implemented --> - <? break; + <? break; case 'ymrange': ?> <!-- not implemented --> - <? break; + <? break; case 'yrange': ?> <!-- not implemented --> - <? break; + <? break; case 'historicalrange':?> <!-- not implemented --> - <? break; + <? break; case 'singleselectvalue':?> <!-- not implemented --> - <? break; + <? break; }; ?> <? endforeach; ?> </fieldset> @@ -89,20 +89,20 @@ <div class="slider-container"> <input type="text" id="PublicationDateSlider"> </div> - <? - $this->headScript()->appendFile('vendor/bootstrap-slider.min.js'); - $this->headLink()->appendStylesheet('vendor/bootstrap-slider.min.css'); - $min = !empty($current['values'][0]) ? min($current['values'][0], 1400) : 1400; - $future = date('Y', time()+31536000); - $max = !empty($current['values'][1]) ? max($future, $current['values'][1]) : $future; - $low = !empty($current['values'][0]) ? $current['values'][0] : $min; - $high = !empty($current['values'][1]) ? $current['values'][1] : $max; - $min = intval($min); - $max = intval($max); - $low = intval($low); - $high = intval($high); - $init = !empty($current['values'][0]) ? 'fillTexts()' : ''; - $script = <<<JS + <? + $this->headScript()->appendFile('vendor/bootstrap-slider.min.js'); + $this->headLink()->appendStylesheet('vendor/bootstrap-slider.min.css'); + $min = !empty($current['values'][0]) ? min($current['values'][0], 1400) : 1400; + $future = date('Y', time()+31536000); + $max = !empty($current['values'][1]) ? max($future, $current['values'][1]) : $future; + $low = !empty($current['values'][0]) ? $current['values'][0] : $min; + $high = !empty($current['values'][1]) ? $current['values'][1] : $max; + $min = intval($min); + $max = intval($max); + $low = intval($low); + $high = intval($high); + $init = !empty($current['values'][0]) ? 'fillTexts()' : ''; + $script = <<<JS $(document).ready(function() { var fillTexts = function() { var v = PublicationDateSlider.getValue(); @@ -119,9 +119,9 @@ $(document).ready(function() { }) .on('change', fillTexts) .data('slider'); - {$init} -}); -JS; + {$init} +}); +JS; ?> <?=$this->inlineScript(\Zend\View\Helper\HeadScript::SCRIPT, $script, 'SET'); ?> </fieldset> diff --git a/themes/root/templates/HelpTranslations/el/advsearch.phtml b/themes/root/templates/HelpTranslations/el/advsearch.phtml index 4e9cab7f7c8e58e998737a8d1fae80109aaaf3d6..ebcb43425e2d48ba13633c96067f745a8afc1da3 100644 --- a/themes/root/templates/HelpTranslations/el/advsearch.phtml +++ b/themes/root/templates/HelpTranslations/el/advsearch.phtml @@ -1,4 +1,4 @@ -<h1>ΣυμβουλÎÏ‚ ΣÏνθετης Αναζήτησης</h1> +<h1>ΣυμβουλÎÏ‚ ΣÏνθετης Αναζήτησης</h1> <ul class="HelpMenu"> <li><a href="#Search Fields">Πεδία Αναζήτησης</a></li> diff --git a/themes/root/templates/HelpTranslations/el/tag.phtml b/themes/root/templates/HelpTranslations/el/tag.phtml index 6c3f71d1937f598b3e4ab7ca4b00c00bfe72ad77..01b1e0ad1e0953ea4ee219af9c324ed9d6127718 100644 --- a/themes/root/templates/HelpTranslations/el/tag.phtml +++ b/themes/root/templates/HelpTranslations/el/tag.phtml @@ -1,4 +1,4 @@ -<h1>Tagging</h1> +<h1>Tagging</h1> <p> Μια ετικÎτα είναι μια (σχετική) λÎξη ή ÏŒÏος που συνδÎεται με ή ανατίθεται σε Îνα κομμάτι των πληÏοφοÏιών (όπως εικόνα, άÏθÏο, ή βίντεο κλιπ), με αποτÎλεσμα να πεÏιγÏάφει το είδος και τη δυνατότητα λÎξεων-κλειδιών με βάση τη διαβάθμιση των πληÏοφοÏιών που εφαÏμόζεται.