Ajax Search Lite - Version 4.8.5

Version Description

  • Option to exclude Password protected posts
  • Exact matching - Full exact matching added (mathing a field exactly, from start to the end)
  • asl_load_css, asl_load_js and asl_load_css_js hooks - when returns true, the JS, CSS or both are stopped from loading
  • WP 5.6 compatible
  • Image parsing on multisite - now automatically tries to fetch the images from across blogs on the results page
Download this release

Release Info

Developer wpdreams
Plugin Icon 128x128 Ajax Search Lite
Version 4.8.5
Comparing to
See all releases

Code changes from version 4.8.4 to 4.8.5

ajax-search-lite.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ajax Search Lite
4
  Plugin URI: http://wp-dreams.com
5
  Description: The lite version of the most powerful ajax powered search engine for WordPress.
6
- Version: 4.8.4
7
  Author: Ernest Marcinko
8
  Author URI: http://wp-dreams.com
9
  Text Domain: ajax-search-lite
@@ -25,8 +25,8 @@ define(
25
  str_replace('http://', 'https://', plugin_dir_url(__FILE__)) : plugin_dir_url(__FILE__)
26
  );
27
  define('ASL_URL_NP', str_replace(array("http://", "https://"), "//", plugin_dir_url(__FILE__)));
28
- define('ASL_CURRENT_VERSION', 4741);
29
- define('ASL_CURR_VER_STRING', "4.8.4");
30
  define('ASL_DEBUG', 0);
31
  define('ASL_DEMO', get_option('wd_asl_demo', 0) );
32
 
3
  Plugin Name: Ajax Search Lite
4
  Plugin URI: http://wp-dreams.com
5
  Description: The lite version of the most powerful ajax powered search engine for WordPress.
6
+ Version: 4.8.5
7
  Author: Ernest Marcinko
8
  Author URI: http://wp-dreams.com
9
  Text Domain: ajax-search-lite
25
  str_replace('http://', 'https://', plugin_dir_url(__FILE__)) : plugin_dir_url(__FILE__)
26
  );
27
  define('ASL_URL_NP', str_replace(array("http://", "https://"), "//", plugin_dir_url(__FILE__)));
28
+ define('ASL_CURRENT_VERSION', 4742);
29
+ define('ASL_CURR_VER_STRING', "4.8.5");
30
  define('ASL_DEBUG', 0);
31
  define('ASL_DEMO', get_option('wd_asl_demo', 0) );
32
 
backend/settings.php CHANGED
@@ -29,7 +29,7 @@ $_dk = 'asl_defaults';
29
  <div class="wpdreams-box" style='vertical-align: middle;'>
30
  <a class='gopro' href='https://wp-dreams.com/go/?to=asp_demo_gopro' target='_blank'>Get the pro version!</a>
31
  <a class="whypro" href="#">Why Pro?</a>
32
- &nbsp;|&nbsp;Maybe leave a like :)
33
  <div style='display: inline-block;' class="fb-like" data-href="https://www.facebook.com/pages/WPDreams/383702515034741" data-layout="button_count" data-action="like" data-show-faces="true" data-share="false"></div>
34
  or you can follow me
35
  <a href="https://twitter.com/ernest_marcinko" class="twitter-follow-button" data-show-count="false">Follow @ernest_marcinko</a>
29
  <div class="wpdreams-box" style='vertical-align: middle;'>
30
  <a class='gopro' href='https://wp-dreams.com/go/?to=asp_demo_gopro' target='_blank'>Get the pro version!</a>
31
  <a class="whypro" href="#">Why Pro?</a>
32
+ &nbsp;|&nbsp;
33
  <div style='display: inline-block;' class="fb-like" data-href="https://www.facebook.com/pages/WPDreams/383702515034741" data-layout="button_count" data-action="like" data-show-faces="true" data-share="false"></div>
34
  or you can follow me
35
  <a href="https://twitter.com/ernest_marcinko" class="twitter-follow-button" data-show-count="false">Follow @ernest_marcinko</a>
backend/settings/default_options.php CHANGED
@@ -106,6 +106,7 @@ function asl_do_init_options() {
106
  'searchincontent' => 1,
107
  'searchinexcerpt' => 1,
108
  'search_in_permalinks' => 0,
 
109
  'search_in_ids' => 0,
110
  'search_all_cf' => 0,
111
  'customfields' => "",
106
  'searchincontent' => 1,
107
  'searchinexcerpt' => 1,
108
  'search_in_permalinks' => 0,
109
+ 'post_password_protected' => 1,
110
  'search_in_ids' => 0,
111
  'search_all_cf' => 0,
112
  'customfields' => "",
backend/tabs/instance/general/behavior.php CHANGED
@@ -7,9 +7,10 @@
7
  $o = new wpdreamsCustomSelect('exact_match_location', "..and match fields against the search phrase",
8
  array(
9
  'selects' => array(
10
- array('option' => 'Anywhere', 'value' => 'anywhere'),
11
- array('option' => 'Starting with phrase', 'value' => 'start'),
12
- array('option' => 'Ending with phrase', 'value' => 'end')
 
13
  ),
14
  'value' => $sd['exact_match_location']
15
  ));
7
  $o = new wpdreamsCustomSelect('exact_match_location', "..and match fields against the search phrase",
8
  array(
9
  'selects' => array(
10
+ array('option' => __('Anywhere', 'ajax-search-lite'), 'value' => 'anywhere'),
11
+ array('option' => __('Starting with phrase', 'ajax-search-lite'), 'value' => 'start'),
12
+ array('option' => __('Ending with phrase', 'ajax-search-lite'), 'value' => 'end'),
13
+ array('option' => __('Complete match', 'ajax-search-lite'), 'value' => 'full')
14
  ),
15
  'value' => $sd['exact_match_location']
16
  ));
backend/tabs/instance/general/sources.php CHANGED
@@ -79,6 +79,11 @@
79
  <?php echo __('Comma separated list. WP Defaults: publish, future, draft, pending, private, trash, auto-draft', 'ajax-search-lite'); ?>
80
  </p>
81
  </div>
 
 
 
 
 
82
  <div class="item">
83
  <?php
84
  $o = new wpdreamsYesNo("searchinterms", __("Search in terms? (categories, tags)", "ajax-search-lite"),
79
  <?php echo __('Comma separated list. WP Defaults: publish, future, draft, pending, private, trash, auto-draft', 'ajax-search-lite'); ?>
80
  </p>
81
  </div>
82
+ <div class="item it_engine_index">
83
+ <?php $o = new wpdreamsYesNo("post_password_protected", __('Search and return password protected posts?', 'ajax-search-lite'), $sd['post_password_protected']);
84
+ $params[$o->getName()] = $o->getData();
85
+ ?>
86
+ </div>
87
  <div class="item">
88
  <?php
89
  $o = new wpdreamsYesNo("searchinterms", __("Search in terms? (categories, tags)", "ajax-search-lite"),
css/style.basic.css CHANGED
@@ -1,5 +1 @@
1
- @keyframes aslAnFadeInDrop{0%{opacity:0;transform:translate(0,-50px);}100%{opacity:1;transform:translate(0,0);}}@-webkit-keyframes aslAnFadeInDrop{0%{opacity:0;transform:translate(0,-50px);-webkit-transform:translate(0,-50px);}100%{opacity:1;transform:translate(0,0);-webkit-transform:translate(0,0);}}@keyframes aslAnFadeOutDrop{0%{opacity:1;transform:translate(0,0);-webkit-transform:translate(0,0);}100%{opacity:0;transform:translate(0,-50px);-webkit-transform:translate(0,-50px);}}@-webkit-keyframes aslAnFadeOutDrop{0%{opacity:1;transform:translate(0,0);-webkit-transform:translate(0,0);}100%{opacity:0;transform:translate(0,-50px);-webkit-transform:translate(0,-50px);}}.hiddend{display:none !important;}div.asl_w.asl_an_fadeInDrop,div.asl_w.asl_an_fadeOutDrop{-webkit-animation-duration:100ms;animation-duration:100ms;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;}div.asl_w.asl_an_fadeInDrop{animation-name:aslAnFadeInDrop;-webkit-animation-name:aslAnFadeInDrop;}div.asl_w.asl_an_fadeOutDrop{animation-name:aslAnFadeOutDrop;-webkit-animation-name:aslAnFadeOutDrop;}div.asl_w.asl_main_container{transition:width 130ms linear;-webkit-transition:width 130ms linear;}div.asl_w,div.asl_w *,div.asl_r,div.asl_r *,div.asl_s,div.asl_s *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box;padding:0;margin:0;border:0;border-radius:0;text-transform:none;text-shadow:none;box-shadow:none;text-decoration:none;text-align:left;letter-spacing:normal;}div.asl_r,div.asl_r *{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}div.asl_m .proinput input::-ms-clear{display:none !important;width:0 !important;height:0 !important;}div.asl_m .proinput input::-ms-reveal{display:none !important;width:0 !important;height:0 !important;}div.asl_m input[type="search"]{-webkit-appearance:textfield !important;}div.asl_m input[type="search"]::-webkit-search-decoration,div.asl_m input[type="search"]::-webkit-search-cancel-button,div.asl_m input[type="search"]::-webkit-search-results-button,div.asl_m input[type="search"]::-webkit-search-results-decoration{display:none;}.clear{clear:both;}.hiddend{display:none;}div.asl_m textarea:focus,div.asl_m input:focus{outline:none;}div.asl_m{width:100%;height:auto;border-radius:0;background:rgba(255,255,255,0);overflow:hidden;position:relative;z-index:200;}div.asl_m .probox{width:auto;border-radius:5px;background:#fff;overflow:hidden;border:1px solid #fff;box-shadow:1px 0 3px #ccc inset;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;}div.asl_m .probox .proinput{width:auto;height:100%;margin:0 0 0 10px;padding:0 5px;float:left;box-shadow:none;position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;order:5;-webkit-order:5;}div.asl_m .probox .proinput input:before,div.asl_m .probox .proinput input:after,div.asl_m .probox .proinput form:before,div.asl_m .probox .proinput form:after{display:none;}div.asl_m .probox .proinput input{height:28px;border:0;background:transparent;width:100%;box-shadow:none;margin:-1px;padding:0;left:0;line-height:normal !important;display:block;}div.asl_m .probox .proinput input::-webkit-input-placeholder{opacity:.85;}div.asl_m .probox .proinput input::-moz-placeholder{opacity:.85;}div.asl_m .probox .proinput input:-ms-input-placeholder{opacity:.85;}div.asl_m .probox .proinput input:-moz-placeholder{opacity:.85;}div.asl_m .proinput input.orig{padding:0 !important;margin:0 !important;background:transparent !important;border:none !important;background-color:transparent !important;box-shadow:none !important;z-index:10;position:relative;}div.asl_m .proinput input.autocomplete{padding:0 !important;margin:0;background:transparent !important;border:none !important;background-color:transparent !important;box-shadow:none !important;opacity:.2;}div.asl_m .probox .proinput input.autocomplete{border:0;background:transparent;width:100%;box-shadow:none;margin:0;margin-top:-28px !important;padding:0;left:0;position:relative;z-index:9;}div.asl_m .probox .proinput.iepaddingfix{padding-top:0;}div.asl_m .probox .proinput .loading{width:32px;background:#000;height:100%;box-shadow:none;}div.asl_m .probox .proloading,div.asl_m .probox .proclose,div.asl_m .probox .promagnifier,div.asl_m .probox .prosettings{width:20px;height:20px;background:none;background-size:20px 20px;float:right;box-shadow:none;margin:0;padding:0;text-align:center;flex:0 0 auto;-webkit-flex:0 0 auto;z-index:100;}div.asl_m .probox .promagnifier{order:10;-webkit-order:10;}div.asl_m .probox .prosettings{order:1;-webkit-order:1;}div.asl_m .probox .proloading,div.asl_m .probox .proclose{background-position:center center;display:none;background-size:auto;background-repeat:no-repeat;background-color:transparent;order:6;-webkit-order:6;}div.asl_m .probox .proclose{position:relative;cursor:pointer;}div.asl_m .probox .promagnifier .innericon,div.asl_m .probox .prosettings .innericon,div.asl_m .probox .proclose .innericon{background-size:20px 20px;background-position:center center;background-repeat:no-repeat;background-color:transparent;width:100%;height:100%;text-align:center;overflow:hidden;}div.asl_m .probox .promagnifier .innericon svg,div.asl_m .probox .prosettings .innericon svg,div.asl_m .probox .proloading svg{height:100%;width:22px;vertical-align:baseline;display:inline-block;}div.asl_m .probox .proloading{padding:2px;box-sizing:border-box;}div.asl_m .probox div.asl_loader,div.asl_m .probox div.asl_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none;}div.asl_m .probox div.asl_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;width:100%;height:100%;align-items:center;justify-content:center;}div.asl_m .probox div.asl_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%;}@-webkit-keyframes rotate-simple{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);}}@keyframes rotate-simple{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);}}div.asl_m .probox div.asl_simple-circle{margin:0;height:100%;width:100%;animation:rotate-simple .8s infinite linear;-webkit-animation:rotate-simple .8s infinite linear;border:4px solid #fff;border-right-color:transparent !important;border-radius:50%;box-sizing:border-box;}div.asl_m .probox .proclose svg{background:#333;border-radius:50%;position:absolute;top:50%;width:20px;height:20px;margin-top:-10px;left:50%;margin-left:-10px;fill:#fefefe;padding:4px;box-sizing:border-box;box-shadow:0 0 0 2px rgba(255,255,255,.9);}div.asl_r *{text-decoration:none;text-shadow:none;}div.asl_r .results .asl_nores{overflow:hidden;width:auto;height:100%;line-height:initial;text-align:center;margin:0;background:#fff;padding:10px 3px;color:#222;}div.asl_r.horizontal{padding:2px 0 10px;}div.asl_r.horizontal .results .nores{background:transparent;}div.asl_r .results{overflow:hidden;width:auto;height:0;margin:0;padding:0;}div.asl_r.horizontal .results{height:auto;width:auto;}div.asl_r .results .item{overflow:hidden;width:auto;margin:0;padding:3px;position:relative;background:#f4f4f4;border-left:1px solid rgba(255,255,255,.6);border-right:1px solid rgba(255,255,255,.4);animation-delay:0s;animation-duration:1s;animation-fill-mode:both;animation-timing-function:ease;backface-visibility:hidden;-webkit-animation-delay:0s;-webkit-animation-duration:1s;-webkit-animation-fill-mode:both;-webkit-animation-timing-function:ease;-webkit-backface-visibility:hidden;}div.asl_r.vertical .results .item:first-child{border-radius:3px 3px 0 0;}div.asl_r.vertical .results .item:last-child{border-radius:0 0 3px 3px;margin-bottom:0;}div.asl_r.vertical .results .item:last-child:after{height:0;margin:0;width:0;}div.asl_r .results .item .asl_image{overflow:hidden;background:transparent;margin:2px 8px 0 0;padding:0;float:left;background-position:center;background-size:cover;}div.asl_r .results .item .asl_image img{width:100%;height:100%;}div.asl_r .results .item .asl_content{overflow:hidden;height:auto;background:transparent;margin:0;padding:3px 3px 5px 3px;}div.asl_r .results .item .asl_content h3{margin:0;padding:0;display:inline;line-height:inherit;}div.asl_r .results .item .asl_content .asl_desc{margin-top:4px;font-size:12px;line-height:18px;}div.asl_r .results .item div.etc{margin-top:4px;}div.asl_r .results a span.overlap{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1;}div.asl_r p.showmore{text-align:center;padding:0;margin:0;font-weight:normal;font-family:Open Sans;color:#055e94;font-size:12px;line-height:30px;text-shadow:0 0 0 rgba(255,255,255,0);background-color:#fff;margin-top:3px;cursor:pointer;}div.asl_r p.showmore a{font-weight:normal;font-family:Open Sans;color:#055e94;font-size:12px;line-height:30px;text-shadow:0 0 0 rgba(255,255,255,0);display:block;text-align:center;cursor:pointer;}.results .asl_nores .asl_keyword{padding:0 6px;cursor:pointer;font-weight:bold;font-family:Open Sans;}div.asl_r .resdrg{height:auto;}div.asl_w .group:first-of-type{margin:0 0 -3px;}div.asl_s.searchsettings{width:200px;height:auto;position:absolute;display:none;z-index:1101;border-radius:0 0 3px 3px;visibility:hidden;padding:0;}div.asl_s.searchsettings form{display:flex;flex-wrap:wrap;margin:0 0 12px 0 !important;padding:0 !important;}div.asl_s.searchsettings .asl_option_inner{margin:2px 10px 0 10px;*padding-bottom:10px;}div.asl_s.searchsettings.ie78 .asl_option_inner{margin-bottom:0 !important;padding-bottom:0 !important;}div.asl_s.searchsettings .asl_option_label{font-size:14px;line-height:20px !important;margin:0;width:150px;text-shadow:none;padding:0;min-height:20px;border:none;background:transparent;float:none;}div.asl_s.searchsettings .asl_option_inner input[type=checkbox]{display:none !important;}div.asl_s.searchsettings.ie78 .asl_option_inner input[type=checkbox]{display:block;}div.asl_s.searchsettings.ie78 .asl_option_label{float:right !important;}div.asl_s.searchsettings .asl_option{display:flex;flex-direction:row;-webkit-flex-direction:row;align-items:flex-start;margin:0 0 10px 0;cursor:pointer;}div.asl_s.searchsettings .asl_option.asl-o-last,div.asl_s.searchsettings .asl_option:last-child{margin-bottom:0;}div.asl_s.searchsettings .asl_option_inner{width:17px;height:17px;position:relative;flex-grow:0;-webkit-flex-grow:0;flex-shrink:0;-webkit-flex-shrink:0;}div.asl_s.searchsettings .asl_option_inner label{cursor:pointer;position:absolute;width:17px;height:17px;top:0;padding:0;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 rgba(255,255,255,.2);box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 rgba(255,255,255,.2);overflow:hidden;font-size:0 !important;color:rgba(0,0,0,0);}div.asl_s.searchsettings.ie78 .asl_option_inner label{display:none;}div.asl_s.searchsettings .asl_option_inner label:after{opacity:0;font-family:'aslsicons2';content:"";font-weight:normal !important;background:transparent;border:none !important;box-sizing:content-box;color:#fff;height:100%;width:100%;padding:0 !important;margin:1px 0 0 0 !important;line-height:17px;text-align:center;text-decoration:none;text-shadow:none;display:block;font-size:11px !important;position:absolute;top:0;left:0;z-index:1;}div.asl_s.searchsettings.ie78 .asl_option_inner label:after{display:none;}div.asl_s.searchsettings .asl_option_inner label:hover::after{opacity:.3;}div.asl_s.searchsettings .asl_option_inner input[type=checkbox]:checked+label:after{opacity:1;}div.asl_s.searchsettings fieldset{position:relative;float:left;}div.asl_s.searchsettings fieldset{background:transparent;font-size:.9em;margin:12px 0 0 !important;padding:0;width:192px;}div.asl_s.searchsettings fieldset .asl_option_label{width:130px;display:block;}div.asl_s.searchsettings form fieldset legend{padding:5px 0 8px 10px;}/*
2
- ------------------------------------------------------------------------------------------------------------------------
3
- 10. SCROLLBAR
4
- ------------------------------------------------------------------------------------------------------------------------
5
- /*[simplebar]*/[data-asl_simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;}.asl_simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit;}.asl_simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;left:0;top:0;bottom:0;right:0;width:auto !important;height:auto !important;z-index:0;}.asl_simplebar-offset{direction:inherit !important;box-sizing:inherit !important;resize:none !important;position:absolute;top:0;left:0;bottom:0;right:0;padding:0;margin:0;-webkit-overflow-scrolling:touch;}.asl_simplebar-content-wrapper{direction:inherit;box-sizing:border-box !important;position:relative;display:block;height:100%;width:auto;visibility:visible;max-width:100%;max-height:100%;scrollbar-width:none;}.asl_simplebar-content-wrapper::-webkit-scrollbar,.asl_simplebar-hide-scrollbar::-webkit-scrollbar{display:none;}.asl_simplebar-content:before,.asl_simplebar-content:after{content:' ';display:table;}.asl_simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none;}.asl_simplebar-height-auto-observer-wrapper{box-sizing:inherit !important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0;}.asl_simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1;}.asl_simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden;}[data-asl_simplebar].asl_simplebar-dragging .asl_simplebar-content{pointer-events:none;user-select:none;-webkit-user-select:none;}[data-asl_simplebar].asl_simplebar-dragging .asl_simplebar-track{pointer-events:all;}.asl_simplebar-scrollbar{position:absolute;right:2px;width:7px;min-height:10px;}.asl_simplebar-scrollbar:before{position:absolute;content:'';background:rgba(0,0,0,.5);border-radius:7px;left:0;right:0;opacity:0;transition:opacity .2s linear;}.asl_simplebar-scrollbar.asl_simplebar-visible:before{opacity:1;transition:opacity 0s linear;}.asl_simplebar-track.asl_simplebar-vertical{top:0;width:11px;margin-top:4px !important;margin-bottom:4px !important;}.asl_simplebar-track.asl_simplebar-vertical .asl_simplebar-scrollbar:before{top:2px;bottom:2px;}.asl_simplebar-track.asl_simplebar-horizontal{left:0;height:11px;margin-left:12px !important;margin-right:12px !important;}.asl_simplebar-track.asl_simplebar-horizontal .asl_simplebar-scrollbar:before{height:100%;left:2px;right:2px;}.asl_simplebar-track.asl_simplebar-horizontal .asl_simplebar-scrollbar{right:auto;left:0;top:2px;height:7px;min-height:0;min-width:10px;width:auto;}[data-asl_simplebar-direction='rtl'] .asl_simplebar-track.asl_simplebar-vertical{right:auto;left:0;}.hs-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll;}.asl_simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;}/*[simplebar]*/#asl_hidden_data{display:none !important;}.rtl .asl_content,.rtl .asl_nores,.rtl .asl_content *,.rtl .asl_nores *,.rtl .searchsettings form{text-align:right !important;direction:rtl !important;}.rtl .asl_nores>*{display:inline-block;}.rtl div.asl_r .results .item .asl_image{float:right;margin:2px 0 0 8px;}div.asl_s.searchsettings form fieldset legend{padding:5px 10px 8px 0;}.rtl .searchsettings .asl_option{flex-direction:row-reverse !important;-webkit-flex-direction:row-reverse !important;}.rtl .asl_option{direction:ltr;}.rtl .asl_label,.rtl .asl_option div.asl_option_label{text-align:right !important;}.rtl .asl_label{max-width:1000px !important;width:100%;direction:rtl !important;}.rtl .asl_label input[type=radio]{margin:0 0 0 6px !important;}.rtl .asl_option_cat_level-0 div.asl_option_label{font-weight:bold !important;}.rtl fieldset .asl_option_cat_level-1{margin-right:12px !important;margin-left:0;}.rtl fieldset .asl_option_cat_level-2{margin-right:24px !important;margin-left:0;}.rtl fieldset .asl_option_cat_level-3{margin-right:36px !important;margin-left:0;}.rtl .searchsettings legend{text-align:right !important;display:block;width:100%;}.rtl .searchsettings input[type=text],.rtl .searchsettings select{direction:rtl !important;text-align:right !important;}.rtl div.asl_w.asl_s.searchsettings form,.rtl div.asl_w.asl_sb.searchsettings form{flex-direction:row-reverse !important;}.rtl div.horizontal.asl_r div.item{float:right !important;}.rtl p.asl-try{direction:rtl;text-align:right;margin-right:10px;width:auto !important;}
1
+ @keyframes aslAnFadeInDrop{0%{opacity:0;transform:translate(0,-50px);}100%{opacity:1;transform:translate(0,0);}}@-webkit-keyframes aslAnFadeInDrop{0%{opacity:0;transform:translate(0,-50px);-webkit-transform:translate(0,-50px);}100%{opacity:1;transform:translate(0,0);-webkit-transform:translate(0,0);}}@keyframes aslAnFadeOutDrop{0%{opacity:1;transform:translate(0,0);-webkit-transform:translate(0,0);}100%{opacity:0;transform:translate(0,-50px);-webkit-transform:translate(0,-50px);}}@-webkit-keyframes aslAnFadeOutDrop{0%{opacity:1;transform:translate(0,0);-webkit-transform:translate(0,0);}100%{opacity:0;transform:translate(0,-50px);-webkit-transform:translate(0,-50px);}}.hiddend{display:none !important;}div.asl_w.asl_an_fadeInDrop,div.asl_w.asl_an_fadeOutDrop{-webkit-animation-duration:100ms;animation-duration:100ms;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;}div.asl_w.asl_an_fadeInDrop{animation-name:aslAnFadeInDrop;-webkit-animation-name:aslAnFadeInDrop;}div.asl_w.asl_an_fadeOutDrop{animation-name:aslAnFadeOutDrop;-webkit-animation-name:aslAnFadeOutDrop;}div.asl_w.asl_main_container{transition:width 130ms linear;-webkit-transition:width 130ms linear;}div.asl_w,div.asl_w *,div.asl_r,div.asl_r *,div.asl_s,div.asl_s *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box;padding:0;margin:0;border:0;border-radius:0;text-transform:none;text-shadow:none;box-shadow:none;text-decoration:none;text-align:left;letter-spacing:normal;}div.asl_r,div.asl_r *{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}div.asl_m .proinput input::-ms-clear{display:none !important;width:0 !important;height:0 !important;}div.asl_m .proinput input::-ms-reveal{display:none !important;width:0 !important;height:0 !important;}div.asl_m input[type="search"]{-webkit-appearance:textfield !important;}div.asl_m input[type="search"]::-webkit-search-decoration,div.asl_m input[type="search"]::-webkit-search-cancel-button,div.asl_m input[type="search"]::-webkit-search-results-button,div.asl_m input[type="search"]::-webkit-search-results-decoration{display:none;}.clear{clear:both;}.hiddend{display:none;}div.asl_m textarea:focus,div.asl_m input:focus{outline:none;}div.asl_m{width:100%;height:auto;border-radius:0;background:rgba(255,255,255,0);overflow:hidden;position:relative;z-index:200;}div.asl_m .probox{width:auto;border-radius:5px;background:#fff;overflow:hidden;border:1px solid #fff;box-shadow:1px 0 3px #ccc inset;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;}div.asl_m .probox .proinput{width:auto;height:100%;margin:0 0 0 10px;padding:0 5px;float:left;box-shadow:none;position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;order:5;-webkit-order:5;}div.asl_m .probox .proinput input:before,div.asl_m .probox .proinput input:after,div.asl_m .probox .proinput form:before,div.asl_m .probox .proinput form:after{display:none;}div.asl_m .probox .proinput input{height:28px;border:0;background:transparent;width:100%;box-shadow:none;margin:-1px;padding:0;left:0;line-height:normal !important;display:block;}div.asl_m .probox .proinput input::-webkit-input-placeholder{opacity:.85;}div.asl_m .probox .proinput input::-moz-placeholder{opacity:.85;}div.asl_m .probox .proinput input:-ms-input-placeholder{opacity:.85;}div.asl_m .probox .proinput input:-moz-placeholder{opacity:.85;}div.asl_m .proinput input.orig{padding:0 !important;margin:0 !important;background:transparent !important;border:none !important;background-color:transparent !important;box-shadow:none !important;z-index:10;position:relative;}div.asl_m .proinput input.autocomplete{padding:0 !important;margin:0;background:transparent !important;border:none !important;background-color:transparent !important;box-shadow:none !important;opacity:.2;}div.asl_m .probox .proinput input.autocomplete{border:0;background:transparent;width:100%;box-shadow:none;margin:0;margin-top:-28px !important;padding:0;left:0;position:relative;z-index:9;}div.asl_m .probox .proinput.iepaddingfix{padding-top:0;}div.asl_m .probox .proinput .loading{width:32px;background:#000;height:100%;box-shadow:none;}div.asl_m .probox .proloading,div.asl_m .probox .proclose,div.asl_m .probox .promagnifier,div.asl_m .probox .prosettings{width:20px;height:20px;background:none;background-size:20px 20px;float:right;box-shadow:none;margin:0;padding:0;text-align:center;flex:0 0 auto;-webkit-flex:0 0 auto;z-index:100;}div.asl_m .probox .promagnifier{order:10;-webkit-order:10;}div.asl_m .probox .prosettings{order:1;-webkit-order:1;}div.asl_m .probox .proloading,div.asl_m .probox .proclose{background-position:center center;display:none;background-size:auto;background-repeat:no-repeat;background-color:transparent;order:6;-webkit-order:6;}div.asl_m .probox .proclose{position:relative;cursor:pointer;}div.asl_m .probox .promagnifier .innericon,div.asl_m .probox .prosettings .innericon,div.asl_m .probox .proclose .innericon{background-size:20px 20px;background-position:center center;background-repeat:no-repeat;background-color:transparent;width:100%;height:100%;text-align:center;overflow:hidden;}div.asl_m .probox .promagnifier .innericon svg,div.asl_m .probox .prosettings .innericon svg,div.asl_m .probox .proloading svg{height:100%;width:22px;vertical-align:baseline;display:inline-block;}div.asl_m .probox .proloading{padding:2px;box-sizing:border-box;}div.asl_m .probox div.asl_loader,div.asl_m .probox div.asl_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none;}div.asl_m .probox div.asl_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;width:100%;height:100%;align-items:center;justify-content:center;}div.asl_m .probox div.asl_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%;}@-webkit-keyframes rotate-simple{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);}}@keyframes rotate-simple{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);}}div.asl_m .probox div.asl_simple-circle{margin:0;height:100%;width:100%;animation:rotate-simple .8s infinite linear;-webkit-animation:rotate-simple .8s infinite linear;border:4px solid #fff;border-right-color:transparent !important;border-radius:50%;box-sizing:border-box;}div.asl_m .probox .proclose svg{background:#333;border-radius:50%;position:absolute;top:50%;width:20px;height:20px;margin-top:-10px;left:50%;margin-left:-10px;fill:#fefefe;padding:4px;box-sizing:border-box;box-shadow:0 0 0 2px rgba(255,255,255,.9);}div.asl_r *{text-decoration:none;text-shadow:none;}div.asl_r .results .asl_nores{overflow:hidden;width:auto;height:100%;line-height:initial;text-align:center;margin:0;background:#fff;padding:10px 3px;color:#222;}div.asl_r.horizontal{padding:2px 0 10px;}div.asl_r.horizontal .results .nores{background:transparent;}div.asl_r .results{overflow:hidden;width:auto;height:0;margin:0;padding:0;}div.asl_r.horizontal .results{height:auto;width:auto;}div.asl_r .results .item{overflow:hidden;width:auto;margin:0;padding:3px;position:relative;background:#f4f4f4;border-left:1px solid rgba(255,255,255,.6);border-right:1px solid rgba(255,255,255,.4);animation-delay:0s;animation-duration:1s;animation-fill-mode:both;animation-timing-function:ease;backface-visibility:hidden;-webkit-animation-delay:0s;-webkit-animation-duration:1s;-webkit-animation-fill-mode:both;-webkit-animation-timing-function:ease;-webkit-backface-visibility:hidden;}div.asl_r.vertical .results .item:first-child{border-radius:3px 3px 0 0;}div.asl_r.vertical .results .item:last-child{border-radius:0 0 3px 3px;margin-bottom:0;}div.asl_r.vertical .results .item:last-child:after{height:0;margin:0;width:0;}div.asl_r .results .item .asl_image{overflow:hidden;background:transparent;margin:2px 8px 0 0;padding:0;float:left;background-position:center;background-size:cover;}div.asl_r .results .item .asl_image img{width:100%;height:100%;}div.asl_r .results .item .asl_content{overflow:hidden;height:auto;background:transparent;margin:0;padding:3px 3px 5px 3px;}div.asl_r .results .item .asl_content h3{margin:0;padding:0;display:inline;line-height:inherit;}div.asl_r .results .item .asl_content .asl_desc{margin-top:4px;font-size:12px;line-height:18px;}div.asl_r .results .item div.etc{margin-top:4px;}div.asl_r .results a span.overlap{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1;}div.asl_r p.showmore{text-align:center;padding:0;margin:0;font-weight:normal;font-family:Open Sans;color:#055e94;font-size:12px;line-height:30px;text-shadow:0 0 0 rgba(255,255,255,0);background-color:#fff;margin-top:3px;cursor:pointer;}div.asl_r p.showmore a{font-weight:normal;font-family:Open Sans;color:#055e94;font-size:12px;line-height:30px;text-shadow:0 0 0 rgba(255,255,255,0);display:block;text-align:center;cursor:pointer;}.results .asl_nores .asl_keyword{padding:0 6px;cursor:pointer;font-weight:bold;font-family:Open Sans;}div.asl_r .resdrg{height:auto;}div.asl_w .group:first-of-type{margin:0 0 -3px;}div.asl_s.searchsettings{width:200px;height:auto;position:absolute;display:none;z-index:1101;border-radius:0 0 3px 3px;visibility:hidden;padding:0;}div.asl_s.searchsettings form{display:flex;flex-wrap:wrap;margin:0 0 12px 0 !important;padding:0 !important;}div.asl_s.searchsettings .asl_option_inner{margin:2px 10px 0 10px;*padding-bottom:10px;}div.asl_s.searchsettings.ie78 .asl_option_inner{margin-bottom:0 !important;padding-bottom:0 !important;}div.asl_s.searchsettings .asl_option_label{font-size:14px;line-height:20px !important;margin:0;width:150px;text-shadow:none;padding:0;min-height:20px;border:none;background:transparent;float:none;}div.asl_s.searchsettings .asl_option_inner input[type=checkbox]{display:none !important;}div.asl_s.searchsettings.ie78 .asl_option_inner input[type=checkbox]{display:block;}div.asl_s.searchsettings.ie78 .asl_option_label{float:right !important;}div.asl_s.searchsettings .asl_option{display:flex;flex-direction:row;-webkit-flex-direction:row;align-items:flex-start;margin:0 0 10px 0;cursor:pointer;}div.asl_s.searchsettings .asl_option.asl-o-last,div.asl_s.searchsettings .asl_option:last-child{margin-bottom:0;}div.asl_s.searchsettings .asl_option_inner{width:17px;height:17px;position:relative;flex-grow:0;-webkit-flex-grow:0;flex-shrink:0;-webkit-flex-shrink:0;}div.asl_s.searchsettings .asl_option_inner label{cursor:pointer;position:absolute;width:17px;height:17px;top:0;padding:0;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 rgba(255,255,255,.2);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 rgba(255,255,255,.2);box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 rgba(255,255,255,.2);overflow:hidden;font-size:0 !important;color:rgba(0,0,0,0);}div.asl_s.searchsettings.ie78 .asl_option_inner label{display:none;}div.asl_s.searchsettings .asl_option_inner label:after{opacity:0;font-family:'aslsicons2';content:"";font-weight:normal !important;background:transparent;border:none !important;box-sizing:content-box;color:#fff;height:100%;width:100%;padding:0 !important;margin:1px 0 0 0 !important;line-height:17px;text-align:center;text-decoration:none;text-shadow:none;display:block;font-size:11px !important;position:absolute;top:0;left:0;z-index:1;}div.asl_s.searchsettings.ie78 .asl_option_inner label:after{display:none;}div.asl_s.searchsettings .asl_option_inner label:hover::after{opacity:.3;}div.asl_s.searchsettings .asl_option_inner input[type=checkbox]:checked+label:after{opacity:1;}div.asl_s.searchsettings fieldset{position:relative;float:left;}div.asl_s.searchsettings fieldset{background:transparent;font-size:.9em;margin:12px 0 0 !important;padding:0;width:192px;}div.asl_s.searchsettings fieldset .asl_option_label{width:130px;display:block;}div.asl_s.searchsettings form fieldset legend{padding:5px 0 8px 10px;}/*[simplebar]*/[data-asl_simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;}.asl_simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit;}.asl_simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;left:0;top:0;bottom:0;right:0;width:auto !important;height:auto !important;z-index:0;}.asl_simplebar-offset{direction:inherit !important;box-sizing:inherit !important;resize:none !important;position:absolute;top:0;left:0;bottom:0;right:0;padding:0;margin:0;-webkit-overflow-scrolling:touch;}.asl_simplebar-content-wrapper{direction:inherit;box-sizing:border-box !important;position:relative;display:block;height:100%;width:auto;visibility:visible;max-width:100%;max-height:100%;scrollbar-width:none;}.asl_simplebar-content-wrapper::-webkit-scrollbar,.asl_simplebar-hide-scrollbar::-webkit-scrollbar{display:none;}.asl_simplebar-content:before,.asl_simplebar-content:after{content:' ';display:table;}.asl_simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none;}.asl_simplebar-height-auto-observer-wrapper{box-sizing:inherit !important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0;}.asl_simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1;}.asl_simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden;}[data-asl_simplebar].asl_simplebar-dragging .asl_simplebar-content{pointer-events:none;user-select:none;-webkit-user-select:none;}[data-asl_simplebar].asl_simplebar-dragging .asl_simplebar-track{pointer-events:all;}.asl_simplebar-scrollbar{position:absolute;right:2px;width:7px;min-height:10px;}.asl_simplebar-scrollbar:before{position:absolute;content:'';background:rgba(0,0,0,.5);border-radius:7px;left:0;right:0;opacity:0;transition:opacity .2s linear;}.asl_simplebar-scrollbar.asl_simplebar-visible:before{opacity:1;transition:opacity 0s linear;}.asl_simplebar-track.asl_simplebar-vertical{top:0;width:11px;margin-top:4px !important;margin-bottom:4px !important;}.asl_simplebar-track.asl_simplebar-vertical .asl_simplebar-scrollbar:before{top:2px;bottom:2px;}.asl_simplebar-track.asl_simplebar-horizontal{left:0;height:11px;margin-left:12px !important;margin-right:12px !important;}.asl_simplebar-track.asl_simplebar-horizontal .asl_simplebar-scrollbar:before{height:100%;left:2px;right:2px;}.asl_simplebar-track.asl_simplebar-horizontal .asl_simplebar-scrollbar{right:auto;left:0;top:2px;height:7px;min-height:0;min-width:10px;width:auto;}[data-asl_simplebar-direction='rtl'] .asl_simplebar-track.asl_simplebar-vertical{right:auto;left:0;}.hs-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll;}.asl_simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;}/*[simplebar]*/#asl_hidden_data{display:none !important;}.rtl .asl_content,.rtl .asl_nores,.rtl .asl_content *,.rtl .asl_nores *,.rtl .searchsettings form{text-align:right !important;direction:rtl !important;}.rtl .asl_nores>*{display:inline-block;}.rtl div.asl_r .results .item .asl_image{float:right;margin:2px 0 0 8px;}div.asl_s.searchsettings form fieldset legend{padding:5px 10px 8px 0;}.rtl .searchsettings .asl_option{flex-direction:row-reverse !important;-webkit-flex-direction:row-reverse !important;}.rtl .asl_option{direction:ltr;}.rtl .asl_label,.rtl .asl_option div.asl_option_label{text-align:right !important;}.rtl .asl_label{max-width:1000px !important;width:100%;direction:rtl !important;}.rtl .asl_label input[type=radio]{margin:0 0 0 6px !important;}.rtl .asl_option_cat_level-0 div.asl_option_label{font-weight:bold !important;}.rtl fieldset .asl_option_cat_level-1{margin-right:12px !important;margin-left:0;}.rtl fieldset .asl_option_cat_level-2{margin-right:24px !important;margin-left:0;}.rtl fieldset .asl_option_cat_level-3{margin-right:36px !important;margin-left:0;}.rtl .searchsettings legend{text-align:right !important;display:block;width:100%;}.rtl .searchsettings input[type=text],.rtl .searchsettings select{direction:rtl !important;text-align:right !important;}.rtl div.asl_w.asl_s.searchsettings form,.rtl div.asl_w.asl_sb.searchsettings form{flex-direction:row-reverse !important;}.rtl div.horizontal.asl_r div.item{float:right !important;}.rtl p.asl-try{direction:rtl;text-align:right;margin-right:10px;width:auto !important;}
 
 
 
 
includes/classes/actions/class-asl-stylesheets.php CHANGED
@@ -32,6 +32,11 @@ if (!class_exists("WD_ASL_StyleSheets_Action")) {
32
  return;
33
  }
34
 
 
 
 
 
 
35
  add_action('wp_head', array($this, 'inlineCSS'), 10, 0);
36
 
37
 
32
  return;
33
  }
