Relevanssi – A Better Search - Version 4.1.2

Version Description

  • Choosing "CSS Style" for highlighting was not possible. That is now fixed.
  • Gutenberg reusable block indexing was fatally broken with the latest Gutenberg version. That has been updated.
  • Relevanssi now by default respects the WooCommerce "exclude from search" setting.
  • post__not_in still didn't work properly, it does now.
  • New filter: relevanssi_comparison_order can be used to define the sorting order when sorting the results by post type.
  • "Did you mean" process included a very slow query. It is now cached, leading in some cases to massive performance improvements (we're talking about several seconds here).
  • Highlights inside code and similar blocks are handled better now.
Download this release

Release Info

Developer msaari
Plugin Icon 128x128 Relevanssi – A Better Search
Version 4.1.2
Comparing to
See all releases

Code changes from version 4.1.1.2 to 4.1.2

lib/admin_scripts.js CHANGED
@@ -336,12 +336,14 @@ jQuery(document).ready(function($) {
336
  });
337
  });
338
 
 
339
  $(document).on('click', '#show_filters', function(e) {
340
  $('#relevanssi_filter_list').toggle();
341
  $('#show_filters').toggle();
342
  $('#hide_filters').toggle();
343
  });
344
 
 
345
  $(document).on('click', '#hide_filters', function(e) {
346
  $('#relevanssi_filter_list').toggle();
347
  $('#show_filters').toggle();
336
  });
337
  });
338
 
339
+ // Show the filters on the "Admin search" page.
340
  $(document).on('click', '#show_filters', function(e) {
341
  $('#relevanssi_filter_list').toggle();
342
  $('#show_filters').toggle();
343
  $('#hide_filters').toggle();
344
  });
345
 
