Advanced Woo Search - Version 1.08

Version Description

  • Update check for active WooCommerce plugin
  • Add hungarian translation ( big thanks to hunited! )
Download this release

Release Info

Developer Mihail Barinov
Plugin Icon 128x128 Advanced Woo Search
Version 1.08
Comparing to
See all releases

Code changes from version 1.07 to 1.08

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.07
7
  Author: ILLID
8
  Text Domain: aws
9
  */
@@ -13,7 +13,7 @@ if ( ! defined( 'ABSPATH' ) ) {
13
  exit;
14
  }
15
 
16
- define( 'AWS_VERSION', '1.07' );
17
 
18
 
19
  define( 'AWS_DIR', dirname( __FILE__ ) );
@@ -72,7 +72,7 @@ final class AWS_Main {
72
 
73
  add_filter( 'plugin_action_links', array( $this, 'add_action_link' ), 10, 2 );
74
 
75
- //load_plugin_textdomain( 'aws', false, dirname( plugin_basename( __FILE__ ) ). '/languages/' );
76
 
77
  $this->includes();
78
 
@@ -138,6 +138,7 @@ final class AWS_Main {
138
 
139
  endif;
140
 
 
141
  /**
142
  * Returns the main instance of AWS_Main
143
  *
@@ -151,12 +152,36 @@ function AWS() {
151
  /*
152
  * Check if WooCommerce is active
153
  */
154
- if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
155
  add_action( 'woocommerce_loaded', 'aws_init' );
156
  } else {
157
  add_action( 'admin_notices', 'aws_install_woocommerce_admin_notice' );
158
  }
159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  /*
161
  * Error notice if WooCommerce plugin is not active
162
  */
3
  /*
4
  Plugin Name: Advanced Woo Search
5
  Description: Advance ajax WooCommerce product search.
6
+ Version: 1.08
7
  Author: ILLID
8
  Text Domain: aws
9
  */
13
  exit;
14
  }
15
 
16
+ define( 'AWS_VERSION', '1.08' );
17
 
18
 
19
  define( 'AWS_DIR', dirname( __FILE__ ) );
72
 
73
  add_filter( 'plugin_action_links', array( $this, 'add_action_link' ), 10, 2 );
74
 
75
+ load_plugin_textdomain( 'aws', false, dirname( plugin_basename( __FILE__ ) ). '/languages/' );
76
 
77
  $this->includes();
78
 
138
 
139
  endif;
140
 
141
+
142
  /**
143
  * Returns the main instance of AWS_Main
144
  *
152
  /*
153
  * Check if WooCommerce is active
154
  */
155
+ if ( aws_is_plugin_active('woocommerce/woocommerce.php') ) {
156
  add_action( 'woocommerce_loaded', 'aws_init' );
157
  } else {
158
  add_action( 'admin_notices', 'aws_install_woocommerce_admin_notice' );
159
  }
160
 
161
+
162
+ /*
163
+ * Check whether the plugin is active by checking the active_plugins list.
164
+ */
165
+ function aws_is_plugin_active( $plugin ) {
166
+ return in_array( $plugin, (array) get_option( 'active_plugins', array() ) ) || aws_is_plugin_active_for_network( $plugin );
167
+ }
168
+
169
+
170
+ /*
171
+ * Check whether the plugin is active for the entire network
172
+ */
173
+ function aws_is_plugin_active_for_network( $plugin ) {
174
+ if ( !is_multisite() )
175
+ return false;
176
+
177
+ $plugins = get_site_option( 'active_sitewide_plugins');
178
+ if ( isset($plugins[$plugin]) )
179
+ return true;
180
+
181
+ return false;
182
+ }
183
+
184
+
185
  /*
186
  * Error notice if WooCommerce plugin is not active
187
  */