34
 
35
+ $exit1 = apply_filters('asl_load_css_js', false);
36
+ $exit2 = apply_filters('asl_load_css', false);
37
+ if ($exit1 || $exit2)
38
+ return false;
39
+
40
  add_action('wp_head', array($this, 'inlineCSS'), 10, 0);
41
 
42
 
includes/classes/core/class-asl-filters.php CHANGED
@@ -73,10 +73,16 @@ if ( !class_exists("WD_ASL_Filters") ) {
73
  "args" => 1
74
  ),
75
  array(
76
- "filter" => "asp_result_after_prostproc",
77
- "handler" => array("EtcFixes", "plug_DownloadMonitorLink"),
78
- "priority" => 999999999,
79
- "args" => 2
 
 
 
 
 
 
80
  )
81
  );
82
 
73
  "args" => 1
74
  ),
75
  array(
76
+ "filter" => "asl_load_js",
77
+ "handler" => array("EtcFixes", "fixOxygenEditorJS"),
78
+ "priority" => 999,
79
+ "args" => 1
80
+ ),
81
+ array(
82
+ "filter" => "wp_get_attachment_image_src",
83
+ "handler" => array("EtcFixes", "multisiteImageFix"),
84
+ "priority" => 999,
85
+ "args" => 4
86
  )
87
  );
88
 
includes/classes/core/class-asl-init.php CHANGED
@@ -178,6 +178,11 @@ class WD_ASL_Init {
178
  }
179
  }
180
 
 
 
 
 
 
181
  // ------------ Dequeue some scripts causing issues on the back-end --------------
182
  wp_dequeue_script( 'otw-admin-colorpicker' );
183
  wp_dequeue_script( 'otw-admin-select2' );
@@ -205,7 +210,7 @@ class WD_ASL_Init {
205
  wp_enqueue_script('wpdreams-gestures');
206
  wp_register_script('wpdreams-highlight', ASL_URL . 'js/' . $js_source . '/jquery.highlight.js', array($prereq), ASL_CURR_VER_STRING, $load_in_footer);
207
  wp_enqueue_script('wpdreams-highlight');
208
- if ($load_mcustom) {
209
  wp_register_script('wpdreams-scroll', ASL_URL . 'js/' . $js_source . '/simplebar.js', array($prereq), ASL_CURR_VER_STRING, $load_in_footer);
210
  wp_enqueue_script('wpdreams-scroll');
211
  }
178
  }
179
  }
180
 
181
+ $exit1 = apply_filters('asl_load_css_js', false);
182
+ $exit2 = apply_filters('asl_load_js', false);
183
+ if ( $exit1 || $exit2 )
184
+ return false;
185
+
186
  // ------------ Dequeue some scripts causing issues on the back-end --------------
187
  wp_dequeue_script( 'otw-admin-colorpicker' );
188
  wp_dequeue_script( 'otw-admin-select2' );
210
  wp_enqueue_script('wpdreams-gestures');
211
  wp_register_script('wpdreams-highlight', ASL_URL . 'js/' . $js_source . '/jquery.highlight.js', array($prereq), ASL_CURR_VER_STRING, $load_in_footer);
212
  wp_enqueue_script('wpdreams-highlight');
213
+ if ( $load_mcustom ) {
214
  wp_register_script('wpdreams-scroll', ASL_URL . 'js/' . $js_source . '/simplebar.js', array($prereq), ASL_CURR_VER_STRING, $load_in_footer);
215
  wp_enqueue_script('wpdreams-scroll');
216
  }
