Related Posts for WordPress - Version 1.8.0

Version Description

Download this release

Release Info

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

Code changes from version 1.7.6 to 1.8.0

assets/css/settings.css CHANGED
@@ -1 +1 @@
1
- .rp4wp-content{width:65%;float:left;box-sizing:border-box}.rp4wp-content input.rp4wp-input-text{width:100%}.rp4wp-content textarea{width:100%;height:150px}.rp4wp-content .rp4wp-description{display:block;margin:5px 0;line-height:1.4em;color:#666;font-style:italic}.rp4wp-sidebar{width:33%;margin-left:2%;padding:0 0 0 2%;border-left:1px solid #ccc;float:left;box-sizing:border-box}.rp4wp-sidebar .rp4wp-box{margin-bottom:20px}.rp4wp-sidebar .rp4wp-box .rp4wp-sidebar-header{line-height:0;border-bottom:2px solid #005592}.rp4wp-sidebar .rp4wp-box-upgrade{background:#222;color:#ddd;padding:20px 20px 10px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.rp4wp-sidebar .rp4wp-box-upgrade h3{color:#fff;border:0;padding:0;margin:0}.rp4wp-sidebar .rp4wp-box-upgrade a{color:#2ea2cc;font-weight:700}
1
+ .rp4wp-content{width:65%;float:left;box-sizing:border-box}.rp4wp-content input.rp4wp-input-text{width:100%}.rp4wp-content textarea{width:100%;height:150px}.rp4wp-content small{color:orange}.rp4wp-content .rp4wp-description{display:block;margin:5px 0;line-height:1.4em;color:#666;font-style:italic}.rp4wp-sidebar{width:33%;margin-left:2%;padding:0 0 0 2%;border-left:1px solid #ccc;float:left;box-sizing:border-box}.rp4wp-sidebar .rp4wp-box{margin-bottom:20px}.rp4wp-sidebar .rp4wp-box .rp4wp-sidebar-header{line-height:0;border-bottom:2px solid #005592}.rp4wp-sidebar .rp4wp-box-upgrade{background:#222;color:#ddd;padding:20px 20px 10px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.rp4wp-sidebar .rp4wp-box-upgrade h3{color:#fff;border:0;padding:0;margin:0}.rp4wp-sidebar .rp4wp-box-upgrade a{color:#2ea2cc;font-weight:700}
assets/css/settings.less CHANGED
@@ -12,6 +12,10 @@
12
  height: 150px;
13
  }
14
 
 
 
 
 
15
  .rp4wp-description {
16
  display: block;
17
  margin: 5px 0;
12
  height: 150px;
13
  }
14
 
15
+ small {
16
+ color: orange;
17
+ }
18
+
19
  .rp4wp-description {
20
  display: block;
21
  margin: 5px 0;
assets/js/install.js CHANGED
@@ -1,118 +1,123 @@
1
- jQuery(document).ready(function ($) {
2
 
3
- // Determine steps
4
- var step = $('.rp4wp-step').attr('rel');
5
 
6
- // Checks steps
7
- if (1 == step) {
8
 
9
- // Install the cache
10
- rp4wp_install_wizard(1);
11
 
12
- } else if (2 == step) {
13
 
14
- // Link the posts
15
- $('#rp4wp-link-now').click(function () {
16
- rp4wp_install_wizard(2);
17
- });
18
 
19
- }
20
 
21
- function rp4wp_install_wizard(step) {
22
 
23
- this.step = step;
24
- this.total_posts = 0;
25
- this.ppr = null;
26
- this.action = null;
27
- this.percentage_object = null;
 
28
 
29
- this.do_request = function () {
30
- var instance = this;
31
- $.post(ajaxurl, {
32
- 'action' : this.action,
33
- 'ppr' : this.ppr,
34
- 'rel_amount': $('#rp4wp_related_posts_amount').val()
35
- }, function (response) {
 
36
 
37
- // The RegExp
38
- var response_regex = new RegExp("^[0-9]+$");
39
 
40
- // Trim that string o/
41
- response = response.trim();
42
 
43
- // Test it
44
- if (response_regex.test(response)) {
45
 
46
- var posts_left = parseInt(response);
47
 
48
- // Do Progressbar
49
- instance.do_progressbar(posts_left);
50
 
51
- if (posts_left > 0) {
52
- // Do request
53
- instance.do_request();
54
- } else {
55
- // Done
56
- instance.done();
57
- }
58
 
59
- } else {
60
- alert("Woops! Something went wrong while linking.\n\nResponse:\n\n" + response);
61
- }
62
 
63
- });
64
- };
65
 
66
- this.done = function () {
67
 
68
- // Update progressbar
69
- $('#progressbar').progressbar({value: 100});
70
 
71
- // Redirect to next step
72
- window.location = $('#rp4wp_admin_url').val() + '?page=rp4wp_install&step=' + ( this.step + 1 );
73
- };
74
 
75
- this.do_progressbar = function (posts_left) {
76
- var progress = Math.round(( ( this.total_posts - posts_left ) / this.total_posts ) * 100);
77
- if (progress > 0) {
78
- this.percentage_object.html(progress + '%');
79
- $('#progressbar').progressbar({value: progress});
80
- }
81
- };
82
 
83
- this.init = function () {
84
 
85
- // Setup the progressbar
86
- $('#progressbar').progressbar({value: false});
87
 
88
- // Create the span
89
- this.percentage_object = jQuery('<span>');
90
- $('#progressbar').find('div:first').append(this.percentage_object);
91
 
92
- // Set the current progress
93
- this.do_progressbar($('#rp4wp_uncached_posts').val());
94
 
95
- // Get the total posts
96
- this.total_posts = $('#rp4wp_total_posts').val();
97
 
98
- // Set the correct action
99
- switch (this.step) {
100
- case 1:
101
- this.ppr = 25;
102
- this.action = 'rp4wp_install_save_words';
103
- break;
104
- case 2:
105
- this.ppr = 5;
106
- this.action = 'rp4wp_install_link_posts';
107
- break;
108
- }
109
 
110
- // Do the first request
111
- this.do_request();
112
- };
 
 
 
 
 
 
 
 
113
 
114
- this.init();
 
 
115
 
116
- }
117
 
118
- });
 
 
1
+ jQuery( document ).ready( function ( $ ) {
2
 
3
+ // Determine steps
4
+ var step = $( '.rp4wp-step' ).attr( 'rel' );
5
 
6
+ // Checks steps
7
+ if ( 1 == step ) {
8
 
9
+ // Install the cache
10
+ rp4wp_install_wizard( 1 );
11
 
12
+ } else if ( 2 == step ) {
13
 
14
+ // Link the posts
15
+ $( '#rp4wp-link-now' ).click( function () {
16
+ rp4wp_install_wizard( 2 );
17
+ } );
18
 
19
+ }
20
 
21
+ function rp4wp_install_wizard( step ) {
22
 
23
+ this.step = step;
24
+ this.total_posts = 0;
25
+ this.ppr = null;
26
+ this.action = null;
27
+ this.percentage_object = null;
28
+ this.nonce = null;
29
 
30
+ this.do_request = function () {
31
+ var instance = this;
32
+ $.post( ajaxurl, {
33
+ action: this.action,
34
+ nonce: $( '#rp4wp-ajax-nonce' ).val(),
35
+ ppr: this.ppr,
36
+ rel_amount: $( '#rp4wp_related_posts_amount' ).val()
37
+ }, function ( response ) {
38
 
39
+ // The RegExp
40
+ var response_regex = new RegExp( "^[0-9]+$" );
41
 
42
+ // Trim that string o/
43
+ response = response.trim();
44
 
45
+ // Test it
46
+ if ( response_regex.test( response ) ) {
47
 
48
+ var posts_left = parseInt( response );
49
 
50
+ // Do Progressbar
51
+ instance.do_progressbar( posts_left );
52
 
53
+ if ( posts_left > 0 ) {
54
+ // Do request
55
+ instance.do_request();
56
+ } else {
57
+ // Done
58
+ instance.done();
59
+ }
60
 
61
+ } else {
62
+ alert( "Woops! Something went wrong while linking.\n\nResponse:\n\n" + response );
63
+ }
64
 
65
+ } );
66
+ };
67
 
68
+ this.done = function () {
69
 
70
+ // Update progressbar
71
+ $( '#progressbar' ).progressbar( { value: 100 } );
72
 
73
+ // Redirect to next step
74
+ window.location = $( '#rp4wp_admin_url' ).val() + '?page=rp4wp_install&rp4wp_nonce=' + this.nonce + '&step=' + ( this.step + 1 );
75
+ };
76
 
77
+ this.do_progressbar = function ( posts_left ) {
78
+ var progress = Math.round( ( ( this.total_posts - posts_left ) / this.total_posts ) * 100 );
79
+ if ( progress > 0 ) {
80
+ this.percentage_object.html( progress + '%' );
81
+ $( '#progressbar' ).progressbar( { value: progress } );
82
+ }
83
+ };
84
 
85
+ this.init = function () {
86
 
87
+ // Setup the progressbar
88
+ $( '#progressbar' ).progressbar( { value: false } );
89
 
90
+ // Create the span
91
+ this.percentage_object = jQuery( '<span>' );
92
+ $( '#progressbar' ).find( 'div:first' ).append( this.percentage_object );
93
 
94
+ // Set the current progress
95
+ this.do_progressbar( $( '#rp4wp_uncached_posts' ).val() );
96
 
97
+ // Get the total posts
98
+ this.total_posts = $( '#rp4wp_total_posts' ).val();
99
 
100
+ // Set the Nonce
101
+ this.nonce = $( '#rp4wp_nonce' ).val();
 
 
 
 
 
 
 
 
 
102
 
103
+ // Set the correct action
104
+ switch ( this.step ) {
105
+ case 1:
106
+ this.ppr = 25;
107
+ this.action = 'rp4wp_install_save_words';
108
+ break;
109
+ case 2:
110
+ this.ppr = 5;
111
+ this.action = 'rp4wp_install_link_posts';
112
+ break;
113
+ }
114
 
115
+ // Do the first request
116
+ this.do_request();
117
+ };
118
 
119
+ this.init();
120
 
121
+ }
122
+
123
+ } );
assets/js/install.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(a){function b(b){this.step=b,this.total_posts=0,this.ppr=null,this.action=null,this.percentage_object=null,this.do_request=function(){var b=this;a.post(ajaxurl,{action:this.action,ppr:this.ppr,rel_amount:a("#rp4wp_related_posts_amount").val()},function(a){var c=new RegExp("^[0-9]+$");if(a=a.trim(),c.test(a)){var d=parseInt(a);b.do_progressbar(d),d>0?b.do_request():b.done()}else alert("Woops! Something went wrong while linking.\n\nResponse:\n\n"+a)})},this.done=function(){a("#progressbar").progressbar({value:100}),window.location=a("#rp4wp_admin_url").val()+"?page=rp4wp_install&step="+(this.step+1)},this.do_progressbar=function(b){var c=Math.round((this.total_posts-b)/this.total_posts*100);c>0&&(this.percentage_object.html(c+"%"),a("#progressbar").progressbar({value:c}))},this.init=function(){switch(a("#progressbar").progressbar({value:!1}),this.percentage_object=jQuery("<span>"),a("#progressbar").find("div:first").append(this.percentage_object),this.do_progressbar(a("#rp4wp_uncached_posts").val()),this.total_posts=a("#rp4wp_total_posts").val(),this.step){case 1:this.ppr=25,this.action="rp4wp_install_save_words";break;case 2:this.ppr=5,this.action="rp4wp_install_link_posts"}this.do_request()},this.init()}var c=a(".rp4wp-step").attr("rel");1==c?b(1):2==c&&a("#rp4wp-link-now").click(function(){b(2)})});
1
+ jQuery(document).ready(function(a){function b(b){this.step=b,this.total_posts=0,this.ppr=null,this.action=null,this.percentage_object=null,this.nonce=null,this.do_request=function(){var b=this;a.post(ajaxurl,{action:this.action,nonce:a("#rp4wp-ajax-nonce").val(),ppr:this.ppr,rel_amount:a("#rp4wp_related_posts_amount").val()},function(a){var c=new RegExp("^[0-9]+$");if(a=a.trim(),c.test(a)){var d=parseInt(a);b.do_progressbar(d),d>0?b.do_request():b.done()}else alert("Woops! Something went wrong while linking.\n\nResponse:\n\n"+a)})},this.done=function(){a("#progressbar").progressbar({value:100}),window.location=a("#rp4wp_admin_url").val()+"?page=rp4wp_install&rp4wp_nonce="+this.nonce+"&step="+(this.step+1)},this.do_progressbar=function(b){var c=Math.round((this.total_posts-b)/this.total_posts*100);c>0&&(this.percentage_object.html(c+"%"),a("#progressbar").progressbar({value:c}))},this.init=function(){switch(a("#progressbar").progressbar({value:!1}),this.percentage_object=jQuery("<span>"),a("#progressbar").find("div:first").append(this.percentage_object),this.do_progressbar(a("#rp4wp_uncached_posts").val()),this.total_posts=a("#rp4wp_total_posts").val(),this.nonce=a("#rp4wp_nonce").val(),this.step){case 1:this.ppr=25,this.action="rp4wp_install_save_words";break;case 2:this.ppr=5,this.action="rp4wp_install_link_posts"}this.do_request()},this.init()}var c=a(".rp4wp-step").attr("rel");1==c?b(1):2==c&&a("#rp4wp-link-now").click(function(){b(2)})});
assets/js/settings.js ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery( function ( $ ) {
2
+ var rp4wp_is_submitting = false;
3
+ $( '#rp4wp-settings-form' ).submit( function () {
4
+ if ( rp4wp_is_submitting ) {
5
+ return false;
6
+ }
7
+ rp4wp_is_submitting = true;
8
+ $( this ).find( '#submit' ).attr( 'disabled', 'disabled' ).val( 'Saving ...' );
9
+ return true;
10
+ } )
11
+
12
+ } );
assets/js/settings.min.js ADDED
@@ -0,0 +1 @@
 
1
+ jQuery(function(a){var b=!1;a("#rp4wp-settings-form").submit(function(){return b?!1:(b=!0,a(this).find("#submit").attr("disabled","disabled").val("Saving ..."),!0)})});
classes/class-constants.php CHANGED
@@ -28,5 +28,6 @@ abstract class RP4WP_Constants {
28
 
29
  // Nonce
30
  const NONCE_INSTALL = 'rp4wp-install-secret';
 
31
 
32
  }
28
 
29
  // Nonce
30
  const NONCE_INSTALL = 'rp4wp-install-secret';
31
+ const NONCE_AJAX = 'rp4wp-ajax-nonce-omgrandomword';
32
 
33
  }
