Related Posts for WordPress - Version 1.9.2

Version Description

Download this release

Release Info

Developer barrykooij
Plugin Icon 128x128 Related Posts for WordPress
Version 1.9.2
Comparing to
See all releases

Code changes from version 1.9.1 to 1.9.2

Files changed (40) hide show
  1. classes/class-constants.php +0 -1
  2. classes/class-post-link-manager.php +18 -33
  3. classes/class-related-word-manager.php +55 -51
  4. classes/class-rp4wp.php +1 -1
  5. classes/hooks/class-hook-page-install.php +3 -8
  6. languages/related-posts-for-wp-bg_bg.mo +0 -0
  7. languages/related-posts-for-wp-bg_bg.po +0 -531
  8. languages/related-posts-for-wp-de_DE.mo +0 -0
  9. languages/{related-posts-for-wp-de_de.po → related-posts-for-wp-de_DE.po} +130 -99
  10. languages/related-posts-for-wp-de_de.mo +0 -0
  11. languages/related-posts-for-wp-en_en.mo +0 -0
  12. languages/related-posts-for-wp-en_en.po +0 -530
  13. languages/related-posts-for-wp-es_es.mo +0 -0
  14. languages/related-posts-for-wp-es_es.po +0 -531
  15. languages/related-posts-for-wp-fr_FR.mo +0 -0
  16. languages/{related-posts-for-wp-fr_fr.po → related-posts-for-wp-fr_FR.po} +124 -93
  17. languages/related-posts-for-wp-fr_fr.mo +0 -0
  18. languages/related-posts-for-wp-it_IT.mo +0 -0
  19. languages/{related-posts-for-wp-it_it.po → related-posts-for-wp-it_IT.po} +145 -114
  20. languages/related-posts-for-wp-it_it.mo +0 -0
  21. languages/related-posts-for-wp-nl_NL.mo +0 -0
  22. languages/related-posts-for-wp-nl_NL.po +135 -105
  23. languages/related-posts-for-wp-no_no.mo +0 -0
  24. languages/related-posts-for-wp-no_no.po +0 -531
  25. languages/related-posts-for-wp-pt_BR.mo +0 -0
  26. languages/{related-posts-for-wp-pt_pt.po → related-posts-for-wp-pt_BR.po} +144 -114
  27. languages/related-posts-for-wp-pt_PT.mo +0 -0
  28. languages/related-posts-for-wp-pt_PT.po +564 -0
  29. languages/related-posts-for-wp-pt_pt.mo +0 -0
  30. languages/related-posts-for-wp-ru_ru.mo +0 -0
  31. languages/related-posts-for-wp-sr_RS.mo +0 -0
  32. languages/{related-posts-for-wp-sr_sr.po → related-posts-for-wp-sr_RS.po} +128 -97
  33. languages/related-posts-for-wp-sr_sr.mo +0 -0
  34. languages/related-posts-for-wp-sv_SE.mo +0 -0
  35. languages/{related-posts-for-wp-sv_sv.po → related-posts-for-wp-sv_SE.po} +128 -97
  36. languages/related-posts-for-wp-sv_sv.mo +0 -0
  37. languages/related-posts-for-wp-uk_UA.mo +0 -0
  38. languages/{related-posts-for-wp-ru_ru.po → related-posts-for-wp-uk_UA.po} +128 -98
  39. readme.txt +8 -2
  40. related-posts-for-wp.php +1 -1
classes/class-constants.php CHANGED
@@ -15,7 +15,6 @@ abstract class RP4WP_Constants {
15
  const PM_CHILD = 'rp4wp_child';
16
 
17
  // Post meta
18
- const PM_CACHED = 'rp4wp_cached'; // Posts that words are saved of
19
  const PM_POST_AUTO_LINKED = 'rp4wp_auto_linked'; // Posts that have automatically linked posts
20
 
21
  // Options
15
  const PM_CHILD = 'rp4wp_child';
16
 
17
  // Post meta
 
18
  const PM_POST_AUTO_LINKED = 'rp4wp_auto_linked'; // Posts that have automatically linked posts
19
 
20
  // Options
classes/class-post-link-manager.php CHANGED
@@ -160,10 +160,6 @@ class RP4WP_Post_Link_Manager {
160
  * @return array
161
  */
162
  public function get_children( $parent_id, $extra_args = array() ) {
163
- global $post;
164
-
165
- // Store current post
166
- $o_post = $post;
167
 
168
  // Do WP_Query
169
  $link_args = $this->create_link_args( RP4WP_Constants::PM_PARENT, $parent_id );
@@ -194,23 +190,20 @@ class RP4WP_Post_Link_Manager {
194
  $link_args = apply_filters( 'rp4wp_get_children_link_args', $link_args, $parent_id );
195
 
196
  // Create link query
197
- $link_query = new WP_Query( $link_args );
 
198
 
199
  // Store child ids
200
- // @todo remove the usage of get_the_id()
201
  $child_ids = array();
202
- while ( $link_query->have_posts() ) : $link_query->the_post();
203
- $child_ids[ get_the_id() ] = get_post_meta( get_the_id(), RP4WP_Constants::PM_CHILD, true );
204
- endwhile;
205
 
206
  // Get children with custom args
207
  if ( is_array( $extra_args ) && count( $extra_args ) > 0 ) {
208
 
209
  if ( ! isset( $extra_args['orderby'] ) ) {
210
- $this->temp_child_order = array();
211
- foreach ( $child_ids as $child_id ) {
212
- $this->temp_child_order[] = $child_id;
213
- }
214
  }
215
 
216
  // Get child again, but this time by $extra_args
@@ -235,12 +228,11 @@ class RP4WP_Post_Link_Manager {
235
  $child_args = apply_filters( 'rp4wp_get_children_child_args', $child_args, $parent_id );
236
 
237
  // Child Query
238
- $child_query = new WP_Query( $child_args );
239
-
240
- while ( $child_query->have_posts() ) : $child_query->the_post();
241
- // Add post to correct original sort key
242
- $children[ array_search( $child_query->post->ID, $child_ids ) ] = $child_query->post;
243
- endwhile;
244
 
245
  // Fix sorting
246
  if ( ! isset( $extra_args['orderby'] ) ) {
@@ -250,18 +242,9 @@ class RP4WP_Post_Link_Manager {
250
  }
251
  } else {
252
  // No custom arguments found, get all objects of stored ID's
253
- $children = array();
254
- foreach ( $child_ids as $link_id => $child_id ) {
255
- $children[ $link_id ] = get_post( $child_id );
256
- }
257
  }
258
 
259
- // Reset global post variables
260
- wp_reset_postdata();
261
-
262
- // Restoring post
263
- $post = $o_post;
264
-
265
  // Return children
266
  return $children;
267
  }
@@ -286,7 +269,8 @@ class RP4WP_Post_Link_Manager {
286
  * @param $post_id
287
  */
288
  public function delete_links_related_to( $post_id ) {
289
- $involved_query = new WP_Query( array(
 
290
  'post_type' => RP4WP_Constants::LINK_PT,
291
  'posts_per_page' => - 1,
292
  'meta_query' => array(
@@ -303,9 +287,10 @@ class RP4WP_Post_Link_Manager {
303
  )
304
  )
305
  ) );
306
- while ( $involved_query->have_posts() ) : $involved_query->the_post();
307
- wp_delete_post( $involved_query->post->ID, true );
308
- endwhile;
 
309
  }
310
 
311
  /**
160
  * @return array
161
  */
162
  public function get_children( $parent_id, $extra_args = array() ) {
 
 
 
 
163
 
164
  // Do WP_Query
165
  $link_args = $this->create_link_args( RP4WP_Constants::PM_PARENT, $parent_id );
190
  $link_args = apply_filters( 'rp4wp_get_children_link_args', $link_args, $parent_id );
191
 
192
  // Create link query
193
+ $wp_query = new WP_Query();
194
+ $posts = $wp_query->query( $link_args );
195
 
196
  // Store child ids
 
197
  $child_ids = array();
198
+ foreach( $posts as $post ) {
199
+ $child_ids[ $post->ID ] = get_post_meta( $post->ID, RP4WP_Constants::PM_CHILD, true );
200
+ }
201
 
202
  // Get children with custom args
203
  if ( is_array( $extra_args ) && count( $extra_args ) > 0 ) {
204
 
205
  if ( ! isset( $extra_args['orderby'] ) ) {
206
+ $this->temp_child_order = array_values( $child_ids );
 
 
 
207
  }
208
 
209
  // Get child again, but this time by $extra_args
228
  $child_args = apply_filters( 'rp4wp_get_children_child_args', $child_args, $parent_id );
229
 
230
  // Child Query
231
+ $wp_query = new WP_Query;
232
+ $posts = $wp_query->query( $child_args );
233
+ foreach( $posts as $post ) {
234
+ $children[ $post->ID ] = $post;
235
+ }
 
236
 
237
  // Fix sorting
238
  if ( ! isset( $extra_args['orderby'] ) ) {
242
  }
243
  } else {
244
  // No custom arguments found, get all objects of stored ID's
245
+ $children = array_map( 'get_post', $child_ids );
 
 
 
246
  }
247
 
 
 
 
 
 
 
248
  // Return children
249
  return $children;
250
  }
269
  * @param $post_id
270
  */
271
  public function delete_links_related_to( $post_id ) {
272
+ $involved_query = new WP_Query();
273
+ $posts = $involved_query->query( array(
274
  'post_type' => RP4WP_Constants::LINK_PT,
275
  'posts_per_page' => - 1,
276
  'meta_query' => array(
287
  )
288
  )
289
  ) );
290
+
291
+ foreach( $posts as $post ) {
292
+ wp_delete_post( $post->ID, true );
293
+ }
294
  }
295
 
296
  /**
classes/class-related-word-manager.php CHANGED
@@ -119,7 +119,7 @@ class RP4WP_Related_Word_Manager {
119
  $linked_words = array();
120
 
121
  // Find all links in the content
122
- if ( true == preg_match_all( '`<a[^>]*href="([^"]+)">[^<]*</a>`si', $content, $matches ) ) {
123
  if ( count( $matches[1] ) > 0 ) {
124
 
125
  // Loop
@@ -137,8 +137,12 @@ class RP4WP_Related_Word_Manager {
137
 
138
  // Check if we found a linked post
139
  if ( $link_post != null ) {
 
 
 
 
140
  // Get words of title
141
- $title_words = explode( ' ', $link_post->post_title );
142
 
143
  // Check, Loop
144
  if ( is_array( $title_words ) && count( $title_words ) > 0 ) {
@@ -161,7 +165,7 @@ class RP4WP_Related_Word_Manager {
161
  $content = str_ireplace( '<!--more-->', '', $content );
162
 
163
  // Remove everything but letters and numbers
164
- // $content = preg_replace( '/[^a-z0-9]+/i', ' ', $content );
165
 
166
  // UTF8 fix content
167
  $content = $this->convert_characters( $content );
@@ -179,6 +183,8 @@ class RP4WP_Related_Word_Manager {
179
  /**
180
  * Add words from an array to the "base" words array, multiplied by their weight
181
  *
 
 
182
  * @param array $base_words
183
  * @param array $words
184
  * @param int $weight
@@ -190,7 +196,6 @@ class RP4WP_Related_Word_Manager {
190
  // Check if weight > 0 and if $words is array
191
  if ( $weight > 0 && is_array( $words ) ) {
192
  foreach ( $words as $word ) {
193
- $word = $this->convert_characters( $word );
194
  $word_multiplied_by_weight = array_fill( 0, $weight, $word );
195
  $base_words = array_merge( $base_words, $word_multiplied_by_weight );
196
  }
@@ -215,7 +220,7 @@ class RP4WP_Related_Word_Manager {
215
 
216
  // Replace all 'special characters' with normal ones
217
  if ( strpos( $string = htmlentities( $string, ENT_QUOTES, 'UTF-8' ), '&' ) !== false ) {
218
- $string = html_entity_decode( preg_replace( '~&([a-z]{1,2})(?:acute|cedil|circ|grave|lig|orn|ring|slash|tilde|uml);~i', '$1', $string ), ENT_QUOTES, 'UTF-8' );
219
  }
220
 
221
 
@@ -244,7 +249,8 @@ class RP4WP_Related_Word_Manager {
244
  $raw_words = $this->get_content_words( $post );
245
 
246
  // Get words from title
247
- $title_words = explode( ' ', $post->post_title );
 
248
  $raw_words = $this->add_words_from_array( $raw_words, $title_words, $title_weight );
249
 
250
  // Get tags and add them to list
@@ -252,6 +258,7 @@ class RP4WP_Related_Word_Manager {
252
 
253
  if ( is_array( $tags ) && count( $tags ) > 0 ) {
254
  foreach ( $tags as $tag ) {
 
255
  $tag_words = explode( ' ', $tag );
256
  $raw_words = $this->add_words_from_array( $raw_words, $tag_words, $tag_weight );
257
  }
@@ -261,6 +268,7 @@ class RP4WP_Related_Word_Manager {
261
  $categories = wp_get_post_categories( $post->ID, array( 'fields' => 'names' ) );
262
  if ( is_array( $categories ) && count( $categories ) > 0 ) {
263
  foreach ( $categories as $category ) {
 
264
  $cat_words = explode( ' ', $category );
265
  $raw_words = $this->add_words_from_array( $raw_words, $cat_words, $cat_weight );
266
  }
@@ -278,7 +286,7 @@ class RP4WP_Related_Word_Manager {
278
  // Trim word
279
  $word = strtolower( trim( $word ) );
280
 
281
- // Only use words longer than 1 charecter
282
  if ( strlen( $word ) < 2 ) {
283
  continue;
284
  }
@@ -333,33 +341,27 @@ class RP4WP_Related_Word_Manager {
333
  // Delete all currents words of post
334
  $this->delete_words( $post_id );
335
 
336
- // Loop words
337
- foreach ( $words as $word => $amount ) {
338
-
339
- // Insert word row
340
- $wpdb->insert(
341
- self::get_database_table(),
342
- array(
343
- 'post_id' => $post_id,
344
- 'word' => $word,
345
- 'weight' => $amount,
346
- 'post_type' => 'post'
347
- ),
348
- array(
349
- '%d',
350
- '%s',
351
- '%f',
352
- '%s',
353
- )
354
- );
355
 
 
 
 
 
 
 
356
  }
357
 
358
- }
359
-
360
- // Update this post as cached
361
- update_post_meta( $post_id, RP4WP_Constants::PM_CACHED, 1 );
362
 
 
 
 
 
363
  }
364
 
365
  /**
@@ -369,23 +371,23 @@ class RP4WP_Related_Word_Manager {
369
  *
370
  * @return array
371
  */
372
- public function get_uncached_post_ids( $limit = - 1 ) {
373
-
374
- // Get Posts without 'cached' PM
375
- return get_posts( array(
376
- 'fields' => 'ids',
377
- 'post_type' => 'post',
378
- 'posts_per_page' => $limit,
379
- 'post_status' => 'publish',
380
- 'meta_query' => array(
381
- array(
382
- 'key' => RP4WP_Constants::PM_CACHED,
383
- 'compare' => 'NOT EXISTS',
384
- 'value' => ''
385
- ),
386
- )
387
- ) );
388
 
 
 
 
 
 
 
 
 
389
  }
390
 
391
  /**
@@ -398,14 +400,16 @@ class RP4WP_Related_Word_Manager {
398
  */
399
  public function get_uncached_post_count() {
400
  global $wpdb;
 
401
 
402
- $post_count = $wpdb->get_var( "SELECT COUNT(P.ID) FROM " . $wpdb->posts . " P LEFT JOIN ".$wpdb->postmeta." PM ON (P.ID = PM.post_id AND PM.meta_key = '" . RP4WP_Constants::PM_CACHED . "') WHERE 1=1 AND P.post_type = 'post' AND P.post_status = 'publish' AND PM.post_id IS NULL GROUP BY P.post_status" );
 
 
403
 
404
- if ( ! is_numeric( $post_count ) ) {
405
- $post_count = 0;
406
- }
407
 
408
- return $post_count;
409
  }
410
 
411
  /**
119
  $linked_words = array();
120
 
121
  // Find all links in the content
122
+ if ( true == preg_match_all( '`<a[^>]*href="([^"]+)">[^<]*</a>`iS', $content, $matches ) ) {
123
  if ( count( $matches[1] ) > 0 ) {
124
 
125
  // Loop
137
 
138
  // Check if we found a linked post
139
  if ( $link_post != null ) {
140
+
141
+ // convert characters in title
142
+ $post_title = $this->convert_characters( $link_post->post_title );
143
+
144
  // Get words of title
145
+ $title_words = explode( ' ', $post_title );
146
 
147
  // Check, Loop
148
  if ( is_array( $title_words ) && count( $title_words ) > 0 ) {
165
  $content = str_ireplace( '<!--more-->', '', $content );
166
 
167
  // Remove everything but letters and numbers
168
+ $content = preg_replace( '/[^a-z0-9]+/i', ' ', $content );
169
 
170
  // UTF8 fix content
171
  $content = $this->convert_characters( $content );
183
  /**
184
  * Add words from an array to the "base" words array, multiplied by their weight
185
  *
186
+ * Note: Make sure `$words` is UTF-8 encoded at this point.
187
+ *
188
  * @param array $base_words
189
  * @param array $words
190
  * @param int $weight
196
  // Check if weight > 0 and if $words is array
197
  if ( $weight > 0 && is_array( $words ) ) {
198
  foreach ( $words as $word ) {
 
199
  $word_multiplied_by_weight = array_fill( 0, $weight, $word );
200
  $base_words = array_merge( $base_words, $word_multiplied_by_weight );
201
  }
220
 
221
  // Replace all 'special characters' with normal ones
222
  if ( strpos( $string = htmlentities( $string, ENT_QUOTES, 'UTF-8' ), '&' ) !== false ) {
223
+ $string = html_entity_decode( preg_replace( '~&([a-z]{1,2})(?:acute|cedil|circ|grave|lig|orn|ring|slash|tilde|uml);~iS', '$1', $string ), ENT_QUOTES, 'UTF-8' );
224
  }
225
 
226
 
249
  $raw_words = $this->get_content_words( $post );
250
 
251
  // Get words from title
252
+ $post_title = $this->convert_characters( $post->post_title );
253
+ $title_words = explode( ' ', $post_title );
254
  $raw_words = $this->add_words_from_array( $raw_words, $title_words, $title_weight );
255
 
256
  // Get tags and add them to list
258
 
259
  if ( is_array( $tags ) && count( $tags ) > 0 ) {
260
  foreach ( $tags as $tag ) {
261
+ $tag = $this->convert_characters( $tag );
262
  $tag_words = explode( ' ', $tag );
263
  $raw_words = $this->add_words_from_array( $raw_words, $tag_words, $tag_weight );
264
  }
268
  $categories = wp_get_post_categories( $post->ID, array( 'fields' => 'names' ) );
269
  if ( is_array( $categories ) && count( $categories ) > 0 ) {
270
  foreach ( $categories as $category ) {
271
+ $category = $this->convert_characters( $category );
272
  $cat_words = explode( ' ', $category );
273
  $raw_words = $this->add_words_from_array( $raw_words, $cat_words, $cat_weight );
274
  }
286
  // Trim word
287
  $word = strtolower( trim( $word ) );
288
 
289
+ // Only use words longer than 1 character
290
  if ( strlen( $word ) < 2 ) {
291
  continue;
292
  }
341
  // Delete all currents words of post
342
  $this->delete_words( $post_id );
343
 
344
+ // build SQL string for batch INSERT
345
+ $sql = 'INSERT INTO '. self::get_database_table() . ' (post_id, word, weight, post_type )';
346
+ $sql .= ' VALUES';
347
+ $params = array( );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
 
349
+ // add params for each VALUES pair
350
+ foreach ( $words as $word => $amount ) {
351
+ $params[] = $post_id;
352
+ $params[] = $word;
353
+ $params[] = $amount;
354
+ $params[] = 'post';
355
  }
356
 
357
+ // add VALUES pairs
358
+ $sql .= ' ' . str_repeat( '( %d, %s, %f, %s ),', count( $words ) );
359
+ $sql = rtrim( $sql, ',');
 
360
 
361
+ // prep & execute!
362
+ $query = $wpdb->prepare( $sql, $params );
363
+ $wpdb->query( $query );
364
+ }
365
  }
366
 
367
  /**
371
  *
372
  * @return array
373
  */
374
+ public function get_uncached_post_ids( $limit = -1 ) {
375
+
376
+ global $wpdb;
377
+ $words_table = self::get_database_table();
378
+
379
+ $sql = "SELECT p.ID FROM {$wpdb->posts} p";
380
+ $sql .= " LEFT JOIN {$words_table} w ON w.post_id = p.ID";
381
+ $sql .= " WHERE p.post_type = 'post' AND p.post_status = 'publish'";
 
 
 
 
 
 
 
 
382
 
383
+ // limit result to post rows WITHOUT joined rows
384
+ $sql .= ' AND w.post_id IS NULL';
385
+
386
+ if( $limit > 0 ) {
387
+ $sql .= sprintf( ' LIMIT %d', $limit );
388
+ }
389
+
390
+ return $wpdb->get_col( $sql );
391
  }
392
 
393
  /**
400
  */
401
  public function get_uncached_post_count() {
402
  global $wpdb;
403
+ $words_table = self::get_database_table();
404
 
405
+ $sql = "SELECT COUNT(p.ID) FROM {$wpdb->posts} p";
406
+ $sql .= " LEFT JOIN {$words_table} w ON w.post_id = p.ID";
407
+ $sql .= " WHERE p.post_type = 'post' AND p.post_status = 'publish'";
408
 
409
+ // limit result to post rows WITHOUT joined rows
410
+ $sql .= ' AND w.post_id IS NULL';
 
411
 
412
+ return $wpdb->get_var( $sql );
413
  }
414
 
415
  /**
classes/class-rp4wp.php CHANGED
@@ -8,7 +8,7 @@ class RP4WP {
8
 
9
  private static $instance = null;
10
 
11
- const VERSION = '1.9.1';
12
 
13
  /**
14
  * @var RP4WP_Settings
8
 
9
  private static $instance = null;
10
 
11
+ const VERSION = '1.9.2';
12
 
13
  /**
14
  * @var RP4WP_Settings
classes/hooks/class-hook-page-install.php CHANGED
@@ -171,14 +171,9 @@ class RP4WP_Hook_Page_Install extends RP4WP_Hook {
171
  <p style="font-weight: bold;"><?php _e( 'Do NOT close this window if you click the "Link now" button, wait for this process to finish and this wizard to take you to the next step.', 'related-posts-for-wp' ); ?></p>
172
  <br class="clear"/>
173
  <p class="rp4wp-install-link-box">
174
- <label
175
- for="rp4wp_related_posts_amount"><?php _e( 'Amount of related posts per post:', 'related-posts-for-wp' ); ?></label><input
176
- class="form-input-tip" type="text" id="rp4wp_related_posts_amount"
177
- value="<?php echo RP4WP()->settings->get_option( 'automatic_linking_post_amount' ); ?>"/>
178
- <a href="javascript:;" class="button button-primary button-large rp4wp-link-now-btn"
179
- id="rp4wp-link-now"><?php _e( 'Link now', 'related-posts-for-wp' ); ?></a>
180
- <a href="<?php echo admin_url(); ?>?page=rp4wp_install&step=3"
181
- class="button"><?php _e( 'Skip linking', 'related-posts-for-wp' ); ?></a>
182
  </p>
183
  <br class="clear"/>
184
 
171
  <p style="font-weight: bold;"><?php _e( 'Do NOT close this window if you click the "Link now" button, wait for this process to finish and this wizard to take you to the next step.', 'related-posts-for-wp' ); ?></p>
172
  <br class="clear"/>
173
  <p class="rp4wp-install-link-box">
174
+ <label for="rp4wp_related_posts_amount"><?php _e( 'Amount of related posts per post:', 'related-posts-for-wp' ); ?></label><input class="form-input-tip" type="text" id="rp4wp_related_posts_amount" value="<?php echo RP4WP()->settings->get_option( 'automatic_linking_post_amount' ); ?>"/>
175
+ <a href="javascript:;" class="button button-primary button-large rp4wp-link-now-btn" id="rp4wp-link-now"><?php _e( 'Link now', 'related-posts-for-wp' ); ?></a>
176
+ <a href="<?php echo admin_url( sprintf( '?page=rp4wp_install&step=3&rp4wp_nonce=%s', wp_create_nonce( RP4WP_Constants::NONCE_INSTALL ) ) ); ?>" class="button"><?php _e( 'Skip linking', 'related-posts-for-wp' ); ?></a>
 
 
 
 
 
177
  </p>
178
  <br class="clear"/>
179
 
languages/related-posts-for-wp-bg_bg.mo DELETED
Binary file
languages/related-posts-for-wp-bg_bg.po DELETED
@@ -1,531 +0,0 @@
1
- # Copyright (C) 2014 Barry Kooij
2
- # This file is distributed under the GPL v3.
3
- # Translators:
4
- # Barry Kooij <mail@barrykooij.nl>, 2014
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: Related Posts for WordPress\n"
8
- "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
9
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
10
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
11
- "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
12
- "Language-Team: Bulgarian (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/bg/)\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "Language: bg\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: grunt-wp-i18n 0.4.8\n"
19
-
20
- #: classes/class-is-installing-notice.php:74
21
- msgid ""
22
- "Woah! Looks like we weren't able to finish your Related Posts for WordPress "
23
- "installation wizard!"
24
- msgstr ""
25
-
26
- #: classes/class-is-installing-notice.php:76
27
- msgid "%sResume the installation wizard%s or %sdismiss this notice%s"
28
- msgstr ""
29
-
30
- #: classes/class-javascript-strings.php:14
31
- msgid "Are you sure you want to delete this related post?"
32
- msgstr ""
33
-
34
- #: classes/class-link-related-table.php:45
35
- #: classes/hooks/class-hook-settings-page.php:20
36
- #: classes/meta-boxes/class-meta-box-manage.php:37
37
- #: classes/settings/class-settings-general.php:52
38
- msgid "Related Posts"
39
- msgstr ""
40
-
41
- #: classes/class-link-related-table.php:46
42
- msgid "All Posts"
43
- msgstr ""
44
-
45
- #: classes/class-link-related-table.php:95
46
- #: classes/settings/class-settings-weights.php:29
47
- msgid "Title"
48
- msgstr ""
49
-
50
- #: classes/class-link-related-table.php:96
51
- #: classes/hooks/class-hook-page-install.php:220
52
- #: classes/hooks/class-hook-settings-page.php:152
53
- msgid "Post Type"
54
- msgstr ""
55
-
56
- #: classes/class-link-related-table.php:235
57
- msgid "Link Post"
58
- msgstr ""
59
-
60
- #: classes/class-link-related-table.php:243
61
- msgid "View Post"
62
- msgstr ""
63
-
64
- #: classes/class-link-related-table.php:274
65
- msgid "Link Posts"
66
- msgstr ""
67
-
68
- #: classes/class-post-type-manager.php:21
69
- #: classes/hooks/class-hook-link-related-screen.php:138
70
- msgid "Posts"
71
- msgstr ""
72
-
73
- #: classes/class-post-type-manager.php:22
74
- msgid "Pages"
75
- msgstr ""
76
-
77
- #: classes/class-related-posts-widget.php:13
78
- msgid "Related Posts for WordPress"
79
- msgstr ""
80
-
81
- #: classes/class-related-posts-widget.php:14
82
- msgid "Display related posts."
83
- msgstr ""
84
-
85
- #: classes/filters/class-filter-plugin-links.php:29
86
- msgid "Settings"
87
- msgstr ""
88
-
89
- #: classes/hooks/class-hook-link-related-screen.php:139
90
- msgid "Cancel linking"
91
- msgstr ""
92
-
93
- #: classes/hooks/class-hook-link-related-screen.php:155
94
- msgid "Search"
95
- msgstr ""
96
-
97
- #: classes/hooks/class-hook-page-install.php:109
98
- msgid "Welcome"
99
- msgstr ""
100
-
101
- #: classes/hooks/class-hook-page-install.php:110
102
- msgid "Caching Posts"
103
- msgstr ""
104
-
105
- #: classes/hooks/class-hook-page-install.php:111
106
- msgid "Linking Posts"
107
- msgstr ""
108
-
109
- #: classes/hooks/class-hook-page-install.php:112
110
- msgid "Finished"
111
- msgstr ""
112
-
113
- #: classes/hooks/class-hook-page-install.php:123
114
- msgid ""
115
- "Missing post type paramater, please report this incident via %sour "
116
- "website%s."
117
- msgstr ""
118
-
119
- #: classes/hooks/class-hook-page-install.php:154
120
- msgid "Installation"
121
- msgstr ""
122
-
123
- #: classes/hooks/class-hook-page-install.php:201
124
- #: classes/hooks/class-hook-page-install.php:284
125
- msgid "Thank you for choosing Related Posts for WordPress!"
126
- msgstr ""
127
-
128
- #: classes/hooks/class-hook-page-install.php:202
129
- msgid ""
130
- "Below you'll find your post types available for installation, by installing "
131
- "a post type we'll set up a cache and offer you the ability to automatic link"
132
- " (custom) posts. To install a post type, simply click the 'Install Post "
133
- "Type' button."
134
- msgstr ""
135
-
136
- #: classes/hooks/class-hook-page-install.php:221
137
- msgid "Related to Post Types"
138
- msgstr ""
139
-
140
- #: classes/hooks/class-hook-page-install.php:256
141
- msgid "Edit"
142
- msgstr ""
143
-
144
- #: classes/hooks/class-hook-page-install.php:285
145
- msgid ""
146
- "Before you can start using Related Posts for WordPress we need to cache your"
147
- " current posts."
148
- msgstr ""
149
-
150
- #: classes/hooks/class-hook-page-install.php:286
151
- msgid ""
152
- "This is a one time process which might take some time now, depending on the "
153
- "amount of posts you have, but will ensure your website's performance when "
154
- "using the plugin."
155
- msgstr ""
156
-
157
- #: classes/hooks/class-hook-page-install.php:288
158
- msgid ""
159
- "Do NOT close this window, wait for this process to finish and this wizard to"
160
- " take you to the next step."
161
- msgstr ""
162
-
163
- #: classes/hooks/class-hook-page-install.php:306
164
- msgid "Great! All your posts were successfully cached!"
165
- msgstr ""
166
-
167
- #: classes/hooks/class-hook-page-install.php:307
168
- msgid ""
169
- "You can let me link your posts, based on what I think is related, to each "
170
- "other. And don't worry, if I made a mistake at one of your posts you can "
171
- "easily correct this by editing it manually!"
172
- msgstr ""
173
-
174
- #: classes/hooks/class-hook-page-install.php:308
175
- msgid ""
176
- "Want me to start linking posts to each other? Fill in the amount of related "
177
- "posts each post should have and click on the \"Link now\" button. Rather "
178
- "link your posts manually? Click \"Skip linking\"."
179
- msgstr ""
180
-
181
- #: classes/hooks/class-hook-page-install.php:309
182
- msgid ""
183
- "Do NOT close this window if you click the \"Link now\" button, wait for this"
184
- " process to finish and this wizard to take you to the next step."
185
- msgstr ""
186
-
187
- #: classes/hooks/class-hook-page-install.php:313
188
- msgid "Amount of related posts per post:"
189
- msgstr ""
190
-
191
- #: classes/hooks/class-hook-page-install.php:317
192
- msgid "Link now"
193
- msgstr ""
194
-
195
- #: classes/hooks/class-hook-page-install.php:319
196
- msgid "Skip linking"
197
- msgstr ""
198
-
199
- #: classes/hooks/class-hook-page-install.php:327
200
- msgid "That's it, you're good to go!"
201
- msgstr ""
202
-
203
- #: classes/hooks/class-hook-page-install.php:328
204
- msgid ""
205
- "Thanks again for using Related Posts for WordPress and if you have any "
206
- "questions be sure to ask them at the %sWordPress.org forums.%s"
207
- msgstr ""
208
-
209
- #: classes/hooks/class-hook-page-install.php:331
210
- msgid "Click here to return to step 1"
211
- msgstr ""
212
-
213
- #: classes/hooks/class-hook-page-install.php:337
214
- msgid "Click here to go to the settings page"
215
- msgstr ""
216
-
217
- #: classes/hooks/class-hook-settings-page.php:57
218
- msgid "Plugin version"
219
- msgstr ""
220
-
221
- #: classes/hooks/class-hook-settings-page.php:63
222
- msgid ""
223
- "Got a question? Simply send us an email at "
224
- "%ssupport@relatedpostsforwp.com%s. Please note that support requires an "
225
- "active license."
226
- msgstr ""
227
-
228
- #: classes/hooks/class-hook-settings-page.php:67
229
- msgid "More information"
230
- msgstr ""
231
-
232
- #: classes/hooks/class-hook-settings-page.php:69
233
- msgid "<a href='%s'>Documentation</a>"
234
- msgstr ""
235
-
236
- #: classes/hooks/class-hook-settings-page.php:71
237
- msgid "<a href='%s'>Changelog</a>"
238
- msgstr ""
239
-
240
- #: classes/hooks/class-hook-settings-page.php:73
241
- msgid "<a href='%s'>Give us a review</a>"
242
- msgstr ""
243
-
244
- #: classes/hooks/class-hook-settings-page.php:78
245
- msgid "About the developer"
246
- msgstr ""
247
-
248
- #: classes/hooks/class-hook-settings-page.php:80
249
- msgid ""
250
- "Barry is a WordPress developer that works on WooCommerce and is the author "
251
- "of various WordPress plugins that include Related Posts for WordPress, Post "
252
- "Connector and What The File."
253
- msgstr ""
254
-
255
- #: classes/hooks/class-hook-settings-page.php:82
256
- msgid ""
257
- "Barry likes contributing to open source projects and visiting WordCamps and "
258
- "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
259
- msgstr ""
260
-
261
- #: classes/hooks/class-hook-settings-page.php:84
262
- msgid "%sFollow Barry on Twitter%s."
263
- msgstr ""
264
-
265
- #: classes/hooks/class-hook-settings-page.php:110
266
- msgid "General"
267
- msgstr ""
268
-
269
- #: classes/hooks/class-hook-settings-page.php:130
270
- msgid "Installer"
271
- msgstr ""
272
-
273
- #: classes/meta-boxes/class-meta-box-manage.php:80
274
- msgid "Add Related Posts"
275
- msgstr ""
276
-
277
- #: classes/meta-boxes/class-meta-box-manage.php:103
278
- #: classes/meta-boxes/class-meta-box-manage.php:104
279
- msgid "Edit Post"
280
- msgstr ""
281
-
282
- #: classes/meta-boxes/class-meta-box-manage.php:106
283
- #: classes/meta-boxes/class-meta-box-manage.php:107
284
- msgid "Unlink Related Post"
285
- msgstr ""
286
-
287
- #: classes/meta-boxes/class-meta-box-manage.php:120
288
- msgid "No related posts found."
289
- msgstr ""
290
-
291
- #: classes/settings/class-settings-general.php:18
292
- msgid "General settings for %s"
293
- msgstr ""
294
-
295
- #: classes/settings/class-settings-general.php:24
296
- msgid "Automatic %ss linking"
297
- msgstr ""
298
-
299
- #: classes/settings/class-settings-general.php:25
300
- msgid ""
301
- "The following options affect how related posts are automatically linked for "
302
- "%ss."
303
- msgstr ""
304
-
305
- #: classes/settings/class-settings-general.php:29
306
- msgid "Enable"
307
- msgstr ""
308
-
309
- #: classes/settings/class-settings-general.php:30
310
- msgid "Checking this will enable automatically linking posts to new %ss"
311
- msgstr ""
312
-
313
- #: classes/settings/class-settings-general.php:36
314
- msgid "Amount of Posts"
315
- msgstr ""
316
-
317
- #: classes/settings/class-settings-general.php:37
318
- msgid "The amount of automatically linked %ss"
319
- msgstr ""
320
-
321
- #: classes/settings/class-settings-general.php:44
322
- msgid "Frontend Settings"
323
- msgstr ""
324
-
325
- #: classes/settings/class-settings-general.php:45
326
- msgid ""
327
- "The following options affect how related %ss are displayed on the frontend."
328
- msgstr ""
329
-
330
- #: classes/settings/class-settings-general.php:49
331
- msgid "Heading text"
332
- msgstr ""
333
-
334
- #: classes/settings/class-settings-general.php:50
335
- msgid ""
336
- "The text that is displayed above the related %ss. To disable, leave field "
337
- "empty."
338
- msgstr ""
339
-
340
- #: classes/settings/class-settings-general.php:56
341
- msgid "Excerpt length"
342
- msgstr ""
343
-
344
- #: classes/settings/class-settings-general.php:57
345
- msgid ""
346
- "The amount of words to be displayed below the title on website. To disable, "
347
- "set value to 0."
348
- msgstr ""
349
-
350
- #: classes/settings/class-settings-general.php:63
351
- msgid "Display Image"
352
- msgstr ""
353
-
354
- #: classes/settings/class-settings-general.php:64
355
- msgid "Checking this will enable displaying featured images of related %ss."
356
- msgstr ""
357
-
358
- #: classes/settings/class-settings-license.php:18
359
- msgid "License"
360
- msgstr ""
361
-
362
- #: classes/settings/class-settings-license.php:29
363
- msgid "License Status"
364
- msgstr ""
365
-
366
- #: classes/settings/class-settings-license.php:36
367
- msgid "License Key"
368
- msgstr ""
369
-
370
- #: classes/settings/class-settings-license.php:37
371
- msgid ""
372
- "Your license key. You can find your license key in your %sMy Account%s page."
373
- msgstr ""
374
-
375
- #: classes/settings/class-settings-license.php:44
376
- msgid "Activation Email"
377
- msgstr ""
378
-
379
- #: classes/settings/class-settings-license.php:45
380
- msgid ""
381
- "Your activation email address. You can find your activation email address in"
382
- " your %sMy Account%s page."
383
- msgstr ""
384
-
385
- #: classes/settings/class-settings-misc.php:18
386
- msgid "Misc"
387
- msgstr ""
388
-
389
- #: classes/settings/class-settings-misc.php:24
390
- msgid "Miscellaneous Settings"
391
- msgstr ""
392
-
393
- #: classes/settings/class-settings-misc.php:25
394
- msgid "A shelter for options that just don't fit in."
395
- msgstr ""
396
-
397
- #: classes/settings/class-settings-misc.php:29
398
- msgid "Remove Data on Uninstall?"
399
- msgstr ""
400
-
401
- #: classes/settings/class-settings-misc.php:30
402
- msgid ""
403
- "Check this box if you would like to completely remove all of its data when "
404
- "the plugin is deleted."
405
- msgstr ""
406
-
407
- #: classes/settings/class-settings-page.php:450
408
- msgid "ACTIVATED"
409
- msgstr ""
410
-
411
- #: classes/settings/class-settings-page.php:452
412
- msgid "NOT ACTIVE"
413
- msgstr ""
414
-
415
- #: classes/settings/class-settings-themes.php:18
416
- msgid "Styling"
417
- msgstr ""
418
-
419
- #: classes/settings/class-settings-themes.php:31
420
- msgid "Styling settings"
421
- msgstr ""
422
-
423
- #: classes/settings/class-settings-themes.php:32
424
- msgid "Control how your related posts are displayed on your website."
425
- msgstr ""
426
-
427
- #: classes/settings/class-settings-themes.php:36
428
- msgid "Themes"
429
- msgstr ""
430
-
431
- #: classes/settings/class-settings-themes.php:37
432
- msgid ""
433
- "Select one of the CSS themes above to display your related posts the way you"
434
- " like to."
435
- msgstr ""
436
-
437
- #: classes/settings/class-settings-themes.php:43
438
- msgid "Custom CSS"
439
- msgstr ""
440
-
441
- #: classes/settings/class-settings-themes.php:44
442
- msgid ""
443
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
444
- "error here will break frontend display. To disable, leave field empty."
445
- msgstr ""
446
-
447
- #: classes/settings/class-settings-weights.php:18
448
- msgid "Weights"
449
- msgstr ""
450
-
451
- #: classes/settings/class-settings-weights.php:24
452
- msgid "Weight settings"
453
- msgstr ""
454
-
455
- #: classes/settings/class-settings-weights.php:25
456
- msgid ""
457
- "Easily adjust the weights by using the sliders below. Please note that you "
458
- "need to rerun the installer after changing weights."
459
- msgstr ""
460
-
461
- #: classes/settings/class-settings-weights.php:30
462
- msgid "The weight of the title."
463
- msgstr ""
464
-
465
- #: classes/settings/class-settings-weights.php:36
466
- msgid "Links"
467
- msgstr ""
468
-
469
- #: classes/settings/class-settings-weights.php:37
470
- msgid "The weight of the links found in the content."
471
- msgstr ""
472
-
473
- #: classes/settings/class-settings-weights.php:43
474
- msgid "Categories"
475
- msgstr ""
476
-
477
- #: classes/settings/class-settings-weights.php:44
478
- msgid "The weight of the categories."
479
- msgstr ""
480
-
481
- #: classes/settings/class-settings-weights.php:50
482
- msgid "Tags"
483
- msgstr ""
484
-
485
- #: classes/settings/class-settings-weights.php:51
486
- msgid "The weight of the tags."
487
- msgstr ""
488
-
489
- #: classes/settings/class-settings-weights.php:57
490
- msgid "Custom Taxonomies"
491
- msgstr ""
492
-
493
- #: classes/settings/class-settings-weights.php:58
494
- msgid "The weight of custom taxonomies."
495
- msgstr ""
496
-
497
- #: classes/themes/class-theme-column-one.php:13
498
- msgid "One related post item per row."
499
- msgstr ""
500
-
501
- #: classes/themes/class-theme-column-three.php:13
502
- msgid "Three related post items per row."
503
- msgstr ""
504
-
505
- #: classes/themes/class-theme-column-two.php:13
506
- msgid "Two related post items per row."
507
- msgstr ""
508
-
509
- #: includes/updater/class-rp4wp-updater.php:131
510
- msgid "Hide notice"
511
- msgstr ""
512
-
513
- #. Plugin Name of the plugin/theme
514
- msgid "Related Posts for WordPress Premium"
515
- msgstr "Related Posts for WordPress Premium"
516
-
517
- #. Plugin URI of the plugin/theme
518
- msgid "http://www.relatedpostsforwp.com/"
519
- msgstr "http://www.relatedpostsforwp.com/"
520
-
521
- #. Description of the plugin/theme
522
- msgid "The best way to display related posts in WordPress."
523
- msgstr ""
524
-
525
- #. Author of the plugin/theme
526
- msgid "Barry Kooij"
527
- msgstr "Barry Kooij"
528
-
529
- #. Author URI of the plugin/theme
530
- msgid "http://www.barrykooij.com/"
531
- msgstr "http://www.barrykooij.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/related-posts-for-wp-de_DE.mo ADDED
Binary file
languages/{related-posts-for-wp-de_de.po → related-posts-for-wp-de_DE.po} RENAMED
@@ -1,21 +1,21 @@
1
- # Copyright (C) 2014 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
- # JB, 2014
5
  # Barry Kooij <mail@barrykooij.nl>, 2014
 
6
  # Remy van Velthuijsen <remyvv@users.noreply.github.com>, 2014
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: Related Posts for WordPress\n"
10
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
11
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
12
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
13
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
14
- "Language-Team: German (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/de/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
- "Language: de\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
  "X-Generator: grunt-wp-i18n 0.4.8\n"
21
 
@@ -36,7 +36,7 @@ msgstr "Sind sie sicher das Sie diesen verwanten Beitrag löschen wollen?"
36
  #: classes/class-link-related-table.php:45
37
  #: classes/hooks/class-hook-settings-page.php:20
38
  #: classes/meta-boxes/class-meta-box-manage.php:37
39
- #: classes/settings/class-settings-general.php:52
40
  msgid "Related Posts"
41
  msgstr "Verwante Beiträge"
42
 
@@ -50,25 +50,25 @@ msgid "Title"
50
  msgstr "Titel"
51
 
52
  #: classes/class-link-related-table.php:96
53
- #: classes/hooks/class-hook-page-install.php:220
54
  #: classes/hooks/class-hook-settings-page.php:152
55
  msgid "Post Type"
56
  msgstr "Beitrags-Typ"
57
 
58
- #: classes/class-link-related-table.php:235
59
  msgid "Link Post"
60
  msgstr "Verknüpfe Beitrag"
61
 
62
- #: classes/class-link-related-table.php:243
63
  msgid "View Post"
64
  msgstr ""
65
 
66
- #: classes/class-link-related-table.php:274
67
  msgid "Link Posts"
68
  msgstr "Verknüpfe Beiträge"
69
 
70
  #: classes/class-post-type-manager.php:21
71
- #: classes/hooks/class-hook-link-related-screen.php:138
72
  msgid "Posts"
73
  msgstr "Beiträge"
74
 
@@ -88,46 +88,46 @@ msgstr "Zeige verwante Beiträge"
88
  msgid "Settings"
89
  msgstr "Einstellungen"
90
 
91
- #: classes/hooks/class-hook-link-related-screen.php:139
92
  msgid "Cancel linking"
93
  msgstr "Verknüpfen abbrechen"
94
 
95
- #: classes/hooks/class-hook-link-related-screen.php:155
96
  msgid "Search"
97
  msgstr "Suchen"
98
 
99
- #: classes/hooks/class-hook-page-install.php:109
100
  msgid "Welcome"
101
  msgstr "Willkommen"
102
 
103
- #: classes/hooks/class-hook-page-install.php:110
104
  msgid "Caching Posts"
105
  msgstr "Beiträge zwischenspeichern"
106
 
107
- #: classes/hooks/class-hook-page-install.php:111
108
  msgid "Linking Posts"
109
  msgstr "Beiträge verknüpfen"
110
 
111
- #: classes/hooks/class-hook-page-install.php:112
112
  msgid "Finished"
113
  msgstr "Fertig"
114
 
115
- #: classes/hooks/class-hook-page-install.php:123
116
  msgid ""
117
- "Missing post type paramater, please report this incident via %sour "
118
  "website%s."
119
- msgstr "Fehlender Beitrags-Typ Parameter, bitte melden Sie diesen Vorfall mittels %sunsere Webseite%s"
120
 
121
- #: classes/hooks/class-hook-page-install.php:154
122
  msgid "Installation"
123
  msgstr "Installation"
124
 
125
- #: classes/hooks/class-hook-page-install.php:201
126
- #: classes/hooks/class-hook-page-install.php:284
127
  msgid "Thank you for choosing Related Posts for WordPress!"
128
  msgstr "Vielen dank für ihre Wahl für Verwante Beiträge für WordPress"
129
 
130
- #: classes/hooks/class-hook-page-install.php:202
131
  msgid ""
132
  "Below you'll find your post types available for installation, by installing "
133
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -135,84 +135,96 @@ msgid ""
135
  "Type' button."
136
  msgstr "Nachfolgend finden Sie hier unter Ihre verfügbare Beitrags-Typen für die Installation. Durch einen Beitrags-Type zu installieren wirdt ein Zwischenspeicher eingerichtet und bieten wir Ihnen die Möglichkeit zum automatischen Verknüpfen von Beiträge. Um ein Beitrags-Typ zu installieren, drücken Sie auf 'Installiere Beitrags-Typ' "
137
 
138
- #: classes/hooks/class-hook-page-install.php:221
139
  msgid "Related to Post Types"
140
  msgstr ""
141
 
142
- #: classes/hooks/class-hook-page-install.php:256
143
  msgid "Edit"
144
  msgstr ""
145
 
146
- #: classes/hooks/class-hook-page-install.php:285
147
  msgid ""
148
  "Before you can start using Related Posts for WordPress we need to cache your"
149
  " current posts."
150
  msgstr "Befor Sie anfangen können mit Verwante Beiträge für WordPress müssen wir Ihre aktuellen Beiträge zwischenspeichern."
151
 
152
- #: classes/hooks/class-hook-page-install.php:286
153
  msgid ""
154
  "This is a one time process which might take some time now, depending on the "
155
  "amount of posts you have, but will ensure your website's performance when "
156
  "using the plugin."
157
  msgstr "Dies ist ein einmaliger Vorgang, der einige Zeit dauern kan, abhängig von der Menge der Beiträg, die Sie haben, aber notwendig ist um die Leistung Ihrer website zu gewährleisten wenn Sie diesen Plug-in benutzen."
158
 
159
- #: classes/hooks/class-hook-page-install.php:288
160
  msgid ""
161
  "Do NOT close this window, wait for this process to finish and this wizard to"
162
  " take you to the next step."
163
  msgstr "Schließen Sie dieses Fenster bitte NICHT, warten bis der Prozess beendet ist und der Installationsassistent wird Sie weiterleiten zum nächtsten Schritt."
164
 
165
- #: classes/hooks/class-hook-page-install.php:306
166
  msgid "Great! All your posts were successfully cached!"
167
  msgstr "Super! All Ihre Beiträge sind erfolgreich zwischengespeichert."
168
 
169
- #: classes/hooks/class-hook-page-install.php:307
170
  msgid ""
171
  "You can let me link your posts, based on what I think is related, to each "
172
  "other. And don't worry, if I made a mistake at one of your posts you can "
173
  "easily correct this by editing it manually!"
174
  msgstr "Sie können mich die Verknüpfungen legen lassen, basiert auf was ich denke das verwandt ist. Wenn ich einen Fehler mache können Sie ganz einfach korrigieren, durch den Beitrag selbst zu bearbeiten."
175
 
176
- #: classes/hooks/class-hook-page-install.php:308
177
  msgid ""
178
  "Want me to start linking posts to each other? Fill in the amount of related "
179
  "posts each post should have and click on the \"Link now\" button. Rather "
180
  "link your posts manually? Click \"Skip linking\"."
181
  msgstr "Möchten Sie dass ich anfang mit verknüpfen van Beiträgen? Füllen Sie die Menge der verwandten Beiträge jeder Beitrag haben sollte und klicken Sie auf den \"Verknüpfe jetzt\" Knopf. Lieber selbst deine Beiträge verknüpfen? Klick \"Überspringe Verknüpfen\"."
182
 
183
- #: classes/hooks/class-hook-page-install.php:309
184
  msgid ""
185
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
186
  " process to finish and this wizard to take you to the next step."
187
  msgstr "Schließen Sie dieses Fenster bitte NICHT, wenn Sie auf \"Verknüpfe jetzt\", warten bis der Prozess beendet ist und der Installationsassistent wird Sie weiterleiten zum nächtsten Schritt."
188
 
189
- #: classes/hooks/class-hook-page-install.php:313
190
- msgid "Amount of related posts per post:"
191
- msgstr "Menge der verwandten Beiträge pro Beitrag"
 
 
 
 
 
 
 
 
 
 
 
 
192
 
193
- #: classes/hooks/class-hook-page-install.php:317
194
  msgid "Link now"
195
  msgstr "Verknüpfe jetzt"
196
 
197
- #: classes/hooks/class-hook-page-install.php:319
198
  msgid "Skip linking"
199
  msgstr "Überspringe Verknüpfen"
200
 
201
- #: classes/hooks/class-hook-page-install.php:327
202
  msgid "That's it, you're good to go!"
203
  msgstr "Das wars, jetzt kann es los gehen!"
204
 
205
- #: classes/hooks/class-hook-page-install.php:328
206
  msgid ""
207
  "Thanks again for using Related Posts for WordPress and if you have any "
208
  "questions be sure to ask them at the %sWordPress.org forums.%s"
209
  msgstr "Nochmals vielen Dank für die Verwendung von Related Posts für Wordpress und wenn Sie irgendwelche Fragen haben, sollten Sie sie auf den %sWordPress.org Foren%s fragen."
210
 
211
- #: classes/hooks/class-hook-page-install.php:331
212
  msgid "Click here to return to step 1"
213
  msgstr "Drücken Sie hier um zurück zu Schritt 1 zu gehen"
214
 
215
- #: classes/hooks/class-hook-page-install.php:337
216
  msgid "Click here to go to the settings page"
217
  msgstr "Drücken Sie hier um zurück zu den Einstellungen zu gehen"
218
 
@@ -290,6 +302,49 @@ msgstr "Verknüpfung aufheben"
290
  msgid "No related posts found."
291
  msgstr "Keine verwante Beiträge gefunden."
292
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
  #: classes/settings/class-settings-general.php:18
294
  msgid "General settings for %s"
295
  msgstr "Allgemeine Einstellungen für %s"
@@ -320,43 +375,43 @@ msgstr "Menge der Beiträge"
320
  msgid "The amount of automatically linked %ss"
321
  msgstr "Die Menge der automatisch verknüpfte %s"
322
 
 
 
 
 
323
  #: classes/settings/class-settings-general.php:44
 
 
 
 
324
  msgid "Frontend Settings"
325
  msgstr "Frontend Einstellungen"
326
 
327
- #: classes/settings/class-settings-general.php:45
328
  msgid ""
329
  "The following options affect how related %ss are displayed on the frontend."
330
  msgstr "Die folgenden Optionen beeinflussen, wie verwandte %sen auf der Webseite gezeigt werden."
331
 
332
- #: classes/settings/class-settings-general.php:49
333
  msgid "Heading text"
334
  msgstr "Überschrift Text"
335
 
336
- #: classes/settings/class-settings-general.php:50
337
  msgid ""
338
  "The text that is displayed above the related %ss. To disable, leave field "
339
  "empty."
340
  msgstr "Der Text, wird über den Verwandten %sen gezeigt. Zum Deaktivieren, lassen Sie das Feld leer."
341
 
342
- #: classes/settings/class-settings-general.php:56
343
  msgid "Excerpt length"
344
  msgstr "Auszug Länge"
345
 
346
- #: classes/settings/class-settings-general.php:57
347
  msgid ""
348
  "The amount of words to be displayed below the title on website. To disable, "
349
  "set value to 0."
350
  msgstr "Die Menge der Wörter, die unter dem Titel auf der Webseite gezeigt werden. Um zu deaktivieren, setzen Sie den Wert auf 0."
351
 
352
- #: classes/settings/class-settings-general.php:63
353
- msgid "Display Image"
354
- msgstr "Bild anzeigen"
355
-
356
- #: classes/settings/class-settings-general.php:64
357
- msgid "Checking this will enable displaying featured images of related %ss."
358
- msgstr "Aktivieren dieser Option wird die Anzeige des Ausgewählten Bild für %sen einschalten."
359
-
360
  #: classes/settings/class-settings-license.php:18
361
  msgid "License"
362
  msgstr ""
@@ -406,45 +461,33 @@ msgid ""
406
  "the plugin is deleted."
407
  msgstr "Aktivieren Sie dieses Kästchen, wenn Sie möchten, um alle Daten zu entfernen, wenn der Plugin gelöscht wird."
408
 
409
- #: classes/settings/class-settings-page.php:450
410
- msgid "ACTIVATED"
411
  msgstr ""
412
 
413
- #: classes/settings/class-settings-page.php:452
414
- msgid "NOT ACTIVE"
 
 
415
  msgstr ""
416
 
417
- #: classes/settings/class-settings-themes.php:18
418
- msgid "Styling"
419
- msgstr "Styling"
420
-
421
- #: classes/settings/class-settings-themes.php:31
422
- msgid "Styling settings"
423
- msgstr "Styling Einstellungen"
424
-
425
- #: classes/settings/class-settings-themes.php:32
426
- msgid "Control how your related posts are displayed on your website."
427
- msgstr "Konfigurieren Sie, wie Ihre verwandten Beiträge auf Ihrer Website gezeigt werden."
428
-
429
- #: classes/settings/class-settings-themes.php:36
430
- msgid "Themes"
431
- msgstr "Themen"
432
 
433
- #: classes/settings/class-settings-themes.php:37
434
  msgid ""
435
- "Select one of the CSS themes above to display your related posts the way you"
436
- " like to."
437
- msgstr "Wählen Sie eines der CSS Themen, so dass Ihre verwandten Beiträge angezeigt werden, wie Sie es mögen."
438
 
439
- #: classes/settings/class-settings-themes.php:43
440
- msgid "Custom CSS"
441
- msgstr "Benutzerdefinierte CSS"
442
 
443
- #: classes/settings/class-settings-themes.php:44
444
- msgid ""
445
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
446
- "error here will break frontend display. To disable, leave field empty."
447
- msgstr "Fügen Sie benutzerdefinierte CSS an ausgewählte Thema zu. Achtung! Dies ist eine erweiterte Funktion! Ein Fehler wird hier kann die Wiedergabe kaputt machen. Zum Deaktivieren, lassen Sie das Feld leer."
448
 
449
  #: classes/settings/class-settings-weights.php:18
450
  msgid "Weights"
@@ -496,18 +539,6 @@ msgstr "Benutzerdefinierte Taxonomien"
496
  msgid "The weight of custom taxonomies."
497
  msgstr "Das Gewicht der benutzerdefinierte Taxonomien."
498
 
499
- #: classes/themes/class-theme-column-one.php:13
500
- msgid "One related post item per row."
501
- msgstr "Einen verwandten Beitrag pro Zeile"
502
-
503
- #: classes/themes/class-theme-column-three.php:13
504
- msgid "Three related post items per row."
505
- msgstr "Drei verwandte Beiträge pro Zeile"
506
-
507
- #: classes/themes/class-theme-column-two.php:13
508
- msgid "Two related post items per row."
509
- msgstr "Zwei verwandte Beiträge pro Zeile"
510
-
511
  #: includes/updater/class-rp4wp-updater.php:131
512
  msgid "Hide notice"
513
  msgstr "Hinweis ausblenden"
1
+ # Copyright (C) 2015 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
 
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
5
+ # JB, 2014
6
  # Remy van Velthuijsen <remyvv@users.noreply.github.com>, 2014
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: Related Posts for WordPress\n"
10
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
11
+ "POT-Creation-Date: 2015-05-31 09:56:12+00:00\n"
12
+ "PO-Revision-Date: 2015-06-07 19:35+0000\n"
13
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
14
+ "Language-Team: German (Germany) (http://www.transifex.com/barrykooijplugins/related-posts-for-wordpress/language/de_DE/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
+ "Language: de_DE\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
  "X-Generator: grunt-wp-i18n 0.4.8\n"
21
 
36
  #: classes/class-link-related-table.php:45
37
  #: classes/hooks/class-hook-settings-page.php:20
38
  #: classes/meta-boxes/class-meta-box-manage.php:37
39
+ #: classes/settings/class-settings-general.php:59
40
  msgid "Related Posts"
41
  msgstr "Verwante Beiträge"
42
 
50
  msgstr "Titel"
51
 
52
  #: classes/class-link-related-table.php:96
53
+ #: classes/hooks/class-hook-page-install.php:168
54
  #: classes/hooks/class-hook-settings-page.php:152
55
  msgid "Post Type"
56
  msgstr "Beitrags-Typ"
57
 
58
+ #: classes/class-link-related-table.php:260
59
  msgid "Link Post"
60
  msgstr "Verknüpfe Beitrag"
61
 
62
+ #: classes/class-link-related-table.php:268
63
  msgid "View Post"
64
  msgstr ""
65
 
66
+ #: classes/class-link-related-table.php:299
67
  msgid "Link Posts"
68
  msgstr "Verknüpfe Beiträge"
69
 
70
  #: classes/class-post-type-manager.php:21
71
+ #: classes/hooks/class-hook-link-related-screen.php:155
72
  msgid "Posts"
73
  msgstr "Beiträge"
74
 
88
  msgid "Settings"
89
  msgstr "Einstellungen"
90
 
91
+ #: classes/hooks/class-hook-link-related-screen.php:157
92
  msgid "Cancel linking"
93
  msgstr "Verknüpfen abbrechen"
94
 
95
+ #: classes/hooks/class-hook-link-related-screen.php:173
96
  msgid "Search"
97
  msgstr "Suchen"
98
 
99
+ #: classes/hooks/class-hook-page-install.php:57
100
  msgid "Welcome"
101
  msgstr "Willkommen"
102
 
103
+ #: classes/hooks/class-hook-page-install.php:58
104
  msgid "Caching Posts"
105
  msgstr "Beiträge zwischenspeichern"
106
 
107
+ #: classes/hooks/class-hook-page-install.php:59
108
  msgid "Linking Posts"
109
  msgstr "Beiträge verknüpfen"
110
 
111
+ #: classes/hooks/class-hook-page-install.php:60
112
  msgid "Finished"
113
  msgstr "Fertig"
114
 
115
+ #: classes/hooks/class-hook-page-install.php:71
116
  msgid ""
117
+ "Missing post type parameter, please report this incident via %sour "
118
  "website%s."
119
+ msgstr ""
120
 
121
+ #: classes/hooks/class-hook-page-install.php:102
122
  msgid "Installation"
123
  msgstr "Installation"
124
 
125
+ #: classes/hooks/class-hook-page-install.php:149
126
+ #: classes/hooks/class-hook-page-install.php:228
127
  msgid "Thank you for choosing Related Posts for WordPress!"
128
  msgstr "Vielen dank für ihre Wahl für Verwante Beiträge für WordPress"
129
 
130
+ #: classes/hooks/class-hook-page-install.php:150
131
  msgid ""
132
  "Below you'll find your post types available for installation, by installing "
133
  "a post type we'll set up a cache and offer you the ability to automatic link"
135
  "Type' button."
136
  msgstr "Nachfolgend finden Sie hier unter Ihre verfügbare Beitrags-Typen für die Installation. Durch einen Beitrags-Type zu installieren wirdt ein Zwischenspeicher eingerichtet und bieten wir Ihnen die Möglichkeit zum automatischen Verknüpfen von Beiträge. Um ein Beitrags-Typ zu installieren, drücken Sie auf 'Installiere Beitrags-Typ' "
137
 
138
+ #: classes/hooks/class-hook-page-install.php:169
139
  msgid "Related to Post Types"
140
  msgstr ""
141
 
142
+ #: classes/hooks/class-hook-page-install.php:204
143
  msgid "Edit"
144
  msgstr ""
145
 
146
+ #: classes/hooks/class-hook-page-install.php:229
147
  msgid ""
148
  "Before you can start using Related Posts for WordPress we need to cache your"
149
  " current posts."
150
  msgstr "Befor Sie anfangen können mit Verwante Beiträge für WordPress müssen wir Ihre aktuellen Beiträge zwischenspeichern."
151
 
152
+ #: classes/hooks/class-hook-page-install.php:230
153
  msgid ""
154
  "This is a one time process which might take some time now, depending on the "
155
  "amount of posts you have, but will ensure your website's performance when "
156
  "using the plugin."
157
  msgstr "Dies ist ein einmaliger Vorgang, der einige Zeit dauern kan, abhängig von der Menge der Beiträg, die Sie haben, aber notwendig ist um die Leistung Ihrer website zu gewährleisten wenn Sie diesen Plug-in benutzen."
158
 
159
+ #: classes/hooks/class-hook-page-install.php:232
160
  msgid ""
161
  "Do NOT close this window, wait for this process to finish and this wizard to"
162
  " take you to the next step."
163
  msgstr "Schließen Sie dieses Fenster bitte NICHT, warten bis der Prozess beendet ist und der Installationsassistent wird Sie weiterleiten zum nächtsten Schritt."
164
 
165
+ #: classes/hooks/class-hook-page-install.php:266
166
  msgid "Great! All your posts were successfully cached!"
167
  msgstr "Super! All Ihre Beiträge sind erfolgreich zwischengespeichert."
168
 
169
+ #: classes/hooks/class-hook-page-install.php:267
170
  msgid ""
171
  "You can let me link your posts, based on what I think is related, to each "
172
  "other. And don't worry, if I made a mistake at one of your posts you can "
173
  "easily correct this by editing it manually!"
174
  msgstr "Sie können mich die Verknüpfungen legen lassen, basiert auf was ich denke das verwandt ist. Wenn ich einen Fehler mache können Sie ganz einfach korrigieren, durch den Beitrag selbst zu bearbeiten."
175
 
176
+ #: classes/hooks/class-hook-page-install.php:268
177
  msgid ""
178
  "Want me to start linking posts to each other? Fill in the amount of related "
179
  "posts each post should have and click on the \"Link now\" button. Rather "
180
  "link your posts manually? Click \"Skip linking\"."
181
  msgstr "Möchten Sie dass ich anfang mit verknüpfen van Beiträgen? Füllen Sie die Menge der verwandten Beiträge jeder Beitrag haben sollte und klicken Sie auf den \"Verknüpfe jetzt\" Knopf. Lieber selbst deine Beiträge verknüpfen? Klick \"Überspringe Verknüpfen\"."
182
 
183
+ #: classes/hooks/class-hook-page-install.php:269
184
  msgid ""
185
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
186
  " process to finish and this wizard to take you to the next step."
187
  msgstr "Schließen Sie dieses Fenster bitte NICHT, wenn Sie auf \"Verknüpfe jetzt\", warten bis der Prozess beendet ist und der Installationsassistent wird Sie weiterleiten zum nächtsten Schritt."
188
 
189
+ #: classes/hooks/class-hook-page-install.php:275
190
+ msgid "Amount of related posts:"
191
+ msgstr ""
192
+
193
+ #: classes/hooks/class-hook-page-install.php:277
194
+ msgid "The amount of related items per %s"
195
+ msgstr ""
196
+
197
+ #: classes/hooks/class-hook-page-install.php:282
198
+ msgid "Maximum Post Age:"
199
+ msgstr ""
200
+
201
+ #: classes/hooks/class-hook-page-install.php:284
202
+ msgid "The maximum age in days of %s that will be linked. (0 = unlimited)"
203
+ msgstr ""
204
 
205
+ #: classes/hooks/class-hook-page-install.php:290
206
  msgid "Link now"
207
  msgstr "Verknüpfe jetzt"
208
 
209
+ #: classes/hooks/class-hook-page-install.php:291
210
  msgid "Skip linking"
211
  msgstr "Überspringe Verknüpfen"
212
 
213
+ #: classes/hooks/class-hook-page-install.php:309
214
  msgid "That's it, you're good to go!"
215
  msgstr "Das wars, jetzt kann es los gehen!"
216
 
217
+ #: classes/hooks/class-hook-page-install.php:310
218
  msgid ""
219
  "Thanks again for using Related Posts for WordPress and if you have any "
220
  "questions be sure to ask them at the %sWordPress.org forums.%s"
221
  msgstr "Nochmals vielen Dank für die Verwendung von Related Posts für Wordpress und wenn Sie irgendwelche Fragen haben, sollten Sie sie auf den %sWordPress.org Foren%s fragen."
222
 
223
+ #: classes/hooks/class-hook-page-install.php:313
224
  msgid "Click here to return to step 1"
225
  msgstr "Drücken Sie hier um zurück zu Schritt 1 zu gehen"
226
 
227
+ #: classes/hooks/class-hook-page-install.php:319
228
  msgid "Click here to go to the settings page"
229
  msgstr "Drücken Sie hier um zurück zu den Einstellungen zu gehen"
230
 
302
  msgid "No related posts found."
303
  msgstr "Keine verwante Beiträge gefunden."
304
 
305
+ #: classes/meta-boxes/class-meta-box-options.php:37
306
+ msgid "Related Posts Options"
307
+ msgstr ""
308
+
309
+ #: classes/meta-boxes/class-meta-box-options.php:59
310
+ msgid "Exclude"
311
+ msgstr ""
312
+
313
+ #: classes/settings/class-settings-configurator.php:18
314
+ msgid "Styling"
315
+ msgstr "Styling"
316
+
317
+ #: classes/settings/class-settings-configurator.php:24
318
+ msgid "Full control on how your related posts are displayed."
319
+ msgstr ""
320
+
321
+ #: classes/settings/class-settings-configurator.php:33
322
+ msgid "Posts per row"
323
+ msgstr ""
324
+
325
+ #: classes/settings/class-settings-configurator.php:34
326
+ msgid "The amount of related posts per row."
327
+ msgstr ""
328
+
329
+ #: classes/settings/class-settings-configurator.php:46
330
+ msgid "Row fixed height"
331
+ msgstr ""
332
+
333
+ #: classes/settings/class-settings-configurator.php:47
334
+ msgid ""
335
+ "The fixed height per row in pixels, set to 0 to allow dynamic heights.."
336
+ msgstr ""
337
+
338
+ #: classes/settings/class-settings-configurator.php:53
339
+ msgid "Custom CSS"
340
+ msgstr "Benutzerdefinierte CSS"
341
+
342
+ #: classes/settings/class-settings-configurator.php:54
343
+ msgid ""
344
+ "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
345
+ "error here will break frontend display. To disable, leave field empty."
346
+ msgstr "Fügen Sie benutzerdefinierte CSS an ausgewählte Thema zu. Achtung! Dies ist eine erweiterte Funktion! Ein Fehler wird hier kann die Wiedergabe kaputt machen. Zum Deaktivieren, lassen Sie das Feld leer."
347
+
348
  #: classes/settings/class-settings-general.php:18
349
  msgid "General settings for %s"
350
  msgstr "Allgemeine Einstellungen für %s"
375
  msgid "The amount of automatically linked %ss"
376
  msgstr "Die Menge der automatisch verknüpfte %s"
377
 
378
+ #: classes/settings/class-settings-general.php:43
379
+ msgid "Maximum Post Age"
380
+ msgstr ""
381
+
382
  #: classes/settings/class-settings-general.php:44
383
+ msgid "The maximum age in days of %ss that will be linked. (0 = unlimited)"
384
+ msgstr ""
385
+
386
+ #: classes/settings/class-settings-general.php:51
387
  msgid "Frontend Settings"
388
  msgstr "Frontend Einstellungen"
389
 
390
+ #: classes/settings/class-settings-general.php:52
391
  msgid ""
392
  "The following options affect how related %ss are displayed on the frontend."
393
  msgstr "Die folgenden Optionen beeinflussen, wie verwandte %sen auf der Webseite gezeigt werden."
394
 
395
+ #: classes/settings/class-settings-general.php:56
396
  msgid "Heading text"
397
  msgstr "Überschrift Text"
398
 
399
+ #: classes/settings/class-settings-general.php:57
400
  msgid ""
401
  "The text that is displayed above the related %ss. To disable, leave field "
402
  "empty."
403
  msgstr "Der Text, wird über den Verwandten %sen gezeigt. Zum Deaktivieren, lassen Sie das Feld leer."
404
 
405
+ #: classes/settings/class-settings-general.php:63
406
  msgid "Excerpt length"
407
  msgstr "Auszug Länge"
408
 
409
+ #: classes/settings/class-settings-general.php:64
410
  msgid ""
411
  "The amount of words to be displayed below the title on website. To disable, "
412
  "set value to 0."
413
  msgstr "Die Menge der Wörter, die unter dem Titel auf der Webseite gezeigt werden. Um zu deaktivieren, setzen Sie den Wert auf 0."
414
 
 
 
 
 
 
 
 
 
415
  #: classes/settings/class-settings-license.php:18
416
  msgid "License"
417
  msgstr ""
461
  "the plugin is deleted."
462
  msgstr "Aktivieren Sie dieses Kästchen, wenn Sie möchten, um alle Daten zu entfernen, wenn der Plugin gelöscht wird."
463
 
464
+ #: classes/settings/class-settings-misc.php:36
465
+ msgid "Show love?"
466
  msgstr ""
467
 
468
+ #: classes/settings/class-settings-misc.php:37
469
+ msgid ""
470
+ "Display a 'Powered by' line under your related posts. <strong>BEWARE! Only "
471
+ "for the real fans.</strong>"
472
  msgstr ""
473
 
474
+ #: classes/settings/class-settings-misc.php:43
475
+ msgid "Disable SSL Verification"
476
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
477
 
478
+ #: classes/settings/class-settings-misc.php:44
479
  msgid ""
480
+ "Disable SSL verification in license requests. Check this if you've got "
481
+ "problems connecting to licensing server."
482
+ msgstr ""
483
 
484
+ #: classes/settings/class-settings-page.php:448
485
+ msgid "ACTIVATED"
486
+ msgstr ""
487
 
488
+ #: classes/settings/class-settings-page.php:450
489
+ msgid "NOT ACTIVE"
490
+ msgstr ""
 
 
491
 
492
  #: classes/settings/class-settings-weights.php:18
493
  msgid "Weights"
539
  msgid "The weight of custom taxonomies."
540
  msgstr "Das Gewicht der benutzerdefinierte Taxonomien."
541
 
 
 
 
 
 
 
 
 
 
 
 
 
542
  #: includes/updater/class-rp4wp-updater.php:131
543
  msgid "Hide notice"
544
  msgstr "Hinweis ausblenden"
languages/related-posts-for-wp-de_de.mo DELETED
Binary file
languages/related-posts-for-wp-en_en.mo DELETED
Binary file
languages/related-posts-for-wp-en_en.po DELETED
@@ -1,530 +0,0 @@
1
- # Copyright (C) 2014 Barry Kooij
2
- # This file is distributed under the GPL v3.
3
- # Translators:
4
- msgid ""
5
- msgstr ""
6
- "Project-Id-Version: Related Posts for WordPress\n"
7
- "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
8
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
9
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
10
- "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
11
- "Language-Team: English (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/en/)\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "Language: en\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Generator: grunt-wp-i18n 0.4.8\n"
18
-
19
- #: classes/class-is-installing-notice.php:74
20
- msgid ""
21
- "Woah! Looks like we weren't able to finish your Related Posts for WordPress "
22
- "installation wizard!"
23
- msgstr "Woah! Looks like we weren't able to finish your Related Posts for WordPress installation wizard!"
24
-
25
- #: classes/class-is-installing-notice.php:76
26
- msgid "%sResume the installation wizard%s or %sdismiss this notice%s"
27
- msgstr "%sResume the installation wizard%s or %sdismiss this notice%s"
28
-
29
- #: classes/class-javascript-strings.php:14
30
- msgid "Are you sure you want to delete this related post?"
31
- msgstr "Are you sure you want to delete this related post?"
32
-
33
- #: classes/class-link-related-table.php:45
34
- #: classes/hooks/class-hook-settings-page.php:20
35
- #: classes/meta-boxes/class-meta-box-manage.php:37
36
- #: classes/settings/class-settings-general.php:52
37
- msgid "Related Posts"
38
- msgstr "Related Posts"
39
-
40
- #: classes/class-link-related-table.php:46
41
- msgid "All Posts"
42
- msgstr "All Posts"
43
-
44
- #: classes/class-link-related-table.php:95
45
- #: classes/settings/class-settings-weights.php:29
46
- msgid "Title"
47
- msgstr "Title"
48
-
49
- #: classes/class-link-related-table.php:96
50
- #: classes/hooks/class-hook-page-install.php:220
51
- #: classes/hooks/class-hook-settings-page.php:152
52
- msgid "Post Type"
53
- msgstr "Post Type"
54
-
55
- #: classes/class-link-related-table.php:235
56
- msgid "Link Post"
57
- msgstr "Link Post"
58
-
59
- #: classes/class-link-related-table.php:243
60
- msgid "View Post"
61
- msgstr "View Post"
62
-
63
- #: classes/class-link-related-table.php:274
64
- msgid "Link Posts"
65
- msgstr "Link Posts"
66
-
67
- #: classes/class-post-type-manager.php:21
68
- #: classes/hooks/class-hook-link-related-screen.php:138
69
- msgid "Posts"
70
- msgstr "Posts"
71
-
72
- #: classes/class-post-type-manager.php:22
73
- msgid "Pages"
74
- msgstr "Pages"
75
-
76
- #: classes/class-related-posts-widget.php:13
77
- msgid "Related Posts for WordPress"
78
- msgstr "Related Posts for WordPress"
79
-
80
- #: classes/class-related-posts-widget.php:14
81
- msgid "Display related posts."
82
- msgstr "Display related posts."
83
-
84
- #: classes/filters/class-filter-plugin-links.php:29
85
- msgid "Settings"
86
- msgstr "Settings"
87
-
88
- #: classes/hooks/class-hook-link-related-screen.php:139
89
- msgid "Cancel linking"
90
- msgstr "Cancel linking"
91
-
92
- #: classes/hooks/class-hook-link-related-screen.php:155
93
- msgid "Search"
94
- msgstr "Search"
95
-
96
- #: classes/hooks/class-hook-page-install.php:109
97
- msgid "Welcome"
98
- msgstr "Welcome"
99
-
100
- #: classes/hooks/class-hook-page-install.php:110
101
- msgid "Caching Posts"
102
- msgstr "Caching Posts"
103
-
104
- #: classes/hooks/class-hook-page-install.php:111
105
- msgid "Linking Posts"
106
- msgstr "Linking Posts"
107
-
108
- #: classes/hooks/class-hook-page-install.php:112
109
- msgid "Finished"
110
- msgstr "Finished"
111
-
112
- #: classes/hooks/class-hook-page-install.php:123
113
- msgid ""
114
- "Missing post type paramater, please report this incident via %sour "
115
- "website%s."
116
- msgstr "Missing post type paramater, please report this incident via %sour website%s."
117
-
118
- #: classes/hooks/class-hook-page-install.php:154
119
- msgid "Installation"
120
- msgstr "Installation"
121
-
122
- #: classes/hooks/class-hook-page-install.php:201
123
- #: classes/hooks/class-hook-page-install.php:284
124
- msgid "Thank you for choosing Related Posts for WordPress!"
125
- msgstr "Thank you for choosing Related Posts for WordPress!"
126
-
127
- #: classes/hooks/class-hook-page-install.php:202
128
- msgid ""
129
- "Below you'll find your post types available for installation, by installing "
130
- "a post type we'll set up a cache and offer you the ability to automatic link"
131
- " (custom) posts. To install a post type, simply click the 'Install Post "
132
- "Type' button."
133
- msgstr "Below you'll find your post types available for installation, by installing a post type we'll set up a cache and offer you the ability to automatic link (custom) posts. To install a post type, simply click the 'Install Post Type' button."
134
-
135
- #: classes/hooks/class-hook-page-install.php:221
136
- msgid "Related to Post Types"
137
- msgstr "Related to Post Types"
138
-
139
- #: classes/hooks/class-hook-page-install.php:256
140
- msgid "Edit"
141
- msgstr "Edit"
142
-
143
- #: classes/hooks/class-hook-page-install.php:285
144
- msgid ""
145
- "Before you can start using Related Posts for WordPress we need to cache your"
146
- " current posts."
147
- msgstr "Before you can start using Related Posts for WordPress we need to cache your current posts."
148
-
149
- #: classes/hooks/class-hook-page-install.php:286
150
- msgid ""
151
- "This is a one time process which might take some time now, depending on the "
152
- "amount of posts you have, but will ensure your website's performance when "
153
- "using the plugin."
154
- msgstr "This is a one time process which might take some time now, depending on the amount of posts you have, but will ensure your website's performance when using the plugin."
155
-
156
- #: classes/hooks/class-hook-page-install.php:288
157
- msgid ""
158
- "Do NOT close this window, wait for this process to finish and this wizard to"
159
- " take you to the next step."
160
- msgstr "Do NOT close this window, wait for this process to finish and this wizard to take you to the next step."
161
-
162
- #: classes/hooks/class-hook-page-install.php:306
163
- msgid "Great! All your posts were successfully cached!"
164
- msgstr "Great! All your posts were successfully cached!"
165
-
166
- #: classes/hooks/class-hook-page-install.php:307
167
- msgid ""
168
- "You can let me link your posts, based on what I think is related, to each "
169
- "other. And don't worry, if I made a mistake at one of your posts you can "
170
- "easily correct this by editing it manually!"
171
- msgstr "You can let me link your posts, based on what I think is related, to each other. And don't worry, if I made a mistake at one of your posts you can easily correct this by editing it manually!"
172
-
173
- #: classes/hooks/class-hook-page-install.php:308
174
- msgid ""
175
- "Want me to start linking posts to each other? Fill in the amount of related "
176
- "posts each post should have and click on the \"Link now\" button. Rather "
177
- "link your posts manually? Click \"Skip linking\"."
178
- msgstr "Want me to start linking posts to each other? Fill in the amount of related posts each post should have and click on the \"Link now\" button. Rather link your posts manually? Click \"Skip linking\"."
179
-
180
- #: classes/hooks/class-hook-page-install.php:309
181
- msgid ""
182
- "Do NOT close this window if you click the \"Link now\" button, wait for this"
183
- " process to finish and this wizard to take you to the next step."
184
- msgstr "Do NOT close this window if you click the \"Link now\" button, wait for this process to finish and this wizard to take you to the next step."
185
-
186
- #: classes/hooks/class-hook-page-install.php:313
187
- msgid "Amount of related posts per post:"
188
- msgstr "Amount of related posts per post:"
189
-
190
- #: classes/hooks/class-hook-page-install.php:317
191
- msgid "Link now"
192
- msgstr "Link now"
193
-
194
- #: classes/hooks/class-hook-page-install.php:319
195
- msgid "Skip linking"
196
- msgstr "Skip linking"
197
-
198
- #: classes/hooks/class-hook-page-install.php:327
199
- msgid "That's it, you're good to go!"
200
- msgstr "That's it, you're good to go!"
201
-
202
- #: classes/hooks/class-hook-page-install.php:328
203
- msgid ""
204
- "Thanks again for using Related Posts for WordPress and if you have any "
205
- "questions be sure to ask them at the %sWordPress.org forums.%s"
206
- msgstr "Thanks again for using Related Posts for WordPress and if you have any questions be sure to ask them at the %sWordPress.org forums.%s"
207
-
208
- #: classes/hooks/class-hook-page-install.php:331
209
- msgid "Click here to return to step 1"
210
- msgstr "Click here to return to step 1"
211
-
212
- #: classes/hooks/class-hook-page-install.php:337
213
- msgid "Click here to go to the settings page"
214
- msgstr "Click here to go to the settings page"
215
-
216
- #: classes/hooks/class-hook-settings-page.php:57
217
- msgid "Plugin version"
218
- msgstr "Plugin version"
219
-
220
- #: classes/hooks/class-hook-settings-page.php:63
221
- msgid ""
222
- "Got a question? Simply send us an email at "
223
- "%ssupport@relatedpostsforwp.com%s. Please note that support requires an "
224
- "active license."
225
- msgstr "Got a question? Simply send us an email at %ssupport@relatedpostsforwp.com%s. Please note that support requires an active license."
226
-
227
- #: classes/hooks/class-hook-settings-page.php:67
228
- msgid "More information"
229
- msgstr "More information"
230
-
231
- #: classes/hooks/class-hook-settings-page.php:69
232
- msgid "<a href='%s'>Documentation</a>"
233
- msgstr "<a href='%s'>Documentation</a>"
234
-
235
- #: classes/hooks/class-hook-settings-page.php:71
236
- msgid "<a href='%s'>Changelog</a>"
237
- msgstr "<a href='%s'>Changelog</a>"
238
-
239
- #: classes/hooks/class-hook-settings-page.php:73
240
- msgid "<a href='%s'>Give us a review</a>"
241
- msgstr "<a href='%s'>Give us a review</a>"
242
-
243
- #: classes/hooks/class-hook-settings-page.php:78
244
- msgid "About the developer"
245
- msgstr "About the developer"
246
-
247
- #: classes/hooks/class-hook-settings-page.php:80
248
- msgid ""
249
- "Barry is a WordPress developer that works on WooCommerce and is the author "
250
- "of various WordPress plugins that include Related Posts for WordPress, Post "
251
- "Connector and What The File."
252
- msgstr "Barry is a WordPress developer that works on WooCommerce and is the author of various WordPress plugins that include Related Posts for WordPress, Post Connector and What The File."
253
-
254
- #: classes/hooks/class-hook-settings-page.php:82
255
- msgid ""
256
- "Barry likes contributing to open source projects and visiting WordCamps and "
257
- "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
258
- msgstr "Barry likes contributing to open source projects and visiting WordCamps and WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
259
-
260
- #: classes/hooks/class-hook-settings-page.php:84
261
- msgid "%sFollow Barry on Twitter%s."
262
- msgstr "%sFollow Barry on Twitter%s."
263
-
264
- #: classes/hooks/class-hook-settings-page.php:110
265
- msgid "General"
266
- msgstr "General"
267
-
268
- #: classes/hooks/class-hook-settings-page.php:130
269
- msgid "Installer"
270
- msgstr "Installer"
271
-
272
- #: classes/meta-boxes/class-meta-box-manage.php:80
273
- msgid "Add Related Posts"
274
- msgstr "Add Related Posts"
275
-
276
- #: classes/meta-boxes/class-meta-box-manage.php:103
277
- #: classes/meta-boxes/class-meta-box-manage.php:104
278
- msgid "Edit Post"
279
- msgstr "Edit Post"
280
-
281
- #: classes/meta-boxes/class-meta-box-manage.php:106
282
- #: classes/meta-boxes/class-meta-box-manage.php:107
283
- msgid "Unlink Related Post"
284
- msgstr "Unlink Related Post"
285
-
286
- #: classes/meta-boxes/class-meta-box-manage.php:120
287
- msgid "No related posts found."
288
- msgstr "No related posts found."
289
-
290
- #: classes/settings/class-settings-general.php:18
291
- msgid "General settings for %s"
292
- msgstr "General settings for %s"
293
-
294
- #: classes/settings/class-settings-general.php:24
295
- msgid "Automatic %ss linking"
296
- msgstr "Automatic %ss linking"
297
-
298
- #: classes/settings/class-settings-general.php:25
299
- msgid ""
300
- "The following options affect how related posts are automatically linked for "
301
- "%ss."
302
- msgstr "The following options affect how related posts are automatically linked for %ss."
303
-
304
- #: classes/settings/class-settings-general.php:29
305
- msgid "Enable"
306
- msgstr "Enable"
307
-
308
- #: classes/settings/class-settings-general.php:30
309
- msgid "Checking this will enable automatically linking posts to new %ss"
310
- msgstr "Checking this will enable automatically linking posts to new %ss"
311
-
312
- #: classes/settings/class-settings-general.php:36
313
- msgid "Amount of Posts"
314
- msgstr "Amount of Posts"
315
-
316
- #: classes/settings/class-settings-general.php:37
317
- msgid "The amount of automatically linked %ss"
318
- msgstr "The amount of automatically linked %ss"
319
-
320
- #: classes/settings/class-settings-general.php:44
321
- msgid "Frontend Settings"
322
- msgstr "Frontend Settings"
323
-
324
- #: classes/settings/class-settings-general.php:45
325
- msgid ""
326
- "The following options affect how related %ss are displayed on the frontend."
327
- msgstr "The following options affect how related %ss are displayed on the frontend."
328
-
329
- #: classes/settings/class-settings-general.php:49
330
- msgid "Heading text"
331
- msgstr "Heading text"
332
-
333
- #: classes/settings/class-settings-general.php:50
334
- msgid ""
335
- "The text that is displayed above the related %ss. To disable, leave field "
336
- "empty."
337
- msgstr "The text that is displayed above the related %ss. To disable, leave field empty."
338
-
339
- #: classes/settings/class-settings-general.php:56
340
- msgid "Excerpt length"
341
- msgstr "Excerpt length"
342
-
343
- #: classes/settings/class-settings-general.php:57
344
- msgid ""
345
- "The amount of words to be displayed below the title on website. To disable, "
346
- "set value to 0."
347
- msgstr "The amount of words to be displayed below the title on website. To disable, set value to 0."
348
-
349
- #: classes/settings/class-settings-general.php:63
350
- msgid "Display Image"
351
- msgstr "Display Image"
352
-
353
- #: classes/settings/class-settings-general.php:64
354
- msgid "Checking this will enable displaying featured images of related %ss."
355
- msgstr "Checking this will enable displaying featured images of related %ss."
356
-
357
- #: classes/settings/class-settings-license.php:18
358
- msgid "License"
359
- msgstr "License"
360
-
361
- #: classes/settings/class-settings-license.php:29
362
- msgid "License Status"
363
- msgstr "License Status"
364
-
365
- #: classes/settings/class-settings-license.php:36
366
- msgid "License Key"
367
- msgstr "License Key"
368
-
369
- #: classes/settings/class-settings-license.php:37
370
- msgid ""
371
- "Your license key. You can find your license key in your %sMy Account%s page."
372
- msgstr "Your license key. You can find your license key in your %sMy Account%s page."
373
-
374
- #: classes/settings/class-settings-license.php:44
375
- msgid "Activation Email"
376
- msgstr "Activation Email"
377
-
378
- #: classes/settings/class-settings-license.php:45
379
- msgid ""
380
- "Your activation email address. You can find your activation email address in"
381
- " your %sMy Account%s page."
382
- msgstr "Your activation email address. You can find your activation email address in your %sMy Account%s page."
383
-
384
- #: classes/settings/class-settings-misc.php:18
385
- msgid "Misc"
386
- msgstr "Misc"
387
-
388
- #: classes/settings/class-settings-misc.php:24
389
- msgid "Miscellaneous Settings"
390
- msgstr "Miscellaneous Settings"
391
-
392
- #: classes/settings/class-settings-misc.php:25
393
- msgid "A shelter for options that just don't fit in."
394
- msgstr "A shelter for options that just don't fit in."
395
-
396
- #: classes/settings/class-settings-misc.php:29
397
- msgid "Remove Data on Uninstall?"
398
- msgstr "Remove Data on Uninstall?"
399
-
400
- #: classes/settings/class-settings-misc.php:30
401
- msgid ""
402
- "Check this box if you would like to completely remove all of its data when "
403
- "the plugin is deleted."
404
- msgstr "Check this box if you would like to completely remove all of its data when the plugin is deleted."
405
-
406
- #: classes/settings/class-settings-page.php:450
407
- msgid "ACTIVATED"
408
- msgstr "ACTIVATED"
409
-
410
- #: classes/settings/class-settings-page.php:452
411
- msgid "NOT ACTIVE"
412
- msgstr "NOT ACTIVE"
413
-
414
- #: classes/settings/class-settings-themes.php:18
415
- msgid "Styling"
416
- msgstr "Styling"
417
-
418
- #: classes/settings/class-settings-themes.php:31
419
- msgid "Styling settings"
420
- msgstr "Styling settings"
421
-
422
- #: classes/settings/class-settings-themes.php:32
423
- msgid "Control how your related posts are displayed on your website."
424
- msgstr "Control how your related posts are displayed on your website."
425
-
426
- #: classes/settings/class-settings-themes.php:36
427
- msgid "Themes"
428
- msgstr "Themes"
429
-
430
- #: classes/settings/class-settings-themes.php:37
431
- msgid ""
432
- "Select one of the CSS themes above to display your related posts the way you"
433
- " like to."
434
- msgstr "Select one of the CSS themes above to display your related posts the way you like to."
435
-
436
- #: classes/settings/class-settings-themes.php:43
437
- msgid "Custom CSS"
438
- msgstr "Custom CSS"
439
-
440
- #: classes/settings/class-settings-themes.php:44
441
- msgid ""
442
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
443
- "error here will break frontend display. To disable, leave field empty."
444
- msgstr "Add custom CSS to selected theme. Warning! This is an advanced feature! An error here will break frontend display. To disable, leave field empty."
445
-
446
- #: classes/settings/class-settings-weights.php:18
447
- msgid "Weights"
448
- msgstr "Weights"
449
-
450
- #: classes/settings/class-settings-weights.php:24
451
- msgid "Weight settings"
452
- msgstr "Weight settings"
453
-
454
- #: classes/settings/class-settings-weights.php:25
455
- msgid ""
456
- "Easily adjust the weights by using the sliders below. Please note that you "
457
- "need to rerun the installer after changing weights."
458
- msgstr "Easily adjust the weights by using the sliders below. Please note that you need to rerun the installer after changing weights."
459
-
460
- #: classes/settings/class-settings-weights.php:30
461
- msgid "The weight of the title."
462
- msgstr "The weight of the title."
463
-
464
- #: classes/settings/class-settings-weights.php:36
465
- msgid "Links"
466
- msgstr "Links"
467
-
468
- #: classes/settings/class-settings-weights.php:37
469
- msgid "The weight of the links found in the content."
470
- msgstr "The weight of the links found in the content."
471
-
472
- #: classes/settings/class-settings-weights.php:43
473
- msgid "Categories"
474
- msgstr "Categories"
475
-
476
- #: classes/settings/class-settings-weights.php:44
477
- msgid "The weight of the categories."
478
- msgstr "The weight of the categories."
479
-
480
- #: classes/settings/class-settings-weights.php:50
481
- msgid "Tags"
482
- msgstr "Tags"
483
-
484
- #: classes/settings/class-settings-weights.php:51
485
- msgid "The weight of the tags."
486
- msgstr "The weight of the tags."
487
-
488
- #: classes/settings/class-settings-weights.php:57
489
- msgid "Custom Taxonomies"
490
- msgstr "Custom Taxonomies"
491
-
492
- #: classes/settings/class-settings-weights.php:58
493
- msgid "The weight of custom taxonomies."
494
- msgstr "The weight of custom taxonomies."
495
-
496
- #: classes/themes/class-theme-column-one.php:13
497
- msgid "One related post item per row."
498
- msgstr "One related post item per row."
499
-
500
- #: classes/themes/class-theme-column-three.php:13
501
- msgid "Three related post items per row."
502
- msgstr "Three related post items per row."
503
-
504
- #: classes/themes/class-theme-column-two.php:13
505
- msgid "Two related post items per row."
506
- msgstr "Two related post items per row."
507
-
508
- #: includes/updater/class-rp4wp-updater.php:131
509
- msgid "Hide notice"
510
- msgstr "Hide notice"
511
-
512
- #. Plugin Name of the plugin/theme
513
- msgid "Related Posts for WordPress Premium"
514
- msgstr "Related Posts for WordPress Premium"
515
-
516
- #. Plugin URI of the plugin/theme
517
- msgid "http://www.relatedpostsforwp.com/"
518
- msgstr "http://www.relatedpostsforwp.com/"
519
-
520
- #. Description of the plugin/theme
521
- msgid "The best way to display related posts in WordPress."
522
- msgstr "The best way to display related posts in WordPress."
523
-
524
- #. Author of the plugin/theme
525
- msgid "Barry Kooij"
526
- msgstr "Barry Kooij"
527
-
528
- #. Author URI of the plugin/theme
529
- msgid "http://www.barrykooij.com/"
530
- msgstr "http://www.barrykooij.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/related-posts-for-wp-es_es.mo DELETED
Binary file
languages/related-posts-for-wp-es_es.po DELETED
@@ -1,531 +0,0 @@
1
- # Copyright (C) 2014 Barry Kooij
2
- # This file is distributed under the GPL v3.
3
- # Translators:
4
- # Barry Kooij <mail@barrykooij.nl>, 2014
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: Related Posts for WordPress\n"
8
- "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
9
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
10
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
11
- "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
12
- "Language-Team: Spanish (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/es/)\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "Language: es\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: grunt-wp-i18n 0.4.8\n"
19
-
20
- #: classes/class-is-installing-notice.php:74
21
- msgid ""
22
- "Woah! Looks like we weren't able to finish your Related Posts for WordPress "
23
- "installation wizard!"
24
- msgstr ""
25
-
26
- #: classes/class-is-installing-notice.php:76
27
- msgid "%sResume the installation wizard%s or %sdismiss this notice%s"
28
- msgstr ""
29
-
30
- #: classes/class-javascript-strings.php:14
31
- msgid "Are you sure you want to delete this related post?"
32
- msgstr ""
33
-
34
- #: classes/class-link-related-table.php:45
35
- #: classes/hooks/class-hook-settings-page.php:20
36
- #: classes/meta-boxes/class-meta-box-manage.php:37
37
- #: classes/settings/class-settings-general.php:52
38
- msgid "Related Posts"
39
- msgstr ""
40
-
41
- #: classes/class-link-related-table.php:46
42
- msgid "All Posts"
43
- msgstr ""
44
-
45
- #: classes/class-link-related-table.php:95
46
- #: classes/settings/class-settings-weights.php:29
47
- msgid "Title"
48
- msgstr ""
49
-
50
- #: classes/class-link-related-table.php:96
51
- #: classes/hooks/class-hook-page-install.php:220
52
- #: classes/hooks/class-hook-settings-page.php:152
53
- msgid "Post Type"
54
- msgstr ""
55
-
56
- #: classes/class-link-related-table.php:235
57
- msgid "Link Post"
58
- msgstr ""
59
-
60
- #: classes/class-link-related-table.php:243
61
- msgid "View Post"
62
- msgstr ""
63
-
64
- #: classes/class-link-related-table.php:274
65
- msgid "Link Posts"
66
- msgstr ""
67
-
68
- #: classes/class-post-type-manager.php:21
69
- #: classes/hooks/class-hook-link-related-screen.php:138
70
- msgid "Posts"
71
- msgstr ""
72
-
73
- #: classes/class-post-type-manager.php:22
74
- msgid "Pages"
75
- msgstr ""
76
-
77
- #: classes/class-related-posts-widget.php:13
78
- msgid "Related Posts for WordPress"
79
- msgstr ""
80
-
81
- #: classes/class-related-posts-widget.php:14
82
- msgid "Display related posts."
83
- msgstr ""
84
-
85
- #: classes/filters/class-filter-plugin-links.php:29
86
- msgid "Settings"
87
- msgstr ""
88
-
89
- #: classes/hooks/class-hook-link-related-screen.php:139
90
- msgid "Cancel linking"
91
- msgstr ""
92
-
93
- #: classes/hooks/class-hook-link-related-screen.php:155
94
- msgid "Search"
95
- msgstr ""
96
-
97
- #: classes/hooks/class-hook-page-install.php:109
98
- msgid "Welcome"
99
- msgstr ""
100
-
101
- #: classes/hooks/class-hook-page-install.php:110
102
- msgid "Caching Posts"
103
- msgstr ""
104
-
105
- #: classes/hooks/class-hook-page-install.php:111
106
- msgid "Linking Posts"
107
- msgstr ""
108
-
109
- #: classes/hooks/class-hook-page-install.php:112
110
- msgid "Finished"
111
- msgstr ""
112
-
113
- #: classes/hooks/class-hook-page-install.php:123
114
- msgid ""
115
- "Missing post type paramater, please report this incident via %sour "
116
- "website%s."
117
- msgstr ""
118
-
119
- #: classes/hooks/class-hook-page-install.php:154
120
- msgid "Installation"
121
- msgstr ""
122
-
123
- #: classes/hooks/class-hook-page-install.php:201
124
- #: classes/hooks/class-hook-page-install.php:284
125
- msgid "Thank you for choosing Related Posts for WordPress!"
126
- msgstr ""
127
-
128
- #: classes/hooks/class-hook-page-install.php:202
129
- msgid ""
130
- "Below you'll find your post types available for installation, by installing "
131
- "a post type we'll set up a cache and offer you the ability to automatic link"
132
- " (custom) posts. To install a post type, simply click the 'Install Post "
133
- "Type' button."
134
- msgstr ""
135
-
136
- #: classes/hooks/class-hook-page-install.php:221
137
- msgid "Related to Post Types"
138
- msgstr ""
139
-
140
- #: classes/hooks/class-hook-page-install.php:256
141
- msgid "Edit"
142
- msgstr ""
143
-
144
- #: classes/hooks/class-hook-page-install.php:285
145
- msgid ""
146
- "Before you can start using Related Posts for WordPress we need to cache your"
147
- " current posts."
148
- msgstr ""
149
-
150
- #: classes/hooks/class-hook-page-install.php:286
151
- msgid ""
152
- "This is a one time process which might take some time now, depending on the "
153
- "amount of posts you have, but will ensure your website's performance when "
154
- "using the plugin."
155
- msgstr ""
156
-
157
- #: classes/hooks/class-hook-page-install.php:288
158
- msgid ""
159
- "Do NOT close this window, wait for this process to finish and this wizard to"
160
- " take you to the next step."
161
- msgstr ""
162
-
163
- #: classes/hooks/class-hook-page-install.php:306
164
- msgid "Great! All your posts were successfully cached!"
165
- msgstr ""
166
-
167
- #: classes/hooks/class-hook-page-install.php:307
168
- msgid ""
169
- "You can let me link your posts, based on what I think is related, to each "
170
- "other. And don't worry, if I made a mistake at one of your posts you can "
171
- "easily correct this by editing it manually!"
172
- msgstr ""
173
-
174
- #: classes/hooks/class-hook-page-install.php:308
175
- msgid ""
176
- "Want me to start linking posts to each other? Fill in the amount of related "
177
- "posts each post should have and click on the \"Link now\" button. Rather "
178
- "link your posts manually? Click \"Skip linking\"."
179
- msgstr ""
180
-
181
- #: classes/hooks/class-hook-page-install.php:309
182
- msgid ""
183
- "Do NOT close this window if you click the \"Link now\" button, wait for this"
184
- " process to finish and this wizard to take you to the next step."
185
- msgstr ""
186
-
187
- #: classes/hooks/class-hook-page-install.php:313
188
- msgid "Amount of related posts per post:"
189
- msgstr ""
190
-
191
- #: classes/hooks/class-hook-page-install.php:317
192
- msgid "Link now"
193
- msgstr ""
194
-
195
- #: classes/hooks/class-hook-page-install.php:319
196
- msgid "Skip linking"
197
- msgstr ""
198
-
199
- #: classes/hooks/class-hook-page-install.php:327
200
- msgid "That's it, you're good to go!"
201
- msgstr ""
202
-
203
- #: classes/hooks/class-hook-page-install.php:328
204
- msgid ""
205
- "Thanks again for using Related Posts for WordPress and if you have any "
206
- "questions be sure to ask them at the %sWordPress.org forums.%s"
207
- msgstr ""
208
-
209
- #: classes/hooks/class-hook-page-install.php:331
210
- msgid "Click here to return to step 1"
211
- msgstr ""
212
-
213
- #: classes/hooks/class-hook-page-install.php:337
214
- msgid "Click here to go to the settings page"
215
- msgstr ""
216
-
217
- #: classes/hooks/class-hook-settings-page.php:57
218
- msgid "Plugin version"
219
- msgstr ""
220
-
221
- #: classes/hooks/class-hook-settings-page.php:63
222
- msgid ""
223
- "Got a question? Simply send us an email at "
224
- "%ssupport@relatedpostsforwp.com%s. Please note that support requires an "
225
- "active license."
226
- msgstr ""
227
-
228
- #: classes/hooks/class-hook-settings-page.php:67
229
- msgid "More information"
230
- msgstr ""
231
-
232
- #: classes/hooks/class-hook-settings-page.php:69
233
- msgid "<a href='%s'>Documentation</a>"
234
- msgstr ""
235
-
236
- #: classes/hooks/class-hook-settings-page.php:71
237
- msgid "<a href='%s'>Changelog</a>"
238
- msgstr ""
239
-
240
- #: classes/hooks/class-hook-settings-page.php:73
241
- msgid "<a href='%s'>Give us a review</a>"
242
- msgstr ""
243
-
244
- #: classes/hooks/class-hook-settings-page.php:78
245
- msgid "About the developer"
246
- msgstr ""
247
-
248
- #: classes/hooks/class-hook-settings-page.php:80
249
- msgid ""
250
- "Barry is a WordPress developer that works on WooCommerce and is the author "
251
- "of various WordPress plugins that include Related Posts for WordPress, Post "
252
- "Connector and What The File."
253
- msgstr ""
254
-
255
- #: classes/hooks/class-hook-settings-page.php:82
256
- msgid ""
257
- "Barry likes contributing to open source projects and visiting WordCamps and "
258
- "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
259
- msgstr ""
260
-
261
- #: classes/hooks/class-hook-settings-page.php:84
262
- msgid "%sFollow Barry on Twitter%s."
263
- msgstr ""
264
-
265
- #: classes/hooks/class-hook-settings-page.php:110
266
- msgid "General"
267
- msgstr ""
268
-
269
- #: classes/hooks/class-hook-settings-page.php:130
270
- msgid "Installer"
271
- msgstr ""
272
-
273
- #: classes/meta-boxes/class-meta-box-manage.php:80
274
- msgid "Add Related Posts"
275
- msgstr ""
276
-
277
- #: classes/meta-boxes/class-meta-box-manage.php:103
278
- #: classes/meta-boxes/class-meta-box-manage.php:104
279
- msgid "Edit Post"
280
- msgstr ""
281
-
282
- #: classes/meta-boxes/class-meta-box-manage.php:106
283
- #: classes/meta-boxes/class-meta-box-manage.php:107
284
- msgid "Unlink Related Post"
285
- msgstr ""
286
-
287
- #: classes/meta-boxes/class-meta-box-manage.php:120
288
- msgid "No related posts found."
289
- msgstr ""
290
-
291
- #: classes/settings/class-settings-general.php:18
292
- msgid "General settings for %s"
293
- msgstr ""
294
-
295
- #: classes/settings/class-settings-general.php:24
296
- msgid "Automatic %ss linking"
297
- msgstr ""
298
-
299
- #: classes/settings/class-settings-general.php:25
300
- msgid ""
301
- "The following options affect how related posts are automatically linked for "
302
- "%ss."
303
- msgstr ""
304
-
305
- #: classes/settings/class-settings-general.php:29
306
- msgid "Enable"
307
- msgstr ""
308
-
309
- #: classes/settings/class-settings-general.php:30
310
- msgid "Checking this will enable automatically linking posts to new %ss"
311
- msgstr ""
312
-
313
- #: classes/settings/class-settings-general.php:36
314
- msgid "Amount of Posts"
315
- msgstr ""
316
-
317
- #: classes/settings/class-settings-general.php:37
318
- msgid "The amount of automatically linked %ss"
319
- msgstr ""
320
-
321
- #: classes/settings/class-settings-general.php:44
322
- msgid "Frontend Settings"
323
- msgstr ""
324
-
325
- #: classes/settings/class-settings-general.php:45
326
- msgid ""
327
- "The following options affect how related %ss are displayed on the frontend."
328
- msgstr ""
329
-
330
- #: classes/settings/class-settings-general.php:49
331
- msgid "Heading text"
332
- msgstr ""
333
-
334
- #: classes/settings/class-settings-general.php:50
335
- msgid ""
336
- "The text that is displayed above the related %ss. To disable, leave field "
337
- "empty."
338
- msgstr ""
339
-
340
- #: classes/settings/class-settings-general.php:56
341
- msgid "Excerpt length"
342
- msgstr ""
343
-
344
- #: classes/settings/class-settings-general.php:57
345
- msgid ""
346
- "The amount of words to be displayed below the title on website. To disable, "
347
- "set value to 0."
348
- msgstr ""
349
-
350
- #: classes/settings/class-settings-general.php:63
351
- msgid "Display Image"
352
- msgstr ""
353
-
354
- #: classes/settings/class-settings-general.php:64
355
- msgid "Checking this will enable displaying featured images of related %ss."
356
- msgstr ""
357
-
358
- #: classes/settings/class-settings-license.php:18
359
- msgid "License"
360
- msgstr ""
361
-
362
- #: classes/settings/class-settings-license.php:29
363
- msgid "License Status"
364
- msgstr ""
365
-
366
- #: classes/settings/class-settings-license.php:36
367
- msgid "License Key"
368
- msgstr ""
369
-
370
- #: classes/settings/class-settings-license.php:37
371
- msgid ""
372
- "Your license key. You can find your license key in your %sMy Account%s page."
373
- msgstr ""
374
-
375
- #: classes/settings/class-settings-license.php:44
376
- msgid "Activation Email"
377
- msgstr ""
378
-
379
- #: classes/settings/class-settings-license.php:45
380
- msgid ""
381
- "Your activation email address. You can find your activation email address in"
382
- " your %sMy Account%s page."
383
- msgstr ""
384
-
385
- #: classes/settings/class-settings-misc.php:18
386
- msgid "Misc"
387
- msgstr ""
388
-
389
- #: classes/settings/class-settings-misc.php:24
390
- msgid "Miscellaneous Settings"
391
- msgstr ""
392
-
393
- #: classes/settings/class-settings-misc.php:25
394
- msgid "A shelter for options that just don't fit in."
395
- msgstr ""
396
-
397
- #: classes/settings/class-settings-misc.php:29
398
- msgid "Remove Data on Uninstall?"
399
- msgstr ""
400
-
401
- #: classes/settings/class-settings-misc.php:30
402
- msgid ""
403
- "Check this box if you would like to completely remove all of its data when "
404
- "the plugin is deleted."
405
- msgstr ""
406
-
407
- #: classes/settings/class-settings-page.php:450
408
- msgid "ACTIVATED"
409
- msgstr ""
410
-
411
- #: classes/settings/class-settings-page.php:452
412
- msgid "NOT ACTIVE"
413
- msgstr ""
414
-
415
- #: classes/settings/class-settings-themes.php:18
416
- msgid "Styling"
417
- msgstr ""
418
-
419
- #: classes/settings/class-settings-themes.php:31
420
- msgid "Styling settings"
421
- msgstr ""
422
-
423
- #: classes/settings/class-settings-themes.php:32
424
- msgid "Control how your related posts are displayed on your website."
425
- msgstr ""
426
-
427
- #: classes/settings/class-settings-themes.php:36
428
- msgid "Themes"
429
- msgstr ""
430
-
431
- #: classes/settings/class-settings-themes.php:37
432
- msgid ""
433
- "Select one of the CSS themes above to display your related posts the way you"
434
- " like to."
435
- msgstr ""
436
-
437
- #: classes/settings/class-settings-themes.php:43
438
- msgid "Custom CSS"
439
- msgstr ""
440
-
441
- #: classes/settings/class-settings-themes.php:44
442
- msgid ""
443
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
444
- "error here will break frontend display. To disable, leave field empty."
445
- msgstr ""
446
-
447
- #: classes/settings/class-settings-weights.php:18
448
- msgid "Weights"
449
- msgstr ""
450
-
451
- #: classes/settings/class-settings-weights.php:24
452
- msgid "Weight settings"
453
- msgstr ""
454
-
455
- #: classes/settings/class-settings-weights.php:25
456
- msgid ""
457
- "Easily adjust the weights by using the sliders below. Please note that you "
458
- "need to rerun the installer after changing weights."
459
- msgstr ""
460
-
461
- #: classes/settings/class-settings-weights.php:30
462
- msgid "The weight of the title."
463
- msgstr ""
464
-
465
- #: classes/settings/class-settings-weights.php:36
466
- msgid "Links"
467
- msgstr ""
468
-
469
- #: classes/settings/class-settings-weights.php:37
470
- msgid "The weight of the links found in the content."
471
- msgstr ""
472
-
473
- #: classes/settings/class-settings-weights.php:43
474
- msgid "Categories"
475
- msgstr ""
476
-
477
- #: classes/settings/class-settings-weights.php:44
478
- msgid "The weight of the categories."
479
- msgstr ""
480
-
481
- #: classes/settings/class-settings-weights.php:50
482
- msgid "Tags"
483
- msgstr ""
484
-
485
- #: classes/settings/class-settings-weights.php:51
486
- msgid "The weight of the tags."
487
- msgstr ""
488
-
489
- #: classes/settings/class-settings-weights.php:57
490
- msgid "Custom Taxonomies"
491
- msgstr ""
492
-
493
- #: classes/settings/class-settings-weights.php:58
494
- msgid "The weight of custom taxonomies."
495
- msgstr ""
496
-
497
- #: classes/themes/class-theme-column-one.php:13
498
- msgid "One related post item per row."
499
- msgstr ""
500
-
501
- #: classes/themes/class-theme-column-three.php:13
502
- msgid "Three related post items per row."
503
- msgstr ""
504
-
505
- #: classes/themes/class-theme-column-two.php:13
506
- msgid "Two related post items per row."
507
- msgstr ""
508
-
509
- #: includes/updater/class-rp4wp-updater.php:131
510
- msgid "Hide notice"
511
- msgstr ""
512
-
513
- #. Plugin Name of the plugin/theme
514
- msgid "Related Posts for WordPress Premium"
515
- msgstr "Related Posts for WordPress Premium"
516
-
517
- #. Plugin URI of the plugin/theme
518
- msgid "http://www.relatedpostsforwp.com/"
519
- msgstr "http://www.relatedpostsforwp.com/"
520
-
521
- #. Description of the plugin/theme
522
- msgid "The best way to display related posts in WordPress."
523
- msgstr ""
524
-
525
- #. Author of the plugin/theme
526
- msgid "Barry Kooij"
527
- msgstr "Barry Kooij"
528
-
529
- #. Author URI of the plugin/theme
530
- msgid "http://www.barrykooij.com/"
531
- msgstr "http://www.barrykooij.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/related-posts-for-wp-fr_FR.mo ADDED
Binary file
languages/{related-posts-for-wp-fr_fr.po → related-posts-for-wp-fr_FR.po} RENAMED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2014 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
@@ -7,14 +7,14 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Related Posts for WordPress\n"
9
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
10
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
11
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
12
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
13
- "Language-Team: French (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/fr/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "Language: fr\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.8\n"
20
 
@@ -35,7 +35,7 @@ msgstr "Etes-vous sûr de vouloir supprimer cet article lié ?"
35
  #: classes/class-link-related-table.php:45
36
  #: classes/hooks/class-hook-settings-page.php:20
37
  #: classes/meta-boxes/class-meta-box-manage.php:37
38
- #: classes/settings/class-settings-general.php:52
39
  msgid "Related Posts"
40
  msgstr "Articles Liés"
41
 
@@ -49,25 +49,25 @@ msgid "Title"
49
  msgstr "Titre"
50
 
51
  #: classes/class-link-related-table.php:96
52
- #: classes/hooks/class-hook-page-install.php:220
53
  #: classes/hooks/class-hook-settings-page.php:152
54
  msgid "Post Type"
55
  msgstr ""
56
 
57
- #: classes/class-link-related-table.php:235
58
  msgid "Link Post"
59
  msgstr "Lier l'article"
60
 
61
- #: classes/class-link-related-table.php:243
62
  msgid "View Post"
63
  msgstr ""
64
 
65
- #: classes/class-link-related-table.php:274
66
  msgid "Link Posts"
67
  msgstr "Lier les articles"
68
 
69
  #: classes/class-post-type-manager.php:21
70
- #: classes/hooks/class-hook-link-related-screen.php:138
71
  msgid "Posts"
72
  msgstr "Articles"
73
 
@@ -87,46 +87,46 @@ msgstr "Afficher les articles liés."
87
  msgid "Settings"
88
  msgstr "Paramètres"
89
 
90
- #: classes/hooks/class-hook-link-related-screen.php:139
91
  msgid "Cancel linking"
92
  msgstr "Annuler la liaison"
93
 
94
- #: classes/hooks/class-hook-link-related-screen.php:155
95
  msgid "Search"
96
  msgstr "Recherche"
97
 
98
- #: classes/hooks/class-hook-page-install.php:109
99
  msgid "Welcome"
100
  msgstr "Bienvenue"
101
 
102
- #: classes/hooks/class-hook-page-install.php:110
103
  msgid "Caching Posts"
104
  msgstr "Mise en cache des articles"
105
 
106
- #: classes/hooks/class-hook-page-install.php:111
107
  msgid "Linking Posts"
108
  msgstr "Liaison des articles"
109
 
110
- #: classes/hooks/class-hook-page-install.php:112
111
  msgid "Finished"
112
  msgstr "Terminé"
113
 
114
- #: classes/hooks/class-hook-page-install.php:123
115
  msgid ""
116
- "Missing post type paramater, please report this incident via %sour "
117
  "website%s."
118
- msgstr "Paramètre de type de contenu manquant, merci de rapporter cet incident via %snotre site web%s."
119
 
120
- #: classes/hooks/class-hook-page-install.php:154
121
  msgid "Installation"
122
  msgstr "Installation"
123
 
124
- #: classes/hooks/class-hook-page-install.php:201
125
- #: classes/hooks/class-hook-page-install.php:284
126
  msgid "Thank you for choosing Related Posts for WordPress!"
127
  msgstr "Merci d'avoir choisi \"Related Posts\" pour WordPress !"
128
 
129
- #: classes/hooks/class-hook-page-install.php:202
130
  msgid ""
131
  "Below you'll find your post types available for installation, by installing "
132
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -134,84 +134,96 @@ msgid ""
134
  "Type' button."
135
  msgstr "Vous trouverez ci-dessous vos types de contenu disponibles. En installant un type de contenu nous installerons un cache et vous permettrons de les lier automatiquement. Pour installer un type de contenu cliquez sur \"Installer un Type de contenu\"."
136
 
137
- #: classes/hooks/class-hook-page-install.php:221
138
  msgid "Related to Post Types"
139
  msgstr ""
140
 
141
- #: classes/hooks/class-hook-page-install.php:256
142
  msgid "Edit"
143
  msgstr ""
144
 
145
- #: classes/hooks/class-hook-page-install.php:285
146
  msgid ""
147
  "Before you can start using Related Posts for WordPress we need to cache your"
148
  " current posts."
149
  msgstr "Avant que vous puissiez commencer à utiliser \"Related Posts\" pour WordPress nous devons mettre vos articles en cache."
150
 
151
- #: classes/hooks/class-hook-page-install.php:286
152
  msgid ""
153
  "This is a one time process which might take some time now, depending on the "
154
  "amount of posts you have, but will ensure your website's performance when "
155
  "using the plugin."
156
  msgstr "Il s'agit d'un processus unique qui peut prendre un peu de temps. Cela dépend du nombre d'articles que vous avez."
157
 
158
- #: classes/hooks/class-hook-page-install.php:288
159
  msgid ""
160
  "Do NOT close this window, wait for this process to finish and this wizard to"
161
  " take you to the next step."
162
  msgstr "Ne fermez PAS cette fenêtre, merci d'attendre que le processus soit terminé. Cet assistant vous emmenera à la prochaine étape."
163
 
164
- #: classes/hooks/class-hook-page-install.php:306
165
  msgid "Great! All your posts were successfully cached!"
166
  msgstr "Super ! Tous vos articles ont été mis en cache !"
167
 
168
- #: classes/hooks/class-hook-page-install.php:307
169
  msgid ""
170
  "You can let me link your posts, based on what I think is related, to each "
171
  "other. And don't worry, if I made a mistake at one of your posts you can "
172
  "easily correct this by editing it manually!"
173
  msgstr ""
174
 
175
- #: classes/hooks/class-hook-page-install.php:308
176
  msgid ""
177
  "Want me to start linking posts to each other? Fill in the amount of related "
178
  "posts each post should have and click on the \"Link now\" button. Rather "
179
  "link your posts manually? Click \"Skip linking\"."
180
  msgstr ""
181
 
182
- #: classes/hooks/class-hook-page-install.php:309
183
  msgid ""
184
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
185
  " process to finish and this wizard to take you to the next step."
186
  msgstr ""
187
 
188
- #: classes/hooks/class-hook-page-install.php:313
189
- msgid "Amount of related posts per post:"
 
 
 
 
 
 
 
 
190
  msgstr ""
191
 
192
- #: classes/hooks/class-hook-page-install.php:317
 
 
 
 
193
  msgid "Link now"
194
  msgstr "Lier maintenant"
195
 
196
- #: classes/hooks/class-hook-page-install.php:319
197
  msgid "Skip linking"
198
  msgstr "Sauter les liaisons"
199
 
200
- #: classes/hooks/class-hook-page-install.php:327
201
  msgid "That's it, you're good to go!"
202
  msgstr "C'est tout ! Vous êtes prêts à utiliser le plugin !"
203
 
204
- #: classes/hooks/class-hook-page-install.php:328
205
  msgid ""
206
  "Thanks again for using Related Posts for WordPress and if you have any "
207
  "questions be sure to ask them at the %sWordPress.org forums.%s"
208
  msgstr "Merci encore d'utiliser \"Related Posts\" pour WordPress. Si vous avez des questions, n'hésitez pas à les poser sur %sle forum de WordPress.org.%s"
209
 
210
- #: classes/hooks/class-hook-page-install.php:331
211
  msgid "Click here to return to step 1"
212
  msgstr "Cliquez ici pour revenir à l'étape 1"
213
 
214
- #: classes/hooks/class-hook-page-install.php:337
215
  msgid "Click here to go to the settings page"
216
  msgstr ""
217
 
@@ -289,6 +301,49 @@ msgstr ""
289
  msgid "No related posts found."
290
  msgstr ""
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  #: classes/settings/class-settings-general.php:18
293
  msgid "General settings for %s"
294
  msgstr ""
@@ -319,43 +374,43 @@ msgstr ""
319
  msgid "The amount of automatically linked %ss"
320
  msgstr ""
321
 
 
 
 
 
322
  #: classes/settings/class-settings-general.php:44
 
 
 
 
323
  msgid "Frontend Settings"
324
  msgstr ""
325
 
326
- #: classes/settings/class-settings-general.php:45
327
  msgid ""
328
  "The following options affect how related %ss are displayed on the frontend."
329
  msgstr ""
330
 
331
- #: classes/settings/class-settings-general.php:49
332
  msgid "Heading text"
333
  msgstr ""
334
 
335
- #: classes/settings/class-settings-general.php:50
336
  msgid ""
337
  "The text that is displayed above the related %ss. To disable, leave field "
338
  "empty."
339
  msgstr ""
340
 
341
- #: classes/settings/class-settings-general.php:56
342
  msgid "Excerpt length"
343
  msgstr ""
344
 
345
- #: classes/settings/class-settings-general.php:57
346
  msgid ""
347
  "The amount of words to be displayed below the title on website. To disable, "
348
  "set value to 0."
349
  msgstr ""
350
 
351
- #: classes/settings/class-settings-general.php:63
352
- msgid "Display Image"
353
- msgstr ""
354
-
355
- #: classes/settings/class-settings-general.php:64
356
- msgid "Checking this will enable displaying featured images of related %ss."
357
- msgstr ""
358
-
359
  #: classes/settings/class-settings-license.php:18
360
  msgid "License"
361
  msgstr ""
@@ -405,44 +460,32 @@ msgid ""
405
  "the plugin is deleted."
406
  msgstr ""
407
 
408
- #: classes/settings/class-settings-page.php:450
409
- msgid "ACTIVATED"
410
- msgstr ""
411
-
412
- #: classes/settings/class-settings-page.php:452
413
- msgid "NOT ACTIVE"
414
- msgstr ""
415
-
416
- #: classes/settings/class-settings-themes.php:18
417
- msgid "Styling"
418
  msgstr ""
419
 
420
- #: classes/settings/class-settings-themes.php:31
421
- msgid "Styling settings"
422
- msgstr ""
423
-
424
- #: classes/settings/class-settings-themes.php:32
425
- msgid "Control how your related posts are displayed on your website."
426
  msgstr ""
427
 
428
- #: classes/settings/class-settings-themes.php:36
429
- msgid "Themes"
430
  msgstr ""
431
 
432
- #: classes/settings/class-settings-themes.php:37
433
  msgid ""
434
- "Select one of the CSS themes above to display your related posts the way you"
435
- " like to."
436
  msgstr ""
437
 
438
- #: classes/settings/class-settings-themes.php:43
439
- msgid "Custom CSS"
440
  msgstr ""
441
 
442
- #: classes/settings/class-settings-themes.php:44
443
- msgid ""
444
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
445
- "error here will break frontend display. To disable, leave field empty."
446
  msgstr ""
447
 
448
  #: classes/settings/class-settings-weights.php:18
@@ -495,18 +538,6 @@ msgstr ""
495
  msgid "The weight of custom taxonomies."
496
  msgstr ""
497
 
498
- #: classes/themes/class-theme-column-one.php:13
499
- msgid "One related post item per row."
500
- msgstr ""
501
-
502
- #: classes/themes/class-theme-column-three.php:13
503
- msgid "Three related post items per row."
504
- msgstr ""
505
-
506
- #: classes/themes/class-theme-column-two.php:13
507
- msgid "Two related post items per row."
508
- msgstr ""
509
-
510
  #: includes/updater/class-rp4wp-updater.php:131
511
  msgid "Hide notice"
512
  msgstr ""
1
+ # Copyright (C) 2015 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
7
  msgstr ""
8
  "Project-Id-Version: Related Posts for WordPress\n"
9
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
10
+ "POT-Creation-Date: 2015-05-31 09:56:12+00:00\n"
11
+ "PO-Revision-Date: 2015-06-07 19:40+0000\n"
12
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
13
+ "Language-Team: French (France) (http://www.transifex.com/barrykooijplugins/related-posts-for-wordpress/language/fr_FR/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Language: fr_FR\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.8\n"
20
 
35
  #: classes/class-link-related-table.php:45
36
  #: classes/hooks/class-hook-settings-page.php:20
37
  #: classes/meta-boxes/class-meta-box-manage.php:37
38
+ #: classes/settings/class-settings-general.php:59
39
  msgid "Related Posts"
40
  msgstr "Articles Liés"
41
 
49
  msgstr "Titre"
50
 
51
  #: classes/class-link-related-table.php:96
52
+ #: classes/hooks/class-hook-page-install.php:168
53
  #: classes/hooks/class-hook-settings-page.php:152
54
  msgid "Post Type"
55
  msgstr ""
56
 
57
+ #: classes/class-link-related-table.php:260
58
  msgid "Link Post"
59
  msgstr "Lier l'article"
60
 
61
+ #: classes/class-link-related-table.php:268
62
  msgid "View Post"
63
  msgstr ""
64
 
65
+ #: classes/class-link-related-table.php:299
66
  msgid "Link Posts"
67
  msgstr "Lier les articles"
68
 
69
  #: classes/class-post-type-manager.php:21
70
+ #: classes/hooks/class-hook-link-related-screen.php:155
71
  msgid "Posts"
72
  msgstr "Articles"
73
 
87
  msgid "Settings"
88
  msgstr "Paramètres"
89
 
90
+ #: classes/hooks/class-hook-link-related-screen.php:157
91
  msgid "Cancel linking"
92
  msgstr "Annuler la liaison"
93
 
94
+ #: classes/hooks/class-hook-link-related-screen.php:173
95
  msgid "Search"
96
  msgstr "Recherche"
97
 
98
+ #: classes/hooks/class-hook-page-install.php:57
99
  msgid "Welcome"
100
  msgstr "Bienvenue"
101
 
102
+ #: classes/hooks/class-hook-page-install.php:58
103
  msgid "Caching Posts"
104
  msgstr "Mise en cache des articles"
105
 
106
+ #: classes/hooks/class-hook-page-install.php:59
107
  msgid "Linking Posts"
108
  msgstr "Liaison des articles"
109
 
110
+ #: classes/hooks/class-hook-page-install.php:60
111
  msgid "Finished"
112
  msgstr "Terminé"
113
 
114
+ #: classes/hooks/class-hook-page-install.php:71
115
  msgid ""
116
+ "Missing post type parameter, please report this incident via %sour "
117
  "website%s."
118
+ msgstr ""
119
 
120
+ #: classes/hooks/class-hook-page-install.php:102
121
  msgid "Installation"
122
  msgstr "Installation"
123
 
124
+ #: classes/hooks/class-hook-page-install.php:149
125
+ #: classes/hooks/class-hook-page-install.php:228
126
  msgid "Thank you for choosing Related Posts for WordPress!"
127
  msgstr "Merci d'avoir choisi \"Related Posts\" pour WordPress !"
128
 
129
+ #: classes/hooks/class-hook-page-install.php:150
130
  msgid ""
131
  "Below you'll find your post types available for installation, by installing "
132
  "a post type we'll set up a cache and offer you the ability to automatic link"
134
  "Type' button."
135
  msgstr "Vous trouverez ci-dessous vos types de contenu disponibles. En installant un type de contenu nous installerons un cache et vous permettrons de les lier automatiquement. Pour installer un type de contenu cliquez sur \"Installer un Type de contenu\"."
136
 
137
+ #: classes/hooks/class-hook-page-install.php:169
138
  msgid "Related to Post Types"
139
  msgstr ""
140
 
141
+ #: classes/hooks/class-hook-page-install.php:204
142
  msgid "Edit"
143
  msgstr ""
144
 
145
+ #: classes/hooks/class-hook-page-install.php:229
146
  msgid ""
147
  "Before you can start using Related Posts for WordPress we need to cache your"
148
  " current posts."
149
  msgstr "Avant que vous puissiez commencer à utiliser \"Related Posts\" pour WordPress nous devons mettre vos articles en cache."
150
 
151
+ #: classes/hooks/class-hook-page-install.php:230
152
  msgid ""
153
  "This is a one time process which might take some time now, depending on the "
154
  "amount of posts you have, but will ensure your website's performance when "
155
  "using the plugin."
156
  msgstr "Il s'agit d'un processus unique qui peut prendre un peu de temps. Cela dépend du nombre d'articles que vous avez."
157
 
158
+ #: classes/hooks/class-hook-page-install.php:232
159
  msgid ""
160
  "Do NOT close this window, wait for this process to finish and this wizard to"
161
  " take you to the next step."
162
  msgstr "Ne fermez PAS cette fenêtre, merci d'attendre que le processus soit terminé. Cet assistant vous emmenera à la prochaine étape."
163
 
164
+ #: classes/hooks/class-hook-page-install.php:266
165
  msgid "Great! All your posts were successfully cached!"
166
  msgstr "Super ! Tous vos articles ont été mis en cache !"
167
 
168
+ #: classes/hooks/class-hook-page-install.php:267
169
  msgid ""
170
  "You can let me link your posts, based on what I think is related, to each "
171
  "other. And don't worry, if I made a mistake at one of your posts you can "
172
  "easily correct this by editing it manually!"
173
  msgstr ""
174
 
175
+ #: classes/hooks/class-hook-page-install.php:268
176
  msgid ""
177
  "Want me to start linking posts to each other? Fill in the amount of related "
178
  "posts each post should have and click on the \"Link now\" button. Rather "
179
  "link your posts manually? Click \"Skip linking\"."
180
  msgstr ""
181
 
182
+ #: classes/hooks/class-hook-page-install.php:269
183
  msgid ""
184
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
185
  " process to finish and this wizard to take you to the next step."
186
  msgstr ""
187
 
188
+ #: classes/hooks/class-hook-page-install.php:275
189
+ msgid "Amount of related posts:"
190
+ msgstr ""
191
+
192
+ #: classes/hooks/class-hook-page-install.php:277
193
+ msgid "The amount of related items per %s"
194
+ msgstr ""
195
+
196
+ #: classes/hooks/class-hook-page-install.php:282
197
+ msgid "Maximum Post Age:"
198
  msgstr ""
199
 
200
+ #: classes/hooks/class-hook-page-install.php:284
201
+ msgid "The maximum age in days of %s that will be linked. (0 = unlimited)"
202
+ msgstr ""
203
+
204
+ #: classes/hooks/class-hook-page-install.php:290
205
  msgid "Link now"
206
  msgstr "Lier maintenant"
207
 
208
+ #: classes/hooks/class-hook-page-install.php:291
209
  msgid "Skip linking"
210
  msgstr "Sauter les liaisons"
211
 
212
+ #: classes/hooks/class-hook-page-install.php:309
213
  msgid "That's it, you're good to go!"
214
  msgstr "C'est tout ! Vous êtes prêts à utiliser le plugin !"
215
 
216
+ #: classes/hooks/class-hook-page-install.php:310
217
  msgid ""
218
  "Thanks again for using Related Posts for WordPress and if you have any "
219
  "questions be sure to ask them at the %sWordPress.org forums.%s"
220
  msgstr "Merci encore d'utiliser \"Related Posts\" pour WordPress. Si vous avez des questions, n'hésitez pas à les poser sur %sle forum de WordPress.org.%s"
221
 
222
+ #: classes/hooks/class-hook-page-install.php:313
223
  msgid "Click here to return to step 1"
224
  msgstr "Cliquez ici pour revenir à l'étape 1"
225
 
226
+ #: classes/hooks/class-hook-page-install.php:319
227
  msgid "Click here to go to the settings page"
228
  msgstr ""
229
 
301
  msgid "No related posts found."
302
  msgstr ""
303
 
304
+ #: classes/meta-boxes/class-meta-box-options.php:37
305
+ msgid "Related Posts Options"
306
+ msgstr ""
307
+
308
+ #: classes/meta-boxes/class-meta-box-options.php:59
309
+ msgid "Exclude"
310
+ msgstr ""
311
+
312
+ #: classes/settings/class-settings-configurator.php:18
313
+ msgid "Styling"
314
+ msgstr ""
315
+
316
+ #: classes/settings/class-settings-configurator.php:24
317
+ msgid "Full control on how your related posts are displayed."
318
+ msgstr ""
319
+
320
+ #: classes/settings/class-settings-configurator.php:33
321
+ msgid "Posts per row"
322
+ msgstr ""
323
+
324
+ #: classes/settings/class-settings-configurator.php:34
325
+ msgid "The amount of related posts per row."
326
+ msgstr ""
327
+
328
+ #: classes/settings/class-settings-configurator.php:46
329
+ msgid "Row fixed height"
330
+ msgstr ""
331
+
332
+ #: classes/settings/class-settings-configurator.php:47
333
+ msgid ""
334
+ "The fixed height per row in pixels, set to 0 to allow dynamic heights.."
335
+ msgstr ""
336
+
337
+ #: classes/settings/class-settings-configurator.php:53
338
+ msgid "Custom CSS"
339
+ msgstr ""
340
+
341
+ #: classes/settings/class-settings-configurator.php:54
342
+ msgid ""
343
+ "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
344
+ "error here will break frontend display. To disable, leave field empty."
345
+ msgstr ""
346
+
347
  #: classes/settings/class-settings-general.php:18
348
  msgid "General settings for %s"
349
  msgstr ""
374
  msgid "The amount of automatically linked %ss"
375
  msgstr ""
376
 
377
+ #: classes/settings/class-settings-general.php:43
378
+ msgid "Maximum Post Age"
379
+ msgstr ""
380
+
381
  #: classes/settings/class-settings-general.php:44
382
+ msgid "The maximum age in days of %ss that will be linked. (0 = unlimited)"
383
+ msgstr ""
384
+
385
+ #: classes/settings/class-settings-general.php:51
386
  msgid "Frontend Settings"
387
  msgstr ""
388
 
389
+ #: classes/settings/class-settings-general.php:52
390
  msgid ""
391
  "The following options affect how related %ss are displayed on the frontend."
392
  msgstr ""
393
 
394
+ #: classes/settings/class-settings-general.php:56
395
  msgid "Heading text"
396
  msgstr ""
397
 
398
+ #: classes/settings/class-settings-general.php:57
399
  msgid ""
400
  "The text that is displayed above the related %ss. To disable, leave field "
401
  "empty."
402
  msgstr ""
403
 
404
+ #: classes/settings/class-settings-general.php:63
405
  msgid "Excerpt length"
406
  msgstr ""
407
 
408
+ #: classes/settings/class-settings-general.php:64
409
  msgid ""
410
  "The amount of words to be displayed below the title on website. To disable, "
411
  "set value to 0."
412
  msgstr ""
413
 
 
 
 
 
 
 
 
 
414
  #: classes/settings/class-settings-license.php:18
415
  msgid "License"
416
  msgstr ""
460
  "the plugin is deleted."
461
  msgstr ""
462
 
463
+ #: classes/settings/class-settings-misc.php:36
464
+ msgid "Show love?"
 
 
 
 
 
 
 
 
465
  msgstr ""
466
 
467
+ #: classes/settings/class-settings-misc.php:37
468
+ msgid ""
469
+ "Display a 'Powered by' line under your related posts. <strong>BEWARE! Only "
470
+ "for the real fans.</strong>"
 
 
471
  msgstr ""
472
 
473
+ #: classes/settings/class-settings-misc.php:43
474
+ msgid "Disable SSL Verification"
475
  msgstr ""
476
 
477
+ #: classes/settings/class-settings-misc.php:44
478
  msgid ""
479
+ "Disable SSL verification in license requests. Check this if you've got "
480
+ "problems connecting to licensing server."
481
  msgstr ""
482
 
483
+ #: classes/settings/class-settings-page.php:448
484
+ msgid "ACTIVATED"
485
  msgstr ""
486
 
487
+ #: classes/settings/class-settings-page.php:450
488
+ msgid "NOT ACTIVE"
 
 
489
  msgstr ""
490
 
491
  #: classes/settings/class-settings-weights.php:18
538
  msgid "The weight of custom taxonomies."
539
  msgstr ""
540
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  #: includes/updater/class-rp4wp-updater.php:131
542
  msgid "Hide notice"
543
  msgstr ""
languages/related-posts-for-wp-fr_fr.mo DELETED
Binary file
languages/related-posts-for-wp-it_IT.mo ADDED
Binary file
languages/{related-posts-for-wp-it_it.po → related-posts-for-wp-it_IT.po} RENAMED
@@ -1,20 +1,20 @@
1
- # Copyright (C) 2014 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
5
- # Nicola Mustone <mustone.nicola@gmail.com>, 2014
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Related Posts for WordPress\n"
9
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
10
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
11
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
12
- "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
13
- "Language-Team: Italian (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/it/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "Language: it\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.8\n"
20
 
@@ -35,7 +35,7 @@ msgstr "Sei sicuro di voler cancellare questo articolo correlato?"
35
  #: classes/class-link-related-table.php:45
36
  #: classes/hooks/class-hook-settings-page.php:20
37
  #: classes/meta-boxes/class-meta-box-manage.php:37
38
- #: classes/settings/class-settings-general.php:52
39
  msgid "Related Posts"
40
  msgstr "Articoli Correlati"
41
 
@@ -49,25 +49,25 @@ msgid "Title"
49
  msgstr "Titolo"
50
 
51
  #: classes/class-link-related-table.php:96
52
- #: classes/hooks/class-hook-page-install.php:220
53
  #: classes/hooks/class-hook-settings-page.php:152
54
  msgid "Post Type"
55
  msgstr "Post Type"
56
 
57
- #: classes/class-link-related-table.php:235
58
  msgid "Link Post"
59
  msgstr "Collega Articolo"
60
 
61
- #: classes/class-link-related-table.php:243
62
  msgid "View Post"
63
- msgstr ""
64
 
65
- #: classes/class-link-related-table.php:274
66
  msgid "Link Posts"
67
  msgstr "Collega Articoli"
68
 
69
  #: classes/class-post-type-manager.php:21
70
- #: classes/hooks/class-hook-link-related-screen.php:138
71
  msgid "Posts"
72
  msgstr "Articoli"
73
 
@@ -87,46 +87,46 @@ msgstr "Mostra articoli correlati."
87
  msgid "Settings"
88
  msgstr "Impostazioni"
89
 
90
- #: classes/hooks/class-hook-link-related-screen.php:139
91
  msgid "Cancel linking"
92
  msgstr "Cancella collegamento"
93
 
94
- #: classes/hooks/class-hook-link-related-screen.php:155
95
  msgid "Search"
96
  msgstr "Cerca"
97
 
98
- #: classes/hooks/class-hook-page-install.php:109
99
  msgid "Welcome"
100
  msgstr "Benvenuto"
101
 
102
- #: classes/hooks/class-hook-page-install.php:110
103
  msgid "Caching Posts"
104
  msgstr "Cache Articoli"
105
 
106
- #: classes/hooks/class-hook-page-install.php:111
107
  msgid "Linking Posts"
108
  msgstr "Collegamento Articoli"
109
 
110
- #: classes/hooks/class-hook-page-install.php:112
111
  msgid "Finished"
112
  msgstr "Completato"
113
 
114
- #: classes/hooks/class-hook-page-install.php:123
115
  msgid ""
116
- "Missing post type paramater, please report this incident via %sour "
117
  "website%s."
118
- msgstr "Il parametro post type non &egrave; stato trovato, per favore segnala questo problema sul %snostro sito%s."
119
 
120
- #: classes/hooks/class-hook-page-install.php:154
121
  msgid "Installation"
122
  msgstr "Installazione"
123
 
124
- #: classes/hooks/class-hook-page-install.php:201
125
- #: classes/hooks/class-hook-page-install.php:284
126
  msgid "Thank you for choosing Related Posts for WordPress!"
127
  msgstr "Grazie per aver scelto Related Posts for WordPress!"
128
 
129
- #: classes/hooks/class-hook-page-install.php:202
130
  msgid ""
131
  "Below you'll find your post types available for installation, by installing "
132
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -134,84 +134,96 @@ msgid ""
134
  "Type' button."
135
  msgstr "Qui sotto troverai i post type disponibili per l'installazione, installando un post type noi imposteremo una cache e ti daremo la possibilit&agrave; di collegare automaticamente articoli (custom). Per installare un post type, clicca semplicemente sul bottone 'Installa Post Type'."
136
 
137
- #: classes/hooks/class-hook-page-install.php:221
138
  msgid "Related to Post Types"
139
- msgstr ""
140
 
141
- #: classes/hooks/class-hook-page-install.php:256
142
  msgid "Edit"
143
- msgstr ""
144
 
145
- #: classes/hooks/class-hook-page-install.php:285
146
  msgid ""
147
  "Before you can start using Related Posts for WordPress we need to cache your"
148
  " current posts."
149
  msgstr "Prima di poter utilizzare Related Posts for WordPress abbiamo bisogno di creare una cache dei tuo articoli attuali."
150
 
151
- #: classes/hooks/class-hook-page-install.php:286
152
  msgid ""
153
  "This is a one time process which might take some time now, depending on the "
154
  "amount of posts you have, but will ensure your website's performance when "
155
  "using the plugin."
156
  msgstr "Questo &egrave; un processo che viene eseguito una sola volta e potrebbero essere necessari alcuni minuti, in base al numero di articoli che hai, ma ti assicurer&agrave; migliori performance per il tuo sito durante l'utilizzo di questo plugin."
157
 
158
- #: classes/hooks/class-hook-page-install.php:288
159
  msgid ""
160
  "Do NOT close this window, wait for this process to finish and this wizard to"
161
  " take you to the next step."
162
  msgstr "NON chiudere questa finestra, attendi che il processo venga completato e che questo wizard ti porti allo step successivo."
163
 
164
- #: classes/hooks/class-hook-page-install.php:306
165
  msgid "Great! All your posts were successfully cached!"
166
  msgstr "Grandioso! La cache di tutti i tuoi articoli &egrave; stata creata correttamente!"
167
 
168
- #: classes/hooks/class-hook-page-install.php:307
169
  msgid ""
170
  "You can let me link your posts, based on what I think is related, to each "
171
  "other. And don't worry, if I made a mistake at one of your posts you can "
172
  "easily correct this by editing it manually!"
173
  msgstr "Puoi lasciarmi collegare i tuoi articoli, in base a coas io penso che sia correlato tra essi. E non preoccuparti, se faccio un errore in qualcuno di essi puoi sempre correggerlo facilmente modificando l'articolo manualmente!"
174
 
175
- #: classes/hooks/class-hook-page-install.php:308
176
  msgid ""
177
  "Want me to start linking posts to each other? Fill in the amount of related "
178
  "posts each post should have and click on the \"Link now\" button. Rather "
179
  "link your posts manually? Click \"Skip linking\"."
180
  msgstr "Vuoi che inizia a collegare gli articoli tra essi? Inserisci il numero ti articoli correlati che ogni articolo dovrebbe avere e clicca sul bottone \"Collega ora\". Vuoi farlo manualmente? Clicca su \"Salta collegamento\"."
181
 
182
- #: classes/hooks/class-hook-page-install.php:309
183
  msgid ""
184
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
185
  " process to finish and this wizard to take you to the next step."
186
  msgstr "NON chiudere questa finestra se clicchi sul bottone \"Collega ora\", attendi che questo processo finisca e che il wizard ti porti allo step successivo."
187
 
188
- #: classes/hooks/class-hook-page-install.php:313
189
- msgid "Amount of related posts per post:"
190
- msgstr "Numero di articoli correlati per ogni articolo:"
 
 
 
 
 
 
 
 
191
 
192
- #: classes/hooks/class-hook-page-install.php:317
 
 
 
 
193
  msgid "Link now"
194
  msgstr "Collega ora"
195
 
196
- #: classes/hooks/class-hook-page-install.php:319
197
  msgid "Skip linking"
198
  msgstr "Salta collegamento"
199
 
200
- #: classes/hooks/class-hook-page-install.php:327
201
  msgid "That's it, you're good to go!"
202
  msgstr "Ecco fatto, sei pronto!"
203
 
204
- #: classes/hooks/class-hook-page-install.php:328
205
  msgid ""
206
  "Thanks again for using Related Posts for WordPress and if you have any "
207
  "questions be sure to ask them at the %sWordPress.org forums.%s"
208
  msgstr "Grazie ancora per aver utilizzato Related Posts for WordPress e se hai domande assicurati di chiederlo sui %sforum di WordPress.org.%s"
209
 
210
- #: classes/hooks/class-hook-page-install.php:331
211
  msgid "Click here to return to step 1"
212
  msgstr "Clicca qui per tornare allo step 1"
213
 
214
- #: classes/hooks/class-hook-page-install.php:337
215
  msgid "Click here to go to the settings page"
216
  msgstr "Clicca qui per andare alla pagina delle impostazioni"
217
 
@@ -224,7 +236,7 @@ msgid ""
224
  "Got a question? Simply send us an email at "
225
  "%ssupport@relatedpostsforwp.com%s. Please note that support requires an "
226
  "active license."
227
- msgstr ""
228
 
229
  #: classes/hooks/class-hook-settings-page.php:67
230
  msgid "More information"
@@ -251,13 +263,13 @@ msgid ""
251
  "Barry is a WordPress developer that works on WooCommerce and is the author "
252
  "of various WordPress plugins that include Related Posts for WordPress, Post "
253
  "Connector and What The File."
254
- msgstr ""
255
 
256
  #: classes/hooks/class-hook-settings-page.php:82
257
  msgid ""
258
  "Barry likes contributing to open source projects and visiting WordCamps and "
259
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
260
- msgstr ""
261
 
262
  #: classes/hooks/class-hook-settings-page.php:84
263
  msgid "%sFollow Barry on Twitter%s."
@@ -289,6 +301,49 @@ msgstr "Scollega Articolo Correlato"
289
  msgid "No related posts found."
290
  msgstr "Nessun articolo correlato trovato."
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  #: classes/settings/class-settings-general.php:18
293
  msgid "General settings for %s"
294
  msgstr "Impostazioni generali per %s"
@@ -319,69 +374,69 @@ msgstr "Numero di Articoli"
319
  msgid "The amount of automatically linked %ss"
320
  msgstr "Il numero di %ss collegati automaticamente"
321
 
 
 
 
 
322
  #: classes/settings/class-settings-general.php:44
 
 
 
 
323
  msgid "Frontend Settings"
324
  msgstr "Impostazioni Frontend"
325
 
326
- #: classes/settings/class-settings-general.php:45
327
  msgid ""
328
  "The following options affect how related %ss are displayed on the frontend."
329
  msgstr "Le seguenti opzioni specificano come vengono mostrati gli %ss correlati nel frontend."
330
 
331
- #: classes/settings/class-settings-general.php:49
332
  msgid "Heading text"
333
  msgstr "Testo intestazione"
334
 
335
- #: classes/settings/class-settings-general.php:50
336
  msgid ""
337
  "The text that is displayed above the related %ss. To disable, leave field "
338
  "empty."
339
  msgstr "Il testo che viene mostrato sopra gli %ss correlati. Per disabilitarlo, lascia vuoto il campo."
340
 
341
- #: classes/settings/class-settings-general.php:56
342
  msgid "Excerpt length"
343
  msgstr "Lunghezza estratto"
344
 
345
- #: classes/settings/class-settings-general.php:57
346
  msgid ""
347
  "The amount of words to be displayed below the title on website. To disable, "
348
  "set value to 0."
349
  msgstr "Il numero di parole da mostrare sotto il titolo del sito. Per disabilitarlo, imposta il valore a 0."
350
 
351
- #: classes/settings/class-settings-general.php:63
352
- msgid "Display Image"
353
- msgstr "Mostra Immagine"
354
-
355
- #: classes/settings/class-settings-general.php:64
356
- msgid "Checking this will enable displaying featured images of related %ss."
357
- msgstr "Selezionando questa opzione verranno mostrare le immagini in evidenza degli %ss correlati."
358
-
359
  #: classes/settings/class-settings-license.php:18
360
  msgid "License"
361
- msgstr ""
362
 
363
  #: classes/settings/class-settings-license.php:29
364
  msgid "License Status"
365
- msgstr ""
366
 
367
  #: classes/settings/class-settings-license.php:36
368
  msgid "License Key"
369
- msgstr ""
370
 
371
  #: classes/settings/class-settings-license.php:37
372
  msgid ""
373
  "Your license key. You can find your license key in your %sMy Account%s page."
374
- msgstr ""
375
 
376
  #: classes/settings/class-settings-license.php:44
377
  msgid "Activation Email"
378
- msgstr ""
379
 
380
  #: classes/settings/class-settings-license.php:45
381
  msgid ""
382
  "Your activation email address. You can find your activation email address in"
383
  " your %sMy Account%s page."
384
- msgstr ""
385
 
386
  #: classes/settings/class-settings-misc.php:18
387
  msgid "Misc"
@@ -405,45 +460,33 @@ msgid ""
405
  "the plugin is deleted."
406
  msgstr "Seleziona questa opzione se vuoi rimuovere completamente tutti i dati del plugin quando viene cancellato."
407
 
408
- #: classes/settings/class-settings-page.php:450
409
- msgid "ACTIVATED"
410
- msgstr ""
411
 
412
- #: classes/settings/class-settings-page.php:452
413
- msgid "NOT ACTIVE"
414
- msgstr ""
415
-
416
- #: classes/settings/class-settings-themes.php:18
417
- msgid "Styling"
418
- msgstr "Stile"
419
-
420
- #: classes/settings/class-settings-themes.php:31
421
- msgid "Styling settings"
422
- msgstr "Impostazioni di stile"
423
-
424
- #: classes/settings/class-settings-themes.php:32
425
- msgid "Control how your related posts are displayed on your website."
426
- msgstr "Controlla come vengono mostrati i tuoi articoli correlati sul sito."
427
 
428
- #: classes/settings/class-settings-themes.php:36
429
- msgid "Themes"
430
- msgstr "Temi"
431
 
432
- #: classes/settings/class-settings-themes.php:37
433
  msgid ""
434
- "Select one of the CSS themes above to display your related posts the way you"
435
- " like to."
436
- msgstr "Seleziona uno dei temi CSS qui sopra per mostrare gli articoli correlati come meglio preferisci."
437
 
438
- #: classes/settings/class-settings-themes.php:43
439
- msgid "Custom CSS"
440
- msgstr "CSS Personalizzato"
441
 
442
- #: classes/settings/class-settings-themes.php:44
443
- msgid ""
444
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
445
- "error here will break frontend display. To disable, leave field empty."
446
- msgstr "Aggiungi CSS personalizzato al tema selezionato. Attenzione! Questa &egrave; una funzionalit&agrave; avanzata! Un errore qui causer&agrave; malfunzionamenti nel frontend. Per disabilitarlo, lascia vuoto il campo."
447
 
448
  #: classes/settings/class-settings-weights.php:18
449
  msgid "Weights"
@@ -495,18 +538,6 @@ msgstr "Tassonomie Personalizzate"
495
  msgid "The weight of custom taxonomies."
496
  msgstr "Il peso delle tassonomie personalizzate."
497
 
498
- #: classes/themes/class-theme-column-one.php:13
499
- msgid "One related post item per row."
500
- msgstr "Un articolo correlato per riga."
501
-
502
- #: classes/themes/class-theme-column-three.php:13
503
- msgid "Three related post items per row."
504
- msgstr "Tre articoli correlati per riga."
505
-
506
- #: classes/themes/class-theme-column-two.php:13
507
- msgid "Two related post items per row."
508
- msgstr "Due articoli correlati per riga."
509
-
510
  #: includes/updater/class-rp4wp-updater.php:131
511
  msgid "Hide notice"
512
  msgstr "Nascondi avviso"
1
+ # Copyright (C) 2015 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
5
+ # Nicola Mustone <mustone.nicola@gmail.com>, 2015
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Related Posts for WordPress\n"
9
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
10
+ "POT-Creation-Date: 2015-05-31 09:56:12+00:00\n"
11
+ "PO-Revision-Date: 2015-07-27 15:27+0000\n"
12
+ "Last-Translator: Nicola Mustone <mustone.nicola@gmail.com>\n"
13
+ "Language-Team: Italian (Italy) (http://www.transifex.com/barrykooijplugins/related-posts-for-wordpress/language/it_IT/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Language: it_IT\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.8\n"
20
 
35
  #: classes/class-link-related-table.php:45
36
  #: classes/hooks/class-hook-settings-page.php:20
37
  #: classes/meta-boxes/class-meta-box-manage.php:37
38
+ #: classes/settings/class-settings-general.php:59
39
  msgid "Related Posts"
40
  msgstr "Articoli Correlati"
41
 
49
  msgstr "Titolo"
50
 
51
  #: classes/class-link-related-table.php:96
52
+ #: classes/hooks/class-hook-page-install.php:168
53
  #: classes/hooks/class-hook-settings-page.php:152
54
  msgid "Post Type"
55
  msgstr "Post Type"
56
 
57
+ #: classes/class-link-related-table.php:260
58
  msgid "Link Post"
59
  msgstr "Collega Articolo"
60
 
61
+ #: classes/class-link-related-table.php:268
62
  msgid "View Post"
63
+ msgstr "Vedi Articolo"
64
 
65
+ #: classes/class-link-related-table.php:299
66
  msgid "Link Posts"
67
  msgstr "Collega Articoli"
68
 
69
  #: classes/class-post-type-manager.php:21
70
+ #: classes/hooks/class-hook-link-related-screen.php:155
71
  msgid "Posts"
72
  msgstr "Articoli"
73
 
87
  msgid "Settings"
88
  msgstr "Impostazioni"
89
 
90
+ #: classes/hooks/class-hook-link-related-screen.php:157
91
  msgid "Cancel linking"
92
  msgstr "Cancella collegamento"
93
 
94
+ #: classes/hooks/class-hook-link-related-screen.php:173
95
  msgid "Search"
96
  msgstr "Cerca"
97
 
98
+ #: classes/hooks/class-hook-page-install.php:57
99
  msgid "Welcome"
100
  msgstr "Benvenuto"
101
 
102
+ #: classes/hooks/class-hook-page-install.php:58
103
  msgid "Caching Posts"
104
  msgstr "Cache Articoli"
105
 
106
+ #: classes/hooks/class-hook-page-install.php:59
107
  msgid "Linking Posts"
108
  msgstr "Collegamento Articoli"
109
 
110
+ #: classes/hooks/class-hook-page-install.php:60
111
  msgid "Finished"
112
  msgstr "Completato"
113
 
114
+ #: classes/hooks/class-hook-page-install.php:71
115
  msgid ""
116
+ "Missing post type parameter, please report this incident via %sour "
117
  "website%s."
118
+ msgstr "Parametro post type mancance, per favore segnala questo problema tramite il %snostro sito%s."
119
 
120
+ #: classes/hooks/class-hook-page-install.php:102
121
  msgid "Installation"
122
  msgstr "Installazione"
123
 
124
+ #: classes/hooks/class-hook-page-install.php:149
125
+ #: classes/hooks/class-hook-page-install.php:228
126
  msgid "Thank you for choosing Related Posts for WordPress!"
127
  msgstr "Grazie per aver scelto Related Posts for WordPress!"
128
 
129
+ #: classes/hooks/class-hook-page-install.php:150
130
  msgid ""
131
  "Below you'll find your post types available for installation, by installing "
132
  "a post type we'll set up a cache and offer you the ability to automatic link"
134
  "Type' button."
135
  msgstr "Qui sotto troverai i post type disponibili per l'installazione, installando un post type noi imposteremo una cache e ti daremo la possibilit&agrave; di collegare automaticamente articoli (custom). Per installare un post type, clicca semplicemente sul bottone 'Installa Post Type'."
136
 
137
+ #: classes/hooks/class-hook-page-install.php:169
138
  msgid "Related to Post Types"
139
+ msgstr "Correlato ai Post Type"
140
 
141
+ #: classes/hooks/class-hook-page-install.php:204
142
  msgid "Edit"
143
+ msgstr "Modifica"
144
 
145
+ #: classes/hooks/class-hook-page-install.php:229
146
  msgid ""
147
  "Before you can start using Related Posts for WordPress we need to cache your"
148
  " current posts."
149
  msgstr "Prima di poter utilizzare Related Posts for WordPress abbiamo bisogno di creare una cache dei tuo articoli attuali."
150
 
151
+ #: classes/hooks/class-hook-page-install.php:230
152
  msgid ""
153
  "This is a one time process which might take some time now, depending on the "
154
  "amount of posts you have, but will ensure your website's performance when "
155
  "using the plugin."
156
  msgstr "Questo &egrave; un processo che viene eseguito una sola volta e potrebbero essere necessari alcuni minuti, in base al numero di articoli che hai, ma ti assicurer&agrave; migliori performance per il tuo sito durante l'utilizzo di questo plugin."
157
 
158
+ #: classes/hooks/class-hook-page-install.php:232
159
  msgid ""
160
  "Do NOT close this window, wait for this process to finish and this wizard to"
161
  " take you to the next step."
162
  msgstr "NON chiudere questa finestra, attendi che il processo venga completato e che questo wizard ti porti allo step successivo."
163
 
164
+ #: classes/hooks/class-hook-page-install.php:266
165
  msgid "Great! All your posts were successfully cached!"
166
  msgstr "Grandioso! La cache di tutti i tuoi articoli &egrave; stata creata correttamente!"
167
 
168
+ #: classes/hooks/class-hook-page-install.php:267
169
  msgid ""
170
  "You can let me link your posts, based on what I think is related, to each "
171
  "other. And don't worry, if I made a mistake at one of your posts you can "
172
  "easily correct this by editing it manually!"
173
  msgstr "Puoi lasciarmi collegare i tuoi articoli, in base a coas io penso che sia correlato tra essi. E non preoccuparti, se faccio un errore in qualcuno di essi puoi sempre correggerlo facilmente modificando l'articolo manualmente!"
174
 
175
+ #: classes/hooks/class-hook-page-install.php:268
176
  msgid ""
177
  "Want me to start linking posts to each other? Fill in the amount of related "
178
  "posts each post should have and click on the \"Link now\" button. Rather "
179
  "link your posts manually? Click \"Skip linking\"."
180
  msgstr "Vuoi che inizia a collegare gli articoli tra essi? Inserisci il numero ti articoli correlati che ogni articolo dovrebbe avere e clicca sul bottone \"Collega ora\". Vuoi farlo manualmente? Clicca su \"Salta collegamento\"."
181
 
182
+ #: classes/hooks/class-hook-page-install.php:269
183
  msgid ""
184
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
185
  " process to finish and this wizard to take you to the next step."
186
  msgstr "NON chiudere questa finestra se clicchi sul bottone \"Collega ora\", attendi che questo processo finisca e che il wizard ti porti allo step successivo."
187
 
188
+ #: classes/hooks/class-hook-page-install.php:275
189
+ msgid "Amount of related posts:"
190
+ msgstr "Numero di articoli correlati:"
191
+
192
+ #: classes/hooks/class-hook-page-install.php:277
193
+ msgid "The amount of related items per %s"
194
+ msgstr "Il numero di elementi correlati per %s"
195
+
196
+ #: classes/hooks/class-hook-page-install.php:282
197
+ msgid "Maximum Post Age:"
198
+ msgstr "Et&agrave; massima dell'articolo:"
199
 
200
+ #: classes/hooks/class-hook-page-install.php:284
201
+ msgid "The maximum age in days of %s that will be linked. (0 = unlimited)"
202
+ msgstr ""
203
+
204
+ #: classes/hooks/class-hook-page-install.php:290
205
  msgid "Link now"
206
  msgstr "Collega ora"
207
 
208
+ #: classes/hooks/class-hook-page-install.php:291
209
  msgid "Skip linking"
210
  msgstr "Salta collegamento"
211
 
212
+ #: classes/hooks/class-hook-page-install.php:309
213
  msgid "That's it, you're good to go!"
214
  msgstr "Ecco fatto, sei pronto!"
215
 
216
+ #: classes/hooks/class-hook-page-install.php:310
217
  msgid ""
218
  "Thanks again for using Related Posts for WordPress and if you have any "
219
  "questions be sure to ask them at the %sWordPress.org forums.%s"
220
  msgstr "Grazie ancora per aver utilizzato Related Posts for WordPress e se hai domande assicurati di chiederlo sui %sforum di WordPress.org.%s"
221
 
222
+ #: classes/hooks/class-hook-page-install.php:313
223
  msgid "Click here to return to step 1"
224
  msgstr "Clicca qui per tornare allo step 1"
225
 
226
+ #: classes/hooks/class-hook-page-install.php:319
227
  msgid "Click here to go to the settings page"
228
  msgstr "Clicca qui per andare alla pagina delle impostazioni"
229
 
236
  "Got a question? Simply send us an email at "
237
  "%ssupport@relatedpostsforwp.com%s. Please note that support requires an "
238
  "active license."
239
+ msgstr "Hai una domanda? Invia semplicemente un'email a %ssupport@relatedpostsforwp.com%s. Per favore nota che per avere supporto hai bisogno di una licenza attiva."
240
 
241
  #: classes/hooks/class-hook-settings-page.php:67
242
  msgid "More information"
263
  "Barry is a WordPress developer that works on WooCommerce and is the author "
264
  "of various WordPress plugins that include Related Posts for WordPress, Post "
265
  "Connector and What The File."
266
+ msgstr "Barry &egrave; uno sviluppatore WordPress che lavora su WooCommerce ed &egrave; l'autore di vari plugin per WordPress incluso Related Posts for WordPress, Post Connector e What The File."
267
 
268
  #: classes/hooks/class-hook-settings-page.php:82
269
  msgid ""
270
  "Barry likes contributing to open source projects and visiting WordCamps and "
271
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
272
+ msgstr "A Barry piace contribuire a progetti open source e visitare WordCamp e meetup di WordPress. E&egrave; l'organizzatore del meetup su WordPress in Tilburg."
273
 
274
  #: classes/hooks/class-hook-settings-page.php:84
275
  msgid "%sFollow Barry on Twitter%s."
301
  msgid "No related posts found."
302
  msgstr "Nessun articolo correlato trovato."
303
 
304
+ #: classes/meta-boxes/class-meta-box-options.php:37
305
+ msgid "Related Posts Options"
306
+ msgstr "Opzioni Articoli Correlati"
307
+
308
+ #: classes/meta-boxes/class-meta-box-options.php:59
309
+ msgid "Exclude"
310
+ msgstr "Escludi"
311
+
312
+ #: classes/settings/class-settings-configurator.php:18
313
+ msgid "Styling"
314
+ msgstr "Stile"
315
+
316
+ #: classes/settings/class-settings-configurator.php:24
317
+ msgid "Full control on how your related posts are displayed."
318
+ msgstr "Controllo completo su come i tuoi articoli correlati vengono mostrati."
319
+
320
+ #: classes/settings/class-settings-configurator.php:33
321
+ msgid "Posts per row"
322
+ msgstr "Articoli per riga"
323
+
324
+ #: classes/settings/class-settings-configurator.php:34
325
+ msgid "The amount of related posts per row."
326
+ msgstr "Il numero di articoli correlati per riga."
327
+
328
+ #: classes/settings/class-settings-configurator.php:46
329
+ msgid "Row fixed height"
330
+ msgstr "Altezza fissa riga"
331
+
332
+ #: classes/settings/class-settings-configurator.php:47
333
+ msgid ""
334
+ "The fixed height per row in pixels, set to 0 to allow dynamic heights.."
335
+ msgstr "L'altezzza fissa in pixel per riga, impostala a 0 per permettere le altezze dinamiche.."
336
+
337
+ #: classes/settings/class-settings-configurator.php:53
338
+ msgid "Custom CSS"
339
+ msgstr "CSS Personalizzato"
340
+
341
+ #: classes/settings/class-settings-configurator.php:54
342
+ msgid ""
343
+ "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
344
+ "error here will break frontend display. To disable, leave field empty."
345
+ msgstr "Aggiungi CSS personalizzato al tema selezionato. Attenzione! Questa &egrave; una funzionalit&agrave; avanzata! Un errore qui causer&agrave; malfunzionamenti nel frontend. Per disabilitarlo, lascia vuoto il campo."
346
+
347
  #: classes/settings/class-settings-general.php:18
348
  msgid "General settings for %s"
349
  msgstr "Impostazioni generali per %s"
374
  msgid "The amount of automatically linked %ss"
375
  msgstr "Il numero di %ss collegati automaticamente"
376
 
377
+ #: classes/settings/class-settings-general.php:43
378
+ msgid "Maximum Post Age"
379
+ msgstr "Et&agrave; massima dell'articolo"
380
+
381
  #: classes/settings/class-settings-general.php:44
382
+ msgid "The maximum age in days of %ss that will be linked. (0 = unlimited)"
383
+ msgstr ""
384
+
385
+ #: classes/settings/class-settings-general.php:51
386
  msgid "Frontend Settings"
387
  msgstr "Impostazioni Frontend"
388
 
389
+ #: classes/settings/class-settings-general.php:52
390
  msgid ""
391
  "The following options affect how related %ss are displayed on the frontend."
392
  msgstr "Le seguenti opzioni specificano come vengono mostrati gli %ss correlati nel frontend."
393
 
394
+ #: classes/settings/class-settings-general.php:56
395
  msgid "Heading text"
396
  msgstr "Testo intestazione"
397
 
398
+ #: classes/settings/class-settings-general.php:57
399
  msgid ""
400
  "The text that is displayed above the related %ss. To disable, leave field "
401
  "empty."
402
  msgstr "Il testo che viene mostrato sopra gli %ss correlati. Per disabilitarlo, lascia vuoto il campo."
403
 
404
+ #: classes/settings/class-settings-general.php:63
405
  msgid "Excerpt length"
406
  msgstr "Lunghezza estratto"
407
 
408
+ #: classes/settings/class-settings-general.php:64
409
  msgid ""
410
  "The amount of words to be displayed below the title on website. To disable, "
411
  "set value to 0."
412
  msgstr "Il numero di parole da mostrare sotto il titolo del sito. Per disabilitarlo, imposta il valore a 0."
413
 
 
 
 
 
 
 
 
 
414
  #: classes/settings/class-settings-license.php:18
415
  msgid "License"
416
+ msgstr "Licenza"
417
 
418
  #: classes/settings/class-settings-license.php:29
419
  msgid "License Status"
420
+ msgstr "Stato Licenza"
421
 
422
  #: classes/settings/class-settings-license.php:36
423
  msgid "License Key"
424
+ msgstr "Chiave Licenza"
425
 
426
  #: classes/settings/class-settings-license.php:37
427
  msgid ""
428
  "Your license key. You can find your license key in your %sMy Account%s page."
429
+ msgstr "La tua chiave di licenza. Puoi trovare la tua chiave di licenza nella tua pagina %sMy Account%s."
430
 
431
  #: classes/settings/class-settings-license.php:44
432
  msgid "Activation Email"
433
+ msgstr "Email di Attivazione"
434
 
435
  #: classes/settings/class-settings-license.php:45
436
  msgid ""
437
  "Your activation email address. You can find your activation email address in"
438
  " your %sMy Account%s page."
439
+ msgstr "Il tuo indirizzo email di attivazione. Puoi trovare il tuo indirizzo email di attivazione nella tua pagina %sMy Account%s."
440
 
441
  #: classes/settings/class-settings-misc.php:18
442
  msgid "Misc"
460
  "the plugin is deleted."
461
  msgstr "Seleziona questa opzione se vuoi rimuovere completamente tutti i dati del plugin quando viene cancellato."
462
 
463
+ #: classes/settings/class-settings-misc.php:36
464
+ msgid "Show love?"
465
+ msgstr "Mostrare amore?"
466
 
467
+ #: classes/settings/class-settings-misc.php:37
468
+ msgid ""
469
+ "Display a 'Powered by' line under your related posts. <strong>BEWARE! Only "
470
+ "for the real fans.</strong>"
471
+ msgstr "Mostra una riga 'Powered by' sotto i tuoi articoli correlati. <strong>ATTENZIONE! Solo per veri fan.</strong>"
 
 
 
 
 
 
 
 
 
 
472
 
473
+ #: classes/settings/class-settings-misc.php:43
474
+ msgid "Disable SSL Verification"
475
+ msgstr "Disabilita Verifica SSL"
476
 
477
+ #: classes/settings/class-settings-misc.php:44
478
  msgid ""
479
+ "Disable SSL verification in license requests. Check this if you've got "
480
+ "problems connecting to licensing server."
481
+ msgstr "Disabilita la verifica SSL nelle richieste per la licenza. Seleziona questa opzione solo se stai avendo problemi di connessione con il server per il controllo della licenza."
482
 
483
+ #: classes/settings/class-settings-page.php:448
484
+ msgid "ACTIVATED"
485
+ msgstr "ATTIVATO"
486
 
487
+ #: classes/settings/class-settings-page.php:450
488
+ msgid "NOT ACTIVE"
489
+ msgstr "NON ATTIVO"
 
 
490
 
491
  #: classes/settings/class-settings-weights.php:18
492
  msgid "Weights"
538
  msgid "The weight of custom taxonomies."
539
  msgstr "Il peso delle tassonomie personalizzate."
540
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  #: includes/updater/class-rp4wp-updater.php:131
542
  msgid "Hide notice"
543
  msgstr "Nascondi avviso"
languages/related-posts-for-wp-it_it.mo DELETED
Binary file
languages/related-posts-for-wp-nl_NL.mo CHANGED
Binary file
languages/related-posts-for-wp-nl_NL.po CHANGED
@@ -1,20 +1,19 @@
1
- # Copyright (C) 2014 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
5
- # Barry Kooij <mail@barrykooij.nl>, 2014
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Related Posts for WordPress\n"
9
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
10
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
11
- "PO-Revision-Date: 2014-12-28 16:26+0000\n"
12
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
13
- "Language-Team: Dutch (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/nl/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "Language: nl\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.8\n"
20
 
@@ -35,7 +34,7 @@ msgstr "Weet je zeker dat je dit gerelateerde bericht wilt verwijderen?"
35
  #: classes/class-link-related-table.php:45
36
  #: classes/hooks/class-hook-settings-page.php:20
37
  #: classes/meta-boxes/class-meta-box-manage.php:37
38
- #: classes/settings/class-settings-general.php:52
39
  msgid "Related Posts"
40
  msgstr "Gerelateerde Berichten"
41
 
@@ -49,25 +48,25 @@ msgid "Title"
49
  msgstr "Titel"
50
 
51
  #: classes/class-link-related-table.php:96
52
- #: classes/hooks/class-hook-page-install.php:220
53
  #: classes/hooks/class-hook-settings-page.php:152
54
  msgid "Post Type"
55
  msgstr "Post Type"
56
 
57
- #: classes/class-link-related-table.php:235
58
  msgid "Link Post"
59
  msgstr "Link Bericht"
60
 
61
- #: classes/class-link-related-table.php:243
62
  msgid "View Post"
63
  msgstr "Bekijk Post"
64
 
65
- #: classes/class-link-related-table.php:274
66
  msgid "Link Posts"
67
  msgstr "Link Berichten"
68
 
69
  #: classes/class-post-type-manager.php:21
70
- #: classes/hooks/class-hook-link-related-screen.php:138
71
  msgid "Posts"
72
  msgstr "Berichten"
73
 
@@ -87,131 +86,143 @@ msgstr "Toon gerelateerde berichten."
87
  msgid "Settings"
88
  msgstr "Instellingen"
89
 
90
- #: classes/hooks/class-hook-link-related-screen.php:139
91
  msgid "Cancel linking"
92
  msgstr "Annuleer linken"
93
 
94
- #: classes/hooks/class-hook-link-related-screen.php:155
95
  msgid "Search"
96
  msgstr "Zoeken"
97
 
98
- #: classes/hooks/class-hook-page-install.php:109
99
  msgid "Welcome"
100
  msgstr "Welkom"
101
 
102
- #: classes/hooks/class-hook-page-install.php:110
103
  msgid "Caching Posts"
104
  msgstr "Cachen van berichten"
105
 
106
- #: classes/hooks/class-hook-page-install.php:111
107
  msgid "Linking Posts"
108
  msgstr "Linken van berichten"
109
 
110
- #: classes/hooks/class-hook-page-install.php:112
111
  msgid "Finished"
112
  msgstr "Klaar"
113
 
114
- #: classes/hooks/class-hook-page-install.php:123
115
  msgid ""
116
- "Missing post type paramater, please report this incident via %sour "
117
  "website%s."
118
- msgstr "Post type parameter ontbreekt, meld dit incident a.u.b. op %sonze website%s."
119
 
120
- #: classes/hooks/class-hook-page-install.php:154
121
  msgid "Installation"
122
  msgstr "Installatie"
123
 
124
- #: classes/hooks/class-hook-page-install.php:201
125
- #: classes/hooks/class-hook-page-install.php:284
126
  msgid "Thank you for choosing Related Posts for WordPress!"
127
  msgstr "Bedankt voor het kiezen voor Related Posts for WordPress!"
128
 
129
- #: classes/hooks/class-hook-page-install.php:202
130
  msgid ""
131
  "Below you'll find your post types available for installation, by installing "
132
  "a post type we'll set up a cache and offer you the ability to automatic link"
133
  " (custom) posts. To install a post type, simply click the 'Install Post "
134
  "Type' button."
135
- msgstr "Hieronder vind je de beschikbare (custom) post types, wanneer je een post type installeert zullen wij de content cachen en je daarna de mogelijkheid bieden om automatisch gerelateerde content aan elkaar te koppelen. Om een post type te installeren, klik op de 'Installeer post type' knop."
136
 
137
- #: classes/hooks/class-hook-page-install.php:221
138
  msgid "Related to Post Types"
139
  msgstr "Gerelateerde Post Types"
140
 
141
- #: classes/hooks/class-hook-page-install.php:256
142
  msgid "Edit"
143
  msgstr "Bewerk"
144
 
145
- #: classes/hooks/class-hook-page-install.php:285
146
  msgid ""
147
  "Before you can start using Related Posts for WordPress we need to cache your"
148
  " current posts."
149
  msgstr "Voordat je Related Posts for WordPress kan gebruiken moeten we eerst je huidige berichten cachen."
150
 
151
- #: classes/hooks/class-hook-page-install.php:286
152
  msgid ""
153
  "This is a one time process which might take some time now, depending on the "
154
  "amount of posts you have, but will ensure your website's performance when "
155
  "using the plugin."
156
- msgstr "Dit is een eenmalig proces wat, afhankelijk van het aantal berichten dat je hebt, nu even kan duren maar wat er voor zorgt dat de prestatie van je website hoog blijft."
157
 
158
- #: classes/hooks/class-hook-page-install.php:288
159
  msgid ""
160
  "Do NOT close this window, wait for this process to finish and this wizard to"
161
  " take you to the next step."
162
  msgstr "Sluit dit venster NIET, wacht tot het proces klaar is en de wizard je naar de volgende stap stuurt."
163
 
164
- #: classes/hooks/class-hook-page-install.php:306
165
  msgid "Great! All your posts were successfully cached!"
166
  msgstr "Perfect! Al je berichten zijn succesvol gecached."
167
 
168
- #: classes/hooks/class-hook-page-install.php:307
169
  msgid ""
170
  "You can let me link your posts, based on what I think is related, to each "
171
  "other. And don't worry, if I made a mistake at one of your posts you can "
172
  "easily correct this by editing it manually!"
173
- msgstr "Je kan mij, op basis van wat ik denk dat gerelateerd is, je berichten aan elkaar laten koppelen. Maak je geen zorgen, als ik een fout gemaakt hebt kan je deze gemakkelijk later corrigeren!"
174
 
175
- #: classes/hooks/class-hook-page-install.php:308
176
  msgid ""
177
  "Want me to start linking posts to each other? Fill in the amount of related "
178
  "posts each post should have and click on the \"Link now\" button. Rather "
179
  "link your posts manually? Click \"Skip linking\"."
180
- msgstr "Wil je dat ik begin met het linken van gerelateerde berichten? Vul het aantal gerelateerde berichten in dat ieder bericht moet krijgen en klik op \"Nu linken\". Liever je berichten handmatig linken? Klik op \"Sla linken over\"."
181
 
182
- #: classes/hooks/class-hook-page-install.php:309
183
  msgid ""
184
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
185
  " process to finish and this wizard to take you to the next step."
186
  msgstr "Sluit dit venster NIET wanneer je \"Nu linken\" hebt gekozen, wacht tot het proces klaar is en de wizard je naar de volgende stap stuurt."
187
 
188
- #: classes/hooks/class-hook-page-install.php:313
189
- msgid "Amount of related posts per post:"
190
- msgstr "Aantal gerelateerde berichten per bericht:"
 
 
 
 
 
 
 
 
191
 
192
- #: classes/hooks/class-hook-page-install.php:317
 
 
 
 
193
  msgid "Link now"
194
  msgstr "Nu linken"
195
 
196
- #: classes/hooks/class-hook-page-install.php:319
197
  msgid "Skip linking"
198
  msgstr "Sla linken over"
199
 
200
- #: classes/hooks/class-hook-page-install.php:327
201
  msgid "That's it, you're good to go!"
202
  msgstr "Super, de wizard is klaar en je hebt nu gerelateerde berichten op je website!"
203
 
204
- #: classes/hooks/class-hook-page-install.php:328
205
  msgid ""
206
  "Thanks again for using Related Posts for WordPress and if you have any "
207
  "questions be sure to ask them at the %sWordPress.org forums.%s"
208
  msgstr "Nogmaals bedankt voor het kiezen voor Related Posts for WordPress en als je nog vragen hebt kan je deze stellen op %shet WordPress.org forum%s."
209
 
210
- #: classes/hooks/class-hook-page-install.php:331
211
  msgid "Click here to return to step 1"
212
  msgstr "Klik hier om terug te gaan naar stap 1"
213
 
214
- #: classes/hooks/class-hook-page-install.php:337
215
  msgid "Click here to go to the settings page"
216
  msgstr "Klik hier om naar de instellingen pagina te gaan"
217
 
@@ -289,6 +300,49 @@ msgstr "Ontkoppel Related Post"
289
  msgid "No related posts found."
290
  msgstr "Geen gerelateerde berichten gevonden."
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  #: classes/settings/class-settings-general.php:18
293
  msgid "General settings for %s"
294
  msgstr "Algemene instellingen voor %s"
@@ -319,43 +373,43 @@ msgstr "Aantal berichten"
319
  msgid "The amount of automatically linked %ss"
320
  msgstr "Het aantal automatisch gekoppelde %s"
321
 
 
 
 
 
322
  #: classes/settings/class-settings-general.php:44
 
 
 
 
323
  msgid "Frontend Settings"
324
  msgstr "Frontend Instellingen"
325
 
326
- #: classes/settings/class-settings-general.php:45
327
  msgid ""
328
  "The following options affect how related %ss are displayed on the frontend."
329
  msgstr "De volgende opties beïnvloeden hoe gerelateerde %s getoond worden aan de voorkant van de website. "
330
 
331
- #: classes/settings/class-settings-general.php:49
332
  msgid "Heading text"
333
  msgstr "Titel tekst"
334
 
335
- #: classes/settings/class-settings-general.php:50
336
  msgid ""
337
  "The text that is displayed above the related %ss. To disable, leave field "
338
  "empty."
339
  msgstr "De tekst welke boven de gerelateerde %s getoond wordt. Laat het veld leeg om uit te schakelen."
340
 
341
- #: classes/settings/class-settings-general.php:56
342
  msgid "Excerpt length"
343
  msgstr "Samenvatting lengte"
344
 
345
- #: classes/settings/class-settings-general.php:57
346
  msgid ""
347
  "The amount of words to be displayed below the title on website. To disable, "
348
  "set value to 0."
349
  msgstr "Het aantal woorden dat getoond wordt onder de titel. Vul 0 in om het uit te schakelen."
350
 
351
- #: classes/settings/class-settings-general.php:63
352
- msgid "Display Image"
353
- msgstr "Toon afbeelding"
354
-
355
- #: classes/settings/class-settings-general.php:64
356
- msgid "Checking this will enable displaying featured images of related %ss."
357
- msgstr "Door dit aan te vinken schakel je het tonen van uitgelichte afbeeldingen in voor %s."
358
-
359
  #: classes/settings/class-settings-license.php:18
360
  msgid "License"
361
  msgstr "Licentie"
@@ -405,45 +459,33 @@ msgid ""
405
  "the plugin is deleted."
406
  msgstr "Door dit aan te vinken zullen alle plugin gegevens verwijderd worden waneer u de plugin verwijderd."
407
 
408
- #: classes/settings/class-settings-page.php:450
409
- msgid "ACTIVATED"
410
- msgstr "GEACTIVEERD"
411
-
412
- #: classes/settings/class-settings-page.php:452
413
- msgid "NOT ACTIVE"
414
- msgstr "NIET ACTIEF"
415
-
416
- #: classes/settings/class-settings-themes.php:18
417
- msgid "Styling"
418
- msgstr "Styling"
419
-
420
- #: classes/settings/class-settings-themes.php:31
421
- msgid "Styling settings"
422
- msgstr "Styling instellingen"
423
 
424
- #: classes/settings/class-settings-themes.php:32
425
- msgid "Control how your related posts are displayed on your website."
426
- msgstr "Beheers hoe je gerelateerde berichten getoond worden op je website."
 
 
427
 
428
- #: classes/settings/class-settings-themes.php:36
429
- msgid "Themes"
430
- msgstr "Thema's"
431
 
432
- #: classes/settings/class-settings-themes.php:37
433
  msgid ""
434
- "Select one of the CSS themes above to display your related posts the way you"
435
- " like to."
436
- msgstr "Kies een CSS thema hierboven om je gerelateerde berichten te tonen zoals jij dat wilt."
437
 
438
- #: classes/settings/class-settings-themes.php:43
439
- msgid "Custom CSS"
440
- msgstr "Eigen CSS"
441
 
442
- #: classes/settings/class-settings-themes.php:44
443
- msgid ""
444
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
445
- "error here will break frontend display. To disable, leave field empty."
446
- msgstr "Voeg je eigen CSS toe aan het hierboven gekozen thema. Dit is een geavanceerde instelling! Een fout hier zal voor ongewenste effecten zorgen op je website. Laat dit veld leeg om het uit te schakelen."
447
 
448
  #: classes/settings/class-settings-weights.php:18
449
  msgid "Weights"
@@ -495,18 +537,6 @@ msgstr "Custom Taxonomieën."
495
  msgid "The weight of custom taxonomies."
496
  msgstr "Het gewicht van de custom taxonomieën."
497
 
498
- #: classes/themes/class-theme-column-one.php:13
499
- msgid "One related post item per row."
500
- msgstr "Één gerelateerd bericht per rij."
501
-
502
- #: classes/themes/class-theme-column-three.php:13
503
- msgid "Three related post items per row."
504
- msgstr "Drie gerelateerde berichten per rij."
505
-
506
- #: classes/themes/class-theme-column-two.php:13
507
- msgid "Two related post items per row."
508
- msgstr "Twee gerelateerde berichten per rij."
509
-
510
  #: includes/updater/class-rp4wp-updater.php:131
511
  msgid "Hide notice"
512
  msgstr "Verberg bericht"
1
+ # Copyright (C) 2015 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
 
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Related Posts for WordPress\n"
8
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
9
+ "POT-Creation-Date: 2015-05-31 09:56:12+00:00\n"
10
+ "PO-Revision-Date: 2015-06-07 19:28+0000\n"
11
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
12
+ "Language-Team: Dutch (Netherlands) (http://www.transifex.com/barrykooijplugins/related-posts-for-wordpress/language/nl_NL/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: nl_NL\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Generator: grunt-wp-i18n 0.4.8\n"
19
 
34
  #: classes/class-link-related-table.php:45
35
  #: classes/hooks/class-hook-settings-page.php:20
36
  #: classes/meta-boxes/class-meta-box-manage.php:37
37
+ #: classes/settings/class-settings-general.php:59
38
  msgid "Related Posts"
39
  msgstr "Gerelateerde Berichten"
40
 
48
  msgstr "Titel"
49
 
50
  #: classes/class-link-related-table.php:96
51
+ #: classes/hooks/class-hook-page-install.php:168
52
  #: classes/hooks/class-hook-settings-page.php:152
53
  msgid "Post Type"
54
  msgstr "Post Type"
55
 
56
+ #: classes/class-link-related-table.php:260
57
  msgid "Link Post"
58
  msgstr "Link Bericht"
59
 
60
+ #: classes/class-link-related-table.php:268
61
  msgid "View Post"
62
  msgstr "Bekijk Post"
63
 
64
+ #: classes/class-link-related-table.php:299
65
  msgid "Link Posts"
66
  msgstr "Link Berichten"
67
 
68
  #: classes/class-post-type-manager.php:21
69
+ #: classes/hooks/class-hook-link-related-screen.php:155
70
  msgid "Posts"
71
  msgstr "Berichten"
72
 
86
  msgid "Settings"
87
  msgstr "Instellingen"
88
 
89
+ #: classes/hooks/class-hook-link-related-screen.php:157
90
  msgid "Cancel linking"
91
  msgstr "Annuleer linken"
92
 
93
+ #: classes/hooks/class-hook-link-related-screen.php:173
94
  msgid "Search"
95
  msgstr "Zoeken"
96
 
97
+ #: classes/hooks/class-hook-page-install.php:57
98
  msgid "Welcome"
99
  msgstr "Welkom"
100
 
101
+ #: classes/hooks/class-hook-page-install.php:58
102
  msgid "Caching Posts"
103
  msgstr "Cachen van berichten"
104
 
105
+ #: classes/hooks/class-hook-page-install.php:59
106
  msgid "Linking Posts"
107
  msgstr "Linken van berichten"
108
 
109
+ #: classes/hooks/class-hook-page-install.php:60
110
  msgid "Finished"
111
  msgstr "Klaar"
112
 
113
+ #: classes/hooks/class-hook-page-install.php:71
114
  msgid ""
115
+ "Missing post type parameter, please report this incident via %sour "
116
  "website%s."
117
+ msgstr "De post type parameter ontbreekt, neem a.u.b. contact op via %sonze website%."
118
 
119
+ #: classes/hooks/class-hook-page-install.php:102
120
  msgid "Installation"
121
  msgstr "Installatie"
122
 
123
+ #: classes/hooks/class-hook-page-install.php:149
124
+ #: classes/hooks/class-hook-page-install.php:228
125
  msgid "Thank you for choosing Related Posts for WordPress!"
126
  msgstr "Bedankt voor het kiezen voor Related Posts for WordPress!"
127
 
128
+ #: classes/hooks/class-hook-page-install.php:150
129
  msgid ""
130
  "Below you'll find your post types available for installation, by installing "
131
  "a post type we'll set up a cache and offer you the ability to automatic link"
132
  " (custom) posts. To install a post type, simply click the 'Install Post "
133
  "Type' button."
134
+ msgstr "Hieronder vind je de beschikbare (custom) post types. Wanneer je een post type installeert zullen wij de content cachen en je daarna de mogelijkheid bieden om automatisch gerelateerde content aan elkaar te koppelen. Om een post type te installeren, klik op de 'Installeer post type' knop."
135
 
136
+ #: classes/hooks/class-hook-page-install.php:169
137
  msgid "Related to Post Types"
138
  msgstr "Gerelateerde Post Types"
139
 
140
+ #: classes/hooks/class-hook-page-install.php:204
141
  msgid "Edit"
142
  msgstr "Bewerk"
143
 
144
+ #: classes/hooks/class-hook-page-install.php:229
145
  msgid ""
146
  "Before you can start using Related Posts for WordPress we need to cache your"
147
  " current posts."
148
  msgstr "Voordat je Related Posts for WordPress kan gebruiken moeten we eerst je huidige berichten cachen."
149
 
150
+ #: classes/hooks/class-hook-page-install.php:230
151
  msgid ""
152
  "This is a one time process which might take some time now, depending on the "
153
  "amount of posts you have, but will ensure your website's performance when "
154
  "using the plugin."
155
+ msgstr "Dit is een eenmalig proces wat nu even kan duren, afhankelijk van het aantal berichten dat je hebt. Het zorgt er wel voor dat de prestatie van je website hoog blijft."
156
 
157
+ #: classes/hooks/class-hook-page-install.php:232
158
  msgid ""
159
  "Do NOT close this window, wait for this process to finish and this wizard to"
160
  " take you to the next step."
161
  msgstr "Sluit dit venster NIET, wacht tot het proces klaar is en de wizard je naar de volgende stap stuurt."
162
 
163
+ #: classes/hooks/class-hook-page-install.php:266
164
  msgid "Great! All your posts were successfully cached!"
165
  msgstr "Perfect! Al je berichten zijn succesvol gecached."
166
 
167
+ #: classes/hooks/class-hook-page-install.php:267
168
  msgid ""
169
  "You can let me link your posts, based on what I think is related, to each "
170
  "other. And don't worry, if I made a mistake at one of your posts you can "
171
  "easily correct this by editing it manually!"
172
+ msgstr "Je kunt mij, op basis van wat ik denk dat gerelateerd is, je berichten aan elkaar laten koppelen. Maak je geen zorgen, als ik een fout heb gemaakt kun je deze later gemakkelijk corrigeren!"
173
 
174
+ #: classes/hooks/class-hook-page-install.php:268
175
  msgid ""
176
  "Want me to start linking posts to each other? Fill in the amount of related "
177
  "posts each post should have and click on the \"Link now\" button. Rather "
178
  "link your posts manually? Click \"Skip linking\"."
179
+ msgstr "Wil je dat ik begin met het linken van gerelateerde berichten? Vul het aantal gerelateerde berichten dat ieder bericht moet krijgen in en klik op \"Nu linken\". Liever je berichten handmatig linken? Klik op \"Sla linken over\"."
180
 
181
+ #: classes/hooks/class-hook-page-install.php:269
182
  msgid ""
183
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
184
  " process to finish and this wizard to take you to the next step."
185
  msgstr "Sluit dit venster NIET wanneer je \"Nu linken\" hebt gekozen, wacht tot het proces klaar is en de wizard je naar de volgende stap stuurt."
186
 
187
+ #: classes/hooks/class-hook-page-install.php:275
188
+ msgid "Amount of related posts:"
189
+ msgstr "Aantal gerelateerde berichten:"
190
+
191
+ #: classes/hooks/class-hook-page-install.php:277
192
+ msgid "The amount of related items per %s"
193
+ msgstr "Het aantal gerelateerde berichten per %s"
194
+
195
+ #: classes/hooks/class-hook-page-install.php:282
196
+ msgid "Maximum Post Age:"
197
+ msgstr "Maximum Post Leeftijd:"
198
 
199
+ #: classes/hooks/class-hook-page-install.php:284
200
+ msgid "The maximum age in days of %s that will be linked. (0 = unlimited)"
201
+ msgstr "De maximum leeftijd in dagen van %s die gelinked worden (0 = oneindig)"
202
+
203
+ #: classes/hooks/class-hook-page-install.php:290
204
  msgid "Link now"
205
  msgstr "Nu linken"
206
 
207
+ #: classes/hooks/class-hook-page-install.php:291
208
  msgid "Skip linking"
209
  msgstr "Sla linken over"
210
 
211
+ #: classes/hooks/class-hook-page-install.php:309
212
  msgid "That's it, you're good to go!"
213
  msgstr "Super, de wizard is klaar en je hebt nu gerelateerde berichten op je website!"
214
 
215
+ #: classes/hooks/class-hook-page-install.php:310
216
  msgid ""
217
  "Thanks again for using Related Posts for WordPress and if you have any "
218
  "questions be sure to ask them at the %sWordPress.org forums.%s"
219
  msgstr "Nogmaals bedankt voor het kiezen voor Related Posts for WordPress en als je nog vragen hebt kan je deze stellen op %shet WordPress.org forum%s."
220
 
221
+ #: classes/hooks/class-hook-page-install.php:313
222
  msgid "Click here to return to step 1"
223
  msgstr "Klik hier om terug te gaan naar stap 1"
224
 
225
+ #: classes/hooks/class-hook-page-install.php:319
226
  msgid "Click here to go to the settings page"
227
  msgstr "Klik hier om naar de instellingen pagina te gaan"
228
 
300
  msgid "No related posts found."
301
  msgstr "Geen gerelateerde berichten gevonden."
302
 
303
+ #: classes/meta-boxes/class-meta-box-options.php:37
304
+ msgid "Related Posts Options"
305
+ msgstr "Gerelateerde Post Opties"
306
+
307
+ #: classes/meta-boxes/class-meta-box-options.php:59
308
+ msgid "Exclude"
309
+ msgstr "Uitsluiten"
310
+
311
+ #: classes/settings/class-settings-configurator.php:18
312
+ msgid "Styling"
313
+ msgstr "Styling"
314
+
315
+ #: classes/settings/class-settings-configurator.php:24
316
+ msgid "Full control on how your related posts are displayed."
317
+ msgstr "Volledige controle over hoe je gerelateerde berichten weergegeven worden."
318
+
319
+ #: classes/settings/class-settings-configurator.php:33
320
+ msgid "Posts per row"
321
+ msgstr "Posts per rij"
322
+
323
+ #: classes/settings/class-settings-configurator.php:34
324
+ msgid "The amount of related posts per row."
325
+ msgstr "Het aantal gerelateerde berichten per rij."
326
+
327
+ #: classes/settings/class-settings-configurator.php:46
328
+ msgid "Row fixed height"
329
+ msgstr "Vaste rij hoogte"
330
+
331
+ #: classes/settings/class-settings-configurator.php:47
332
+ msgid ""
333
+ "The fixed height per row in pixels, set to 0 to allow dynamic heights.."
334
+ msgstr "De vaste hoogte van een rij in pixels, zet op 0 voor een dynamische hoogte."
335
+
336
+ #: classes/settings/class-settings-configurator.php:53
337
+ msgid "Custom CSS"
338
+ msgstr "Eigen CSS"
339
+
340
+ #: classes/settings/class-settings-configurator.php:54
341
+ msgid ""
342
+ "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
343
+ "error here will break frontend display. To disable, leave field empty."
344
+ msgstr "Voeg je eigen CSS toe aan het hierboven gekozen thema. Dit is een geavanceerde instelling! Een fout hier zal voor ongewenste effecten zorgen op je website. Laat dit veld leeg om het uit te schakelen."
345
+
346
  #: classes/settings/class-settings-general.php:18
347
  msgid "General settings for %s"
348
  msgstr "Algemene instellingen voor %s"
373
  msgid "The amount of automatically linked %ss"
374
  msgstr "Het aantal automatisch gekoppelde %s"
375
 
376
+ #: classes/settings/class-settings-general.php:43
377
+ msgid "Maximum Post Age"
378
+ msgstr "Maximum Post Leeftijd"
379
+
380
  #: classes/settings/class-settings-general.php:44
381
+ msgid "The maximum age in days of %ss that will be linked. (0 = unlimited)"
382
+ msgstr "De maximum leeftijd in dagen van %s die gelinked worden (0 = oneindig)"
383
+
384
+ #: classes/settings/class-settings-general.php:51
385
  msgid "Frontend Settings"
386
  msgstr "Frontend Instellingen"
387
 
388
+ #: classes/settings/class-settings-general.php:52
389
  msgid ""
390
  "The following options affect how related %ss are displayed on the frontend."
391
  msgstr "De volgende opties beïnvloeden hoe gerelateerde %s getoond worden aan de voorkant van de website. "
392
 
393
+ #: classes/settings/class-settings-general.php:56
394
  msgid "Heading text"
395
  msgstr "Titel tekst"
396
 
397
+ #: classes/settings/class-settings-general.php:57
398
  msgid ""
399
  "The text that is displayed above the related %ss. To disable, leave field "
400
  "empty."
401
  msgstr "De tekst welke boven de gerelateerde %s getoond wordt. Laat het veld leeg om uit te schakelen."
402
 
403
+ #: classes/settings/class-settings-general.php:63
404
  msgid "Excerpt length"
405
  msgstr "Samenvatting lengte"
406
 
407
+ #: classes/settings/class-settings-general.php:64
408
  msgid ""
409
  "The amount of words to be displayed below the title on website. To disable, "
410
  "set value to 0."
411
  msgstr "Het aantal woorden dat getoond wordt onder de titel. Vul 0 in om het uit te schakelen."
412
 
 
 
 
 
 
 
 
 
413
  #: classes/settings/class-settings-license.php:18
414
  msgid "License"
415
  msgstr "Licentie"
459
  "the plugin is deleted."
460
  msgstr "Door dit aan te vinken zullen alle plugin gegevens verwijderd worden waneer u de plugin verwijderd."
461
 
462
+ #: classes/settings/class-settings-misc.php:36
463
+ msgid "Show love?"
464
+ msgstr "Toon liefde?"
 
 
 
 
 
 
 
 
 
 
 
 
465
 
466
+ #: classes/settings/class-settings-misc.php:37
467
+ msgid ""
468
+ "Display a 'Powered by' line under your related posts. <strong>BEWARE! Only "
469
+ "for the real fans.</strong>"
470
+ msgstr "Toon a 'Powered by' regel onder je gerelateerde berichten. <strong>LET OP! Enkel voor de echte fans.</strong>"
471
 
472
+ #: classes/settings/class-settings-misc.php:43
473
+ msgid "Disable SSL Verification"
474
+ msgstr "Zet SSL Verificatie uit"
475
 
476
+ #: classes/settings/class-settings-misc.php:44
477
  msgid ""
478
+ "Disable SSL verification in license requests. Check this if you've got "
479
+ "problems connecting to licensing server."
480
+ msgstr "Zet SSL verificatie in licentie connectie uit. Zet dit aan als je problemen hebt met verbinding maken met de licentie server."
481
 
482
+ #: classes/settings/class-settings-page.php:448
483
+ msgid "ACTIVATED"
484
+ msgstr "GEACTIVEERD"
485
 
486
+ #: classes/settings/class-settings-page.php:450
487
+ msgid "NOT ACTIVE"
488
+ msgstr "NIET ACTIEF"
 
 
489
 
490
  #: classes/settings/class-settings-weights.php:18
491
  msgid "Weights"
537
  msgid "The weight of custom taxonomies."
538
  msgstr "Het gewicht van de custom taxonomieën."
539
 
 
 
 
 
 
 
 
 
 
 
 
 
540
  #: includes/updater/class-rp4wp-updater.php:131
541
  msgid "Hide notice"
542
  msgstr "Verberg bericht"
languages/related-posts-for-wp-no_no.mo DELETED
Binary file
languages/related-posts-for-wp-no_no.po DELETED
@@ -1,531 +0,0 @@
1
- # Copyright (C) 2014 Barry Kooij
2
- # This file is distributed under the GPL v3.
3
- # Translators:
4
- # Barry Kooij <mail@barrykooij.nl>, 2014
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: Related Posts for WordPress\n"
8
- "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
9
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
10
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
11
- "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
12
- "Language-Team: Norwegian (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/no/)\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "Language: no\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: grunt-wp-i18n 0.4.8\n"
19
-
20
- #: classes/class-is-installing-notice.php:74
21
- msgid ""
22
- "Woah! Looks like we weren't able to finish your Related Posts for WordPress "
23
- "installation wizard!"
24
- msgstr ""
25
-
26
- #: classes/class-is-installing-notice.php:76
27
- msgid "%sResume the installation wizard%s or %sdismiss this notice%s"
28
- msgstr ""
29
-
30
- #: classes/class-javascript-strings.php:14
31
- msgid "Are you sure you want to delete this related post?"
32
- msgstr ""
33
-
34
- #: classes/class-link-related-table.php:45
35
- #: classes/hooks/class-hook-settings-page.php:20
36
- #: classes/meta-boxes/class-meta-box-manage.php:37
37
- #: classes/settings/class-settings-general.php:52
38
- msgid "Related Posts"
39
- msgstr ""
40
-
41
- #: classes/class-link-related-table.php:46
42
- msgid "All Posts"
43
- msgstr ""
44
-
45
- #: classes/class-link-related-table.php:95
46
- #: classes/settings/class-settings-weights.php:29
47
- msgid "Title"
48
- msgstr ""
49
-
50
- #: classes/class-link-related-table.php:96
51
- #: classes/hooks/class-hook-page-install.php:220
52
- #: classes/hooks/class-hook-settings-page.php:152
53
- msgid "Post Type"
54
- msgstr ""
55
-
56
- #: classes/class-link-related-table.php:235
57
- msgid "Link Post"
58
- msgstr ""
59
-
60
- #: classes/class-link-related-table.php:243
61
- msgid "View Post"
62
- msgstr ""
63
-
64
- #: classes/class-link-related-table.php:274
65
- msgid "Link Posts"
66
- msgstr ""
67
-
68
- #: classes/class-post-type-manager.php:21
69
- #: classes/hooks/class-hook-link-related-screen.php:138
70
- msgid "Posts"
71
- msgstr ""
72
-
73
- #: classes/class-post-type-manager.php:22
74
- msgid "Pages"
75
- msgstr ""
76
-
77
- #: classes/class-related-posts-widget.php:13
78
- msgid "Related Posts for WordPress"
79
- msgstr ""
80
-
81
- #: classes/class-related-posts-widget.php:14
82
- msgid "Display related posts."
83
- msgstr ""
84
-
85
- #: classes/filters/class-filter-plugin-links.php:29
86
- msgid "Settings"
87
- msgstr ""
88
-
89
- #: classes/hooks/class-hook-link-related-screen.php:139
90
- msgid "Cancel linking"
91
- msgstr ""
92
-
93
- #: classes/hooks/class-hook-link-related-screen.php:155
94
- msgid "Search"
95
- msgstr ""
96
-
97
- #: classes/hooks/class-hook-page-install.php:109
98
- msgid "Welcome"
99
- msgstr ""
100
-
101
- #: classes/hooks/class-hook-page-install.php:110
102
- msgid "Caching Posts"
103
- msgstr ""
104
-
105
- #: classes/hooks/class-hook-page-install.php:111
106
- msgid "Linking Posts"
107
- msgstr ""
108
-
109
- #: classes/hooks/class-hook-page-install.php:112
110
- msgid "Finished"
111
- msgstr ""
112
-
113
- #: classes/hooks/class-hook-page-install.php:123
114
- msgid ""
115
- "Missing post type paramater, please report this incident via %sour "
116
- "website%s."
117
- msgstr ""
118
-
119
- #: classes/hooks/class-hook-page-install.php:154
120
- msgid "Installation"
121
- msgstr ""
122
-
123
- #: classes/hooks/class-hook-page-install.php:201
124
- #: classes/hooks/class-hook-page-install.php:284
125
- msgid "Thank you for choosing Related Posts for WordPress!"
126
- msgstr ""
127
-
128
- #: classes/hooks/class-hook-page-install.php:202
129
- msgid ""
130
- "Below you'll find your post types available for installation, by installing "
131
- "a post type we'll set up a cache and offer you the ability to automatic link"
132
- " (custom) posts. To install a post type, simply click the 'Install Post "
133
- "Type' button."
134
- msgstr ""
135
-
136
- #: classes/hooks/class-hook-page-install.php:221
137
- msgid "Related to Post Types"
138
- msgstr ""
139
-
140
- #: classes/hooks/class-hook-page-install.php:256
141
- msgid "Edit"
142
- msgstr ""
143
-
144
- #: classes/hooks/class-hook-page-install.php:285
145
- msgid ""
146
- "Before you can start using Related Posts for WordPress we need to cache your"
147
- " current posts."
148
- msgstr ""
149
-
150
- #: classes/hooks/class-hook-page-install.php:286
151
- msgid ""
152
- "This is a one time process which might take some time now, depending on the "
153
- "amount of posts you have, but will ensure your website's performance when "
154
- "using the plugin."
155
- msgstr ""
156
-
157
- #: classes/hooks/class-hook-page-install.php:288
158
- msgid ""
159
- "Do NOT close this window, wait for this process to finish and this wizard to"
160
- " take you to the next step."
161
- msgstr ""
162
-
163
- #: classes/hooks/class-hook-page-install.php:306
164
- msgid "Great! All your posts were successfully cached!"
165
- msgstr ""
166
-
167
- #: classes/hooks/class-hook-page-install.php:307
168
- msgid ""
169
- "You can let me link your posts, based on what I think is related, to each "
170
- "other. And don't worry, if I made a mistake at one of your posts you can "
171
- "easily correct this by editing it manually!"
172
- msgstr ""
173
-
174
- #: classes/hooks/class-hook-page-install.php:308
175
- msgid ""
176
- "Want me to start linking posts to each other? Fill in the amount of related "
177
- "posts each post should have and click on the \"Link now\" button. Rather "
178
- "link your posts manually? Click \"Skip linking\"."
179
- msgstr ""
180
-
181
- #: classes/hooks/class-hook-page-install.php:309
182
- msgid ""
183
- "Do NOT close this window if you click the \"Link now\" button, wait for this"
184
- " process to finish and this wizard to take you to the next step."
185
- msgstr ""
186
-
187
- #: classes/hooks/class-hook-page-install.php:313
188
- msgid "Amount of related posts per post:"
189
- msgstr ""
190
-
191
- #: classes/hooks/class-hook-page-install.php:317
192
- msgid "Link now"
193
- msgstr ""
194
-
195
- #: classes/hooks/class-hook-page-install.php:319
196
- msgid "Skip linking"
197
- msgstr ""
198
-
199
- #: classes/hooks/class-hook-page-install.php:327
200
- msgid "That's it, you're good to go!"
201
- msgstr ""
202
-
203
- #: classes/hooks/class-hook-page-install.php:328
204
- msgid ""
205
- "Thanks again for using Related Posts for WordPress and if you have any "
206
- "questions be sure to ask them at the %sWordPress.org forums.%s"
207
- msgstr ""
208
-
209
- #: classes/hooks/class-hook-page-install.php:331
210
- msgid "Click here to return to step 1"
211
- msgstr ""
212
-
213
- #: classes/hooks/class-hook-page-install.php:337
214
- msgid "Click here to go to the settings page"
215
- msgstr ""
216
-
217
- #: classes/hooks/class-hook-settings-page.php:57
218
- msgid "Plugin version"
219
- msgstr ""
220
-
221
- #: classes/hooks/class-hook-settings-page.php:63
222
- msgid ""
223
- "Got a question? Simply send us an email at "
224
- "%ssupport@relatedpostsforwp.com%s. Please note that support requires an "
225
- "active license."
226
- msgstr ""
227
-
228
- #: classes/hooks/class-hook-settings-page.php:67
229
- msgid "More information"
230
- msgstr ""
231
-
232
- #: classes/hooks/class-hook-settings-page.php:69
233
- msgid "<a href='%s'>Documentation</a>"
234
- msgstr ""
235
-
236
- #: classes/hooks/class-hook-settings-page.php:71
237
- msgid "<a href='%s'>Changelog</a>"
238
- msgstr ""
239
-
240
- #: classes/hooks/class-hook-settings-page.php:73
241
- msgid "<a href='%s'>Give us a review</a>"
242
- msgstr ""
243
-
244
- #: classes/hooks/class-hook-settings-page.php:78
245
- msgid "About the developer"
246
- msgstr ""
247
-
248
- #: classes/hooks/class-hook-settings-page.php:80
249
- msgid ""
250
- "Barry is a WordPress developer that works on WooCommerce and is the author "
251
- "of various WordPress plugins that include Related Posts for WordPress, Post "
252
- "Connector and What The File."
253
- msgstr ""
254
-
255
- #: classes/hooks/class-hook-settings-page.php:82
256
- msgid ""
257
- "Barry likes contributing to open source projects and visiting WordCamps and "
258
- "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
259
- msgstr ""
260
-
261
- #: classes/hooks/class-hook-settings-page.php:84
262
- msgid "%sFollow Barry on Twitter%s."
263
- msgstr ""
264
-
265
- #: classes/hooks/class-hook-settings-page.php:110
266
- msgid "General"
267
- msgstr ""
268
-
269
- #: classes/hooks/class-hook-settings-page.php:130
270
- msgid "Installer"
271
- msgstr ""
272
-
273
- #: classes/meta-boxes/class-meta-box-manage.php:80
274
- msgid "Add Related Posts"
275
- msgstr ""
276
-
277
- #: classes/meta-boxes/class-meta-box-manage.php:103
278
- #: classes/meta-boxes/class-meta-box-manage.php:104
279
- msgid "Edit Post"
280
- msgstr ""
281
-
282
- #: classes/meta-boxes/class-meta-box-manage.php:106
283
- #: classes/meta-boxes/class-meta-box-manage.php:107
284
- msgid "Unlink Related Post"
285
- msgstr ""
286
-
287
- #: classes/meta-boxes/class-meta-box-manage.php:120
288
- msgid "No related posts found."
289
- msgstr ""
290
-
291
- #: classes/settings/class-settings-general.php:18
292
- msgid "General settings for %s"
293
- msgstr ""
294
-
295
- #: classes/settings/class-settings-general.php:24
296
- msgid "Automatic %ss linking"
297
- msgstr ""
298
-
299
- #: classes/settings/class-settings-general.php:25
300
- msgid ""
301
- "The following options affect how related posts are automatically linked for "
302
- "%ss."
303
- msgstr ""
304
-
305
- #: classes/settings/class-settings-general.php:29
306
- msgid "Enable"
307
- msgstr ""
308
-
309
- #: classes/settings/class-settings-general.php:30
310
- msgid "Checking this will enable automatically linking posts to new %ss"
311
- msgstr ""
312
-
313
- #: classes/settings/class-settings-general.php:36
314
- msgid "Amount of Posts"
315
- msgstr ""
316
-
317
- #: classes/settings/class-settings-general.php:37
318
- msgid "The amount of automatically linked %ss"
319
- msgstr ""
320
-
321
- #: classes/settings/class-settings-general.php:44
322
- msgid "Frontend Settings"
323
- msgstr ""
324
-
325
- #: classes/settings/class-settings-general.php:45
326
- msgid ""
327
- "The following options affect how related %ss are displayed on the frontend."
328
- msgstr ""
329
-
330
- #: classes/settings/class-settings-general.php:49
331
- msgid "Heading text"
332
- msgstr ""
333
-
334
- #: classes/settings/class-settings-general.php:50
335
- msgid ""
336
- "The text that is displayed above the related %ss. To disable, leave field "
337
- "empty."
338
- msgstr ""
339
-
340
- #: classes/settings/class-settings-general.php:56
341
- msgid "Excerpt length"
342
- msgstr ""
343
-
344
- #: classes/settings/class-settings-general.php:57
345
- msgid ""
346
- "The amount of words to be displayed below the title on website. To disable, "
347
- "set value to 0."
348
- msgstr ""
349
-
350
- #: classes/settings/class-settings-general.php:63
351
- msgid "Display Image"
352
- msgstr ""
353
-
354
- #: classes/settings/class-settings-general.php:64
355
- msgid "Checking this will enable displaying featured images of related %ss."
356
- msgstr ""
357
-
358
- #: classes/settings/class-settings-license.php:18
359
- msgid "License"
360
- msgstr ""
361
-
362
- #: classes/settings/class-settings-license.php:29
363
- msgid "License Status"
364
- msgstr ""
365
-
366
- #: classes/settings/class-settings-license.php:36
367
- msgid "License Key"
368
- msgstr ""
369
-
370
- #: classes/settings/class-settings-license.php:37
371
- msgid ""
372
- "Your license key. You can find your license key in your %sMy Account%s page."
373
- msgstr ""
374
-
375
- #: classes/settings/class-settings-license.php:44
376
- msgid "Activation Email"
377
- msgstr ""
378
-
379
- #: classes/settings/class-settings-license.php:45
380
- msgid ""
381
- "Your activation email address. You can find your activation email address in"
382
- " your %sMy Account%s page."
383
- msgstr ""
384
-
385
- #: classes/settings/class-settings-misc.php:18
386
- msgid "Misc"
387
- msgstr ""
388
-
389
- #: classes/settings/class-settings-misc.php:24
390
- msgid "Miscellaneous Settings"
391
- msgstr ""
392
-
393
- #: classes/settings/class-settings-misc.php:25
394
- msgid "A shelter for options that just don't fit in."
395
- msgstr ""
396
-
397
- #: classes/settings/class-settings-misc.php:29
398
- msgid "Remove Data on Uninstall?"
399
- msgstr ""
400
-
401
- #: classes/settings/class-settings-misc.php:30
402
- msgid ""
403
- "Check this box if you would like to completely remove all of its data when "
404
- "the plugin is deleted."
405
- msgstr ""
406
-
407
- #: classes/settings/class-settings-page.php:450
408
- msgid "ACTIVATED"
409
- msgstr ""
410
-
411
- #: classes/settings/class-settings-page.php:452
412
- msgid "NOT ACTIVE"
413
- msgstr ""
414
-
415
- #: classes/settings/class-settings-themes.php:18
416
- msgid "Styling"
417
- msgstr ""
418
-
419
- #: classes/settings/class-settings-themes.php:31
420
- msgid "Styling settings"
421
- msgstr ""
422
-
423
- #: classes/settings/class-settings-themes.php:32
424
- msgid "Control how your related posts are displayed on your website."
425
- msgstr ""
426
-
427
- #: classes/settings/class-settings-themes.php:36
428
- msgid "Themes"
429
- msgstr ""
430
-
431
- #: classes/settings/class-settings-themes.php:37
432
- msgid ""
433
- "Select one of the CSS themes above to display your related posts the way you"
434
- " like to."
435
- msgstr ""
436
-
437
- #: classes/settings/class-settings-themes.php:43
438
- msgid "Custom CSS"
439
- msgstr ""
440
-
441
- #: classes/settings/class-settings-themes.php:44
442
- msgid ""
443
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
444
- "error here will break frontend display. To disable, leave field empty."
445
- msgstr ""
446
-
447
- #: classes/settings/class-settings-weights.php:18
448
- msgid "Weights"
449
- msgstr ""
450
-
451
- #: classes/settings/class-settings-weights.php:24
452
- msgid "Weight settings"
453
- msgstr ""
454
-
455
- #: classes/settings/class-settings-weights.php:25
456
- msgid ""
457
- "Easily adjust the weights by using the sliders below. Please note that you "
458
- "need to rerun the installer after changing weights."
459
- msgstr ""
460
-
461
- #: classes/settings/class-settings-weights.php:30
462
- msgid "The weight of the title."
463
- msgstr ""
464
-
465
- #: classes/settings/class-settings-weights.php:36
466
- msgid "Links"
467
- msgstr ""
468
-
469
- #: classes/settings/class-settings-weights.php:37
470
- msgid "The weight of the links found in the content."
471
- msgstr ""
472
-
473
- #: classes/settings/class-settings-weights.php:43
474
- msgid "Categories"
475
- msgstr ""
476
-
477
- #: classes/settings/class-settings-weights.php:44
478
- msgid "The weight of the categories."
479
- msgstr ""
480
-
481
- #: classes/settings/class-settings-weights.php:50
482
- msgid "Tags"
483
- msgstr ""
484
-
485
- #: classes/settings/class-settings-weights.php:51
486
- msgid "The weight of the tags."
487
- msgstr ""
488
-
489
- #: classes/settings/class-settings-weights.php:57
490
- msgid "Custom Taxonomies"
491
- msgstr ""
492
-
493
- #: classes/settings/class-settings-weights.php:58
494
- msgid "The weight of custom taxonomies."
495
- msgstr ""
496
-
497
- #: classes/themes/class-theme-column-one.php:13
498
- msgid "One related post item per row."
499
- msgstr ""
500
-
501
- #: classes/themes/class-theme-column-three.php:13
502
- msgid "Three related post items per row."
503
- msgstr ""
504
-
505
- #: classes/themes/class-theme-column-two.php:13
506
- msgid "Two related post items per row."
507
- msgstr ""
508
-
509
- #: includes/updater/class-rp4wp-updater.php:131
510
- msgid "Hide notice"
511
- msgstr ""
512
-
513
- #. Plugin Name of the plugin/theme
514
- msgid "Related Posts for WordPress Premium"
515
- msgstr "Related Posts for WordPress Premium"
516
-
517
- #. Plugin URI of the plugin/theme
518
- msgid "http://www.relatedpostsforwp.com/"
519
- msgstr "http://www.relatedpostsforwp.com/"
520
-
521
- #. Description of the plugin/theme
522
- msgid "The best way to display related posts in WordPress."
523
- msgstr ""
524
-
525
- #. Author of the plugin/theme
526
- msgid "Barry Kooij"
527
- msgstr "Barry Kooij"
528
-
529
- #. Author URI of the plugin/theme
530
- msgid "http://www.barrykooij.com/"
531
- msgstr "http://www.barrykooij.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/related-posts-for-wp-pt_BR.mo ADDED
Binary file
languages/{related-posts-for-wp-pt_pt.po → related-posts-for-wp-pt_BR.po} RENAMED
@@ -1,22 +1,21 @@
1
- # Copyright (C) 2014 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
5
- # Claudio Sanches <contato@claudiosmweb.com>, 2014
6
- # Barry Kooij <mail@barrykooij.nl>, 2014
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: Related Posts for WordPress\n"
10
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
11
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
12
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
13
- "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
14
- "Language-Team: Portuguese (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/pt/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
- "Language: pt\n"
19
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
  "X-Generator: grunt-wp-i18n 0.4.8\n"
21
 
22
  #: classes/class-is-installing-notice.php:74
@@ -36,7 +35,7 @@ msgstr "Tem certeza de que deseja excluir este post relacionado?"
36
  #: classes/class-link-related-table.php:45
37
  #: classes/hooks/class-hook-settings-page.php:20
38
  #: classes/meta-boxes/class-meta-box-manage.php:37
39
- #: classes/settings/class-settings-general.php:52
40
  msgid "Related Posts"
41
  msgstr "Posts Relacionados"
42
 
@@ -50,25 +49,25 @@ msgid "Title"
50
  msgstr "Título"
51
 
52
  #: classes/class-link-related-table.php:96
53
- #: classes/hooks/class-hook-page-install.php:220
54
  #: classes/hooks/class-hook-settings-page.php:152
55
  msgid "Post Type"
56
  msgstr "Tipo de Post"
57
 
58
- #: classes/class-link-related-table.php:235
59
  msgid "Link Post"
60
  msgstr "Link do Post"
61
 
62
- #: classes/class-link-related-table.php:243
63
  msgid "View Post"
64
- msgstr ""
65
 
66
- #: classes/class-link-related-table.php:274
67
  msgid "Link Posts"
68
  msgstr "Link dos Posts"
69
 
70
  #: classes/class-post-type-manager.php:21
71
- #: classes/hooks/class-hook-link-related-screen.php:138
72
  msgid "Posts"
73
  msgstr "Posts"
74
 
@@ -88,46 +87,46 @@ msgstr "Exibir posts relacionados."
88
  msgid "Settings"
89
  msgstr "Configurações"
90
 
91
- #: classes/hooks/class-hook-link-related-screen.php:139
92
  msgid "Cancel linking"
93
  msgstr "Cancelar vinculação"
94
 
95
- #: classes/hooks/class-hook-link-related-screen.php:155
96
  msgid "Search"
97
  msgstr "Buscar"
98
 
99
- #: classes/hooks/class-hook-page-install.php:109
100
  msgid "Welcome"
101
  msgstr "Bem-vindo"
102
 
103
- #: classes/hooks/class-hook-page-install.php:110
104
  msgid "Caching Posts"
105
  msgstr "Armazenamento de Posts"
106
 
107
- #: classes/hooks/class-hook-page-install.php:111
108
  msgid "Linking Posts"
109
  msgstr "Vinculação de Posts"
110
 
111
- #: classes/hooks/class-hook-page-install.php:112
112
  msgid "Finished"
113
  msgstr "Terminado"
114
 
115
- #: classes/hooks/class-hook-page-install.php:123
116
  msgid ""
117
- "Missing post type paramater, please report this incident via %sour "
118
  "website%s."
119
- msgstr "Faltando tipo de tipo de post, por favor relate este incidente em %snosso website%s."
120
 
121
- #: classes/hooks/class-hook-page-install.php:154
122
  msgid "Installation"
123
  msgstr "Instalação"
124
 
125
- #: classes/hooks/class-hook-page-install.php:201
126
- #: classes/hooks/class-hook-page-install.php:284
127
  msgid "Thank you for choosing Related Posts for WordPress!"
128
  msgstr "Obrigado por escolher Posts Relacionados para WordPress!"
129
 
130
- #: classes/hooks/class-hook-page-install.php:202
131
  msgid ""
132
  "Below you'll find your post types available for installation, by installing "
133
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -135,84 +134,96 @@ msgid ""
135
  "Type' button."
136
  msgstr "Abaixo você vai encontrar seus tipos de posts disponíveis para instalação, através da instalação de um tipo de post vamos configurar um cache e oferecer-lhe a capacidade de relacionamento automático (customizado). Para instalar um tipo de post, basta clicar no botão \"Instalar Tipo de Post '."
137
 
138
- #: classes/hooks/class-hook-page-install.php:221
139
  msgid "Related to Post Types"
140
- msgstr ""
141
 
142
- #: classes/hooks/class-hook-page-install.php:256
143
  msgid "Edit"
144
- msgstr ""
145
 
146
- #: classes/hooks/class-hook-page-install.php:285
147
  msgid ""
148
  "Before you can start using Related Posts for WordPress we need to cache your"
149
  " current posts."
150
  msgstr "Antes que você possa começar a usar Posts Relacionados para WordPress nos precisamos armazenar os seus posts atuais."
151
 
152
- #: classes/hooks/class-hook-page-install.php:286
153
  msgid ""
154
  "This is a one time process which might take some time now, depending on the "
155
  "amount of posts you have, but will ensure your website's performance when "
156
  "using the plugin."
157
  msgstr "Este é um processo pode demorar algum tempo, dependendo da quantidade de posts que você tem, mas vai garantir o desempenho do seu site ao usar o plugin."
158
 
159
- #: classes/hooks/class-hook-page-install.php:288
160
  msgid ""
161
  "Do NOT close this window, wait for this process to finish and this wizard to"
162
  " take you to the next step."
163
  msgstr "NÃO feche esta janela, espere este processo terminar e este assistente para levá-lo para a próxima etapa."
164
 
165
- #: classes/hooks/class-hook-page-install.php:306
166
  msgid "Great! All your posts were successfully cached!"
167
  msgstr "Ótimo! Todos os seus posts foram armazenados com sucesso!"
168
 
169
- #: classes/hooks/class-hook-page-install.php:307
170
  msgid ""
171
  "You can let me link your posts, based on what I think is related, to each "
172
  "other. And don't worry, if I made a mistake at one of your posts you can "
173
  "easily correct this by editing it manually!"
174
  msgstr "Você pode deixar que seja vinculado os seus posts com base no que eu acho que está relacionado, entre si. E não se preocupe, se eu cometi um erro em um dos seus posts você pode facilmente corrigir isso editando-lo manualmente!"
175
 
176
- #: classes/hooks/class-hook-page-install.php:308
177
  msgid ""
178
  "Want me to start linking posts to each other? Fill in the amount of related "
179
  "posts each post should have and click on the \"Link now\" button. Rather "
180
  "link your posts manually? Click \"Skip linking\"."
181
  msgstr "Quer que eu comece a vincular os seus posts uns aos outros? Preencha a quantidade de posts relacionados que cada post deve ter e clique em \"Vincular Agora\". Sim vincular manualmente seus posts? Clique em \"Ir Vinculando\"."
182
 
183
- #: classes/hooks/class-hook-page-install.php:309
184
  msgid ""
185
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
186
  " process to finish and this wizard to take you to the next step."
187
  msgstr "NÃO feche esta janela se você clicou em \"Vincular Agora\", espere para que este processo termine e este que assistente levá-o para a próxima etapa."
188
 
189
- #: classes/hooks/class-hook-page-install.php:313
190
- msgid "Amount of related posts per post:"
191
- msgstr "Quantidade de posts relacionados por post:"
192
 
193
- #: classes/hooks/class-hook-page-install.php:317
 
 
 
 
 
 
 
 
 
 
 
 
194
  msgid "Link now"
195
  msgstr "Vincular agora"
196
 
197
- #: classes/hooks/class-hook-page-install.php:319
198
  msgid "Skip linking"
199
  msgstr "Pular vinculação"
200
 
201
- #: classes/hooks/class-hook-page-install.php:327
202
  msgid "That's it, you're good to go!"
203
  msgstr "É isso aí, você está pronto para ir!"
204
 
205
- #: classes/hooks/class-hook-page-install.php:328
206
  msgid ""
207
  "Thanks again for using Related Posts for WordPress and if you have any "
208
  "questions be sure to ask them at the %sWordPress.org forums.%s"
209
  msgstr "Obrigado novamente por usar Posts Relacionados para WordPress e se você tiver alguma dúvida não se esqueça de pedir-lhes no %sfóruns do WordPress.org.%s"
210
 
211
- #: classes/hooks/class-hook-page-install.php:331
212
  msgid "Click here to return to step 1"
213
  msgstr "Clique aqui para voltar ao passo 1"
214
 
215
- #: classes/hooks/class-hook-page-install.php:337
216
  msgid "Click here to go to the settings page"
217
  msgstr "Clique aqui para ir à página de configurações"
218
 
@@ -225,7 +236,7 @@ msgid ""
225
  "Got a question? Simply send us an email at "
226
  "%ssupport@relatedpostsforwp.com%s. Please note that support requires an "
227
  "active license."
228
- msgstr ""
229
 
230
  #: classes/hooks/class-hook-settings-page.php:67
231
  msgid "More information"
@@ -252,13 +263,13 @@ msgid ""
252
  "Barry is a WordPress developer that works on WooCommerce and is the author "
253
  "of various WordPress plugins that include Related Posts for WordPress, Post "
254
  "Connector and What The File."
255
- msgstr ""
256
 
257
  #: classes/hooks/class-hook-settings-page.php:82
258
  msgid ""
259
  "Barry likes contributing to open source projects and visiting WordCamps and "
260
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
261
- msgstr ""
262
 
263
  #: classes/hooks/class-hook-settings-page.php:84
264
  msgid "%sFollow Barry on Twitter%s."
@@ -290,6 +301,49 @@ msgstr "Desvincular Post Relacionado"
290
  msgid "No related posts found."
291
  msgstr "Nenhum post relacionado foi encontrado."
292
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
  #: classes/settings/class-settings-general.php:18
294
  msgid "General settings for %s"
295
  msgstr "Configurações gerais para %s"
@@ -320,69 +374,69 @@ msgstr "Quantidade de Posts"
320
  msgid "The amount of automatically linked %ss"
321
  msgstr "A quantidade de posts automaticamente vinculada %ss"
322
 
 
 
 
 
323
  #: classes/settings/class-settings-general.php:44
 
 
 
 
324
  msgid "Frontend Settings"
325
  msgstr "Configurações de Frontend"
326
 
327
- #: classes/settings/class-settings-general.php:45
328
  msgid ""
329
  "The following options affect how related %ss are displayed on the frontend."
330
  msgstr "As opções a seguir afetam como os posts relacionados %ss são exibidos no frontend."
331
 
332
- #: classes/settings/class-settings-general.php:49
333
  msgid "Heading text"
334
  msgstr "Texto do Cabeçalho"
335
 
336
- #: classes/settings/class-settings-general.php:50
337
  msgid ""
338
  "The text that is displayed above the related %ss. To disable, leave field "
339
  "empty."
340
  msgstr "O texto que é exibido acima dos %ss relacionados. Para desativar, deixe este campo vazio sair."
341
 
342
- #: classes/settings/class-settings-general.php:56
343
  msgid "Excerpt length"
344
  msgstr "Tamanho do resumo"
345
 
346
- #: classes/settings/class-settings-general.php:57
347
  msgid ""
348
  "The amount of words to be displayed below the title on website. To disable, "
349
  "set value to 0."
350
  msgstr "A quantidade de palavras para ser exibidas abaixo do título no site. Para desativar, deixe este valor definido como 0."
351
 
352
- #: classes/settings/class-settings-general.php:63
353
- msgid "Display Image"
354
- msgstr "Exibir Imagem"
355
-
356
- #: classes/settings/class-settings-general.php:64
357
- msgid "Checking this will enable displaying featured images of related %ss."
358
- msgstr "Verificando isso vai permitir a exibição de imagens destacadas para %ss relacionados."
359
-
360
  #: classes/settings/class-settings-license.php:18
361
  msgid "License"
362
- msgstr ""
363
 
364
  #: classes/settings/class-settings-license.php:29
365
  msgid "License Status"
366
- msgstr ""
367
 
368
  #: classes/settings/class-settings-license.php:36
369
  msgid "License Key"
370
- msgstr ""
371
 
372
  #: classes/settings/class-settings-license.php:37
373
  msgid ""
374
  "Your license key. You can find your license key in your %sMy Account%s page."
375
- msgstr ""
376
 
377
  #: classes/settings/class-settings-license.php:44
378
  msgid "Activation Email"
379
- msgstr ""
380
 
381
  #: classes/settings/class-settings-license.php:45
382
  msgid ""
383
  "Your activation email address. You can find your activation email address in"
384
  " your %sMy Account%s page."
385
- msgstr ""
386
 
387
  #: classes/settings/class-settings-misc.php:18
388
  msgid "Misc"
@@ -406,45 +460,33 @@ msgid ""
406
  "the plugin is deleted."
407
  msgstr "Marque esta caixa se você gostaria de remover completamente todos os seus dados quando este plugin é excluído."
408
 
409
- #: classes/settings/class-settings-page.php:450
410
- msgid "ACTIVATED"
411
  msgstr ""
412
 
413
- #: classes/settings/class-settings-page.php:452
414
- msgid "NOT ACTIVE"
 
 
415
  msgstr ""
416
 
417
- #: classes/settings/class-settings-themes.php:18
418
- msgid "Styling"
419
- msgstr "Estilos"
420
-
421
- #: classes/settings/class-settings-themes.php:31
422
- msgid "Styling settings"
423
- msgstr "Configurações de estilos"
424
-
425
- #: classes/settings/class-settings-themes.php:32
426
- msgid "Control how your related posts are displayed on your website."
427
- msgstr "Controla como os seus posts relacionados são exibidos em seu site."
428
-
429
- #: classes/settings/class-settings-themes.php:36
430
- msgid "Themes"
431
- msgstr "Temas"
432
 
433
- #: classes/settings/class-settings-themes.php:37
434
  msgid ""
435
- "Select one of the CSS themes above to display your related posts the way you"
436
- " like to."
437
- msgstr "Escolha um dos temas CSS acima para exibir seus posts relacionados da maneira que você quiser."
438
 
439
- #: classes/settings/class-settings-themes.php:43
440
- msgid "Custom CSS"
441
- msgstr "CSS Customizado"
442
 
443
- #: classes/settings/class-settings-themes.php:44
444
- msgid ""
445
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
446
- "error here will break frontend display. To disable, leave field empty."
447
- msgstr "Adicionar CSS personalizado com o tema selecionado. Aviso! Este é um recurso avançado! Um erro aqui vai quebrar exibição na frente do seu site. Para desativar, deixe este campo vazio."
448
 
449
  #: classes/settings/class-settings-weights.php:18
450
  msgid "Weights"
@@ -496,18 +538,6 @@ msgstr "Taxonomias Personalizadas"
496
  msgid "The weight of custom taxonomies."
497
  msgstr "A prioridade das taxonomias personalizadas."
498
 
499
- #: classes/themes/class-theme-column-one.php:13
500
- msgid "One related post item per row."
501
- msgstr "Um post relacionado por linha."
502
-
503
- #: classes/themes/class-theme-column-three.php:13
504
- msgid "Three related post items per row."
505
- msgstr "Três posts relacionados por linha."
506
-
507
- #: classes/themes/class-theme-column-two.php:13
508
- msgid "Two related post items per row."
509
- msgstr "Dois posts relacionados por linha."
510
-
511
  #: includes/updater/class-rp4wp-updater.php:131
512
  msgid "Hide notice"
513
  msgstr "Esconder mensagem"
1
+ # Copyright (C) 2015 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
5
+ # Claudio Sanches <contato@claudiosmweb.com>, 2014-2015
 
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Related Posts for WordPress\n"
9
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
10
+ "POT-Creation-Date: 2015-05-31 09:56:12+00:00\n"
11
+ "PO-Revision-Date: 2015-07-06 04:22+0000\n"
12
+ "Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
13
+ "Language-Team: Portuguese (Brazil) (http://www.transifex.com/barrykooijplugins/related-posts-for-wordpress/language/pt_BR/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Language: pt_BR\n"
18
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.8\n"
20
 
21
  #: classes/class-is-installing-notice.php:74
35
  #: classes/class-link-related-table.php:45
36
  #: classes/hooks/class-hook-settings-page.php:20
37
  #: classes/meta-boxes/class-meta-box-manage.php:37
38
+ #: classes/settings/class-settings-general.php:59
39
  msgid "Related Posts"
40
  msgstr "Posts Relacionados"
41
 
49
  msgstr "Título"
50
 
51
  #: classes/class-link-related-table.php:96
52
+ #: classes/hooks/class-hook-page-install.php:168
53
  #: classes/hooks/class-hook-settings-page.php:152
54
  msgid "Post Type"
55
  msgstr "Tipo de Post"
56
 
57
+ #: classes/class-link-related-table.php:260
58
  msgid "Link Post"
59
  msgstr "Link do Post"
60
 
61
+ #: classes/class-link-related-table.php:268
62
  msgid "View Post"
63
+ msgstr "Visualizar Post"
64
 
65
+ #: classes/class-link-related-table.php:299
66
  msgid "Link Posts"
67
  msgstr "Link dos Posts"
68
 
69
  #: classes/class-post-type-manager.php:21
70
+ #: classes/hooks/class-hook-link-related-screen.php:155
71
  msgid "Posts"
72
  msgstr "Posts"
73
 
87
  msgid "Settings"
88
  msgstr "Configurações"
89
 
90
+ #: classes/hooks/class-hook-link-related-screen.php:157
91
  msgid "Cancel linking"
92
  msgstr "Cancelar vinculação"
93
 
94
+ #: classes/hooks/class-hook-link-related-screen.php:173
95
  msgid "Search"
96
  msgstr "Buscar"
97
 
98
+ #: classes/hooks/class-hook-page-install.php:57
99
  msgid "Welcome"
100
  msgstr "Bem-vindo"
101
 
102
+ #: classes/hooks/class-hook-page-install.php:58
103
  msgid "Caching Posts"
104
  msgstr "Armazenamento de Posts"
105
 
106
+ #: classes/hooks/class-hook-page-install.php:59
107
  msgid "Linking Posts"
108
  msgstr "Vinculação de Posts"
109
 
110
+ #: classes/hooks/class-hook-page-install.php:60
111
  msgid "Finished"
112
  msgstr "Terminado"
113
 
114
+ #: classes/hooks/class-hook-page-install.php:71
115
  msgid ""
116
+ "Missing post type parameter, please report this incident via %sour "
117
  "website%s."
118
+ msgstr ""
119
 
120
+ #: classes/hooks/class-hook-page-install.php:102
121
  msgid "Installation"
122
  msgstr "Instalação"
123
 
124
+ #: classes/hooks/class-hook-page-install.php:149
125
+ #: classes/hooks/class-hook-page-install.php:228
126
  msgid "Thank you for choosing Related Posts for WordPress!"
127
  msgstr "Obrigado por escolher Posts Relacionados para WordPress!"
128
 
129
+ #: classes/hooks/class-hook-page-install.php:150
130
  msgid ""
131
  "Below you'll find your post types available for installation, by installing "
132
  "a post type we'll set up a cache and offer you the ability to automatic link"
134
  "Type' button."
135
  msgstr "Abaixo você vai encontrar seus tipos de posts disponíveis para instalação, através da instalação de um tipo de post vamos configurar um cache e oferecer-lhe a capacidade de relacionamento automático (customizado). Para instalar um tipo de post, basta clicar no botão \"Instalar Tipo de Post '."
136
 
137
+ #: classes/hooks/class-hook-page-install.php:169
138
  msgid "Related to Post Types"
139
+ msgstr "Relacionados para Tipos de Post"
140
 
141
+ #: classes/hooks/class-hook-page-install.php:204
142
  msgid "Edit"
143
+ msgstr "Editar"
144
 
145
+ #: classes/hooks/class-hook-page-install.php:229
146
  msgid ""
147
  "Before you can start using Related Posts for WordPress we need to cache your"
148
  " current posts."
149
  msgstr "Antes que você possa começar a usar Posts Relacionados para WordPress nos precisamos armazenar os seus posts atuais."
150
 
151
+ #: classes/hooks/class-hook-page-install.php:230
152
  msgid ""
153
  "This is a one time process which might take some time now, depending on the "
154
  "amount of posts you have, but will ensure your website's performance when "
155
  "using the plugin."
156
  msgstr "Este é um processo pode demorar algum tempo, dependendo da quantidade de posts que você tem, mas vai garantir o desempenho do seu site ao usar o plugin."
157
 
158
+ #: classes/hooks/class-hook-page-install.php:232
159
  msgid ""
160
  "Do NOT close this window, wait for this process to finish and this wizard to"
161
  " take you to the next step."
162
  msgstr "NÃO feche esta janela, espere este processo terminar e este assistente para levá-lo para a próxima etapa."
163
 
164
+ #: classes/hooks/class-hook-page-install.php:266
165
  msgid "Great! All your posts were successfully cached!"
166
  msgstr "Ótimo! Todos os seus posts foram armazenados com sucesso!"
167
 
168
+ #: classes/hooks/class-hook-page-install.php:267
169
  msgid ""
170
  "You can let me link your posts, based on what I think is related, to each "
171
  "other. And don't worry, if I made a mistake at one of your posts you can "
172
  "easily correct this by editing it manually!"
173
  msgstr "Você pode deixar que seja vinculado os seus posts com base no que eu acho que está relacionado, entre si. E não se preocupe, se eu cometi um erro em um dos seus posts você pode facilmente corrigir isso editando-lo manualmente!"
174
 
175
+ #: classes/hooks/class-hook-page-install.php:268
176
  msgid ""
177
  "Want me to start linking posts to each other? Fill in the amount of related "
178
  "posts each post should have and click on the \"Link now\" button. Rather "
179
  "link your posts manually? Click \"Skip linking\"."
180
  msgstr "Quer que eu comece a vincular os seus posts uns aos outros? Preencha a quantidade de posts relacionados que cada post deve ter e clique em \"Vincular Agora\". Sim vincular manualmente seus posts? Clique em \"Ir Vinculando\"."
181
 
182
+ #: classes/hooks/class-hook-page-install.php:269
183
  msgid ""
184
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
185
  " process to finish and this wizard to take you to the next step."
186
  msgstr "NÃO feche esta janela se você clicou em \"Vincular Agora\", espere para que este processo termine e este que assistente levá-o para a próxima etapa."
187
 
188
+ #: classes/hooks/class-hook-page-install.php:275
189
+ msgid "Amount of related posts:"
190
+ msgstr ""
191
 
192
+ #: classes/hooks/class-hook-page-install.php:277
193
+ msgid "The amount of related items per %s"
194
+ msgstr ""
195
+
196
+ #: classes/hooks/class-hook-page-install.php:282
197
+ msgid "Maximum Post Age:"
198
+ msgstr ""
199
+
200
+ #: classes/hooks/class-hook-page-install.php:284
201
+ msgid "The maximum age in days of %s that will be linked. (0 = unlimited)"
202
+ msgstr ""
203
+
204
+ #: classes/hooks/class-hook-page-install.php:290
205
  msgid "Link now"
206
  msgstr "Vincular agora"
207
 
208
+ #: classes/hooks/class-hook-page-install.php:291
209
  msgid "Skip linking"
210
  msgstr "Pular vinculação"
211
 
212
+ #: classes/hooks/class-hook-page-install.php:309
213
  msgid "That's it, you're good to go!"
214
  msgstr "É isso aí, você está pronto para ir!"
215
 
216
+ #: classes/hooks/class-hook-page-install.php:310
217
  msgid ""
218
  "Thanks again for using Related Posts for WordPress and if you have any "
219
  "questions be sure to ask them at the %sWordPress.org forums.%s"
220
  msgstr "Obrigado novamente por usar Posts Relacionados para WordPress e se você tiver alguma dúvida não se esqueça de pedir-lhes no %sfóruns do WordPress.org.%s"
221
 
222
+ #: classes/hooks/class-hook-page-install.php:313
223
  msgid "Click here to return to step 1"
224
  msgstr "Clique aqui para voltar ao passo 1"
225
 
226
+ #: classes/hooks/class-hook-page-install.php:319
227
  msgid "Click here to go to the settings page"
228
  msgstr "Clique aqui para ir à página de configurações"
229
 
236
  "Got a question? Simply send us an email at "
237
  "%ssupport@relatedpostsforwp.com%s. Please note that support requires an "
238
  "active license."
239
+ msgstr "Tem uma pergunta? Basta enviar-nos um e-mail para %ssupport@relatedpostsforwp.com%s. Por favor, note que para obter suporte você precisa de uma licença ativa."
240
 
241
  #: classes/hooks/class-hook-settings-page.php:67
242
  msgid "More information"
263
  "Barry is a WordPress developer that works on WooCommerce and is the author "
264
  "of various WordPress plugins that include Related Posts for WordPress, Post "
265
  "Connector and What The File."
266
+ msgstr "Barry é um desenvolvedor WordPress que trabalho no WooCommerce e é autor de vários plugins WordPress que incluem Posts Relacionados para WordPress, Post Connectore e What The File."
267
 
268
  #: classes/hooks/class-hook-settings-page.php:82
269
  msgid ""
270
  "Barry likes contributing to open source projects and visiting WordCamps and "
271
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
272
+ msgstr "Barry gosta de contribuir para projetos de código aberto e ir em WordCamps e meetups sobre WordPress. Ele é o organizador do meetup WordPress em Tilburg nos Países Baixos."
273
 
274
  #: classes/hooks/class-hook-settings-page.php:84
275
  msgid "%sFollow Barry on Twitter%s."
301
  msgid "No related posts found."
302
  msgstr "Nenhum post relacionado foi encontrado."
303
 
304
+ #: classes/meta-boxes/class-meta-box-options.php:37
305
+ msgid "Related Posts Options"
306
+ msgstr ""
307
+
308
+ #: classes/meta-boxes/class-meta-box-options.php:59
309
+ msgid "Exclude"
310
+ msgstr "Excluir"
311
+
312
+ #: classes/settings/class-settings-configurator.php:18
313
+ msgid "Styling"
314
+ msgstr "Estilos"
315
+
316
+ #: classes/settings/class-settings-configurator.php:24
317
+ msgid "Full control on how your related posts are displayed."
318
+ msgstr ""
319
+
320
+ #: classes/settings/class-settings-configurator.php:33
321
+ msgid "Posts per row"
322
+ msgstr "Posts por linha"
323
+
324
+ #: classes/settings/class-settings-configurator.php:34
325
+ msgid "The amount of related posts per row."
326
+ msgstr ""
327
+
328
+ #: classes/settings/class-settings-configurator.php:46
329
+ msgid "Row fixed height"
330
+ msgstr ""
331
+
332
+ #: classes/settings/class-settings-configurator.php:47
333
+ msgid ""
334
+ "The fixed height per row in pixels, set to 0 to allow dynamic heights.."
335
+ msgstr ""
336
+
337
+ #: classes/settings/class-settings-configurator.php:53
338
+ msgid "Custom CSS"
339
+ msgstr "CSS Customizado"
340
+
341
+ #: classes/settings/class-settings-configurator.php:54
342
+ msgid ""
343
+ "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
344
+ "error here will break frontend display. To disable, leave field empty."
345
+ msgstr "Adicionar CSS personalizado com o tema selecionado. Aviso! Este é um recurso avançado! Um erro aqui vai quebrar exibição na frente do seu site. Para desativar, deixe este campo vazio."
346
+
347
  #: classes/settings/class-settings-general.php:18
348
  msgid "General settings for %s"
349
  msgstr "Configurações gerais para %s"
374
  msgid "The amount of automatically linked %ss"
375
  msgstr "A quantidade de posts automaticamente vinculada %ss"
376
 
377
+ #: classes/settings/class-settings-general.php:43
378
+ msgid "Maximum Post Age"
379
+ msgstr ""
380
+
381
  #: classes/settings/class-settings-general.php:44
382
+ msgid "The maximum age in days of %ss that will be linked. (0 = unlimited)"
383
+ msgstr ""
384
+
385
+ #: classes/settings/class-settings-general.php:51
386
  msgid "Frontend Settings"
387
  msgstr "Configurações de Frontend"
388
 
389
+ #: classes/settings/class-settings-general.php:52
390
  msgid ""
391
  "The following options affect how related %ss are displayed on the frontend."
392
  msgstr "As opções a seguir afetam como os posts relacionados %ss são exibidos no frontend."
393
 
394
+ #: classes/settings/class-settings-general.php:56
395
  msgid "Heading text"
396
  msgstr "Texto do Cabeçalho"
397
 
398
+ #: classes/settings/class-settings-general.php:57
399
  msgid ""
400
  "The text that is displayed above the related %ss. To disable, leave field "
401
  "empty."
402
  msgstr "O texto que é exibido acima dos %ss relacionados. Para desativar, deixe este campo vazio sair."
403
 
404
+ #: classes/settings/class-settings-general.php:63
405
  msgid "Excerpt length"
406
  msgstr "Tamanho do resumo"
407
 
408
+ #: classes/settings/class-settings-general.php:64
409
  msgid ""
410
  "The amount of words to be displayed below the title on website. To disable, "
411
  "set value to 0."
412
  msgstr "A quantidade de palavras para ser exibidas abaixo do título no site. Para desativar, deixe este valor definido como 0."
413
 
 
 
 
 
 
 
 
 
414
  #: classes/settings/class-settings-license.php:18
415
  msgid "License"
416
+ msgstr "Licença"
417
 
418
  #: classes/settings/class-settings-license.php:29
419
  msgid "License Status"
420
+ msgstr "Status da Licença"
421
 
422
  #: classes/settings/class-settings-license.php:36
423
  msgid "License Key"
424
+ msgstr "Chave de Licença"
425
 
426
  #: classes/settings/class-settings-license.php:37
427
  msgid ""
428
  "Your license key. You can find your license key in your %sMy Account%s page."
429
+ msgstr "Sua chave de licença. Você pode encontrar a sua chave de licença na página da %sMinha Conta%s."
430
 
431
  #: classes/settings/class-settings-license.php:44
432
  msgid "Activation Email"
433
+ msgstr "E-mail de Ativação"
434
 
435
  #: classes/settings/class-settings-license.php:45
436
  msgid ""
437
  "Your activation email address. You can find your activation email address in"
438
  " your %sMy Account%s page."
439
+ msgstr "O endereço do seu e-mail de ativação. Você pode encontrar o seu endereço de e-mail de ativação na página da %sMinha Conta%s."
440
 
441
  #: classes/settings/class-settings-misc.php:18
442
  msgid "Misc"
460
  "the plugin is deleted."
461
  msgstr "Marque esta caixa se você gostaria de remover completamente todos os seus dados quando este plugin é excluído."
462
 
463
+ #: classes/settings/class-settings-misc.php:36
464
+ msgid "Show love?"
465
  msgstr ""
466
 
467
+ #: classes/settings/class-settings-misc.php:37
468
+ msgid ""
469
+ "Display a 'Powered by' line under your related posts. <strong>BEWARE! Only "
470
+ "for the real fans.</strong>"
471
  msgstr ""
472
 
473
+ #: classes/settings/class-settings-misc.php:43
474
+ msgid "Disable SSL Verification"
475
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
476
 
477
+ #: classes/settings/class-settings-misc.php:44
478
  msgid ""
479
+ "Disable SSL verification in license requests. Check this if you've got "
480
+ "problems connecting to licensing server."
481
+ msgstr ""
482
 
483
+ #: classes/settings/class-settings-page.php:448
484
+ msgid "ACTIVATED"
485
+ msgstr "ATIVADO"
486
 
487
+ #: classes/settings/class-settings-page.php:450
488
+ msgid "NOT ACTIVE"
489
+ msgstr "NÃO ATIVADO"
 
 
490
 
491
  #: classes/settings/class-settings-weights.php:18
492
  msgid "Weights"
538
  msgid "The weight of custom taxonomies."
539
  msgstr "A prioridade das taxonomias personalizadas."
540
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  #: includes/updater/class-rp4wp-updater.php:131
542
  msgid "Hide notice"
543
  msgstr "Esconder mensagem"
languages/related-posts-for-wp-pt_PT.mo ADDED
Binary file
languages/related-posts-for-wp-pt_PT.po ADDED
@@ -0,0 +1,564 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Barry Kooij
2
+ # This file is distributed under the GPL v3.
3
+ # Translators:
4
+ # Barry Kooij <mail@barrykooij.nl>, 2014
5
+ # Claudio Sanches <contato@claudiosmweb.com>, 2014
6
+ # Luis Martins <luis.martins@multiweb.pt>, 2015
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: Related Posts for WordPress\n"
10
+ "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
11
+ "POT-Creation-Date: 2015-05-31 09:56:12+00:00\n"
12
+ "PO-Revision-Date: 2015-06-07 19:31+0000\n"
13
+ "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
14
+ "Language-Team: Portuguese (Portugal) (http://www.transifex.com/barrykooijplugins/related-posts-for-wordpress/language/pt_PT/)\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Language: pt_PT\n"
19
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+ "X-Generator: grunt-wp-i18n 0.4.8\n"
21
+
22
+ #: classes/class-is-installing-notice.php:74
23
+ msgid ""
24
+ "Woah! Looks like we weren't able to finish your Related Posts for WordPress "
25
+ "installation wizard!"
26
+ msgstr "Woah! Parece que não fomos capazes de terminar a instalação do Posts Relacionados para WordPress!"
27
+
28
+ #: classes/class-is-installing-notice.php:76
29
+ msgid "%sResume the installation wizard%s or %sdismiss this notice%s"
30
+ msgstr "%sContinuar processo de instalação%s ou %sdesativar esta mensagem%s"
31
+
32
+ #: classes/class-javascript-strings.php:14
33
+ msgid "Are you sure you want to delete this related post?"
34
+ msgstr "Tem certeza de que deseja excluir este post relacionado?"
35
+
36
+ #: classes/class-link-related-table.php:45
37
+ #: classes/hooks/class-hook-settings-page.php:20
38
+ #: classes/meta-boxes/class-meta-box-manage.php:37
39
+ #: classes/settings/class-settings-general.php:59
40
+ msgid "Related Posts"
41
+ msgstr "Posts Relacionados"
42
+
43
+ #: classes/class-link-related-table.php:46
44
+ msgid "All Posts"
45
+ msgstr "Todos os Posts"
46
+
47
+ #: classes/class-link-related-table.php:95
48
+ #: classes/settings/class-settings-weights.php:29
49
+ msgid "Title"
50
+ msgstr "Título"
51
+
52
+ #: classes/class-link-related-table.php:96
53
+ #: classes/hooks/class-hook-page-install.php:168
54
+ #: classes/hooks/class-hook-settings-page.php:152
55
+ msgid "Post Type"
56
+ msgstr "Tipo de Post"
57
+
58
+ #: classes/class-link-related-table.php:260
59
+ msgid "Link Post"
60
+ msgstr "Link do Post"
61
+
62
+ #: classes/class-link-related-table.php:268
63
+ msgid "View Post"
64
+ msgstr "Ver Post"
65
+
66
+ #: classes/class-link-related-table.php:299
67
+ msgid "Link Posts"
68
+ msgstr "Link dos Posts"
69
+
70
+ #: classes/class-post-type-manager.php:21
71
+ #: classes/hooks/class-hook-link-related-screen.php:155
72
+ msgid "Posts"
73
+ msgstr "Posts"
74
+
75
+ #: classes/class-post-type-manager.php:22
76
+ msgid "Pages"
77
+ msgstr "Páginas"
78
+
79
+ #: classes/class-related-posts-widget.php:13
80
+ msgid "Related Posts for WordPress"
81
+ msgstr "Posts Relacionados para WordPress"
82
+
83
+ #: classes/class-related-posts-widget.php:14
84
+ msgid "Display related posts."
85
+ msgstr "Exibir posts relacionados."
86
+
87
+ #: classes/filters/class-filter-plugin-links.php:29
88
+ msgid "Settings"
89
+ msgstr "Configurações"
90
+
91
+ #: classes/hooks/class-hook-link-related-screen.php:157
92
+ msgid "Cancel linking"
93
+ msgstr "Cancelar vinculação"
94
+
95
+ #: classes/hooks/class-hook-link-related-screen.php:173
96
+ msgid "Search"
97
+ msgstr "Buscar"
98
+
99
+ #: classes/hooks/class-hook-page-install.php:57
100
+ msgid "Welcome"
101
+ msgstr "Bem-vindo"
102
+
103
+ #: classes/hooks/class-hook-page-install.php:58
104
+ msgid "Caching Posts"
105
+ msgstr "Armazenamento de Posts"
106
+
107
+ #: classes/hooks/class-hook-page-install.php:59
108
+ msgid "Linking Posts"
109
+ msgstr "Vinculação de Posts"
110
+
111
+ #: classes/hooks/class-hook-page-install.php:60
112
+ msgid "Finished"
113
+ msgstr "Terminado"
114
+
115
+ #: classes/hooks/class-hook-page-install.php:71
116
+ msgid ""
117
+ "Missing post type parameter, please report this incident via %sour "
118
+ "website%s."
119
+ msgstr "Tipo de post em falta, por favor report o incidente através do %snosso website%s."
120
+
121
+ #: classes/hooks/class-hook-page-install.php:102
122
+ msgid "Installation"
123
+ msgstr "Instalação"
124
+
125
+ #: classes/hooks/class-hook-page-install.php:149
126
+ #: classes/hooks/class-hook-page-install.php:228
127
+ msgid "Thank you for choosing Related Posts for WordPress!"
128
+ msgstr "Obrigado por escolher Posts Relacionados para WordPress!"
129
+
130
+ #: classes/hooks/class-hook-page-install.php:150
131
+ msgid ""
132
+ "Below you'll find your post types available for installation, by installing "
133
+ "a post type we'll set up a cache and offer you the ability to automatic link"
134
+ " (custom) posts. To install a post type, simply click the 'Install Post "
135
+ "Type' button."
136
+ msgstr "Abaixo você vai encontrar seus tipos de posts disponíveis para instalação, através da instalação de um tipo de post vamos configurar um cache e oferecer-lhe a capacidade de relacionamento automático (customizado). Para instalar um tipo de post, basta clicar no botão \"Instalar Tipo de Post '."
137
+
138
+ #: classes/hooks/class-hook-page-install.php:169
139
+ msgid "Related to Post Types"
140
+ msgstr "Tipos de Post Relacionados"
141
+
142
+ #: classes/hooks/class-hook-page-install.php:204
143
+ msgid "Edit"
144
+ msgstr "Editar"
145
+
146
+ #: classes/hooks/class-hook-page-install.php:229
147
+ msgid ""
148
+ "Before you can start using Related Posts for WordPress we need to cache your"
149
+ " current posts."
150
+ msgstr "Antes que você possa começar a usar Posts Relacionados para WordPress nos precisamos armazenar os seus posts atuais."
151
+
152
+ #: classes/hooks/class-hook-page-install.php:230
153
+ msgid ""
154
+ "This is a one time process which might take some time now, depending on the "
155
+ "amount of posts you have, but will ensure your website's performance when "
156
+ "using the plugin."
157
+ msgstr "Este é um processo pode demorar algum tempo, dependendo da quantidade de posts que você tem, mas vai garantir o desempenho do seu site ao usar o plugin."
158
+
159
+ #: classes/hooks/class-hook-page-install.php:232
160
+ msgid ""
161
+ "Do NOT close this window, wait for this process to finish and this wizard to"
162
+ " take you to the next step."
163
+ msgstr "NÃO feche esta janela, espere este processo terminar e este assistente para levá-lo para a próxima etapa."
164
+
165
+ #: classes/hooks/class-hook-page-install.php:266
166
+ msgid "Great! All your posts were successfully cached!"
167
+ msgstr "Ótimo! Todos os seus posts foram armazenados com sucesso!"
168
+
169
+ #: classes/hooks/class-hook-page-install.php:267
170
+ msgid ""
171
+ "You can let me link your posts, based on what I think is related, to each "
172
+ "other. And don't worry, if I made a mistake at one of your posts you can "
173
+ "easily correct this by editing it manually!"
174
+ msgstr "Você pode deixar que seja vinculado os seus posts com base no que eu acho que está relacionado, entre si. E não se preocupe, se eu cometi um erro em um dos seus posts você pode facilmente corrigir isso editando-lo manualmente!"
175
+
176
+ #: classes/hooks/class-hook-page-install.php:268
177
+ msgid ""
178
+ "Want me to start linking posts to each other? Fill in the amount of related "
179
+ "posts each post should have and click on the \"Link now\" button. Rather "
180
+ "link your posts manually? Click \"Skip linking\"."
181
+ msgstr "Quer que eu comece a vincular os seus posts uns aos outros? Preencha a quantidade de posts relacionados que cada post deve ter e clique em \"Vincular Agora\". Sim vincular manualmente seus posts? Clique em \"Ir Vinculando\"."
182
+
183
+ #: classes/hooks/class-hook-page-install.php:269
184
+ msgid ""
185
+ "Do NOT close this window if you click the \"Link now\" button, wait for this"
186
+ " process to finish and this wizard to take you to the next step."
187
+ msgstr "NÃO feche esta janela se você clicou em \"Vincular Agora\", espere para que este processo termine e este que assistente levá-o para a próxima etapa."
188
+
189
+ #: classes/hooks/class-hook-page-install.php:275
190
+ msgid "Amount of related posts:"
191
+ msgstr "Quantidade de posts relacionados:"
192
+
193
+ #: classes/hooks/class-hook-page-install.php:277
194
+ msgid "The amount of related items per %s"
195
+ msgstr "Quantidade de itens relacionados por %s"
196
+
197
+ #: classes/hooks/class-hook-page-install.php:282
198
+ msgid "Maximum Post Age:"
199
+ msgstr "Idade máxima do post:"
200
+
201
+ #: classes/hooks/class-hook-page-install.php:284
202
+ msgid "The maximum age in days of %s that will be linked. (0 = unlimited)"
203
+ msgstr "A idade máxima em dias de %s que serão associados. (0 = ilimitado)"
204
+
205
+ #: classes/hooks/class-hook-page-install.php:290
206
+ msgid "Link now"
207
+ msgstr "Vincular agora"
208
+
209
+ #: classes/hooks/class-hook-page-install.php:291
210
+ msgid "Skip linking"
211
+ msgstr "Pular vinculação"
212
+
213
+ #: classes/hooks/class-hook-page-install.php:309
214
+ msgid "That's it, you're good to go!"
215
+ msgstr "É isso aí, você está pronto para ir!"
216
+
217
+ #: classes/hooks/class-hook-page-install.php:310
218
+ msgid ""
219
+ "Thanks again for using Related Posts for WordPress and if you have any "
220
+ "questions be sure to ask them at the %sWordPress.org forums.%s"
221
+ msgstr "Obrigado novamente por usar Posts Relacionados para WordPress e se você tiver alguma dúvida não se esqueça de pedir-lhes no %sfóruns do WordPress.org.%s"
222
+
223
+ #: classes/hooks/class-hook-page-install.php:313
224
+ msgid "Click here to return to step 1"
225
+ msgstr "Clique aqui para voltar ao passo 1"
226
+
227
+ #: classes/hooks/class-hook-page-install.php:319
228
+ msgid "Click here to go to the settings page"
229
+ msgstr "Clique aqui para ir à página de configurações"
230
+
231
+ #: classes/hooks/class-hook-settings-page.php:57
232
+ msgid "Plugin version"
233
+ msgstr "Versão do plugin"
234
+
235
+ #: classes/hooks/class-hook-settings-page.php:63
236
+ msgid ""
237
+ "Got a question? Simply send us an email at "
238
+ "%ssupport@relatedpostsforwp.com%s. Please note that support requires an "
239
+ "active license."
240
+ msgstr "Tem uma questão? Envie-nos um email para %ssupport@relatedpostsforwp.com%s. Note por favor que o serviço de suporte requer uma licença activa."
241
+
242
+ #: classes/hooks/class-hook-settings-page.php:67
243
+ msgid "More information"
244
+ msgstr "Mais informações"
245
+
246
+ #: classes/hooks/class-hook-settings-page.php:69
247
+ msgid "<a href='%s'>Documentation</a>"
248
+ msgstr "<a href='%s'>Documentação</a>"
249
+
250
+ #: classes/hooks/class-hook-settings-page.php:71
251
+ msgid "<a href='%s'>Changelog</a>"
252
+ msgstr "<a href='%s'>Changelog</a>"
253
+
254
+ #: classes/hooks/class-hook-settings-page.php:73
255
+ msgid "<a href='%s'>Give us a review</a>"
256
+ msgstr "<a href='%s'>Faça uma avaliação</a>"
257
+
258
+ #: classes/hooks/class-hook-settings-page.php:78
259
+ msgid "About the developer"
260
+ msgstr "Sobre o desenvolvedor"
261
+
262
+ #: classes/hooks/class-hook-settings-page.php:80
263
+ msgid ""
264
+ "Barry is a WordPress developer that works on WooCommerce and is the author "
265
+ "of various WordPress plugins that include Related Posts for WordPress, Post "
266
+ "Connector and What The File."
267
+ msgstr "O Barry é um programador WordPress que trabalha no projecto WooCommerce e é autor de vários plugins WordPress incluíndo Related Posts para WordPress, Post Connector e What The File."
268
+
269
+ #: classes/hooks/class-hook-settings-page.php:82
270
+ msgid ""
271
+ "Barry likes contributing to open source projects and visiting WordCamps and "
272
+ "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
273
+ msgstr "O Barry aprecia contribuir para projectos open source, visitar WordCamps e WordPress meetups. Também organiza o WordPress meteu em Tilburg."
274
+
275
+ #: classes/hooks/class-hook-settings-page.php:84
276
+ msgid "%sFollow Barry on Twitter%s."
277
+ msgstr "%Seguir Barry no Twitter%s."
278
+
279
+ #: classes/hooks/class-hook-settings-page.php:110
280
+ msgid "General"
281
+ msgstr "Geral"
282
+
283
+ #: classes/hooks/class-hook-settings-page.php:130
284
+ msgid "Installer"
285
+ msgstr "Instalador"
286
+
287
+ #: classes/meta-boxes/class-meta-box-manage.php:80
288
+ msgid "Add Related Posts"
289
+ msgstr "Adciionar Post Relacioando"
290
+
291
+ #: classes/meta-boxes/class-meta-box-manage.php:103
292
+ #: classes/meta-boxes/class-meta-box-manage.php:104
293
+ msgid "Edit Post"
294
+ msgstr "Editar Post"
295
+
296
+ #: classes/meta-boxes/class-meta-box-manage.php:106
297
+ #: classes/meta-boxes/class-meta-box-manage.php:107
298
+ msgid "Unlink Related Post"
299
+ msgstr "Desvincular Post Relacionado"
300
+
301
+ #: classes/meta-boxes/class-meta-box-manage.php:120
302
+ msgid "No related posts found."
303
+ msgstr "Nenhum post relacionado foi encontrado."
304
+
305
+ #: classes/meta-boxes/class-meta-box-options.php:37
306
+ msgid "Related Posts Options"
307
+ msgstr "Opções do Related Posts"
308
+
309
+ #: classes/meta-boxes/class-meta-box-options.php:59
310
+ msgid "Exclude"
311
+ msgstr "Excluir"
312
+
313
+ #: classes/settings/class-settings-configurator.php:18
314
+ msgid "Styling"
315
+ msgstr "Estilos"
316
+
317
+ #: classes/settings/class-settings-configurator.php:24
318
+ msgid "Full control on how your related posts are displayed."
319
+ msgstr "Controlo total sobre a forma como os posts relacionados são apresentados."
320
+
321
+ #: classes/settings/class-settings-configurator.php:33
322
+ msgid "Posts per row"
323
+ msgstr "Posts por linha"
324
+
325
+ #: classes/settings/class-settings-configurator.php:34
326
+ msgid "The amount of related posts per row."
327
+ msgstr "O número de posts relacionados por linha."
328
+
329
+ #: classes/settings/class-settings-configurator.php:46
330
+ msgid "Row fixed height"
331
+ msgstr "Linha com altura fixa"
332
+
333
+ #: classes/settings/class-settings-configurator.php:47
334
+ msgid ""
335
+ "The fixed height per row in pixels, set to 0 to allow dynamic heights.."
336
+ msgstr "A altura fixa em pixels para cada linha, defina como 0 para permitir altura dinâmica."
337
+
338
+ #: classes/settings/class-settings-configurator.php:53
339
+ msgid "Custom CSS"
340
+ msgstr "CSS Customizado"
341
+
342
+ #: classes/settings/class-settings-configurator.php:54
343
+ msgid ""
344
+ "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
345
+ "error here will break frontend display. To disable, leave field empty."
346
+ msgstr "Adicionar CSS personalizado com o tema selecionado. Aviso! Este é um recurso avançado! Um erro aqui vai quebrar exibição na frente do seu site. Para desativar, deixe este campo vazio."
347
+
348
+ #: classes/settings/class-settings-general.php:18
349
+ msgid "General settings for %s"
350
+ msgstr "Configurações gerais para %s"
351
+
352
+ #: classes/settings/class-settings-general.php:24
353
+ msgid "Automatic %ss linking"
354
+ msgstr "Vinculação automatica %ss"
355
+
356
+ #: classes/settings/class-settings-general.php:25
357
+ msgid ""
358
+ "The following options affect how related posts are automatically linked for "
359
+ "%ss."
360
+ msgstr "As opções a seguir afetam como os posts relacionados são vinculados automaticamente para %ss."
361
+
362
+ #: classes/settings/class-settings-general.php:29
363
+ msgid "Enable"
364
+ msgstr "Habilitar"
365
+
366
+ #: classes/settings/class-settings-general.php:30
367
+ msgid "Checking this will enable automatically linking posts to new %ss"
368
+ msgstr "Marcando isso vai permitir a vinculação automaticamente para novos posts %ss"
369
+
370
+ #: classes/settings/class-settings-general.php:36
371
+ msgid "Amount of Posts"
372
+ msgstr "Quantidade de Posts"
373
+
374
+ #: classes/settings/class-settings-general.php:37
375
+ msgid "The amount of automatically linked %ss"
376
+ msgstr "A quantidade de posts automaticamente vinculada %ss"
377
+
378
+ #: classes/settings/class-settings-general.php:43
379
+ msgid "Maximum Post Age"
380
+ msgstr "Idade Máxima do Post"
381
+
382
+ #: classes/settings/class-settings-general.php:44
383
+ msgid "The maximum age in days of %ss that will be linked. (0 = unlimited)"
384
+ msgstr "A idade máxima em dias de %ss que serão associados. (0 = ilimitado)"
385
+
386
+ #: classes/settings/class-settings-general.php:51
387
+ msgid "Frontend Settings"
388
+ msgstr "Configurações de Frontend"
389
+
390
+ #: classes/settings/class-settings-general.php:52
391
+ msgid ""
392
+ "The following options affect how related %ss are displayed on the frontend."
393
+ msgstr "As opções a seguir afetam como os posts relacionados %ss são exibidos no frontend."
394
+
395
+ #: classes/settings/class-settings-general.php:56
396
+ msgid "Heading text"
397
+ msgstr "Texto do Cabeçalho"
398
+
399
+ #: classes/settings/class-settings-general.php:57
400
+ msgid ""
401
+ "The text that is displayed above the related %ss. To disable, leave field "
402
+ "empty."
403
+ msgstr "O texto que é exibido acima dos %ss relacionados. Para desativar, deixe este campo vazio sair."
404
+
405
+ #: classes/settings/class-settings-general.php:63
406
+ msgid "Excerpt length"
407
+ msgstr "Tamanho do resumo"
408
+
409
+ #: classes/settings/class-settings-general.php:64
410
+ msgid ""
411
+ "The amount of words to be displayed below the title on website. To disable, "
412
+ "set value to 0."
413
+ msgstr "A quantidade de palavras para ser exibidas abaixo do título no site. Para desativar, deixe este valor definido como 0."
414
+
415
+ #: classes/settings/class-settings-license.php:18
416
+ msgid "License"
417
+ msgstr "Licença"
418
+
419
+ #: classes/settings/class-settings-license.php:29
420
+ msgid "License Status"
421
+ msgstr "Estado da Licença"
422
+
423
+ #: classes/settings/class-settings-license.php:36
424
+ msgid "License Key"
425
+ msgstr "Chave da Licença"
426
+
427
+ #: classes/settings/class-settings-license.php:37
428
+ msgid ""
429
+ "Your license key. You can find your license key in your %sMy Account%s page."
430
+ msgstr "A sua Chave da Licença. Pode encontrar esta informação na página %sA Minha Conta%s."
431
+
432
+ #: classes/settings/class-settings-license.php:44
433
+ msgid "Activation Email"
434
+ msgstr "Email de Activação"
435
+
436
+ #: classes/settings/class-settings-license.php:45
437
+ msgid ""
438
+ "Your activation email address. You can find your activation email address in"
439
+ " your %sMy Account%s page."
440
+ msgstr "O seu email de activação. Pode encontrar esta informação na página %sA Minha Conta%s."
441
+
442
+ #: classes/settings/class-settings-misc.php:18
443
+ msgid "Misc"
444
+ msgstr "Diversos"
445
+
446
+ #: classes/settings/class-settings-misc.php:24
447
+ msgid "Miscellaneous Settings"
448
+ msgstr "Configurações Diversas"
449
+
450
+ #: classes/settings/class-settings-misc.php:25
451
+ msgid "A shelter for options that just don't fit in."
452
+ msgstr "Lugar para as opções que simplesmente não se encaixam."
453
+
454
+ #: classes/settings/class-settings-misc.php:29
455
+ msgid "Remove Data on Uninstall?"
456
+ msgstr "Remover Dados ao Desistalar?"
457
+
458
+ #: classes/settings/class-settings-misc.php:30
459
+ msgid ""
460
+ "Check this box if you would like to completely remove all of its data when "
461
+ "the plugin is deleted."
462
+ msgstr "Marque esta caixa se você gostaria de remover completamente todos os seus dados quando este plugin é excluído."
463
+
464
+ #: classes/settings/class-settings-misc.php:36
465
+ msgid "Show love?"
466
+ msgstr "Agradecer este plugin?"
467
+
468
+ #: classes/settings/class-settings-misc.php:37
469
+ msgid ""
470
+ "Display a 'Powered by' line under your related posts. <strong>BEWARE! Only "
471
+ "for the real fans.</strong>"
472
+ msgstr "Apresentar informação 'Powered by' abaixo dos posts relacionados. <strong>Atenção! Apenas para verdadeiros fans.</strong>"
473
+
474
+ #: classes/settings/class-settings-misc.php:43
475
+ msgid "Disable SSL Verification"
476
+ msgstr "Desabilitar verificação SSL"
477
+
478
+ #: classes/settings/class-settings-misc.php:44
479
+ msgid ""
480
+ "Disable SSL verification in license requests. Check this if you've got "
481
+ "problems connecting to licensing server."
482
+ msgstr "Desabilitar SSL nos pedidos de verificação de licença. Active esta opção caso esteja a ter problemas ao ligar ao nosso servidor de licenciamento."
483
+
484
+ #: classes/settings/class-settings-page.php:448
485
+ msgid "ACTIVATED"
486
+ msgstr "ACTIVADO"
487
+
488
+ #: classes/settings/class-settings-page.php:450
489
+ msgid "NOT ACTIVE"
490
+ msgstr "NÃO ACTIVO"
491
+
492
+ #: classes/settings/class-settings-weights.php:18
493
+ msgid "Weights"
494
+ msgstr "Prioridades"
495
+
496
+ #: classes/settings/class-settings-weights.php:24
497
+ msgid "Weight settings"
498
+ msgstr "Configuração de prioridades"
499
+
500
+ #: classes/settings/class-settings-weights.php:25
501
+ msgid ""
502
+ "Easily adjust the weights by using the sliders below. Please note that you "
503
+ "need to rerun the installer after changing weights."
504
+ msgstr "Facilmente ajuste as prioridades usando os controles abaixo. Por favor, note que você precisa voltar a executar o instalador após trocar as prioridades."
505
+
506
+ #: classes/settings/class-settings-weights.php:30
507
+ msgid "The weight of the title."
508
+ msgstr "A prioridade do título."
509
+
510
+ #: classes/settings/class-settings-weights.php:36
511
+ msgid "Links"
512
+ msgstr "Links"
513
+
514
+ #: classes/settings/class-settings-weights.php:37
515
+ msgid "The weight of the links found in the content."
516
+ msgstr "A prioridade dos links encontrados no conteúdo."
517
+
518
+ #: classes/settings/class-settings-weights.php:43
519
+ msgid "Categories"
520
+ msgstr "Categorias"
521
+
522
+ #: classes/settings/class-settings-weights.php:44
523
+ msgid "The weight of the categories."
524
+ msgstr "A prioridade das categorias."
525
+
526
+ #: classes/settings/class-settings-weights.php:50
527
+ msgid "Tags"
528
+ msgstr "Tags"
529
+
530
+ #: classes/settings/class-settings-weights.php:51
531
+ msgid "The weight of the tags."
532
+ msgstr "A prioridade das tags."
533
+
534
+ #: classes/settings/class-settings-weights.php:57
535
+ msgid "Custom Taxonomies"
536
+ msgstr "Taxonomias Personalizadas"
537
+
538
+ #: classes/settings/class-settings-weights.php:58
539
+ msgid "The weight of custom taxonomies."
540
+ msgstr "A prioridade das taxonomias personalizadas."
541
+
542
+ #: includes/updater/class-rp4wp-updater.php:131
543
+ msgid "Hide notice"
544
+ msgstr "Esconder mensagem"
545
+
546
+ #. Plugin Name of the plugin/theme
547
+ msgid "Related Posts for WordPress Premium"
548
+ msgstr "Related Posts for WordPress Premium"
549
+
550
+ #. Plugin URI of the plugin/theme
551
+ msgid "http://www.relatedpostsforwp.com/"
552
+ msgstr "http://www.relatedpostsforwp.com/"
553
+
554
+ #. Description of the plugin/theme
555
+ msgid "The best way to display related posts in WordPress."
556
+ msgstr "A melhor maneira de mostrar posts relacionados no WordPress."
557
+
558
+ #. Author of the plugin/theme
559
+ msgid "Barry Kooij"
560
+ msgstr "Barry Kooij"
561
+
562
+ #. Author URI of the plugin/theme
563
+ msgid "http://www.barrykooij.com/"
564
+ msgstr "http://www.barrykooij.com/"
languages/related-posts-for-wp-pt_pt.mo DELETED
Binary file
languages/related-posts-for-wp-ru_ru.mo DELETED
Binary file
languages/related-posts-for-wp-sr_RS.mo ADDED
Binary file
languages/{related-posts-for-wp-sr_sr.po → related-posts-for-wp-sr_RS.po} RENAMED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2014 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
@@ -7,14 +7,14 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Related Posts for WordPress\n"
9
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
10
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
11
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
12
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
13
- "Language-Team: Serbian (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/sr/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "Language: sr\n"
18
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.8\n"
20
 
@@ -35,7 +35,7 @@ msgstr "Да ли сте сигурни да желите да избришет
35
  #: classes/class-link-related-table.php:45
36
  #: classes/hooks/class-hook-settings-page.php:20
37
  #: classes/meta-boxes/class-meta-box-manage.php:37
38
- #: classes/settings/class-settings-general.php:52
39
  msgid "Related Posts"
40
  msgstr "Повезани чланци"
41
 
@@ -49,25 +49,25 @@ msgid "Title"
49
  msgstr "Наслов"
50
 
51
  #: classes/class-link-related-table.php:96
52
- #: classes/hooks/class-hook-page-install.php:220
53
  #: classes/hooks/class-hook-settings-page.php:152
54
  msgid "Post Type"
55
  msgstr "Post Type"
56
 
57
- #: classes/class-link-related-table.php:235
58
  msgid "Link Post"
59
  msgstr "Повежи чланак"
60
 
61
- #: classes/class-link-related-table.php:243
62
  msgid "View Post"
63
  msgstr ""
64
 
65
- #: classes/class-link-related-table.php:274
66
  msgid "Link Posts"
67
  msgstr "Повежи чланке"
68
 
69
  #: classes/class-post-type-manager.php:21
70
- #: classes/hooks/class-hook-link-related-screen.php:138
71
  msgid "Posts"
72
  msgstr "Чланци"
73
 
@@ -87,46 +87,46 @@ msgstr "Прикажи повезане чланке."
87
  msgid "Settings"
88
  msgstr "Подешавања"
89
 
90
- #: classes/hooks/class-hook-link-related-screen.php:139
91
  msgid "Cancel linking"
92
  msgstr "Прекини линковање"
93
 
94
- #: classes/hooks/class-hook-link-related-screen.php:155
95
  msgid "Search"
96
  msgstr "Претражи"
97
 
98
- #: classes/hooks/class-hook-page-install.php:109
99
  msgid "Welcome"
100
  msgstr "Добродошли"
101
 
102
- #: classes/hooks/class-hook-page-install.php:110
103
  msgid "Caching Posts"
104
  msgstr "Кеширани чланци"
105
 
106
- #: classes/hooks/class-hook-page-install.php:111
107
  msgid "Linking Posts"
108
  msgstr "Повезани чланци"
109
 
110
- #: classes/hooks/class-hook-page-install.php:112
111
  msgid "Finished"
112
  msgstr "Завршено."
113
 
114
- #: classes/hooks/class-hook-page-install.php:123
115
  msgid ""
116
- "Missing post type paramater, please report this incident via %sour "
117
  "website%s."
118
- msgstr "Недостаје post type параметар, пријавите овај инцидент преко %sнашег вебсајта%s."
119
 
120
- #: classes/hooks/class-hook-page-install.php:154
121
  msgid "Installation"
122
  msgstr "Инсталација"
123
 
124
- #: classes/hooks/class-hook-page-install.php:201
125
- #: classes/hooks/class-hook-page-install.php:284
126
  msgid "Thank you for choosing Related Posts for WordPress!"
127
  msgstr "Хвала што сте изабрали Повезане чланке за Вордпрес!"
128
 
129
- #: classes/hooks/class-hook-page-install.php:202
130
  msgid ""
131
  "Below you'll find your post types available for installation, by installing "
132
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -134,84 +134,96 @@ msgid ""
134
  "Type' button."
135
  msgstr "Испод ћете наћи ваше доступне post types за инсталацију, инсталирањем post type ми ћемо све кеширати и понудити Вам могућност да аутоматски повежете (подешене) чланке. Да инсталирате post type, једноставно кликните 'Инсталирај Post Type' дугме."
136
 
137
- #: classes/hooks/class-hook-page-install.php:221
138
  msgid "Related to Post Types"
139
  msgstr ""
140
 
141
- #: classes/hooks/class-hook-page-install.php:256
142
  msgid "Edit"
143
  msgstr ""
144
 
145
- #: classes/hooks/class-hook-page-install.php:285
146
  msgid ""
147
  "Before you can start using Related Posts for WordPress we need to cache your"
148
  " current posts."
149
  msgstr "Пре него што почнете са коришћењем Повезаних чланака за Вордпрес морамо да кеширамо све Ваше чланке."
150
 
151
- #: classes/hooks/class-hook-page-install.php:286
152
  msgid ""
153
  "This is a one time process which might take some time now, depending on the "
154
  "amount of posts you have, but will ensure your website's performance when "
155
  "using the plugin."
156
  msgstr "Ово је процес који може да узме мало више времена сада, зависно од броја Ваших чланака, али ће осигурати боље перформансе Вашег вебсајта када се додатак користи."
157
 
158
- #: classes/hooks/class-hook-page-install.php:288
159
  msgid ""
160
  "Do NOT close this window, wait for this process to finish and this wizard to"
161
  " take you to the next step."
162
  msgstr "Немојте да затварате овај прозор, сачекајте да се процес заврши и да вас одведе на следећи корак."
163
 
164
- #: classes/hooks/class-hook-page-install.php:306
165
  msgid "Great! All your posts were successfully cached!"
166
  msgstr "Одлично! Сви твоји чланци су успешно кеширани!"
167
 
168
- #: classes/hooks/class-hook-page-install.php:307
169
  msgid ""
170
  "You can let me link your posts, based on what I think is related, to each "
171
  "other. And don't worry, if I made a mistake at one of your posts you can "
172
  "easily correct this by editing it manually!"
173
  msgstr "Можете ме пустити да повежем Ваше чланке, судећи по томе како ја мислим да треба бити повезани. И не брините, ако погрешим, увек можете ручно исправити!"
174
 
175
- #: classes/hooks/class-hook-page-install.php:308
176
  msgid ""
177
  "Want me to start linking posts to each other? Fill in the amount of related "
178
  "posts each post should have and click on the \"Link now\" button. Rather "
179
  "link your posts manually? Click \"Skip linking\"."
180
  msgstr "Желите да отпочнемо са повезивањем чланака? Попуните колико повезаних чланака сваки чланак треба да има и кликните ”Повежи сада” дугме. Ипак желите сами да повежите своје чланке? Кликните ”Прескочи повезивање”."
181
 
182
- #: classes/hooks/class-hook-page-install.php:309
183
  msgid ""
184
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
185
  " process to finish and this wizard to take you to the next step."
186
  msgstr "Немојте да затварате овај прозор, сачекајте да се процес заврши и да вас одведе на следећи корак."
187
 
188
- #: classes/hooks/class-hook-page-install.php:313
189
- msgid "Amount of related posts per post:"
190
- msgstr "Број повезаних чланака по чланку:"
191
 
192
- #: classes/hooks/class-hook-page-install.php:317
 
 
 
 
 
 
 
 
 
 
 
 
193
  msgid "Link now"
194
  msgstr "Повежи сада"
195
 
196
- #: classes/hooks/class-hook-page-install.php:319
197
  msgid "Skip linking"
198
  msgstr "Прескочи повезивање"
199
 
200
- #: classes/hooks/class-hook-page-install.php:327
201
  msgid "That's it, you're good to go!"
202
  msgstr "То је то, готово је за сада!"
203
 
204
- #: classes/hooks/class-hook-page-install.php:328
205
  msgid ""
206
  "Thanks again for using Related Posts for WordPress and if you have any "
207
  "questions be sure to ask them at the %sWordPress.org forums.%s"
208
  msgstr "Хвала још једном што користите Повезане чланке за Вордпрес и ако имате питања слободно их поставите на %sWordPress.org forums.%s"
209
 
210
- #: classes/hooks/class-hook-page-install.php:331
211
  msgid "Click here to return to step 1"
212
  msgstr "Кликните овде за повратак на корак 1"
213
 
214
- #: classes/hooks/class-hook-page-install.php:337
215
  msgid "Click here to go to the settings page"
216
  msgstr "Кликните овде за страницу са подешавањима"
217
 
@@ -289,6 +301,49 @@ msgstr "Прекини везу Повезаних чланака"
289
  msgid "No related posts found."
290
  msgstr "Нема пронађених повезаних чланака."
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  #: classes/settings/class-settings-general.php:18
293
  msgid "General settings for %s"
294
  msgstr "Општа подешавања за %s"
@@ -319,43 +374,43 @@ msgstr "Количина чланака"
319
  msgid "The amount of automatically linked %ss"
320
  msgstr "Број аутоматско повезаних %s"
321
 
 
 
 
 
322
  #: classes/settings/class-settings-general.php:44
 
 
 
 
323
  msgid "Frontend Settings"
324
  msgstr "Подешавања корисничког интерфејса"
325
 
326
- #: classes/settings/class-settings-general.php:45
327
  msgid ""
328
  "The following options affect how related %ss are displayed on the frontend."
329
  msgstr "Опције које следе утичу на то како ће повезани %s бити приказани у корисничком интерфејсу."
330
 
331
- #: classes/settings/class-settings-general.php:49
332
  msgid "Heading text"
333
  msgstr "Главни текст"
334
 
335
- #: classes/settings/class-settings-general.php:50
336
  msgid ""
337
  "The text that is displayed above the related %ss. To disable, leave field "
338
  "empty."
339
  msgstr "Текст који се приказује изнад повезаних %s. Да онемогућите, оставите празно поље."
340
 
341
- #: classes/settings/class-settings-general.php:56
342
  msgid "Excerpt length"
343
  msgstr "Дужина одломка"
344
 
345
- #: classes/settings/class-settings-general.php:57
346
  msgid ""
347
  "The amount of words to be displayed below the title on website. To disable, "
348
  "set value to 0."
349
  msgstr "Број речи које се приказују испод наслова на вебсајту. Да онемогућите, поставите вредност на 0."
350
 
351
- #: classes/settings/class-settings-general.php:63
352
- msgid "Display Image"
353
- msgstr "Прикажи слику"
354
-
355
- #: classes/settings/class-settings-general.php:64
356
- msgid "Checking this will enable displaying featured images of related %ss."
357
- msgstr "Означавање овога ће омогућити приказ истакнуте слике повезаних %s."
358
-
359
  #: classes/settings/class-settings-license.php:18
360
  msgid "License"
361
  msgstr ""
@@ -405,45 +460,33 @@ msgid ""
405
  "the plugin is deleted."
406
  msgstr "Означите овај квадратић ако желите да комплетно избришете све његове податке када је додатак избрисан."
407
 
408
- #: classes/settings/class-settings-page.php:450
409
- msgid "ACTIVATED"
410
  msgstr ""
411
 
412
- #: classes/settings/class-settings-page.php:452
413
- msgid "NOT ACTIVE"
 
 
414
  msgstr ""
415
 
416
- #: classes/settings/class-settings-themes.php:18
417
- msgid "Styling"
418
- msgstr "Стилизовање"
419
-
420
- #: classes/settings/class-settings-themes.php:31
421
- msgid "Styling settings"
422
- msgstr "Подешавање стилова"
423
-
424
- #: classes/settings/class-settings-themes.php:32
425
- msgid "Control how your related posts are displayed on your website."
426
  msgstr ""
427
 
428
- #: classes/settings/class-settings-themes.php:36
429
- msgid "Themes"
430
- msgstr "Теме"
431
-
432
- #: classes/settings/class-settings-themes.php:37
433
  msgid ""
434
- "Select one of the CSS themes above to display your related posts the way you"
435
- " like to."
436
- msgstr "Означи један од CSS тема изнад за приказ повезаних чланака како се Вама свиђа."
437
 
438
- #: classes/settings/class-settings-themes.php:43
439
- msgid "Custom CSS"
440
- msgstr "Прилагођени CSS"
441
 
442
- #: classes/settings/class-settings-themes.php:44
443
- msgid ""
444
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
445
- "error here will break frontend display. To disable, leave field empty."
446
- msgstr "Додајте подешени CSS означеној теми. Упозорење! Ово је напредна функционалност! Грешка овде може направити проблем у корисничком интерфејсу."
447
 
448
  #: classes/settings/class-settings-weights.php:18
449
  msgid "Weights"
@@ -495,18 +538,6 @@ msgstr ""
495
  msgid "The weight of custom taxonomies."
496
  msgstr ""
497
 
498
- #: classes/themes/class-theme-column-one.php:13
499
- msgid "One related post item per row."
500
- msgstr "Један повезани чланак по реду."
501
-
502
- #: classes/themes/class-theme-column-three.php:13
503
- msgid "Three related post items per row."
504
- msgstr "Три повезаних чланака по реду."
505
-
506
- #: classes/themes/class-theme-column-two.php:13
507
- msgid "Two related post items per row."
508
- msgstr "Два повезана чланка по реду."
509
-
510
  #: includes/updater/class-rp4wp-updater.php:131
511
  msgid "Hide notice"
512
  msgstr "Сакриј обавештење"
1
+ # Copyright (C) 2015 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
7
  msgstr ""
8
  "Project-Id-Version: Related Posts for WordPress\n"
9
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
10
+ "POT-Creation-Date: 2015-05-31 09:56:12+00:00\n"
11
+ "PO-Revision-Date: 2015-06-07 19:41+0000\n"
12
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
13
+ "Language-Team: Serbian (Serbia) (http://www.transifex.com/barrykooijplugins/related-posts-for-wordpress/language/sr_RS/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Language: sr_RS\n"
18
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.8\n"
20
 
35
  #: classes/class-link-related-table.php:45
36
  #: classes/hooks/class-hook-settings-page.php:20
37
  #: classes/meta-boxes/class-meta-box-manage.php:37
38
+ #: classes/settings/class-settings-general.php:59
39
  msgid "Related Posts"
40
  msgstr "Повезани чланци"
41
 
49
  msgstr "Наслов"
50
 
51
  #: classes/class-link-related-table.php:96
52
+ #: classes/hooks/class-hook-page-install.php:168
53
  #: classes/hooks/class-hook-settings-page.php:152
54
  msgid "Post Type"
55
  msgstr "Post Type"
56
 
57
+ #: classes/class-link-related-table.php:260
58
  msgid "Link Post"
59
  msgstr "Повежи чланак"
60
 
61
+ #: classes/class-link-related-table.php:268
62
  msgid "View Post"
63
  msgstr ""
64
 
65
+ #: classes/class-link-related-table.php:299
66
  msgid "Link Posts"
67
  msgstr "Повежи чланке"
68
 
69
  #: classes/class-post-type-manager.php:21
70
+ #: classes/hooks/class-hook-link-related-screen.php:155
71
  msgid "Posts"
72
  msgstr "Чланци"
73
 
87
  msgid "Settings"
88
  msgstr "Подешавања"
89
 
90
+ #: classes/hooks/class-hook-link-related-screen.php:157
91
  msgid "Cancel linking"
92
  msgstr "Прекини линковање"
93
 
94
+ #: classes/hooks/class-hook-link-related-screen.php:173
95
  msgid "Search"
96
  msgstr "Претражи"
97
 
98
+ #: classes/hooks/class-hook-page-install.php:57
99
  msgid "Welcome"
100
  msgstr "Добродошли"
101
 
102
+ #: classes/hooks/class-hook-page-install.php:58
103
  msgid "Caching Posts"
104
  msgstr "Кеширани чланци"
105
 
106
+ #: classes/hooks/class-hook-page-install.php:59
107
  msgid "Linking Posts"
108
  msgstr "Повезани чланци"
109
 
110
+ #: classes/hooks/class-hook-page-install.php:60
111
  msgid "Finished"
112
  msgstr "Завршено."
113
 
114
+ #: classes/hooks/class-hook-page-install.php:71
115
  msgid ""
116
+ "Missing post type parameter, please report this incident via %sour "
117
  "website%s."
118
+ msgstr ""
119
 
120
+ #: classes/hooks/class-hook-page-install.php:102
121
  msgid "Installation"
122
  msgstr "Инсталација"
123
 
124
+ #: classes/hooks/class-hook-page-install.php:149
125
+ #: classes/hooks/class-hook-page-install.php:228
126
  msgid "Thank you for choosing Related Posts for WordPress!"
127
  msgstr "Хвала што сте изабрали Повезане чланке за Вордпрес!"
128
 
129
+ #: classes/hooks/class-hook-page-install.php:150
130
  msgid ""
131
  "Below you'll find your post types available for installation, by installing "
132
  "a post type we'll set up a cache and offer you the ability to automatic link"
134
  "Type' button."
135
  msgstr "Испод ћете наћи ваше доступне post types за инсталацију, инсталирањем post type ми ћемо све кеширати и понудити Вам могућност да аутоматски повежете (подешене) чланке. Да инсталирате post type, једноставно кликните 'Инсталирај Post Type' дугме."
136
 
137
+ #: classes/hooks/class-hook-page-install.php:169
138
  msgid "Related to Post Types"
139
  msgstr ""
140
 
141
+ #: classes/hooks/class-hook-page-install.php:204
142
  msgid "Edit"
143
  msgstr ""
144
 
145
+ #: classes/hooks/class-hook-page-install.php:229
146
  msgid ""
147
  "Before you can start using Related Posts for WordPress we need to cache your"
148
  " current posts."
149
  msgstr "Пре него што почнете са коришћењем Повезаних чланака за Вордпрес морамо да кеширамо све Ваше чланке."
150
 
151
+ #: classes/hooks/class-hook-page-install.php:230
152
  msgid ""
153
  "This is a one time process which might take some time now, depending on the "
154
  "amount of posts you have, but will ensure your website's performance when "
155
  "using the plugin."
156
  msgstr "Ово је процес који може да узме мало више времена сада, зависно од броја Ваших чланака, али ће осигурати боље перформансе Вашег вебсајта када се додатак користи."
157
 
158
+ #: classes/hooks/class-hook-page-install.php:232
159
  msgid ""
160
  "Do NOT close this window, wait for this process to finish and this wizard to"
161
  " take you to the next step."
162
  msgstr "Немојте да затварате овај прозор, сачекајте да се процес заврши и да вас одведе на следећи корак."
163
 
164
+ #: classes/hooks/class-hook-page-install.php:266
165
  msgid "Great! All your posts were successfully cached!"
166
  msgstr "Одлично! Сви твоји чланци су успешно кеширани!"
167
 
168
+ #: classes/hooks/class-hook-page-install.php:267
169
  msgid ""
170
  "You can let me link your posts, based on what I think is related, to each "
171
  "other. And don't worry, if I made a mistake at one of your posts you can "
172
  "easily correct this by editing it manually!"
173
  msgstr "Можете ме пустити да повежем Ваше чланке, судећи по томе како ја мислим да треба бити повезани. И не брините, ако погрешим, увек можете ручно исправити!"
174
 
175
+ #: classes/hooks/class-hook-page-install.php:268
176
  msgid ""
177
  "Want me to start linking posts to each other? Fill in the amount of related "
178
  "posts each post should have and click on the \"Link now\" button. Rather "
179
  "link your posts manually? Click \"Skip linking\"."
180
  msgstr "Желите да отпочнемо са повезивањем чланака? Попуните колико повезаних чланака сваки чланак треба да има и кликните ”Повежи сада” дугме. Ипак желите сами да повежите своје чланке? Кликните ”Прескочи повезивање”."
181
 
182
+ #: classes/hooks/class-hook-page-install.php:269
183
  msgid ""
184
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
185
  " process to finish and this wizard to take you to the next step."
186
  msgstr "Немојте да затварате овај прозор, сачекајте да се процес заврши и да вас одведе на следећи корак."
187
 
188
+ #: classes/hooks/class-hook-page-install.php:275
189
+ msgid "Amount of related posts:"
190
+ msgstr ""
191
 
192
+ #: classes/hooks/class-hook-page-install.php:277
193
+ msgid "The amount of related items per %s"
194
+ msgstr ""
195
+
196
+ #: classes/hooks/class-hook-page-install.php:282
197
+ msgid "Maximum Post Age:"
198
+ msgstr ""
199
+
200
+ #: classes/hooks/class-hook-page-install.php:284
201
+ msgid "The maximum age in days of %s that will be linked. (0 = unlimited)"
202
+ msgstr ""
203
+
204
+ #: classes/hooks/class-hook-page-install.php:290
205
  msgid "Link now"
206
  msgstr "Повежи сада"
207
 
208
+ #: classes/hooks/class-hook-page-install.php:291
209
  msgid "Skip linking"
210
  msgstr "Прескочи повезивање"
211
 
212
+ #: classes/hooks/class-hook-page-install.php:309
213
  msgid "That's it, you're good to go!"
214
  msgstr "То је то, готово је за сада!"
215
 
216
+ #: classes/hooks/class-hook-page-install.php:310
217
  msgid ""
218
  "Thanks again for using Related Posts for WordPress and if you have any "
219
  "questions be sure to ask them at the %sWordPress.org forums.%s"
220
  msgstr "Хвала још једном што користите Повезане чланке за Вордпрес и ако имате питања слободно их поставите на %sWordPress.org forums.%s"
221
 
222
+ #: classes/hooks/class-hook-page-install.php:313
223
  msgid "Click here to return to step 1"
224
  msgstr "Кликните овде за повратак на корак 1"
225
 
226
+ #: classes/hooks/class-hook-page-install.php:319
227
  msgid "Click here to go to the settings page"
228
  msgstr "Кликните овде за страницу са подешавањима"
229
 
301
  msgid "No related posts found."
302
  msgstr "Нема пронађених повезаних чланака."
303
 
304
+ #: classes/meta-boxes/class-meta-box-options.php:37
305
+ msgid "Related Posts Options"
306
+ msgstr ""
307
+
308
+ #: classes/meta-boxes/class-meta-box-options.php:59
309
+ msgid "Exclude"
310
+ msgstr ""
311
+
312
+ #: classes/settings/class-settings-configurator.php:18
313
+ msgid "Styling"
314
+ msgstr "Стилизовање"
315
+
316
+ #: classes/settings/class-settings-configurator.php:24
317
+ msgid "Full control on how your related posts are displayed."
318
+ msgstr ""
319
+
320
+ #: classes/settings/class-settings-configurator.php:33
321
+ msgid "Posts per row"
322
+ msgstr ""
323
+
324
+ #: classes/settings/class-settings-configurator.php:34
325
+ msgid "The amount of related posts per row."
326
+ msgstr ""
327
+
328
+ #: classes/settings/class-settings-configurator.php:46
329
+ msgid "Row fixed height"
330
+ msgstr ""
331
+
332
+ #: classes/settings/class-settings-configurator.php:47
333
+ msgid ""
334
+ "The fixed height per row in pixels, set to 0 to allow dynamic heights.."
335
+ msgstr ""
336
+
337
+ #: classes/settings/class-settings-configurator.php:53
338
+ msgid "Custom CSS"
339
+ msgstr "Прилагођени CSS"
340
+
341
+ #: classes/settings/class-settings-configurator.php:54
342
+ msgid ""
343
+ "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
344
+ "error here will break frontend display. To disable, leave field empty."
345
+ msgstr "Додајте подешени CSS означеној теми. Упозорење! Ово је напредна функционалност! Грешка овде може направити проблем у корисничком интерфејсу."
346
+
347
  #: classes/settings/class-settings-general.php:18
348
  msgid "General settings for %s"
349
  msgstr "Општа подешавања за %s"
374
  msgid "The amount of automatically linked %ss"
375
  msgstr "Број аутоматско повезаних %s"
376
 
377
+ #: classes/settings/class-settings-general.php:43
378
+ msgid "Maximum Post Age"
379
+ msgstr ""
380
+
381
  #: classes/settings/class-settings-general.php:44
382
+ msgid "The maximum age in days of %ss that will be linked. (0 = unlimited)"
383
+ msgstr ""
384
+
385
+ #: classes/settings/class-settings-general.php:51
386
  msgid "Frontend Settings"
387
  msgstr "Подешавања корисничког интерфејса"
388
 
389
+ #: classes/settings/class-settings-general.php:52
390
  msgid ""
391
  "The following options affect how related %ss are displayed on the frontend."
392
  msgstr "Опције које следе утичу на то како ће повезани %s бити приказани у корисничком интерфејсу."
393
 
394
+ #: classes/settings/class-settings-general.php:56
395
  msgid "Heading text"
396
  msgstr "Главни текст"
397
 
398
+ #: classes/settings/class-settings-general.php:57
399
  msgid ""
400
  "The text that is displayed above the related %ss. To disable, leave field "
401
  "empty."
402
  msgstr "Текст који се приказује изнад повезаних %s. Да онемогућите, оставите празно поље."
403
 
404
+ #: classes/settings/class-settings-general.php:63
405
  msgid "Excerpt length"
406
  msgstr "Дужина одломка"
407
 
408
+ #: classes/settings/class-settings-general.php:64
409
  msgid ""
410
  "The amount of words to be displayed below the title on website. To disable, "
411
  "set value to 0."
412
  msgstr "Број речи које се приказују испод наслова на вебсајту. Да онемогућите, поставите вредност на 0."
413
 
 
 
 
 
 
 
 
 
414
  #: classes/settings/class-settings-license.php:18
415
  msgid "License"
416
  msgstr ""
460
  "the plugin is deleted."
461
  msgstr "Означите овај квадратић ако желите да комплетно избришете све његове податке када је додатак избрисан."
462
 
463
+ #: classes/settings/class-settings-misc.php:36
464
+ msgid "Show love?"
465
  msgstr ""
466
 
467
+ #: classes/settings/class-settings-misc.php:37
468
+ msgid ""
469
+ "Display a 'Powered by' line under your related posts. <strong>BEWARE! Only "
470
+ "for the real fans.</strong>"
471
  msgstr ""
472
 
473
+ #: classes/settings/class-settings-misc.php:43
474
+ msgid "Disable SSL Verification"
 
 
 
 
 
 
 
 
475
  msgstr ""
476
 
477
+ #: classes/settings/class-settings-misc.php:44
 
 
 
 
478
  msgid ""
479
+ "Disable SSL verification in license requests. Check this if you've got "
480
+ "problems connecting to licensing server."
481
+ msgstr ""
482
 
483
+ #: classes/settings/class-settings-page.php:448
484
+ msgid "ACTIVATED"
485
+ msgstr ""
486
 
487
+ #: classes/settings/class-settings-page.php:450
488
+ msgid "NOT ACTIVE"
489
+ msgstr ""
 
 
490
 
491
  #: classes/settings/class-settings-weights.php:18
492
  msgid "Weights"
538
  msgid "The weight of custom taxonomies."
539
  msgstr ""
540
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  #: includes/updater/class-rp4wp-updater.php:131
542
  msgid "Hide notice"
543
  msgstr "Сакриј обавештење"
languages/related-posts-for-wp-sr_sr.mo DELETED
Binary file
languages/related-posts-for-wp-sv_SE.mo ADDED
Binary file
languages/{related-posts-for-wp-sv_sv.po → related-posts-for-wp-sv_SE.po} RENAMED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2014 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
@@ -7,14 +7,14 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Related Posts for WordPress\n"
9
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
10
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
11
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
12
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
13
- "Language-Team: Swedish (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/sv/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "Language: sv\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.8\n"
20
 
@@ -35,7 +35,7 @@ msgstr "Är du säker på att du vill radera det här relaterade inlägget?"
35
  #: classes/class-link-related-table.php:45
36
  #: classes/hooks/class-hook-settings-page.php:20
37
  #: classes/meta-boxes/class-meta-box-manage.php:37
38
- #: classes/settings/class-settings-general.php:52
39
  msgid "Related Posts"
40
  msgstr "Relaterade inlägg"
41
 
@@ -49,25 +49,25 @@ msgid "Title"
49
  msgstr "Rubrik"
50
 
51
  #: classes/class-link-related-table.php:96
52
- #: classes/hooks/class-hook-page-install.php:220
53
  #: classes/hooks/class-hook-settings-page.php:152
54
  msgid "Post Type"
55
  msgstr "Posttyp"
56
 
57
- #: classes/class-link-related-table.php:235
58
  msgid "Link Post"
59
  msgstr "Länka inlägg"
60
 
61
- #: classes/class-link-related-table.php:243
62
  msgid "View Post"
63
  msgstr ""
64
 
65
- #: classes/class-link-related-table.php:274
66
  msgid "Link Posts"
67
  msgstr "Länka inlägg"
68
 
69
  #: classes/class-post-type-manager.php:21
70
- #: classes/hooks/class-hook-link-related-screen.php:138
71
  msgid "Posts"
72
  msgstr "Inlägg"
73
 
@@ -87,46 +87,46 @@ msgstr "Visa relaterade inlägg."
87
  msgid "Settings"
88
  msgstr "Inställningar"
89
 
90
- #: classes/hooks/class-hook-link-related-screen.php:139
91
  msgid "Cancel linking"
92
  msgstr "Avbryt länkning"
93
 
94
- #: classes/hooks/class-hook-link-related-screen.php:155
95
  msgid "Search"
96
  msgstr "Sök"
97
 
98
- #: classes/hooks/class-hook-page-install.php:109
99
  msgid "Welcome"
100
  msgstr "Välkommen"
101
 
102
- #: classes/hooks/class-hook-page-install.php:110
103
  msgid "Caching Posts"
104
  msgstr "Cachar inlägg"
105
 
106
- #: classes/hooks/class-hook-page-install.php:111
107
  msgid "Linking Posts"
108
  msgstr "Länkar inlägg"
109
 
110
- #: classes/hooks/class-hook-page-install.php:112
111
  msgid "Finished"
112
  msgstr "Avslutad"
113
 
114
- #: classes/hooks/class-hook-page-install.php:123
115
  msgid ""
116
- "Missing post type paramater, please report this incident via %sour "
117
  "website%s."
118
- msgstr "Saknar posttypparameter, vänligen rapportera denna händelse via %svår webbplats%s."
119
 
120
- #: classes/hooks/class-hook-page-install.php:154
121
  msgid "Installation"
122
  msgstr "Installation"
123
 
124
- #: classes/hooks/class-hook-page-install.php:201
125
- #: classes/hooks/class-hook-page-install.php:284
126
  msgid "Thank you for choosing Related Posts for WordPress!"
127
  msgstr "Tack för att du valt Related Posts for WordPress!"
128
 
129
- #: classes/hooks/class-hook-page-install.php:202
130
  msgid ""
131
  "Below you'll find your post types available for installation, by installing "
132
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -134,84 +134,96 @@ msgid ""
134
  "Type' button."
135
  msgstr "Nedanför hittar du dina posttyper tillgängliga för installation. Genom att installera en posttyp skapar vi en cache och erbjuder dig möjligheten att automatiskt länka (egna) posttyper. För att installera en posttyp, klicka på 'Installera posttyp'-knappen."
136
 
137
- #: classes/hooks/class-hook-page-install.php:221
138
  msgid "Related to Post Types"
139
  msgstr ""
140
 
141
- #: classes/hooks/class-hook-page-install.php:256
142
  msgid "Edit"
143
  msgstr ""
144
 
145
- #: classes/hooks/class-hook-page-install.php:285
146
  msgid ""
147
  "Before you can start using Related Posts for WordPress we need to cache your"
148
  " current posts."
149
  msgstr "Före du kan börja använda Related Posts for WooCommerce behöver vi cache'a ditt nuvarande inlägg."
150
 
151
- #: classes/hooks/class-hook-page-install.php:286
152
  msgid ""
153
  "This is a one time process which might take some time now, depending on the "
154
  "amount of posts you have, but will ensure your website's performance when "
155
  "using the plugin."
156
  msgstr "Detta är en engångsprocess som kan ta en viss tid nu, beroende på antalet inlägg du har, men som kommer att säkerställa din webbplats prestanda när du använder pluginet."
157
 
158
- #: classes/hooks/class-hook-page-install.php:288
159
  msgid ""
160
  "Do NOT close this window, wait for this process to finish and this wizard to"
161
  " take you to the next step."
162
  msgstr "Stäng INTE det här fönstret, vänta på att den här processen ska avslutas och guiden tar dig till nästa steg."
163
 
164
- #: classes/hooks/class-hook-page-install.php:306
165
  msgid "Great! All your posts were successfully cached!"
166
  msgstr "Strålande! Alla dina inlägg cachades!"
167
 
168
- #: classes/hooks/class-hook-page-install.php:307
169
  msgid ""
170
  "You can let me link your posts, based on what I think is related, to each "
171
  "other. And don't worry, if I made a mistake at one of your posts you can "
172
  "easily correct this by editing it manually!"
173
  msgstr "Du kan låta mig länka dina inlägg, baserat på vad jag anser vara relaterat. Och inga problem - om jag gör ett misstag kan du alltid justera det genom att ändra det manuellt."
174
 
175
- #: classes/hooks/class-hook-page-install.php:308
176
  msgid ""
177
  "Want me to start linking posts to each other? Fill in the amount of related "
178
  "posts each post should have and click on the \"Link now\" button. Rather "
179
  "link your posts manually? Click \"Skip linking\"."
180
  msgstr "Vill du att jag ska starta att länka inlägg mellan varandra? Fyll i det antal relaterade inlägg som varje inlägg ska ha och klicka på \"Länka nu\"-knappen. Vill du hellre länka dina inlägg manuellt? Klicka \"Hoppa över länkning\""
181
 
182
- #: classes/hooks/class-hook-page-install.php:309
183
  msgid ""
184
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
185
  " process to finish and this wizard to take you to the next step."
186
  msgstr "Stäng INTE det här fönstret om du klickar \"Länka nu\"-knappen, vänta på att den här processen slutförs och guiden tar dig vidare till nästa steg."
187
 
188
- #: classes/hooks/class-hook-page-install.php:313
189
- msgid "Amount of related posts per post:"
190
- msgstr "Antal relaterade inlägg per inlägg:"
191
 
192
- #: classes/hooks/class-hook-page-install.php:317
 
 
 
 
 
 
 
 
 
 
 
 
193
  msgid "Link now"
194
  msgstr "Länka nu"
195
 
196
- #: classes/hooks/class-hook-page-install.php:319
197
  msgid "Skip linking"
198
  msgstr "Hoppa över länkning"
199
 
200
- #: classes/hooks/class-hook-page-install.php:327
201
  msgid "That's it, you're good to go!"
202
  msgstr "Det var det, nu kan du sätta igång!"
203
 
204
- #: classes/hooks/class-hook-page-install.php:328
205
  msgid ""
206
  "Thanks again for using Related Posts for WordPress and if you have any "
207
  "questions be sure to ask them at the %sWordPress.org forums.%s"
208
  msgstr "Tack igen för att du använder Related Posts for WordPress. Om du har några snabba frågor, ställ dem på %sWordPress.org forums.%s"
209
 
210
- #: classes/hooks/class-hook-page-install.php:331
211
  msgid "Click here to return to step 1"
212
  msgstr "Klicka här för att återvända till steg 1."
213
 
214
- #: classes/hooks/class-hook-page-install.php:337
215
  msgid "Click here to go to the settings page"
216
  msgstr "Klicka här för att gå till inställningssidan"
217
 
@@ -289,6 +301,49 @@ msgstr "Ta bort länken för det relaterade inlägget"
289
  msgid "No related posts found."
290
  msgstr "Inga relaterade inlägg hittades"
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  #: classes/settings/class-settings-general.php:18
293
  msgid "General settings for %s"
294
  msgstr "Generella inställningar för %s"
@@ -319,43 +374,43 @@ msgstr "Antal inlägg"
319
  msgid "The amount of automatically linked %ss"
320
  msgstr "Antalet automatiskt länkade %ss"
321
 
 
 
 
 
322
  #: classes/settings/class-settings-general.php:44
 
 
 
 
323
  msgid "Frontend Settings"
324
  msgstr "Frontend-inställningar"
325
 
326
- #: classes/settings/class-settings-general.php:45
327
  msgid ""
328
  "The following options affect how related %ss are displayed on the frontend."
329
  msgstr "Följande alternativ påverkar hur relaterade %ss visas i frontend."
330
 
331
- #: classes/settings/class-settings-general.php:49
332
  msgid "Heading text"
333
  msgstr "Rubriktext"
334
 
335
- #: classes/settings/class-settings-general.php:50
336
  msgid ""
337
  "The text that is displayed above the related %ss. To disable, leave field "
338
  "empty."
339
  msgstr "Texten som visas ovanför relaterade %ss. Lämna tomt för att avaktivera."
340
 
341
- #: classes/settings/class-settings-general.php:56
342
  msgid "Excerpt length"
343
  msgstr "Utdragslängd"
344
 
345
- #: classes/settings/class-settings-general.php:57
346
  msgid ""
347
  "The amount of words to be displayed below the title on website. To disable, "
348
  "set value to 0."
349
  msgstr "Antalet ord som visas under rubriken på webbplatsen. Sätt värdet till 0 för att avaktivera."
350
 
351
- #: classes/settings/class-settings-general.php:63
352
- msgid "Display Image"
353
- msgstr "Visa bild"
354
-
355
- #: classes/settings/class-settings-general.php:64
356
- msgid "Checking this will enable displaying featured images of related %ss."
357
- msgstr "Kryssa i den här för att aktivera utvalda bilder för relaterade %ss."
358
-
359
  #: classes/settings/class-settings-license.php:18
360
  msgid "License"
361
  msgstr ""
@@ -405,45 +460,33 @@ msgid ""
405
  "the plugin is deleted."
406
  msgstr "Kryssa i den här rutan om du vill avlägsna all data i samband med att pluginet raderas."
407
 
408
- #: classes/settings/class-settings-page.php:450
409
- msgid "ACTIVATED"
410
  msgstr ""
411
 
412
- #: classes/settings/class-settings-page.php:452
413
- msgid "NOT ACTIVE"
 
 
414
  msgstr ""
415
 
416
- #: classes/settings/class-settings-themes.php:18
417
- msgid "Styling"
418
- msgstr "Styling"
419
-
420
- #: classes/settings/class-settings-themes.php:31
421
- msgid "Styling settings"
422
- msgstr "Styling-inställningar"
423
-
424
- #: classes/settings/class-settings-themes.php:32
425
- msgid "Control how your related posts are displayed on your website."
426
  msgstr ""
427
 
428
- #: classes/settings/class-settings-themes.php:36
429
- msgid "Themes"
430
- msgstr "Teman"
431
-
432
- #: classes/settings/class-settings-themes.php:37
433
  msgid ""
434
- "Select one of the CSS themes above to display your related posts the way you"
435
- " like to."
436
- msgstr "Välj ett CSS-tema ovan för att visa dina relaterade inlägg på det sätt du vill ha det."
437
 
438
- #: classes/settings/class-settings-themes.php:43
439
- msgid "Custom CSS"
440
- msgstr "Egen CSS"
441
 
442
- #: classes/settings/class-settings-themes.php:44
443
- msgid ""
444
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
445
- "error here will break frontend display. To disable, leave field empty."
446
- msgstr "Lägg till egen CSS till det valda temat. Varning! Detta är en avancerad funktion! Ett fel här kan förstöra designen i frontend. Lämna tomt för att avaktivera."
447
 
448
  #: classes/settings/class-settings-weights.php:18
449
  msgid "Weights"
@@ -495,18 +538,6 @@ msgstr ""
495
  msgid "The weight of custom taxonomies."
496
  msgstr ""
497
 
498
- #: classes/themes/class-theme-column-one.php:13
499
- msgid "One related post item per row."
500
- msgstr "Ett relaterad inlägg per rad."
501
-
502
- #: classes/themes/class-theme-column-three.php:13
503
- msgid "Three related post items per row."
504
- msgstr "Tre relaterade inlägg per rad."
505
-
506
- #: classes/themes/class-theme-column-two.php:13
507
- msgid "Two related post items per row."
508
- msgstr "Två relaterade inlägg per rad."
509
-
510
  #: includes/updater/class-rp4wp-updater.php:131
511
  msgid "Hide notice"
512
  msgstr "Dölj meddelande"
1
+ # Copyright (C) 2015 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
7
  msgstr ""
8
  "Project-Id-Version: Related Posts for WordPress\n"
9
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
10
+ "POT-Creation-Date: 2015-05-31 09:56:12+00:00\n"
11
+ "PO-Revision-Date: 2015-06-07 19:41+0000\n"
12
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
13
+ "Language-Team: Swedish (Sweden) (http://www.transifex.com/barrykooijplugins/related-posts-for-wordpress/language/sv_SE/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Language: sv_SE\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.8\n"
20
 
35
  #: classes/class-link-related-table.php:45
36
  #: classes/hooks/class-hook-settings-page.php:20
37
  #: classes/meta-boxes/class-meta-box-manage.php:37
38
+ #: classes/settings/class-settings-general.php:59
39
  msgid "Related Posts"
40
  msgstr "Relaterade inlägg"
41
 
49
  msgstr "Rubrik"
50
 
51
  #: classes/class-link-related-table.php:96
52
+ #: classes/hooks/class-hook-page-install.php:168
53
  #: classes/hooks/class-hook-settings-page.php:152
54
  msgid "Post Type"
55
  msgstr "Posttyp"
56
 
57
+ #: classes/class-link-related-table.php:260
58
  msgid "Link Post"
59
  msgstr "Länka inlägg"
60
 
61
+ #: classes/class-link-related-table.php:268
62
  msgid "View Post"
63
  msgstr ""
64
 
65
+ #: classes/class-link-related-table.php:299
66
  msgid "Link Posts"
67
  msgstr "Länka inlägg"
68
 
69
  #: classes/class-post-type-manager.php:21
70
+ #: classes/hooks/class-hook-link-related-screen.php:155
71
  msgid "Posts"
72
  msgstr "Inlägg"
73
 
87
  msgid "Settings"
88
  msgstr "Inställningar"
89
 
90
+ #: classes/hooks/class-hook-link-related-screen.php:157
91
  msgid "Cancel linking"
92
  msgstr "Avbryt länkning"
93
 
94
+ #: classes/hooks/class-hook-link-related-screen.php:173
95
  msgid "Search"
96
  msgstr "Sök"
97
 
98
+ #: classes/hooks/class-hook-page-install.php:57
99
  msgid "Welcome"
100
  msgstr "Välkommen"
101
 
102
+ #: classes/hooks/class-hook-page-install.php:58
103
  msgid "Caching Posts"
104
  msgstr "Cachar inlägg"
105
 
106
+ #: classes/hooks/class-hook-page-install.php:59
107
  msgid "Linking Posts"
108
  msgstr "Länkar inlägg"
109
 
110
+ #: classes/hooks/class-hook-page-install.php:60
111
  msgid "Finished"
112
  msgstr "Avslutad"
113
 
114
+ #: classes/hooks/class-hook-page-install.php:71
115
  msgid ""
116
+ "Missing post type parameter, please report this incident via %sour "
117
  "website%s."
118
+ msgstr ""
119
 
120
+ #: classes/hooks/class-hook-page-install.php:102
121
  msgid "Installation"
122
  msgstr "Installation"
123
 
124
+ #: classes/hooks/class-hook-page-install.php:149
125
+ #: classes/hooks/class-hook-page-install.php:228
126
  msgid "Thank you for choosing Related Posts for WordPress!"
127
  msgstr "Tack för att du valt Related Posts for WordPress!"
128
 
129
+ #: classes/hooks/class-hook-page-install.php:150
130
  msgid ""
131
  "Below you'll find your post types available for installation, by installing "
132
  "a post type we'll set up a cache and offer you the ability to automatic link"
134
  "Type' button."
135
  msgstr "Nedanför hittar du dina posttyper tillgängliga för installation. Genom att installera en posttyp skapar vi en cache och erbjuder dig möjligheten att automatiskt länka (egna) posttyper. För att installera en posttyp, klicka på 'Installera posttyp'-knappen."
136
 
137
+ #: classes/hooks/class-hook-page-install.php:169
138
  msgid "Related to Post Types"
139
  msgstr ""
140
 
141
+ #: classes/hooks/class-hook-page-install.php:204
142
  msgid "Edit"
143
  msgstr ""
144
 
145
+ #: classes/hooks/class-hook-page-install.php:229
146
  msgid ""
147
  "Before you can start using Related Posts for WordPress we need to cache your"
148
  " current posts."
149
  msgstr "Före du kan börja använda Related Posts for WooCommerce behöver vi cache'a ditt nuvarande inlägg."
150
 
151
+ #: classes/hooks/class-hook-page-install.php:230
152
  msgid ""
153
  "This is a one time process which might take some time now, depending on the "
154
  "amount of posts you have, but will ensure your website's performance when "
155
  "using the plugin."
156
  msgstr "Detta är en engångsprocess som kan ta en viss tid nu, beroende på antalet inlägg du har, men som kommer att säkerställa din webbplats prestanda när du använder pluginet."
157
 
158
+ #: classes/hooks/class-hook-page-install.php:232
159
  msgid ""
160
  "Do NOT close this window, wait for this process to finish and this wizard to"
161
  " take you to the next step."
162
  msgstr "Stäng INTE det här fönstret, vänta på att den här processen ska avslutas och guiden tar dig till nästa steg."
163
 
164
+ #: classes/hooks/class-hook-page-install.php:266
165
  msgid "Great! All your posts were successfully cached!"
166
  msgstr "Strålande! Alla dina inlägg cachades!"
167
 
168
+ #: classes/hooks/class-hook-page-install.php:267
169
  msgid ""
170
  "You can let me link your posts, based on what I think is related, to each "
171
  "other. And don't worry, if I made a mistake at one of your posts you can "
172
  "easily correct this by editing it manually!"
173
  msgstr "Du kan låta mig länka dina inlägg, baserat på vad jag anser vara relaterat. Och inga problem - om jag gör ett misstag kan du alltid justera det genom att ändra det manuellt."
174
 
175
+ #: classes/hooks/class-hook-page-install.php:268
176
  msgid ""
177
  "Want me to start linking posts to each other? Fill in the amount of related "
178
  "posts each post should have and click on the \"Link now\" button. Rather "
179
  "link your posts manually? Click \"Skip linking\"."
180
  msgstr "Vill du att jag ska starta att länka inlägg mellan varandra? Fyll i det antal relaterade inlägg som varje inlägg ska ha och klicka på \"Länka nu\"-knappen. Vill du hellre länka dina inlägg manuellt? Klicka \"Hoppa över länkning\""
181
 
182
+ #: classes/hooks/class-hook-page-install.php:269
183
  msgid ""
184
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
185
  " process to finish and this wizard to take you to the next step."
186
  msgstr "Stäng INTE det här fönstret om du klickar \"Länka nu\"-knappen, vänta på att den här processen slutförs och guiden tar dig vidare till nästa steg."
187
 
188
+ #: classes/hooks/class-hook-page-install.php:275
189
+ msgid "Amount of related posts:"
190
+ msgstr ""
191
 
192
+ #: classes/hooks/class-hook-page-install.php:277
193
+ msgid "The amount of related items per %s"
194
+ msgstr ""
195
+
196
+ #: classes/hooks/class-hook-page-install.php:282
197
+ msgid "Maximum Post Age:"
198
+ msgstr ""
199
+
200
+ #: classes/hooks/class-hook-page-install.php:284
201
+ msgid "The maximum age in days of %s that will be linked. (0 = unlimited)"
202
+ msgstr ""
203
+
204
+ #: classes/hooks/class-hook-page-install.php:290
205
  msgid "Link now"
206
  msgstr "Länka nu"
207
 
208
+ #: classes/hooks/class-hook-page-install.php:291
209
  msgid "Skip linking"
210
  msgstr "Hoppa över länkning"
211
 
212
+ #: classes/hooks/class-hook-page-install.php:309
213
  msgid "That's it, you're good to go!"
214
  msgstr "Det var det, nu kan du sätta igång!"
215
 
216
+ #: classes/hooks/class-hook-page-install.php:310
217
  msgid ""
218
  "Thanks again for using Related Posts for WordPress and if you have any "
219
  "questions be sure to ask them at the %sWordPress.org forums.%s"
220
  msgstr "Tack igen för att du använder Related Posts for WordPress. Om du har några snabba frågor, ställ dem på %sWordPress.org forums.%s"
221
 
222
+ #: classes/hooks/class-hook-page-install.php:313
223
  msgid "Click here to return to step 1"
224
  msgstr "Klicka här för att återvända till steg 1."
225
 
226
+ #: classes/hooks/class-hook-page-install.php:319
227
  msgid "Click here to go to the settings page"
228
  msgstr "Klicka här för att gå till inställningssidan"
229
 
301
  msgid "No related posts found."
302
  msgstr "Inga relaterade inlägg hittades"
303
 
304
+ #: classes/meta-boxes/class-meta-box-options.php:37
305
+ msgid "Related Posts Options"
306
+ msgstr ""
307
+
308
+ #: classes/meta-boxes/class-meta-box-options.php:59
309
+ msgid "Exclude"
310
+ msgstr ""
311
+
312
+ #: classes/settings/class-settings-configurator.php:18
313
+ msgid "Styling"
314
+ msgstr "Styling"
315
+
316
+ #: classes/settings/class-settings-configurator.php:24
317
+ msgid "Full control on how your related posts are displayed."
318
+ msgstr ""
319
+
320
+ #: classes/settings/class-settings-configurator.php:33
321
+ msgid "Posts per row"
322
+ msgstr ""
323
+
324
+ #: classes/settings/class-settings-configurator.php:34
325
+ msgid "The amount of related posts per row."
326
+ msgstr ""
327
+
328
+ #: classes/settings/class-settings-configurator.php:46
329
+ msgid "Row fixed height"
330
+ msgstr ""
331
+
332
+ #: classes/settings/class-settings-configurator.php:47
333
+ msgid ""
334
+ "The fixed height per row in pixels, set to 0 to allow dynamic heights.."
335
+ msgstr ""
336
+
337
+ #: classes/settings/class-settings-configurator.php:53
338
+ msgid "Custom CSS"
339
+ msgstr "Egen CSS"
340
+
341
+ #: classes/settings/class-settings-configurator.php:54
342
+ msgid ""
343
+ "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
344
+ "error here will break frontend display. To disable, leave field empty."
345
+ msgstr "Lägg till egen CSS till det valda temat. Varning! Detta är en avancerad funktion! Ett fel här kan förstöra designen i frontend. Lämna tomt för att avaktivera."
346
+
347
  #: classes/settings/class-settings-general.php:18
348
  msgid "General settings for %s"
349
  msgstr "Generella inställningar för %s"
374
  msgid "The amount of automatically linked %ss"
375
  msgstr "Antalet automatiskt länkade %ss"
376
 
377
+ #: classes/settings/class-settings-general.php:43
378
+ msgid "Maximum Post Age"
379
+ msgstr ""
380
+
381
  #: classes/settings/class-settings-general.php:44
382
+ msgid "The maximum age in days of %ss that will be linked. (0 = unlimited)"
383
+ msgstr ""
384
+
385
+ #: classes/settings/class-settings-general.php:51
386
  msgid "Frontend Settings"
387
  msgstr "Frontend-inställningar"
388
 
389
+ #: classes/settings/class-settings-general.php:52
390
  msgid ""
391
  "The following options affect how related %ss are displayed on the frontend."
392
  msgstr "Följande alternativ påverkar hur relaterade %ss visas i frontend."
393
 
394
+ #: classes/settings/class-settings-general.php:56
395
  msgid "Heading text"
396
  msgstr "Rubriktext"
397
 
398
+ #: classes/settings/class-settings-general.php:57
399
  msgid ""
400
  "The text that is displayed above the related %ss. To disable, leave field "
401
  "empty."
402
  msgstr "Texten som visas ovanför relaterade %ss. Lämna tomt för att avaktivera."
403
 
404
+ #: classes/settings/class-settings-general.php:63
405
  msgid "Excerpt length"
406
  msgstr "Utdragslängd"
407
 
408
+ #: classes/settings/class-settings-general.php:64
409
  msgid ""
410
  "The amount of words to be displayed below the title on website. To disable, "
411
  "set value to 0."
412
  msgstr "Antalet ord som visas under rubriken på webbplatsen. Sätt värdet till 0 för att avaktivera."
413
 
 
 
 
 
 
 
 
 
414
  #: classes/settings/class-settings-license.php:18
415
  msgid "License"
416
  msgstr ""
460
  "the plugin is deleted."
461
  msgstr "Kryssa i den här rutan om du vill avlägsna all data i samband med att pluginet raderas."
462
 
463
+ #: classes/settings/class-settings-misc.php:36
464
+ msgid "Show love?"
465
  msgstr ""
466
 
467
+ #: classes/settings/class-settings-misc.php:37
468
+ msgid ""
469
+ "Display a 'Powered by' line under your related posts. <strong>BEWARE! Only "
470
+ "for the real fans.</strong>"
471
  msgstr ""
472
 
473
+ #: classes/settings/class-settings-misc.php:43
474
+ msgid "Disable SSL Verification"
 
 
 
 
 
 
 
 
475
  msgstr ""
476
 
477
+ #: classes/settings/class-settings-misc.php:44
 
 
 
 
478
  msgid ""
479
+ "Disable SSL verification in license requests. Check this if you've got "
480
+ "problems connecting to licensing server."
481
+ msgstr ""
482
 
483
+ #: classes/settings/class-settings-page.php:448
484
+ msgid "ACTIVATED"
485
+ msgstr ""
486
 
487
+ #: classes/settings/class-settings-page.php:450
488
+ msgid "NOT ACTIVE"
489
+ msgstr ""
 
 
490
 
491
  #: classes/settings/class-settings-weights.php:18
492
  msgid "Weights"
538
  msgid "The weight of custom taxonomies."
539
  msgstr ""
540
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  #: includes/updater/class-rp4wp-updater.php:131
542
  msgid "Hide notice"
543
  msgstr "Dölj meddelande"
languages/related-posts-for-wp-sv_sv.mo DELETED
Binary file
languages/related-posts-for-wp-uk_UA.mo ADDED
Binary file
languages/{related-posts-for-wp-ru_ru.po → related-posts-for-wp-uk_UA.po} RENAMED
@@ -1,19 +1,18 @@
1
- # Copyright (C) 2014 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
- # Barry Kooij <mail@barrykooij.nl>, 2014
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Related Posts for WordPress\n"
8
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
9
- "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
10
- "PO-Revision-Date: 2014-12-28 16:22+0000\n"
11
- "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
12
- "Language-Team: Russian (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/ru/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "Language: ru\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
  "X-Generator: grunt-wp-i18n 0.4.8\n"
19
 
@@ -34,7 +33,7 @@ msgstr ""
34
  #: classes/class-link-related-table.php:45
35
  #: classes/hooks/class-hook-settings-page.php:20
36
  #: classes/meta-boxes/class-meta-box-manage.php:37
37
- #: classes/settings/class-settings-general.php:52
38
  msgid "Related Posts"
39
  msgstr ""
40
 
@@ -48,25 +47,25 @@ msgid "Title"
48
  msgstr ""
49
 
50
  #: classes/class-link-related-table.php:96
51
- #: classes/hooks/class-hook-page-install.php:220
52
  #: classes/hooks/class-hook-settings-page.php:152
53
  msgid "Post Type"
54
  msgstr ""
55
 
56
- #: classes/class-link-related-table.php:235
57
  msgid "Link Post"
58
  msgstr ""
59
 
60
- #: classes/class-link-related-table.php:243
61
  msgid "View Post"
62
  msgstr ""
63
 
64
- #: classes/class-link-related-table.php:274
65
  msgid "Link Posts"
66
  msgstr ""
67
 
68
  #: classes/class-post-type-manager.php:21
69
- #: classes/hooks/class-hook-link-related-screen.php:138
70
  msgid "Posts"
71
  msgstr ""
72
 
@@ -86,46 +85,46 @@ msgstr ""
86
  msgid "Settings"
87
  msgstr ""
88
 
89
- #: classes/hooks/class-hook-link-related-screen.php:139
90
  msgid "Cancel linking"
91
  msgstr ""
92
 
93
- #: classes/hooks/class-hook-link-related-screen.php:155
94
  msgid "Search"
95
  msgstr ""
96
 
97
- #: classes/hooks/class-hook-page-install.php:109
98
  msgid "Welcome"
99
  msgstr ""
100
 
101
- #: classes/hooks/class-hook-page-install.php:110
102
  msgid "Caching Posts"
103
  msgstr ""
104
 
105
- #: classes/hooks/class-hook-page-install.php:111
106
  msgid "Linking Posts"
107
  msgstr ""
108
 
109
- #: classes/hooks/class-hook-page-install.php:112
110
  msgid "Finished"
111
  msgstr ""
112
 
113
- #: classes/hooks/class-hook-page-install.php:123
114
  msgid ""
115
- "Missing post type paramater, please report this incident via %sour "
116
  "website%s."
117
  msgstr ""
118
 
119
- #: classes/hooks/class-hook-page-install.php:154
120
  msgid "Installation"
121
  msgstr ""
122
 
123
- #: classes/hooks/class-hook-page-install.php:201
124
- #: classes/hooks/class-hook-page-install.php:284
125
  msgid "Thank you for choosing Related Posts for WordPress!"
126
  msgstr ""
127
 
128
- #: classes/hooks/class-hook-page-install.php:202
129
  msgid ""
130
  "Below you'll find your post types available for installation, by installing "
131
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -133,84 +132,96 @@ msgid ""
133
  "Type' button."
134
  msgstr ""
135
 
136
- #: classes/hooks/class-hook-page-install.php:221
137
  msgid "Related to Post Types"
138
  msgstr ""
139
 
140
- #: classes/hooks/class-hook-page-install.php:256
141
  msgid "Edit"
142
  msgstr ""
143
 
144
- #: classes/hooks/class-hook-page-install.php:285
145
  msgid ""
146
  "Before you can start using Related Posts for WordPress we need to cache your"
147
  " current posts."
148
  msgstr ""
149
 
150
- #: classes/hooks/class-hook-page-install.php:286
151
  msgid ""
152
  "This is a one time process which might take some time now, depending on the "
153
  "amount of posts you have, but will ensure your website's performance when "
154
  "using the plugin."
155
  msgstr ""
156
 
157
- #: classes/hooks/class-hook-page-install.php:288
158
  msgid ""
159
  "Do NOT close this window, wait for this process to finish and this wizard to"
160
  " take you to the next step."
161
  msgstr ""
162
 
163
- #: classes/hooks/class-hook-page-install.php:306
164
  msgid "Great! All your posts were successfully cached!"
165
  msgstr ""
166
 
167
- #: classes/hooks/class-hook-page-install.php:307
168
  msgid ""
169
  "You can let me link your posts, based on what I think is related, to each "
170
  "other. And don't worry, if I made a mistake at one of your posts you can "
171
  "easily correct this by editing it manually!"
172
  msgstr ""
173
 
174
- #: classes/hooks/class-hook-page-install.php:308
175
  msgid ""
176
  "Want me to start linking posts to each other? Fill in the amount of related "
177
  "posts each post should have and click on the \"Link now\" button. Rather "
178
  "link your posts manually? Click \"Skip linking\"."
179
  msgstr ""
180
 
181
- #: classes/hooks/class-hook-page-install.php:309
182
  msgid ""
183
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
184
  " process to finish and this wizard to take you to the next step."
185
  msgstr ""
186
 
187
- #: classes/hooks/class-hook-page-install.php:313
188
- msgid "Amount of related posts per post:"
 
 
 
 
 
 
 
 
 
 
 
 
189
  msgstr ""
190
 
191
- #: classes/hooks/class-hook-page-install.php:317
192
  msgid "Link now"
193
  msgstr ""
194
 
195
- #: classes/hooks/class-hook-page-install.php:319
196
  msgid "Skip linking"
197
  msgstr ""
198
 
199
- #: classes/hooks/class-hook-page-install.php:327
200
  msgid "That's it, you're good to go!"
201
  msgstr ""
202
 
203
- #: classes/hooks/class-hook-page-install.php:328
204
  msgid ""
205
  "Thanks again for using Related Posts for WordPress and if you have any "
206
  "questions be sure to ask them at the %sWordPress.org forums.%s"
207
  msgstr ""
208
 
209
- #: classes/hooks/class-hook-page-install.php:331
210
  msgid "Click here to return to step 1"
211
  msgstr ""
212
 
213
- #: classes/hooks/class-hook-page-install.php:337
214
  msgid "Click here to go to the settings page"
215
  msgstr ""
216
 
@@ -288,6 +299,49 @@ msgstr ""
288
  msgid "No related posts found."
289
  msgstr ""
290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  #: classes/settings/class-settings-general.php:18
292
  msgid "General settings for %s"
293
  msgstr ""
@@ -318,43 +372,43 @@ msgstr ""
318
  msgid "The amount of automatically linked %ss"
319
  msgstr ""
320
 
 
 
 
 
321
  #: classes/settings/class-settings-general.php:44
 
 
 
 
322
  msgid "Frontend Settings"
323
  msgstr ""
324
 
325
- #: classes/settings/class-settings-general.php:45
326
  msgid ""
327
  "The following options affect how related %ss are displayed on the frontend."
328
  msgstr ""
329
 
330
- #: classes/settings/class-settings-general.php:49
331
  msgid "Heading text"
332
  msgstr ""
333
 
334
- #: classes/settings/class-settings-general.php:50
335
  msgid ""
336
  "The text that is displayed above the related %ss. To disable, leave field "
337
  "empty."
338
  msgstr ""
339
 
340
- #: classes/settings/class-settings-general.php:56
341
  msgid "Excerpt length"
342
  msgstr ""
343
 
344
- #: classes/settings/class-settings-general.php:57
345
  msgid ""
346
  "The amount of words to be displayed below the title on website. To disable, "
347
  "set value to 0."
348
  msgstr ""
349
 
350
- #: classes/settings/class-settings-general.php:63
351
- msgid "Display Image"
352
- msgstr ""
353
-
354
- #: classes/settings/class-settings-general.php:64
355
- msgid "Checking this will enable displaying featured images of related %ss."
356
- msgstr ""
357
-
358
  #: classes/settings/class-settings-license.php:18
359
  msgid "License"
360
  msgstr ""
@@ -404,44 +458,32 @@ msgid ""
404
  "the plugin is deleted."
405
  msgstr ""
406
 
407
- #: classes/settings/class-settings-page.php:450
408
- msgid "ACTIVATED"
409
- msgstr ""
410
-
411
- #: classes/settings/class-settings-page.php:452
412
- msgid "NOT ACTIVE"
413
- msgstr ""
414
-
415
- #: classes/settings/class-settings-themes.php:18
416
- msgid "Styling"
417
- msgstr ""
418
-
419
- #: classes/settings/class-settings-themes.php:31
420
- msgid "Styling settings"
421
  msgstr ""
422
 
423
- #: classes/settings/class-settings-themes.php:32
424
- msgid "Control how your related posts are displayed on your website."
 
 
425
  msgstr ""
426
 
427
- #: classes/settings/class-settings-themes.php:36
428
- msgid "Themes"
429
  msgstr ""
430
 
431
- #: classes/settings/class-settings-themes.php:37
432
  msgid ""
433
- "Select one of the CSS themes above to display your related posts the way you"
434
- " like to."
435
  msgstr ""
436
 
437
- #: classes/settings/class-settings-themes.php:43
438
- msgid "Custom CSS"
439
  msgstr ""
440
 
441
- #: classes/settings/class-settings-themes.php:44
442
- msgid ""
443
- "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
444
- "error here will break frontend display. To disable, leave field empty."
445
  msgstr ""
446
 
447
  #: classes/settings/class-settings-weights.php:18
@@ -494,29 +536,17 @@ msgstr ""
494
  msgid "The weight of custom taxonomies."
495
  msgstr ""
496
 
497
- #: classes/themes/class-theme-column-one.php:13
498
- msgid "One related post item per row."
499
- msgstr ""
500
-
501
- #: classes/themes/class-theme-column-three.php:13
502
- msgid "Three related post items per row."
503
- msgstr ""
504
-
505
- #: classes/themes/class-theme-column-two.php:13
506
- msgid "Two related post items per row."
507
- msgstr ""
508
-
509
  #: includes/updater/class-rp4wp-updater.php:131
510
  msgid "Hide notice"
511
  msgstr ""
512
 
513
  #. Plugin Name of the plugin/theme
514
  msgid "Related Posts for WordPress Premium"
515
- msgstr "Related Posts for WordPress Premium"
516
 
517
  #. Plugin URI of the plugin/theme
518
  msgid "http://www.relatedpostsforwp.com/"
519
- msgstr "http://www.relatedpostsforwp.com/"
520
 
521
  #. Description of the plugin/theme
522
  msgid "The best way to display related posts in WordPress."
@@ -524,8 +554,8 @@ msgstr ""
524
 
525
  #. Author of the plugin/theme
526
  msgid "Barry Kooij"
527
- msgstr "Barry Kooij"
528
 
529
  #. Author URI of the plugin/theme
530
  msgid "http://www.barrykooij.com/"
531
- msgstr "http://www.barrykooij.com/"
1
+ # Copyright (C) 2015 Barry Kooij
2
  # This file is distributed under the GPL v3.
3
  # Translators:
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Related Posts for WordPress\n"
7
  "Report-Msgid-Bugs-To: https://github.com/barrykooij/related-posts-for-wp/issues\n"
8
+ "POT-Creation-Date: 2015-05-31 09:56:12+00:00\n"
9
+ "PO-Revision-Date: 2014-10-16 08:29+0000\n"
10
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11
+ "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/barrykooijplugins/related-posts-for-wordpress/language/uk_UA/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: uk_UA\n"
16
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
17
  "X-Generator: grunt-wp-i18n 0.4.8\n"
18
 
33
  #: classes/class-link-related-table.php:45
34
  #: classes/hooks/class-hook-settings-page.php:20
35
  #: classes/meta-boxes/class-meta-box-manage.php:37
36
+ #: classes/settings/class-settings-general.php:59
37
  msgid "Related Posts"
38
  msgstr ""
39
 
47
  msgstr ""
48
 
49
  #: classes/class-link-related-table.php:96
50
+ #: classes/hooks/class-hook-page-install.php:168
51
  #: classes/hooks/class-hook-settings-page.php:152
52
  msgid "Post Type"
53
  msgstr ""
54
 
55
+ #: classes/class-link-related-table.php:260
56
  msgid "Link Post"
57
  msgstr ""
58
 
59
+ #: classes/class-link-related-table.php:268
60
  msgid "View Post"
61
  msgstr ""
62
 
63
+ #: classes/class-link-related-table.php:299
64
  msgid "Link Posts"
65
  msgstr ""
66
 
67
  #: classes/class-post-type-manager.php:21
68
+ #: classes/hooks/class-hook-link-related-screen.php:155
69
  msgid "Posts"
70
  msgstr ""
71
 
85
  msgid "Settings"
86
  msgstr ""
87
 
88
+ #: classes/hooks/class-hook-link-related-screen.php:157
89
  msgid "Cancel linking"
90
  msgstr ""
91
 
92
+ #: classes/hooks/class-hook-link-related-screen.php:173
93
  msgid "Search"
94
  msgstr ""
95
 
96
+ #: classes/hooks/class-hook-page-install.php:57
97
  msgid "Welcome"
98
  msgstr ""
99
 
100
+ #: classes/hooks/class-hook-page-install.php:58
101
  msgid "Caching Posts"
102
  msgstr ""
103
 
104
+ #: classes/hooks/class-hook-page-install.php:59
105
  msgid "Linking Posts"
106
  msgstr ""
107
 
108
+ #: classes/hooks/class-hook-page-install.php:60
109
  msgid "Finished"
110
  msgstr ""
111
 
112
+ #: classes/hooks/class-hook-page-install.php:71
113
  msgid ""
114
+ "Missing post type parameter, please report this incident via %sour "
115
  "website%s."
116
  msgstr ""
117
 
118
+ #: classes/hooks/class-hook-page-install.php:102
119
  msgid "Installation"
120
  msgstr ""
121
 
122
+ #: classes/hooks/class-hook-page-install.php:149
123
+ #: classes/hooks/class-hook-page-install.php:228
124
  msgid "Thank you for choosing Related Posts for WordPress!"
125
  msgstr ""
126
 
127
+ #: classes/hooks/class-hook-page-install.php:150
128
  msgid ""
129
  "Below you'll find your post types available for installation, by installing "
130
  "a post type we'll set up a cache and offer you the ability to automatic link"
132
  "Type' button."
133
  msgstr ""
134
 
135
+ #: classes/hooks/class-hook-page-install.php:169
136
  msgid "Related to Post Types"
137
  msgstr ""
138
 
139
+ #: classes/hooks/class-hook-page-install.php:204
140
  msgid "Edit"
141
  msgstr ""
142
 
143
+ #: classes/hooks/class-hook-page-install.php:229
144
  msgid ""
145
  "Before you can start using Related Posts for WordPress we need to cache your"
146
  " current posts."
147
  msgstr ""
148
 
149
+ #: classes/hooks/class-hook-page-install.php:230
150
  msgid ""
151
  "This is a one time process which might take some time now, depending on the "
152
  "amount of posts you have, but will ensure your website's performance when "
153
  "using the plugin."
154
  msgstr ""
155
 
156
+ #: classes/hooks/class-hook-page-install.php:232
157
  msgid ""
158
  "Do NOT close this window, wait for this process to finish and this wizard to"
159
  " take you to the next step."
160
  msgstr ""
161
 
162
+ #: classes/hooks/class-hook-page-install.php:266
163
  msgid "Great! All your posts were successfully cached!"
164
  msgstr ""
165
 
166
+ #: classes/hooks/class-hook-page-install.php:267
167
  msgid ""
168
  "You can let me link your posts, based on what I think is related, to each "
169
  "other. And don't worry, if I made a mistake at one of your posts you can "
170
  "easily correct this by editing it manually!"
171
  msgstr ""
172
 
173
+ #: classes/hooks/class-hook-page-install.php:268
174
  msgid ""
175
  "Want me to start linking posts to each other? Fill in the amount of related "
176
  "posts each post should have and click on the \"Link now\" button. Rather "
177
  "link your posts manually? Click \"Skip linking\"."
178
  msgstr ""
179
 
180
+ #: classes/hooks/class-hook-page-install.php:269
181
  msgid ""
182
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
183
  " process to finish and this wizard to take you to the next step."
184
  msgstr ""
185
 
186
+ #: classes/hooks/class-hook-page-install.php:275
187
+ msgid "Amount of related posts:"
188
+ msgstr ""
189
+
190
+ #: classes/hooks/class-hook-page-install.php:277
191
+ msgid "The amount of related items per %s"
192
+ msgstr ""
193
+
194
+ #: classes/hooks/class-hook-page-install.php:282
195
+ msgid "Maximum Post Age:"
196
+ msgstr ""
197
+
198
+ #: classes/hooks/class-hook-page-install.php:284
199
+ msgid "The maximum age in days of %s that will be linked. (0 = unlimited)"
200
  msgstr ""
201
 
202
+ #: classes/hooks/class-hook-page-install.php:290
203
  msgid "Link now"
204
  msgstr ""
205
 
206
+ #: classes/hooks/class-hook-page-install.php:291
207
  msgid "Skip linking"
208
  msgstr ""
209
 
210
+ #: classes/hooks/class-hook-page-install.php:309
211
  msgid "That's it, you're good to go!"
212
  msgstr ""
213
 
214
+ #: classes/hooks/class-hook-page-install.php:310
215
  msgid ""
216
  "Thanks again for using Related Posts for WordPress and if you have any "
217
  "questions be sure to ask them at the %sWordPress.org forums.%s"
218
  msgstr ""
219
 
220
+ #: classes/hooks/class-hook-page-install.php:313
221
  msgid "Click here to return to step 1"
222
  msgstr ""
223
 
224
+ #: classes/hooks/class-hook-page-install.php:319
225
  msgid "Click here to go to the settings page"
226
  msgstr ""
227
 
299
  msgid "No related posts found."
300
  msgstr ""
301
 
302
+ #: classes/meta-boxes/class-meta-box-options.php:37
303
+ msgid "Related Posts Options"
304
+ msgstr ""
305
+
306
+ #: classes/meta-boxes/class-meta-box-options.php:59
307
+ msgid "Exclude"
308
+ msgstr ""
309
+
310
+ #: classes/settings/class-settings-configurator.php:18
311
+ msgid "Styling"
312
+ msgstr ""
313
+
314
+ #: classes/settings/class-settings-configurator.php:24
315
+ msgid "Full control on how your related posts are displayed."
316
+ msgstr ""
317
+
318
+ #: classes/settings/class-settings-configurator.php:33
319
+ msgid "Posts per row"
320
+ msgstr ""
321
+
322
+ #: classes/settings/class-settings-configurator.php:34
323
+ msgid "The amount of related posts per row."
324
+ msgstr ""
325
+
326
+ #: classes/settings/class-settings-configurator.php:46
327
+ msgid "Row fixed height"
328
+ msgstr ""
329
+
330
+ #: classes/settings/class-settings-configurator.php:47
331
+ msgid ""
332
+ "The fixed height per row in pixels, set to 0 to allow dynamic heights.."
333
+ msgstr ""
334
+
335
+ #: classes/settings/class-settings-configurator.php:53
336
+ msgid "Custom CSS"
337
+ msgstr ""
338
+
339
+ #: classes/settings/class-settings-configurator.php:54
340
+ msgid ""
341
+ "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
342
+ "error here will break frontend display. To disable, leave field empty."
343
+ msgstr ""
344
+
345
  #: classes/settings/class-settings-general.php:18
346
  msgid "General settings for %s"
347
  msgstr ""
372
  msgid "The amount of automatically linked %ss"
373
  msgstr ""
374
 
375
+ #: classes/settings/class-settings-general.php:43
376
+ msgid "Maximum Post Age"
377
+ msgstr ""
378
+
379
  #: classes/settings/class-settings-general.php:44
380
+ msgid "The maximum age in days of %ss that will be linked. (0 = unlimited)"
381
+ msgstr ""
382
+
383
+ #: classes/settings/class-settings-general.php:51
384
  msgid "Frontend Settings"
385
  msgstr ""
386
 
387
+ #: classes/settings/class-settings-general.php:52
388
  msgid ""
389
  "The following options affect how related %ss are displayed on the frontend."
390
  msgstr ""
391
 
392
+ #: classes/settings/class-settings-general.php:56
393
  msgid "Heading text"
394
  msgstr ""
395
 
396
+ #: classes/settings/class-settings-general.php:57
397
  msgid ""
398
  "The text that is displayed above the related %ss. To disable, leave field "
399
  "empty."
400
  msgstr ""
401
 
402
+ #: classes/settings/class-settings-general.php:63
403
  msgid "Excerpt length"
404
  msgstr ""
405
 
406
+ #: classes/settings/class-settings-general.php:64
407
  msgid ""
408
  "The amount of words to be displayed below the title on website. To disable, "
409
  "set value to 0."
410
  msgstr ""
411
 
 
 
 
 
 
 
 
 
412
  #: classes/settings/class-settings-license.php:18
413
  msgid "License"
414
  msgstr ""
458
  "the plugin is deleted."
459
  msgstr ""
460
 
461
+ #: classes/settings/class-settings-misc.php:36
462
+ msgid "Show love?"
 
 
 
 
 
 
 
 
 
 
 
 
463
  msgstr ""
464
 
465
+ #: classes/settings/class-settings-misc.php:37
466
+ msgid ""
467
+ "Display a 'Powered by' line under your related posts. <strong>BEWARE! Only "
468
+ "for the real fans.</strong>"
469
  msgstr ""
470
 
471
+ #: classes/settings/class-settings-misc.php:43
472
+ msgid "Disable SSL Verification"
473
  msgstr ""
474
 
475
+ #: classes/settings/class-settings-misc.php:44
476
  msgid ""
477
+ "Disable SSL verification in license requests. Check this if you've got "
478
+ "problems connecting to licensing server."
479
  msgstr ""
480
 
481
+ #: classes/settings/class-settings-page.php:448
482
+ msgid "ACTIVATED"
483
  msgstr ""
484
 
485
+ #: classes/settings/class-settings-page.php:450
486
+ msgid "NOT ACTIVE"
 
 
487
  msgstr ""
488
 
489
  #: classes/settings/class-settings-weights.php:18
536
  msgid "The weight of custom taxonomies."
537
  msgstr ""
538
 
 
 
 
 
 
 
 
 
 
 
 
 
539
  #: includes/updater/class-rp4wp-updater.php:131
540
  msgid "Hide notice"
541
  msgstr ""
542
 
543
  #. Plugin Name of the plugin/theme
544
  msgid "Related Posts for WordPress Premium"
545
+ msgstr ""
546
 
547
  #. Plugin URI of the plugin/theme
548
  msgid "http://www.relatedpostsforwp.com/"
549
+ msgstr ""
550
 
551
  #. Description of the plugin/theme
552
  msgid "The best way to display related posts in WordPress."
554
 
555
  #. Author of the plugin/theme
556
  msgid "Barry Kooij"
557
+ msgstr ""
558
 
559
  #. Author URI of the plugin/theme
560
  msgid "http://www.barrykooij.com/"
561
+ msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: never5, barrykooij
3
  Donate link: http://www.barrykooij.com/donate/
4
  Tags: related posts for wordpress, related posts for wp, simple related posts, easy related posts, related posts, related, relations, internal links, seo, bounce rate
5
  Requires at least: 3.6
6
- Tested up to: 4.3
7
- Stable tag: 1.9.1
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -118,6 +118,12 @@ There is one custom table created for the post cache, this table will however no
118
 
119
  == Changelog ==
120
 
 
 
 
 
 
 
121
  = 1.9.1: September 10, 2015 =
122
  * Tweak: Fixed the `Woah! It looks like something else tried to run the Related Posts for WordPress` error message when resuming the wizard via the installing notice.
123
 
3
  Donate link: http://www.barrykooij.com/donate/
4
  Tags: related posts for wordpress, related posts for wp, simple related posts, easy related posts, related posts, related, relations, internal links, seo, bounce rate
5
  Requires at least: 3.6
6
+ Tested up to: 4.5
7
+ Stable tag: 1.9.2
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
118
 
119
  == Changelog ==
120
 
121
+ = 1.9.2: April 18, 2016 =
122
+ * Tweak: We're now ignoring all characters that are not letters or numbers from word cache.
123
+ * Tweak: Various performance optimizations, props [Danny van Kooten](https://github.com/dannyvankooten).
124
+ * Tweak: Fixed a nonce error in installer when user clicked 'Skip linking'.
125
+ * Tweak: Various translations updates.
126
+
127
  = 1.9.1: September 10, 2015 =
128
  * Tweak: Fixed the `Woah! It looks like something else tried to run the Related Posts for WordPress` error message when resuming the wizard via the installing notice.
129
 
related-posts-for-wp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Related Posts for WordPress
4
  Plugin URI: http://www.relatedpostsforwp.com/
5
  Description: Related Posts for WordPress, the best way to display related posts in WordPress.
6
- Version: 1.9.1
7
  Author: Barry Kooij
8
  Author URI: http://www.barrykooij.com/
9
  License: GPL v3
3
  Plugin Name: Related Posts for WordPress
4
  Plugin URI: http://www.relatedpostsforwp.com/
5
  Description: Related Posts for WordPress, the best way to display related posts in WordPress.
6
+ Version: 1.9.2
7
  Author: Barry Kooij
8
  Author URI: http://www.barrykooij.com/
9
  License: GPL v3