includes/classes/filters/class-asl-etc_fixes.php CHANGED
@@ -14,24 +14,6 @@ if (!class_exists("WD_ASL_EtcFixes_Filter")) {
14
  * @author Ernest Marcinko
15
  */
16
  class WD_ASL_EtcFixes_Filter extends WD_ASL_Filter_Abstract {
17
-
18
- /**
19
- * Fix for the Download Monitor plugin download urls
20
- *
21
- * @param $r
22
- * @param $sid
23
- * @return mixed
24
- */
25
- function plug_DownloadMonitorLink($r, $sid) {
26
- if ( $r->post_type == "dlm_download" && class_exists("DLM_Download") ) {
27
- $dl = new DLM_Download($r->id);
28
- if ( $dl->exists() ) {
29
- $r->link = $dl->get_the_download_link();
30
- }
31
- }
32
- return $r;
33
- }
34
-
35
  /**
36
  * Executes search shortcodes when placed as menu titles
37
  *
@@ -51,6 +33,33 @@ if (!class_exists("WD_ASL_EtcFixes_Filter")) {
51
  return $menu_items;
52
  }
53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  // ------------------------------------------------------------
55
  // ---------------- SINGLETON SPECIFIC --------------------
56
  // ------------------------------------------------------------
14
  * @author Ernest Marcinko
15
  */
16
  class WD_ASL_EtcFixes_Filter extends WD_ASL_Filter_Abstract {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  /**
18
  * Executes search shortcodes when placed as menu titles
19
  *
33
  return $menu_items;
34
  }
35
 
36
+ /**
37
+ * Fix for the Oxygen builder plugin editor error console
38
+ */
39
+ function fixOxygenEditorJS( $exit ) {
40
+ if ( isset($_GET['ct_builder']) ) {
41
+ return true;
42
+ }
43
+
44
+ return false;
45
+ }
46
+
47
+ /**
48
+ * Fix images on multisite installation results pages with search override
49
+ *
50
+ * @param $image
51
+ * @param $attachment_id
52
+ * @param $size
53
+ * @param $icon
54
+ * @return array
55
+ */
56
+ function multisiteImageFix( $image, $attachment_id, $size, $icon ) {
57
+ if ( is_multisite() && !empty(get_asp_result_field('image')) )
58
+ return array(get_asp_result_field('image'), 300, 300, true);
59
+ else
60
+ return $image;
61
+ }
62
+
63
  // ------------------------------------------------------------
64
  // ---------------- SINGLETON SPECIFIC --------------------
65
  // ------------------------------------------------------------
includes/classes/search/search_content.class.php CHANGED
@@ -38,10 +38,14 @@ if ( ! class_exists( 'wpdreams_searchContent' ) ) {
38
  $wcl = '%'; // Wildcard Left
39
  $wcr = '%'; // Wildcard right
40
  if ( $options['set_exactonly'] == 1 ) {
41
- if ( $sd['exact_match_location'] == 'start' )
42
  $wcl = '';
43
- else if ( $sd['exact_match_location'] == 'end' )
44
  $wcr = '';
 
 
 
 
45
  }
46
 
47
  if ( isset($options['non_ajax_search']) )
@@ -60,6 +64,13 @@ if ( ! class_exists( 'wpdreams_searchContent' ) ) {
60
  $post_statuses = "( $wpdb->posts.post_status IN ($post_statuses) )";
61
  /*---------------------------------------------------------------*/
62
 
 
 
 
 
 
 
 
63
  /*----------------------- Gather Types --------------------------*/
64
  if ($options['set_inposts'] == 1)
65
  $types[] = "post";
@@ -613,6 +624,7 @@ if ( ! class_exists( 'wpdreams_searchContent' ) ) {
613
  $woo_visibility_query
614
  $cf_select
615
  AND $post_statuses
 
616
  AND $term_query
617
  AND {like_query}
618
  $exclude_posts
38
  $wcl = '%'; // Wildcard Left
39
  $wcr = '%'; // Wildcard right
40
  if ( $options['set_exactonly'] == 1 ) {
41
+ if ( $sd['exact_match_location'] == 'start' ) {
42
  $wcl = '';
43
+ } else if ( $sd['exact_match_location'] == 'end' ) {
44
  $wcr = '';
45
+ } else if ( $sd['exact_match_location'] == 'full' ) {
46
+ $wcr = '';
47
+ $wcl = '';
48
+ }
49
  }
50
 
51
  if ( isset($options['non_ajax_search']) )
64
  $post_statuses = "( $wpdb->posts.post_status IN ($post_statuses) )";
65
  /*---------------------------------------------------------------*/
66
 
67
+ /*------------------------- Paswword ----------------------------*/
68
+ $post_password_query = '';
69
+ if ( $sd['post_password_protected'] == 0 ) {
70
+ $post_password_query = " AND ( $wpdb->posts.post_password = '' )";
71
+ }
72
+ /*---------------------------------------------------------------*/
73
+
74
  /*----------------------- Gather Types --------------------------*/
75
  if ($options['set_inposts'] == 1)
76
  $types[] = "post";
624
  $woo_visibility_query
625
  $cf_select
626
  AND $post_statuses
627
+ $post_password_query
628
  AND $term_query
629
  AND {like_query}
630
  $exclude_posts
includes/views/asl.shortcode.php CHANGED
@@ -355,7 +355,11 @@ if ( function_exists('qtranxf_getLanguage') ) {
355
  ?>
356
  <?php ob_start(); ?>
357
  {
358
- "homeurl": "<?php echo function_exists("pll_home_url") ? @pll_home_url() : home_url("/"); ?>",
 
 
 
 
359
  "resultstype": "vertical",
360
  "resultsposition": "hover",
361
  "itemscount": <?php echo ((isset($style['itemscount']) && $style['itemscount']!="")?$style['itemscount']:"10"); ?>,
355
  ?>
356
  <?php ob_start(); ?>
357
  {
358
+ <?php if ( is_admin() ): ?>
359
+ "homeurl": "<?php echo home_url("/"); ?>",
360
+ <?php else: ?>
361
+ "homeurl": "<?php echo function_exists("pll_home_url") ? PLL()->links->get_home_url( '', true ) : home_url("/"); ?>",
362
+ <?php endif; ?>
363
  "resultstype": "vertical",
364
  "resultsposition": "hover",
365
  "itemscount": <?php echo ((isset($style['itemscount']) && $style['itemscount']!="")?$style['itemscount']:"10"); ?>,
languages/ajax-search-lite-en_EN.mo CHANGED
Binary file
languages/ajax-search-lite-en_EN.po CHANGED
@@ -1,54 +1,200 @@
 
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Ajax Search Lite\n"
4
- "POT-Creation-Date: 2019-09-25 16:50+0200\n"
5
- "PO-Revision-Date: 2019-09-25 16:50+0200\n"
 
6
  "Last-Translator: \n"
7
- "Language-Team: \n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.2.3\n"
13
- "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: ..\n"
17
- "X-Poedit-SearchPathExcluded-0: ../js\n"
18
- "X-Poedit-SearchPathExcluded-1: ../backend/settings/assets\n"
 
 
 
 
 
 
 
 
19
 
20
- #: ../backend/analytics.php:7
21
- msgid "Enable search Google Analytics integration?"
22
  msgstr ""
23
 
24
- #: ../backend/analytics.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Google analytics pageview string"
26
  msgstr ""
27
 
28
- #: ../backend/analytics.php:16
29
  msgid ""
30
  "This is how the pageview will look like on the google analytics website. Use "
31
  "the {asl_term} variable to add the search term to the pageview."
32
  msgstr ""
33
 
34
- #: ../backend/analytics.php:40
35
- msgid "Analytics options"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  msgstr ""
37
 
38
- #: ../backend/analytics.php:45
39
- msgid "Result"
40
  msgstr ""
41
 
42
- #: ../backend/analytics.php:47
43
  msgid ""
44
- "After some time you should be able to see the hits on your analytics board."
 
 
 
 
45
  msgstr ""
46
 
47
- #: ../backend/compatibility.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  msgid "Try fixing DOM duplicates of the search bar if they exist?"
49
  msgstr ""
50
 
51
- #: ../backend/compatibility.php:76
52
  msgid ""
53
  "Some menu or widgets scripts tend to <strong>clone</strong> the search bar "
54
  "completely for Mobile viewports, causing a malfunctioning search bar with no "
@@ -56,276 +202,308 @@ msgid ""
56
  "if possible."
57
  msgstr ""
58
 
59
- #: ../backend/settings.php:48
60
  msgid "Search shortcode:"
61
  msgstr ""
62
 
63
- #: ../backend/settings.php:51
64
  msgid "Search shortcode for templates:"
65
  msgstr ""
66
 
67
- #: ../backend/settings.php:62
68
  msgid "General Options"
69
  msgstr ""
70
 
71
- #: ../backend/settings.php:63 ../backend/settings.php:79
72
  msgid "Image Options"
73
  msgstr ""
74
 
75
- #: ../backend/settings.php:64
76
  msgid "Frontend Options"
77
  msgstr ""
78
 
79
- #: ../backend/settings.php:65
80
  msgid "Layout options"
81
  msgstr ""
82
 
83
- #: ../backend/settings.php:66
84
  msgid "Advanced"
85
  msgstr ""
86
 
87
- #: ../backend/settings.php:71
88
  msgid "Genearal Options"
89
  msgstr ""
90
 
91
- #: ../backend/settings.php:87
92
  msgid "Frontend Search Settings"
93
  msgstr ""
94
 
95
- #: ../backend/settings.php:95
96
  msgid "Layout Options"
97
  msgstr ""
98
 
99
- #: ../backend/settings.php:103
100
  msgid "Advanced Options"
101
  msgstr ""
102
 
103
- #: ../backend/settings.php:131
104
  msgid "Ajax Search Lite settings saved!"
105
  msgstr ""
106
 
107
- #: ../backend/tabs/instance/advanced_options.php:5
108
- msgid "Exclude hidden WooCommerce products from search?"
109
  msgstr ""
110
 
111
- #: ../backend/tabs/instance/advanced_options.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  msgid "Exclude WooCommerce out of stock products?"
113
  msgstr ""
114
 
115
- #: ../backend/tabs/instance/advanced_options.php:19
116
  msgid "What to do with shortcodes in results content?"
117
  msgstr ""
118
 
119
- #: ../backend/tabs/instance/advanced_options.php:29
120
  msgid ""
121
  "Removing shortcode is usually much faster, especially if you have many of "
122
  "them within posts."
123
  msgstr ""
124
 
125
- #: ../backend/tabs/instance/advanced_options.php:34
126
  msgid "Title Field"
127
  msgstr ""
128
 
129
- #: ../backend/tabs/instance/advanced_options.php:55
130
  msgid "Description Field"
131
  msgstr ""
132
 
133
- #: ../backend/tabs/instance/advanced_options.php:77
134
  msgid "Exclude categories"
135
  msgstr ""
136
 
137
- #: ../backend/tabs/instance/advanced_options.php:84
138
  msgid "Exclude Posts by ID's (comma separated post ID-s)"
139
  msgstr ""
140
 
141
- #: ../backend/tabs/instance/advanced_options.php:90
142
  msgid "WPML compatibility"
143
  msgstr ""
144
 
145
- #: ../backend/tabs/instance/advanced_options.php:96
146
  msgid "Polylang compatibility"
147
  msgstr ""
148
 
149
- #: ../backend/tabs/instance/frontend_options.php:3
150
  msgid "Show search settings on the frontend?"
151
  msgstr ""
152
 
153
- #: ../backend/tabs/instance/frontend_options.php:8
154
  msgid ""
155
  "The default values of the checkboxes on the frontend are the values set "
156
  "above."
157
  msgstr ""
158
 
159
- #: ../backend/tabs/instance/frontend_options.php:12
160
  msgid "Show exact matches selector?"
161
  msgstr ""
162
 
163
- #: ../backend/tabs/instance/frontend_options.php:20
164
  msgid "Show search in posts selector?"
165
  msgstr ""
166
 
167
- #: ../backend/tabs/instance/frontend_options.php:27
168
  msgid "Show search in pages selector?"
169
  msgstr ""
170
 
171
- #: ../backend/tabs/instance/frontend_options.php:34
172
  msgid "Show search in title selector?"
173
  msgstr ""
174
 
175
- #: ../backend/tabs/instance/frontend_options.php:41
176
  msgid "Show search in content selector?"
177
  msgstr ""
178
 
179
- #: ../backend/tabs/instance/frontend_options.php:47
180
  msgid "Show search in custom post types selectors"
181
  msgstr ""
182
 
183
- #: ../backend/tabs/instance/frontend_options.php:52
184
  msgid ""
185
  "Nor recommended if you have more than 500 categories! (the HTML output will "
186
  "get too big)"
187
  msgstr ""
188
 
189
- #: ../backend/tabs/instance/frontend_options.php:54
190
  msgid "Show the categories selectors?"
191
  msgstr ""
192
 
193
- #: ../backend/tabs/instance/frontend_options.php:59
194
  msgid "Show the uncategorised category?"
195
  msgstr ""
196
 
197
- #: ../backend/tabs/instance/frontend_options.php:63
198
  msgid "Select which categories exclude"
199
  msgstr ""
200
 
201
- #: ../backend/tabs/instance/frontend_options.php:70
202
  msgid "Categories filter box header text"
203
  msgstr ""
204
 
205
- #: ../backend/tabs/instance/frontend_options.php:76
206
- #: ../backend/tabs/instance/general_options.php:35
207
- #: ../backend/tabs/instance/image_options.php:129
208
- #: ../backend/tabs/instance/layout_options.php:42
209
  msgid "Save options!"
210
  msgstr ""
211
 
212
- #: ../backend/tabs/instance/general/behavior.php:3
213
  msgid "Show exact matches only?"
214
  msgstr ""
215
 
216
- #: ../backend/tabs/instance/general/behavior.php:21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  msgid "Keyword (phrase) logic?"
218
  msgstr ""
219
 
220
- #: ../backend/tabs/instance/general/behavior.php:23
221
  msgid "OR"
222
  msgstr ""
223
 
224
- #: ../backend/tabs/instance/general/behavior.php:24
225
  msgid "OR with exact word matches"
226
  msgstr ""
227
 
228
- #: ../backend/tabs/instance/general/behavior.php:25
229
  msgid "AND"
230
  msgstr ""
231
 
232
- #: ../backend/tabs/instance/general/behavior.php:26
233
  msgid "AND with exact word matches"
234
  msgstr ""
235
 
236
- #: ../backend/tabs/instance/general/behavior.php:33
237
  msgid ""
238
  "This determines if the result should match either of the entered phrases (OR "
239
  "logic) or all of the entered phrases (AND logic)."
240
  msgstr ""
241
 
242
- #: ../backend/tabs/instance/general/behavior.php:36
243
  msgid ""
244
  "Please note: For <strong>performance rasons</strong> exact word matching in "
245
  "the Lite version is only able to check space-separated words. Commas, dots, "
246
  "question marks etc.. are not considered as word separators."
247
  msgstr ""
248
 
249
- #: ../backend/tabs/instance/general/behavior.php:41
250
  msgid "Trigger search on facet change?"
251
  msgstr ""
252
 
253
- #: ../backend/tabs/instance/general/behavior.php:45
254
  msgid ""
255
  "Will trigger a search when the user clicks on a checkbox on the front-end."
256
  msgstr ""
257
 
258
- #: ../backend/tabs/instance/general/behavior.php:49
259
  msgid "Trigger search when typing?"
260
  msgstr ""
261
 
262
- #: ../backend/tabs/instance/general/behavior.php:56
263
  msgid "Minimal character count to trigger search"
264
  msgstr ""
265
 
266
- #: ../backend/tabs/instance/general/behavior.php:63
267
  msgid "Max. results"
268
  msgstr ""
269
 
270
- #: ../backend/tabs/instance/general/behavior.php:69
271
  msgid "Action when clicking <strong>the magnifier</strong> icon"
272
  msgstr ""
273
 
274
- #: ../backend/tabs/instance/general/behavior.php:72
275
- #: ../backend/tabs/instance/general/behavior.php:99
276
  msgid "Trigger live search"
277
  msgstr ""
278
 
279
- #: ../backend/tabs/instance/general/behavior.php:73
280
- #: ../backend/tabs/instance/general/behavior.php:100
281
  msgid "Redirec to: Results page"
282
  msgstr ""
283
 
284
- #: ../backend/tabs/instance/general/behavior.php:74
285
- #: ../backend/tabs/instance/general/behavior.php:101
286
  msgid "Redirec to: Woocommerce results page"
287
  msgstr ""
288
 
289
- #: ../backend/tabs/instance/general/behavior.php:75
290
- #: ../backend/tabs/instance/general/behavior.php:102
291
  msgid "Redirec to: First matching result"
292
  msgstr ""
293
 
294
- #: ../backend/tabs/instance/general/behavior.php:76
295
- #: ../backend/tabs/instance/general/behavior.php:103
296
  msgid "Redirec to: Custom URL"
297
  msgstr ""
298
 
299
- #: ../backend/tabs/instance/general/behavior.php:77
300
- #: ../backend/tabs/instance/general/behavior.php:104
301
  msgid "Do nothing"
302
  msgstr ""
303
 
304
- #: ../backend/tabs/instance/general/behavior.php:96
305
  msgid "Action when pressing <strong>the return</strong> key"
306
  msgstr ""
307
 
308
- #: ../backend/tabs/instance/general/behavior.php:123
309
  msgid "Custom redirect URL"
310
  msgstr ""
311
 
312
- #: ../backend/tabs/instance/general/behavior.php:130
313
  msgid "Override the default WordPress search results?"
314
  msgstr ""
315
 
316
- #: ../backend/tabs/instance/general/behavior.php:144
317
  msgid "Might not work with some Themes."
318
  msgstr ""
319
 
320
- #: ../backend/tabs/instance/general/behavior.php:148
321
  msgid "Results count per page?"
322
  msgstr ""
323
 
324
- #: ../backend/tabs/instance/general/behavior.php:152
325
  msgid "The number of results per page, on the results page."
326
  msgstr ""
327
 
328
- #: ../backend/tabs/instance/general/behavior.php:154
329
  msgid ""
330
  "<strong>WARNING:</strong> This should be set to the same as the number of "
331
  "results originally displayed on the results page!<br>\n"
@@ -335,336 +513,355 @@ msgid ""
335
  "that, then <strong>set this option to the same value</strong> as well."
336
  msgstr ""
337
 
338
- #: ../backend/tabs/instance/general/ordering.php:2
339
  msgid "Primary result ordering"
340
  msgstr ""
341
 
342
- #: ../backend/tabs/instance/general/ordering.php:15
343
  msgid ""
344
  "This is the primary ordering. If two elements match the primary ordering "
345
  "criteria, the Secondary ordering is used below."
346
  msgstr ""
347
 
348
- #: ../backend/tabs/instance/general/ordering.php:18
349
  msgid "Secondary result ordering"
350
  msgstr ""
351
 
352
- #: ../backend/tabs/instance/general/ordering.php:31
353
  msgid "For matching elements by primary ordering, this ordering is used."
354
  msgstr ""
355
 
356
- #: ../backend/tabs/instance/general/sources.php:3
357
  msgid "Try to replace the theme search with Ajax Search Lite form?"
358
  msgstr ""
359
 
360
- #: ../backend/tabs/instance/general/sources.php:7
361
- #: ../backend/tabs/instance/general/sources.php:16
362
  msgid ""
363
  "Works with most themes, which use the searchform.php theme file to display "
364
  "their search forms."
365
  msgstr ""
366
 
367
- #: ../backend/tabs/instance/general/sources.php:12
368
  msgid "Try to replace the WooCommerce search with Ajax Search Lite form?"
369
  msgstr ""
370
 
371
- #: ../backend/tabs/instance/general/sources.php:20
372
  msgid "Search in custom post types"
373
  msgstr ""
374
 
375
- #: ../backend/tabs/instance/general/sources.php:26
376
  msgid "Search in title?"
377
  msgstr ""
378
 
379
- #: ../backend/tabs/instance/general/sources.php:33
380
  msgid "Search in content?"
381
  msgstr ""
382
 
383
- #: ../backend/tabs/instance/general/sources.php:40
384
  msgid "Search in post excerpts?"
385
  msgstr ""
386
 
387
- #: ../backend/tabs/instance/general/sources.php:47
388
  msgid "Search in permalinks?"
389
  msgstr ""
390
 
391
- #: ../backend/tabs/instance/general/sources.php:54
392
  msgid "Search in post (and CPT) IDs?"
393
  msgstr ""
394
 
395
- #: ../backend/tabs/instance/general/sources.php:61
396
  msgid "Search all custom fields?"
397
  msgstr ""
398
 
399
- #: ../backend/tabs/instance/general/sources.php:68
400
  msgid "..or search in selected custom fields?"
401
  msgstr ""
402
 
403
- #: ../backend/tabs/instance/general/sources.php:75
404
  msgid "Post statuses to search"
405
  msgstr ""
406
 
407
- #: ../backend/tabs/instance/general/sources.php:79
408
  msgid ""
409
  "Comma separated list. WP Defaults: publish, future, draft, pending, private, "
410
  "trash, auto-draft"
411
  msgstr ""
412
 
413
- #: ../backend/tabs/instance/general/sources.php:84
 
 
 
 
414
  msgid "Search in terms? (categories, tags)"
415
  msgstr ""
416
 
417
- #: ../backend/tabs/instance/image_options.php:4
418
  msgid "Show images in results?"
419
  msgstr ""
420
 
421
- #: ../backend/tabs/instance/image_options.php:13
422
  msgid "Image width"
423
  msgstr ""
424
 
425
- #: ../backend/tabs/instance/image_options.php:22
426
  msgid "Image height"
427
  msgstr ""
428
 
429
- #: ../backend/tabs/instance/image_options.php:33
430
  msgid "Primary image source"
431
  msgstr ""
432
 
433
- #: ../backend/tabs/instance/image_options.php:44
434
  msgid "Alternative image source 1"
435
  msgstr ""
436
 
437
- #: ../backend/tabs/instance/image_options.php:55
438
  msgid "Alternative image source 2"
439
  msgstr ""
440
 
441
- #: ../backend/tabs/instance/image_options.php:66
442
  msgid "Alternative image source 3"
443
  msgstr ""
444
 
445
- #: ../backend/tabs/instance/image_options.php:77
446
  msgid "Alternative image source 4"
447
  msgstr ""
448
 
449
- #: ../backend/tabs/instance/image_options.php:88
450
  msgid "Default image url"
451
  msgstr ""
452
 
453
- #: ../backend/tabs/instance/image_options.php:120
454
  msgid "Custom field containing the image"
455
  msgstr ""
456
 
457
- #: ../backend/tabs/instance/layout/box_layout.php:16
458
  msgid "Theme"
459
  msgstr ""
460
 
461
- #: ../backend/tabs/instance/layout/box_layout.php:25
462
  msgid "Placeholder text"
463
  msgstr ""
464
 
465
- #: ../backend/tabs/instance/layout/box_layout.php:30
466
- msgid "Search Box width"
467
  msgstr ""
468
 
469
- #: ../backend/tabs/instance/layout/box_layout.php:33
470
- #: ../backend/tabs/instance/layout/box_layout.php:39
471
- msgid "Include the unit as well, example: 10px or 1em or 90%"
 
 
 
472
  msgstr ""
473
 
474
- #: ../backend/tabs/instance/layout/box_layout.php:38
475
  msgid "Search box margin"
476
  msgstr ""
477
 
478
- #: ../backend/tabs/instance/layout/box_layout.php:51
 
 
 
 
479
  msgid "Search plugin Font Family"
480
  msgstr ""
481
 
482
- #: ../backend/tabs/instance/layout/box_layout.php:54
483
  msgid "The Font Family used within the plugin. Default: Open Sans"
484
  msgstr ""
485
 
486
- #: ../backend/tabs/instance/layout/box_layout.php:55
487
  msgid ""
488
  "Entering multiple font family names like <strong>Helvetica, Sans-serif</"
489
  "strong> or <strong>inherit</strong> are also supported."
490
  msgstr ""
491
 
492
- #: ../backend/tabs/instance/layout/box_layout.php:59
493
  msgid "Override background color?"
494
  msgstr ""
495
 
496
- #: ../backend/tabs/instance/layout/box_layout.php:63
497
  msgid "color:"
498
  msgstr ""
499
 
500
- #: ../backend/tabs/instance/layout/box_layout.php:70
501
  msgid "Override magnifier & icon colors?"
502
  msgstr ""
503
 
504
- #: ../backend/tabs/instance/layout/box_layout.php:74
505
  msgid "icon background colors"
506
  msgstr ""
507
 
508
- #: ../backend/tabs/instance/layout/box_layout.php:78
509
  msgid "icon colors"
510
  msgstr ""
511
 
512
- #: ../backend/tabs/instance/layout/box_layout.php:86
513
  msgid "Override search box border?"
514
  msgstr ""
515
 
516
- #: ../backend/tabs/instance/layout/box_layout.php:90
517
  msgid "Border style"
518
  msgstr ""
519
 
520
- #: ../backend/tabs/instance/layout/custom_css.php:2
521
  msgid ""
522
  "This css will be added before the plugin as inline CSS so it has a "
523
  "precedence\n"
524
  " over plugin CSS. (you can override existing rules)"
525
  msgstr ""
526
 
527
- #: ../backend/tabs/instance/layout/custom_css.php:7
528
- #: ../backend/tabs/instance/layout_options.php:6
529
- #: ../backend/tabs/instance/layout_options.php:35
530
  msgid "Custom CSS"
531
  msgstr ""
532
 
533
- #: ../backend/tabs/instance/layout/keyword_highlight.php:3
534
  msgid "Keyword highlighting"
535
  msgstr ""
536
 
537
- #: ../backend/tabs/instance/layout/keyword_highlight.php:9
538
  msgid "Highlight whole words only?"
539
  msgstr ""
540
 
541
- #: ../backend/tabs/instance/layout/results_behaviour.php:3
542
  msgid "Open the results in a new window?"
543
  msgstr ""
544
 
545
- #: ../backend/tabs/instance/layout/results_behaviour.php:9
546
  msgid "Sroll the window to the result list?"
547
  msgstr ""
548
 
549
- #: ../backend/tabs/instance/layout/results_behaviour.php:15
550
  msgid "Make the whole result area clickable?"
551
  msgstr ""
552
 
553
- #: ../backend/tabs/instance/layout/results_behaviour.php:21
554
  msgid "Close result list on document click?"
555
  msgstr ""
556
 
557
- #: ../backend/tabs/instance/layout/results_behaviour.php:27
558
  msgid "Show the close icon?"
559
  msgstr ""
560
 
561
- #: ../backend/tabs/instance/layout/results_behaviour.php:32
562
  msgid "No results text"
563
  msgstr ""
564
 
565
- #: ../backend/tabs/instance/layout/results_behaviour.php:36
566
  msgid "Did you mean text"
567
  msgstr ""
568
 
569
- #: ../backend/tabs/instance/layout/results_layout.php:3
570
- #: ../backend/tabs/instance/layout/results_layout.php:53
 
 
 
 
 
 
 
 
571
  msgid "Display the description context?"
572
  msgstr ""
573
 
574
- #: ../backend/tabs/instance/layout/results_layout.php:7
575
- #: ../backend/tabs/instance/layout/results_layout.php:57
576
  msgid ""
577
  "Will display the description from around the search phrase, not from the "
578
  "beginning."
579
  msgstr ""
580
 
581
- #: ../backend/tabs/instance/layout/results_layout.php:10
582
  msgid "Result box maximum height"
583
  msgstr ""
584
 
585
- #: ../backend/tabs/instance/layout/results_layout.php:13
586
  msgid ""
587
  "If this value is reached, the scrollbar will definitely trigger. none or "
588
  "pixel units, like 800px. Default: none"
589
  msgstr ""
590
 
591
- #: ../backend/tabs/instance/layout/results_layout.php:16
592
  msgid "Results box viewport (in item numbers)"
593
  msgstr ""
594
 
595
- #: ../backend/tabs/instance/layout/results_layout.php:19
596
  msgid ""
597
  "Used to calculate the box height. Result box height = (this option) x "
598
  "(average item height)"
599
  msgstr ""
600
 
601
- #: ../backend/tabs/instance/layout/results_layout.php:23
602
  msgid "Show 'More results..' text in the bottom of the search box?"
603
  msgstr ""
604
 
605
- #: ../backend/tabs/instance/layout/results_layout.php:29
606
  msgid "' Show more results..' text"
607
  msgstr ""
608
 
609
- #: ../backend/tabs/instance/layout/results_layout.php:35
610
  msgid "Show author in results?"
611
  msgstr ""
612
 
613
- #: ../backend/tabs/instance/layout/results_layout.php:41
614
  msgid "Show date in results?"
615
  msgstr ""
616
 
617
- #: ../backend/tabs/instance/layout/results_layout.php:47
618
  msgid "Show description in results?"
619
  msgstr ""
620
 
621
- #: ../backend/tabs/instance/layout/results_layout.php:62
622
  msgid "Description length"
623
  msgstr ""
624
 
625
- #: ../backend/tabs/instance/layout_options.php:2
626
- #: ../backend/tabs/instance/layout_options.php:11
627
  msgid "Search Box layout"
628
  msgstr ""
629
 
630
- #: ../backend/tabs/instance/layout_options.php:3
631
- #: ../backend/tabs/instance/layout_options.php:17
632
  msgid "Results layout"
633
  msgstr ""
634
 
635
- #: ../backend/tabs/instance/layout_options.php:4
636
- #: ../backend/tabs/instance/layout_options.php:23
637
  msgid "Results Behaviour"
638
  msgstr ""
639
 
640
- #: ../backend/tabs/instance/layout_options.php:5
641
- #: ../backend/tabs/instance/layout_options.php:29
642
  msgid "Keyword Highlighting"
643
  msgstr ""
644
 
645
- #: ../includes/classes/cache/bfi_thumb.php:145
646
  msgid ""
647
  "The server does not have ImageMagick or GD installed and/or enabled! Any of "
648
  "these libraries are required for WordPress to be able to resize images. "
649
  "Please contact your server administrator to enable this before continuing."
650
  msgstr ""
651
 
652
- #: ../includes/classes/cache/bfi_thumb.php:273
653
  msgid "Image rotate failed."
654
  msgstr ""
655
 
656
- #: ../includes/classes/cache/bfi_thumb.php:296
657
  msgid "Image opacity change failed."
658
  msgstr ""
659
 
660
- #: ../includes/classes/cache/bfi_thumb.php:383
661
  msgid "Image color change failed."
662
  msgstr ""
663
 
664
- #: ../includes/classes/cache/bfi_thumb.php:400
665
  msgid "Image grayscale failed."
666
  msgstr ""
667
 
668
- #: ../includes/classes/cache/bfi_thumb.php:417
669
  msgid "Image negate failed."
670
  msgstr ""
1
+ # Blank WordPress Pot
2
+ # Copyright 2014 ...
3
+ # This file is distributed under the GNU General Public License v3 or later.
4
  msgid ""
5
  msgstr ""
6
+ "Project-Id-Version: Ajax Search Lite Pot v1.0.0\n"
7
+ "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
8
+ "POT-Creation-Date: 2020-12-12 14:17+0100\n"
9
+ "PO-Revision-Date: \n"
10
  "Last-Translator: \n"
11
+ "Language-Team: Your Team <translations@example.com>\n"
12
  "Language: en\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
 
 
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
20
+ "esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
21
+ "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
22
+ "X-Poedit-Basepath: ..\n"
23
+ "X-Generator: Poedit 2.4.2\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+ "X-Poedit-SearchPathExcluded-0: css\n"
26
+ "X-Poedit-SearchPathExcluded-1: js\n"
27
+ "X-Poedit-SearchPathExcluded-2: languages\n"
28
+ "X-Poedit-SearchPathExcluded-3: img\n"
29
 
30
+ #: backend/analytics.php:12
31
+ msgid "Analytics settings were reset to defaults!"
32
  msgstr ""
33
 
34
+ #: backend/analytics.php:14
35
+ msgid "<strong>ERROR Resetting:</strong> Invalid NONCE, please try again!"
36
+ msgstr ""
37
+
38
+ #: backend/analytics.php:70
39
+ msgid "Analytics settings saved!"
40
+ msgstr ""
41
+
42
+ #: backend/analytics.php:72
43
+ msgid "<strong>ERROR Saving:</strong> Invalid NONCE, please try again!"
44
+ msgstr ""
45
+
46
+ #: backend/analytics.php:87
47
+ msgid "Disabled"
48
+ msgstr ""
49
+
50
+ #: backend/analytics.php:88
51
+ msgid "Event Tracking"
52
+ msgstr ""
53
+
54
+ #: backend/analytics.php:89
55
+ msgid "Tracking as pageview (legacy)"
56
+ msgstr ""
57
+
58
+ #: backend/analytics.php:95
59
+ #, php-format
60
+ msgid ""
61
+ "To understand how this works, please read the <a href=\"%s\">Analytics "
62
+ "Integration Documentation</a>"
63
+ msgstr ""
64
+
65
+ #: backend/analytics.php:102
66
+ msgid "Google analytics Tracking ID (ex.: UA-XXXXXX-X)"
67
+ msgstr ""
68
+
69
+ #: backend/analytics.php:114
70
  msgid "Google analytics pageview string"
71
  msgstr ""
72
 
73
+ #: backend/analytics.php:116
74
  msgid ""
75
  "This is how the pageview will look like on the google analytics website. Use "
76
  "the {asl_term} variable to add the search term to the pageview."
77
  msgstr ""
78
 
79
+ #: backend/analytics.php:120
80
+ msgid ""
81
+ "After some time you should be able to see the hits on your analytics board."
82
+ msgstr ""
83
+
84
+ #: backend/analytics.php:126
85
+ msgid "Search input focus event tracking"
86
+ msgstr ""
87
+
88
+ #: backend/analytics.php:129 backend/analytics.php:154
89
+ #: backend/analytics.php:179 backend/analytics.php:204
90
+ #: backend/analytics.php:229 backend/analytics.php:254
91
+ #: backend/analytics.php:279
92
+ msgid "Enabled"
93
+ msgstr ""
94
+
95
+ #: backend/analytics.php:132
96
+ msgid "Triggers, whenever the user clicks on the search input field."
97
+ msgstr ""
98
+
99
+ #: backend/analytics.php:138 backend/analytics.php:163
100
+ #: backend/analytics.php:188 backend/analytics.php:213
101
+ #: backend/analytics.php:238 backend/analytics.php:263
102
+ #: backend/analytics.php:288
103
+ #, php-format
104
+ msgid "Usable variables: %s"
105
+ msgstr ""
106
+
107
+ #: backend/analytics.php:143 backend/analytics.php:168
108
+ #: backend/analytics.php:193 backend/analytics.php:218
109
+ #: backend/analytics.php:243 backend/analytics.php:268
110
+ #: backend/analytics.php:293
111
+ msgid "Event action"
112
+ msgstr ""
113
+
114
+ #: backend/analytics.php:144 backend/analytics.php:169
115
+ #: backend/analytics.php:194 backend/analytics.php:219
116
+ #: backend/analytics.php:244 backend/analytics.php:269
117
+ #: backend/analytics.php:294
118
+ msgid "Event category"
119
+ msgstr ""
120
+
121
+ #: backend/analytics.php:145 backend/analytics.php:170
122
+ #: backend/analytics.php:195 backend/analytics.php:220
123
+ #: backend/analytics.php:245 backend/analytics.php:270
124
+ #: backend/analytics.php:295
125
+ msgid "Event label"
126
+ msgstr ""
127
+
128
+ #: backend/analytics.php:146 backend/analytics.php:171
129
+ #: backend/analytics.php:196 backend/analytics.php:221
130
+ #: backend/analytics.php:246 backend/analytics.php:271
131
+ #: backend/analytics.php:296
132
+ msgid "Event value"
133
+ msgstr ""
134
+
135
+ #: backend/analytics.php:151
136
+ msgid "Live search start event tracking"
137
+ msgstr ""
138
+
139
+ #: backend/analytics.php:157
140
+ msgid "Triggers, whenever the live search starts."
141
+ msgstr ""
142
+
143
+ #: backend/analytics.php:176
144
+ msgid "Live search end event tracking"
145
+ msgstr ""
146
+
147
+ #: backend/analytics.php:182
148
+ msgid "Triggers, whenever the live search ends."
149
+ msgstr ""
150
+
151
+ #: backend/analytics.php:201
152
+ msgid "Magnifier click event tracking"
153
+ msgstr ""
154
+
155
+ #: backend/analytics.php:207
156
+ msgid "Triggers, whenever the user clicks the magnifier icon"
157
  msgstr ""
158
 
159
+ #: backend/analytics.php:226
160
+ msgid "Return key event tracking"
161
  msgstr ""
162
 
163
+ #: backend/analytics.php:232
164
  msgid ""
165
+ "Triggers, whenever the user hits the enter button in the search input field"
166
+ msgstr ""
167
+
168
+ #: backend/analytics.php:251
169
+ msgid "Facet change event tracking"
170
  msgstr ""
171
 
172
+ #: backend/analytics.php:257 backend/analytics.php:282
173
+ msgid ""
174
+ "Triggers, whenever the user changes any option on the front-end settings"
175
+ msgstr ""
176
+
177
+ #: backend/analytics.php:276
178
+ msgid "Results click event tracking"
179
+ msgstr ""
180
+
181
+ #: backend/analytics.php:304
182
+ msgid "Restore defaults"
183
+ msgstr ""
184
+
185
+ #: backend/analytics.php:305
186
+ msgid "Save options"
187
+ msgstr ""
188
+
189
+ #: backend/analytics.php:313
190
+ msgid "Analytics options"
191
+ msgstr ""
192
+
193
+ #: backend/compatibility.php:72
194
  msgid "Try fixing DOM duplicates of the search bar if they exist?"
195
  msgstr ""
196
 
197
+ #: backend/compatibility.php:76
198
  msgid ""
199
  "Some menu or widgets scripts tend to <strong>clone</strong> the search bar "
200
  "completely for Mobile viewports, causing a malfunctioning search bar with no "
202
  "if possible."
203
  msgstr ""
204
 
205
+ #: backend/settings.php:48
206
  msgid "Search shortcode:"
207
  msgstr ""
208
 
209
+ #: backend/settings.php:51
210
  msgid "Search shortcode for templates:"
211
  msgstr ""
212
 
213
+ #: backend/settings.php:62
214
  msgid "General Options"
215
  msgstr ""
216
 
217
+ #: backend/settings.php:63 backend/settings.php:79
218
  msgid "Image Options"
219
  msgstr ""
220
 
221
+ #: backend/settings.php:64
222
  msgid "Frontend Options"
223
  msgstr ""
224
 
225
+ #: backend/settings.php:65
226
  msgid "Layout options"
227
  msgstr ""
228
 
229
+ #: backend/settings.php:66
230
  msgid "Advanced"
231
  msgstr ""
232
 
233
+ #: backend/settings.php:71
234
  msgid "Genearal Options"
235
  msgstr ""
236
 
237
+ #: backend/settings.php:87
238
  msgid "Frontend Search Settings"
239
  msgstr ""
240
 
241
+ #: backend/settings.php:95
242
  msgid "Layout Options"
243
  msgstr ""
244
 
245
+ #: backend/settings.php:103
246
  msgid "Advanced Options"
247
  msgstr ""
248
 
249
+ #: backend/settings.php:131
250
  msgid "Ajax Search Lite settings saved!"
251
  msgstr ""
252
 
253
+ #: backend/settings/class/textsmall.class.php:45
254
+ msgid "Phone devices, on 0px to 640px widths"
255
  msgstr ""
256
 
257
+ #: backend/settings/class/textsmall.class.php:46
258
+ msgid "Tablet devices, on 641px to 1024px widths"
259
+ msgstr ""
260
+
261
+ #: backend/settings/class/textsmall.class.php:47
262
+ msgid "Desktop devices, 1025px width and higher"
263
+ msgstr ""
264
+
265
+ #: backend/tabs/instance/advanced_options.php:5
266
+ msgid "Exclude hidden search WooCommerce products from search?"
267
+ msgstr ""
268
+
269
+ #: backend/tabs/instance/advanced_options.php:12
270
+ msgid "Exclude hidden catalog WooCommerce products from search?"
271
+ msgstr ""
272
+
273
+ #: backend/tabs/instance/advanced_options.php:19
274
  msgid "Exclude WooCommerce out of stock products?"
275
  msgstr ""
276
 
277
+ #: backend/tabs/instance/advanced_options.php:26
278
  msgid "What to do with shortcodes in results content?"
279
  msgstr ""
280
 
281
+ #: backend/tabs/instance/advanced_options.php:36
282
  msgid ""
283
  "Removing shortcode is usually much faster, especially if you have many of "
284
  "them within posts."
285
  msgstr ""
286
 
287
+ #: backend/tabs/instance/advanced_options.php:41
288
  msgid "Title Field"
289
  msgstr ""
290
 
291
+ #: backend/tabs/instance/advanced_options.php:62
292
  msgid "Description Field"
293
  msgstr ""
294
 
295
+ #: backend/tabs/instance/advanced_options.php:84
296
  msgid "Exclude categories"
297
  msgstr ""
298
 
299
+ #: backend/tabs/instance/advanced_options.php:91
300
  msgid "Exclude Posts by ID's (comma separated post ID-s)"
301
  msgstr ""
302
 
303
+ #: backend/tabs/instance/advanced_options.php:97
304
  msgid "WPML compatibility"
305
  msgstr ""
306
 
307
+ #: backend/tabs/instance/advanced_options.php:103
308
  msgid "Polylang compatibility"
309
  msgstr ""
310
 
311
+ #: backend/tabs/instance/frontend_options.php:3
312
  msgid "Show search settings on the frontend?"
313
  msgstr ""
314
 
315
+ #: backend/tabs/instance/frontend_options.php:8
316
  msgid ""
317
  "The default values of the checkboxes on the frontend are the values set "
318
  "above."
319
  msgstr ""
320
 
321
+ #: backend/tabs/instance/frontend_options.php:12
322
  msgid "Show exact matches selector?"
323
  msgstr ""
324
 
325
+ #: backend/tabs/instance/frontend_options.php:20
326
  msgid "Show search in posts selector?"
327
  msgstr ""
328
 
329
+ #: backend/tabs/instance/frontend_options.php:27
330
  msgid "Show search in pages selector?"
331
  msgstr ""
332
 
333
+ #: backend/tabs/instance/frontend_options.php:34
334
  msgid "Show search in title selector?"
335
  msgstr ""
336
 
337
+ #: backend/tabs/instance/frontend_options.php:41
338
  msgid "Show search in content selector?"
339
  msgstr ""
340
 
341
+ #: backend/tabs/instance/frontend_options.php:47
342
  msgid "Show search in custom post types selectors"
343
  msgstr ""
344
 
345
+ #: backend/tabs/instance/frontend_options.php:52
346
  msgid ""
347
  "Nor recommended if you have more than 500 categories! (the HTML output will "
348
  "get too big)"
349
  msgstr ""
350
 
351
+ #: backend/tabs/instance/frontend_options.php:54
352
  msgid "Show the categories selectors?"
353
  msgstr ""
354
 
355
+ #: backend/tabs/instance/frontend_options.php:59
356
  msgid "Show the uncategorised category?"
357
  msgstr ""
358
 
359
+ #: backend/tabs/instance/frontend_options.php:63
360
  msgid "Select which categories exclude"
361
  msgstr ""
362
 
363
+ #: backend/tabs/instance/frontend_options.php:70
364
  msgid "Categories filter box header text"
365
  msgstr ""
366
 
367
+ #: backend/tabs/instance/frontend_options.php:76
368
+ #: backend/tabs/instance/general_options.php:35
369
+ #: backend/tabs/instance/image_options.php:136
370
+ #: backend/tabs/instance/layout_options.php:42
371
  msgid "Save options!"
372
  msgstr ""
373
 
374
+ #: backend/tabs/instance/general/behavior.php:3
375
  msgid "Show exact matches only?"
376
  msgstr ""
377
 
378
+ #: backend/tabs/instance/general/behavior.php:10
379
+ msgid "Anywhere"
380
+ msgstr ""
381
+
382
+ #: backend/tabs/instance/general/behavior.php:11
383
+ msgid "Starting with phrase"
384
+ msgstr ""
385
+
386
+ #: backend/tabs/instance/general/behavior.php:12
387
+ msgid "Ending with phrase"
388
+ msgstr ""
389
+
390
+ #: backend/tabs/instance/general/behavior.php:13
391
+ msgid "Complete match"
392
+ msgstr ""
393
+
394
+ #: backend/tabs/instance/general/behavior.php:22
395
  msgid "Keyword (phrase) logic?"
396
  msgstr ""
397
 
398
+ #: backend/tabs/instance/general/behavior.php:24
399
  msgid "OR"
400
  msgstr ""
401
 
402
+ #: backend/tabs/instance/general/behavior.php:25
403
  msgid "OR with exact word matches"
404
  msgstr ""
405
 
406
+ #: backend/tabs/instance/general/behavior.php:26
407
  msgid "AND"
408
  msgstr ""
409
 
410
+ #: backend/tabs/instance/general/behavior.php:27
411
  msgid "AND with exact word matches"
412
  msgstr ""
413
 
414
+ #: backend/tabs/instance/general/behavior.php:34
415
  msgid ""
416
  "This determines if the result should match either of the entered phrases (OR "
417
  "logic) or all of the entered phrases (AND logic)."
418
  msgstr ""
419
 
420
+ #: backend/tabs/instance/general/behavior.php:37
421
  msgid ""
422
  "Please note: For <strong>performance rasons</strong> exact word matching in "
423
  "the Lite version is only able to check space-separated words. Commas, dots, "
424
  "question marks etc.. are not considered as word separators."
425
  msgstr ""
426
 
427
+ #: backend/tabs/instance/general/behavior.php:42
428
  msgid "Trigger search on facet change?"
429
  msgstr ""
430
 
431
+ #: backend/tabs/instance/general/behavior.php:46
432
  msgid ""
433
  "Will trigger a search when the user clicks on a checkbox on the front-end."
434
  msgstr ""
435
 
436
+ #: backend/tabs/instance/general/behavior.php:50
437
  msgid "Trigger search when typing?"
438
  msgstr ""
439
 
440
+ #: backend/tabs/instance/general/behavior.php:57
441
  msgid "Minimal character count to trigger search"
442
  msgstr ""
443
 
444
+ #: backend/tabs/instance/general/behavior.php:64
445
  msgid "Max. results"
446
  msgstr ""
447
 
448
+ #: backend/tabs/instance/general/behavior.php:70
449
  msgid "Action when clicking <strong>the magnifier</strong> icon"
450
  msgstr ""
451
 
452
+ #: backend/tabs/instance/general/behavior.php:73
453
+ #: backend/tabs/instance/general/behavior.php:100
454
  msgid "Trigger live search"
455
  msgstr ""
456
 
457
+ #: backend/tabs/instance/general/behavior.php:74
458
+ #: backend/tabs/instance/general/behavior.php:101
459
  msgid "Redirec to: Results page"
460
  msgstr ""
461
 
462
+ #: backend/tabs/instance/general/behavior.php:75
463
+ #: backend/tabs/instance/general/behavior.php:102
464
  msgid "Redirec to: Woocommerce results page"
465
  msgstr ""
466
 
467
+ #: backend/tabs/instance/general/behavior.php:76
468
+ #: backend/tabs/instance/general/behavior.php:103
469
  msgid "Redirec to: First matching result"
470
  msgstr ""
471
 
472
+ #: backend/tabs/instance/general/behavior.php:77
473
+ #: backend/tabs/instance/general/behavior.php:104
474
  msgid "Redirec to: Custom URL"
475
  msgstr ""
476
 
477
+ #: backend/tabs/instance/general/behavior.php:78
478
+ #: backend/tabs/instance/general/behavior.php:105
479
  msgid "Do nothing"
480
  msgstr ""
481
 
482
+ #: backend/tabs/instance/general/behavior.php:97
483
  msgid "Action when pressing <strong>the return</strong> key"
484
  msgstr ""
485
 
486
+ #: backend/tabs/instance/general/behavior.php:124
487
  msgid "Custom redirect URL"
488
  msgstr ""
489
 
490
+ #: backend/tabs/instance/general/behavior.php:131
491
  msgid "Override the default WordPress search results?"
492
  msgstr ""
493
 
494
+ #: backend/tabs/instance/general/behavior.php:145
495
  msgid "Might not work with some Themes."
496
  msgstr ""
497
 
498
+ #: backend/tabs/instance/general/behavior.php:149
499
  msgid "Results count per page?"
500
  msgstr ""
501
 
502
+ #: backend/tabs/instance/general/behavior.php:153
503
  msgid "The number of results per page, on the results page."
504
  msgstr ""
505
 
506
+ #: backend/tabs/instance/general/behavior.php:155
507
  msgid ""
508
  "<strong>WARNING:</strong> This should be set to the same as the number of "
509
  "results originally displayed on the results page!<br>\n"
513
  "that, then <strong>set this option to the same value</strong> as well."
514
  msgstr ""
515
 
516
+ #: backend/tabs/instance/general/ordering.php:2
517
  msgid "Primary result ordering"
518
  msgstr ""
519
 
520
+ #: backend/tabs/instance/general/ordering.php:15
521
  msgid ""
522
  "This is the primary ordering. If two elements match the primary ordering "
523
  "criteria, the Secondary ordering is used below."
524
  msgstr ""
525
 
526
+ #: backend/tabs/instance/general/ordering.php:18
527
  msgid "Secondary result ordering"
528
  msgstr ""
529
 
530
+ #: backend/tabs/instance/general/ordering.php:31
531
  msgid "For matching elements by primary ordering, this ordering is used."
532
  msgstr ""
533
 
534
+ #: backend/tabs/instance/general/sources.php:3
535
  msgid "Try to replace the theme search with Ajax Search Lite form?"
536
  msgstr ""
537
 
538
+ #: backend/tabs/instance/general/sources.php:7
539
+ #: backend/tabs/instance/general/sources.php:16
540
  msgid ""
541
  "Works with most themes, which use the searchform.php theme file to display "
542
  "their search forms."
543
  msgstr ""
544
 
545
+ #: backend/tabs/instance/general/sources.php:12
546
  msgid "Try to replace the WooCommerce search with Ajax Search Lite form?"
547
  msgstr ""
548
 
549
+ #: backend/tabs/instance/general/sources.php:20
550
  msgid "Search in custom post types"
551
  msgstr ""
552
 
553
+ #: backend/tabs/instance/general/sources.php:26
554
  msgid "Search in title?"
555
  msgstr ""
556
 
557
+ #: backend/tabs/instance/general/sources.php:33
558
  msgid "Search in content?"
559
  msgstr ""
560
 
561
+ #: backend/tabs/instance/general/sources.php:40
562
  msgid "Search in post excerpts?"
563
  msgstr ""
564
 
565
+ #: backend/tabs/instance/general/sources.php:47
566
  msgid "Search in permalinks?"
567
  msgstr ""
568
 
569
+ #: backend/tabs/instance/general/sources.php:54
570
  msgid "Search in post (and CPT) IDs?"
571
  msgstr ""
572
 
573
+ #: backend/tabs/instance/general/sources.php:61
574
  msgid "Search all custom fields?"
575
  msgstr ""
576
 
577
+ #: backend/tabs/instance/general/sources.php:68
578
  msgid "..or search in selected custom fields?"
579
  msgstr ""
580
 
581
+ #: backend/tabs/instance/general/sources.php:75
582
  msgid "Post statuses to search"
583
  msgstr ""
584
 
585
+ #: backend/tabs/instance/general/sources.php:79
586
  msgid ""
587
  "Comma separated list. WP Defaults: publish, future, draft, pending, private, "
588
  "trash, auto-draft"
589
  msgstr ""
590
 
591
+ #: backend/tabs/instance/general/sources.php:83
592
+ msgid "Search and return password protected posts?"
593
+ msgstr ""
594
+
595
+ #: backend/tabs/instance/general/sources.php:89
596
  msgid "Search in terms? (categories, tags)"
597
  msgstr ""
598
 
599
+ #: backend/tabs/instance/image_options.php:4
600
  msgid "Show images in results?"
601
  msgstr ""
602
 
603
+ #: backend/tabs/instance/image_options.php:13
604
  msgid "Image width"
605
  msgstr ""
606
 
607
+ #: backend/tabs/instance/image_options.php:22
608
  msgid "Image height"
609
  msgstr ""
610
 
611
+ #: backend/tabs/instance/image_options.php:33
612
  msgid "Primary image source"
613
  msgstr ""
614
 
615
+ #: backend/tabs/instance/image_options.php:44
616
  msgid "Alternative image source 1"
617
  msgstr ""
618
 
619
+ #: backend/tabs/instance/image_options.php:55
620
  msgid "Alternative image source 2"
621
  msgstr ""
622
 
623
+ #: backend/tabs/instance/image_options.php:66
624
  msgid "Alternative image source 3"
625
  msgstr ""
626
 
627
+ #: backend/tabs/instance/image_options.php:77
628
  msgid "Alternative image source 4"
629
  msgstr ""
630
 
631
+ #: backend/tabs/instance/image_options.php:88
632
  msgid "Default image url"
633
  msgstr ""
634
 
635
+ #: backend/tabs/instance/image_options.php:120
636
  msgid "Custom field containing the image"
637
  msgstr ""
638
 
639
+ #: backend/tabs/instance/layout/box_layout.php:16
640
  msgid "Theme"
641
  msgstr ""
642
 
643
+ #: backend/tabs/instance/layout/box_layout.php:25
644
  msgid "Placeholder text"
645
  msgstr ""
646
 
647
+ #: backend/tabs/instance/layout/box_layout.php:31
648
+ msgid "Search box width"
649
  msgstr ""
650
 
651
+ #: backend/tabs/instance/layout/box_layout.php:49
652
+ #: backend/tabs/instance/layout/results_layout.php:36
653
+ #, php-format
654
+ msgid ""
655
+ "Use with <a href=\"%s\" target=\"_blank\">CSS units</a> (like %s or %s or "
656
+ "%s ..) Default: <strong>%s</strong>"
657
  msgstr ""
658
 
659
+ #: backend/tabs/instance/layout/box_layout.php:57
660
  msgid "Search box margin"
661
  msgstr ""
662
 
663
+ #: backend/tabs/instance/layout/box_layout.php:58
664
+ msgid "Include the unit as well, example: 10px or 1em or 90%"
665
+ msgstr ""
666
+
667
+ #: backend/tabs/instance/layout/box_layout.php:70
668
  msgid "Search plugin Font Family"
669
  msgstr ""
670
 
671
+ #: backend/tabs/instance/layout/box_layout.php:73
672
  msgid "The Font Family used within the plugin. Default: Open Sans"
673
  msgstr ""
674
 
675
+ #: backend/tabs/instance/layout/box_layout.php:74
676
  msgid ""
677
  "Entering multiple font family names like <strong>Helvetica, Sans-serif</"
678
  "strong> or <strong>inherit</strong> are also supported."
679
  msgstr ""
680
 
681
+ #: backend/tabs/instance/layout/box_layout.php:78
682
  msgid "Override background color?"
683
  msgstr ""
684
 
685
+ #: backend/tabs/instance/layout/box_layout.php:82
686
  msgid "color:"
687
  msgstr ""
688
 
689
+ #: backend/tabs/instance/layout/box_layout.php:89
690
  msgid "Override magnifier & icon colors?"
691
  msgstr ""
692
 
693
+ #: backend/tabs/instance/layout/box_layout.php:93
694
  msgid "icon background colors"
695
  msgstr ""
696
 
697
+ #: backend/tabs/instance/layout/box_layout.php:97
698
  msgid "icon colors"
699
  msgstr ""
700
 
701
+ #: backend/tabs/instance/layout/box_layout.php:105
702
  msgid "Override search box border?"
703
  msgstr ""
704
 
705
+ #: backend/tabs/instance/layout/box_layout.php:109
706
  msgid "Border style"
707
  msgstr ""
708
 
709
+ #: backend/tabs/instance/layout/custom_css.php:2
710
  msgid ""
711
  "This css will be added before the plugin as inline CSS so it has a "
712
  "precedence\n"
713
  " over plugin CSS. (you can override existing rules)"
714
  msgstr ""
715
 
716
+ #: backend/tabs/instance/layout/custom_css.php:7
717
+ #: backend/tabs/instance/layout_options.php:6
718
+ #: backend/tabs/instance/layout_options.php:35
719
  msgid "Custom CSS"
720
  msgstr ""
721
 
722
+ #: backend/tabs/instance/layout/keyword_highlight.php:3
723
  msgid "Keyword highlighting"
724
  msgstr ""
725
 
726
+ #: backend/tabs/instance/layout/keyword_highlight.php:9
727
  msgid "Highlight whole words only?"
728
  msgstr ""
729
 
730
+ #: backend/tabs/instance/layout/results_behaviour.php:3
731
  msgid "Open the results in a new window?"
732
  msgstr ""
733
 
734
+ #: backend/tabs/instance/layout/results_behaviour.php:9
735
  msgid "Sroll the window to the result list?"
736
  msgstr ""
737
 
738
+ #: backend/tabs/instance/layout/results_behaviour.php:15
739
  msgid "Make the whole result area clickable?"
740
  msgstr ""
741
 
742
+ #: backend/tabs/instance/layout/results_behaviour.php:21
743
  msgid "Close result list on document click?"
744
  msgstr ""
745
 
746
+ #: backend/tabs/instance/layout/results_behaviour.php:27
747
  msgid "Show the close icon?"
748
  msgstr ""
749
 
750
+ #: backend/tabs/instance/layout/results_behaviour.php:32
751
  msgid "No results text"
752
  msgstr ""
753
 
754
+ #: backend/tabs/instance/layout/results_behaviour.php:36
755
  msgid "Did you mean text"
756
  msgstr ""
757
 
758
+ #: backend/tabs/instance/layout/results_layout.php:3
759
+ msgid "Number of result columns"
760
+ msgstr ""
761
+
762
+ #: backend/tabs/instance/layout/results_layout.php:18
763
+ msgid "Column minimum width (px)"
764
+ msgstr ""
765
+
766
+ #: backend/tabs/instance/layout/results_layout.php:43
767
+ #: backend/tabs/instance/layout/results_layout.php:93
768
  msgid "Display the description context?"
769
  msgstr ""
770
 
771
+ #: backend/tabs/instance/layout/results_layout.php:47
772
+ #: backend/tabs/instance/layout/results_layout.php:97
773
  msgid ""
774
  "Will display the description from around the search phrase, not from the "
775
  "beginning."
776
  msgstr ""
777
 
778
+ #: backend/tabs/instance/layout/results_layout.php:50
779
  msgid "Result box maximum height"
780
  msgstr ""
781
 
782
+ #: backend/tabs/instance/layout/results_layout.php:53
783
  msgid ""
784
  "If this value is reached, the scrollbar will definitely trigger. none or "
785
  "pixel units, like 800px. Default: none"
786
  msgstr ""
787
 
788
+ #: backend/tabs/instance/layout/results_layout.php:56
789
  msgid "Results box viewport (in item numbers)"
790
  msgstr ""
791
 
792
+ #: backend/tabs/instance/layout/results_layout.php:59
793
  msgid ""
794
  "Used to calculate the box height. Result box height = (this option) x "
795
  "(average item height)"
796
  msgstr ""
797
 
798
+ #: backend/tabs/instance/layout/results_layout.php:63
799
  msgid "Show 'More results..' text in the bottom of the search box?"
800
  msgstr ""
801
 
802
+ #: backend/tabs/instance/layout/results_layout.php:69
803
  msgid "' Show more results..' text"
804
  msgstr ""
805
 
806
+ #: backend/tabs/instance/layout/results_layout.php:75
807
  msgid "Show author in results?"
808
  msgstr ""
809
 
810
+ #: backend/tabs/instance/layout/results_layout.php:81
811
  msgid "Show date in results?"
812
  msgstr ""
813
 
814
+ #: backend/tabs/instance/layout/results_layout.php:87
815
  msgid "Show description in results?"
816
  msgstr ""
817
 
818
+ #: backend/tabs/instance/layout/results_layout.php:102
819
  msgid "Description length"
820
  msgstr ""
821
 
822
+ #: backend/tabs/instance/layout_options.php:2
823
+ #: backend/tabs/instance/layout_options.php:11
824
  msgid "Search Box layout"
825
  msgstr ""
826
 
827
+ #: backend/tabs/instance/layout_options.php:3
828
+ #: backend/tabs/instance/layout_options.php:17
829
  msgid "Results layout"
830
  msgstr ""
831
 
832
+ #: backend/tabs/instance/layout_options.php:4
833
+ #: backend/tabs/instance/layout_options.php:23
834
  msgid "Results Behaviour"
835
  msgstr ""
836
 
837
+ #: backend/tabs/instance/layout_options.php:5
838
+ #: backend/tabs/instance/layout_options.php:29
839
  msgid "Keyword Highlighting"
840
  msgstr ""
841
 
842
+ #: includes/classes/cache/bfi_thumb.php:145
843
  msgid ""
844
  "The server does not have ImageMagick or GD installed and/or enabled! Any of "
845
  "these libraries are required for WordPress to be able to resize images. "
846
  "Please contact your server administrator to enable this before continuing."
847
  msgstr ""
848
 
849
+ #: includes/classes/cache/bfi_thumb.php:273
850
  msgid "Image rotate failed."
851
  msgstr ""
852
 
853
+ #: includes/classes/cache/bfi_thumb.php:296
854
  msgid "Image opacity change failed."
855
  msgstr ""
856
 
857
+ #: includes/classes/cache/bfi_thumb.php:383
858
  msgid "Image color change failed."
859
  msgstr ""
860
 
861
+ #: includes/classes/cache/bfi_thumb.php:400
862
  msgid "Image grayscale failed."
863
  msgstr ""
864
 
865
+ #: includes/classes/cache/bfi_thumb.php:417
866
  msgid "Image negate failed."
867
  msgstr ""
languages/ajax-search-lite-en_EN.pot CHANGED
@@ -5,7 +5,7 @@
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Ajax Search Lite Pot v1.0.0\n"
8
- "POT-Creation-Date: 2019-09-25 16:51+0200\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Your Name <you@example.com>\n"
11
  "Language-Team: Your Team <translations@example.com>\n"
@@ -21,38 +21,174 @@ msgstr ""
21
  "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
22
  "X-Poedit-Basepath: ..\n"
23
  "Language: en_US\n"
24
- "X-Generator: Poedit 2.2.3\n"
25
  "X-Poedit-SearchPath-0: .\n"
26
  "X-Poedit-SearchPathExcluded-0: css\n"
27
  "X-Poedit-SearchPathExcluded-1: js\n"
28
  "X-Poedit-SearchPathExcluded-2: languages\n"
29
  "X-Poedit-SearchPathExcluded-3: img\n"
30
 
31
- #: backend/analytics.php:7
32
- msgid "Enable search Google Analytics integration?"
33
  msgstr ""
34
 
35
- #: backend/analytics.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  msgid "Google analytics pageview string"
37
  msgstr ""
38
 
39
- #: backend/analytics.php:16
40
  msgid ""
41
  "This is how the pageview will look like on the google analytics website. Use "
42
  "the {asl_term} variable to add the search term to the pageview."
43
  msgstr ""
44
 
45
- #: backend/analytics.php:40
46
- msgid "Analytics options"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  msgstr ""
48
 
49
- #: backend/analytics.php:45
50
- msgid "Result"
 
 
 
51
  msgstr ""
52
 
53
- #: backend/analytics.php:47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  msgid ""
55
- "After some time you should be able to see the hits on your analytics board."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  msgstr ""
57
 
58
  #: backend/compatibility.php:72
@@ -115,45 +251,61 @@ msgstr ""
115
  msgid "Ajax Search Lite settings saved!"
116
  msgstr ""
117
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  #: backend/tabs/instance/advanced_options.php:5
119
- msgid "Exclude hidden WooCommerce products from search?"
120
  msgstr ""
121
 
122
  #: backend/tabs/instance/advanced_options.php:12
123
- msgid "Exclude WooCommerce out of stock products?"
124
  msgstr ""
125
 
126
  #: backend/tabs/instance/advanced_options.php:19
 
 
 
 
127
  msgid "What to do with shortcodes in results content?"
128
  msgstr ""
129
 
130
- #: backend/tabs/instance/advanced_options.php:29
131
  msgid ""
132
  "Removing shortcode is usually much faster, especially if you have many of "
133
  "them within posts."
134
  msgstr ""
135
 
136
- #: backend/tabs/instance/advanced_options.php:34
137
  msgid "Title Field"
138
  msgstr ""
139
 
140
- #: backend/tabs/instance/advanced_options.php:55
141
  msgid "Description Field"
142
  msgstr ""
143
 
144
- #: backend/tabs/instance/advanced_options.php:77
145
  msgid "Exclude categories"
146
  msgstr ""
147
 
148
- #: backend/tabs/instance/advanced_options.php:84
149
  msgid "Exclude Posts by ID's (comma separated post ID-s)"
150
  msgstr ""
151
 
152
- #: backend/tabs/instance/advanced_options.php:90
153
  msgid "WPML compatibility"
154
  msgstr ""
155
 
156
- #: backend/tabs/instance/advanced_options.php:96
157
  msgid "Polylang compatibility"
158
  msgstr ""
159
 
@@ -215,7 +367,7 @@ msgstr ""
215
 
216
  #: backend/tabs/instance/frontend_options.php:76
217
  #: backend/tabs/instance/general_options.php:35
218
- #: backend/tabs/instance/image_options.php:129
219
  #: backend/tabs/instance/layout_options.php:42
220
  msgid "Save options!"
221
  msgstr ""
@@ -224,119 +376,135 @@ msgstr ""
224
  msgid "Show exact matches only?"
225
  msgstr ""
226
 
227
- #: backend/tabs/instance/general/behavior.php:21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  msgid "Keyword (phrase) logic?"
229
  msgstr ""
230
 
231
- #: backend/tabs/instance/general/behavior.php:23
232
  msgid "OR"
233
  msgstr ""
234
 
235
- #: backend/tabs/instance/general/behavior.php:24
236
  msgid "OR with exact word matches"
237
  msgstr ""
238
 
239
- #: backend/tabs/instance/general/behavior.php:25
240
  msgid "AND"
241
  msgstr ""
242
 
243
- #: backend/tabs/instance/general/behavior.php:26
244
  msgid "AND with exact word matches"
245
  msgstr ""
246
 
247
- #: backend/tabs/instance/general/behavior.php:33
248
  msgid ""
249
  "This determines if the result should match either of the entered phrases (OR "
250
  "logic) or all of the entered phrases (AND logic)."
251
  msgstr ""
252
 
253
- #: backend/tabs/instance/general/behavior.php:36
254
  msgid ""
255
  "Please note: For <strong>performance rasons</strong> exact word matching in "
256
  "the Lite version is only able to check space-separated words. Commas, dots, "
257
  "question marks etc.. are not considered as word separators."
258
  msgstr ""
259
 
260
- #: backend/tabs/instance/general/behavior.php:41
261
  msgid "Trigger search on facet change?"
262
  msgstr ""
263
 
264
- #: backend/tabs/instance/general/behavior.php:45
265
  msgid ""
266
  "Will trigger a search when the user clicks on a checkbox on the front-end."
267
  msgstr ""
268
 
269
- #: backend/tabs/instance/general/behavior.php:49
270
  msgid "Trigger search when typing?"
271
  msgstr ""
272
 
273
- #: backend/tabs/instance/general/behavior.php:56
274
  msgid "Minimal character count to trigger search"
275
  msgstr ""
276
 
277
- #: backend/tabs/instance/general/behavior.php:63
278
  msgid "Max. results"
279
  msgstr ""
280
 
281
- #: backend/tabs/instance/general/behavior.php:69
282
  msgid "Action when clicking <strong>the magnifier</strong> icon"
283
  msgstr ""
284
 
285
- #: backend/tabs/instance/general/behavior.php:72
286
- #: backend/tabs/instance/general/behavior.php:99
287
- msgid "Trigger live search"
288
- msgstr ""
289
-
290
  #: backend/tabs/instance/general/behavior.php:73
291
  #: backend/tabs/instance/general/behavior.php:100
292
- msgid "Redirec to: Results page"
293
  msgstr ""
294
 
295
  #: backend/tabs/instance/general/behavior.php:74
296
  #: backend/tabs/instance/general/behavior.php:101
297
- msgid "Redirec to: Woocommerce results page"
298
  msgstr ""
299
 
300
  #: backend/tabs/instance/general/behavior.php:75
301
  #: backend/tabs/instance/general/behavior.php:102
302
- msgid "Redirec to: First matching result"
303
  msgstr ""
304
 
305
  #: backend/tabs/instance/general/behavior.php:76
306
  #: backend/tabs/instance/general/behavior.php:103
307
- msgid "Redirec to: Custom URL"
308
  msgstr ""
309
 
310
  #: backend/tabs/instance/general/behavior.php:77
311
  #: backend/tabs/instance/general/behavior.php:104
 
 
 
 
 
312
  msgid "Do nothing"
313
  msgstr ""
314
 
315
- #: backend/tabs/instance/general/behavior.php:96
316
  msgid "Action when pressing <strong>the return</strong> key"
317
  msgstr ""
318
 
319
- #: backend/tabs/instance/general/behavior.php:123
320
  msgid "Custom redirect URL"
321
  msgstr ""
322
 
323
- #: backend/tabs/instance/general/behavior.php:130
324
  msgid "Override the default WordPress search results?"
325
  msgstr ""
326
 
327
- #: backend/tabs/instance/general/behavior.php:144
328
  msgid "Might not work with some Themes."
329
  msgstr ""
330
 
331
- #: backend/tabs/instance/general/behavior.php:148
332
  msgid "Results count per page?"
333
  msgstr ""
334
 
335
- #: backend/tabs/instance/general/behavior.php:152
336
  msgid "The number of results per page, on the results page."
337
  msgstr ""
338
 
339
- #: backend/tabs/instance/general/behavior.php:154
340
  msgid ""
341
  "<strong>WARNING:</strong> This should be set to the same as the number of "
342
  "results originally displayed on the results page!<br>\n"
@@ -421,7 +589,11 @@ msgid ""
421
  "trash, auto-draft"
422
  msgstr ""
423
 
424
- #: backend/tabs/instance/general/sources.php:84
 
 
 
 
425
  msgid "Search in terms? (categories, tags)"
426
  msgstr ""
427
 
@@ -473,58 +645,65 @@ msgstr ""
473
  msgid "Placeholder text"
474
  msgstr ""
475
 
476
- #: backend/tabs/instance/layout/box_layout.php:30
477
- msgid "Search Box width"
478
  msgstr ""
479
 
480
- #: backend/tabs/instance/layout/box_layout.php:33
481
- #: backend/tabs/instance/layout/box_layout.php:39
482
- msgid "Include the unit as well, example: 10px or 1em or 90%"
 
 
 
483
  msgstr ""
484
 
485
- #: backend/tabs/instance/layout/box_layout.php:38
486
  msgid "Search box margin"
487
  msgstr ""
488
 
489
- #: backend/tabs/instance/layout/box_layout.php:51
 
 
 
 
490
  msgid "Search plugin Font Family"
491
  msgstr ""
492
 
493
- #: backend/tabs/instance/layout/box_layout.php:54
494
  msgid "The Font Family used within the plugin. Default: Open Sans"
495
  msgstr ""
496
 
497
- #: backend/tabs/instance/layout/box_layout.php:55
498
  msgid ""
499
  "Entering multiple font family names like <strong>Helvetica, Sans-serif</"
500
  "strong> or <strong>inherit</strong> are also supported."
501
  msgstr ""
502
 
503
- #: backend/tabs/instance/layout/box_layout.php:59
504
  msgid "Override background color?"
505
  msgstr ""
506
 
507
- #: backend/tabs/instance/layout/box_layout.php:63
508
  msgid "color:"
509
  msgstr ""
510
 
511
- #: backend/tabs/instance/layout/box_layout.php:70
512
  msgid "Override magnifier & icon colors?"
513
  msgstr ""
514
 
515
- #: backend/tabs/instance/layout/box_layout.php:74
516
  msgid "icon background colors"
517
  msgstr ""
518
 
519
- #: backend/tabs/instance/layout/box_layout.php:78
520
  msgid "icon colors"
521
  msgstr ""
522
 
523
- #: backend/tabs/instance/layout/box_layout.php:86
524
  msgid "Override search box border?"
525
  msgstr ""
526
 
527
- #: backend/tabs/instance/layout/box_layout.php:90
528
  msgid "Border style"
529
  msgstr ""
530
 
@@ -578,58 +757,66 @@ msgid "Did you mean text"
578
  msgstr ""
579
 
580
  #: backend/tabs/instance/layout/results_layout.php:3
581
- #: backend/tabs/instance/layout/results_layout.php:53
 
 
 
 
 
 
 
 
582
  msgid "Display the description context?"
583
  msgstr ""
584
 
585
- #: backend/tabs/instance/layout/results_layout.php:7
586
- #: backend/tabs/instance/layout/results_layout.php:57
587
  msgid ""
588
  "Will display the description from around the search phrase, not from the "
589
  "beginning."
590
  msgstr ""
591
 
592
- #: backend/tabs/instance/layout/results_layout.php:10
593
  msgid "Result box maximum height"
594
  msgstr ""
595
 
596
- #: backend/tabs/instance/layout/results_layout.php:13
597
  msgid ""
598
  "If this value is reached, the scrollbar will definitely trigger. none or "
599
  "pixel units, like 800px. Default: none"
600
  msgstr ""
601
 
602
- #: backend/tabs/instance/layout/results_layout.php:16
603
  msgid "Results box viewport (in item numbers)"
604
  msgstr ""
605
 
606
- #: backend/tabs/instance/layout/results_layout.php:19
607
  msgid ""
608
  "Used to calculate the box height. Result box height = (this option) x "
609
  "(average item height)"
610
  msgstr ""
611
 
612
- #: backend/tabs/instance/layout/results_layout.php:23
613
  msgid "Show 'More results..' text in the bottom of the search box?"
614
  msgstr ""
615
 
616
- #: backend/tabs/instance/layout/results_layout.php:29
617
  msgid "' Show more results..' text"
618
  msgstr ""
619
 
620
- #: backend/tabs/instance/layout/results_layout.php:35
621
  msgid "Show author in results?"
622
  msgstr ""
623
 
624
- #: backend/tabs/instance/layout/results_layout.php:41
625
  msgid "Show date in results?"
626
  msgstr ""
627
 
628
- #: backend/tabs/instance/layout/results_layout.php:47
629
  msgid "Show description in results?"
630
  msgstr ""
631
 
632
- #: backend/tabs/instance/layout/results_layout.php:62
633
  msgid "Description length"
634
  msgstr ""
635
 
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Ajax Search Lite Pot v1.0.0\n"
8
+ "POT-Creation-Date: 2020-12-12 14:17+0100\n"
9
  "PO-Revision-Date: \n"
10
  "Last-Translator: Your Name <you@example.com>\n"
11
  "Language-Team: Your Team <translations@example.com>\n"
21
  "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
22
  "X-Poedit-Basepath: ..\n"
23
  "Language: en_US\n"
24
+ "X-Generator: Poedit 2.4.2\n"
25
  "X-Poedit-SearchPath-0: .\n"
26
  "X-Poedit-SearchPathExcluded-0: css\n"
27
  "X-Poedit-SearchPathExcluded-1: js\n"
28
  "X-Poedit-SearchPathExcluded-2: languages\n"
29
  "X-Poedit-SearchPathExcluded-3: img\n"
30
 
31
+ #: backend/analytics.php:12
32
+ msgid "Analytics settings were reset to defaults!"
33
  msgstr ""
34
 
35
+ #: backend/analytics.php:14
36
+ msgid "<strong>ERROR Resetting:</strong> Invalid NONCE, please try again!"
37
+ msgstr ""
38
+
39
+ #: backend/analytics.php:70
40
+ msgid "Analytics settings saved!"
41
+ msgstr ""
42
+
43
+ #: backend/analytics.php:72
44
+ msgid "<strong>ERROR Saving:</strong> Invalid NONCE, please try again!"
45
+ msgstr ""
46
+
47
+ #: backend/analytics.php:87
48
+ msgid "Disabled"
49
+ msgstr ""
50
+
51
+ #: backend/analytics.php:88
52
+ msgid "Event Tracking"
53
+ msgstr ""
54
+
55
+ #: backend/analytics.php:89
56
+ msgid "Tracking as pageview (legacy)"
57
+ msgstr ""
58
+
59
+ #: backend/analytics.php:95
60
+ #, php-format
61
+ msgid ""
62
+ "To understand how this works, please read the <a href=\"%s\">Analytics "
63
+ "Integration Documentation</a>"
64
+ msgstr ""
65
+
66
+ #: backend/analytics.php:102
67
+ msgid "Google analytics Tracking ID (ex.: UA-XXXXXX-X)"
68
+ msgstr ""
69
+
70
+ #: backend/analytics.php:114
71
  msgid "Google analytics pageview string"
72
  msgstr ""
73
 
74
+ #: backend/analytics.php:116
75
  msgid ""
76
  "This is how the pageview will look like on the google analytics website. Use "
77
  "the {asl_term} variable to add the search term to the pageview."
78
  msgstr ""
79
 
80
+ #: backend/analytics.php:120
81
+ msgid ""
82
+ "After some time you should be able to see the hits on your analytics board."
83
+ msgstr ""
84
+
85
+ #: backend/analytics.php:126
86
+ msgid "Search input focus event tracking"
87
+ msgstr ""
88
+
89
+ #: backend/analytics.php:129 backend/analytics.php:154
90
+ #: backend/analytics.php:179 backend/analytics.php:204
91
+ #: backend/analytics.php:229 backend/analytics.php:254
92
+ #: backend/analytics.php:279
93
+ msgid "Enabled"
94
+ msgstr ""
95
+
96
+ #: backend/analytics.php:132
97
+ msgid "Triggers, whenever the user clicks on the search input field."
98
+ msgstr ""
99
+
100
+ #: backend/analytics.php:138 backend/analytics.php:163
101
+ #: backend/analytics.php:188 backend/analytics.php:213
102
+ #: backend/analytics.php:238 backend/analytics.php:263
103
+ #: backend/analytics.php:288
104
+ #, php-format
105
+ msgid "Usable variables: %s"
106
+ msgstr ""
107
+
108
+ #: backend/analytics.php:143 backend/analytics.php:168
109
+ #: backend/analytics.php:193 backend/analytics.php:218
110
+ #: backend/analytics.php:243 backend/analytics.php:268
111
+ #: backend/analytics.php:293
112
+ msgid "Event action"
113
  msgstr ""
114
 
115
+ #: backend/analytics.php:144 backend/analytics.php:169
116
+ #: backend/analytics.php:194 backend/analytics.php:219
117
+ #: backend/analytics.php:244 backend/analytics.php:269
118
+ #: backend/analytics.php:294
119
+ msgid "Event category"
120
  msgstr ""
121
 
122
+ #: backend/analytics.php:145 backend/analytics.php:170
123
+ #: backend/analytics.php:195 backend/analytics.php:220
124
+ #: backend/analytics.php:245 backend/analytics.php:270
125
+ #: backend/analytics.php:295
126
+ msgid "Event label"
127
+ msgstr ""
128
+
129
+ #: backend/analytics.php:146 backend/analytics.php:171
130
+ #: backend/analytics.php:196 backend/analytics.php:221
131
+ #: backend/analytics.php:246 backend/analytics.php:271
132
+ #: backend/analytics.php:296
133
+ msgid "Event value"
134
+ msgstr ""
135
+
136
+ #: backend/analytics.php:151
137
+ msgid "Live search start event tracking"
138
+ msgstr ""
139
+
140
+ #: backend/analytics.php:157
141
+ msgid "Triggers, whenever the live search starts."
142
+ msgstr ""
143
+
144
+ #: backend/analytics.php:176
145
+ msgid "Live search end event tracking"
146
+ msgstr ""
147
+
148
+ #: backend/analytics.php:182
149
+ msgid "Triggers, whenever the live search ends."
150
+ msgstr ""
151
+
152
+ #: backend/analytics.php:201
153
+ msgid "Magnifier click event tracking"
154
+ msgstr ""
155
+
156
+ #: backend/analytics.php:207
157
+ msgid "Triggers, whenever the user clicks the magnifier icon"
158
+ msgstr ""
159
+
160
+ #: backend/analytics.php:226
161
+ msgid "Return key event tracking"
162
+ msgstr ""
163
+
164
+ #: backend/analytics.php:232
165
  msgid ""
166
+ "Triggers, whenever the user hits the enter button in the search input field"
167
+ msgstr ""
168
+
169
+ #: backend/analytics.php:251
170
+ msgid "Facet change event tracking"
171
+ msgstr ""
172
+
173
+ #: backend/analytics.php:257 backend/analytics.php:282
174
+ msgid ""
175
+ "Triggers, whenever the user changes any option on the front-end settings"
176
+ msgstr ""
177
+
178
+ #: backend/analytics.php:276
179
+ msgid "Results click event tracking"
180
+ msgstr ""
181
+
182
+ #: backend/analytics.php:304
183
+ msgid "Restore defaults"
184
+ msgstr ""
185
+
186
+ #: backend/analytics.php:305
187
+ msgid "Save options"
188
+ msgstr ""
189
+
190
+ #: backend/analytics.php:313
191
+ msgid "Analytics options"
192
  msgstr ""
193
 
194
  #: backend/compatibility.php:72
251
  msgid "Ajax Search Lite settings saved!"
252
  msgstr ""
253
 
254
+ #: backend/settings/class/textsmall.class.php:45
255
+ msgid "Phone devices, on 0px to 640px widths"
256
+ msgstr ""
257
+
258
+ #: backend/settings/class/textsmall.class.php:46
259
+ msgid "Tablet devices, on 641px to 1024px widths"
260
+ msgstr ""
261
+
262
+ #: backend/settings/class/textsmall.class.php:47
263
+ msgid "Desktop devices, 1025px width and higher"
264
+ msgstr ""
265
+
266
  #: backend/tabs/instance/advanced_options.php:5
267
+ msgid "Exclude hidden search WooCommerce products from search?"
268
  msgstr ""
269
 
270
  #: backend/tabs/instance/advanced_options.php:12
271
+ msgid "Exclude hidden catalog WooCommerce products from search?"
272
  msgstr ""
273
 
274
  #: backend/tabs/instance/advanced_options.php:19
275
+ msgid "Exclude WooCommerce out of stock products?"
276
+ msgstr ""
277
+
278
+ #: backend/tabs/instance/advanced_options.php:26
279
  msgid "What to do with shortcodes in results content?"
280
  msgstr ""
281
 
282
+ #: backend/tabs/instance/advanced_options.php:36
283
  msgid ""
284
  "Removing shortcode is usually much faster, especially if you have many of "
285
  "them within posts."
286
  msgstr ""
287
 
288
+ #: backend/tabs/instance/advanced_options.php:41
289
  msgid "Title Field"
290
  msgstr ""
291
 
292
+ #: backend/tabs/instance/advanced_options.php:62
293
  msgid "Description Field"
294
  msgstr ""
295
 
296
+ #: backend/tabs/instance/advanced_options.php:84
297
  msgid "Exclude categories"
298
  msgstr ""
299
 
300
+ #: backend/tabs/instance/advanced_options.php:91
301
  msgid "Exclude Posts by ID's (comma separated post ID-s)"
302
  msgstr ""
303
 
304
+ #: backend/tabs/instance/advanced_options.php:97
305
  msgid "WPML compatibility"
306
  msgstr ""
307
 
308
+ #: backend/tabs/instance/advanced_options.php:103
309
  msgid "Polylang compatibility"
310
  msgstr ""
311
 
367
 
368
  #: backend/tabs/instance/frontend_options.php:76
369
  #: backend/tabs/instance/general_options.php:35
370
+ #: backend/tabs/instance/image_options.php:136
371
  #: backend/tabs/instance/layout_options.php:42
372
  msgid "Save options!"
373
  msgstr ""
376
  msgid "Show exact matches only?"
377
  msgstr ""
378
 
379
+ #: backend/tabs/instance/general/behavior.php:10
380
+ msgid "Anywhere"
381
+ msgstr ""
382
+
383
+ #: backend/tabs/instance/general/behavior.php:11
384
+ msgid "Starting with phrase"
385
+ msgstr ""
386
+
387
+ #: backend/tabs/instance/general/behavior.php:12
388
+ msgid "Ending with phrase"
389
+ msgstr ""
390
+
391
+ #: backend/tabs/instance/general/behavior.php:13
392
+ msgid "Complete match"
393
+ msgstr ""
394
+
395
+ #: backend/tabs/instance/general/behavior.php:22
396
  msgid "Keyword (phrase) logic?"
397
  msgstr ""
398
 
399
+ #: backend/tabs/instance/general/behavior.php:24
400
  msgid "OR"
401
  msgstr ""
402
 
403
+ #: backend/tabs/instance/general/behavior.php:25
404
  msgid "OR with exact word matches"
405
  msgstr ""
406
 
407
+ #: backend/tabs/instance/general/behavior.php:26
408
  msgid "AND"
409
  msgstr ""
410
 
411
+ #: backend/tabs/instance/general/behavior.php:27
412
  msgid "AND with exact word matches"
413
  msgstr ""
414
 
415
+ #: backend/tabs/instance/general/behavior.php:34
416
  msgid ""
417
  "This determines if the result should match either of the entered phrases (OR "
418
  "logic) or all of the entered phrases (AND logic)."
419
  msgstr ""
420
 
421
+ #: backend/tabs/instance/general/behavior.php:37
422
  msgid ""
423
  "Please note: For <strong>performance rasons</strong> exact word matching in "
424
  "the Lite version is only able to check space-separated words. Commas, dots, "
425
  "question marks etc.. are not considered as word separators."
426
  msgstr ""
427
 
428
+ #: backend/tabs/instance/general/behavior.php:42
429
  msgid "Trigger search on facet change?"
430
  msgstr ""
431
 
432
+ #: backend/tabs/instance/general/behavior.php:46
433
  msgid ""
434
  "Will trigger a search when the user clicks on a checkbox on the front-end."
435
  msgstr ""
436
 
437
+ #: backend/tabs/instance/general/behavior.php:50
438
  msgid "Trigger search when typing?"
439
  msgstr ""
440
 
441
+ #: backend/tabs/instance/general/behavior.php:57
442
  msgid "Minimal character count to trigger search"
443
  msgstr ""
444
 
445
+ #: backend/tabs/instance/general/behavior.php:64
446
  msgid "Max. results"
447
  msgstr ""
448
 
449
+ #: backend/tabs/instance/general/behavior.php:70
450
  msgid "Action when clicking <strong>the magnifier</strong> icon"
451
  msgstr ""
452
 
 
 
 
 
 
453
  #: backend/tabs/instance/general/behavior.php:73
454
  #: backend/tabs/instance/general/behavior.php:100
455
+ msgid "Trigger live search"
456
  msgstr ""
457
 
458
  #: backend/tabs/instance/general/behavior.php:74
459
  #: backend/tabs/instance/general/behavior.php:101
460
+ msgid "Redirec to: Results page"
461
  msgstr ""
462
 
463
  #: backend/tabs/instance/general/behavior.php:75
464
  #: backend/tabs/instance/general/behavior.php:102
465
+ msgid "Redirec to: Woocommerce results page"
466
  msgstr ""
467
 
468
  #: backend/tabs/instance/general/behavior.php:76
469
  #: backend/tabs/instance/general/behavior.php:103
470
+ msgid "Redirec to: First matching result"
471
  msgstr ""
472
 
473
  #: backend/tabs/instance/general/behavior.php:77
474
  #: backend/tabs/instance/general/behavior.php:104
475
+ msgid "Redirec to: Custom URL"
476
+ msgstr ""
477
+
478
+ #: backend/tabs/instance/general/behavior.php:78
479
+ #: backend/tabs/instance/general/behavior.php:105
480
  msgid "Do nothing"
481
  msgstr ""
482
 
483
+ #: backend/tabs/instance/general/behavior.php:97
484
  msgid "Action when pressing <strong>the return</strong> key"
485
  msgstr ""
486
 
487
+ #: backend/tabs/instance/general/behavior.php:124
488
  msgid "Custom redirect URL"
489
  msgstr ""
490
 
491
+ #: backend/tabs/instance/general/behavior.php:131
492
  msgid "Override the default WordPress search results?"
493
  msgstr ""
494
 
495
+ #: backend/tabs/instance/general/behavior.php:145
496
  msgid "Might not work with some Themes."
497
  msgstr ""
498
 
499
+ #: backend/tabs/instance/general/behavior.php:149
500
  msgid "Results count per page?"
501
  msgstr ""
502
 
503
+ #: backend/tabs/instance/general/behavior.php:153
504
  msgid "The number of results per page, on the results page."
505
  msgstr ""
506
 
507
+ #: backend/tabs/instance/general/behavior.php:155
508
  msgid ""
509
  "<strong>WARNING:</strong> This should be set to the same as the number of "
510
  "results originally displayed on the results page!<br>\n"
589
  "trash, auto-draft"
590
  msgstr ""
591
 
592
+ #: backend/tabs/instance/general/sources.php:83
593
+ msgid "Search and return password protected posts?"
594
+ msgstr ""
595
+
596
+ #: backend/tabs/instance/general/sources.php:89
597
  msgid "Search in terms? (categories, tags)"
598
  msgstr ""
599
 
645
  msgid "Placeholder text"
646
  msgstr ""
647
 
648
+ #: backend/tabs/instance/layout/box_layout.php:31
649
+ msgid "Search box width"
650
  msgstr ""
651
 
652
+ #: backend/tabs/instance/layout/box_layout.php:49
653
+ #: backend/tabs/instance/layout/results_layout.php:36
654
+ #, php-format
655
+ msgid ""
656
+ "Use with <a href=\"%s\" target=\"_blank\">CSS units</a> (like %s or %s or "
657
+ "%s ..) Default: <strong>%s</strong>"
658
  msgstr ""
659
 
660
+ #: backend/tabs/instance/layout/box_layout.php:57
661
  msgid "Search box margin"
662
  msgstr ""
663
 
664
+ #: backend/tabs/instance/layout/box_layout.php:58
665
+ msgid "Include the unit as well, example: 10px or 1em or 90%"
666
+ msgstr ""
667
+
668
+ #: backend/tabs/instance/layout/box_layout.php:70
669
  msgid "Search plugin Font Family"
670
  msgstr ""
671
 
672
+ #: backend/tabs/instance/layout/box_layout.php:73
673
  msgid "The Font Family used within the plugin. Default: Open Sans"
674
  msgstr ""
675
 
676
+ #: backend/tabs/instance/layout/box_layout.php:74
677
  msgid ""
678
  "Entering multiple font family names like <strong>Helvetica, Sans-serif</"
679
  "strong> or <strong>inherit</strong> are also supported."
680
  msgstr ""
681
 
682
+ #: backend/tabs/instance/layout/box_layout.php:78
683
  msgid "Override background color?"
684
  msgstr ""
685
 
686
+ #: backend/tabs/instance/layout/box_layout.php:82
687
  msgid "color:"
688
  msgstr ""
689
 
690
+ #: backend/tabs/instance/layout/box_layout.php:89
691
  msgid "Override magnifier & icon colors?"
692
  msgstr ""
693
 
694
+ #: backend/tabs/instance/layout/box_layout.php:93
695
  msgid "icon background colors"
696
  msgstr ""
697
 
698
+ #: backend/tabs/instance/layout/box_layout.php:97
699
  msgid "icon colors"
700
  msgstr ""
701
 
702
+ #: backend/tabs/instance/layout/box_layout.php:105
703
  msgid "Override search box border?"
704
  msgstr ""
705
 
706
+ #: backend/tabs/instance/layout/box_layout.php:109
707
  msgid "Border style"
708
  msgstr ""
709
 
757
  msgstr ""
758
 
759
  #: backend/tabs/instance/layout/results_layout.php:3
760
+ msgid "Number of result columns"
761
+ msgstr ""
762
+
763
+ #: backend/tabs/instance/layout/results_layout.php:18
764
+ msgid "Column minimum width (px)"
765
+ msgstr ""
766
+
767
+ #: backend/tabs/instance/layout/results_layout.php:43
768
+ #: backend/tabs/instance/layout/results_layout.php:93
769
  msgid "Display the description context?"
770
  msgstr ""
771
 
772
+ #: backend/tabs/instance/layout/results_layout.php:47
773
+ #: backend/tabs/instance/layout/results_layout.php:97
774
  msgid ""
775
  "Will display the description from around the search phrase, not from the "
776
  "beginning."
777
  msgstr ""
778
 
779
+ #: backend/tabs/instance/layout/results_layout.php:50
780
  msgid "Result box maximum height"
781
  msgstr ""
782
 
783
+ #: backend/tabs/instance/layout/results_layout.php:53
784
  msgid ""
785
  "If this value is reached, the scrollbar will definitely trigger. none or "
786
  "pixel units, like 800px. Default: none"
787
  msgstr ""
788
 
789
+ #: backend/tabs/instance/layout/results_layout.php:56
790
  msgid "Results box viewport (in item numbers)"
791
  msgstr ""
792
 
793
+ #: backend/tabs/instance/layout/results_layout.php:59
794
  msgid ""
795
  "Used to calculate the box height. Result box height = (this option) x "
796
  "(average item height)"
797
  msgstr ""
798
 
799
+ #: backend/tabs/instance/layout/results_layout.php:63
800
  msgid "Show 'More results..' text in the bottom of the search box?"
801
  msgstr ""
802
 
803
+ #: backend/tabs/instance/layout/results_layout.php:69
804
  msgid "' Show more results..' text"
805
  msgstr ""
806
 
807
+ #: backend/tabs/instance/layout/results_layout.php:75
808
  msgid "Show author in results?"
809
  msgstr ""
810
 
811
+ #: backend/tabs/instance/layout/results_layout.php:81
812
  msgid "Show date in results?"
813
  msgstr ""
814
 
815
+ #: backend/tabs/instance/layout/results_layout.php:87
816
  msgid "Show description in results?"
817
  msgstr ""
818
 
819
+ #: backend/tabs/instance/layout/results_layout.php:102
820
  msgid "Description length"
821
  msgstr ""
822
 
languages/ajax-search-lite-hu_HU.mo CHANGED
Binary file
languages/ajax-search-lite-hu_HU.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Ajax Search Lite\n"
4
- "POT-Creation-Date: 2015-07-30 17:13+0200\n"
5
- "PO-Revision-Date: 2015-07-30 17:20+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -17,15 +17,46 @@ msgstr ""
17
  "X-Poedit-SearchPathExcluded-0: ../js\n"
18
  "X-Poedit-SearchPathExcluded-1: ../backend/settings/assets\n"
19
 
20
- #: ../backend/analytics.php:7
21
- msgid "Enable search Google Analytics integration?"
22
- msgstr "Google Analytics integráció engedélyezése"
23
-
24
  #: ../backend/analytics.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Google analytics pageview string"
26
  msgstr "Google analytics oldal-megtekintés szövege"
27
 
28
- #: ../backend/analytics.php:16
29
  msgid ""
30
  "This is how the pageview will look like on the google analytics website. Use "
31
  "the {asl_term} variable to add the search term to the pageview."
@@ -33,126 +64,237 @@ msgstr ""
33
  "Így fog kinézni egy oldalmegjelenés a google analytics panelen. Használd az "
34
  "{asl_term} változót a kulcsszó megjelöléséhez. "
35
 
36
- #: ../backend/analytics.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  msgid "Analytics options"
38
  msgstr "Analytics beállítások"
39
 
40
- #: ../backend/analytics.php:45
41
- msgid "Result"
42
- msgstr "Eredmény"
43
 
44
- #: ../backend/analytics.php:47
45
  msgid ""
46
- "After some time you should be able to see the hits on your analytics board."
 
 
 
47
  msgstr ""
48
- "Rövid idő elteltvével látni fogod a kereséseket az analytics weblapján."
49
 
50
- #: ../backend/settings.php:44
51
  msgid "Search shortcode:"
52
  msgstr "Kereső shortkód"
53
 
54
- #: ../backend/settings.php:47
55
  msgid "Search shortcode for templates:"
56
  msgstr "Kereső shortkód témákhoz (php)"
57
 
58
- #: ../backend/settings.php:58
59
  msgid "General Options"
60
  msgstr "Általános Beállítások"
61
 
62
- #: ../backend/settings.php:59 ../backend/settings.php:75
63
  msgid "Image Options"
64
  msgstr "Képbeállítások"
65
 
66
- #: ../backend/settings.php:60
67
  msgid "Frontend Options"
68
  msgstr "Front-end beállítások"
69
 
70
- #: ../backend/settings.php:61
71
  msgid "Layout options"
72
  msgstr "Megjelenés"
73
 
74
- #: ../backend/settings.php:62
75
  msgid "Advanced"
76
  msgstr "Haladó"
77
 
78
- #: ../backend/settings.php:67
79
  msgid "Genearal Options"
80
  msgstr "Általános"
81
 
82
- #: ../backend/settings.php:83
83
  msgid "Frontend Search Settings"
84
  msgstr "Front-end beállítások"
85
 
86
- #: ../backend/settings.php:91
87
  msgid "Layout Options"
88
  msgstr "Megjelenés"
89
 
90
- #: ../backend/settings.php:99
91
  msgid "Advanced Options"
92
  msgstr "Haladó"
93
 
94
- #: ../backend/settings.php:119
95
  msgid "Ajax Search Lite settings saved!"
96
  msgstr "Beállítások mentve!"
97
 
98
- #: ../backend/settings/class/customfields.class.php:22
99
- msgid "Available public custom fields types"
100
- msgstr "Elérhető Egyedi Mezők"
101
 
102
- #: ../backend/settings/class/customfields.class.php:31
103
- msgid "Drag here the custom fields you want to use!"
104
- msgstr "Húzd ide az Egyedi Mezőket, amelyeket használni szeretnél"
105
 
106
- #: ../backend/settings/class/customposttypes.class.php:23
107
- msgid "Available post types"
108
- msgstr "Elérhető Bejegyzés Típusok"
 
 
 
 
109
 
110
- #: ../backend/settings/class/customposttypes.class.php:32
111
- msgid "Drag here the post types you want to use!"
112
- msgstr "Húzd ide a Bejegyzés Típusokat, amiket használni szeretnél"
 
 
 
 
113
 
114
- #: ../backend/tabs/instance/advanced_options.php:3
115
- msgid "Strip shortcodes from the content?"
 
 
116
  msgstr "Shortkódok törlése a tartalomból"
117
 
118
- #: ../backend/tabs/instance/advanced_options.php:7
119
  msgid ""
120
- "When enabled, the shortcodes from the content will be removed instead of "
121
- "executed."
122
- msgstr "Törli a shortkódokat ahelyett, hogy végrehajtaná őket."
123
 
124
- #: ../backend/tabs/instance/advanced_options.php:12
125
  msgid "Title Field"
126
  msgstr "Cím mező"
127
 
128
- #: ../backend/tabs/instance/advanced_options.php:21
129
  msgid "Description Field"
130
  msgstr "Leírás mező"
131
 
132
- #: ../backend/tabs/instance/advanced_options.php:30
133
  msgid "Exclude categories"
134
  msgstr "Kihagyandó kategóriák"
135
 
136
- #: ../backend/tabs/instance/advanced_options.php:37
137
  msgid "Exclude Posts by ID's (comma separated post ID-s)"
138
  msgstr "Kihagyandó Bejegyzések (vesszővel elválaszott ID számok)"
139
 
140
- #: ../backend/tabs/instance/advanced_options.php:43
141
- msgid "Exclude Terms by ID (comma separated term ID-s)"
142
- msgstr "Kihagyandó kifejezések (tag, taxonomy term) ID alapján"
143
-
144
- #: ../backend/tabs/instance/advanced_options.php:47
145
- msgid ""
146
- "Use this field to exclude any taxonomy term (tags, product categorories "
147
- "etc..)"
148
- msgstr ""
149
- "Ezzel az opcióval kihagyhatsz tartalmakat, amelyek ezekhez a kifejezésekhez "
150
- "kapcsolódnak. (tagek, kategóriák, egyéb..)"
151
-
152
- #: ../backend/tabs/instance/advanced_options.php:52
153
  msgid "WPML compatibility"
154
  msgstr "WPML kompatibilitás"
155
 
 
 
 
 
 
 
156
  #: ../backend/tabs/instance/frontend_options.php:3
157
  msgid "Show search settings on the frontend?"
158
  msgstr "Beállítások mutatása front-enden?"
@@ -210,81 +352,254 @@ msgid "Categories filter box header text"
210
  msgstr "A kategória doboz fejléc szövege"
211
 
212
  #: ../backend/tabs/instance/frontend_options.php:76
213
- #: ../backend/tabs/instance/general_options.php:130
214
- #: ../backend/tabs/instance/image_options.php:106
215
- #: ../backend/tabs/instance/layout_options.php:21
216
  msgid "Save options!"
217
  msgstr "Beállítások mentése!"
218
 
219
- #: ../backend/tabs/instance/general_options.php:12
220
- msgid "Theme"
221
- msgstr "Téma"
222
-
223
- #: ../backend/tabs/instance/general_options.php:21
224
- msgid "Search in posts?"
225
- msgstr "Keresés bejegyzésekben?"
226
 
227
- #: ../backend/tabs/instance/general_options.php:28
228
- msgid "Search in pages?"
229
- msgstr "Keresés oldalakon?"
230
 
231
- #: ../backend/tabs/instance/general_options.php:34
232
- msgid "Search in custom post types"
233
- msgstr "Keresés más típusokban"
234
 
235
- #: ../backend/tabs/instance/general_options.php:41
236
- msgid "Search in title?"
237
- msgstr "Keresés a címben?"
238
 
239
- #: ../backend/tabs/instance/general_options.php:48
240
- msgid "Search in content?"
241
- msgstr "Keresés a tartalomban?"
242
 
243
- #: ../backend/tabs/instance/general_options.php:55
244
- msgid "Search in post excerpts?"
245
- msgstr "Keresés a kivonatokban?"
246
 
247
- #: ../backend/tabs/instance/general_options.php:61
248
- msgid "Search in custom fields"
249
- msgstr "Keresés az Egyedi mezőkben?"
250
 
251
- #: ../backend/tabs/instance/general_options.php:69
252
- msgid "Show exact matches only?"
 
 
253
  msgstr "Csak teljesen egyező találatok mutatása?"
254
 
255
- #: ../backend/tabs/instance/general_options.php:76
256
- msgid "Search in terms? (categories, tags)"
257
- msgstr "Keresés kifejezésekben (kategória, tag, stb..)"
258
 
259
- #: ../backend/tabs/instance/general_options.php:82
260
- msgid "Result ordering"
261
- msgstr "Eredmények elrendezése"
262
 
263
- #: ../backend/tabs/instance/general_options.php:91
264
- msgid "Trigger search when clicking on search icon?"
265
- msgstr "A keresés indítása a kereső ikonra való kattintáskor"
 
 
 
 
 
 
 
 
 
266
 
267
- #: ../backend/tabs/instance/general_options.php:98
268
- msgid "Redirect to search results page when clicking on search icon?"
 
 
 
 
 
 
 
269
  msgstr ""
270
- "Átirányítás az alapértelmezett keresési eredményekhez ikonra való "
271
- "kattintáskor?"
272
 
273
- #: ../backend/tabs/instance/general_options.php:105
274
  msgid "Trigger search when typing?"
275
  msgstr "Keresés indítása gépelés közben?"
276
 
277
- #: ../backend/tabs/instance/general_options.php:112
278
  msgid "Minimal character count to trigger search"
279
  msgstr "Minimális karakterszám a keresés indításához"
280
 
281
- #: ../backend/tabs/instance/general_options.php:119
282
  msgid "Max. results"
283
  msgstr "Eredmények maximális száma"
284
 
285
- #: ../backend/tabs/instance/general_options.php:124
286
- msgid "Results box viewport (in item numbers)"
287
- msgstr "Eredménydoboz mérete (elemszám)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
288
 
289
  #: ../backend/tabs/instance/image_options.php:4
290
  msgid "Show images in results?"
@@ -322,104 +637,290 @@ msgstr "Alternatív képforrás 4"
322
  msgid "Default image url"
323
  msgstr "Alapértelmezett kép URL"
324
 
325
- #: ../backend/tabs/instance/image_options.php:97
326
  msgid "Custom field containing the image"
327
  msgstr "Egyedi mező, amely a képet tartalmazza"
328
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
329
  #: ../backend/tabs/instance/layout/results_behaviour.php:3
 
 
 
 
330
  msgid "Sroll the window to the result list?"
331
  msgstr "Az ablak mozgatása az eredménylistához?"
332
 
333
- #: ../backend/tabs/instance/layout/results_behaviour.php:9
334
  msgid "Make the whole result area clickable?"
335
  msgstr "Tedd az eredménylista elemei egész részét kattinthatóvá"
336
 
337
- #: ../backend/tabs/instance/layout/results_behaviour.php:15
338
  msgid "Close result list on document click?"
339
  msgstr "Az eredménylista bezárása ha a felhasználó mellé kattint"
340
 
341
- #: ../backend/tabs/instance/layout/results_behaviour.php:21
342
  msgid "Show the close icon?"
343
  msgstr "Mutasd a bezárás ikont"
344
 
345
- #: ../backend/tabs/instance/layout/results_behaviour.php:26
346
  msgid "No results text"
347
  msgstr "Nincs eredmény szövege"
348
 
349
- #: ../backend/tabs/instance/layout/results_behaviour.php:30
350
  msgid "Did you mean text"
351
  msgstr "Úgy értette? szöveg"
352
 
353
  #: ../backend/tabs/instance/layout/results_layout.php:3
354
- msgid "Placeholder text"
355
- msgstr "A helykitöltő szövege"
 
 
 
 
356
 
357
- #: ../backend/tabs/instance/layout/results_layout.php:9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
  msgid "Show 'More results..' text in the bottom of the search box?"
359
  msgstr "Mutasd a 'Még több eredmény' szöveget az eredménylista alján"
360
 
361
- #: ../backend/tabs/instance/layout/results_layout.php:15
362
  msgid "' Show more results..' text"
363
  msgstr "'Még több eredmény' szövege"
364
 
365
- #: ../backend/tabs/instance/layout/results_layout.php:21
366
  msgid "Show author in results?"
367
  msgstr "Mutasd a szerzőt az eredménylistában"
368
 
369
- #: ../backend/tabs/instance/layout/results_layout.php:27
370
  msgid "Show date in results?"
371
  msgstr "Mutasd a dátumot az eredménylistában"
372
 
373
- #: ../backend/tabs/instance/layout/results_layout.php:33
374
  msgid "Show description in results?"
375
  msgstr "Mutasd a post tartalmát az eredménylistában"
376
 
377
- #: ../backend/tabs/instance/layout/results_layout.php:39
378
  msgid "Description length"
379
  msgstr "Tartalom hossza"
380
 
381
  #: ../backend/tabs/instance/layout_options.php:2
382
- #: ../backend/tabs/instance/layout_options.php:8
 
 
 
 
 
 
 
383
  msgid "Results layout"
384
  msgstr "Megjelenés"
385
 
386
- #: ../backend/tabs/instance/layout_options.php:3
387
- #: ../backend/tabs/instance/layout_options.php:14
388
  msgid "Results Behaviour"
389
  msgstr "Viselkedés"
390
 
391
- #: ../includes/asl_init.class.php:15 ../includes/asl_init.class.php:16
392
- #: ../includes/asl_init.class.php:25
393
- msgid "Ajax Search Lite"
394
- msgstr "Ajax Search Lite"
395
-
396
- #: ../includes/asl_init.class.php:26
397
- msgid "Analytics Integration"
398
- msgstr "Analytics integráció"
399
 
400
- #: ../includes/bfi_thumb.php:145
401
  msgid ""
402
  "The server does not have ImageMagick or GD installed and/or enabled! Any of "
403
  "these libraries are required for WordPress to be able to resize images. "
404
  "Please contact your server administrator to enable this before continuing."
405
  msgstr ""
406
 
407
- #: ../includes/bfi_thumb.php:273
408
  msgid "Image rotate failed."
409
  msgstr ""
410
 
411
- #: ../includes/bfi_thumb.php:296
412
  msgid "Image opacity change failed."
413
  msgstr ""
414
 
415
- #: ../includes/bfi_thumb.php:383
416
  msgid "Image color change failed."
417
  msgstr ""
418
 
419
- #: ../includes/bfi_thumb.php:400
420
  msgid "Image grayscale failed."
421
  msgstr ""
422
 
423
- #: ../includes/bfi_thumb.php:417
424
  msgid "Image negate failed."
425
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Ajax Search Lite\n"
4
+ "POT-Creation-Date: 2020-12-12 14:18+0100\n"
5
+ "PO-Revision-Date: 2020-12-12 14:22+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.4.2\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPathExcluded-0: ../js\n"
18
  "X-Poedit-SearchPathExcluded-1: ../backend/settings/assets\n"
19
 
 
 
 
 
20
  #: ../backend/analytics.php:12
21
+ msgid "Analytics settings were reset to defaults!"
22
+ msgstr "Analytics beállítások visszaállítva!"
23
+
24
+ #: ../backend/analytics.php:14
25
+ msgid "<strong>ERROR Resetting:</strong> Invalid NONCE, please try again!"
26
+ msgstr ""
27
+ "<strong>HIBA:</strong> Hibás NONCE, kérlek frissítsd az oldalt és probáld "
28
+ "újra!"
29
+
30
+ #: ../backend/analytics.php:70
31
+ #, fuzzy
32
+ #| msgid "Ajax Search Lite settings saved!"
33
+ msgid "Analytics settings saved!"
34
+ msgstr "Beállítások mentve!"
35
+
36
+ #: ../backend/analytics.php:72
37
+ msgid "<strong>ERROR Saving:</strong> Invalid NONCE, please try again!"
38
+ msgstr ""
39
+ "<strong>HIBA a mentés során:</strong> Érvénytelen NONCE, kérlek frissítsd az "
40
+ "oldalt és probáld újra!"
41
+
42
+ #: ../backend/analytics.php:95
43
+ #, php-format
44
+ msgid ""
45
+ "To understand how this works, please read the <a href=\"%s\">Analytics "
46
+ "Integration Documentation</a>"
47
+ msgstr ""
48
+ "További tudnivalókért, kérlek olvasd el az <a href=\"%s\">Analytics "
49
+ "Integration Documentation</a>"
50
+
51
+ #: ../backend/analytics.php:102
52
+ msgid "Google analytics Tracking ID (ex.: UA-XXXXXX-X)"
53
+ msgstr "Google analytics Tracking ID (ex.: UA-XXXXXX-X)"
54
+
55
+ #: ../backend/analytics.php:114
56
  msgid "Google analytics pageview string"
57
  msgstr "Google analytics oldal-megtekintés szövege"
58
 
59
+ #: ../backend/analytics.php:116
60
  msgid ""
61
  "This is how the pageview will look like on the google analytics website. Use "
62
  "the {asl_term} variable to add the search term to the pageview."
64
  "Így fog kinézni egy oldalmegjelenés a google analytics panelen. Használd az "
65
  "{asl_term} változót a kulcsszó megjelöléséhez. "
66
 
67
+ #: ../backend/analytics.php:120
68
+ msgid ""
69
+ "After some time you should be able to see the hits on your analytics board."
70
+ msgstr ""
71
+ "Rövid idő elteltvével látni fogod a kereséseket az analytics weblapján."
72
+
73
+ #: ../backend/analytics.php:126
74
+ msgid "Search input focus event tracking"
75
+ msgstr "Kereső input mező esemény figyelés"
76
+
77
+ #: ../backend/analytics.php:129 ../backend/analytics.php:154
78
+ #: ../backend/analytics.php:179 ../backend/analytics.php:204
79
+ #: ../backend/analytics.php:229 ../backend/analytics.php:254
80
+ #: ../backend/analytics.php:279
81
+ msgid "Enabled"
82
+ msgstr "Bekapcsolva"
83
+
84
+ #: ../backend/analytics.php:132
85
+ #, fuzzy
86
+ #| msgid "Trigger search when clicking on search icon?"
87
+ msgid "Triggers, whenever the user clicks on the search input field."
88
+ msgstr "A keresés indítása a kereső ikonra való kattintáskor"
89
+
90
+ #: ../backend/analytics.php:138 ../backend/analytics.php:163
91
+ #: ../backend/analytics.php:188 ../backend/analytics.php:213
92
+ #: ../backend/analytics.php:238 ../backend/analytics.php:263
93
+ #: ../backend/analytics.php:288
94
+ #, php-format
95
+ msgid "Usable variables: %s"
96
+ msgstr "Használható változók: %s"
97
+
98
+ #: ../backend/analytics.php:143 ../backend/analytics.php:168
99
+ #: ../backend/analytics.php:193 ../backend/analytics.php:218
100
+ #: ../backend/analytics.php:243 ../backend/analytics.php:268
101
+ #: ../backend/analytics.php:293
102
+ msgid "Event action"
103
+ msgstr "Esemény"
104
+
105
+ #: ../backend/analytics.php:144 ../backend/analytics.php:169
106
+ #: ../backend/analytics.php:194 ../backend/analytics.php:219
107
+ #: ../backend/analytics.php:244 ../backend/analytics.php:269
108
+ #: ../backend/analytics.php:294
109
+ msgid "Event category"
110
+ msgstr "Esemény kategória"
111
+
112
+ #: ../backend/analytics.php:145 ../backend/analytics.php:170
113
+ #: ../backend/analytics.php:195 ../backend/analytics.php:220
114
+ #: ../backend/analytics.php:245 ../backend/analytics.php:270
115
+ #: ../backend/analytics.php:295
116
+ msgid "Event label"
117
+ msgstr ""
118
+
119
+ #: ../backend/analytics.php:146 ../backend/analytics.php:171
120
+ #: ../backend/analytics.php:196 ../backend/analytics.php:221
121
+ #: ../backend/analytics.php:246 ../backend/analytics.php:271
122
+ #: ../backend/analytics.php:296
123
+ msgid "Event value"
124
+ msgstr ""
125
+
126
+ #: ../backend/analytics.php:151
127
+ msgid "Live search start event tracking"
128
+ msgstr ""
129
+
130
+ #: ../backend/analytics.php:157
131
+ msgid "Triggers, whenever the live search starts."
132
+ msgstr ""
133
+
134
+ #: ../backend/analytics.php:176
135
+ msgid "Live search end event tracking"
136
+ msgstr ""
137
+
138
+ #: ../backend/analytics.php:182
139
+ msgid "Triggers, whenever the live search ends."
140
+ msgstr ""
141
+
142
+ #: ../backend/analytics.php:201
143
+ msgid "Magnifier click event tracking"
144
+ msgstr ""
145
+
146
+ #: ../backend/analytics.php:207
147
+ msgid "Triggers, whenever the user clicks the magnifier icon"
148
+ msgstr ""
149
+
150
+ #: ../backend/analytics.php:226
151
+ msgid "Return key event tracking"
152
+ msgstr ""
153
+
154
+ #: ../backend/analytics.php:232
155
+ msgid ""
156
+ "Triggers, whenever the user hits the enter button in the search input field"
157
+ msgstr ""
158
+
159
+ #: ../backend/analytics.php:251
160
+ msgid "Facet change event tracking"
161
+ msgstr ""
162
+
163
+ #: ../backend/analytics.php:257 ../backend/analytics.php:282
164
+ msgid ""
165
+ "Triggers, whenever the user changes any option on the front-end settings"
166
+ msgstr ""
167
+
168
+ #: ../backend/analytics.php:276
169
+ msgid "Results click event tracking"
170
+ msgstr ""
171
+
172
+ #: ../backend/analytics.php:313
173
  msgid "Analytics options"
174
  msgstr "Analytics beállítások"
175
 
176
+ #: ../backend/compatibility.php:72
177
+ msgid "Try fixing DOM duplicates of the search bar if they exist?"
178
+ msgstr ""
179
 
180
+ #: ../backend/compatibility.php:76
181
  msgid ""
182
+ "Some menu or widgets scripts tend to <strong>clone</strong> the search bar "
183
+ "completely for Mobile viewports, causing a malfunctioning search bar with no "
184
+ "event handlers. When this is active, the plugin script will try to fix that, "
185
+ "if possible."
186
  msgstr ""
 
187
 
188
+ #: ../backend/settings.php:48
189
  msgid "Search shortcode:"
190
  msgstr "Kereső shortkód"
191
 
192
+ #: ../backend/settings.php:51
193
  msgid "Search shortcode for templates:"
194
  msgstr "Kereső shortkód témákhoz (php)"
195
 
196
+ #: ../backend/settings.php:62
197
  msgid "General Options"
198
  msgstr "Általános Beállítások"
199
 
200
+ #: ../backend/settings.php:63 ../backend/settings.php:79
201
  msgid "Image Options"
202
  msgstr "Képbeállítások"
203
 
204
+ #: ../backend/settings.php:64
205
  msgid "Frontend Options"
206
  msgstr "Front-end beállítások"
207
 
208
+ #: ../backend/settings.php:65
209
  msgid "Layout options"
210
  msgstr "Megjelenés"
211
 
212
+ #: ../backend/settings.php:66
213
  msgid "Advanced"
214
  msgstr "Haladó"
215
 
216
+ #: ../backend/settings.php:71
217
  msgid "Genearal Options"
218
  msgstr "Általános"
219
 
220
+ #: ../backend/settings.php:87
221
  msgid "Frontend Search Settings"
222
  msgstr "Front-end beállítások"
223
 
224
+ #: ../backend/settings.php:95
225
  msgid "Layout Options"
226
  msgstr "Megjelenés"
227
 
228
+ #: ../backend/settings.php:103
229
  msgid "Advanced Options"
230
  msgstr "Haladó"
231
 
232
+ #: ../backend/settings.php:131
233
  msgid "Ajax Search Lite settings saved!"
234
  msgstr "Beállítások mentve!"
235
 
236
+ #: ../backend/settings/class/textsmall.class.php:45
237
+ msgid "Phone devices, on 0px to 640px widths"
238
+ msgstr ""
239
 
240
+ #: ../backend/settings/class/textsmall.class.php:46
241
+ msgid "Tablet devices, on 641px to 1024px widths"
242
+ msgstr ""
243
 
244
+ #: ../backend/settings/class/textsmall.class.php:47
245
+ msgid "Desktop devices, 1025px width and higher"
246
+ msgstr ""
247
+
248
+ #: ../backend/tabs/instance/advanced_options.php:5
249
+ msgid "Exclude hidden search WooCommerce products from search?"
250
+ msgstr ""
251
 
252
+ #: ../backend/tabs/instance/advanced_options.php:12
253
+ msgid "Exclude hidden catalog WooCommerce products from search?"
254
+ msgstr ""
255
+
256
+ #: ../backend/tabs/instance/advanced_options.php:19
257
+ msgid "Exclude WooCommerce out of stock products?"
258
+ msgstr ""
259
 
260
+ #: ../backend/tabs/instance/advanced_options.php:26
261
+ #, fuzzy
262
+ #| msgid "Strip shortcodes from the content?"
263
+ msgid "What to do with shortcodes in results content?"
264
  msgstr "Shortkódok törlése a tartalomból"
265
 
266
+ #: ../backend/tabs/instance/advanced_options.php:36
267
  msgid ""
268
+ "Removing shortcode is usually much faster, especially if you have many of "
269
+ "them within posts."
270
+ msgstr ""
271
 
272
+ #: ../backend/tabs/instance/advanced_options.php:41
273
  msgid "Title Field"
274
  msgstr "Cím mező"
275
 
276
+ #: ../backend/tabs/instance/advanced_options.php:62
277
  msgid "Description Field"
278
  msgstr "Leírás mező"
279
 
280
+ #: ../backend/tabs/instance/advanced_options.php:84
281
  msgid "Exclude categories"
282
  msgstr "Kihagyandó kategóriák"
283
 
284
+ #: ../backend/tabs/instance/advanced_options.php:91
285
  msgid "Exclude Posts by ID's (comma separated post ID-s)"
286
  msgstr "Kihagyandó Bejegyzések (vesszővel elválaszott ID számok)"
287
 
288
+ #: ../backend/tabs/instance/advanced_options.php:97
 
 
 
 
 
 
 
 
 
 
 
 
289
  msgid "WPML compatibility"
290
  msgstr "WPML kompatibilitás"
291
 
292
+ #: ../backend/tabs/instance/advanced_options.php:103
293
+ #, fuzzy
294
+ #| msgid "WPML compatibility"
295
+ msgid "Polylang compatibility"
296
+ msgstr "WPML kompatibilitás"
297
+
298
  #: ../backend/tabs/instance/frontend_options.php:3
299
  msgid "Show search settings on the frontend?"
300
  msgstr "Beállítások mutatása front-enden?"
352
  msgstr "A kategória doboz fejléc szövege"
353
 
354
  #: ../backend/tabs/instance/frontend_options.php:76
355
+ #: ../backend/tabs/instance/general_options.php:35
356
+ #: ../backend/tabs/instance/image_options.php:136
357
+ #: ../backend/tabs/instance/layout_options.php:42
358
  msgid "Save options!"
359
  msgstr "Beállítások mentése!"
360
 
361
+ #: ../backend/tabs/instance/general/behavior.php:3
362
+ msgid "Show exact matches only?"
363
+ msgstr "Csak teljesen egyező találatok mutatása?"
 
 
 
 
364
 
365
+ #: ../backend/tabs/instance/general/behavior.php:10
366
+ msgid "Anywhere"
367
+ msgstr ""
368
 
369
+ #: ../backend/tabs/instance/general/behavior.php:11
370
+ msgid "Starting with phrase"
371
+ msgstr ""
372
 
373
+ #: ../backend/tabs/instance/general/behavior.php:12
374
+ msgid "Ending with phrase"
375
+ msgstr ""
376
 
377
+ #: ../backend/tabs/instance/general/behavior.php:13
378
+ msgid "Complete match"
379
+ msgstr ""
380
 
381
+ #: ../backend/tabs/instance/general/behavior.php:22
382
+ msgid "Keyword (phrase) logic?"
383
+ msgstr ""
384
 
385
+ #: ../backend/tabs/instance/general/behavior.php:24
386
+ msgid "OR"
387
+ msgstr ""
388
 
389
+ #: ../backend/tabs/instance/general/behavior.php:25
390
+ #, fuzzy
391
+ #| msgid "Show exact matches only?"
392
+ msgid "OR with exact word matches"
393
  msgstr "Csak teljesen egyező találatok mutatása?"
394
 
395
+ #: ../backend/tabs/instance/general/behavior.php:26
396
+ msgid "AND"
397
+ msgstr ""
398
 
399
+ #: ../backend/tabs/instance/general/behavior.php:27
400
+ msgid "AND with exact word matches"
401
+ msgstr ""
402
 
403
+ #: ../backend/tabs/instance/general/behavior.php:34
404
+ msgid ""
405
+ "This determines if the result should match either of the entered phrases (OR "
406
+ "logic) or all of the entered phrases (AND logic)."
407
+ msgstr ""
408
+
409
+ #: ../backend/tabs/instance/general/behavior.php:37
410
+ msgid ""
411
+ "Please note: For <strong>performance rasons</strong> exact word matching in "
412
+ "the Lite version is only able to check space-separated words. Commas, dots, "
413
+ "question marks etc.. are not considered as word separators."
414
+ msgstr ""
415
 
416
+ #: ../backend/tabs/instance/general/behavior.php:42
417
+ #, fuzzy
418
+ #| msgid "Trigger search when typing?"
419
+ msgid "Trigger search on facet change?"
420
+ msgstr "Keresés indítása gépelés közben?"
421
+
422
+ #: ../backend/tabs/instance/general/behavior.php:46
423
+ msgid ""
424
+ "Will trigger a search when the user clicks on a checkbox on the front-end."
425
  msgstr ""
 
 
426
 
427
+ #: ../backend/tabs/instance/general/behavior.php:50
428
  msgid "Trigger search when typing?"
429
  msgstr "Keresés indítása gépelés közben?"
430
 
431
+ #: ../backend/tabs/instance/general/behavior.php:57
432
  msgid "Minimal character count to trigger search"
433
  msgstr "Minimális karakterszám a keresés indításához"
434
 
435
+ #: ../backend/tabs/instance/general/behavior.php:64
436
  msgid "Max. results"
437
  msgstr "Eredmények maximális száma"
438
 
439
+ #: ../backend/tabs/instance/general/behavior.php:70
440
+ msgid "Action when clicking <strong>the magnifier</strong> icon"
441
+ msgstr ""
442
+
443
+ #: ../backend/tabs/instance/general/behavior.php:73
444
+ #: ../backend/tabs/instance/general/behavior.php:100
445
+ #, fuzzy
446
+ #| msgid "Trigger search when typing?"
447
+ msgid "Trigger live search"
448
+ msgstr "Keresés indítása gépelés közben?"
449
+
450
+ #: ../backend/tabs/instance/general/behavior.php:74
451
+ #: ../backend/tabs/instance/general/behavior.php:101
452
+ msgid "Redirec to: Results page"
453
+ msgstr ""
454
+
455
+ #: ../backend/tabs/instance/general/behavior.php:75
456
+ #: ../backend/tabs/instance/general/behavior.php:102
457
+ msgid "Redirec to: Woocommerce results page"
458
+ msgstr ""
459
+
460
+ #: ../backend/tabs/instance/general/behavior.php:76
461
+ #: ../backend/tabs/instance/general/behavior.php:103
462
+ msgid "Redirec to: First matching result"
463
+ msgstr ""
464
+
465
+ #: ../backend/tabs/instance/general/behavior.php:77
466
+ #: ../backend/tabs/instance/general/behavior.php:104
467
+ msgid "Redirec to: Custom URL"
468
+ msgstr ""
469
+
470
+ #: ../backend/tabs/instance/general/behavior.php:78
471
+ #: ../backend/tabs/instance/general/behavior.php:105
472
+ msgid "Do nothing"
473
+ msgstr ""
474
+
475
+ #: ../backend/tabs/instance/general/behavior.php:97
476
+ msgid "Action when pressing <strong>the return</strong> key"
477
+ msgstr ""
478
+
479
+ #: ../backend/tabs/instance/general/behavior.php:124
480
+ msgid "Custom redirect URL"
481
+ msgstr ""
482
+
483
+ #: ../backend/tabs/instance/general/behavior.php:131
484
+ msgid "Override the default WordPress search results?"
485
+ msgstr ""
486
+
487
+ #: ../backend/tabs/instance/general/behavior.php:145
488
+ msgid "Might not work with some Themes."
489
+ msgstr ""
490
+
491
+ #: ../backend/tabs/instance/general/behavior.php:149
492
+ msgid "Results count per page?"
493
+ msgstr ""
494
+
495
+ #: ../backend/tabs/instance/general/behavior.php:153
496
+ msgid "The number of results per page, on the results page."
497
+ msgstr ""
498
+
499
+ #: ../backend/tabs/instance/general/behavior.php:155
500
+ msgid ""
501
+ "<strong>WARNING:</strong> This should be set to the same as the number of "
502
+ "results originally displayed on the results page!<br>\n"
503
+ " Most themes use the system option found on the <strong>General "
504
+ "Options -> Reading</strong> submenu, which is 10 by default. <br>\n"
505
+ " If you set it differently, or your theme has a different option for "
506
+ "that, then <strong>set this option to the same value</strong> as well."
507
+ msgstr ""
508
+
509
+ #: ../backend/tabs/instance/general/ordering.php:2
510
+ #, fuzzy
511
+ #| msgid "Result ordering"
512
+ msgid "Primary result ordering"
513
+ msgstr "Eredmények elrendezése"
514
+
515
+ #: ../backend/tabs/instance/general/ordering.php:15
516
+ msgid ""
517
+ "This is the primary ordering. If two elements match the primary ordering "
518
+ "criteria, the Secondary ordering is used below."
519
+ msgstr ""
520
+
521
+ #: ../backend/tabs/instance/general/ordering.php:18
522
+ #, fuzzy
523
+ #| msgid "Result ordering"
524
+ msgid "Secondary result ordering"
525
+ msgstr "Eredmények elrendezése"
526
+
527
+ #: ../backend/tabs/instance/general/ordering.php:31
528
+ msgid "For matching elements by primary ordering, this ordering is used."
529
+ msgstr ""
530
+
531
+ #: ../backend/tabs/instance/general/sources.php:3
532
+ msgid "Try to replace the theme search with Ajax Search Lite form?"
533
+ msgstr ""
534
+
535
+ #: ../backend/tabs/instance/general/sources.php:7
536
+ #: ../backend/tabs/instance/general/sources.php:16
537
+ msgid ""
538
+ "Works with most themes, which use the searchform.php theme file to display "
539
+ "their search forms."
540
+ msgstr ""
541
+
542
+ #: ../backend/tabs/instance/general/sources.php:12
543
+ msgid "Try to replace the WooCommerce search with Ajax Search Lite form?"
544
+ msgstr ""
545
+
546
+ #: ../backend/tabs/instance/general/sources.php:20
547
+ msgid "Search in custom post types"
548
+ msgstr "Keresés más típusokban"
549
+
550
+ #: ../backend/tabs/instance/general/sources.php:26
551
+ msgid "Search in title?"
552
+ msgstr "Keresés a címben?"
553
+
554
+ #: ../backend/tabs/instance/general/sources.php:33
555
+ msgid "Search in content?"
556
+ msgstr "Keresés a tartalomban?"
557
+
558
+ #: ../backend/tabs/instance/general/sources.php:40
559
+ msgid "Search in post excerpts?"
560
+ msgstr "Keresés a kivonatokban?"
561
+
562
+ #: ../backend/tabs/instance/general/sources.php:47
563
+ #, fuzzy
564
+ #| msgid "Search in pages?"
565
+ msgid "Search in permalinks?"
566
+ msgstr "Keresés oldalakon?"
567
+
568
+ #: ../backend/tabs/instance/general/sources.php:54
569
+ #, fuzzy
570
+ #| msgid "Search in posts?"
571
+ msgid "Search in post (and CPT) IDs?"
572
+ msgstr "Keresés bejegyzésekben?"
573
+
574
+ #: ../backend/tabs/instance/general/sources.php:61
575
+ #, fuzzy
576
+ #| msgid "Search in custom fields"
577
+ msgid "Search all custom fields?"
578
+ msgstr "Keresés az Egyedi mezőkben?"
579
+
580
+ #: ../backend/tabs/instance/general/sources.php:68
581
+ #, fuzzy
582
+ #| msgid "Search in custom fields"
583
+ msgid "..or search in selected custom fields?"
584
+ msgstr "Keresés az Egyedi mezőkben?"
585
+
586
+ #: ../backend/tabs/instance/general/sources.php:75
587
+ msgid "Post statuses to search"
588
+ msgstr ""
589
+
590
+ #: ../backend/tabs/instance/general/sources.php:79
591
+ msgid ""
592
+ "Comma separated list. WP Defaults: publish, future, draft, pending, private, "
593
+ "trash, auto-draft"
594
+ msgstr ""
595
+
596
+ #: ../backend/tabs/instance/general/sources.php:83
597
+ msgid "Search and return password protected posts?"
598
+ msgstr ""
599
+
600
+ #: ../backend/tabs/instance/general/sources.php:89
601
+ msgid "Search in terms? (categories, tags)"
602
+ msgstr "Keresés kifejezésekben (kategória, tag, stb..)"
603
 
604
  #: ../backend/tabs/instance/image_options.php:4
605
  msgid "Show images in results?"
637
  msgid "Default image url"
638
  msgstr "Alapértelmezett kép URL"
639
 
640
+ #: ../backend/tabs/instance/image_options.php:120
641
  msgid "Custom field containing the image"
642
  msgstr "Egyedi mező, amely a képet tartalmazza"
643
 
644
+ #: ../backend/tabs/instance/layout/box_layout.php:16
645
+ msgid "Theme"
646
+ msgstr "Téma"
647
+
648
+ #: ../backend/tabs/instance/layout/box_layout.php:25
649
+ msgid "Placeholder text"
650
+ msgstr "A helykitöltő szövege"
651
+
652
+ #: ../backend/tabs/instance/layout/box_layout.php:31
653
+ #, fuzzy
654
+ #| msgid "Search in title?"
655
+ msgid "Search box width"
656
+ msgstr "Keresés a címben?"
657
+
658
+ #: ../backend/tabs/instance/layout/box_layout.php:49
659
+ #: ../backend/tabs/instance/layout/results_layout.php:36
660
+ #, php-format
661
+ msgid ""
662
+ "Use with <a href=\"%s\" target=\"_blank\">CSS units</a> (like %s or %s or "
663
+ "%s ..) Default: <strong>%s</strong>"
664
+ msgstr ""
665
+
666
+ #: ../backend/tabs/instance/layout/box_layout.php:57
667
+ #, fuzzy
668
+ #| msgid "Search in pages?"
669
+ msgid "Search box margin"
670
+ msgstr "Keresés oldalakon?"
671
+
672
+ #: ../backend/tabs/instance/layout/box_layout.php:58
673
+ msgid "Include the unit as well, example: 10px or 1em or 90%"
674
+ msgstr ""
675
+
676
+ #: ../backend/tabs/instance/layout/box_layout.php:70
677
+ #, fuzzy
678
+ #| msgid "Search in title?"
679
+ msgid "Search plugin Font Family"
680
+ msgstr "Keresés a címben?"
681
+
682
+ #: ../backend/tabs/instance/layout/box_layout.php:73
683
+ msgid "The Font Family used within the plugin. Default: Open Sans"
684
+ msgstr ""
685
+
686
+ #: ../backend/tabs/instance/layout/box_layout.php:74
687
+ msgid ""
688
+ "Entering multiple font family names like <strong>Helvetica, Sans-serif</"
689
+ "strong> or <strong>inherit</strong> are also supported."
690
+ msgstr ""
691
+
692
+ #: ../backend/tabs/instance/layout/box_layout.php:78
693
+ msgid "Override background color?"
694
+ msgstr ""
695
+
696
+ #: ../backend/tabs/instance/layout/box_layout.php:82
697
+ msgid "color:"
698
+ msgstr ""
699
+
700
+ #: ../backend/tabs/instance/layout/box_layout.php:89
701
+ msgid "Override magnifier & icon colors?"
702
+ msgstr ""
703
+
704
+ #: ../backend/tabs/instance/layout/box_layout.php:93
705
+ msgid "icon background colors"
706
+ msgstr ""
707
+
708
+ #: ../backend/tabs/instance/layout/box_layout.php:97
709
+ msgid "icon colors"
710
+ msgstr ""
711
+
712
+ #: ../backend/tabs/instance/layout/box_layout.php:105
713
+ msgid "Override search box border?"
714
+ msgstr ""
715
+
716
+ #: ../backend/tabs/instance/layout/box_layout.php:109
717
+ msgid "Border style"
718
+ msgstr ""
719
+
720
+ #: ../backend/tabs/instance/layout/custom_css.php:2
721
+ msgid ""
722
+ "This css will be added before the plugin as inline CSS so it has a "
723
+ "precedence\n"
724
+ " over plugin CSS. (you can override existing rules)"
725
+ msgstr ""
726
+
727
+ #: ../backend/tabs/instance/layout/custom_css.php:7
728
+ #: ../backend/tabs/instance/layout_options.php:6
729
+ #: ../backend/tabs/instance/layout_options.php:35
730
+ msgid "Custom CSS"
731
+ msgstr ""
732
+
733
+ #: ../backend/tabs/instance/layout/keyword_highlight.php:3
734
+ msgid "Keyword highlighting"
735
+ msgstr ""
736
+
737
+ #: ../backend/tabs/instance/layout/keyword_highlight.php:9
738
+ msgid "Highlight whole words only?"
739
+ msgstr ""
740
+
741
  #: ../backend/tabs/instance/layout/results_behaviour.php:3
742
+ msgid "Open the results in a new window?"
743
+ msgstr ""
744
+
745
+ #: ../backend/tabs/instance/layout/results_behaviour.php:9
746
  msgid "Sroll the window to the result list?"
747
  msgstr "Az ablak mozgatása az eredménylistához?"
748
 
749
+ #: ../backend/tabs/instance/layout/results_behaviour.php:15
750
  msgid "Make the whole result area clickable?"
751
  msgstr "Tedd az eredménylista elemei egész részét kattinthatóvá"
752
 
753
+ #: ../backend/tabs/instance/layout/results_behaviour.php:21
754
  msgid "Close result list on document click?"
755
  msgstr "Az eredménylista bezárása ha a felhasználó mellé kattint"
756
 
757
+ #: ../backend/tabs/instance/layout/results_behaviour.php:27
758
  msgid "Show the close icon?"
759
  msgstr "Mutasd a bezárás ikont"
760
 
761
+ #: ../backend/tabs/instance/layout/results_behaviour.php:32
762
  msgid "No results text"
763
  msgstr "Nincs eredmény szövege"
764
 
765
+ #: ../backend/tabs/instance/layout/results_behaviour.php:36
766
  msgid "Did you mean text"
767
  msgstr "Úgy értette? szöveg"
768
 
769
  #: ../backend/tabs/instance/layout/results_layout.php:3
770
+ msgid "Number of result columns"
771
+ msgstr ""
772
+
773
+ #: ../backend/tabs/instance/layout/results_layout.php:18
774
+ msgid "Column minimum width (px)"
775
+ msgstr ""
776
 
777
+ #: ../backend/tabs/instance/layout/results_layout.php:43
778
+ #: ../backend/tabs/instance/layout/results_layout.php:93
779
+ #, fuzzy
780
+ #| msgid "Show description in results?"
781
+ msgid "Display the description context?"
782
+ msgstr "Mutasd a post tartalmát az eredménylistában"
783
+
784
+ #: ../backend/tabs/instance/layout/results_layout.php:47
785
+ #: ../backend/tabs/instance/layout/results_layout.php:97
786
+ msgid ""
787
+ "Will display the description from around the search phrase, not from the "
788
+ "beginning."
789
+ msgstr ""
790
+
791
+ #: ../backend/tabs/instance/layout/results_layout.php:50
792
+ msgid "Result box maximum height"
793
+ msgstr ""
794
+
795
+ #: ../backend/tabs/instance/layout/results_layout.php:53
796
+ msgid ""
797
+ "If this value is reached, the scrollbar will definitely trigger. none or "
798
+ "pixel units, like 800px. Default: none"
799
+ msgstr ""
800
+
801
+ #: ../backend/tabs/instance/layout/results_layout.php:56
802
+ msgid "Results box viewport (in item numbers)"
803
+ msgstr "Eredménydoboz mérete (elemszám)"
804
+
805
+ #: ../backend/tabs/instance/layout/results_layout.php:59
806
+ msgid ""
807
+ "Used to calculate the box height. Result box height = (this option) x "
808
+ "(average item height)"
809
+ msgstr ""
810
+
811
+ #: ../backend/tabs/instance/layout/results_layout.php:63
812
  msgid "Show 'More results..' text in the bottom of the search box?"
813
  msgstr "Mutasd a 'Még több eredmény' szöveget az eredménylista alján"
814
 
815
+ #: ../backend/tabs/instance/layout/results_layout.php:69
816
  msgid "' Show more results..' text"
817
  msgstr "'Még több eredmény' szövege"
818
 
819
+ #: ../backend/tabs/instance/layout/results_layout.php:75
820
  msgid "Show author in results?"
821
  msgstr "Mutasd a szerzőt az eredménylistában"
822
 
823
+ #: ../backend/tabs/instance/layout/results_layout.php:81
824
  msgid "Show date in results?"
825
  msgstr "Mutasd a dátumot az eredménylistában"
826
 
827
+ #: ../backend/tabs/instance/layout/results_layout.php:87
828
  msgid "Show description in results?"
829
  msgstr "Mutasd a post tartalmát az eredménylistában"
830
 
831
+ #: ../backend/tabs/instance/layout/results_layout.php:102
832
  msgid "Description length"
833
  msgstr "Tartalom hossza"
834
 
835
  #: ../backend/tabs/instance/layout_options.php:2
836
+ #: ../backend/tabs/instance/layout_options.php:11
837
+ #, fuzzy
838
+ #| msgid "Search in posts?"
839
+ msgid "Search Box layout"
840
+ msgstr "Keresés bejegyzésekben?"
841
+
842
+ #: ../backend/tabs/instance/layout_options.php:3
843
+ #: ../backend/tabs/instance/layout_options.php:17
844
  msgid "Results layout"
845
  msgstr "Megjelenés"
846
 
847
+ #: ../backend/tabs/instance/layout_options.php:4
848
+ #: ../backend/tabs/instance/layout_options.php:23
849
  msgid "Results Behaviour"
850
  msgstr "Viselkedés"
851
 
852
+ #: ../backend/tabs/instance/layout_options.php:5
853
+ #: ../backend/tabs/instance/layout_options.php:29
854
+ msgid "Keyword Highlighting"
855
+ msgstr ""
 
 
 
 
856
 
857
+ #: ../includes/classes/cache/bfi_thumb.php:145
858
  msgid ""
859
  "The server does not have ImageMagick or GD installed and/or enabled! Any of "
860
  "these libraries are required for WordPress to be able to resize images. "
861
  "Please contact your server administrator to enable this before continuing."
862
  msgstr ""
863
 
864
+ #: ../includes/classes/cache/bfi_thumb.php:273
865
  msgid "Image rotate failed."
866
  msgstr ""
867
 
868
+ #: ../includes/classes/cache/bfi_thumb.php:296
869
  msgid "Image opacity change failed."
870
  msgstr ""
871
 
872
+ #: ../includes/classes/cache/bfi_thumb.php:383
873
  msgid "Image color change failed."
874
  msgstr ""
875
 
876
+ #: ../includes/classes/cache/bfi_thumb.php:400
877
  msgid "Image grayscale failed."
878
  msgstr ""
879
 
880
+ #: ../includes/classes/cache/bfi_thumb.php:417
881
  msgid "Image negate failed."
882
  msgstr ""
883
+
884
+ #~ msgid "Enable search Google Analytics integration?"
885
+ #~ msgstr "Google Analytics integráció engedélyezése"
886
+
887
+ #~ msgid "Result"
888
+ #~ msgstr "Eredmény"
889
+
890
+ #~ msgid "Available public custom fields types"
891
+ #~ msgstr "Elérhető Egyedi Mezők"
892
+
893
+ #~ msgid "Drag here the custom fields you want to use!"
894
+ #~ msgstr "Húzd ide az Egyedi Mezőket, amelyeket használni szeretnél"
895
+
896
+ #~ msgid "Available post types"
897
+ #~ msgstr "Elérhető Bejegyzés Típusok"
898
+
899
+ #~ msgid "Drag here the post types you want to use!"
900
+ #~ msgstr "Húzd ide a Bejegyzés Típusokat, amiket használni szeretnél"
901
+
902
+ #~ msgid ""
903
+ #~ "When enabled, the shortcodes from the content will be removed instead of "
904
+ #~ "executed."
905
+ #~ msgstr "Törli a shortkódokat ahelyett, hogy végrehajtaná őket."
906
+
907
+ #~ msgid "Exclude Terms by ID (comma separated term ID-s)"
908
+ #~ msgstr "Kihagyandó kifejezések (tag, taxonomy term) ID alapján"
909
+
910
+ #~ msgid ""
911
+ #~ "Use this field to exclude any taxonomy term (tags, product categorories "
912
+ #~ "etc..)"
913
+ #~ msgstr ""
914
+ #~ "Ezzel az opcióval kihagyhatsz tartalmakat, amelyek ezekhez a "
915
+ #~ "kifejezésekhez kapcsolódnak. (tagek, kategóriák, egyéb..)"
916
+
917
+ #~ msgid "Redirect to search results page when clicking on search icon?"
918
+ #~ msgstr ""
919
+ #~ "Átirányítás az alapértelmezett keresési eredményekhez ikonra való "
920
+ #~ "kattintáskor?"
921
+
922
+ #~ msgid "Ajax Search Lite"
923
+ #~ msgstr "Ajax Search Lite"
924
+
925
+ #~ msgid "Analytics Integration"
926
+ #~ msgstr "Analytics integráció"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: wpdreams
3
  Donate link: http://wp-dreams.com
4
  Tags: search, better wordpress search, search plugin, relevance search, widget, Post, ajax search, search filter, wp ajax search, custom fields search, better search, ajax search plugin, wp search, wp search plugin, filter, relevant search plugin, wordpress search, Live Search, shortcode, google, autocomplete, suggest, woocommerce, woocommerce search, product, product search, custom search, ajax, suggest, autosuggest, search autocomplete, live, plugin, sidebar, product tag search, products, woocommerce tag search, WooCommerce Plugin, shop, search by sku, relevant search, highlight, term, image, custom search, ecommerce, Predictive Search, search product, shop, typehead, suggest, instant-search
5
  Requires at least: 3.5
6
- Tested up to: 5.5
7
- Stable tag: 4.8.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -105,6 +105,13 @@ and will let you know what to do.
105
  2. Administrator area - nice and smooth
106
 
107
  == Changelog ==
 
 
 
 
 
 
 
108
  = 4.8.4 =
109
  * Option to exclude WooCommerce hidden catalog products
110
  * Fixed issues with the singleton class structures: https://wordpress.org/support/topic/feature-requests-177/#post-13145770
3
  Donate link: http://wp-dreams.com
4
  Tags: search, better wordpress search, search plugin, relevance search, widget, Post, ajax search, search filter, wp ajax search, custom fields search, better search, ajax search plugin, wp search, wp search plugin, filter, relevant search plugin, wordpress search, Live Search, shortcode, google, autocomplete, suggest, woocommerce, woocommerce search, product, product search, custom search, ajax, suggest, autosuggest, search autocomplete, live, plugin, sidebar, product tag search, products, woocommerce tag search, WooCommerce Plugin, shop, search by sku, relevant search, highlight, term, image, custom search, ecommerce, Predictive Search, search product, shop, typehead, suggest, instant-search
5
  Requires at least: 3.5
6
+ Tested up to: 5.6
7
+ Stable tag: 4.8.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
105
  2. Administrator area - nice and smooth
106
 
107
  == Changelog ==
108
+ = 4.8.5 =
109
+ * Option to exclude Password protected posts
110
+ * Exact matching - Full exact matching added (mathing a field exactly, from start to the end)
111
+ * asl_load_css, asl_load_js and asl_load_css_js hooks - when returns true, the JS, CSS or both are stopped from loading
112
+ * WP 5.6 compatible
113
+ * Image parsing on multisite - now automatically tries to fetch the images from across blogs on the results page
114
+
115
  = 4.8.4 =
116
  * Option to exclude WooCommerce hidden catalog products
117
  * Fixed issues with the singleton class structures: https://wordpress.org/support/topic/feature-requests-177/#post-13145770