classes/class-link-related-table.php CHANGED
@@ -51,7 +51,7 @@ class RP4WP_Link_Related_Table extends WP_List_Table {
51
  $new_views = array();
52
 
53
  foreach ( $views_arr as $key => $val ) {
54
- $new_views[$key] = "<a href='" . add_query_arg( array(
55
  'rp4wp_view' => $key,
56
  'paged' => 1
57
  ) ) . "'" . ( ( $current == $key ) ? " class='current'" : "" ) . ">{$val}</a>";
@@ -77,7 +77,7 @@ class RP4WP_Link_Related_Table extends WP_List_Table {
77
  /**
78
  * Display the search box.
79
  *
80
- * @param string $text The search button text
81
  * @param string $input_id The search input id
82
  */
83
  public function search_box( $text, $input_id ) {
@@ -192,7 +192,7 @@ class RP4WP_Link_Related_Table extends WP_List_Table {
192
  // If no order, default to asc
193
  $order = ( ! empty( $_GET['order'] ) ) ? $_GET['order'] : 'asc';
194
  // Determine sort order
195
- $result = strcmp( $a[$orderby], $b[$orderby] );
196
 
197
  // Send final sort direction to usort
198
  return ( $order === 'asc' ) ? $result : - $result;
@@ -226,6 +226,11 @@ class RP4WP_Link_Related_Table extends WP_List_Table {
226
  $_GET['rp4wp_parent'],
227
  $item['ID']
228
  ),
 
 
 
 
 
229
  );
230
 
231
  return sprintf( '%1$s %2$s', $item['title'], $this->row_actions( $actions ) );
@@ -242,7 +247,7 @@ class RP4WP_Link_Related_Table extends WP_List_Table {
242
  public function column_default( $item, $column_name ) {
243
  switch ( $column_name ) {
244
  case 'title':
245
- return $item[$column_name];
246
  }
247
  }
248
 
51
  $new_views = array();
52
 
53
  foreach ( $views_arr as $key => $val ) {
54
+ $new_views[ $key ] = "<a href='" . add_query_arg( array(
55
  'rp4wp_view' => $key,
56
  'paged' => 1
57
  ) ) . "'" . ( ( $current == $key ) ? " class='current'" : "" ) . ">{$val}</a>";
77
  /**
78
  * Display the search box.
79
  *
80
+ * @param string $text The search button text
81
  * @param string $input_id The search input id
82
  */
83
  public function search_box( $text, $input_id ) {
192
  // If no order, default to asc
193
  $order = ( ! empty( $_GET['order'] ) ) ? $_GET['order'] : 'asc';
194
  // Determine sort order
195
+ $result = strcmp( $a[ $orderby ], $b[ $orderby ] );
196
 
197
  // Send final sort direction to usort
198
  return ( $order === 'asc' ) ? $result : - $result;
226
  $_GET['rp4wp_parent'],
227
  $item['ID']
228
  ),
229
+ 'view' => sprintf(
230
+ '<a href="%s" target="_blank">%s</a>',
231
+ get_permalink( $item['ID'] ),
232
+ __( 'View Post' )
233
+ )
234
  );
235
 
236
  return sprintf( '%1$s %2$s', $item['title'], $this->row_actions( $actions ) );
247
  public function column_default( $item, $column_name ) {
248
  switch ( $column_name ) {
249
  case 'title':
250
+ return $item[ $column_name ];
251
  }
252
  }
253
 
classes/class-post-link-manager.php CHANGED
@@ -16,7 +16,7 @@ class RP4WP_Post_Link_Manager {
16
  *
17
  * @access private
18
  *
19
- * @param int $post_id
20
  * @param string $meta_key
21
  *
22
  * @return array
@@ -117,7 +117,7 @@ class RP4WP_Post_Link_Manager {
117
  VALUES
118
  {$data['meta'][0]},
119
  {$data['meta'][1]}
120
- ", $link_id, $link_id) );
121
 
122
  // Do action rp4wp_after_link_add
123
  do_action( 'rp4wp_after_link_add', $link_id );
@@ -154,7 +154,7 @@ class RP4WP_Post_Link_Manager {
154
  *
155
  * @access public
156
  *
157
- * @param int $parent_id
158
  * @param array $extra_args
159
  *
160
  * @return array
@@ -195,7 +195,7 @@ class RP4WP_Post_Link_Manager {
195
  // @todo remove the usage of get_the_id()
196
  $child_ids = array();
197
  while ( $link_query->have_posts() ) : $link_query->the_post();
198
- $child_ids[get_the_id()] = get_post_meta( get_the_id(), RP4WP_Constants::PM_CHILD, true );
199
  endwhile;
200
 
201
  // Get children with custom args
@@ -229,7 +229,7 @@ class RP4WP_Post_Link_Manager {
229
 
230
  while ( $child_query->have_posts() ) : $child_query->the_post();
231
  // Add post to correct original sort key
232
- $children[array_search( $child_query->post->ID, $child_ids )] = $child_query->post;
233
  endwhile;
234
 
235
  // Fix sorting
@@ -242,7 +242,7 @@ class RP4WP_Post_Link_Manager {
242
  // No custom arguments found, get all objects of stored ID's
243
  $children = array();
244
  foreach ( $child_ids as $link_id => $child_id ) {
245
- $children[$link_id] = get_post( $child_id );
246
  }
247
  }
248
 
@@ -298,6 +298,38 @@ class RP4WP_Post_Link_Manager {
298
  endwhile;
299
  }
300
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  /**
302
  * Generate the children list
303
  *
@@ -366,7 +398,7 @@ class RP4WP_Post_Link_Manager {
366
  }
367
 
368
  $content .= "<div class='rp4wp-related-post-content'>" . PHP_EOL;
369
- $content .= "<a href='" . get_permalink( $rp4wp_post->ID ) . "'>" . $rp4wp_post->post_title . "</a>";
370
 
371
  $excerpt_length = RP4WP::get()->settings->get_option( 'excerpt_length' );
372
  if ( $excerpt_length > 0 ) {
@@ -384,6 +416,9 @@ class RP4WP_Post_Link_Manager {
384
 
385
  // Close the wrapper div
386
  $content .= "</ul>\n";
 
 
 
387
  $content .= "</div>\n";
388
 
389
  }
16
  *
17
  * @access private
18
  *
19
+ * @param int $post_id
20
  * @param string $meta_key
21
  *
22
  * @return array
117
  VALUES
118
  {$data['meta'][0]},
119
  {$data['meta'][1]}
120
+ ", $link_id, $link_id ) );
121
 
122
  // Do action rp4wp_after_link_add
123
  do_action( 'rp4wp_after_link_add', $link_id );
154
  *
155
  * @access public
156
  *
157
+ * @param int $parent_id
158
  * @param array $extra_args
159
  *
160
  * @return array
195
  // @todo remove the usage of get_the_id()
196
  $child_ids = array();
197
  while ( $link_query->have_posts() ) : $link_query->the_post();
198
+ $child_ids[ get_the_id() ] = get_post_meta( get_the_id(), RP4WP_Constants::PM_CHILD, true );
199
  endwhile;
200
 
201
  // Get children with custom args
229
 
230
  while ( $child_query->have_posts() ) : $child_query->the_post();
231
  // Add post to correct original sort key
232
+ $children[ array_search( $child_query->post->ID, $child_ids ) ] = $child_query->post;
233
  endwhile;
234
 
235
  // Fix sorting
242
  // No custom arguments found, get all objects of stored ID's
243
  $children = array();
244
  foreach ( $child_ids as $link_id => $child_id ) {
245
+ $children[ $link_id ] = get_post( $child_id );
246
  }
247
  }
248
 
298
  endwhile;
299
  }
300
 
301
+ /**
302
+ * Show some love
303
+ */
304
+ private function show_love() {
305
+
306
+ if ( '1' != RP4WP::get()->settings->get_option( 'show_love' ) ) {
307
+ return;
308
+ }
309
+
310
+ // Base
311
+ $base_url = "https://www.relatedpostsforwp.com";
312
+ $query_string = "?";
313
+
314
+ // Allow affiliates to add affiliate ID to Power By link
315
+ $ref = apply_filters( 'rp4wp_poweredby_affiliate_id', '' );
316
+ if ( '' !== $ref ) {
317
+ $ref = intval( $ref );
318
+ $query_string .= "ref=" . $ref . '&';
319
+ }
320
+
321
+ // The UTM campaign stuff
322
+ $query_string .= sprintf( "utm_source=%s&utm_medium=link&utm_campaign=poweredby", strtolower( preg_replace( "`[^A-z0-9\-.]+`i", '', str_ireplace( ' ', '-', html_entity_decode( get_bloginfo( 'name' ) ) ) ) ) );
323
+
324
+ // The URL
325
+ $url = $base_url . htmlentities( $query_string );
326
+
327
+ // Display
328
+
329
+ return '<small><a href="' . $url . '" target="_blank">Powered By Related Posts for WordPress</a></small>';
330
+
331
+ }
332
+
333
  /**
334
  * Generate the children list
335
  *
398
  }
399
 
400
  $content .= "<div class='rp4wp-related-post-content'>" . PHP_EOL;
401
+ $content .= "<a href='" . get_permalink( $rp4wp_post->ID ) . "'>" . apply_filters( 'rp4wp_post_title', $rp4wp_post->post_title, $rp4wp_post ) . "</a>";
402
 
403
  $excerpt_length = RP4WP::get()->settings->get_option( 'excerpt_length' );
404
  if ( $excerpt_length > 0 ) {
416
 
417
  // Close the wrapper div
418
  $content .= "</ul>\n";
419
+
420
+ $content .= $this->show_love();
421
+
422
  $content .= "</div>\n";
423
 
424
  }
classes/class-rp4wp.php CHANGED
@@ -8,7 +8,7 @@ class RP4WP {
8
 
9
  private static $instance = null;
10
 
11
- const VERSION = '1.7.6';
12
 
13
  /**
14
  * @var RP4WP_Settings
@@ -83,7 +83,7 @@ class RP4WP {
83
  delete_option( RP4WP_Constants::OPTION_DO_INSTALL );
84
 
85
  // Redirect to installation wizard
86
- wp_redirect( admin_url() . '?page=rp4wp_install', 307 );
87
  exit;
88
  }
89
 
8
 
9
  private static $instance = null;
10
 
11
+ const VERSION = '1.8.0';
12
 
13
  /**
14
  * @var RP4WP_Settings
83
  delete_option( RP4WP_Constants::OPTION_DO_INSTALL );
84
 
85
  // Redirect to installation wizard
86
+ wp_redirect( admin_url() . '?page=rp4wp_install&rp4wp_nonce=' . wp_create_nonce( RP4WP_Constants::NONCE_INSTALL ), 307 );
87
  exit;
88
  }
89
 
classes/hooks/class-hook-admin-scripts.php CHANGED
@@ -17,7 +17,8 @@ class RP4WP_Hook_Admin_Scripts extends RP4WP_Hook {
17
  wp_enqueue_script(
18
  'rp4wp_edit_post_js',
19
  plugins_url( '/assets/js/edit-post' . ( ( ! SCRIPT_DEBUG ) ? '.min' : '' ) . '.js', RP4WP::get_plugin_file() ),
20
- array( 'jquery', 'jquery-ui-sortable' )
 
21
  );
22
 
23
  // Make JavaScript strings translatable
@@ -26,9 +27,23 @@ class RP4WP_Hook_Admin_Scripts extends RP4WP_Hook {
26
  // CSS
27
  wp_enqueue_style(
28
  'rp4wp_edit_post_css',
29
- plugins_url( '/assets/css/edit-post.css', RP4WP::get_plugin_file() )
 
 
30
  );
31
  }
32
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  }
34
  }
17
  wp_enqueue_script(
18
  'rp4wp_edit_post_js',
19
  plugins_url( '/assets/js/edit-post' . ( ( ! SCRIPT_DEBUG ) ? '.min' : '' ) . '.js', RP4WP::get_plugin_file() ),
20
+ array( 'jquery', 'jquery-ui-sortable' ),
21
+ RP4WP::VERSION
22
  );
23
 
24
  // Make JavaScript strings translatable
27
  // CSS
28
  wp_enqueue_style(
29
  'rp4wp_edit_post_css',
30
+ plugins_url( '/assets/css/edit-post.css', RP4WP::get_plugin_file() ),
31
+ array(),
32
+ RP4WP::VERSION
33
  );
34
  }
35
 
36
+ if ( 'options-general.php' == $pagenow && isset( $_GET['page'] ) && $_GET['page'] === 'rp4wp' ) {
37
+
38
+ // Main settings JS
39
+ wp_enqueue_script(
40
+ 'rp4wp_settings_js',
41
+ plugins_url( '/assets/js/settings' . ( ( ! SCRIPT_DEBUG ) ? '.min' : '' ) . '.js', RP4WP::get_plugin_file() ),
42
+ array( 'jquery' ),
43
+ RP4WP::VERSION
44
+ );
45
+
46
+ }
47
+
48
  }
49
  }
classes/hooks/class-hook-ajax-install-link-posts.php CHANGED
@@ -9,6 +9,9 @@ class RP4WP_Hook_Ajax_Install_Link_Posts extends RP4WP_Hook {
9
 
10
  public function run() {
11
 
 
 
 
12
  // Get the PPR
13
  $ppr = isset( $_POST['ppr'] ) ? $_POST['ppr'] : 5;
14
 
9
 
10
  public function run() {
11
 
12
+ // Check nonce
13
+ check_ajax_referer( RP4WP_Constants::NONCE_AJAX, 'nonce' );
14
+
15
  // Get the PPR
16
  $ppr = isset( $_POST['ppr'] ) ? $_POST['ppr'] : 5;
17
 
classes/hooks/class-hook-ajax-install-save-words.php CHANGED
@@ -9,6 +9,9 @@ class RP4WP_Hook_Ajax_Install_Save_Words extends RP4WP_Hook {
9
 
10
  public function run() {
11
 
 
 
 
12
  // Get the PPR
13
  $ppr = isset( $_POST['ppr'] ) ? $_POST['ppr'] : 25;
14
 
9
 
10
  public function run() {
11
 
12
+ // Check nonce
13
+ check_ajax_referer( RP4WP_Constants::NONCE_AJAX, 'nonce' );
14
+
15
  // Get the PPR
16
  $ppr = isset( $_POST['ppr'] ) ? $_POST['ppr'] : 25;
17
 
classes/hooks/class-hook-page-install.php CHANGED
@@ -25,12 +25,12 @@ class RP4WP_Hook_Page_Install extends RP4WP_Hook {
25
  */
26
  public function enqueue_install_assets() {
27
  global $wp_scripts;
28
- wp_enqueue_style( 'rp4wp-install-css', plugins_url( '/assets/css/install.css', RP4WP::get_plugin_file() ) );
29
  wp_enqueue_script( 'rp4wp-install-js', plugins_url( '/assets/js/install' . ( ( ! SCRIPT_DEBUG ) ? '.min' : '' ) . '.js', RP4WP::get_plugin_file() ), array(
30
  'jquery',
31
  'jquery-ui-core',
32
  'jquery-ui-progressbar'
33
- ) );
34
  wp_enqueue_style( 'jquery-ui-smoothness', "http://ajax.googleapis.com/ajax/libs/jqueryui/" . $wp_scripts->query( 'jquery-ui-core' )->ver . "/themes/smoothness/jquery-ui.css", false, null );
35
  }
36
 
@@ -42,14 +42,15 @@ class RP4WP_Hook_Page_Install extends RP4WP_Hook {
42
  */
43
  public function content() {
44
 
 
 
 
 
 
 
45
  // Do we have a reinstall?
46
  if ( isset( $_GET['reinstall'] ) ) {
47
 
48
- // Check nonce
49
- if ( ! wp_verify_nonce( ( isset( $_GET['rp4wp_nonce'] ) ? $_GET['rp4wp_nonce'] : '' ), RP4WP_Constants::NONCE_INSTALL ) ) {
50
- wp_die( 'Woah! It looks like something else tried to run the Related Posts for WordPress installation wizard! We were able to stop them, nothing was lost. Please report this incident at <a href="http://wordpress.org/support/plugin/related-posts-for-wp" target="_blank">our forums.</a>' );
51
- }
52
-
53
  global $wpdb;
54
 
55
  // Get ID's of related post link posts
@@ -122,6 +123,14 @@ class RP4WP_Hook_Page_Install extends RP4WP_Hook {
122
  echo "<input type='hidden' id='rp4wp_total_posts' value='" . wp_count_posts( 'post' )->publish . "' />" . PHP_EOL;
123
  echo "<input type='hidden' id='rp4wp_admin_url' value='" . admin_url() . "' />" . PHP_EOL;
124
 
 
 
 
 
 
 
 
 
125
  if ( 1 == $cur_step ) {
126
 
127
  // Echo current uncached posts
25
  */
26
  public function enqueue_install_assets() {
27
  global $wp_scripts;
28
+ wp_enqueue_style( 'rp4wp-install-css', plugins_url( '/assets/css/install.css', RP4WP::get_plugin_file() ), array(), RP4WP::VERSION );
29
  wp_enqueue_script( 'rp4wp-install-js', plugins_url( '/assets/js/install' . ( ( ! SCRIPT_DEBUG ) ? '.min' : '' ) . '.js', RP4WP::get_plugin_file() ), array(
30
  'jquery',
31
  'jquery-ui-core',
32
  'jquery-ui-progressbar'
33
+ ), RP4WP::VERSION );
34
  wp_enqueue_style( 'jquery-ui-smoothness', "http://ajax.googleapis.com/ajax/libs/jqueryui/" . $wp_scripts->query( 'jquery-ui-core' )->ver . "/themes/smoothness/jquery-ui.css", false, null );
35
  }
36
 
42
  */
43
  public function content() {
44
 
45
+ // Check nonce
46
+ $installer_nonce = ( isset( $_GET['rp4wp_nonce'] ) ? $_GET['rp4wp_nonce'] : '' );
47
+ if ( ! wp_verify_nonce( $installer_nonce, RP4WP_Constants::NONCE_INSTALL ) ) {
48
+ wp_die( 'Woah! It looks like something else tried to run the Related Posts for WordPress installation wizard! We were able to stop them, nothing was lost. Please report this incident at <a href="http://wordpress.org/support/plugin/related-posts-for-wp" target="_blank">our forums.</a>' );
49
+ }
50
+
51
  // Do we have a reinstall?
52
  if ( isset( $_GET['reinstall'] ) ) {
53
 
 
 
 
 
 
54
  global $wpdb;
55
 
56
  // Get ID's of related post link posts
123
  echo "<input type='hidden' id='rp4wp_total_posts' value='" . wp_count_posts( 'post' )->publish . "' />" . PHP_EOL;
124
  echo "<input type='hidden' id='rp4wp_admin_url' value='" . admin_url() . "' />" . PHP_EOL;
125
 
126
+ // Echo the nonce
127
+ if ( ! empty( $installer_nonce ) ) {
128
+ echo "<input type='hidden' id='rp4wp_nonce' value='" . $installer_nonce . "' />" . PHP_EOL;
129
+ }
130
+
131
+ // AJAX nonce
132
+ echo '<input type="hidden" name="rp4wp-ajax-nonce" id="rp4wp-ajax-nonce" value="' . wp_create_nonce( RP4WP_Constants::NONCE_AJAX ) . '" />';
133
+
134
  if ( 1 == $cur_step ) {
135
 
136
  // Echo current uncached posts
classes/hooks/class-hook-settings-page.php CHANGED
@@ -29,7 +29,7 @@ class RP4WP_Hook_Settings_Page extends RP4WP_Hook {
29
  * @access public
30
  */
31
  public function enqueue_assets() {
32
- wp_enqueue_style( 'rp4wp-settings-css', plugins_url( '/assets/css/settings.css', RP4WP::get_plugin_file() ) );
33
  }
34
 
35
  /**
@@ -55,7 +55,7 @@ class RP4WP_Hook_Settings_Page extends RP4WP_Hook {
55
  <h3 class="rp4wp-title"><?php _e( 'Related Posts for WordPress Premium', 'related-posts-for-wp' ); ?></h3>
56
 
57
  <p><?php _e( "This plugin has an even better premium version, I am sure you will love it.", 'related-posts-for-wp' ); ?></p>
58
- <p><?php _e( "Premium features include custom post type support, related post themes, custom taxonomy support and priority support.", 'related-posts-for-wp' ); ?></p>
59
  <p><?php printf( __( "%sMore information about Related Posts for WP Premium »%s", 'related-posts-for-wp' ), '<a href="https://www.relatedpostsforwp.com/upgrade-premium/?utm_source=plugin&utm_medium=link&utm_campaign=upgrade-box" target="_blank">', '</a>' ); ?></p>
60
  </div>
61
 
@@ -80,18 +80,20 @@ class RP4WP_Hook_Settings_Page extends RP4WP_Hook {
80
  <div class="rp4wp-box">
81
  <h3 class="rp4wp-title"><?php _e( 'More information', 'related-posts-for-wp' ); ?></h3>
82
 
 
 
83
  <p><?php printf( __( "<a href='%s' target='_blank'>FAQ</a>", 'related-posts-for-wp' ), 'https://wordpress.org/plugins/related-posts-for-wp/faq/' ); ?></p>
84
 
85
  <p><?php printf( __( "<a href='%s' target='_blank'>Changelog</a>", 'related-posts-for-wp' ), 'https://wordpress.org/plugins/related-posts-for-wp/changelog/' ); ?></p>
86
 
87
- <p><?php printf( __( "<a href='%s' target='_blank'>Website</a>", 'related-posts-for-wp' ), 'https://www.relatedpostsforwp.com/?utm_source=plugin&utm_medium=link&utm_campaign=more-information' ); ?></p>
88
 
89
  </div>
90
 
91
  <div class="rp4wp-box">
92
  <h3 class="rp4wp-title"><?php _e( 'About the developer', 'related-posts-for-wp' ); ?></h3>
93
 
94
- <p><?php _e( "Barry is a WordPress developer that works on WooCommerce by WooThemes and is the author of various WordPress plugins that include Related Posts for WordPress, Post Connector and What The File.", 'related-posts-for-wp' ); ?></p>
95
 
96
  <p><?php _e( "Barry likes contributing to opensource projects and visiting WordCamps and WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg.", 'related-posts-for-wp' ); ?></p>
97
 
@@ -114,7 +116,7 @@ class RP4WP_Hook_Settings_Page extends RP4WP_Hook {
114
  <h2>Related Posts for WordPress</h2>
115
 
116
  <div class="rp4wp-content">
117
- <form method="post" action="options.php">
118
  <?php settings_fields( 'rp4wp' ); //pass slug name of page, also referred
119
  //to in Settings API as option group name
120
  do_settings_sections( 'rp4wp' ); //pass slug name of page
29
  * @access public
30
  */
31
  public function enqueue_assets() {
32
+ wp_enqueue_style( 'rp4wp-settings-css', plugins_url( '/assets/css/settings.css', RP4WP::get_plugin_file() ), array(), RP4WP::VERSION );
33
  }
34
 
35
  /**
55
  <h3 class="rp4wp-title"><?php _e( 'Related Posts for WordPress Premium', 'related-posts-for-wp' ); ?></h3>
56
 
57
  <p><?php _e( "This plugin has an even better premium version, I am sure you will love it.", 'related-posts-for-wp' ); ?></p>
58
+ <p><?php _e( "Premium features include cross custom post type related posts, related post themes, overwritable templates, adjustable weights, custom taxonomy support, priority support and more!", 'related-posts-for-wp' ); ?></p>
59
  <p><?php printf( __( "%sMore information about Related Posts for WP Premium »%s", 'related-posts-for-wp' ), '<a href="https://www.relatedpostsforwp.com/upgrade-premium/?utm_source=plugin&utm_medium=link&utm_campaign=upgrade-box" target="_blank">', '</a>' ); ?></p>
60
  </div>
61
 
80
  <div class="rp4wp-box">
81
  <h3 class="rp4wp-title"><?php _e( 'More information', 'related-posts-for-wp' ); ?></h3>
82
 
83
+ <p><?php printf( __( "<a href='%s' target='_blank'>Documentation</a>", 'related-posts-for-wp' ), 'https://www.relatedpostsforwp.com/documentation/?utm_source=plugin&utm_medium=link&utm_campaign=more-information-documentation' ); ?></p>
84
+
85
  <p><?php printf( __( "<a href='%s' target='_blank'>FAQ</a>", 'related-posts-for-wp' ), 'https://wordpress.org/plugins/related-posts-for-wp/faq/' ); ?></p>
86
 
87
  <p><?php printf( __( "<a href='%s' target='_blank'>Changelog</a>", 'related-posts-for-wp' ), 'https://wordpress.org/plugins/related-posts-for-wp/changelog/' ); ?></p>
88
 
89
+ <p><?php printf( __( "<a href='%s' target='_blank'>Website</a>", 'related-posts-for-wp' ), 'https://www.relatedpostsforwp.com/?utm_source=plugin&utm_medium=link&utm_campaign=more-information-website' ); ?></p>
90
 
91
  </div>
92
 
93
  <div class="rp4wp-box">
94
  <h3 class="rp4wp-title"><?php _e( 'About the developer', 'related-posts-for-wp' ); ?></h3>
95
 
96
+ <p><?php _e( "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.", 'related-posts-for-wp' ); ?></p>
97
 
98
  <p><?php _e( "Barry likes contributing to opensource projects and visiting WordCamps and WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg.", 'related-posts-for-wp' ); ?></p>
99
 
116
  <h2>Related Posts for WordPress</h2>
117
 
118
  <div class="rp4wp-content">
119
+ <form method="post" action="options.php" id="rp4wp-settings-form">
120
  <?php settings_fields( 'rp4wp' ); //pass slug name of page, also referred
121
  //to in Settings API as option group name
122
  do_settings_sections( 'rp4wp' ); //pass slug name of page
classes/settings/class-settings.php CHANGED
@@ -120,6 +120,13 @@ class RP4WP_Settings {
120
  'type' => 'checkbox',
121
  'default' => 0,
122
  ),
 
 
 
 
 
 
 
123
  ) ),
124
  );
125
 
@@ -221,6 +228,11 @@ class RP4WP_Settings {
221
  echo '<label class="rp4wp-description" for="' . $field['id'] . '">' . $field['description'] . '</label>';
222
  }
223
 
 
 
 
 
 
224
  // End of line
225
  echo PHP_EOL;
226
 
@@ -286,7 +298,7 @@ class RP4WP_Settings {
286
  public function get_option( $option ) {
287
  $options = $this->get_options();
288
 
289
- return isset( $options[$option] ) ? $options[$option] : false;
290
  }
291
 
292
  }
120
  'type' => 'checkbox',
121
  'default' => 0,
122
  ),
123
+ array(
124
+ 'id' => 'show_love',
125
+ 'label' => __( 'Show love?', 'related-posts-for-wp' ),
126
+ 'description' => __( "Display a 'Powered by' line under your related posts. <strong>BEWARE! Only for the real fans.</strong>", 'related-posts-for-wp' ),
127
+ 'type' => 'checkbox',
128
+ 'default' => 0,
129
+ ),
130
  ) ),
131
  );
132
 
228
  echo '<label class="rp4wp-description" for="' . $field['id'] . '">' . $field['description'] . '</label>';
229
  }
230
 
231
+ // Check if this option is being filtered
232
+ if ( has_filter( 'rp4wp_' . $field['id'] ) ) {
233
+ echo '<small>This option is overwritten by a filter.</small>';
234
+ }
235
+
236
  // End of line
237
  echo PHP_EOL;
238
 
298
  public function get_option( $option ) {
299
  $options = $this->get_options();
300
 
301
+ return apply_filters( 'rp4wp_' . $option, isset( $options[ $option ] ) ? $options[ $option ] : false );
302
  }
303
 
304
  }
languages/related-posts-for-wp-bg_bg.po CHANGED
@@ -6,8 +6,8 @@ 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-10-16 08:27:55+00:00\n"
10
- "PO-Revision-Date: 2014-10-19 17:43+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"
@@ -31,31 +31,42 @@ msgstr ""
31
  msgid "Are you sure you want to delete this related post?"
32
  msgstr ""
33
 
34
- #: classes/class-link-related-table.php:47
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:48
42
  msgid "All Posts"
43
  msgstr ""
44
 
45
- #: classes/class-link-related-table.php:97
 
46
  msgid "Title"
47
  msgstr ""
48
 
49
- #: classes/class-link-related-table.php:224
 
 
 
 
 
 
50
  msgid "Link Post"
51
  msgstr ""
52
 
53
- #: classes/class-link-related-table.php:256
 
 
 
 
54
  msgid "Link Posts"
55
  msgstr ""
56
 
57
  #: classes/class-post-type-manager.php:21
58
- #: classes/hooks/class-hook-link-related-screen.php:131
59
  msgid "Posts"
60
  msgstr ""
61
 
@@ -75,46 +86,46 @@ msgstr ""
75
  msgid "Settings"
76
  msgstr ""
77
 
78
- #: classes/hooks/class-hook-link-related-screen.php:132
79
  msgid "Cancel linking"
80
  msgstr ""
81
 
82
- #: classes/hooks/class-hook-link-related-screen.php:148
83
  msgid "Search"
84
  msgstr ""
85
 
86
- #: classes/hooks/class-hook-page-install.php:92
87
  msgid "Welcome"
88
  msgstr ""
89
 
90
- #: classes/hooks/class-hook-page-install.php:93
91
  msgid "Caching Posts"
92
  msgstr ""
93
 
94
- #: classes/hooks/class-hook-page-install.php:94
95
  msgid "Linking Posts"
96
  msgstr ""
97
 
98
- #: classes/hooks/class-hook-page-install.php:95
99
  msgid "Finished"
100
  msgstr ""
101
 
102
- #: classes/hooks/class-hook-page-install.php:106
103
  msgid ""
104
  "Missing post type paramater, please report this incident via %sour "
105
  "website%s."
106
  msgstr ""
107
 
108
- #: classes/hooks/class-hook-page-install.php:127
109
  msgid "Installation"
110
  msgstr ""
111
 
112
- #: classes/hooks/class-hook-page-install.php:161
113
- #: classes/hooks/class-hook-page-install.php:197
114
  msgid "Thank you for choosing Related Posts for WordPress!"
115
  msgstr ""
116
 
117
- #: classes/hooks/class-hook-page-install.php:162
118
  msgid ""
119
  "Below you'll find your post types available for installation, by installing "
120
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -122,84 +133,84 @@ msgid ""
122
  "Type' button."
123
  msgstr ""
124
 
125
- #: classes/hooks/class-hook-page-install.php:178
126
- msgid "Disable Relations for %s"
127
  msgstr ""
128
 
129
- #: classes/hooks/class-hook-page-install.php:180
130
- msgid "Enable Relations for %s"
131
  msgstr ""
132
 
133
- #: classes/hooks/class-hook-page-install.php:198
134
  msgid ""
135
  "Before you can start using Related Posts for WordPress we need to cache your"
136
  " current posts."
137
  msgstr ""
138
 
139
- #: classes/hooks/class-hook-page-install.php:199
140
  msgid ""
141
  "This is a one time process which might take some time now, depending on the "
142
  "amount of posts you have, but will ensure your website's performance when "
143
  "using the plugin."
144
  msgstr ""
145
 
146
- #: classes/hooks/class-hook-page-install.php:201
147
  msgid ""
148
  "Do NOT close this window, wait for this process to finish and this wizard to"
149
  " take you to the next step."
150
  msgstr ""
151
 
152
- #: classes/hooks/class-hook-page-install.php:219
153
  msgid "Great! All your posts were successfully cached!"
154
  msgstr ""
155
 
156
- #: classes/hooks/class-hook-page-install.php:220
157
  msgid ""
158
  "You can let me link your posts, based on what I think is related, to each "
159
  "other. And don't worry, if I made a mistake at one of your posts you can "
160
  "easily correct this by editing it manually!"
161
  msgstr ""
162
 
163
- #: classes/hooks/class-hook-page-install.php:221
164
  msgid ""
165
  "Want me to start linking posts to each other? Fill in the amount of related "
166
  "posts each post should have and click on the \"Link now\" button. Rather "
167
  "link your posts manually? Click \"Skip linking\"."
168
  msgstr ""
169
 
170
- #: classes/hooks/class-hook-page-install.php:222
171
  msgid ""
172
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
173
  " process to finish and this wizard to take you to the next step."
174
  msgstr ""
175
 
176
- #: classes/hooks/class-hook-page-install.php:225
177
  msgid "Amount of related posts per post:"
178
  msgstr ""
179
 
180
- #: classes/hooks/class-hook-page-install.php:226
181
  msgid "Link now"
182
  msgstr ""
183
 
184
- #: classes/hooks/class-hook-page-install.php:227
185
  msgid "Skip linking"
186
  msgstr ""
187
 
188
- #: classes/hooks/class-hook-page-install.php:235
189
  msgid "That's it, you're good to go!"
190
  msgstr ""
191
 
192
- #: classes/hooks/class-hook-page-install.php:236
193
  msgid ""
194
  "Thanks again for using Related Posts for WordPress and if you have any "
195
  "questions be sure to ask them at the %sWordPress.org forums.%s"
196
  msgstr ""
197
 
198
- #: classes/hooks/class-hook-page-install.php:238
199
  msgid "Click here to return to step 1"
200
  msgstr ""
201
 
202
- #: classes/hooks/class-hook-page-install.php:244
203
  msgid "Click here to go to the settings page"
204
  msgstr ""
205
 
@@ -207,59 +218,58 @@ msgstr ""
207
  msgid "Plugin version"
208
  msgstr ""
209
 
210
- #: classes/hooks/class-hook-settings-page.php:61
211
- msgid "More information"
212
- msgstr ""
213
-
214
  #: classes/hooks/class-hook-settings-page.php:63
215
- msgid "<a href='%s'>FAQ</a>"
216
- msgstr ""
217
-
218
- #: classes/hooks/class-hook-settings-page.php:65
219
- msgid "<a href='%s'>Change log</a>"
220
  msgstr ""
221
 
222
  #: classes/hooks/class-hook-settings-page.php:67
223
- msgid "<a href='%s'>Give us a review</a>"
224
  msgstr ""
225
 
226
  #: classes/hooks/class-hook-settings-page.php:69
227
- msgid "<a href='%s'>Release blog post</a>"
 
 
 
 
228
  msgstr ""
229
 
230
  #: classes/hooks/class-hook-settings-page.php:73
 
 
 
 
231
  msgid "About the developer"
232
  msgstr ""
233
 
234
- #: classes/hooks/class-hook-settings-page.php:75
235
  msgid ""
236
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
237
- " the author of various WordPress plugins that include Post Connector, "
238
- "Related Posts for WordPress and What The File."
239
  msgstr ""
240
 
241
- #: classes/hooks/class-hook-settings-page.php:77
242
  msgid ""
243
- "Barry likes contributing to opensource projects and visiting WordCamps and "
244
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
245
  msgstr ""
246
 
247
- #: classes/hooks/class-hook-settings-page.php:79
248
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
249
  msgstr ""
250
 
251
- #: classes/hooks/class-hook-settings-page.php:105
252
  msgid "General"
253
  msgstr ""
254
 
255
- #: classes/hooks/class-hook-settings-page.php:125
256
  msgid "Installer"
257
  msgstr ""
258
 
259
- #: classes/hooks/class-hook-settings-page.php:147
260
- msgid "Post Type"
261
- msgstr ""
262
-
263
  #: classes/meta-boxes/class-meta-box-manage.php:80
264
  msgid "Add Related Posts"
265
  msgstr ""
@@ -345,30 +355,63 @@ msgstr ""
345
  msgid "Checking this will enable displaying featured images of related %ss."
346
  msgstr ""
347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  #: classes/settings/class-settings-misc.php:18
349
  msgid "Misc"
350
  msgstr ""
351
 
352
- #: classes/settings/class-settings-misc.php:31
353
  msgid "Miscellaneous Settings"
354
  msgstr ""
355
 
356
- #: classes/settings/class-settings-misc.php:32
357
  msgid "A shelter for options that just don't fit in."
358
  msgstr ""
359
 
360
- #: classes/settings/class-settings-misc.php:36
361
- #: classes/settings/class-settings-weight.php:26
362
  msgid "Remove Data on Uninstall?"
363
  msgstr ""
364
 
365
- #: classes/settings/class-settings-misc.php:37
366
- #: classes/settings/class-settings-weight.php:27
367
  msgid ""
368
  "Check this box if you would like to completely remove all of its data when "
369
  "the plugin is deleted."
370
  msgstr ""
371
 
 
 
 
 
 
 
 
 
372
  #: classes/settings/class-settings-themes.php:18
373
  msgid "Styling"
374
  msgstr ""
@@ -378,7 +421,7 @@ msgid "Styling settings"
378
  msgstr ""
379
 
380
  #: classes/settings/class-settings-themes.php:32
381
- msgid "All settings related to frontend style your related posts."
382
  msgstr ""
383
 
384
  #: classes/settings/class-settings-themes.php:36
@@ -401,12 +444,54 @@ msgid ""
401
  "error here will break frontend display. To disable, leave field empty."
402
  msgstr ""
403
 
404
- #: classes/settings/class-settings-weight.php:21
405
- msgid "Post Types"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  msgstr ""
407
 
408
- #: classes/settings/class-settings-weight.php:22
409
- msgid "Check the post."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  msgstr ""
411
 
412
  #: classes/themes/class-theme-column-one.php:13
@@ -421,20 +506,10 @@ msgstr ""
421
  msgid "Two related post items per row."
422
  msgstr ""
423
 
424
- #: includes/updater/class-wpjm-updater.php:245
425
  msgid "Hide notice"
426
  msgstr ""
427
 
428
- #: includes/updater/class-wpjm-updater.php:284
429
- msgid "Licence"
430
- msgstr ""
431
-
432
- #: includes/updater/class-wpjm-updater.php:287
433
- msgid ""
434
- "Enter your licence key and email and hit return. A valid key is required for"
435
- " automatic updates."
436
- msgstr ""
437
-
438
  #. Plugin Name of the plugin/theme
439
  msgid "Related Posts for WordPress Premium"
440
  msgstr "Related Posts for WordPress Premium"
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"
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
 
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
  "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
 
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 ""
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 ""
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
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
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"
languages/related-posts-for-wp-de_de.po CHANGED
@@ -8,9 +8,9 @@ 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-10-16 08:27:55+00:00\n"
12
- "PO-Revision-Date: 2014-10-25 19:44+0000\n"
13
- "Last-Translator: Remy van Velthuijsen <remyvv@users.noreply.github.com>\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"
@@ -33,31 +33,42 @@ msgstr "%sSetze den Installationsassistenten fort%s oder %sverwerfe diese Meldun
33
  msgid "Are you sure you want to delete this related post?"
34
  msgstr "Sind sie sicher das Sie diesen verwanten Beitrag löschen wollen?"
35
 
36
- #: classes/class-link-related-table.php:47
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
 
43
- #: classes/class-link-related-table.php:48
44
  msgid "All Posts"
45
  msgstr "Alle Beiträge"
46
 
47
- #: classes/class-link-related-table.php:97
 
48
  msgid "Title"
49
  msgstr "Titel"
50
 
51
- #: classes/class-link-related-table.php:224
 
 
 
 
 
 
52
  msgid "Link Post"
53
  msgstr "Verknüpfe Beitrag"
54
 
55
- #: classes/class-link-related-table.php:256
 
 
 
 
56
  msgid "Link Posts"
57
  msgstr "Verknüpfe Beiträge"
58
 
59
  #: classes/class-post-type-manager.php:21
60
- #: classes/hooks/class-hook-link-related-screen.php:131
61
  msgid "Posts"
62
  msgstr "Beiträge"
63
 
@@ -77,46 +88,46 @@ msgstr "Zeige verwante Beiträge"
77
  msgid "Settings"
78
  msgstr "Einstellungen"
79
 
80
- #: classes/hooks/class-hook-link-related-screen.php:132
81
  msgid "Cancel linking"
82
  msgstr "Verknüpfen abbrechen"
83
 
84
- #: classes/hooks/class-hook-link-related-screen.php:148
85
  msgid "Search"
86
  msgstr "Suchen"
87
 
88
- #: classes/hooks/class-hook-page-install.php:92
89
  msgid "Welcome"
90
  msgstr "Willkommen"
91
 
92
- #: classes/hooks/class-hook-page-install.php:93
93
  msgid "Caching Posts"
94
  msgstr "Beiträge zwischenspeichern"
95
 
96
- #: classes/hooks/class-hook-page-install.php:94
97
  msgid "Linking Posts"
98
  msgstr "Beiträge verknüpfen"
99
 
100
- #: classes/hooks/class-hook-page-install.php:95
101
  msgid "Finished"
102
  msgstr "Fertig"
103
 
104
- #: classes/hooks/class-hook-page-install.php:106
105
  msgid ""
106
  "Missing post type paramater, please report this incident via %sour "
107
  "website%s."
108
  msgstr "Fehlender Beitrags-Typ Parameter, bitte melden Sie diesen Vorfall mittels %sunsere Webseite%s"
109
 
110
- #: classes/hooks/class-hook-page-install.php:127
111
  msgid "Installation"
112
  msgstr "Installation"
113
 
114
- #: classes/hooks/class-hook-page-install.php:161
115
- #: classes/hooks/class-hook-page-install.php:197
116
  msgid "Thank you for choosing Related Posts for WordPress!"
117
  msgstr "Vielen dank für ihre Wahl für Verwante Beiträge für WordPress"
118
 
119
- #: classes/hooks/class-hook-page-install.php:162
120
  msgid ""
121
  "Below you'll find your post types available for installation, by installing "
122
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -124,84 +135,84 @@ msgid ""
124
  "Type' button."
125
  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' "
126
 
127
- #: classes/hooks/class-hook-page-install.php:178
128
- msgid "Disable Relations for %s"
129
- msgstr "Verknüpfungen deaktivieren für %s"
130
 
131
- #: classes/hooks/class-hook-page-install.php:180
132
- msgid "Enable Relations for %s"
133
- msgstr "Verknüpfungen aktivieren für %s"
134
 
135
- #: classes/hooks/class-hook-page-install.php:198
136
  msgid ""
137
  "Before you can start using Related Posts for WordPress we need to cache your"
138
  " current posts."
139
  msgstr "Befor Sie anfangen können mit Verwante Beiträge für WordPress müssen wir Ihre aktuellen Beiträge zwischenspeichern."
140
 
141
- #: classes/hooks/class-hook-page-install.php:199
142
  msgid ""
143
  "This is a one time process which might take some time now, depending on the "
144
  "amount of posts you have, but will ensure your website's performance when "
145
  "using the plugin."
146
  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."
147
 
148
- #: classes/hooks/class-hook-page-install.php:201
149
  msgid ""
150
  "Do NOT close this window, wait for this process to finish and this wizard to"
151
  " take you to the next step."
152
  msgstr "Schließen Sie dieses Fenster bitte NICHT, warten bis der Prozess beendet ist und der Installationsassistent wird Sie weiterleiten zum nächtsten Schritt."
153
 
154
- #: classes/hooks/class-hook-page-install.php:219
155
  msgid "Great! All your posts were successfully cached!"
156
  msgstr "Super! All Ihre Beiträge sind erfolgreich zwischengespeichert."
157
 
158
- #: classes/hooks/class-hook-page-install.php:220
159
  msgid ""
160
  "You can let me link your posts, based on what I think is related, to each "
161
  "other. And don't worry, if I made a mistake at one of your posts you can "
162
  "easily correct this by editing it manually!"
163
  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."
164
 
165
- #: classes/hooks/class-hook-page-install.php:221
166
  msgid ""
167
  "Want me to start linking posts to each other? Fill in the amount of related "
168
  "posts each post should have and click on the \"Link now\" button. Rather "
169
  "link your posts manually? Click \"Skip linking\"."
170
  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\"."
171
 
172
- #: classes/hooks/class-hook-page-install.php:222
173
  msgid ""
174
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
175
  " process to finish and this wizard to take you to the next step."
176
  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."
177
 
178
- #: classes/hooks/class-hook-page-install.php:225
179
  msgid "Amount of related posts per post:"
180
  msgstr "Menge der verwandten Beiträge pro Beitrag"
181
 
182
- #: classes/hooks/class-hook-page-install.php:226
183
  msgid "Link now"
184
  msgstr "Verknüpfe jetzt"
185
 
186
- #: classes/hooks/class-hook-page-install.php:227
187
  msgid "Skip linking"
188
  msgstr "Überspringe Verknüpfen"
189
 
190
- #: classes/hooks/class-hook-page-install.php:235
191
  msgid "That's it, you're good to go!"
192
  msgstr "Das wars, jetzt kann es los gehen!"
193
 
194
- #: classes/hooks/class-hook-page-install.php:236
195
  msgid ""
196
  "Thanks again for using Related Posts for WordPress and if you have any "
197
  "questions be sure to ask them at the %sWordPress.org forums.%s"
198
  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."
199
 
200
- #: classes/hooks/class-hook-page-install.php:238
201
  msgid "Click here to return to step 1"
202
  msgstr "Drücken Sie hier um zurück zu Schritt 1 zu gehen"
203
 
204
- #: classes/hooks/class-hook-page-install.php:244
205
  msgid "Click here to go to the settings page"
206
  msgstr "Drücken Sie hier um zurück zu den Einstellungen zu gehen"
207
 
@@ -209,59 +220,58 @@ msgstr "Drücken Sie hier um zurück zu den Einstellungen zu gehen"
209
  msgid "Plugin version"
210
  msgstr "Plugin Version"
211
 
212
- #: classes/hooks/class-hook-settings-page.php:61
 
 
 
 
 
 
 
213
  msgid "More information"
214
  msgstr "Weitere Information"
215
 
216
- #: classes/hooks/class-hook-settings-page.php:63
217
- msgid "<a href='%s'>FAQ</a>"
218
- msgstr "<a href='%s'>FAQ</a>"
219
 
220
- #: classes/hooks/class-hook-settings-page.php:65
221
- msgid "<a href='%s'>Change log</a>"
222
- msgstr "<a href='%s'>Change log</a>"
223
 
224
- #: classes/hooks/class-hook-settings-page.php:67
225
  msgid "<a href='%s'>Give us a review</a>"
226
  msgstr "<a href='%s'>Geben Sie uns eine Bewertung</a>"
227
 
228
- #: classes/hooks/class-hook-settings-page.php:69
229
- msgid "<a href='%s'>Release blog post</a>"
230
- msgstr "<a href='%s'>Veröffentlich Blogbeitrag</a>"
231
-
232
- #: classes/hooks/class-hook-settings-page.php:73
233
  msgid "About the developer"
234
  msgstr "Über den Entwickler"
235
 
236
- #: classes/hooks/class-hook-settings-page.php:75
237
  msgid ""
238
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
239
- " the author of various WordPress plugins that include Post Connector, "
240
- "Related Posts for WordPress and What The File."
241
- msgstr "Barry ist ein Wordpress-Entwickler der an WooCommerce arbeitet für WooThemes und ist Autor verschiedener Wordpress-Plugins, wie zum Beispiel Post Connector, Related Posts for Wordpress und What The File."
242
 
243
- #: classes/hooks/class-hook-settings-page.php:77
244
  msgid ""
245
- "Barry likes contributing to opensource projects and visiting WordCamps and "
246
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
247
- msgstr "Barry mag es um bei zu tragen an opensource Opensource-Projekte, und das besuchen von WordCamps und WordPress Meetups. Er ist der Organisator des Wordpress Meetup in Tilburg."
248
 
249
- #: classes/hooks/class-hook-settings-page.php:79
250
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
251
- msgstr "Sie können Barry auf Twitter <a href='%s'>hier</a> folgen."
252
 
253
- #: classes/hooks/class-hook-settings-page.php:105
254
  msgid "General"
255
  msgstr "Allgemein"
256
 
257
- #: classes/hooks/class-hook-settings-page.php:125
258
  msgid "Installer"
259
  msgstr "Installer"
260
 
261
- #: classes/hooks/class-hook-settings-page.php:147
262
- msgid "Post Type"
263
- msgstr "Beitrags-Typ"
264
-
265
  #: classes/meta-boxes/class-meta-box-manage.php:80
266
  msgid "Add Related Posts"
267
  msgstr "Verwante Beiträge zufügen"
@@ -347,30 +357,63 @@ msgstr "Bild anzeigen"
347
  msgid "Checking this will enable displaying featured images of related %ss."
348
  msgstr "Aktivieren dieser Option wird die Anzeige des Ausgewählten Bild für %sen einschalten."
349
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  #: classes/settings/class-settings-misc.php:18
351
  msgid "Misc"
352
  msgstr "Verschiedenes"
353
 
354
- #: classes/settings/class-settings-misc.php:31
355
  msgid "Miscellaneous Settings"
356
  msgstr "Sonstige Einstellungen"
357
 
358
- #: classes/settings/class-settings-misc.php:32
359
  msgid "A shelter for options that just don't fit in."
360
  msgstr "Ein Unterstand für Optionen, die einfach nicht passen."
361
 
362
- #: classes/settings/class-settings-misc.php:36
363
- #: classes/settings/class-settings-weight.php:26
364
  msgid "Remove Data on Uninstall?"
365
  msgstr "Daten entfernen beim Deinstallieren?"
366
 
367
- #: classes/settings/class-settings-misc.php:37
368
- #: classes/settings/class-settings-weight.php:27
369
  msgid ""
370
  "Check this box if you would like to completely remove all of its data when "
371
  "the plugin is deleted."
372
  msgstr "Aktivieren Sie dieses Kästchen, wenn Sie möchten, um alle Daten zu entfernen, wenn der Plugin gelöscht wird."
373
 
 
 
 
 
 
 
 
 
374
  #: classes/settings/class-settings-themes.php:18
375
  msgid "Styling"
376
  msgstr "Styling"
@@ -380,8 +423,8 @@ msgid "Styling settings"
380
  msgstr "Styling Einstellungen"
381
 
382
  #: classes/settings/class-settings-themes.php:32
383
- msgid "All settings related to frontend style your related posts."
384
- msgstr "Alle Einstellungen in Bezug auf das Wiedergabe Styling von Ihren verwandten Beiträgen."
385
 
386
  #: classes/settings/class-settings-themes.php:36
387
  msgid "Themes"
@@ -403,13 +446,55 @@ msgid ""
403
  "error here will break frontend display. To disable, leave field empty."
404
  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."
405
 
406
- #: classes/settings/class-settings-weight.php:21
407
- msgid "Post Types"
408
- msgstr "Beitrags-Typen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
 
410
- #: classes/settings/class-settings-weight.php:22
411
- msgid "Check the post."
412
- msgstr "Überprüfe den Beitrag."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
 
414
  #: classes/themes/class-theme-column-one.php:13
415
  msgid "One related post item per row."
@@ -423,20 +508,10 @@ msgstr "Drei verwandte Beiträge pro Zeile"
423
  msgid "Two related post items per row."
424
  msgstr "Zwei verwandte Beiträge pro Zeile"
425
 
426
- #: includes/updater/class-wpjm-updater.php:245
427
  msgid "Hide notice"
428
  msgstr "Hinweis ausblenden"
429
 
430
- #: includes/updater/class-wpjm-updater.php:284
431
- msgid "Licence"
432
- msgstr "Lizenz"
433
-
434
- #: includes/updater/class-wpjm-updater.php:287
435
- msgid ""
436
- "Enter your licence key and email and hit return. A valid key is required for"
437
- " automatic updates."
438
- msgstr "Geben Sie Ihren Lizenzschlüssel und E-Mail ein und bestätigen sIe mit der Enter-Taste. Ein gültiger Schlüssel ist erforderlich für automatische Updates."
439
-
440
  #. Plugin Name of the plugin/theme
441
  msgid "Related Posts for WordPress Premium"
442
  msgstr "Related Posts for WordPress Premium"
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"
33
  msgid "Are you sure you want to delete this related post?"
34
  msgstr "Sind sie sicher das Sie diesen verwanten Beitrag löschen wollen?"
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:52
40
  msgid "Related Posts"
41
  msgstr "Verwante Beiträge"
42
 
43
+ #: classes/class-link-related-table.php:46
44
  msgid "All Posts"
45
  msgstr "Alle Beiträge"
46
 
47
+ #: classes/class-link-related-table.php:95
48
+ #: classes/settings/class-settings-weights.php:29
49
  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
  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
  "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
 
220
  msgid "Plugin version"
221
  msgstr "Plugin Version"
222
 
223
+ #: classes/hooks/class-hook-settings-page.php:63
224
+ 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"
232
  msgstr "Weitere Information"
233
 
234
+ #: classes/hooks/class-hook-settings-page.php:69
235
+ msgid "<a href='%s'>Documentation</a>"
236
+ msgstr "<a href='%s'>Dokumentation</a>"
237
 
238
+ #: classes/hooks/class-hook-settings-page.php:71
239
+ msgid "<a href='%s'>Changelog</a>"
240
+ msgstr "<a href='%s'>Changelog</a>"
241
 
242
+ #: classes/hooks/class-hook-settings-page.php:73
243
  msgid "<a href='%s'>Give us a review</a>"
244
  msgstr "<a href='%s'>Geben Sie uns eine Bewertung</a>"
245
 
246
+ #: classes/hooks/class-hook-settings-page.php:78
 
 
 
 
247
  msgid "About the developer"
248
  msgstr "Über den Entwickler"
249
 
250
+ #: classes/hooks/class-hook-settings-page.php:80
251
  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."
265
+ msgstr "%sFolgen Sie Barry auf Twitter%s."
266
 
267
+ #: classes/hooks/class-hook-settings-page.php:110
268
  msgid "General"
269
  msgstr "Allgemein"
270
 
271
+ #: classes/hooks/class-hook-settings-page.php:130
272
  msgid "Installer"
273
  msgstr "Installer"
274
 
 
 
 
 
275
  #: classes/meta-boxes/class-meta-box-manage.php:80
276
  msgid "Add Related Posts"
277
  msgstr "Verwante Beiträge zufügen"
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 ""
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"
389
  msgstr "Verschiedenes"
390
 
391
+ #: classes/settings/class-settings-misc.php:24
392
  msgid "Miscellaneous Settings"
393
  msgstr "Sonstige Einstellungen"
394
 
395
+ #: classes/settings/class-settings-misc.php:25
396
  msgid "A shelter for options that just don't fit in."
397
  msgstr "Ein Unterstand für Optionen, die einfach nicht passen."
398
 
399
+ #: classes/settings/class-settings-misc.php:29
 
400
  msgid "Remove Data on Uninstall?"
401
  msgstr "Daten entfernen beim Deinstallieren?"
402
 
403
+ #: classes/settings/class-settings-misc.php:30
 
404
  msgid ""
405
  "Check this box if you would like to completely remove all of its data when "
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"
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"
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"
451
+ msgstr "Gewichte"
452
+
453
+ #: classes/settings/class-settings-weights.php:24
454
+ msgid "Weight settings"
455
+ msgstr "Gewichts Einstellungen"
456
+
457
+ #: classes/settings/class-settings-weights.php:25
458
+ msgid ""
459
+ "Easily adjust the weights by using the sliders below. Please note that you "
460
+ "need to rerun the installer after changing weights."
461
+ msgstr "Einfache Anpassung der Gewichte mit Hilfe der Schieberegler unten. Bitte beachten Sie, dass Sie das Installationsprogramm nach dem Ändern der Gewichte erneut ausführen müssen."
462
+
463
+ #: classes/settings/class-settings-weights.php:30
464
+ msgid "The weight of the title."
465
+ msgstr "Das Gewicht des Titels."
466
+
467
+ #: classes/settings/class-settings-weights.php:36
468
+ msgid "Links"
469
+ msgstr "Verknüpfungen"
470
+
471
+ #: classes/settings/class-settings-weights.php:37
472
+ msgid "The weight of the links found in the content."
473
+ msgstr "Das Gewicht der Links in dem Inhalt."
474
+
475
+ #: classes/settings/class-settings-weights.php:43
476
+ msgid "Categories"
477
+ msgstr "Kategorien"
478
 
479
+ #: classes/settings/class-settings-weights.php:44
480
+ msgid "The weight of the categories."
481
+ msgstr "Das Gewicht der Kategorien."
482
+
483
+ #: classes/settings/class-settings-weights.php:50
484
+ msgid "Tags"
485
+ msgstr "Tags"
486
+
487
+ #: classes/settings/class-settings-weights.php:51
488
+ msgid "The weight of the tags."
489
+ msgstr "Das Gewicht der Tags."
490
+
491
+ #: classes/settings/class-settings-weights.php:57
492
+ msgid "Custom Taxonomies"
493
+ msgstr "Benutzerdefinierte Taxonomien"
494
+
495
+ #: classes/settings/class-settings-weights.php:58
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."
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"
514
 
 
 
 
 
 
 
 
 
 
 
515
  #. Plugin Name of the plugin/theme
516
  msgid "Related Posts for WordPress Premium"
517
  msgstr "Related Posts for WordPress Premium"
languages/related-posts-for-wp-en_en.po CHANGED
@@ -5,8 +5,8 @@ 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-10-16 08:27:55+00:00\n"
9
- "PO-Revision-Date: 2014-10-16 08:29+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"
@@ -30,31 +30,42 @@ msgstr "%sResume the installation wizard%s or %sdismiss this notice%s"
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:47
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:48
41
  msgid "All Posts"
42
  msgstr "All Posts"
43
 
44
- #: classes/class-link-related-table.php:97
 
45
  msgid "Title"
46
  msgstr "Title"
47
 
48
- #: classes/class-link-related-table.php:224
 
 
 
 
 
 
49
  msgid "Link Post"
50
  msgstr "Link Post"
51
 
52
- #: classes/class-link-related-table.php:256
 
 
 
 
53
  msgid "Link Posts"
54
  msgstr "Link Posts"
55
 
56
  #: classes/class-post-type-manager.php:21
57
- #: classes/hooks/class-hook-link-related-screen.php:131
58
  msgid "Posts"
59
  msgstr "Posts"
60
 
@@ -74,46 +85,46 @@ msgstr "Display related posts."
74
  msgid "Settings"
75
  msgstr "Settings"
76
 
77
- #: classes/hooks/class-hook-link-related-screen.php:132
78
  msgid "Cancel linking"
79
  msgstr "Cancel linking"
80
 
81
- #: classes/hooks/class-hook-link-related-screen.php:148
82
  msgid "Search"
83
  msgstr "Search"
84
 
85
- #: classes/hooks/class-hook-page-install.php:92
86
  msgid "Welcome"
87
  msgstr "Welcome"
88
 
89
- #: classes/hooks/class-hook-page-install.php:93
90
  msgid "Caching Posts"
91
  msgstr "Caching Posts"
92
 
93
- #: classes/hooks/class-hook-page-install.php:94
94
  msgid "Linking Posts"
95
  msgstr "Linking Posts"
96
 
97
- #: classes/hooks/class-hook-page-install.php:95
98
  msgid "Finished"
99
  msgstr "Finished"
100
 
101
- #: classes/hooks/class-hook-page-install.php:106
102
  msgid ""
103
  "Missing post type paramater, please report this incident via %sour "
104
  "website%s."
105
  msgstr "Missing post type paramater, please report this incident via %sour website%s."
106
 
107
- #: classes/hooks/class-hook-page-install.php:127
108
  msgid "Installation"
109
  msgstr "Installation"
110
 
111
- #: classes/hooks/class-hook-page-install.php:161
112
- #: classes/hooks/class-hook-page-install.php:197
113
  msgid "Thank you for choosing Related Posts for WordPress!"
114
  msgstr "Thank you for choosing Related Posts for WordPress!"
115
 
116
- #: classes/hooks/class-hook-page-install.php:162
117
  msgid ""
118
  "Below you'll find your post types available for installation, by installing "
119
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -121,84 +132,84 @@ msgid ""
121
  "Type' button."
122
  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."
123
 
124
- #: classes/hooks/class-hook-page-install.php:178
125
- msgid "Disable Relations for %s"
126
- msgstr "Disable Relations for %s"
127
 
128
- #: classes/hooks/class-hook-page-install.php:180
129
- msgid "Enable Relations for %s"
130
- msgstr "Enable Relations for %s"
131
 
132
- #: classes/hooks/class-hook-page-install.php:198
133
  msgid ""
134
  "Before you can start using Related Posts for WordPress we need to cache your"
135
  " current posts."
136
  msgstr "Before you can start using Related Posts for WordPress we need to cache your current posts."
137
 
138
- #: classes/hooks/class-hook-page-install.php:199
139
  msgid ""
140
  "This is a one time process which might take some time now, depending on the "
141
  "amount of posts you have, but will ensure your website's performance when "
142
  "using the plugin."
143
  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."
144
 
145
- #: classes/hooks/class-hook-page-install.php:201
146
  msgid ""
147
  "Do NOT close this window, wait for this process to finish and this wizard to"
148
  " take you to the next step."
149
  msgstr "Do NOT close this window, wait for this process to finish and this wizard to take you to the next step."
150
 
151
- #: classes/hooks/class-hook-page-install.php:219
152
  msgid "Great! All your posts were successfully cached!"
153
  msgstr "Great! All your posts were successfully cached!"
154
 
155
- #: classes/hooks/class-hook-page-install.php:220
156
  msgid ""
157
  "You can let me link your posts, based on what I think is related, to each "
158
  "other. And don't worry, if I made a mistake at one of your posts you can "
159
  "easily correct this by editing it manually!"
160
  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!"
161
 
162
- #: classes/hooks/class-hook-page-install.php:221
163
  msgid ""
164
  "Want me to start linking posts to each other? Fill in the amount of related "
165
  "posts each post should have and click on the \"Link now\" button. Rather "
166
  "link your posts manually? Click \"Skip linking\"."
167
  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\"."
168
 
169
- #: classes/hooks/class-hook-page-install.php:222
170
  msgid ""
171
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
172
  " process to finish and this wizard to take you to the next step."
173
  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."
174
 
175
- #: classes/hooks/class-hook-page-install.php:225
176
  msgid "Amount of related posts per post:"
177
  msgstr "Amount of related posts per post:"
178
 
179
- #: classes/hooks/class-hook-page-install.php:226
180
  msgid "Link now"
181
  msgstr "Link now"
182
 
183
- #: classes/hooks/class-hook-page-install.php:227
184
  msgid "Skip linking"
185
  msgstr "Skip linking"
186
 
187
- #: classes/hooks/class-hook-page-install.php:235
188
  msgid "That's it, you're good to go!"
189
  msgstr "That's it, you're good to go!"
190
 
191
- #: classes/hooks/class-hook-page-install.php:236
192
  msgid ""
193
  "Thanks again for using Related Posts for WordPress and if you have any "
194
  "questions be sure to ask them at the %sWordPress.org forums.%s"
195
  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"
196
 
197
- #: classes/hooks/class-hook-page-install.php:238
198
  msgid "Click here to return to step 1"
199
  msgstr "Click here to return to step 1"
200
 
201
- #: classes/hooks/class-hook-page-install.php:244
202
  msgid "Click here to go to the settings page"
203
  msgstr "Click here to go to the settings page"
204
 
@@ -206,59 +217,58 @@ msgstr "Click here to go to the settings page"
206
  msgid "Plugin version"
207
  msgstr "Plugin version"
208
 
209
- #: classes/hooks/class-hook-settings-page.php:61
 
 
 
 
 
 
 
210
  msgid "More information"
211
  msgstr "More information"
212
 
213
- #: classes/hooks/class-hook-settings-page.php:63
214
- msgid "<a href='%s'>FAQ</a>"
215
- msgstr "<a href='%s'>FAQ</a>"
216
 
217
- #: classes/hooks/class-hook-settings-page.php:65
218
- msgid "<a href='%s'>Change log</a>"
219
- msgstr "<a href='%s'>Change log</a>"
220
 
221
- #: classes/hooks/class-hook-settings-page.php:67
222
  msgid "<a href='%s'>Give us a review</a>"
223
  msgstr "<a href='%s'>Give us a review</a>"
224
 
225
- #: classes/hooks/class-hook-settings-page.php:69
226
- msgid "<a href='%s'>Release blog post</a>"
227
- msgstr "<a href='%s'>Release blog post</a>"
228
-
229
- #: classes/hooks/class-hook-settings-page.php:73
230
  msgid "About the developer"
231
  msgstr "About the developer"
232
 
233
- #: classes/hooks/class-hook-settings-page.php:75
234
  msgid ""
235
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
236
- " the author of various WordPress plugins that include Post Connector, "
237
- "Related Posts for WordPress and What The File."
238
- msgstr "Barry is a WordPress developer that works on WooCommerce by WooThemes and is the author of various WordPress plugins that include Post Connector, Related Posts for WordPress and What The File."
239
 
240
- #: classes/hooks/class-hook-settings-page.php:77
241
  msgid ""
242
- "Barry likes contributing to opensource projects and visiting WordCamps and "
243
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
244
- msgstr "Barry likes contributing to opensource projects and visiting WordCamps and WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
245
 
246
- #: classes/hooks/class-hook-settings-page.php:79
247
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
248
- msgstr "You can follow Barry on Twitter <a href='%s'>here</a>."
249
 
250
- #: classes/hooks/class-hook-settings-page.php:105
251
  msgid "General"
252
  msgstr "General"
253
 
254
- #: classes/hooks/class-hook-settings-page.php:125
255
  msgid "Installer"
256
  msgstr "Installer"
257
 
258
- #: classes/hooks/class-hook-settings-page.php:147
259
- msgid "Post Type"
260
- msgstr "Post Type"
261
-
262
  #: classes/meta-boxes/class-meta-box-manage.php:80
263
  msgid "Add Related Posts"
264
  msgstr "Add Related Posts"
@@ -344,30 +354,63 @@ msgstr "Display Image"
344
  msgid "Checking this will enable displaying featured images of related %ss."
345
  msgstr "Checking this will enable displaying featured images of related %ss."
346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
  #: classes/settings/class-settings-misc.php:18
348
  msgid "Misc"
349
  msgstr "Misc"
350
 
351
- #: classes/settings/class-settings-misc.php:31
352
  msgid "Miscellaneous Settings"
353
  msgstr "Miscellaneous Settings"
354
 
355
- #: classes/settings/class-settings-misc.php:32
356
  msgid "A shelter for options that just don't fit in."
357
  msgstr "A shelter for options that just don't fit in."
358
 
359
- #: classes/settings/class-settings-misc.php:36
360
- #: classes/settings/class-settings-weight.php:26
361
  msgid "Remove Data on Uninstall?"
362
  msgstr "Remove Data on Uninstall?"
363
 
364
- #: classes/settings/class-settings-misc.php:37
365
- #: classes/settings/class-settings-weight.php:27
366
  msgid ""
367
  "Check this box if you would like to completely remove all of its data when "
368
  "the plugin is deleted."
369
  msgstr "Check this box if you would like to completely remove all of its data when the plugin is deleted."
370
 
 
 
 
 
 
 
 
 
371
  #: classes/settings/class-settings-themes.php:18
372
  msgid "Styling"
373
  msgstr "Styling"
@@ -377,8 +420,8 @@ msgid "Styling settings"
377
  msgstr "Styling settings"
378
 
379
  #: classes/settings/class-settings-themes.php:32
380
- msgid "All settings related to frontend style your related posts."
381
- msgstr "All settings related to frontend style your related posts."
382
 
383
  #: classes/settings/class-settings-themes.php:36
384
  msgid "Themes"
@@ -400,13 +443,55 @@ msgid ""
400
  "error here will break frontend display. To disable, leave field empty."
401
  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."
402
 
403
- #: classes/settings/class-settings-weight.php:21
404
- msgid "Post Types"
405
- msgstr "Post Types"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
 
407
- #: classes/settings/class-settings-weight.php:22
408
- msgid "Check the post."
409
- msgstr "Check the post."
 
 
 
 
 
 
 
 
 
 
 
 
410
 
411
  #: classes/themes/class-theme-column-one.php:13
412
  msgid "One related post item per row."
@@ -420,20 +505,10 @@ msgstr "Three related post items per row."
420
  msgid "Two related post items per row."
421
  msgstr "Two related post items per row."
422
 
423
- #: includes/updater/class-wpjm-updater.php:245
424
  msgid "Hide notice"
425
  msgstr "Hide notice"
426
 
427
- #: includes/updater/class-wpjm-updater.php:284
428
- msgid "Licence"
429
- msgstr "Licence"
430
-
431
- #: includes/updater/class-wpjm-updater.php:287
432
- msgid ""
433
- "Enter your licence key and email and hit return. A valid key is required for"
434
- " automatic updates."
435
- msgstr "Enter your licence key and email and hit return. A valid key is required for automatic updates."
436
-
437
  #. Plugin Name of the plugin/theme
438
  msgid "Related Posts for WordPress Premium"
439
  msgstr "Related Posts for WordPress Premium"
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"
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
 
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"
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
 
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"
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"
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"
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."
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"
languages/related-posts-for-wp-es_es.po CHANGED
@@ -6,8 +6,8 @@ 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-10-16 08:27:55+00:00\n"
10
- "PO-Revision-Date: 2014-10-19 17:45+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"
@@ -31,31 +31,42 @@ msgstr ""
31
  msgid "Are you sure you want to delete this related post?"
32
  msgstr ""
33
 
34
- #: classes/class-link-related-table.php:47
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:48
42
  msgid "All Posts"
43
  msgstr ""
44
 
45
- #: classes/class-link-related-table.php:97
 
46
  msgid "Title"
47
  msgstr ""
48
 
49
- #: classes/class-link-related-table.php:224
 
 
 
 
 
 
50
  msgid "Link Post"
51
  msgstr ""
52
 
53
- #: classes/class-link-related-table.php:256
 
 
 
 
54
  msgid "Link Posts"
55
  msgstr ""
56
 
57
  #: classes/class-post-type-manager.php:21
58
- #: classes/hooks/class-hook-link-related-screen.php:131
59
  msgid "Posts"
60
  msgstr ""
61
 
@@ -75,46 +86,46 @@ msgstr ""
75
  msgid "Settings"
76
  msgstr ""
77
 
78
- #: classes/hooks/class-hook-link-related-screen.php:132
79
  msgid "Cancel linking"
80
  msgstr ""
81
 
82
- #: classes/hooks/class-hook-link-related-screen.php:148
83
  msgid "Search"
84
  msgstr ""
85
 
86
- #: classes/hooks/class-hook-page-install.php:92
87
  msgid "Welcome"
88
  msgstr ""
89
 
90
- #: classes/hooks/class-hook-page-install.php:93
91
  msgid "Caching Posts"
92
  msgstr ""
93
 
94
- #: classes/hooks/class-hook-page-install.php:94
95
  msgid "Linking Posts"
96
  msgstr ""
97
 
98
- #: classes/hooks/class-hook-page-install.php:95
99
  msgid "Finished"
100
  msgstr ""
101
 
102
- #: classes/hooks/class-hook-page-install.php:106
103
  msgid ""
104
  "Missing post type paramater, please report this incident via %sour "
105
  "website%s."
106
  msgstr ""
107
 
108
- #: classes/hooks/class-hook-page-install.php:127
109
  msgid "Installation"
110
  msgstr ""
111
 
112
- #: classes/hooks/class-hook-page-install.php:161
113
- #: classes/hooks/class-hook-page-install.php:197
114
  msgid "Thank you for choosing Related Posts for WordPress!"
115
  msgstr ""
116
 
117
- #: classes/hooks/class-hook-page-install.php:162
118
  msgid ""
119
  "Below you'll find your post types available for installation, by installing "
120
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -122,84 +133,84 @@ msgid ""
122
  "Type' button."
123
  msgstr ""
124
 
125
- #: classes/hooks/class-hook-page-install.php:178
126
- msgid "Disable Relations for %s"
127
  msgstr ""
128
 
129
- #: classes/hooks/class-hook-page-install.php:180
130
- msgid "Enable Relations for %s"
131
  msgstr ""
132
 
133
- #: classes/hooks/class-hook-page-install.php:198
134
  msgid ""
135
  "Before you can start using Related Posts for WordPress we need to cache your"
136
  " current posts."
137
  msgstr ""
138
 
139
- #: classes/hooks/class-hook-page-install.php:199
140
  msgid ""
141
  "This is a one time process which might take some time now, depending on the "
142
  "amount of posts you have, but will ensure your website's performance when "
143
  "using the plugin."
144
  msgstr ""
145
 
146
- #: classes/hooks/class-hook-page-install.php:201
147
  msgid ""
148
  "Do NOT close this window, wait for this process to finish and this wizard to"
149
  " take you to the next step."
150
  msgstr ""
151
 
152
- #: classes/hooks/class-hook-page-install.php:219
153
  msgid "Great! All your posts were successfully cached!"
154
  msgstr ""
155
 
156
- #: classes/hooks/class-hook-page-install.php:220
157
  msgid ""
158
  "You can let me link your posts, based on what I think is related, to each "
159
  "other. And don't worry, if I made a mistake at one of your posts you can "
160
  "easily correct this by editing it manually!"
161
  msgstr ""
162
 
163
- #: classes/hooks/class-hook-page-install.php:221
164
  msgid ""
165
  "Want me to start linking posts to each other? Fill in the amount of related "
166
  "posts each post should have and click on the \"Link now\" button. Rather "
167
  "link your posts manually? Click \"Skip linking\"."
168
  msgstr ""
169
 
170
- #: classes/hooks/class-hook-page-install.php:222
171
  msgid ""
172
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
173
  " process to finish and this wizard to take you to the next step."
174
  msgstr ""
175
 
176
- #: classes/hooks/class-hook-page-install.php:225
177
  msgid "Amount of related posts per post:"
178
  msgstr ""
179
 
180
- #: classes/hooks/class-hook-page-install.php:226
181
  msgid "Link now"
182
  msgstr ""
183
 
184
- #: classes/hooks/class-hook-page-install.php:227
185
  msgid "Skip linking"
186
  msgstr ""
187
 
188
- #: classes/hooks/class-hook-page-install.php:235
189
  msgid "That's it, you're good to go!"
190
  msgstr ""
191
 
192
- #: classes/hooks/class-hook-page-install.php:236
193
  msgid ""
194
  "Thanks again for using Related Posts for WordPress and if you have any "
195
  "questions be sure to ask them at the %sWordPress.org forums.%s"
196
  msgstr ""
197
 
198
- #: classes/hooks/class-hook-page-install.php:238
199
  msgid "Click here to return to step 1"
200
  msgstr ""
201
 
202
- #: classes/hooks/class-hook-page-install.php:244
203
  msgid "Click here to go to the settings page"
204
  msgstr ""
205
 
@@ -207,59 +218,58 @@ msgstr ""
207
  msgid "Plugin version"
208
  msgstr ""
209
 
210
- #: classes/hooks/class-hook-settings-page.php:61
211
- msgid "More information"
212
- msgstr ""
213
-
214
  #: classes/hooks/class-hook-settings-page.php:63
215
- msgid "<a href='%s'>FAQ</a>"
216
- msgstr ""
217
-
218
- #: classes/hooks/class-hook-settings-page.php:65
219
- msgid "<a href='%s'>Change log</a>"
220
  msgstr ""
221
 
222
  #: classes/hooks/class-hook-settings-page.php:67
223
- msgid "<a href='%s'>Give us a review</a>"
224
  msgstr ""
225
 
226
  #: classes/hooks/class-hook-settings-page.php:69
227
- msgid "<a href='%s'>Release blog post</a>"
 
 
 
 
228
  msgstr ""
229
 
230
  #: classes/hooks/class-hook-settings-page.php:73
 
 
 
 
231
  msgid "About the developer"
232
  msgstr ""
233
 
234
- #: classes/hooks/class-hook-settings-page.php:75
235
  msgid ""
236
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
237
- " the author of various WordPress plugins that include Post Connector, "
238
- "Related Posts for WordPress and What The File."
239
  msgstr ""
240
 
241
- #: classes/hooks/class-hook-settings-page.php:77
242
  msgid ""
243
- "Barry likes contributing to opensource projects and visiting WordCamps and "
244
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
245
  msgstr ""
246
 
247
- #: classes/hooks/class-hook-settings-page.php:79
248
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
249
  msgstr ""
250
 
251
- #: classes/hooks/class-hook-settings-page.php:105
252
  msgid "General"
253
  msgstr ""
254
 
255
- #: classes/hooks/class-hook-settings-page.php:125
256
  msgid "Installer"
257
  msgstr ""
258
 
259
- #: classes/hooks/class-hook-settings-page.php:147
260
- msgid "Post Type"
261
- msgstr ""
262
-
263
  #: classes/meta-boxes/class-meta-box-manage.php:80
264
  msgid "Add Related Posts"
265
  msgstr ""
@@ -345,30 +355,63 @@ msgstr ""
345
  msgid "Checking this will enable displaying featured images of related %ss."
346
  msgstr ""
347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  #: classes/settings/class-settings-misc.php:18
349
  msgid "Misc"
350
  msgstr ""
351
 
352
- #: classes/settings/class-settings-misc.php:31
353
  msgid "Miscellaneous Settings"
354
  msgstr ""
355
 
356
- #: classes/settings/class-settings-misc.php:32
357
  msgid "A shelter for options that just don't fit in."
358
  msgstr ""
359
 
360
- #: classes/settings/class-settings-misc.php:36
361
- #: classes/settings/class-settings-weight.php:26
362
  msgid "Remove Data on Uninstall?"
363
  msgstr ""
364
 
365
- #: classes/settings/class-settings-misc.php:37
366
- #: classes/settings/class-settings-weight.php:27
367
  msgid ""
368
  "Check this box if you would like to completely remove all of its data when "
369
  "the plugin is deleted."
370
  msgstr ""
371
 
 
 
 
 
 
 
 
 
372
  #: classes/settings/class-settings-themes.php:18
373
  msgid "Styling"
374
  msgstr ""
@@ -378,7 +421,7 @@ msgid "Styling settings"
378
  msgstr ""
379
 
380
  #: classes/settings/class-settings-themes.php:32
381
- msgid "All settings related to frontend style your related posts."
382
  msgstr ""
383
 
384
  #: classes/settings/class-settings-themes.php:36
@@ -401,12 +444,54 @@ msgid ""
401
  "error here will break frontend display. To disable, leave field empty."
402
  msgstr ""
403
 
404
- #: classes/settings/class-settings-weight.php:21
405
- msgid "Post Types"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  msgstr ""
407
 
408
- #: classes/settings/class-settings-weight.php:22
409
- msgid "Check the post."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  msgstr ""
411
 
412
  #: classes/themes/class-theme-column-one.php:13
@@ -421,20 +506,10 @@ msgstr ""
421
  msgid "Two related post items per row."
422
  msgstr ""
423
 
424
- #: includes/updater/class-wpjm-updater.php:245
425
  msgid "Hide notice"
426
  msgstr ""
427
 
428
- #: includes/updater/class-wpjm-updater.php:284
429
- msgid "Licence"
430
- msgstr ""
431
-
432
- #: includes/updater/class-wpjm-updater.php:287
433
- msgid ""
434
- "Enter your licence key and email and hit return. A valid key is required for"
435
- " automatic updates."
436
- msgstr ""
437
-
438
  #. Plugin Name of the plugin/theme
439
  msgid "Related Posts for WordPress Premium"
440
  msgstr "Related Posts for WordPress Premium"
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"
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
 
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
  "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
 
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 ""
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 ""
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
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
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"
languages/related-posts-for-wp-fr_fr.po CHANGED
@@ -2,12 +2,13 @@
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-10-16 08:27:55+00:00\n"
10
- "PO-Revision-Date: 2014-10-19 17:43+0000\n"
11
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
12
  "Language-Team: French (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/fr/)\n"
13
  "MIME-Version: 1.0\n"
@@ -21,185 +22,196 @@ msgstr ""
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:47
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:48
42
  msgid "All Posts"
43
- msgstr ""
44
 
45
- #: classes/class-link-related-table.php:97
 
46
  msgid "Title"
 
 
 
 
 
 
47
  msgstr ""
48
 
49
- #: classes/class-link-related-table.php:224
50
  msgid "Link Post"
 
 
 
 
51
  msgstr ""
52
 
53
- #: classes/class-link-related-table.php:256
54
  msgid "Link Posts"
55
- msgstr ""
56
 
57
  #: classes/class-post-type-manager.php:21
58
- #: classes/hooks/class-hook-link-related-screen.php:131
59
  msgid "Posts"
60
- msgstr ""
61
 
62
  #: classes/class-post-type-manager.php:22
63
  msgid "Pages"
64
- msgstr ""
65
 
66
  #: classes/class-related-posts-widget.php:13
67
  msgid "Related Posts for WordPress"
68
- msgstr ""
69
 
70
  #: classes/class-related-posts-widget.php:14
71
  msgid "Display related posts."
72
- msgstr ""
73
 
74
  #: classes/filters/class-filter-plugin-links.php:29
75
  msgid "Settings"
76
- msgstr ""
77
 
78
- #: classes/hooks/class-hook-link-related-screen.php:132
79
  msgid "Cancel linking"
80
- msgstr ""
81
 
82
- #: classes/hooks/class-hook-link-related-screen.php:148
83
  msgid "Search"
84
- msgstr ""
85
 
86
- #: classes/hooks/class-hook-page-install.php:92
87
  msgid "Welcome"
88
- msgstr ""
89
 
90
- #: classes/hooks/class-hook-page-install.php:93
91
  msgid "Caching Posts"
92
- msgstr ""
93
 
94
- #: classes/hooks/class-hook-page-install.php:94
95
  msgid "Linking Posts"
96
- msgstr ""
97
 
98
- #: classes/hooks/class-hook-page-install.php:95
99
  msgid "Finished"
100
- msgstr ""
101
 
102
- #: classes/hooks/class-hook-page-install.php:106
103
  msgid ""
104
  "Missing post type paramater, please report this incident via %sour "
105
  "website%s."
106
- msgstr ""
107
 
108
- #: classes/hooks/class-hook-page-install.php:127
109
  msgid "Installation"
110
- msgstr ""
111
 
112
- #: classes/hooks/class-hook-page-install.php:161
113
- #: classes/hooks/class-hook-page-install.php:197
114
  msgid "Thank you for choosing Related Posts for WordPress!"
115
- msgstr ""
116
 
117
- #: classes/hooks/class-hook-page-install.php:162
118
  msgid ""
119
  "Below you'll find your post types available for installation, by installing "
120
  "a post type we'll set up a cache and offer you the ability to automatic link"
121
  " (custom) posts. To install a post type, simply click the 'Install Post "
122
  "Type' button."
123
- msgstr ""
124
 
125
- #: classes/hooks/class-hook-page-install.php:178
126
- msgid "Disable Relations for %s"
127
  msgstr ""
128
 
129
- #: classes/hooks/class-hook-page-install.php:180
130
- msgid "Enable Relations for %s"
131
  msgstr ""
132
 
133
- #: classes/hooks/class-hook-page-install.php:198
134
  msgid ""
135
  "Before you can start using Related Posts for WordPress we need to cache your"
136
  " current posts."
137
- msgstr ""
138
 
139
- #: classes/hooks/class-hook-page-install.php:199
140
  msgid ""
141
  "This is a one time process which might take some time now, depending on the "
142
  "amount of posts you have, but will ensure your website's performance when "
143
  "using the plugin."
144
- msgstr ""
145
 
146
- #: classes/hooks/class-hook-page-install.php:201
147
  msgid ""
148
  "Do NOT close this window, wait for this process to finish and this wizard to"
149
  " take you to the next step."
150
- msgstr ""
151
 
152
- #: classes/hooks/class-hook-page-install.php:219
153
  msgid "Great! All your posts were successfully cached!"
154
- msgstr ""
155
 
156
- #: classes/hooks/class-hook-page-install.php:220
157
  msgid ""
158
  "You can let me link your posts, based on what I think is related, to each "
159
  "other. And don't worry, if I made a mistake at one of your posts you can "
160
  "easily correct this by editing it manually!"
161
  msgstr ""
162
 
163
- #: classes/hooks/class-hook-page-install.php:221
164
  msgid ""
165
  "Want me to start linking posts to each other? Fill in the amount of related "
166
  "posts each post should have and click on the \"Link now\" button. Rather "
167
  "link your posts manually? Click \"Skip linking\"."
168
  msgstr ""
169
 
170
- #: classes/hooks/class-hook-page-install.php:222
171
  msgid ""
172
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
173
  " process to finish and this wizard to take you to the next step."
174
  msgstr ""
175
 
176
- #: classes/hooks/class-hook-page-install.php:225
177
  msgid "Amount of related posts per post:"
178
  msgstr ""
179
 
180
- #: classes/hooks/class-hook-page-install.php:226
181
  msgid "Link now"
182
- msgstr ""
183
 
184
- #: classes/hooks/class-hook-page-install.php:227
185
  msgid "Skip linking"
186
- msgstr ""
187
 
188
- #: classes/hooks/class-hook-page-install.php:235
189
  msgid "That's it, you're good to go!"
190
- msgstr ""
191
 
192
- #: classes/hooks/class-hook-page-install.php:236
193
  msgid ""
194
  "Thanks again for using Related Posts for WordPress and if you have any "
195
  "questions be sure to ask them at the %sWordPress.org forums.%s"
196
- msgstr ""
197
 
198
- #: classes/hooks/class-hook-page-install.php:238
199
  msgid "Click here to return to step 1"
200
- msgstr ""
201
 
202
- #: classes/hooks/class-hook-page-install.php:244
203
  msgid "Click here to go to the settings page"
204
  msgstr ""
205
 
@@ -207,59 +219,58 @@ msgstr ""
207
  msgid "Plugin version"
208
  msgstr ""
209
 
210
- #: classes/hooks/class-hook-settings-page.php:61
211
- msgid "More information"
212
- msgstr ""
213
-
214
  #: classes/hooks/class-hook-settings-page.php:63
215
- msgid "<a href='%s'>FAQ</a>"
216
- msgstr ""
217
-
218
- #: classes/hooks/class-hook-settings-page.php:65
219
- msgid "<a href='%s'>Change log</a>"
220
  msgstr ""
221
 
222
  #: classes/hooks/class-hook-settings-page.php:67
223
- msgid "<a href='%s'>Give us a review</a>"
224
  msgstr ""
225
 
226
  #: classes/hooks/class-hook-settings-page.php:69
227
- msgid "<a href='%s'>Release blog post</a>"
 
 
 
 
228
  msgstr ""
229
 
230
  #: classes/hooks/class-hook-settings-page.php:73
 
 
 
 
231
  msgid "About the developer"
232
  msgstr ""
233
 
234
- #: classes/hooks/class-hook-settings-page.php:75
235
  msgid ""
236
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
237
- " the author of various WordPress plugins that include Post Connector, "
238
- "Related Posts for WordPress and What The File."
239
  msgstr ""
240
 
241
- #: classes/hooks/class-hook-settings-page.php:77
242
  msgid ""
243
- "Barry likes contributing to opensource projects and visiting WordCamps and "
244
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
245
  msgstr ""
246
 
247
- #: classes/hooks/class-hook-settings-page.php:79
248
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
249
  msgstr ""
250
 
251
- #: classes/hooks/class-hook-settings-page.php:105
252
  msgid "General"
253
  msgstr ""
254
 
255
- #: classes/hooks/class-hook-settings-page.php:125
256
  msgid "Installer"
257
  msgstr ""
258
 
259
- #: classes/hooks/class-hook-settings-page.php:147
260
- msgid "Post Type"
261
- msgstr ""
262
-
263
  #: classes/meta-boxes/class-meta-box-manage.php:80
264
  msgid "Add Related Posts"
265
  msgstr ""
@@ -345,30 +356,63 @@ msgstr ""
345
  msgid "Checking this will enable displaying featured images of related %ss."
346
  msgstr ""
347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  #: classes/settings/class-settings-misc.php:18
349
  msgid "Misc"
350
  msgstr ""
351
 
352
- #: classes/settings/class-settings-misc.php:31
353
  msgid "Miscellaneous Settings"
354
  msgstr ""
355
 
356
- #: classes/settings/class-settings-misc.php:32
357
  msgid "A shelter for options that just don't fit in."
358
  msgstr ""
359
 
360
- #: classes/settings/class-settings-misc.php:36
361
- #: classes/settings/class-settings-weight.php:26
362
  msgid "Remove Data on Uninstall?"
363
  msgstr ""
364
 
365
- #: classes/settings/class-settings-misc.php:37
366
- #: classes/settings/class-settings-weight.php:27
367
  msgid ""
368
  "Check this box if you would like to completely remove all of its data when "
369
  "the plugin is deleted."
370
  msgstr ""
371
 
 
 
 
 
 
 
 
 
372
  #: classes/settings/class-settings-themes.php:18
373
  msgid "Styling"
374
  msgstr ""
@@ -378,7 +422,7 @@ msgid "Styling settings"
378
  msgstr ""
379
 
380
  #: classes/settings/class-settings-themes.php:32
381
- msgid "All settings related to frontend style your related posts."
382
  msgstr ""
383
 
384
  #: classes/settings/class-settings-themes.php:36
@@ -401,12 +445,54 @@ msgid ""
401
  "error here will break frontend display. To disable, leave field empty."
402
  msgstr ""
403
 
404
- #: classes/settings/class-settings-weight.php:21
405
- msgid "Post Types"
406
  msgstr ""
407
 
408
- #: classes/settings/class-settings-weight.php:22
409
- msgid "Check the post."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  msgstr ""
411
 
412
  #: classes/themes/class-theme-column-one.php:13
@@ -421,20 +507,10 @@ msgstr ""
421
  msgid "Two related post items per row."
422
  msgstr ""
423
 
424
- #: includes/updater/class-wpjm-updater.php:245
425
  msgid "Hide notice"
426
  msgstr ""
427
 
428
- #: includes/updater/class-wpjm-updater.php:284
429
- msgid "Licence"
430
- msgstr ""
431
-
432
- #: includes/updater/class-wpjm-updater.php:287
433
- msgid ""
434
- "Enter your licence key and email and hit return. A valid key is required for"
435
- " automatic updates."
436
- msgstr ""
437
-
438
  #. Plugin Name of the plugin/theme
439
  msgid "Related Posts for WordPress Premium"
440
  msgstr "Related Posts for WordPress Premium"
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2014
5
+ # corsonr <remicorson@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: French (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/fr/)\n"
14
  "MIME-Version: 1.0\n"
22
  msgid ""
23
  "Woah! Looks like we weren't able to finish your Related Posts for WordPress "
24
  "installation wizard!"
25
+ msgstr "Woops ! Il semblerait que nous n'ayons pas pu terminer l'installation de vos articles similaires !"
26
 
27
  #: classes/class-is-installing-notice.php:76
28
  msgid "%sResume the installation wizard%s or %sdismiss this notice%s"
29
+ msgstr "%sReprendre l'assistant d'installation%s ou %smasque le message%s"
30
 
31
  #: classes/class-javascript-strings.php:14
32
  msgid "Are you sure you want to delete this related post?"
33
+ msgstr "Etes-vous sûr de vouloir supprimer cet article lié ?"
34
 
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
 
42
+ #: classes/class-link-related-table.php:46
43
  msgid "All Posts"
44
+ msgstr "Tous les articles"
45
 
46
+ #: classes/class-link-related-table.php:95
47
+ #: classes/settings/class-settings-weights.php:29
48
  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
 
74
  #: classes/class-post-type-manager.php:22
75
  msgid "Pages"
76
+ msgstr "Pages"
77
 
78
  #: classes/class-related-posts-widget.php:13
79
  msgid "Related Posts for WordPress"
80
+ msgstr "Related Posts pour WordPress"
81
 
82
  #: classes/class-related-posts-widget.php:14
83
  msgid "Display related posts."
84
+ msgstr "Afficher les articles liés."
85
 
86
  #: classes/filters/class-filter-plugin-links.php:29
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"
133
  " (custom) posts. To install a post type, simply click the 'Install Post "
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
 
219
  msgid "Plugin version"
220
  msgstr ""
221
 
 
 
 
 
222
  #: classes/hooks/class-hook-settings-page.php:63
223
+ 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"
231
  msgstr ""
232
 
233
  #: classes/hooks/class-hook-settings-page.php:69
234
+ msgid "<a href='%s'>Documentation</a>"
235
+ msgstr ""
236
+
237
+ #: classes/hooks/class-hook-settings-page.php:71
238
+ msgid "<a href='%s'>Changelog</a>"
239
  msgstr ""
240
 
241
  #: classes/hooks/class-hook-settings-page.php:73
242
+ msgid "<a href='%s'>Give us a review</a>"
243
+ msgstr ""
244
+
245
+ #: classes/hooks/class-hook-settings-page.php:78
246
  msgid "About the developer"
247
  msgstr ""
248
 
249
+ #: classes/hooks/class-hook-settings-page.php:80
250
  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."
264
  msgstr ""
265
 
266
+ #: classes/hooks/class-hook-settings-page.php:110
267
  msgid "General"
268
  msgstr ""
269
 
270
+ #: classes/hooks/class-hook-settings-page.php:130
271
  msgid "Installer"
272
  msgstr ""
273
 
 
 
 
 
274
  #: classes/meta-boxes/class-meta-box-manage.php:80
275
  msgid "Add Related Posts"
276
  msgstr ""
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 ""
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"
388
  msgstr ""
389
 
390
+ #: classes/settings/class-settings-misc.php:24
391
  msgid "Miscellaneous Settings"
392
  msgstr ""
393
 
394
+ #: classes/settings/class-settings-misc.php:25
395
  msgid "A shelter for options that just don't fit in."
396
  msgstr ""
397
 
398
+ #: classes/settings/class-settings-misc.php:29
 
399
  msgid "Remove Data on Uninstall?"
400
  msgstr ""
401
 
402
+ #: classes/settings/class-settings-misc.php:30
 
403
  msgid ""
404
  "Check this box if you would like to completely remove all of its data when "
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 ""
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
445
  "error here will break frontend display. To disable, leave field empty."
446
  msgstr ""
447
 
448
+ #: classes/settings/class-settings-weights.php:18
449
+ msgid "Weights"
450
  msgstr ""
451
 
452
+ #: classes/settings/class-settings-weights.php:24
453
+ msgid "Weight settings"
454
+ msgstr ""
455
+
456
+ #: classes/settings/class-settings-weights.php:25
457
+ msgid ""
458
+ "Easily adjust the weights by using the sliders below. Please note that you "
459
+ "need to rerun the installer after changing weights."
460
+ msgstr ""
461
+
462
+ #: classes/settings/class-settings-weights.php:30
463
+ msgid "The weight of the title."
464
+ msgstr ""
465
+
466
+ #: classes/settings/class-settings-weights.php:36
467
+ msgid "Links"
468
+ msgstr ""
469
+
470
+ #: classes/settings/class-settings-weights.php:37
471
+ msgid "The weight of the links found in the content."
472
+ msgstr ""
473
+
474
+ #: classes/settings/class-settings-weights.php:43
475
+ msgid "Categories"
476
+ msgstr ""
477
+
478
+ #: classes/settings/class-settings-weights.php:44
479
+ msgid "The weight of the categories."
480
+ msgstr ""
481
+
482
+ #: classes/settings/class-settings-weights.php:50
483
+ msgid "Tags"
484
+ msgstr ""
485
+
486
+ #: classes/settings/class-settings-weights.php:51
487
+ msgid "The weight of the tags."
488
+ msgstr ""
489
+
490
+ #: classes/settings/class-settings-weights.php:57
491
+ msgid "Custom Taxonomies"
492
+ msgstr ""
493
+
494
+ #: classes/settings/class-settings-weights.php:58
495
+ msgid "The weight of custom taxonomies."
496
  msgstr ""
497
 
498
  #: classes/themes/class-theme-column-one.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 ""
513
 
 
 
 
 
 
 
 
 
 
 
514
  #. Plugin Name of the plugin/theme
515
  msgid "Related Posts for WordPress Premium"
516
  msgstr "Related Posts for WordPress Premium"
languages/related-posts-for-wp-it_it.po CHANGED
@@ -2,12 +2,13 @@
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-10-16 08:27:55+00:00\n"
10
- "PO-Revision-Date: 2014-10-19 17:44+0000\n"
11
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
12
  "Language-Team: Italian (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/it/)\n"
13
  "MIME-Version: 1.0\n"
@@ -21,419 +22,494 @@ msgstr ""
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:47
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:48
42
  msgid "All Posts"
43
- msgstr ""
44
 
45
- #: classes/class-link-related-table.php:97
 
46
  msgid "Title"
47
- msgstr ""
 
 
 
 
 
 
48
 
49
- #: classes/class-link-related-table.php:224
50
  msgid "Link Post"
 
 
 
 
51
  msgstr ""
52
 
53
- #: classes/class-link-related-table.php:256
54
  msgid "Link Posts"
55
- msgstr ""
56
 
57
  #: classes/class-post-type-manager.php:21
58
- #: classes/hooks/class-hook-link-related-screen.php:131
59
  msgid "Posts"
60
- msgstr ""
61
 
62
  #: classes/class-post-type-manager.php:22
63
  msgid "Pages"
64
- msgstr ""
65
 
66
  #: classes/class-related-posts-widget.php:13
67
  msgid "Related Posts for WordPress"
68
- msgstr ""
69
 
70
  #: classes/class-related-posts-widget.php:14
71
  msgid "Display related posts."
72
- msgstr ""
73
 
74
  #: classes/filters/class-filter-plugin-links.php:29
75
  msgid "Settings"
76
- msgstr ""
77
 
78
- #: classes/hooks/class-hook-link-related-screen.php:132
79
  msgid "Cancel linking"
80
- msgstr ""
81
 
82
- #: classes/hooks/class-hook-link-related-screen.php:148
83
  msgid "Search"
84
- msgstr ""
85
 
86
- #: classes/hooks/class-hook-page-install.php:92
87
  msgid "Welcome"
88
- msgstr ""
89
 
90
- #: classes/hooks/class-hook-page-install.php:93
91
  msgid "Caching Posts"
92
- msgstr ""
93
 
94
- #: classes/hooks/class-hook-page-install.php:94
95
  msgid "Linking Posts"
96
- msgstr ""
97
 
98
- #: classes/hooks/class-hook-page-install.php:95
99
  msgid "Finished"
100
- msgstr ""
101
 
102
- #: classes/hooks/class-hook-page-install.php:106
103
  msgid ""
104
  "Missing post type paramater, please report this incident via %sour "
105
  "website%s."
106
- msgstr ""
107
 
108
- #: classes/hooks/class-hook-page-install.php:127
109
  msgid "Installation"
110
- msgstr ""
111
 
112
- #: classes/hooks/class-hook-page-install.php:161
113
- #: classes/hooks/class-hook-page-install.php:197
114
  msgid "Thank you for choosing Related Posts for WordPress!"
115
- msgstr ""
116
 
117
- #: classes/hooks/class-hook-page-install.php:162
118
  msgid ""
119
  "Below you'll find your post types available for installation, by installing "
120
  "a post type we'll set up a cache and offer you the ability to automatic link"
121
  " (custom) posts. To install a post type, simply click the 'Install Post "
122
  "Type' button."
123
- msgstr ""
124
 
125
- #: classes/hooks/class-hook-page-install.php:178
126
- msgid "Disable Relations for %s"
127
  msgstr ""
128
 
129
- #: classes/hooks/class-hook-page-install.php:180
130
- msgid "Enable Relations for %s"
131
  msgstr ""
132
 
133
- #: classes/hooks/class-hook-page-install.php:198
134
  msgid ""
135
  "Before you can start using Related Posts for WordPress we need to cache your"
136
  " current posts."
137
- msgstr ""
138
 
139
- #: classes/hooks/class-hook-page-install.php:199
140
  msgid ""
141
  "This is a one time process which might take some time now, depending on the "
142
  "amount of posts you have, but will ensure your website's performance when "
143
  "using the plugin."
144
- msgstr ""
145
 
146
- #: classes/hooks/class-hook-page-install.php:201
147
  msgid ""
148
  "Do NOT close this window, wait for this process to finish and this wizard to"
149
  " take you to the next step."
150
- msgstr ""
151
 
152
- #: classes/hooks/class-hook-page-install.php:219
153
  msgid "Great! All your posts were successfully cached!"
154
- msgstr ""
155
 
156
- #: classes/hooks/class-hook-page-install.php:220
157
  msgid ""
158
  "You can let me link your posts, based on what I think is related, to each "
159
  "other. And don't worry, if I made a mistake at one of your posts you can "
160
  "easily correct this by editing it manually!"
161
- msgstr ""
162
 
163
- #: classes/hooks/class-hook-page-install.php:221
164
  msgid ""
165
  "Want me to start linking posts to each other? Fill in the amount of related "
166
  "posts each post should have and click on the \"Link now\" button. Rather "
167
  "link your posts manually? Click \"Skip linking\"."
168
- msgstr ""
169
 
170
- #: classes/hooks/class-hook-page-install.php:222
171
  msgid ""
172
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
173
  " process to finish and this wizard to take you to the next step."
174
- msgstr ""
175
 
176
- #: classes/hooks/class-hook-page-install.php:225
177
  msgid "Amount of related posts per post:"
178
- msgstr ""
179
 
180
- #: classes/hooks/class-hook-page-install.php:226
181
  msgid "Link now"
182
- msgstr ""
183
 
184
- #: classes/hooks/class-hook-page-install.php:227
185
  msgid "Skip linking"
186
- msgstr ""
187
 
188
- #: classes/hooks/class-hook-page-install.php:235
189
  msgid "That's it, you're good to go!"
190
- msgstr ""
191
 
192
- #: classes/hooks/class-hook-page-install.php:236
193
  msgid ""
194
  "Thanks again for using Related Posts for WordPress and if you have any "
195
  "questions be sure to ask them at the %sWordPress.org forums.%s"
196
- msgstr ""
197
 
198
- #: classes/hooks/class-hook-page-install.php:238
199
  msgid "Click here to return to step 1"
200
- msgstr ""
201
 
202
- #: classes/hooks/class-hook-page-install.php:244
203
  msgid "Click here to go to the settings page"
204
- msgstr ""
205
 
206
  #: classes/hooks/class-hook-settings-page.php:57
207
  msgid "Plugin version"
208
- msgstr ""
209
-
210
- #: classes/hooks/class-hook-settings-page.php:61
211
- msgid "More information"
212
- msgstr ""
213
 
214
  #: classes/hooks/class-hook-settings-page.php:63
215
- msgid "<a href='%s'>FAQ</a>"
216
- msgstr ""
217
-
218
- #: classes/hooks/class-hook-settings-page.php:65
219
- msgid "<a href='%s'>Change log</a>"
220
  msgstr ""
221
 
222
  #: classes/hooks/class-hook-settings-page.php:67
223
- msgid "<a href='%s'>Give us a review</a>"
224
- msgstr ""
225
 
226
  #: classes/hooks/class-hook-settings-page.php:69
227
- msgid "<a href='%s'>Release blog post</a>"
228
- msgstr ""
 
 
 
 
229
 
230
  #: classes/hooks/class-hook-settings-page.php:73
 
 
 
 
231
  msgid "About the developer"
232
- msgstr ""
233
 
234
- #: classes/hooks/class-hook-settings-page.php:75
235
  msgid ""
236
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
237
- " the author of various WordPress plugins that include Post Connector, "
238
- "Related Posts for WordPress and What The File."
239
  msgstr ""
240
 
241
- #: classes/hooks/class-hook-settings-page.php:77
242
  msgid ""
243
- "Barry likes contributing to opensource projects and visiting WordCamps and "
244
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
245
  msgstr ""
246
 
247
- #: classes/hooks/class-hook-settings-page.php:79
248
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
249
- msgstr ""
250
 
251
- #: classes/hooks/class-hook-settings-page.php:105
252
  msgid "General"
253
- msgstr ""
254
 
255
- #: classes/hooks/class-hook-settings-page.php:125
256
  msgid "Installer"
257
- msgstr ""
258
-
259
- #: classes/hooks/class-hook-settings-page.php:147
260
- msgid "Post Type"
261
- msgstr ""
262
 
263
  #: classes/meta-boxes/class-meta-box-manage.php:80
264
  msgid "Add Related Posts"
265
- msgstr ""
266
 
267
  #: classes/meta-boxes/class-meta-box-manage.php:103
268
  #: classes/meta-boxes/class-meta-box-manage.php:104
269
  msgid "Edit Post"
270
- msgstr ""
271
 
272
  #: classes/meta-boxes/class-meta-box-manage.php:106
273
  #: classes/meta-boxes/class-meta-box-manage.php:107
274
  msgid "Unlink Related Post"
275
- msgstr ""
276
 
277
  #: classes/meta-boxes/class-meta-box-manage.php:120
278
  msgid "No related posts found."
279
- msgstr ""
280
 
281
  #: classes/settings/class-settings-general.php:18
282
  msgid "General settings for %s"
283
- msgstr ""
284
 
285
  #: classes/settings/class-settings-general.php:24
286
  msgid "Automatic %ss linking"
287
- msgstr ""
288
 
289
  #: classes/settings/class-settings-general.php:25
290
  msgid ""
291
  "The following options affect how related posts are automatically linked for "
292
  "%ss."
293
- msgstr ""
294
 
295
  #: classes/settings/class-settings-general.php:29
296
  msgid "Enable"
297
- msgstr ""
298
 
299
  #: classes/settings/class-settings-general.php:30
300
  msgid "Checking this will enable automatically linking posts to new %ss"
301
- msgstr ""
302
 
303
  #: classes/settings/class-settings-general.php:36
304
  msgid "Amount of Posts"
305
- msgstr ""
306
 
307
  #: classes/settings/class-settings-general.php:37
308
  msgid "The amount of automatically linked %ss"
309
- msgstr ""
310
 
311
  #: classes/settings/class-settings-general.php:44
312
  msgid "Frontend Settings"
313
- msgstr ""
314
 
315
  #: classes/settings/class-settings-general.php:45
316
  msgid ""
317
  "The following options affect how related %ss are displayed on the frontend."
318
- msgstr ""
319
 
320
  #: classes/settings/class-settings-general.php:49
321
  msgid "Heading text"
322
- msgstr ""
323
 
324
  #: classes/settings/class-settings-general.php:50
325
  msgid ""
326
  "The text that is displayed above the related %ss. To disable, leave field "
327
  "empty."
328
- msgstr ""
329
 
330
  #: classes/settings/class-settings-general.php:56
331
  msgid "Excerpt length"
332
- msgstr ""
333
 
334
  #: classes/settings/class-settings-general.php:57
335
  msgid ""
336
  "The amount of words to be displayed below the title on website. To disable, "
337
  "set value to 0."
338
- msgstr ""
339
 
340
  #: classes/settings/class-settings-general.php:63
341
  msgid "Display Image"
342
- msgstr ""
343
 
344
  #: classes/settings/class-settings-general.php:64
345
  msgid "Checking this will enable displaying featured images of related %ss."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
346
  msgstr ""
347
 
348
  #: classes/settings/class-settings-misc.php:18
349
  msgid "Misc"
350
- msgstr ""
351
 
352
- #: classes/settings/class-settings-misc.php:31
353
  msgid "Miscellaneous Settings"
354
- msgstr ""
355
 
356
- #: classes/settings/class-settings-misc.php:32
357
  msgid "A shelter for options that just don't fit in."
358
- msgstr ""
359
 
360
- #: classes/settings/class-settings-misc.php:36
361
- #: classes/settings/class-settings-weight.php:26
362
  msgid "Remove Data on Uninstall?"
363
- msgstr ""
364
 
365
- #: classes/settings/class-settings-misc.php:37
366
- #: classes/settings/class-settings-weight.php:27
367
  msgid ""
368
  "Check this box if you would like to completely remove all of its data when "
369
  "the plugin is deleted."
 
 
 
 
 
 
 
 
370
  msgstr ""
371
 
372
  #: classes/settings/class-settings-themes.php:18
373
  msgid "Styling"
374
- msgstr ""
375
 
376
  #: classes/settings/class-settings-themes.php:31
377
  msgid "Styling settings"
378
- msgstr ""
379
 
380
  #: classes/settings/class-settings-themes.php:32
381
- msgid "All settings related to frontend style your related posts."
382
- msgstr ""
383
 
384
  #: classes/settings/class-settings-themes.php:36
385
  msgid "Themes"
386
- msgstr ""
387
 
388
  #: classes/settings/class-settings-themes.php:37
389
  msgid ""
390
  "Select one of the CSS themes above to display your related posts the way you"
391
  " like to."
392
- msgstr ""
393
 
394
  #: classes/settings/class-settings-themes.php:43
395
  msgid "Custom CSS"
396
- msgstr ""
397
 
398
  #: classes/settings/class-settings-themes.php:44
399
  msgid ""
400
  "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
401
  "error here will break frontend display. To disable, leave field empty."
402
- msgstr ""
403
 
404
- #: classes/settings/class-settings-weight.php:21
405
- msgid "Post Types"
406
- msgstr ""
407
 
408
- #: classes/settings/class-settings-weight.php:22
409
- msgid "Check the post."
410
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
411
 
412
  #: classes/themes/class-theme-column-one.php:13
413
  msgid "One related post item per row."
414
- msgstr ""
415
 
416
  #: classes/themes/class-theme-column-three.php:13
417
  msgid "Three related post items per row."
418
- msgstr ""
419
 
420
  #: classes/themes/class-theme-column-two.php:13
421
  msgid "Two related post items per row."
422
- msgstr ""
423
 
424
- #: includes/updater/class-wpjm-updater.php:245
425
  msgid "Hide notice"
426
- msgstr ""
427
-
428
- #: includes/updater/class-wpjm-updater.php:284
429
- msgid "Licence"
430
- msgstr ""
431
-
432
- #: includes/updater/class-wpjm-updater.php:287
433
- msgid ""
434
- "Enter your licence key and email and hit return. A valid key is required for"
435
- " automatic updates."
436
- msgstr ""
437
 
438
  #. Plugin Name of the plugin/theme
439
  msgid "Related Posts for WordPress Premium"
@@ -445,7 +521,7 @@ msgstr "http://www.relatedpostsforwp.com/"
445
 
446
  #. Description of the plugin/theme
447
  msgid "The best way to display related posts in WordPress."
448
- msgstr ""
449
 
450
  #. Author of the plugin/theme
451
  msgid "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"
22
  msgid ""
23
  "Woah! Looks like we weren't able to finish your Related Posts for WordPress "
24
  "installation wizard!"
25
+ msgstr "Woah! Sembra che non siamo riusciti a completare l'installazione di Related Posts for WordPress!"
26
 
27
  #: classes/class-is-installing-notice.php:76
28
  msgid "%sResume the installation wizard%s or %sdismiss this notice%s"
29
+ msgstr "%sRiprendi l'installazione%s o %snascondi questo avviso%s"
30
 
31
  #: classes/class-javascript-strings.php:14
32
  msgid "Are you sure you want to delete this related post?"
33
+ msgstr "Sei sicuro di voler cancellare questo articolo correlato?"
34
 
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
 
42
+ #: classes/class-link-related-table.php:46
43
  msgid "All Posts"
44
+ msgstr "Tutti gli Articoli"
45
 
46
+ #: classes/class-link-related-table.php:95
47
+ #: classes/settings/class-settings-weights.php:29
48
  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
 
74
  #: classes/class-post-type-manager.php:22
75
  msgid "Pages"
76
+ msgstr "Pagine"
77
 
78
  #: classes/class-related-posts-widget.php:13
79
  msgid "Related Posts for WordPress"
80
+ msgstr "Related Posts for WordPress"
81
 
82
  #: classes/class-related-posts-widget.php:14
83
  msgid "Display related posts."
84
+ msgstr "Mostra articoli correlati."
85
 
86
  #: classes/filters/class-filter-plugin-links.php:29
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"
133
  " (custom) posts. To install a post type, simply click the 'Install Post "
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
 
218
  #: classes/hooks/class-hook-settings-page.php:57
219
  msgid "Plugin version"
220
+ msgstr "Versione plugin"
 
 
 
 
221
 
222
  #: classes/hooks/class-hook-settings-page.php:63
223
+ 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"
231
+ msgstr "Pi&ugrave; informazioni"
232
 
233
  #: classes/hooks/class-hook-settings-page.php:69
234
+ msgid "<a href='%s'>Documentation</a>"
235
+ msgstr "<a href='%s'>Documentazione</a>"
236
+
237
+ #: classes/hooks/class-hook-settings-page.php:71
238
+ msgid "<a href='%s'>Changelog</a>"
239
+ msgstr "<a href='%s'>Changelog</a>"
240
 
241
  #: classes/hooks/class-hook-settings-page.php:73
242
+ msgid "<a href='%s'>Give us a review</a>"
243
+ msgstr "<a href='%s'>Inviaci una recensione</a>"
244
+
245
+ #: classes/hooks/class-hook-settings-page.php:78
246
  msgid "About the developer"
247
+ msgstr "A proposito dello sviluppatore"
248
 
249
+ #: classes/hooks/class-hook-settings-page.php:80
250
  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."
264
+ msgstr "%sSegui Barry su Twitter%s."
265
 
266
+ #: classes/hooks/class-hook-settings-page.php:110
267
  msgid "General"
268
+ msgstr "Generale"
269
 
270
+ #: classes/hooks/class-hook-settings-page.php:130
271
  msgid "Installer"
272
+ msgstr "Installer"
 
 
 
 
273
 
274
  #: classes/meta-boxes/class-meta-box-manage.php:80
275
  msgid "Add Related Posts"
276
+ msgstr "Aggiungi Articoli Correlati"
277
 
278
  #: classes/meta-boxes/class-meta-box-manage.php:103
279
  #: classes/meta-boxes/class-meta-box-manage.php:104
280
  msgid "Edit Post"
281
+ msgstr "Modifica Articolo"
282
 
283
  #: classes/meta-boxes/class-meta-box-manage.php:106
284
  #: classes/meta-boxes/class-meta-box-manage.php:107
285
  msgid "Unlink Related Post"
286
+ msgstr "Scollega Articolo Correlato"
287
 
288
  #: classes/meta-boxes/class-meta-box-manage.php:120
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"
295
 
296
  #: classes/settings/class-settings-general.php:24
297
  msgid "Automatic %ss linking"
298
+ msgstr "Collegamento automatico di %ss"
299
 
300
  #: classes/settings/class-settings-general.php:25
301
  msgid ""
302
  "The following options affect how related posts are automatically linked for "
303
  "%ss."
304
+ msgstr "Le opzioni seguenti specificano come vengono collegati automaticamente gli articoli correlati per %ss."
305
 
306
  #: classes/settings/class-settings-general.php:29
307
  msgid "Enable"
308
+ msgstr "Abilita"
309
 
310
  #: classes/settings/class-settings-general.php:30
311
  msgid "Checking this will enable automatically linking posts to new %ss"
312
+ msgstr "Selezionando questa opzione verr&agrave; abilitato il collegamento automatico degli articoli ai nuovi %ss."
313
 
314
  #: classes/settings/class-settings-general.php:36
315
  msgid "Amount of Posts"
316
+ msgstr "Numero di Articoli"
317
 
318
  #: classes/settings/class-settings-general.php:37
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"
388
+ msgstr "Varie"
389
 
390
+ #: classes/settings/class-settings-misc.php:24
391
  msgid "Miscellaneous Settings"
392
+ msgstr "Impostazioni Varie"
393
 
394
+ #: classes/settings/class-settings-misc.php:25
395
  msgid "A shelter for options that just don't fit in."
396
+ msgstr "Un rifugio per le impostazioni che non hanno nessun altro posto."
397
 
398
+ #: classes/settings/class-settings-misc.php:29
 
399
  msgid "Remove Data on Uninstall?"
400
+ msgstr "Rimuovi Dati e Disinstalla?"
401
 
402
+ #: classes/settings/class-settings-misc.php:30
 
403
  msgid ""
404
  "Check this box if you would like to completely remove all of its data when "
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"
450
+ msgstr "Peso"
451
 
452
+ #: classes/settings/class-settings-weights.php:24
453
+ msgid "Weight settings"
454
+ msgstr "Impostazioni di peso"
455
+
456
+ #: classes/settings/class-settings-weights.php:25
457
+ msgid ""
458
+ "Easily adjust the weights by using the sliders below. Please note that you "
459
+ "need to rerun the installer after changing weights."
460
+ msgstr "Aggiusta facilmente i pesi utilizzando gli slider qui sotto. Per favore nota che devi rilanciare l'installazone dopo aver cambiato i pesi."
461
+
462
+ #: classes/settings/class-settings-weights.php:30
463
+ msgid "The weight of the title."
464
+ msgstr "Il peso del titolo."
465
+
466
+ #: classes/settings/class-settings-weights.php:36
467
+ msgid "Links"
468
+ msgstr "Collegamenti"
469
+
470
+ #: classes/settings/class-settings-weights.php:37
471
+ msgid "The weight of the links found in the content."
472
+ msgstr "Il peso dei collegamenti trovati nel contenuto."
473
+
474
+ #: classes/settings/class-settings-weights.php:43
475
+ msgid "Categories"
476
+ msgstr "Categorie"
477
+
478
+ #: classes/settings/class-settings-weights.php:44
479
+ msgid "The weight of the categories."
480
+ msgstr "Il peso delle categorie."
481
+
482
+ #: classes/settings/class-settings-weights.php:50
483
+ msgid "Tags"
484
+ msgstr "Tag"
485
+
486
+ #: classes/settings/class-settings-weights.php:51
487
+ msgid "The weight of the tags."
488
+ msgstr "Il peso dei tag."
489
+
490
+ #: classes/settings/class-settings-weights.php:57
491
+ msgid "Custom Taxonomies"
492
+ msgstr "Tassonomie Personalizzate"
493
+
494
+ #: classes/settings/class-settings-weights.php:58
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"
 
 
 
 
 
 
 
 
 
 
513
 
514
  #. Plugin Name of the plugin/theme
515
  msgid "Related Posts for WordPress Premium"
521
 
522
  #. Description of the plugin/theme
523
  msgid "The best way to display related posts in WordPress."
524
+ msgstr "Il miglior modo per mostrare articoli correlati in WordPress."
525
 
526
  #. Author of the plugin/theme
527
  msgid "Barry Kooij"
languages/related-posts-for-wp-nl_NL.po CHANGED
@@ -2,12 +2,13 @@
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-10-16 08:27:55+00:00\n"
10
- "PO-Revision-Date: 2014-10-16 19:33+0000\n"
11
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
12
  "Language-Team: Dutch (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/nl/)\n"
13
  "MIME-Version: 1.0\n"
@@ -31,31 +32,42 @@ msgstr "%sGa door met de wizard%s of %sverberg dit bericht%s"
31
  msgid "Are you sure you want to delete this related post?"
32
  msgstr "Weet je zeker dat je dit gerelateerde bericht wilt verwijderen?"
33
 
34
- #: classes/class-link-related-table.php:47
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 "Gerelateerde Berichten"
40
 
41
- #: classes/class-link-related-table.php:48
42
  msgid "All Posts"
43
  msgstr "Alle Berichten"
44
 
45
- #: classes/class-link-related-table.php:97
 
46
  msgid "Title"
47
  msgstr "Titel"
48
 
49
- #: classes/class-link-related-table.php:224
 
 
 
 
 
 
50
  msgid "Link Post"
51
  msgstr "Link Bericht"
52
 
53
- #: classes/class-link-related-table.php:256
 
 
 
 
54
  msgid "Link Posts"
55
  msgstr "Link Berichten"
56
 
57
  #: classes/class-post-type-manager.php:21
58
- #: classes/hooks/class-hook-link-related-screen.php:131
59
  msgid "Posts"
60
  msgstr "Berichten"
61
 
@@ -75,46 +87,46 @@ msgstr "Toon gerelateerde berichten."
75
  msgid "Settings"
76
  msgstr "Instellingen"
77
 
78
- #: classes/hooks/class-hook-link-related-screen.php:132
79
  msgid "Cancel linking"
80
  msgstr "Annuleer linken"
81
 
82
- #: classes/hooks/class-hook-link-related-screen.php:148
83
  msgid "Search"
84
  msgstr "Zoeken"
85
 
86
- #: classes/hooks/class-hook-page-install.php:92
87
  msgid "Welcome"
88
  msgstr "Welkom"
89
 
90
- #: classes/hooks/class-hook-page-install.php:93
91
  msgid "Caching Posts"
92
  msgstr "Cachen van berichten"
93
 
94
- #: classes/hooks/class-hook-page-install.php:94
95
  msgid "Linking Posts"
96
  msgstr "Linken van berichten"
97
 
98
- #: classes/hooks/class-hook-page-install.php:95
99
  msgid "Finished"
100
  msgstr "Klaar"
101
 
102
- #: classes/hooks/class-hook-page-install.php:106
103
  msgid ""
104
  "Missing post type paramater, please report this incident via %sour "
105
  "website%s."
106
  msgstr "Post type parameter ontbreekt, meld dit incident a.u.b. op %sonze website%s."
107
 
108
- #: classes/hooks/class-hook-page-install.php:127
109
  msgid "Installation"
110
  msgstr "Installatie"
111
 
112
- #: classes/hooks/class-hook-page-install.php:161
113
- #: classes/hooks/class-hook-page-install.php:197
114
  msgid "Thank you for choosing Related Posts for WordPress!"
115
  msgstr "Bedankt voor het kiezen voor Related Posts for WordPress!"
116
 
117
- #: classes/hooks/class-hook-page-install.php:162
118
  msgid ""
119
  "Below you'll find your post types available for installation, by installing "
120
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -122,84 +134,84 @@ msgid ""
122
  "Type' button."
123
  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."
124
 
125
- #: classes/hooks/class-hook-page-install.php:178
126
- msgid "Disable Relations for %s"
127
- msgstr "Schakel relaties uit voor %s"
128
 
129
- #: classes/hooks/class-hook-page-install.php:180
130
- msgid "Enable Relations for %s"
131
- msgstr "Schakel relaties in voor %s"
132
 
133
- #: classes/hooks/class-hook-page-install.php:198
134
  msgid ""
135
  "Before you can start using Related Posts for WordPress we need to cache your"
136
  " current posts."
137
  msgstr "Voordat je Related Posts for WordPress kan gebruiken moeten we eerst je huidige berichten cachen."
138
 
139
- #: classes/hooks/class-hook-page-install.php:199
140
  msgid ""
141
  "This is a one time process which might take some time now, depending on the "
142
  "amount of posts you have, but will ensure your website's performance when "
143
  "using the plugin."
144
  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."
145
 
146
- #: classes/hooks/class-hook-page-install.php:201
147
  msgid ""
148
  "Do NOT close this window, wait for this process to finish and this wizard to"
149
  " take you to the next step."
150
  msgstr "Sluit dit venster NIET, wacht tot het proces klaar is en de wizard je naar de volgende stap stuurt."
151
 
152
- #: classes/hooks/class-hook-page-install.php:219
153
  msgid "Great! All your posts were successfully cached!"
154
  msgstr "Perfect! Al je berichten zijn succesvol gecached."
155
 
156
- #: classes/hooks/class-hook-page-install.php:220
157
  msgid ""
158
  "You can let me link your posts, based on what I think is related, to each "
159
  "other. And don't worry, if I made a mistake at one of your posts you can "
160
  "easily correct this by editing it manually!"
161
  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!"
162
 
163
- #: classes/hooks/class-hook-page-install.php:221
164
  msgid ""
165
  "Want me to start linking posts to each other? Fill in the amount of related "
166
  "posts each post should have and click on the \"Link now\" button. Rather "
167
  "link your posts manually? Click \"Skip linking\"."
168
  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\"."
169
 
170
- #: classes/hooks/class-hook-page-install.php:222
171
  msgid ""
172
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
173
  " process to finish and this wizard to take you to the next step."
174
  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."
175
 
176
- #: classes/hooks/class-hook-page-install.php:225
177
  msgid "Amount of related posts per post:"
178
  msgstr "Aantal gerelateerde berichten per bericht:"
179
 
180
- #: classes/hooks/class-hook-page-install.php:226
181
  msgid "Link now"
182
  msgstr "Nu linken"
183
 
184
- #: classes/hooks/class-hook-page-install.php:227
185
  msgid "Skip linking"
186
  msgstr "Sla linken over"
187
 
188
- #: classes/hooks/class-hook-page-install.php:235
189
  msgid "That's it, you're good to go!"
190
  msgstr "Super, de wizard is klaar en je hebt nu gerelateerde berichten op je website!"
191
 
192
- #: classes/hooks/class-hook-page-install.php:236
193
  msgid ""
194
  "Thanks again for using Related Posts for WordPress and if you have any "
195
  "questions be sure to ask them at the %sWordPress.org forums.%s"
196
  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."
197
 
198
- #: classes/hooks/class-hook-page-install.php:238
199
  msgid "Click here to return to step 1"
200
  msgstr "Klik hier om terug te gaan naar stap 1"
201
 
202
- #: classes/hooks/class-hook-page-install.php:244
203
  msgid "Click here to go to the settings page"
204
  msgstr "Klik hier om naar de instellingen pagina te gaan"
205
 
@@ -207,59 +219,58 @@ msgstr "Klik hier om naar de instellingen pagina te gaan"
207
  msgid "Plugin version"
208
  msgstr "Plugin versie"
209
 
210
- #: classes/hooks/class-hook-settings-page.php:61
 
 
 
 
 
 
 
211
  msgid "More information"
212
  msgstr "Meer informatie"
213
 
214
- #: classes/hooks/class-hook-settings-page.php:63
215
- msgid "<a href='%s'>FAQ</a>"
216
- msgstr "<a href='%s'>FAQ</a>"
217
 
218
- #: classes/hooks/class-hook-settings-page.php:65
219
- msgid "<a href='%s'>Change log</a>"
220
- msgstr "<a href='%s'>Change log</a>"
221
 
222
- #: classes/hooks/class-hook-settings-page.php:67
223
  msgid "<a href='%s'>Give us a review</a>"
224
  msgstr "<a href='%s'>Geef ons een review</a>"
225
 
226
- #: classes/hooks/class-hook-settings-page.php:69
227
- msgid "<a href='%s'>Release blog post</a>"
228
- msgstr "<a href='%s'>Release blog bericht</a>"
229
-
230
- #: classes/hooks/class-hook-settings-page.php:73
231
  msgid "About the developer"
232
  msgstr "Over de ontwikkelaar"
233
 
234
- #: classes/hooks/class-hook-settings-page.php:75
235
  msgid ""
236
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
237
- " the author of various WordPress plugins that include Post Connector, "
238
- "Related Posts for WordPress and What The File."
239
- msgstr "Barry is een WordPress ontwikkelaar werkzaam bij WooThemes waar hij werkt aan WooCommerce. Ook is hij de schrijver van verschillende WordPress plugins zoals Post Connector, Related Posts for WordPress en What The File."
240
 
241
- #: classes/hooks/class-hook-settings-page.php:77
242
  msgid ""
243
- "Barry likes contributing to opensource projects and visiting WordCamps and "
244
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
245
- msgstr "Barry houd van het bijdragen aan opensource projecten en het bezoeken van WordCamps en WordPress meetups. Hij is de organisator van de WordPress meetup in Tilburg."
246
 
247
- #: classes/hooks/class-hook-settings-page.php:79
248
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
249
- msgstr "<a href='%s'>Volg Barry op Twitter</a>."
250
 
251
- #: classes/hooks/class-hook-settings-page.php:105
252
  msgid "General"
253
  msgstr "Algemeen"
254
 
255
- #: classes/hooks/class-hook-settings-page.php:125
256
  msgid "Installer"
257
  msgstr "Installatie wizard"
258
 
259
- #: classes/hooks/class-hook-settings-page.php:147
260
- msgid "Post Type"
261
- msgstr "Post Type"
262
-
263
  #: classes/meta-boxes/class-meta-box-manage.php:80
264
  msgid "Add Related Posts"
265
  msgstr "Voeg gerelateerde posts toe"
@@ -345,30 +356,63 @@ msgstr "Toon afbeelding"
345
  msgid "Checking this will enable displaying featured images of related %ss."
346
  msgstr "Door dit aan te vinken schakel je het tonen van uitgelichte afbeeldingen in voor %s."
347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  #: classes/settings/class-settings-misc.php:18
349
  msgid "Misc"
350
  msgstr "Overige"
351
 
352
- #: classes/settings/class-settings-misc.php:31
353
  msgid "Miscellaneous Settings"
354
  msgstr "Diversen Instellingen"
355
 
356
- #: classes/settings/class-settings-misc.php:32
357
  msgid "A shelter for options that just don't fit in."
358
  msgstr "Een opvang voor opties die nergens bijhoren."
359
 
360
- #: classes/settings/class-settings-misc.php:36
361
- #: classes/settings/class-settings-weight.php:26
362
  msgid "Remove Data on Uninstall?"
363
  msgstr "Verwijder gegevens bij deïnstallatie?"
364
 
365
- #: classes/settings/class-settings-misc.php:37
366
- #: classes/settings/class-settings-weight.php:27
367
  msgid ""
368
  "Check this box if you would like to completely remove all of its data when "
369
  "the plugin is deleted."
370
  msgstr "Door dit aan te vinken zullen alle plugin gegevens verwijderd worden waneer u de plugin verwijderd."
371
 
 
 
 
 
 
 
 
 
372
  #: classes/settings/class-settings-themes.php:18
373
  msgid "Styling"
374
  msgstr "Styling"
@@ -378,8 +422,8 @@ msgid "Styling settings"
378
  msgstr "Styling instellingen"
379
 
380
  #: classes/settings/class-settings-themes.php:32
381
- msgid "All settings related to frontend style your related posts."
382
- msgstr "Alle instellingen voor het stylen van je gerelateerde berichten."
383
 
384
  #: classes/settings/class-settings-themes.php:36
385
  msgid "Themes"
@@ -401,13 +445,55 @@ msgid ""
401
  "error here will break frontend display. To disable, leave field empty."
402
  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."
403
 
404
- #: classes/settings/class-settings-weight.php:21
405
- msgid "Post Types"
406
- msgstr "Post Types"
 
 
 
 
 
 
 
 
 
 
407
 
408
- #: classes/settings/class-settings-weight.php:22
409
- msgid "Check the post."
410
- msgstr "Check het bericht."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
411
 
412
  #: classes/themes/class-theme-column-one.php:13
413
  msgid "One related post item per row."
@@ -421,20 +507,10 @@ msgstr "Drie gerelateerde berichten per rij."
421
  msgid "Two related post items per row."
422
  msgstr "Twee gerelateerde berichten per rij."
423
 
424
- #: includes/updater/class-wpjm-updater.php:245
425
  msgid "Hide notice"
426
  msgstr "Verberg bericht"
427
 
428
- #: includes/updater/class-wpjm-updater.php:284
429
- msgid "Licence"
430
- msgstr "Licentie"
431
-
432
- #: includes/updater/class-wpjm-updater.php:287
433
- msgid ""
434
- "Enter your licence key and email and hit return. A valid key is required for"
435
- " automatic updates."
436
- msgstr "Vul je licentie sleutel en email adres in en druk op enter. Een actieve licentie is veriest voor automatisch updates."
437
-
438
  #. Plugin Name of the plugin/theme
439
  msgid "Related Posts for WordPress Premium"
440
  msgstr "Related Posts for WordPress Premium"
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"
32
  msgid "Are you sure you want to delete this related post?"
33
  msgstr "Weet je zeker dat je dit gerelateerde bericht wilt verwijderen?"
34
 
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
 
42
+ #: classes/class-link-related-table.php:46
43
  msgid "All Posts"
44
  msgstr "Alle Berichten"
45
 
46
+ #: classes/class-link-related-table.php:95
47
+ #: classes/settings/class-settings-weights.php:29
48
  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
  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"
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
 
219
  msgid "Plugin version"
220
  msgstr "Plugin versie"
221
 
222
+ #: classes/hooks/class-hook-settings-page.php:63
223
+ 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 "Heb je een vraag? Simpelweg stuur ons een email op %ssupport@relatedpostsforwp.com%s. Let wel op dat voor support een actieve licentie veriest is."
228
+
229
+ #: classes/hooks/class-hook-settings-page.php:67
230
  msgid "More information"
231
  msgstr "Meer informatie"
232
 
233
+ #: classes/hooks/class-hook-settings-page.php:69
234
+ msgid "<a href='%s'>Documentation</a>"
235
+ msgstr "<a href='%s'>Documentatie</a>"
236
 
237
+ #: classes/hooks/class-hook-settings-page.php:71
238
+ msgid "<a href='%s'>Changelog</a>"
239
+ msgstr "<a href='%s'>Changelog</a>"
240
 
241
+ #: classes/hooks/class-hook-settings-page.php:73
242
  msgid "<a href='%s'>Give us a review</a>"
243
  msgstr "<a href='%s'>Geef ons een review</a>"
244
 
245
+ #: classes/hooks/class-hook-settings-page.php:78
 
 
 
 
246
  msgid "About the developer"
247
  msgstr "Over de ontwikkelaar"
248
 
249
+ #: classes/hooks/class-hook-settings-page.php:80
250
  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 "Barry is een WordPress ontwikkelaar welke werkt aan WooCommerce. Ook is hij de schrijver van verschillende WordPress plugins zoals Related Posts for WordPress, Post Connector en What The File."
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 "Barry houdt van het bijdragen aan opensource projecten en het bezoeken van WordCamps en WordPress meetups. Hij is de organisator van de WordPress meetup in Tilburg."
261
 
262
+ #: classes/hooks/class-hook-settings-page.php:84
263
+ msgid "%sFollow Barry on Twitter%s."
264
+ msgstr "%sVolg Barry op Twitter%s."
265
 
266
+ #: classes/hooks/class-hook-settings-page.php:110
267
  msgid "General"
268
  msgstr "Algemeen"
269
 
270
+ #: classes/hooks/class-hook-settings-page.php:130
271
  msgid "Installer"
272
  msgstr "Installatie wizard"
273
 
 
 
 
 
274
  #: classes/meta-boxes/class-meta-box-manage.php:80
275
  msgid "Add Related Posts"
276
  msgstr "Voeg gerelateerde posts toe"
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"
362
+
363
+ #: classes/settings/class-settings-license.php:29
364
+ msgid "License Status"
365
+ msgstr "Licentie Status"
366
+
367
+ #: classes/settings/class-settings-license.php:36
368
+ msgid "License Key"
369
+ msgstr "Licentie Sleutel"
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 "Jouw licentie sleutel. Je kan je licentie sleutel vinden in je %sMy Account%s pagina."
375
+
376
+ #: classes/settings/class-settings-license.php:44
377
+ msgid "Activation Email"
378
+ msgstr "Activatie Email"
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 "Jouw activatie email adres. Je kan je licentie sleutel vinden in je %sMy Account%s pagina."
385
+
386
  #: classes/settings/class-settings-misc.php:18
387
  msgid "Misc"
388
  msgstr "Overige"
389
 
390
+ #: classes/settings/class-settings-misc.php:24
391
  msgid "Miscellaneous Settings"
392
  msgstr "Diversen Instellingen"
393
 
394
+ #: classes/settings/class-settings-misc.php:25
395
  msgid "A shelter for options that just don't fit in."
396
  msgstr "Een opvang voor opties die nergens bijhoren."
397
 
398
+ #: classes/settings/class-settings-misc.php:29
 
399
  msgid "Remove Data on Uninstall?"
400
  msgstr "Verwijder gegevens bij deïnstallatie?"
401
 
402
+ #: classes/settings/class-settings-misc.php:30
 
403
  msgid ""
404
  "Check this box if you would like to completely remove all of its data when "
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"
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"
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"
450
+ msgstr "Gewichten"
451
+
452
+ #: classes/settings/class-settings-weights.php:24
453
+ msgid "Weight settings"
454
+ msgstr "Gewicht instellingen"
455
+
456
+ #: classes/settings/class-settings-weights.php:25
457
+ msgid ""
458
+ "Easily adjust the weights by using the sliders below. Please note that you "
459
+ "need to rerun the installer after changing weights."
460
+ msgstr "Pas gemakkelijk de gewichten aan door middel van de sliders op de pagina. Let wel op dat je na het aanpassen van de gewichten de installatie wizard opnieuw moet doorlopen."
461
 
462
+ #: classes/settings/class-settings-weights.php:30
463
+ msgid "The weight of the title."
464
+ msgstr "Het gewicht van de titel."
465
+
466
+ #: classes/settings/class-settings-weights.php:36
467
+ msgid "Links"
468
+ msgstr "Links"
469
+
470
+ #: classes/settings/class-settings-weights.php:37
471
+ msgid "The weight of the links found in the content."
472
+ msgstr "Het gewicht van de content."
473
+
474
+ #: classes/settings/class-settings-weights.php:43
475
+ msgid "Categories"
476
+ msgstr "Categorieën."
477
+
478
+ #: classes/settings/class-settings-weights.php:44
479
+ msgid "The weight of the categories."
480
+ msgstr "Het gewicht van de categorieën."
481
+
482
+ #: classes/settings/class-settings-weights.php:50
483
+ msgid "Tags"
484
+ msgstr "Tags"
485
+
486
+ #: classes/settings/class-settings-weights.php:51
487
+ msgid "The weight of the tags."
488
+ msgstr "Het gewicht van de tags."
489
+
490
+ #: classes/settings/class-settings-weights.php:57
491
+ msgid "Custom Taxonomies"
492
+ msgstr "Custom Taxonomieën."
493
+
494
+ #: classes/settings/class-settings-weights.php:58
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."
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"
513
 
 
 
 
 
 
 
 
 
 
 
514
  #. Plugin Name of the plugin/theme
515
  msgid "Related Posts for WordPress Premium"
516
  msgstr "Related Posts for WordPress Premium"
languages/related-posts-for-wp-no_no.po CHANGED
@@ -6,8 +6,8 @@ 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-10-16 08:27:55+00:00\n"
10
- "PO-Revision-Date: 2014-10-19 17:44+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"
@@ -31,31 +31,42 @@ msgstr ""
31
  msgid "Are you sure you want to delete this related post?"
32
  msgstr ""
33
 
34
- #: classes/class-link-related-table.php:47
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:48
42
  msgid "All Posts"
43
  msgstr ""
44
 
45
- #: classes/class-link-related-table.php:97
 
46
  msgid "Title"
47
  msgstr ""
48
 
49
- #: classes/class-link-related-table.php:224
 
 
 
 
 
 
50
  msgid "Link Post"
51
  msgstr ""
52
 
53
- #: classes/class-link-related-table.php:256
 
 
 
 
54
  msgid "Link Posts"
55
  msgstr ""
56
 
57
  #: classes/class-post-type-manager.php:21
58
- #: classes/hooks/class-hook-link-related-screen.php:131
59
  msgid "Posts"
60
  msgstr ""
61
 
@@ -75,46 +86,46 @@ msgstr ""
75
  msgid "Settings"
76
  msgstr ""
77
 
78
- #: classes/hooks/class-hook-link-related-screen.php:132
79
  msgid "Cancel linking"
80
  msgstr ""
81
 
82
- #: classes/hooks/class-hook-link-related-screen.php:148
83
  msgid "Search"
84
  msgstr ""
85
 
86
- #: classes/hooks/class-hook-page-install.php:92
87
  msgid "Welcome"
88
  msgstr ""
89
 
90
- #: classes/hooks/class-hook-page-install.php:93
91
  msgid "Caching Posts"
92
  msgstr ""
93
 
94
- #: classes/hooks/class-hook-page-install.php:94
95
  msgid "Linking Posts"
96
  msgstr ""
97
 
98
- #: classes/hooks/class-hook-page-install.php:95
99
  msgid "Finished"
100
  msgstr ""
101
 
102
- #: classes/hooks/class-hook-page-install.php:106
103
  msgid ""
104
  "Missing post type paramater, please report this incident via %sour "
105
  "website%s."
106
  msgstr ""
107
 
108
- #: classes/hooks/class-hook-page-install.php:127
109
  msgid "Installation"
110
  msgstr ""
111
 
112
- #: classes/hooks/class-hook-page-install.php:161
113
- #: classes/hooks/class-hook-page-install.php:197
114
  msgid "Thank you for choosing Related Posts for WordPress!"
115
  msgstr ""
116
 
117
- #: classes/hooks/class-hook-page-install.php:162
118
  msgid ""
119
  "Below you'll find your post types available for installation, by installing "
120
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -122,84 +133,84 @@ msgid ""
122
  "Type' button."
123
  msgstr ""
124
 
125
- #: classes/hooks/class-hook-page-install.php:178
126
- msgid "Disable Relations for %s"
127
  msgstr ""
128
 
129
- #: classes/hooks/class-hook-page-install.php:180
130
- msgid "Enable Relations for %s"
131
  msgstr ""
132
 
133
- #: classes/hooks/class-hook-page-install.php:198
134
  msgid ""
135
  "Before you can start using Related Posts for WordPress we need to cache your"
136
  " current posts."
137
  msgstr ""
138
 
139
- #: classes/hooks/class-hook-page-install.php:199
140
  msgid ""
141
  "This is a one time process which might take some time now, depending on the "
142
  "amount of posts you have, but will ensure your website's performance when "
143
  "using the plugin."
144
  msgstr ""
145
 
146
- #: classes/hooks/class-hook-page-install.php:201
147
  msgid ""
148
  "Do NOT close this window, wait for this process to finish and this wizard to"
149
  " take you to the next step."
150
  msgstr ""
151
 
152
- #: classes/hooks/class-hook-page-install.php:219
153
  msgid "Great! All your posts were successfully cached!"
154
  msgstr ""
155
 
156
- #: classes/hooks/class-hook-page-install.php:220
157
  msgid ""
158
  "You can let me link your posts, based on what I think is related, to each "
159
  "other. And don't worry, if I made a mistake at one of your posts you can "
160
  "easily correct this by editing it manually!"
161
  msgstr ""
162
 
163
- #: classes/hooks/class-hook-page-install.php:221
164
  msgid ""
165
  "Want me to start linking posts to each other? Fill in the amount of related "
166
  "posts each post should have and click on the \"Link now\" button. Rather "
167
  "link your posts manually? Click \"Skip linking\"."
168
  msgstr ""
169
 
170
- #: classes/hooks/class-hook-page-install.php:222
171
  msgid ""
172
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
173
  " process to finish and this wizard to take you to the next step."
174
  msgstr ""
175
 
176
- #: classes/hooks/class-hook-page-install.php:225
177
  msgid "Amount of related posts per post:"
178
  msgstr ""
179
 
180
- #: classes/hooks/class-hook-page-install.php:226
181
  msgid "Link now"
182
  msgstr ""
183
 
184
- #: classes/hooks/class-hook-page-install.php:227
185
  msgid "Skip linking"
186
  msgstr ""
187
 
188
- #: classes/hooks/class-hook-page-install.php:235
189
  msgid "That's it, you're good to go!"
190
  msgstr ""
191
 
192
- #: classes/hooks/class-hook-page-install.php:236
193
  msgid ""
194
  "Thanks again for using Related Posts for WordPress and if you have any "
195
  "questions be sure to ask them at the %sWordPress.org forums.%s"
196
  msgstr ""
197
 
198
- #: classes/hooks/class-hook-page-install.php:238
199
  msgid "Click here to return to step 1"
200
  msgstr ""
201
 
202
- #: classes/hooks/class-hook-page-install.php:244
203
  msgid "Click here to go to the settings page"
204
  msgstr ""
205
 
@@ -207,59 +218,58 @@ msgstr ""
207
  msgid "Plugin version"
208
  msgstr ""
209
 
210
- #: classes/hooks/class-hook-settings-page.php:61
211
- msgid "More information"
212
- msgstr ""
213
-
214
  #: classes/hooks/class-hook-settings-page.php:63
215
- msgid "<a href='%s'>FAQ</a>"
216
- msgstr ""
217
-
218
- #: classes/hooks/class-hook-settings-page.php:65
219
- msgid "<a href='%s'>Change log</a>"
220
  msgstr ""
221
 
222
  #: classes/hooks/class-hook-settings-page.php:67
223
- msgid "<a href='%s'>Give us a review</a>"
224
  msgstr ""
225
 
226
  #: classes/hooks/class-hook-settings-page.php:69
227
- msgid "<a href='%s'>Release blog post</a>"
 
 
 
 
228
  msgstr ""
229
 
230
  #: classes/hooks/class-hook-settings-page.php:73
 
 
 
 
231
  msgid "About the developer"
232
  msgstr ""
233
 
234
- #: classes/hooks/class-hook-settings-page.php:75
235
  msgid ""
236
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
237
- " the author of various WordPress plugins that include Post Connector, "
238
- "Related Posts for WordPress and What The File."
239
  msgstr ""
240
 
241
- #: classes/hooks/class-hook-settings-page.php:77
242
  msgid ""
243
- "Barry likes contributing to opensource projects and visiting WordCamps and "
244
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
245
  msgstr ""
246
 
247
- #: classes/hooks/class-hook-settings-page.php:79
248
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
249
  msgstr ""
250
 
251
- #: classes/hooks/class-hook-settings-page.php:105
252
  msgid "General"
253
  msgstr ""
254
 
255
- #: classes/hooks/class-hook-settings-page.php:125
256
  msgid "Installer"
257
  msgstr ""
258
 
259
- #: classes/hooks/class-hook-settings-page.php:147
260
- msgid "Post Type"
261
- msgstr ""
262
-
263
  #: classes/meta-boxes/class-meta-box-manage.php:80
264
  msgid "Add Related Posts"
265
  msgstr ""
@@ -345,30 +355,63 @@ msgstr ""
345
  msgid "Checking this will enable displaying featured images of related %ss."
346
  msgstr ""
347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  #: classes/settings/class-settings-misc.php:18
349
  msgid "Misc"
350
  msgstr ""
351
 
352
- #: classes/settings/class-settings-misc.php:31
353
  msgid "Miscellaneous Settings"
354
  msgstr ""
355
 
356
- #: classes/settings/class-settings-misc.php:32
357
  msgid "A shelter for options that just don't fit in."
358
  msgstr ""
359
 
360
- #: classes/settings/class-settings-misc.php:36
361
- #: classes/settings/class-settings-weight.php:26
362
  msgid "Remove Data on Uninstall?"
363
  msgstr ""
364
 
365
- #: classes/settings/class-settings-misc.php:37
366
- #: classes/settings/class-settings-weight.php:27
367
  msgid ""
368
  "Check this box if you would like to completely remove all of its data when "
369
  "the plugin is deleted."
370
  msgstr ""
371
 
 
 
 
 
 
 
 
 
372
  #: classes/settings/class-settings-themes.php:18
373
  msgid "Styling"
374
  msgstr ""
@@ -378,7 +421,7 @@ msgid "Styling settings"
378
  msgstr ""
379
 
380
  #: classes/settings/class-settings-themes.php:32
381
- msgid "All settings related to frontend style your related posts."
382
  msgstr ""
383
 
384
  #: classes/settings/class-settings-themes.php:36
@@ -401,12 +444,54 @@ msgid ""
401
  "error here will break frontend display. To disable, leave field empty."
402
  msgstr ""
403
 
404
- #: classes/settings/class-settings-weight.php:21
405
- msgid "Post Types"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  msgstr ""
407
 
408
- #: classes/settings/class-settings-weight.php:22
409
- msgid "Check the post."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  msgstr ""
411
 
412
  #: classes/themes/class-theme-column-one.php:13
@@ -421,20 +506,10 @@ msgstr ""
421
  msgid "Two related post items per row."
422
  msgstr ""
423
 
424
- #: includes/updater/class-wpjm-updater.php:245
425
  msgid "Hide notice"
426
  msgstr ""
427
 
428
- #: includes/updater/class-wpjm-updater.php:284
429
- msgid "Licence"
430
- msgstr ""
431
-
432
- #: includes/updater/class-wpjm-updater.php:287
433
- msgid ""
434
- "Enter your licence key and email and hit return. A valid key is required for"
435
- " automatic updates."
436
- msgstr ""
437
-
438
  #. Plugin Name of the plugin/theme
439
  msgid "Related Posts for WordPress Premium"
440
  msgstr "Related Posts for WordPress Premium"
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"
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
 
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
  "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
 
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 ""
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 ""
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
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
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"
languages/related-posts-for-wp-pt_pt.po CHANGED
@@ -2,12 +2,14 @@
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-10-16 08:27:55+00:00\n"
10
- "PO-Revision-Date: 2014-10-19 17:44+0000\n"
11
  "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
12
  "Language-Team: Portuguese (http://www.transifex.com/projects/p/related-posts-for-wordpress/language/pt/)\n"
13
  "MIME-Version: 1.0\n"
@@ -21,419 +23,494 @@ msgstr ""
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:47
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:48
42
  msgid "All Posts"
43
- msgstr ""
44
 
45
- #: classes/class-link-related-table.php:97
 
46
  msgid "Title"
47
- msgstr ""
48
 
49
- #: classes/class-link-related-table.php:224
 
 
 
 
 
 
50
  msgid "Link Post"
 
 
 
 
51
  msgstr ""
52
 
53
- #: classes/class-link-related-table.php:256
54
  msgid "Link Posts"
55
- msgstr ""
56
 
57
  #: classes/class-post-type-manager.php:21
58
- #: classes/hooks/class-hook-link-related-screen.php:131
59
  msgid "Posts"
60
- msgstr ""
61
 
62
  #: classes/class-post-type-manager.php:22
63
  msgid "Pages"
64
- msgstr ""
65
 
66
  #: classes/class-related-posts-widget.php:13
67
  msgid "Related Posts for WordPress"
68
- msgstr ""
69
 
70
  #: classes/class-related-posts-widget.php:14
71
  msgid "Display related posts."
72
- msgstr ""
73
 
74
  #: classes/filters/class-filter-plugin-links.php:29
75
  msgid "Settings"
76
- msgstr ""
77
 
78
- #: classes/hooks/class-hook-link-related-screen.php:132
79
  msgid "Cancel linking"
80
- msgstr ""
81
 
82
- #: classes/hooks/class-hook-link-related-screen.php:148
83
  msgid "Search"
84
- msgstr ""
85
 
86
- #: classes/hooks/class-hook-page-install.php:92
87
  msgid "Welcome"
88
- msgstr ""
89
 
90
- #: classes/hooks/class-hook-page-install.php:93
91
  msgid "Caching Posts"
92
- msgstr ""
93
 
94
- #: classes/hooks/class-hook-page-install.php:94
95
  msgid "Linking Posts"
96
- msgstr ""
97
 
98
- #: classes/hooks/class-hook-page-install.php:95
99
  msgid "Finished"
100
- msgstr ""
101
 
102
- #: classes/hooks/class-hook-page-install.php:106
103
  msgid ""
104
  "Missing post type paramater, please report this incident via %sour "
105
  "website%s."
106
- msgstr ""
107
 
108
- #: classes/hooks/class-hook-page-install.php:127
109
  msgid "Installation"
110
- msgstr ""
111
 
112
- #: classes/hooks/class-hook-page-install.php:161
113
- #: classes/hooks/class-hook-page-install.php:197
114
  msgid "Thank you for choosing Related Posts for WordPress!"
115
- msgstr ""
116
 
117
- #: classes/hooks/class-hook-page-install.php:162
118
  msgid ""
119
  "Below you'll find your post types available for installation, by installing "
120
  "a post type we'll set up a cache and offer you the ability to automatic link"
121
  " (custom) posts. To install a post type, simply click the 'Install Post "
122
  "Type' button."
123
- msgstr ""
124
 
125
- #: classes/hooks/class-hook-page-install.php:178
126
- msgid "Disable Relations for %s"
127
  msgstr ""
128
 
129
- #: classes/hooks/class-hook-page-install.php:180
130
- msgid "Enable Relations for %s"
131
  msgstr ""
132
 
133
- #: classes/hooks/class-hook-page-install.php:198
134
  msgid ""
135
  "Before you can start using Related Posts for WordPress we need to cache your"
136
  " current posts."
137
- msgstr ""
138
 
139
- #: classes/hooks/class-hook-page-install.php:199
140
  msgid ""
141
  "This is a one time process which might take some time now, depending on the "
142
  "amount of posts you have, but will ensure your website's performance when "
143
  "using the plugin."
144
- msgstr ""
145
 
146
- #: classes/hooks/class-hook-page-install.php:201
147
  msgid ""
148
  "Do NOT close this window, wait for this process to finish and this wizard to"
149
  " take you to the next step."
150
- msgstr ""
151
 
152
- #: classes/hooks/class-hook-page-install.php:219
153
  msgid "Great! All your posts were successfully cached!"
154
- msgstr ""
155
 
156
- #: classes/hooks/class-hook-page-install.php:220
157
  msgid ""
158
  "You can let me link your posts, based on what I think is related, to each "
159
  "other. And don't worry, if I made a mistake at one of your posts you can "
160
  "easily correct this by editing it manually!"
161
- msgstr ""
162
 
163
- #: classes/hooks/class-hook-page-install.php:221
164
  msgid ""
165
  "Want me to start linking posts to each other? Fill in the amount of related "
166
  "posts each post should have and click on the \"Link now\" button. Rather "
167
  "link your posts manually? Click \"Skip linking\"."
168
- msgstr ""
169
 
170
- #: classes/hooks/class-hook-page-install.php:222
171
  msgid ""
172
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
173
  " process to finish and this wizard to take you to the next step."
174
- msgstr ""
175
 
176
- #: classes/hooks/class-hook-page-install.php:225
177
  msgid "Amount of related posts per post:"
178
- msgstr ""
179
 
180
- #: classes/hooks/class-hook-page-install.php:226
181
  msgid "Link now"
182
- msgstr ""
183
 
184
- #: classes/hooks/class-hook-page-install.php:227
185
  msgid "Skip linking"
186
- msgstr ""
187
 
188
- #: classes/hooks/class-hook-page-install.php:235
189
  msgid "That's it, you're good to go!"
190
- msgstr ""
191
 
192
- #: classes/hooks/class-hook-page-install.php:236
193
  msgid ""
194
  "Thanks again for using Related Posts for WordPress and if you have any "
195
  "questions be sure to ask them at the %sWordPress.org forums.%s"
196
- msgstr ""
197
 
198
- #: classes/hooks/class-hook-page-install.php:238
199
  msgid "Click here to return to step 1"
200
- msgstr ""
201
 
202
- #: classes/hooks/class-hook-page-install.php:244
203
  msgid "Click here to go to the settings page"
204
- msgstr ""
205
 
206
  #: classes/hooks/class-hook-settings-page.php:57
207
  msgid "Plugin version"
208
- msgstr ""
209
-
210
- #: classes/hooks/class-hook-settings-page.php:61
211
- msgid "More information"
212
- msgstr ""
213
 
214
  #: classes/hooks/class-hook-settings-page.php:63
215
- msgid "<a href='%s'>FAQ</a>"
216
- msgstr ""
217
-
218
- #: classes/hooks/class-hook-settings-page.php:65
219
- msgid "<a href='%s'>Change log</a>"
220
  msgstr ""
221
 
222
  #: classes/hooks/class-hook-settings-page.php:67
223
- msgid "<a href='%s'>Give us a review</a>"
224
- msgstr ""
225
 
226
  #: classes/hooks/class-hook-settings-page.php:69
227
- msgid "<a href='%s'>Release blog post</a>"
228
- msgstr ""
 
 
 
 
229
 
230
  #: classes/hooks/class-hook-settings-page.php:73
 
 
 
 
231
  msgid "About the developer"
232
- msgstr ""
233
 
234
- #: classes/hooks/class-hook-settings-page.php:75
235
  msgid ""
236
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
237
- " the author of various WordPress plugins that include Post Connector, "
238
- "Related Posts for WordPress and What The File."
239
  msgstr ""
240
 
241
- #: classes/hooks/class-hook-settings-page.php:77
242
  msgid ""
243
- "Barry likes contributing to opensource projects and visiting WordCamps and "
244
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
245
  msgstr ""
246
 
247
- #: classes/hooks/class-hook-settings-page.php:79
248
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
249
- msgstr ""
250
 
251
- #: classes/hooks/class-hook-settings-page.php:105
252
  msgid "General"
253
- msgstr ""
254
 
255
- #: classes/hooks/class-hook-settings-page.php:125
256
  msgid "Installer"
257
- msgstr ""
258
-
259
- #: classes/hooks/class-hook-settings-page.php:147
260
- msgid "Post Type"
261
- msgstr ""
262
 
263
  #: classes/meta-boxes/class-meta-box-manage.php:80
264
  msgid "Add Related Posts"
265
- msgstr ""
266
 
267
  #: classes/meta-boxes/class-meta-box-manage.php:103
268
  #: classes/meta-boxes/class-meta-box-manage.php:104
269
  msgid "Edit Post"
270
- msgstr ""
271
 
272
  #: classes/meta-boxes/class-meta-box-manage.php:106
273
  #: classes/meta-boxes/class-meta-box-manage.php:107
274
  msgid "Unlink Related Post"
275
- msgstr ""
276
 
277
  #: classes/meta-boxes/class-meta-box-manage.php:120
278
  msgid "No related posts found."
279
- msgstr ""
280
 
281
  #: classes/settings/class-settings-general.php:18
282
  msgid "General settings for %s"
283
- msgstr ""
284
 
285
  #: classes/settings/class-settings-general.php:24
286
  msgid "Automatic %ss linking"
287
- msgstr ""
288
 
289
  #: classes/settings/class-settings-general.php:25
290
  msgid ""
291
  "The following options affect how related posts are automatically linked for "
292
  "%ss."
293
- msgstr ""
294
 
295
  #: classes/settings/class-settings-general.php:29
296
  msgid "Enable"
297
- msgstr ""
298
 
299
  #: classes/settings/class-settings-general.php:30
300
  msgid "Checking this will enable automatically linking posts to new %ss"
301
- msgstr ""
302
 
303
  #: classes/settings/class-settings-general.php:36
304
  msgid "Amount of Posts"
305
- msgstr ""
306
 
307
  #: classes/settings/class-settings-general.php:37
308
  msgid "The amount of automatically linked %ss"
309
- msgstr ""
310
 
311
  #: classes/settings/class-settings-general.php:44
312
  msgid "Frontend Settings"
313
- msgstr ""
314
 
315
  #: classes/settings/class-settings-general.php:45
316
  msgid ""
317
  "The following options affect how related %ss are displayed on the frontend."
318
- msgstr ""
319
 
320
  #: classes/settings/class-settings-general.php:49
321
  msgid "Heading text"
322
- msgstr ""
323
 
324
  #: classes/settings/class-settings-general.php:50
325
  msgid ""
326
  "The text that is displayed above the related %ss. To disable, leave field "
327
  "empty."
328
- msgstr ""
329
 
330
  #: classes/settings/class-settings-general.php:56
331
  msgid "Excerpt length"
332
- msgstr ""
333
 
334
  #: classes/settings/class-settings-general.php:57
335
  msgid ""
336
  "The amount of words to be displayed below the title on website. To disable, "
337
  "set value to 0."
338
- msgstr ""
339
 
340
  #: classes/settings/class-settings-general.php:63
341
  msgid "Display Image"
342
- msgstr ""
343
 
344
  #: classes/settings/class-settings-general.php:64
345
  msgid "Checking this will enable displaying featured images of related %ss."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
346
  msgstr ""
347
 
348
  #: classes/settings/class-settings-misc.php:18
349
  msgid "Misc"
350
- msgstr ""
351
 
352
- #: classes/settings/class-settings-misc.php:31
353
  msgid "Miscellaneous Settings"
354
- msgstr ""
355
 
356
- #: classes/settings/class-settings-misc.php:32
357
  msgid "A shelter for options that just don't fit in."
358
- msgstr ""
359
 
360
- #: classes/settings/class-settings-misc.php:36
361
- #: classes/settings/class-settings-weight.php:26
362
  msgid "Remove Data on Uninstall?"
363
- msgstr ""
364
 
365
- #: classes/settings/class-settings-misc.php:37
366
- #: classes/settings/class-settings-weight.php:27
367
  msgid ""
368
  "Check this box if you would like to completely remove all of its data when "
369
  "the plugin is deleted."
 
 
 
 
 
 
 
 
370
  msgstr ""
371
 
372
  #: classes/settings/class-settings-themes.php:18
373
  msgid "Styling"
374
- msgstr ""
375
 
376
  #: classes/settings/class-settings-themes.php:31
377
  msgid "Styling settings"
378
- msgstr ""
379
 
380
  #: classes/settings/class-settings-themes.php:32
381
- msgid "All settings related to frontend style your related posts."
382
- msgstr ""
383
 
384
  #: classes/settings/class-settings-themes.php:36
385
  msgid "Themes"
386
- msgstr ""
387
 
388
  #: classes/settings/class-settings-themes.php:37
389
  msgid ""
390
  "Select one of the CSS themes above to display your related posts the way you"
391
  " like to."
392
- msgstr ""
393
 
394
  #: classes/settings/class-settings-themes.php:43
395
  msgid "Custom CSS"
396
- msgstr ""
397
 
398
  #: classes/settings/class-settings-themes.php:44
399
  msgid ""
400
  "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
401
  "error here will break frontend display. To disable, leave field empty."
402
- msgstr ""
403
 
404
- #: classes/settings/class-settings-weight.php:21
405
- msgid "Post Types"
406
- msgstr ""
407
 
408
- #: classes/settings/class-settings-weight.php:22
409
- msgid "Check the post."
410
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
411
 
412
  #: classes/themes/class-theme-column-one.php:13
413
  msgid "One related post item per row."
414
- msgstr ""
415
 
416
  #: classes/themes/class-theme-column-three.php:13
417
  msgid "Three related post items per row."
418
- msgstr ""
419
 
420
  #: classes/themes/class-theme-column-two.php:13
421
  msgid "Two related post items per row."
422
- msgstr ""
423
 
424
- #: includes/updater/class-wpjm-updater.php:245
425
  msgid "Hide notice"
426
- msgstr ""
427
-
428
- #: includes/updater/class-wpjm-updater.php:284
429
- msgid "Licence"
430
- msgstr ""
431
-
432
- #: includes/updater/class-wpjm-updater.php:287
433
- msgid ""
434
- "Enter your licence key and email and hit return. A valid key is required for"
435
- " automatic updates."
436
- msgstr ""
437
 
438
  #. Plugin Name of the plugin/theme
439
  msgid "Related Posts for WordPress Premium"
@@ -445,7 +522,7 @@ msgstr "http://www.relatedpostsforwp.com/"
445
 
446
  #. Description of the plugin/theme
447
  msgid "The best way to display related posts in WordPress."
448
- msgstr ""
449
 
450
  #. Author of the plugin/theme
451
  msgid "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"
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:52
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: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
 
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: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"
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: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
 
219
  #: classes/hooks/class-hook-settings-page.php:57
220
  msgid "Plugin version"
221
+ msgstr "Versão do plugin"
 
 
 
 
222
 
223
  #: classes/hooks/class-hook-settings-page.php:63
224
+ 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"
232
+ msgstr "Mais informações"
233
 
234
  #: classes/hooks/class-hook-settings-page.php:69
235
+ msgid "<a href='%s'>Documentation</a>"
236
+ msgstr "<a href='%s'>Documentação</a>"
237
+
238
+ #: classes/hooks/class-hook-settings-page.php:71
239
+ msgid "<a href='%s'>Changelog</a>"
240
+ msgstr "<a href='%s'>Changelog</a>"
241
 
242
  #: classes/hooks/class-hook-settings-page.php:73
243
+ msgid "<a href='%s'>Give us a review</a>"
244
+ msgstr "<a href='%s'>Faça uma avaliação</a>"
245
+
246
+ #: classes/hooks/class-hook-settings-page.php:78
247
  msgid "About the developer"
248
+ msgstr "Sobre o desenvolvedor"
249
 
250
+ #: classes/hooks/class-hook-settings-page.php:80
251
  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."
265
+ msgstr "%Seguir Barry no Twitter%s."
266
 
267
+ #: classes/hooks/class-hook-settings-page.php:110
268
  msgid "General"
269
+ msgstr "Geral"
270
 
271
+ #: classes/hooks/class-hook-settings-page.php:130
272
  msgid "Installer"
273
+ msgstr "Instalador"
 
 
 
 
274
 
275
  #: classes/meta-boxes/class-meta-box-manage.php:80
276
  msgid "Add Related Posts"
277
+ msgstr "Adciionar Post Relacioando"
278
 
279
  #: classes/meta-boxes/class-meta-box-manage.php:103
280
  #: classes/meta-boxes/class-meta-box-manage.php:104
281
  msgid "Edit Post"
282
+ msgstr "Editar Post"
283
 
284
  #: classes/meta-boxes/class-meta-box-manage.php:106
285
  #: classes/meta-boxes/class-meta-box-manage.php:107
286
  msgid "Unlink Related Post"
287
+ msgstr "Desvincular Post Relacionado"
288
 
289
  #: classes/meta-boxes/class-meta-box-manage.php:120
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"
296
 
297
  #: classes/settings/class-settings-general.php:24
298
  msgid "Automatic %ss linking"
299
+ msgstr "Vinculação automatica %ss"
300
 
301
  #: classes/settings/class-settings-general.php:25
302
  msgid ""
303
  "The following options affect how related posts are automatically linked for "
304
  "%ss."
305
+ msgstr "As opções a seguir afetam como os posts relacionados são vinculados automaticamente para %ss."
306
 
307
  #: classes/settings/class-settings-general.php:29
308
  msgid "Enable"
309
+ msgstr "Habilitar"
310
 
311
  #: classes/settings/class-settings-general.php:30
312
  msgid "Checking this will enable automatically linking posts to new %ss"
313
+ msgstr "Marcando isso vai permitir a vinculação automaticamente para novos posts %ss"
314
 
315
  #: classes/settings/class-settings-general.php:36
316
  msgid "Amount of Posts"
317
+ msgstr "Quantidade de Posts"
318
 
319
  #: classes/settings/class-settings-general.php:37
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"
389
+ msgstr "Diversos"
390
 
391
+ #: classes/settings/class-settings-misc.php:24
392
  msgid "Miscellaneous Settings"
393
+ msgstr "Configurações Diversas"
394
 
395
+ #: classes/settings/class-settings-misc.php:25
396
  msgid "A shelter for options that just don't fit in."
397
+ msgstr "Lugar para as opções que simplesmente não se encaixam."
398
 
399
+ #: classes/settings/class-settings-misc.php:29
 
400
  msgid "Remove Data on Uninstall?"
401
+ msgstr "Remover Dados ao Desistalar?"
402
 
403
+ #: classes/settings/class-settings-misc.php:30
 
404
  msgid ""
405
  "Check this box if you would like to completely remove all of its data when "
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"
451
+ msgstr "Prioridades"
452
 
453
+ #: classes/settings/class-settings-weights.php:24
454
+ msgid "Weight settings"
455
+ msgstr "Configuração de prioridades"
456
+
457
+ #: classes/settings/class-settings-weights.php:25
458
+ msgid ""
459
+ "Easily adjust the weights by using the sliders below. Please note that you "
460
+ "need to rerun the installer after changing weights."
461
+ 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."
462
+
463
+ #: classes/settings/class-settings-weights.php:30
464
+ msgid "The weight of the title."
465
+ msgstr "A prioridade do título."
466
+
467
+ #: classes/settings/class-settings-weights.php:36
468
+ msgid "Links"
469
+ msgstr "Links"
470
+
471
+ #: classes/settings/class-settings-weights.php:37
472
+ msgid "The weight of the links found in the content."
473
+ msgstr "A prioridade dos links encontrados no conteúdo."
474
+
475
+ #: classes/settings/class-settings-weights.php:43
476
+ msgid "Categories"
477
+ msgstr "Categorias"
478
+
479
+ #: classes/settings/class-settings-weights.php:44
480
+ msgid "The weight of the categories."
481
+ msgstr "A prioridade das categorias."
482
+
483
+ #: classes/settings/class-settings-weights.php:50
484
+ msgid "Tags"
485
+ msgstr "Tags"
486
+
487
+ #: classes/settings/class-settings-weights.php:51
488
+ msgid "The weight of the tags."
489
+ msgstr "A prioridade das tags."
490
+
491
+ #: classes/settings/class-settings-weights.php:57
492
+ msgid "Custom Taxonomies"
493
+ msgstr "Taxonomias Personalizadas"
494
+
495
+ #: classes/settings/class-settings-weights.php:58
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"
 
 
 
 
 
 
 
 
 
 
514
 
515
  #. Plugin Name of the plugin/theme
516
  msgid "Related Posts for WordPress Premium"
522
 
523
  #. Description of the plugin/theme
524
  msgid "The best way to display related posts in WordPress."
525
+ msgstr "A melhor maneira de mostrar posts relacionados no WordPress."
526
 
527
  #. Author of the plugin/theme
528
  msgid "Barry Kooij"
languages/related-posts-for-wp-ru_ru.po CHANGED
@@ -6,8 +6,8 @@ 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-10-16 08:27:55+00:00\n"
10
- "PO-Revision-Date: 2014-10-19 17:44+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"
@@ -31,31 +31,42 @@ msgstr ""
31
  msgid "Are you sure you want to delete this related post?"
32
  msgstr ""
33
 
34
- #: classes/class-link-related-table.php:47
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:48
42
  msgid "All Posts"
43
  msgstr ""
44
 
45
- #: classes/class-link-related-table.php:97
 
46
  msgid "Title"
47
  msgstr ""
48
 
49
- #: classes/class-link-related-table.php:224
 
 
 
 
 
 
50
  msgid "Link Post"
51
  msgstr ""
52
 
53
- #: classes/class-link-related-table.php:256
 
 
 
 
54
  msgid "Link Posts"
55
  msgstr ""
56
 
57
  #: classes/class-post-type-manager.php:21
58
- #: classes/hooks/class-hook-link-related-screen.php:131
59
  msgid "Posts"
60
  msgstr ""
61
 
@@ -75,46 +86,46 @@ msgstr ""
75
  msgid "Settings"
76
  msgstr ""
77
 
78
- #: classes/hooks/class-hook-link-related-screen.php:132
79
  msgid "Cancel linking"
80
  msgstr ""
81
 
82
- #: classes/hooks/class-hook-link-related-screen.php:148
83
  msgid "Search"
84
  msgstr ""
85
 
86
- #: classes/hooks/class-hook-page-install.php:92
87
  msgid "Welcome"
88
  msgstr ""
89
 
90
- #: classes/hooks/class-hook-page-install.php:93
91
  msgid "Caching Posts"
92
  msgstr ""
93
 
94
- #: classes/hooks/class-hook-page-install.php:94
95
  msgid "Linking Posts"
96
  msgstr ""
97
 
98
- #: classes/hooks/class-hook-page-install.php:95
99
  msgid "Finished"
100
  msgstr ""
101
 
102
- #: classes/hooks/class-hook-page-install.php:106
103
  msgid ""
104
  "Missing post type paramater, please report this incident via %sour "
105
  "website%s."
106
  msgstr ""
107
 
108
- #: classes/hooks/class-hook-page-install.php:127
109
  msgid "Installation"
110
  msgstr ""
111
 
112
- #: classes/hooks/class-hook-page-install.php:161
113
- #: classes/hooks/class-hook-page-install.php:197
114
  msgid "Thank you for choosing Related Posts for WordPress!"
115
  msgstr ""
116
 
117
- #: classes/hooks/class-hook-page-install.php:162
118
  msgid ""
119
  "Below you'll find your post types available for installation, by installing "
120
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -122,84 +133,84 @@ msgid ""
122
  "Type' button."
123
  msgstr ""
124
 
125
- #: classes/hooks/class-hook-page-install.php:178
126
- msgid "Disable Relations for %s"
127
  msgstr ""
128
 
129
- #: classes/hooks/class-hook-page-install.php:180
130
- msgid "Enable Relations for %s"
131
  msgstr ""
132
 
133
- #: classes/hooks/class-hook-page-install.php:198
134
  msgid ""
135
  "Before you can start using Related Posts for WordPress we need to cache your"
136
  " current posts."
137
  msgstr ""
138
 
139
- #: classes/hooks/class-hook-page-install.php:199
140
  msgid ""
141
  "This is a one time process which might take some time now, depending on the "
142
  "amount of posts you have, but will ensure your website's performance when "
143
  "using the plugin."
144
  msgstr ""
145
 
146
- #: classes/hooks/class-hook-page-install.php:201
147
  msgid ""
148
  "Do NOT close this window, wait for this process to finish and this wizard to"
149
  " take you to the next step."
150
  msgstr ""
151
 
152
- #: classes/hooks/class-hook-page-install.php:219
153
  msgid "Great! All your posts were successfully cached!"
154
  msgstr ""
155
 
156
- #: classes/hooks/class-hook-page-install.php:220
157
  msgid ""
158
  "You can let me link your posts, based on what I think is related, to each "
159
  "other. And don't worry, if I made a mistake at one of your posts you can "
160
  "easily correct this by editing it manually!"
161
  msgstr ""
162
 
163
- #: classes/hooks/class-hook-page-install.php:221
164
  msgid ""
165
  "Want me to start linking posts to each other? Fill in the amount of related "
166
  "posts each post should have and click on the \"Link now\" button. Rather "
167
  "link your posts manually? Click \"Skip linking\"."
168
  msgstr ""
169
 
170
- #: classes/hooks/class-hook-page-install.php:222
171
  msgid ""
172
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
173
  " process to finish and this wizard to take you to the next step."
174
  msgstr ""
175
 
176
- #: classes/hooks/class-hook-page-install.php:225
177
  msgid "Amount of related posts per post:"
178
  msgstr ""
179
 
180
- #: classes/hooks/class-hook-page-install.php:226
181
  msgid "Link now"
182
  msgstr ""
183
 
184
- #: classes/hooks/class-hook-page-install.php:227
185
  msgid "Skip linking"
186
  msgstr ""
187
 
188
- #: classes/hooks/class-hook-page-install.php:235
189
  msgid "That's it, you're good to go!"
190
  msgstr ""
191
 
192
- #: classes/hooks/class-hook-page-install.php:236
193
  msgid ""
194
  "Thanks again for using Related Posts for WordPress and if you have any "
195
  "questions be sure to ask them at the %sWordPress.org forums.%s"
196
  msgstr ""
197
 
198
- #: classes/hooks/class-hook-page-install.php:238
199
  msgid "Click here to return to step 1"
200
  msgstr ""
201
 
202
- #: classes/hooks/class-hook-page-install.php:244
203
  msgid "Click here to go to the settings page"
204
  msgstr ""
205
 
@@ -207,59 +218,58 @@ msgstr ""
207
  msgid "Plugin version"
208
  msgstr ""
209
 
210
- #: classes/hooks/class-hook-settings-page.php:61
211
- msgid "More information"
212
- msgstr ""
213
-
214
  #: classes/hooks/class-hook-settings-page.php:63
215
- msgid "<a href='%s'>FAQ</a>"
216
- msgstr ""
217
-
218
- #: classes/hooks/class-hook-settings-page.php:65
219
- msgid "<a href='%s'>Change log</a>"
220
  msgstr ""
221
 
222
  #: classes/hooks/class-hook-settings-page.php:67
223
- msgid "<a href='%s'>Give us a review</a>"
224
  msgstr ""
225
 
226
  #: classes/hooks/class-hook-settings-page.php:69
227
- msgid "<a href='%s'>Release blog post</a>"
 
 
 
 
228
  msgstr ""
229
 
230
  #: classes/hooks/class-hook-settings-page.php:73
 
 
 
 
231
  msgid "About the developer"
232
  msgstr ""
233
 
234
- #: classes/hooks/class-hook-settings-page.php:75
235
  msgid ""
236
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
237
- " the author of various WordPress plugins that include Post Connector, "
238
- "Related Posts for WordPress and What The File."
239
  msgstr ""
240
 
241
- #: classes/hooks/class-hook-settings-page.php:77
242
  msgid ""
243
- "Barry likes contributing to opensource projects and visiting WordCamps and "
244
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
245
  msgstr ""
246
 
247
- #: classes/hooks/class-hook-settings-page.php:79
248
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
249
  msgstr ""
250
 
251
- #: classes/hooks/class-hook-settings-page.php:105
252
  msgid "General"
253
  msgstr ""
254
 
255
- #: classes/hooks/class-hook-settings-page.php:125
256
  msgid "Installer"
257
  msgstr ""
258
 
259
- #: classes/hooks/class-hook-settings-page.php:147
260
- msgid "Post Type"
261
- msgstr ""
262
-
263
  #: classes/meta-boxes/class-meta-box-manage.php:80
264
  msgid "Add Related Posts"
265
  msgstr ""
@@ -345,30 +355,63 @@ msgstr ""
345
  msgid "Checking this will enable displaying featured images of related %ss."
346
  msgstr ""
347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  #: classes/settings/class-settings-misc.php:18
349
  msgid "Misc"
350
  msgstr ""
351
 
352
- #: classes/settings/class-settings-misc.php:31
353
  msgid "Miscellaneous Settings"
354
  msgstr ""
355
 
356
- #: classes/settings/class-settings-misc.php:32
357
  msgid "A shelter for options that just don't fit in."
358
  msgstr ""
359
 
360
- #: classes/settings/class-settings-misc.php:36
361
- #: classes/settings/class-settings-weight.php:26
362
  msgid "Remove Data on Uninstall?"
363
  msgstr ""
364
 
365
- #: classes/settings/class-settings-misc.php:37
366
- #: classes/settings/class-settings-weight.php:27
367
  msgid ""
368
  "Check this box if you would like to completely remove all of its data when "
369
  "the plugin is deleted."
370
  msgstr ""
371
 
 
 
 
 
 
 
 
 
372
  #: classes/settings/class-settings-themes.php:18
373
  msgid "Styling"
374
  msgstr ""
@@ -378,7 +421,7 @@ msgid "Styling settings"
378
  msgstr ""
379
 
380
  #: classes/settings/class-settings-themes.php:32
381
- msgid "All settings related to frontend style your related posts."
382
  msgstr ""
383
 
384
  #: classes/settings/class-settings-themes.php:36
@@ -401,12 +444,54 @@ msgid ""
401
  "error here will break frontend display. To disable, leave field empty."
402
  msgstr ""
403
 
404
- #: classes/settings/class-settings-weight.php:21
405
- msgid "Post Types"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  msgstr ""
407
 
408
- #: classes/settings/class-settings-weight.php:22
409
- msgid "Check the post."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  msgstr ""
411
 
412
  #: classes/themes/class-theme-column-one.php:13
@@ -421,20 +506,10 @@ msgstr ""
421
  msgid "Two related post items per row."
422
  msgstr ""
423
 
424
- #: includes/updater/class-wpjm-updater.php:245
425
  msgid "Hide notice"
426
  msgstr ""
427
 
428
- #: includes/updater/class-wpjm-updater.php:284
429
- msgid "Licence"
430
- msgstr ""
431
-
432
- #: includes/updater/class-wpjm-updater.php:287
433
- msgid ""
434
- "Enter your licence key and email and hit return. A valid key is required for"
435
- " automatic updates."
436
- msgstr ""
437
-
438
  #. Plugin Name of the plugin/theme
439
  msgid "Related Posts for WordPress Premium"
440
  msgstr "Related Posts for WordPress Premium"
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"
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
 
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
  "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
 
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 ""
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 ""
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
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
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"
languages/related-posts-for-wp-sr_sr.po CHANGED
@@ -7,9 +7,9 @@ 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-10-16 08:27:55+00:00\n"
11
- "PO-Revision-Date: 2014-10-22 19:12+0000\n"
12
- "Last-Translator: Milan Ivanovic <lanche86@gmail.com>\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"
@@ -32,31 +32,42 @@ msgstr "%sНастави са инсталацијом%s или %sугаси о
32
  msgid "Are you sure you want to delete this related post?"
33
  msgstr "Да ли сте сигурни да желите да избришете овај повезани чланак?"
34
 
35
- #: classes/class-link-related-table.php:47
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
 
42
- #: classes/class-link-related-table.php:48
43
  msgid "All Posts"
44
  msgstr "Сви чланци"
45
 
46
- #: classes/class-link-related-table.php:97
 
47
  msgid "Title"
48
  msgstr "Наслов"
49
 
50
- #: classes/class-link-related-table.php:224
 
 
 
 
 
 
51
  msgid "Link Post"
52
  msgstr "Повежи чланак"
53
 
54
- #: classes/class-link-related-table.php:256
 
 
 
 
55
  msgid "Link Posts"
56
  msgstr "Повежи чланке"
57
 
58
  #: classes/class-post-type-manager.php:21
59
- #: classes/hooks/class-hook-link-related-screen.php:131
60
  msgid "Posts"
61
  msgstr "Чланци"
62
 
@@ -76,46 +87,46 @@ msgstr "Прикажи повезане чланке."
76
  msgid "Settings"
77
  msgstr "Подешавања"
78
 
79
- #: classes/hooks/class-hook-link-related-screen.php:132
80
  msgid "Cancel linking"
81
  msgstr "Прекини линковање"
82
 
83
- #: classes/hooks/class-hook-link-related-screen.php:148
84
  msgid "Search"
85
  msgstr "Претражи"
86
 
87
- #: classes/hooks/class-hook-page-install.php:92
88
  msgid "Welcome"
89
  msgstr "Добродошли"
90
 
91
- #: classes/hooks/class-hook-page-install.php:93
92
  msgid "Caching Posts"
93
  msgstr "Кеширани чланци"
94
 
95
- #: classes/hooks/class-hook-page-install.php:94
96
  msgid "Linking Posts"
97
  msgstr "Повезани чланци"
98
 
99
- #: classes/hooks/class-hook-page-install.php:95
100
  msgid "Finished"
101
  msgstr "Завршено."
102
 
103
- #: classes/hooks/class-hook-page-install.php:106
104
  msgid ""
105
  "Missing post type paramater, please report this incident via %sour "
106
  "website%s."
107
  msgstr "Недостаје post type параметар, пријавите овај инцидент преко %sнашег вебсајта%s."
108
 
109
- #: classes/hooks/class-hook-page-install.php:127
110
  msgid "Installation"
111
  msgstr "Инсталација"
112
 
113
- #: classes/hooks/class-hook-page-install.php:161
114
- #: classes/hooks/class-hook-page-install.php:197
115
  msgid "Thank you for choosing Related Posts for WordPress!"
116
  msgstr "Хвала што сте изабрали Повезане чланке за Вордпрес!"
117
 
118
- #: classes/hooks/class-hook-page-install.php:162
119
  msgid ""
120
  "Below you'll find your post types available for installation, by installing "
121
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -123,84 +134,84 @@ msgid ""
123
  "Type' button."
124
  msgstr "Испод ћете наћи ваше доступне post types за инсталацију, инсталирањем post type ми ћемо све кеширати и понудити Вам могућност да аутоматски повежете (подешене) чланке. Да инсталирате post type, једноставно кликните 'Инсталирај Post Type' дугме."
125
 
126
- #: classes/hooks/class-hook-page-install.php:178
127
- msgid "Disable Relations for %s"
128
- msgstr "Онемогући везу за %s"
129
 
130
- #: classes/hooks/class-hook-page-install.php:180
131
- msgid "Enable Relations for %s"
132
- msgstr "Одобри везу за %s"
133
 
134
- #: classes/hooks/class-hook-page-install.php:198
135
  msgid ""
136
  "Before you can start using Related Posts for WordPress we need to cache your"
137
  " current posts."
138
  msgstr "Пре него што почнете са коришћењем Повезаних чланака за Вордпрес морамо да кеширамо све Ваше чланке."
139
 
140
- #: classes/hooks/class-hook-page-install.php:199
141
  msgid ""
142
  "This is a one time process which might take some time now, depending on the "
143
  "amount of posts you have, but will ensure your website's performance when "
144
  "using the plugin."
145
  msgstr "Ово је процес који може да узме мало више времена сада, зависно од броја Ваших чланака, али ће осигурати боље перформансе Вашег вебсајта када се додатак користи."
146
 
147
- #: classes/hooks/class-hook-page-install.php:201
148
  msgid ""
149
  "Do NOT close this window, wait for this process to finish and this wizard to"
150
  " take you to the next step."
151
  msgstr "Немојте да затварате овај прозор, сачекајте да се процес заврши и да вас одведе на следећи корак."
152
 
153
- #: classes/hooks/class-hook-page-install.php:219
154
  msgid "Great! All your posts were successfully cached!"
155
  msgstr "Одлично! Сви твоји чланци су успешно кеширани!"
156
 
157
- #: classes/hooks/class-hook-page-install.php:220
158
  msgid ""
159
  "You can let me link your posts, based on what I think is related, to each "
160
  "other. And don't worry, if I made a mistake at one of your posts you can "
161
  "easily correct this by editing it manually!"
162
  msgstr "Можете ме пустити да повежем Ваше чланке, судећи по томе како ја мислим да треба бити повезани. И не брините, ако погрешим, увек можете ручно исправити!"
163
 
164
- #: classes/hooks/class-hook-page-install.php:221
165
  msgid ""
166
  "Want me to start linking posts to each other? Fill in the amount of related "
167
  "posts each post should have and click on the \"Link now\" button. Rather "
168
  "link your posts manually? Click \"Skip linking\"."
169
  msgstr "Желите да отпочнемо са повезивањем чланака? Попуните колико повезаних чланака сваки чланак треба да има и кликните ”Повежи сада” дугме. Ипак желите сами да повежите своје чланке? Кликните ”Прескочи повезивање”."
170
 
171
- #: classes/hooks/class-hook-page-install.php:222
172
  msgid ""
173
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
174
  " process to finish and this wizard to take you to the next step."
175
  msgstr "Немојте да затварате овај прозор, сачекајте да се процес заврши и да вас одведе на следећи корак."
176
 
177
- #: classes/hooks/class-hook-page-install.php:225
178
  msgid "Amount of related posts per post:"
179
  msgstr "Број повезаних чланака по чланку:"
180
 
181
- #: classes/hooks/class-hook-page-install.php:226
182
  msgid "Link now"
183
  msgstr "Повежи сада"
184
 
185
- #: classes/hooks/class-hook-page-install.php:227
186
  msgid "Skip linking"
187
  msgstr "Прескочи повезивање"
188
 
189
- #: classes/hooks/class-hook-page-install.php:235
190
  msgid "That's it, you're good to go!"
191
  msgstr "То је то, готово је за сада!"
192
 
193
- #: classes/hooks/class-hook-page-install.php:236
194
  msgid ""
195
  "Thanks again for using Related Posts for WordPress and if you have any "
196
  "questions be sure to ask them at the %sWordPress.org forums.%s"
197
  msgstr "Хвала још једном што користите Повезане чланке за Вордпрес и ако имате питања слободно их поставите на %sWordPress.org forums.%s"
198
 
199
- #: classes/hooks/class-hook-page-install.php:238
200
  msgid "Click here to return to step 1"
201
  msgstr "Кликните овде за повратак на корак 1"
202
 
203
- #: classes/hooks/class-hook-page-install.php:244
204
  msgid "Click here to go to the settings page"
205
  msgstr "Кликните овде за страницу са подешавањима"
206
 
@@ -208,59 +219,58 @@ msgstr "Кликните овде за страницу са подешавањ
208
  msgid "Plugin version"
209
  msgstr "Верзија додатка"
210
 
211
- #: classes/hooks/class-hook-settings-page.php:61
 
 
 
 
 
 
 
212
  msgid "More information"
213
  msgstr "Више информација"
214
 
215
- #: classes/hooks/class-hook-settings-page.php:63
216
- msgid "<a href='%s'>FAQ</a>"
217
- msgstr "<a href='%s'>Питања</a>"
218
 
219
- #: classes/hooks/class-hook-settings-page.php:65
220
- msgid "<a href='%s'>Change log</a>"
221
- msgstr "<a href='%s'>Историја промена</a>"
222
 
223
- #: classes/hooks/class-hook-settings-page.php:67
224
  msgid "<a href='%s'>Give us a review</a>"
225
  msgstr "<a href='%s'>Дајте нам рецензију</a>"
226
 
227
- #: classes/hooks/class-hook-settings-page.php:69
228
- msgid "<a href='%s'>Release blog post</a>"
229
- msgstr "<a href='%s'>Блог чланак издања</a>"
230
-
231
- #: classes/hooks/class-hook-settings-page.php:73
232
  msgid "About the developer"
233
  msgstr "О програмеру"
234
 
235
- #: classes/hooks/class-hook-settings-page.php:75
236
  msgid ""
237
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
238
- " the author of various WordPress plugins that include Post Connector, "
239
- "Related Posts for WordPress and What The File."
240
- msgstr "Бари је Вордпрес програмер који ради на WooCommerce од WooThemes и аутор је разних додатака за Вордпрес Post Connector, Related Posts for WordPress и What The File."
241
 
242
- #: classes/hooks/class-hook-settings-page.php:77
243
  msgid ""
244
- "Barry likes contributing to opensource projects and visiting WordCamps and "
245
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
246
- msgstr "Бари воли да доприноси пројектима отвореног кода као и посетама Вордкамповима и Вордпрес окупљањима. Он је организатор Вордпрес окупљања у Тилбургу."
247
 
248
- #: classes/hooks/class-hook-settings-page.php:79
249
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
250
- msgstr "Запратите Барија на Твитеру <a href='%s'>овде</a>."
251
 
252
- #: classes/hooks/class-hook-settings-page.php:105
253
  msgid "General"
254
  msgstr "Опште"
255
 
256
- #: classes/hooks/class-hook-settings-page.php:125
257
  msgid "Installer"
258
  msgstr "Инсталациони програм"
259
 
260
- #: classes/hooks/class-hook-settings-page.php:147
261
- msgid "Post Type"
262
- msgstr "Post Type"
263
-
264
  #: classes/meta-boxes/class-meta-box-manage.php:80
265
  msgid "Add Related Posts"
266
  msgstr "Додај Повезани чланак"
@@ -346,30 +356,63 @@ msgstr "Прикажи слику"
346
  msgid "Checking this will enable displaying featured images of related %ss."
347
  msgstr "Означавање овога ће омогућити приказ истакнуте слике повезаних %s."
348
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
  #: classes/settings/class-settings-misc.php:18
350
  msgid "Misc"
351
  msgstr "Разно"
352
 
353
- #: classes/settings/class-settings-misc.php:31
354
  msgid "Miscellaneous Settings"
355
  msgstr "Остала подешавања"
356
 
357
- #: classes/settings/class-settings-misc.php:32
358
  msgid "A shelter for options that just don't fit in."
359
  msgstr "Склониште за опције које се једноставно не уклапају."
360
 
361
- #: classes/settings/class-settings-misc.php:36
362
- #: classes/settings/class-settings-weight.php:26
363
  msgid "Remove Data on Uninstall?"
364
  msgstr "Избрисати податке при уклањању?"
365
 
366
- #: classes/settings/class-settings-misc.php:37
367
- #: classes/settings/class-settings-weight.php:27
368
  msgid ""
369
  "Check this box if you would like to completely remove all of its data when "
370
  "the plugin is deleted."
371
  msgstr "Означите овај квадратић ако желите да комплетно избришете све његове податке када је додатак избрисан."
372
 
 
 
 
 
 
 
 
 
373
  #: classes/settings/class-settings-themes.php:18
374
  msgid "Styling"
375
  msgstr "Стилизовање"
@@ -379,8 +422,8 @@ msgid "Styling settings"
379
  msgstr "Подешавање стилова"
380
 
381
  #: classes/settings/class-settings-themes.php:32
382
- msgid "All settings related to frontend style your related posts."
383
- msgstr "Сва подешавања повезана са стиловима изгледа Ваших повезаних чланака."
384
 
385
  #: classes/settings/class-settings-themes.php:36
386
  msgid "Themes"
@@ -402,13 +445,55 @@ msgid ""
402
  "error here will break frontend display. To disable, leave field empty."
403
  msgstr "Додајте подешени CSS означеној теми. Упозорење! Ово је напредна функционалност! Грешка овде може направити проблем у корисничком интерфејсу."
404
 
405
- #: classes/settings/class-settings-weight.php:21
406
- msgid "Post Types"
407
- msgstr "Post Types"
 
 
 
 
408
 
409
- #: classes/settings/class-settings-weight.php:22
410
- msgid "Check the post."
411
- msgstr "Провери чланак."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
412
 
413
  #: classes/themes/class-theme-column-one.php:13
414
  msgid "One related post item per row."
@@ -422,20 +507,10 @@ msgstr "Три повезаних чланака по реду."
422
  msgid "Two related post items per row."
423
  msgstr "Два повезана чланка по реду."
424
 
425
- #: includes/updater/class-wpjm-updater.php:245
426
  msgid "Hide notice"
427
  msgstr "Сакриј обавештење"
428
 
429
- #: includes/updater/class-wpjm-updater.php:284
430
- msgid "Licence"
431
- msgstr "Лиценца"
432
-
433
- #: includes/updater/class-wpjm-updater.php:287
434
- msgid ""
435
- "Enter your licence key and email and hit return. A valid key is required for"
436
- " automatic updates."
437
- msgstr "Унесите своју лиценцу и имејл и стисните Ентер. Важећа лиценца је неопходна за аутоматско ажурирање."
438
-
439
  #. Plugin Name of the plugin/theme
440
  msgid "Related Posts for WordPress Premium"
441
  msgstr "Related Posts for WordPress Premium"
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"
32
  msgid "Are you sure you want to delete this related post?"
33
  msgstr "Да ли сте сигурни да желите да избришете овај повезани чланак?"
34
 
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
 
42
+ #: classes/class-link-related-table.php:46
43
  msgid "All Posts"
44
  msgstr "Сви чланци"
45
 
46
+ #: classes/class-link-related-table.php:95
47
+ #: classes/settings/class-settings-weights.php:29
48
  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
  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
  "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
 
219
  msgid "Plugin version"
220
  msgstr "Верзија додатка"
221
 
222
+ #: classes/hooks/class-hook-settings-page.php:63
223
+ 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"
231
  msgstr "Више информација"
232
 
233
+ #: classes/hooks/class-hook-settings-page.php:69
234
+ msgid "<a href='%s'>Documentation</a>"
235
+ msgstr ""
236
 
237
+ #: classes/hooks/class-hook-settings-page.php:71
238
+ msgid "<a href='%s'>Changelog</a>"
239
+ msgstr ""
240
 
241
+ #: classes/hooks/class-hook-settings-page.php:73
242
  msgid "<a href='%s'>Give us a review</a>"
243
  msgstr "<a href='%s'>Дајте нам рецензију</a>"
244
 
245
+ #: classes/hooks/class-hook-settings-page.php:78
 
 
 
 
246
  msgid "About the developer"
247
  msgstr "О програмеру"
248
 
249
+ #: classes/hooks/class-hook-settings-page.php:80
250
  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."
264
+ msgstr ""
265
 
266
+ #: classes/hooks/class-hook-settings-page.php:110
267
  msgid "General"
268
  msgstr "Опште"
269
 
270
+ #: classes/hooks/class-hook-settings-page.php:130
271
  msgid "Installer"
272
  msgstr "Инсталациони програм"
273
 
 
 
 
 
274
  #: classes/meta-boxes/class-meta-box-manage.php:80
275
  msgid "Add Related Posts"
276
  msgstr "Додај Повезани чланак"
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 ""
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"
388
  msgstr "Разно"
389
 
390
+ #: classes/settings/class-settings-misc.php:24
391
  msgid "Miscellaneous Settings"
392
  msgstr "Остала подешавања"
393
 
394
+ #: classes/settings/class-settings-misc.php:25
395
  msgid "A shelter for options that just don't fit in."
396
  msgstr "Склониште за опције које се једноставно не уклапају."
397
 
398
+ #: classes/settings/class-settings-misc.php:29
 
399
  msgid "Remove Data on Uninstall?"
400
  msgstr "Избрисати податке при уклањању?"
401
 
402
+ #: classes/settings/class-settings-misc.php:30
 
403
  msgid ""
404
  "Check this box if you would like to completely remove all of its data when "
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 "Стилизовање"
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"
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"
450
+ msgstr ""
451
+
452
+ #: classes/settings/class-settings-weights.php:24
453
+ msgid "Weight settings"
454
+ msgstr ""
455
 
456
+ #: classes/settings/class-settings-weights.php:25
457
+ msgid ""
458
+ "Easily adjust the weights by using the sliders below. Please note that you "
459
+ "need to rerun the installer after changing weights."
460
+ msgstr ""
461
+
462
+ #: classes/settings/class-settings-weights.php:30
463
+ msgid "The weight of the title."
464
+ msgstr ""
465
+
466
+ #: classes/settings/class-settings-weights.php:36
467
+ msgid "Links"
468
+ msgstr ""
469
+
470
+ #: classes/settings/class-settings-weights.php:37
471
+ msgid "The weight of the links found in the content."
472
+ msgstr ""
473
+
474
+ #: classes/settings/class-settings-weights.php:43
475
+ msgid "Categories"
476
+ msgstr ""
477
+
478
+ #: classes/settings/class-settings-weights.php:44
479
+ msgid "The weight of the categories."
480
+ msgstr ""
481
+
482
+ #: classes/settings/class-settings-weights.php:50
483
+ msgid "Tags"
484
+ msgstr ""
485
+
486
+ #: classes/settings/class-settings-weights.php:51
487
+ msgid "The weight of the tags."
488
+ msgstr ""
489
+
490
+ #: classes/settings/class-settings-weights.php:57
491
+ msgid "Custom Taxonomies"
492
+ msgstr ""
493
+
494
+ #: classes/settings/class-settings-weights.php:58
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."
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 "Сакриј обавештење"
513
 
 
 
 
 
 
 
 
 
 
 
514
  #. Plugin Name of the plugin/theme
515
  msgid "Related Posts for WordPress Premium"
516
  msgstr "Related Posts for WordPress Premium"
languages/related-posts-for-wp-sv_sv.po CHANGED
@@ -7,9 +7,9 @@ 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-10-16 08:27:55+00:00\n"
11
- "PO-Revision-Date: 2014-10-22 20:49+0000\n"
12
- "Last-Translator: Niklas Högefjord <niklas@krokedil.se>\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"
@@ -32,31 +32,42 @@ msgstr "%sÅteruppta installationsguiden%s eller %savfärda detta meddelande%s"
32
  msgid "Are you sure you want to delete this related post?"
33
  msgstr "Är du säker på att du vill radera det här relaterade inlägget?"
34
 
35
- #: classes/class-link-related-table.php:47
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
 
42
- #: classes/class-link-related-table.php:48
43
  msgid "All Posts"
44
  msgstr "Alla inlägg"
45
 
46
- #: classes/class-link-related-table.php:97
 
47
  msgid "Title"
48
  msgstr "Rubrik"
49
 
50
- #: classes/class-link-related-table.php:224
 
 
 
 
 
 
51
  msgid "Link Post"
52
  msgstr "Länka inlägg"
53
 
54
- #: classes/class-link-related-table.php:256
 
 
 
 
55
  msgid "Link Posts"
56
  msgstr "Länka inlägg"
57
 
58
  #: classes/class-post-type-manager.php:21
59
- #: classes/hooks/class-hook-link-related-screen.php:131
60
  msgid "Posts"
61
  msgstr "Inlägg"
62
 
@@ -76,46 +87,46 @@ msgstr "Visa relaterade inlägg."
76
  msgid "Settings"
77
  msgstr "Inställningar"
78
 
79
- #: classes/hooks/class-hook-link-related-screen.php:132
80
  msgid "Cancel linking"
81
  msgstr "Avbryt länkning"
82
 
83
- #: classes/hooks/class-hook-link-related-screen.php:148
84
  msgid "Search"
85
  msgstr "Sök"
86
 
87
- #: classes/hooks/class-hook-page-install.php:92
88
  msgid "Welcome"
89
  msgstr "Välkommen"
90
 
91
- #: classes/hooks/class-hook-page-install.php:93
92
  msgid "Caching Posts"
93
  msgstr "Cachar inlägg"
94
 
95
- #: classes/hooks/class-hook-page-install.php:94
96
  msgid "Linking Posts"
97
  msgstr "Länkar inlägg"
98
 
99
- #: classes/hooks/class-hook-page-install.php:95
100
  msgid "Finished"
101
  msgstr "Avslutad"
102
 
103
- #: classes/hooks/class-hook-page-install.php:106
104
  msgid ""
105
  "Missing post type paramater, please report this incident via %sour "
106
  "website%s."
107
  msgstr "Saknar posttypparameter, vänligen rapportera denna händelse via %svår webbplats%s."
108
 
109
- #: classes/hooks/class-hook-page-install.php:127
110
  msgid "Installation"
111
  msgstr "Installation"
112
 
113
- #: classes/hooks/class-hook-page-install.php:161
114
- #: classes/hooks/class-hook-page-install.php:197
115
  msgid "Thank you for choosing Related Posts for WordPress!"
116
  msgstr "Tack för att du valt Related Posts for WordPress!"
117
 
118
- #: classes/hooks/class-hook-page-install.php:162
119
  msgid ""
120
  "Below you'll find your post types available for installation, by installing "
121
  "a post type we'll set up a cache and offer you the ability to automatic link"
@@ -123,84 +134,84 @@ msgid ""
123
  "Type' button."
124
  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."
125
 
126
- #: classes/hooks/class-hook-page-install.php:178
127
- msgid "Disable Relations for %s"
128
- msgstr "Inaktivera relationer för %s"
129
 
130
- #: classes/hooks/class-hook-page-install.php:180
131
- msgid "Enable Relations for %s"
132
- msgstr "Aktivera relationer för %s"
133
 
134
- #: classes/hooks/class-hook-page-install.php:198
135
  msgid ""
136
  "Before you can start using Related Posts for WordPress we need to cache your"
137
  " current posts."
138
  msgstr "Före du kan börja använda Related Posts for WooCommerce behöver vi cache'a ditt nuvarande inlägg."
139
 
140
- #: classes/hooks/class-hook-page-install.php:199
141
  msgid ""
142
  "This is a one time process which might take some time now, depending on the "
143
  "amount of posts you have, but will ensure your website's performance when "
144
  "using the plugin."
145
  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."
146
 
147
- #: classes/hooks/class-hook-page-install.php:201
148
  msgid ""
149
  "Do NOT close this window, wait for this process to finish and this wizard to"
150
  " take you to the next step."
151
  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."
152
 
153
- #: classes/hooks/class-hook-page-install.php:219
154
  msgid "Great! All your posts were successfully cached!"
155
  msgstr "Strålande! Alla dina inlägg cachades!"
156
 
157
- #: classes/hooks/class-hook-page-install.php:220
158
  msgid ""
159
  "You can let me link your posts, based on what I think is related, to each "
160
  "other. And don't worry, if I made a mistake at one of your posts you can "
161
  "easily correct this by editing it manually!"
162
  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."
163
 
164
- #: classes/hooks/class-hook-page-install.php:221
165
  msgid ""
166
  "Want me to start linking posts to each other? Fill in the amount of related "
167
  "posts each post should have and click on the \"Link now\" button. Rather "
168
  "link your posts manually? Click \"Skip linking\"."
169
  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\""
170
 
171
- #: classes/hooks/class-hook-page-install.php:222
172
  msgid ""
173
  "Do NOT close this window if you click the \"Link now\" button, wait for this"
174
  " process to finish and this wizard to take you to the next step."
175
  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."
176
 
177
- #: classes/hooks/class-hook-page-install.php:225
178
  msgid "Amount of related posts per post:"
179
  msgstr "Antal relaterade inlägg per inlägg:"
180
 
181
- #: classes/hooks/class-hook-page-install.php:226
182
  msgid "Link now"
183
  msgstr "Länka nu"
184
 
185
- #: classes/hooks/class-hook-page-install.php:227
186
  msgid "Skip linking"
187
  msgstr "Hoppa över länkning"
188
 
189
- #: classes/hooks/class-hook-page-install.php:235
190
  msgid "That's it, you're good to go!"
191
  msgstr "Det var det, nu kan du sätta igång!"
192
 
193
- #: classes/hooks/class-hook-page-install.php:236
194
  msgid ""
195
  "Thanks again for using Related Posts for WordPress and if you have any "
196
  "questions be sure to ask them at the %sWordPress.org forums.%s"
197
  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"
198
 
199
- #: classes/hooks/class-hook-page-install.php:238
200
  msgid "Click here to return to step 1"
201
  msgstr "Klicka här för att återvända till steg 1."
202
 
203
- #: classes/hooks/class-hook-page-install.php:244
204
  msgid "Click here to go to the settings page"
205
  msgstr "Klicka här för att gå till inställningssidan"
206
 
@@ -208,59 +219,58 @@ msgstr "Klicka här för att gå till inställningssidan"
208
  msgid "Plugin version"
209
  msgstr "Pluginversion"
210
 
211
- #: classes/hooks/class-hook-settings-page.php:61
 
 
 
 
 
 
 
212
  msgid "More information"
213
  msgstr "Mer information"
214
 
215
- #: classes/hooks/class-hook-settings-page.php:63
216
- msgid "<a href='%s'>FAQ</a>"
217
- msgstr "<a href='%s'>FAQ</a>"
218
 
219
- #: classes/hooks/class-hook-settings-page.php:65
220
- msgid "<a href='%s'>Change log</a>"
221
- msgstr "<a href='%s'>Change log</a>"
222
 
223
- #: classes/hooks/class-hook-settings-page.php:67
224
  msgid "<a href='%s'>Give us a review</a>"
225
  msgstr "<a href='%s'>Ge oss en recension</a>"
226
 
227
- #: classes/hooks/class-hook-settings-page.php:69
228
- msgid "<a href='%s'>Release blog post</a>"
229
- msgstr "<a href='%s'>Frige bloggpost</a>"
230
-
231
- #: classes/hooks/class-hook-settings-page.php:73
232
  msgid "About the developer"
233
  msgstr "Om utvecklaren"
234
 
235
- #: classes/hooks/class-hook-settings-page.php:75
236
  msgid ""
237
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is"
238
- " the author of various WordPress plugins that include Post Connector, "
239
- "Related Posts for WordPress and What The File."
240
- msgstr "Barry är en WordPress-utvecklare som jobbar på WooCommerce från WooThemes och är författare till WordPress-plugin så som Post Connector, Related Posts for WordPress och What The File."
241
 
242
- #: classes/hooks/class-hook-settings-page.php:77
243
  msgid ""
244
- "Barry likes contributing to opensource projects and visiting WordCamps and "
245
  "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
246
- msgstr "Barry gillar att bidra till opensource-projekt och besöka WordCamps och WordPress-meetups. Han är arrangören bakom WordPress meetup i Tilburg."
247
 
248
- #: classes/hooks/class-hook-settings-page.php:79
249
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
250
- msgstr "Följ Barry på Twitter <a href='%s'>här</a>."
251
 
252
- #: classes/hooks/class-hook-settings-page.php:105
253
  msgid "General"
254
  msgstr "Allmänt"
255
 
256
- #: classes/hooks/class-hook-settings-page.php:125
257
  msgid "Installer"
258
  msgstr "Installer"
259
 
260
- #: classes/hooks/class-hook-settings-page.php:147
261
- msgid "Post Type"
262
- msgstr "Posttyp"
263
-
264
  #: classes/meta-boxes/class-meta-box-manage.php:80
265
  msgid "Add Related Posts"
266
  msgstr "Lägg till relaterat inlägg"
@@ -346,30 +356,63 @@ msgstr "Visa bild"
346
  msgid "Checking this will enable displaying featured images of related %ss."
347
  msgstr "Kryssa i den här för att aktivera utvalda bilder för relaterade %ss."
348
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
  #: classes/settings/class-settings-misc.php:18
350
  msgid "Misc"
351
  msgstr "Övrigt"
352
 
353
- #: classes/settings/class-settings-misc.php:31
354
  msgid "Miscellaneous Settings"
355
  msgstr "Övriga inställningar"
356
 
357
- #: classes/settings/class-settings-misc.php:32
358
  msgid "A shelter for options that just don't fit in."
359
  msgstr "En tillflykt för inställningar som helt enkelt inte passar in."
360
 
361
- #: classes/settings/class-settings-misc.php:36
362
- #: classes/settings/class-settings-weight.php:26
363
  msgid "Remove Data on Uninstall?"
364
  msgstr "Avlägsna data vid avinstallation?"
365
 
366
- #: classes/settings/class-settings-misc.php:37
367
- #: classes/settings/class-settings-weight.php:27
368
  msgid ""
369
  "Check this box if you would like to completely remove all of its data when "
370
  "the plugin is deleted."
371
  msgstr "Kryssa i den här rutan om du vill avlägsna all data i samband med att pluginet raderas."
372
 
 
 
 
 
 
 
 
 
373
  #: classes/settings/class-settings-themes.php:18
374
  msgid "Styling"
375
  msgstr "Styling"
@@ -379,8 +422,8 @@ msgid "Styling settings"
379
  msgstr "Styling-inställningar"
380
 
381
  #: classes/settings/class-settings-themes.php:32
382
- msgid "All settings related to frontend style your related posts."
383
- msgstr "Alla inställningar relaterade till frontend style för dina relaterade inlägg."
384
 
385
  #: classes/settings/class-settings-themes.php:36
386
  msgid "Themes"
@@ -402,13 +445,55 @@ msgid ""
402
  "error here will break frontend display. To disable, leave field empty."
403
  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."
404
 
405
- #: classes/settings/class-settings-weight.php:21
406
- msgid "Post Types"
407
- msgstr "Posttyper"
 
 
 
 
408
 
409
- #: classes/settings/class-settings-weight.php:22
410
- msgid "Check the post."
411
- msgstr "Markera inlägget."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
412
 
413
  #: classes/themes/class-theme-column-one.php:13
414
  msgid "One related post item per row."
@@ -422,20 +507,10 @@ msgstr "Tre relaterade inlägg per rad."
422
  msgid "Two related post items per row."
423
  msgstr "Två relaterade inlägg per rad."
424
 
425
- #: includes/updater/class-wpjm-updater.php:245
426
  msgid "Hide notice"
427
  msgstr "Dölj meddelande"
428
 
429
- #: includes/updater/class-wpjm-updater.php:284
430
- msgid "Licence"
431
- msgstr "Licens"
432
-
433
- #: includes/updater/class-wpjm-updater.php:287
434
- msgid ""
435
- "Enter your licence key and email and hit return. A valid key is required for"
436
- " automatic updates."
437
- msgstr "Ange din licensnyckel och e-postadress och klicka på return. En giltig licensnyckel krävs för automatiska uppdateringar."
438
-
439
  #. Plugin Name of the plugin/theme
440
  msgid "Related Posts for WordPress Premium"
441
  msgstr "Related Posts for WordPress Premium"
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"
32
  msgid "Are you sure you want to delete this related post?"
33
  msgstr "Är du säker på att du vill radera det här relaterade inlägget?"
34
 
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
 
42
+ #: classes/class-link-related-table.php:46
43
  msgid "All Posts"
44
  msgstr "Alla inlägg"
45
 
46
+ #: classes/class-link-related-table.php:95
47
+ #: classes/settings/class-settings-weights.php:29
48
  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
  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
  "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
 
219
  msgid "Plugin version"
220
  msgstr "Pluginversion"
221
 
222
+ #: classes/hooks/class-hook-settings-page.php:63
223
+ 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"
231
  msgstr "Mer information"
232
 
233
+ #: classes/hooks/class-hook-settings-page.php:69
234
+ msgid "<a href='%s'>Documentation</a>"
235
+ msgstr ""
236
 
237
+ #: classes/hooks/class-hook-settings-page.php:71
238
+ msgid "<a href='%s'>Changelog</a>"
239
+ msgstr ""
240
 
241
+ #: classes/hooks/class-hook-settings-page.php:73
242
  msgid "<a href='%s'>Give us a review</a>"
243
  msgstr "<a href='%s'>Ge oss en recension</a>"
244
 
245
+ #: classes/hooks/class-hook-settings-page.php:78
 
 
 
 
246
  msgid "About the developer"
247
  msgstr "Om utvecklaren"
248
 
249
+ #: classes/hooks/class-hook-settings-page.php:80
250
  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."
264
+ msgstr ""
265
 
266
+ #: classes/hooks/class-hook-settings-page.php:110
267
  msgid "General"
268
  msgstr "Allmänt"
269
 
270
+ #: classes/hooks/class-hook-settings-page.php:130
271
  msgid "Installer"
272
  msgstr "Installer"
273
 
 
 
 
 
274
  #: classes/meta-boxes/class-meta-box-manage.php:80
275
  msgid "Add Related Posts"
276
  msgstr "Lägg till relaterat inlägg"
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 ""
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"
388
  msgstr "Övrigt"
389
 
390
+ #: classes/settings/class-settings-misc.php:24
391
  msgid "Miscellaneous Settings"
392
  msgstr "Övriga inställningar"
393
 
394
+ #: classes/settings/class-settings-misc.php:25
395
  msgid "A shelter for options that just don't fit in."
396
  msgstr "En tillflykt för inställningar som helt enkelt inte passar in."
397
 
398
+ #: classes/settings/class-settings-misc.php:29
 
399
  msgid "Remove Data on Uninstall?"
400
  msgstr "Avlägsna data vid avinstallation?"
401
 
402
+ #: classes/settings/class-settings-misc.php:30
 
403
  msgid ""
404
  "Check this box if you would like to completely remove all of its data when "
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"
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"
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"
450
+ msgstr ""
451
+
452
+ #: classes/settings/class-settings-weights.php:24
453
+ msgid "Weight settings"
454
+ msgstr ""
455
 
456
+ #: classes/settings/class-settings-weights.php:25
457
+ msgid ""
458
+ "Easily adjust the weights by using the sliders below. Please note that you "
459
+ "need to rerun the installer after changing weights."
460
+ msgstr ""
461
+
462
+ #: classes/settings/class-settings-weights.php:30
463
+ msgid "The weight of the title."
464
+ msgstr ""
465
+
466
+ #: classes/settings/class-settings-weights.php:36
467
+ msgid "Links"
468
+ msgstr ""
469
+
470
+ #: classes/settings/class-settings-weights.php:37
471
+ msgid "The weight of the links found in the content."
472
+ msgstr ""
473
+
474
+ #: classes/settings/class-settings-weights.php:43
475
+ msgid "Categories"
476
+ msgstr ""
477
+
478
+ #: classes/settings/class-settings-weights.php:44
479
+ msgid "The weight of the categories."
480
+ msgstr ""
481
+
482
+ #: classes/settings/class-settings-weights.php:50
483
+ msgid "Tags"
484
+ msgstr ""
485
+
486
+ #: classes/settings/class-settings-weights.php:51
487
+ msgid "The weight of the tags."
488
+ msgstr ""
489
+
490
+ #: classes/settings/class-settings-weights.php:57
491
+ msgid "Custom Taxonomies"
492
+ msgstr ""
493
+
494
+ #: classes/settings/class-settings-weights.php:58
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."
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"
513
 
 
 
 
 
 
 
 
 
 
 
514
  #. Plugin Name of the plugin/theme
515
  msgid "Related Posts for WordPress Premium"
516
  msgstr "Related Posts for WordPress Premium"
languages/related-posts-for-wp.pot CHANGED
@@ -1,360 +1,526 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Related Posts for WordPress\n"
4
- "POT-Creation-Date: 2014-08-23 15:29+0100\n"
5
- "PO-Revision-Date: 2014-08-23 15:29+0100\n"
6
- "Last-Translator: Barry Kooij <barry@cageworks.nl>\n"
7
- "Language-Team: Cageworks <barry@cageworks.nl>\n"
8
- "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.8\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: _e;__;_x\n"
17
- "X-Poedit-SearchPath-0: ../.\n"
18
- "X-Poedit-SearchPathExcluded-0: ../node_modules/.\n"
19
-
20
- #: .././classes/class-javascript-strings.php:14
 
 
 
 
 
 
 
21
  msgid "Are you sure you want to delete this related post?"
22
  msgstr ""
23
 
24
- #: .././classes/class-link-related-table.php:47
25
- #: .././classes/hooks/class-hook-settings-page.php:17
26
- #: .././classes/meta-boxes/class-meta-box-manage.php:32
 
27
  msgid "Related Posts"
28
  msgstr ""
29
 
30
- #: .././classes/class-link-related-table.php:48
31
  msgid "All Posts"
32
  msgstr ""
33
 
34
- #: .././classes/class-link-related-table.php:97
 
35
  msgid "Title"
36
  msgstr ""
37
 
38
- #: .././classes/class-link-related-table.php:224
 
 
 
 
 
 
39
  msgid "Link Post"
40
  msgstr ""
41
 
42
- #: .././classes/class-link-related-table.php:256
 
 
 
 
43
  msgid "Link Posts"
44
  msgstr ""
45
 
46
- #: .././classes/class-nag-manager.php:105
47
- #, php-format
48
- msgid ""
49
- "You've been using %sRelated Posts for WordPress%s for some time now, could "
50
- "you please give it a review at wordpress.org?"
51
  msgstr ""
52
 
53
- #: .././classes/class-nag-manager.php:107
54
- #, php-format
55
- msgid "%sYes, take me there!%s - %sI've already done this!%s"
56
  msgstr ""
57
 
58
- #: .././classes/class-settings.php:37
59
- msgid "Automatic post linking"
60
  msgstr ""
61
 
62
- #: .././classes/class-settings.php:38
63
- msgid ""
64
- "The following options affect how related posts are automatically linked."
65
  msgstr ""
66
 
67
- #: .././classes/class-settings.php:42
68
- msgid "Enable"
69
  msgstr ""
70
 
71
- #: .././classes/class-settings.php:43
72
- msgid "Checking this will enable automatically linking posts to new posts"
73
  msgstr ""
74
 
75
- #: .././classes/class-settings.php:49
76
- msgid "Amount of Posts"
77
  msgstr ""
78
 
79
- #: .././classes/class-settings.php:50
80
- msgid "The amount of automatically linked post"
81
  msgstr ""
82
 
83
- #: .././classes/class-settings.php:57
84
- msgid "Frontend Settings"
 
 
 
 
 
 
 
 
85
  msgstr ""
86
 
87
- #: .././classes/class-settings.php:58
88
  msgid ""
89
- "The following options affect how related posts are displayed on the frontend."
 
90
  msgstr ""
91
 
92
- #: .././classes/class-settings.php:62
93
- msgid "Heading text"
 
 
 
 
 
94
  msgstr ""
95
 
96
- #: .././classes/class-settings.php:63
97
  msgid ""
98
- "The text that is displayed above the related posts. To disable, leave field "
99
- "empty."
 
 
100
  msgstr ""
101
 
102
- #: .././classes/class-settings.php:69
103
- msgid "Excerpt length"
 
 
 
 
104
  msgstr ""
105
 
106
- #: .././classes/class-settings.php:70
107
  msgid ""
108
- "The amount of words to be displayed below the title on website. To disable, "
109
- "set value to 0."
110
  msgstr ""
111
 
112
- #: .././classes/class-settings.php:76
113
- msgid "Display Image"
 
 
 
114
  msgstr ""
115
 
116
- #: .././classes/class-settings.php:77
117
- msgid "Checking this will enable displaying featured images of related posts."
 
 
118
  msgstr ""
119
 
120
- #: .././classes/class-settings.php:83
121
- msgid "CSS"
122
  msgstr ""
123
 
124
- #: .././classes/class-settings.php:84
125
  msgid ""
126
- "Warning! This is an advanced feature! An error here will break frontend "
127
- "display. To disable, leave field empty."
 
128
  msgstr ""
129
 
130
- #: .././classes/class-settings.php:91
131
- msgid "Miscellaneous Settings"
 
 
 
132
  msgstr ""
133
 
134
- #: .././classes/class-settings.php:92
135
- msgid "A shelter for options that just don't fit in."
 
 
136
  msgstr ""
137
 
138
- #: .././classes/class-settings.php:96
139
- msgid "Remove Data on Uninstall?"
 
 
 
 
 
 
 
 
 
 
 
 
140
  msgstr ""
141
 
142
- #: .././classes/class-settings.php:97
143
  msgid ""
144
- "Check this box if you would like to completely remove all of its data when "
145
- "the plugin is deleted."
146
  msgstr ""
147
 
148
- #: .././classes/hooks/class-hook-link-related-screen.php:131
149
- msgid "Posts"
150
  msgstr ""
151
 
152
- #: .././classes/hooks/class-hook-link-related-screen.php:132
153
- msgid "Cancel linking"
154
  msgstr ""
155
 
156
- #: .././classes/hooks/class-hook-link-related-screen.php:148
157
- msgid "Search"
158
  msgstr ""
159
 
160
- #: .././classes/hooks/class-hook-page-install.php:39
161
- msgid "Caching Posts"
 
 
 
162
  msgstr ""
163
 
164
- #: .././classes/hooks/class-hook-page-install.php:40
165
- msgid "Linking Posts"
166
  msgstr ""
167
 
168
- #: .././classes/hooks/class-hook-page-install.php:41
169
- msgid "Finished"
170
  msgstr ""
171
 
172
- #: .././classes/hooks/class-hook-page-install.php:48
173
- msgid "Installation"
174
  msgstr ""
175
 
176
- #: .././classes/hooks/class-hook-page-install.php:71
177
- msgid "Thank you for choosing Related Posts for WordPress!"
 
 
 
 
178
  msgstr ""
179
 
180
- #: .././classes/hooks/class-hook-page-install.php:72
181
  msgid ""
182
- "Before you can start using Related Posts for WordPress we need to cache your "
183
- "current posts."
 
184
  msgstr ""
185
 
186
- #: .././classes/hooks/class-hook-page-install.php:73
187
  msgid ""
188
- "This is a one time process which might take some time now, depending on the "
189
- "amount of posts you have, but will ensure your website's performance when "
190
- "using the plugin."
191
  msgstr ""
192
 
193
- #: .././classes/hooks/class-hook-page-install.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  msgid ""
195
- "Do NOT close this window, wait for this process to finish and this wizard to "
196
- "take you to the next step."
197
  msgstr ""
198
 
199
- #: .././classes/hooks/class-hook-page-install.php:81
200
- msgid "Great! All your posts were successfully cached!"
 
 
 
 
 
 
 
 
 
 
 
 
201
  msgstr ""
202
 
203
- #: .././classes/hooks/class-hook-page-install.php:82
 
 
 
 
 
 
 
 
 
 
 
 
204
  msgid ""
205
- "You can let me link your posts, based on what I think is related, to each "
206
- "other. And don't worry, if I made a mistake at one of your posts you can "
207
- "easily correct this by editing it manually!"
208
  msgstr ""
209
 
210
- #: .././classes/hooks/class-hook-page-install.php:83
 
 
 
 
211
  msgid ""
212
- "Want me to start linking posts to each other? Fill in the amount of related "
213
- "posts each post should have and click on the \"Link now\" button. Rather "
214
- "link your posts manually? Click \"Skip linking\"."
 
 
 
 
 
 
 
215
  msgstr ""
216
 
217
- #: .././classes/hooks/class-hook-page-install.php:84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  msgid ""
219
- "Do NOT close this window if you click the \"Link now\" button, wait for this "
220
- "process to finish and this wizard to take you to the next step."
221
  msgstr ""
222
 
223
- #: .././classes/hooks/class-hook-page-install.php:87
224
- msgid "Amount of related posts per post:"
225
  msgstr ""
226
 
227
- #: .././classes/hooks/class-hook-page-install.php:88
228
- msgid "Link now"
229
  msgstr ""
230
 
231
- #: .././classes/hooks/class-hook-page-install.php:89
232
- msgid "Skip linking"
233
  msgstr ""
234
 
235
- #: .././classes/hooks/class-hook-page-install.php:96
236
- msgid "That's it, you're good to go!"
237
  msgstr ""
238
 
239
- #: .././classes/hooks/class-hook-page-install.php:97
240
- #, php-format
241
  msgid ""
242
- "Thanks again for using Related Posts for WordPress and if you have any "
243
- "questions be sure to ask them at the %sWordPress.org forums.%s"
244
  msgstr ""
245
 
246
- #: .././classes/hooks/class-hook-settings-page.php:50
247
- msgid "Plugin version"
248
  msgstr ""
249
 
250
- #: .././classes/hooks/class-hook-settings-page.php:54
251
- msgid "More information"
252
  msgstr ""
253
 
254
- #: .././classes/hooks/class-hook-settings-page.php:56
255
- #, php-format
256
- msgid "<a href='%s'>FAQ</a>"
257
  msgstr ""
258
 
259
- #: .././classes/hooks/class-hook-settings-page.php:58
260
- #, php-format
261
- msgid "<a href='%s'>Change log</a>"
262
  msgstr ""
263
 
264
- #: .././classes/hooks/class-hook-settings-page.php:60
265
- #, php-format
266
- msgid "<a href='%s'>Give us a review</a>"
267
  msgstr ""
268
 
269
- #: .././classes/hooks/class-hook-settings-page.php:62
270
- #, php-format
271
- msgid "<a href='%s'>Release blog post</a>"
272
  msgstr ""
273
 
274
- #: .././classes/hooks/class-hook-settings-page.php:66
275
- msgid "About the developer"
 
 
 
 
 
 
276
  msgstr ""
277
 
278
- #: .././classes/hooks/class-hook-settings-page.php:68
279
  msgid ""
280
- "Barry is a WordPress developer that works on WooCommerce by WooThemes and is "
281
- "the author of various WordPress plugins that include Post Connector, Related "
282
- "Posts for WordPress and What The File."
 
 
 
283
  msgstr ""
284
 
285
- #: .././classes/hooks/class-hook-settings-page.php:70
 
 
 
 
286
  msgid ""
287
- "Barry likes contributing to opensource projects and visiting WordCamps and "
288
- "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
289
  msgstr ""
290
 
291
- #: .././classes/hooks/class-hook-settings-page.php:72
292
- #, php-format
293
- msgid "You can follow Barry on Twitter <a href='%s'>here</a>."
294
  msgstr ""
295
 
296
- #: .././classes/meta-boxes/class-meta-box-manage.php:75
297
- msgid "Add Related Posts"
298
  msgstr ""
299
 
300
- #: .././classes/meta-boxes/class-meta-box-manage.php:98
301
- msgid "Edit this item"
302
  msgstr ""
303
 
304
- #: .././classes/meta-boxes/class-meta-box-manage.php:99
305
- msgid "Edit Post"
306
  msgstr ""
307
 
308
- #: .././classes/meta-boxes/class-meta-box-manage.php:101
309
- msgid "Delete this item"
310
  msgstr ""
311
 
312
- #: .././classes/meta-boxes/class-meta-box-manage.php:102
313
- msgid "Delete Post"
314
  msgstr ""
315
 
316
- #: .././classes/meta-boxes/class-meta-box-manage.php:115
317
- msgid "No related posts found."
318
  msgstr ""
319
 
320
- #: .././node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:3
321
- #: .././node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:5
322
- #: .././node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:4
323
- #: .././node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:6
324
- #: .././node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:3
325
- #: .././node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:5
326
- #: .././node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:3
327
- #: .././node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:5
328
- #: .././node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:3
329
- #: .././node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:5
330
- #: .././node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:3
331
- #: .././node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:5
332
- #: .././node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:4
333
- #: .././node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:6
334
- msgid "Hello World"
335
  msgstr ""
336
 
337
- #: .././node_modules/grunt-checktextdomain/test/expected/incorrect-domain-autocorrect.php:4
338
- #: .././node_modules/grunt-checktextdomain/test/expected/variable-domain-autocorrect.php:5
339
- #: .././node_modules/grunt-checktextdomain/test/fixtures/correct-domain.php:4
340
- #: .././node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain-autocorrect.php:4
341
- #: .././node_modules/grunt-checktextdomain/test/fixtures/incorrect-domain.php:4
342
- #: .././node_modules/grunt-checktextdomain/test/fixtures/missing-domain.php:4
343
- #: .././node_modules/grunt-checktextdomain/test/fixtures/variable-domain-autocorrect.php:5
344
- msgid "Post"
345
  msgstr ""
346
 
347
- #: .././node_modules/grunt-wp-i18n/test/fixtures/basic-theme/exclude/file.php:3
348
- #: .././node_modules/grunt-wp-i18n/test/fixtures/plugin-include/plugin-include.php:6
349
- msgid "Exclude"
350
  msgstr ""
351
 
352
- #: .././node_modules/grunt-wp-i18n/test/fixtures/plugin-include/include/file.php:2
353
- msgid "Include"
354
  msgstr ""
355
 
356
- #: .././node_modules/grunt-wp-i18n/test/fixtures/text-domains/add-domain.php:2
357
- #: .././node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-domains.php:2
358
- #: .././node_modules/grunt-wp-i18n/test/fixtures/text-domains/update-domains.php:3
359
- msgid "String"
360
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 Barry Kooij
2
+ # This file is distributed under the GPL v3.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Related Posts for WordPress Premium 1.3.0-beta1\n"
6
+ "Report-Msgid-Bugs-To: "
7
+ "https://github.com/barrykooij/related-posts-for-wp/issues\n"
8
+ "POT-Creation-Date: 2014-12-28 16:21:46+00:00\n"
 
 
9
  "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
15
+ "X-Generator: grunt-wp-i18n 0.4.8\n"
16
+
17
+ #: classes/class-is-installing-notice.php:74
18
+ msgid ""
19
+ "Woah! Looks like we weren't able to finish your Related Posts for WordPress "
20
+ "installation wizard!"
21
+ msgstr ""
22
+
23
+ #: classes/class-is-installing-notice.php:76
24
+ msgid "%sResume the installation wizard%s or %sdismiss this notice%s"
25
+ msgstr ""
26
+
27
+ #: classes/class-javascript-strings.php:14
28
  msgid "Are you sure you want to delete this related post?"
29
  msgstr ""
30
 
31
+ #: classes/class-link-related-table.php:45
32
+ #: classes/hooks/class-hook-settings-page.php:20
33
+ #: classes/meta-boxes/class-meta-box-manage.php:37
34
+ #: classes/settings/class-settings-general.php:52
35
  msgid "Related Posts"
36
  msgstr ""
37
 
38
+ #: classes/class-link-related-table.php:46
39
  msgid "All Posts"
40
  msgstr ""
41
 
42
+ #: classes/class-link-related-table.php:95
43
+ #: classes/settings/class-settings-weights.php:29
44
  msgid "Title"
45
  msgstr ""
46
 
47
+ #: classes/class-link-related-table.php:96
48
+ #: classes/hooks/class-hook-page-install.php:220
49
+ #: classes/hooks/class-hook-settings-page.php:152
50
+ msgid "Post Type"
51
+ msgstr ""
52
+
53
+ #: classes/class-link-related-table.php:235
54
  msgid "Link Post"
55
  msgstr ""
56
 
57
+ #: classes/class-link-related-table.php:243
58
+ msgid "View Post"
59
+ msgstr ""
60
+
61
+ #: classes/class-link-related-table.php:274
62
  msgid "Link Posts"
63
  msgstr ""
64
 
65
+ #: classes/class-post-type-manager.php:21
66
+ #: classes/hooks/class-hook-link-related-screen.php:138
67
+ msgid "Posts"
 
 
68
  msgstr ""
69
 
70
+ #: classes/class-post-type-manager.php:22
71
+ msgid "Pages"
 
72
  msgstr ""
73
 
74
+ #: classes/class-related-posts-widget.php:13
75
+ msgid "Related Posts for WordPress"
76
  msgstr ""
77
 
78
+ #: classes/class-related-posts-widget.php:14
79
+ msgid "Display related posts."
 
80
  msgstr ""
81
 
82
+ #: classes/filters/class-filter-plugin-links.php:29
83
+ msgid "Settings"
84
  msgstr ""
85
 
86
+ #: classes/hooks/class-hook-link-related-screen.php:139
87
+ msgid "Cancel linking"
88
  msgstr ""
89
 
90
+ #: classes/hooks/class-hook-link-related-screen.php:155
91
+ msgid "Search"
92
  msgstr ""
93
 
94
+ #: classes/hooks/class-hook-page-install.php:109
95
+ msgid "Welcome"
96
  msgstr ""
97
 
98
+ #: classes/hooks/class-hook-page-install.php:110
99
+ msgid "Caching Posts"
100
+ msgstr ""
101
+
102
+ #: classes/hooks/class-hook-page-install.php:111
103
+ msgid "Linking Posts"
104
+ msgstr ""
105
+
106
+ #: classes/hooks/class-hook-page-install.php:112
107
+ msgid "Finished"
108
  msgstr ""
109
 
110
+ #: classes/hooks/class-hook-page-install.php:123
111
  msgid ""
112
+ "Missing post type paramater, please report this incident via %sour "
113
+ "website%s."
114
  msgstr ""
115
 
116
+ #: classes/hooks/class-hook-page-install.php:154
117
+ msgid "Installation"
118
+ msgstr ""
119
+
120
+ #: classes/hooks/class-hook-page-install.php:201
121
+ #: classes/hooks/class-hook-page-install.php:284
122
+ msgid "Thank you for choosing Related Posts for WordPress!"
123
  msgstr ""
124
 
125
+ #: classes/hooks/class-hook-page-install.php:202
126
  msgid ""
127
+ "Below you'll find your post types available for installation, by installing "
128
+ "a post type we'll set up a cache and offer you the ability to automatic "
129
+ "link (custom) posts. To install a post type, simply click the 'Install Post "
130
+ "Type' button."
131
  msgstr ""
132
 
133
+ #: classes/hooks/class-hook-page-install.php:221
134
+ msgid "Related to Post Types"
135
+ msgstr ""
136
+
137
+ #: classes/hooks/class-hook-page-install.php:256
138
+ msgid "Edit"
139
  msgstr ""
140
 
141
+ #: classes/hooks/class-hook-page-install.php:285
142
  msgid ""
143
+ "Before you can start using Related Posts for WordPress we need to cache "
144
+ "your current posts."
145
  msgstr ""
146
 
147
+ #: classes/hooks/class-hook-page-install.php:286
148
+ msgid ""
149
+ "This is a one time process which might take some time now, depending on the "
150
+ "amount of posts you have, but will ensure your website's performance when "
151
+ "using the plugin."
152
  msgstr ""
153
 
154
+ #: classes/hooks/class-hook-page-install.php:288
155
+ msgid ""
156
+ "Do NOT close this window, wait for this process to finish and this wizard "
157
+ "to take you to the next step."
158
  msgstr ""
159
 
160
+ #: classes/hooks/class-hook-page-install.php:306
161
+ msgid "Great! All your posts were successfully cached!"
162
  msgstr ""
163
 
164
+ #: classes/hooks/class-hook-page-install.php:307
165
  msgid ""
166
+ "You can let me link your posts, based on what I think is related, to each "
167
+ "other. And don't worry, if I made a mistake at one of your posts you can "
168
+ "easily correct this by editing it manually!"
169
  msgstr ""
170
 
171
+ #: classes/hooks/class-hook-page-install.php:308
172
+ msgid ""
173
+ "Want me to start linking posts to each other? Fill in the amount of related "
174
+ "posts each post should have and click on the \"Link now\" button. Rather "
175
+ "link your posts manually? Click \"Skip linking\"."
176
  msgstr ""
177
 
178
+ #: classes/hooks/class-hook-page-install.php:309
179
+ msgid ""
180
+ "Do NOT close this window if you click the \"Link now\" button, wait for "
181
+ "this process to finish and this wizard to take you to the next step."
182
  msgstr ""
183
 
184
+ #: classes/hooks/class-hook-page-install.php:313
185
+ msgid "Amount of related posts per post:"
186
+ msgstr ""
187
+
188
+ #: classes/hooks/class-hook-page-install.php:317
189
+ msgid "Link now"
190
+ msgstr ""
191
+
192
+ #: classes/hooks/class-hook-page-install.php:319
193
+ msgid "Skip linking"
194
+ msgstr ""
195
+
196
+ #: classes/hooks/class-hook-page-install.php:327
197
+ msgid "That's it, you're good to go!"
198
  msgstr ""
199
 
200
+ #: classes/hooks/class-hook-page-install.php:328
201
  msgid ""
202
+ "Thanks again for using Related Posts for WordPress and if you have any "
203
+ "questions be sure to ask them at the %sWordPress.org forums.%s"
204
  msgstr ""
205
 
206
+ #: classes/hooks/class-hook-page-install.php:331
207
+ msgid "Click here to return to step 1"
208
  msgstr ""
209
 
210
+ #: classes/hooks/class-hook-page-install.php:337
211
+ msgid "Click here to go to the settings page"
212
  msgstr ""
213
 
214
+ #: classes/hooks/class-hook-settings-page.php:57
215
+ msgid "Plugin version"
216
  msgstr ""
217
 
218
+ #: classes/hooks/class-hook-settings-page.php:63
219
+ msgid ""
220
+ "Got a question? Simply send us an email at "
221
+ "%ssupport@relatedpostsforwp.com%s. Please note that support requires an "
222
+ "active license."
223
  msgstr ""
224
 
225
+ #: classes/hooks/class-hook-settings-page.php:67
226
+ msgid "More information"
227
  msgstr ""
228
 
229
+ #: classes/hooks/class-hook-settings-page.php:69
230
+ msgid "<a href='%s'>Documentation</a>"
231
  msgstr ""
232
 
233
+ #: classes/hooks/class-hook-settings-page.php:71
234
+ msgid "<a href='%s'>Changelog</a>"
235
  msgstr ""
236
 
237
+ #: classes/hooks/class-hook-settings-page.php:73
238
+ msgid "<a href='%s'>Give us a review</a>"
239
+ msgstr ""
240
+
241
+ #: classes/hooks/class-hook-settings-page.php:78
242
+ msgid "About the developer"
243
  msgstr ""
244
 
245
+ #: classes/hooks/class-hook-settings-page.php:80
246
  msgid ""
247
+ "Barry is a WordPress developer that works on WooCommerce and is the author "
248
+ "of various WordPress plugins that include Related Posts for WordPress, Post "
249
+ "Connector and What The File."
250
  msgstr ""
251
 
252
+ #: classes/hooks/class-hook-settings-page.php:82
253
  msgid ""
254
+ "Barry likes contributing to open source projects and visiting WordCamps and "
255
+ "WordPress meetups. He’s the organizer of the WordPress meetup in Tilburg."
 
256
  msgstr ""
257
 
258
+ #: classes/hooks/class-hook-settings-page.php:84
259
+ msgid "%sFollow Barry on Twitter%s."
260
+ msgstr ""
261
+
262
+ #: classes/hooks/class-hook-settings-page.php:110
263
+ msgid "General"
264
+ msgstr ""
265
+
266
+ #: classes/hooks/class-hook-settings-page.php:130
267
+ msgid "Installer"
268
+ msgstr ""
269
+
270
+ #: classes/meta-boxes/class-meta-box-manage.php:80
271
+ msgid "Add Related Posts"
272
+ msgstr ""
273
+
274
+ #: classes/meta-boxes/class-meta-box-manage.php:103
275
+ #: classes/meta-boxes/class-meta-box-manage.php:104
276
+ msgid "Edit Post"
277
+ msgstr ""
278
+
279
+ #: classes/meta-boxes/class-meta-box-manage.php:106
280
+ #: classes/meta-boxes/class-meta-box-manage.php:107
281
+ msgid "Unlink Related Post"
282
+ msgstr ""
283
+
284
+ #: classes/meta-boxes/class-meta-box-manage.php:120
285
+ msgid "No related posts found."
286
+ msgstr ""
287
+
288
+ #: classes/settings/class-settings-general.php:18
289
+ msgid "General settings for %s"
290
+ msgstr ""
291
+
292
+ #: classes/settings/class-settings-general.php:24
293
+ msgid "Automatic %ss linking"
294
+ msgstr ""
295
+
296
+ #: classes/settings/class-settings-general.php:25
297
  msgid ""
298
+ "The following options affect how related posts are automatically linked for "
299
+ "%ss."
300
  msgstr ""
301
 
302
+ #: classes/settings/class-settings-general.php:29
303
+ msgid "Enable"
304
+ msgstr ""
305
+
306
+ #: classes/settings/class-settings-general.php:30
307
+ msgid "Checking this will enable automatically linking posts to new %ss"
308
+ msgstr ""
309
+
310
+ #: classes/settings/class-settings-general.php:36
311
+ msgid "Amount of Posts"
312
+ msgstr ""
313
+
314
+ #: classes/settings/class-settings-general.php:37
315
+ msgid "The amount of automatically linked %ss"
316
  msgstr ""
317
 
318
+ #: classes/settings/class-settings-general.php:44
319
+ msgid "Frontend Settings"
320
+ msgstr ""
321
+
322
+ #: classes/settings/class-settings-general.php:45
323
+ msgid "The following options affect how related %ss are displayed on the frontend."
324
+ msgstr ""
325
+
326
+ #: classes/settings/class-settings-general.php:49
327
+ msgid "Heading text"
328
+ msgstr ""
329
+
330
+ #: classes/settings/class-settings-general.php:50
331
  msgid ""
332
+ "The text that is displayed above the related %ss. To disable, leave field "
333
+ "empty."
 
334
  msgstr ""
335
 
336
+ #: classes/settings/class-settings-general.php:56
337
+ msgid "Excerpt length"
338
+ msgstr ""
339
+
340
+ #: classes/settings/class-settings-general.php:57
341
  msgid ""
342
+ "The amount of words to be displayed below the title on website. To disable, "
343
+ "set value to 0."
344
+ msgstr ""
345
+
346
+ #: classes/settings/class-settings-general.php:63
347
+ msgid "Display Image"
348
+ msgstr ""
349
+
350
+ #: classes/settings/class-settings-general.php:64
351
+ msgid "Checking this will enable displaying featured images of related %ss."
352
  msgstr ""
353
 
354
+ #: classes/settings/class-settings-license.php:18
355
+ msgid "License"
356
+ msgstr ""
357
+
358
+ #: classes/settings/class-settings-license.php:29
359
+ msgid "License Status"
360
+ msgstr ""
361
+
362
+ #: classes/settings/class-settings-license.php:36
363
+ msgid "License Key"
364
+ msgstr ""
365
+
366
+ #: classes/settings/class-settings-license.php:37
367
+ msgid "Your license key. You can find your license key in your %sMy Account%s page."
368
+ msgstr ""
369
+
370
+ #: classes/settings/class-settings-license.php:44
371
+ msgid "Activation Email"
372
+ msgstr ""
373
+
374
+ #: classes/settings/class-settings-license.php:45
375
  msgid ""
376
+ "Your activation email address. You can find your activation email address "
377
+ "in your %sMy Account%s page."
378
  msgstr ""
379
 
380
+ #: classes/settings/class-settings-misc.php:18
381
+ msgid "Misc"
382
  msgstr ""
383
 
384
+ #: classes/settings/class-settings-misc.php:24
385
+ msgid "Miscellaneous Settings"
386
  msgstr ""
387
 
388
+ #: classes/settings/class-settings-misc.php:25
389
+ msgid "A shelter for options that just don't fit in."
390
  msgstr ""
391
 
392
+ #: classes/settings/class-settings-misc.php:29
393
+ msgid "Remove Data on Uninstall?"
394
  msgstr ""
395
 
396
+ #: classes/settings/class-settings-misc.php:30
 
397
  msgid ""
398
+ "Check this box if you would like to completely remove all of its data when "
399
+ "the plugin is deleted."
400
  msgstr ""
401
 
402
+ #: classes/settings/class-settings-page.php:450
403
+ msgid "ACTIVATED"
404
  msgstr ""
405
 
406
+ #: classes/settings/class-settings-page.php:452
407
+ msgid "NOT ACTIVE"
408
  msgstr ""
409
 
410
+ #: classes/settings/class-settings-themes.php:18
411
+ msgid "Styling"
 
412
  msgstr ""
413
 
414
+ #: classes/settings/class-settings-themes.php:31
415
+ msgid "Styling settings"
 
416
  msgstr ""
417
 
418
+ #: classes/settings/class-settings-themes.php:32
419
+ msgid "Control how your related posts are displayed on your website."
 
420
  msgstr ""
421
 
422
+ #: classes/settings/class-settings-themes.php:36
423
+ msgid "Themes"
 
424
  msgstr ""
425
 
426
+ #: classes/settings/class-settings-themes.php:37
427
+ msgid ""
428
+ "Select one of the CSS themes above to display your related posts the way "
429
+ "you like to."
430
+ msgstr ""
431
+
432
+ #: classes/settings/class-settings-themes.php:43
433
+ msgid "Custom CSS"
434
  msgstr ""
435
 
436
+ #: classes/settings/class-settings-themes.php:44
437
  msgid ""
438
+ "Add custom CSS to selected theme. Warning! This is an advanced feature! An "
439
+ "error here will break frontend display. To disable, leave field empty."
440
+ msgstr ""
441
+
442
+ #: classes/settings/class-settings-weights.php:18
443
+ msgid "Weights"
444
  msgstr ""
445
 
446
+ #: classes/settings/class-settings-weights.php:24
447
+ msgid "Weight settings"
448
+ msgstr ""
449
+
450
+ #: classes/settings/class-settings-weights.php:25
451
  msgid ""
452
+ "Easily adjust the weights by using the sliders below. Please note that you "
453
+ "need to rerun the installer after changing weights."
454
  msgstr ""
455
 
456
+ #: classes/settings/class-settings-weights.php:30
457
+ msgid "The weight of the title."
 
458
  msgstr ""
459
 
460
+ #: classes/settings/class-settings-weights.php:36
461
+ msgid "Links"
462
  msgstr ""
463
 
464
+ #: classes/settings/class-settings-weights.php:37
465
+ msgid "The weight of the links found in the content."
466
  msgstr ""
467
 
468
+ #: classes/settings/class-settings-weights.php:43
469
+ msgid "Categories"
470
  msgstr ""
471
 
472
+ #: classes/settings/class-settings-weights.php:44
473
+ msgid "The weight of the categories."
474
  msgstr ""
475
 
476
+ #: classes/settings/class-settings-weights.php:50
477
+ msgid "Tags"
478
  msgstr ""
479
 
480
+ #: classes/settings/class-settings-weights.php:51
481
+ msgid "The weight of the tags."
482
  msgstr ""
483
 
484
+ #: classes/settings/class-settings-weights.php:57
485
+ msgid "Custom Taxonomies"
 
 
 
 
 
 
 
 
 
 
 
 
 
486
  msgstr ""
487
 
488
+ #: classes/settings/class-settings-weights.php:58
489
+ msgid "The weight of custom taxonomies."
 
 
 
 
 
 
490
  msgstr ""
491
 
492
+ #: classes/themes/class-theme-column-one.php:13
493
+ msgid "One related post item per row."
 
494
  msgstr ""
495
 
496
+ #: classes/themes/class-theme-column-three.php:13
497
+ msgid "Three related post items per row."
498
  msgstr ""
499
 
500
+ #: classes/themes/class-theme-column-two.php:13
501
+ msgid "Two related post items per row."
 
 
502
  msgstr ""
503
+
504
+ #: includes/updater/class-rp4wp-updater.php:131
505
+ msgid "Hide notice"
506
+ msgstr ""
507
+
508
+ #. Plugin Name of the plugin/theme
509
+ msgid "Related Posts for WordPress Premium"
510
+ msgstr ""
511
+
512
+ #. Plugin URI of the plugin/theme
513
+ msgid "http://www.relatedpostsforwp.com/"
514
+ msgstr ""
515
+
516
+ #. Description of the plugin/theme
517
+ msgid "The best way to display related posts in WordPress."
518
+ msgstr ""
519
+
520
+ #. Author of the plugin/theme
521
+ msgid "Barry Kooij"
522
+ msgstr ""
523
+
524
+ #. Author URI of the plugin/theme
525
+ msgid "http://www.barrykooij.com/"
526
+ msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.relatedpostsforwp.com/
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.1
7
- Stable tag: 1.7.6
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -112,10 +112,24 @@ There is one custom table created for the post cache, this table will however no
112
 
113
  == Changelog ==
114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  = 1.7.6: December 2, 2014 =
116
  * Added 'rp4wp_post_excerpt' filter.
117
  * Added RTL support.
118
- * Fixed a scheduled post bug
119
 
120
  = 1.7.5: November 15, 2014 =
121
  * Fixed a hardcoded database table bug.
@@ -225,4 +239,4 @@ There is one custom table created for the post cache, this table will however no
225
  * Initial version
226
 
227
  == Upgrade Notice ==
228
- This version is safe to upgrade. If all of your related posts are linked automatically, we do recommend rerunning the wizard for better results.
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.1
7
+ Stable tag: 1.8.0
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
112
 
113
  == Changelog ==
114
 
115
+ = 1.8.0: December 30, 2014 =
116
+ * Now preventing double form submitting in settings screen.
117
+ * Added plugin version to enqueued scripts.
118
+ * Added nonce checks to installer AJAX requests.
119
+ * Check installer nonce every step of installer.
120
+ * Added 'show love' option.
121
+ * Added dynamic option filter.
122
+ * Added warning on setting screen when an option is filtered.
123
+ * Added 'rp4wp_post_title' filter to filter related post titles.
124
+ * Added 'view post' link in manual link screen.
125
+ * Made related Posts block title WPML string translatable.
126
+ * Added translations: French, Italian, Portuguese, Portuguese (Brazil), Swedish.
127
+ * Updated translations: Dutch, German, Serbian.
128
+
129
  = 1.7.6: December 2, 2014 =
130
  * Added 'rp4wp_post_excerpt' filter.
131
  * Added RTL support.
132
+ * Fixed a scheduled post bug.
133
 
134
  = 1.7.5: November 15, 2014 =
135
  * Fixed a hardcoded database table bug.
239
  * Initial version
240
 
241
  == Upgrade Notice ==
242
+ This version is safe to upgrade. If all of your related posts are linked automatically, we do recommend rerunning the wizard for better results.
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.7.6
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.8.0
7
  Author: Barry Kooij
8
  Author URI: http://www.barrykooij.com/
9
  License: GPL v3
wpml-config.xml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <wpml-config>
2
+ <admin-texts>
3
+ <key name="rp4wp">
4
+ <key name="heading_text" />
5
+ </key>
6
+ </admin-texts>
7
+ </wpml-config>