includes/class-aws-admin.php CHANGED
@@ -346,7 +346,7 @@ class AWS_Admin {
346
 
347
  echo '<tr>';
348
 
349
- echo '<th>Reindex table</th>';
350
  echo '<td>';
351
  echo '<div id="aws-reindex"><input class="button" type="button" value="' . __( 'Reindex table', 'aws' ) . '"><span class="loader"></span></div><br><br>';
352
  echo '<span class="description">' . __( 'Update all data in plugins index table. Index table - table with products data where plugin is searching all typed terms.<br>Use this button if you think that plugin not shows last actual data in its search results.<br><strong>CAUTION:</strong> this can take large amount of time.</span>', 'aws' );
@@ -357,7 +357,7 @@ class AWS_Admin {
357
 
358
  echo '<tr>';
359
 
360
- echo '<th>Clear cache</th>';
361
  echo '<td>';
362
  echo '<div id="aws-clear-cache"><input class="button" type="button" value="' . __( 'Clear cache', 'aws' ) . '"><span class="loader"></span></div><br>';
363
  echo '<span class="description">' . __( 'Clear cache for all search results.', 'aws' ) . '</span>';
346
 
347
  echo '<tr>';
348
 
349
+ echo '<th>' . __( 'Reindex table', 'aws' ) . '</th>';
350
  echo '<td>';
351
  echo '<div id="aws-reindex"><input class="button" type="button" value="' . __( 'Reindex table', 'aws' ) . '"><span class="loader"></span></div><br><br>';
352
  echo '<span class="description">' . __( 'Update all data in plugins index table. Index table - table with products data where plugin is searching all typed terms.<br>Use this button if you think that plugin not shows last actual data in its search results.<br><strong>CAUTION:</strong> this can take large amount of time.</span>', 'aws' );
357
 
358
  echo '<tr>';
359
 
360
+ echo '<th>' . __( 'Clear cache', 'aws' ) . '</th>';
361
  echo '<td>';
362
  echo '<div id="aws-clear-cache"><input class="button" type="button" value="' . __( 'Clear cache', 'aws' ) . '"><span class="loader"></span></div><br>';
363
  echo '<span class="description">' . __( 'Clear cache for all search results.', 'aws' ) . '</span>';
languages/aws-hu_HU.mo ADDED
Binary file
languages/aws-hu_HU.po ADDED
@@ -0,0 +1,284 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Advanced Woo Search\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-08-22 17:10+0000\n"
6
+ "PO-Revision-Date: 2016-08-22 17:22+0000\n"
7
+ "Last-Translator: Gasparics Sándor <gs@viky.hu>\n"
8
+ "Language-Team: Hungarian\n"
9
+ "Language: hu-HU\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Loco - https://localise.biz/"
15
+
16
+ #: includes/class-aws-admin.php:129
17
+ msgid "Save Changes"
18
+ msgstr "Beállítások mentése"
19
+
20
+ #: includes/class-aws-admin.php:351
21
+ msgid "Reindex table"
22
+ msgstr "Táblák újraindexelése"
23
+
24
+ #: includes/class-aws-admin.php:352
25
+ msgid ""
26
+ "Update all data in plugins index table. Index table - table with products "
27
+ "data where plugin is searching all typed terms.<br>Use this button if you "
28
+ "think that plugin not shows last actual data in its search results.<br>"
29
+ "<strong>CAUTION:</strong> this can take large amount of time.</span>"
30
+ msgstr ""
31
+ "A bővítmény indexének frissítése. Az index tábla tartalmazza az összes "
32
+ "használt keresőszót a hozzá tartozó termék adataival.<br>Akkor használjuk "
33
+ "ezt a gombot, ha érzéseink szerint a keresési eredmények között nem pontos, "
34
+ "aktuális adatok jelennek meg.<br><strong>FIGYELEM:</strong> ez sokáig fog "
35
+ "tartani.</span>"
36
+
37
+ #: includes/class-aws-admin.php:362
38
+ msgid "Clear cache"
39
+ msgstr "Gyorsítótár törlése"
40
+
41
+ #: includes/class-aws-admin.php:363
42
+ msgid "Clear cache for all search results."
43
+ msgstr "Az összes keresési eredmény törlése a gyorsítótárból"
44
+
45
+ #: includes/options.php:111
46
+ msgid ""
47
+ "Smart scrapping sentences with searching terms from product description."
48
+ msgstr ""
49
+ "A keresési kifejezést tartalmazó mondatot jelenítsük meg leírásként a "
50
+ "találat alatt."
51
+
52
+ #: includes/options.php:112
53
+ msgid ""
54
+ "First N words of product description ( number of words that you choose below."
55
+ " )"
56
+ msgstr ""
57
+ "A termékleírás fix első néhány szavát (a \"Leírás hossza\" beállításnál "
58
+ "adhatjuk meg) jelenítsük meg leírásként a találat alatt."
59
+
60
+ #: advanced-woo-search.php:127
61
+ msgid "Settings"
62
+ msgstr "Beállítások"
63
+
64
+ #: advanced-woo-search.php:130 includes/class-aws-admin.php:63
65
+ msgid "Get Premium"
66
+ msgstr "Frissítés prémium verzióra"
67
+
68
+ #: advanced-woo-search.php:166
69
+ msgid ""
70
+ "Advanced Woo Search plugin is enabled but not effective. It requires "
71
+ "WooCommerce in order to work."
72
+ msgstr ""
73
+ "Az Advanced Woo Search bővítmény be van kapcsolva, de nem használható. "
74
+ "Működéséhez a WooCommerce is szükséges."
75
+
76
+ #: includes/widget.php:15
77
+ msgid "Advanced WooCommerce search widget"
78
+ msgstr "Advanced WooCommerce kereső widget"
79
+
80
+ #: includes/widget.php:17
81
+ msgid "&raquo; AWS Widget"
82
+ msgstr "&raquo; AWS Widget"
83
+
84
+ #: includes/widget.php:56
85
+ msgid "Search..."
86
+ msgstr "Keresés..."
87
+
88
+ #: includes/widget.php:62
89
+ msgid "Title:"
90
+ msgstr "Cím:"
91
+
92
+ #: includes/class-aws-admin.php:38 includes/class-aws-admin.php:38
93
+ msgid "Adv. Woo Search"
94
+ msgstr "Adv. Woo Search"
95
+
96
+ #: includes/class-aws-admin.php:49
97
+ msgid "General"
98
+ msgstr "Általános"
99
+
100
+ #: includes/class-aws-admin.php:295
101
+ msgid "Available fields"
102
+ msgstr "Elérhető mezők"
103
+
104
+ #: includes/class-aws-admin.php:311
105
+ msgid "Drag&drop to enable"
106
+ msgstr "Az engedélyezni kívánt mezőket ide kell húzni"
107
+
108
+ #: includes/options.php:9
109
+ msgid "Cache results"
110
+ msgstr "Gyorsítótárazás"
111
+
112
+ #: includes/options.php:10
113
+ msgid ""
114
+ "Turn off if you have old data in the search results after content of "
115
+ "products was changed.<br><strong>CAUTION:</strong> can dramatically increase "
116
+ "search speed"
117
+ msgstr ""
118
+ "Ki kell kapcsolni, ha a keresési találatokban régi adatok vannak "
119
+ "termékmódosítás után.<br><strong>FIGYELEM:</strong> drámaian megnöveli "
120
+ "keresési időt"
121
+
122
+ #: includes/options.php:15 includes/options.php:43 includes/options.php:55
123
+ #: includes/options.php:67 includes/options.php:99 includes/options.php:123
124
+ #: includes/options.php:135 includes/options.php:147 includes/options.php:159
125
+ msgid "On"
126
+ msgstr "Be"
127
+
128
+ #: includes/options.php:16 includes/options.php:44 includes/options.php:56
129
+ #: includes/options.php:68 includes/options.php:100 includes/options.php:124
130
+ #: includes/options.php:136 includes/options.php:148 includes/options.php:160
131
+ msgid "Off"
132
+ msgstr "Ki"
133
+
134
+ #: includes/options.php:21
135
+ msgid "Text for search field"
136
+ msgstr "Keresőmező szövege"
137
+
138
+ #: includes/options.php:22
139
+ msgid "Text for search field placeholder."
140
+ msgstr "Keresőmező helyőrző szövege"
141
+
142
+ #: includes/options.php:29
143
+ msgid "Minimum number of characters"
144
+ msgstr "Karakterek minimális száma"
145
+
146
+ #: includes/options.php:30
147
+ msgid "Minimum number of characters required to run ajax search."
148
+ msgstr ""
149
+ "Minimum hány karaktert kell a felhasználónak beírni, hogy az AWS működésbe "
150
+ "lépjen."
151
+
152
+ #: includes/options.php:37
153
+ msgid "Show loader"
154
+ msgstr "Betöltő animáció"
155
+
156
+ #: includes/options.php:38
157
+ msgid "Show loader animation while searching."
158
+ msgstr "Betöltő animáció mutatása keresés közben"
159
+
160
+ #: includes/options.php:49
161
+ msgid "Show image"
162
+ msgstr "Termékkép mutatása"
163
+
164
+ #: includes/options.php:50
165
+ msgid "Show product image for each search result."
166
+ msgstr "Minden keresési találathoz mutatja a termék képet is."
167
+
168
+ #: includes/options.php:61
169
+ msgid "Show description"
170
+ msgstr "Leírás mutatása"
171
+
172
+ #: includes/options.php:62
173
+ msgid "Show product description for each search result."
174
+ msgstr "Minden keresési találathoz mutatja a termék leírását is."
175
+
176
+ #: includes/options.php:73
177
+ msgid "Description source"
178
+ msgstr "Leírás forrása"
179
+
180
+ #: includes/options.php:74
181
+ msgid ""
182
+ "From where to take product description.<br>If first source is empty data "
183
+ "will be taken from other sources."
184
+ msgstr ""
185
+ "Honnan jelenjen meg a termékleírás.<br>Ha a választott mezőben nincs adat, "
186
+ "akkor másik mezőből próbálja kivenni."
187
+
188
+ #: includes/options.php:79
189
+ msgid "Content"
190
+ msgstr "Teljes leírás"
191
+
192
+ #: includes/options.php:80
193
+ msgid "Excerpt"
194
+ msgstr "Rövid leírás"
195
+
196
+ #: includes/options.php:85
197
+ msgid "Description length"
198
+ msgstr "Leírás hossza"
199
+
200
+ #: includes/options.php:86
201
+ msgid "Maximal allowed number of words for product description."
202
+ msgstr "A maximálisan megengedett szó szám amit a termékleírásból megjelenít."
203
+
204
+ #: includes/options.php:93
205
+ msgid "Show price"
206
+ msgstr "Ár mutatása"
207
+
208
+ #: includes/options.php:94
209
+ msgid "Show product price for each search result."
210
+ msgstr "Minden keresési találathoz mutatja a termék árát is."
211
+
212
+ #: includes/options.php:105
213
+ msgid "Description content"
214
+ msgstr "Leírás tartalma"
215
+
216
+ #: includes/options.php:106
217
+ msgid "What to show in product description?"
218
+ msgstr "Mit mutassunk a termék leírásnál?"
219
+
220
+ #: includes/options.php:117
221
+ msgid "Show categories"
222
+ msgstr "Kategóriák mutatása"
223
+
224
+ #: includes/options.php:118
225
+ msgid "Include categories in search result."
226
+ msgstr "Minden keresési találathoz mutatja a termék kategóriáit is."
227
+
228
+ #: includes/options.php:129
229
+ msgid "Show tags"
230
+ msgstr "Címkék mutatása"
231
+
232
+ #: includes/options.php:130
233
+ msgid "Include tags in search result."
234
+ msgstr "Minden keresési találathoz mutatja a termék címkéit is."
235
+
236
+ #: includes/options.php:141
237
+ msgid "Show sale badge"
238
+ msgstr "Akciós matrica mutatása"
239
+
240
+ #: includes/options.php:142
241
+ msgid "Show sale badge for products in search results."
242
+ msgstr "Minden keresési találathoz mutatja a termék akciós matricáját is."
243
+
244
+ #: includes/options.php:153
245
+ msgid "Show product SKU"
246
+ msgstr "Cikkszám mutatása"
247
+
248
+ #: includes/options.php:154
249
+ msgid "Show product SKU in search results."
250
+ msgstr "Minden keresési találathoz mutatja a termék cikkszámát is."
251
+
252
+ #: includes/options.php:167
253
+ msgid "Max number of results"
254
+ msgstr "Találatok maximális száma"
255
+
256
+ #: includes/options.php:168
257
+ msgid "Maximum number of displayed search results."
258
+ msgstr "A maximálisan megjelenítendő keresési találatok száma"
259
+
260
+ #: includes/options.php:175
261
+ msgid "Search in"
262
+ msgstr "Miben keressek?"
263
+
264
+ #: includes/options.php:176
265
+ msgid ""
266
+ "Source of searching. Set the source of searching by drag&drop needed fields "
267
+ "to the right area."
268
+ msgstr ""
269
+ "Az alábbi termék mezőkben van lehetőség keresni, engedélyezéshez csupán a "
270
+ "bal oldalról a jobb oldalra kell a mezőt áthúzni."
271
+
272
+ #. Name of the plugin
273
+ msgid "Advanced Woo Search"
274
+ msgstr "Advanced Woo Search"
275
+
276
+ #. Description of the plugin
277
+ msgid "Advance ajax WooCommerce product search."
278
+ msgstr ""
279
+ "Ajax alapú, keresőszó gépelése közben működésbe lépő (prediktív) termék "
280
+ "kereső WooCommerce áruházhoz."
281
+
282
+ #. Author of the plugin
283
+ msgid "ILLID"
284
+ msgstr "ILLID - Magyar fordítás: DuraSoft"
languages/aws.pot ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: grunt-wp-i18n 0.5.0\n"
9
+ "X-Poedit-KeywordsList: "
10
+ "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
11
+ "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
12
+ "Language: en_US\n"
13
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
+ "X-Poedit-Country: United States\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-Basepath: ../\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Textdomain-Support: yes\n"
20
+
21
+
22
+ #: includes/class-aws-admin.php:129
23
+ msgid "Save Changes"
24
+ msgstr ""
25
+
26
+ #: includes/class-aws-admin.php:351
27
+ msgid "Reindex table"
28
+ msgstr ""
29
+
30
+ #: includes/class-aws-admin.php:352
31
+ msgid ""
32
+ "Update all data in plugins index table. Index table - table with products "
33
+ "data where plugin is searching all typed terms.<br>Use this button if you "
34
+ "think that plugin not shows last actual data in its search results.<br>"
35
+ "<strong>CAUTION:</strong> this can take large amount of time.</span>"
36
+ msgstr ""
37
+
38
+ #: includes/class-aws-admin.php:362
39
+ msgid "Clear cache"
40
+ msgstr ""
41
+
42
+ #: includes/class-aws-admin.php:363
43
+ msgid "Clear cache for all search results."
44
+ msgstr ""
45
+
46
+ #: includes/options.php:111
47
+ msgid ""
48
+ "Smart scrapping sentences with searching terms from product description."
49
+ msgstr ""
50
+
51
+ #: includes/options.php:112
52
+ msgid ""
53
+ "First N words of product description ( number of words that you choose below."
54
+ " )"
55
+ msgstr ""
56
+
57
+ #: advanced-woo-search.php:127
58
+ msgid "Settings"
59
+ msgstr ""
60
+
61
+ #: advanced-woo-search.php:130 includes/class-aws-admin.php:63
62
+ msgid "Get Premium"
63
+ msgstr ""
64
+
65
+ #: advanced-woo-search.php:166
66
+ msgid ""
67
+ "Advanced Woo Search plugin is enabled but not effective. It requires "
68
+ "WooCommerce in order to work."
69
+ msgstr ""
70
+
71
+ #: includes/widget.php:15
72
+ msgid "Advanced WooCommerce search widget"
73
+ msgstr ""
74
+
75
+ #: includes/widget.php:17
76
+ msgid "&raquo; AWS Widget"
77
+ msgstr ""
78
+
79
+ #: includes/widget.php:56
80
+ msgid "Search..."
81
+ msgstr ""
82
+
83
+ #: includes/widget.php:62
84
+ msgid "Title:"
85
+ msgstr ""
86
+
87
+ #: includes/class-aws-admin.php:38 includes/class-aws-admin.php:38
88
+ msgid "Adv. Woo Search"
89
+ msgstr ""
90
+
91
+ #: includes/class-aws-admin.php:49
92
+ msgid "General"
93
+ msgstr ""
94
+
95
+ #: includes/class-aws-admin.php:295
96
+ msgid "Available fields"
97
+ msgstr ""
98
+
99
+ #: includes/class-aws-admin.php:311
100
+ msgid "Drag&drop to enable"
101
+ msgstr ""
102
+
103
+ #: includes/options.php:9
104
+ msgid "Cache results"
105
+ msgstr ""
106
+
107
+ #: includes/options.php:10
108
+ msgid ""
109
+ "Turn off if you have old data in the search results after content of "
110
+ "products was changed.<br><strong>CAUTION:</strong> can dramatically increase "
111
+ "search speed"
112
+ msgstr ""
113
+
114
+ #: includes/options.php:15 includes/options.php:43 includes/options.php:55
115
+ #: includes/options.php:67 includes/options.php:99 includes/options.php:123
116
+ #: includes/options.php:135 includes/options.php:147 includes/options.php:159
117
+ msgid "On"
118
+ msgstr ""
119
+
120
+ #: includes/options.php:16 includes/options.php:44 includes/options.php:56
121
+ #: includes/options.php:68 includes/options.php:100 includes/options.php:124
122
+ #: includes/options.php:136 includes/options.php:148 includes/options.php:160
123
+ msgid "Off"
124
+ msgstr ""
125
+
126
+ #: includes/options.php:21
127
+ msgid "Text for search field"
128
+ msgstr ""
129
+
130
+ #: includes/options.php:22
131
+ msgid "Text for search field placeholder."
132
+ msgstr ""
133
+
134
+ #: includes/options.php:29
135
+ msgid "Minimum number of characters"
136
+ msgstr ""
137
+
138
+ #: includes/options.php:30
139
+ msgid "Minimum number of characters required to run ajax search."
140
+ msgstr ""
141
+
142
+ #: includes/options.php:37
143
+ msgid "Show loader"
144
+ msgstr ""
145
+
146
+ #: includes/options.php:38
147
+ msgid "Show loader animation while searching."
148
+ msgstr ""
149
+
150
+ #: includes/options.php:49
151
+ msgid "Show image"
152
+ msgstr ""
153
+
154
+ #: includes/options.php:50
155
+ msgid "Show product image for each search result."
156
+ msgstr ""
157
+
158
+ #: includes/options.php:61
159
+ msgid "Show description"
160
+ msgstr ""
161
+
162
+ #: includes/options.php:62
163
+ msgid "Show product description for each search result."
164
+ msgstr ""
165
+
166
+ #: includes/options.php:73
167
+ msgid "Description source"
168
+ msgstr ""
169
+
170
+ #: includes/options.php:74
171
+ msgid ""
172
+ "From where to take product description.<br>If first source is empty data "
173
+ "will be taken from other sources."
174
+ msgstr ""
175
+
176
+ #: includes/options.php:79
177
+ msgid "Content"
178
+ msgstr ""
179
+
180
+ #: includes/options.php:80
181
+ msgid "Excerpt"
182
+ msgstr ""
183
+
184
+ #: includes/options.php:85
185
+ msgid "Description length"
186
+ msgstr ""
187
+
188
+ #: includes/options.php:86
189
+ msgid "Maximal allowed number of words for product description."
190
+ msgstr ""
191
+
192
+ #: includes/options.php:93
193
+ msgid "Show price"
194
+ msgstr ""
195
+
196
+ #: includes/options.php:94
197
+ msgid "Show product price for each search result."
198
+ msgstr ""
199
+
200
+ #: includes/options.php:105
201
+ msgid "Description content"
202
+ msgstr ""
203
+
204
+ #: includes/options.php:106
205
+ msgid "What to show in product description?"
206
+ msgstr ""
207
+
208
+ #: includes/options.php:117
209
+ msgid "Show categories"
210
+ msgstr ""
211
+
212
+ #: includes/options.php:118
213
+ msgid "Include categories in search result."
214
+ msgstr ""
215
+
216
+ #: includes/options.php:129
217
+ msgid "Show tags"
218
+ msgstr ""
219
+
220
+ #: includes/options.php:130
221
+ msgid "Include tags in search result."
222
+ msgstr ""
223
+
224
+ #: includes/options.php:141
225
+ msgid "Show sale badge"
226
+ msgstr ""
227
+
228
+ #: includes/options.php:142
229
+ msgid "Show sale badge for products in search results."
230
+ msgstr ""
231
+
232
+ #: includes/options.php:153
233
+ msgid "Show product SKU"
234
+ msgstr ""
235
+
236
+ #: includes/options.php:154
237
+ msgid "Show product SKU in search results."
238
+ msgstr ""
239
+
240
+ #: includes/options.php:167
241
+ msgid "Max number of results"
242
+ msgstr ""
243
+
244
+ #: includes/options.php:168
245
+ msgid "Maximum number of displayed search results."
246
+ msgstr ""
247
+
248
+ #: includes/options.php:175
249
+ msgid "Search in"
250
+ msgstr ""
251
+
252
+ #: includes/options.php:176
253
+ msgid ""
254
+ "Source of searching. Set the source of searching by drag&drop needed fields "
255
+ "to the right area."
256
+ msgstr ""
257
+
258
+ #. Name of the plugin
259
+ msgid "Advanced Woo Search"
260
+ msgstr ""
261
+
262
+ #. Description of the plugin
263
+ msgid "Advance ajax WooCommerce product search."
264
+ msgstr ""
265
+
266
+ #. Author of the plugin
267
+ msgid "ILLID"
268
+ msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Mihail Barinov
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GSE37FC4Y7CEY
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: 4.5.2
7
- Stable tag: 1.07
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -64,6 +64,10 @@ Or insert this function inside php file ( often it used to insert form inside pa
64
 
65
  == Changelog ==
66
 
 
 
 
 
67
  = 1.07 =
68
  * Exclude hidden products from search
69
  * Update translatable strings
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GSE37FC4Y7CEY
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: 4.6
7
+ Stable tag: 1.08
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
64
 
65
  == Changelog ==
66
 
67
+ = 1.08 =
68
+ * Update check for active WooCommerce plugin
69
+ * Add hungarian translation ( big thanks to hunited! )
70
+
71
  = 1.07 =
72
  * Exclude hidden products from search
73
  * Update translatable strings