346
+ // Hide the filters on the "Admin search" page.
347
  $(document).on('click', '#hide_filters', function(e) {
348
  $('#relevanssi_filter_list').toggle();
349
  $('#show_filters').toggle();
lib/admin_styles.css CHANGED
@@ -104,3 +104,7 @@ table.form-table table.widefat th {
104
  #relevanssi_filter_list {
105
  display: none;
106
  }
 
 
 
 
104
  #relevanssi_filter_list {
105
  display: none;
106
  }
107
+
108
+ #redirect_table td {
109
+ vertical-align: top;
110
+ }
lib/common.php CHANGED
@@ -1402,10 +1402,10 @@ function relevanssi_simple_generate_suggestion( $query ) {
1402
  $q = 'SELECT query, count(query) as c, AVG(hits) as a FROM ' . $relevanssi_variables['log_table'] . ' WHERE hits > ' . $count . ' GROUP BY query ORDER BY count(query) DESC';
1403
  $q = apply_filters( 'relevanssi_didyoumean_query', $q );
1404
 
1405
- $data = wp_cache_get( 'relevanssi_didyoumean_query' );
1406
  if ( empty( $data ) ) {
1407
  $data = $wpdb->get_results( $q ); // WPCS: unprepared SQL ok. No user-generated input involved.
1408
- wp_cache_set( 'relevanssi_didyoumean_query', $data );
1409
  }
1410
 
1411
  $query = htmlspecialchars_decode( $query, ENT_QUOTES );
1402
  $q = 'SELECT query, count(query) as c, AVG(hits) as a FROM ' . $relevanssi_variables['log_table'] . ' WHERE hits > ' . $count . ' GROUP BY query ORDER BY count(query) DESC';
1403
  $q = apply_filters( 'relevanssi_didyoumean_query', $q );
1404
 
1405
+ $data = get_transient( 'relevanssi_didyoumean_query' );
1406
  if ( empty( $data ) ) {
1407
  $data = $wpdb->get_results( $q ); // WPCS: unprepared SQL ok. No user-generated input involved.
1408
+ set_transient( 'relevanssi_didyoumean_query', $data, 60 * 60 * 24 * 7 );
1409
  }
1410
 
1411
  $query = htmlspecialchars_decode( $query, ENT_QUOTES );
lib/compatibility/gutenberg.php CHANGED
@@ -24,12 +24,5 @@ add_filter( 'relevanssi_post_content', 'relevanssi_gutenberg_block_rendering', 1
24
  * @return string The post content with the rendered content added.
25
  */
26
  function relevanssi_gutenberg_block_rendering( $content, $post ) {
27
- $blocks = gutenberg_parse_blocks( $post->post_content );
28
-
29
- foreach ( $blocks as $block ) {
30
- $attributes = (array) $block['attrs'];
31
- $render = render_block_core_block( $attributes );
32
- $content .= $render;
33
- }
34
- return $content;
35
  }
24
  * @return string The post content with the rendered content added.
25
  */
26
  function relevanssi_gutenberg_block_rendering( $content, $post ) {
27
+ return do_blocks( $content );
 
 
 
 
 
 
 
28
  }
lib/compatibility/woocommerce.php CHANGED
@@ -42,7 +42,7 @@ function relevanssi_woocommerce_indexing_filter() {
42
  $woocommerce_blocks = array(
43
  'outofstock' => false,
44
  'exclude-from-catalog' => false,
45
- 'exclude-from-search' => false,
46
  );
47
  /**
48
  * Controls the WooCommerce product visibility filtering.
42
  $woocommerce_blocks = array(
43
  'outofstock' => false,
44
  'exclude-from-catalog' => false,
45
+ 'exclude-from-search' => true,
46
  );
47
  /**
48
  * Controls the WooCommerce product visibility filtering.
lib/excerpts-highlights.php CHANGED
@@ -536,7 +536,7 @@ function relevanssi_highlight_terms( $content, $query, $in_docs = false ) {
536
  }
537
  }
538
 
539
- if ( preg_match_all( '/<(style|script|object|embed|pre|code).*<\/(style|script|object|embed|pre|code)>/U', $content, $matches ) > 0 ) {
540
  // Remove highlights in style, object, embed, script and pre tags.
541
  foreach ( $matches as $match ) {
542
  $new_match = str_replace( $start_emp_token, '', $match );
@@ -1079,6 +1079,7 @@ function relevanssi_remove_page_builder_shortcodes( $content ) {
1079
  // Remove content.
1080
  '/\[et_pb_code.*?\].*\[\/et_pb_code\]/',
1081
  '/\[et_pb_sidebar.*?\].*\[\/et_pb_sidebar\]/',
 
1082
  '/\[vc_raw_html.*?\].*\[\/vc_raw_html\]/',
1083
  // Remove only the tags.
1084
  '/\[\/?et_pb.*?\]/',
536
  }
537
  }
538
 
539
+ if ( preg_match_all( '/<(style|script|object|embed|pre|code).*<\/(style|script|object|embed|pre|code)>/Us', $content, $matches ) > 0 ) {
540
  // Remove highlights in style, object, embed, script and pre tags.
541
  foreach ( $matches as $match ) {
542
  $new_match = str_replace( $start_emp_token, '', $match );
1079
  // Remove content.
1080
  '/\[et_pb_code.*?\].*\[\/et_pb_code\]/',
1081
  '/\[et_pb_sidebar.*?\].*\[\/et_pb_sidebar\]/',
1082
+ '/\[et_pb_fullwidth_slider.*?\].*\[\/et_pb_fullwidth_slider\]/',
1083
  '/\[vc_raw_html.*?\].*\[\/vc_raw_html\]/',
1084
  // Remove only the tags.
1085
  '/\[\/?et_pb.*?\]/',
lib/interface.php CHANGED
@@ -779,6 +779,7 @@ function relevanssi_options_form() {
779
  <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=excerpts" class="nav-tab <?php echo 'excerpts' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php esc_html_e( 'Excerpts and highlights', 'relevanssi' ); ?></a>
780
  <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=synonyms" class="nav-tab <?php echo 'synonyms' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php esc_html_e( 'Synonyms', 'relevanssi' ); ?></a>
781
  <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=stopwords" class="nav-tab <?php echo 'stopwords' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php esc_html_e( 'Stopwords', 'relevanssi' ); ?></a>
 
782
  <?php if ( RELEVANSSI_PREMIUM ) : ?>
783
  <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=importexport" class="nav-tab <?php echo 'importexport' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php esc_html_e( 'Import / Export options', 'relevanssi' ); ?></a>
784
  <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=search" class="nav-tab <?php echo 'search' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php echo esc_html_x( 'Search', 'noun', 'relevanssi' ); ?></a>
@@ -833,6 +834,16 @@ function relevanssi_options_form() {
833
  relevanssi_import_export_tab();
834
  }
835
  }
 
 
 
 
 
 
 
 
 
 
836
 
837
  if ( $display_save_button ) :
838
  ?>
779
  <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=excerpts" class="nav-tab <?php echo 'excerpts' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php esc_html_e( 'Excerpts and highlights', 'relevanssi' ); ?></a>
780
  <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=synonyms" class="nav-tab <?php echo 'synonyms' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php esc_html_e( 'Synonyms', 'relevanssi' ); ?></a>
781
  <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=stopwords" class="nav-tab <?php echo 'stopwords' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php esc_html_e( 'Stopwords', 'relevanssi' ); ?></a>
782
+ <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=redirects" class="nav-tab <?php echo 'redirects' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php esc_html_e( 'Redirects', 'relevanssi' ); ?></a>
783
  <?php if ( RELEVANSSI_PREMIUM ) : ?>
784
  <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=importexport" class="nav-tab <?php echo 'importexport' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php esc_html_e( 'Import / Export options', 'relevanssi' ); ?></a>
785
  <a href="<?php echo esc_attr( $this_page ); ?>&amp;tab=search" class="nav-tab <?php echo 'search' === $active_tab ? 'nav-tab-active' : ''; ?>"><?php echo esc_html_x( 'Search', 'noun', 'relevanssi' ); ?></a>
834
  relevanssi_import_export_tab();
835
  }
836
  }
837
+ if ( 'redirects' === $active_tab ) {
838
+ if ( ! RELEVANSSI_PREMIUM ) {
839
+ $display_save_button = false;
840
+ require_once 'tabs/redirects-tab.php';
841
+ relevanssi_redirects_tab();
842
+ } else {
843
+ require_once dirname( $relevanssi_variables['file'] ) . '/premium/tabs/redirects-tab.php';
844
+ relevanssi_redirects_tab();
845
+ }
846
+ }
847
 
848
  if ( $display_save_button ) :
849
  ?>
lib/search.php CHANGED
@@ -1497,7 +1497,7 @@ function relevanssi_do_query( &$query ) {
1497
  if ( isset( $query->query_vars['post__in'] ) && is_array( $query->query_vars['post__in'] ) && ! empty( $query->query_vars['post__in'] ) ) {
1498
  $post_query = array( 'in' => $query->query_vars['post__in'] );
1499
  }
1500
- if ( isset( $query->query_vars['post_not__in'] ) && is_array( $query->query_vars['post__not_in'] ) && ! empty( $query->query_vars['post__not_in'] ) ) {
1501
  $post_query = array( 'not in' => $query->query_vars['post__not_in'] );
1502
  }
1503
 
@@ -1926,6 +1926,7 @@ function relevanssi_process_tax_query_row( $row, $is_sub_row, $global_relation,
1926
  if ( ! isset( $row['field'] ) ) {
1927
  $row['field'] = 'term_id'; // In case 'field' is not set, go with the WP default of 'term_id'.
1928
  }
 
1929
  if ( 'slug' === $row['field'] ) {
1930
  $slug = $row['terms'];
1931
  $numeric_slugs = array();
1497
  if ( isset( $query->query_vars['post__in'] ) && is_array( $query->query_vars['post__in'] ) && ! empty( $query->query_vars['post__in'] ) ) {
1498
  $post_query = array( 'in' => $query->query_vars['post__in'] );
1499
  }
1500
+ if ( isset( $query->query_vars['post__not_in'] ) && is_array( $query->query_vars['post__not_in'] ) && ! empty( $query->query_vars['post__not_in'] ) ) {
1501
  $post_query = array( 'not in' => $query->query_vars['post__not_in'] );
1502
  }
1503
 
1926
  if ( ! isset( $row['field'] ) ) {
1927
  $row['field'] = 'term_id'; // In case 'field' is not set, go with the WP default of 'term_id'.
1928
  }
1929
+ $row['field'] = strtolower( $row['field'] ); // In some cases, you can get 'ID' instead of 'id'.
1930
  if ( 'slug' === $row['field'] ) {
1931
  $slug = $row['terms'];
1932
  $numeric_slugs = array();
lib/sorting.php CHANGED
@@ -72,10 +72,13 @@ function relevanssi_get_next_key( &$orderby ) {
72
 
73
  $numeric_keys = array( 'meta_value_num', 'menu_order', 'ID', 'post_parent', 'post_author', 'comment_count', 'relevance_score' );
74
  $date_keys = array( 'post_date', 'post_date_gmt', 'post_modified', 'post_modified_gmt' );
 
75
 
76
  $compare = 'string';
77
  if ( in_array( $key, $numeric_keys, true ) ) {
78
  $compare = 'number';
 
 
79
  } elseif ( in_array( $key, $date_keys, true ) ) {
80
  $compare = 'date';
81
  }
@@ -90,7 +93,7 @@ function relevanssi_get_next_key( &$orderby ) {
90
  * @return string The compare method.
91
  */
92
  $compare = apply_filters( 'relevanssi_sort_compare', $compare, $key );
93
- if ( ! in_array( $compare, array( 'string', 'number', 'date' ), true ) ) {
94
  // Not a valid value, fall back.
95
  $compare = 'string';
96
  }
@@ -253,6 +256,8 @@ function relevanssi_compare_values( $key1, $key2, $compare ) {
253
  }
254
  } elseif ( 'string' === $compare ) {
255
  $val = relevanssi_mb_strcasecmp( $key1, $key2 );
 
 
256
  } else {
257
  if ( $key1 > $key2 ) {
258
  $val = 1;
@@ -263,6 +268,53 @@ function relevanssi_compare_values( $key1, $key2, $compare ) {
263
  return $val;
264
  }
265
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  /**
267
  * Compares values using multiple levels of sorting keys.
268
  *
72
 
73
  $numeric_keys = array( 'meta_value_num', 'menu_order', 'ID', 'post_parent', 'post_author', 'comment_count', 'relevance_score' );
74
  $date_keys = array( 'post_date', 'post_date_gmt', 'post_modified', 'post_modified_gmt' );
75
+ $filter_keys = array( 'post_type' );
76
 
77
  $compare = 'string';
78
  if ( in_array( $key, $numeric_keys, true ) ) {
79
  $compare = 'number';
80
+ } elseif ( in_array( $key, $filter_keys, true ) ) {
81
+ $compare = 'filter';
82
  } elseif ( in_array( $key, $date_keys, true ) ) {
83
  $compare = 'date';
84
  }
93
  * @return string The compare method.
94
  */
95
  $compare = apply_filters( 'relevanssi_sort_compare', $compare, $key );
96
+ if ( ! in_array( $compare, array( 'string', 'number', 'date', 'filter' ), true ) ) {
97
  // Not a valid value, fall back.
98
  $compare = 'string';
99
  }
256
  }
257
  } elseif ( 'string' === $compare ) {
258
  $val = relevanssi_mb_strcasecmp( $key1, $key2 );
259
+ } elseif ( 'filter' === $compare ) {
260
+ $val = relevanssi_filter_compare( $key1, $key2 );
261
  } else {
262
  if ( $key1 > $key2 ) {
263
  $val = 1;
268
  return $val;
269
  }
270
 
271
+ /**
272
+ * Compares two values using order array from a filter.
273
+ *
274
+ * Compares two sorting keys using a sorted array that contains value => order pairs.
275
+ * Uses the 'relevanssi_comparison_order' filter to get the sorting guidance array.
276
+ *
277
+ * @param string $key1 The first key.
278
+ * @param string $key2 The second key.
279
+ *
280
+ * @return int $val Returns < 0 if key1 is less than key2; > 0 if key1 is greater
281
+ * than key2, and 0 if they are equal.
282
+ */
283
+ function relevanssi_filter_compare( $key1, $key2 ) {
284
+ /**
285
+ * Provides the sorting order for the filter.
286
+ *
287
+ * The array should contain the possible key values as keys and their order in
288
+ * the values, like this:
289
+ *
290
+ * $order = array(
291
+ * 'post' => 0,
292
+ * 'page' => 1,
293
+ * 'book' => 2,
294
+ * );
295
+ *
296
+ * This would sort posts first, pages second, books third. Values that do not
297
+ * appear in the array are sorted last.
298
+ *
299
+ * @param array Sorting guidance array.
300
+ */
301
+ $order = apply_filters( 'relevanssi_comparison_order', array() );
302
+
303
+ // Set the default values so that if the key is not found in the array, it's last.
304
+ $max_key = max( $order );
305
+ $val_1 = $max_key + 1;
306
+ $val_2 = $max_key + 1;
307
+
308
+ if ( isset( $order[ $key1 ] ) ) {
309
+ $val_1 = $order[ $key1 ];
310
+ }
311
+ if ( isset( $order[ $key2 ] ) ) {
312
+ $val_2 = $order[ $key2 ];
313
+ }
314
+
315
+ return $val_1 - $val_2;
316
+ }
317
+
318
  /**
319
  * Compares values using multiple levels of sorting keys.
320
  *
lib/tabs/excerpts-tab.php CHANGED
@@ -58,7 +58,7 @@ function relevanssi_excerpts_tab() {
58
  $highlight_strong = relevanssi_select( $highlight, 'strong' );
59
  $highlight_col = relevanssi_select( $highlight, 'col' );
60
  $highlight_bgcol = relevanssi_select( $highlight, 'bgcol' );
61
- $highlight_style = relevanssi_select( $highlight, 'style' );
62
  $highlight_class = relevanssi_select( $highlight, 'class' );
63
 
64
  $txt_col_display = 'screen-reader-text';
@@ -72,7 +72,7 @@ function relevanssi_excerpts_tab() {
72
  if ( 'bgcol' === $highlight ) {
73
  $bg_col_display = '';
74
  }
75
- if ( 'style' === $highlight ) {
76
  $css_display = '';
77
  }
78
  if ( 'class' === $highlight ) {
58
  $highlight_strong = relevanssi_select( $highlight, 'strong' );
59
  $highlight_col = relevanssi_select( $highlight, 'col' );
60
  $highlight_bgcol = relevanssi_select( $highlight, 'bgcol' );
61
+ $highlight_style = relevanssi_select( $highlight, 'css' );
62
  $highlight_class = relevanssi_select( $highlight, 'class' );
63
 
64
  $txt_col_display = 'screen-reader-text';
72
  if ( 'bgcol' === $highlight ) {
73
  $bg_col_display = '';
74
  }
75
+ if ( 'css' === $highlight ) {
76
  $css_display = '';
77
  }
78
  if ( 'class' === $highlight ) {
lib/tabs/redirects-tab.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * /lib/tabs/redirects-tab.php
4
+ *
5
+ * Prints out the Redirects tab in Relevanssi settings.
6
+ *
7
+ * @package Relevanssi
8
+ * @author Mikko Saari
9
+ * @license https://wordpress.org/about/gpl/ GNU General Public License
10
+ * @see https://www.relevanssi.com/
11
+ */
12
+
13
+ /**
14
+ * Prints out the redirects tab in Relevanssi settings.
15
+ */
16
+ function relevanssi_redirects_tab() {
17
+ ?>
18
+ <h2><?php esc_html_e( 'Redirects', 'relevanssi' ); ?></h2>
19
+
20
+ <p><?php esc_html_e( 'With Relevanssi Premium, you can set up redirects. These are keywords that automatically redirect the user to certain page, without going through the usual search process. For example, you could set it up so that all searches for "job" automatically lead to your "Careers" page.', 'relevanssi' ); ?></p>
21
+ <?php // Translators: %1$s starts the link, %2$s closes it. ?>
22
+ <p><?php printf( esc_html__( 'In order to access this and many other delightful Premium features, %1$sbuy Relevanssi Premium here%2$s.', 'relevanssi' ), '<a href="https://www.relevanssi.com/buy-premium/">', '</a>' ); ?></p>
23
+ <?php
24
+ }
lib/tabs/searching-tab.php CHANGED
@@ -380,7 +380,7 @@ function relevanssi_searching_tab() {
380
  <label for='relevanssi_expst'><?php esc_html_e( 'Post exclusion', 'relevanssi' ); ?>
381
  </th>
382
  <td>
383
- <input type='text' name='relevanssi_expst' id='relevanssi_expst' size='60' value='<?php echo esc_attr( $exclude_posts ); ?>' />
384
  <p class="description"><?php esc_html_e( "Enter a comma-separated list of post or page ID's to exclude those pages from the search results.", 'relevanssi' ); ?></p>
385
  <?php if ( RELEVANSSI_PREMIUM ) { ?>
386
  <p class="description"><?php esc_html_e( "With Relevanssi Premium, it's better to use the check box on post edit pages. That will remove the posts completely from the index, and will work with multisite searches unlike this setting.", 'relevanssi' ); ?></p>
380
  <label for='relevanssi_expst'><?php esc_html_e( 'Post exclusion', 'relevanssi' ); ?>
381
  </th>
382
  <td>
383
+ <input type='text' name='relevanssi_expst' id='relevanssi_expst' size='60' value='<?php echo esc_attr( $exclude_posts ); ?>' />
384
  <p class="description"><?php esc_html_e( "Enter a comma-separated list of post or page ID's to exclude those pages from the search results.", 'relevanssi' ); ?></p>
385
  <?php if ( RELEVANSSI_PREMIUM ) { ?>
386
  <p class="description"><?php esc_html_e( "With Relevanssi Premium, it's better to use the check box on post edit pages. That will remove the posts completely from the index, and will work with multisite searches unlike this setting.", 'relevanssi' ); ?></p>
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: search, relevance, better search
5
  Requires at least: 4.0
6
  Tested up to: 5.0
7
  Requires PHP: 5.6
8
- Stable tag: 4.1.1.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -17,7 +17,7 @@ Relevanssi replaces the standard WordPress search with a better search engine, w
17
 
18
  This is the free version of Relevanssi. There's also Relevanssi Premium, which has added features. For more information about Premium, see [Relevanssi.com](https://www.relevanssi.com/).
19
 
20
- Do note that using Relevanssi may require large amounts (hundreds of megabytes) of database space. If your hosting setup has a limited amount of space for database tables, using Relevanssi may cause problems. In those cases use of Relevanssi cannot be recommended.
21
 
22
  = Key features =
23
  * Search results sorted in the order of relevance, not by date.
@@ -130,6 +130,15 @@ Each document database is full of useless words. All the little words that appea
130
 
131
  == Changelog ==
132
 
 
 
 
 
 
 
 
 
 
133
  = 4.1.1.2 =
134
  * Fixes the broken User searches page.
135
 
@@ -165,6 +174,9 @@ Each document database is full of useless words. All the little words that appea
165
 
166
  == Upgrade notice ==
167
 
 
 
 
168
  = 4.1.1.2 =
169
  * Fixes the broken User searches page.
170
 
5
  Requires at least: 4.0
6
  Tested up to: 5.0
7
  Requires PHP: 5.6
8
+ Stable tag: 4.1.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
17
 
18
  This is the free version of Relevanssi. There's also Relevanssi Premium, which has added features. For more information about Premium, see [Relevanssi.com](https://www.relevanssi.com/).
19
 
20
+ Do note that using Relevanssi may require large amounts (hundreds of megabytes) of database space (for a reasonable estimate, multiply the size of your `wp_posts database table by three). If your hosting setup has a limited amount of space for database tables, using Relevanssi may cause problems. In those cases use of Relevanssi cannot be recommended.
21
 
22
  = Key features =
23
  * Search results sorted in the order of relevance, not by date.
130
 
131
  == Changelog ==
132
 
133
+ = 4.1.2 =
134
+ * Choosing "CSS Style" for highlighting was not possible. That is now fixed.
135
+ * Gutenberg reusable block indexing was fatally broken with the latest Gutenberg version. That has been updated.
136
+ * Relevanssi now by default respects the WooCommerce "exclude from search" setting.
137
+ * `post__not_in` still didn't work properly, it does now.
138
+ * New filter: `relevanssi_comparison_order` can be used to define the sorting order when sorting the results by post type.
139
+ * "Did you mean" process included a very slow query. It is now cached, leading in some cases to massive performance improvements (we're talking about several seconds here).
140
+ * Highlights inside `code` and similar blocks are handled better now.
141
+
142
  = 4.1.1.2 =
143
  * Fixes the broken User searches page.
144
 
174
 
175
  == Upgrade notice ==
176
 
177
+ = 4.1.2 =
178
+ * Better compatibility with Gutenberg, new features.
179
+
180
  = 4.1.1.2 =
181
  * Fixes the broken User searches page.
182
 
relevanssi.php CHANGED
@@ -13,7 +13,7 @@
13
  * Plugin Name: Relevanssi
14
  * Plugin URI: https://www.relevanssi.com/
15
  * Description: This plugin replaces WordPress search with a relevance-sorting search.
16
- * Version: 4.1.1.2
17
  * Author: Mikko Saari
18
  * Author URI: http://www.mikkosaari.fi/
19
  * Text Domain: relevanssi
13
  * Plugin Name: Relevanssi
14
  * Plugin URI: https://www.relevanssi.com/
15
  * Description: This plugin replaces WordPress search with a relevance-sorting search.
16
+ * Version: 4.1.2
17
  * Author: Mikko Saari
18
  * Author URI: http://www.mikkosaari.fi/
19
  * Text Domain: relevanssi
relevanssi.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Relevanssi\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-26 20:49+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mikko Saari <mikko@mikkosaari.fi>\n"
8
  "Language-Team: \n"
@@ -12,104 +12,50 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__;esc_html__;esc_html_e;_n\n"
14
  "X-Poedit-Basepath: .\n"
15
- "X-Generator: Poedit 2.0.6\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: lib\n"
18
 
19
- #: lib/indexing.php:349
20
- msgid "Indexing complete!"
21
- msgstr ""
22
-
23
- #: lib/indexing.php:352
24
- msgid "More to index..."
25
- msgstr ""
26
-
27
- #: lib/init.php:149 lib/init.php:150
28
- msgid "User searches"
29
- msgstr ""
30
-
31
- #: lib/init.php:339
32
- msgid "Settings"
33
- msgstr ""
34
-
35
- #: lib/init.php:342
36
- msgid "Go Premium!"
37
- msgstr ""
38
-
39
- #: lib/interface.php:18
40
- msgid "Relevanssi Search Options"
41
- msgstr ""
42
-
43
- #: lib/interface.php:20
44
- msgid "Relevanssi Premium Search Options"
45
- msgstr ""
46
-
47
- #: lib/interface.php:79
48
- msgid "User Searches"
49
- msgstr ""
50
-
51
- #: lib/interface.php:81
52
- msgid "Relevanssi User Searches"
53
- msgstr ""
54
-
55
- #: lib/interface.php:654
56
- msgid "Add to stopwords"
57
- msgstr ""
58
-
59
- #: lib/interface.php:684
60
- msgid "Totals"
61
- msgstr ""
62
-
63
- #: lib/interface.php:698
64
  #, php-format
65
- msgid ""
66
- "Here you can see the %d most common user search queries, how many times "
67
- "those queries were made and how many results were found for those queries."
68
- msgstr ""
69
-
70
- #: lib/interface.php:701 lib/interface.php:718 lib/interface.php:759
71
- msgid "Today and yesterday"
72
  msgstr ""
73
 
74
- #: lib/interface.php:705 lib/interface.php:722 lib/interface.php:760
75
- msgid "Last 7 days"
76
- msgstr ""
77
-
78
- #: lib/interface.php:710 lib/interface.php:727
79
- #, php-format
80
- msgid "Last %d days"
81
  msgstr ""
82
 
83
- #: lib/interface.php:737
84
  #, php-format
85
- msgid "To reset the logs, type \"reset\" into the box here %1$s and click %2$s"
86
  msgstr ""
87
 
88
- #: lib/interface.php:761
89
- msgid "Last 30 days"
90
  msgstr ""
91
 
92
- #: lib/interface.php:762
93
- msgid "Forever"
94
  msgstr ""
95
 
96
- #: lib/interface.php:2187 lib/interface.php:2241
97
- msgid "yes"
98
  msgstr ""
99
 
100
- #: lib/interface.php:2189 lib/interface.php:2239
101
- msgid "no"
102
  msgstr ""
103
 
104
- #: lib/interface.php:2302
105
- msgid "some"
106
  msgstr ""
107
 
108
- #: lib/interface.php:2658
 
109
  msgid "Searching"
110
  msgstr ""
111
 
112
- #: lib/interface.php:2661
113
  #, php-format
114
  msgid ""
115
  "To adjust the post order, you can use the %1$s query parameter. With %1$s, "
@@ -117,65 +63,77 @@ msgid ""
117
  "href='%2$s'>WordPress Codex</a> for more details on using arrays for orderby."
118
  msgstr ""
119
 
120
- #: lib/interface.php:2662
121
  msgid ""
122
  "Inside-word matching is disabled by default, because it increases garbage "
123
  "results that don't really match the search term. If you want to enable it, "
124
  "add the following function to your theme functions.php:"
125
  msgstr ""
126
 
127
- #: lib/interface.php:2668
 
 
 
 
 
 
 
 
 
 
 
 
128
  #, php-format
129
  msgid "In order to adjust the throttle limit, you can use the %s filter hook."
130
  msgstr ""
131
 
132
- #: lib/interface.php:2670
133
  msgid ""
134
  "It's not usually necessary to adjust the limit from 500, but in some cases "
135
  "performance gains can be achieved by setting a lower limit. We don't suggest "
136
  "going under 200, as low values will make the results worse."
137
  msgstr ""
138
 
139
- #: lib/interface.php:2675
140
  msgid "Restrictions"
141
  msgstr ""
142
 
143
- #: lib/interface.php:2677
144
  msgid ""
145
  "If you want the general search to target all posts, but have a single search "
146
  "form target only certain posts, you can add a hidden input variable to the "
147
  "search form. "
148
  msgstr ""
149
 
150
- #: lib/interface.php:2678
151
  msgid ""
152
  "For example in order to restrict the search to categories 10, 14 and 17, you "
153
  "could add this to the search form:"
154
  msgstr ""
155
 
156
- #: lib/interface.php:2680
157
  msgid ""
158
  "To restrict the search to posts tagged with alfa AND beta, you could add "
159
  "this to the search form:"
160
  msgstr ""
161
 
162
- #: lib/interface.php:2683
163
  #, php-format
164
  msgid "For all the possible options, see the Codex documentation for %s."
165
  msgstr ""
166
 
167
- #: lib/interface.php:2688
168
  msgid "Exclusions"
169
  msgstr ""
170
 
171
- #: lib/interface.php:2691
172
  #, php-format
173
  msgid ""
174
  "For more exclusion options, see the Codex documentation for %s. For example, "
175
  "to exclude tag ID 10, use"
176
  msgstr ""
177
 
178
- #: lib/interface.php:2694
179
  #, php-format
180
  msgid ""
181
  "To exclude posts from the index and not just from the search, you can use "
@@ -183,62 +141,62 @@ msgid ""
183
  "term:"
184
  msgstr ""
185
 
186
- #: lib/interface.php:2704 lib/interface.php:2752
187
  #, php-format
188
  msgid ""
189
  "For more examples, see <a href='%s'>the related knowledge base posts</a>."
190
  msgstr ""
191
 
192
- #: lib/interface.php:2709
193
  msgid "Logs"
194
  msgstr ""
195
 
196
- #: lib/interface.php:2712
197
  #, php-format
198
  msgid ""
199
  "By default, the User searches page shows 20 most common keywords. In order "
200
  "to see more, you can adjust the value with the %s filter hook, like this:"
201
  msgstr ""
202
 
203
- #: lib/interface.php:2715
204
  #, php-format
205
  msgid ""
206
  "The complete logs are stored in the %s database table, where you can access "
207
  "them if you need more information than what the User searches page provides."
208
  msgstr ""
209
 
210
- #: lib/interface.php:2720
211
  msgid "Excerpts"
212
  msgstr ""
213
 
214
- #: lib/interface.php:2722
215
  msgid ""
216
  "Building custom excerpts can be slow. If you are not actually using the "
217
  "excerpts, make sure you disable the option."
218
  msgstr ""
219
 
220
- #: lib/interface.php:2724
221
  #, php-format
222
  msgid ""
223
  "Custom snippets require that the search results template uses %s to print "
224
  "out the excerpts."
225
  msgstr ""
226
 
227
- #: lib/interface.php:2725
228
  msgid ""
229
  "Generally, Relevanssi generates the excerpts from post content. If you want "
230
  "to include custom field content in the excerpt-building, this can be done "
231
  "with a simple setting from the excerpt settings."
232
  msgstr ""
233
 
234
- #: lib/interface.php:2727
235
  #, php-format
236
  msgid ""
237
  "If you want more control over what content Relevanssi uses to create the "
238
  "excerpts, you can use the %1$s and %2$s filter hooks to adjust the content."
239
  msgstr ""
240
 
241
- #: lib/interface.php:2729
242
  #, php-format
243
  msgid ""
244
  "Some shortcode do not work well with Relevanssi excerpt-generation. "
@@ -246,25 +204,25 @@ msgid ""
246
  "can be adjusted with the %s filter hook."
247
  msgstr ""
248
 
249
- #: lib/interface.php:2731
250
  #, php-format
251
  msgid ""
252
  "If you want Relevanssi to build excerpts faster and don't mind that they may "
253
  "be less than perfect in quality, add a filter that returns true on hook %s."
254
  msgstr ""
255
 
256
- #: lib/interface.php:2737
257
  msgid "Highlights"
258
  msgstr ""
259
 
260
- #: lib/interface.php:2739
261
  msgid ""
262
  "Title highlights don't appear automatically, because that led to problems "
263
  "with highlights appearing in wrong places and messing up navigation menus, "
264
  "for example."
265
  msgstr ""
266
 
267
- #: lib/interface.php:2741
268
  #, php-format
269
  msgid ""
270
  "In order to see title highlights from Relevanssi, replace %1$s in the search "
@@ -272,18 +230,18 @@ msgid ""
272
  "title highlights."
273
  msgstr ""
274
 
275
- #: lib/interface.php:2746
276
  msgid "Punctuation"
277
  msgstr ""
278
 
279
- #: lib/interface.php:2748
280
  msgid ""
281
  "Relevanssi removes punctuation. Some punctuation is removed, some replaced "
282
  "with spaces. Advanced indexing settings include some of the more common "
283
  "settings people want to change."
284
  msgstr ""
285
 
286
- #: lib/interface.php:2750
287
  #, php-format
288
  msgid ""
289
  "For more fine-tuned changes, you can use %1$s filter hook to adjust what is "
@@ -291,25 +249,25 @@ msgid ""
291
  "punctuation control."
292
  msgstr ""
293
 
294
- #: lib/interface.php:2757
295
  msgid "Helpful shortcodes"
296
  msgstr ""
297
 
298
- #: lib/interface.php:2760
299
  #, php-format
300
  msgid ""
301
  "If you have content that you don't want indexed, you can wrap that content "
302
  "in a %s shortcode."
303
  msgstr ""
304
 
305
- #: lib/interface.php:2762
306
  #, php-format
307
  msgid ""
308
  "If you need a search form on some page on your site, you can use the %s "
309
  "shortcode to print out a basic search form."
310
  msgstr ""
311
 
312
- #: lib/interface.php:2764
313
  #, php-format
314
  msgid ""
315
  "If you need to add query variables to the search form, the shortcode takes "
@@ -318,159 +276,2420 @@ msgid ""
318
  "search to categories 10, 14 and 17, you can use %2$s and so on."
319
  msgstr ""
320
 
321
- #: lib/interface.php:2769
322
  msgid "WooCommerce"
323
  msgstr ""
324
 
325
- #: lib/interface.php:2771
326
  msgid ""
327
  "If your SKUs include hyphens or other punctuation, do note that Relevanssi "
328
  "replaces most punctuation with spaces. That's going to cause issues with SKU "
329
  "searches."
330
  msgstr ""
331
 
332
- #: lib/interface.php:2773
333
  #, php-format
334
  msgid ""
335
  "For more details how to fix that issue, see <a href='%s'>WooCommerce tips in "
336
  "Relevanssi user manual</a>."
337
  msgstr ""
338
 
339
- #: lib/interface.php:2778
 
 
 
 
 
 
 
340
  msgid "Exact match bonus"
341
  msgstr ""
342
 
343
- #: lib/interface.php:2781
344
  #, php-format
345
  msgid ""
346
  "To adjust the amount of the exact match bonus, you can use the %s filter "
347
  "hook. It works like this:"
348
  msgstr ""
349
 
350
- #: lib/interface.php:2790
 
 
 
 
 
351
  msgid "For more information:"
352
  msgstr ""
353
 
354
- #: lib/interface.php:2791
355
  msgid "Plugin knowledge base"
356
  msgstr ""
357
 
358
- #: lib/interface.php:2792
359
  msgid "WordPress.org forum"
360
  msgstr ""
361
 
362
- #: lib/interface.php:2832
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
363
  msgid "Click OK to copy Relevanssi options to all subsites"
364
  msgstr ""
365
 
366
- #: lib/interface.php:2833
367
  msgid "Are you sure you want to remove all stopwords?"
368
  msgstr ""
369
 
370
- #: lib/interface.php:2834
371
  msgid "Wiping out the index..."
372
  msgstr ""
373
 
374
- #: lib/interface.php:2835
375
  msgid "Done."
376
  msgstr ""
377
 
378
- #: lib/interface.php:2836
379
  msgid "Indexing users..."
380
  msgstr ""
381
 
382
- #: lib/interface.php:2837
383
  msgid "Indexing the following taxonomies:"
384
  msgstr ""
385
 
386
- #: lib/interface.php:2838
 
 
 
 
387
  msgid "Counting posts..."
388
  msgstr ""
389
 
390
- #: lib/interface.php:2839
391
  msgid "Counting taxonomy terms..."
392
  msgstr ""
393
 
394
- #: lib/interface.php:2840
395
  msgid "Counting users..."
396
  msgstr ""
397
 
398
- #: lib/interface.php:2841
 
 
 
 
399
  msgid "posts found."
400
  msgstr ""
401
 
402
- #: lib/interface.php:2842
403
  msgid "taxonomy terms found."
404
  msgstr ""
405
 
406
- #: lib/interface.php:2843
407
  msgid "users found."
408
  msgstr ""
409
 
410
- #: lib/interface.php:2844
 
 
 
 
411
  msgid "Taxonomy term indexing is disabled."
412
  msgstr ""
413
 
414
- #: lib/interface.php:2845
415
  msgid "User indexing is disabled."
416
  msgstr ""
417
 
418
- #: lib/interface.php:2846
419
  msgid "Indexing complete."
420
  msgstr ""
421
 
422
- #: lib/interface.php:2847
423
  msgid "posts excluded."
424
  msgstr ""
425
 
426
- #: lib/interface.php:2848
427
  msgid "Settings have changed, please save the options before indexing."
428
  msgstr ""
429
 
430
- #: lib/interface.php:2849
431
  msgid "Reload the page to refresh the state of the index."
432
  msgstr ""
433
 
434
- #: lib/interface.php:2850
435
  msgid "Are you sure you want to delete all attachment content from the index?"
436
  msgstr ""
437
 
438
- #: lib/interface.php:2851
439
  msgid "Relevanssi attachment data wiped clean."
440
  msgstr ""
441
 
442
- #: lib/interface.php:2852
443
  msgid "hour"
444
  msgstr ""
445
 
446
- #: lib/interface.php:2853
447
  msgid "hours"
448
  msgstr ""
449
 
450
- #: lib/interface.php:2854
451
  msgid "about"
452
  msgstr ""
453
 
454
- #: lib/interface.php:2855
455
  msgid "about an hour"
456
  msgstr ""
457
 
458
- #: lib/interface.php:2856
459
  msgid "about an hour and a half"
460
  msgstr ""
461
 
462
- #: lib/interface.php:2857
463
  msgid "minute"
464
  msgstr ""
465
 
466
- #: lib/interface.php:2858
467
  msgid "minutes"
468
  msgstr ""
469
 
470
- #: lib/interface.php:2859
471
  msgid "less than a minute"
472
  msgstr ""
473
 
474
- #: lib/interface.php:2860
475
  msgid "we're done!"
476
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Relevanssi\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-12-11 14:06+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mikko Saari <mikko@mikkosaari.fi>\n"
8
  "Language-Team: \n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__;esc_html__;esc_html_e;_n\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 2.2\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: lib\n"
18
 
19
+ #: lib/admin-ajax.php:88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, php-format
21
+ msgid "Indexed %1$d post (total %2$d), processed %3$d / %4$d."
 
 
 
 
 
 
22
  msgstr ""
23
 
24
+ #: lib/admin-ajax.php:198
25
+ msgid "Results"
 
 
 
 
 
26
  msgstr ""
27
 
28
+ #: lib/admin-ajax.php:200
29
  #, php-format
30
+ msgid "Found a total of %1$d posts, showing %2$d posts from offset %3$s."
31
  msgstr ""
32
 
33
+ #: lib/admin-ajax.php:209
34
+ msgid "Score:"
35
  msgstr ""
36
 
37
+ #: lib/admin-ajax.php:269
38
+ msgid "Query variables"
39
  msgstr ""
40
 
41
+ #: lib/admin-ajax.php:316
42
+ msgid "Filters"
43
  msgstr ""
44
 
45
+ #: lib/admin-ajax.php:317
46
+ msgid "show"
47
  msgstr ""
48
 
49
+ #: lib/admin-ajax.php:318
50
+ msgid "hide"
51
  msgstr ""
52
 
53
+ #: lib/contextual-help.php:24 lib/interface.php:777
54
+ #: lib/tabs/overview-tab.php:56
55
  msgid "Searching"
56
  msgstr ""
57
 
58
+ #: lib/contextual-help.php:27
59
  #, php-format
60
  msgid ""
61
  "To adjust the post order, you can use the %1$s query parameter. With %1$s, "
63
  "href='%2$s'>WordPress Codex</a> for more details on using arrays for orderby."
64
  msgstr ""
65
 
66
+ #: lib/contextual-help.php:28
67
  msgid ""
68
  "Inside-word matching is disabled by default, because it increases garbage "
69
  "results that don't really match the search term. If you want to enable it, "
70
  "add the following function to your theme functions.php:"
71
  msgstr ""
72
 
73
+ #: lib/contextual-help.php:34
74
+ #, php-format
75
+ msgid ""
76
+ "To get inside-word highlights, uncheck the \"%s\" option. That has a side-"
77
+ "effect of enabling the inside-word highlights."
78
+ msgstr ""
79
+
80
+ #: lib/contextual-help.php:34 lib/tabs/excerpts-tab.php:377
81
+ #: lib/tabs/excerpts-tab.php:386
82
+ msgid "Uncheck this if you use non-ASCII characters"
83
+ msgstr ""
84
+
85
+ #: lib/contextual-help.php:36
86
  #, php-format
87
  msgid "In order to adjust the throttle limit, you can use the %s filter hook."
88
  msgstr ""
89
 
90
+ #: lib/contextual-help.php:38
91
  msgid ""
92
  "It's not usually necessary to adjust the limit from 500, but in some cases "
93
  "performance gains can be achieved by setting a lower limit. We don't suggest "
94
  "going under 200, as low values will make the results worse."
95
  msgstr ""
96
 
97
+ #: lib/contextual-help.php:43
98
  msgid "Restrictions"
99
  msgstr ""
100
 
101
+ #: lib/contextual-help.php:45
102
  msgid ""
103
  "If you want the general search to target all posts, but have a single search "
104
  "form target only certain posts, you can add a hidden input variable to the "
105
  "search form. "
106
  msgstr ""
107
 
108
+ #: lib/contextual-help.php:46
109
  msgid ""
110
  "For example in order to restrict the search to categories 10, 14 and 17, you "
111
  "could add this to the search form:"
112
  msgstr ""
113
 
114
+ #: lib/contextual-help.php:48
115
  msgid ""
116
  "To restrict the search to posts tagged with alfa AND beta, you could add "
117
  "this to the search form:"
118
  msgstr ""
119
 
120
+ #: lib/contextual-help.php:51
121
  #, php-format
122
  msgid "For all the possible options, see the Codex documentation for %s."
123
  msgstr ""
124
 
125
+ #: lib/contextual-help.php:56
126
  msgid "Exclusions"
127
  msgstr ""
128
 
129
+ #: lib/contextual-help.php:59
130
  #, php-format
131
  msgid ""
132
  "For more exclusion options, see the Codex documentation for %s. For example, "
133
  "to exclude tag ID 10, use"
134
  msgstr ""
135
 
136
+ #: lib/contextual-help.php:62
137
  #, php-format
138
  msgid ""
139
  "To exclude posts from the index and not just from the search, you can use "
141
  "term:"
142
  msgstr ""
143
 
144
+ #: lib/contextual-help.php:72 lib/contextual-help.php:120
145
  #, php-format
146
  msgid ""
147
  "For more examples, see <a href='%s'>the related knowledge base posts</a>."
148
  msgstr ""
149
 
150
+ #: lib/contextual-help.php:77
151
  msgid "Logs"
152
  msgstr ""
153
 
154
+ #: lib/contextual-help.php:80
155
  #, php-format
156
  msgid ""
157
  "By default, the User searches page shows 20 most common keywords. In order "
158
  "to see more, you can adjust the value with the %s filter hook, like this:"
159
  msgstr ""
160
 
161
+ #: lib/contextual-help.php:83
162
  #, php-format
163
  msgid ""
164
  "The complete logs are stored in the %s database table, where you can access "
165
  "them if you need more information than what the User searches page provides."
166
  msgstr ""
167
 
168
+ #: lib/contextual-help.php:88 lib/tabs/indexing-tab.php:330
169
  msgid "Excerpts"
170
  msgstr ""
171
 
172
+ #: lib/contextual-help.php:90
173
  msgid ""
174
  "Building custom excerpts can be slow. If you are not actually using the "
175
  "excerpts, make sure you disable the option."
176
  msgstr ""
177
 
178
+ #: lib/contextual-help.php:92
179
  #, php-format
180
  msgid ""
181
  "Custom snippets require that the search results template uses %s to print "
182
  "out the excerpts."
183
  msgstr ""
184
 
185
+ #: lib/contextual-help.php:93
186
  msgid ""
187
  "Generally, Relevanssi generates the excerpts from post content. If you want "
188
  "to include custom field content in the excerpt-building, this can be done "
189
  "with a simple setting from the excerpt settings."
190
  msgstr ""
191
 
192
+ #: lib/contextual-help.php:95
193
  #, php-format
194
  msgid ""
195
  "If you want more control over what content Relevanssi uses to create the "
196
  "excerpts, you can use the %1$s and %2$s filter hooks to adjust the content."
197
  msgstr ""
198
 
199
+ #: lib/contextual-help.php:97
200
  #, php-format
201
  msgid ""
202
  "Some shortcode do not work well with Relevanssi excerpt-generation. "
204
  "can be adjusted with the %s filter hook."
205
  msgstr ""
206
 
207
+ #: lib/contextual-help.php:99
208
  #, php-format
209
  msgid ""
210
  "If you want Relevanssi to build excerpts faster and don't mind that they may "
211
  "be less than perfect in quality, add a filter that returns true on hook %s."
212
  msgstr ""
213
 
214
+ #: lib/contextual-help.php:105
215
  msgid "Highlights"
216
  msgstr ""
217
 
218
+ #: lib/contextual-help.php:107
219
  msgid ""
220
  "Title highlights don't appear automatically, because that led to problems "
221
  "with highlights appearing in wrong places and messing up navigation menus, "
222
  "for example."
223
  msgstr ""
224
 
225
+ #: lib/contextual-help.php:109
226
  #, php-format
227
  msgid ""
228
  "In order to see title highlights from Relevanssi, replace %1$s in the search "
230
  "title highlights."
231
  msgstr ""
232
 
233
+ #: lib/contextual-help.php:114
234
  msgid "Punctuation"
235
  msgstr ""
236
 
237
+ #: lib/contextual-help.php:116
238
  msgid ""
239
  "Relevanssi removes punctuation. Some punctuation is removed, some replaced "
240
  "with spaces. Advanced indexing settings include some of the more common "
241
  "settings people want to change."
242
  msgstr ""
243
 
244
+ #: lib/contextual-help.php:118
245
  #, php-format
246
  msgid ""
247
  "For more fine-tuned changes, you can use %1$s filter hook to adjust what is "
249
  "punctuation control."
250
  msgstr ""
251
 
252
+ #: lib/contextual-help.php:125
253
  msgid "Helpful shortcodes"
254
  msgstr ""
255
 
256
+ #: lib/contextual-help.php:128
257
  #, php-format
258
  msgid ""
259
  "If you have content that you don't want indexed, you can wrap that content "
260
  "in a %s shortcode."
261
  msgstr ""
262
 
263
+ #: lib/contextual-help.php:130
264
  #, php-format
265
  msgid ""
266
  "If you need a search form on some page on your site, you can use the %s "
267
  "shortcode to print out a basic search form."
268
  msgstr ""
269
 
270
+ #: lib/contextual-help.php:132
271
  #, php-format
272
  msgid ""
273
  "If you need to add query variables to the search form, the shortcode takes "
276
  "search to categories 10, 14 and 17, you can use %2$s and so on."
277
  msgstr ""
278
 
279
+ #: lib/contextual-help.php:137
280
  msgid "WooCommerce"
281
  msgstr ""
282
 
283
+ #: lib/contextual-help.php:139
284
  msgid ""
285
  "If your SKUs include hyphens or other punctuation, do note that Relevanssi "
286
  "replaces most punctuation with spaces. That's going to cause issues with SKU "
287
  "searches."
288
  msgstr ""
289
 
290
+ #: lib/contextual-help.php:141
291
  #, php-format
292
  msgid ""
293
  "For more details how to fix that issue, see <a href='%s'>WooCommerce tips in "
294
  "Relevanssi user manual</a>."
295
  msgstr ""
296
 
297
+ #: lib/contextual-help.php:142
298
+ msgid ""
299
+ "If you don't want to index products that are out of stock, excluded from the "
300
+ "catalog or excluded from the search, there's a product visibility filtering "
301
+ "method that is described in the user manual (see link above)."
302
+ msgstr ""
303
+
304
+ #: lib/contextual-help.php:147
305
  msgid "Exact match bonus"
306
  msgstr ""
307
 
308
+ #: lib/contextual-help.php:150
309
  #, php-format
310
  msgid ""
311
  "To adjust the amount of the exact match bonus, you can use the %s filter "
312
  "hook. It works like this:"
313
  msgstr ""
314
 
315
+ #: lib/contextual-help.php:156
316
+ #, php-format
317
+ msgid "The default values are %1$s for titles and %2$s for content."
318
+ msgstr ""
319
+
320
+ #: lib/contextual-help.php:159
321
  msgid "For more information:"
322
  msgstr ""
323
 
324
+ #: lib/contextual-help.php:160
325
  msgid "Plugin knowledge base"
326
  msgstr ""
327
 
328
+ #: lib/contextual-help.php:161
329
  msgid "WordPress.org forum"
330
  msgstr ""
331
 
332
+ #: lib/excerpts-highlights.php:24
333
+ msgid "There is no excerpt because this is a protected post."
334
+ msgstr ""
335
+
336
+ #: lib/indexing.php:360
337
+ msgid "Indexing complete!"
338
+ msgstr ""
339
+
340
+ #: lib/indexing.php:363
341
+ msgid "More to index..."
342
+ msgstr ""
343
+
344
+ #: lib/init.php:87
345
+ msgid ""
346
+ "You do not have an index! Remember to build the index (click the \"Build the "
347
+ "index\" button), otherwise searching won't work."
348
+ msgstr ""
349
+
350
+ #: lib/init.php:99
351
+ msgid ""
352
+ "Multibyte string functions are not available. Relevanssi may not work well "
353
+ "without them. Please install (or ask your host to install) the mbstring "
354
+ "extension."
355
+ msgstr ""
356
+
357
+ #: lib/init.php:186 lib/init.php:187 lib/interface.php:439
358
+ #: lib/tabs/logging-tab.php:47
359
+ msgid "User searches"
360
+ msgstr ""
361
+
362
+ #: lib/init.php:198 lib/init.php:199 lib/tabs/searching-tab.php:244
363
+ msgid "Admin search"
364
+ msgstr ""
365
+
366
+ #: lib/init.php:389
367
+ msgid "Settings"
368
+ msgstr ""
369
+
370
+ #: lib/init.php:392
371
+ msgid "Go Premium!"
372
+ msgstr ""
373
+
374
+ #: lib/interface.php:18
375
+ msgid "Relevanssi Search Options"
376
+ msgstr ""
377
+
378
+ #: lib/interface.php:20
379
+ msgid "Relevanssi Premium Search Options"
380
+ msgstr ""
381
+
382
+ #: lib/interface.php:441
383
+ msgid "Relevanssi User Searches"
384
+ msgstr ""
385
+
386
+ #: lib/interface.php:464
387
+ msgid "Enable query logging to see stats here."
388
+ msgstr ""
389
+
390
+ #: lib/interface.php:476
391
+ msgid "Admin Search"
392
+ msgstr ""
393
+
394
+ #: lib/interface.php:506
395
+ msgid "Logs clear!"
396
+ msgstr ""
397
+
398
+ #: lib/interface.php:508
399
+ msgid "Clearing the logs failed."
400
+ msgstr ""
401
+
402
+ #: lib/interface.php:542
403
+ msgid "Total Searches"
404
+ msgstr ""
405
+
406
+ #: lib/interface.php:544
407
+ msgid "Totals"
408
+ msgstr ""
409
+
410
+ #: lib/interface.php:548
411
+ msgid "Common Queries"
412
+ msgstr ""
413
+
414
+ #: lib/interface.php:558
415
+ #, php-format
416
+ msgid ""
417
+ "Here you can see the %d most common user search queries, how many times "
418
+ "those queries were made and how many results were found for those queries."
419
+ msgstr ""
420
+
421
+ #: lib/interface.php:562 lib/interface.php:584 lib/interface.php:625
422
+ msgid "Today and yesterday"
423
+ msgstr ""
424
+
425
+ #: lib/interface.php:565 lib/interface.php:571 lib/interface.php:576
426
+ #: lib/interface.php:593
427
+ #, php-format
428
+ msgid "Last %d days"
429
+ msgstr ""
430
+
431
+ #: lib/interface.php:581
432
+ msgid "Unsuccessful Queries"
433
+ msgstr ""
434
+
435
+ #: lib/interface.php:588 lib/interface.php:626
436
+ msgid "Last 7 days"
437
+ msgstr ""
438
+
439
+ #: lib/interface.php:599
440
+ msgid "Reset Logs"
441
+ msgstr ""
442
+
443
+ #: lib/interface.php:603
444
+ #, php-format
445
+ msgid "To reset the logs, type \"reset\" into the box here %1$s and click %2$s"
446
+ msgstr ""
447
+
448
+ #: lib/interface.php:627
449
+ msgid "Last 30 days"
450
+ msgstr ""
451
+
452
+ #: lib/interface.php:628
453
+ msgid "Forever"
454
+ msgstr ""
455
+
456
+ #: lib/interface.php:636
457
+ msgid "When"
458
+ msgstr ""
459
+
460
+ #: lib/interface.php:636
461
+ msgid "Searches"
462
+ msgstr ""
463
+
464
+ #: lib/interface.php:693 lib/log.php:163
465
+ msgid "Query"
466
+ msgstr ""
467
+
468
+ #: lib/interface.php:693
469
+ msgid "Hits"
470
+ msgstr ""
471
+
472
+ #: lib/interface.php:774
473
+ msgid "Overview"
474
+ msgstr ""
475
+
476
+ #: lib/interface.php:775 lib/tabs/overview-tab.php:44
477
+ msgid "Indexing"
478
+ msgstr ""
479
+
480
+ #: lib/interface.php:776
481
+ msgid "Attachments"
482
+ msgstr ""
483
+
484
+ #: lib/interface.php:778
485
+ msgid "Logging"
486
+ msgstr ""
487
+
488
+ #: lib/interface.php:779 lib/tabs/overview-tab.php:60
489
+ msgid "Excerpts and highlights"
490
+ msgstr ""
491
+
492
+ #: lib/interface.php:780 lib/tabs/synonyms-tab.php:25
493
+ #: lib/tabs/synonyms-tab.php:30
494
+ msgid "Synonyms"
495
+ msgstr ""
496
+
497
+ #: lib/interface.php:781 lib/tabs/stopwords-tab.php:18
498
+ msgid "Stopwords"
499
+ msgstr ""
500
+
501
+ #: lib/interface.php:782 lib/tabs/redirects-tab.php:18
502
+ msgid "Redirects"
503
+ msgstr ""
504
+
505
+ #: lib/interface.php:784
506
+ msgid "Import / Export options"
507
+ msgstr ""
508
+
509
+ #: lib/interface.php:898
510
  msgid "Click OK to copy Relevanssi options to all subsites"
511
  msgstr ""
512
 
513
+ #: lib/interface.php:899
514
  msgid "Are you sure you want to remove all stopwords?"
515
  msgstr ""
516
 
517
+ #: lib/interface.php:900
518
  msgid "Wiping out the index..."
519
  msgstr ""
520
 
521
+ #: lib/interface.php:901
522
  msgid "Done."
523
  msgstr ""
524
 
525
+ #: lib/interface.php:902
526
  msgid "Indexing users..."
527
  msgstr ""
528
 
529
+ #: lib/interface.php:903
530
  msgid "Indexing the following taxonomies:"
531
  msgstr ""
532
 
533
+ #: lib/interface.php:904
534
+ msgid "Indexing attachments..."
535
+ msgstr ""
536
+
537
+ #: lib/interface.php:905
538
  msgid "Counting posts..."
539
  msgstr ""
540
 
541
+ #: lib/interface.php:906
542
  msgid "Counting taxonomy terms..."
543
  msgstr ""
544
 
545
+ #: lib/interface.php:907
546
  msgid "Counting users..."
547
  msgstr ""
548
 
549
+ #: lib/interface.php:908
550
+ msgid "Counting attachments..."
551
+ msgstr ""
552
+
553
+ #: lib/interface.php:909
554
  msgid "posts found."
555
  msgstr ""
556
 
557
+ #: lib/interface.php:910
558
  msgid "taxonomy terms found."
559
  msgstr ""
560
 
561
+ #: lib/interface.php:911
562
  msgid "users found."
563
  msgstr ""
564
 
565
+ #: lib/interface.php:912
566
+ msgid "attachments found."
567
+ msgstr ""
568
+
569
+ #: lib/interface.php:913
570
  msgid "Taxonomy term indexing is disabled."
571
  msgstr ""
572
 
573
+ #: lib/interface.php:914
574
  msgid "User indexing is disabled."
575
  msgstr ""
576
 
577
+ #: lib/interface.php:915
578
  msgid "Indexing complete."
579
  msgstr ""
580
 
581
+ #: lib/interface.php:916
582
  msgid "posts excluded."
583
  msgstr ""
584
 
585
+ #: lib/interface.php:917
586
  msgid "Settings have changed, please save the options before indexing."
587
  msgstr ""
588
 
589
+ #: lib/interface.php:918
590
  msgid "Reload the page to refresh the state of the index."
591
  msgstr ""
592
 
593
+ #: lib/interface.php:919
594
  msgid "Are you sure you want to delete all attachment content from the index?"
595
  msgstr ""
596
 
597
+ #: lib/interface.php:920
598
  msgid "Relevanssi attachment data wiped clean."
599
  msgstr ""
600
 
601
+ #: lib/interface.php:921
602
  msgid "hour"
603
  msgstr ""
604
 
605
+ #: lib/interface.php:922
606
  msgid "hours"
607
  msgstr ""
608
 
609
+ #: lib/interface.php:923
610
  msgid "about"
611
  msgstr ""
612
 
613
+ #: lib/interface.php:924
614
  msgid "about an hour"
615
  msgstr ""
616
 
617
+ #: lib/interface.php:925
618
  msgid "about an hour and a half"
619
  msgstr ""
620
 
621
+ #: lib/interface.php:926
622
  msgid "minute"
623
  msgstr ""
624
 
625
+ #: lib/interface.php:927
626
  msgid "minutes"
627
  msgstr ""
628
 
629
+ #: lib/interface.php:928
630
  msgid "less than a minute"
631
  msgstr ""
632
 
633
+ #: lib/interface.php:929
634
  msgid "we're done!"
635
  msgstr ""
636
+
637
+ #: lib/interface.php:961
638
+ msgid "Tag weight"
639
+ msgstr ""
640
+
641
+ #: lib/interface.php:969
642
+ msgid "Category weight"
643
+ msgstr ""
644
+
645
+ #: lib/log.php:156
646
+ msgid "Logged seaches"
647
+ msgstr ""
648
+
649
+ #: lib/log.php:159
650
+ msgid "Time"
651
+ msgstr ""
652
+
653
+ #: lib/log.php:167
654
+ msgid "Hits found"
655
+ msgstr ""
656
+
657
+ #: lib/log.php:171
658
+ msgid "IP address"
659
+ msgstr ""
660
+
661
+ #: lib/privacy.php:34
662
+ msgid "What personal data we collect and why we collect it"
663
+ msgstr ""
664
+
665
+ #: lib/privacy.php:36
666
+ msgid "IP address for searches"
667
+ msgstr ""
668
+
669
+ #: lib/privacy.php:37
670
+ msgid ""
671
+ "All searches performed using the internal site search are logged in the "
672
+ "database, including the following information: the search query, the number "
673
+ "of hits found, user ID for users who are logged in, date and time and the IP "
674
+ "address. The IP address is stored for security and auditing purposes."
675
+ msgstr ""
676
+
677
+ #: lib/privacy.php:39
678
+ msgid ""
679
+ "All searches performed using the internal site search are logged in the "
680
+ "database, including the following information: the search query, the number "
681
+ "of hits found, user ID for users who are logged in and date and time."
682
+ msgstr ""
683
+
684
+ #: lib/privacy.php:42
685
+ msgid "How long we retain your data"
686
+ msgstr ""
687
+
688
+ #: lib/privacy.php:45
689
+ #, php-format
690
+ msgid ""
691
+ "The search logs are stored for %d days before they are automatically removed."
692
+ msgstr ""
693
+
694
+ #: lib/privacy.php:47
695
+ msgid "The search logs are stored indefinitely."
696
+ msgstr ""
697
+
698
+ #: lib/privacy.php:64 lib/privacy.php:81
699
+ msgid "Relevanssi Search Logs"
700
+ msgstr ""
701
+
702
+ #: lib/stopwords.php:99
703
+ #, php-format
704
+ msgid "Successfully added %1$d/%2$d terms to stopwords!"
705
+ msgstr ""
706
+
707
+ #: lib/stopwords.php:110
708
+ #, php-format
709
+ msgid "Term '%s' added to stopwords!"
710
+ msgstr ""
711
+
712
+ #: lib/stopwords.php:113
713
+ #, php-format
714
+ msgid ""
715
+ "<div id='message' class='updated fade'><p>Couldn't add term '%s' to "
716
+ "stopwords!</p></div>"
717
+ msgstr ""
718
+
719
+ #: lib/stopwords.php:165
720
+ msgid "All stopwords removed! Remember to re-index."
721
+ msgstr ""
722
+
723
+ #: lib/stopwords.php:167
724
+ msgid "There was a problem, and stopwords couldn't be removed."
725
+ msgstr ""
726
+
727
+ #: lib/stopwords.php:190
728
+ #, php-format
729
+ msgid "Term '%s' removed from stopwords! Re-index to get it back to index."
730
+ msgstr ""
731
+
732
+ #: lib/stopwords.php:196
733
+ #, php-format
734
+ msgid "Couldn't remove term '%s' from stopwords!"
735
+ msgstr ""
736
+
737
+ #: lib/tabs/attachments-tab.php:18
738
+ msgid "Indexing attachment content"
739
+ msgstr ""
740
+
741
+ #: lib/tabs/attachments-tab.php:20
742
+ msgid ""
743
+ "With Relevanssi Premium, you can index the text contents of attachments "
744
+ "(PDFs, Word documents, Open Office documents and many other types). The "
745
+ "contents of the attachments are processed on an external service, which "
746
+ "makes the feature reliable and light on your own server performance."
747
+ msgstr ""
748
+
749
+ #: lib/tabs/attachments-tab.php:22 lib/tabs/redirects-tab.php:22
750
+ #, php-format
751
+ msgid ""
752
+ "In order to access this and many other delightful Premium features, %1$sbuy "
753
+ "Relevanssi Premium here%2$s."
754
+ msgstr ""
755
+
756
+ #: lib/tabs/excerpts-tab.php:84
757
+ msgid "Custom excerpts/snippets"
758
+ msgstr ""
759
+
760
+ #: lib/tabs/excerpts-tab.php:89
761
+ msgid "Custom search result snippets"
762
+ msgstr ""
763
+
764
+ #: lib/tabs/excerpts-tab.php:93 lib/tabs/excerpts-tab.php:96
765
+ msgid "Create custom search result snippets"
766
+ msgstr ""
767
+
768
+ #: lib/tabs/excerpts-tab.php:99
769
+ msgid "Only enable this if you actually use the custom excerpts."
770
+ msgstr ""
771
+
772
+ #: lib/tabs/excerpts-tab.php:106
773
+ #, php-format
774
+ msgid ""
775
+ "Looks like you are using Divi. In order to use custom excerpts with Divi, "
776
+ "you need to make some changes to your templates. %1$sSee instructions here"
777
+ "%2$s."
778
+ msgstr ""
779
+
780
+ #: lib/tabs/excerpts-tab.php:118
781
+ msgid "Length of the snippet"
782
+ msgstr ""
783
+
784
+ #: lib/tabs/excerpts-tab.php:135
785
+ msgid "characters"
786
+ msgstr ""
787
+
788
+ #: lib/tabs/excerpts-tab.php:136
789
+ msgid "words"
790
+ msgstr ""
791
+
792
+ #: lib/tabs/excerpts-tab.php:138
793
+ msgid ""
794
+ "Using words is much faster than characters. Don't use characters, unless you "
795
+ "have a really good reason and your posts are short."
796
+ msgstr ""
797
+
798
+ #: lib/tabs/excerpts-tab.php:149
799
+ msgid "Allowable tags in excerpts"
800
+ msgstr ""
801
+
802
+ #: lib/tabs/excerpts-tab.php:159
803
+ msgid ""
804
+ "List all tags you want to allow in excerpts. For example: &lt;p&gt;&lt;a&gt;"
805
+ "&lt;strong&gt;."
806
+ msgstr ""
807
+
808
+ #: lib/tabs/excerpts-tab.php:170
809
+ msgid "Use custom fields for excerpts"
810
+ msgstr ""
811
+
812
+ #: lib/tabs/excerpts-tab.php:174 lib/tabs/excerpts-tab.php:183
813
+ msgid "Use custom field content for building excerpts"
814
+ msgstr ""
815
+
816
+ #: lib/tabs/excerpts-tab.php:186
817
+ msgid ""
818
+ "Use the custom fields setting for indexing for excerpt-making as well. "
819
+ "Enabling this option will show custom field content in Relevanssi-generated "
820
+ "excerpts."
821
+ msgstr ""
822
+
823
+ #: lib/tabs/excerpts-tab.php:189
824
+ msgid "Enable this option to use PDF content for excerpts."
825
+ msgstr ""
826
+
827
+ #: lib/tabs/excerpts-tab.php:194
828
+ msgid "Current custom field setting"
829
+ msgstr ""
830
+
831
+ #: lib/tabs/excerpts-tab.php:197
832
+ msgid "all visible custom fields"
833
+ msgstr ""
834
+
835
+ #: lib/tabs/excerpts-tab.php:199
836
+ msgid "all custom fields"
837
+ msgstr ""
838
+
839
+ #: lib/tabs/excerpts-tab.php:203
840
+ msgid "Just PDF content"
841
+ msgstr ""
842
+
843
+ #: lib/tabs/excerpts-tab.php:205
844
+ msgid "None selected"
845
+ msgstr ""
846
+
847
+ #: lib/tabs/excerpts-tab.php:213
848
+ msgid "Search hit highlighting"
849
+ msgstr ""
850
+
851
+ #: lib/tabs/excerpts-tab.php:224
852
+ msgid "Highlight type"
853
+ msgstr ""
854
+
855
+ #: lib/tabs/excerpts-tab.php:234
856
+ msgid "No highlighting"
857
+ msgstr ""
858
+
859
+ #: lib/tabs/excerpts-tab.php:238 lib/tabs/excerpts-tab.php:248
860
+ msgid "Text color"
861
+ msgstr ""
862
+
863
+ #: lib/tabs/excerpts-tab.php:239 lib/tabs/excerpts-tab.php:262
864
+ msgid "Background color"
865
+ msgstr ""
866
+
867
+ #: lib/tabs/excerpts-tab.php:240
868
+ msgid "CSS Style"
869
+ msgstr ""
870
+
871
+ #: lib/tabs/excerpts-tab.php:241
872
+ msgid "CSS Class"
873
+ msgstr ""
874
+
875
+ #: lib/tabs/excerpts-tab.php:243 lib/tabs/excerpts-tab.php:421
876
+ msgid "Requires custom snippets to work."
877
+ msgstr ""
878
+
879
+ #: lib/tabs/excerpts-tab.php:276
880
+ msgid "CSS style for highlights"
881
+ msgstr ""
882
+
883
+ #: lib/tabs/excerpts-tab.php:287
884
+ #, php-format
885
+ msgid ""
886
+ "The highlights will be wrapped in a %s with this CSS in the style parameter."
887
+ msgstr ""
888
+
889
+ #: lib/tabs/excerpts-tab.php:292
890
+ msgid "CSS class for highlights"
891
+ msgstr ""
892
+
893
+ #: lib/tabs/excerpts-tab.php:303
894
+ #, php-format
895
+ msgid "The highlights will be wrapped in a %s with this class."
896
+ msgstr ""
897
+
898
+ #: lib/tabs/excerpts-tab.php:308
899
+ msgid "Highlight in titles"
900
+ msgstr ""
901
+
902
+ #: lib/tabs/excerpts-tab.php:312 lib/tabs/excerpts-tab.php:321
903
+ msgid "Highlight query terms in titles"
904
+ msgstr ""
905
+
906
+ #: lib/tabs/excerpts-tab.php:325
907
+ #, php-format
908
+ msgid ""
909
+ "Highlights in titles require changes to the search results template. You "
910
+ "need to replace %1$s in the search results template with %2$s. For more "
911
+ "information, see the contextual help."
912
+ msgstr ""
913
+
914
+ #: lib/tabs/excerpts-tab.php:330
915
+ msgid "Highlight in documents"
916
+ msgstr ""
917
+
918
+ #: lib/tabs/excerpts-tab.php:334 lib/tabs/excerpts-tab.php:343
919
+ msgid "Highlight query terms in documents"
920
+ msgstr ""
921
+
922
+ #: lib/tabs/excerpts-tab.php:347
923
+ #, php-format
924
+ msgid ""
925
+ "Highlights hits when user opens the post from search results. This requires "
926
+ "an extra parameter (%s) to the links from the search results pages, which "
927
+ "Relevanssi should add automatically."
928
+ msgstr ""
929
+
930
+ #: lib/tabs/excerpts-tab.php:352
931
+ msgid "Highlight in comments"
932
+ msgstr ""
933
+
934
+ #: lib/tabs/excerpts-tab.php:356 lib/tabs/excerpts-tab.php:365
935
+ msgid "Highlight query terms in comments"
936
+ msgstr ""
937
+
938
+ #: lib/tabs/excerpts-tab.php:368
939
+ msgid ""
940
+ "Highlights hits in comments when user opens the post from search results."
941
+ msgstr ""
942
+
943
+ #: lib/tabs/excerpts-tab.php:373
944
+ msgid "Highlighting problems with non-ASCII alphabet?"
945
+ msgstr ""
946
+
947
+ #: lib/tabs/excerpts-tab.php:389
948
+ msgid ""
949
+ "If you use non-ASCII characters (like Cyrillic alphabet) and the highlights "
950
+ "don't work, unchecking this option may make the highlights work."
951
+ msgstr ""
952
+
953
+ #: lib/tabs/excerpts-tab.php:394
954
+ msgid "Breakdown of search results"
955
+ msgstr ""
956
+
957
+ #: lib/tabs/excerpts-tab.php:405
958
+ msgid "Breakdown of search hits in excerpts"
959
+ msgstr ""
960
+
961
+ #: lib/tabs/excerpts-tab.php:409
962
+ msgid "Show the breakdown of search hits in the excerpts"
963
+ msgstr ""
964
+
965
+ #: lib/tabs/excerpts-tab.php:418
966
+ msgid "Show the breakdown of search hits in the excerpts."
967
+ msgstr ""
968
+
969
+ #: lib/tabs/excerpts-tab.php:426
970
+ msgid "The breakdown format"
971
+ msgstr ""
972
+
973
+ #: lib/tabs/excerpts-tab.php:436
974
+ msgid ""
975
+ "Use %body%, %title%, %tags% and %comments% to display the number of hits (in "
976
+ "different parts of the post), %total% for total hits, %score% to display the "
977
+ "document weight and %terms% to show how many hits each search term got."
978
+ msgstr ""
979
+
980
+ #: lib/tabs/indexing-tab.php:113
981
+ #, php-format
982
+ msgid "%s empties the existing index and rebuilds it from scratch."
983
+ msgstr ""
984
+
985
+ #: lib/tabs/indexing-tab.php:113
986
+ msgid "Build the index"
987
+ msgstr ""
988
+
989
+ #: lib/tabs/indexing-tab.php:115
990
+ #, php-format
991
+ msgid ""
992
+ "%s doesn't empty the index and only indexes those posts that are not "
993
+ "indexed. You can use it if you have to interrupt building the index."
994
+ msgstr ""
995
+
996
+ #: lib/tabs/indexing-tab.php:115
997
+ msgid "Index unindexed posts"
998
+ msgstr ""
999
+
1000
+ #: lib/tabs/indexing-tab.php:118
1001
+ msgid "This doesn't index any taxonomy terms or users."
1002
+ msgstr ""
1003
+
1004
+ #: lib/tabs/indexing-tab.php:125
1005
+ msgid "Time elapsed"
1006
+ msgstr ""
1007
+
1008
+ #: lib/tabs/indexing-tab.php:125
1009
+ msgid "Time remaining"
1010
+ msgstr ""
1011
+
1012
+ #: lib/tabs/indexing-tab.php:125
1013
+ msgid "some time"
1014
+ msgstr ""
1015
+
1016
+ #: lib/tabs/indexing-tab.php:127
1017
+ msgid ""
1018
+ "Indexing should respond quickly. If nothing happens in couple of minutes, "
1019
+ "it's probably stuck. The most common reasons for indexing issues are "
1020
+ "incompatible shortcodes, so try disabling the shortcode expansion setting "
1021
+ "and try again. Also, if you've just updated Relevanssi, doing a hard refresh "
1022
+ "in your browser will make sure your browser is not trying to use an outdated "
1023
+ "version of the Relevanssi scripts."
1024
+ msgstr ""
1025
+
1026
+ #: lib/tabs/indexing-tab.php:131
1027
+ msgid "State of the index"
1028
+ msgstr ""
1029
+
1030
+ #: lib/tabs/indexing-tab.php:132
1031
+ msgid "document in the index."
1032
+ msgstr ""
1033
+
1034
+ #: lib/tabs/indexing-tab.php:134
1035
+ msgid "user in the index."
1036
+ msgstr ""
1037
+
1038
+ #: lib/tabs/indexing-tab.php:135
1039
+ msgid "taxonomy term in the index."
1040
+ msgstr ""
1041
+
1042
+ #: lib/tabs/indexing-tab.php:138
1043
+ msgid "term in the index."
1044
+ msgstr ""
1045
+
1046
+ #: lib/tabs/indexing-tab.php:139
1047
+ msgid "is the lowest post ID indexed."
1048
+ msgstr ""
1049
+
1050
+ #: lib/tabs/indexing-tab.php:149
1051
+ msgid ""
1052
+ "WARNING: You've chosen no post types to index. Nothing will be indexed. "
1053
+ "Choose some post types to index."
1054
+ msgstr ""
1055
+
1056
+ #: lib/tabs/indexing-tab.php:154
1057
+ msgid "Indexing options"
1058
+ msgstr ""
1059
+
1060
+ #: lib/tabs/indexing-tab.php:156
1061
+ msgid ""
1062
+ "Any changes to the settings on this page require reindexing before they take "
1063
+ "effect."
1064
+ msgstr ""
1065
+
1066
+ #: lib/tabs/indexing-tab.php:160
1067
+ msgid "Post types"
1068
+ msgstr ""
1069
+
1070
+ #: lib/tabs/indexing-tab.php:166
1071
+ msgid "Type"
1072
+ msgstr ""
1073
+
1074
+ #: lib/tabs/indexing-tab.php:167 lib/tabs/indexing-tab.php:221
1075
+ msgid "Index"
1076
+ msgstr ""
1077
+
1078
+ #: lib/tabs/indexing-tab.php:168
1079
+ msgid "Excluded from search?"
1080
+ msgstr ""
1081
+
1082
+ #: lib/tabs/indexing-tab.php:185 lib/tabs/indexing-tab.php:239
1083
+ msgid "yes"
1084
+ msgstr ""
1085
+
1086
+ #: lib/tabs/indexing-tab.php:187 lib/tabs/indexing-tab.php:237
1087
+ msgid "no"
1088
+ msgstr ""
1089
+
1090
+ #: lib/tabs/indexing-tab.php:207
1091
+ #, php-format
1092
+ msgid ""
1093
+ "%1$s includes all attachment types. If you want to index only some "
1094
+ "attachments, see %2$sControlling attachment types in the Knowledge base%3$s."
1095
+ msgstr ""
1096
+
1097
+ #: lib/tabs/indexing-tab.php:213
1098
+ msgid "Taxonomies"
1099
+ msgstr ""
1100
+
1101
+ #: lib/tabs/indexing-tab.php:220
1102
+ msgid "Taxonomy"
1103
+ msgstr ""
1104
+
1105
+ #: lib/tabs/indexing-tab.php:222
1106
+ msgid "Public?"
1107
+ msgstr ""
1108
+
1109
+ #: lib/tabs/indexing-tab.php:248
1110
+ msgid ""
1111
+ "If you check a taxonomy here, the terms for that taxonomy are indexed with "
1112
+ "the posts. If you for example choose \"post_tag\", searching for a tag will "
1113
+ "find all posts that have the tag."
1114
+ msgstr ""
1115
+
1116
+ #: lib/tabs/indexing-tab.php:255
1117
+ msgid "Comments"
1118
+ msgstr ""
1119
+
1120
+ #: lib/tabs/indexing-tab.php:259 lib/tabs/indexing-tab.php:273
1121
+ msgid "none"
1122
+ msgstr ""
1123
+
1124
+ #: lib/tabs/indexing-tab.php:260
1125
+ msgid "comments"
1126
+ msgstr ""
1127
+
1128
+ #: lib/tabs/indexing-tab.php:261
1129
+ msgid "comments and pingbacks"
1130
+ msgstr ""
1131
+
1132
+ #: lib/tabs/indexing-tab.php:263
1133
+ msgid ""
1134
+ "If you choose to index comments, you can choose if you want to index just "
1135
+ "comments, or everything including comments and track- and pingbacks."
1136
+ msgstr ""
1137
+
1138
+ #: lib/tabs/indexing-tab.php:269
1139
+ msgid "Custom fields"
1140
+ msgstr ""
1141
+
1142
+ #: lib/tabs/indexing-tab.php:274
1143
+ msgid "all"
1144
+ msgstr ""
1145
+
1146
+ #: lib/tabs/indexing-tab.php:275
1147
+ msgid "visible"
1148
+ msgstr ""
1149
+
1150
+ #: lib/tabs/indexing-tab.php:276 lib/tabs/indexing-tab.php:307
1151
+ msgid "some"
1152
+ msgstr ""
1153
+
1154
+ #: lib/tabs/indexing-tab.php:280
1155
+ msgid "'All' indexes all custom fields for posts."
1156
+ msgstr ""
1157
+
1158
+ #: lib/tabs/indexing-tab.php:282
1159
+ msgid ""
1160
+ "'Visible' only includes the custom fields that are visible in the user "
1161
+ "interface (with names that don't start with an underscore)."
1162
+ msgstr ""
1163
+
1164
+ #: lib/tabs/indexing-tab.php:284
1165
+ msgid "'Some' lets you choose individual custom fields to index."
1166
+ msgstr ""
1167
+
1168
+ #: lib/tabs/indexing-tab.php:290
1169
+ msgid ""
1170
+ "Advanced Custom Fields has lots of invisible custom fields with meta data. "
1171
+ "Selecting \"all\" will include lots of garbage in the index and excerpts. "
1172
+ "\"Visible\" is usually a better option with ACF."
1173
+ msgstr ""
1174
+
1175
+ #: lib/tabs/indexing-tab.php:302
1176
+ msgid ""
1177
+ "Enter a comma-separated list of custom fields to include in the index. With "
1178
+ "Relevanssi Premium, you can also use 'fieldname_%_subfieldname' notation for "
1179
+ "ACF repeater fields."
1180
+ msgstr ""
1181
+
1182
+ #: lib/tabs/indexing-tab.php:303
1183
+ msgid ""
1184
+ "You can use 'relevanssi_index_custom_fields' filter hook to adjust which "
1185
+ "custom fields are indexed."
1186
+ msgstr ""
1187
+
1188
+ #: lib/tabs/indexing-tab.php:307
1189
+ #, php-format
1190
+ msgid ""
1191
+ "If you want the SKU included, choose %1$s and enter %2$s. Also see the "
1192
+ "contextual help for more details."
1193
+ msgstr ""
1194
+
1195
+ #: lib/tabs/indexing-tab.php:314
1196
+ msgid "Author display names"
1197
+ msgstr ""
1198
+
1199
+ #: lib/tabs/indexing-tab.php:318 lib/tabs/indexing-tab.php:321
1200
+ msgid "Index the post author display name"
1201
+ msgstr ""
1202
+
1203
+ #: lib/tabs/indexing-tab.php:323
1204
+ msgid ""
1205
+ "Searching for the post author display name will return posts by that author."
1206
+ msgstr ""
1207
+
1208
+ #: lib/tabs/indexing-tab.php:334 lib/tabs/indexing-tab.php:337
1209
+ #: lib/tabs/indexing-tab.php:358
1210
+ msgid "Index the post excerpt"
1211
+ msgstr ""
1212
+
1213
+ #: lib/tabs/indexing-tab.php:339
1214
+ msgid "Relevanssi will find posts by the content in the excerpt."
1215
+ msgstr ""
1216
+
1217
+ #: lib/tabs/indexing-tab.php:341
1218
+ msgid ""
1219
+ "WooCommerce stores the product short description in the excerpt, so it's a "
1220
+ "good idea to index excerpts."
1221
+ msgstr ""
1222
+
1223
+ #: lib/tabs/indexing-tab.php:349
1224
+ msgid "Shortcodes"
1225
+ msgstr ""
1226
+
1227
+ #: lib/tabs/indexing-tab.php:354
1228
+ msgid "Expand shortcodes"
1229
+ msgstr ""
1230
+
1231
+ #: lib/tabs/indexing-tab.php:361
1232
+ msgid "Expand shortcodes when indexing"
1233
+ msgstr ""
1234
+
1235
+ #: lib/tabs/indexing-tab.php:364
1236
+ msgid ""
1237
+ "WooCommerce has shortcodes that don't work well with Relevanssi. With "
1238
+ "WooCommerce, make sure the option is disabled."
1239
+ msgstr ""
1240
+
1241
+ #: lib/tabs/indexing-tab.php:366
1242
+ msgid ""
1243
+ "If checked, Relevanssi will expand shortcodes in post content before "
1244
+ "indexing. Otherwise shortcodes will be stripped."
1245
+ msgstr ""
1246
+
1247
+ #: lib/tabs/indexing-tab.php:367
1248
+ msgid ""
1249
+ "If you use shortcodes to include dynamic content, Relevanssi will not keep "
1250
+ "the index updated, the index will reflect the status of the shortcode "
1251
+ "content at the moment of indexing."
1252
+ msgstr ""
1253
+
1254
+ #: lib/tabs/indexing-tab.php:398
1255
+ msgid "Advanced indexing settings"
1256
+ msgstr ""
1257
+
1258
+ #: lib/tabs/indexing-tab.php:400
1259
+ msgid "Show advanced settings"
1260
+ msgstr ""
1261
+
1262
+ #: lib/tabs/indexing-tab.php:405
1263
+ msgid "Minimum word length"
1264
+ msgstr ""
1265
+
1266
+ #: lib/tabs/indexing-tab.php:409
1267
+ msgid "Words shorter than this many letters will not be indexed."
1268
+ msgstr ""
1269
+
1270
+ #: lib/tabs/indexing-tab.php:411
1271
+ #, php-format
1272
+ msgid ""
1273
+ "To enable one-letter searches, you need to add a filter function on the "
1274
+ "filter hook %1$s that returns %2$s."
1275
+ msgstr ""
1276
+
1277
+ #: lib/tabs/indexing-tab.php:415
1278
+ msgid "Punctuation control"
1279
+ msgstr ""
1280
+
1281
+ #: lib/tabs/indexing-tab.php:416
1282
+ msgid ""
1283
+ "Here you can adjust how the punctuation is controlled. For more information, "
1284
+ "see help. Remember that any changes here require reindexing, otherwise "
1285
+ "searches will fail to find posts they should."
1286
+ msgstr ""
1287
+
1288
+ #: lib/tabs/indexing-tab.php:420
1289
+ msgid "Hyphens and dashes"
1290
+ msgstr ""
1291
+
1292
+ #: lib/tabs/indexing-tab.php:424 lib/tabs/indexing-tab.php:451
1293
+ #: lib/tabs/indexing-tab.php:465
1294
+ msgid "Keep"
1295
+ msgstr ""
1296
+
1297
+ #: lib/tabs/indexing-tab.php:425 lib/tabs/indexing-tab.php:438
1298
+ #: lib/tabs/indexing-tab.php:452 lib/tabs/indexing-tab.php:466
1299
+ msgid "Replace with spaces"
1300
+ msgstr ""
1301
+
1302
+ #: lib/tabs/indexing-tab.php:426 lib/tabs/indexing-tab.php:439
1303
+ #: lib/tabs/indexing-tab.php:453 lib/tabs/indexing-tab.php:467
1304
+ msgid "Remove"
1305
+ msgstr ""
1306
+
1307
+ #: lib/tabs/indexing-tab.php:428
1308
+ msgid ""
1309
+ "How Relevanssi should handle hyphens and dashes (en and em dashes)? "
1310
+ "Replacing with spaces is generally the best option, but in some cases "
1311
+ "removing completely is the best option. Keeping them is rarely the best "
1312
+ "option."
1313
+ msgstr ""
1314
+
1315
+ #: lib/tabs/indexing-tab.php:434
1316
+ msgid "Apostrophes and quotes"
1317
+ msgstr ""
1318
+
1319
+ #: lib/tabs/indexing-tab.php:441
1320
+ msgid ""
1321
+ "How Relevanssi should handle apostrophes and quotes? It's not possible to "
1322
+ "keep them; that would lead to problems. Default behaviour is to replace with "
1323
+ "spaces, but sometimes removing makes sense."
1324
+ msgstr ""
1325
+
1326
+ #: lib/tabs/indexing-tab.php:447
1327
+ msgid "Ampersands"
1328
+ msgstr ""
1329
+
1330
+ #: lib/tabs/indexing-tab.php:455
1331
+ msgid ""
1332
+ "How Relevanssi should handle ampersands? Replacing with spaces is generally "
1333
+ "the best option, but if you talk a lot about D&amp;D, for example, keeping "
1334
+ "the ampersands is useful."
1335
+ msgstr ""
1336
+
1337
+ #: lib/tabs/indexing-tab.php:461
1338
+ msgid "Decimal separators"
1339
+ msgstr ""
1340
+
1341
+ #: lib/tabs/indexing-tab.php:469
1342
+ msgid ""
1343
+ "How Relevanssi should handle periods between decimals? Replacing with spaces "
1344
+ "is the default option, but that often leads to the numbers being removed "
1345
+ "completely. If you need to search decimal numbers a lot, keep the periods."
1346
+ msgstr ""
1347
+
1348
+ #: lib/tabs/indexing-tab.php:487
1349
+ msgid "Hide advanced settings"
1350
+ msgstr ""
1351
+
1352
+ #: lib/tabs/logging-tab.php:33
1353
+ msgid "Enable logs"
1354
+ msgstr ""
1355
+
1356
+ #: lib/tabs/logging-tab.php:37 lib/tabs/logging-tab.php:40
1357
+ msgid "Keep a log of user queries."
1358
+ msgstr ""
1359
+
1360
+ #: lib/tabs/logging-tab.php:46
1361
+ #, php-format
1362
+ msgid ""
1363
+ "If enabled, Relevanssi will log user queries. The logs can be examined under "
1364
+ "'%1$s' on the Dashboard admin menu and are stored in the %2$s database table."
1365
+ msgstr ""
1366
+
1367
+ #: lib/tabs/logging-tab.php:54
1368
+ msgid "Log user IP"
1369
+ msgstr ""
1370
+
1371
+ #: lib/tabs/logging-tab.php:58 lib/tabs/logging-tab.php:61
1372
+ msgid "Log the user's IP with the queries."
1373
+ msgstr ""
1374
+
1375
+ #: lib/tabs/logging-tab.php:64
1376
+ msgid ""
1377
+ "If enabled, Relevanssi will log user's IP adress with the queries. Note that "
1378
+ "this may be illegal where you live, and in EU will create a person registry "
1379
+ "that falls under the GDPR."
1380
+ msgstr ""
1381
+
1382
+ #: lib/tabs/logging-tab.php:69
1383
+ msgid "Exclude users"
1384
+ msgstr ""
1385
+
1386
+ #: lib/tabs/logging-tab.php:73
1387
+ msgid ""
1388
+ "Comma-separated list of numeric user IDs or user login names that will not "
1389
+ "be logged."
1390
+ msgstr ""
1391
+
1392
+ #: lib/tabs/logging-tab.php:83
1393
+ msgid "Trim logs"
1394
+ msgstr ""
1395
+
1396
+ #: lib/tabs/logging-tab.php:87
1397
+ msgid "How many days of logs to keep in the database."
1398
+ msgstr ""
1399
+
1400
+ #: lib/tabs/logging-tab.php:89
1401
+ #, php-format
1402
+ msgid " Set to %d for no trimming."
1403
+ msgstr ""
1404
+
1405
+ #: lib/tabs/logging-tab.php:95
1406
+ msgid "Export logs"
1407
+ msgstr ""
1408
+
1409
+ #: lib/tabs/logging-tab.php:98
1410
+ msgid "Export the log as a CSV file"
1411
+ msgstr ""
1412
+
1413
+ #: lib/tabs/logging-tab.php:99
1414
+ msgid "Push the button to export the search log as a CSV file."
1415
+ msgstr ""
1416
+
1417
+ #: lib/tabs/overview-tab.php:22
1418
+ msgid "Welcome to Relevanssi!"
1419
+ msgstr ""
1420
+
1421
+ #: lib/tabs/overview-tab.php:38
1422
+ msgid "Getting started"
1423
+ msgstr ""
1424
+
1425
+ #: lib/tabs/overview-tab.php:40
1426
+ msgid ""
1427
+ "You've already installed Relevanssi. That's a great first step towards good "
1428
+ "search experience!"
1429
+ msgstr ""
1430
+
1431
+ #: lib/tabs/overview-tab.php:44
1432
+ #, php-format
1433
+ msgid ""
1434
+ "Now, you need an index. Head over to the %1$s%2$s%3$s tab to set up the "
1435
+ "basic indexing options and to build the index."
1436
+ msgstr ""
1437
+
1438
+ #: lib/tabs/overview-tab.php:45
1439
+ msgid "You need to check at least the following options:"
1440
+ msgstr ""
1441
+
1442
+ #: lib/tabs/overview-tab.php:46
1443
+ msgid "Make sure the post types you want to include in the index are indexed."
1444
+ msgstr ""
1445
+
1446
+ #: lib/tabs/overview-tab.php:48
1447
+ #, php-format
1448
+ msgid ""
1449
+ "Do you use custom fields to store content you want included? If so, add "
1450
+ "those too. WooCommerce user? You probably want to include %s."
1451
+ msgstr ""
1452
+
1453
+ #: lib/tabs/overview-tab.php:49
1454
+ msgid ""
1455
+ "Then just save the options and build the index. First time you have to do it "
1456
+ "manually, but after that, it's fully automatic: all changes are reflected in "
1457
+ "the index without reindexing. (That said, it's a good idea to rebuild the "
1458
+ "index once a year.)"
1459
+ msgstr ""
1460
+
1461
+ #: lib/tabs/overview-tab.php:52
1462
+ msgid "Great, you already have an index!"
1463
+ msgstr ""
1464
+
1465
+ #: lib/tabs/overview-tab.php:56
1466
+ #, php-format
1467
+ msgid ""
1468
+ "On the %1$s%2$s%3$s tab, choose whether you want the default operator to be "
1469
+ "AND (less results, but more precise) or OR (more results, less precise)."
1470
+ msgstr ""
1471
+
1472
+ #: lib/tabs/overview-tab.php:60
1473
+ #, php-format
1474
+ msgid ""
1475
+ "The next step is the %1$s%2$s%3$s tab, where you can enable the custom "
1476
+ "excerpts that show the relevant part of post in the search results pages."
1477
+ msgstr ""
1478
+
1479
+ #: lib/tabs/overview-tab.php:61
1480
+ msgid ""
1481
+ "There are couple of options related to that, so if you want highlighting in "
1482
+ "the results, you can adjust the styles for that to suit the look of your "
1483
+ "site."
1484
+ msgstr ""
1485
+
1486
+ #: lib/tabs/overview-tab.php:64
1487
+ msgid ""
1488
+ "That's about it! Now you should have Relevanssi up and running. The rest of "
1489
+ "the options is mostly fine-tuning."
1490
+ msgstr ""
1491
+
1492
+ #: lib/tabs/overview-tab.php:67
1493
+ msgid ""
1494
+ "Relevanssi doesn't have a separate search widget. Instead, Relevanssi uses "
1495
+ "the default search widget. Any standard search form will do!"
1496
+ msgstr ""
1497
+
1498
+ #: lib/tabs/overview-tab.php:71
1499
+ msgid "Privacy and GDPR compliance"
1500
+ msgstr ""
1501
+
1502
+ #: lib/tabs/overview-tab.php:74
1503
+ #, php-format
1504
+ msgid ""
1505
+ "%1$sGDPR Compliance at Relevanssi knowledge base%2$s explains how using "
1506
+ "Relevanssi affects the GDPR compliance and the privacy policies of your "
1507
+ "site. Relevanssi also supports the %3$sprivacy policy tool%2$s and the "
1508
+ "WordPress user data export and erase tools."
1509
+ msgstr ""
1510
+
1511
+ #: lib/tabs/overview-tab.php:78
1512
+ msgid "For more information"
1513
+ msgstr ""
1514
+
1515
+ #: lib/tabs/overview-tab.php:80
1516
+ msgid ""
1517
+ "Relevanssi uses the WordPress contextual help. Click 'Help' on the top right "
1518
+ "corner for more information on many Relevanssi topics."
1519
+ msgstr ""
1520
+
1521
+ #: lib/tabs/overview-tab.php:82
1522
+ #, php-format
1523
+ msgid ""
1524
+ "%1$sRelevanssi knowledge base%2$s has lots of information about advanced "
1525
+ "Relevanssi use, including plenty of code samples."
1526
+ msgstr ""
1527
+
1528
+ #: lib/tabs/overview-tab.php:86
1529
+ msgid "Do you like Relevanssi?"
1530
+ msgstr ""
1531
+
1532
+ #: lib/tabs/overview-tab.php:88
1533
+ msgid ""
1534
+ "If you do, the best way to show your appreciation is to spread the word and "
1535
+ "perhaps give us a good review on WordPress.org."
1536
+ msgstr ""
1537
+
1538
+ #: lib/tabs/overview-tab.php:90
1539
+ #, php-format
1540
+ msgid ""
1541
+ "If you like Relevanssi, leaving a five-star review on WordPress.org will "
1542
+ "help others discover Relevanssi. %1$sYou can add your review here%2$s."
1543
+ msgstr ""
1544
+
1545
+ #: lib/tabs/overview-tab.php:95
1546
+ msgid "Relevanssi on Facebook"
1547
+ msgstr ""
1548
+
1549
+ #: lib/tabs/overview-tab.php:98
1550
+ msgid ""
1551
+ "Check out the Relevanssi page on Facebook for news and updates about "
1552
+ "Relevanssi."
1553
+ msgstr ""
1554
+
1555
+ #: lib/tabs/overview-tab.php:104
1556
+ msgid "Buy Relevanssi Premium"
1557
+ msgstr ""
1558
+
1559
+ #: lib/tabs/overview-tab.php:107
1560
+ msgid "Buy Relevanssi Premium now"
1561
+ msgstr ""
1562
+
1563
+ #: lib/tabs/overview-tab.php:109
1564
+ #, php-format
1565
+ msgid ""
1566
+ "use coupon code %1$s for 20%% discount (valid at least until the end of %2$s)"
1567
+ msgstr ""
1568
+
1569
+ #: lib/tabs/overview-tab.php:110
1570
+ msgid "Here are some improvements Relevanssi Premium offers:"
1571
+ msgstr ""
1572
+
1573
+ #: lib/tabs/overview-tab.php:112
1574
+ msgid "PDF content indexing"
1575
+ msgstr ""
1576
+
1577
+ #: lib/tabs/overview-tab.php:113
1578
+ msgid "Index and search user profile pages"
1579
+ msgstr ""
1580
+
1581
+ #: lib/tabs/overview-tab.php:114
1582
+ msgid "Index and search taxonomy term pages"
1583
+ msgstr ""
1584
+
1585
+ #: lib/tabs/overview-tab.php:115
1586
+ msgid "Multisite searches across many subsites"
1587
+ msgstr ""
1588
+
1589
+ #: lib/tabs/overview-tab.php:116
1590
+ msgid "WP CLI commands"
1591
+ msgstr ""
1592
+
1593
+ #: lib/tabs/overview-tab.php:117
1594
+ msgid "Adjust weights separately for each post type and taxonomy"
1595
+ msgstr ""
1596
+
1597
+ #: lib/tabs/overview-tab.php:118
1598
+ msgid "Internal link anchors can be search terms for the target posts"
1599
+ msgstr ""
1600
+
1601
+ #: lib/tabs/overview-tab.php:119
1602
+ msgid "Index and search any columns in the wp_posts database"
1603
+ msgstr ""
1604
+
1605
+ #: lib/tabs/overview-tab.php:120
1606
+ msgid ""
1607
+ "Hide Relevanssi branding from the User Searches page on a client installation"
1608
+ msgstr ""
1609
+
1610
+ #: lib/tabs/redirects-tab.php:20
1611
+ msgid ""
1612
+ "With Relevanssi Premium, you can set up redirects. These are keywords that "
1613
+ "automatically redirect the user to certain page, without going through the "
1614
+ "usual search process. For example, you could set it up so that all searches "
1615
+ "for \"job\" automatically lead to your \"Careers\" page."
1616
+ msgstr ""
1617
+
1618
+ #: lib/tabs/search-page.php:18
1619
+ msgid ""
1620
+ "You can use this search to perform Relevanssi searches without any "
1621
+ "restrictions from WordPress. You can search all post types here."
1622
+ msgstr ""
1623
+
1624
+ #: lib/tabs/search-page.php:23
1625
+ msgid "Search terms"
1626
+ msgstr ""
1627
+
1628
+ #: lib/tabs/search-page.php:31
1629
+ msgid "Posts per page"
1630
+ msgstr ""
1631
+
1632
+ #: lib/tabs/search-page.php:35
1633
+ msgid "All"
1634
+ msgstr ""
1635
+
1636
+ #: lib/tabs/search-page.php:44
1637
+ msgid "Search parameters"
1638
+ msgstr ""
1639
+
1640
+ #: lib/tabs/search-page.php:49
1641
+ #, php-format
1642
+ msgid ""
1643
+ "Use query parameter formatting here, the same that would appear on search "
1644
+ "page results URL. For example %s."
1645
+ msgstr ""
1646
+
1647
+ #: lib/tabs/searching-tab.php:66
1648
+ msgid "Default operator"
1649
+ msgstr ""
1650
+
1651
+ #: lib/tabs/searching-tab.php:70
1652
+ msgid "AND - require all terms"
1653
+ msgstr ""
1654
+
1655
+ #: lib/tabs/searching-tab.php:71
1656
+ msgid "OR - any term present is enough"
1657
+ msgstr ""
1658
+
1659
+ #: lib/tabs/searching-tab.php:73
1660
+ msgid "This setting determines the default operator for the search."
1661
+ msgstr ""
1662
+
1663
+ #: lib/tabs/searching-tab.php:77
1664
+ #, php-format
1665
+ msgid ""
1666
+ "You can override this setting with the %1$s query parameter, like this: %2$s"
1667
+ msgstr ""
1668
+
1669
+ #: lib/tabs/searching-tab.php:84
1670
+ msgid "Fallback to OR"
1671
+ msgstr ""
1672
+
1673
+ #: lib/tabs/searching-tab.php:88 lib/tabs/searching-tab.php:91
1674
+ msgid "Disable the OR fallback."
1675
+ msgstr ""
1676
+
1677
+ #: lib/tabs/searching-tab.php:94
1678
+ msgid ""
1679
+ "By default, if AND search fails to find any results, Relevanssi will switch "
1680
+ "the operator to OR and run the search again. You can prevent that by "
1681
+ "checking this option."
1682
+ msgstr ""
1683
+
1684
+ #: lib/tabs/searching-tab.php:99
1685
+ msgid "Default order"
1686
+ msgstr ""
1687
+
1688
+ #: lib/tabs/searching-tab.php:103
1689
+ msgid "Relevance (highly recommended)"
1690
+ msgstr ""
1691
+
1692
+ #: lib/tabs/searching-tab.php:104
1693
+ msgid "Post date"
1694
+ msgstr ""
1695
+
1696
+ #: lib/tabs/searching-tab.php:107
1697
+ #, php-format
1698
+ msgid ""
1699
+ "If you want to override this or use multi-layered ordering (eg. first order "
1700
+ "by relevance, but sort ties by post title), you can use the %s query "
1701
+ "variable. See Help for more information."
1702
+ msgstr ""
1703
+
1704
+ #: lib/tabs/searching-tab.php:109
1705
+ msgid ""
1706
+ " If you want date-based results, see the recent post bonus in the Weights "
1707
+ "section."
1708
+ msgstr ""
1709
+
1710
+ #: lib/tabs/searching-tab.php:115
1711
+ msgid "Keyword matching"
1712
+ msgstr ""
1713
+
1714
+ #: lib/tabs/searching-tab.php:119
1715
+ msgid "Whole words"
1716
+ msgstr ""
1717
+
1718
+ #: lib/tabs/searching-tab.php:120
1719
+ msgid "Partial words"
1720
+ msgstr ""
1721
+
1722
+ #: lib/tabs/searching-tab.php:121
1723
+ msgid "Partial words if no hits for whole words"
1724
+ msgstr ""
1725
+
1726
+ #: lib/tabs/searching-tab.php:123
1727
+ msgid ""
1728
+ "Whole words means Relevanssi only finds posts that include the whole search "
1729
+ "term."
1730
+ msgstr ""
1731
+
1732
+ #: lib/tabs/searching-tab.php:124
1733
+ msgid ""
1734
+ "Partial words also includes cases where the word in the index begins or ends "
1735
+ "with the search term (searching for 'ana' will match 'anaconda' or 'banana', "
1736
+ "but not 'banal'). See Help, if you want to make Relevanssi match also inside "
1737
+ "words."
1738
+ msgstr ""
1739
+
1740
+ #: lib/tabs/searching-tab.php:129
1741
+ msgid "Weights"
1742
+ msgstr ""
1743
+
1744
+ #: lib/tabs/searching-tab.php:132
1745
+ msgid ""
1746
+ "All the weights in the table are multipliers. To increase the weight of an "
1747
+ "element, use a higher number. To make an element less significant, use a "
1748
+ "number lower than 1."
1749
+ msgstr ""
1750
+
1751
+ #: lib/tabs/searching-tab.php:136
1752
+ msgid "Element"
1753
+ msgstr ""
1754
+
1755
+ #: lib/tabs/searching-tab.php:137
1756
+ msgid "Weight"
1757
+ msgstr ""
1758
+
1759
+ #: lib/tabs/searching-tab.php:142
1760
+ msgid "Content"
1761
+ msgstr ""
1762
+
1763
+ #: lib/tabs/searching-tab.php:150
1764
+ msgid "Titles"
1765
+ msgstr ""
1766
+
1767
+ #: lib/tabs/searching-tab.php:163
1768
+ msgid "Comment text"
1769
+ msgstr ""
1770
+
1771
+ #: lib/tabs/searching-tab.php:192
1772
+ msgid "Boost exact matches"
1773
+ msgstr ""
1774
+
1775
+ #: lib/tabs/searching-tab.php:196 lib/tabs/searching-tab.php:199
1776
+ msgid "Give boost to exact matches."
1777
+ msgstr ""
1778
+
1779
+ #: lib/tabs/searching-tab.php:203
1780
+ #, php-format
1781
+ msgid ""
1782
+ "If you enable this option, matches where the search query appears in title "
1783
+ "or content as a phrase will get a weight boost. To adjust the boost, you can "
1784
+ "use the %s filter hook. See Help for more details."
1785
+ msgstr ""
1786
+
1787
+ #: lib/tabs/searching-tab.php:211
1788
+ msgid "WPML"
1789
+ msgstr ""
1790
+
1791
+ #: lib/tabs/searching-tab.php:215 lib/tabs/searching-tab.php:218
1792
+ msgid "Limit results to current language."
1793
+ msgstr ""
1794
+
1795
+ #: lib/tabs/searching-tab.php:221
1796
+ msgid ""
1797
+ "Enabling this option will restrict the results to the currently active "
1798
+ "language. If the option is disabled, results will include posts in all "
1799
+ "languages."
1800
+ msgstr ""
1801
+
1802
+ #: lib/tabs/searching-tab.php:228
1803
+ msgid "Polylang"
1804
+ msgstr ""
1805
+
1806
+ #: lib/tabs/searching-tab.php:232 lib/tabs/searching-tab.php:235
1807
+ msgid "Allow results from all languages."
1808
+ msgstr ""
1809
+
1810
+ #: lib/tabs/searching-tab.php:238
1811
+ msgid ""
1812
+ "By default Polylang restricts the search to the current language. Enabling "
1813
+ "this option will lift this restriction."
1814
+ msgstr ""
1815
+
1816
+ #: lib/tabs/searching-tab.php:248 lib/tabs/searching-tab.php:251
1817
+ msgid "Use Relevanssi for admin searches."
1818
+ msgstr ""
1819
+
1820
+ #: lib/tabs/searching-tab.php:254
1821
+ msgid ""
1822
+ "If checked, Relevanssi will be used for searches in the admin interface. The "
1823
+ "page search doesn't use Relevanssi, because WordPress works like that."
1824
+ msgstr ""
1825
+
1826
+ #: lib/tabs/searching-tab.php:260
1827
+ #, php-format
1828
+ msgid "Respect %s"
1829
+ msgstr ""
1830
+
1831
+ #: lib/tabs/searching-tab.php:264
1832
+ msgid "Respect exclude_from_search for custom post types"
1833
+ msgstr ""
1834
+
1835
+ #: lib/tabs/searching-tab.php:268
1836
+ #, php-format
1837
+ msgid "Respect %s for custom post types"
1838
+ msgstr ""
1839
+
1840
+ #: lib/tabs/searching-tab.php:270
1841
+ msgid ""
1842
+ "If checked, Relevanssi won't display posts of custom post types that have "
1843
+ "'exclude_from_search' set to true."
1844
+ msgstr ""
1845
+
1846
+ #: lib/tabs/searching-tab.php:282
1847
+ msgid ""
1848
+ "You probably should uncheck this option, because you've set Relevanssi to "
1849
+ "index the following non-public post types:"
1850
+ msgstr ""
1851
+
1852
+ #: lib/tabs/searching-tab.php:295
1853
+ msgid "Throttle searches"
1854
+ msgstr ""
1855
+
1856
+ #: lib/tabs/searching-tab.php:305
1857
+ msgid "Throttling the search does not work when sorting the posts by date."
1858
+ msgstr ""
1859
+
1860
+ #: lib/tabs/searching-tab.php:315 lib/tabs/searching-tab.php:318
1861
+ msgid "Throttle searches."
1862
+ msgstr ""
1863
+
1864
+ #: lib/tabs/searching-tab.php:322
1865
+ msgid "Your database is so small that you don't need to enable this."
1866
+ msgstr ""
1867
+
1868
+ #: lib/tabs/searching-tab.php:324
1869
+ msgid ""
1870
+ "If this option is checked, Relevanssi will limit search results to at most "
1871
+ "500 results per term. This will improve performance, but may cause some "
1872
+ "relevant documents to go unfound. See Help for more details."
1873
+ msgstr ""
1874
+
1875
+ #: lib/tabs/searching-tab.php:330
1876
+ msgid "Category restriction"
1877
+ msgstr ""
1878
+
1879
+ #: lib/tabs/searching-tab.php:350
1880
+ msgid ""
1881
+ "You can restrict search results to a category for all searches. For "
1882
+ "restricting on a per-search basis and more options (eg. tag restrictions), "
1883
+ "see Help."
1884
+ msgstr ""
1885
+
1886
+ #: lib/tabs/searching-tab.php:355
1887
+ msgid "Category exclusion"
1888
+ msgstr ""
1889
+
1890
+ #: lib/tabs/searching-tab.php:375
1891
+ msgid ""
1892
+ "Posts in these categories are not included in search results. To exclude the "
1893
+ "posts completely from the index, see Help."
1894
+ msgstr ""
1895
+
1896
+ #: lib/tabs/searching-tab.php:380
1897
+ msgid "Post exclusion"
1898
+ msgstr ""
1899
+
1900
+ #: lib/tabs/searching-tab.php:384
1901
+ msgid ""
1902
+ "Enter a comma-separated list of post or page ID's to exclude those pages "
1903
+ "from the search results."
1904
+ msgstr ""
1905
+
1906
+ #: lib/tabs/searching-tab.php:386
1907
+ msgid ""
1908
+ "With Relevanssi Premium, it's better to use the check box on post edit "
1909
+ "pages. That will remove the posts completely from the index, and will work "
1910
+ "with multisite searches unlike this setting."
1911
+ msgstr ""
1912
+
1913
+ #: lib/tabs/stopwords-tab.php:53
1914
+ msgid ""
1915
+ "Enter a word here to add it to the list of stopwords. The word will "
1916
+ "automatically be removed from the index, so re-indexing is not necessary. "
1917
+ "You can enter many words at the same time, separate words with commas."
1918
+ msgstr ""
1919
+
1920
+ #: lib/tabs/stopwords-tab.php:58
1921
+ msgid "Stopword(s) to add"
1922
+ msgstr ""
1923
+
1924
+ #: lib/tabs/stopwords-tab.php:66
1925
+ msgid ""
1926
+ "Here's a list of stopwords in the database. Click a word to remove it from "
1927
+ "stopwords. Removing stopwords won't automatically return them to index, so "
1928
+ "you need to re-index all posts after removing stopwords to get those words "
1929
+ "back to index."
1930
+ msgstr ""
1931
+
1932
+ #: lib/tabs/stopwords-tab.php:71
1933
+ msgid "Current stopwords"
1934
+ msgstr ""
1935
+
1936
+ #: lib/tabs/stopwords-tab.php:92
1937
+ msgid "Exportable list of stopwords"
1938
+ msgstr ""
1939
+
1940
+ #: lib/tabs/stopwords-tab.php:96
1941
+ msgid ""
1942
+ "You can copy the list of stopwords here if you want to back up the list, "
1943
+ "copy it to a different blog or otherwise need the list."
1944
+ msgstr ""
1945
+
1946
+ #: lib/tabs/stopwords-tab.php:131
1947
+ msgid "25 most common words in the index"
1948
+ msgstr ""
1949
+
1950
+ #: lib/tabs/stopwords-tab.php:132
1951
+ msgid ""
1952
+ "These words are excellent stopword material. A word that appears in most of "
1953
+ "the posts in the database is quite pointless when searching. This is also an "
1954
+ "easy way to create a completely new stopword list, if one isn't available in "
1955
+ "your language. Click the word to add the word to the stopword list. The word "
1956
+ "will also be removed from the index, so rebuilding the index is not "
1957
+ "necessary."
1958
+ msgstr ""
1959
+
1960
+ #: lib/tabs/stopwords-tab.php:138
1961
+ msgid "Stopword Candidates"
1962
+ msgstr ""
1963
+
1964
+ #: lib/tabs/stopwords-tab.php:145
1965
+ msgid "Add to stopwords"
1966
+ msgstr ""
1967
+
1968
+ #: lib/tabs/synonyms-tab.php:33
1969
+ msgid ""
1970
+ "Add synonyms here to make the searches find better results. If you notice "
1971
+ "your users frequently misspelling a product name, or for other reasons use "
1972
+ "many names for one thing, adding synonyms will make the results better."
1973
+ msgstr ""
1974
+
1975
+ #: lib/tabs/synonyms-tab.php:35
1976
+ msgid ""
1977
+ "Do not go overboard, though, as too many synonyms can make the search "
1978
+ "confusing: users understand if a search query doesn't match everything, but "
1979
+ "they get confused if the searches match to unexpected things."
1980
+ msgstr ""
1981
+
1982
+ #: lib/tabs/synonyms-tab.php:39
1983
+ msgid ""
1984
+ "The format here is <code>key = value</code>. If you add <code>dog = hound</"
1985
+ "code> to the list of synonyms, searches for <code>dog</code> automatically "
1986
+ "become a search for <code>dog hound</code> and will thus match to posts that "
1987
+ "include either <code>dog</code> or <code>hound</code>. This only works in OR "
1988
+ "searches: in AND searches the synonyms only restrict the search, as now the "
1989
+ "search only finds posts that contain <strong>both</strong> <code>dog</code> "
1990
+ "and <code>hound</code>."
1991
+ msgstr ""
1992
+
1993
+ #: lib/tabs/synonyms-tab.php:41
1994
+ msgid ""
1995
+ "The synonyms are one direction only. If you want both directions, add the "
1996
+ "synonym again, reversed: <code>hound = dog</code>."
1997
+ msgstr ""
1998
+
1999
+ #: lib/tabs/synonyms-tab.php:43
2000
+ msgid ""
2001
+ "It's possible to use phrases for the value, but not for the key. <code>dog = "
2002
+ "\"great dane\"</code> works, but <code>\"great dane\" = dog</code> doesn't."
2003
+ msgstr ""
2004
+
2005
+ #: lib/tabs/synonyms-tab.php:46
2006
+ msgid ""
2007
+ "If you want to use synonyms in AND searches, enable synonym indexing on the "
2008
+ "Indexing tab."
2009
+ msgstr ""
2010
+
2011
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/internationalized-plugin.php:11
2012
+ msgid "This is a dummy plugin"
2013
+ msgstr ""
2014
+
2015
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/parsers.php:42
2016
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/parsers.php:72
2017
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/parsers.php:80
2018
+ msgid "There was an error when reading this WXR file"
2019
+ msgstr ""
2020
+
2021
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/parsers.php:43
2022
+ msgid ""
2023
+ "Details are shown above. The importer will now try again with a different "
2024
+ "parser..."
2025
+ msgstr ""
2026
+
2027
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/parsers.php:84
2028
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/parsers.php:89
2029
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/parsers.php:306
2030
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/parsers.php:495
2031
+ msgid ""
2032
+ "This does not appear to be a WXR file, missing/invalid WXR version number"
2033
+ msgstr ""
2034
+
2035
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:132
2036
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:141
2037
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:192
2038
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:196
2039
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:205
2040
+ msgid "Sorry, there has been an error."
2041
+ msgstr ""
2042
+
2043
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:133
2044
+ msgid "The file does not exist, please try again."
2045
+ msgstr ""
2046
+
2047
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:176
2048
+ msgid "All done."
2049
+ msgstr ""
2050
+
2051
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:176
2052
+ msgid "Have fun!"
2053
+ msgstr ""
2054
+
2055
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:177
2056
+ msgid "Remember to update the passwords and roles of imported users."
2057
+ msgstr ""
2058
+
2059
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:197
2060
+ #, php-format
2061
+ msgid ""
2062
+ "The export file could not be found at <code>%s</code>. It is likely that "
2063
+ "this was caused by a permissions problem."
2064
+ msgstr ""
2065
+
2066
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:213
2067
+ #, php-format
2068
+ msgid ""
2069
+ "This WXR file (version %s) may not be supported by this version of the "
2070
+ "importer. Please consider updating."
2071
+ msgstr ""
2072
+
2073
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:238
2074
+ #, php-format
2075
+ msgid ""
2076
+ "Failed to import author %s. Their posts will be attributed to the current "
2077
+ "user."
2078
+ msgstr ""
2079
+
2080
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:264
2081
+ msgid "Assign Authors"
2082
+ msgstr ""
2083
+
2084
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:265
2085
+ msgid ""
2086
+ "To make it easier for you to edit and save the imported content, you may "
2087
+ "want to reassign the author of the imported item to an existing user of this "
2088
+ "site. For example, you may want to import all the entries as <code>admin</"
2089
+ "code>s entries."
2090
+ msgstr ""
2091
+
2092
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:267
2093
+ #, php-format
2094
+ msgid ""
2095
+ "If a new user is created by WordPress, a new password will be randomly "
2096
+ "generated and the new user&#8217;s role will be set as %s. Manually changing "
2097
+ "the new user&#8217;s details will be necessary."
2098
+ msgstr ""
2099
+
2100
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:277
2101
+ msgid "Import Attachments"
2102
+ msgstr ""
2103
+
2104
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:280
2105
+ msgid "Download and import file attachments"
2106
+ msgstr ""
2107
+
2108
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:297
2109
+ msgid "Import author:"
2110
+ msgstr ""
2111
+
2112
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:308
2113
+ msgid "or create new user with login name:"
2114
+ msgstr ""
2115
+
2116
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:311
2117
+ msgid "as a new user:"
2118
+ msgstr ""
2119
+
2120
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:319
2121
+ msgid "assign posts to an existing user:"
2122
+ msgstr ""
2123
+
2124
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:321
2125
+ msgid "or assign posts to an existing user:"
2126
+ msgstr ""
2127
+
2128
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:322
2129
+ msgid "- Select -"
2130
+ msgstr ""
2131
+
2132
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:372
2133
+ #, php-format
2134
+ msgid ""
2135
+ "Failed to create new user for %s. Their posts will be attributed to the "
2136
+ "current user."
2137
+ msgstr ""
2138
+
2139
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:424
2140
+ #, php-format
2141
+ msgid "Failed to import category %s"
2142
+ msgstr ""
2143
+
2144
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:467
2145
+ #, php-format
2146
+ msgid "Failed to import post tag %s"
2147
+ msgstr ""
2148
+
2149
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:516
2150
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:738
2151
+ #, php-format
2152
+ msgid "Failed to import %s %s"
2153
+ msgstr ""
2154
+
2155
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:605
2156
+ #, php-format
2157
+ msgid "Failed to import &#8220;%s&#8221;: Invalid post type %s"
2158
+ msgstr ""
2159
+
2160
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:642
2161
+ #, php-format
2162
+ msgid "%s &#8220;%s&#8221; already exists."
2163
+ msgstr ""
2164
+
2165
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:704
2166
+ #, php-format
2167
+ msgid "Failed to import %s &#8220;%s&#8221;"
2168
+ msgstr ""
2169
+
2170
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:869
2171
+ msgid "Menu item skipped due to missing menu slug"
2172
+ msgstr ""
2173
+
2174
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:876
2175
+ #, php-format
2176
+ msgid "Menu item skipped due to invalid menu slug: %s"
2177
+ msgstr ""
2178
+
2179
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:939
2180
+ msgid "Fetching attachments is not enabled"
2181
+ msgstr ""
2182
+
2183
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:952
2184
+ msgid "Invalid file type"
2185
+ msgstr ""
2186
+
2187
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:996
2188
+ msgid "Remote server did not respond"
2189
+ msgstr ""
2190
+
2191
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:1002
2192
+ #, php-format
2193
+ msgid "Remote server returned error response %1$d %2$s"
2194
+ msgstr ""
2195
+
2196
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:1009
2197
+ msgid "Remote file is incorrect size"
2198
+ msgstr ""
2199
+
2200
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:1014
2201
+ msgid "Zero size file downloaded"
2202
+ msgstr ""
2203
+
2204
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:1020
2205
+ #, php-format
2206
+ msgid "Remote file is too large, limit is %s"
2207
+ msgstr ""
2208
+
2209
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:1119
2210
+ msgid "Import WordPress"
2211
+ msgstr ""
2212
+
2213
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:1126
2214
+ #, php-format
2215
+ msgid ""
2216
+ "A new version of this importer is available. Please update to version %s to "
2217
+ "ensure compatibility with newer export files."
2218
+ msgstr ""
2219
+
2220
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:1141
2221
+ msgid ""
2222
+ "Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import "
2223
+ "the posts, pages, comments, custom fields, categories, and tags into this "
2224
+ "site."
2225
+ msgstr ""
2226
+
2227
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:1142
2228
+ msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
2229
+ msgstr ""
2230
+
2231
+ #: vendor/rask/wp-test-framework/src/phpunit/data/plugins/wordpress-importer/wordpress-importer.php:1216
2232
+ msgid ""
2233
+ "Import <strong>posts, pages, comments, custom fields, categories, and tags</"
2234
+ "strong> from a WordPress export file."
2235
+ msgstr ""
2236
+
2237
+ #: vendor/rask/wp-test-framework/src/phpunit/data/themedir1/internationalized-theme/functions.php:7
2238
+ msgid "This is a dummy theme"
2239
+ msgstr ""
2240
+
2241
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/category/wpDropdownCategories.php:196
2242
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/category/wpDropdownCategories.php:221
2243
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/category/wpDropdownCategories.php:246
2244
+ msgid "Select one"
2245
+ msgstr ""
2246
+
2247
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:41
2248
+ msgid "No Comments"
2249
+ msgstr ""
2250
+
2251
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:46
2252
+ msgid "1 Comment"
2253
+ msgstr ""
2254
+
2255
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:51
2256
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:97
2257
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:117
2258
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:127
2259
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:132
2260
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:137
2261
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:142
2262
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:147
2263
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:152
2264
+ #, php-format
2265
+ msgid "%s Comment"
2266
+ msgstr ""
2267
+
2268
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:116
2269
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:146
2270
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:151
2271
+ msgid "% Comments"
2272
+ msgstr ""
2273
+
2274
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:126
2275
+ msgid "<b>%</b> Replies"
2276
+ msgstr ""
2277
+
2278
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:131
2279
+ msgid "% <span class=\"reply\">comments &rarr;</span>"
2280
+ msgstr ""
2281
+
2282
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:136
2283
+ msgid "% Replies"
2284
+ msgstr ""
2285
+
2286
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/comment/template.php:141
2287
+ #, php-format
2288
+ msgid "View all % comments"
2289
+ msgstr ""
2290
+
2291
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/manager.php:2236
2292
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/manager.php:2251
2293
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/manager.php:2298
2294
+ msgid "Invalid value."
2295
+ msgstr ""
2296
+
2297
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/manager.php:3188
2298
+ msgid "Enter desktop preview mode"
2299
+ msgstr ""
2300
+
2301
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/manager.php:3192
2302
+ msgid "Enter tablet preview mode"
2303
+ msgstr ""
2304
+
2305
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/manager.php:3195
2306
+ msgid "Enter mobile preview mode"
2307
+ msgstr ""
2308
+
2309
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/manager.php:3220
2310
+ msgid "Enter custom-device preview mode"
2311
+ msgstr ""
2312
+
2313
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/manager.php:3378
2314
+ msgid "You must supply a value"
2315
+ msgstr ""
2316
+
2317
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/nav-menu-item-setting.php:1139
2318
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/nav-menu-item-setting.php:1164
2319
+ msgid "Post Type Archive"
2320
+ msgstr ""
2321
+
2322
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/nav-menus.php:137
2323
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/nav-menus.php:432
2324
+ msgid "Custom Link"
2325
+ msgstr ""
2326
+
2327
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/nav-menus.php:554
2328
+ msgid "Post"
2329
+ msgstr ""
2330
+
2331
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/nav-menus.php:560
2332
+ msgid "Page"
2333
+ msgstr ""
2334
+
2335
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/nav-menus.php:566
2336
+ msgid "Category"
2337
+ msgstr ""
2338
+
2339
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/nav-menus.php:572
2340
+ msgid "Tag"
2341
+ msgstr ""
2342
+
2343
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/customize/nav-menus.php:581
2344
+ msgid "Format"
2345
+ msgstr ""
2346
+
2347
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/editor/wpEditors.php:40
2348
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/editor/wpEditors.php:79
2349
+ msgid "Y/m/d"
2350
+ msgstr ""
2351
+
2352
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/includes/helpers.php:265
2353
+ msgid "Incorrect usage test"
2354
+ msgstr ""
2355
+
2356
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/l10n/loadTextdomain.php:121
2357
+ msgid "just some string"
2358
+ msgstr ""
2359
+
2360
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/l10n/loadTextdomainJustInTime.php:248
2361
+ msgid "Foo"
2362
+ msgstr ""
2363
+
2364
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/l10n/loadTextdomainJustInTime.php:249
2365
+ msgid "Bar"
2366
+ msgstr ""
2367
+
2368
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/l10n/loadTextdomainJustInTime.php:250
2369
+ msgid "Baz"
2370
+ msgstr ""
2371
+
2372
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/l10n/loadTextdomainJustInTime.php:251
2373
+ msgid "Foo Bar"
2374
+ msgstr ""
2375
+
2376
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/l10n/loadTextdomainJustInTime.php:252
2377
+ msgid "Foo Bar Baz"
2378
+ msgstr ""
2379
+
2380
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/l10n/localeSwitcher.php:71
2381
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/l10n/localeSwitcher.php:127
2382
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/l10n/localeSwitcher.php:167
2383
+ msgid "Invalid parameter."
2384
+ msgstr ""
2385
+
2386
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:23
2387
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:40
2388
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:50
2389
+ msgid "Sunday"
2390
+ msgstr ""
2391
+
2392
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:24
2393
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:41
2394
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:51
2395
+ msgid "Monday"
2396
+ msgstr ""
2397
+
2398
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:25
2399
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:42
2400
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:52
2401
+ msgid "Tuesday"
2402
+ msgstr ""
2403
+
2404
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:26
2405
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:43
2406
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:53
2407
+ msgid "Wednesday"
2408
+ msgstr ""
2409
+
2410
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:27
2411
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:44
2412
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:54
2413
+ msgid "Thursday"
2414
+ msgstr ""
2415
+
2416
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:28
2417
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:45
2418
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:55
2419
+ msgid "Friday"
2420
+ msgstr ""
2421
+
2422
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:29
2423
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:46
2424
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:56
2425
+ msgid "Saturday"
2426
+ msgstr ""
2427
+
2428
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:40
2429
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:46
2430
+ msgid "S"
2431
+ msgstr ""
2432
+
2433
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:41
2434
+ msgid "M"
2435
+ msgstr ""
2436
+
2437
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:42
2438
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:44
2439
+ msgid "T"
2440
+ msgstr ""
2441
+
2442
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:43
2443
+ msgid "W"
2444
+ msgstr ""
2445
+
2446
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:45
2447
+ msgid "F"
2448
+ msgstr ""
2449
+
2450
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:50
2451
+ msgid "Sun"
2452
+ msgstr ""
2453
+
2454
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:51
2455
+ msgid "Mon"
2456
+ msgstr ""
2457
+
2458
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:52
2459
+ msgid "Tue"
2460
+ msgstr ""
2461
+
2462
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:53
2463
+ msgid "Wed"
2464
+ msgstr ""
2465
+
2466
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:54
2467
+ msgid "Thu"
2468
+ msgstr ""
2469
+
2470
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:55
2471
+ msgid "Fri"
2472
+ msgstr ""
2473
+
2474
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:56
2475
+ msgid "Sat"
2476
+ msgstr ""
2477
+
2478
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:60
2479
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:75
2480
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:87
2481
+ msgid "January"
2482
+ msgstr ""
2483
+
2484
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:61
2485
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:76
2486
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:88
2487
+ msgid "February"
2488
+ msgstr ""
2489
+
2490
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:62
2491
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:77
2492
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:89
2493
+ msgid "March"
2494
+ msgstr ""
2495
+
2496
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:63
2497
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:78
2498
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:90
2499
+ msgid "April"
2500
+ msgstr ""
2501
+
2502
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:64
2503
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:79
2504
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:91
2505
+ msgid "May"
2506
+ msgstr ""
2507
+
2508
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:65
2509
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:80
2510
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:92
2511
+ msgid "June"
2512
+ msgstr ""
2513
+
2514
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:66
2515
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:81
2516
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:93
2517
+ msgid "July"
2518
+ msgstr ""
2519
+
2520
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:67
2521
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:82
2522
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:94
2523
+ msgid "August"
2524
+ msgstr ""
2525
+
2526
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:68
2527
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:83
2528
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:95
2529
+ msgid "September"
2530
+ msgstr ""
2531
+
2532
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:69
2533
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:96
2534
+ msgid "October"
2535
+ msgstr ""
2536
+
2537
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:70
2538
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:97
2539
+ msgid "November"
2540
+ msgstr ""
2541
+
2542
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:71
2543
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:98
2544
+ msgid "December"
2545
+ msgstr ""
2546
+
2547
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:87
2548
+ msgid "Jan"
2549
+ msgstr ""
2550
+
2551
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:88
2552
+ msgid "Feb"
2553
+ msgstr ""
2554
+
2555
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:89
2556
+ msgid "Mar"
2557
+ msgstr ""
2558
+
2559
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:90
2560
+ msgid "Apr"
2561
+ msgstr ""
2562
+
2563
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:92
2564
+ msgid "Jun"
2565
+ msgstr ""
2566
+
2567
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:93
2568
+ msgid "Jul"
2569
+ msgstr ""
2570
+
2571
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:94
2572
+ msgid "Aug"
2573
+ msgstr ""
2574
+
2575
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:95
2576
+ msgid "Sep"
2577
+ msgstr ""
2578
+
2579
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:96
2580
+ msgid "Oct"
2581
+ msgstr ""
2582
+
2583
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:97
2584
+ msgid "Nov"
2585
+ msgstr ""
2586
+
2587
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:98
2588
+ msgid "Dec"
2589
+ msgstr ""
2590
+
2591
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:102
2592
+ msgid "am"
2593
+ msgstr ""
2594
+
2595
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:103
2596
+ msgid "AM"
2597
+ msgstr ""
2598
+
2599
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:104
2600
+ msgid "pm"
2601
+ msgstr ""
2602
+
2603
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/locale.php:105
2604
+ msgid "PM"
2605
+ msgstr ""
2606
+
2607
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/oembed/template.php:269
2608
+ #, php-format
2609
+ msgid "&#8220;%1$s&#8221; &#8212; %2$s"
2610
+ msgstr ""
2611
+
2612
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/theme/themeDir.php:185
2613
+ msgid "Stylesheet is missing."
2614
+ msgstr ""
2615
+
2616
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/theme/themeDir.php:190
2617
+ #, php-format
2618
+ msgid ""
2619
+ "The theme defines itself as its parent theme. Please check the %s header."
2620
+ msgstr ""
2621
+
2622
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/deleteTerm.php:29
2623
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/deleteTerm.php:38
2624
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/editTerm.php:41
2625
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/editTerm.php:50
2626
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTaxonomy.php:20
2627
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTaxonomy.php:29
2628
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTerm.php:30
2629
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTerm.php:39
2630
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTerms.php:20
2631
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTerms.php:29
2632
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/newTerm.php:30
2633
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/newTerm.php:39
2634
+ msgid "Invalid taxonomy."
2635
+ msgstr ""
2636
+
2637
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/deleteTerm.php:47
2638
+ msgid "Sorry, you are not allowed to delete this term."
2639
+ msgstr ""
2640
+
2641
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/deleteTerm.php:56
2642
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/editTerm.php:77
2643
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTerm.php:58
2644
+ msgid "Empty Term."
2645
+ msgstr ""
2646
+
2647
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/deleteTerm.php:65
2648
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/editTerm.php:68
2649
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTerm.php:67
2650
+ msgid "Invalid term ID."
2651
+ msgstr ""
2652
+
2653
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/editComment.php:63
2654
+ msgid "Sorry, you are not allowed to moderate or edit this comment."
2655
+ msgstr ""
2656
+
2657
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/editTerm.php:59
2658
+ msgid "Sorry, you are not allowed to edit this term."
2659
+ msgstr ""
2660
+
2661
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/editTerm.php:97
2662
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/newTerm.php:67
2663
+ msgid "The term name cannot be empty."
2664
+ msgstr ""
2665
+
2666
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/editTerm.php:117
2667
+ msgid "Cannot set parent term, taxonomy is not hierarchical."
2668
+ msgstr ""
2669
+
2670
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/editTerm.php:202
2671
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/newTerm.php:126
2672
+ msgid "Parent term does not exist."
2673
+ msgstr ""
2674
+
2675
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/editTerm.php:223
2676
+ #, php-format
2677
+ msgid "The slug &#8220;%s&#8221; is already in use by another term."
2678
+ msgstr ""
2679
+
2680
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTaxonomy.php:38
2681
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTerms.php:38
2682
+ msgid "Sorry, you are not allowed to assign terms in this taxonomy."
2683
+ msgstr ""
2684
+
2685
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/getTerm.php:48
2686
+ msgid "Sorry, you are not allowed to assign this term."
2687
+ msgstr ""
2688
+
2689
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/newTerm.php:48
2690
+ msgid "Sorry, you are not allowed to create terms in this taxonomy."
2691
+ msgstr ""
2692
+
2693
+ #: vendor/rask/wp-test-framework/src/phpunit/tests/xmlrpc/wp/newTerm.php:87
2694
+ msgid "This taxonomy is not hierarchical."
2695
+ msgstr ""