Relevanssi – A Better Search - Version 3.5.7

Version Description

  • An improved version of the sorting function will not throw notices when Intuitive Custom Post Order plugin is used.
  • New filter: relevanssi_missing_sort_key can be used to adjust the result sorting when using keys that are not present in all posts (eg. menu_order).
  • Czech translation and stopwords, thanks to Michael Kucera.
  • Relevanssi broke the WP admin menu search when admin searches were enabled.
  • Relevanssi broke the admin page search under WP 4.7. Relevanssi is now disabled in admin page searches.
  • The way accented characters are handled in highlighting is improved. A new filter, relevanssi_accents_replacement_arrays, can be used to adjust the accent replacement.
Download this release

Release Info

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

Code changes from version 3.5.6.1 to 3.5.7

lib/common.php CHANGED
@@ -54,42 +54,66 @@ function relevanssi_wpml_filter($data) {
54
  /**
55
  * Function by Matthew Hood http://my.php.net/manual/en/function.sort.php#75036
56
  */
57
- function relevanssi_object_sort(&$data, $key, $dir = 'desc') {
58
- if ('title' == $key) $key = 'post_title';
59
- if ('date' == $key) $key = 'post_date';
60
- if (!isset($data[0]->$key)) return; // trying to sort by a non-existent key
61
- $dir = strtolower($dir);
62
- for ($i = count($data) - 1; $i >= 0; $i--) {
63
- $swapped = false;
64
- for ($j = 0; $j < $i; $j++) {
65
- if (function_exists('mb_strtolower')) {
66
- $key1 = mb_strtolower($data[$j]->$key);
67
- $key2 = mb_strtolower($data[$j + 1]->$key);
68
- }
69
- else {
70
- $key1 = strtolower($data[$j]->$key);
71
- $key2 = strtolower($data[$j + 1]->$key);
72
- }
73
- if ('asc' == $dir) {
74
- if ($key1 > $key2) {
75
- $tmp = $data[$j];
76
- $data[$j] = $data[$j + 1];
77
- $data[$j + 1] = $tmp;
78
- $swapped = true;
79
- }
80
- }
81
- else {
82
- if ($key1 < $key2) {
83
- $tmp = $data[$j];
84
- $data[$j] = $data[$j + 1];
85
- $data[$j + 1] = $tmp;
86
- $swapped = true;
87
- }
88
- }
89
- }
90
- if (!$swapped) return;
91
- }
92
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
 
94
  function relevanssi_show_matches($data, $hit) {
95
  isset($data['body_matches'][$hit]) ? $body = $data['body_matches'][$hit] : $body = 0;
@@ -472,6 +496,16 @@ function relevanssi_prevent_default_request( $request, $query ) {
472
  $admin_search_ok = false;
473
  }
474
 
 
 
 
 
 
 
 
 
 
 
475
  if (!is_admin() && $prevent )
476
  $request = "SELECT * FROM $wpdb->posts WHERE 1=2";
477
  else if ('on' == get_option('relevanssi_admin_search') && $admin_search_ok )
54
  /**
55
  * Function by Matthew Hood http://my.php.net/manual/en/function.sort.php#75036
56
  */
57
+ function relevanssi_object_sort(&$data, $key, $dir = 'desc') {
58
+ if ('title' == $key) $key = 'post_title';
59
+ if ('date' == $key) $key = 'post_date';
60
+ if (!isset($data[0]->$key)) return; // trying to sort by a non-existent key
61
+ $dir = strtolower($dir);
62
+ for ($i = count($data) - 1; $i >= 0; $i--) {
63
+ $swapped = false;
64
+ for ($j = 0; $j < $i; $j++) {
65
+ if (function_exists('mb_strtolower')) {
66
+ $key1 = "";
67
+ $key2 = "";
68
+ if (isset($data[$j]->$key)) {
69
+ $key1 = mb_strtolower($data[$j]->$key);
70
+ }
71
+ else {
72
+ $key1 = apply_filters('relevanssi_missing_sort_key', $key1, $key);
73
+ }
74
+ if (isset($data[$j + 1]->$key)) {
75
+ $key2 = mb_strtolower($data[$j + 1]->$key);
76
+ }
77
+ else {
78
+ $key2 = apply_filters('relevanssi_missing_sort_key', $key2, $key);
79
+ }
80
+ }
81
+ else {
82
+ $key1 = "";
83
+ $key2 = "";
84
+ if (isset($data[$j]->$key)) {
85
+ $key1 = strtolower($data[$j]->$key);
86
+ }
87
+ else {
88
+ $key1 = apply_filters('relevanssi_missing_sort_key', $key1, $key);
89
+ }
90
+ if (isset($data[$j + 1]->$key)) {
91
+ $key2 = strtolower($data[$j + 1]->$key);
92
+ }
93
+ else {
94
+ $key2 = apply_filters('relevanssi_missing_sort_key', $key2, $key);
95
+ }
96
+ }
97
+ if ('asc' == $dir) {
98
+ if ($key1 > $key2) {
99
+ $tmp = $data[$j];
100
+ $data[$j] = $data[$j + 1];
101
+ $data[$j + 1] = $tmp;
102
+ $swapped = true;
103
+ }
104
+ }
105
+ else {
106
+ if ($key1 < $key2) {
107
+ $tmp = $data[$j];
108
+ $data[$j] = $data[$j + 1];
109
+ $data[$j + 1] = $tmp;
110
+ $swapped = true;
111
+ }
112
+ }
113
+ }
114
+ if (!$swapped) return;
115
+ }
116
+ }
117
 
118
  function relevanssi_show_matches($data, $hit) {
119
  isset($data['body_matches'][$hit]) ? $body = $data['body_matches'][$hit] : $body = 0;
496
  $admin_search_ok = false;
497
  }
498
 
499
+ if ( $query->is_admin && defined( 'DOING_AJAX' ) && DOING_AJAX ) {
500
+ $prevent = false;
501
+ $admin_search_ok = false;
502
+ }
503
+
504
+ if ( $query->is_admin && $query->query_vars['post_type'] == 'page') {
505
+ $prevent = false;
506
+ $admin_search_ok = false;
507
+ }
508
+
509
  if (!is_admin() && $prevent )
510
  $request = "SELECT * FROM $wpdb->posts WHERE 1=2";
511
  else if ('on' == get_option('relevanssi_admin_search') && $admin_search_ok )
lib/excerpts-highlights.php CHANGED
@@ -285,6 +285,7 @@ function relevanssi_highlight_terms($excerpt, $query) {
285
  foreach ($terms as $term) {
286
  // $pr_term = relevanssi_replace_punctuation(preg_quote($term, '/'));
287
  $pr_term = preg_quote($term, '/');
 
288
 
289
  $undecoded_excerpt = $excerpt;
290
  $excerpt = html_entity_decode($excerpt);
@@ -420,6 +421,8 @@ function relevanssi_extract_locations($words, $fulltext) {
420
  function relevanssi_count_matches($words, $fulltext) {
421
  $count = 0;
422
  foreach( $words as $word ) {
 
 
423
  if (get_option('relevanssi_fuzzy') == 'never') {
424
  $pattern = '/([\s,\.:;\?!\']'.$word.'[\s,\.:;\?!\'])/i';
425
  if (preg_match($pattern, $fulltext, $matches, PREG_OFFSET_CAPTURE)) {
@@ -437,7 +440,6 @@ function relevanssi_count_matches($words, $fulltext) {
437
  }
438
  }
439
  }
440
-
441
  return $count;
442
  }
443
 
@@ -524,4 +526,15 @@ function relevanssi_extract_relevant($words, $fulltext, $rellength=300, $prevcou
524
  return array($reltext, $besthits, $start);
525
  }
526
 
 
 
 
 
 
 
 
 
 
 
 
527
  ?>
285
  foreach ($terms as $term) {
286
  // $pr_term = relevanssi_replace_punctuation(preg_quote($term, '/'));
287
  $pr_term = preg_quote($term, '/');
288
+ $pr_term = relevanssi_add_accent_variations($pr_term);
289
 
290
  $undecoded_excerpt = $excerpt;
291
  $excerpt = html_entity_decode($excerpt);
421
  function relevanssi_count_matches($words, $fulltext) {
422
  $count = 0;
423
  foreach( $words as $word ) {
424
+ $word = relevanssi_add_accent_variations($word);
425
+
426
  if (get_option('relevanssi_fuzzy') == 'never') {
427
  $pattern = '/([\s,\.:;\?!\']'.$word.'[\s,\.:;\?!\'])/i';
428
  if (preg_match($pattern, $fulltext, $matches, PREG_OFFSET_CAPTURE)) {
440
  }
441
  }
442
  }
 
443
  return $count;
444
  }
445
 
526
  return array($reltext, $besthits, $start);
527
  }
528
 
529
+ function relevanssi_add_accent_variations($word) {
530
+ $replacement_arrays = apply_filters('relevanssi_accents_replacement_arrays', array(
531
+ "from" => array('a','c','e','i','o','u','n','ss'),
532
+ "to" => array('(a|á|à|â)','(c|ç)', '(e|é|è|ê|ë)','(i|í|ì|î|ï)','(o|ó|ò|ô|õ)','(u|ú|ù|ü|û)','(n|ñ)','(ss|ß)'),
533
+ ));
534
+
535
+ $word = str_ireplace($replacement_arrays['from'], $replacement_arrays['to'], $word);
536
+
537
+ return $word;
538
+ }
539
+
540
  ?>
lib/indexing.php CHANGED
@@ -288,6 +288,8 @@ function relevanssi_index_doc($indexpost, $remove_first = false, $custom_fields
288
  $values = get_post_meta($post->ID, $field, false);
289
  if ("" == $values) continue;
290
  foreach ($values as $value) {
 
 
291
  relevanssi_index_acf($insert_data, $post->ID, $field, $value);
292
  $value_tokens = relevanssi_tokenize($value, true, $min_word_length);
293
  foreach ($value_tokens as $token => $count) {
288
  $values = get_post_meta($post->ID, $field, false);
289
  if ("" == $values) continue;
290
  foreach ($values as $value) {
291
+ // Quick hack : allow indexing of PODS relationship custom fields // TMV
292
+ if (isset($value['post_title'])) $value = $value['post_title'];
293
  relevanssi_index_acf($insert_data, $post->ID, $field, $value);
294
  $value_tokens = relevanssi_tokenize($value, true, $min_word_length);
295
  foreach ($value_tokens as $token => $count) {
lib/interface.php CHANGED
@@ -442,10 +442,10 @@ function relevanssi_query_log() {
442
  echo '<h3>' . __("Common Queries", 'relevanssi') . '</h3>';
443
 
444
  $limit = apply_filters('relevanssi_user_searches_limit', 20);
445
- $lead = __("Here you can see the $limit most common user search queries, how many times those
446
  queries were made and how many results were found for those queries.", 'relevanssi');
447
 
448
- echo "<p>$lead</p>";
449
 
450
  echo "<div style='width: 30%; float: left; margin-right: 2%; overflow: scroll'>";
451
  relevanssi_date_queries(1, __("Today and yesterday", 'relevanssi'));
@@ -482,7 +482,7 @@ function relevanssi_query_log() {
482
  echo '<h3>' . __('Reset Logs', 'relevanssi') . "</h3>\n";
483
  echo "<form method='post'>\n$nonce";
484
  echo "<p>";
485
- printf(__('To reset the logs, type "reset" into the box here %s and click %s', 'relevanssi'), ' <input type="text" name="relevanssi_reset_code" />', 'and click <input type="submit" name="relevanssi_reset" value="Reset" class="button" />');
486
  echo "</p></form>";
487
 
488
  }
@@ -1022,12 +1022,11 @@ function relevanssi_options_form() {
1022
  <small><?php _e("Comma-separated list of numeric user IDs or user login names that will not be logged.", "relevanssi"); ?></small>
1023
 
1024
  <?php
1025
- if (RELEVANSSI_PREMIUM) {
1026
- echo "<p>" . __("If you enable logs, you can see what your users are searching for. You can prevent your own searches from getting in the logs with the omit feature.", "relevanssi") . "</p>";
1027
- }
1028
- else {
1029
- echo "<p>" . __("If you enable logs, you can see what your users are searching for. Logs are also needed to use the 'Did you mean?' feature. You can prevent your own searches from getting in the logs with the omit feature.", "relevanssi") . "</p>";
1030
  }
 
1031
  ?>
1032
 
1033
  <?php if (function_exists('relevanssi_form_hide_branding')) relevanssi_form_hide_branding($hide_branding); ?>
@@ -1055,12 +1054,11 @@ function relevanssi_options_form() {
1055
  <label for='relevanssi_expst'><?php _e('Exclude these posts/pages from search:', 'relevanssi'); ?>
1056
  <input type='text' name='relevanssi_expst' id='relevanssi_expst' size='20' value='<?php echo esc_attr($expst); ?>' /></label><br />
1057
  <?php
 
1058
  if (RELEVANSSI_PREMIUM) {
1059
- echo "<small>" . __("Enter a comma-separated list of post/page IDs that are excluded from search results. This only works here, you can't use the input field option (WordPress doesn't pass custom parameters there). You can also use a checkbox on post/page edit pages to remove posts from index.", 'relevanssi') . "</small>";
1060
- }
1061
- else {
1062
- echo "<small>" . __("Enter a comma-separated list of post/page IDs that are excluded from search results. This only works here, you can't use the input field option (WordPress doesn't pass custom parameters there).", 'relevanssi') . "</small>";
1063
  }
 
1064
  ?>
1065
 
1066
  <br /><br />
442
  echo '<h3>' . __("Common Queries", 'relevanssi') . '</h3>';
443
 
444
  $limit = apply_filters('relevanssi_user_searches_limit', 20);
445
+ $lead = __("Here you can see the %d most common user search queries, how many times those
446
  queries were made and how many results were found for those queries.", 'relevanssi');
447
 
448
+ sprintf("<p>" . $lead . "</p>", $limit);
449
 
450
  echo "<div style='width: 30%; float: left; margin-right: 2%; overflow: scroll'>";
451
  relevanssi_date_queries(1, __("Today and yesterday", 'relevanssi'));
482
  echo '<h3>' . __('Reset Logs', 'relevanssi') . "</h3>\n";
483
  echo "<form method='post'>\n$nonce";
484
  echo "<p>";
485
+ printf(__('To reset the logs, type "reset" into the box here %s and click %s', 'relevanssi'), ' <input type="text" name="relevanssi_reset_code" />', ' <input type="submit" name="relevanssi_reset" value="Reset" class="button" />');
486
  echo "</p></form>";
487
 
488
  }
1022
  <small><?php _e("Comma-separated list of numeric user IDs or user login names that will not be logged.", "relevanssi"); ?></small>
1023
 
1024
  <?php
1025
+ echo "<p>" . __("If you enable logs, you can see what your users are searching for. You can prevent your own searches from getting in the logs with the omit feature.", "relevanssi");
1026
+ if (!RELEVANSSI_PREMIUM) {
1027
+ echo " " . __e("Logs are also needed to use the 'Did you mean?' feature.", "relevanssi");
 
 
1028
  }
1029
+ echo "</p>";
1030
  ?>
1031
 
1032
  <?php if (function_exists('relevanssi_form_hide_branding')) relevanssi_form_hide_branding($hide_branding); ?>
1054
  <label for='relevanssi_expst'><?php _e('Exclude these posts/pages from search:', 'relevanssi'); ?>
1055
  <input type='text' name='relevanssi_expst' id='relevanssi_expst' size='20' value='<?php echo esc_attr($expst); ?>' /></label><br />
1056
  <?php
1057
+ echo "<small>" . __("Enter a comma-separated list of post/page IDs that are excluded from search results. This only works here, you can't use the input field option (WordPress doesn't pass custom parameters there).", 'relevanssi');
1058
  if (RELEVANSSI_PREMIUM) {
1059
+ echo " " . __("You can also use a checkbox on post/page edit pages to remove posts from index. This setting doesn't work in multisite searches, but the checkbox does.", 'relevanssi');
 
 
 
1060
  }
1061
+ echo "</small>";
1062
  ?>
1063
 
1064
  <br /><br />
lib/search.php CHANGED
@@ -26,6 +26,11 @@ function relevanssi_query($posts, $query = false) {
26
  $search_ok = false;
27
  }
28
 
 
 
 
 
 
29
  // Disable search in media library search
30
  if ($search_ok) {
31
  if ($wp_query->query_vars['post_type'] == 'attachment' && $wp_query->query_vars['post_status'] == 'inherit,private') {
@@ -69,7 +74,7 @@ function relevanssi_search($args) {
69
  $orderby = $filtered_args['orderby'];
70
  $order = $filtered_args['order'];
71
  $fields = $filtered_args['fields'];
72
-
73
  $hits = array();
74
 
75
  $query_restrictions = "";
26
  $search_ok = false;
27
  }
28
 
29
+ // Required so that the admin dashboard page search works.
30
+ if ($wp_query->is_admin && $wp_query->query_vars['post_type'] == 'page') {
31
+ $search_ok = false;
32
+ }
33
+
34
  // Disable search in media library search
35
  if ($search_ok) {
36
  if ($wp_query->query_vars['post_type'] == 'attachment' && $wp_query->query_vars['post_status'] == 'inherit,private') {
74
  $orderby = $filtered_args['orderby'];
75
  $order = $filtered_args['order'];
76
  $fields = $filtered_args['fields'];
77
+
78
  $hits = array();
79
 
80
  $query_restrictions = "";
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: msaari
3
  Donate link: http://www.relevanssi.com/buy-premium/
4
  Tags: search, relevance, better search
5
  Requires at least: 4.0
6
- Tested up to: 4.7
7
- Stable tag: 3.5.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -386,6 +386,14 @@ removing those words helps to make the index smaller and searching faster.
386
 
387
  == Changelog ==
388
 
 
 
 
 
 
 
 
 
389
  = 3.5.6.1 =
390
  * Fix for a fatal bug in 3.5.6.
391
 
@@ -1135,6 +1143,9 @@ removing those words helps to make the index smaller and searching faster.
1135
 
1136
  == Upgrade notice ==
1137
 
 
 
 
1138
  = 3.5.6.1 =
1139
  * Fix for a fatal error.
1140
 
3
  Donate link: http://www.relevanssi.com/buy-premium/
4
  Tags: search, relevance, better search
5
  Requires at least: 4.0
6
+ Tested up to: 4.7.1
7
+ Stable tag: 3.5.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
386
 
387
  == Changelog ==
388
 
389
+ = 3.5.7 =
390
+ * An improved version of the sorting function will not throw notices when Intuitive Custom Post Order plugin is used.
391
+ * New filter: `relevanssi_missing_sort_key` can be used to adjust the result sorting when using keys that are not present in all posts (eg. menu_order).
392
+ * Czech translation and stopwords, thanks to Michael Kucera.
393
+ * Relevanssi broke the WP admin menu search when admin searches were enabled.
394
+ * Relevanssi broke the admin page search under WP 4.7. Relevanssi is now disabled in admin page searches.
395
+ * The way accented characters are handled in highlighting is improved. A new filter, `relevanssi_accents_replacement_arrays`, can be used to adjust the accent replacement.
396
+
397
  = 3.5.6.1 =
398
  * Fix for a fatal bug in 3.5.6.
399
 
1143
 
1144
  == Upgrade notice ==
1145
 
1146
+ = 3.5.7 =
1147
+ * Bug fixes and small improvements.
1148
+
1149
  = 3.5.6.1 =
1150
  * Fix for a fatal error.
1151
 
relevanssi-cz_CZ.mo ADDED
Binary file
relevanssi-cz_CZ.po ADDED
@@ -0,0 +1,748 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Relevanssi - A Better Search - Stable (latest release) in Czech
2
+ # This file is distributed under the same license as the Plugins - Relevanssi - A Better Search - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-01-03 20:33-0600\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: Poedit 1.8.11\n"
11
+ "Language: cs_CZ\n"
12
+ "Project-Id-Version: Plugins - Relevanssi - A Better Search - Stable (latest release)\n"
13
+ "POT-Creation-Date: \n"
14
+ "Last-Translator: \n"
15
+ "Language-Team: Mik013\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+
18
+ #. Author URI of the plugin/theme
19
+ msgid "http://www.mikkosaari.fi/"
20
+ msgstr "http://www.mikkosaari.fi/"
21
+
22
+ #. Author of the plugin/theme
23
+ msgid "Mikko Saari"
24
+ msgstr "Mikko Saari"
25
+
26
+ #. Description of the plugin/theme
27
+ msgid "This plugin replaces WordPress search with a relevance-sorting search."
28
+ msgstr "Tento plugin nahrazuje WordPress hledání s vyhledáváním a tříděním podle relevance."
29
+
30
+ #. Plugin URI of the plugin/theme
31
+ msgid "http://www.relevanssi.com/"
32
+ msgstr "http://www.relevanssi.com/"
33
+
34
+ #. Plugin Name of the plugin/theme
35
+ msgid "Relevanssi"
36
+ msgstr "Relevanssi"
37
+
38
+ #: relevanssi.php:332
39
+ msgid "Category weight:"
40
+ msgstr "Váha kategorie:"
41
+
42
+ #: relevanssi.php:317
43
+ msgid "Tag weight:"
44
+ msgstr "Váha tagu:"
45
+
46
+ #: lib/uninstall.php:29
47
+ msgid "Data wiped clean, you can now delete the plugin."
48
+ msgstr "Data vyčištěna dočista, plugin nyní můžete smazat."
49
+
50
+ #: lib/interface.php:1395
51
+ msgid "Here's a list of stopwords you can use to export the stopwords to another blog."
52
+ msgstr "Zde je seznam stopslov, který může být použít k exportu do jiného blogu."
53
+
54
+ #: lib/interface.php:1389
55
+ msgid "Remove all stopwords"
56
+ msgstr "Odstranit všechna stopslova"
57
+
58
+ #: lib/interface.php:1363
59
+ msgid "<p>Here's a list of stopwords in the database. Click a word to remove it from stopwords. Removing stopwords won't automatically return them to index, so you need to re-index all posts after removing stopwords to get those words back to index."
60
+ msgstr "<p>Zde je seznam stopslov v databázi. Kliknutím na slovo jej ze zakázaných odeberete. Po odebrání stopslov se tato automaticky nevrací do indexu, takže po odebrání stopslov je třeba re-indexovat všechny příspěvky, aby se tato slova dostala zpět do indexu."
61
+
62
+ #: lib/interface.php:1360
63
+ msgid "Add"
64
+ msgstr "Přidat"
65
+
66
+ #: lib/interface.php:1359
67
+ msgid "Stopword(s) to add: "
68
+ msgstr "Stopslova k přidání: "
69
+
70
+ #: lib/interface.php:1357
71
+ msgid "<p>Enter a word here to add it to the list of stopwords. The word will automatically be removed from the index, so re-indexing is not necessary. You can enter many words at the same time, separate words with commas.</p>"
72
+ msgstr "<p>Sem zadejte slovo, které chcete přidat do negativního slovníku. Slovo bude automaticky odstraněno z indexu a re-indexování nebude nutné. Můžete zadat více slov najednou, jednotlivá slova oddělujte čárkami.</p>"
73
+
74
+ #: lib/interface.php:1332
75
+ msgid "Add synonyms here in 'key = value' format. When searching with the OR operator, any search of 'key' will be expanded to include 'value' as well. Using phrases is possible. The key-value pairs work in one direction only, but you can of course repeat the same pair reversed."
76
+ msgstr "Zde přidejte synonyma formou 'klíč = hodnota\". Při vyhledávání s operátorem OR, budou všechna hledání \"klíče\" rozšířena také o \"hodnotu\". Také použití frází je možné. Dvojice klíč-hodnota fungují pouze v jednom směru, ale můžete samozřejmě uvést stejný pár opačně."
77
+
78
+ #: lib/interface.php:1324
79
+ msgid "Save indexing options, erase index and rebuild the index"
80
+ msgstr "Uložit nastavení indexování, smazat index a znovu vytvořit index"
81
+
82
+ #: lib/interface.php:1314
83
+ msgid "A comma-separated list of custom fields to include in the index. Set to 'visible' to index all visible custom fields and to 'all' to index all custom fields, also those starting with a '_' character."
84
+ msgstr "Seznam vlastních polí oddělený čárkami, které budou zahrnuty do indexu. Pro indexování všech viditelných vlastních polí nastavte na \"visible\" anebo \"vše\" pro indexaci všech vlastních polí, tedy i těch, které začínající znakem \"_\"."
85
+
86
+ #: lib/interface.php:1312
87
+ msgid "Custom fields to index:"
88
+ msgstr "Vlastní pole k indexování:"
89
+
90
+ #: lib/interface.php:1308
91
+ msgid "Relevanssi will index and search ALL (all comments including track- &amp; pingbacks and custom comment types), NONE (no comments) or NORMAL (manually posted comments on your blog).<br />Remember to rebuild the index if you change this option!"
92
+ msgstr "Relevanssi bude indexovat a prohledávat VŠE (všechny komentáře včetně track- &amp; pingbacks a vlastní typy komentářů), NIC (žádné komentáře) nebo NORMÁLNÍ (ručně odeslané komentáře).<br />Nezapomeňte znovu vytvořit index, pokud tuto možnost změníte!"
93
+
94
+ #: lib/interface.php:1306
95
+ msgid "all"
96
+ msgstr "vše"
97
+
98
+ #: lib/interface.php:1305
99
+ msgid "normal"
100
+ msgstr "normální"
101
+
102
+ #: lib/interface.php:1304
103
+ msgid "none"
104
+ msgstr "nic"
105
+
106
+ #: lib/interface.php:1302
107
+ msgid "Index and search these comments:"
108
+ msgstr "Indexovat a vyhledávat tyto komentáře:"
109
+
110
+ #: lib/interface.php:1298
111
+ msgid "If checked, Relevanssi will also index and search the excerpts of your posts.Remember to rebuild the index if you change this option!"
112
+ msgstr "Je-li zaškrtnuto, Relevanssi bude indexovat a hledat také Stručný obsah vašich příspěvků. Nezapomeňte znovu vytvořit index, pokud tuto možnost změníte!"
113
+
114
+ #: lib/interface.php:1296
115
+ msgid "Index and search post excerpts:"
116
+ msgstr "Indexovat a hledat Stručný obsah příspěvků:"
117
+
118
+ #: lib/interface.php:1292
119
+ msgid "If checked, Relevanssi will also index and search the authors of your posts. Author display name will be indexed. Remember to rebuild the index if you change this option!"
120
+ msgstr "Je-li zaškrtnuto, Relevanssi bude indexovat a hledat také autory vašich příspěvků. Zobrazované jméno autora bude indexováno. Nezapomeňte znovu vytvořit index, pokud tuto možnost změníte!"
121
+
122
+ #: lib/interface.php:1290
123
+ msgid "Index and search your posts' authors:"
124
+ msgstr "Indexovat a hledat vaše příspěvky autorů:"
125
+
126
+ #: lib/interface.php:1284
127
+ msgid "If checked, Relevanssi will expand shortcodes in post content before indexing. Otherwise shortcodes will be stripped. If you use shortcodes to include dynamic content, Relevanssi will not keep the index updated, the index will reflect the status of the shortcode content at the moment of indexing."
128
+ msgstr "Je-li zaškrtnuto, Relevanssi bude před indexováním vykonávat zkrácené kódy v obsahu příspěvků. Jinak by byly vynechány. Pokud používáte zkrácené kódy ke zobrazení dynamického obsahu, Relevanssi nebude udržovat index aktualizovaný, index bude odrážet pouze stav obsahu zkráceného kódu v okamžiku indexování."
129
+
130
+ #: lib/interface.php:1282
131
+ msgid "Expand shortcodes in post content:"
132
+ msgstr "Vykonávat zkrácené kódy v obsahu příspěvku:"
133
+
134
+ #: lib/interface.php:1276
135
+ msgid "Words shorter than this number will not be indexed."
136
+ msgstr "Slova kratší než tento počet nebudou indexována."
137
+
138
+ #: lib/interface.php:1274
139
+ msgid "Minimum word length to index"
140
+ msgstr "Minimální délka slova k indexování"
141
+
142
+ #: lib/interface.php:1270
143
+ msgid "If you check a taxonomy here, the terms for that taxonomy are indexed with the posts. If you for example choose \"post_tag\", searching for tags will find all posts that have the tag."
144
+ msgstr "Pokud zde zaškrtnete taxonomii, výrazy pro tuto taxonomii jsou indexovány spolu s příspěvky. Pokud například zvolíte \"post_tag\" hledal tagů najdete všechny příspěvky, které mají takový tag."
145
+
146
+ #: lib/interface.php:1233
147
+ msgid "Taxonomy"
148
+ msgstr "Taxonomie"
149
+
150
+ #: lib/interface.php:1228
151
+ msgid "Choose taxonomies to index:"
152
+ msgstr "Vyberte taxonomii k indexování:"
153
+
154
+ #: lib/interface.php:1207 lib/interface.php:1250
155
+ msgid "no"
156
+ msgstr "ne"
157
+
158
+ #: lib/interface.php:1207 lib/interface.php:1250
159
+ msgid "yes"
160
+ msgstr "ano"
161
+
162
+ #: lib/interface.php:1206 lib/interface.php:1249
163
+ msgid "%s"
164
+ msgstr "%s"
165
+
166
+ #: lib/interface.php:1189 lib/interface.php:1235
167
+ msgid "Public?"
168
+ msgstr "Veřejné?"
169
+
170
+ #: lib/interface.php:1188 lib/interface.php:1234
171
+ msgid "Index"
172
+ msgstr "Index"
173
+
174
+ #: lib/interface.php:1187
175
+ msgid "Type"
176
+ msgstr "Typ"
177
+
178
+ #: lib/interface.php:1182
179
+ msgid "Choose post types to index:"
180
+ msgstr "Vyberte typy příspěvků k indexování:"
181
+
182
+ #: lib/interface.php:1178 lib/interface.php:1336
183
+ msgid "Save the options"
184
+ msgstr "Uložit nastavení"
185
+
186
+ #: lib/interface.php:1171
187
+ msgid "Name a class here, search results will be wrapped in a &lt;span&gt; with the class"
188
+ msgstr "Uveďte třídu zde, výsledky vyhledávání budou zabaleny v &lt;span&gt; se třídou"
189
+
190
+ #: lib/interface.php:1169
191
+ msgid "CSS class for highlights:"
192
+ msgstr "CSS třída pro zvýraznění"
193
+
194
+ #: lib/interface.php:1165
195
+ msgid "You can use any CSS styling here, style will be inserted with a &lt;span&gt;"
196
+ msgstr "Zde můžete použít jakýkoli CSS styl , styl bude vložen pomocí &lt;span&gt;"
197
+
198
+ #: lib/interface.php:1163
199
+ msgid "CSS style for highlights:"
200
+ msgstr "CSS styl pro zvýraznění"
201
+
202
+ #: lib/interface.php:1157
203
+ msgid "Background color for highlights:"
204
+ msgstr "Barva pozadí pro zvýraznění"
205
+
206
+ #: lib/interface.php:1153 lib/interface.php:1159
207
+ msgid "Use HTML color codes (#rgb or #rrggbb)"
208
+ msgstr "Použijte HTML kódy barev (#rgb či #rrggbb)"
209
+
210
+ #: lib/interface.php:1151
211
+ msgid "Text color for highlights:"
212
+ msgstr "Barva textu pro zvýraznění"
213
+
214
+ #: lib/interface.php:1147
215
+ msgid "Then adjust the settings for your chosen type:"
216
+ msgstr "Poté upravte nastavení pro zvolený typ:"
217
+
218
+ #: lib/interface.php:1142
219
+ msgid "If you use non-ASCII characters (like Cyrillic alphabet) and the highlights don't work, uncheck this option to make highlights work."
220
+ msgstr "Pokud používáte jiné znaky než ASCII (např. azbuku) a zvýraznění nefungují, odškrtněte tuto volbu, aby zvýraznění začalo fungovat."
221
+
222
+ #: lib/interface.php:1140
223
+ msgid "Uncheck this if you use non-ASCII characters:"
224
+ msgstr "Odškrtněte tuto možnost, pokud používáte jiné znaky než ASCII:"
225
+
226
+ #: lib/interface.php:1136
227
+ msgid "Highlights hits in comments when user opens the post from search results."
228
+ msgstr "Zvýraznit shody v komentářích, když uživatel příspěvek otevře z výsledků vyhledávání."
229
+
230
+ #: lib/interface.php:1134
231
+ msgid "Highlight query terms in comments:"
232
+ msgstr "Zvýraznit hledané výrazy v komentářích:"
233
+
234
+ #: lib/interface.php:1128
235
+ msgid "Highlights hits when user opens the post from search results. This is based on HTTP referrer, so if that's blocked, there'll be no highlights."
236
+ msgstr "Zvýraznit shody, když uživatel příspěvek otevře z výsledků vyhledávání. To je založeno na HTTP referreru, takže pokud bude blokován, nic nebude zvýrazněno."
237
+
238
+ #: lib/interface.php:1126
239
+ msgid "Highlight query terms in documents from local searches:"
240
+ msgstr "Zvýraznit hledané výrazy v dokumentech z místního vyhledávání:"
241
+
242
+ #: lib/interface.php:1120
243
+ msgid "Highlight query terms in result titles too:"
244
+ msgstr "Zvýraznit hledané výrazy také v názvech výsledků:"
245
+
246
+ #: lib/interface.php:1116
247
+ msgid "Highlighting isn't available unless you use custom snippets"
248
+ msgstr "Zvýraznění není k dispozici, pokud budete používat vlastní úryvky"
249
+
250
+ #: lib/interface.php:1114
251
+ msgid "CSS Class"
252
+ msgstr "CSS Třída"
253
+
254
+ #: lib/interface.php:1113
255
+ msgid "CSS Style"
256
+ msgstr "CSS Kaskádový styl"
257
+
258
+ #: lib/interface.php:1112
259
+ msgid "Background color"
260
+ msgstr "Barva pozadí"
261
+
262
+ #: lib/interface.php:1111
263
+ msgid "Text color"
264
+ msgstr "Barva textu"
265
+
266
+ #: lib/interface.php:1107
267
+ msgid "No highlighting"
268
+ msgstr "Žádné zvýraznění"
269
+
270
+ #: lib/interface.php:1105
271
+ msgid "Highlight query terms in search results:"
272
+ msgstr "Zvýraznit hledané výrazy ve výsledcích vyhledávání:"
273
+
274
+ #: lib/interface.php:1102
275
+ msgid "First, choose the type of highlighting used:"
276
+ msgstr "Nejprve vyberte jaký typ zvýraznění používat:"
277
+
278
+ #: lib/interface.php:1100
279
+ msgid "Search hit highlighting"
280
+ msgstr "Zvýraznění nalezené shody"
281
+
282
+ #: lib/interface.php:1098
283
+ msgid "Use %body%, %title%, %tags% and %comments% to display the number of hits (in different parts of the post), %total% for total hits, %score% to display the document weight and %terms% to show how many hits each search term got. No double quotes (\") allowed!"
284
+ msgstr "Použijte %body%, %title%, %tags% a %comments% pro zobrazení počtu shod (v různých částech příspěvku), %total% pro součet shod, %score% pro zobrazení váhy dokumentu a %terms% pro zobrazení kolik měl hledaný výraz shod. Nejsou povoleny žádné uvozovky (\")!"
285
+
286
+ #: lib/interface.php:1096
287
+ msgid "The breakdown format:"
288
+ msgstr "Formát členění:"
289
+
290
+ #: lib/interface.php:1092
291
+ msgid "Check this to show more information on where the search hits were made. Requires custom snippets to work."
292
+ msgstr "Zaškrtněte, pro více informací o tom, kde došlo ke shodě při vyhledávaní. Pro správnou funkci jsou vyžadovány vlastní úryvky."
293
+
294
+ #: lib/interface.php:1090
295
+ msgid "Show breakdown of search hits in excerpts:"
296
+ msgstr "Zobrazit náhledy nalezených výsledků shod:"
297
+
298
+ #: lib/interface.php:1086
299
+ msgid "List all tags you want to allow in excerpts, without any whitespace. For example: '&lt;p&gt;&lt;a&gt;&lt;strong&gt;'."
300
+ msgstr "Vyjmenovat všechny tagy, které chcete povolit ve Stručných obsazích, a to bez jakékoliv mezery. Například: '&lt;p&gt;&lt;a&gt;&lt;strong&gt;'."
301
+
302
+ #: lib/interface.php:1083
303
+ msgid "Allowable tags in excerpts:"
304
+ msgstr "Přípustné tagy ve Stručných obsazích"
305
+
306
+ #: lib/interface.php:1079
307
+ msgid "This must be an integer."
308
+ msgstr "Zde musí být číslo."
309
+
310
+ #: lib/interface.php:1077
311
+ msgid "words"
312
+ msgstr "slov"
313
+
314
+ #: lib/interface.php:1076
315
+ msgid "characters"
316
+ msgstr "znaků"
317
+
318
+ #: lib/interface.php:1073
319
+ msgid "Length of the snippet:"
320
+ msgstr "Délka úryvku:"
321
+
322
+ #: lib/interface.php:1071
323
+ msgid "Note: Building custom excerpts can be slow. If you are not actually using the excerpts, make sure you disable the option."
324
+ msgstr "Poznámka: Vytváření vlastních stručných seznamů může být pomalé. Pokud vlastní stručné seznamy nepoužíváte, ujistěte se, že tato volba zůstane vypnutá."
325
+
326
+ #: lib/interface.php:1069
327
+ msgid "If checked, Relevanssi will create excerpts that contain the search term hits. To make them work, make sure your search result template uses the_excerpt() to display post excerpts."
328
+ msgstr "Je-li zaškrtnuto, Relevanssi vytvoří náhled, který obsahuje shodu hledaného výrazu. Pro správnou funkcionalitu se ujistěte, že vaše šablona výsledků vyhledávání používá the_excerpt() pro zobrazení stručných seznamů."
329
+
330
+ #: lib/interface.php:1067
331
+ msgid "Create custom search result snippets:"
332
+ msgstr "Vytvářet vlastní výsledky vyhledávání úryvků:"
333
+
334
+ #: lib/interface.php:1065
335
+ msgid "Custom excerpts/snippets"
336
+ msgstr "Vlastní Náhledy / úryvky"
337
+
338
+ #: lib/interface.php:1063
339
+ msgid "If checked, Relevanssi won't display posts of custom post types that have 'exclude_from_search' set to true. If not checked, Relevanssi will display anything that is indexed."
340
+ msgstr "Je-li zaškrtnuto, Relevanssi nezobrazí příspěvky vlastních typů, které mají nastaveno \"exclude_from_search\" na true. Pokud není zaškrtnuto, Relevanssi zobrazí vše, co je indexováno."
341
+
342
+ #: lib/interface.php:1061
343
+ msgid "Respect exclude_from_search for custom post types:"
344
+ msgstr "Respektovat exclude_from_search pro vlastní typy příspěvků:"
345
+
346
+ #: lib/interface.php:1055
347
+ msgid "Enter a comma-separated list of post/page IDs that are excluded from search results. This only works here, you can't use the input field option (WordPress doesn't pass custom parameters there)."
348
+ msgstr "Zadejte seznam ID příspěvků / stránek oddělených čárkami, které mají být vyloučeny z výsledků vyhledávání. Toto funguje jen zde, nemůžete použít volbu u vstupního pole (WordPress tam nepovoluje vlastní parametry)."
349
+
350
+ #: lib/interface.php:1052
351
+ msgid "Enter a comma-separated list of post/page IDs that are excluded from search results. This only works here, you can't use the input field option (WordPress doesn't pass custom parameters there). You can also use a checkbox on post/page edit pages to remove posts from index."
352
+ msgstr "Zadejte seznam ID příspěvků / stránek oddělených čárkami, které mají být vyloučeny z výsledků vyhledávání. Toto funguje jen zde, nemůžete použít volbu u vstupního pole (WordPress tam nepovoluje vlastní parametry). Můžete také použít zaškrtávací políčko na příspěvku / stránce při editaci - odstranit příspěvek z indexu."
353
+
354
+ #: lib/interface.php:1048
355
+ msgid "Exclude these posts/pages from search:"
356
+ msgstr "Vyloučit tyto příspěvky / stránky z vyhledávání:"
357
+
358
+ #: lib/interface.php:1044
359
+ msgid "Enter a comma-separated list of tag IDs that are excluded from search results."
360
+ msgstr "Zadejte seznam ID tagů oddělených čárkami, které mají být vyloučeny z výsledků vyhledávání."
361
+
362
+ #: lib/interface.php:1042
363
+ msgid "Exclude these tags from search:"
364
+ msgstr "Vyloučit tyto tagy z vyhledávání:"
365
+
366
+ #: lib/interface.php:1038
367
+ msgid "Enter a comma-separated list of category IDs that are excluded from search results."
368
+ msgstr "Zadejte seznam ID kategorií oddělených čárkami, které mají být vyloučeny z výsledků vyhledávání."
369
+
370
+ #: lib/interface.php:1036
371
+ msgid "Exclude these categories from search:"
372
+ msgstr "Vyloučit tyto kategorie z vyhledávání:"
373
+
374
+ #: lib/interface.php:1032
375
+ msgid "Enter a comma-separated list of category and tag IDs to restrict search to those categories or tags. You can also use <code>&lt;input type='hidden' name='cats' value='list of cats and tags' /&gt;</code> in your search form. The input field will \toverrun this setting."
376
+ msgstr "Zadejte seznam kategorií a ID tagů oddělený čárkami pro omezení vyhledávání na pouze na tyto kategorie nebo tagy. Můžete také použít <code>&lt;input type='hidden' name='cats' value='list of cats and tags' /&gt;</code> ve vyhledávacím formuláři. Vstupní pole bude převáží toto nastavení."
377
+
378
+ #: lib/interface.php:1030
379
+ msgid "Restrict search to these categories and tags:"
380
+ msgstr "Omezit vyhledávání pouze těchto kategorií a tagů:"
381
+
382
+ #: lib/interface.php:1022
383
+ msgid "If you enable logs, you can see what your users are searching for. Logs are also needed to use the 'Did you mean?' feature. You can prevent your own searches from getting in the logs with the omit feature."
384
+ msgstr "Pokud povolíte logování, můžete vidět, co vaši uživatelé hledají. Protokoly jsou zapotřebí také pro funkci \"Měli jste na mysli?\". Můžete však zabránit tomu, aby vaše vlastní vyhledávání byla logována."
385
+
386
+ #: lib/interface.php:1019
387
+ msgid "If you enable logs, you can see what your users are searching for. You can prevent your own searches from getting in the logs with the omit feature."
388
+ msgstr "Pokud povolíte logování, můžete vidět, co vaši uživatelé hledají. Můžete však zabránit tomu, aby vaše vlastní vyhledávání byla logována."
389
+
390
+ #: lib/interface.php:1015
391
+ msgid "Comma-separated list of numeric user IDs or user login names that will not be logged."
392
+ msgstr "Čárkou oddělený seznam uživatelských jmen, nebo jejich číselných ID, jejichž hledání nebude logováno."
393
+
394
+ #: lib/interface.php:1013
395
+ msgid "Don't log queries from these users:"
396
+ msgstr "Nelogovat dotazy od těchto uživatelů:"
397
+
398
+ #: lib/interface.php:1009
399
+ msgid "If checked, Relevanssi will log user's IP-Adress with the queries."
400
+ msgstr "Je-li zaškrtnuto, Relevanssi bude spolu s u6ivatelovými dotazy logovat i jeho IP adresu."
401
+
402
+ #: lib/interface.php:1007
403
+ msgid "Log the user's IP with the queries:"
404
+ msgstr "Spolu s dotazy logovat i uživatelovu IP:"
405
+
406
+ #: lib/interface.php:1003
407
+ msgid "If checked, Relevanssi will log user queries. The log appears in 'User searches' on the Dashboard admin menu."
408
+ msgstr "Je-li zaškrtnuto, Relevanssi bude logovat uživatelské dotazy. Log se objeví v \"Návštěvník vyhledává\" v admin menu Nástěnka."
409
+
410
+ #: lib/interface.php:1001
411
+ msgid "Keep a log of user queries:"
412
+ msgstr "Zachovat log uživatelských dotazů:"
413
+
414
+ #: lib/interface.php:995
415
+ msgid "If this option is checked, Relevanssi will only return results in the current active language. Otherwise results will include posts in every language."
416
+ msgstr ""
417
+
418
+ #: lib/interface.php:993
419
+ msgid "Limit results to current language:"
420
+ msgstr "Omezit výsledky pouze pro aktuální jazyk:"
421
+
422
+ #: lib/interface.php:991
423
+ msgid "WPML/Polylang compatibility"
424
+ msgstr "WPML kompatibilita"
425
+
426
+ #: lib/interface.php:970
427
+ msgid "Comment text"
428
+ msgstr "Text komentáře"
429
+
430
+ #: lib/interface.php:958
431
+ msgid "Post titles"
432
+ msgstr "Názvy příspěvků"
433
+
434
+ #: lib/interface.php:953
435
+ msgid "Default weight"
436
+ msgstr "Výchozí váha"
437
+
438
+ #: lib/interface.php:952
439
+ msgid "Weight"
440
+ msgstr "Váha"
441
+
442
+ #: lib/interface.php:951
443
+ msgid "Element"
444
+ msgstr "Prvek"
445
+
446
+ #: lib/interface.php:946
447
+ msgid "These values affect the weights of the documents. These are all multipliers, so 1 means no change in weight, less than 1 means less weight, and more than 1 means more weight. Setting something to zero makes that worthless. For example, if title weight is more than 1, words in titles are more significant than words elsewhere. If title weight is 0, words in titles won't make any difference to the search results."
448
+ msgstr "Tyto hodnoty ovlivňují váhu dokumentů. Všechno jsou to násobky, takže 1 znamená žádnou změnu váhy, menší než 1, znamená snížení váhy a více než 1 znamená větší váhu. Nastavení položky na nulu z ní udělá bezcennou. Například, pokud váha názvu je větší než 1, slova v názvech budou mnohem významnější než slova jinde. Pokud bude váha názvu 0, nebudou mít slova v názvech žádnou hodnotu pro výsledky vyhledávání."
449
+
450
+ #: lib/interface.php:936
451
+ msgid "For better performance, adjust the limit to a smaller number. Adjusting the limit to 100 or 200 should be safe for good results, and might bring a boost in search speed. DO NOT use this feature to limit the number of search results on search results pages, as that will lead to problems. For adjusting the number of search results displayed, see <a href='%s'>this knowledge base entry</a>."
452
+ msgstr "Pro lepší výkon, nastavte limit na menší číslo. Nastavení limitu na 100 nebo 200 by mělo být bezpečné pro dobré výsledky, zároveň může přinést zvýšení rychlosti vyhledávání. NEPOUŽÍVEJTE tuto funkci pro omezení počtu výsledků na stránce výsledků vyhledávání, protože to povede k problémům. Pro nastavení počtu zobrazených výsledků vyhledávání na stránku si přečtěte <a href='%s'>článek v této znalostní bázi</a>."
453
+
454
+ #: lib/interface.php:934
455
+ msgid "Limit:"
456
+ msgstr "Limit:"
457
+
458
+ #: lib/interface.php:930
459
+ msgid "If this option is checked, Relevanssi will limit search results to at most 500 results per term. This will improve performance, but may cause some relevant documents to go unfound. However, Relevanssi tries to prioritize the most relevant documents. <strong>This does not work well when sorting results by date.</strong> The throttle can end up cutting off recent posts to favour more relevant posts."
460
+ msgstr "Pokud je tato volba aktivní, Relevanssi omezí výsledky vyhledávání na maximálně 500 výsledků na výraz. Tím se zlepší výkon, ale může to způsobit, že některé relevantní dokumenty nebudou nalezeny. Nicméně, Relevanssi se snaží upřednostnit nejrelevantnější dokumenty. <strong>Což úplně neplatí, pokud jsou výsledky řazeny podle data.</strong> Nastavení tak může upřednostnit nedávné příspěvkz před jinak relevantnějšími."
461
+
462
+ #: lib/interface.php:928
463
+ msgid "Limit searches:"
464
+ msgstr "Limit hledání"
465
+
466
+ #: lib/interface.php:920
467
+ msgid "Straight search matches just the term. Fuzzy search matches everything that begins or ends with the search term."
468
+ msgstr "Přímé vyhledávání najde jen přesný výraz. Přibližné vyhledávání najde vše, co začíná nebo končí hledaným výrazem."
469
+
470
+ #: lib/interface.php:918
471
+ msgid "Don't use fuzzy search"
472
+ msgstr "Nepoužívat přibližné vyhledávání"
473
+
474
+ #: lib/interface.php:917
475
+ msgid "Always"
476
+ msgstr "Vždy"
477
+
478
+ #: lib/interface.php:916
479
+ msgid "When straight search gets no hits"
480
+ msgstr "Když přímé hledání nevrátí žádný výsledek"
481
+
482
+ #: lib/interface.php:914
483
+ msgid "When to use fuzzy matching?"
484
+ msgstr "Kdy použít přibližnou shodu?"
485
+
486
+ #: lib/interface.php:910
487
+ msgid "If you want date-based results, see the recent post bonus in the Weights section."
488
+ msgstr "Chcete-li výsledky na základě data vytvoření, přejděte na sekci Váhy."
489
+
490
+ #: lib/interface.php:908
491
+ msgid "Post date"
492
+ msgstr "Datum příspěvku"
493
+
494
+ #: lib/interface.php:907
495
+ msgid "Relevance (highly recommended)"
496
+ msgstr "Relevance (výrazně doporučeno)"
497
+
498
+ #: lib/interface.php:905
499
+ msgid "Default order for results:"
500
+ msgstr "Výchozí řazení výsledků"
501
+
502
+ #: lib/interface.php:901
503
+ msgid "If you don't want Relevanssi to fall back to OR search when AND search gets no hits, check this option. For most cases, leave this one unchecked."
504
+ msgstr "Pokud nechcete aby Relevanssi přešlo do hledání s OR, pokud hledání AND nenajde žádný výsledek, zaškrtněte tuto volbu. Ve většině případů ponechte nezaškrtnuté."
505
+
506
+ #: lib/interface.php:899
507
+ msgid "Disable OR fallback:"
508
+ msgstr "Zakázat automatické přepnutí na OR"
509
+
510
+ #: lib/interface.php:895
511
+ msgid "If you choose AND and the search finds no matches, it will automatically do an OR search."
512
+ msgstr "Zvolíte-li AND a hledání najde žádnou shodu, bude automaticky provedeno hledání s operátorem OR."
513
+
514
+ #: lib/interface.php:893
515
+ msgid "OR - any term present is enough"
516
+ msgstr "OR - výskyt jakéhokoli výrazu je dostatečný"
517
+
518
+ #: lib/interface.php:892
519
+ msgid "AND - require all terms"
520
+ msgstr "AND - vyžaduje všechny výrazy"
521
+
522
+ #: lib/interface.php:890
523
+ msgid "Default operator for the search?"
524
+ msgstr "Výchozí operátor pro vyhledávání?"
525
+
526
+ #: lib/interface.php:886
527
+ msgid "If checked, Relevanssi will be used for searches in the admin interface"
528
+ msgstr "Je-li zaškrtnuto, bude Relevanssi použito i pro vyhledávání v administrátorském rozhraní"
529
+
530
+ #: lib/interface.php:884
531
+ msgid "Use search for admin:"
532
+ msgstr "Použít vyhledávání pro admin:"
533
+
534
+ #: lib/interface.php:875
535
+ msgid "Highest post ID indexed"
536
+ msgstr "Nejvyšší ID zaindexovaného příspěvku"
537
+
538
+ #: lib/interface.php:874
539
+ msgid "Terms in the index"
540
+ msgstr "Výrazy v indexu"
541
+
542
+ #: lib/interface.php:873
543
+ msgid "Documents in the index"
544
+ msgstr "Dokumentů v indexu"
545
+
546
+ #: lib/interface.php:871
547
+ msgid "State of the Index"
548
+ msgstr "Stav indexu"
549
+
550
+ #: lib/interface.php:869
551
+ msgid "Use 'Build the index' to build the index with current <a href='#indexing'>indexing options</a>. If you can't finish indexing with one go, use 'Continue indexing' to finish the job. You can change the number of documents to add until you find the largest amount you can add with one go. See 'State of the Index' below to find out how many documents actually go into the index."
552
+ msgstr "Použijte 'Vytvořit index' k vytvoření indexu s aktuálním <a href='#indexing'>nastavením indexování</a>. Pokud nemůže dokončit indexování najednou, použijte \"Pokračovat v indexování\", pro dokončení úlohy. Můžete měnit počet dokumentů, které přidáváte, dokud nenajdete největší počet, který můžete zpracovat na jeden zátah. Viz \"Stav Indexu\" kde zjistíte, kolik dokumentů je skutečně zaindexováno."
553
+
554
+ #: lib/interface.php:865
555
+ msgid "WARNING: You've chosen no post types to index. Nothing will be indexed. <a href='#indexing'>Choose some post types to index</a>."
556
+ msgstr "POZOR: Nevybrali jste žádný typ příspěvků k indexování. Nic nebude indexováno. <a href='#indexing'>Vyberte k indexování některé typy příspěvků</a>."
557
+
558
+ #: lib/interface.php:861
559
+ msgid "documents."
560
+ msgstr "dokumentů."
561
+
562
+ #: lib/interface.php:861
563
+ msgid "add"
564
+ msgstr "přidat"
565
+
566
+ #: lib/interface.php:861 lib/interface.php:1326
567
+ msgid "Continue indexing"
568
+ msgstr "Pokračovat v indexování"
569
+
570
+ #: lib/interface.php:860
571
+ msgid "Build the index"
572
+ msgstr "Vytvořit index"
573
+
574
+ #: lib/interface.php:859
575
+ msgid "Save options"
576
+ msgstr "Uložit nastavení"
577
+
578
+ #: lib/interface.php:857
579
+ msgid "Quick tools"
580
+ msgstr "Rychlé nástroje"
581
+
582
+ #: lib/interface.php:852
583
+ msgid "Buy Relevanssi Premium"
584
+ msgstr "Koupit Relevanssi Premium"
585
+
586
+ #: lib/interface.php:849
587
+ msgid "Import/export options"
588
+ msgstr "Import/export nastavení"
589
+
590
+ #: lib/interface.php:846 lib/interface.php:1338
591
+ msgid "Stopwords"
592
+ msgstr "Stopslova"
593
+
594
+ #: lib/interface.php:845 lib/interface.php:1328
595
+ msgid "Synonyms"
596
+ msgstr "Synonyma"
597
+
598
+ #: lib/interface.php:844 lib/interface.php:1180
599
+ msgid "Indexing options"
600
+ msgstr "Možnosti indexování"
601
+
602
+ #: lib/interface.php:843
603
+ msgid "Highlighting search results"
604
+ msgstr "Zvýraznění výsledků hledání"
605
+
606
+ #: lib/interface.php:842
607
+ msgid "Custom excerpts"
608
+ msgstr "Vlastní náhledy"
609
+
610
+ #: lib/interface.php:841 lib/interface.php:1028
611
+ msgid "Exclusions and restrictions"
612
+ msgstr "Výjimky a omezení"
613
+
614
+ #: lib/interface.php:840 lib/interface.php:999
615
+ msgid "Logs"
616
+ msgstr "Logy"
617
+
618
+ #: lib/interface.php:839 lib/interface.php:944
619
+ msgid "Weights"
620
+ msgstr "Váhy"
621
+
622
+ #: lib/interface.php:838 lib/interface.php:878
623
+ msgid "Basic options"
624
+ msgstr "Základní nastavení"
625
+
626
+ #: lib/interface.php:529
627
+ msgid "Hits"
628
+ msgstr "Hity"
629
+
630
+ #: lib/interface.php:529
631
+ msgid "Query"
632
+ msgstr "Dotaz"
633
+
634
+ #: lib/interface.php:499
635
+ msgid "Searches"
636
+ msgstr "Vyhledávání"
637
+
638
+ #: lib/interface.php:499
639
+ msgid "When"
640
+ msgstr "Kdy"
641
+
642
+ #: lib/interface.php:497
643
+ msgid "Forever"
644
+ msgstr "Od počátku"
645
+
646
+ #: lib/interface.php:480
647
+ msgid "To reset the logs, type \"reset\" into the box here %s and click %s"
648
+ msgstr "Logy lze promazat zapsáním řetězce \"reset\" do tohoto pole %s a kliknutím na tlačítko %s"
649
+
650
+ #: lib/interface.php:477
651
+ msgid "Reset Logs"
652
+ msgstr "Vymazat logy"
653
+
654
+ #: lib/interface.php:459
655
+ msgid "Unsuccessful Queries"
656
+ msgstr "Neúspěšné vyhledávací dotazy"
657
+
658
+ #: lib/interface.php:454 lib/interface.php:470 lib/interface.php:496
659
+ msgid "Last 30 days"
660
+ msgstr "Posledních 30 dní"
661
+
662
+ #: lib/interface.php:450 lib/interface.php:466 lib/interface.php:495
663
+ msgid "Last 7 days"
664
+ msgstr "Posledních 7 dní"
665
+
666
+ #: lib/interface.php:446 lib/interface.php:462 lib/interface.php:494
667
+ msgid "Today and yesterday"
668
+ msgstr "Dnes a včera"
669
+
670
+ #: lib/interface.php:440
671
+ msgid "Here you can see the 20 most common user search queries, how many times those queries were made and how many results were found for those queries."
672
+ msgstr "Zde můžete vidět 20 nejčastěji vyhledávaných výrazů, kolikrát byly tyto, řetězce hledány a kolik výsledků bylo u těch dotazů nalezeno."
673
+
674
+ #: lib/interface.php:438
675
+ msgid "Common Queries"
676
+ msgstr "Často vyhledávané dotazy"
677
+
678
+ #: lib/interface.php:433
679
+ msgid "Totals"
680
+ msgstr "Celkem"
681
+
682
+ #: lib/interface.php:430
683
+ msgid "Total Searches"
684
+ msgstr "Souhrn vyhledávání"
685
+
686
+ #: lib/interface.php:419
687
+ msgid "Add to stopwords"
688
+ msgstr "Přidat do negativního slovníku"
689
+
690
+ #: lib/interface.php:393
691
+ msgid "These words are excellent stopword material. A word that appears in most of the posts in the database is quite pointless when searching. This is also an easy way to create a completely new stopword list, if one isn't available in your language. Click the icon after the word to add the word to the stopword list. The word will also be removed from the index, so rebuilding the index is not necessary."
692
+ msgstr "Tato slova jsou vynikající materiál pro negativní slovník. Slovo, které se objeví ve většině příspěvků, je v databázi zcela nesmyslné pro vyhledávání. Toto je také snadný způsob, jak vytvořit zcela nový negativní slovník, pokud už nějaký není k dispozici pro váš jazyk. Klikněte na ikonu za slovem a přidejte jej tak do negativního slovníku. Slovo bude také odstraněno z indexu, takže opětovné re-indexování není nutné."
693
+
694
+ #: lib/interface.php:391
695
+ msgid "25 most common words in the index"
696
+ msgstr "25 nejčastějších slov v indexu"
697
+
698
+ #: lib/interface.php:380
699
+ msgid "<div id='message' class='updated fade'><p>Couldn't remove term '%s' from stopwords!</p></div>"
700
+ msgstr "<div id='message' class='updated fade'><p>Výraz nelze odebrat '%s' z negativního slovníku!</p></div>"
701
+
702
+ #: lib/interface.php:377
703
+ msgid "<div id='message' class='updated fade'><p>Term '%s' removed from stopwords! Re-index to get it back to index.</p></div>"
704
+ msgstr "<div id='message' class='updated fade'><p>Výraz '%s' byl odebrán z negativního slovníku! Pro jeho vrácení do indexu je nutno re-indexovat.</p></div>"
705
+
706
+ #: lib/interface.php:367
707
+ msgid "<div id='message' class='updated fade'><p>Stopwords removed! Remember to re-index.</p></div>"
708
+ msgstr "<div id='message' class='updated fade'><p>Stopslova byla odebrána! Nezapomeňte re-indexovat.</p></div>"
709
+
710
+ #: lib/interface.php:330
711
+ msgid "<div id='message' class='updated fade'><p>Couldn't add term '%s' to stopwords!</p></div>"
712
+ msgstr "<div id='message' class='updated fade'><p>Výraz '%s' se nepodařilo přidat do negativního slovníku!</p></div>"
713
+
714
+ #: lib/interface.php:327
715
+ msgid "<div id='message' class='updated fade'><p>Term '%s' added to stopwords!</p></div>"
716
+ msgstr "<div id='message' class='updated fade'><p>Výraz '%s' byl přidán do negativního slovníku!</p></div>"
717
+
718
+ #: lib/interface.php:320
719
+ msgid "<div id='message' class='updated fade'><p>Successfully added %d/%d terms to stopwords!</p></div>"
720
+ msgstr "<div id='message' class='updated fade'><p> %d/%d výrazů bylo úspěšně přidáno do negativního slovníku!</p></div>"
721
+
722
+ #: lib/interface.php:83
723
+ msgid "Relevanssi User Searches"
724
+ msgstr "Relevanssi - Vyhledávání návštěvníků"
725
+
726
+ #: lib/interface.php:81
727
+ msgid "User Searches"
728
+ msgstr "Návštěvník vyhledává"
729
+
730
+ #: lib/interface.php:9
731
+ msgid "Relevanssi Search Options"
732
+ msgstr "Relevanssi možnosti vyhledávání"
733
+
734
+ #: lib/interface.php:6
735
+ msgid "Relevanssi Premium Search Options"
736
+ msgstr "Relevanssi možnosti vyhledávání Premium verze"
737
+
738
+ #: lib/init.php:86 lib/init.php:87
739
+ msgid "User searches"
740
+ msgstr "Návštěvník vyhledává"
741
+
742
+ #: lib/init.php:41
743
+ msgid "You do not have an index! Remember to build the index (click the \"Build the index\" button), otherwise searching won't work."
744
+ msgstr "Nemáte index! Nezapomeňte vytvořit index (kliknutím na tlačítko \"Vytvořit index\"), jinak nebude vyhledávání fungovat."
745
+
746
+ #: lib/excerpts-highlights.php:11
747
+ msgid "There is no excerpt because this is a protected post."
748
+ msgstr "Neexistuje žádný Stručný obsah, protože se jedná o chráněný příspěvek."
relevanssi.php CHANGED
@@ -3,12 +3,12 @@
3
  Plugin Name: Relevanssi
4
  Plugin URI: http://www.relevanssi.com/
5
  Description: This plugin replaces WordPress search with a relevance-sorting search.
6
- Version: 3.5.6.1
7
  Author: Mikko Saari
8
  Author URI: http://www.mikkosaari.fi/
9
  */
10
 
11
- /* Copyright 2016 Mikko Saari (email: mikko@mikkosaari.fi)
12
 
13
  This file is part of Relevanssi, a search plugin for WordPress.
14
 
3
  Plugin Name: Relevanssi
4
  Plugin URI: http://www.relevanssi.com/
5
  Description: This plugin replaces WordPress search with a relevance-sorting search.
6
+ Version: 3.5.7
7
  Author: Mikko Saari
8
  Author URI: http://www.mikkosaari.fi/
9
  */
10
 
11
+ /* Copyright 2017 Mikko Saari (email: mikko@mikkosaari.fi)
12
 
13
  This file is part of Relevanssi, a search plugin for WordPress.
14
 
stopwords/stopwords.cs_CZ ADDED
@@ -0,0 +1,327 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ p�vodn� zdroj: http://www.ranks.nl/stopwords/czech
4
+ dal�� zdroj: http://weblog.jakpsatweb.cz/b/1113252865-ceska-stopslova-na-jyxo.html
5
+ po�e�til a doplnil: Mik013
6
+ e-m@il: mailus@n0lim.it
7
+
8
+ posledn� aktualizace: 04. 01. 2017
9
+ aktu�ln� ke sta�en�: --== zat�m nikde ==--
10
+ dal�� info: https://cs.wikipedia.org/wiki/Stopslovo
11
+ */
12
+
13
+ $stopwords = array(
14
+ "a",
15
+ "aby",
16
+ "a�koli",
17
+ "aj",
18
+ "ale",
19
+ "ani",
20
+ "asi",
21
+ "atd",
22
+ "a�",
23
+ "b�hem",
24
+ "bez",
25
+ "bo�n�",
26
+ "bude",
27
+ "budem",
28
+ "bude�",
29
+ "by",
30
+ "byl",
31
+ "byla",
32
+ "byli",
33
+ "bylo",
34
+ "byly",
35
+ "b�t",
36
+ "byt�",
37
+ "cel�",
38
+ "co",
39
+ "cokoliv",
40
+ "co�",
41
+ "cz",
42
+ "��st",
43
+ "�asto",
44
+ "�i",
45
+ "�l�nek",
46
+ "�l�nku",
47
+ "�l�nky",
48
+ "d�le",
49
+ "dal��",
50
+ "d�t",
51
+ "d�lat",
52
+ "design",
53
+ "dnes",
54
+ "dno",
55
+ "do",
56
+ "dobr�",
57
+ "dobr�",
58
+ "dobr�",
59
+ "dob�e",
60
+ "dokonce",
61
+ "dokud",
62
+ "dol�",
63
+ "dost",
64
+ "dosud",
65
+ "d��ve",
66
+ "email",
67
+ "ho",
68
+ "hodn�",
69
+ "hotovo",
70
+ "html",
71
+ "http",
72
+ "jak",
73
+ "jako",
74
+ "jak�koli",
75
+ "jak�koliv",
76
+ "jde",
77
+ "jde�",
78
+ "jdou",
79
+ "jdu",
80
+ "je",
81
+ "jeho",
82
+ "jeho�",
83
+ "jej",
84
+ "jej�",
85
+ "jejich",
86
+ "jen",
87
+ "je�t�",
88
+ "ji",
89
+ "j�",
90
+ "jim",
91
+ "jinak",
92
+ "jinde",
93
+ "jin�",
94
+ "jin�",
95
+ "j�t",
96
+ "ji�",
97
+ "jm�no",
98
+ "jsem",
99
+ "jse�",
100
+ "jsme",
101
+ "jsou",
102
+ "jste",
103
+ "k",
104
+ "kam",
105
+ "ka�d�",
106
+ "kde",
107
+ "kdekoli",
108
+ "kdekoliv",
109
+ "kdo",
110
+ "kdokoli",
111
+ "kdokoliv",
112
+ "kdy",
113
+ "kdykoli",
114
+ "kdy�",
115
+ "ke",
116
+ "koho",
117
+ "kolem",
118
+ "krom�",
119
+ "kter�",
120
+ "kter�",
121
+ "kterou",
122
+ "kter�",
123
+ "kte��",
124
+ "m�",
125
+ "m�te",
126
+ "m�",
127
+ "m�l",
128
+ "m�n�",
129
+ "mezi",
130
+ "mezit�m",
131
+ "mi",
132
+ "m�t",
133
+ "mnoho",
134
+ "mohl",
135
+ "moje",
136
+ "mo�n�",
137
+ "mu",
138
+ "m�j",
139
+ "muset",
140
+ "mus�",
141
+ "m��e",
142
+ "my",
143
+ "na",
144
+ "na�e�",
145
+ "nad",
146
+ "nahoru",
147
+ "n�m",
148
+ "napi�te",
149
+ "nap�",
150
+ "n�s",
151
+ "n�",
152
+ "na�e",
153
+ "na��",
154
+ "nato",
155
+ "nav�c",
156
+ "ne",
157
+ "nebo",
158
+ "n�co",
159
+ "ned�vno",
160
+ "n�jak",
161
+ "n�jak�",
162
+ "nejm�n�",
163
+ "nejsou",
164
+ "n�kde",
165
+ "n�kdo",
166
+ "n�kdy",
167
+ "n�kolik",
168
+ "nem�",
169
+ "nemohl",
170
+ "nen�",
171
+ "ne�",
172
+ "nic",
173
+ "nicm�n�",
174
+ "nikde",
175
+ "nikdo",
176
+ "nikdy",
177
+ "n�e",
178
+ "nov�",
179
+ "nov�",
180
+ "nov�",
181
+ "nyn�",
182
+ "o",
183
+ "oba",
184
+ "od",
185
+ "odtud",
186
+ "on",
187
+ "ona",
188
+ "oni",
189
+ "ostatn�",
190
+ "pak",
191
+ "p�r",
192
+ "pln�",
193
+ "po",
194
+ "pod",
195
+ "pod�l",
196
+ "podle",
197
+ "pokud",
198
+ "po��d",
199
+ "posledn�",
200
+ "pot�",
201
+ "potom",
202
+ "pouze",
203
+ "pr�v�",
204
+ "pr�zdn�",
205
+ "pro",
206
+ "pro�",
207
+ "pros�m",
208
+ "proti",
209
+ "proto",
210
+ "proto�e",
211
+ "prvn�",
212
+ "p�ed",
213
+ "p�edem",
214
+ "p�edn�",
215
+ "p�es",
216
+ "p�i",
217
+ "p�i�em�",
218
+ "p��li�",
219
+ "pt�",
220
+ "rad�ji",
221
+ "re",
222
+ "s",
223
+ "s�m",
224
+ "sami",
225
+ "se",
226
+ "sebe",
227
+ "si",
228
+ "skrz",
229
+ "sm�t",
230
+ "sp�e",
231
+ "spole�n�",
232
+ "spolu",
233
+ "st�le",
234
+ "stejn�",
235
+ "stejn�",
236
+ "stejn�",
237
+ "strana",
238
+ "sv�",
239
+ "sv�",
240
+ "sv�j",
241
+ "sv�ch",
242
+ "sv�m",
243
+ "sv�mi",
244
+ "ta",
245
+ "tak",
246
+ "tak�",
247
+ "takov�",
248
+ "takov�",
249
+ "takov�",
250
+ "tak�e",
251
+ "tam",
252
+ "tato",
253
+ "te�",
254
+ "tedy",
255
+ "t�ma",
256
+ "t�m��",
257
+ "ten",
258
+ "tento",
259
+ "t�to",
260
+ "ti",
261
+ "t�m",
262
+ "t�mto",
263
+ "tj",
264
+ "to",
265
+ "tohle",
266
+ "toho",
267
+ "tohoto",
268
+ "tom",
269
+ "tomto",
270
+ "tomuto",
271
+ "tu",
272
+ "tuto",
273
+ "tv�",
274
+ "tv�",
275
+ "tvoje",
276
+ "tv�j",
277
+ "ty",
278
+ "tyto",
279
+ "u",
280
+ "u�",
281
+ "v",
282
+ "v�m",
283
+ "v�s",
284
+ "v�",
285
+ "va�e",
286
+ "v�n�",
287
+ "v�etn�",
288
+ "ve",
289
+ "vedle",
290
+ "velmi",
291
+ "ven",
292
+ "vespod",
293
+ "v�t�ina",
294
+ "v�t�inou",
295
+ "v�ce",
296
+ "vid�t",
297
+ "vlastn�",
298
+ "vskutku",
299
+ "v�ak",
300
+ "v�e",
301
+ "v�echno",
302
+ "v�ude",
303
+ "v�bec",
304
+ "vy",
305
+ "vypadal",
306
+ "vypadala",
307
+ "vypadat",
308
+ "v��e",
309
+ "vz�t",
310
+ "v�dy",
311
+ "www",
312
+ "z",
313
+ "za",
314
+ "zadn�",
315
+ "zat�mco",
316
+ "zda",
317
+ "zd�nliv�",
318
+ "zde",
319
+ "ze",
320
+ "zejm�na",
321
+ "znovu",
322
+ "zp�t",
323
+ "zpr�vy",
324
+ "��dn�",
325
+ "�e"
326
+ );
327
+ ?>