Version Description
- Add - Support for Google Analytics site search feature
- Update - Plugin settings page
- Fix - Bug with search results page products count
Download this release
Release Info
Developer | Mihail Barinov |
Plugin | Advanced Woo Search |
Version | 1.81 |
Comparing to | |
See all releases |
Code changes from version 1.80 to 1.81
- advanced-woo-search.php +2 -2
- assets/js/admin.js +2 -2
- assets/js/common.js +1 -0
- includes/class-aws-admin.php +1 -1
- includes/class-aws-search-page.php +4 -0
- includes/class-aws-search.php +3 -1
- includes/options.php +3 -1
- languages/advanced-woo-search-ru_RU.po +502 -502
- languages/advanced-woo-search.pot +7 -1
- readme.txt +6 -1
advanced-woo-search.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
Plugin Name: Advanced Woo Search
|
5 |
Description: Advance ajax WooCommerce product search.
|
6 |
-
Version: 1.
|
7 |
Author: ILLID
|
8 |
Author URI: https://advanced-woo-search.com/
|
9 |
Text Domain: advanced-woo-search
|
@@ -16,7 +16,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
16 |
exit;
|
17 |
}
|
18 |
|
19 |
-
define( 'AWS_VERSION', '1.
|
20 |
|
21 |
|
22 |
define( 'AWS_DIR', dirname( __FILE__ ) );
|
3 |
/*
|
4 |
Plugin Name: Advanced Woo Search
|
5 |
Description: Advance ajax WooCommerce product search.
|
6 |
+
Version: 1.81
|
7 |
Author: ILLID
|
8 |
Author URI: https://advanced-woo-search.com/
|
9 |
Text Domain: advanced-woo-search
|
16 |
exit;
|
17 |
}
|
18 |
|
19 |
+
define( 'AWS_VERSION', '1.81' );
|
20 |
|
21 |
|
22 |
define( 'AWS_DIR', dirname( __FILE__ ) );
|
assets/js/admin.js
CHANGED
@@ -34,7 +34,7 @@ jQuery(document).ready(function ($) {
|
|
34 |
|
35 |
$.ajax({
|
36 |
type: 'POST',
|
37 |
-
url: ajaxurl,
|
38 |
data: {
|
39 |
action: 'aws-reindex',
|
40 |
data: data,
|
@@ -115,7 +115,7 @@ jQuery(document).ready(function ($) {
|
|
115 |
|
116 |
$.ajax({
|
117 |
type: 'POST',
|
118 |
-
url: ajaxurl,
|
119 |
data: {
|
120 |
action: 'aws-clear-cache',
|
121 |
_ajax_nonce: aws_vars.ajax_nonce
|
34 |
|
35 |
$.ajax({
|
36 |
type: 'POST',
|
37 |
+
url: aws_vars.ajaxurl,
|
38 |
data: {
|
39 |
action: 'aws-reindex',
|
40 |
data: data,
|
115 |
|
116 |
$.ajax({
|
117 |
type: 'POST',
|
118 |
+
url: aws_vars.ajaxurl,
|
119 |
data: {
|
120 |
action: 'aws-clear-cache',
|
121 |
_ajax_nonce: aws_vars.ajax_nonce
|
assets/js/common.js
CHANGED
@@ -303,6 +303,7 @@
|
|
303 |
}
|
304 |
if ( typeof ga !== 'undefined' ) {
|
305 |
ga('send', 'event', 'AWS search', 'AWS Search Term', label);
|
|
|
306 |
}
|
307 |
}
|
308 |
catch (error) {
|
303 |
}
|
304 |
if ( typeof ga !== 'undefined' ) {
|
305 |
ga('send', 'event', 'AWS search', 'AWS Search Term', label);
|
306 |
+
ga( 'send', 'pageview', '/?s=' + encodeURIComponent( 'ajax-search:' + label ) );
|
307 |
}
|
308 |
}
|
309 |
catch (error) {
|
includes/class-aws-admin.php
CHANGED
@@ -295,7 +295,7 @@ class AWS_Admin {
|
|
295 |
wp_enqueue_script( 'jquery-ui-sortable' );
|
296 |
wp_enqueue_script( 'plugin-admin-scripts', AWS_URL . '/assets/js/admin.js', array('jquery'), AWS_VERSION );
|
297 |
wp_localize_script( 'plugin-admin-scripts', 'aws_vars', array(
|
298 |
-
'ajaxurl' => admin_url('admin-ajax.php' ),
|
299 |
'ajax_nonce' => wp_create_nonce( 'aws_admin_ajax_nonce' ),
|
300 |
) );
|
301 |
}
|
295 |
wp_enqueue_script( 'jquery-ui-sortable' );
|
296 |
wp_enqueue_script( 'plugin-admin-scripts', AWS_URL . '/assets/js/admin.js', array('jquery'), AWS_VERSION );
|
297 |
wp_localize_script( 'plugin-admin-scripts', 'aws_vars', array(
|
298 |
+
'ajaxurl' => admin_url( 'admin-ajax.php', 'relative' ),
|
299 |
'ajax_nonce' => wp_create_nonce( 'aws_admin_ajax_nonce' ),
|
300 |
) );
|
301 |
}
|
includes/class-aws-search-page.php
CHANGED
@@ -296,6 +296,10 @@ if ( ! class_exists( 'AWS_Search_Page' ) ) :
|
|
296 |
$post_array_products = AWS()->order( $post_array_products, $query );
|
297 |
}
|
298 |
|
|
|
|
|
|
|
|
|
299 |
$paged = $query->query_vars['paged'] ? $query->query_vars['paged'] : 1;
|
300 |
$offset = ( $paged > 1 ) ? $paged * $posts_per_page - $posts_per_page : 0;
|
301 |
|
296 |
$post_array_products = AWS()->order( $post_array_products, $query );
|
297 |
}
|
298 |
|
299 |
+
if ( is_numeric( $posts_per_page ) && (int) $posts_per_page < 0 ) {
|
300 |
+
$posts_per_page = 999999;
|
301 |
+
}
|
302 |
+
|
303 |
$paged = $query->query_vars['paged'] ? $query->query_vars['paged'] : 1;
|
304 |
$offset = ( $paged > 1 ) ? $paged * $posts_per_page - $posts_per_page : 0;
|
305 |
|
includes/class-aws-search.php
CHANGED
@@ -265,6 +265,7 @@ if ( ! class_exists( 'AWS_Search' ) ) :
|
|
265 |
|
266 |
$query = array();
|
267 |
|
|
|
268 |
$query['search'] = '';
|
269 |
$query['source'] = '';
|
270 |
$query['relevance'] = '';
|
@@ -369,6 +370,7 @@ if ( ! class_exists( 'AWS_Search' ) ) :
|
|
369 |
$source_array[] = "term_source = '{$search_in_term}'";
|
370 |
}
|
371 |
|
|
|
372 |
$query['relevance'] = sprintf( ' (SUM( %s )) ', implode( ' + ', $new_relevance_array ) );
|
373 |
$query['search'] = sprintf( ' AND ( %s )', implode( ' OR ', $search_array ) );
|
374 |
$query['source'] = sprintf( ' AND ( %s )', implode( ' OR ', $source_array ) );
|
@@ -424,7 +426,7 @@ if ( ! class_exists( 'AWS_Search' ) ) :
|
|
424 |
$query = apply_filters( 'aws_search_query_array', $query );
|
425 |
|
426 |
$sql = "SELECT
|
427 |
-
|
428 |
{$query['relevance']} as relevance
|
429 |
FROM
|
430 |
{$table_name}
|
265 |
|
266 |
$query = array();
|
267 |
|
268 |
+
$query['select'] = '';
|
269 |
$query['search'] = '';
|
270 |
$query['source'] = '';
|
271 |
$query['relevance'] = '';
|
370 |
$source_array[] = "term_source = '{$search_in_term}'";
|
371 |
}
|
372 |
|
373 |
+
$query['select'] = ' distinct ID';
|
374 |
$query['relevance'] = sprintf( ' (SUM( %s )) ', implode( ' + ', $new_relevance_array ) );
|
375 |
$query['search'] = sprintf( ' AND ( %s )', implode( ' OR ', $search_array ) );
|
376 |
$query['source'] = sprintf( ' AND ( %s )', implode( ' OR ', $source_array ) );
|
426 |
$query = apply_filters( 'aws_search_query_array', $query );
|
427 |
|
428 |
$sql = "SELECT
|
429 |
+
{$query['select']},
|
430 |
{$query['relevance']} as relevance
|
431 |
FROM
|
432 |
{$table_name}
|
includes/options.php
CHANGED
@@ -90,7 +90,9 @@ $options['general'][] = array(
|
|
90 |
|
91 |
$options['general'][] = array(
|
92 |
"name" => __( "Use Google Analytics", "advanced-woo-search" ),
|
93 |
-
"desc" => __( "Use google analytics to track searches. You need google analytics to be installed on your site.", "advanced-woo-search" ) .
|
|
|
|
|
94 |
"id" => "use_analytics",
|
95 |
"value" => 'false',
|
96 |
"type" => "radio",
|
90 |
|
91 |
$options['general'][] = array(
|
92 |
"name" => __( "Use Google Analytics", "advanced-woo-search" ),
|
93 |
+
"desc" => __( "Use google analytics to track searches. You need google analytics to be installed on your site.", "advanced-woo-search" ) .
|
94 |
+
'<br>' . sprintf( __( "Data will be visible inside Google Analytics 'Site Search' report. Need to activate 'Site Search' feature inside GA. %s", "advanced-woo-search" ), '<a href="https://advanced-woo-search.com/guide/google-analytics/" target="_blank">' . __( 'More info', 'advanced-woo-search' ) . '</a>' ) .
|
95 |
+
'<br>' . __( "Also will send event with category - 'AWS search', action - 'AWS Search Term' and label of value of search term.", "advanced-woo-search" ),
|
96 |
"id" => "use_analytics",
|
97 |
"value" => 'false',
|
98 |
"type" => "radio",
|
languages/advanced-woo-search-ru_RU.po
CHANGED
@@ -1,502 +1,502 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Advanced Woo Search\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"MIME-Version: 1.0\n"
|
6 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
7 |
-
"Content-Transfer-Encoding: 8bit\n"
|
8 |
-
"X-Generator: Loco https://localise.biz/\n"
|
9 |
-
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
|
10 |
-
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
|
11 |
-
"esc_html_x:1,2c;\n"
|
12 |
-
"Language: ru_RU\n"
|
13 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
14 |
-
"n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
|
15 |
-
"X-Poedit-Country: United States\n"
|
16 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-Basepath: ../\n"
|
18 |
-
"X-Poedit-SearchPath-0: .\n"
|
19 |
-
"X-Poedit-Bookmarks: \n"
|
20 |
-
"X-Textdomain-Support: yes\n"
|
21 |
-
"POT-Creation-Date: 2019-07-18 11:26+0000\n"
|
22 |
-
"PO-Revision-Date: 2019-07-25 14:43+0000\n"
|
23 |
-
"Last-Translator: Алексей Казаков <hdelta045@yandex.ru>\n"
|
24 |
-
"Language-Team: Русский\n"
|
25 |
-
"X-Loco-Version: 2.3.0; wp-5.2.2"
|
26 |
-
|
27 |
-
#: includes/class-aws-admin.php:129
|
28 |
-
msgid "Save Changes"
|
29 |
-
msgstr "Сохранить изменения"
|
30 |
-
|
31 |
-
#: includes/class-aws-admin.php:351
|
32 |
-
msgid "Reindex table"
|
33 |
-
msgstr "Переиндексировать таблицу"
|
34 |
-
|
35 |
-
msgid ""
|
36 |
-
"This action only need for %s one time %s - after you activate this plugin. "
|
37 |
-
"After this all products changes will be re-indexed automatically."
|
38 |
-
msgstr ""
|
39 |
-
"Это действие нужно только % s один раз % s - после активации этого плагина. "
|
40 |
-
"После этого все изменения товаров будут автоматически переиндексированы."
|
41 |
-
|
42 |
-
msgid "Go to Settings Page"
|
43 |
-
msgstr "На страницу настроек"
|
44 |
-
|
45 |
-
#: includes/class-aws-admin.php:352
|
46 |
-
msgid ""
|
47 |
-
"Update all data in plugins index table. Index table - table with products "
|
48 |
-
"data where plugin is searching all typed terms.<br>Use this button if you "
|
49 |
-
"think that plugin not shows last actual data in its search results.<br>"
|
50 |
-
"<strong>CAUTION:</strong> this can take large amount of time.</span>"
|
51 |
-
msgstr ""
|
52 |
-
"Обновите все данные в таблице индексов плагинов. Индексная таблица - таблица "
|
53 |
-
"с данными о товарах, где плагин ищет все введенные термины.<br>Используйте "
|
54 |
-
"эту кнопку, если считаете, что плагин не отображает последние фактические "
|
55 |
-
"данные в результатах поиска.<br><strong> ВНИМАНИЕ: </strong> это может "
|
56 |
-
"займет много времени.</span>"
|
57 |
-
|
58 |
-
#: includes/class-aws-admin.php:362
|
59 |
-
msgid "Clear cache"
|
60 |
-
msgstr "Очистить кеш"
|
61 |
-
|
62 |
-
#: includes/class-aws-admin.php:363
|
63 |
-
msgid "Clear cache for all search results."
|
64 |
-
msgstr "Очищает кеш от всех результатов поиска"
|
65 |
-
|
66 |
-
#: includes/options.php:111
|
67 |
-
msgid ""
|
68 |
-
"Smart scrapping sentences with searching terms from product description."
|
69 |
-
msgstr "Умные списки предложений с поисковыми терминами из описания продукта."
|
70 |
-
|
71 |
-
#: includes/options.php:112
|
72 |
-
msgid ""
|
73 |
-
"First N words of product description ( number of words that you choose below."
|
74 |
-
" )"
|
75 |
-
msgstr ""
|
76 |
-
"Первые N слов описания продукта (количество слов, которые вы выбираете ниже.)"
|
77 |
-
|
78 |
-
#: advanced-woo-search.php:113
|
79 |
-
msgid "Sale!"
|
80 |
-
msgstr "Распродажа!"
|
81 |
-
|
82 |
-
msgid "SKU"
|
83 |
-
msgstr "SKU"
|
84 |
-
|
85 |
-
msgid "View all results"
|
86 |
-
msgstr "Посмотреть все результаты"
|
87 |
-
|
88 |
-
#: advanced-woo-search.php:127
|
89 |
-
msgid "Settings"
|
90 |
-
msgstr "Настройки"
|
91 |
-
|
92 |
-
#: advanced-woo-search.php:130 includes/class-aws-admin.php:63
|
93 |
-
msgid "Get Premium"
|
94 |
-
msgstr "Получить Premium-версию"
|
95 |
-
|
96 |
-
#: advanced-woo-search.php:166
|
97 |
-
msgid ""
|
98 |
-
"Advanced Woo Search plugin is enabled but not effective. It requires "
|
99 |
-
"WooCommerce in order to work."
|
100 |
-
msgstr ""
|
101 |
-
"Плагин Advanced Woo Search включен, но не эффективен. Для работы требуется "
|
102 |
-
"WooCommerce."
|
103 |
-
|
104 |
-
#: includes/widget.php:15
|
105 |
-
msgid "Advanced WooCommerce search widget"
|
106 |
-
msgstr "Advanced WooCommerce search widget"
|
107 |
-
|
108 |
-
#: includes/widget.php:17
|
109 |
-
msgid "» AWS Widget"
|
110 |
-
msgstr "» AWS Widget"
|
111 |
-
|
112 |
-
#: includes/widget.php:56
|
113 |
-
msgid "Search..."
|
114 |
-
msgstr "Ищу..."
|
115 |
-
|
116 |
-
#: includes/widget.php:62
|
117 |
-
msgid "Title:"
|
118 |
-
msgstr "Заголовок:"
|
119 |
-
|
120 |
-
#: includes/class-aws-admin.php:38 includes/class-aws-admin.php:38
|
121 |
-
msgid "Adv. Woo Search"
|
122 |
-
msgstr "Adv. Woo Search"
|
123 |
-
|
124 |
-
#: includes/class-aws-admin.php:49
|
125 |
-
msgid "General"
|
126 |
-
msgstr "Основные"
|
127 |
-
|
128 |
-
#: includes/class-aws-admin.php:296
|
129 |
-
msgid "Active sources"
|
130 |
-
msgstr "Активированные источник "
|
131 |
-
|
132 |
-
#: includes/class-aws-admin.php:297
|
133 |
-
msgid "Change order by drag&drop"
|
134 |
-
msgstr "Измените порядок путем перетаскивания"
|
135 |
-
|
136 |
-
#: includes/class-aws-admin.php:316
|
137 |
-
msgid "Deactivated sources"
|
138 |
-
msgstr "Деактивированные источники"
|
139 |
-
|
140 |
-
#: includes/class-aws-admin.php:317
|
141 |
-
msgid "Excluded from search results"
|
142 |
-
msgstr "Исключено из поисковых результатов"
|
143 |
-
|
144 |
-
#: includes/options.php:9
|
145 |
-
msgid "Cache results"
|
146 |
-
msgstr "Результаты кеширования"
|
147 |
-
|
148 |
-
msgid "Sync index table"
|
149 |
-
msgstr "Синхронизировать индексную таблицу"
|
150 |
-
|
151 |
-
msgid ""
|
152 |
-
"Automatically update plugin index table when product content was changed. "
|
153 |
-
"This means that in search there will be always latest product data."
|
154 |
-
msgstr ""
|
155 |
-
"Автоматически обновлять индексную таблицу плагинов при изменении содержимого "
|
156 |
-
"продукта. Это означает, что в поиске всегда будут последние данные о товаре."
|
157 |
-
|
158 |
-
msgid "Turn this off if you have any problems with performance."
|
159 |
-
msgstr ""
|
160 |
-
"Выключите это, если у вас есть какие-либо проблемы с производительностью."
|
161 |
-
|
162 |
-
msgid "Main Settings"
|
163 |
-
msgstr "Основные настройки"
|
164 |
-
|
165 |
-
msgid "Seamless integration"
|
166 |
-
msgstr "Бесшовная интеграция"
|
167 |
-
|
168 |
-
msgid ""
|
169 |
-
"Replace all the standard search forms on your website ( may not work with "
|
170 |
-
"some themes )."
|
171 |
-
msgstr ""
|
172 |
-
"Заменяет все стандартные формы поиска на вашем сайте (может не работать с "
|
173 |
-
"некоторыми темами)."
|
174 |
-
|
175 |
-
msgid "Activation"
|
176 |
-
msgstr "Активация"
|
177 |
-
|
178 |
-
msgid ""
|
179 |
-
"In case you need to add plugin search form on your website, you can do it in "
|
180 |
-
"several ways:"
|
181 |
-
msgstr ""
|
182 |
-
"Если вам нужно добавить форму поиска плагинов на ваш сайт, вы можете сделать "
|
183 |
-
"это несколькими способами:"
|
184 |
-
|
185 |
-
msgid ""
|
186 |
-
"Enable a \"Seamless integration\" option ( may not work with some themes )"
|
187 |
-
msgstr ""
|
188 |
-
"Включите опцию «Бесшовная интеграция» (может не работать с некоторыми темами)"
|
189 |
-
|
190 |
-
msgid "Add search form using shortcode %s"
|
191 |
-
msgstr "Добавить форму поиска, используя шорткод %s"
|
192 |
-
|
193 |
-
msgid ""
|
194 |
-
"Add search form as widget for one of your theme widget areas. Go to "
|
195 |
-
"Appearance -> Widgets and drag&drop AWS Widget to one of your widget areas"
|
196 |
-
msgstr ""
|
197 |
-
"Добавить форму поиска в качестве виджета в одной из областей виджетов вашей "
|
198 |
-
"темы. Перейдите в Внешний вид -> Виджеты и перетащите AWS Widget в одну из "
|
199 |
-
"областей виджетов"
|
200 |
-
|
201 |
-
msgid "Add PHP code to the necessary files of your theme: %s"
|
202 |
-
msgstr "Добавьте PHP-код в нужные файлы вашей темы: %s"
|
203 |
-
|
204 |
-
#: includes/options.php:10
|
205 |
-
msgid ""
|
206 |
-
"Turn off if you have old data in the search results after content of "
|
207 |
-
"products was changed.<br><strong>CAUTION:</strong> can dramatically increase "
|
208 |
-
"search speed"
|
209 |
-
msgstr ""
|
210 |
-
"Установите off, если у вас остались старые данные в результатах поиска после "
|
211 |
-
"изменения содержания товаров.<br><strong>ВНИМАНИЕ:</strong> может "
|
212 |
-
"значительно увеличить скорость поиска"
|
213 |
-
|
214 |
-
#: includes/options.php:15 includes/options.php:43 includes/options.php:55
|
215 |
-
#: includes/options.php:67 includes/options.php:99 includes/options.php:123
|
216 |
-
#: includes/options.php:135 includes/options.php:147 includes/options.php:159
|
217 |
-
msgid "On"
|
218 |
-
msgstr "On"
|
219 |
-
|
220 |
-
#: includes/options.php:16 includes/options.php:44 includes/options.php:56
|
221 |
-
#: includes/options.php:68 includes/options.php:100 includes/options.php:124
|
222 |
-
#: includes/options.php:136 includes/options.php:148 includes/options.php:160
|
223 |
-
msgid "Off"
|
224 |
-
msgstr "Off"
|
225 |
-
|
226 |
-
#: includes/options.php:21
|
227 |
-
msgid "Text for search field"
|
228 |
-
msgstr "Текст в поле поиска"
|
229 |
-
|
230 |
-
#: includes/options.php:22
|
231 |
-
msgid "Text for search field placeholder."
|
232 |
-
msgstr " Текст, который будет указан в поле поиска"
|
233 |
-
|
234 |
-
#: includes/options.php:35
|
235 |
-
msgid "Search"
|
236 |
-
msgstr "Искать"
|
237 |
-
|
238 |
-
msgid "Text for show more button"
|
239 |
-
msgstr "Текст для кнопки Показать больше"
|
240 |
-
|
241 |
-
msgid ""
|
242 |
-
"Text for link to search results page at the bottom of search results block."
|
243 |
-
msgstr ""
|
244 |
-
"Текст ссылки на страницу результатов поиска в нижней части блока результатов "
|
245 |
-
"поиска."
|
246 |
-
|
247 |
-
#: includes/options.php:40
|
248 |
-
msgid "Nothing found field"
|
249 |
-
msgstr "Поле Ничего не найдено"
|
250 |
-
|
251 |
-
#: includes/options.php:41
|
252 |
-
msgid "Text when there is no search results."
|
253 |
-
msgstr "Текст, который сообщает, что ничего не нашлось"
|
254 |
-
|
255 |
-
#: includes/options.php:43
|
256 |
-
msgid "Nothing found"
|
257 |
-
msgstr "Нет результатов"
|
258 |
-
|
259 |
-
#: includes/options.php:29
|
260 |
-
msgid "Minimum number of characters"
|
261 |
-
msgstr "Минимальное количество символов"
|
262 |
-
|
263 |
-
#: includes/options.php:30
|
264 |
-
msgid "Minimum number of characters required to run ajax search."
|
265 |
-
msgstr ""
|
266 |
-
"Минимальное количество символов, которое требуется для запуска ajax поиска."
|
267 |
-
|
268 |
-
#: includes/options.php:37
|
269 |
-
msgid "Show loader"
|
270 |
-
msgstr "Показать загрузчик"
|
271 |
-
|
272 |
-
#: includes/options.php:38
|
273 |
-
msgid "Show loader animation while searching."
|
274 |
-
msgstr "Показывать процесс загрузки пока идет поиск"
|
275 |
-
|
276 |
-
msgid "Show clear button"
|
277 |
-
msgstr "Показать кнопку очистки"
|
278 |
-
|
279 |
-
msgid ""
|
280 |
-
"Show 'Clear search string' button for desktop devices ( for mobile it is "
|
281 |
-
"always visible )."
|
282 |
-
msgstr ""
|
283 |
-
"Показать кнопку «Очистить строку поиска» для настольных устройств (для "
|
284 |
-
"мобильных устройств она всегда видна)."
|
285 |
-
|
286 |
-
msgid "Show 'View All Results'"
|
287 |
-
msgstr "Показать \"Посмотреть все результаты\""
|
288 |
-
|
289 |
-
msgid "Show link to search results page at the bottom of search results block."
|
290 |
-
msgstr ""
|
291 |
-
"Показать ссылку на страницу результатов поиска внизу блока результатов "
|
292 |
-
"поиска."
|
293 |
-
|
294 |
-
msgid "Search Results"
|
295 |
-
msgstr "Результаты поиска"
|
296 |
-
|
297 |
-
msgid "Choose how to view search results."
|
298 |
-
msgstr "Выберите, в каком виде выводить результаты поиска"
|
299 |
-
|
300 |
-
msgid "Both ajax search results and search results page"
|
301 |
-
msgstr "Оба варианта: Результаты поиска ajax и страница результатов поиска "
|
302 |
-
|
303 |
-
msgid "Only ajax search results ( no search results page )"
|
304 |
-
msgstr "Только результаты поиска ajax ( нет страница результатов поиска )"
|
305 |
-
|
306 |
-
msgid "Only search results page ( no ajax search results )"
|
307 |
-
msgstr "Только страница результатов поиска ( нет результатов поиска ajax )"
|
308 |
-
|
309 |
-
msgid "Form Styling"
|
310 |
-
msgstr "Вид поисковой формы "
|
311 |
-
|
312 |
-
msgid "Choose search form layout"
|
313 |
-
msgstr "Выберите форму поиска"
|
314 |
-
|
315 |
-
msgid ""
|
316 |
-
"Filter button will be visible only if you have more than one active filter "
|
317 |
-
"for current search form instance."
|
318 |
-
msgstr ""
|
319 |
-
"Кнопка фильтра будет видна, только если у вас есть более одного активного "
|
320 |
-
"фильтра для текущего экземпляра формы поиска."
|
321 |
-
|
322 |
-
#: includes/options.php:49
|
323 |
-
msgid "Show image"
|
324 |
-
msgstr "Показывать изображения"
|
325 |
-
|
326 |
-
#: includes/options.php:50
|
327 |
-
msgid "Show product image for each search result."
|
328 |
-
msgstr "Показать изображения товара для каждого результата поиска"
|
329 |
-
|
330 |
-
#: includes/options.php:61
|
331 |
-
msgid "Show description"
|
332 |
-
msgstr "Показывать описание"
|
333 |
-
|
334 |
-
#: includes/options.php:62
|
335 |
-
msgid "Show product description for each search result."
|
336 |
-
msgstr "Показывать описание товара для каждого результата поиска"
|
337 |
-
|
338 |
-
#: includes/options.php:73
|
339 |
-
msgid "Description source"
|
340 |
-
msgstr "Источник Описание"
|
341 |
-
|
342 |
-
#: includes/options.php:74
|
343 |
-
msgid ""
|
344 |
-
"From where to take product description.<br>If first source is empty data "
|
345 |
-
"will be taken from other sources."
|
346 |
-
msgstr ""
|
347 |
-
"Откуда взять описание товара.<br>Если первый источник пуст, данные будут "
|
348 |
-
"взяты из других источников."
|
349 |
-
|
350 |
-
#: includes/options.php:79
|
351 |
-
msgid "Content"
|
352 |
-
msgstr "Содержание"
|
353 |
-
|
354 |
-
#: includes/options.php:80
|
355 |
-
msgid "Excerpt"
|
356 |
-
msgstr "Отрывок"
|
357 |
-
|
358 |
-
#: includes/options.php:85
|
359 |
-
msgid "Description length"
|
360 |
-
msgstr "Длина Описания"
|
361 |
-
|
362 |
-
#: includes/options.php:86
|
363 |
-
msgid "Maximal allowed number of words for product description."
|
364 |
-
msgstr "Максимально допустимое количество слов для описания продукта."
|
365 |
-
|
366 |
-
#: includes/options.php:93
|
367 |
-
msgid "Show price"
|
368 |
-
msgstr "Показывать стоимость"
|
369 |
-
|
370 |
-
#: includes/options.php:94
|
371 |
-
msgid "Show product price for each search result."
|
372 |
-
msgstr "Показывать стоимость товара для каждого результата поиска"
|
373 |
-
|
374 |
-
msgid "Show price for out of stock"
|
375 |
-
msgstr "Показывать стоимость товаров, которых нет в наличии"
|
376 |
-
|
377 |
-
msgid "Show product price for out of stock products."
|
378 |
-
msgstr "Показывать стоимость товаров, которых нет в наличии"
|
379 |
-
|
380 |
-
#: includes/options.php:105
|
381 |
-
msgid "Description content"
|
382 |
-
msgstr "Содержимое Описания"
|
383 |
-
|
384 |
-
#: includes/options.php:106
|
385 |
-
msgid "What to show in product description?"
|
386 |
-
msgstr "Что показывать в описании товара?"
|
387 |
-
|
388 |
-
#: includes/options.php:117
|
389 |
-
msgid "Show categories archive"
|
390 |
-
msgstr "Показывать категории архивов"
|
391 |
-
|
392 |
-
#: includes/options.php:118
|
393 |
-
msgid "Include categories archives pages to search result."
|
394 |
-
msgstr "Включить категории архивных страниц в результаты поиска."
|
395 |
-
|
396 |
-
#: includes/options.php:129
|
397 |
-
msgid "Show tags archive"
|
398 |
-
msgstr "Показывать метки архивов"
|
399 |
-
|
400 |
-
#: includes/options.php:130
|
401 |
-
msgid "Include tags archives pages to search results."
|
402 |
-
msgstr "Включить метки архивных страниц в результаты поиска"
|
403 |
-
|
404 |
-
#: includes/options.php:141
|
405 |
-
msgid "Show sale badge"
|
406 |
-
msgstr "Показывать знак распродажи"
|
407 |
-
|
408 |
-
#: includes/options.php:142
|
409 |
-
msgid "Show sale badge for products in search results."
|
410 |
-
msgstr "Показывать значок распродажи в результатах поиска"
|
411 |
-
|
412 |
-
#: includes/options.php:153
|
413 |
-
msgid "Show product SKU"
|
414 |
-
msgstr "Показывать SKU товара"
|
415 |
-
|
416 |
-
#: includes/options.php:154
|
417 |
-
msgid "Show product SKU in search results."
|
418 |
-
msgstr "Показывать SKU товара в результатах поиска"
|
419 |
-
|
420 |
-
msgid "Show stock status"
|
421 |
-
msgstr "Показывать статус в наличии"
|
422 |
-
|
423 |
-
msgid "Show stock status for every product in search results."
|
424 |
-
msgstr "Показывать статус наличия для каждого товара из поиска"
|
425 |
-
|
426 |
-
msgid "Show featured icon"
|
427 |
-
msgstr "Показывать значок рекомендации"
|
428 |
-
|
429 |
-
msgid "Show or not star icon for featured products."
|
430 |
-
msgstr "Показать или нет значок звезды для рекомендуемых продуктов."
|
431 |
-
|
432 |
-
#: includes/options.php:167
|
433 |
-
msgid "Max number of results"
|
434 |
-
msgstr "Максимальное число найденных результатов"
|
435 |
-
|
436 |
-
#: includes/options.php:168
|
437 |
-
msgid "Maximum number of displayed search results."
|
438 |
-
msgstr "Максимальное число найденных результатов, которые будут показаны"
|
439 |
-
|
440 |
-
#: includes/options.php:175
|
441 |
-
msgid "Search in"
|
442 |
-
msgstr "Искать в"
|
443 |
-
|
444 |
-
#: includes/options.php:176
|
445 |
-
msgid "Search source: Drag&drop sources to activate or deactivate them."
|
446 |
-
msgstr ""
|
447 |
-
"Где искать: перетащите источники, чтобы активировать или деактивировать их."
|
448 |
-
|
449 |
-
#: includes/options.php:30
|
450 |
-
msgid "Show out-of-stock"
|
451 |
-
msgstr "Показать товары, которых нет в наличии"
|
452 |
-
|
453 |
-
#: includes/options.php:31
|
454 |
-
msgid "Show out-of-stock products in search"
|
455 |
-
msgstr "Показать в результатах поиска те товары, которых нет в наличии"
|
456 |
-
|
457 |
-
msgid "Stop words list"
|
458 |
-
msgstr "Список стоп-слов"
|
459 |
-
|
460 |
-
msgid "Comma separated list of words that will be excluded from search."
|
461 |
-
msgstr "Разделенный запятыми список слов, которые будут исключены из поиска."
|
462 |
-
|
463 |
-
msgid "Re-index required on change."
|
464 |
-
msgstr "При изменении требуется переиндексация."
|
465 |
-
|
466 |
-
#: includes/options.php:42
|
467 |
-
msgid "Use Google Analytics"
|
468 |
-
msgstr "Использовать Google Analytics"
|
469 |
-
|
470 |
-
#: includes/options.php:42
|
471 |
-
msgid ""
|
472 |
-
"Use google analytics to track searches. You need google analytics to be "
|
473 |
-
"installed on your site."
|
474 |
-
msgstr ""
|
475 |
-
"Используйте Google Analytics для отслеживания поисковых запросов. Вам нужно "
|
476 |
-
"установить Google Analytics на вашем сайте."
|
477 |
-
|
478 |
-
#: includes/options.php:42
|
479 |
-
msgid ""
|
480 |
-
"Will send event with category - 'AWS search', action - 'AWS Search Term' and "
|
481 |
-
"label of value of search term."
|
482 |
-
msgstr ""
|
483 |
-
"Отправит событие с категорией - 'AWS search', действие - 'AWS Search Term' и "
|
484 |
-
"меткой значения поискового термина."
|
485 |
-
|
486 |
-
msgid "In stock"
|
487 |
-
msgstr "В наличии"
|
488 |
-
|
489 |
-
msgid "Out of stock"
|
490 |
-
msgstr "Нет в наличии"
|
491 |
-
|
492 |
-
#. Name of the plugin
|
493 |
-
msgid "Advanced Woo Search"
|
494 |
-
msgstr "Advanced Woo Search"
|
495 |
-
|
496 |
-
#. Description of the plugin
|
497 |
-
msgid "Advance ajax WooCommerce product search."
|
498 |
-
msgstr "Расширенный ajax-поиск товаров в Woocommerce"
|
499 |
-
|
500 |
-
#. Author of the plugin
|
501 |
-
msgid "ILLID"
|
502 |
-
msgstr "ILLID"
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Advanced Woo Search\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"MIME-Version: 1.0\n"
|
6 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
7 |
+
"Content-Transfer-Encoding: 8bit\n"
|
8 |
+
"X-Generator: Loco https://localise.biz/\n"
|
9 |
+
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
|
10 |
+
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
|
11 |
+
"esc_html_x:1,2c;\n"
|
12 |
+
"Language: ru_RU\n"
|
13 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
14 |
+
"n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
|
15 |
+
"X-Poedit-Country: United States\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
+
"X-Textdomain-Support: yes\n"
|
21 |
+
"POT-Creation-Date: 2019-07-18 11:26+0000\n"
|
22 |
+
"PO-Revision-Date: 2019-07-25 14:43+0000\n"
|
23 |
+
"Last-Translator: Алексей Казаков <hdelta045@yandex.ru>\n"
|
24 |
+
"Language-Team: Русский\n"
|
25 |
+
"X-Loco-Version: 2.3.0; wp-5.2.2"
|
26 |
+
|
27 |
+
#: includes/class-aws-admin.php:129
|
28 |
+
msgid "Save Changes"
|
29 |
+
msgstr "Сохранить изменения"
|
30 |
+
|
31 |
+
#: includes/class-aws-admin.php:351
|
32 |
+
msgid "Reindex table"
|
33 |
+
msgstr "Переиндексировать таблицу"
|
34 |
+
|
35 |
+
msgid ""
|
36 |
+
"This action only need for %s one time %s - after you activate this plugin. "
|
37 |
+
"After this all products changes will be re-indexed automatically."
|
38 |
+
msgstr ""
|
39 |
+
"Это действие нужно только % s один раз % s - после активации этого плагина. "
|
40 |
+
"После этого все изменения товаров будут автоматически переиндексированы."
|
41 |
+
|
42 |
+
msgid "Go to Settings Page"
|
43 |
+
msgstr "На страницу настроек"
|
44 |
+
|
45 |
+
#: includes/class-aws-admin.php:352
|
46 |
+
msgid ""
|
47 |
+
"Update all data in plugins index table. Index table - table with products "
|
48 |
+
"data where plugin is searching all typed terms.<br>Use this button if you "
|
49 |
+
"think that plugin not shows last actual data in its search results.<br>"
|
50 |
+
"<strong>CAUTION:</strong> this can take large amount of time.</span>"
|
51 |
+
msgstr ""
|
52 |
+
"Обновите все данные в таблице индексов плагинов. Индексная таблица - таблица "
|
53 |
+
"с данными о товарах, где плагин ищет все введенные термины.<br>Используйте "
|
54 |
+
"эту кнопку, если считаете, что плагин не отображает последние фактические "
|
55 |
+
"данные в результатах поиска.<br><strong> ВНИМАНИЕ: </strong> это может "
|
56 |
+
"займет много времени.</span>"
|
57 |
+
|
58 |
+
#: includes/class-aws-admin.php:362
|
59 |
+
msgid "Clear cache"
|
60 |
+
msgstr "Очистить кеш"
|
61 |
+
|
62 |
+
#: includes/class-aws-admin.php:363
|
63 |
+
msgid "Clear cache for all search results."
|
64 |
+
msgstr "Очищает кеш от всех результатов поиска"
|
65 |
+
|
66 |
+
#: includes/options.php:111
|
67 |
+
msgid ""
|
68 |
+
"Smart scrapping sentences with searching terms from product description."
|
69 |
+
msgstr "Умные списки предложений с поисковыми терминами из описания продукта."
|
70 |
+
|
71 |
+
#: includes/options.php:112
|
72 |
+
msgid ""
|
73 |
+
"First N words of product description ( number of words that you choose below."
|
74 |
+
" )"
|
75 |
+
msgstr ""
|
76 |
+
"Первые N слов описания продукта (количество слов, которые вы выбираете ниже.)"
|
77 |
+
|
78 |
+
#: advanced-woo-search.php:113
|
79 |
+
msgid "Sale!"
|
80 |
+
msgstr "Распродажа!"
|
81 |
+
|
82 |
+
msgid "SKU"
|
83 |
+
msgstr "SKU"
|
84 |
+
|
85 |
+
msgid "View all results"
|
86 |
+
msgstr "Посмотреть все результаты"
|
87 |
+
|
88 |
+
#: advanced-woo-search.php:127
|
89 |
+
msgid "Settings"
|
90 |
+
msgstr "Настройки"
|
91 |
+
|
92 |
+
#: advanced-woo-search.php:130 includes/class-aws-admin.php:63
|
93 |
+
msgid "Get Premium"
|
94 |
+
msgstr "Получить Premium-версию"
|
95 |
+
|
96 |
+
#: advanced-woo-search.php:166
|
97 |
+
msgid ""
|
98 |
+
"Advanced Woo Search plugin is enabled but not effective. It requires "
|
99 |
+
"WooCommerce in order to work."
|
100 |
+
msgstr ""
|
101 |
+
"Плагин Advanced Woo Search включен, но не эффективен. Для работы требуется "
|
102 |
+
"WooCommerce."
|
103 |
+
|
104 |
+
#: includes/widget.php:15
|
105 |
+
msgid "Advanced WooCommerce search widget"
|
106 |
+
msgstr "Advanced WooCommerce search widget"
|
107 |
+
|
108 |
+
#: includes/widget.php:17
|
109 |
+
msgid "» AWS Widget"
|
110 |
+
msgstr "» AWS Widget"
|
111 |
+
|
112 |
+
#: includes/widget.php:56
|
113 |
+
msgid "Search..."
|
114 |
+
msgstr "Ищу..."
|
115 |
+
|
116 |
+
#: includes/widget.php:62
|
117 |
+
msgid "Title:"
|
118 |
+
msgstr "Заголовок:"
|
119 |
+
|
120 |
+
#: includes/class-aws-admin.php:38 includes/class-aws-admin.php:38
|
121 |
+
msgid "Adv. Woo Search"
|
122 |
+
msgstr "Adv. Woo Search"
|
123 |
+
|
124 |
+
#: includes/class-aws-admin.php:49
|
125 |
+
msgid "General"
|
126 |
+
msgstr "Основные"
|
127 |
+
|
128 |
+
#: includes/class-aws-admin.php:296
|
129 |
+
msgid "Active sources"
|
130 |
+
msgstr "Активированные источник "
|
131 |
+
|
132 |
+
#: includes/class-aws-admin.php:297
|
133 |
+
msgid "Change order by drag&drop"
|
134 |
+
msgstr "Измените порядок путем перетаскивания"
|
135 |
+
|
136 |
+
#: includes/class-aws-admin.php:316
|
137 |
+
msgid "Deactivated sources"
|
138 |
+
msgstr "Деактивированные источники"
|
139 |
+
|
140 |
+
#: includes/class-aws-admin.php:317
|
141 |
+
msgid "Excluded from search results"
|
142 |
+
msgstr "Исключено из поисковых результатов"
|
143 |
+
|
144 |
+
#: includes/options.php:9
|
145 |
+
msgid "Cache results"
|
146 |
+
msgstr "Результаты кеширования"
|
147 |
+
|
148 |
+
msgid "Sync index table"
|
149 |
+
msgstr "Синхронизировать индексную таблицу"
|
150 |
+
|
151 |
+
msgid ""
|
152 |
+
"Automatically update plugin index table when product content was changed. "
|
153 |
+
"This means that in search there will be always latest product data."
|
154 |
+
msgstr ""
|
155 |
+
"Автоматически обновлять индексную таблицу плагинов при изменении содержимого "
|
156 |
+
"продукта. Это означает, что в поиске всегда будут последние данные о товаре."
|
157 |
+
|
158 |
+
msgid "Turn this off if you have any problems with performance."
|
159 |
+
msgstr ""
|
160 |
+
"Выключите это, если у вас есть какие-либо проблемы с производительностью."
|
161 |
+
|
162 |
+
msgid "Main Settings"
|
163 |
+
msgstr "Основные настройки"
|
164 |
+
|
165 |
+
msgid "Seamless integration"
|
166 |
+
msgstr "Бесшовная интеграция"
|
167 |
+
|
168 |
+
msgid ""
|
169 |
+
"Replace all the standard search forms on your website ( may not work with "
|
170 |
+
"some themes )."
|
171 |
+
msgstr ""
|
172 |
+
"Заменяет все стандартные формы поиска на вашем сайте (может не работать с "
|
173 |
+
"некоторыми темами)."
|
174 |
+
|
175 |
+
msgid "Activation"
|
176 |
+
msgstr "Активация"
|
177 |
+
|
178 |
+
msgid ""
|
179 |
+
"In case you need to add plugin search form on your website, you can do it in "
|
180 |
+
"several ways:"
|
181 |
+
msgstr ""
|
182 |
+
"Если вам нужно добавить форму поиска плагинов на ваш сайт, вы можете сделать "
|
183 |
+
"это несколькими способами:"
|
184 |
+
|
185 |
+
msgid ""
|
186 |
+
"Enable a \"Seamless integration\" option ( may not work with some themes )"
|
187 |
+
msgstr ""
|
188 |
+
"Включите опцию «Бесшовная интеграция» (может не работать с некоторыми темами)"
|
189 |
+
|
190 |
+
msgid "Add search form using shortcode %s"
|
191 |
+
msgstr "Добавить форму поиска, используя шорткод %s"
|
192 |
+
|
193 |
+
msgid ""
|
194 |
+
"Add search form as widget for one of your theme widget areas. Go to "
|
195 |
+
"Appearance -> Widgets and drag&drop AWS Widget to one of your widget areas"
|
196 |
+
msgstr ""
|
197 |
+
"Добавить форму поиска в качестве виджета в одной из областей виджетов вашей "
|
198 |
+
"темы. Перейдите в Внешний вид -> Виджеты и перетащите AWS Widget в одну из "
|
199 |
+
"областей виджетов"
|
200 |
+
|
201 |
+
msgid "Add PHP code to the necessary files of your theme: %s"
|
202 |
+
msgstr "Добавьте PHP-код в нужные файлы вашей темы: %s"
|
203 |
+
|
204 |
+
#: includes/options.php:10
|
205 |
+
msgid ""
|
206 |
+
"Turn off if you have old data in the search results after content of "
|
207 |
+
"products was changed.<br><strong>CAUTION:</strong> can dramatically increase "
|
208 |
+
"search speed"
|
209 |
+
msgstr ""
|
210 |
+
"Установите off, если у вас остались старые данные в результатах поиска после "
|
211 |
+
"изменения содержания товаров.<br><strong>ВНИМАНИЕ:</strong> может "
|
212 |
+
"значительно увеличить скорость поиска"
|
213 |
+
|
214 |
+
#: includes/options.php:15 includes/options.php:43 includes/options.php:55
|
215 |
+
#: includes/options.php:67 includes/options.php:99 includes/options.php:123
|
216 |
+
#: includes/options.php:135 includes/options.php:147 includes/options.php:159
|
217 |
+
msgid "On"
|
218 |
+
msgstr "On"
|
219 |
+
|
220 |
+
#: includes/options.php:16 includes/options.php:44 includes/options.php:56
|
221 |
+
#: includes/options.php:68 includes/options.php:100 includes/options.php:124
|
222 |
+
#: includes/options.php:136 includes/options.php:148 includes/options.php:160
|
223 |
+
msgid "Off"
|
224 |
+
msgstr "Off"
|
225 |
+
|
226 |
+
#: includes/options.php:21
|
227 |
+
msgid "Text for search field"
|
228 |
+
msgstr "Текст в поле поиска"
|
229 |
+
|
230 |
+
#: includes/options.php:22
|
231 |
+
msgid "Text for search field placeholder."
|
232 |
+
msgstr " Текст, который будет указан в поле поиска"
|
233 |
+
|
234 |
+
#: includes/options.php:35
|
235 |
+
msgid "Search"
|
236 |
+
msgstr "Искать"
|
237 |
+
|
238 |
+
msgid "Text for show more button"
|
239 |
+
msgstr "Текст для кнопки Показать больше"
|
240 |
+
|
241 |
+
msgid ""
|
242 |
+
"Text for link to search results page at the bottom of search results block."
|
243 |
+
msgstr ""
|
244 |
+
"Текст ссылки на страницу результатов поиска в нижней части блока результатов "
|
245 |
+
"поиска."
|
246 |
+
|
247 |
+
#: includes/options.php:40
|
248 |
+
msgid "Nothing found field"
|
249 |
+
msgstr "Поле Ничего не найдено"
|
250 |
+
|
251 |
+
#: includes/options.php:41
|
252 |
+
msgid "Text when there is no search results."
|
253 |
+
msgstr "Текст, который сообщает, что ничего не нашлось"
|
254 |
+
|
255 |
+
#: includes/options.php:43
|
256 |
+
msgid "Nothing found"
|
257 |
+
msgstr "Нет результатов"
|
258 |
+
|
259 |
+
#: includes/options.php:29
|
260 |
+
msgid "Minimum number of characters"
|
261 |
+
msgstr "Минимальное количество символов"
|
262 |
+
|
263 |
+
#: includes/options.php:30
|
264 |
+
msgid "Minimum number of characters required to run ajax search."
|
265 |
+
msgstr ""
|
266 |
+
"Минимальное количество символов, которое требуется для запуска ajax поиска."
|
267 |
+
|
268 |
+
#: includes/options.php:37
|
269 |
+
msgid "Show loader"
|
270 |
+
msgstr "Показать загрузчик"
|
271 |
+
|
272 |
+
#: includes/options.php:38
|
273 |
+
msgid "Show loader animation while searching."
|
274 |
+
msgstr "Показывать процесс загрузки пока идет поиск"
|
275 |
+
|
276 |
+
msgid "Show clear button"
|
277 |
+
msgstr "Показать кнопку очистки"
|
278 |
+
|
279 |
+
msgid ""
|
280 |
+
"Show 'Clear search string' button for desktop devices ( for mobile it is "
|
281 |
+
"always visible )."
|
282 |
+
msgstr ""
|
283 |
+
"Показать кнопку «Очистить строку поиска» для настольных устройств (для "
|
284 |
+
"мобильных устройств она всегда видна)."
|
285 |
+
|
286 |
+
msgid "Show 'View All Results'"
|
287 |
+
msgstr "Показать \"Посмотреть все результаты\""
|
288 |
+
|
289 |
+
msgid "Show link to search results page at the bottom of search results block."
|
290 |
+
msgstr ""
|
291 |
+
"Показать ссылку на страницу результатов поиска внизу блока результатов "
|
292 |
+
"поиска."
|
293 |
+
|
294 |
+
msgid "Search Results"
|
295 |
+
msgstr "Результаты поиска"
|
296 |
+
|
297 |
+
msgid "Choose how to view search results."
|
298 |
+
msgstr "Выберите, в каком виде выводить результаты поиска"
|
299 |
+
|
300 |
+
msgid "Both ajax search results and search results page"
|
301 |
+
msgstr "Оба варианта: Результаты поиска ajax и страница результатов поиска "
|
302 |
+
|
303 |
+
msgid "Only ajax search results ( no search results page )"
|
304 |
+
msgstr "Только результаты поиска ajax ( нет страница результатов поиска )"
|
305 |
+
|
306 |
+
msgid "Only search results page ( no ajax search results )"
|
307 |
+
msgstr "Только страница результатов поиска ( нет результатов поиска ajax )"
|
308 |
+
|
309 |
+
msgid "Form Styling"
|
310 |
+
msgstr "Вид поисковой формы "
|
311 |
+
|
312 |
+
msgid "Choose search form layout"
|
313 |
+
msgstr "Выберите форму поиска"
|
314 |
+
|
315 |
+
msgid ""
|
316 |
+
"Filter button will be visible only if you have more than one active filter "
|
317 |
+
"for current search form instance."
|
318 |
+
msgstr ""
|
319 |
+
"Кнопка фильтра будет видна, только если у вас есть более одного активного "
|
320 |
+
"фильтра для текущего экземпляра формы поиска."
|
321 |
+
|
322 |
+
#: includes/options.php:49
|
323 |
+
msgid "Show image"
|
324 |
+
msgstr "Показывать изображения"
|
325 |
+
|
326 |
+
#: includes/options.php:50
|
327 |
+
msgid "Show product image for each search result."
|
328 |
+
msgstr "Показать изображения товара для каждого результата поиска"
|
329 |
+
|
330 |
+
#: includes/options.php:61
|
331 |
+
msgid "Show description"
|
332 |
+
msgstr "Показывать описание"
|
333 |
+
|
334 |
+
#: includes/options.php:62
|
335 |
+
msgid "Show product description for each search result."
|
336 |
+
msgstr "Показывать описание товара для каждого результата поиска"
|
337 |
+
|
338 |
+
#: includes/options.php:73
|
339 |
+
msgid "Description source"
|
340 |
+
msgstr "Источник Описание"
|
341 |
+
|
342 |
+
#: includes/options.php:74
|
343 |
+
msgid ""
|
344 |
+
"From where to take product description.<br>If first source is empty data "
|
345 |
+
"will be taken from other sources."
|
346 |
+
msgstr ""
|
347 |
+
"Откуда взять описание товара.<br>Если первый источник пуст, данные будут "
|
348 |
+
"взяты из других источников."
|
349 |
+
|
350 |
+
#: includes/options.php:79
|
351 |
+
msgid "Content"
|
352 |
+
msgstr "Содержание"
|
353 |
+
|
354 |
+
#: includes/options.php:80
|
355 |
+
msgid "Excerpt"
|
356 |
+
msgstr "Отрывок"
|
357 |
+
|
358 |
+
#: includes/options.php:85
|
359 |
+
msgid "Description length"
|
360 |
+
msgstr "Длина Описания"
|
361 |
+
|
362 |
+
#: includes/options.php:86
|
363 |
+
msgid "Maximal allowed number of words for product description."
|
364 |
+
msgstr "Максимально допустимое количество слов для описания продукта."
|
365 |
+
|
366 |
+
#: includes/options.php:93
|
367 |
+
msgid "Show price"
|
368 |
+
msgstr "Показывать стоимость"
|
369 |
+
|
370 |
+
#: includes/options.php:94
|
371 |
+
msgid "Show product price for each search result."
|
372 |
+
msgstr "Показывать стоимость товара для каждого результата поиска"
|
373 |
+
|
374 |
+
msgid "Show price for out of stock"
|
375 |
+
msgstr "Показывать стоимость товаров, которых нет в наличии"
|
376 |
+
|
377 |
+
msgid "Show product price for out of stock products."
|
378 |
+
msgstr "Показывать стоимость товаров, которых нет в наличии"
|
379 |
+
|
380 |
+
#: includes/options.php:105
|
381 |
+
msgid "Description content"
|
382 |
+
msgstr "Содержимое Описания"
|
383 |
+
|
384 |
+
#: includes/options.php:106
|
385 |
+
msgid "What to show in product description?"
|
386 |
+
msgstr "Что показывать в описании товара?"
|
387 |
+
|
388 |
+
#: includes/options.php:117
|
389 |
+
msgid "Show categories archive"
|
390 |
+
msgstr "Показывать категории архивов"
|
391 |
+
|
392 |
+
#: includes/options.php:118
|
393 |
+
msgid "Include categories archives pages to search result."
|
394 |
+
msgstr "Включить категории архивных страниц в результаты поиска."
|
395 |
+
|
396 |
+
#: includes/options.php:129
|
397 |
+
msgid "Show tags archive"
|
398 |
+
msgstr "Показывать метки архивов"
|
399 |
+
|
400 |
+
#: includes/options.php:130
|
401 |
+
msgid "Include tags archives pages to search results."
|
402 |
+
msgstr "Включить метки архивных страниц в результаты поиска"
|
403 |
+
|
404 |
+
#: includes/options.php:141
|
405 |
+
msgid "Show sale badge"
|
406 |
+
msgstr "Показывать знак распродажи"
|
407 |
+
|
408 |
+
#: includes/options.php:142
|
409 |
+
msgid "Show sale badge for products in search results."
|
410 |
+
msgstr "Показывать значок распродажи в результатах поиска"
|
411 |
+
|
412 |
+
#: includes/options.php:153
|
413 |
+
msgid "Show product SKU"
|
414 |
+
msgstr "Показывать SKU товара"
|
415 |
+
|
416 |
+
#: includes/options.php:154
|
417 |
+
msgid "Show product SKU in search results."
|
418 |
+
msgstr "Показывать SKU товара в результатах поиска"
|
419 |
+
|
420 |
+
msgid "Show stock status"
|
421 |
+
msgstr "Показывать статус в наличии"
|
422 |
+
|
423 |
+
msgid "Show stock status for every product in search results."
|
424 |
+
msgstr "Показывать статус наличия для каждого товара из поиска"
|
425 |
+
|
426 |
+
msgid "Show featured icon"
|
427 |
+
msgstr "Показывать значок рекомендации"
|
428 |
+
|
429 |
+
msgid "Show or not star icon for featured products."
|
430 |
+
msgstr "Показать или нет значок звезды для рекомендуемых продуктов."
|
431 |
+
|
432 |
+
#: includes/options.php:167
|
433 |
+
msgid "Max number of results"
|
434 |
+
msgstr "Максимальное число найденных результатов"
|
435 |
+
|
436 |
+
#: includes/options.php:168
|
437 |
+
msgid "Maximum number of displayed search results."
|
438 |
+
msgstr "Максимальное число найденных результатов, которые будут показаны"
|
439 |
+
|
440 |
+
#: includes/options.php:175
|
441 |
+
msgid "Search in"
|
442 |
+
msgstr "Искать в"
|
443 |
+
|
444 |
+
#: includes/options.php:176
|
445 |
+
msgid "Search source: Drag&drop sources to activate or deactivate them."
|
446 |
+
msgstr ""
|
447 |
+
"Где искать: перетащите источники, чтобы активировать или деактивировать их."
|
448 |
+
|
449 |
+
#: includes/options.php:30
|
450 |
+
msgid "Show out-of-stock"
|
451 |
+
msgstr "Показать товары, которых нет в наличии"
|
452 |
+
|
453 |
+
#: includes/options.php:31
|
454 |
+
msgid "Show out-of-stock products in search"
|
455 |
+
msgstr "Показать в результатах поиска те товары, которых нет в наличии"
|
456 |
+
|
457 |
+
msgid "Stop words list"
|
458 |
+
msgstr "Список стоп-слов"
|
459 |
+
|
460 |
+
msgid "Comma separated list of words that will be excluded from search."
|
461 |
+
msgstr "Разделенный запятыми список слов, которые будут исключены из поиска."
|
462 |
+
|
463 |
+
msgid "Re-index required on change."
|
464 |
+
msgstr "При изменении требуется переиндексация."
|
465 |
+
|
466 |
+
#: includes/options.php:42
|
467 |
+
msgid "Use Google Analytics"
|
468 |
+
msgstr "Использовать Google Analytics"
|
469 |
+
|
470 |
+
#: includes/options.php:42
|
471 |
+
msgid ""
|
472 |
+
"Use google analytics to track searches. You need google analytics to be "
|
473 |
+
"installed on your site."
|
474 |
+
msgstr ""
|
475 |
+
"Используйте Google Analytics для отслеживания поисковых запросов. Вам нужно "
|
476 |
+
"установить Google Analytics на вашем сайте."
|
477 |
+
|
478 |
+
#: includes/options.php:42
|
479 |
+
msgid ""
|
480 |
+
"Will send event with category - 'AWS search', action - 'AWS Search Term' and "
|
481 |
+
"label of value of search term."
|
482 |
+
msgstr ""
|
483 |
+
"Отправит событие с категорией - 'AWS search', действие - 'AWS Search Term' и "
|
484 |
+
"меткой значения поискового термина."
|
485 |
+
|
486 |
+
msgid "In stock"
|
487 |
+
msgstr "В наличии"
|
488 |
+
|
489 |
+
msgid "Out of stock"
|
490 |
+
msgstr "Нет в наличии"
|
491 |
+
|
492 |
+
#. Name of the plugin
|
493 |
+
msgid "Advanced Woo Search"
|
494 |
+
msgstr "Advanced Woo Search"
|
495 |
+
|
496 |
+
#. Description of the plugin
|
497 |
+
msgid "Advance ajax WooCommerce product search."
|
498 |
+
msgstr "Расширенный ajax-поиск товаров в Woocommerce"
|
499 |
+
|
500 |
+
#. Author of the plugin
|
501 |
+
msgid "ILLID"
|
502 |
+
msgstr "ILLID"
|
languages/advanced-woo-search.pot
CHANGED
@@ -420,8 +420,14 @@ msgstr ""
|
|
420 |
msgid "Use google analytics to track searches. You need google analytics to be installed on your site."
|
421 |
msgstr ""
|
422 |
|
|
|
|
|
|
|
|
|
|
|
|
|
423 |
#: includes/options.php:42
|
424 |
-
msgid "
|
425 |
msgstr ""
|
426 |
|
427 |
msgid "In stock"
|
420 |
msgid "Use google analytics to track searches. You need google analytics to be installed on your site."
|
421 |
msgstr ""
|
422 |
|
423 |
+
msgid "Data will be visible inside Google Analytics 'Site Search' report. Need to activate 'Site Search' feature inside GA. %s"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
msgid "More info"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
#: includes/options.php:42
|
430 |
+
msgid "Also will send event with category - 'AWS search', action - 'AWS Search Term' and label of value of search term."
|
431 |
msgstr ""
|
432 |
|
433 |
msgid "In stock"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: widget, plugin, woocommerce, search, product search, woocommerce search, ajax search, live search, custom search, ajax, shortcode, better search, relevance search, relevant search, search by sku, search plugin, shop, store, wordpress search, wp ajax search, wp search, wp search plugin, sidebar, ecommerce, merketing, products, category search, instant-search, search highlight, woocommerce advanced search, woocommerce live search, WooCommerce Plugin, woocommerce product search
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.2
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -104,6 +104,11 @@ Yep. This plugin is always compatible with the latest version of Woocommerce?
|
|
104 |
|
105 |
== Changelog ==
|
106 |
|
|
|
|
|
|
|
|
|
|
|
107 |
= 1.80 =
|
108 |
* Add - Rtl text support
|
109 |
* Add - Uninstall file to clear all plugin data during uninstall
|
4 |
Tags: widget, plugin, woocommerce, search, product search, woocommerce search, ajax search, live search, custom search, ajax, shortcode, better search, relevance search, relevant search, search by sku, search plugin, shop, store, wordpress search, wp ajax search, wp search, wp search plugin, sidebar, ecommerce, merketing, products, category search, instant-search, search highlight, woocommerce advanced search, woocommerce live search, WooCommerce Plugin, woocommerce product search
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.2
|
7 |
+
Stable tag: 1.81
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
104 |
|
105 |
== Changelog ==
|
106 |
|
107 |
+
= 1.81 =
|
108 |
+
* Add - Support for Google Analytics site search feature
|
109 |
+
* Update - Plugin settings page
|
110 |
+
* Fix - Bug with search results page products count
|
111 |
+
|
112 |
= 1.80 =
|
113 |
* Add - Rtl text support
|
114 |
* Add - Uninstall file to clear all plugin data during uninstall
|