Yet Another Related Posts Plugin (YARPP) - Version 3.3.3b1

Version Description

Download this release

Release Info

Developer mitchoyoshitaka
Plugin Icon 128x128 Yet Another Related Posts Plugin (YARPP)
Version 3.3.3b1
Comparing to
See all releases

Code changes from version 3.3.2 to 3.3.3b1

cache-postmeta.php CHANGED
@@ -223,12 +223,15 @@ class YARPP_Cache_Postmeta {
223
  }
224
 
225
  function get_keywords($ID, $type='body') {
 
 
 
226
  $key = $type == 'body' ? YARPP_POSTMETA_BODY_KEYWORDS_KEY : YARPP_POSTMETA_TITLE_KEYWORDS_KEY;
227
  $out = get_post_meta($ID, $key, true);
228
 
229
  // if empty, try caching them first
230
  if ($out === false) {
231
- yarpp_cache_keywords($ID);
232
  $out = get_post_meta($ID, $key, true);
233
  }
234
 
223
  }
224
 
225
  function get_keywords($ID, $type='body') {
226
+ if ( !is_int($ID) )
227
+ return false;
228
+
229
  $key = $type == 'body' ? YARPP_POSTMETA_BODY_KEYWORDS_KEY : YARPP_POSTMETA_TITLE_KEYWORDS_KEY;
230
  $out = get_post_meta($ID, $key, true);
231
 
232
  // if empty, try caching them first
233
  if ($out === false) {
234
+ $this->cache_keywords($ID);
235
  $out = get_post_meta($ID, $key, true);
236
  }
237
 
cache-tables.php CHANGED
@@ -250,12 +250,17 @@ class YARPP_Cache_Tables {
250
 
251
  function get_keywords($ID, $type='body') {
252
  global $wpdb;
 
 
 
 
253
  $out = $wpdb->get_var("select $type from {$wpdb->prefix}" . YARPP_TABLES_KEYWORDS_TABLE . " where ID = $ID");
254
- if ($out === false or $out == '') { // if empty, try caching them first.
255
  $this->cache_keywords($ID);
256
  $out = $wpdb->get_var("select $type from {$wpdb->prefix}" . YARPP_TABLES_KEYWORDS_TABLE . " where ID = $ID");
257
  }
258
- if ($out === false or $out == '') { // if still empty... return false
 
259
  //echo "<!--YARPP ERROR: couldn't select/create yarpp $type keywords for $ID-->";
260
  return false;
261
  } else {
250
 
251
  function get_keywords($ID, $type='body') {
252
  global $wpdb;
253
+
254
+ if ( !is_int($ID) )
255
+ return false;
256
+
257
  $out = $wpdb->get_var("select $type from {$wpdb->prefix}" . YARPP_TABLES_KEYWORDS_TABLE . " where ID = $ID");
258
+ if ( empty($out) ) { // if empty, try caching them first.
259
  $this->cache_keywords($ID);
260
  $out = $wpdb->get_var("select $type from {$wpdb->prefix}" . YARPP_TABLES_KEYWORDS_TABLE . " where ID = $ID");
261
  }
262
+
263
+ if ( empty($out) ) { // if still empty... return false
264
  //echo "<!--YARPP ERROR: couldn't select/create yarpp $type keywords for $ID-->";
265
  return false;
266
  } else {
includes.php CHANGED
@@ -164,11 +164,11 @@ function yarpp_admin_enqueue() {
164
  }
165
 
166
  function yarpp_settings_link($links, $file) {
167
- $this_plugin = dirname(plugin_basename(__FILE__)) . '/yarpp.php';
168
- if($file == $this_plugin) {
169
- $links[] = '<a href="options-general.php?page=yarpp">' . __('Settings', 'yarpp') . '</a>';
170
- }
171
- return $links;
172
  }
173
 
174
  function yarpp_load_thickbox() {
@@ -184,29 +184,29 @@ function yarpp_options_page() {
184
  }
185
 
186
  function widget_yarpp_init() {
187
- register_widget('YARPP_Widget');
188
  }
189
 
190
  // vaguely based on code by MK Safi
191
  // http://msafi.com/fix-yet-another-related-posts-plugin-yarpp-widget-and-add-it-to-the-sidebar/
192
  class YARPP_Widget extends WP_Widget {
193
- function YARPP_Widget() {
194
- parent::WP_Widget(false, $name = __('Related Posts (YARPP)','yarpp'));
195
- }
196
 
197
- function widget($args, $instance) {
198
- global $post;
199
- if (!is_singular())
200
- return;
201
 
202
- extract($args);
203
 
204
  $type = ($post->post_type == 'page' ? array('page') : array('post'));
205
  if (yarpp_get_option('cross_relate'))
206
  $type = array('post','page');
207
 
208
- $title = apply_filters('widget_title', $instance['title']);
209
- echo $before_widget;
210
  if ( !$instance['use_template'] ) {
211
  echo $before_title;
212
  if ($title)
@@ -214,12 +214,12 @@ class YARPP_Widget extends WP_Widget {
214
  else
215
  _e('Related Posts (YARPP)','yarpp');
216
  echo $after_title;
217
- }
218
  echo yarpp_related($type,$instance,false,false,'widget');
219
- echo $after_widget;
220
- }
221
 
222
- function update($new_instance, $old_instance) {
223
  // this starts with default values.
224
  $instance = array( 'promote_yarpp' => 0, 'use_template' => 0 );
225
  foreach ( $instance as $field => $val ) {
@@ -233,28 +233,30 @@ class YARPP_Widget extends WP_Widget {
233
  $instance['template_file'] = $old_instance['template_file'];
234
  $instance['title'] = $new_instance['title'];
235
  }
236
- return $instance;
237
- }
238
 
239
- function form($instance) {
240
- $title = esc_attr($instance['title']);
241
- $template_file = $instance['template_file'];
242
- ?>
243
- <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></label></p>
244
 
245
  <?php // if there are YARPP templates installed...
246
- if (count(glob(STYLESHEETPATH . '/yarpp-template-*.php'))): ?>
 
 
247
 
248
  <p><input class="checkbox" id="<?php echo $this->get_field_id('use_template'); ?>" name="<?php echo $this->get_field_name('use_template'); ?>" type="checkbox" <?php checked($instance['use_template'], true) ?> /> <label for="<?php echo $this->get_field_id('use_template'); ?>"><?php _e("Display using a custom template file",'yarpp');?></label></p>
249
  <p id="<?php echo $this->get_field_id('template_file_p'); ?>"><label for="<?php echo $this->get_field_id('template_file'); ?>"><?php _e("Template file:",'yarpp');?></label> <select name="<?php echo $this->get_field_name('template_file'); ?>" id="<?php echo $this->get_field_id('template_file'); ?>">
250
- <?php foreach (glob(STYLESHEETPATH . '/yarpp-template-*.php') as $template): ?>
251
  <option value='<?php echo htmlspecialchars(basename($template))?>'<?php echo (basename($template)==$template_file)?" selected='selected'":'';?>><?php echo htmlspecialchars(basename($template))?></option>
252
  <?php endforeach; ?>
253
  </select><p>
254
 
255
  <?php endif; ?>
256
 
257
- <p><input class="checkbox" id="<?php echo $this->get_field_id('promote_yarpp'); ?>" name="<?php echo $this->get_field_name('promote_yarpp'); ?>" type="checkbox" <?php checked($instance['images'], true) ?> /> <label for="<?php echo $this->get_field_id('promote_yarpp'); ?>"><?php _e("Help promote Yet Another Related Posts Plugin?",'yarpp'); ?></label></p>
258
 
259
  <script type="text/javascript">
260
  jQuery(function() {
@@ -272,8 +274,8 @@ class YARPP_Widget extends WP_Widget {
272
  });
273
  </script>
274
 
275
- <?php
276
- }
277
  }
278
 
279
 
@@ -324,7 +326,7 @@ if (!defined('LOREMIPSUM'))
324
  define('LOREMIPSUM','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras tincidunt justo a urna. Ut turpis. Phasellus convallis, odio sit amet cursus convallis, eros orci scelerisque velit, ut sodales neque nisl at ante. Suspendisse metus. Curabitur auctor pede quis mi. Pellentesque lorem justo, condimentum ac, dapibus sit amet, ornare et, erat. Quisque velit. Etiam sodales dui feugiat neque suscipit bibendum. Integer mattis. Nullam et ante non sem commodo malesuada. Pellentesque ultrices fermentum lectus. Maecenas hendrerit neque ac est. Fusce tortor mi, tristique sed, cursus at, pellentesque non, dui. Suspendisse potenti.');
325
 
326
  function yarpp_excerpt($content,$length) {
327
- $content = strip_tags( (string) $content );
328
  preg_replace('/([,;.-]+)\s*/','\1 ',$content);
329
  return implode(' ',array_slice(preg_split('/\s+/',$content),0,$length)).'...';
330
  }
@@ -352,8 +354,8 @@ function yarpp_get_option($option,$escapehtml = false) {
352
  }
353
 
354
  function yarpp_microtime_float() {
355
- list($usec, $sec) = explode(" ", microtime());
356
- return ((float)$usec + (float)$sec);
357
  }
358
 
359
  // new in 3.3: use PHP serialized format instead of JSON
@@ -373,7 +375,7 @@ function yarpp_version_info($enforce_cache = false) {
373
 
374
  function yarpp_add_metabox() {
375
  if (function_exists('add_meta_box')) {
376
- add_meta_box( 'yarpp_relatedposts', __( 'Related Posts' , 'yarpp'), 'yarpp_metabox', 'post', 'normal' );
377
  }
378
  }
379
  function yarpp_metabox() {
164
  }
165
 
166
  function yarpp_settings_link($links, $file) {
167
+ $this_plugin = dirname(plugin_basename(__FILE__)) . '/yarpp.php';
168
+ if($file == $this_plugin) {
169
+ $links[] = '<a href="options-general.php?page=yarpp">' . __('Settings', 'yarpp') . '</a>';
170
+ }
171
+ return $links;
172
  }
173
 
174
  function yarpp_load_thickbox() {
184
  }
185
 
186
  function widget_yarpp_init() {
187
+ register_widget('YARPP_Widget');
188
  }
189
 
190
  // vaguely based on code by MK Safi
191
  // http://msafi.com/fix-yet-another-related-posts-plugin-yarpp-widget-and-add-it-to-the-sidebar/
192
  class YARPP_Widget extends WP_Widget {
193
+ function YARPP_Widget() {
194
+ parent::WP_Widget(false, $name = __('Related Posts (YARPP)','yarpp'));
195
+ }
196
 
197
+ function widget($args, $instance) {
198
+ global $post;
199
+ if (!is_singular())
200
+ return;
201
 
202
+ extract($args);
203
 
204
  $type = ($post->post_type == 'page' ? array('page') : array('post'));
205
  if (yarpp_get_option('cross_relate'))
206
  $type = array('post','page');
207
 
208
+ $title = apply_filters('widget_title', $instance['title']);
209
+ echo $before_widget;
210
  if ( !$instance['use_template'] ) {
211
  echo $before_title;
212
  if ($title)
214
  else
215
  _e('Related Posts (YARPP)','yarpp');
216
  echo $after_title;
217
+ }
218
  echo yarpp_related($type,$instance,false,false,'widget');
219
+ echo $after_widget;
220
+ }
221
 
222
+ function update($new_instance, $old_instance) {
223
  // this starts with default values.
224
  $instance = array( 'promote_yarpp' => 0, 'use_template' => 0 );
225
  foreach ( $instance as $field => $val ) {
233
  $instance['template_file'] = $old_instance['template_file'];
234
  $instance['title'] = $new_instance['title'];
235
  }
236
+ return $instance;
237
+ }
238
 
239
+ function form($instance) {
240
+ $title = esc_attr($instance['title']);
241
+ $template_file = $instance['template_file'];
242
+ ?>
243
+ <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></label></p>
244
 
245
  <?php // if there are YARPP templates installed...
246
+
247
+ $templates = glob(STYLESHEETPATH . '/yarpp-template-*.php');
248
+ if ( is_array(templates) && count($templates) ): ?>
249
 
250
  <p><input class="checkbox" id="<?php echo $this->get_field_id('use_template'); ?>" name="<?php echo $this->get_field_name('use_template'); ?>" type="checkbox" <?php checked($instance['use_template'], true) ?> /> <label for="<?php echo $this->get_field_id('use_template'); ?>"><?php _e("Display using a custom template file",'yarpp');?></label></p>
251
  <p id="<?php echo $this->get_field_id('template_file_p'); ?>"><label for="<?php echo $this->get_field_id('template_file'); ?>"><?php _e("Template file:",'yarpp');?></label> <select name="<?php echo $this->get_field_name('template_file'); ?>" id="<?php echo $this->get_field_id('template_file'); ?>">
252
+ <?php foreach ($templates as $template): ?>
253
  <option value='<?php echo htmlspecialchars(basename($template))?>'<?php echo (basename($template)==$template_file)?" selected='selected'":'';?>><?php echo htmlspecialchars(basename($template))?></option>
254
  <?php endforeach; ?>
255
  </select><p>
256
 
257
  <?php endif; ?>
258
 
259
+ <p><input class="checkbox" id="<?php echo $this->get_field_id('promote_yarpp'); ?>" name="<?php echo $this->get_field_name('promote_yarpp'); ?>" type="checkbox" <?php checked($instance['images'], true) ?> /> <label for="<?php echo $this->get_field_id('promote_yarpp'); ?>"><?php _e("Help promote Yet Another Related Posts Plugin?",'yarpp'); ?></label></p>
260
 
261
  <script type="text/javascript">
262
  jQuery(function() {
274
  });
275
  </script>
276
 
277
+ <?php
278
+ }
279
  }
280
 
281
 
326
  define('LOREMIPSUM','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras tincidunt justo a urna. Ut turpis. Phasellus convallis, odio sit amet cursus convallis, eros orci scelerisque velit, ut sodales neque nisl at ante. Suspendisse metus. Curabitur auctor pede quis mi. Pellentesque lorem justo, condimentum ac, dapibus sit amet, ornare et, erat. Quisque velit. Etiam sodales dui feugiat neque suscipit bibendum. Integer mattis. Nullam et ante non sem commodo malesuada. Pellentesque ultrices fermentum lectus. Maecenas hendrerit neque ac est. Fusce tortor mi, tristique sed, cursus at, pellentesque non, dui. Suspendisse potenti.');
327
 
328
  function yarpp_excerpt($content,$length) {
329
+ $content = strip_tags( (string) $content );
330
  preg_replace('/([,;.-]+)\s*/','\1 ',$content);
331
  return implode(' ',array_slice(preg_split('/\s+/',$content),0,$length)).'...';
332
  }
354
  }
355
 
356
  function yarpp_microtime_float() {
357
+ list($usec, $sec) = explode(" ", microtime());
358
+ return ((float)$usec + (float)$sec);
359
  }
360
 
361
  // new in 3.3: use PHP serialized format instead of JSON
375
 
376
  function yarpp_add_metabox() {
377
  if (function_exists('add_meta_box')) {
378
+ add_meta_box( 'yarpp_relatedposts', __( 'Related Posts' , 'yarpp'), 'yarpp_metabox', 'post', 'normal' );
379
  }
380
  }
381
  function yarpp_metabox() {
intl.php CHANGED
@@ -1,51 +1,55 @@
1
  <?php
2
 
3
- include(YARPP_DIR.'/lang/words-'.word_file_lang().'.php');
4
 
5
  function word_file_lang() {
6
- if (!defined('WPLANG'))
7
  return 'en_US';
8
- switch (true) {
9
- case preg_match("/^de/i",WPLANG):
 
10
  return 'de_DE';
11
- case preg_match("/^it/i",WPLANG):
12
  return 'it_IT';
13
- case preg_match("/^pl/i",WPLANG):
14
  return 'pl_PL';
15
- case preg_match("/^bg/i",WPLANG):
16
  return 'bg_BG';
17
- case preg_match("/^fr/i",WPLANG):
18
  return 'fr_FR';
19
- case preg_match("/^cs/i",WPLANG):
20
  return 'cs_CZ';
 
 
21
  default:
22
  return 'en_US';
23
  }
24
  }
25
 
26
  function paypal_directory() {
27
- if (!defined('WPLANG'))
28
  return 'en_US/';
29
- switch (true) {
30
- case preg_match("/^fr/i",WPLANG):
 
31
  return 'fr_FR/';
32
- case preg_match("/^de/i",WPLANG):
33
  return 'de_DE/';
34
- case preg_match("/^it/i",WPLANG):
35
  return 'it_IT/';
36
- case preg_match("/^ja/i",WPLANG):
37
  return 'ja_JP/';
38
- case preg_match("/^es/i",WPLANG):
39
  return 'es_XC/';
40
- case preg_match("/^nl/i",WPLANG):
41
  return 'nl_NL/';
42
- case preg_match("/^pl/i",WPLANG):
43
  return 'pl_PL/';
44
- case preg_match("/^zh_CN/i",WPLANG):
 
 
 
45
  return 'zh_XC/';
46
- case preg_match("/^zh_HK/i",WPLANG):
47
- case preg_match("/^zh_TW/i",WPLANG):
48
- return 'zh_HK/';
49
  default:
50
  return 'en_US/';
51
  }
1
  <?php
2
 
3
+ include( YARPP_DIR . '/lang/words-' . word_file_lang() . '.php' );
4
 
5
  function word_file_lang() {
6
+ if ( !defined('WPLANG') )
7
  return 'en_US';
8
+ $lang = substr(WPLANG, 0, 2);
9
+ switch ( $lang ) {
10
+ case 'de':
11
  return 'de_DE';
12
+ case 'it':
13
  return 'it_IT';
14
+ case 'pl':
15
  return 'pl_PL';
16
+ case 'bg':
17
  return 'bg_BG';
18
+ case 'fr':
19
  return 'fr_FR';
20
+ case 'cs':
21
  return 'cs_CZ';
22
+ case 'nl':
23
+ return 'nl_NL';
24
  default:
25
  return 'en_US';
26
  }
27
  }
28
 
29
  function paypal_directory() {
30
+ if ( !defined('WPLANG') )
31
  return 'en_US/';
32
+ $lang = substr(WPLANG, 0, 2);
33
+ switch ( $lang ) {
34
+ case 'fr':
35
  return 'fr_FR/';
36
+ case 'de':
37
  return 'de_DE/';
38
+ case 'it':
39
  return 'it_IT/';
40
+ case 'ja':
41
  return 'ja_JP/';
42
+ case 'es':
43
  return 'es_XC/';
44
+ case 'nl':
45
  return 'nl_NL/';
46
+ case 'pl':
47
  return 'pl_PL/';
48
+ case 'zh':
49
+ if (preg_match("/^zh_(HK|TW)/i",WPLANG))
50
+ return 'zh_HK/';
51
+ // actually zh_CN, but interpret as default zh:
52
  return 'zh_XC/';
 
 
 
53
  default:
54
  return 'en_US/';
55
  }
keywords.php CHANGED
@@ -8,8 +8,8 @@ function yarpp_extract_keywords($source,$max = 20) {
8
  $softhyphen = html_entity_decode('&#173;',ENT_NOQUOTES,'UTF-8');
9
  $source = str_replace($softhyphen, '', $source);
10
 
11
- if (function_exists('mb_split')) {
12
- $charset = get_option('blog_charset');
13
  mb_regex_encoding($charset);
14
  $wordlist = mb_split('\s*\W+\s*', mb_strtolower($source, $charset));
15
  } else
8
  $softhyphen = html_entity_decode('&#173;',ENT_NOQUOTES,'UTF-8');
9
  $source = str_replace($softhyphen, '', $source);
10
 
11
+ $charset = get_option('blog_charset');
12
+ if ( function_exists('mb_split') && !empty($charset) ) {
13
  mb_regex_encoding($charset);
14
  $wordlist = mb_split('\s*\W+\s*', mb_strtolower($source, $charset));
15
  } else
lang/words-nl_NL.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+
3
+ $overusedwords = array( '', 'een', 'de', 'het', 'of', 'in', 'naar', 'op', 'is', 'met', 'voor', 'als', 'dat', 'onder', 'dit', 'mijn', 'mij', 'was', 'ons', 'jij', 'zij', 'wij', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '10', 'over', 'na', 'alle', 'bijna', 'langs', 'ook', 'ander', 'enig', 'enige', 'zijn', 'ben', 'bent', 'beschikbaar', 'terug', 'omdat', 'geweest', 'doordat', 'beste', 'beter', 'groot', 'klein', 'beiden', 'maar', 'c', 'kom', 'komen','kan','kunnen','konden', 'controleren', 'zouden', 'zou', 'cursus', 'd', 'dan', 'dag', 'beslissen', 'deden', 'deed', 'doet', 'verschillend', 'doe', 'niet', 'nog', 'onder', 'rijden', 'e', 'elke', 'gemakkelijk', 'makkie', 'editie', 'versie', 'einde', 'genoeg', 'even', 'elke', 'voorbeeld', 'enkele', 'vinden', 'eerste', 'gevonden', 'vind', 'vindt' 'van', 'krijg', 'krijgen', 'gaan', 'ga', 'goed', 'snap', 'begrijpen', 'heb', 'hebben', 'had', 'hard', 'heeft', 'hij', 'hem', 'haar', 'hier', 'hoe', 'niet', 'wel', 'weten', 'laatste', 'links', 'rechts', 'leuk', 'klein', 'lang', 'kijk', 'kijken', 'veel', 'weinig', 'maken', 'maak', 'gemaakt', 'menu', 'misschien', 'wellicht', 'meer', 'minder', 'naam', 'nbsp', 'nodig', 'nieuw', 'nee', 'ja', 'niet', 'nu', 'nummer', 'uit', 'oud', 'een', 'alleen', 'originineel', 'ander', 'andere', 'anders', 'haar', 'over', 'deel', 'plek', 'plek', 'mooi', 'waarschijnlijk', 'probleem', 'plaats', 'ongeveer', 'gezegde', 're', 'werkelijk', 'uitkomst', 'plus', 'min','klopt', 's', 'zelfde','dezelfde', 'zag', 'zien', 'zie', 'verschillende','zou', 'zouden', 'since', 'maat', 'kleine', 'zo', 'sommige', 'iets', 'speciaal', 'stil','nog', 'dingen', 'zoals', 'natuurlijk', 'systeem', 't', 'nemen','neem', 'dan', 'hun', 'hen', 'daarna', 'er', 'deze', 'dingen', 'ding', 'denk', 'denken', 'zulke', 'moeilijk', 'door','doorheen', 'doordat','omdat', 'tijd', 'vandaag', 'samen', 'ook', 'nam', 'twee', 'gebruiken','gebruik', 'gebruikt', 'gebruikte', 'zeer', 'erg', 'want', 'manier', 'nou', 'nu', 'geweest', 'waar', 'wat', 'wanneer', 'waar', 'welke', 'ondertussen', 'terwijl', 'wit','zwart','wie','wil', 'zou','zouden', 'jou', 'jouw', 'haar', 'van','mensen', 'man', 'vrouw', 'persoon', 'goed', 'slecht', 'heel','later', 'eerder', 'nieuw', 'moet', 'moeten', 'mogen', 'mag', 'zegt', 'zeggen', 'zei', 'zeg', 'maak', 'maken', 'maakte', 'gemaakt', 'doe', 'doen', 'deed', 'deden', 'konden', 'word', 'wordt', 'werd', 'werden', 'ja', 'nee','uh', 'die','naar', 'je', 'maar','jaar','moet', 'aleen');
lang/yarpp-it_IT.mo CHANGED
Binary file
lang/yarpp-it_IT.po CHANGED
@@ -4,8 +4,8 @@ msgstr ""
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
8
- "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -13,368 +13,368 @@ msgstr ""
13
  "X-Poedit-Language: Italian\n"
14
  "X-Poedit-Country: ITALY\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: .\n"
18
- "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
 
22
- #: includes.php:376
23
  #@ yarpp
 
24
  msgid "Related Posts"
25
  msgstr "Articoli correlati"
26
 
 
27
  #: options.php:63
28
  #, php-format
29
- #@ yarpp
30
  msgid "YARPP's \"consider titles\" and \"consider bodies\" relatedness criteria require your <code>%s</code> table to use the <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>MyISAM storage engine</a>, but the table seems to be using the <code>%s</code> engine. These two options have been disabled."
31
  msgstr "I criteri di affinità YARPP \"considera titoli\" e \"considera contenuti\" necessitano che la tua tabella <code>%s</code> possa utilizzare il <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>MyISAM storage engine</a>. Pare che sia in uso il <code>%s</code> engine. Queste due opzioni sono state disattivate."
32
 
 
33
  #: options.php:65
34
  #, php-format
35
- #@ yarpp
36
  msgid "To restore these features, please update your <code>%s</code> table by executing the following SQL directive: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code> . No data will be erased by altering the table's engine, although there are performance implications."
37
  msgstr "Per poter ripristinare queste funzioni dovrai aggiornare la tua tabella <code>%s</code> facendo sì che sia eseguita la seguente direttiva SQL: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code> . Nessun dato verrà perso modificando la tabella del motore sebbene ne verranno interessate le prestazioni."
38
 
 
39
  #: options.php:67
40
  #, php-format
41
- #@ yarpp
42
  msgid "If, despite this check, you are sure that <code>%s</code> is using the MyISAM engine, press this magic button:"
43
  msgstr "Se, nonostante questa nota, fossi certo che <code>%s</code> stia utilizzando il MyISAM engine, premi il pulsante magico:"
44
 
45
- #: options.php:70
46
  #@ yarpp
 
47
  msgid "Trust me. Let me use MyISAM features."
48
  msgstr "Abbi fiducia. Lasciami utilizzare le funzioni MyISAM."
49
 
50
- #: options.php:83
51
  #@ yarpp
 
52
  msgid "The YARPP database had an error but has been fixed."
53
  msgstr "Il database di YARPP aveva un errore, ma é stato corretto."
54
 
55
- #: options.php:85
56
  #@ yarpp
 
57
  msgid "The YARPP database has an error which could not be fixed."
58
  msgstr "Il database di YARPP ha un errore che non può essere corretto."
59
 
60
- #: options-meta-boxes.php:38
61
  #@ yarpp
 
62
  msgid "word"
63
  msgstr "parola"
64
 
65
- #: options-meta-boxes.php:39
66
  #@ yarpp
 
67
  msgid "tag"
68
  msgstr "tag"
69
 
70
- #: options-meta-boxes.php:40
71
  #@ yarpp
 
72
  msgid "category"
73
  msgstr "categoria"
74
 
 
75
  #: options-meta-boxes.php:45
76
  #: options-meta-boxes.php:63
77
  #: options-meta-boxes.php:76
78
- #@ yarpp
79
  msgid "do not consider"
80
  msgstr "non considerare"
81
 
 
82
  #: options-meta-boxes.php:46
83
  #: options-meta-boxes.php:64
84
  #: options-meta-boxes.php:78
85
- #@ yarpp
86
  msgid "consider"
87
  msgstr "considera"
88
 
 
89
  #: options-meta-boxes.php:48
90
  #: options-meta-boxes.php:80
91
  #, php-format
92
- #@ yarpp
93
  msgid "require at least one %s in common"
94
  msgstr "richiedi almeno 1 %s in comune"
95
 
 
96
  #: options-meta-boxes.php:50
97
  #: options-meta-boxes.php:82
98
  #, php-format
99
- #@ yarpp
100
  msgid "require more than one %s in common"
101
  msgstr "richiedi più di 1 %s in comune"
102
 
103
- #: options-meta-boxes.php:65
104
  #@ yarpp
 
105
  msgid "consider with extra weight"
106
  msgstr "considera con extra weight"
107
 
108
- #: options-meta-boxes.php:286
109
  #@ default
110
  #@ yarpp
 
111
  msgid "Donate to mitcho (Michael Yoshitaka Erlewine) for this plugin via PayPal"
112
  msgstr "Effettua una donazione via PayPal per mitcho (Michael Yoshitaka Erlewine) lo sviluppatore di questo plugin"
113
 
114
- #: options.php:178
115
  #@ yarpp
 
116
  msgid "Yet Another Related Posts Plugin Options"
117
  msgstr "Opzioni Yet Another Related Posts"
118
 
119
- #: options-meta-boxes.php:118
120
  #@ yarpp
 
121
  msgid "\"The Pool\""
122
  msgstr "\"Veduta di insieme\""
123
 
124
- #: options-meta-boxes.php:91
125
  #@ yarpp
 
126
  msgid "\"The Pool\" refers to the pool of posts and pages that are candidates for display as related to the current entry."
127
  msgstr "Per \"Veduta di insieme\" si intende il totale degli articoli e pagine che sono cadidati per essere mostrati quali correlati all'articolo in merito."
128
 
129
- #: options-meta-boxes.php:96
130
  #@ yarpp
 
131
  msgid "Disallow by category:"
132
  msgstr "Escludi categorie:"
133
 
134
- #: options-meta-boxes.php:98
135
  #@ yarpp
 
136
  msgid "Disallow by tag:"
137
  msgstr "Escludi tag:"
138
 
139
- #: options-meta-boxes.php:101
140
  #@ yarpp
 
141
  msgid "Show password protected posts?"
142
  msgstr "Desideri mostrare gli articoli protetti da una password?"
143
 
144
- #: options-meta-boxes.php:140
145
  #@ yarpp
 
146
  msgid "Show only previous posts?"
147
  msgstr "Desideri mostrare solamente gli articoli pubblicati in precedenza?"
148
 
149
- #: options-meta-boxes.php:148
150
  #@ yarpp
 
151
  msgid "\"Relatedness\" options"
152
  msgstr "Opzioni \"Affinità\""
153
 
154
- #: options-meta-boxes.php:130
155
  #@ yarpp
 
156
  msgid "Match threshold:"
157
  msgstr "Valore di corrispondenza:"
158
 
159
- #: options-meta-boxes.php:131
160
  #@ yarpp
 
161
  msgid "Titles: "
162
  msgstr "Titoli:"
163
 
164
- #: options-meta-boxes.php:133
165
  #@ yarpp
 
166
  msgid "Bodies: "
167
  msgstr "Contenuti:"
168
 
169
- #: options-meta-boxes.php:135
170
  #@ yarpp
 
171
  msgid "Tags: "
172
  msgstr "Tag: "
173
 
174
- #: options-meta-boxes.php:137
175
  #@ yarpp
 
176
  msgid "Categories: "
177
  msgstr "Categorie:"
178
 
179
- #: options-meta-boxes.php:139
180
  #@ yarpp
 
181
  msgid "Cross-relate posts and pages?"
182
  msgstr "Relazione incrociata per articoli e pagine?"
183
 
184
- #: options-meta-boxes.php:139
185
  #@ yarpp
 
186
  msgid "When the \"Cross-relate posts and pages\" option is selected, the <code>related_posts()</code>, <code>related_pages()</code>, and <code>related_entries()</code> all will give the same output, returning both related pages and posts."
187
  msgstr "Una volta selezionata l'opzione \"Relazione incrociata articoli e pagine\", <code>related_posts()</code>, <code>related_pages()</code> e <code>related_entries()</code> forniranno tutti lo stesso output verso le pagine e gli articoli correlati."
188
 
189
- #: options-meta-boxes.php:212
190
  #@ yarpp
 
191
  msgid "Display options <small>for your website</small>"
192
  msgstr "Opzioni di visualizzazione nel <small>tuo sito</small>"
193
 
 
194
  #: magic.php:297
195
  #: options-meta-boxes.php:205
196
  #: options-meta-boxes.php:269
197
  #, php-format
198
- #@ yarpp
199
  msgid "Related posts brought to you by <a href='%s'>Yet Another Related Posts Plugin</a>."
200
  msgstr "Articoli correlati elaborati dal plugin <a href='%s'>Yet Another Related Posts</a>."
201
 
202
- #: options-meta-boxes.php:157
203
  #@ yarpp
 
204
  msgid "Automatically display related posts?"
205
  msgstr "Desideri mostrare in automatico gli articoli correlati?"
206
 
207
- #: options-meta-boxes.php:157
208
  #@ yarpp
 
209
  msgid "This option automatically displays related posts right after the content on single entry pages. If this option is off, you will need to manually insert <code>related_posts()</code> or variants (<code>related_pages()</code> and <code>related_entries()</code>) into your theme files."
210
  msgstr "Questa opzione farà in modo che gli articoli correlati vengano mostrati automaticamente in coda al contenuto di ogni singola pubblicazione . Qualora questa opzione non fosse stata attivata, dovrai inserire manualmente <code>related_posts()</code> oppure le varianti (<code>related_pages()</code> e <code>related_entries()</code>) nei file del tuo tema."
211
 
212
- #: options-meta-boxes.php:158
213
  #@ yarpp
 
214
  msgid "Website display code example"
215
  msgstr "Esempio codice"
216
 
 
217
  #: options-meta-boxes.php:158
218
  #: options-meta-boxes.php:221
219
- #@ yarpp
220
  msgid "(Update options to reload.)"
221
  msgstr "(Ricarica la pagina per visualizzare l'aggiornamento)"
222
 
 
223
  #: options-meta-boxes.php:160
224
  #: options-meta-boxes.php:226
225
- #@ yarpp
226
  msgid "Maximum number of related posts:"
227
  msgstr "Numero max. di articoli correlati:"
228
 
 
229
  #: options-meta-boxes.php:175
230
  #: options-meta-boxes.php:244
231
- #@ yarpp
232
  msgid "Before / after related entries:"
233
  msgstr "Davanti / in coda agli articoli correlati:"
234
 
 
235
  #: options-meta-boxes.php:175
236
  #: options-meta-boxes.php:176
237
  #: options-meta-boxes.php:184
238
  #: options-meta-boxes.php:244
239
  #: options-meta-boxes.php:245
240
  #: options-meta-boxes.php:250
241
- #@ yarpp
242
  msgid "For example:"
243
  msgstr "Esempio:"
244
 
 
245
  #: options-meta-boxes.php:176
246
  #: options-meta-boxes.php:245
247
- #@ yarpp
248
  msgid "Before / after each related entry:"
249
  msgstr "Davanti / in coda ad ogni articolo correlato:"
250
 
 
251
  #: options-meta-boxes.php:178
252
  #: options-meta-boxes.php:247
253
- #@ yarpp
254
  msgid "Show excerpt?"
255
  msgstr "Desideri mostrare il riassunto?"
256
 
 
257
  #: options-meta-boxes.php:179
258
  #: options-meta-boxes.php:248
259
- #@ yarpp
260
  msgid "Excerpt length (No. of words):"
261
  msgstr "Lunghezza riassunto (totale parole):"
262
 
263
- #: options-meta-boxes.php:183
264
  #@ yarpp
 
265
  msgid "Before / after (Excerpt):"
266
  msgstr "Davanti / in coda (Riassunto):"
267
 
 
268
  #: options-meta-boxes.php:189
269
  #: options-meta-boxes.php:254
270
- #@ yarpp
271
  msgid "Order results:"
272
  msgstr "Disposizione dei risultati:"
273
 
 
274
  #: options-meta-boxes.php:191
275
  #: options-meta-boxes.php:256
276
- #@ yarpp
277
  msgid "score (high relevance to low)"
278
  msgstr "punteggio (da massima a minima rilevanza)"
279
 
 
280
  #: options-meta-boxes.php:192
281
  #: options-meta-boxes.php:257
282
- #@ yarpp
283
  msgid "score (low relevance to high)"
284
  msgstr "punteggio (da minima a massima rilevanza)"
285
 
 
286
  #: options-meta-boxes.php:193
287
  #: options-meta-boxes.php:258
288
- #@ yarpp
289
  msgid "date (new to old)"
290
  msgstr "data (dal nuovo al vecchio)"
291
 
 
292
  #: options-meta-boxes.php:194
293
  #: options-meta-boxes.php:259
294
- #@ yarpp
295
  msgid "date (old to new)"
296
  msgstr "data (dal vecchio al nuovo)"
297
 
 
298
  #: options-meta-boxes.php:195
299
  #: options-meta-boxes.php:260
300
- #@ yarpp
301
  msgid "title (alphabetical)"
302
  msgstr "titolo (A-Z)"
303
 
 
304
  #: options-meta-boxes.php:196
305
  #: options-meta-boxes.php:261
306
- #@ yarpp
307
  msgid "title (reverse alphabetical)"
308
  msgstr "titolo (Z-A)"
309
 
 
310
  #: options-meta-boxes.php:201
311
  #: options-meta-boxes.php:266
312
- #@ yarpp
313
  msgid "Default display if no results:"
314
  msgstr "Testo predefinito da mostrare in assenza di risultati:"
315
 
 
316
  #: includes.php:257
317
  #: options-meta-boxes.php:203
318
  #: options-meta-boxes.php:268
319
- #@ yarpp
320
  msgid "Help promote Yet Another Related Posts Plugin?"
321
  msgstr "Desideri promuovere il plugin Yet Another Related Posts?"
322
 
 
323
  #: options-meta-boxes.php:205
324
  #: options-meta-boxes.php:269
325
  #, php-format
326
- #@ yarpp
327
  msgid "This option will add the code %s. Try turning it on, updating your options, and see the code in the code example to the right. These links and donations are greatly appreciated."
328
  msgstr "Questa opzione aggiugerà il codice %s. Attivalo, aggiorna le opzioni e vedi l'anteprima del codice qui a lato. Ti sarei molto grato se tu mostrassi il mio link."
329
 
330
- #: options-meta-boxes.php:276
331
  #@ yarpp
 
332
  msgid "Display options <small>for RSS</small>"
333
  msgstr "Opzioni di visualizzazione nel tuo <small>feed RSS</small>"
334
 
335
- #: options-meta-boxes.php:221
336
  #@ yarpp
 
337
  msgid "Display related posts in feeds?"
338
  msgstr "Desideri mostrare gli articoli correlati nei feed?"
339
 
340
- #: options-meta-boxes.php:223
341
  #@ yarpp
 
342
  msgid "Display related posts in the descriptions?"
343
  msgstr "Desideri mostrare gli articoli correlati nelle descrizioni?"
344
 
345
- #: options-meta-boxes.php:223
346
  #@ yarpp
 
347
  msgid "This option displays the related posts in the RSS description fields, not just the content. If your feeds are set up to only display excerpts, however, only the description field is used, so this option is required for any display at all."
348
  msgstr "Questa opzione mostrerà gli articoli correlati nei campi della descrizione del feed RSS e non solo nei contenuti. Se i tuoi feed fossero stati impostati per mostrare solamente i riassunti degli articoli, in ogni caso verrà utilizzato il campo per la descrizione quindi, questa opzione é comunque necessaria."
349
 
350
- #: options-meta-boxes.php:221
351
  #@ yarpp
 
352
  msgid "RSS display code example"
353
  msgstr "Esempio codice"
354
 
355
- #: options-meta-boxes.php:250
356
  #@ yarpp
 
357
  msgid "Before / after (excerpt):"
358
  msgstr "Davanti / in coda (riassunto):"
359
 
 
360
  #: template-builtin.php:35
361
  #, php-format
362
- #@ yarpp
363
  msgid "%f is the YARPP match score between the current entry and this related entry. You are seeing this value because you are logged in to WordPress as an administrator. It is not shown to regular visitors."
364
  msgstr "%f é il punteggio di affinità YARPP tra questo articolo principale ed i suoi relativi. Stai vedendo questo messaggio perché sei collegato come amministratore di WordPress. Il messaggio lo vedi solo tu."
365
 
 
366
  #: includes.php:149
367
  #: includes.php:194
368
  #: includes.php:215
369
- #@ yarpp
370
  msgid "Related Posts (YARPP)"
371
  msgstr "Related Posts (YARPP)"
372
 
373
- #: options.php:54
374
  #@ yarpp
 
375
  msgid "The MyISAM check has been overridden. You may now use the \"consider titles\" and \"consider bodies\" relatedness criteria."
376
  msgstr "La verifica MyISAM é stata sovrascritta. Potrai da ora utilizzare \"considera titoli\" e \"considera contenuti\" come criteri di affinità."
377
 
 
378
  #: options-meta-boxes.php:124
379
  #: options-meta-boxes.php:139
380
  #: options-meta-boxes.php:157
@@ -384,186 +384,185 @@ msgstr "La verifica MyISAM é stata sovrascritta. Potrai da ora utilizzare \"con
384
  #: options-meta-boxes.php:223
385
  #: options-meta-boxes.php:228
386
  #: options-meta-boxes.php:268
387
- #@ yarpp
388
  msgid "more&gt;"
389
  msgstr "info&gt;"
390
 
391
- #: options.php:114
392
  #@ yarpp
 
393
  msgid "Options saved!"
394
  msgstr "Le opzioni sono state salvate!"
395
 
396
- #: options.php:280
397
  #@ yarpp
 
398
  msgid "Do you really want to reset your configuration?"
399
  msgstr "Sei certo di volere ripristinare la tua configurazione?"
400
 
401
- #: options.php:279
402
  #@ yarpp
 
403
  msgid "Update options"
404
  msgstr "Aggiorna le opzioni"
405
 
406
- #: options-meta-boxes.php:124
407
  #@ yarpp
 
408
  msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
409
  msgstr "Quanto più alto sarà il valore di corrispondenza, maggiore sarà la restrizione: otterrai di fatto un minore numero di articoli correlati. Il valore predefinito é impostato a 5. Qualora desiderassi trovare un valore appropriato per determinare le affinità, verifica gli articoli correlati di alcuni post ed il punteggio a loro associato. Potrai quindi determinare quale sia il migliore valore di corrispondenza per il tuo sito."
410
 
411
- #: options.php:280
412
  #@ yarpp
 
413
  msgid "Reset options"
414
  msgstr "Ripristina le opzioni"
415
 
 
416
  #: cache-postmeta.php:105
417
  #: cache-tables.php:131
418
- #@ yarpp
419
  msgid "Example post "
420
  msgstr "Articolo di esempio:"
421
 
422
- #: template-metabox.php:12
423
  #@ yarpp
 
424
  msgid "These are the related entries for this entry. Updating this post may change these related posts."
425
  msgstr "Questi sono gli articoli correlati per questo post. L'aggiornamento di questo post potrebbe cambiare gli articoli ad esso correlati."
426
 
427
- #: template-metabox.php:25
428
  #@ yarpp
 
429
  msgid "Whether all of these related entries are actually displayed and how they are displayed depends on your YARPP display options."
430
  msgstr "La visualizzazione degli articoli correlati dipende principalmente dalle opzioni YARPP."
431
 
 
432
  #: includes.php:28
433
  #: includes.php:39
434
  #: template-metabox.php:27
435
  #: template-widget.php:13
436
- #@ yarpp
437
  msgid "No related posts."
438
  msgstr "Nessun articolo correlato."
439
 
440
- #: options-meta-boxes.php:105
441
  #@ yarpp
 
442
  msgid "day(s)"
443
  msgstr "giorno(i)"
444
 
445
- #: options-meta-boxes.php:106
446
  #@ yarpp
 
447
  msgid "week(s)"
448
  msgstr "settimana(e)"
449
 
450
- #: options-meta-boxes.php:107
451
  #@ yarpp
 
452
  msgid "month(s)"
453
  msgstr "mese(i)"
454
 
455
- #: options-meta-boxes.php:109
456
  #@ yarpp
 
457
  msgid "Show only posts from the past NUMBER UNITS"
458
  msgstr "Mostra solamente gli articoli dalle precedenti NUMBER UNITS"
459
 
 
460
  #: options.php:46
461
  #, php-format
462
- #@ yarpp
463
  msgid "There is a new beta (%s) of Yet Another Related Posts Plugin. You can <a href=\"%s\">download it here</a> at your own risk."
464
  msgstr "E' disponibile una nuova (%s) beta di Yet Another Related Posts Plugin. Puoi <a href=\"%s\">scaricarla qui</a> a tuo rischio e pericolo."
465
 
 
466
  #: includes.php:248
467
  #: options-meta-boxes.php:161
468
  #: options-meta-boxes.php:228
469
- #@ yarpp
470
  msgid "Display using a custom template file"
471
  msgstr "Mostra utilizzando un file template personalizzato"
472
 
 
473
  #: includes.php:249
474
  #: options-meta-boxes.php:165
475
  #: options-meta-boxes.php:233
476
- #@ yarpp
477
  msgid "Template file:"
478
  msgstr "File template:"
479
 
480
- #: options-meta-boxes.php:221
481
  #@ yarpp
 
482
  msgid "This option displays related posts at the end of each item in your RSS and Atom feeds. No template changes are needed."
483
  msgstr "Questa opzione mostra gli articoli correlati in coda ad ogni articolo nei tuoi feed RSS e Atom. Non é necessaria alcuna modifica al template."
484
 
485
- #: options-meta-boxes.php:228
486
  #@ yarpp
 
487
  msgid "NEW!"
488
  msgstr "NUOVO!"
489
 
 
490
  #: options-meta-boxes.php:161
491
  #: options-meta-boxes.php:228
492
- #@ yarpp
493
  msgid "This advanced option gives you full power to customize how your related posts are displayed. Templates (stored in your theme folder) are written in PHP."
494
  msgstr "Le opzioni avanzate ti permettono una completa personalizzazione per la visualizzazione degli articoli correlati. I template (allocati nella cartella del tuo tema) sono stati scritti in PHP."
495
 
 
496
  #: includes.php:26
497
  #: includes.php:37
498
- #@ yarpp
499
  msgid "Related posts:"
500
  msgstr "Articoli correlati:"
501
 
 
502
  #: options-meta-boxes.php:175
503
  #: options-meta-boxes.php:176
504
  #: options-meta-boxes.php:184
505
  #: options-meta-boxes.php:244
506
  #: options-meta-boxes.php:245
507
  #: options-meta-boxes.php:250
508
- #@ yarpp
509
  msgid " or "
510
  msgstr "oppure"
511
 
512
- #: includes.php:169
513
  #@ yarpp
 
514
  msgid "Settings"
515
- msgstr ""
516
 
517
- #: includes.php:243
518
  #@ default
 
519
  msgid "Title:"
520
- msgstr ""
521
 
522
- #: includes.php:385
523
  #@ yarpp
 
524
  msgid "Related entries may be displayed once you save your entry"
525
- msgstr ""
526
 
527
- #: options-meta-boxes.php:124
528
  #@ yarpp
 
529
  msgid "YARPP limits the related posts list by (1) a maximum number and (2) a <em>match threshold</em>."
530
- msgstr ""
531
 
532
- #: options-meta-boxes.php:283
533
  #@ yarpp
 
534
  msgid "YARPP Forum"
535
- msgstr ""
536
 
537
- #: options-meta-boxes.php:284
538
  #@ yarpp
 
539
  msgid "YARPP on Twitter"
540
- msgstr ""
541
 
542
- #: options-meta-boxes.php:285
543
  #@ yarpp
 
544
  msgid "YARPP on the Web"
545
- msgstr ""
546
 
547
- #: options-meta-boxes.php:292
548
  #@ yarpp
 
549
  msgid "Contact YARPP"
550
- msgstr ""
551
 
 
552
  #: options.php:42
553
  #, php-format
554
- #@ default
555
  msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">View version %4$s details</a> or <a href=\"%5$s\">update automatically</a>."
556
- msgstr ""
557
 
 
558
  #: options.php:86
559
  #, php-format
560
- #@ yarpp
561
  msgid "Please try <a href=\"%s\" target=\"_blank\">manual SQL setup</a>."
562
- msgstr ""
563
 
 
564
  #: options.php:188
565
  #, php-format
566
- #@ yarpp
567
  msgid "by <a href=\"%s\" target=\"_blank\">mitcho (Michael 芳貴 Erlewine)</a>"
568
- msgstr ""
569
 
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
+ "Language-Team: Gianni Diurno | gidibao.net <gidibao@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Language: Italian\n"
14
  "X-Poedit-Country: ITALY\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
 
21
  #@ yarpp
22
+ #: includes.php:376
23
  msgid "Related Posts"
24
  msgstr "Articoli correlati"
25
 
26
+ #@ yarpp
27
  #: options.php:63
28
  #, php-format
 
29
  msgid "YARPP's \"consider titles\" and \"consider bodies\" relatedness criteria require your <code>%s</code> table to use the <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>MyISAM storage engine</a>, but the table seems to be using the <code>%s</code> engine. These two options have been disabled."
30
  msgstr "I criteri di affinità YARPP \"considera titoli\" e \"considera contenuti\" necessitano che la tua tabella <code>%s</code> possa utilizzare il <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>MyISAM storage engine</a>. Pare che sia in uso il <code>%s</code> engine. Queste due opzioni sono state disattivate."
31
 
32
+ #@ yarpp
33
  #: options.php:65
34
  #, php-format
 
35
  msgid "To restore these features, please update your <code>%s</code> table by executing the following SQL directive: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code> . No data will be erased by altering the table's engine, although there are performance implications."
36
  msgstr "Per poter ripristinare queste funzioni dovrai aggiornare la tua tabella <code>%s</code> facendo sì che sia eseguita la seguente direttiva SQL: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code> . Nessun dato verrà perso modificando la tabella del motore sebbene ne verranno interessate le prestazioni."
37
 
38
+ #@ yarpp
39
  #: options.php:67
40
  #, php-format
 
41
  msgid "If, despite this check, you are sure that <code>%s</code> is using the MyISAM engine, press this magic button:"
42
  msgstr "Se, nonostante questa nota, fossi certo che <code>%s</code> stia utilizzando il MyISAM engine, premi il pulsante magico:"
43
 
 
44
  #@ yarpp
45
+ #: options.php:70
46
  msgid "Trust me. Let me use MyISAM features."
47
  msgstr "Abbi fiducia. Lasciami utilizzare le funzioni MyISAM."
48
 
 
49
  #@ yarpp
50
+ #: options.php:83
51
  msgid "The YARPP database had an error but has been fixed."
52
  msgstr "Il database di YARPP aveva un errore, ma é stato corretto."
53
 
 
54
  #@ yarpp
55
+ #: options.php:85
56
  msgid "The YARPP database has an error which could not be fixed."
57
  msgstr "Il database di YARPP ha un errore che non può essere corretto."
58
 
 
59
  #@ yarpp
60
+ #: options-meta-boxes.php:38
61
  msgid "word"
62
  msgstr "parola"
63
 
 
64
  #@ yarpp
65
+ #: options-meta-boxes.php:39
66
  msgid "tag"
67
  msgstr "tag"
68
 
 
69
  #@ yarpp
70
+ #: options-meta-boxes.php:40
71
  msgid "category"
72
  msgstr "categoria"
73
 
74
+ #@ yarpp
75
  #: options-meta-boxes.php:45
76
  #: options-meta-boxes.php:63
77
  #: options-meta-boxes.php:76
 
78
  msgid "do not consider"
79
  msgstr "non considerare"
80
 
81
+ #@ yarpp
82
  #: options-meta-boxes.php:46
83
  #: options-meta-boxes.php:64
84
  #: options-meta-boxes.php:78
 
85
  msgid "consider"
86
  msgstr "considera"
87
 
88
+ #@ yarpp
89
  #: options-meta-boxes.php:48
90
  #: options-meta-boxes.php:80
91
  #, php-format
 
92
  msgid "require at least one %s in common"
93
  msgstr "richiedi almeno 1 %s in comune"
94
 
95
+ #@ yarpp
96
  #: options-meta-boxes.php:50
97
  #: options-meta-boxes.php:82
98
  #, php-format
 
99
  msgid "require more than one %s in common"
100
  msgstr "richiedi più di 1 %s in comune"
101
 
 
102
  #@ yarpp
103
+ #: options-meta-boxes.php:65
104
  msgid "consider with extra weight"
105
  msgstr "considera con extra weight"
106
 
 
107
  #@ default
108
  #@ yarpp
109
+ #: options-meta-boxes.php:286
110
  msgid "Donate to mitcho (Michael Yoshitaka Erlewine) for this plugin via PayPal"
111
  msgstr "Effettua una donazione via PayPal per mitcho (Michael Yoshitaka Erlewine) lo sviluppatore di questo plugin"
112
 
 
113
  #@ yarpp
114
+ #: options.php:178
115
  msgid "Yet Another Related Posts Plugin Options"
116
  msgstr "Opzioni Yet Another Related Posts"
117
 
 
118
  #@ yarpp
119
+ #: options-meta-boxes.php:118
120
  msgid "\"The Pool\""
121
  msgstr "\"Veduta di insieme\""
122
 
 
123
  #@ yarpp
124
+ #: options-meta-boxes.php:91
125
  msgid "\"The Pool\" refers to the pool of posts and pages that are candidates for display as related to the current entry."
126
  msgstr "Per \"Veduta di insieme\" si intende il totale degli articoli e pagine che sono cadidati per essere mostrati quali correlati all'articolo in merito."
127
 
 
128
  #@ yarpp
129
+ #: options-meta-boxes.php:96
130
  msgid "Disallow by category:"
131
  msgstr "Escludi categorie:"
132
 
 
133
  #@ yarpp
134
+ #: options-meta-boxes.php:98
135
  msgid "Disallow by tag:"
136
  msgstr "Escludi tag:"
137
 
 
138
  #@ yarpp
139
+ #: options-meta-boxes.php:101
140
  msgid "Show password protected posts?"
141
  msgstr "Desideri mostrare gli articoli protetti da una password?"
142
 
 
143
  #@ yarpp
144
+ #: options-meta-boxes.php:140
145
  msgid "Show only previous posts?"
146
  msgstr "Desideri mostrare solamente gli articoli pubblicati in precedenza?"
147
 
 
148
  #@ yarpp
149
+ #: options-meta-boxes.php:148
150
  msgid "\"Relatedness\" options"
151
  msgstr "Opzioni \"Affinità\""
152
 
 
153
  #@ yarpp
154
+ #: options-meta-boxes.php:130
155
  msgid "Match threshold:"
156
  msgstr "Valore di corrispondenza:"
157
 
 
158
  #@ yarpp
159
+ #: options-meta-boxes.php:131
160
  msgid "Titles: "
161
  msgstr "Titoli:"
162
 
 
163
  #@ yarpp
164
+ #: options-meta-boxes.php:133
165
  msgid "Bodies: "
166
  msgstr "Contenuti:"
167
 
 
168
  #@ yarpp
169
+ #: options-meta-boxes.php:135
170
  msgid "Tags: "
171
  msgstr "Tag: "
172
 
 
173
  #@ yarpp
174
+ #: options-meta-boxes.php:137
175
  msgid "Categories: "
176
  msgstr "Categorie:"
177
 
 
178
  #@ yarpp
179
+ #: options-meta-boxes.php:139
180
  msgid "Cross-relate posts and pages?"
181
  msgstr "Relazione incrociata per articoli e pagine?"
182
 
 
183
  #@ yarpp
184
+ #: options-meta-boxes.php:139
185
  msgid "When the \"Cross-relate posts and pages\" option is selected, the <code>related_posts()</code>, <code>related_pages()</code>, and <code>related_entries()</code> all will give the same output, returning both related pages and posts."
186
  msgstr "Una volta selezionata l'opzione \"Relazione incrociata articoli e pagine\", <code>related_posts()</code>, <code>related_pages()</code> e <code>related_entries()</code> forniranno tutti lo stesso output verso le pagine e gli articoli correlati."
187
 
 
188
  #@ yarpp
189
+ #: options-meta-boxes.php:212
190
  msgid "Display options <small>for your website</small>"
191
  msgstr "Opzioni di visualizzazione nel <small>tuo sito</small>"
192
 
193
+ #@ yarpp
194
  #: magic.php:297
195
  #: options-meta-boxes.php:205
196
  #: options-meta-boxes.php:269
197
  #, php-format
 
198
  msgid "Related posts brought to you by <a href='%s'>Yet Another Related Posts Plugin</a>."
199
  msgstr "Articoli correlati elaborati dal plugin <a href='%s'>Yet Another Related Posts</a>."
200
 
 
201
  #@ yarpp
202
+ #: options-meta-boxes.php:157
203
  msgid "Automatically display related posts?"
204
  msgstr "Desideri mostrare in automatico gli articoli correlati?"
205
 
 
206
  #@ yarpp
207
+ #: options-meta-boxes.php:157
208
  msgid "This option automatically displays related posts right after the content on single entry pages. If this option is off, you will need to manually insert <code>related_posts()</code> or variants (<code>related_pages()</code> and <code>related_entries()</code>) into your theme files."
209
  msgstr "Questa opzione farà in modo che gli articoli correlati vengano mostrati automaticamente in coda al contenuto di ogni singola pubblicazione . Qualora questa opzione non fosse stata attivata, dovrai inserire manualmente <code>related_posts()</code> oppure le varianti (<code>related_pages()</code> e <code>related_entries()</code>) nei file del tuo tema."
210
 
 
211
  #@ yarpp
212
+ #: options-meta-boxes.php:158
213
  msgid "Website display code example"
214
  msgstr "Esempio codice"
215
 
216
+ #@ yarpp
217
  #: options-meta-boxes.php:158
218
  #: options-meta-boxes.php:221
 
219
  msgid "(Update options to reload.)"
220
  msgstr "(Ricarica la pagina per visualizzare l'aggiornamento)"
221
 
222
+ #@ yarpp
223
  #: options-meta-boxes.php:160
224
  #: options-meta-boxes.php:226
 
225
  msgid "Maximum number of related posts:"
226
  msgstr "Numero max. di articoli correlati:"
227
 
228
+ #@ yarpp
229
  #: options-meta-boxes.php:175
230
  #: options-meta-boxes.php:244
 
231
  msgid "Before / after related entries:"
232
  msgstr "Davanti / in coda agli articoli correlati:"
233
 
234
+ #@ yarpp
235
  #: options-meta-boxes.php:175
236
  #: options-meta-boxes.php:176
237
  #: options-meta-boxes.php:184
238
  #: options-meta-boxes.php:244
239
  #: options-meta-boxes.php:245
240
  #: options-meta-boxes.php:250
 
241
  msgid "For example:"
242
  msgstr "Esempio:"
243
 
244
+ #@ yarpp
245
  #: options-meta-boxes.php:176
246
  #: options-meta-boxes.php:245
 
247
  msgid "Before / after each related entry:"
248
  msgstr "Davanti / in coda ad ogni articolo correlato:"
249
 
250
+ #@ yarpp
251
  #: options-meta-boxes.php:178
252
  #: options-meta-boxes.php:247
 
253
  msgid "Show excerpt?"
254
  msgstr "Desideri mostrare il riassunto?"
255
 
256
+ #@ yarpp
257
  #: options-meta-boxes.php:179
258
  #: options-meta-boxes.php:248
 
259
  msgid "Excerpt length (No. of words):"
260
  msgstr "Lunghezza riassunto (totale parole):"
261
 
 
262
  #@ yarpp
263
+ #: options-meta-boxes.php:183
264
  msgid "Before / after (Excerpt):"
265
  msgstr "Davanti / in coda (Riassunto):"
266
 
267
+ #@ yarpp
268
  #: options-meta-boxes.php:189
269
  #: options-meta-boxes.php:254
 
270
  msgid "Order results:"
271
  msgstr "Disposizione dei risultati:"
272
 
273
+ #@ yarpp
274
  #: options-meta-boxes.php:191
275
  #: options-meta-boxes.php:256
 
276
  msgid "score (high relevance to low)"
277
  msgstr "punteggio (da massima a minima rilevanza)"
278
 
279
+ #@ yarpp
280
  #: options-meta-boxes.php:192
281
  #: options-meta-boxes.php:257
 
282
  msgid "score (low relevance to high)"
283
  msgstr "punteggio (da minima a massima rilevanza)"
284
 
285
+ #@ yarpp
286
  #: options-meta-boxes.php:193
287
  #: options-meta-boxes.php:258
 
288
  msgid "date (new to old)"
289
  msgstr "data (dal nuovo al vecchio)"
290
 
291
+ #@ yarpp
292
  #: options-meta-boxes.php:194
293
  #: options-meta-boxes.php:259
 
294
  msgid "date (old to new)"
295
  msgstr "data (dal vecchio al nuovo)"
296
 
297
+ #@ yarpp
298
  #: options-meta-boxes.php:195
299
  #: options-meta-boxes.php:260
 
300
  msgid "title (alphabetical)"
301
  msgstr "titolo (A-Z)"
302
 
303
+ #@ yarpp
304
  #: options-meta-boxes.php:196
305
  #: options-meta-boxes.php:261
 
306
  msgid "title (reverse alphabetical)"
307
  msgstr "titolo (Z-A)"
308
 
309
+ #@ yarpp
310
  #: options-meta-boxes.php:201
311
  #: options-meta-boxes.php:266
 
312
  msgid "Default display if no results:"
313
  msgstr "Testo predefinito da mostrare in assenza di risultati:"
314
 
315
+ #@ yarpp
316
  #: includes.php:257
317
  #: options-meta-boxes.php:203
318
  #: options-meta-boxes.php:268
 
319
  msgid "Help promote Yet Another Related Posts Plugin?"
320
  msgstr "Desideri promuovere il plugin Yet Another Related Posts?"
321
 
322
+ #@ yarpp
323
  #: options-meta-boxes.php:205
324
  #: options-meta-boxes.php:269
325
  #, php-format
 
326
  msgid "This option will add the code %s. Try turning it on, updating your options, and see the code in the code example to the right. These links and donations are greatly appreciated."
327
  msgstr "Questa opzione aggiugerà il codice %s. Attivalo, aggiorna le opzioni e vedi l'anteprima del codice qui a lato. Ti sarei molto grato se tu mostrassi il mio link."
328
 
 
329
  #@ yarpp
330
+ #: options-meta-boxes.php:276
331
  msgid "Display options <small>for RSS</small>"
332
  msgstr "Opzioni di visualizzazione nel tuo <small>feed RSS</small>"
333
 
 
334
  #@ yarpp
335
+ #: options-meta-boxes.php:221
336
  msgid "Display related posts in feeds?"
337
  msgstr "Desideri mostrare gli articoli correlati nei feed?"
338
 
 
339
  #@ yarpp
340
+ #: options-meta-boxes.php:223
341
  msgid "Display related posts in the descriptions?"
342
  msgstr "Desideri mostrare gli articoli correlati nelle descrizioni?"
343
 
 
344
  #@ yarpp
345
+ #: options-meta-boxes.php:223
346
  msgid "This option displays the related posts in the RSS description fields, not just the content. If your feeds are set up to only display excerpts, however, only the description field is used, so this option is required for any display at all."
347
  msgstr "Questa opzione mostrerà gli articoli correlati nei campi della descrizione del feed RSS e non solo nei contenuti. Se i tuoi feed fossero stati impostati per mostrare solamente i riassunti degli articoli, in ogni caso verrà utilizzato il campo per la descrizione quindi, questa opzione é comunque necessaria."
348
 
 
349
  #@ yarpp
350
+ #: options-meta-boxes.php:221
351
  msgid "RSS display code example"
352
  msgstr "Esempio codice"
353
 
 
354
  #@ yarpp
355
+ #: options-meta-boxes.php:250
356
  msgid "Before / after (excerpt):"
357
  msgstr "Davanti / in coda (riassunto):"
358
 
359
+ #@ yarpp
360
  #: template-builtin.php:35
361
  #, php-format
 
362
  msgid "%f is the YARPP match score between the current entry and this related entry. You are seeing this value because you are logged in to WordPress as an administrator. It is not shown to regular visitors."
363
  msgstr "%f é il punteggio di affinità YARPP tra questo articolo principale ed i suoi relativi. Stai vedendo questo messaggio perché sei collegato come amministratore di WordPress. Il messaggio lo vedi solo tu."
364
 
365
+ #@ yarpp
366
  #: includes.php:149
367
  #: includes.php:194
368
  #: includes.php:215
 
369
  msgid "Related Posts (YARPP)"
370
  msgstr "Related Posts (YARPP)"
371
 
 
372
  #@ yarpp
373
+ #: options.php:54
374
  msgid "The MyISAM check has been overridden. You may now use the \"consider titles\" and \"consider bodies\" relatedness criteria."
375
  msgstr "La verifica MyISAM é stata sovrascritta. Potrai da ora utilizzare \"considera titoli\" e \"considera contenuti\" come criteri di affinità."
376
 
377
+ #@ yarpp
378
  #: options-meta-boxes.php:124
379
  #: options-meta-boxes.php:139
380
  #: options-meta-boxes.php:157
384
  #: options-meta-boxes.php:223
385
  #: options-meta-boxes.php:228
386
  #: options-meta-boxes.php:268
 
387
  msgid "more&gt;"
388
  msgstr "info&gt;"
389
 
 
390
  #@ yarpp
391
+ #: options.php:114
392
  msgid "Options saved!"
393
  msgstr "Le opzioni sono state salvate!"
394
 
 
395
  #@ yarpp
396
+ #: options.php:280
397
  msgid "Do you really want to reset your configuration?"
398
  msgstr "Sei certo di volere ripristinare la tua configurazione?"
399
 
 
400
  #@ yarpp
401
+ #: options.php:279
402
  msgid "Update options"
403
  msgstr "Aggiorna le opzioni"
404
 
 
405
  #@ yarpp
406
+ #: options-meta-boxes.php:124
407
  msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
408
  msgstr "Quanto più alto sarà il valore di corrispondenza, maggiore sarà la restrizione: otterrai di fatto un minore numero di articoli correlati. Il valore predefinito é impostato a 5. Qualora desiderassi trovare un valore appropriato per determinare le affinità, verifica gli articoli correlati di alcuni post ed il punteggio a loro associato. Potrai quindi determinare quale sia il migliore valore di corrispondenza per il tuo sito."
409
 
 
410
  #@ yarpp
411
+ #: options.php:280
412
  msgid "Reset options"
413
  msgstr "Ripristina le opzioni"
414
 
415
+ #@ yarpp
416
  #: cache-postmeta.php:105
417
  #: cache-tables.php:131
 
418
  msgid "Example post "
419
  msgstr "Articolo di esempio:"
420
 
 
421
  #@ yarpp
422
+ #: template-metabox.php:12
423
  msgid "These are the related entries for this entry. Updating this post may change these related posts."
424
  msgstr "Questi sono gli articoli correlati per questo post. L'aggiornamento di questo post potrebbe cambiare gli articoli ad esso correlati."
425
 
 
426
  #@ yarpp
427
+ #: template-metabox.php:25
428
  msgid "Whether all of these related entries are actually displayed and how they are displayed depends on your YARPP display options."
429
  msgstr "La visualizzazione degli articoli correlati dipende principalmente dalle opzioni YARPP."
430
 
431
+ #@ yarpp
432
  #: includes.php:28
433
  #: includes.php:39
434
  #: template-metabox.php:27
435
  #: template-widget.php:13
 
436
  msgid "No related posts."
437
  msgstr "Nessun articolo correlato."
438
 
 
439
  #@ yarpp
440
+ #: options-meta-boxes.php:105
441
  msgid "day(s)"
442
  msgstr "giorno(i)"
443
 
 
444
  #@ yarpp
445
+ #: options-meta-boxes.php:106
446
  msgid "week(s)"
447
  msgstr "settimana(e)"
448
 
 
449
  #@ yarpp
450
+ #: options-meta-boxes.php:107
451
  msgid "month(s)"
452
  msgstr "mese(i)"
453
 
 
454
  #@ yarpp
455
+ #: options-meta-boxes.php:109
456
  msgid "Show only posts from the past NUMBER UNITS"
457
  msgstr "Mostra solamente gli articoli dalle precedenti NUMBER UNITS"
458
 
459
+ #@ yarpp
460
  #: options.php:46
461
  #, php-format
 
462
  msgid "There is a new beta (%s) of Yet Another Related Posts Plugin. You can <a href=\"%s\">download it here</a> at your own risk."
463
  msgstr "E' disponibile una nuova (%s) beta di Yet Another Related Posts Plugin. Puoi <a href=\"%s\">scaricarla qui</a> a tuo rischio e pericolo."
464
 
465
+ #@ yarpp
466
  #: includes.php:248
467
  #: options-meta-boxes.php:161
468
  #: options-meta-boxes.php:228
 
469
  msgid "Display using a custom template file"
470
  msgstr "Mostra utilizzando un file template personalizzato"
471
 
472
+ #@ yarpp
473
  #: includes.php:249
474
  #: options-meta-boxes.php:165
475
  #: options-meta-boxes.php:233
 
476
  msgid "Template file:"
477
  msgstr "File template:"
478
 
 
479
  #@ yarpp
480
+ #: options-meta-boxes.php:221
481
  msgid "This option displays related posts at the end of each item in your RSS and Atom feeds. No template changes are needed."
482
  msgstr "Questa opzione mostra gli articoli correlati in coda ad ogni articolo nei tuoi feed RSS e Atom. Non é necessaria alcuna modifica al template."
483
 
 
484
  #@ yarpp
485
+ #: options-meta-boxes.php:228
486
  msgid "NEW!"
487
  msgstr "NUOVO!"
488
 
489
+ #@ yarpp
490
  #: options-meta-boxes.php:161
491
  #: options-meta-boxes.php:228
 
492
  msgid "This advanced option gives you full power to customize how your related posts are displayed. Templates (stored in your theme folder) are written in PHP."
493
  msgstr "Le opzioni avanzate ti permettono una completa personalizzazione per la visualizzazione degli articoli correlati. I template (allocati nella cartella del tuo tema) sono stati scritti in PHP."
494
 
495
+ #@ yarpp
496
  #: includes.php:26
497
  #: includes.php:37
 
498
  msgid "Related posts:"
499
  msgstr "Articoli correlati:"
500
 
501
+ #@ yarpp
502
  #: options-meta-boxes.php:175
503
  #: options-meta-boxes.php:176
504
  #: options-meta-boxes.php:184
505
  #: options-meta-boxes.php:244
506
  #: options-meta-boxes.php:245
507
  #: options-meta-boxes.php:250
 
508
  msgid " or "
509
  msgstr "oppure"
510
 
 
511
  #@ yarpp
512
+ #: includes.php:169
513
  msgid "Settings"
514
+ msgstr "Impostazioni"
515
 
 
516
  #@ default
517
+ #: includes.php:243
518
  msgid "Title:"
519
+ msgstr "Titolo:"
520
 
 
521
  #@ yarpp
522
+ #: includes.php:385
523
  msgid "Related entries may be displayed once you save your entry"
524
+ msgstr "Una volta salvato il contenuto, potranno essere mostrati i correlati"
525
 
 
526
  #@ yarpp
527
+ #: options-meta-boxes.php:124
528
  msgid "YARPP limits the related posts list by (1) a maximum number and (2) a <em>match threshold</em>."
529
+ msgstr "YARPP limita la lista degli articoli correlati (1) per numero massimo e (2) per <em>valore di corrispondenza</em>."
530
 
 
531
  #@ yarpp
532
+ #: options-meta-boxes.php:283
533
  msgid "YARPP Forum"
534
+ msgstr "YARPP Forum"
535
 
 
536
  #@ yarpp
537
+ #: options-meta-boxes.php:284
538
  msgid "YARPP on Twitter"
539
+ msgstr "YARPP su Twitter"
540
 
 
541
  #@ yarpp
542
+ #: options-meta-boxes.php:285
543
  msgid "YARPP on the Web"
544
+ msgstr "YARPP nel Web"
545
 
 
546
  #@ yarpp
547
+ #: options-meta-boxes.php:292
548
  msgid "Contact YARPP"
549
+ msgstr "Contatta YARPP"
550
 
551
+ #@ default
552
  #: options.php:42
553
  #, php-format
 
554
  msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">View version %4$s details</a> or <a href=\"%5$s\">update automatically</a>."
555
+ msgstr "E' disponibile una nuova versione di %1$s. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">Versione %4$s nel dettaglio</a> oppure <a href=\"%5$s\">aggiorna automaticamente</a>."
556
 
557
+ #@ yarpp
558
  #: options.php:86
559
  #, php-format
 
560
  msgid "Please try <a href=\"%s\" target=\"_blank\">manual SQL setup</a>."
561
+ msgstr "Prova il <a href=\"%s\" target=\"_blank\">manual SQL setup</a>."
562
 
563
+ #@ yarpp
564
  #: options.php:188
565
  #, php-format
 
566
  msgid "by <a href=\"%s\" target=\"_blank\">mitcho (Michael 芳貴 Erlewine)</a>"
567
+ msgstr "di <a href=\"%s\" target=\"_blank\">mitcho (Michael 芳貴 Erlewine)</a>"
568
 
lang/yarpp-pl_PL.mo CHANGED
Binary file
lang/yarpp-pl_PL.po CHANGED
@@ -3,8 +3,7 @@ msgstr ""
3
  "Project-Id-Version: YARPP_PL\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-17 14:23+0100\n"
6
- "PO-Revision-Date: 2009-04-28 13:04+0100\n"
7
- "Last-Translator: P. <http://perfecta.pro/wp-pl/>\n"
8
  "Language-Team: K.Adamski <http://perfecta.pro/wp-pl/>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -13,141 +12,142 @@ msgstr ""
13
  "X-Poedit-Language: Polish\n"
14
  "X-Poedit-Country: POLAND\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: .\n"
18
- "X-Poedit-Bookmarks: \n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
 
 
22
  #: includes.php:149
23
  #: includes.php:194
24
  #: includes.php:215
25
- #@ yarpp
26
  msgid "Related Posts (YARPP)"
27
  msgstr "Powiązane wpisy (YARPP)"
28
 
29
- #: includes.php:376
30
  #@ yarpp
 
31
  msgid "Related Posts"
32
  msgstr "Powiązane wpisy"
33
 
 
34
  #: template-builtin.php:35
35
  #, php-format
36
- #@ yarpp
37
  msgid "%f is the YARPP match score between the current entry and this related entry. You are seeing this value because you are logged in to WordPress as an administrator. It is not shown to regular visitors."
38
  msgstr "%f to wartość podobieństwa między tym i linkowanym wpisem, wyliczona przez algorytm YARPP. Widzisz tę liczbę, ponieważ jesteś zalogowany jako administrator bloga. Nie jest ona pokazywana normalnym użytkownikom strony."
39
 
 
40
  #: magic.php:297
41
  #: options-meta-boxes.php:205
42
  #: options-meta-boxes.php:269
43
  #, php-format
44
- #@ yarpp
45
  msgid "Related posts brought to you by <a href='%s'>Yet Another Related Posts Plugin</a>."
46
  msgstr "Powiązane wpisy wygenerowane przez <a href='%s'>wtyczkę Yet Another Related Posts</a>."
47
 
48
- #: options.php:54
49
  #@ yarpp
 
50
  msgid "The MyISAM check has been overridden. You may now use the \"consider titles\" and \"consider bodies\" relatedness criteria."
51
  msgstr "Opcja sprawdzania MyISAM została unieważniona. Możesz teraz używać opcje \"uwzględniaj tytuły\" i \"uwzględniaj treść główną\"."
52
 
 
53
  #: options.php:63
54
  #, php-format
55
- #@ yarpp
56
  msgid "YARPP's \"consider titles\" and \"consider bodies\" relatedness criteria require your <code>%s</code> table to use the <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>MyISAM storage engine</a>, but the table seems to be using the <code>%s</code> engine. These two options have been disabled."
57
  msgstr "Opcje YARPP \"uwzględniaj tytuły\" i \"uwzględniaj treść główną\" wymagają, aby tabela <code>%s</code> używała <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>mechanizmu MyISAM</a>, ale powyższa tabela używa mechanizmu <code>%s</code>. Te dwie opcje zostały wyłączone."
58
 
 
59
  #: options.php:65
60
  #, php-format
61
- #@ yarpp
62
  msgid "To restore these features, please update your <code>%s</code> table by executing the following SQL directive: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code> . No data will be erased by altering the table's engine, although there are performance implications."
63
  msgstr "Aby przywrócić te opcje, uaktualnij tabelę <code>%s</code> wykonując następujące zapytanie SQL: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code>. Nie powinno to spowodować uszkodzenia danych, ale może wpłynąć na szybkość działania."
64
 
 
65
  #: options.php:67
66
  #, php-format
67
- #@ yarpp
68
  msgid "If, despite this check, you are sure that <code>%s</code> is using the MyISAM engine, press this magic button:"
69
  msgstr "Jeśli pomimo sprawdzenia tego, jesteś pewien, że <code>%s</code> używa mechanizmu MyISAM, naciśnij ten magiczny przycisk:"
70
 
71
- #: options.php:70
72
  #@ yarpp
 
73
  msgid "Trust me. Let me use MyISAM features."
74
  msgstr "Zaufaj mi. Pozwól uzywać właściwości MyISAM."
75
 
76
- #: options.php:83
77
  #@ yarpp
 
78
  msgid "The YARPP database had an error but has been fixed."
79
  msgstr "Baza danych YARPP zawierała błąd, ale został on naprawiony."
80
 
81
- #: options.php:85
82
  #@ yarpp
 
83
  msgid "The YARPP database has an error which could not be fixed."
84
  msgstr "Baza danych YARPP zawiera błąd, którego nie można naprawić."
85
 
 
86
  #: options-meta-boxes.php:45
87
  #: options-meta-boxes.php:63
88
  #: options-meta-boxes.php:76
89
- #@ yarpp
90
  msgid "do not consider"
91
  msgstr "nie uwzględniaj"
92
 
 
93
  #: options-meta-boxes.php:46
94
  #: options-meta-boxes.php:64
95
  #: options-meta-boxes.php:78
96
- #@ yarpp
97
  msgid "consider"
98
  msgstr "uwzględniaj"
99
 
100
- #: options-meta-boxes.php:65
101
  #@ yarpp
 
102
  msgid "consider with extra weight"
103
  msgstr "uwzględniaj z większa wagą"
104
 
105
- #: options-meta-boxes.php:286
106
  #@ default
107
  #@ yarpp
 
108
  msgid "Donate to mitcho (Michael Yoshitaka Erlewine) for this plugin via PayPal"
109
  msgstr "Przekaż darowiznę mitcho (Michael Yoshitaka Erlewine) - autorowi plugina - za pomocą PayPal"
110
 
111
- #: options.php:178
112
  #@ yarpp
 
113
  msgid "Yet Another Related Posts Plugin Options"
114
  msgstr "Opcje YARPP"
115
 
116
- #: options-meta-boxes.php:118
117
  #@ yarpp
 
118
  msgid "\"The Pool\""
119
  msgstr "\"Pula\""
120
 
121
- #: options-meta-boxes.php:91
122
  #@ yarpp
 
123
  msgid "\"The Pool\" refers to the pool of posts and pages that are candidates for display as related to the current entry."
124
  msgstr "\"Pula\" to zbiór tych wpisów i stron, które mają być uwzględniane przy wyświetlaniu powiązanych linków."
125
 
126
- #: options-meta-boxes.php:96
127
  #@ yarpp
 
128
  msgid "Disallow by category:"
129
  msgstr "Wyklucz kategorie:"
130
 
131
- #: options-meta-boxes.php:98
132
  #@ yarpp
 
133
  msgid "Disallow by tag:"
134
  msgstr "Wyklucz tagi:"
135
 
136
- #: options-meta-boxes.php:101
137
  #@ yarpp
 
138
  msgid "Show password protected posts?"
139
  msgstr "Pokazywać wpisy chronione hasłem?"
140
 
141
- #: options-meta-boxes.php:140
142
  #@ yarpp
 
143
  msgid "Show only previous posts?"
144
  msgstr "Pokazywać tylko wcześniejsze wpisy?"
145
 
146
- #: options-meta-boxes.php:148
147
  #@ yarpp
 
148
  msgid "\"Relatedness\" options"
149
  msgstr "Opcje \"powiązań\""
150
 
 
151
  #: options-meta-boxes.php:124
152
  #: options-meta-boxes.php:139
153
  #: options-meta-boxes.php:157
@@ -157,413 +157,412 @@ msgstr "Opcje \"powiązań\""
157
  #: options-meta-boxes.php:223
158
  #: options-meta-boxes.php:228
159
  #: options-meta-boxes.php:268
160
- #@ yarpp
161
  msgid "more&gt;"
162
  msgstr "więcej&gt;"
163
 
164
- #: options-meta-boxes.php:130
165
  #@ yarpp
 
166
  msgid "Match threshold:"
167
  msgstr "Wymagane podobieństwo:"
168
 
169
- #: options-meta-boxes.php:131
170
  #@ yarpp
 
171
  msgid "Titles: "
172
  msgstr "Tytuły:"
173
 
174
- #: options-meta-boxes.php:133
175
  #@ yarpp
 
176
  msgid "Bodies: "
177
  msgstr "Treść główna:"
178
 
179
- #: options-meta-boxes.php:135
180
  #@ yarpp
 
181
  msgid "Tags: "
182
  msgstr "Tagi:"
183
 
184
- #: options-meta-boxes.php:137
185
  #@ yarpp
 
186
  msgid "Categories: "
187
  msgstr "Kategorie:"
188
 
189
- #: options-meta-boxes.php:139
190
  #@ yarpp
 
191
  msgid "Cross-relate posts and pages?"
192
  msgstr "Powiązać zarówno wpisy jak i strony statyczne?"
193
 
194
- #: options-meta-boxes.php:139
195
  #@ yarpp
 
196
  msgid "When the \"Cross-relate posts and pages\" option is selected, the <code>related_posts()</code>, <code>related_pages()</code>, and <code>related_entries()</code> all will give the same output, returning both related pages and posts."
197
  msgstr "Jeśli włączona jest ta opcja, kody <code>related_posts()</code>, <code>related_pages()</code> i <code>related_entries()</code> wyświetlą dokładnie to samo, czyli powiązane wpisy oraz strony statyczne."
198
 
199
- #: options-meta-boxes.php:212
200
  #@ yarpp
 
201
  msgid "Display options <small>for your website</small>"
202
  msgstr "Opcje wyświetlania <small>dla Twojej strony</small>"
203
 
204
- #: options-meta-boxes.php:157
205
  #@ yarpp
 
206
  msgid "Automatically display related posts?"
207
  msgstr "Automatycznie wyświetlać powiązane wpisy?"
208
 
209
- #: options-meta-boxes.php:157
210
  #@ yarpp
 
211
  msgid "This option automatically displays related posts right after the content on single entry pages. If this option is off, you will need to manually insert <code>related_posts()</code> or variants (<code>related_pages()</code> and <code>related_entries()</code>) into your theme files."
212
  msgstr "Po włączeniu tej opcji, powiązane wpisy pokażą się automatycznie na stronie pojedyńczego wpisu zaraz za jego treścią. Jeśli ta opcja jest wyłączona, musisz samodzielnie dodać kod: <code>related_posts()</code> lub jego warianty (<code>related_pages()</code> i <code>related_entries()</code>) do plików szablonu graficznego."
213
 
214
- #: options-meta-boxes.php:158
215
  #@ yarpp
 
216
  msgid "Website display code example"
217
  msgstr "Przykładowy kod wyświetlany na stronie"
218
 
 
219
  #: options-meta-boxes.php:158
220
  #: options-meta-boxes.php:221
221
- #@ yarpp
222
  msgid "(Update options to reload.)"
223
  msgstr "Zmień opcje a zobaczysz wynik."
224
 
 
225
  #: options-meta-boxes.php:160
226
  #: options-meta-boxes.php:226
227
- #@ yarpp
228
  msgid "Maximum number of related posts:"
229
  msgstr "Maksymalna liczba powiązanych wpisów:"
230
 
 
231
  #: options-meta-boxes.php:175
232
  #: options-meta-boxes.php:244
233
- #@ yarpp
234
  msgid "Before / after related entries:"
235
  msgstr "Kod przed / po powiązanych wpisach:"
236
 
 
237
  #: options-meta-boxes.php:175
238
  #: options-meta-boxes.php:176
239
  #: options-meta-boxes.php:184
240
  #: options-meta-boxes.php:244
241
  #: options-meta-boxes.php:245
242
  #: options-meta-boxes.php:250
243
- #@ yarpp
244
  msgid "For example:"
245
  msgstr "Na przykład:"
246
 
 
247
  #: options-meta-boxes.php:176
248
  #: options-meta-boxes.php:245
249
- #@ yarpp
250
  msgid "Before / after each related entry:"
251
  msgstr "Kod przed / po poszczególnych linkach:"
252
 
 
253
  #: options-meta-boxes.php:178
254
  #: options-meta-boxes.php:247
255
- #@ yarpp
256
  msgid "Show excerpt?"
257
  msgstr "Pokazywać fragment wpisu?"
258
 
 
259
  #: options-meta-boxes.php:179
260
  #: options-meta-boxes.php:248
261
- #@ yarpp
262
  msgid "Excerpt length (No. of words):"
263
  msgstr "Długość fragmentu (liczba słów):"
264
 
265
- #: options-meta-boxes.php:183
266
  #@ yarpp
 
267
  msgid "Before / after (Excerpt):"
268
  msgstr "Kod przed / po fragmencie wpisu:"
269
 
 
270
  #: options-meta-boxes.php:189
271
  #: options-meta-boxes.php:254
272
- #@ yarpp
273
  msgid "Order results:"
274
  msgstr "Kolejność wyświetlania:"
275
 
 
276
  #: options-meta-boxes.php:191
277
  #: options-meta-boxes.php:256
278
- #@ yarpp
279
  msgid "score (high relevance to low)"
280
  msgstr "podobieństwo (najwyższe najpierw)"
281
 
 
282
  #: options-meta-boxes.php:192
283
  #: options-meta-boxes.php:257
284
- #@ yarpp
285
  msgid "score (low relevance to high)"
286
  msgstr "podobnieństwo (najniższe najpierw)"
287
 
 
288
  #: options-meta-boxes.php:193
289
  #: options-meta-boxes.php:258
290
- #@ yarpp
291
  msgid "date (new to old)"
292
  msgstr "data (najnowsze najpierw)"
293
 
 
294
  #: options-meta-boxes.php:194
295
  #: options-meta-boxes.php:259
296
- #@ yarpp
297
  msgid "date (old to new)"
298
  msgstr "data (najstarsze najpierw)"
299
 
 
300
  #: options-meta-boxes.php:195
301
  #: options-meta-boxes.php:260
302
- #@ yarpp
303
  msgid "title (alphabetical)"
304
  msgstr "tytuł (A-Z)"
305
 
 
306
  #: options-meta-boxes.php:196
307
  #: options-meta-boxes.php:261
308
- #@ yarpp
309
  msgid "title (reverse alphabetical)"
310
  msgstr "tytuł (Z-A)"
311
 
 
312
  #: options-meta-boxes.php:201
313
  #: options-meta-boxes.php:266
314
- #@ yarpp
315
  msgid "Default display if no results:"
316
  msgstr "Wyświetlany kod przy braku wyników:"
317
 
 
318
  #: includes.php:257
319
  #: options-meta-boxes.php:203
320
  #: options-meta-boxes.php:268
321
- #@ yarpp
322
  msgid "Help promote Yet Another Related Posts Plugin?"
323
  msgstr "Pomóc promować YARPP?"
324
 
 
325
  #: options-meta-boxes.php:205
326
  #: options-meta-boxes.php:269
327
  #, php-format
328
- #@ yarpp
329
  msgid "This option will add the code %s. Try turning it on, updating your options, and see the code in the code example to the right. These links and donations are greatly appreciated."
330
  msgstr "Ta opcja doda kod: %s. Po włączeniu i zapisaniu opcji zobaczysz w okienku po prawej, jak wygląda przykładowy wygenerowany kod. Bardzo serdecznie dziękuję za te linki oraz dotacje."
331
 
332
- #: options-meta-boxes.php:276
333
  #@ yarpp
 
334
  msgid "Display options <small>for RSS</small>"
335
  msgstr "Włącz opcje dla <small>kanału RSS</small>"
336
 
337
- #: options-meta-boxes.php:221
338
  #@ yarpp
 
339
  msgid "Display related posts in feeds?"
340
  msgstr "Wyświetlać powiązane wpisy w kanałach RSS?"
341
 
342
- #: options-meta-boxes.php:223
343
  #@ yarpp
 
344
  msgid "Display related posts in the descriptions?"
345
  msgstr "Wyświetlać powiązane wpisy w opisach?"
346
 
347
- #: options-meta-boxes.php:223
348
  #@ yarpp
 
349
  msgid "This option displays the related posts in the RSS description fields, not just the content. If your feeds are set up to only display excerpts, however, only the description field is used, so this option is required for any display at all."
350
  msgstr "Po włączeniu tej opcji, powiązane wpisy pojawią się w opisie kanału RSS, nie tylko w treści. Jeśli w RSS wyświetlasz wyłącznie fragmenty wpisów, używane jest tylko pole opisu, a zatem ta opcja musi być włączona, aby powiązane wpisy byłby w ogóle pokazywane."
351
 
352
- #: options-meta-boxes.php:221
353
  #@ yarpp
 
354
  msgid "RSS display code example"
355
  msgstr "Przykładowy kod wyświetlania w RSS"
356
 
357
- #: options-meta-boxes.php:250
358
  #@ yarpp
 
359
  msgid "Before / after (excerpt):"
360
  msgstr "Kod przed / po fragmencie wpisu:"
361
 
362
- #: options-meta-boxes.php:38
363
  #@ yarpp
 
364
  msgid "word"
365
  msgstr "słowo"
366
 
367
- #: options-meta-boxes.php:39
368
  #@ yarpp
 
369
  msgid "tag"
370
  msgstr "tag"
371
 
372
- #: options-meta-boxes.php:40
373
  #@ yarpp
 
374
  msgid "category"
375
  msgstr "kategoria"
376
 
 
377
  #: options-meta-boxes.php:48
378
  #: options-meta-boxes.php:80
379
  #, php-format
380
- #@ yarpp
381
  msgid "require at least one %s in common"
382
  msgstr "wymagaj przynajmniej jeden %s wspólną"
383
 
 
384
  #: options-meta-boxes.php:50
385
  #: options-meta-boxes.php:82
386
  #, php-format
387
- #@ yarpp
388
  msgid "require more than one %s in common"
389
  msgstr "wymagaj więcej niż jeden %s wspólne"
390
 
391
- #: options.php:114
392
  #@ yarpp
 
393
  msgid "Options saved!"
394
  msgstr "Opcje zapisane!"
395
 
396
- #: options-meta-boxes.php:124
397
  #@ yarpp
 
398
  msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
399
  msgstr "Im wyższy minimalny próg powiązania, tym większe ograniczenia i tym samym mniej podobnych wpisów. Domyślnym progiem jest 5. Jeśli chcesz dostosować swoje minimum, zobacz kilka swoich artykułów i wyniki powiązanych do nich wpisów. Możesz zobaczyć, które wpisy są wybierane jako powiązane i z jakim wynikiem. Jeśli nie podobają Ci się rezultaty - poeksperymentuj z ustawieniami i minimalnym progiem."
400
 
401
- #: options.php:279
402
  #@ yarpp
 
403
  msgid "Update options"
404
  msgstr "Aktualizuj opcje"
405
 
406
- #: options.php:280
407
  #@ yarpp
 
408
  msgid "Do you really want to reset your configuration?"
409
  msgstr "Czy na pewno chcesz zresetować ustawienia"
410
 
411
- #: options.php:280
412
  #@ yarpp
 
413
  msgid "Reset options"
414
  msgstr "Resetuj ustawienia"
415
 
 
416
  #: cache-postmeta.php:105
417
  #: cache-tables.php:131
418
- #@ yarpp
419
  msgid "Example post "
420
  msgstr "Przykładowy wpis"
421
 
422
- #: template-metabox.php:12
423
  #@ yarpp
 
424
  msgid "These are the related entries for this entry. Updating this post may change these related posts."
425
  msgstr "Oto powiązane wpisy. Zmień treść tego wpisu aby zmienić listę powiązanych wpisów."
426
 
427
- #: template-metabox.php:25
428
  #@ yarpp
 
429
  msgid "Whether all of these related entries are actually displayed and how they are displayed depends on your YARPP display options."
430
  msgstr "To, czy lista powiązanych wpisów jest wyświetlana i jakie są to wpisy, jest zależne od konfiguracji wtyczki YARPP."
431
 
 
432
  #: includes.php:28
433
  #: includes.php:39
434
  #: template-metabox.php:27
435
  #: template-widget.php:13
436
- #@ yarpp
437
  msgid "No related posts."
438
  msgstr "Brak powiązanych wpisów."
439
 
440
- #: options-meta-boxes.php:105
441
  #@ yarpp
 
442
  msgid "day(s)"
443
  msgstr "dni"
444
 
445
- #: options-meta-boxes.php:106
446
  #@ yarpp
 
447
  msgid "week(s)"
448
  msgstr "tygodni"
449
 
450
- #: options-meta-boxes.php:107
451
  #@ yarpp
 
452
  msgid "month(s)"
453
  msgstr "miesięcy"
454
 
455
- #: options-meta-boxes.php:109
456
  #@ yarpp
 
457
  msgid "Show only posts from the past NUMBER UNITS"
458
  msgstr "Tylko wpisy z ostatnich NUMBER UNITS"
459
 
 
460
  #: options.php:46
461
  #, php-format
462
- #@ yarpp
463
  msgid "There is a new beta (%s) of Yet Another Related Posts Plugin. You can <a href=\"%s\">download it here</a> at your own risk."
464
  msgstr "Istnieje nowa wersja beta (%s) wtyczki Yet Another Related Posts. Możesz <a href=\"%s\">ściągnąć ją tutaj</a> i używać na własne ryzyko."
465
 
 
466
  #: includes.php:248
467
  #: options-meta-boxes.php:161
468
  #: options-meta-boxes.php:228
469
- #@ yarpp
470
  msgid "Display using a custom template file"
471
  msgstr "Wyświetlaj używając szablonu"
472
 
 
473
  #: includes.php:249
474
  #: options-meta-boxes.php:165
475
  #: options-meta-boxes.php:233
476
- #@ yarpp
477
  msgid "Template file:"
478
  msgstr "Plik szablonu:"
479
 
480
- #: options-meta-boxes.php:221
481
  #@ yarpp
 
482
  msgid "This option displays related posts at the end of each item in your RSS and Atom feeds. No template changes are needed."
483
  msgstr "Te opcje zmieniają sposób wyświetlania powiązanych wpisów a kanałach RSS i Atom. Żadne zmiany szablonu nie są wymagane."
484
 
485
- #: options-meta-boxes.php:228
486
  #@ yarpp
 
487
  msgid "NEW!"
488
  msgstr "NOWOŚĆ!"
489
 
 
490
  #: options-meta-boxes.php:161
491
  #: options-meta-boxes.php:228
492
- #@ yarpp
493
  msgid "This advanced option gives you full power to customize how your related posts are displayed. Templates (stored in your theme folder) are written in PHP."
494
  msgstr "Te zaawansowane opcje dają Ci możliwość całkowitego dostosowania wyświetlania powiązanych wpisów. Szablony (znajdujące sie w katalogu motywu graficznego) są napisane w PHP."
495
 
 
496
  #: includes.php:26
497
  #: includes.php:37
498
- #@ yarpp
499
  msgid "Related posts:"
500
- msgstr ""
501
 
502
- #: includes.php:169
503
  #@ yarpp
 
504
  msgid "Settings"
505
- msgstr ""
506
 
507
- #: includes.php:243
508
  #@ default
 
509
  msgid "Title:"
510
- msgstr ""
511
 
512
- #: includes.php:385
513
  #@ yarpp
 
514
  msgid "Related entries may be displayed once you save your entry"
515
- msgstr ""
516
 
517
- #: options-meta-boxes.php:124
518
  #@ yarpp
 
519
  msgid "YARPP limits the related posts list by (1) a maximum number and (2) a <em>match threshold</em>."
520
- msgstr ""
521
 
 
522
  #: options-meta-boxes.php:175
523
  #: options-meta-boxes.php:176
524
  #: options-meta-boxes.php:184
525
  #: options-meta-boxes.php:244
526
  #: options-meta-boxes.php:245
527
  #: options-meta-boxes.php:250
528
- #@ yarpp
529
  msgid " or "
530
- msgstr ""
531
 
532
- #: options-meta-boxes.php:283
533
  #@ yarpp
 
534
  msgid "YARPP Forum"
535
- msgstr ""
536
 
537
- #: options-meta-boxes.php:284
538
  #@ yarpp
 
539
  msgid "YARPP on Twitter"
540
- msgstr ""
541
 
542
- #: options-meta-boxes.php:285
543
  #@ yarpp
 
544
  msgid "YARPP on the Web"
545
- msgstr ""
546
 
547
- #: options-meta-boxes.php:292
548
  #@ yarpp
 
549
  msgid "Contact YARPP"
550
- msgstr ""
551
 
 
552
  #: options.php:42
553
  #, php-format
554
- #@ default
555
  msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">View version %4$s details</a> or <a href=\"%5$s\">update automatically</a>."
556
- msgstr ""
557
 
 
558
  #: options.php:86
559
  #, php-format
560
- #@ yarpp
561
  msgid "Please try <a href=\"%s\" target=\"_blank\">manual SQL setup</a>."
562
- msgstr ""
563
 
 
564
  #: options.php:188
565
  #, php-format
566
- #@ yarpp
567
  msgid "by <a href=\"%s\" target=\"_blank\">mitcho (Michael 芳貴 Erlewine)</a>"
568
- msgstr ""
569
 
3
  "Project-Id-Version: YARPP_PL\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-17 14:23+0100\n"
6
+ "PO-Revision-Date: 2011-10-04 11:45+0100\n"
 
7
  "Language-Team: K.Adamski <http://perfecta.pro/wp-pl/>\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "X-Poedit-Language: Polish\n"
13
  "X-Poedit-Country: POLAND\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
  "X-Poedit-Basepath: .\n"
17
+ "X-Textdomain-Support: yes\n"
18
+ "Last-Translator: PositionMaker <info@positionmaker.pl>\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
21
+ #@ yarpp
22
  #: includes.php:149
23
  #: includes.php:194
24
  #: includes.php:215
 
25
  msgid "Related Posts (YARPP)"
26
  msgstr "Powiązane wpisy (YARPP)"
27
 
 
28
  #@ yarpp
29
+ #: includes.php:376
30
  msgid "Related Posts"
31
  msgstr "Powiązane wpisy"
32
 
33
+ #@ yarpp
34
  #: template-builtin.php:35
35
  #, php-format
 
36
  msgid "%f is the YARPP match score between the current entry and this related entry. You are seeing this value because you are logged in to WordPress as an administrator. It is not shown to regular visitors."
37
  msgstr "%f to wartość podobieństwa między tym i linkowanym wpisem, wyliczona przez algorytm YARPP. Widzisz tę liczbę, ponieważ jesteś zalogowany jako administrator bloga. Nie jest ona pokazywana normalnym użytkownikom strony."
38
 
39
+ #@ yarpp
40
  #: magic.php:297
41
  #: options-meta-boxes.php:205
42
  #: options-meta-boxes.php:269
43
  #, php-format
 
44
  msgid "Related posts brought to you by <a href='%s'>Yet Another Related Posts Plugin</a>."
45
  msgstr "Powiązane wpisy wygenerowane przez <a href='%s'>wtyczkę Yet Another Related Posts</a>."
46
 
 
47
  #@ yarpp
48
+ #: options.php:54
49
  msgid "The MyISAM check has been overridden. You may now use the \"consider titles\" and \"consider bodies\" relatedness criteria."
50
  msgstr "Opcja sprawdzania MyISAM została unieważniona. Możesz teraz używać opcje \"uwzględniaj tytuły\" i \"uwzględniaj treść główną\"."
51
 
52
+ #@ yarpp
53
  #: options.php:63
54
  #, php-format
 
55
  msgid "YARPP's \"consider titles\" and \"consider bodies\" relatedness criteria require your <code>%s</code> table to use the <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>MyISAM storage engine</a>, but the table seems to be using the <code>%s</code> engine. These two options have been disabled."
56
  msgstr "Opcje YARPP \"uwzględniaj tytuły\" i \"uwzględniaj treść główną\" wymagają, aby tabela <code>%s</code> używała <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>mechanizmu MyISAM</a>, ale powyższa tabela używa mechanizmu <code>%s</code>. Te dwie opcje zostały wyłączone."
57
 
58
+ #@ yarpp
59
  #: options.php:65
60
  #, php-format
 
61
  msgid "To restore these features, please update your <code>%s</code> table by executing the following SQL directive: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code> . No data will be erased by altering the table's engine, although there are performance implications."
62
  msgstr "Aby przywrócić te opcje, uaktualnij tabelę <code>%s</code> wykonując następujące zapytanie SQL: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code>. Nie powinno to spowodować uszkodzenia danych, ale może wpłynąć na szybkość działania."
63
 
64
+ #@ yarpp
65
  #: options.php:67
66
  #, php-format
 
67
  msgid "If, despite this check, you are sure that <code>%s</code> is using the MyISAM engine, press this magic button:"
68
  msgstr "Jeśli pomimo sprawdzenia tego, jesteś pewien, że <code>%s</code> używa mechanizmu MyISAM, naciśnij ten magiczny przycisk:"
69
 
 
70
  #@ yarpp
71
+ #: options.php:70
72
  msgid "Trust me. Let me use MyISAM features."
73
  msgstr "Zaufaj mi. Pozwól uzywać właściwości MyISAM."
74
 
 
75
  #@ yarpp
76
+ #: options.php:83
77
  msgid "The YARPP database had an error but has been fixed."
78
  msgstr "Baza danych YARPP zawierała błąd, ale został on naprawiony."
79
 
 
80
  #@ yarpp
81
+ #: options.php:85
82
  msgid "The YARPP database has an error which could not be fixed."
83
  msgstr "Baza danych YARPP zawiera błąd, którego nie można naprawić."
84
 
85
+ #@ yarpp
86
  #: options-meta-boxes.php:45
87
  #: options-meta-boxes.php:63
88
  #: options-meta-boxes.php:76
 
89
  msgid "do not consider"
90
  msgstr "nie uwzględniaj"
91
 
92
+ #@ yarpp
93
  #: options-meta-boxes.php:46
94
  #: options-meta-boxes.php:64
95
  #: options-meta-boxes.php:78
 
96
  msgid "consider"
97
  msgstr "uwzględniaj"
98
 
 
99
  #@ yarpp
100
+ #: options-meta-boxes.php:65
101
  msgid "consider with extra weight"
102
  msgstr "uwzględniaj z większa wagą"
103
 
 
104
  #@ default
105
  #@ yarpp
106
+ #: options-meta-boxes.php:286
107
  msgid "Donate to mitcho (Michael Yoshitaka Erlewine) for this plugin via PayPal"
108
  msgstr "Przekaż darowiznę mitcho (Michael Yoshitaka Erlewine) - autorowi plugina - za pomocą PayPal"
109
 
 
110
  #@ yarpp
111
+ #: options.php:178
112
  msgid "Yet Another Related Posts Plugin Options"
113
  msgstr "Opcje YARPP"
114
 
 
115
  #@ yarpp
116
+ #: options-meta-boxes.php:118
117
  msgid "\"The Pool\""
118
  msgstr "\"Pula\""
119
 
 
120
  #@ yarpp
121
+ #: options-meta-boxes.php:91
122
  msgid "\"The Pool\" refers to the pool of posts and pages that are candidates for display as related to the current entry."
123
  msgstr "\"Pula\" to zbiór tych wpisów i stron, które mają być uwzględniane przy wyświetlaniu powiązanych linków."
124
 
 
125
  #@ yarpp
126
+ #: options-meta-boxes.php:96
127
  msgid "Disallow by category:"
128
  msgstr "Wyklucz kategorie:"
129
 
 
130
  #@ yarpp
131
+ #: options-meta-boxes.php:98
132
  msgid "Disallow by tag:"
133
  msgstr "Wyklucz tagi:"
134
 
 
135
  #@ yarpp
136
+ #: options-meta-boxes.php:101
137
  msgid "Show password protected posts?"
138
  msgstr "Pokazywać wpisy chronione hasłem?"
139
 
 
140
  #@ yarpp
141
+ #: options-meta-boxes.php:140
142
  msgid "Show only previous posts?"
143
  msgstr "Pokazywać tylko wcześniejsze wpisy?"
144
 
 
145
  #@ yarpp
146
+ #: options-meta-boxes.php:148
147
  msgid "\"Relatedness\" options"
148
  msgstr "Opcje \"powiązań\""
149
 
150
+ #@ yarpp
151
  #: options-meta-boxes.php:124
152
  #: options-meta-boxes.php:139
153
  #: options-meta-boxes.php:157
157
  #: options-meta-boxes.php:223
158
  #: options-meta-boxes.php:228
159
  #: options-meta-boxes.php:268
 
160
  msgid "more&gt;"
161
  msgstr "więcej&gt;"
162
 
 
163
  #@ yarpp
164
+ #: options-meta-boxes.php:130
165
  msgid "Match threshold:"
166
  msgstr "Wymagane podobieństwo:"
167
 
 
168
  #@ yarpp
169
+ #: options-meta-boxes.php:131
170
  msgid "Titles: "
171
  msgstr "Tytuły:"
172
 
 
173
  #@ yarpp
174
+ #: options-meta-boxes.php:133
175
  msgid "Bodies: "
176
  msgstr "Treść główna:"
177
 
 
178
  #@ yarpp
179
+ #: options-meta-boxes.php:135
180
  msgid "Tags: "
181
  msgstr "Tagi:"
182
 
 
183
  #@ yarpp
184
+ #: options-meta-boxes.php:137
185
  msgid "Categories: "
186
  msgstr "Kategorie:"
187
 
 
188
  #@ yarpp
189
+ #: options-meta-boxes.php:139
190
  msgid "Cross-relate posts and pages?"
191
  msgstr "Powiązać zarówno wpisy jak i strony statyczne?"
192
 
 
193
  #@ yarpp
194
+ #: options-meta-boxes.php:139
195
  msgid "When the \"Cross-relate posts and pages\" option is selected, the <code>related_posts()</code>, <code>related_pages()</code>, and <code>related_entries()</code> all will give the same output, returning both related pages and posts."
196
  msgstr "Jeśli włączona jest ta opcja, kody <code>related_posts()</code>, <code>related_pages()</code> i <code>related_entries()</code> wyświetlą dokładnie to samo, czyli powiązane wpisy oraz strony statyczne."
197
 
 
198
  #@ yarpp
199
+ #: options-meta-boxes.php:212
200
  msgid "Display options <small>for your website</small>"
201
  msgstr "Opcje wyświetlania <small>dla Twojej strony</small>"
202
 
 
203
  #@ yarpp
204
+ #: options-meta-boxes.php:157
205
  msgid "Automatically display related posts?"
206
  msgstr "Automatycznie wyświetlać powiązane wpisy?"
207
 
 
208
  #@ yarpp
209
+ #: options-meta-boxes.php:157
210
  msgid "This option automatically displays related posts right after the content on single entry pages. If this option is off, you will need to manually insert <code>related_posts()</code> or variants (<code>related_pages()</code> and <code>related_entries()</code>) into your theme files."
211
  msgstr "Po włączeniu tej opcji, powiązane wpisy pokażą się automatycznie na stronie pojedyńczego wpisu zaraz za jego treścią. Jeśli ta opcja jest wyłączona, musisz samodzielnie dodać kod: <code>related_posts()</code> lub jego warianty (<code>related_pages()</code> i <code>related_entries()</code>) do plików szablonu graficznego."
212
 
 
213
  #@ yarpp
214
+ #: options-meta-boxes.php:158
215
  msgid "Website display code example"
216
  msgstr "Przykładowy kod wyświetlany na stronie"
217
 
218
+ #@ yarpp
219
  #: options-meta-boxes.php:158
220
  #: options-meta-boxes.php:221
 
221
  msgid "(Update options to reload.)"
222
  msgstr "Zmień opcje a zobaczysz wynik."
223
 
224
+ #@ yarpp
225
  #: options-meta-boxes.php:160
226
  #: options-meta-boxes.php:226
 
227
  msgid "Maximum number of related posts:"
228
  msgstr "Maksymalna liczba powiązanych wpisów:"
229
 
230
+ #@ yarpp
231
  #: options-meta-boxes.php:175
232
  #: options-meta-boxes.php:244
 
233
  msgid "Before / after related entries:"
234
  msgstr "Kod przed / po powiązanych wpisach:"
235
 
236
+ #@ yarpp
237
  #: options-meta-boxes.php:175
238
  #: options-meta-boxes.php:176
239
  #: options-meta-boxes.php:184
240
  #: options-meta-boxes.php:244
241
  #: options-meta-boxes.php:245
242
  #: options-meta-boxes.php:250
 
243
  msgid "For example:"
244
  msgstr "Na przykład:"
245
 
246
+ #@ yarpp
247
  #: options-meta-boxes.php:176
248
  #: options-meta-boxes.php:245
 
249
  msgid "Before / after each related entry:"
250
  msgstr "Kod przed / po poszczególnych linkach:"
251
 
252
+ #@ yarpp
253
  #: options-meta-boxes.php:178
254
  #: options-meta-boxes.php:247
 
255
  msgid "Show excerpt?"
256
  msgstr "Pokazywać fragment wpisu?"
257
 
258
+ #@ yarpp
259
  #: options-meta-boxes.php:179
260
  #: options-meta-boxes.php:248
 
261
  msgid "Excerpt length (No. of words):"
262
  msgstr "Długość fragmentu (liczba słów):"
263
 
 
264
  #@ yarpp
265
+ #: options-meta-boxes.php:183
266
  msgid "Before / after (Excerpt):"
267
  msgstr "Kod przed / po fragmencie wpisu:"
268
 
269
+ #@ yarpp
270
  #: options-meta-boxes.php:189
271
  #: options-meta-boxes.php:254
 
272
  msgid "Order results:"
273
  msgstr "Kolejność wyświetlania:"
274
 
275
+ #@ yarpp
276
  #: options-meta-boxes.php:191
277
  #: options-meta-boxes.php:256
 
278
  msgid "score (high relevance to low)"
279
  msgstr "podobieństwo (najwyższe najpierw)"
280
 
281
+ #@ yarpp
282
  #: options-meta-boxes.php:192
283
  #: options-meta-boxes.php:257
 
284
  msgid "score (low relevance to high)"
285
  msgstr "podobnieństwo (najniższe najpierw)"
286
 
287
+ #@ yarpp
288
  #: options-meta-boxes.php:193
289
  #: options-meta-boxes.php:258
 
290
  msgid "date (new to old)"
291
  msgstr "data (najnowsze najpierw)"
292
 
293
+ #@ yarpp
294
  #: options-meta-boxes.php:194
295
  #: options-meta-boxes.php:259
 
296
  msgid "date (old to new)"
297
  msgstr "data (najstarsze najpierw)"
298
 
299
+ #@ yarpp
300
  #: options-meta-boxes.php:195
301
  #: options-meta-boxes.php:260
 
302
  msgid "title (alphabetical)"
303
  msgstr "tytuł (A-Z)"
304
 
305
+ #@ yarpp
306
  #: options-meta-boxes.php:196
307
  #: options-meta-boxes.php:261
 
308
  msgid "title (reverse alphabetical)"
309
  msgstr "tytuł (Z-A)"
310
 
311
+ #@ yarpp
312
  #: options-meta-boxes.php:201
313
  #: options-meta-boxes.php:266
 
314
  msgid "Default display if no results:"
315
  msgstr "Wyświetlany kod przy braku wyników:"
316
 
317
+ #@ yarpp
318
  #: includes.php:257
319
  #: options-meta-boxes.php:203
320
  #: options-meta-boxes.php:268
 
321
  msgid "Help promote Yet Another Related Posts Plugin?"
322
  msgstr "Pomóc promować YARPP?"
323
 
324
+ #@ yarpp
325
  #: options-meta-boxes.php:205
326
  #: options-meta-boxes.php:269
327
  #, php-format
 
328
  msgid "This option will add the code %s. Try turning it on, updating your options, and see the code in the code example to the right. These links and donations are greatly appreciated."
329
  msgstr "Ta opcja doda kod: %s. Po włączeniu i zapisaniu opcji zobaczysz w okienku po prawej, jak wygląda przykładowy wygenerowany kod. Bardzo serdecznie dziękuję za te linki oraz dotacje."
330
 
 
331
  #@ yarpp
332
+ #: options-meta-boxes.php:276
333
  msgid "Display options <small>for RSS</small>"
334
  msgstr "Włącz opcje dla <small>kanału RSS</small>"
335
 
 
336
  #@ yarpp
337
+ #: options-meta-boxes.php:221
338
  msgid "Display related posts in feeds?"
339
  msgstr "Wyświetlać powiązane wpisy w kanałach RSS?"
340
 
 
341
  #@ yarpp
342
+ #: options-meta-boxes.php:223
343
  msgid "Display related posts in the descriptions?"
344
  msgstr "Wyświetlać powiązane wpisy w opisach?"
345
 
 
346
  #@ yarpp
347
+ #: options-meta-boxes.php:223
348
  msgid "This option displays the related posts in the RSS description fields, not just the content. If your feeds are set up to only display excerpts, however, only the description field is used, so this option is required for any display at all."
349
  msgstr "Po włączeniu tej opcji, powiązane wpisy pojawią się w opisie kanału RSS, nie tylko w treści. Jeśli w RSS wyświetlasz wyłącznie fragmenty wpisów, używane jest tylko pole opisu, a zatem ta opcja musi być włączona, aby powiązane wpisy byłby w ogóle pokazywane."
350
 
 
351
  #@ yarpp
352
+ #: options-meta-boxes.php:221
353
  msgid "RSS display code example"
354
  msgstr "Przykładowy kod wyświetlania w RSS"
355
 
 
356
  #@ yarpp
357
+ #: options-meta-boxes.php:250
358
  msgid "Before / after (excerpt):"
359
  msgstr "Kod przed / po fragmencie wpisu:"
360
 
 
361
  #@ yarpp
362
+ #: options-meta-boxes.php:38
363
  msgid "word"
364
  msgstr "słowo"
365
 
 
366
  #@ yarpp
367
+ #: options-meta-boxes.php:39
368
  msgid "tag"
369
  msgstr "tag"
370
 
 
371
  #@ yarpp
372
+ #: options-meta-boxes.php:40
373
  msgid "category"
374
  msgstr "kategoria"
375
 
376
+ #@ yarpp
377
  #: options-meta-boxes.php:48
378
  #: options-meta-boxes.php:80
379
  #, php-format
 
380
  msgid "require at least one %s in common"
381
  msgstr "wymagaj przynajmniej jeden %s wspólną"
382
 
383
+ #@ yarpp
384
  #: options-meta-boxes.php:50
385
  #: options-meta-boxes.php:82
386
  #, php-format
 
387
  msgid "require more than one %s in common"
388
  msgstr "wymagaj więcej niż jeden %s wspólne"
389
 
 
390
  #@ yarpp
391
+ #: options.php:114
392
  msgid "Options saved!"
393
  msgstr "Opcje zapisane!"
394
 
 
395
  #@ yarpp
396
+ #: options-meta-boxes.php:124
397
  msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
398
  msgstr "Im wyższy minimalny próg powiązania, tym większe ograniczenia i tym samym mniej podobnych wpisów. Domyślnym progiem jest 5. Jeśli chcesz dostosować swoje minimum, zobacz kilka swoich artykułów i wyniki powiązanych do nich wpisów. Możesz zobaczyć, które wpisy są wybierane jako powiązane i z jakim wynikiem. Jeśli nie podobają Ci się rezultaty - poeksperymentuj z ustawieniami i minimalnym progiem."
399
 
 
400
  #@ yarpp
401
+ #: options.php:279
402
  msgid "Update options"
403
  msgstr "Aktualizuj opcje"
404
 
 
405
  #@ yarpp
406
+ #: options.php:280
407
  msgid "Do you really want to reset your configuration?"
408
  msgstr "Czy na pewno chcesz zresetować ustawienia"
409
 
 
410
  #@ yarpp
411
+ #: options.php:280
412
  msgid "Reset options"
413
  msgstr "Resetuj ustawienia"
414
 
415
+ #@ yarpp
416
  #: cache-postmeta.php:105
417
  #: cache-tables.php:131
 
418
  msgid "Example post "
419
  msgstr "Przykładowy wpis"
420
 
 
421
  #@ yarpp
422
+ #: template-metabox.php:12
423
  msgid "These are the related entries for this entry. Updating this post may change these related posts."
424
  msgstr "Oto powiązane wpisy. Zmień treść tego wpisu aby zmienić listę powiązanych wpisów."
425
 
 
426
  #@ yarpp
427
+ #: template-metabox.php:25
428
  msgid "Whether all of these related entries are actually displayed and how they are displayed depends on your YARPP display options."
429
  msgstr "To, czy lista powiązanych wpisów jest wyświetlana i jakie są to wpisy, jest zależne od konfiguracji wtyczki YARPP."
430
 
431
+ #@ yarpp
432
  #: includes.php:28
433
  #: includes.php:39
434
  #: template-metabox.php:27
435
  #: template-widget.php:13
 
436
  msgid "No related posts."
437
  msgstr "Brak powiązanych wpisów."
438
 
 
439
  #@ yarpp
440
+ #: options-meta-boxes.php:105
441
  msgid "day(s)"
442
  msgstr "dni"
443
 
 
444
  #@ yarpp
445
+ #: options-meta-boxes.php:106
446
  msgid "week(s)"
447
  msgstr "tygodni"
448
 
 
449
  #@ yarpp
450
+ #: options-meta-boxes.php:107
451
  msgid "month(s)"
452
  msgstr "miesięcy"
453
 
 
454
  #@ yarpp
455
+ #: options-meta-boxes.php:109
456
  msgid "Show only posts from the past NUMBER UNITS"
457
  msgstr "Tylko wpisy z ostatnich NUMBER UNITS"
458
 
459
+ #@ yarpp
460
  #: options.php:46
461
  #, php-format
 
462
  msgid "There is a new beta (%s) of Yet Another Related Posts Plugin. You can <a href=\"%s\">download it here</a> at your own risk."
463
  msgstr "Istnieje nowa wersja beta (%s) wtyczki Yet Another Related Posts. Możesz <a href=\"%s\">ściągnąć ją tutaj</a> i używać na własne ryzyko."
464
 
465
+ #@ yarpp
466
  #: includes.php:248
467
  #: options-meta-boxes.php:161
468
  #: options-meta-boxes.php:228
 
469
  msgid "Display using a custom template file"
470
  msgstr "Wyświetlaj używając szablonu"
471
 
472
+ #@ yarpp
473
  #: includes.php:249
474
  #: options-meta-boxes.php:165
475
  #: options-meta-boxes.php:233
 
476
  msgid "Template file:"
477
  msgstr "Plik szablonu:"
478
 
 
479
  #@ yarpp
480
+ #: options-meta-boxes.php:221
481
  msgid "This option displays related posts at the end of each item in your RSS and Atom feeds. No template changes are needed."
482
  msgstr "Te opcje zmieniają sposób wyświetlania powiązanych wpisów a kanałach RSS i Atom. Żadne zmiany szablonu nie są wymagane."
483
 
 
484
  #@ yarpp
485
+ #: options-meta-boxes.php:228
486
  msgid "NEW!"
487
  msgstr "NOWOŚĆ!"
488
 
489
+ #@ yarpp
490
  #: options-meta-boxes.php:161
491
  #: options-meta-boxes.php:228
 
492
  msgid "This advanced option gives you full power to customize how your related posts are displayed. Templates (stored in your theme folder) are written in PHP."
493
  msgstr "Te zaawansowane opcje dają Ci możliwość całkowitego dostosowania wyświetlania powiązanych wpisów. Szablony (znajdujące sie w katalogu motywu graficznego) są napisane w PHP."
494
 
495
+ #@ yarpp
496
  #: includes.php:26
497
  #: includes.php:37
 
498
  msgid "Related posts:"
499
+ msgstr "Powiązane wpisy:"
500
 
 
501
  #@ yarpp
502
+ #: includes.php:169
503
  msgid "Settings"
504
+ msgstr "Ustawienia"
505
 
 
506
  #@ default
507
+ #: includes.php:243
508
  msgid "Title:"
509
+ msgstr "Tytuł:"
510
 
 
511
  #@ yarpp
512
+ #: includes.php:385
513
  msgid "Related entries may be displayed once you save your entry"
514
+ msgstr "Powiązane wpisy pojawią się, kiedy zapiszesz swój wpis"
515
 
 
516
  #@ yarpp
517
+ #: options-meta-boxes.php:124
518
  msgid "YARPP limits the related posts list by (1) a maximum number and (2) a <em>match threshold</em>."
519
+ msgstr "YARRP limituje ilość wyświetlanych wpisów do (1) maksymalnej zdefiniowanej liczby, (2) limitu podobieństwa."
520
 
521
+ #@ yarpp
522
  #: options-meta-boxes.php:175
523
  #: options-meta-boxes.php:176
524
  #: options-meta-boxes.php:184
525
  #: options-meta-boxes.php:244
526
  #: options-meta-boxes.php:245
527
  #: options-meta-boxes.php:250
 
528
  msgid " or "
529
+ msgstr " lub "
530
 
 
531
  #@ yarpp
532
+ #: options-meta-boxes.php:283
533
  msgid "YARPP Forum"
534
+ msgstr "Forum YARPP"
535
 
 
536
  #@ yarpp
537
+ #: options-meta-boxes.php:284
538
  msgid "YARPP on Twitter"
539
+ msgstr "YARRP na Twitterze"
540
 
 
541
  #@ yarpp
542
+ #: options-meta-boxes.php:285
543
  msgid "YARPP on the Web"
544
+ msgstr "YARPP w Sieci"
545
 
 
546
  #@ yarpp
547
+ #: options-meta-boxes.php:292
548
  msgid "Contact YARPP"
549
+ msgstr "Kontakt z YARRP"
550
 
551
+ #@ default
552
  #: options.php:42
553
  #, php-format
 
554
  msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">View version %4$s details</a> or <a href=\"%5$s\">update automatically</a>."
555
+ msgstr "Jest dostępna nowa wersja %1$s. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">Pokaż szczegóły wersji %4$s</a> lub <a href=\"%5$s\">automatycznie uaktualnij</a>."
556
 
557
+ #@ yarpp
558
  #: options.php:86
559
  #, php-format
 
560
  msgid "Please try <a href=\"%s\" target=\"_blank\">manual SQL setup</a>."
561
+ msgstr "Proszę spróbować <a href=\"%s\" target=\"_blank\">ręczną konfigurację SQL</a>."
562
 
563
+ #@ yarpp
564
  #: options.php:188
565
  #, php-format
 
566
  msgid "by <a href=\"%s\" target=\"_blank\">mitcho (Michael 芳貴 Erlewine)</a>"
567
+ msgstr "autor: <a href=\"%s\" target=\"_blank\">mitcho (Michael ?? Erlewine)</a>"
568
 
magic.php CHANGED
@@ -176,7 +176,7 @@ function yarpp_sql($args,$giveresults = true,$reference_ID=false,$domain='websit
176
  function yarpp_related($type,$args,$echo = true,$reference_ID=false,$domain = 'website') {
177
  global $post, $wp_query, $id, $page, $pages, $authordata, $day, $currentmonth, $multipage, $more, $pagenow, $numpages, $yarpp_cache;
178
 
179
- yarpp_upgrade_check();
180
 
181
  if ($domain != 'demo_web' and $domain != 'demo_rss') {
182
  if ($yarpp_cache->yarpp_time) // if we're already in a YARPP loop, stop now.
@@ -219,18 +219,18 @@ function yarpp_related($type,$args,$echo = true,$reference_ID=false,$domain = 'w
219
  if ($cross_relate)
220
  $type = array('post','page');
221
 
222
- yarpp_cache_enforce($reference_ID);
223
 
224
- $output = '';
225
 
226
  if ($domain != 'demo_web' and $domain != 'demo_rss')
227
  $yarpp_cache->begin_yarpp_time($reference_ID); // get ready for YARPP TIME!
228
  else {
229
  $yarpp_cache->demo_time = true;
230
- if ($domain == 'demo_web')
231
- $yarpp_cache->demo_limit = yarpp_get_option('limit');
232
- else
233
- $yarpp_cache->demo_limit = yarpp_get_option('rss_limit');
234
  }
235
  // just so we can return to normal later
236
  $current_query = $wp_query;
@@ -255,9 +255,9 @@ function yarpp_related($type,$args,$echo = true,$reference_ID=false,$domain = 'w
255
 
256
  $wp_query = $related_query;
257
  $wp_query->in_the_loop = true;
258
- $wp_query->is_feed = $current_query->is_feed;
259
- // make sure we get the right is_single value
260
- // (see http://wordpress.org/support/topic/288230)
261
  $wp_query->is_single = false;
262
 
263
  if ($domain == 'metabox') {
@@ -282,7 +282,7 @@ function yarpp_related($type,$args,$echo = true,$reference_ID=false,$domain = 'w
282
  // restore the older wp_query.
283
  $wp_query = null; $wp_query = $current_query; unset($current_query);
284
  $post = null; $post = $current_post; unset($current_post);
285
- $authordata = null; $authordata = $current_authordata; unset($current_authordata);
286
  $pages = null; $pages = $current_pages; unset($current_pages);
287
  $id = $current_id; unset($current_id);
288
  $page = $current_page; unset($current_page);
@@ -290,8 +290,8 @@ function yarpp_related($type,$args,$echo = true,$reference_ID=false,$domain = 'w
290
  $multipage = null; $multipage = $current_multipage; unset($current_multipage);
291
  $more = null; $more = $current_more; unset($current_more);
292
  $pagenow = null; $pagenow = $current_pagenow; unset($current_pagenow);
293
- $day = null; $day = $current_day; unset($current_day);
294
- $currentmonth = null; $currentmonth = $current_currentmonth; unset($current_currentmonth);
295
 
296
  if ($promote_yarpp and $domain != 'metabox')
297
  $output .= "\n<p>".sprintf(__("Related posts brought to you by <a href='%s'>Yet Another Related Posts Plugin</a>.",'yarpp'), 'http://yarpp.org')."</p>";
@@ -302,7 +302,7 @@ function yarpp_related($type,$args,$echo = true,$reference_ID=false,$domain = 'w
302
  function yarpp_related_exist($type,$args,$reference_ID=false) {
303
  global $post, $yarpp_cache;
304
 
305
- yarpp_upgrade_check();
306
 
307
  if (is_object($post) and !$reference_ID)
308
  $reference_ID = $post->ID;
@@ -313,33 +313,33 @@ function yarpp_related_exist($type,$args,$reference_ID=false) {
313
  if (yarpp_get_option('cross_relate'))
314
  $type = array('post','page');
315
 
316
- yarpp_cache_enforce($reference_ID);
317
 
318
  $yarpp_cache->begin_yarpp_time($reference_ID); // get ready for YARPP TIME!
319
  $related_query = new WP_Query();
320
  // Note: why is this 10000? Should we just make it 1?
321
- $related_query->query(array('p'=>$reference_ID,'showposts'=>10000,'post_type'=>$type));
322
- $return = $related_query->have_posts();
323
- unset($related_query);
324
- $yarpp_cache->end_yarpp_time(); // YARPP time is over. :(
325
 
326
  return $return;
327
  }
328
 
329
- function yarpp_save_cache($post_ID,$force=true) {
330
  global $wpdb;
331
 
332
- // new in 3.2: don't compute cache during import
333
- if ( defined( 'WP_IMPORTING' ) )
334
- return;
335
 
336
- $sql = "select post_parent from $wpdb->posts where ID='$post_ID'";
337
  $parent_ID = $wpdb->get_var($sql);
338
 
339
  if ($parent_ID != $post_ID and $parent_ID)
340
  $post_ID = $parent_ID;
341
 
342
- yarpp_cache_enforce($post_ID,$force);
343
  }
344
 
345
  // Clear the cache for this entry and for all posts which are "related" to it.
@@ -371,10 +371,10 @@ function yarpp_status_transition($new_status, $old_status, $post) {
371
  }
372
  }
373
 
374
- function yarpp_cache_enforce($reference_ID,$force=false) {
375
  global $yarpp_debug, $yarpp_cache;
376
 
377
- if ($reference_ID === '' || $reference_ID === false)
378
  return false;
379
 
380
  if (!$force && $yarpp_cache->is_cached($reference_ID)) {
176
  function yarpp_related($type,$args,$echo = true,$reference_ID=false,$domain = 'website') {
177
  global $post, $wp_query, $id, $page, $pages, $authordata, $day, $currentmonth, $multipage, $more, $pagenow, $numpages, $yarpp_cache;
178
 
179
+ yarpp_upgrade_check();
180
 
181
  if ($domain != 'demo_web' and $domain != 'demo_rss') {
182
  if ($yarpp_cache->yarpp_time) // if we're already in a YARPP loop, stop now.
219
  if ($cross_relate)
220
  $type = array('post','page');
221
 
222
+ yarpp_cache_enforce($reference_ID);
223
 
224
+ $output = '';
225
 
226
  if ($domain != 'demo_web' and $domain != 'demo_rss')
227
  $yarpp_cache->begin_yarpp_time($reference_ID); // get ready for YARPP TIME!
228
  else {
229
  $yarpp_cache->demo_time = true;
230
+ if ($domain == 'demo_web')
231
+ $yarpp_cache->demo_limit = yarpp_get_option('limit');
232
+ else
233
+ $yarpp_cache->demo_limit = yarpp_get_option('rss_limit');
234
  }
235
  // just so we can return to normal later
236
  $current_query = $wp_query;
255
 
256
  $wp_query = $related_query;
257
  $wp_query->in_the_loop = true;
258
+ $wp_query->is_feed = $current_query->is_feed;
259
+ // make sure we get the right is_single value
260
+ // (see http://wordpress.org/support/topic/288230)
261
  $wp_query->is_single = false;
262
 
263
  if ($domain == 'metabox') {
282
  // restore the older wp_query.
283
  $wp_query = null; $wp_query = $current_query; unset($current_query);
284
  $post = null; $post = $current_post; unset($current_post);
285
+ $authordata = null; $authordata = $current_authordata; unset($current_authordata);
286
  $pages = null; $pages = $current_pages; unset($current_pages);
287
  $id = $current_id; unset($current_id);
288
  $page = $current_page; unset($current_page);
290
  $multipage = null; $multipage = $current_multipage; unset($current_multipage);
291
  $more = null; $more = $current_more; unset($current_more);
292
  $pagenow = null; $pagenow = $current_pagenow; unset($current_pagenow);
293
+ $day = null; $day = $current_day; unset($current_day);
294
+ $currentmonth = null; $currentmonth = $current_currentmonth; unset($current_currentmonth);
295
 
296
  if ($promote_yarpp and $domain != 'metabox')
297
  $output .= "\n<p>".sprintf(__("Related posts brought to you by <a href='%s'>Yet Another Related Posts Plugin</a>.",'yarpp'), 'http://yarpp.org')."</p>";
302
  function yarpp_related_exist($type,$args,$reference_ID=false) {
303
  global $post, $yarpp_cache;
304
 
305
+ yarpp_upgrade_check();
306
 
307
  if (is_object($post) and !$reference_ID)
308
  $reference_ID = $post->ID;
313
  if (yarpp_get_option('cross_relate'))
314
  $type = array('post','page');
315
 
316
+ yarpp_cache_enforce($reference_ID);
317
 
318
  $yarpp_cache->begin_yarpp_time($reference_ID); // get ready for YARPP TIME!
319
  $related_query = new WP_Query();
320
  // Note: why is this 10000? Should we just make it 1?
321
+ $related_query->query(array('p'=>$reference_ID,'showposts'=>10000,'post_type'=>$type));
322
+ $return = $related_query->have_posts();
323
+ unset($related_query);
324
+ $yarpp_cache->end_yarpp_time(); // YARPP time is over. :(
325
 
326
  return $return;
327
  }
328
 
329
+ function yarpp_save_cache($post_ID, $force=true) {
330
  global $wpdb;
331
 
332
+ // new in 3.2: don't compute cache during import
333
+ if ( defined( 'WP_IMPORTING' ) )
334
+ return;
335
 
336
+ $sql = "select post_parent from $wpdb->posts where ID='$post_ID'";
337
  $parent_ID = $wpdb->get_var($sql);
338
 
339
  if ($parent_ID != $post_ID and $parent_ID)
340
  $post_ID = $parent_ID;
341
 
342
+ yarpp_cache_enforce((int) $post_ID, $force);
343
  }
344
 
345
  // Clear the cache for this entry and for all posts which are "related" to it.
371
  }
372
  }
373
 
374
+ function yarpp_cache_enforce($reference_ID, $force=false) {
375
  global $yarpp_debug, $yarpp_cache;
376
 
377
+ if ( empty($reference_ID) || !is_int($reference_ID) )
378
  return false;
379
 
380
  if (!$force && $yarpp_cache->is_cached($reference_ID)) {
options-meta-boxes.php CHANGED
@@ -149,7 +149,7 @@ add_meta_box('yarpp_relatedness', __('"Relatedness" options','yarpp'), array(new
149
 
150
  class YARPP_Meta_Box_Display_Web extends YARPP_Meta_Box {
151
  function display() {
152
- global $yarpp_templateable;
153
  ?>
154
  <table class="form-table" style="margin-top: 0; clear:none;">
155
  <tbody>
@@ -158,7 +158,7 @@ class YARPP_Meta_Box_Display_Web extends YARPP_Meta_Box {
158
  <th class='th-full' colspan='2' scope='row' style='width:100%;'>",'','<td rowspan="3" style="border-left:8px transparent solid;"><b>'.__("Website display code example",'yarpp').'</b><br /><small>'.__("(Update options to reload.)",'yarpp').'</small><br/>'
159
  ."<div id='display_demo_web' style='overflow:auto;width:350px;max-height:500px;'></div></td>");
160
  $this->textbox('limit',__('Maximum number of related posts:','yarpp'));
161
- $this->checkbox('use_template',__("Display using a custom template file",'yarpp')." <a href='#' class='info'>".__('more&gt;','yarpp')."<span>".__("This advanced option gives you full power to customize how your related posts are displayed. Templates (stored in your theme folder) are written in PHP.",'yarpp')."</span></a>","<tr valign='top'><th colspan='2'>",' class="template"'.(!$yarpp_templateable?' disabled="disabled"':'')); ?>
162
  </tbody></table>
163
  <table class="form-table" style="clear:none;"><tbody>
164
  <tr valign='top' class='templated'>
@@ -213,7 +213,7 @@ add_meta_box('yarpp_display_web', __('Display options <small>for your website</s
213
 
214
  class YARPP_Meta_Box_Display_Feed extends YARPP_Meta_Box {
215
  function display() {
216
- global $yarpp_templateable;
217
  ?>
218
  <table class="form-table" style="margin-top: 0; clear:none;"><tbody>
219
  <?php
@@ -225,7 +225,7 @@ $this->checkbox('rss_excerpt_display',__("Display related posts in the descripti
225
 
226
  $this->textbox('rss_limit',__('Maximum number of related posts:','yarpp'),2, "<tr valign='top' class='rss_displayed'>
227
  <th scope='row'>");
228
- $this->checkbox('rss_use_template',__("Display using a custom template file",'yarpp')." <!--<span style='color:red;'>".__('NEW!','yarpp')."</span>--> <a href='#' class='info'>".__('more&gt;','yarpp')."<span>".__("This advanced option gives you full power to customize how your related posts are displayed. Templates (stored in your theme folder) are written in PHP.",'yarpp')."</span></a>","<tr valign='top' class='rss_displayed'><th colspan='2'>",' class="rss_template"'.(!$yarpp_templateable?' disabled="disabled"':'')); ?>
229
  </tbody></table>
230
  <table class="form-table rss_displayed" style="clear:none;">
231
  <tbody>
149
 
150
  class YARPP_Meta_Box_Display_Web extends YARPP_Meta_Box {
151
  function display() {
152
+ global $yarpp_templates;
153
  ?>
154
  <table class="form-table" style="margin-top: 0; clear:none;">
155
  <tbody>
158
  <th class='th-full' colspan='2' scope='row' style='width:100%;'>",'','<td rowspan="3" style="border-left:8px transparent solid;"><b>'.__("Website display code example",'yarpp').'</b><br /><small>'.__("(Update options to reload.)",'yarpp').'</small><br/>'
159
  ."<div id='display_demo_web' style='overflow:auto;width:350px;max-height:500px;'></div></td>");
160
  $this->textbox('limit',__('Maximum number of related posts:','yarpp'));
161
+ $this->checkbox('use_template',__("Display using a custom template file",'yarpp')." <a href='#' class='info'>".__('more&gt;','yarpp')."<span>".__("This advanced option gives you full power to customize how your related posts are displayed. Templates (stored in your theme folder) are written in PHP.",'yarpp')."</span></a>","<tr valign='top'><th colspan='2'>",' class="template"'.(!(is_array($yarpp_templates) && count($yarpp_templates))?' disabled="disabled"':'')); ?>
162
  </tbody></table>
163
  <table class="form-table" style="clear:none;"><tbody>
164
  <tr valign='top' class='templated'>
213
 
214
  class YARPP_Meta_Box_Display_Feed extends YARPP_Meta_Box {
215
  function display() {
216
+ global $yarpp_templates;
217
  ?>
218
  <table class="form-table" style="margin-top: 0; clear:none;"><tbody>
219
  <?php
225
 
226
  $this->textbox('rss_limit',__('Maximum number of related posts:','yarpp'),2, "<tr valign='top' class='rss_displayed'>
227
  <th scope='row'>");
228
+ $this->checkbox('rss_use_template',__("Display using a custom template file",'yarpp')." <!--<span style='color:red;'>".__('NEW!','yarpp')."</span>--> <a href='#' class='info'>".__('more&gt;','yarpp')."<span>".__("This advanced option gives you full power to customize how your related posts are displayed. Templates (stored in your theme folder) are written in PHP.",'yarpp')."</span></a>","<tr valign='top' class='rss_displayed'><th colspan='2'>",' class="rss_template"'.(!(is_array($yarpp_templates) && count($yarpp_templates))?' disabled="disabled"':'')); ?>
229
  </tbody></table>
230
  <table class="form-table rss_displayed" style="clear:none;">
231
  <tbody>
options.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- global $wpdb, $yarpp_value_options, $yarpp_binary_options, $wp_version, $yarpp_cache, $yarpp_templateable, $yarpp_myisam;
4
 
5
  // Reenforce YARPP setup:
6
  if (!get_option('yarpp_version'))
@@ -14,8 +14,8 @@ if (isset($_GET['action']) && $_GET['action'] == 'flush') {
14
  }
15
 
16
  // check to see that templates are in the right place
17
- $yarpp_templateable = (count(glob(STYLESHEETPATH . '/yarpp-template-*.php')) > 0);
18
- if (!$yarpp_templateable) {
19
  yarpp_set_option('use_template',false);
20
  yarpp_set_option('rss_use_template',false);
21
  }
1
  <?php
2
 
3
+ global $wpdb, $yarpp_value_options, $yarpp_binary_options, $wp_version, $yarpp_cache, $yarpp_templates, $yarpp_myisam;
4
 
5
  // Reenforce YARPP setup:
6
  if (!get_option('yarpp_version'))
14
  }
15
 
16
  // check to see that templates are in the right place
17
+ $yarpp_templates = glob(STYLESHEETPATH . '/yarpp-template-*.php');
18
+ if ( !(is_array($yarpp_templates) && count($yarpp_templates)) ) {
19
  yarpp_set_option('use_template',false);
20
  yarpp_set_option('rss_use_template',false);
21
  }
readme.txt CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://mitcho.com/code/yarpp/
6
  Donate link: http://tinyurl.com/donatetomitcho
7
  Tags: related, posts, post, pages, page, RSS, feed, feeds
8
  Requires at least: 3.0
9
- Tested up to: 3.2
10
  Stable tag: 3.3.2
11
 
12
  Display a list of related entries on your site and feeds based on a unique algorithm. Templating allows customization of the display.
@@ -93,7 +93,7 @@ If you find that the YARPP database calls are still too database-intensive, try
93
  * not considering tags and/or categories in the Relatedness formula;
94
  * not excluding any tags and/or categories in The Pool.
95
 
96
- All of these can improve database performance.
97
 
98
  If you are in the process of looking for a hosting provider whose databases will not balk under YARPP, I personally have had great success with [MediaTemple](http://www.mediatemple.net/go/order/?refdom=mitcho.com).
99
 
@@ -189,12 +189,23 @@ YARPP is currently localized in the following languages:
189
  * Hungarian
190
  * Romanian
191
  * Thai
 
 
192
  -->
193
 
194
  If you are a bilingual speaker of English and another language and an avid user of YARPP, I would love to talk to you about localizing YARPP! Localizing YARPP can be pretty easy using [the Codestyling Localization plugin](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en). Please [contact me](mailto:yarpp@mitcho.com) *first* before translating to make sure noone else is working on your language. Thanks!
195
 
196
  == Changelog ==
197
 
 
 
 
 
 
 
 
 
 
198
  = 3.3.2 =
199
  * [Bugfix](http://wordpress.org/support/topic/missing-translate-strings): removed an unlocalized string
200
  * Bugfix for users of WordPress 3.0.x.
6
  Donate link: http://tinyurl.com/donatetomitcho
7
  Tags: related, posts, post, pages, page, RSS, feed, feeds
8
  Requires at least: 3.0
9
+ Tested up to: 3.3
10
  Stable tag: 3.3.2
11
 
12
  Display a list of related entries on your site and feeds based on a unique algorithm. Templating allows customization of the display.
93
  * not considering tags and/or categories in the Relatedness formula;
94
  * not excluding any tags and/or categories in The Pool.
95
 
96
+ These options can be found in the "Relatedness" metabox which you can display from the "Screen Options" tab. All of these can improve database performance.
97
 
98
  If you are in the process of looking for a hosting provider whose databases will not balk under YARPP, I personally have had great success with [MediaTemple](http://www.mediatemple.net/go/order/?refdom=mitcho.com).
99
 
189
  * Hungarian
190
  * Romanian
191
  * Thai
192
+ * Bhasa Indonesian
193
+ * Spanish
194
  -->
195
 
196
  If you are a bilingual speaker of English and another language and an avid user of YARPP, I would love to talk to you about localizing YARPP! Localizing YARPP can be pretty easy using [the Codestyling Localization plugin](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en). Please [contact me](mailto:yarpp@mitcho.com) *first* before translating to make sure noone else is working on your language. Thanks!
197
 
198
  == Changelog ==
199
 
200
+ = 3.3.3 =
201
+ * Init YARPP on the `init` action, [by request](https://wordpress.org/support/topic/plugin-yet-another-related-posts-plugin-load-sequence-yarpp-starts-before-the-wordpress-init-completes)
202
+ * Updated Polish and Italian localizations
203
+ * Added Dutch stopwords by Paul Kessels
204
+ * Code cleanup:
205
+ * Minor speedup to unnecessarily slow i18n code
206
+ * Fixed fatal error in postmeta keyword caching code
207
+ * Fewer `glob`s
208
+ * [Bug fix](http://wordpress.org/support/topic/the-problem-when-publish-a-post): ignore empty `blog_charset`s
209
  = 3.3.2 =
210
  * [Bugfix](http://wordpress.org/support/topic/missing-translate-strings): removed an unlocalized string
211
  * Bugfix for users of WordPress 3.0.x.
yarpp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://yarpp.org/
5
  Description: Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. A templating feature allows customization of the display.
6
- Version: 3.3.2
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  Author URI: http://mitcho.com/
9
  Donate link: http://tinyurl.com/donatetomitcho
@@ -13,7 +13,7 @@ Donate link: http://tinyurl.com/donatetomitcho
13
  if (isset($_REQUEST['yarpp_debug']))
14
  $yarpp_debug = true;
15
 
16
- define('YARPP_VERSION','3.3.2');
17
  define('YARPP_DIR',dirname(__FILE__));
18
 
19
  require_once(YARPP_DIR.'/includes.php');
@@ -26,42 +26,45 @@ require_once(YARPP_DIR.'/template-functions.php');
26
  // define('YARPP_CACHE_TYPE', 'postmeta');
27
  if (!defined('YARPP_CACHE_TYPE'))
28
  define('YARPP_CACHE_TYPE', 'tables');
29
- global $yarpp_cache, $yarpp_storage_class;
30
- require_once(YARPP_DIR . '/cache-' . YARPP_CACHE_TYPE . '.php');
31
- // For PHP 4, we have to pass this object by reference:
32
- $GLOBALS['yarpp_cache'] =& new $yarpp_storage_class;
33
 
34
- register_activation_hook(__FILE__,'yarpp_activate');
35
- load_plugin_textdomain('yarpp', PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)), dirname(plugin_basename(__FILE__)).'/lang',dirname(plugin_basename(__FILE__)).'/lang');
 
 
36
 
37
- // setup admin
38
- add_action('admin_menu','yarpp_admin_menu');
39
- // new in 3.3: properly enqueue scripts for admin:
40
- add_action( 'admin_enqueue_scripts', 'yarpp_admin_enqueue' );
41
- // new in 3.3: set default meta boxes to show:
42
- add_filter( 'default_hidden_meta_boxes', 'yarpp_default_hidden_meta_boxes', 10, 2 );
43
 
44
- // automatic display hooks:
45
- add_filter('the_content','yarpp_default',1200);
46
- add_filter('the_content_rss','yarpp_rss',600);
47
- add_filter('the_excerpt_rss','yarpp_rss_excerpt',600);
48
 
49
- // new in 2.0: add as a widget
50
- add_action('widgets_init', 'widget_yarpp_init');
51
- // new in 3.0: add meta box
52
- add_action( 'admin_menu', 'yarpp_add_metabox');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
 
54
- // update cache on save
55
- add_action('save_post','yarpp_save_cache');
56
-
57
- // new in 3.2: update cache on delete
58
- add_action('delete_post','yarpp_delete_cache');
59
- // new in 3.2.1: handle post_status transitions
60
- add_action('transition_post_status','yarpp_status_transition', 10, 3);
61
-
62
- // sets the score override flag.
63
- add_action('parse_query','yarpp_set_score_override_flag');
64
-
65
- // new in 3.3: include BlogGlue meta box
66
- if ( file_exists( YARPP_DIR . '/blogglue.php' ) )
67
- include_once( YARPP_DIR . '/blogglue.php' );
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://yarpp.org/
5
  Description: Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. A templating feature allows customization of the display.
6
+ Version: 3.3.2b1
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  Author URI: http://mitcho.com/
9
  Donate link: http://tinyurl.com/donatetomitcho
13
  if (isset($_REQUEST['yarpp_debug']))
14
  $yarpp_debug = true;
15
 
16
+ define('YARPP_VERSION','3.3.3b1');
17
  define('YARPP_DIR',dirname(__FILE__));
18
 
19
  require_once(YARPP_DIR.'/includes.php');
26
  // define('YARPP_CACHE_TYPE', 'postmeta');
27
  if (!defined('YARPP_CACHE_TYPE'))
28
  define('YARPP_CACHE_TYPE', 'tables');
 
 
 
 
29
 
30
+ // new in 3.2.3: init yarpp on init
31
+ add_action( 'init', 'yarpp_init' );
32
+ function yarpp_init() {
33
+ global $yarpp_cache, $yarpp_storage_class;
34
 
35
+ register_activation_hook( __FILE__, 'yarpp_activate' );
 
 
 
 
 
36
 
37
+ // register text domain
38
+ load_plugin_textdomain( 'yarpp', false, dirname(plugin_basename(__FILE__)) . '/lang' );
 
 
39
 
40
+ // setup admin
41
+ add_action('admin_menu','yarpp_admin_menu');
42
+ // new in 3.3: properly enqueue scripts for admin:
43
+ add_action( 'admin_enqueue_scripts', 'yarpp_admin_enqueue' );
44
+ // new in 3.3: set default meta boxes to show:
45
+ add_filter( 'default_hidden_meta_boxes', 'yarpp_default_hidden_meta_boxes', 10, 2 );
46
+
47
+ // automatic display hooks:
48
+ add_filter('the_content','yarpp_default',1200);
49
+ add_filter('the_content_rss','yarpp_rss',600);
50
+ add_filter('the_excerpt_rss','yarpp_rss_excerpt',600);
51
+
52
+ // new in 2.0: add as a widget
53
+ add_action('widgets_init', 'widget_yarpp_init');
54
+ // new in 3.0: add meta box
55
+ add_action( 'admin_menu', 'yarpp_add_metabox');
56
+
57
+ // update cache on save
58
+ add_action('save_post','yarpp_save_cache');
59
+
60
+ // new in 3.2: update cache on delete
61
+ add_action('delete_post','yarpp_delete_cache');
62
+ // new in 3.2.1: handle post_status transitions
63
+ add_action('transition_post_status','yarpp_status_transition', 10, 3);
64
+
65
+ // sets the score override flag.
66
+ add_action('parse_query','yarpp_set_score_override_flag');
67
 
68
+ require_once(YARPP_DIR . '/cache-' . YARPP_CACHE_TYPE . '.php');
69
+ $yarpp_cache = new $yarpp_storage_class;
70
+ }