WordPress Popular Posts - Version 4.2.0

Version Description

If you're using a caching plugin, flushing its cache right after installing / upgrading to this version is required.

  • Breaking change: Database query performance improvements (thanks Stofa!), plugin should be significantly faster for most people out there. Developers: if you're hooking into the WPP_Query class to customize the query, you will have to review it as this change will likely break your custom query.
  • Persistent object caching support: WPP can now store views count in-memory, reducing greatly the number of database writes which is good for performance!
  • Adds filter hook wpp_parse_custom_content_tags.
  • Adds filter hook wpp_taxonomy_separator.
  • You can now also pass arrays when using the parameters post_type, cat, term_id, pid or author (see issue 169 for details).
  • The plugin will use language packs from wordpress.org from now on.
  • Minor fixes and improvements.

Check the Release notes for more details!

Download this release

Release Info

Developer hcabrera
Plugin Icon 128x128 WordPress Popular Posts
Version 4.2.0
Comparing to
See all releases

Code changes from version 4.1.2 to 4.2.0

admin/class-wordpress-popular-posts-admin.php CHANGED
@@ -73,15 +73,7 @@ class WPP_Admin {
73
  if ( 1 == $this->options['tools']['log']['limit'] ) {
74
 
75
  if ( !wp_next_scheduled( 'wpp_cache_event' ) ) {
76
- $tomorrow = time() + 86400;
77
- $midnight = mktime(
78
- 0,
79
- 0,
80
- 0,
81
- date( "m", $tomorrow ),
82
- date( "d", $tomorrow ),
83
- date( "Y", $tomorrow )
84
- );
85
  wp_schedule_event( $midnight, 'daily', 'wpp_cache_event' );
86
  }
87
 
@@ -307,33 +299,32 @@ class WPP_Admin {
307
 
308
  public function chart_query_fields( $fields, $options ){
309
 
310
- if ( 'comments' == $options['order_by'] ) {
311
- return "DATE(c.comment_date_gmt) AS 'date', COUNT(c.comment_post_ID) AS 'comment_count'";
312
- }
313
 
314
- return "v.view_date AS 'date', SUM(v.pageviews) AS 'pageviews'";
315
 
316
  }
317
 
318
  public function chart_query_table( $table, $options ){
319
 
320
- if ( 'comments' == $options['order_by'] ) {
321
- global $wpdb;
322
- return "`{$wpdb->prefix}comments` c";
323
- }
324
 
325
- return $table;
 
 
 
326
 
327
  }
328
 
329
  public function chart_query_join( $join, $options ){
330
 
331
- if ( 'comments' == $options['order_by'] ) {
332
- global $wpdb;
333
- return "INNER JOIN `{$wpdb->prefix}posts` p ON c.comment_post_ID = p.ID";
334
- }
335
 
336
- return $join;
 
 
 
337
 
338
  }
339
 
@@ -432,6 +423,20 @@ class WPP_Admin {
432
  $post_types
433
  );
434
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
435
  // Get entries published within the specified time range
436
  if ( isset( $options['freshness'] ) && $options['freshness'] ) {
437
 
@@ -444,29 +449,20 @@ class WPP_Admin {
444
 
445
  }
446
 
447
- if ( 'comments' == $options['order_by'] ) {
448
-
449
- if ( $dates ) {
450
- return $where . " AND c.comment_date_gmt BETWEEN '{$dates[0]} 00:00:00' AND '{$dates[1]} 23:59:59' AND c.comment_approved = 1 AND p.post_password = '' AND p.post_status = 'publish'";
451
- }
452
-
453
- return $where . " AND c.comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND c.comment_approved = 1 AND p.post_password = '' AND p.post_status = 'publish'";
454
- }
455
-
456
- if ( $dates ) {
457
- return $where . " AND v.view_datetime BETWEEN '{$dates[0]} 00:00:00' AND '{$dates[1]} 23:59:59' AND p.post_password = '' AND p.post_status = 'publish' ";
458
- }
459
-
460
- return $where . " AND v.view_datetime > DATE_SUB('{$now}', INTERVAL {$interval}) AND p.post_password = '' AND p.post_status = 'publish' ";
461
 
462
  }
463
 
464
  public function chart_query_group_by( $groupby, $options ){
465
- return "GROUP BY date";
 
 
466
  }
467
 
468
  public function chart_query_order_by( $orderby, $options ){
469
- return "ORDER BY date ASC";
 
 
470
  }
471
 
472
  public function chart_query_limit( $fields, $options ){
@@ -587,6 +583,8 @@ class WPP_Admin {
587
  }
588
 
589
  add_filter( 'wpp_query_fields', array( $this, 'chart_query_fields' ), 1, 2 );
 
 
590
  add_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1, 2 );
591
  add_filter( 'wpp_query_group_by', array( $this, 'chart_query_group_by' ), 1, 2 );
592
  add_filter( 'wpp_query_order_by', array( $this, 'chart_query_order_by' ), 1, 2 );
@@ -602,6 +600,8 @@ class WPP_Admin {
602
  $views_data = $most_viewed->get_posts();
603
 
604
  remove_filter( 'wpp_query_fields', array( $this, 'chart_query_fields' ), 1 );
 
 
605
  remove_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1 );
606
  remove_filter( 'wpp_query_group_by', array( $this, 'chart_query_group_by' ), 1 );
607
  remove_filter( 'wpp_query_order_by', array( $this, 'chart_query_order_by' ), 1 );
@@ -639,8 +639,8 @@ class WPP_Admin {
639
 
640
  if ( ( is_array($views_data) && !empty($views_data) ) ) {
641
  foreach( $views_data as $views ) {
642
- if ( isset( $data['dates'][$views->date] ) ) {
643
- $data['dates'][$views->date]['views'] = $views->pageviews;
644
  $data['totals']['views'] += $views->pageviews;
645
  }
646
  }
@@ -648,8 +648,8 @@ class WPP_Admin {
648
 
649
  if ( ( is_array($comments_data) && !empty($comments_data) ) ) {
650
  foreach( $comments_data as $comments ) {
651
- if ( isset( $data['dates'][$comments->date] ) ) {
652
- $data['dates'][$comments->date]['comments'] = $comments->comment_count;
653
  $data['totals']['comments'] += $comments->comment_count;
654
  }
655
  }
@@ -757,10 +757,93 @@ class WPP_Admin {
757
  )
758
  )
759
  );
760
- add_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1, 2 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
761
  $most_viewed = new WPP_query( $args );
762
- remove_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1 );
763
  $posts = $most_viewed->get_posts();
 
764
 
765
  if (
766
  is_array( $posts )
@@ -812,10 +895,93 @@ class WPP_Admin {
812
  )
813
  )
814
  );
815
- add_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1, 2 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
816
  $most_commented = new WPP_query( $args );
817
- remove_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1 );
818
  $posts = $most_commented->get_posts();
 
819
 
820
  if (
821
  is_array( $posts )
@@ -1279,66 +1445,4 @@ class WPP_Admin {
1279
 
1280
  } // end __upgrade
1281
 
1282
- /**
1283
- * Checks if the technical requirements are met.
1284
- *
1285
- * @since 2.4.0
1286
- * @access private
1287
- * @link http://wordpress.stackexchange.com/questions/25910/uninstall-activate-deactivate-a-plugin-typical-features-how-to/25979#25979
1288
- * @global string $wp_version
1289
- * @return array
1290
- */
1291
- private function check_requirements() {
1292
-
1293
- global $wp_version;
1294
-
1295
- $php_min_version = '5.3';
1296
- $wp_min_version = '4.7';
1297
- $php_current_version = phpversion();
1298
- $errors = array();
1299
-
1300
- if ( version_compare( $php_min_version, $php_current_version, '>' ) ) {
1301
- $errors[] = sprintf(
1302
- __( 'Your PHP installation is too old. WordPress Popular Posts requires at least PHP version %1$s to function correctly. Please contact your hosting provider and ask them to upgrade PHP to %1$s or higher.', 'wordpress-popular-posts' ),
1303
- $php_min_version
1304
- );
1305
- }
1306
-
1307
- if ( version_compare( $wp_min_version, $wp_version, '>' ) ) {
1308
- $errors[] = sprintf(
1309
- __( 'Your WordPress version is too old. WordPress Popular Posts requires at least WordPress version %1$s to function correctly. Please update your blog via Dashboard > Update.', 'wordpress-popular-posts' ),
1310
- $wp_min_version
1311
- );
1312
- }
1313
-
1314
- return $errors;
1315
-
1316
- } // end check_requirements
1317
-
1318
- /**
1319
- * Outputs error messages to wp-admin.
1320
- *
1321
- * @since 2.4.0
1322
- */
1323
- public function check_admin_notices() {
1324
-
1325
- $errors = $this->check_requirements();
1326
-
1327
- if ( empty($errors) )
1328
- return;
1329
-
1330
- if ( isset($_GET['activate']) )
1331
- unset($_GET['activate']);
1332
-
1333
- printf(
1334
- __('<div class="notice notice-error"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</strong>.</p></div>', 'wordpress-popular-posts'),
1335
- join( '</p><p>', $errors ),
1336
- 'WordPress Popular Posts'
1337
- );
1338
-
1339
- $plugin_file = 'wordpress-popular-posts/wordpress-popular-posts.php';
1340
- deactivate_plugins( $plugin_file );
1341
-
1342
- } // end check_admin_notices
1343
-
1344
  } // End WPP_Admin class
73
  if ( 1 == $this->options['tools']['log']['limit'] ) {
74
 
75
  if ( !wp_next_scheduled( 'wpp_cache_event' ) ) {
76
+ $midnight = strtotime( 'midnight' ) - ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) + DAY_IN_SECONDS;
 
 
 
 
 
 
 
 
77
  wp_schedule_event( $midnight, 'daily', 'wpp_cache_event' );
78
  }
79
 
299
 
300
  public function chart_query_fields( $fields, $options ){
301
 
302
+ if ( 'comments' == $options['order_by'] )
303
+ return "DATE(comment_date_gmt) AS 'comments_date', COUNT(comment_post_ID) AS 'comment_count'";
 
304
 
305
+ return "SUM(pageviews) AS 'pageviews', view_date";
306
 
307
  }
308
 
309
  public function chart_query_table( $table, $options ){
310
 
311
+ global $wpdb;
 
 
 
312
 
313
+ if ( 'comments' == $options['order_by'] )
314
+ return "`{$wpdb->comments}` c";
315
+
316
+ return "`{$wpdb->prefix}popularpostssummary` v";
317
 
318
  }
319
 
320
  public function chart_query_join( $join, $options ){
321
 
322
+ global $wpdb;
 
 
 
323
 
324
+ if ( 'comments' == $options['order_by'] )
325
+ return "INNER JOIN `{$wpdb->posts}` p ON comment_post_ID = p.ID";
326
+
327
+ return "INNER JOIN `{$wpdb->posts}` p ON postid = p.ID";
328
 
329
  }
330
 
423
  $post_types
424
  );
425
 
426
+ if ( $dates ) {
427
+ if ( 'comments' == $options['order_by'] ) {
428
+ $where .= " AND comment_date_gmt BETWEEN '{$dates[0]} 00:00:00' AND '{$dates[1]} 23:59:59' AND comment_approved = '1'";
429
+ } else {
430
+ $where .= " AND view_datetime BETWEEN '{$dates[0]} 00:00:00' AND '{$dates[1]} 23:59:59'";
431
+ }
432
+ } else {
433
+ if ( 'comments' == $options['order_by'] ) {
434
+ $where .= " AND comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval})";
435
+ } else {
436
+ $where .= " AND view_datetime > DATE_SUB('{$now}', INTERVAL {$interval})";
437
+ }
438
+ }
439
+
440
  // Get entries published within the specified time range
441
  if ( isset( $options['freshness'] ) && $options['freshness'] ) {
442
 
449
 
450
  }
451
 
452
+ return $where . " AND p.post_password = '' AND p.post_status = 'publish' ";
 
 
 
 
 
 
 
 
 
 
 
 
 
453
 
454
  }
455
 
456
  public function chart_query_group_by( $groupby, $options ){
457
+ if ( 'comments' == $options['order_by'] )
458
+ return "GROUP BY comments_date";
459
+ return "GROUP BY view_date";
460
  }
461
 
462
  public function chart_query_order_by( $orderby, $options ){
463
+ if ( 'comments' == $options['order_by'] )
464
+ return "ORDER BY comments_date ASC";
465
+ return "ORDER BY view_date ASC";
466
  }
467
 
468
  public function chart_query_limit( $fields, $options ){
583
  }
584
 
585
  add_filter( 'wpp_query_fields', array( $this, 'chart_query_fields' ), 1, 2 );
586
+ add_filter( 'wpp_query_table', array( $this, 'chart_query_table' ), 1, 2 );
587
+ add_filter( 'wpp_query_join', array( $this, 'chart_query_join' ), 1, 2 );
588
  add_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1, 2 );
589
  add_filter( 'wpp_query_group_by', array( $this, 'chart_query_group_by' ), 1, 2 );
590
  add_filter( 'wpp_query_order_by', array( $this, 'chart_query_order_by' ), 1, 2 );
600
  $views_data = $most_viewed->get_posts();
601
 
602
  remove_filter( 'wpp_query_fields', array( $this, 'chart_query_fields' ), 1 );
603
+ remove_filter( 'wpp_query_table', array( $this, 'chart_query_table' ), 1 );
604
+ remove_filter( 'wpp_query_join', array( $this, 'chart_query_join' ), 1 );
605
  remove_filter( 'wpp_query_where', array( $this, 'chart_query_where' ), 1 );
606
  remove_filter( 'wpp_query_group_by', array( $this, 'chart_query_group_by' ), 1 );
607
  remove_filter( 'wpp_query_order_by', array( $this, 'chart_query_order_by' ), 1 );
639
 
640
  if ( ( is_array($views_data) && !empty($views_data) ) ) {
641
  foreach( $views_data as $views ) {
642
+ if ( isset( $data['dates'][$views->view_date] ) ) {
643
+ $data['dates'][$views->view_date]['views'] = $views->pageviews;
644
  $data['totals']['views'] += $views->pageviews;
645
  }
646
  }
648
 
649
  if ( ( is_array($comments_data) && !empty($comments_data) ) ) {
650
  foreach( $comments_data as $comments ) {
651
+ if ( isset( $data['dates'][$comments->comments_date] ) ) {
652
+ $data['dates'][$comments->comments_date]['comments'] = $comments->comment_count;
653
  $data['totals']['comments'] += $comments->comment_count;
654
  }
655
  }
757
  )
758
  )
759
  );
760
+
761
+ add_filter('wpp_query_join', function($join, $options){
762
+
763
+ global $wpdb;
764
+ $dates = null;
765
+
766
+ if ( isset( $_GET['dates']) ) {
767
+
768
+ $dates = explode( " ~ ", $_GET['dates'] );
769
+
770
+ if (
771
+ !is_array( $dates )
772
+ || empty( $dates )
773
+ || !WPP_Helper::is_valid_date( $dates[0] )
774
+ ) {
775
+ $dates = null;
776
+ } else {
777
+ if (
778
+ !isset( $dates[1] )
779
+ || !WPP_Helper::is_valid_date( $dates[1] )
780
+ ) {
781
+ $dates[1] = $dates[0];
782
+ }
783
+
784
+ $end_date = $dates[1];
785
+ $start_date = $dates[0];
786
+ }
787
+
788
+ }
789
+
790
+ if ( $dates ) {
791
+ return "INNER JOIN (SELECT SUM(pageviews) AS pageviews, view_date, postid FROM `{$wpdb->prefix}popularpostssummary` WHERE view_datetime BETWEEN '{$dates[0]} 00:00:00' AND '{$dates[1]} 23:59:59' GROUP BY postid) v ON p.ID = v.postid";
792
+ }
793
+
794
+ $now = WPP_Helper::now();
795
+
796
+ // Determine time range
797
+ switch( $options['range'] ){
798
+ case "last24hours":
799
+ case "daily":
800
+ $interval = "24 HOUR";
801
+ break;
802
+
803
+ case "today":
804
+ $hours = date( 'H', strtotime($now) );
805
+ $minutes = $hours * 60 + (int) date( 'i', strtotime($now) );
806
+ $interval = "{$minutes} MINUTE";
807
+ break;
808
+
809
+ case "last7days":
810
+ case "weekly":
811
+ $interval = "6 DAY";
812
+ break;
813
+
814
+ case "last30days":
815
+ case "monthly":
816
+ $interval = "29 DAY";
817
+ break;
818
+
819
+ case "custom":
820
+ $time_units = array( "MINUTE", "HOUR", "DAY" );
821
+ $interval = "24 HOUR";
822
+
823
+ // Valid time unit
824
+ if (
825
+ isset( $options['time_unit'] )
826
+ && in_array( strtoupper( $options['time_unit'] ), $time_units )
827
+ && isset( $options['time_quantity'] )
828
+ && filter_var( $options['time_quantity'], FILTER_VALIDATE_INT )
829
+ && $options['time_quantity'] > 0
830
+ ) {
831
+ $interval = "{$options['time_quantity']} " . strtoupper( $options['time_unit'] );
832
+ }
833
+
834
+ break;
835
+
836
+ default:
837
+ $interval = "1 DAY";
838
+ break;
839
+ }
840
+
841
+ return "INNER JOIN (SELECT SUM(pageviews) AS pageviews, view_date, postid FROM `{$wpdb->prefix}popularpostssummary` WHERE view_datetime > DATE_SUB('{$now}', INTERVAL {$interval}) GROUP BY postid) v ON p.ID = v.postid";
842
+
843
+ }, 1, 2);
844
  $most_viewed = new WPP_query( $args );
 
845
  $posts = $most_viewed->get_posts();
846
+ remove_all_filters('wpp_query_join', 1);
847
 
848
  if (
849
  is_array( $posts )
895
  )
896
  )
897
  );
898
+
899
+ add_filter('wpp_query_join', function($join, $options){
900
+
901
+ global $wpdb;
902
+ $dates = null;
903
+
904
+ if ( isset( $_GET['dates']) ) {
905
+
906
+ $dates = explode( " ~ ", $_GET['dates'] );
907
+
908
+ if (
909
+ !is_array( $dates )
910
+ || empty( $dates )
911
+ || !WPP_Helper::is_valid_date( $dates[0] )
912
+ ) {
913
+ $dates = null;
914
+ } else {
915
+ if (
916
+ !isset( $dates[1] )
917
+ || !WPP_Helper::is_valid_date( $dates[1] )
918
+ ) {
919
+ $dates[1] = $dates[0];
920
+ }
921
+
922
+ $end_date = $dates[1];
923
+ $start_date = $dates[0];
924
+ }
925
+
926
+ }
927
+
928
+ if ( $dates ) {
929
+ return "INNER JOIN (SELECT comment_post_ID, COUNT(comment_post_ID) AS comment_count, comment_date_gmt FROM `{$wpdb->comments}` WHERE comment_date_gmt BETWEEN '{$dates[0]} 00:00:00' AND '{$dates[1]} 23:59:59' AND comment_approved = '1' GROUP BY comment_post_ID) c ON p.ID = c.comment_post_ID";
930
+ }
931
+
932
+ $now = WPP_Helper::now();
933
+
934
+ // Determine time range
935
+ switch( $options['range'] ){
936
+ case "last24hours":
937
+ case "daily":
938
+ $interval = "24 HOUR";
939
+ break;
940
+
941
+ case "today":
942
+ $hours = date( 'H', strtotime($now) );
943
+ $minutes = $hours * 60 + (int) date( 'i', strtotime($now) );
944
+ $interval = "{$minutes} MINUTE";
945
+ break;
946
+
947
+ case "last7days":
948
+ case "weekly":
949
+ $interval = "6 DAY";
950
+ break;
951
+
952
+ case "last30days":
953
+ case "monthly":
954
+ $interval = "29 DAY";
955
+ break;
956
+
957
+ case "custom":
958
+ $time_units = array( "MINUTE", "HOUR", "DAY" );
959
+ $interval = "24 HOUR";
960
+
961
+ // Valid time unit
962
+ if (
963
+ isset( $options['time_unit'] )
964
+ && in_array( strtoupper( $options['time_unit'] ), $time_units )
965
+ && isset( $options['time_quantity'] )
966
+ && filter_var( $options['time_quantity'], FILTER_VALIDATE_INT )
967
+ && $options['time_quantity'] > 0
968
+ ) {
969
+ $interval = "{$options['time_quantity']} " . strtoupper( $options['time_unit'] );
970
+ }
971
+
972
+ break;
973
+
974
+ default:
975
+ $interval = "1 DAY";
976
+ break;
977
+ }
978
+
979
+ return "INNER JOIN (SELECT comment_post_ID, COUNT(comment_post_ID) AS comment_count, comment_date_gmt FROM `{$wpdb->comments}` WHERE comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND comment_approved = '1' GROUP BY comment_post_ID) c ON p.ID = c.comment_post_ID";
980
+
981
+ }, 1, 2);
982
  $most_commented = new WPP_query( $args );
 
983
  $posts = $most_commented->get_posts();
984
+ remove_all_filters('wpp_query_join', 1);
985
 
986
  if (
987
  is_array( $posts )
1445
 
1446
  } // end __upgrade
1447
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1448
  } // End WPP_Admin class
admin/partials/admin.php CHANGED
@@ -980,6 +980,8 @@ if ( !$wpp_rand = get_option("wpp_rand") ) {
980
  <p><strong>InnoDB availability:</strong> <?php echo $wpdb->get_var( "SELECT SUPPORT FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE = 'InnoDB';" ); ?></p>
981
  <p><strong>WordPress version:</strong> <?php echo $wp_version; ?></p>
982
  <p><strong>Multisite:</strong> <?php echo ( function_exists( 'is_multisite' ) && is_multisite() ) ? 'Yes' : 'No'; ?></p>
 
 
983
  <p><strong>Active plugins:</strong> <?php echo implode( ', ', $plugin_names ); ?></p>
984
  <p><strong>Theme:</strong> <?php echo $my_theme->get( 'Name' ) . ' (' . $my_theme->get( 'Version' ) . ') by ' . $my_theme->get( 'Author' ); ?></p>
985
  </div>
980
  <p><strong>InnoDB availability:</strong> <?php echo $wpdb->get_var( "SELECT SUPPORT FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE = 'InnoDB';" ); ?></p>
981
  <p><strong>WordPress version:</strong> <?php echo $wp_version; ?></p>
982
  <p><strong>Multisite:</strong> <?php echo ( function_exists( 'is_multisite' ) && is_multisite() ) ? 'Yes' : 'No'; ?></p>
983
+ <p><strong>External object cache:</strong> <?php echo ( wp_using_ext_object_cache() ) ? 'Yes' : 'No'; ?></p>
984
+ <p><strong>WPP_CACHE_VIEWS:</strong> <?php echo ( defined( 'WPP_CACHE_VIEWS' ) && WPP_CACHE_VIEWS ) ? 'Yes' : 'No'; ?></p>
985
  <p><strong>Active plugins:</strong> <?php echo implode( ', ', $plugin_names ); ?></p>
986
  <p><strong>Theme:</strong> <?php echo $my_theme->get( 'Name' ) . ' (' . $my_theme->get( 'Version' ) . ') by ' . $my_theme->get( 'Author' ); ?></p>
987
  </div>
includes/class-wordpress-popular-posts-activator.php CHANGED
@@ -29,7 +29,7 @@ class WPP_Activator {
29
  * @param bool $network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog.
30
  */
31
  public static function activate( $network_wide ) {
32
-
33
  global $wpdb;
34
 
35
  if ( function_exists( 'is_multisite' ) && is_multisite() ) {
@@ -133,4 +133,39 @@ class WPP_Activator {
133
 
134
  } // end do_db_tables
135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  } // end WPP_Activator class
29
  * @param bool $network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog.
30
  */
31
  public static function activate( $network_wide ) {
32
+
33
  global $wpdb;
34
 
35
  if ( function_exists( 'is_multisite' ) && is_multisite() ) {
133
 
134
  } // end do_db_tables
135
 
136
+ /**
137
+ * Checks if the technical requirements are met.
138
+ *
139
+ * @since 2.4.0
140
+ * @link http://wordpress.stackexchange.com/questions/25910/uninstall-activate-deactivate-a-plugin-typical-features-how-to/25979#25979
141
+ * @global string $wp_version
142
+ * @return array
143
+ */
144
+ public static function check_requirements() {
145
+
146
+ global $wp_version;
147
+
148
+ $php_min_version = '5.3';
149
+ $wp_min_version = '4.7';
150
+ $php_current_version = phpversion();
151
+ $errors = array();
152
+
153
+ if ( version_compare( $php_min_version, $php_current_version, '>' ) ) {
154
+ $errors[] = sprintf(
155
+ __( 'Your PHP installation is too old. WordPress Popular Posts requires at least PHP version %1$s to function correctly. Please contact your hosting provider and ask them to upgrade PHP to %1$s or higher.', 'wordpress-popular-posts' ),
156
+ $php_min_version
157
+ );
158
+ }
159
+
160
+ if ( version_compare( $wp_min_version, $wp_version, '>' ) ) {
161
+ $errors[] = sprintf(
162
+ __( 'Your WordPress version is too old. WordPress Popular Posts requires at least WordPress version %1$s to function correctly. Please update your blog via Dashboard &gt; Update.', 'wordpress-popular-posts' ),
163
+ $wp_min_version
164
+ );
165
+ }
166
+
167
+ return $errors;
168
+
169
+ } // end check_requirements
170
+
171
  } // end WPP_Activator class
includes/class-wordpress-popular-posts-admin-notices.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Helper class to display admin notices.
4
+ *
5
+ * @package WordPressPopularPosts
6
+ * @subpackage WordPressPopularPosts/includes
7
+ * @author Hector Cabrera <me@cabrerahector.com>
8
+ */
9
+
10
+ class WPP_Message {
11
+ /**
12
+ * Message(s) to display.
13
+ *
14
+ * @since 4.2.0
15
+ * @access private
16
+ * @var array $message
17
+ */
18
+ private $message;
19
+
20
+ /**
21
+ * CSS class(es) to use on the notice.
22
+ *
23
+ * @since 4.2.0
24
+ * @access private
25
+ * @var string $class
26
+ */
27
+ private $class;
28
+
29
+ function __construct( $message, $class ) {
30
+ $this->message = $message;
31
+ $this->class = $class;
32
+
33
+ add_action( 'admin_notices', array( $this, 'render' ) );
34
+ }
35
+
36
+ function render() {
37
+ printf(
38
+ '<div class="notice ' . $this->class . '"><p>%s</p></div>',
39
+ join( '</p><p>', $this->message )
40
+ );
41
+ }
42
+ }
includes/class-wordpress-popular-posts-i18n.php CHANGED
@@ -32,11 +32,8 @@ class WPP_i18n {
32
  * @since 1.0.0
33
  */
34
  public function load_plugin_textdomain() {
35
-
36
  $locale = apply_filters( 'plugin_locale', get_locale(), 'wordpress-popular-posts' );
37
  load_textdomain( 'wordpress-popular-posts', WP_LANG_DIR . '/' . 'wordpress-popular-posts' . '/' . 'wordpress-popular-posts' . '-' . $locale . '.mo' );
38
- load_plugin_textdomain( 'wordpress-popular-posts', false, dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/' );
39
-
40
  }
41
 
42
  } // End WPP_i18n class
32
  * @since 1.0.0
33
  */
34
  public function load_plugin_textdomain() {
 
35
  $locale = apply_filters( 'plugin_locale', get_locale(), 'wordpress-popular-posts' );
36
  load_textdomain( 'wordpress-popular-posts', WP_LANG_DIR . '/' . 'wordpress-popular-posts' . '/' . 'wordpress-popular-posts' . '-' . $locale . '.mo' );
 
 
37
  }
38
 
39
  } // End WPP_i18n class
includes/class-wordpress-popular-posts-output.php CHANGED
@@ -570,6 +570,8 @@ class WPP_Output {
570
  && !empty( $terms )
571
  ) {
572
 
 
 
573
  foreach( $terms as $term ) {
574
 
575
  $term_link = get_term_link( $term );
@@ -577,7 +579,7 @@ class WPP_Output {
577
  if ( is_wp_error( $term_link ) )
578
  continue;
579
 
580
- $post_tax .= "<a href=\"{$term_link}\" class=\"{$taxonomy} {$taxonomy}-{$term->term_id}\">{$term->name}</a>, ";
581
 
582
  }
583
 
@@ -586,7 +588,7 @@ class WPP_Output {
586
  }
587
 
588
  if ( '' != $post_tax )
589
- $post_tax = rtrim( $post_tax, ", " );
590
 
591
  }
592
 
@@ -895,7 +897,7 @@ class WPP_Output {
895
  $string = str_replace( "{date}", $data['date'], $string );
896
  }
897
 
898
- return $string;
899
 
900
  }
901
 
570
  && !empty( $terms )
571
  ) {
572
 
573
+ $taxonomy_separator = apply_filters( 'wpp_taxonomy_separator', ', ' );
574
+
575
  foreach( $terms as $term ) {
576
 
577
  $term_link = get_term_link( $term );
579
  if ( is_wp_error( $term_link ) )
580
  continue;
581
 
582
+ $post_tax .= "<a href=\"{$term_link}\" class=\"{$taxonomy} {$taxonomy}-{$term->term_id}\">{$term->name}</a>" . $taxonomy_separator;
583
 
584
  }
585
 
588
  }
589
 
590
  if ( '' != $post_tax )
591
+ $post_tax = rtrim( $post_tax, $taxonomy_separator );
592
 
593
  }
594
 
897
  $string = str_replace( "{date}", $data['date'], $string );
898
  }
899
 
900
+ return apply_filters( "wpp_parse_custom_content_tags", $string, $data['id'] );
901
 
902
  }
903
 
includes/class-wordpress-popular-posts-query.php CHANGED
@@ -234,14 +234,15 @@ class WPP_Query {
234
 
235
  }
236
 
 
 
237
  // All-time range
238
  if ( "all" == $this->options['range'] ) {
239
 
240
  // Order by views count
241
  if ( "comments" != $this->options['order_by'] ) {
242
 
243
- $table = "`{$wpdb->prefix}popularpostsdata` v";
244
- $join = "LEFT JOIN `{$wpdb->posts}` p ON v.postid = p.ID";
245
 
246
  // Order by views
247
  if ( "views" == $this->options['order_by'] ) {
@@ -256,7 +257,7 @@ class WPP_Query {
256
  // Order by average views
257
  else {
258
 
259
- $now = current_time( 'mysql' );
260
 
261
  $fields .= ", ( v.pageviews/(IF ( DATEDIFF('{$now}', MIN(v.day)) > 0, DATEDIFF('{$now}', MIN(v.day)), 1) ) ) AS avg_views";
262
  $groupby = "GROUP BY v.postid";
@@ -273,7 +274,6 @@ class WPP_Query {
273
  // Order by comments count
274
  else {
275
 
276
- $table = "`{$wpdb->posts}` p";
277
  $where .= " AND p.comment_count > 0";
278
  $orderby = "ORDER BY p.comment_count DESC";
279
 
@@ -285,7 +285,7 @@ class WPP_Query {
285
  // Display views count, too
286
  if ( isset($this->options['stats_tag']['views']) && $this->options['stats_tag']['views'] ) {
287
  $fields .= ", IFNULL(v.pageviews, 0) AS pageviews";
288
- $join = "LEFT JOIN `{$wpdb->prefix}popularpostsdata` v ON p.ID = v.postid";
289
  }
290
 
291
  }
@@ -294,7 +294,7 @@ class WPP_Query {
294
  // Custom time range
295
  else {
296
 
297
- $now = current_time( 'mysql' );
298
 
299
  // Determine time range
300
  switch( $this->options['range'] ){
@@ -343,57 +343,37 @@ class WPP_Query {
343
  // Order by views count
344
  if ( "comments" != $this->options['order_by'] ) {
345
 
346
- $table = "`{$wpdb->prefix}popularpostssummary` v";
347
- $join = "LEFT JOIN `{$wpdb->posts}` p ON v.postid = p.ID";
348
- $where .= " AND v.view_datetime > DATE_SUB('{$now}', INTERVAL {$interval})";
349
- $groupby = "GROUP BY v.postid";
350
-
351
  // Order by views
352
  if ( "views" == $this->options['order_by'] ) {
353
-
354
- if ( !isset($this->options['stats_tag']['views']) || $this->options['stats_tag']['views'] ) {
355
- $fields .= ", SUM(v.pageviews) AS pageviews";
356
- $orderby = "ORDER BY pageviews DESC";
357
- }
358
- else {
359
- $orderby = "ORDER BY SUM(v.pageviews) DESC";
360
- }
361
-
362
  }
363
  // Order by average views
364
  else {
365
- $fields .= ", ( SUM(v.pageviews)/(IF ( DATEDIFF('{$now}', DATE_SUB('{$now}', INTERVAL {$interval})) > 0, DATEDIFF('{$now}', DATE_SUB('{$now}', INTERVAL {$interval})), 1) ) ) AS avg_views";
 
366
  $orderby = "ORDER BY avg_views DESC";
367
  }
368
 
369
  // Display comments count, too
370
  if ( isset($this->options['stats_tag']['comment_count']) && $this->options['stats_tag']['comment_count'] ) {
371
  $fields .= ", IFNULL(c.comment_count, 0) AS comment_count";
372
- $join .= " LEFT JOIN (SELECT comment_post_ID, COUNT(comment_post_ID) AS comment_count FROM `{$wpdb->comments}` WHERE comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND comment_approved = 1 GROUP BY comment_post_ID) c ON p.ID = c.comment_post_ID";
373
  }
374
 
375
  }
376
  // Order by comments count
377
  else {
378
 
379
- $table = "`{$wpdb->comments}` c";
380
- $join = "LEFT JOIN {$wpdb->posts} p ON c.comment_post_ID = p.ID";
381
- $where .= " AND c.comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND c.comment_approved = 1";
382
- $groupby = "GROUP BY c.comment_post_ID";
383
-
384
- // Display comment count
385
- if ( isset($this->options['stats_tag']['comment_count']) && $this->options['stats_tag']['comment_count'] ) {
386
- $fields .= ", COUNT(c.comment_post_ID) AS comment_count";
387
- $orderby = "ORDER BY comment_count DESC";
388
- }
389
- else {
390
- $orderby = "ORDER BY COUNT(c.comment_post_ID) DESC";
391
- }
392
 
393
  // Display views count, too
394
  if ( isset($this->options['stats_tag']['views']) && $this->options['stats_tag']['views'] ) {
395
- $fields .= ", IFNULL(v.pageviews, 0) AS pageviews";
396
- $join .= " LEFT JOIN (SELECT postid, SUM(pageviews) AS pageviews FROM `{$wpdb->prefix}popularpostssummary` WHERE view_datetime > DATE_SUB('{$now}', INTERVAL {$interval}) GROUP BY postid) v ON p.ID = v.postid";
397
  }
398
 
399
  }
@@ -417,7 +397,6 @@ class WPP_Query {
417
 
418
  // Finally, build the query
419
  $query = "SELECT {$fields} FROM {$table} {$join} {$where} {$groupby} {$orderby} {$limit};";
420
- //$this->query = ( !empty($args) && !has_filter('wpp_query_where') ) ? $wpdb->prepare( $query, $args ) : $query;
421
  $this->query = $query;
422
 
423
  }
234
 
235
  }
236
 
237
+ $table = "`{$wpdb->posts}` p";
238
+
239
  // All-time range
240
  if ( "all" == $this->options['range'] ) {
241
 
242
  // Order by views count
243
  if ( "comments" != $this->options['order_by'] ) {
244
 
245
+ $join = "INNER JOIN `{$wpdb->prefix}popularpostsdata` v ON p.ID = v.postid";
 
246
 
247
  // Order by views
248
  if ( "views" == $this->options['order_by'] ) {
257
  // Order by average views
258
  else {
259
 
260
+ $now = WPP_Helper::now();
261
 
262
  $fields .= ", ( v.pageviews/(IF ( DATEDIFF('{$now}', MIN(v.day)) > 0, DATEDIFF('{$now}', MIN(v.day)), 1) ) ) AS avg_views";
263
  $groupby = "GROUP BY v.postid";
274
  // Order by comments count
275
  else {
276
 
 
277
  $where .= " AND p.comment_count > 0";
278
  $orderby = "ORDER BY p.comment_count DESC";
279
 
285
  // Display views count, too
286
  if ( isset($this->options['stats_tag']['views']) && $this->options['stats_tag']['views'] ) {
287
  $fields .= ", IFNULL(v.pageviews, 0) AS pageviews";
288
+ $join = "INNER JOIN `{$wpdb->prefix}popularpostsdata` v ON p.ID = v.postid";
289
  }
290
 
291
  }
294
  // Custom time range
295
  else {
296
 
297
+ $now = WPP_Helper::now();
298
 
299
  // Determine time range
300
  switch( $this->options['range'] ){
343
  // Order by views count
344
  if ( "comments" != $this->options['order_by'] ) {
345
 
 
 
 
 
 
346
  // Order by views
347
  if ( "views" == $this->options['order_by'] ) {
348
+ $fields .= ", v.pageviews";
349
+ $join = "INNER JOIN (SELECT SUM(pageviews) AS pageviews, postid FROM `{$wpdb->prefix}popularpostssummary` WHERE view_datetime > DATE_SUB('{$now}', INTERVAL {$interval}) GROUP BY postid) v ON p.ID = v.postid";
350
+ $orderby = "ORDER BY pageviews DESC";
 
 
 
 
 
 
351
  }
352
  // Order by average views
353
  else {
354
+ $fields .= ", v.avg_views";
355
+ $join = "INNER JOIN (SELECT SUM(pageviews)/(IF ( DATEDIFF('{$now}', DATE_SUB('{$now}', INTERVAL {$interval})) > 0, DATEDIFF('{$now}', DATE_SUB('{$now}', INTERVAL {$interval})), 1) ) AS avg_views, postid FROM `{$wpdb->prefix}popularpostssummary` WHERE view_datetime > DATE_SUB('{$now}', INTERVAL {$interval}) GROUP BY postid) v ON p.ID = v.postid";
356
  $orderby = "ORDER BY avg_views DESC";
357
  }
358
 
359
  // Display comments count, too
360
  if ( isset($this->options['stats_tag']['comment_count']) && $this->options['stats_tag']['comment_count'] ) {
361
  $fields .= ", IFNULL(c.comment_count, 0) AS comment_count";
362
+ $join .= " LEFT JOIN (SELECT comment_post_ID, COUNT(comment_post_ID) AS comment_count FROM `{$wpdb->comments}` WHERE comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND comment_approved = '1' GROUP BY comment_post_ID) c ON p.ID = c.comment_post_ID";
363
  }
364
 
365
  }
366
  // Order by comments count
367
  else {
368
 
369
+ $fields .= ", c.comment_count";
370
+ $join = "INNER JOIN (SELECT COUNT(comment_post_ID) AS comment_count, comment_post_ID FROM `{$wpdb->comments}` WHERE comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND comment_approved = '1' GROUP BY comment_post_ID) c ON p.ID = c.comment_post_ID";
371
+ $orderby = "ORDER BY comment_count DESC";
 
 
 
 
 
 
 
 
 
 
372
 
373
  // Display views count, too
374
  if ( isset($this->options['stats_tag']['views']) && $this->options['stats_tag']['views'] ) {
375
+ $fields .= ", v.pageviews";
376
+ $join .= " INNER JOIN (SELECT SUM(pageviews) AS pageviews, postid FROM `{$wpdb->prefix}popularpostssummary` WHERE view_datetime > DATE_SUB('{$now}', INTERVAL {$interval}) GROUP BY postid) v ON p.ID = v.postid";
377
  }
378
 
379
  }
397
 
398
  // Finally, build the query
399
  $query = "SELECT {$fields} FROM {$table} {$join} {$where} {$groupby} {$orderby} {$limit};";
 
400
  $this->query = $query;
401
 
402
  }
includes/class-wordpress-popular-posts-rest-controller.php CHANGED
@@ -211,34 +211,134 @@ class WP_REST_Popular_Posts_Controller extends WP_REST_Controller {
211
  if ( has_action( 'wpp_pre_update_views' ) )
212
  do_action( 'wpp_pre_update_views', $post_ID, $views );
213
 
 
 
214
  $exec_time = 0;
215
  $start = WPP_helper::microtime_float();
216
 
217
- // Update all-time table
218
- $result1 = $wpdb->query( $wpdb->prepare(
219
- "INSERT INTO {$table}data
220
- (postid, day, last_viewed, pageviews) VALUES (%d, %s, %s, %d)
221
- ON DUPLICATE KEY UPDATE pageviews = pageviews + %d, last_viewed = %s;",
222
- $post_ID,
223
- $now,
224
- $now,
225
- $views,
226
- $views,
227
- $now
228
- ));
229
-
230
- // Update range (summary) table
231
- $result2 = $wpdb->query( $wpdb->prepare(
232
- "INSERT INTO {$table}summary
233
- (postid, pageviews, view_date, view_datetime) VALUES (%d, %d, %s, %s)
234
- ON DUPLICATE KEY UPDATE pageviews = pageviews + %d, view_datetime = %s;",
235
- $post_ID,
236
- $views,
237
- $curdate,
238
- $now,
239
- $views,
240
- $now
241
- ));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
 
243
  $end = WPP_helper::microtime_float();
244
  $exec_time += round( $end - $start, 6 );
@@ -268,7 +368,7 @@ class WP_REST_Popular_Posts_Controller extends WP_REST_Controller {
268
  'post_type' => array(
269
  'description' => __( 'Return popular posts from specified custom post type(s).' ),
270
  'type' => 'string',
271
- 'default' => 'post,page',
272
  'sanitize_callback' => 'sanitize_text_field',
273
  'validate_callback' => 'rest_validate_request_arg',
274
  ),
@@ -305,10 +405,10 @@ class WP_REST_Popular_Posts_Controller extends WP_REST_Controller {
305
  'validate_callback' => 'rest_validate_request_arg',
306
  ),
307
  'range' => array(
308
- 'description' => __( 'Return posts from a specified time range.' ),
309
  'type' => 'string',
310
- 'enum' => array( 'today', 'daily', 'last24hours', 'weekly', 'last7days', 'monthly', 'last30days', 'all', 'custom' ),
311
- 'default' => 'daily',
312
  'sanitize_callback' => 'sanitize_text_field',
313
  'validate_callback' => 'rest_validate_request_arg',
314
  ),
@@ -329,7 +429,7 @@ class WP_REST_Popular_Posts_Controller extends WP_REST_Controller {
329
  'validate_callback' => 'rest_validate_request_arg',
330
  ),
331
  'pid' => array(
332
- 'description' => __( 'Post IDs to exclude.' ),
333
  'type' => 'string',
334
  'sanitize_callback' => function( $pid ) {
335
  return rtrim( preg_replace( '|[^0-9,]|', '', $pid ), ',' );
@@ -353,7 +453,7 @@ class WP_REST_Popular_Posts_Controller extends WP_REST_Controller {
353
  'validate_callback' => 'rest_validate_request_arg',
354
  ),
355
  'author' => array(
356
- 'description' => __( 'Author ID(s).' ),
357
  'type' => 'string',
358
  'sanitize_callback' => function( $author ) {
359
  return rtrim( preg_replace( '|[^0-9,]|', '', $author ), ',' );
@@ -412,7 +512,7 @@ class WP_REST_Popular_Posts_Controller extends WP_REST_Controller {
412
  public function get_widget_params() {
413
  return array(
414
  'id' => array(
415
- 'description' => __( 'The post / page ID.' ),
416
  'type' => 'integer',
417
  'default' => 0,
418
  'sanitize_callback' => 'absint',
211
  if ( has_action( 'wpp_pre_update_views' ) )
212
  do_action( 'wpp_pre_update_views', $post_ID, $views );
213
 
214
+ $result1 = $result2 = false;
215
+
216
  $exec_time = 0;
217
  $start = WPP_helper::microtime_float();
218
 
219
+ // Store views data in persistent object cache
220
+ if (
221
+ wp_using_ext_object_cache()
222
+ && defined( 'WPP_CACHE_VIEWS' )
223
+ && WPP_CACHE_VIEWS
224
+ ) {
225
+
226
+ $now = new DateTime( WPP_Helper::now() );
227
+ $timestamp = $now->getTimestamp();
228
+
229
+ if ( ! $wpp_cache = wp_cache_get( '_wpp_cache', 'transient' ) ) {
230
+
231
+ $wpp_cache = array(
232
+ 'last_updated' => $now->format('Y-m-d H:i:s'),
233
+ 'data' => array(
234
+ $post_ID => array(
235
+ $timestamp => 1
236
+ )
237
+ )
238
+ );
239
+
240
+ } else {
241
+
242
+ if ( ! isset( $wpp_cache['data'][$post_ID] ) ) {
243
+ $wpp_cache['data'][$post_ID][$timestamp] = 1;
244
+ } else {
245
+
246
+ if ( isset($wpp_cache['data'][$post_ID][$timestamp]) ) {
247
+ $wpp_cache['data'][$post_ID][$timestamp] += 1;
248
+ } else {
249
+ $wpp_cache['data'][$post_ID][$timestamp] = 1;
250
+ }
251
+
252
+ }
253
+
254
+ }
255
+
256
+ // Update cache
257
+ wp_cache_set( '_wpp_cache', $wpp_cache, 'transient', 0 );
258
+
259
+ // How long has it been since the last time we saved to the database?
260
+ $last_update = $now->diff( new DateTime($wpp_cache['last_updated']) );
261
+ $diff_in_minutes = $last_update->days * 24 * 60;
262
+ $diff_in_minutes += $last_update->h * 60;
263
+ $diff_in_minutes += $last_update->i;
264
+
265
+ // It's been more than 5 minutes, save everything to DB
266
+ if ( $diff_in_minutes > 2 ) {
267
+
268
+ $query_data = "INSERT INTO {$table}data (`postid`,`day`,`last_viewed`,`pageviews`) VALUES ";
269
+ $query_summary = "INSERT INTO {$table}summary (`postid`,`pageviews`,`view_date`,`view_datetime`) VALUES ";
270
+
271
+ foreach( $wpp_cache['data'] as $pid => $data ) {
272
+
273
+ $views_count = 0;
274
+
275
+ foreach( $data as $ts => $cached_views ){
276
+ $views_count += $cached_views;
277
+
278
+ $query_summary .= $wpdb->prepare( "(%d,%d,%s,%s),", array(
279
+ $pid,
280
+ $cached_views,
281
+ date("Y-m-d", $ts),
282
+ date("Y-m-d H:i:s", $ts)
283
+ ));
284
+ }
285
+
286
+ $query_data .= $wpdb->prepare( "(%d,%s,%s,%s),", array(
287
+ $pid,
288
+ $now->format('Y-m-d H:i:s'),
289
+ $now->format('Y-m-d H:i:s'),
290
+ $views_count
291
+ ));
292
+
293
+ }
294
+
295
+ $query_data = rtrim( $query_data, ",") . " ON DUPLICATE KEY UPDATE pageviews=pageviews+VALUES(pageviews),last_viewed=VALUES(last_viewed);";
296
+ $query_summary = rtrim( $query_summary, ",") . ";";
297
+
298
+ // Clear cache
299
+ $wpp_cache['last_updated'] = $now->format('Y-m-d H:i:s');
300
+ $wpp_cache['data'] = array();
301
+ wp_cache_set( '_wpp_cache', $wpp_cache, 'transient', 0 );
302
+
303
+ // Save
304
+ $result1 = $wpdb->query( $query_data );
305
+ $result2 = $wpdb->query( $query_summary );
306
+
307
+ }
308
+ else {
309
+ $result1 = $result2 = true;
310
+ }
311
+
312
+ } // Live update to the DB
313
+ else {
314
+
315
+ // Update all-time table
316
+ $result1 = $wpdb->query( $wpdb->prepare(
317
+ "INSERT INTO {$table}data
318
+ (postid, day, last_viewed, pageviews) VALUES (%d, %s, %s, %d)
319
+ ON DUPLICATE KEY UPDATE pageviews = pageviews + %d, last_viewed = %s;",
320
+ $post_ID,
321
+ $now,
322
+ $now,
323
+ $views,
324
+ $views,
325
+ $now
326
+ ));
327
+
328
+ // Update range (summary) table
329
+ $result2 = $wpdb->query( $wpdb->prepare(
330
+ "INSERT INTO {$table}summary
331
+ (postid, pageviews, view_date, view_datetime) VALUES (%d, %d, %s, %s)
332
+ ON DUPLICATE KEY UPDATE pageviews = pageviews + %d, view_datetime = %s;",
333
+ $post_ID,
334
+ $views,
335
+ $curdate,
336
+ $now,
337
+ $views,
338
+ $now
339
+ ));
340
+
341
+ }
342
 
343
  $end = WPP_helper::microtime_float();
344
  $exec_time += round( $end - $start, 6 );
368
  'post_type' => array(
369
  'description' => __( 'Return popular posts from specified custom post type(s).' ),
370
  'type' => 'string',
371
+ 'default' => 'post',
372
  'sanitize_callback' => 'sanitize_text_field',
373
  'validate_callback' => 'rest_validate_request_arg',
374
  ),
405
  'validate_callback' => 'rest_validate_request_arg',
406
  ),
407
  'range' => array(
408
+ 'description' => __( 'Return popular posts from a specified time range.' ),
409
  'type' => 'string',
410
+ 'enum' => array( 'last24hours', 'last7days', 'last30days', 'all', 'custom' ),
411
+ 'default' => 'last24hours',
412
  'sanitize_callback' => 'sanitize_text_field',
413
  'validate_callback' => 'rest_validate_request_arg',
414
  ),
429
  'validate_callback' => 'rest_validate_request_arg',
430
  ),
431
  'pid' => array(
432
+ 'description' => __( 'Post IDs to exclude from the listing.' ),
433
  'type' => 'string',
434
  'sanitize_callback' => function( $pid ) {
435
  return rtrim( preg_replace( '|[^0-9,]|', '', $pid ), ',' );
453
  'validate_callback' => 'rest_validate_request_arg',
454
  ),
455
  'author' => array(
456
+ 'description' => __( 'Include popular posts from author ID(s).' ),
457
  'type' => 'string',
458
  'sanitize_callback' => function( $author ) {
459
  return rtrim( preg_replace( '|[^0-9,]|', '', $author ), ',' );
512
  public function get_widget_params() {
513
  return array(
514
  'id' => array(
515
+ 'description' => __( 'Widget instance ID' ),
516
  'type' => 'integer',
517
  'default' => 0,
518
  'sanitize_callback' => 'absint',
includes/class-wordpress-popular-posts-template.php CHANGED
@@ -81,6 +81,14 @@ function wpp_get_mostpopular($args = NULL) {
81
  if( is_array( $args ) ){
82
  $atts = '';
83
  foreach( $args as $key => $arg ){
 
 
 
 
 
 
 
 
84
  $atts .= ' ' . $key . '="' . htmlspecialchars($arg, ENT_QUOTES, $encoding = ini_get("default_charset"), false) . '"';
85
  }
86
  } else {
81
  if( is_array( $args ) ){
82
  $atts = '';
83
  foreach( $args as $key => $arg ){
84
+ if (
85
+ is_array( $arg )
86
+ && ( 'post_type' == $key || 'cat' == $key || 'term_id' == $key || 'pid' == $key || 'author' == $key )
87
+ ) {
88
+ $arg = array_filter( $arg, 'is_int' );
89
+ $arg = join( ',', $arg );
90
+ }
91
+
92
  $atts .= ' ' . $key . '="' . htmlspecialchars($arg, ENT_QUOTES, $encoding = ini_get("default_charset"), false) . '"';
93
  }
94
  } else {
includes/class-wordpress-popular-posts-widget.php CHANGED
@@ -100,7 +100,7 @@ class WPP_Widget extends WP_Widget {
100
  if ( 'undefined' != typeof WordPressPopularPosts ) {
101
  WordPressPopularPosts.get(
102
  wpp_params.ajax_url + 'widget',
103
- 'action=wpp_get_popular&id=<?php echo $this->number; ?>',
104
  function( response ){
105
  wpp_widget_container.innerHTML += JSON.parse( response ).widget;
106
 
100
  if ( 'undefined' != typeof WordPressPopularPosts ) {
101
  WordPressPopularPosts.get(
102
  wpp_params.ajax_url + 'widget',
103
+ 'id=<?php echo $this->number; ?>',
104
  function( response ){
105
  wpp_widget_container.innerHTML += JSON.parse( response ).widget;
106
 
includes/class-wordpress-popular-posts.php CHANGED
@@ -134,8 +134,6 @@ class WordPressPopularPosts {
134
 
135
  $plugin_admin = new WPP_Admin( $this->get_plugin_name(), $this->get_version() );
136
 
137
- // Check admin notices
138
- $this->loader->add_action( 'admin_notices', $plugin_admin, 'check_admin_notices' );
139
  // Upgrade check
140
  $this->loader->add_action( 'init', $plugin_admin, 'upgrade_check' );
141
  // Hook fired when a new blog is activated on WP Multisite
134
 
135
  $plugin_admin = new WPP_Admin( $this->get_plugin_name(), $this->get_version() );
136
 
 
 
137
  // Upgrade check
138
  $this->loader->add_action( 'init', $plugin_admin, 'upgrade_check' );
139
  // Hook fired when a new blog is activated on WP Multisite
languages/wordpress-popular-posts-es_ES.mo DELETED
Binary file
languages/wordpress-popular-posts-es_ES.po DELETED
@@ -1,1439 +0,0 @@
1
- # Copyright (C) 2014 Wordpress Popular Posts
2
- # This file is distributed under the same license as the Wordpress Popular Posts package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: WordPress Popular Posts\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
7
- "POT-Creation-Date: 2018-06-25 18:07-0400\n"
8
- "PO-Revision-Date: 2018-06-25 18:08-0400\n"
9
- "Last-Translator: \n"
10
- "Language-Team: Héctor Cabrera <me@cabrerahector.com>\n"
11
- "Language: es_ES\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Generator: Poedit 2.0.7\n"
17
- "X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;"
18
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
19
- "esc_html_x;_c;_nc;_n:1,2\n"
20
- "X-Poedit-Basepath: .\n"
21
- "X-Poedit-SourceCharset: UTF-8\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPath-1: ..\n"
24
-
25
- #: ../admin/class-wordpress-popular-posts-admin.php:173
26
- #, php-format
27
- msgid "1 view in the last hour"
28
- msgid_plural "%s views in the last hour"
29
- msgstr[0] "1 vista en la &uacute;ltima hora"
30
- msgstr[1] "%s vistas en la &uacute;ltima hora"
31
-
32
- #: ../admin/class-wordpress-popular-posts-admin.php:239
33
- msgid "Use this image"
34
- msgstr "Utilizar esta imagen"
35
-
36
- #: ../admin/class-wordpress-popular-posts-admin.php:257
37
- msgid "Overview"
38
- msgstr "General"
39
-
40
- #: ../admin/class-wordpress-popular-posts-admin.php:258
41
- msgid ""
42
- "Welcome to WordPress Popular Posts' Dashboard! In this screen you will find "
43
- "statistics on what's popular on your site, tools to further tweak WPP to "
44
- "your needs, and more!"
45
- msgstr ""
46
- "&iexcl;Bienvenido al Dashboard de WordPress Popular Posts! En esta pantalla "
47
- "encontrar&aacute;s estad&iacute;sticas de lo m&aacute;s popular en tu sitio, "
48
- "herramientas para configurar WPP a tu gusto, &iexcl;y mucho m&aacute;s!"
49
-
50
- #: ../admin/class-wordpress-popular-posts-admin.php:264
51
- msgid "Like this plugin?"
52
- msgstr "&iquest;Te gusta este plugin?"
53
-
54
- #: ../admin/class-wordpress-popular-posts-admin.php:266
55
- msgid ""
56
- "Each donation motivates me to keep releasing free stuff for the WordPress "
57
- "community!"
58
- msgstr ""
59
- "&iexcl;Cada donaci&oacute;n me motiva a seguir publicando cosas gratuitas "
60
- "para la comunidad de WordPress!"
61
-
62
- #: ../admin/class-wordpress-popular-posts-admin.php:273
63
- #, php-format
64
- msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
65
- msgstr ""
66
- "&iexcl;Puedes <a href=\"%s\" target=\"_blank\">dejar una rese&ntilde;a</a> "
67
- "tambi&eacute;n!"
68
-
69
- #: ../admin/class-wordpress-popular-posts-admin.php:282
70
- #, php-format
71
- msgid ""
72
- "<p><strong>For more information:</strong></p><ul><li><a href=\"%1$s"
73
- "\">Documentation</a></li><li><a href=\"%2$s\">Support</a></li></ul>"
74
- msgstr ""
75
- "<p><strong>Para m&aacute;s informaci&oacute;n:</strong></p><ul><li><a href="
76
- "\"%1$s\">Documentaci&oacute;n</a></li><li><a href=\"%2$s\">Soporte</a></li></"
77
- "ul>"
78
-
79
- #: ../admin/class-wordpress-popular-posts-admin.php:658
80
- #: ../admin/class-wordpress-popular-posts-admin.php:777
81
- #: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458
82
- #: ../includes/class-wordpress-popular-posts-output.php:742
83
- #, php-format
84
- msgid "1 view"
85
- msgid_plural "%s views"
86
- msgstr[0] "1 vista"
87
- msgstr[1] "%s vistas"
88
-
89
- #: ../admin/class-wordpress-popular-posts-admin.php:658
90
- #: ../admin/class-wordpress-popular-posts-admin.php:832
91
- #: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458
92
- #: ../includes/class-wordpress-popular-posts-output.php:723
93
- #, php-format
94
- msgid "1 comment"
95
- msgid_plural "%s comments"
96
- msgstr[0] "1 comentario"
97
- msgstr[1] "%s comentarios"
98
-
99
- #: ../admin/class-wordpress-popular-posts-admin.php:690
100
- #: ../includes/widget-form.php:17
101
- msgid "Comments"
102
- msgstr "Comentarios"
103
-
104
- #: ../admin/class-wordpress-popular-posts-admin.php:694
105
- msgid "Views"
106
- msgstr "Vistas"
107
-
108
- #: ../admin/class-wordpress-popular-posts-admin.php:778
109
- #: ../admin/class-wordpress-popular-posts-admin.php:833
110
- #: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459
111
- msgid "View"
112
- msgstr "Vista"
113
-
114
- #: ../admin/class-wordpress-popular-posts-admin.php:778
115
- #: ../admin/class-wordpress-popular-posts-admin.php:833
116
- #: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459
117
- msgid "Edit"
118
- msgstr "Editar"
119
-
120
- #: ../admin/class-wordpress-popular-posts-admin.php:789
121
- #: ../admin/class-wordpress-popular-posts-admin.php:844
122
- #: ../admin/partials/admin.php:423 ../admin/partials/admin.php:470
123
- msgid ""
124
- "Looks like traffic to your site is a little light right now. <br />Spread "
125
- "the word and come back later!"
126
- msgstr ""
127
- "Parece que el tr&aacute;fico hacia tu sitio web est&aacute; un poco ligero. "
128
- "<br />&iexcl;Haz un poco de promoci&oacute;n y regresa luego!"
129
-
130
- #: ../admin/class-wordpress-popular-posts-admin.php:912
131
- msgid "Settings"
132
- msgstr "Configuraci&oacute;n"
133
-
134
- #: ../admin/class-wordpress-popular-posts-admin.php:1302
135
- #, php-format
136
- msgid ""
137
- "Your PHP installation is too old. WordPress Popular Posts requires at least "
138
- "PHP version %1$s to function correctly. Please contact your hosting provider "
139
- "and ask them to upgrade PHP to %1$s or higher."
140
- msgstr ""
141
- "Tu versi&oacute;n de PHP es muy antigua. El plugin WordPress Popular Posts "
142
- "requiere al menos PHP version %1$s para funcionar correctamente. Por favor "
143
- "contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o "
144
- "mejor."
145
-
146
- #: ../admin/class-wordpress-popular-posts-admin.php:1309
147
- #, php-format
148
- msgid ""
149
- "Your WordPress version is too old. WordPress Popular Posts requires at least "
150
- "WordPress version %1$s to function correctly. Please update your blog via "
151
- "Dashboard &gt; Update."
152
- msgstr ""
153
- "Tu versi&oacute;n de WordPress es muy antigua. El plugin WordPress Popular "
154
- "Posts requiere al menos la versi&oacute;n %1$s para funcionar correctamente. "
155
- "Por favor actualiza tu blog via Escritorio &gt; Actualizaciones."
156
-
157
- #: ../admin/class-wordpress-popular-posts-admin.php:1334
158
- #, php-format
159
- msgid ""
160
- "<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> has been "
161
- "<strong>deactivated</strong>.</p></div>"
162
- msgstr ""
163
- "<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> ha sido "
164
- "<strong>desactivado</strong>.</p></div>"
165
-
166
- #: ../admin/partials/admin.php:6 ../admin/partials/admin.php:254
167
- msgid "Stats"
168
- msgstr "Estad&iacute;sticas"
169
-
170
- #: ../admin/partials/admin.php:7 ../admin/partials/admin.php:255
171
- msgid "Tools"
172
- msgstr "Herramientas"
173
-
174
- #: ../admin/partials/admin.php:8 ../admin/partials/admin.php:256
175
- msgid "Parameters"
176
- msgstr "Par&aacute;metros"
177
-
178
- #: ../admin/partials/admin.php:33 ../admin/partials/admin.php:48
179
- #: ../admin/partials/admin.php:71 ../admin/partials/admin.php:112
180
- msgid "Settings saved."
181
- msgstr "Configuraci&oacute;n guardada."
182
-
183
- #: ../admin/partials/admin.php:62
184
- msgid "Please provide the name of your custom field."
185
- msgstr "Por favor indica el nombre de tu custom field."
186
-
187
- #: ../admin/partials/admin.php:120
188
- msgid ""
189
- "Any changes made to WPP's default stylesheet will be lost after every plugin "
190
- "update. In order to prevent this from happening, please copy the wpp.css "
191
- "file (located at wp-content/plugins/wordpress-popular-posts/style) into your "
192
- "theme's directory"
193
- msgstr ""
194
- "Cualquier cambio hecho a la hoja de estilos por defecto de WPP se "
195
- "perder&aacute; cada vez que el plugin se actualize. Para evitar esto, por "
196
- "favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-"
197
- "popular-posts/style) a la carpeta de tu tema actual"
198
-
199
- #: ../admin/partials/admin.php:135
200
- msgid ""
201
- "This operation will delete all entries from WordPress Popular Posts' cache "
202
- "table and cannot be undone."
203
- msgstr ""
204
- "Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de "
205
- "WordPress Popular Posts y no se puede deshacer."
206
-
207
- #: ../admin/partials/admin.php:135 ../admin/partials/admin.php:174
208
- #: ../admin/partials/admin.php:213
209
- msgid "Do you want to continue?"
210
- msgstr "\\277Deseas continuar?"
211
-
212
- #: ../admin/partials/admin.php:147
213
- msgid "Success! The cache table has been cleared!"
214
- msgstr "\\241\\311xito! \\241La tabla cach\\351 ha sido borrada!"
215
-
216
- #: ../admin/partials/admin.php:151
217
- msgid "Error: cache table does not exist."
218
- msgstr "Error: la tabla cach\\351 no existe."
219
-
220
- #: ../admin/partials/admin.php:155 ../admin/partials/admin.php:163
221
- #: ../admin/partials/admin.php:194 ../admin/partials/admin.php:202
222
- #: ../admin/partials/admin.php:232 ../admin/partials/admin.php:240
223
- msgid "Invalid action."
224
- msgstr "Acci\\363n inv\\311lida."
225
-
226
- #: ../admin/partials/admin.php:159 ../admin/partials/admin.php:198
227
- #: ../admin/partials/admin.php:236
228
- msgid ""
229
- "Sorry, you do not have enough permissions to do this. Please contact the "
230
- "site administrator for support."
231
- msgstr ""
232
- "Lo lamento, no tienes permisos suficientes para hacer esto. Por favor "
233
- "contacta al administrador del sitio."
234
-
235
- #: ../admin/partials/admin.php:174
236
- msgid ""
237
- "This operation will delete all stored info from WordPress Popular Posts' "
238
- "data tables and cannot be undone."
239
- msgstr ""
240
- "Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las "
241
- "tablas de WordPress Popular Posts y no se puede deshacer."
242
-
243
- #: ../admin/partials/admin.php:186
244
- msgid "Success! All data have been cleared!"
245
- msgstr "\\241\\311xito! \\241Toda la data ha sido borrada!"
246
-
247
- #: ../admin/partials/admin.php:190
248
- msgid "Error: one or both data tables are missing."
249
- msgstr "Error: una o ambas tablas de datos no existen."
250
-
251
- #: ../admin/partials/admin.php:213
252
- msgid "This operation will delete all cached thumbnails and cannot be undone."
253
- msgstr ""
254
- "Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se "
255
- "puede deshacer."
256
-
257
- #: ../admin/partials/admin.php:224
258
- msgid "Success! All files have been deleted!"
259
- msgstr "\\241\\311xito! \\241Todos los archivos han sido borrados!"
260
-
261
- #: ../admin/partials/admin.php:228
262
- msgid "The thumbnail cache is already empty!"
263
- msgstr "\\241El cach\\351 de miniaturas ya est\\341 vac\\355o!"
264
-
265
- #: ../admin/partials/admin.php:253
266
- msgid "Menu"
267
- msgstr "Men&uacute;"
268
-
269
- #: ../admin/partials/admin.php:281
270
- msgid "Post type"
271
- msgstr "Post type"
272
-
273
- #: ../admin/partials/admin.php:284
274
- msgid "Limit"
275
- msgstr "L&iacute;mite"
276
-
277
- #: ../admin/partials/admin.php:287 ../includes/widget-form.php:48
278
- msgid "Display only posts published within the selected Time Range"
279
- msgstr ""
280
- "Mostrar s&oacute;lo entradas publicadas en el Rango de Tiempo seleccionado"
281
-
282
- #: ../admin/partials/admin.php:293 ../admin/partials/admin.php:331
283
- #: ../admin/partials/admin.php:540 ../admin/partials/admin.php:644
284
- #: ../admin/partials/admin.php:683
285
- msgid "Apply"
286
- msgstr "Aplicar"
287
-
288
- #: ../admin/partials/admin.php:294 ../admin/partials/admin.php:334
289
- msgid "Cancel"
290
- msgstr "Cancelar"
291
-
292
- #: ../admin/partials/admin.php:307
293
- msgid "Custom Time Range"
294
- msgstr "Rango de Tiempo Personalizado"
295
-
296
- #: ../admin/partials/admin.php:308
297
- msgid "Date Range"
298
- msgstr "Rango de Fechas"
299
-
300
- #: ../admin/partials/admin.php:316 ../admin/partials/admin.php:610
301
- #: ../includes/widget-form.php:41
302
- msgid "Minute(s)"
303
- msgstr "Minuto(s)"
304
-
305
- #: ../admin/partials/admin.php:317 ../admin/partials/admin.php:611
306
- #: ../includes/widget-form.php:42
307
- msgid "Hour(s)"
308
- msgstr "Hora(s)"
309
-
310
- #: ../admin/partials/admin.php:318 ../admin/partials/admin.php:612
311
- #: ../includes/widget-form.php:43
312
- msgid "Day(s)"
313
- msgstr "D&iacute;a(s)"
314
-
315
- #: ../admin/partials/admin.php:324
316
- msgid "Select a date..."
317
- msgstr "Selecciona una fecha..."
318
-
319
- #: ../admin/partials/admin.php:346
320
- msgid "Today"
321
- msgstr "Hoy"
322
-
323
- #: ../admin/partials/admin.php:347 ../includes/widget-form.php:30
324
- msgid "Last 24 hours"
325
- msgstr "&Uacute;ltimas 24 horas"
326
-
327
- #: ../admin/partials/admin.php:348 ../includes/widget-form.php:31
328
- msgid "Last 7 days"
329
- msgstr "&Uacute;ltimos 7 d&iacute;as"
330
-
331
- #: ../admin/partials/admin.php:349 ../includes/widget-form.php:32
332
- msgid "Last 30 days"
333
- msgstr "&Uacute;ltimos 30 d&iacute;as"
334
-
335
- #: ../admin/partials/admin.php:350 ../includes/widget-form.php:34
336
- msgid "Custom"
337
- msgstr "Personalizado"
338
-
339
- #: ../admin/partials/admin.php:354
340
- #, php-format
341
- msgid ""
342
- "Err... A nice little chart is supposed to be here, instead you are seeing "
343
- "this because your browser is too old. <br /> Please <a href=\"%s\" target="
344
- "\"_blank\">get a better browser</a>."
345
- msgstr ""
346
- "Ehh... se supone que aqu&iacute; saldr&iacute;a un gr&aacute;fico, pero en "
347
- "vez de eso est&aacute;s viendo &eacute;sto porque tu navegador es demasiado "
348
- "anticuado.<br /> Por favor <a href=\"%s\" target=\"_blank\">instala un mejor "
349
- "navegador</a>."
350
-
351
- #: ../admin/partials/admin.php:365
352
- msgid "Most viewed"
353
- msgstr "M&aacute;s vistos"
354
-
355
- #: ../admin/partials/admin.php:366
356
- msgid "Most commented"
357
- msgstr "M&aacute;s comentados"
358
-
359
- #: ../admin/partials/admin.php:367
360
- msgid "Trending now"
361
- msgstr "Siendo Tendencia Ahora"
362
-
363
- #: ../admin/partials/admin.php:368
364
- msgid "Hall of Fame"
365
- msgstr "Sal&oacute;n de la Fama"
366
-
367
- #: ../admin/partials/admin.php:480
368
- msgid "Thumbnails"
369
- msgstr "Miniaturas"
370
-
371
- #: ../admin/partials/admin.php:485
372
- msgid "Default thumbnail"
373
- msgstr "Miniatura por defecto"
374
-
375
- #: ../admin/partials/admin.php:490
376
- msgid "Change thumbnail"
377
- msgstr "Cambiar miniatura"
378
-
379
- #: ../admin/partials/admin.php:492
380
- msgid "This image will be displayed when no thumbnail is available"
381
- msgstr "Esta imagen se mostrar&aacute; cuando no haya miniatura disponible"
382
-
383
- #: ../admin/partials/admin.php:496
384
- msgid "Pick image from"
385
- msgstr "Seleccionar imagen desde"
386
-
387
- #: ../admin/partials/admin.php:499
388
- msgid "Featured image"
389
- msgstr "\tImagen destacada"
390
-
391
- #: ../admin/partials/admin.php:500
392
- msgid "First image on post"
393
- msgstr "Primera imagen de la entrada"
394
-
395
- #: ../admin/partials/admin.php:501
396
- msgid "First attachment"
397
- msgstr "Primer adjunto"
398
-
399
- #: ../admin/partials/admin.php:502
400
- msgid "Custom field"
401
- msgstr "Custom field"
402
-
403
- #: ../admin/partials/admin.php:505
404
- msgid "Tell WordPress Popular Posts where it should get thumbnails from"
405
- msgstr ""
406
- "Dile a WordPress Popular Posts de d&oacute;nde debe obtener las miniaturas"
407
-
408
- #: ../admin/partials/admin.php:509
409
- msgid "Custom field name"
410
- msgstr "Nombre del custom field"
411
-
412
- #: ../admin/partials/admin.php:515
413
- msgid "Resize image from Custom field?"
414
- msgstr "&iexcl;Ajustar la imagen del Custom field?"
415
-
416
- #: ../admin/partials/admin.php:518
417
- msgid "No, I will upload my own thumbnail"
418
- msgstr "No, subir&eacute; mi propia miniatura"
419
-
420
- #: ../admin/partials/admin.php:519
421
- msgid "Yes"
422
- msgstr "S&iacute;"
423
-
424
- #: ../admin/partials/admin.php:530
425
- msgid "Empty image cache"
426
- msgstr "Vaciar el cach&eacute; de im&aacute;genes"
427
-
428
- #: ../admin/partials/admin.php:531
429
- msgid "Use this button to clear WPP's thumbnails cache"
430
- msgstr ""
431
- "Utiliza este bot&oacute;n para vaciar el cach&eacute; de miniaturas de WPP"
432
-
433
- #: ../admin/partials/admin.php:551
434
- msgid "Data"
435
- msgstr "Datos"
436
-
437
- #: ../admin/partials/admin.php:556
438
- msgid "Log views from"
439
- msgstr "Registrar vistas de"
440
-
441
- #: ../admin/partials/admin.php:559
442
- msgid "Visitors only"
443
- msgstr "S&oacute;lo visitantes"
444
-
445
- #: ../admin/partials/admin.php:560
446
- msgid "Logged-in users only"
447
- msgstr "S&oacute;lo usuarios conectados"
448
-
449
- #: ../admin/partials/admin.php:561
450
- msgid "Everyone"
451
- msgstr "Todos"
452
-
453
- #: ../admin/partials/admin.php:567
454
- msgid "Log limit"
455
- msgstr "L&iacute;mite del registro"
456
-
457
- #: ../admin/partials/admin.php:570 ../admin/partials/admin.php:585
458
- #: ../admin/partials/admin.php:625 ../admin/partials/admin.php:674
459
- msgid "Disabled"
460
- msgstr "Deshabilitado"
461
-
462
- #: ../admin/partials/admin.php:571
463
- msgid "Keep data for"
464
- msgstr "Guardar datos por"
465
-
466
- #: ../admin/partials/admin.php:574
467
- msgid "day(s)"
468
- msgstr "d&iacute;a(s)"
469
-
470
- #: ../admin/partials/admin.php:576
471
- msgid ""
472
- "Data older than the specified time frame will be automatically discarded"
473
- msgstr ""
474
- "La data que sea m&aacute;s antigua que el tiempo especificado ser&aacute;n "
475
- "autom&aacute;ticamente descartada"
476
-
477
- #: ../admin/partials/admin.php:582
478
- msgid "Ajaxify widget"
479
- msgstr "Usar Ajax con el widget"
480
-
481
- #: ../admin/partials/admin.php:586 ../admin/partials/admin.php:626
482
- #: ../admin/partials/admin.php:673
483
- msgid "Enabled"
484
- msgstr "Habilitado"
485
-
486
- #: ../admin/partials/admin.php:590
487
- msgid ""
488
- "If you are using a caching plugin such as WP Super Cache, enabling this "
489
- "feature will keep the popular list from being cached by it"
490
- msgstr ""
491
- "Si est&aacute;s utilizando un plugin de cacheo como WP Super Cache, "
492
- "habilitar esta caracter&iacute;stica evitar&aacute; que la lista de entradas "
493
- "populares sea guardada en cach&eacute;"
494
-
495
- #: ../admin/partials/admin.php:594
496
- msgid "Data Caching"
497
- msgstr "Caché de Datos"
498
-
499
- #: ../admin/partials/admin.php:594 ../admin/partials/admin.php:622
500
- #: ../includes/widget-form.php:3 ../includes/widget-form.php:50
501
- #: ../includes/widget-form.php:56 ../includes/widget-form.php:75
502
- #: ../includes/widget-form.php:85 ../includes/widget-form.php:177
503
- msgid "What is this?"
504
- msgstr "&iquest;Qu&eacute; es &eacute;sto?"
505
-
506
- #: ../admin/partials/admin.php:597
507
- msgid "Never cache"
508
- msgstr "Nunca almacenar en cach&eacute;"
509
-
510
- #: ../admin/partials/admin.php:598
511
- msgid "Enable caching"
512
- msgstr "Habilitar cach&eacute;"
513
-
514
- #: ../admin/partials/admin.php:602
515
- msgid ""
516
- "WPP can cache the popular list for a specified amount of time. Recommended "
517
- "for large / high traffic sites"
518
- msgstr ""
519
- "WPP puede almacenar en cach&eacute; el listado de entradas populares por una "
520
- "cantidad de tiempo especificada. Recomendado para sitios web grandes / de "
521
- "alto tr&aacute;fico"
522
-
523
- #: ../admin/partials/admin.php:606
524
- msgid "Refresh cache every"
525
- msgstr "Refrescar el cach&eacute; cada"
526
-
527
- #: ../admin/partials/admin.php:613
528
- msgid "Week(s)"
529
- msgstr "Semana(s)"
530
-
531
- #: ../admin/partials/admin.php:614
532
- msgid "Month(s)"
533
- msgstr "Mes(es)"
534
-
535
- #: ../admin/partials/admin.php:615
536
- msgid "Year(s)"
537
- msgstr "A&ntilde;o(s)"
538
-
539
- #: ../admin/partials/admin.php:618
540
- msgid "Really? That long?"
541
- msgstr "&iquest;En serio? &iquest;Tanto tiempo?"
542
-
543
- #: ../admin/partials/admin.php:622
544
- msgid "Data Sampling"
545
- msgstr "Sampleo de Datos"
546
-
547
- #: ../admin/partials/admin.php:630
548
- #, php-format
549
- msgid ""
550
- "By default, WordPress Popular Posts stores in database every single visit "
551
- "your site receives. For small / medium sites this is generally OK, but on "
552
- "large / high traffic sites the constant writing to the database may have an "
553
- "impact on performance. With <a href=\"%1$s\" target=\"_blank\">data "
554
- "sampling</a>, WordPress Popular Posts will store only a subset of your "
555
- "traffic and report on the tendencies detected in that sample set (for more, "
556
- "<a href=\"%2$s\" target=\"_blank\">please read here</a>)"
557
- msgstr ""
558
- "Por defecto, WordPress Popular Posts almacena en la base de datos todas y "
559
- "cada una de las visitas que recibe tu sitio. Para sitios peque&ntilde;os / "
560
- "medianos esto generalmente est&aacute; bien, pero en sitios grandes / de "
561
- "mucho tr&aacute;fico la escritura constante en la base de datos pudiese "
562
- "causar un impacto en su rendimiento. Con <a href=\"%1$s\" target=\"_blank"
563
- "\">data sampling</a>, WordPress Popular Posts almacenar&aacute; s&oacute;lo "
564
- "un subconjunto de tu tr&aacute;fico y reportar&aacute; sobre las tendencias "
565
- "detectadas en ese conjunto de muestras (para m&aacute;s, <a href=\"%2$s\" "
566
- "target=\"_blank\">por favor leer ac&aacute;</a>)"
567
-
568
- #: ../admin/partials/admin.php:634
569
- msgid "Sample Rate"
570
- msgstr "Rata de Sampleo"
571
-
572
- #: ../admin/partials/admin.php:638
573
- #, php-format
574
- msgid ""
575
- "A sampling rate of %d is recommended for large / high traffic sites. For "
576
- "lower traffic sites, you should lower the value"
577
- msgstr ""
578
- "Se recomienda una rata de sampleo de %d para sitios grandes / de alto "
579
- "tr&aacute;fico. Para sitios con menos tr&aacute;fico, deber&iacute;as "
580
- "disminuir el valor"
581
-
582
- #: ../admin/partials/admin.php:655
583
- msgid "Miscellaneous"
584
- msgstr "Miscel&aacute;neos"
585
-
586
- #: ../admin/partials/admin.php:660
587
- msgid "Open links in"
588
- msgstr "Abrir enlaces en"
589
-
590
- #: ../admin/partials/admin.php:663
591
- msgid "Current window"
592
- msgstr "Ventana actual"
593
-
594
- #: ../admin/partials/admin.php:664
595
- msgid "New tab/window"
596
- msgstr "Nueva pesta&ntilde;a/ventana"
597
-
598
- #: ../admin/partials/admin.php:670
599
- msgid "Use plugin's stylesheet"
600
- msgstr "Utilizar la hoja de estilos del plugin"
601
-
602
- #: ../admin/partials/admin.php:677
603
- msgid ""
604
- "By default, the plugin includes a stylesheet called wpp.css which you can "
605
- "use to style your popular posts listing. If you wish to use your own "
606
- "stylesheet or do not want it to have it included in the header section of "
607
- "your site, use this."
608
- msgstr ""
609
- "Por defecto, el plugin incluye una hoja de estilos llamada wpp.css que "
610
- "puedes utilizar para darle estilos a tu listado de entradas populares. Si "
611
- "deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se "
612
- "incluya en el header de tu sitio web, utiliza esto."
613
-
614
- #: ../admin/partials/admin.php:696
615
- msgid ""
616
- "WordPress Popular Posts maintains data in two separate tables: one for "
617
- "storing the most popular entries on a daily basis (from now on, \"cache\"), "
618
- "and another one to keep the All-time data (from now on, \"historical data\" "
619
- "or just \"data\"). If for some reason you need to clear the cache table, or "
620
- "even both historical and cache tables, please use the buttons below to do so."
621
- msgstr ""
622
- "WordPress Popular Posts mantiene la data en dos tablas separadas: una para "
623
- "guardar diariamente las entradas m&aacute;s populares (\"cach&eacute;\", de "
624
- "aqu&iacute; en adelante), y otra tabla para almacenar la data de Todos los "
625
- "tiempos (\"data hist&oacute;rica\" o simplemente \"data\"). Si por alguna "
626
- "raz&oacute;n necesitas vaciar la tabla cach&eacute;, o inclusive las dos "
627
- "tablas hist&oacute;ricas y de cach&eacute;, por favor utiliza los botones de "
628
- "abajo."
629
-
630
- #: ../admin/partials/admin.php:697
631
- msgid "Empty cache"
632
- msgstr "Vaciar el cach&eacute;"
633
-
634
- #: ../admin/partials/admin.php:697
635
- msgid "Use this button to manually clear entries from WPP cache only"
636
- msgstr ""
637
- "Utiliza este bot&oacute;n para vaciar manualmente s&oacute;lo las entradas "
638
- "del cach&eacute; de WPP"
639
-
640
- #: ../admin/partials/admin.php:698
641
- msgid "Clear all data"
642
- msgstr "Eliminar toda la data"
643
-
644
- #: ../admin/partials/admin.php:698
645
- msgid "Use this button to manually clear entries from all WPP data tables"
646
- msgstr ""
647
- "Utiliza este bot&oacute;n para limpiar manualmente las tablas de datos de WPP"
648
-
649
- #: ../admin/partials/admin.php:705
650
- #, php-format
651
- msgid ""
652
- "With the following parameters you can customize the popular posts list when "
653
- "using either the <a href=\"%1$s\">wpp_get_mostpopular() template tag</a> or "
654
- "the <a href=\"%2$s\">[wpp] shortcode</a>."
655
- msgstr ""
656
- "Con los siguientes par&aacute;metros puedes personalizar el listado de "
657
- "entradas populares cuando utilices el <a href=\"%1$s\">template tag "
658
- "wpp_get_mostpopular()</a> o el <a href=\"%2$s\">shortcode [wpp]</a>."
659
-
660
- #: ../admin/partials/admin.php:713
661
- msgid "Parameter"
662
- msgstr "Par&aacute;metro"
663
-
664
- #: ../admin/partials/admin.php:714
665
- msgid "What it does "
666
- msgstr "Qu&eacute; hace"
667
-
668
- #: ../admin/partials/admin.php:715
669
- msgid "Possible values"
670
- msgstr "Valores posibles"
671
-
672
- #: ../admin/partials/admin.php:716
673
- msgid "Defaults to"
674
- msgstr "Por defecto"
675
-
676
- #: ../admin/partials/admin.php:717
677
- msgid "Example"
678
- msgstr "Ejemplo"
679
-
680
- #: ../admin/partials/admin.php:723
681
- msgid "Sets a heading for the list"
682
- msgstr "Configura el encabezado de la lista"
683
-
684
- #: ../admin/partials/admin.php:724 ../admin/partials/admin.php:731
685
- #: ../admin/partials/admin.php:738 ../admin/partials/admin.php:787
686
- #: ../admin/partials/admin.php:794 ../admin/partials/admin.php:801
687
- #: ../admin/partials/admin.php:808 ../admin/partials/admin.php:815
688
- #: ../admin/partials/admin.php:822 ../admin/partials/admin.php:913
689
- #: ../admin/partials/admin.php:934 ../admin/partials/admin.php:941
690
- msgid "Text string"
691
- msgstr "Texto"
692
-
693
- #: ../admin/partials/admin.php:725 ../admin/partials/admin.php:795
694
- #: ../admin/partials/admin.php:802 ../admin/partials/admin.php:809
695
- #: ../admin/partials/admin.php:816 ../admin/partials/admin.php:823
696
- msgid "None"
697
- msgstr "Ninguno"
698
-
699
- #: ../admin/partials/admin.php:726 ../admin/partials/admin.php:733
700
- #: ../admin/partials/admin.php:740 ../admin/partials/admin.php:747
701
- #: ../admin/partials/admin.php:754 ../admin/partials/admin.php:761
702
- #: ../admin/partials/admin.php:768 ../admin/partials/admin.php:775
703
- #: ../admin/partials/admin.php:782 ../admin/partials/admin.php:789
704
- #: ../admin/partials/admin.php:796 ../admin/partials/admin.php:803
705
- #: ../admin/partials/admin.php:810 ../admin/partials/admin.php:817
706
- #: ../admin/partials/admin.php:824 ../admin/partials/admin.php:831
707
- #: ../admin/partials/admin.php:838 ../admin/partials/admin.php:845
708
- #: ../admin/partials/admin.php:852 ../admin/partials/admin.php:859
709
- #: ../admin/partials/admin.php:866 ../admin/partials/admin.php:873
710
- #: ../admin/partials/admin.php:880 ../admin/partials/admin.php:887
711
- #: ../admin/partials/admin.php:894 ../admin/partials/admin.php:901
712
- #: ../admin/partials/admin.php:908 ../admin/partials/admin.php:915
713
- #: ../admin/partials/admin.php:922 ../admin/partials/admin.php:929
714
- #: ../admin/partials/admin.php:936 ../admin/partials/admin.php:943
715
- #: ../admin/partials/admin.php:950
716
- msgid "With wpp_get_mostpopular():"
717
- msgstr "Con wpp_get_mostpopular():"
718
-
719
- #: ../admin/partials/admin.php:726 ../admin/partials/admin.php:733
720
- #: ../admin/partials/admin.php:740 ../admin/partials/admin.php:747
721
- #: ../admin/partials/admin.php:754 ../admin/partials/admin.php:761
722
- #: ../admin/partials/admin.php:768 ../admin/partials/admin.php:775
723
- #: ../admin/partials/admin.php:782 ../admin/partials/admin.php:789
724
- #: ../admin/partials/admin.php:796 ../admin/partials/admin.php:803
725
- #: ../admin/partials/admin.php:810 ../admin/partials/admin.php:817
726
- #: ../admin/partials/admin.php:824 ../admin/partials/admin.php:831
727
- #: ../admin/partials/admin.php:838 ../admin/partials/admin.php:845
728
- #: ../admin/partials/admin.php:852 ../admin/partials/admin.php:859
729
- #: ../admin/partials/admin.php:866 ../admin/partials/admin.php:873
730
- #: ../admin/partials/admin.php:880 ../admin/partials/admin.php:887
731
- #: ../admin/partials/admin.php:894 ../admin/partials/admin.php:901
732
- #: ../admin/partials/admin.php:908 ../admin/partials/admin.php:915
733
- #: ../admin/partials/admin.php:922 ../admin/partials/admin.php:929
734
- #: ../admin/partials/admin.php:936 ../admin/partials/admin.php:943
735
- #: ../admin/partials/admin.php:950
736
- msgid "With the [wpp] shortcode:"
737
- msgstr "Con el shortcode [wpp]:"
738
-
739
- #: ../admin/partials/admin.php:730
740
- msgid "Set the opening tag for the heading of the list"
741
- msgstr "Configura la etiqueta de apertura para el encabezado de la lista"
742
-
743
- #: ../admin/partials/admin.php:737
744
- msgid "Set the closing tag for the heading of the list"
745
- msgstr "Configura la etiqueta de cierre para el encabezado de la lista"
746
-
747
- #: ../admin/partials/admin.php:744
748
- msgid "Sets the maximum number of popular posts to be shown on the listing"
749
- msgstr ""
750
- "Configura el m&aacute;ximo de entradas populares a ser mostradas en la lista"
751
-
752
- #: ../admin/partials/admin.php:745 ../admin/partials/admin.php:759
753
- #: ../admin/partials/admin.php:829 ../admin/partials/admin.php:843
754
- #: ../admin/partials/admin.php:864 ../admin/partials/admin.php:871
755
- msgid "Positive integer"
756
- msgstr "Entero positivo"
757
-
758
- #: ../admin/partials/admin.php:751
759
- msgid ""
760
- "Tells WordPress Popular Posts to retrieve the most popular entries within "
761
- "the time range specified by you"
762
- msgstr ""
763
- "Le indica a WordPress Popular Posts que debe listar aquellas entradas que "
764
- "hayan sido populares dentro del rango de tiempo especificado por ti"
765
-
766
- #: ../admin/partials/admin.php:758
767
- msgid "Especifies the number of time units of the custom time range"
768
- msgstr ""
769
- "Especifica el n&uacute;mero de unidades de tiempo del rango de tiempo "
770
- "personalizado"
771
-
772
- #: ../admin/partials/admin.php:765
773
- msgid "Especifies the time unit of the custom time range"
774
- msgstr "Especifica la unidad de tiempo del rango de tiempo personalizado"
775
-
776
- #: ../admin/partials/admin.php:772
777
- msgid ""
778
- "Tells WordPress Popular Posts to retrieve the most popular entries published "
779
- "within the time range specified by you"
780
- msgstr ""
781
- "Le indica a WordPress Popular Posts que debe listar aquellas entradas "
782
- "populares publicadas dentro del rango de tiempo especificado por ti"
783
-
784
- #: ../admin/partials/admin.php:779
785
- msgid "Sets the sorting option of the popular posts"
786
- msgstr "Configura el ordenado de las entradas populares"
787
-
788
- #: ../admin/partials/admin.php:780
789
- msgid "(for average views per day)"
790
- msgstr "(para el porcentaje de vistas por d&iacute;a)"
791
-
792
- #: ../admin/partials/admin.php:786
793
- msgid "Defines the type of posts to show on the listing"
794
- msgstr "Define el tipo de entrada a mostrar en el listado"
795
-
796
- #: ../admin/partials/admin.php:793
797
- msgid ""
798
- "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
799
- "form the listing."
800
- msgstr ""
801
- "Si se configura, WordPress Popular Posts excluir&aacute; todos los IDs de "
802
- "las entradas especificadas."
803
-
804
- #: ../admin/partials/admin.php:800
805
- msgid ""
806
- "If set, WordPress Popular Posts will retrieve all entries that belong to the "
807
- "specified category ID(s). If a minus sign is used, entries associated to the "
808
- "category will be excluded instead."
809
- msgstr ""
810
- "Si se configura, WordPress Popular Posts mostrar&aacute; todas las entradas "
811
- "que pertenecen a la(s) categor&iacute;a(s) especificada(s). Si se usa un "
812
- "signo negativo, las entradas asociadas a dicha categor&iacute;a ser&aacute;n "
813
- "exclu&iacute;das."
814
-
815
- #: ../admin/partials/admin.php:807
816
- msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy."
817
- msgstr ""
818
- "Si se tilda, WordPress Popular Posts filtrar&aacute; entradas por la "
819
- "taxonom&iacute;a indicada."
820
-
821
- #: ../admin/partials/admin.php:814
822
- msgid ""
823
- "If set, WordPress Popular Posts will retrieve all entries that belong to the "
824
- "specified term ID(s). If a minus sign is used, entries associated to the "
825
- "term(s) will be excluded instead."
826
- msgstr ""
827
- "Si se configura, WordPress Popular Posts mostrar&aacute; todas las entradas "
828
- "que pertenecen al Term ID especificado(s). Si se usa un signo negativo, las "
829
- "entradas asociadas a dicho term ser&aacute;n exclu&iacute;das."
830
-
831
- #: ../admin/partials/admin.php:821
832
- msgid ""
833
- "If set, WordPress Popular Posts will retrieve all entries created by "
834
- "specified author(s) ID(s)."
835
- msgstr ""
836
- "Si se configura, WordPress Popular Posts traer&aacute; todas las entradas "
837
- "creadas por el (los) ID(s) de autor(es) especificado(s)."
838
-
839
- #: ../admin/partials/admin.php:828
840
- msgid ""
841
- "If set, WordPress Popular Posts will shorten each post title to \"n\" "
842
- "characters whenever possible"
843
- msgstr ""
844
- "Si se configura, WordPress Popular Posts acortar&aacute; cada titulo en \"n"
845
- "\" caracteres cuando sea posible"
846
-
847
- #: ../admin/partials/admin.php:835
848
- msgid ""
849
- "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
850
- "words instead of characters"
851
- msgstr ""
852
- "Si se pasa el valor 1, WordPress Popular Posts acortar&aacute; cada titulo "
853
- "en \"n\" palabras en vez de caracteres"
854
-
855
- #: ../admin/partials/admin.php:842
856
- msgid ""
857
- "If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
858
- "characters long from the content of each post listed as popular"
859
- msgstr ""
860
- "Si se configura, WordPress Popular Posts construir&aacute; e incluir&aacute; "
861
- "un extracto de \"n\" caracteres del contenido de cada entrada listada como "
862
- "popular"
863
-
864
- #: ../admin/partials/admin.php:849
865
- msgid ""
866
- "If set, WordPress Popular Posts will maintaing all styling tags (strong, "
867
- "italic, etc) and hyperlinks found in the excerpt"
868
- msgstr ""
869
- "Si se configura, WordPress Popular Posts mantendr&aacute; todas las "
870
- "etiquetas de estilo (strong, italic, etc) y los hiperv&iacute;nculos "
871
- "encontrados en el extracto"
872
-
873
- #: ../admin/partials/admin.php:856
874
- msgid ""
875
- "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
876
- "instead of characters"
877
- msgstr ""
878
- "Si se configura, WordPress Popular Posts acortar&aacute; el resumen en \"n\" "
879
- "palabras en vez de caracteres"
880
-
881
- #: ../admin/partials/admin.php:863
882
- msgid ""
883
- "If set, and if your current server configuration allows it, you will be able "
884
- "to display thumbnails of your posts. This attribute sets the width for "
885
- "thumbnails"
886
- msgstr ""
887
- "Si se configura, y si la configuraci&oacute;n actual de tu servidor lo "
888
- "permite, podr&aacute;s mostrar miniaturas de tus entradas. Este atributo "
889
- "configura el ancho de tus miniaturas"
890
-
891
- #: ../admin/partials/admin.php:870
892
- msgid ""
893
- "If set, and if your current server configuration allows it, you will be able "
894
- "to display thumbnails of your posts. This attribute sets the height for "
895
- "thumbnails"
896
- msgstr ""
897
- "Si se configura, y si la configuraci&oacute;n actual de tu servidor lo "
898
- "permite, podr&aacute;s mostrar miniaturas de tus entradas. Este atributo "
899
- "configura el alto de tus miniaturas"
900
-
901
- #: ../admin/partials/admin.php:877
902
- msgid ""
903
- "If set, and if the WP-PostRatings plugin is installed and enabled on your "
904
- "blog, WordPress Popular Posts will show how your visitors are rating your "
905
- "entries"
906
- msgstr ""
907
- "Si se configura, y si el plugin WP-PostRatings est&aacute; instalado y "
908
- "habilitado en tu blog, WordPress Popular Posts mostrar&aacute; como tus "
909
- "visitantes han calificado a tus entradas"
910
-
911
- #: ../admin/partials/admin.php:884
912
- msgid ""
913
- "If set, WordPress Popular Posts will show how many comments each popular "
914
- "post has got during the specified time range"
915
- msgstr ""
916
- "Si se configura, WordPress Popular Posts mostrar&aacute; cu&aacute;ntos "
917
- "comentarios ha obtenido cada entrada popular dentro del rango de tiempo "
918
- "especificado"
919
-
920
- #: ../admin/partials/admin.php:891
921
- msgid ""
922
- "If set, WordPress Popular Posts will show how many views each popular post "
923
- "has got during the specified time range"
924
- msgstr ""
925
- "Si se configura, WordPress Popular Posts mostrar&aacute; cu&aacute;ntas "
926
- "vistas ha obtenido cada entrada popular dentro del rango de tiempo "
927
- "especificado"
928
-
929
- #: ../admin/partials/admin.php:898
930
- msgid ""
931
- "If set, WordPress Popular Posts will show who published each popular post on "
932
- "the list"
933
- msgstr ""
934
- "Si se configura, WordPress Popular Posts mostrar&aacute; qui&eacute;n "
935
- "public&oacute; cada entrada popular de la lista"
936
-
937
- #: ../admin/partials/admin.php:905
938
- msgid ""
939
- "If set, WordPress Popular Posts will display the date when each popular post "
940
- "on the list was published"
941
- msgstr ""
942
- "Si se tilda, WordPress Popular Posts mostrar&aacute; la fecha en la que fue "
943
- "publicada cada entrada popular"
944
-
945
- #: ../admin/partials/admin.php:912
946
- msgid "Sets the date format"
947
- msgstr "Configura el formato de la fecha"
948
-
949
- #: ../admin/partials/admin.php:919
950
- msgid ""
951
- "If set, WordPress Popular Posts will display the categories associated to "
952
- "each entry"
953
- msgstr ""
954
- "Si se tilda, WordPress Popular Posts mostrar&aacute; las categor&iacute;as "
955
- "asociadas a cada entrada"
956
-
957
- #: ../admin/partials/admin.php:926
958
- msgid ""
959
- "If set, WordPress Popular Posts will display the taxonomies associated to "
960
- "each entry"
961
- msgstr ""
962
- "Si se tilda, WordPress Popular Posts mostrar&aacute; las taxonom&iacute;as "
963
- "asociadas a cada entrada"
964
-
965
- #: ../admin/partials/admin.php:933
966
- msgid "Sets the opening tag for the listing"
967
- msgstr "Configura la etiqueta de apertura del listado"
968
-
969
- #: ../admin/partials/admin.php:940
970
- msgid "Sets the closing tag for the listing"
971
- msgstr "Configura la etiqueta de cierre del listado"
972
-
973
- #: ../admin/partials/admin.php:947
974
- msgid "Sets the HTML structure of each post"
975
- msgstr "Configura la estructura HTML de cada entrada"
976
-
977
- #: ../admin/partials/admin.php:948
978
- msgid "Text string, custom HTML"
979
- msgstr "Texto, HTML personalizado"
980
-
981
- #: ../admin/partials/admin.php:948
982
- msgid "Available Content Tags"
983
- msgstr "Content Tags disponibles"
984
-
985
- #: ../admin/partials/admin.php:948
986
- msgid ""
987
- "returns thumbnail linked to post/page, requires thumbnail_width & "
988
- "thumbnail_height"
989
- msgstr ""
990
- "devuelve la miniatura con un link hacia la entrada/p&aacute;gina, requiere "
991
- "thumbnail_width & thumbnail_height"
992
-
993
- #: ../admin/partials/admin.php:948
994
- msgid ""
995
- "returns thumbnail image without linking to post/page, requires "
996
- "thumbnail_width & thumbnail_height"
997
- msgstr ""
998
- "devuelve la miniatura sin link hacia la entrada/p&aacute;gina, requiere "
999
- "thumbnail_width & thumbnail_height"
1000
-
1001
- #: ../admin/partials/admin.php:948
1002
- msgid "returns thumbnail url, requires thumbnail_width & thumbnail_height"
1003
- msgstr ""
1004
- "devuelve la url de la miniatura, requires thumbnail_width & thumbnail_height"
1005
-
1006
- #: ../admin/partials/admin.php:948
1007
- msgid "returns linked post/page title"
1008
- msgstr "devuelve el t&iacute;tulo de la entrada/p&aacute;gina con enlace"
1009
-
1010
- #: ../admin/partials/admin.php:948
1011
- msgid "returns the post/page ID"
1012
- msgstr "devuelve la URL de la entrada/p&aacute;gina"
1013
-
1014
- #: ../admin/partials/admin.php:948
1015
- msgid ""
1016
- "returns post/page excerpt, and requires excerpt_length to be greater than 0"
1017
- msgstr ""
1018
- "devuelve el resumen de la entrada/p&aacute;gina, requiere que excerpt_length "
1019
- "sea mayor a 0"
1020
-
1021
- #: ../admin/partials/admin.php:948
1022
- msgid "returns the default stats tags"
1023
- msgstr "devuelve el stats tag por defecto"
1024
-
1025
- #: ../admin/partials/admin.php:948
1026
- msgid ""
1027
- "returns post/page current rating, requires WP-PostRatings installed and "
1028
- "enabled"
1029
- msgstr ""
1030
- "devuelve el rating actual de la entrada/p&aacute;gina, requiere que WP-"
1031
- "PostRatings est&eacute; instalado y activo"
1032
-
1033
- #: ../admin/partials/admin.php:948
1034
- msgid ""
1035
- "returns post/page current rating as an integer, requires WP-PostRatings "
1036
- "installed and enabled"
1037
- msgstr ""
1038
- "devuelve el rating actual de la entrada/p&aacute;gina como un entero, "
1039
- "requiere que WP-PostRatings est&eacute; instalado y activo"
1040
-
1041
- #: ../admin/partials/admin.php:948
1042
- msgid "returns the URL of the post/page"
1043
- msgstr "devuelve la URL de la entrada/p&aacute;gina"
1044
-
1045
- #: ../admin/partials/admin.php:948
1046
- msgid "returns post/page title, no link"
1047
- msgstr "devuelve el t&iacute;tulo de la entrada/p&aacute;gina, sin enlace"
1048
-
1049
- #: ../admin/partials/admin.php:948
1050
- msgid "returns linked author name, requires stats_author=1"
1051
- msgstr "devuelve el nombre del autor con enlace, requiere stats_author=1"
1052
-
1053
- #: ../admin/partials/admin.php:948
1054
- msgid "returns linked category name, requires stats_category=1"
1055
- msgstr ""
1056
- "devuelve el nombre de la categor&iacute;a con enlace, requiere "
1057
- "stats_category=1"
1058
-
1059
- #: ../admin/partials/admin.php:948
1060
- msgid "returns linked taxonomy names, requires stats_taxonomy=1"
1061
- msgstr ""
1062
- "devuelve los nombres de las taxonom&iacute;as con enlace, requiere "
1063
- "stats_taxonomy=1"
1064
-
1065
- #: ../admin/partials/admin.php:948
1066
- msgid "returns views count only, no text"
1067
- msgstr "devuelve el n&uacute;mero de vistas, sin texto adicional"
1068
-
1069
- #: ../admin/partials/admin.php:948
1070
- msgid "returns comments count only, no text, requires stats_comments=1"
1071
- msgstr ""
1072
- "devuelve el n&uacute;mero de comentarios, sin texto adicional, requiere "
1073
- "stats_comments=1"
1074
-
1075
- #: ../admin/partials/admin.php:948
1076
- msgid "returns post/page date, requires stats_date=1"
1077
- msgstr "devuelve la fecha de la entrada/p&aacute;gina, requiere stats_date=1"
1078
-
1079
- #: ../includes/class-wordpress-popular-posts-output.php:128
1080
- msgid "Sorry. No data so far."
1081
- msgstr "Lo lamentamos. No hay nada que mostrar a&uacute;n."
1082
-
1083
- #: ../includes/class-wordpress-popular-posts-output.php:519
1084
- #, php-format
1085
- msgid "%s ago"
1086
- msgstr "hace %s"
1087
-
1088
- #: ../includes/class-wordpress-popular-posts-output.php:736
1089
- #, php-format
1090
- msgid "1 view per day"
1091
- msgid_plural "%s views per day"
1092
- msgstr[0] "1 vista por d&iacute;a"
1093
- msgstr[1] "%s vistas por d&iacute;a"
1094
-
1095
- #: ../includes/class-wordpress-popular-posts-output.php:765
1096
- #, php-format
1097
- msgid "by %s"
1098
- msgstr "por %s"
1099
-
1100
- #: ../includes/class-wordpress-popular-posts-output.php:771
1101
- #, php-format
1102
- msgid "posted %s"
1103
- msgstr "publicado %s"
1104
-
1105
- #: ../includes/class-wordpress-popular-posts-output.php:771
1106
- #, php-format
1107
- msgid "posted on %s"
1108
- msgstr "publicado el %s"
1109
-
1110
- #: ../includes/class-wordpress-popular-posts-output.php:780
1111
- #, php-format
1112
- msgid "under %s"
1113
- msgstr "bajo %s"
1114
-
1115
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:309
1116
- msgid "Return popular posts from specified custom post type(s)."
1117
- msgstr ""
1118
- "Devuelve entradas populares de los custom post type(s) especificado(s)."
1119
-
1120
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:316
1121
- msgid "The maximum number of popular posts to return."
1122
- msgstr "El m&aacute;ximo n&uacute;mero de entradas populares a devolver."
1123
-
1124
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:324
1125
- msgid ""
1126
- "Retrieve the most popular entries published within the specified time range."
1127
- msgstr ""
1128
- "Devuelve las entradas m&aacute;s populares publicadas en el rango de tiempo "
1129
- "especificado."
1130
-
1131
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:332
1132
- msgid "An offset point for the collection."
1133
- msgstr "Punto de offset para la colecci&oacute;n."
1134
-
1135
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:340
1136
- msgid "Set the sorting option of the popular posts."
1137
- msgstr "Configura el ordenado de las entradas populares."
1138
-
1139
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:348
1140
- msgid "Return posts from a specified time range."
1141
- msgstr "Devuelve entradas de un rango de tiempo especificado."
1142
-
1143
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:356
1144
- msgid "Specifies the time unit of the custom time range."
1145
- msgstr "Especifica la unidad de tiempo del rango de tiempo personalizado."
1146
-
1147
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:364
1148
- msgid "Specifies the number of time units of the custom time range."
1149
- msgstr ""
1150
- "Especifica el n&uacute;mero de unidades de tiempo del rango de tiempo "
1151
- "personalizado."
1152
-
1153
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:372
1154
- msgid "Post IDs to exclude."
1155
- msgstr "ID(s) de Entrada(s) a excluir."
1156
-
1157
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:380
1158
- msgid "Include posts in a specified taxonomy."
1159
- msgstr "Incluye entradas de una taxonom&iacute;a espec&iacute;fica."
1160
-
1161
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:388
1162
- msgid "Taxonomy IDs, separated by comma (prefix a minus sign to exclude)."
1163
- msgstr ""
1164
- "IDs de taxonom&iacute;a separados por comma (agrega un s&iacute;mbolo "
1165
- "negativo para excluir)."
1166
-
1167
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:396
1168
- msgid "Author ID(s)."
1169
- msgstr "ID(s) de Autor(es)."
1170
-
1171
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:416
1172
- msgid "Security nonce."
1173
- msgstr "Nonce de seguridad."
1174
-
1175
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:422
1176
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:455
1177
- msgid "The post / page ID."
1178
- msgstr "El ID de la entrada / p&aacute;gina."
1179
-
1180
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:429
1181
- msgid "Enables Data Sampling."
1182
- msgstr "Habilita el Sampleo de Datos."
1183
-
1184
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:436
1185
- msgid "Sets the Sampling Rate."
1186
- msgstr "Configura la rata de sampleo."
1187
-
1188
- #: ../includes/class-wordpress-popular-posts-widget.php:21
1189
- msgid "The most Popular Posts on your blog."
1190
- msgstr "Las entradas m&aacute;s populares en tu blog."
1191
-
1192
- #: ../includes/class-wordpress-popular-posts-widget.php:92
1193
- #, php-format
1194
- msgid ""
1195
- "Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
1196
- "the <em>id</em> attribute on before_widget (see <a href=\"%s\" target="
1197
- "\"_blank\" rel=\"nofollow\">register_sidebar</a> for more)"
1198
- msgstr ""
1199
- "Error: no se puede ajaxificar WordPress Popular Posts en este tema. Le falta "
1200
- "el atributo <em>id</em> en before_widget (ver <a href=\"%s\" target=\"_blank"
1201
- "\" rel=\"nofollow\">register_sidebar</a> para m&aacute;s detalles)"
1202
-
1203
- #: ../includes/widget-form.php:3
1204
- msgid "Title"
1205
- msgstr "T&iacute;tulo"
1206
-
1207
- #: ../includes/widget-form.php:9
1208
- msgid "Show up to"
1209
- msgstr "Mostrar hasta"
1210
-
1211
- #: ../includes/widget-form.php:10
1212
- msgid "posts"
1213
- msgstr "entradas"
1214
-
1215
- #: ../includes/widget-form.php:15
1216
- msgid "Sort posts by"
1217
- msgstr "Ordenar entradas por"
1218
-
1219
- #: ../includes/widget-form.php:18
1220
- msgid "Total views"
1221
- msgstr "Total de vistas"
1222
-
1223
- #: ../includes/widget-form.php:19
1224
- msgid "Avg. daily views"
1225
- msgstr "Porcentaje de vistas diarias"
1226
-
1227
- #: ../includes/widget-form.php:26
1228
- msgid "Filters"
1229
- msgstr "Filtros"
1230
-
1231
- #: ../includes/widget-form.php:28
1232
- msgid "Time Range"
1233
- msgstr "Rango de Tiempo"
1234
-
1235
- #: ../includes/widget-form.php:33
1236
- msgid "All-time"
1237
- msgstr "Todos los tiempos"
1238
-
1239
- #: ../includes/widget-form.php:50
1240
- msgid "Post type(s)"
1241
- msgstr "Post type(s)"
1242
-
1243
- #: ../includes/widget-form.php:53
1244
- msgid "Post ID(s) to exclude"
1245
- msgstr "ID(s) de Entrada(s) a excluir"
1246
-
1247
- #: ../includes/widget-form.php:56
1248
- msgid "Taxonomy"
1249
- msgstr "Taxonom&iacute;a"
1250
-
1251
- #: ../includes/widget-form.php:69
1252
- msgid "Taxonomy IDs, separated by comma (prefix a minus sign to exclude)"
1253
- msgstr ""
1254
- "IDs de taxonom&iacute;a separados por comma (agrega un s&iacute;mbolo "
1255
- "negativo para excluir)"
1256
-
1257
- #: ../includes/widget-form.php:75
1258
- msgid "Author ID(s)"
1259
- msgstr "ID(s) de Autor(es)"
1260
-
1261
- #: ../includes/widget-form.php:81
1262
- msgid "Posts settings"
1263
- msgstr "Configuraci&oacute;n de las entradas"
1264
-
1265
- #: ../includes/widget-form.php:85
1266
- msgid "Display post rating"
1267
- msgstr "Mostrar calificaci&oacute;n de la entrada"
1268
-
1269
- #: ../includes/widget-form.php:88
1270
- msgid "Shorten title"
1271
- msgstr "Acortar t&iacute;tulo"
1272
-
1273
- #: ../includes/widget-form.php:91
1274
- msgid "Shorten title to"
1275
- msgstr "Acortar t&iacute;tulo en"
1276
-
1277
- #: ../includes/widget-form.php:92 ../includes/widget-form.php:102
1278
- msgid "characters"
1279
- msgstr "caracteres"
1280
-
1281
- #: ../includes/widget-form.php:93 ../includes/widget-form.php:103
1282
- msgid "words"
1283
- msgstr "palabras"
1284
-
1285
- #: ../includes/widget-form.php:96
1286
- msgid "Display post excerpt"
1287
- msgstr "Mostrar resumen de la entrada"
1288
-
1289
- #: ../includes/widget-form.php:99
1290
- msgid "Keep text format and links"
1291
- msgstr "Mantener formato de texto y enlaces"
1292
-
1293
- #: ../includes/widget-form.php:100
1294
- msgid "Excerpt length"
1295
- msgstr "Largo del resumen"
1296
-
1297
- #: ../includes/widget-form.php:106
1298
- msgid "Display post thumbnail"
1299
- msgstr "Mostrar miniatura"
1300
-
1301
- #: ../includes/widget-form.php:109
1302
- msgid "Use predefined size"
1303
- msgstr "Utilizar un tama&ntilde;o predefinido"
1304
-
1305
- #: ../includes/widget-form.php:121
1306
- msgid "Set size manually"
1307
- msgstr "Configurar el tama&ntilde;o manualmente"
1308
-
1309
- #: ../includes/widget-form.php:123
1310
- msgid "Width"
1311
- msgstr "Ancho"
1312
-
1313
- #: ../includes/widget-form.php:126
1314
- msgid "Height"
1315
- msgstr "Alto"
1316
-
1317
- #: ../includes/widget-form.php:133
1318
- msgid "Stats Tag settings"
1319
- msgstr "Configuraci&oacute;n del Stats Tag"
1320
-
1321
- #: ../includes/widget-form.php:135
1322
- msgid "Display comment count"
1323
- msgstr "Mostrar cantidad de comentarios"
1324
-
1325
- #: ../includes/widget-form.php:137
1326
- msgid "Display views"
1327
- msgstr "Mostrar vistas"
1328
-
1329
- #: ../includes/widget-form.php:139
1330
- msgid "Display author"
1331
- msgstr "Mostrar autor"
1332
-
1333
- #: ../includes/widget-form.php:141
1334
- msgid "Display date"
1335
- msgstr "Mostrar fecha"
1336
-
1337
- #: ../includes/widget-form.php:144
1338
- msgid "Date Format"
1339
- msgstr "Formato de la fecha"
1340
-
1341
- #: ../includes/widget-form.php:146
1342
- msgid "Relative"
1343
- msgstr "Relativo"
1344
-
1345
- #: ../includes/widget-form.php:147
1346
- msgid "WordPress Date Format"
1347
- msgstr "Formato de fecha de WordPress"
1348
-
1349
- #: ../includes/widget-form.php:154
1350
- msgid "Display taxonomy"
1351
- msgstr "Mostrar taxonom&iacute;a"
1352
-
1353
- #: ../includes/widget-form.php:175
1354
- msgid "HTML Markup settings"
1355
- msgstr "Configuraci&oacute;n del Markup HTML"
1356
-
1357
- #: ../includes/widget-form.php:177
1358
- msgid "Use custom HTML Markup"
1359
- msgstr "Utilizar Markup HTML personalizado"
1360
-
1361
- #: ../includes/widget-form.php:180
1362
- msgid "Before / after title"
1363
- msgstr "Antes / despu&eacute;s del t&iacute;tulo"
1364
-
1365
- #: ../includes/widget-form.php:183
1366
- msgid "Before / after Popular Posts"
1367
- msgstr "Antes / despu&eacute;s de las entradas populares"
1368
-
1369
- #: ../includes/widget-form.php:186
1370
- msgid "Post HTML Markup"
1371
- msgstr "Markup HTML de la entrada"
1372
-
1373
- #~ msgid "WPP Cache Expiry Policy"
1374
- #~ msgstr "WPP Pol&iacute;tica de Expiraci&oacute;n del Cache"
1375
-
1376
- #~ msgid "Upload"
1377
- #~ msgstr "Subir"
1378
-
1379
- #~ msgid ""
1380
- #~ "How-to: upload (or select) an image, set Size to Full and click on "
1381
- #~ "Upload. After it's done, hit on Apply to save changes"
1382
- #~ msgstr ""
1383
- #~ "Tutorial: sube (o selecciona) una imagen, selecciona Tama&ntilde;o "
1384
- #~ "Completo y haz clic en Subir. Cuando termine, dale a Aplicar para guardar "
1385
- #~ "los cambios"
1386
-
1387
- #~ msgid "Responsive support"
1388
- #~ msgstr "Soporte Responsive"
1389
-
1390
- #~ msgid ""
1391
- #~ "If enabled, WordPress Popular Posts will strip height and width "
1392
- #~ "attributes out of thumbnails' image tags"
1393
- #~ msgstr ""
1394
- #~ "Si se activa, WordPress Popular Posts quitar&aacute; los atributos height "
1395
- #~ "y width de las etiquetas image de las miniaturas"
1396
-
1397
- #~ msgid "Loading..."
1398
- #~ msgstr "Cargando..."
1399
-
1400
- #~ msgid "About"
1401
- #~ msgstr "Acerca de"
1402
-
1403
- #~ msgid "About WordPress Popular Posts %s"
1404
- #~ msgstr "Acerca de WordPress Popular Posts %s"
1405
-
1406
- #~ msgid "This version includes the following changes"
1407
- #~ msgstr "Esta versi&oacute;n incluye los siguientes cambios"
1408
-
1409
- #~ msgid "Need help?"
1410
- #~ msgstr "&iquest;Necesitas ayuda?"
1411
-
1412
- #~ msgid ""
1413
- #~ "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, "
1414
- #~ "questions and feedback."
1415
- #~ msgstr ""
1416
- #~ "Visita <a href=\"%s\" target=\"_blank\">el foro</a> para obtener soporte, "
1417
- #~ "hacer preguntas y dejar tu feedback."
1418
-
1419
- #~ msgid "Let's make this plugin even better!"
1420
- #~ msgstr "&iexcl;Hagamos a este plugin inclusive mejor!"
1421
-
1422
- #~ msgid ""
1423
- #~ "Click on each tab to see what are the most popular entries on your blog "
1424
- #~ "in the last 24 hours, this week, last 30 days or all time since WordPress "
1425
- #~ "Popular Posts was installed."
1426
- #~ msgstr ""
1427
- #~ "Haz clic en cada pesta&ntilde;a para ver las entradas m&aacute;s "
1428
- #~ "populares de tu blog en las &uacute;ltimas 24 horas, esta semana, los "
1429
- #~ "&uacute;ltimos 30 d&iacute;as o de todos los tiempos desde que WordPress "
1430
- #~ "Popular Posts fue instalado."
1431
-
1432
- #~ msgid "Order by comments"
1433
- #~ msgstr "Ordenar por comentarios"
1434
-
1435
- #~ msgid "Order by avg. daily views"
1436
- #~ msgstr "Ordenar por average de vistas diarias"
1437
-
1438
- #~ msgid "Category(ies) ID(s)"
1439
- #~ msgstr "ID(s) de Categor&iacute;a(s)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wordpress-popular-posts-es_VE.mo DELETED
Binary file
languages/wordpress-popular-posts-es_VE.po DELETED
@@ -1,1439 +0,0 @@
1
- # Copyright (C) 2014 Wordpress Popular Posts
2
- # This file is distributed under the same license as the Wordpress Popular Posts package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: WordPress Popular Posts\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
7
- "POT-Creation-Date: 2018-06-25 18:08-0400\n"
8
- "PO-Revision-Date: 2018-06-25 18:09-0400\n"
9
- "Last-Translator: \n"
10
- "Language-Team: Héctor Cabrera <me@cabrerahector.com>\n"
11
- "Language: es_VE\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Generator: Poedit 2.0.7\n"
17
- "X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;"
18
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
19
- "esc_html_x;_c;_nc;_n:1,2\n"
20
- "X-Poedit-Basepath: .\n"
21
- "X-Poedit-SourceCharset: UTF-8\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPath-1: ..\n"
24
-
25
- #: ../admin/class-wordpress-popular-posts-admin.php:173
26
- #, php-format
27
- msgid "1 view in the last hour"
28
- msgid_plural "%s views in the last hour"
29
- msgstr[0] "1 vista en la &uacute;ltima hora"
30
- msgstr[1] "%s vistas en la &uacute;ltima hora"
31
-
32
- #: ../admin/class-wordpress-popular-posts-admin.php:239
33
- msgid "Use this image"
34
- msgstr "Utilizar esta imagen"
35
-
36
- #: ../admin/class-wordpress-popular-posts-admin.php:257
37
- msgid "Overview"
38
- msgstr "General"
39
-
40
- #: ../admin/class-wordpress-popular-posts-admin.php:258
41
- msgid ""
42
- "Welcome to WordPress Popular Posts' Dashboard! In this screen you will find "
43
- "statistics on what's popular on your site, tools to further tweak WPP to "
44
- "your needs, and more!"
45
- msgstr ""
46
- "&iexcl;Bienvenido al Dashboard de WordPress Popular Posts! En esta pantalla "
47
- "encontrar&aacute;s estad&iacute;sticas de lo m&aacute;s popular en tu sitio, "
48
- "herramientas para configurar WPP a tu gusto, &iexcl;y mucho m&aacute;s!"
49
-
50
- #: ../admin/class-wordpress-popular-posts-admin.php:264
51
- msgid "Like this plugin?"
52
- msgstr "&iquest;Te gusta este plugin?"
53
-
54
- #: ../admin/class-wordpress-popular-posts-admin.php:266
55
- msgid ""
56
- "Each donation motivates me to keep releasing free stuff for the WordPress "
57
- "community!"
58
- msgstr ""
59
- "&iexcl;Cada donaci&oacute;n me motiva a seguir publicando cosas gratuitas "
60
- "para la comunidad de WordPress!"
61
-
62
- #: ../admin/class-wordpress-popular-posts-admin.php:273
63
- #, php-format
64
- msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
65
- msgstr ""
66
- "&iexcl;Puedes <a href=\"%s\" target=\"_blank\">dejar una rese&ntilde;a</a> "
67
- "tambi&eacute;n!"
68
-
69
- #: ../admin/class-wordpress-popular-posts-admin.php:282
70
- #, php-format
71
- msgid ""
72
- "<p><strong>For more information:</strong></p><ul><li><a href=\"%1$s"
73
- "\">Documentation</a></li><li><a href=\"%2$s\">Support</a></li></ul>"
74
- msgstr ""
75
- "<p><strong>Para m&aacute;s informaci&oacute;n:</strong></p><ul><li><a href="
76
- "\"%1$s\">Documentaci&oacute;n</a></li><li><a href=\"%2$s\">Soporte</a></li></"
77
- "ul>"
78
-
79
- #: ../admin/class-wordpress-popular-posts-admin.php:658
80
- #: ../admin/class-wordpress-popular-posts-admin.php:777
81
- #: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458
82
- #: ../includes/class-wordpress-popular-posts-output.php:742
83
- #, php-format
84
- msgid "1 view"
85
- msgid_plural "%s views"
86
- msgstr[0] "1 vista"
87
- msgstr[1] "%s vistas"
88
-
89
- #: ../admin/class-wordpress-popular-posts-admin.php:658
90
- #: ../admin/class-wordpress-popular-posts-admin.php:832
91
- #: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458
92
- #: ../includes/class-wordpress-popular-posts-output.php:723
93
- #, php-format
94
- msgid "1 comment"
95
- msgid_plural "%s comments"
96
- msgstr[0] "1 comentario"
97
- msgstr[1] "%s comentarios"
98
-
99
- #: ../admin/class-wordpress-popular-posts-admin.php:690
100
- #: ../includes/widget-form.php:17
101
- msgid "Comments"
102
- msgstr "Comentarios"
103
-
104
- #: ../admin/class-wordpress-popular-posts-admin.php:694
105
- msgid "Views"
106
- msgstr "Vistas"
107
-
108
- #: ../admin/class-wordpress-popular-posts-admin.php:778
109
- #: ../admin/class-wordpress-popular-posts-admin.php:833
110
- #: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459
111
- msgid "View"
112
- msgstr "Vista"
113
-
114
- #: ../admin/class-wordpress-popular-posts-admin.php:778
115
- #: ../admin/class-wordpress-popular-posts-admin.php:833
116
- #: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459
117
- msgid "Edit"
118
- msgstr "Editar"
119
-
120
- #: ../admin/class-wordpress-popular-posts-admin.php:789
121
- #: ../admin/class-wordpress-popular-posts-admin.php:844
122
- #: ../admin/partials/admin.php:423 ../admin/partials/admin.php:470
123
- msgid ""
124
- "Looks like traffic to your site is a little light right now. <br />Spread "
125
- "the word and come back later!"
126
- msgstr ""
127
- "Parece que el tr&aacute;fico hacia tu sitio web est&aacute; un poco ligero. "
128
- "<br />&iexcl;Haz un poco de promoci&oacute;n y regresa luego!"
129
-
130
- #: ../admin/class-wordpress-popular-posts-admin.php:912
131
- msgid "Settings"
132
- msgstr "Configuraci&oacute;n"
133
-
134
- #: ../admin/class-wordpress-popular-posts-admin.php:1302
135
- #, php-format
136
- msgid ""
137
- "Your PHP installation is too old. WordPress Popular Posts requires at least "
138
- "PHP version %1$s to function correctly. Please contact your hosting provider "
139
- "and ask them to upgrade PHP to %1$s or higher."
140
- msgstr ""
141
- "Tu versi&oacute;n de PHP es muy antigua. El plugin WordPress Popular Posts "
142
- "requiere al menos PHP version %1$s para funcionar correctamente. Por favor "
143
- "contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o "
144
- "mejor."
145
-
146
- #: ../admin/class-wordpress-popular-posts-admin.php:1309
147
- #, php-format
148
- msgid ""
149
- "Your WordPress version is too old. WordPress Popular Posts requires at least "
150
- "WordPress version %1$s to function correctly. Please update your blog via "
151
- "Dashboard &gt; Update."
152
- msgstr ""
153
- "Tu versi&oacute;n de WordPress es muy antigua. El plugin WordPress Popular "
154
- "Posts requiere al menos la versi&oacute;n %1$s para funcionar correctamente. "
155
- "Por favor actualiza tu blog via Escritorio &gt; Actualizaciones."
156
-
157
- #: ../admin/class-wordpress-popular-posts-admin.php:1334
158
- #, php-format
159
- msgid ""
160
- "<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> has been "
161
- "<strong>deactivated</strong>.</p></div>"
162
- msgstr ""
163
- "<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> ha sido "
164
- "<strong>desactivado</strong>.</p></div>"
165
-
166
- #: ../admin/partials/admin.php:6 ../admin/partials/admin.php:254
167
- msgid "Stats"
168
- msgstr "Estad&iacute;sticas"
169
-
170
- #: ../admin/partials/admin.php:7 ../admin/partials/admin.php:255
171
- msgid "Tools"
172
- msgstr "Herramientas"
173
-
174
- #: ../admin/partials/admin.php:8 ../admin/partials/admin.php:256
175
- msgid "Parameters"
176
- msgstr "Par&aacute;metros"
177
-
178
- #: ../admin/partials/admin.php:33 ../admin/partials/admin.php:48
179
- #: ../admin/partials/admin.php:71 ../admin/partials/admin.php:112
180
- msgid "Settings saved."
181
- msgstr "Configuraci&oacute;n guardada."
182
-
183
- #: ../admin/partials/admin.php:62
184
- msgid "Please provide the name of your custom field."
185
- msgstr "Por favor indica el nombre de tu custom field."
186
-
187
- #: ../admin/partials/admin.php:120
188
- msgid ""
189
- "Any changes made to WPP's default stylesheet will be lost after every plugin "
190
- "update. In order to prevent this from happening, please copy the wpp.css "
191
- "file (located at wp-content/plugins/wordpress-popular-posts/style) into your "
192
- "theme's directory"
193
- msgstr ""
194
- "Cualquier cambio hecho a la hoja de estilos por defecto de WPP se "
195
- "perder&aacute; cada vez que el plugin se actualize. Para evitar esto, por "
196
- "favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-"
197
- "popular-posts/style) a la carpeta de tu tema actual"
198
-
199
- #: ../admin/partials/admin.php:135
200
- msgid ""
201
- "This operation will delete all entries from WordPress Popular Posts' cache "
202
- "table and cannot be undone."
203
- msgstr ""
204
- "Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de "
205
- "WordPress Popular Posts y no se puede deshacer."
206
-
207
- #: ../admin/partials/admin.php:135 ../admin/partials/admin.php:174
208
- #: ../admin/partials/admin.php:213
209
- msgid "Do you want to continue?"
210
- msgstr "\\277Deseas continuar?"
211
-
212
- #: ../admin/partials/admin.php:147
213
- msgid "Success! The cache table has been cleared!"
214
- msgstr "\\241\\311xito! \\241La tabla cach\\351 ha sido borrada!"
215
-
216
- #: ../admin/partials/admin.php:151
217
- msgid "Error: cache table does not exist."
218
- msgstr "Error: la tabla cach\\351 no existe."
219
-
220
- #: ../admin/partials/admin.php:155 ../admin/partials/admin.php:163
221
- #: ../admin/partials/admin.php:194 ../admin/partials/admin.php:202
222
- #: ../admin/partials/admin.php:232 ../admin/partials/admin.php:240
223
- msgid "Invalid action."
224
- msgstr "Acci\\363n inv\\311lida."
225
-
226
- #: ../admin/partials/admin.php:159 ../admin/partials/admin.php:198
227
- #: ../admin/partials/admin.php:236
228
- msgid ""
229
- "Sorry, you do not have enough permissions to do this. Please contact the "
230
- "site administrator for support."
231
- msgstr ""
232
- "Lo lamento, no tienes permisos suficientes para hacer esto. Por favor "
233
- "contacta al administrador del sitio."
234
-
235
- #: ../admin/partials/admin.php:174
236
- msgid ""
237
- "This operation will delete all stored info from WordPress Popular Posts' "
238
- "data tables and cannot be undone."
239
- msgstr ""
240
- "Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las "
241
- "tablas de WordPress Popular Posts y no se puede deshacer."
242
-
243
- #: ../admin/partials/admin.php:186
244
- msgid "Success! All data have been cleared!"
245
- msgstr "\\241\\311xito! \\241Toda la data ha sido borrada!"
246
-
247
- #: ../admin/partials/admin.php:190
248
- msgid "Error: one or both data tables are missing."
249
- msgstr "Error: una o ambas tablas de datos no existen."
250
-
251
- #: ../admin/partials/admin.php:213
252
- msgid "This operation will delete all cached thumbnails and cannot be undone."
253
- msgstr ""
254
- "Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se "
255
- "puede deshacer."
256
-
257
- #: ../admin/partials/admin.php:224
258
- msgid "Success! All files have been deleted!"
259
- msgstr "\\241\\311xito! \\241Todos los archivos han sido borrados!"
260
-
261
- #: ../admin/partials/admin.php:228
262
- msgid "The thumbnail cache is already empty!"
263
- msgstr "\\241El cach\\351 de miniaturas ya est\\341 vac\\355o!"
264
-
265
- #: ../admin/partials/admin.php:253
266
- msgid "Menu"
267
- msgstr "Men&uacute;"
268
-
269
- #: ../admin/partials/admin.php:281
270
- msgid "Post type"
271
- msgstr "Post type"
272
-
273
- #: ../admin/partials/admin.php:284
274
- msgid "Limit"
275
- msgstr "L&iacute;mite"
276
-
277
- #: ../admin/partials/admin.php:287 ../includes/widget-form.php:48
278
- msgid "Display only posts published within the selected Time Range"
279
- msgstr ""
280
- "Mostrar s&oacute;lo entradas publicadas en el Rango de Tiempo seleccionado"
281
-
282
- #: ../admin/partials/admin.php:293 ../admin/partials/admin.php:331
283
- #: ../admin/partials/admin.php:540 ../admin/partials/admin.php:644
284
- #: ../admin/partials/admin.php:683
285
- msgid "Apply"
286
- msgstr "Aplicar"
287
-
288
- #: ../admin/partials/admin.php:294 ../admin/partials/admin.php:334
289
- msgid "Cancel"
290
- msgstr "Cancelar"
291
-
292
- #: ../admin/partials/admin.php:307
293
- msgid "Custom Time Range"
294
- msgstr "Rango de Tiempo Personalizado"
295
-
296
- #: ../admin/partials/admin.php:308
297
- msgid "Date Range"
298
- msgstr "Rango de Fechas"
299
-
300
- #: ../admin/partials/admin.php:316 ../admin/partials/admin.php:610
301
- #: ../includes/widget-form.php:41
302
- msgid "Minute(s)"
303
- msgstr "Minuto(s)"
304
-
305
- #: ../admin/partials/admin.php:317 ../admin/partials/admin.php:611
306
- #: ../includes/widget-form.php:42
307
- msgid "Hour(s)"
308
- msgstr "Hora(s)"
309
-
310
- #: ../admin/partials/admin.php:318 ../admin/partials/admin.php:612
311
- #: ../includes/widget-form.php:43
312
- msgid "Day(s)"
313
- msgstr "D&iacute;a(s)"
314
-
315
- #: ../admin/partials/admin.php:324
316
- msgid "Select a date..."
317
- msgstr "Selecciona una fecha..."
318
-
319
- #: ../admin/partials/admin.php:346
320
- msgid "Today"
321
- msgstr "Hoy"
322
-
323
- #: ../admin/partials/admin.php:347 ../includes/widget-form.php:30
324
- msgid "Last 24 hours"
325
- msgstr "&Uacute;ltimas 24 horas"
326
-
327
- #: ../admin/partials/admin.php:348 ../includes/widget-form.php:31
328
- msgid "Last 7 days"
329
- msgstr "&Uacute;ltimos 7 d&iacute;as"
330
-
331
- #: ../admin/partials/admin.php:349 ../includes/widget-form.php:32
332
- msgid "Last 30 days"
333
- msgstr "&Uacute;ltimos 30 d&iacute;as"
334
-
335
- #: ../admin/partials/admin.php:350 ../includes/widget-form.php:34
336
- msgid "Custom"
337
- msgstr "Personalizado"
338
-
339
- #: ../admin/partials/admin.php:354
340
- #, php-format
341
- msgid ""
342
- "Err... A nice little chart is supposed to be here, instead you are seeing "
343
- "this because your browser is too old. <br /> Please <a href=\"%s\" target="
344
- "\"_blank\">get a better browser</a>."
345
- msgstr ""
346
- "Ehh... se supone que aqu&iacute; saldr&iacute;a un gr&aacute;fico, pero en "
347
- "vez de eso est&aacute;s viendo &eacute;sto porque tu navegador es demasiado "
348
- "anticuado.<br /> Por favor <a href=\"%s\" target=\"_blank\">instala un mejor "
349
- "navegador</a>."
350
-
351
- #: ../admin/partials/admin.php:365
352
- msgid "Most viewed"
353
- msgstr "M&aacute;s vistos"
354
-
355
- #: ../admin/partials/admin.php:366
356
- msgid "Most commented"
357
- msgstr "M&aacute;s comentados"
358
-
359
- #: ../admin/partials/admin.php:367
360
- msgid "Trending now"
361
- msgstr "Siendo Tendencia Ahora"
362
-
363
- #: ../admin/partials/admin.php:368
364
- msgid "Hall of Fame"
365
- msgstr "Sal&oacute;n de la Fama"
366
-
367
- #: ../admin/partials/admin.php:480
368
- msgid "Thumbnails"
369
- msgstr "Miniaturas"
370
-
371
- #: ../admin/partials/admin.php:485
372
- msgid "Default thumbnail"
373
- msgstr "Miniatura por defecto"
374
-
375
- #: ../admin/partials/admin.php:490
376
- msgid "Change thumbnail"
377
- msgstr "Cambiar miniatura"
378
-
379
- #: ../admin/partials/admin.php:492
380
- msgid "This image will be displayed when no thumbnail is available"
381
- msgstr "Esta imagen se mostrar&aacute; cuando no haya miniatura disponible"
382
-
383
- #: ../admin/partials/admin.php:496
384
- msgid "Pick image from"
385
- msgstr "Seleccionar imagen desde"
386
-
387
- #: ../admin/partials/admin.php:499
388
- msgid "Featured image"
389
- msgstr "\tImagen destacada"
390
-
391
- #: ../admin/partials/admin.php:500
392
- msgid "First image on post"
393
- msgstr "Primera imagen de la entrada"
394
-
395
- #: ../admin/partials/admin.php:501
396
- msgid "First attachment"
397
- msgstr "Primer adjunto"
398
-
399
- #: ../admin/partials/admin.php:502
400
- msgid "Custom field"
401
- msgstr "Custom field"
402
-
403
- #: ../admin/partials/admin.php:505
404
- msgid "Tell WordPress Popular Posts where it should get thumbnails from"
405
- msgstr ""
406
- "Dile a WordPress Popular Posts de d&oacute;nde debe obtener las miniaturas"
407
-
408
- #: ../admin/partials/admin.php:509
409
- msgid "Custom field name"
410
- msgstr "Nombre del custom field"
411
-
412
- #: ../admin/partials/admin.php:515
413
- msgid "Resize image from Custom field?"
414
- msgstr "&iexcl;Ajustar la imagen del Custom field?"
415
-
416
- #: ../admin/partials/admin.php:518
417
- msgid "No, I will upload my own thumbnail"
418
- msgstr "No, subir&eacute; mi propia miniatura"
419
-
420
- #: ../admin/partials/admin.php:519
421
- msgid "Yes"
422
- msgstr "S&iacute;"
423
-
424
- #: ../admin/partials/admin.php:530
425
- msgid "Empty image cache"
426
- msgstr "Vaciar el cach&eacute; de im&aacute;genes"
427
-
428
- #: ../admin/partials/admin.php:531
429
- msgid "Use this button to clear WPP's thumbnails cache"
430
- msgstr ""
431
- "Utiliza este bot&oacute;n para vaciar el cach&eacute; de miniaturas de WPP"
432
-
433
- #: ../admin/partials/admin.php:551
434
- msgid "Data"
435
- msgstr "Datos"
436
-
437
- #: ../admin/partials/admin.php:556
438
- msgid "Log views from"
439
- msgstr "Registrar vistas de"
440
-
441
- #: ../admin/partials/admin.php:559
442
- msgid "Visitors only"
443
- msgstr "S&oacute;lo visitantes"
444
-
445
- #: ../admin/partials/admin.php:560
446
- msgid "Logged-in users only"
447
- msgstr "S&oacute;lo usuarios conectados"
448
-
449
- #: ../admin/partials/admin.php:561
450
- msgid "Everyone"
451
- msgstr "Todos"
452
-
453
- #: ../admin/partials/admin.php:567
454
- msgid "Log limit"
455
- msgstr "L&iacute;mite del registro"
456
-
457
- #: ../admin/partials/admin.php:570 ../admin/partials/admin.php:585
458
- #: ../admin/partials/admin.php:625 ../admin/partials/admin.php:674
459
- msgid "Disabled"
460
- msgstr "Deshabilitado"
461
-
462
- #: ../admin/partials/admin.php:571
463
- msgid "Keep data for"
464
- msgstr "Guardar datos por"
465
-
466
- #: ../admin/partials/admin.php:574
467
- msgid "day(s)"
468
- msgstr "d&iacute;a(s)"
469
-
470
- #: ../admin/partials/admin.php:576
471
- msgid ""
472
- "Data older than the specified time frame will be automatically discarded"
473
- msgstr ""
474
- "La data que sea m&aacute;s antigua que el tiempo especificado ser&aacute;n "
475
- "autom&aacute;ticamente descartada"
476
-
477
- #: ../admin/partials/admin.php:582
478
- msgid "Ajaxify widget"
479
- msgstr "Usar Ajax con el widget"
480
-
481
- #: ../admin/partials/admin.php:586 ../admin/partials/admin.php:626
482
- #: ../admin/partials/admin.php:673
483
- msgid "Enabled"
484
- msgstr "Habilitado"
485
-
486
- #: ../admin/partials/admin.php:590
487
- msgid ""
488
- "If you are using a caching plugin such as WP Super Cache, enabling this "
489
- "feature will keep the popular list from being cached by it"
490
- msgstr ""
491
- "Si est&aacute;s utilizando un plugin de cacheo como WP Super Cache, "
492
- "habilitar esta caracter&iacute;stica evitar&aacute; que la lista de entradas "
493
- "populares sea guardada en cach&eacute;"
494
-
495
- #: ../admin/partials/admin.php:594
496
- msgid "Data Caching"
497
- msgstr "Caché de Datos"
498
-
499
- #: ../admin/partials/admin.php:594 ../admin/partials/admin.php:622
500
- #: ../includes/widget-form.php:3 ../includes/widget-form.php:50
501
- #: ../includes/widget-form.php:56 ../includes/widget-form.php:75
502
- #: ../includes/widget-form.php:85 ../includes/widget-form.php:177
503
- msgid "What is this?"
504
- msgstr "&iquest;Qu&eacute; es &eacute;sto?"
505
-
506
- #: ../admin/partials/admin.php:597
507
- msgid "Never cache"
508
- msgstr "Nunca almacenar en cach&eacute;"
509
-
510
- #: ../admin/partials/admin.php:598
511
- msgid "Enable caching"
512
- msgstr "Habilitar cach&eacute;"
513
-
514
- #: ../admin/partials/admin.php:602
515
- msgid ""
516
- "WPP can cache the popular list for a specified amount of time. Recommended "
517
- "for large / high traffic sites"
518
- msgstr ""
519
- "WPP puede almacenar en cach&eacute; el listado de entradas populares por una "
520
- "cantidad de tiempo especificada. Recomendado para sitios web grandes / de "
521
- "alto tr&aacute;fico"
522
-
523
- #: ../admin/partials/admin.php:606
524
- msgid "Refresh cache every"
525
- msgstr "Refrescar el cach&eacute; cada"
526
-
527
- #: ../admin/partials/admin.php:613
528
- msgid "Week(s)"
529
- msgstr "Semana(s)"
530
-
531
- #: ../admin/partials/admin.php:614
532
- msgid "Month(s)"
533
- msgstr "Mes(es)"
534
-
535
- #: ../admin/partials/admin.php:615
536
- msgid "Year(s)"
537
- msgstr "A&ntilde;o(s)"
538
-
539
- #: ../admin/partials/admin.php:618
540
- msgid "Really? That long?"
541
- msgstr "&iquest;En serio? &iquest;Tanto tiempo?"
542
-
543
- #: ../admin/partials/admin.php:622
544
- msgid "Data Sampling"
545
- msgstr "Sampleo de Datos"
546
-
547
- #: ../admin/partials/admin.php:630
548
- #, php-format
549
- msgid ""
550
- "By default, WordPress Popular Posts stores in database every single visit "
551
- "your site receives. For small / medium sites this is generally OK, but on "
552
- "large / high traffic sites the constant writing to the database may have an "
553
- "impact on performance. With <a href=\"%1$s\" target=\"_blank\">data "
554
- "sampling</a>, WordPress Popular Posts will store only a subset of your "
555
- "traffic and report on the tendencies detected in that sample set (for more, "
556
- "<a href=\"%2$s\" target=\"_blank\">please read here</a>)"
557
- msgstr ""
558
- "Por defecto, WordPress Popular Posts almacena en la base de datos todas y "
559
- "cada una de las visitas que recibe tu sitio. Para sitios peque&ntilde;os / "
560
- "medianos esto generalmente est&aacute; bien, pero en sitios grandes / de "
561
- "mucho tr&aacute;fico la escritura constante en la base de datos pudiese "
562
- "causar un impacto en su rendimiento. Con <a href=\"%1$s\" target=\"_blank"
563
- "\">data sampling</a>, WordPress Popular Posts almacenar&aacute; s&oacute;lo "
564
- "un subconjunto de tu tr&aacute;fico y reportar&aacute; sobre las tendencias "
565
- "detectadas en ese conjunto de muestras (para m&aacute;s, <a href=\"%2$s\" "
566
- "target=\"_blank\">por favor leer ac&aacute;</a>)"
567
-
568
- #: ../admin/partials/admin.php:634
569
- msgid "Sample Rate"
570
- msgstr "Rata de Sampleo"
571
-
572
- #: ../admin/partials/admin.php:638
573
- #, php-format
574
- msgid ""
575
- "A sampling rate of %d is recommended for large / high traffic sites. For "
576
- "lower traffic sites, you should lower the value"
577
- msgstr ""
578
- "Se recomienda una rata de sampleo de %d para sitios grandes / de alto "
579
- "tr&aacute;fico. Para sitios con menos tr&aacute;fico, deber&iacute;as "
580
- "disminuir el valor"
581
-
582
- #: ../admin/partials/admin.php:655
583
- msgid "Miscellaneous"
584
- msgstr "Miscel&aacute;neos"
585
-
586
- #: ../admin/partials/admin.php:660
587
- msgid "Open links in"
588
- msgstr "Abrir enlaces en"
589
-
590
- #: ../admin/partials/admin.php:663
591
- msgid "Current window"
592
- msgstr "Ventana actual"
593
-
594
- #: ../admin/partials/admin.php:664
595
- msgid "New tab/window"
596
- msgstr "Nueva pesta&ntilde;a/ventana"
597
-
598
- #: ../admin/partials/admin.php:670
599
- msgid "Use plugin's stylesheet"
600
- msgstr "Utilizar la hoja de estilos del plugin"
601
-
602
- #: ../admin/partials/admin.php:677
603
- msgid ""
604
- "By default, the plugin includes a stylesheet called wpp.css which you can "
605
- "use to style your popular posts listing. If you wish to use your own "
606
- "stylesheet or do not want it to have it included in the header section of "
607
- "your site, use this."
608
- msgstr ""
609
- "Por defecto, el plugin incluye una hoja de estilos llamada wpp.css que "
610
- "puedes utilizar para darle estilos a tu listado de entradas populares. Si "
611
- "deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se "
612
- "incluya en el header de tu sitio web, utiliza esto."
613
-
614
- #: ../admin/partials/admin.php:696
615
- msgid ""
616
- "WordPress Popular Posts maintains data in two separate tables: one for "
617
- "storing the most popular entries on a daily basis (from now on, \"cache\"), "
618
- "and another one to keep the All-time data (from now on, \"historical data\" "
619
- "or just \"data\"). If for some reason you need to clear the cache table, or "
620
- "even both historical and cache tables, please use the buttons below to do so."
621
- msgstr ""
622
- "WordPress Popular Posts mantiene la data en dos tablas separadas: una para "
623
- "guardar diariamente las entradas m&aacute;s populares (\"cach&eacute;\", de "
624
- "aqu&iacute; en adelante), y otra tabla para almacenar la data de Todos los "
625
- "tiempos (\"data hist&oacute;rica\" o simplemente \"data\"). Si por alguna "
626
- "raz&oacute;n necesitas vaciar la tabla cach&eacute;, o inclusive las dos "
627
- "tablas hist&oacute;ricas y de cach&eacute;, por favor utiliza los botones de "
628
- "abajo."
629
-
630
- #: ../admin/partials/admin.php:697
631
- msgid "Empty cache"
632
- msgstr "Vaciar el cach&eacute;"
633
-
634
- #: ../admin/partials/admin.php:697
635
- msgid "Use this button to manually clear entries from WPP cache only"
636
- msgstr ""
637
- "Utiliza este bot&oacute;n para vaciar manualmente s&oacute;lo las entradas "
638
- "del cach&eacute; de WPP"
639
-
640
- #: ../admin/partials/admin.php:698
641
- msgid "Clear all data"
642
- msgstr "Eliminar toda la data"
643
-
644
- #: ../admin/partials/admin.php:698
645
- msgid "Use this button to manually clear entries from all WPP data tables"
646
- msgstr ""
647
- "Utiliza este bot&oacute;n para limpiar manualmente las tablas de datos de WPP"
648
-
649
- #: ../admin/partials/admin.php:705
650
- #, php-format
651
- msgid ""
652
- "With the following parameters you can customize the popular posts list when "
653
- "using either the <a href=\"%1$s\">wpp_get_mostpopular() template tag</a> or "
654
- "the <a href=\"%2$s\">[wpp] shortcode</a>."
655
- msgstr ""
656
- "Con los siguientes par&aacute;metros puedes personalizar el listado de "
657
- "entradas populares cuando utilices el <a href=\"%1$s\">template tag "
658
- "wpp_get_mostpopular()</a> o el <a href=\"%2$s\">shortcode [wpp]</a>."
659
-
660
- #: ../admin/partials/admin.php:713
661
- msgid "Parameter"
662
- msgstr "Par&aacute;metro"
663
-
664
- #: ../admin/partials/admin.php:714
665
- msgid "What it does "
666
- msgstr "Qu&eacute; hace"
667
-
668
- #: ../admin/partials/admin.php:715
669
- msgid "Possible values"
670
- msgstr "Valores posibles"
671
-
672
- #: ../admin/partials/admin.php:716
673
- msgid "Defaults to"
674
- msgstr "Por defecto"
675
-
676
- #: ../admin/partials/admin.php:717
677
- msgid "Example"
678
- msgstr "Ejemplo"
679
-
680
- #: ../admin/partials/admin.php:723
681
- msgid "Sets a heading for the list"
682
- msgstr "Configura el encabezado de la lista"
683
-
684
- #: ../admin/partials/admin.php:724 ../admin/partials/admin.php:731
685
- #: ../admin/partials/admin.php:738 ../admin/partials/admin.php:787
686
- #: ../admin/partials/admin.php:794 ../admin/partials/admin.php:801
687
- #: ../admin/partials/admin.php:808 ../admin/partials/admin.php:815
688
- #: ../admin/partials/admin.php:822 ../admin/partials/admin.php:913
689
- #: ../admin/partials/admin.php:934 ../admin/partials/admin.php:941
690
- msgid "Text string"
691
- msgstr "Texto"
692
-
693
- #: ../admin/partials/admin.php:725 ../admin/partials/admin.php:795
694
- #: ../admin/partials/admin.php:802 ../admin/partials/admin.php:809
695
- #: ../admin/partials/admin.php:816 ../admin/partials/admin.php:823
696
- msgid "None"
697
- msgstr "Ninguno"
698
-
699
- #: ../admin/partials/admin.php:726 ../admin/partials/admin.php:733
700
- #: ../admin/partials/admin.php:740 ../admin/partials/admin.php:747
701
- #: ../admin/partials/admin.php:754 ../admin/partials/admin.php:761
702
- #: ../admin/partials/admin.php:768 ../admin/partials/admin.php:775
703
- #: ../admin/partials/admin.php:782 ../admin/partials/admin.php:789
704
- #: ../admin/partials/admin.php:796 ../admin/partials/admin.php:803
705
- #: ../admin/partials/admin.php:810 ../admin/partials/admin.php:817
706
- #: ../admin/partials/admin.php:824 ../admin/partials/admin.php:831
707
- #: ../admin/partials/admin.php:838 ../admin/partials/admin.php:845
708
- #: ../admin/partials/admin.php:852 ../admin/partials/admin.php:859
709
- #: ../admin/partials/admin.php:866 ../admin/partials/admin.php:873
710
- #: ../admin/partials/admin.php:880 ../admin/partials/admin.php:887
711
- #: ../admin/partials/admin.php:894 ../admin/partials/admin.php:901
712
- #: ../admin/partials/admin.php:908 ../admin/partials/admin.php:915
713
- #: ../admin/partials/admin.php:922 ../admin/partials/admin.php:929
714
- #: ../admin/partials/admin.php:936 ../admin/partials/admin.php:943
715
- #: ../admin/partials/admin.php:950
716
- msgid "With wpp_get_mostpopular():"
717
- msgstr "Con wpp_get_mostpopular():"
718
-
719
- #: ../admin/partials/admin.php:726 ../admin/partials/admin.php:733
720
- #: ../admin/partials/admin.php:740 ../admin/partials/admin.php:747
721
- #: ../admin/partials/admin.php:754 ../admin/partials/admin.php:761
722
- #: ../admin/partials/admin.php:768 ../admin/partials/admin.php:775
723
- #: ../admin/partials/admin.php:782 ../admin/partials/admin.php:789
724
- #: ../admin/partials/admin.php:796 ../admin/partials/admin.php:803
725
- #: ../admin/partials/admin.php:810 ../admin/partials/admin.php:817
726
- #: ../admin/partials/admin.php:824 ../admin/partials/admin.php:831
727
- #: ../admin/partials/admin.php:838 ../admin/partials/admin.php:845
728
- #: ../admin/partials/admin.php:852 ../admin/partials/admin.php:859
729
- #: ../admin/partials/admin.php:866 ../admin/partials/admin.php:873
730
- #: ../admin/partials/admin.php:880 ../admin/partials/admin.php:887
731
- #: ../admin/partials/admin.php:894 ../admin/partials/admin.php:901
732
- #: ../admin/partials/admin.php:908 ../admin/partials/admin.php:915
733
- #: ../admin/partials/admin.php:922 ../admin/partials/admin.php:929
734
- #: ../admin/partials/admin.php:936 ../admin/partials/admin.php:943
735
- #: ../admin/partials/admin.php:950
736
- msgid "With the [wpp] shortcode:"
737
- msgstr "Con el shortcode [wpp]:"
738
-
739
- #: ../admin/partials/admin.php:730
740
- msgid "Set the opening tag for the heading of the list"
741
- msgstr "Configura la etiqueta de apertura para el encabezado de la lista"
742
-
743
- #: ../admin/partials/admin.php:737
744
- msgid "Set the closing tag for the heading of the list"
745
- msgstr "Configura la etiqueta de cierre para el encabezado de la lista"
746
-
747
- #: ../admin/partials/admin.php:744
748
- msgid "Sets the maximum number of popular posts to be shown on the listing"
749
- msgstr ""
750
- "Configura el m&aacute;ximo de entradas populares a ser mostradas en la lista"
751
-
752
- #: ../admin/partials/admin.php:745 ../admin/partials/admin.php:759
753
- #: ../admin/partials/admin.php:829 ../admin/partials/admin.php:843
754
- #: ../admin/partials/admin.php:864 ../admin/partials/admin.php:871
755
- msgid "Positive integer"
756
- msgstr "Entero positivo"
757
-
758
- #: ../admin/partials/admin.php:751
759
- msgid ""
760
- "Tells WordPress Popular Posts to retrieve the most popular entries within "
761
- "the time range specified by you"
762
- msgstr ""
763
- "Le indica a WordPress Popular Posts que debe listar aquellas entradas que "
764
- "hayan sido populares dentro del rango de tiempo especificado por ti"
765
-
766
- #: ../admin/partials/admin.php:758
767
- msgid "Especifies the number of time units of the custom time range"
768
- msgstr ""
769
- "Especifica el n&uacute;mero de unidades de tiempo del rango de tiempo "
770
- "personalizado"
771
-
772
- #: ../admin/partials/admin.php:765
773
- msgid "Especifies the time unit of the custom time range"
774
- msgstr "Especifica la unidad de tiempo del rango de tiempo personalizado"
775
-
776
- #: ../admin/partials/admin.php:772
777
- msgid ""
778
- "Tells WordPress Popular Posts to retrieve the most popular entries published "
779
- "within the time range specified by you"
780
- msgstr ""
781
- "Le indica a WordPress Popular Posts que debe listar aquellas entradas "
782
- "populares publicadas dentro del rango de tiempo especificado por ti"
783
-
784
- #: ../admin/partials/admin.php:779
785
- msgid "Sets the sorting option of the popular posts"
786
- msgstr "Configura el ordenado de las entradas populares"
787
-
788
- #: ../admin/partials/admin.php:780
789
- msgid "(for average views per day)"
790
- msgstr "(para el porcentaje de vistas por d&iacute;a)"
791
-
792
- #: ../admin/partials/admin.php:786
793
- msgid "Defines the type of posts to show on the listing"
794
- msgstr "Define el tipo de entrada a mostrar en el listado"
795
-
796
- #: ../admin/partials/admin.php:793
797
- msgid ""
798
- "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
799
- "form the listing."
800
- msgstr ""
801
- "Si se configura, WordPress Popular Posts excluir&aacute; todos los IDs de "
802
- "las entradas especificadas."
803
-
804
- #: ../admin/partials/admin.php:800
805
- msgid ""
806
- "If set, WordPress Popular Posts will retrieve all entries that belong to the "
807
- "specified category ID(s). If a minus sign is used, entries associated to the "
808
- "category will be excluded instead."
809
- msgstr ""
810
- "Si se configura, WordPress Popular Posts mostrar&aacute; todas las entradas "
811
- "que pertenecen a la(s) categor&iacute;a(s) especificada(s). Si se usa un "
812
- "signo negativo, las entradas asociadas a dicha categor&iacute;a ser&aacute;n "
813
- "exclu&iacute;das."
814
-
815
- #: ../admin/partials/admin.php:807
816
- msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy."
817
- msgstr ""
818
- "Si se tilda, WordPress Popular Posts filtrar&aacute; entradas por la "
819
- "taxonom&iacute;a indicada."
820
-
821
- #: ../admin/partials/admin.php:814
822
- msgid ""
823
- "If set, WordPress Popular Posts will retrieve all entries that belong to the "
824
- "specified term ID(s). If a minus sign is used, entries associated to the "
825
- "term(s) will be excluded instead."
826
- msgstr ""
827
- "Si se configura, WordPress Popular Posts mostrar&aacute; todas las entradas "
828
- "que pertenecen al Term ID especificado(s). Si se usa un signo negativo, las "
829
- "entradas asociadas a dicho term ser&aacute;n exclu&iacute;das."
830
-
831
- #: ../admin/partials/admin.php:821
832
- msgid ""
833
- "If set, WordPress Popular Posts will retrieve all entries created by "
834
- "specified author(s) ID(s)."
835
- msgstr ""
836
- "Si se configura, WordPress Popular Posts traer&aacute; todas las entradas "
837
- "creadas por el (los) ID(s) de autor(es) especificado(s)."
838
-
839
- #: ../admin/partials/admin.php:828
840
- msgid ""
841
- "If set, WordPress Popular Posts will shorten each post title to \"n\" "
842
- "characters whenever possible"
843
- msgstr ""
844
- "Si se configura, WordPress Popular Posts acortar&aacute; cada titulo en \"n"
845
- "\" caracteres cuando sea posible"
846
-
847
- #: ../admin/partials/admin.php:835
848
- msgid ""
849
- "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
850
- "words instead of characters"
851
- msgstr ""
852
- "Si se pasa el valor 1, WordPress Popular Posts acortar&aacute; cada titulo "
853
- "en \"n\" palabras en vez de caracteres"
854
-
855
- #: ../admin/partials/admin.php:842
856
- msgid ""
857
- "If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
858
- "characters long from the content of each post listed as popular"
859
- msgstr ""
860
- "Si se configura, WordPress Popular Posts construir&aacute; e incluir&aacute; "
861
- "un extracto de \"n\" caracteres del contenido de cada entrada listada como "
862
- "popular"
863
-
864
- #: ../admin/partials/admin.php:849
865
- msgid ""
866
- "If set, WordPress Popular Posts will maintaing all styling tags (strong, "
867
- "italic, etc) and hyperlinks found in the excerpt"
868
- msgstr ""
869
- "Si se configura, WordPress Popular Posts mantendr&aacute; todas las "
870
- "etiquetas de estilo (strong, italic, etc) y los hiperv&iacute;nculos "
871
- "encontrados en el extracto"
872
-
873
- #: ../admin/partials/admin.php:856
874
- msgid ""
875
- "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
876
- "instead of characters"
877
- msgstr ""
878
- "Si se configura, WordPress Popular Posts acortar&aacute; el resumen en \"n\" "
879
- "palabras en vez de caracteres"
880
-
881
- #: ../admin/partials/admin.php:863
882
- msgid ""
883
- "If set, and if your current server configuration allows it, you will be able "
884
- "to display thumbnails of your posts. This attribute sets the width for "
885
- "thumbnails"
886
- msgstr ""
887
- "Si se configura, y si la configuraci&oacute;n actual de tu servidor lo "
888
- "permite, podr&aacute;s mostrar miniaturas de tus entradas. Este atributo "
889
- "configura el ancho de tus miniaturas"
890
-
891
- #: ../admin/partials/admin.php:870
892
- msgid ""
893
- "If set, and if your current server configuration allows it, you will be able "
894
- "to display thumbnails of your posts. This attribute sets the height for "
895
- "thumbnails"
896
- msgstr ""
897
- "Si se configura, y si la configuraci&oacute;n actual de tu servidor lo "
898
- "permite, podr&aacute;s mostrar miniaturas de tus entradas. Este atributo "
899
- "configura el alto de tus miniaturas"
900
-
901
- #: ../admin/partials/admin.php:877
902
- msgid ""
903
- "If set, and if the WP-PostRatings plugin is installed and enabled on your "
904
- "blog, WordPress Popular Posts will show how your visitors are rating your "
905
- "entries"
906
- msgstr ""
907
- "Si se configura, y si el plugin WP-PostRatings est&aacute; instalado y "
908
- "habilitado en tu blog, WordPress Popular Posts mostrar&aacute; como tus "
909
- "visitantes han calificado a tus entradas"
910
-
911
- #: ../admin/partials/admin.php:884
912
- msgid ""
913
- "If set, WordPress Popular Posts will show how many comments each popular "
914
- "post has got during the specified time range"
915
- msgstr ""
916
- "Si se configura, WordPress Popular Posts mostrar&aacute; cu&aacute;ntos "
917
- "comentarios ha obtenido cada entrada popular dentro del rango de tiempo "
918
- "especificado"
919
-
920
- #: ../admin/partials/admin.php:891
921
- msgid ""
922
- "If set, WordPress Popular Posts will show how many views each popular post "
923
- "has got during the specified time range"
924
- msgstr ""
925
- "Si se configura, WordPress Popular Posts mostrar&aacute; cu&aacute;ntas "
926
- "vistas ha obtenido cada entrada popular dentro del rango de tiempo "
927
- "especificado"
928
-
929
- #: ../admin/partials/admin.php:898
930
- msgid ""
931
- "If set, WordPress Popular Posts will show who published each popular post on "
932
- "the list"
933
- msgstr ""
934
- "Si se configura, WordPress Popular Posts mostrar&aacute; qui&eacute;n "
935
- "public&oacute; cada entrada popular de la lista"
936
-
937
- #: ../admin/partials/admin.php:905
938
- msgid ""
939
- "If set, WordPress Popular Posts will display the date when each popular post "
940
- "on the list was published"
941
- msgstr ""
942
- "Si se tilda, WordPress Popular Posts mostrar&aacute; la fecha en la que fue "
943
- "publicada cada entrada popular"
944
-
945
- #: ../admin/partials/admin.php:912
946
- msgid "Sets the date format"
947
- msgstr "Configura el formato de la fecha"
948
-
949
- #: ../admin/partials/admin.php:919
950
- msgid ""
951
- "If set, WordPress Popular Posts will display the categories associated to "
952
- "each entry"
953
- msgstr ""
954
- "Si se tilda, WordPress Popular Posts mostrar&aacute; las categor&iacute;as "
955
- "asociadas a cada entrada"
956
-
957
- #: ../admin/partials/admin.php:926
958
- msgid ""
959
- "If set, WordPress Popular Posts will display the taxonomies associated to "
960
- "each entry"
961
- msgstr ""
962
- "Si se tilda, WordPress Popular Posts mostrar&aacute; las taxonom&iacute;as "
963
- "asociadas a cada entrada"
964
-
965
- #: ../admin/partials/admin.php:933
966
- msgid "Sets the opening tag for the listing"
967
- msgstr "Configura la etiqueta de apertura del listado"
968
-
969
- #: ../admin/partials/admin.php:940
970
- msgid "Sets the closing tag for the listing"
971
- msgstr "Configura la etiqueta de cierre del listado"
972
-
973
- #: ../admin/partials/admin.php:947
974
- msgid "Sets the HTML structure of each post"
975
- msgstr "Configura la estructura HTML de cada entrada"
976
-
977
- #: ../admin/partials/admin.php:948
978
- msgid "Text string, custom HTML"
979
- msgstr "Texto, HTML personalizado"
980
-
981
- #: ../admin/partials/admin.php:948
982
- msgid "Available Content Tags"
983
- msgstr "Content Tags disponibles"
984
-
985
- #: ../admin/partials/admin.php:948
986
- msgid ""
987
- "returns thumbnail linked to post/page, requires thumbnail_width & "
988
- "thumbnail_height"
989
- msgstr ""
990
- "devuelve la miniatura con un link hacia la entrada/p&aacute;gina, requiere "
991
- "thumbnail_width & thumbnail_height"
992
-
993
- #: ../admin/partials/admin.php:948
994
- msgid ""
995
- "returns thumbnail image without linking to post/page, requires "
996
- "thumbnail_width & thumbnail_height"
997
- msgstr ""
998
- "devuelve la miniatura sin link hacia la entrada/p&aacute;gina, requiere "
999
- "thumbnail_width & thumbnail_height"
1000
-
1001
- #: ../admin/partials/admin.php:948
1002
- msgid "returns thumbnail url, requires thumbnail_width & thumbnail_height"
1003
- msgstr ""
1004
- "devuelve la url de la miniatura, requires thumbnail_width & thumbnail_height"
1005
-
1006
- #: ../admin/partials/admin.php:948
1007
- msgid "returns linked post/page title"
1008
- msgstr "devuelve el t&iacute;tulo de la entrada/p&aacute;gina con enlace"
1009
-
1010
- #: ../admin/partials/admin.php:948
1011
- msgid "returns the post/page ID"
1012
- msgstr "devuelve la URL de la entrada/p&aacute;gina"
1013
-
1014
- #: ../admin/partials/admin.php:948
1015
- msgid ""
1016
- "returns post/page excerpt, and requires excerpt_length to be greater than 0"
1017
- msgstr ""
1018
- "devuelve el resumen de la entrada/p&aacute;gina, requiere que excerpt_length "
1019
- "sea mayor a 0"
1020
-
1021
- #: ../admin/partials/admin.php:948
1022
- msgid "returns the default stats tags"
1023
- msgstr "devuelve el stats tag por defecto"
1024
-
1025
- #: ../admin/partials/admin.php:948
1026
- msgid ""
1027
- "returns post/page current rating, requires WP-PostRatings installed and "
1028
- "enabled"
1029
- msgstr ""
1030
- "devuelve el rating actual de la entrada/p&aacute;gina, requiere que WP-"
1031
- "PostRatings est&eacute; instalado y activo"
1032
-
1033
- #: ../admin/partials/admin.php:948
1034
- msgid ""
1035
- "returns post/page current rating as an integer, requires WP-PostRatings "
1036
- "installed and enabled"
1037
- msgstr ""
1038
- "devuelve el rating actual de la entrada/p&aacute;gina como un entero, "
1039
- "requiere que WP-PostRatings est&eacute; instalado y activo"
1040
-
1041
- #: ../admin/partials/admin.php:948
1042
- msgid "returns the URL of the post/page"
1043
- msgstr "devuelve la URL de la entrada/p&aacute;gina"
1044
-
1045
- #: ../admin/partials/admin.php:948
1046
- msgid "returns post/page title, no link"
1047
- msgstr "devuelve el t&iacute;tulo de la entrada/p&aacute;gina, sin enlace"
1048
-
1049
- #: ../admin/partials/admin.php:948
1050
- msgid "returns linked author name, requires stats_author=1"
1051
- msgstr "devuelve el nombre del autor con enlace, requiere stats_author=1"
1052
-
1053
- #: ../admin/partials/admin.php:948
1054
- msgid "returns linked category name, requires stats_category=1"
1055
- msgstr ""
1056
- "devuelve el nombre de la categor&iacute;a con enlace, requiere "
1057
- "stats_category=1"
1058
-
1059
- #: ../admin/partials/admin.php:948
1060
- msgid "returns linked taxonomy names, requires stats_taxonomy=1"
1061
- msgstr ""
1062
- "devuelve los nombres de las taxonomi&iacute;as con enlace, requiere "
1063
- "stats_taxonomy=1"
1064
-
1065
- #: ../admin/partials/admin.php:948
1066
- msgid "returns views count only, no text"
1067
- msgstr "devuelve el n&uacute;mero de vistas, sin texto adicional"
1068
-
1069
- #: ../admin/partials/admin.php:948
1070
- msgid "returns comments count only, no text, requires stats_comments=1"
1071
- msgstr ""
1072
- "devuelve el n&uacute;mero de comentarios, sin texto adicional, requiere "
1073
- "stats_comments=1"
1074
-
1075
- #: ../admin/partials/admin.php:948
1076
- msgid "returns post/page date, requires stats_date=1"
1077
- msgstr "devuelve la fecha de la entrada/p&aacute;gina, requiere stats_date=1"
1078
-
1079
- #: ../includes/class-wordpress-popular-posts-output.php:128
1080
- msgid "Sorry. No data so far."
1081
- msgstr "Lo lamentamos. No hay nada que mostrar a&uacute;n."
1082
-
1083
- #: ../includes/class-wordpress-popular-posts-output.php:519
1084
- #, php-format
1085
- msgid "%s ago"
1086
- msgstr "hace %s"
1087
-
1088
- #: ../includes/class-wordpress-popular-posts-output.php:736
1089
- #, php-format
1090
- msgid "1 view per day"
1091
- msgid_plural "%s views per day"
1092
- msgstr[0] "1 vista por d&iacute;a"
1093
- msgstr[1] "%s vistas por d&iacute;a"
1094
-
1095
- #: ../includes/class-wordpress-popular-posts-output.php:765
1096
- #, php-format
1097
- msgid "by %s"
1098
- msgstr "por %s"
1099
-
1100
- #: ../includes/class-wordpress-popular-posts-output.php:771
1101
- #, php-format
1102
- msgid "posted %s"
1103
- msgstr "publicado %s"
1104
-
1105
- #: ../includes/class-wordpress-popular-posts-output.php:771
1106
- #, php-format
1107
- msgid "posted on %s"
1108
- msgstr "publicado el %s"
1109
-
1110
- #: ../includes/class-wordpress-popular-posts-output.php:780
1111
- #, php-format
1112
- msgid "under %s"
1113
- msgstr "bajo %s"
1114
-
1115
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:309
1116
- msgid "Return popular posts from specified custom post type(s)."
1117
- msgstr ""
1118
- "Devuelve entradas populares de los custom post type(s) especificado(s)."
1119
-
1120
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:316
1121
- msgid "The maximum number of popular posts to return."
1122
- msgstr "El m&aacute;ximo n&uacute;mero de entradas populares a devolver."
1123
-
1124
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:324
1125
- msgid ""
1126
- "Retrieve the most popular entries published within the specified time range."
1127
- msgstr ""
1128
- "Devuelve las entradas m&aacute;s populares publicadas en el rango de tiempo "
1129
- "especificado."
1130
-
1131
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:332
1132
- msgid "An offset point for the collection."
1133
- msgstr "Punto de offset para la colecci&oacute;n."
1134
-
1135
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:340
1136
- msgid "Set the sorting option of the popular posts."
1137
- msgstr "Configura el ordenado de las entradas populares."
1138
-
1139
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:348
1140
- msgid "Return posts from a specified time range."
1141
- msgstr "Devuelve entradas de un rango de tiempo especificado."
1142
-
1143
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:356
1144
- msgid "Specifies the time unit of the custom time range."
1145
- msgstr "Especifica la unidad de tiempo del rango de tiempo personalizado."
1146
-
1147
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:364
1148
- msgid "Specifies the number of time units of the custom time range."
1149
- msgstr ""
1150
- "Especifica el n&uacute;mero de unidades de tiempo del rango de tiempo "
1151
- "personalizado."
1152
-
1153
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:372
1154
- msgid "Post IDs to exclude."
1155
- msgstr "ID(s) de Entrada(s) a excluir."
1156
-
1157
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:380
1158
- msgid "Include posts in a specified taxonomy."
1159
- msgstr "Incluye entradas de una taxonom&iacute;a espec&iacute;fica."
1160
-
1161
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:388
1162
- msgid "Taxonomy IDs, separated by comma (prefix a minus sign to exclude)."
1163
- msgstr ""
1164
- "IDs de taxonom&iacute;a separados por comma (agrega un s&iacute;mbolo "
1165
- "negativo para excluir)."
1166
-
1167
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:396
1168
- msgid "Author ID(s)."
1169
- msgstr "ID(s) de Autor(es)."
1170
-
1171
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:416
1172
- msgid "Security nonce."
1173
- msgstr "Nonce de seguridad."
1174
-
1175
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:422
1176
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:455
1177
- msgid "The post / page ID."
1178
- msgstr "El ID de la entrada / p&aacute;gina."
1179
-
1180
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:429
1181
- msgid "Enables Data Sampling."
1182
- msgstr "Habilita el Sampleo de Datos."
1183
-
1184
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:436
1185
- msgid "Sets the Sampling Rate."
1186
- msgstr "Configura la rata de sampleo."
1187
-
1188
- #: ../includes/class-wordpress-popular-posts-widget.php:21
1189
- msgid "The most Popular Posts on your blog."
1190
- msgstr "Las entradas m&aacute;s populares en tu blog."
1191
-
1192
- #: ../includes/class-wordpress-popular-posts-widget.php:92
1193
- #, php-format
1194
- msgid ""
1195
- "Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
1196
- "the <em>id</em> attribute on before_widget (see <a href=\"%s\" target="
1197
- "\"_blank\" rel=\"nofollow\">register_sidebar</a> for more)"
1198
- msgstr ""
1199
- "Error: no se puede ajaxificar WordPress Popular Posts en este tema. Le falta "
1200
- "el atributo <em>id</em> en before_widget (ver <a href=\"%s\" target=\"_blank"
1201
- "\" rel=\"nofollow\">register_sidebar</a> para m&aacute;s detalles)"
1202
-
1203
- #: ../includes/widget-form.php:3
1204
- msgid "Title"
1205
- msgstr "T&iacute;tulo"
1206
-
1207
- #: ../includes/widget-form.php:9
1208
- msgid "Show up to"
1209
- msgstr "Mostrar hasta"
1210
-
1211
- #: ../includes/widget-form.php:10
1212
- msgid "posts"
1213
- msgstr "entradas"
1214
-
1215
- #: ../includes/widget-form.php:15
1216
- msgid "Sort posts by"
1217
- msgstr "Ordenar entradas por"
1218
-
1219
- #: ../includes/widget-form.php:18
1220
- msgid "Total views"
1221
- msgstr "Total de vistas"
1222
-
1223
- #: ../includes/widget-form.php:19
1224
- msgid "Avg. daily views"
1225
- msgstr "Porcentaje de vistas diarias"
1226
-
1227
- #: ../includes/widget-form.php:26
1228
- msgid "Filters"
1229
- msgstr "Filtros"
1230
-
1231
- #: ../includes/widget-form.php:28
1232
- msgid "Time Range"
1233
- msgstr "Rango de Tiempo"
1234
-
1235
- #: ../includes/widget-form.php:33
1236
- msgid "All-time"
1237
- msgstr "Todos los tiempos"
1238
-
1239
- #: ../includes/widget-form.php:50
1240
- msgid "Post type(s)"
1241
- msgstr "Post type(s)"
1242
-
1243
- #: ../includes/widget-form.php:53
1244
- msgid "Post ID(s) to exclude"
1245
- msgstr "ID(s) de Entrada(s) a excluir"
1246
-
1247
- #: ../includes/widget-form.php:56
1248
- msgid "Taxonomy"
1249
- msgstr "Taxonom&iacute;a"
1250
-
1251
- #: ../includes/widget-form.php:69
1252
- msgid "Taxonomy IDs, separated by comma (prefix a minus sign to exclude)"
1253
- msgstr ""
1254
- "IDs de taxonom&iacute;a separados por comma (agrega un s&iacute;mbolo "
1255
- "negativo para excluir)"
1256
-
1257
- #: ../includes/widget-form.php:75
1258
- msgid "Author ID(s)"
1259
- msgstr "ID(s) de Autor(es)"
1260
-
1261
- #: ../includes/widget-form.php:81
1262
- msgid "Posts settings"
1263
- msgstr "Configuraci&oacute;n de las entradas"
1264
-
1265
- #: ../includes/widget-form.php:85
1266
- msgid "Display post rating"
1267
- msgstr "Mostrar calificaci&oacute;n de la entrada"
1268
-
1269
- #: ../includes/widget-form.php:88
1270
- msgid "Shorten title"
1271
- msgstr "Acortar t&iacute;tulo"
1272
-
1273
- #: ../includes/widget-form.php:91
1274
- msgid "Shorten title to"
1275
- msgstr "Acortar t&iacute;tulo en"
1276
-
1277
- #: ../includes/widget-form.php:92 ../includes/widget-form.php:102
1278
- msgid "characters"
1279
- msgstr "caracteres"
1280
-
1281
- #: ../includes/widget-form.php:93 ../includes/widget-form.php:103
1282
- msgid "words"
1283
- msgstr "palabras"
1284
-
1285
- #: ../includes/widget-form.php:96
1286
- msgid "Display post excerpt"
1287
- msgstr "Mostrar resumen de la entrada"
1288
-
1289
- #: ../includes/widget-form.php:99
1290
- msgid "Keep text format and links"
1291
- msgstr "Mantener formato de texto y enlaces"
1292
-
1293
- #: ../includes/widget-form.php:100
1294
- msgid "Excerpt length"
1295
- msgstr "Largo del resumen"
1296
-
1297
- #: ../includes/widget-form.php:106
1298
- msgid "Display post thumbnail"
1299
- msgstr "Mostrar miniatura"
1300
-
1301
- #: ../includes/widget-form.php:109
1302
- msgid "Use predefined size"
1303
- msgstr "Utilizar un tama&ntilde;o predefinido"
1304
-
1305
- #: ../includes/widget-form.php:121
1306
- msgid "Set size manually"
1307
- msgstr "Configurar el tama&ntilde;o manualmente"
1308
-
1309
- #: ../includes/widget-form.php:123
1310
- msgid "Width"
1311
- msgstr "Ancho"
1312
-
1313
- #: ../includes/widget-form.php:126
1314
- msgid "Height"
1315
- msgstr "Alto"
1316
-
1317
- #: ../includes/widget-form.php:133
1318
- msgid "Stats Tag settings"
1319
- msgstr "Configuraci&oacute;n del Stats Tag"
1320
-
1321
- #: ../includes/widget-form.php:135
1322
- msgid "Display comment count"
1323
- msgstr "Mostrar cantidad de comentarios"
1324
-
1325
- #: ../includes/widget-form.php:137
1326
- msgid "Display views"
1327
- msgstr "Mostrar vistas"
1328
-
1329
- #: ../includes/widget-form.php:139
1330
- msgid "Display author"
1331
- msgstr "Mostrar autor"
1332
-
1333
- #: ../includes/widget-form.php:141
1334
- msgid "Display date"
1335
- msgstr "Mostrar fecha"
1336
-
1337
- #: ../includes/widget-form.php:144
1338
- msgid "Date Format"
1339
- msgstr "Formato de la fecha"
1340
-
1341
- #: ../includes/widget-form.php:146
1342
- msgid "Relative"
1343
- msgstr "Relativo"
1344
-
1345
- #: ../includes/widget-form.php:147
1346
- msgid "WordPress Date Format"
1347
- msgstr "Formato de fecha de WordPress"
1348
-
1349
- #: ../includes/widget-form.php:154
1350
- msgid "Display taxonomy"
1351
- msgstr "Mostrar taxonom&iacute;a"
1352
-
1353
- #: ../includes/widget-form.php:175
1354
- msgid "HTML Markup settings"
1355
- msgstr "Configuraci&oacute;n del Markup HTML"
1356
-
1357
- #: ../includes/widget-form.php:177
1358
- msgid "Use custom HTML Markup"
1359
- msgstr "Utilizar Markup HTML personalizado"
1360
-
1361
- #: ../includes/widget-form.php:180
1362
- msgid "Before / after title"
1363
- msgstr "Antes / despu&eacute;s del t&iacute;tulo"
1364
-
1365
- #: ../includes/widget-form.php:183
1366
- msgid "Before / after Popular Posts"
1367
- msgstr "Antes / despu&eacute;s de las entradas populares"
1368
-
1369
- #: ../includes/widget-form.php:186
1370
- msgid "Post HTML Markup"
1371
- msgstr "Markup HTML de la entrada"
1372
-
1373
- #~ msgid "WPP Cache Expiry Policy"
1374
- #~ msgstr "WPP Pol&iacute;tica de Expiraci&oacute;n del Cache"
1375
-
1376
- #~ msgid "Upload"
1377
- #~ msgstr "Subir"
1378
-
1379
- #~ msgid ""
1380
- #~ "How-to: upload (or select) an image, set Size to Full and click on "
1381
- #~ "Upload. After it's done, hit on Apply to save changes"
1382
- #~ msgstr ""
1383
- #~ "Tutorial: sube (o selecciona) una imagen, selecciona Tama&ntilde;o "
1384
- #~ "Completo y haz clic en Subir. Cuando termine, dale a Aplicar para guardar "
1385
- #~ "los cambios"
1386
-
1387
- #~ msgid "Responsive support"
1388
- #~ msgstr "Soporte Responsive"
1389
-
1390
- #~ msgid ""
1391
- #~ "If enabled, WordPress Popular Posts will strip height and width "
1392
- #~ "attributes out of thumbnails' image tags"
1393
- #~ msgstr ""
1394
- #~ "Si se activa, WordPress Popular Posts quitar&aacute; los atributos height "
1395
- #~ "y width de las etiquetas image de las miniaturas"
1396
-
1397
- #~ msgid "Loading..."
1398
- #~ msgstr "Cargando..."
1399
-
1400
- #~ msgid "About"
1401
- #~ msgstr "Acerca de"
1402
-
1403
- #~ msgid "About WordPress Popular Posts %s"
1404
- #~ msgstr "Acerca de WordPress Popular Posts %s"
1405
-
1406
- #~ msgid "This version includes the following changes"
1407
- #~ msgstr "Esta versi&oacute;n incluye los siguientes cambios"
1408
-
1409
- #~ msgid "Need help?"
1410
- #~ msgstr "&iquest;Necesitas ayuda?"
1411
-
1412
- #~ msgid ""
1413
- #~ "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, "
1414
- #~ "questions and feedback."
1415
- #~ msgstr ""
1416
- #~ "Visita <a href=\"%s\" target=\"_blank\">el foro</a> para obtener soporte, "
1417
- #~ "hacer preguntas y dejar tu feedback."
1418
-
1419
- #~ msgid "Let's make this plugin even better!"
1420
- #~ msgstr "&iexcl;Hagamos a este plugin inclusive mejor!"
1421
-
1422
- #~ msgid ""
1423
- #~ "Click on each tab to see what are the most popular entries on your blog "
1424
- #~ "in the last 24 hours, this week, last 30 days or all time since WordPress "
1425
- #~ "Popular Posts was installed."
1426
- #~ msgstr ""
1427
- #~ "Haz clic en cada pesta&ntilde;a para ver las entradas m&aacute;s "
1428
- #~ "populares de tu blog en las &uacute;ltimas 24 horas, esta semana, los "
1429
- #~ "&uacute;ltimos 30 d&iacute;as o de todos los tiempos desde que WordPress "
1430
- #~ "Popular Posts fue instalado."
1431
-
1432
- #~ msgid "Order by comments"
1433
- #~ msgstr "Ordenar por comentarios"
1434
-
1435
- #~ msgid "Order by avg. daily views"
1436
- #~ msgstr "Ordenar por average de vistas diarias"
1437
-
1438
- #~ msgid "Category(ies) ID(s)"
1439
- #~ msgstr "ID(s) de Categor&iacute;a(s)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wordpress-popular-posts.pot CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: WordPress Popular Posts\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
8
- "POT-Creation-Date: 2018-06-25 18:07-0400\n"
9
  "PO-Revision-Date: 2015-04-24 13:30-0430\n"
10
  "Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
11
  "Language-Team: Héctor Cabrera <me@cabrerahector.com>\n"
@@ -22,42 +22,42 @@ msgstr ""
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
- #: ../admin/class-wordpress-popular-posts-admin.php:173
26
  #, php-format
27
  msgid "1 view in the last hour"
28
  msgid_plural "%s views in the last hour"
29
  msgstr[0] ""
30
  msgstr[1] ""
31
 
32
- #: ../admin/class-wordpress-popular-posts-admin.php:239
33
  msgid "Use this image"
34
  msgstr ""
35
 
36
- #: ../admin/class-wordpress-popular-posts-admin.php:257
37
  msgid "Overview"
38
  msgstr ""
39
 
40
- #: ../admin/class-wordpress-popular-posts-admin.php:258
41
  msgid ""
42
  "Welcome to WordPress Popular Posts' Dashboard! In this screen you will find statistics "
43
  "on what's popular on your site, tools to further tweak WPP to your needs, and more!"
44
  msgstr ""
45
 
46
- #: ../admin/class-wordpress-popular-posts-admin.php:264
47
  msgid "Like this plugin?"
48
  msgstr ""
49
 
50
- #: ../admin/class-wordpress-popular-posts-admin.php:266
51
  msgid ""
52
  "Each donation motivates me to keep releasing free stuff for the WordPress community!"
53
  msgstr ""
54
 
55
- #: ../admin/class-wordpress-popular-posts-admin.php:273
56
  #, php-format
57
  msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
58
  msgstr ""
59
 
60
- #: ../admin/class-wordpress-popular-posts-admin.php:282
61
  #, php-format
62
  msgid ""
63
  "<p><strong>For more information:</strong></p><ul><li><a href=\"%1$s\">Documentation</"
@@ -65,9 +65,9 @@ msgid ""
65
  msgstr ""
66
 
67
  #: ../admin/class-wordpress-popular-posts-admin.php:658
68
- #: ../admin/class-wordpress-popular-posts-admin.php:777 ../admin/partials/admin.php:411
69
  #: ../admin/partials/admin.php:458
70
- #: ../includes/class-wordpress-popular-posts-output.php:742
71
  #, php-format
72
  msgid "1 view"
73
  msgid_plural "%s views"
@@ -75,9 +75,9 @@ msgstr[0] ""
75
  msgstr[1] ""
76
 
77
  #: ../admin/class-wordpress-popular-posts-admin.php:658
78
- #: ../admin/class-wordpress-popular-posts-admin.php:832 ../admin/partials/admin.php:411
79
  #: ../admin/partials/admin.php:458
80
- #: ../includes/class-wordpress-popular-posts-output.php:723
81
  #, php-format
82
  msgid "1 comment"
83
  msgid_plural "%s comments"
@@ -92,52 +92,30 @@ msgstr ""
92
  msgid "Views"
93
  msgstr ""
94
 
95
- #: ../admin/class-wordpress-popular-posts-admin.php:778
96
- #: ../admin/class-wordpress-popular-posts-admin.php:833 ../admin/partials/admin.php:412
97
  #: ../admin/partials/admin.php:459
98
  msgid "View"
99
  msgstr ""
100
 
101
- #: ../admin/class-wordpress-popular-posts-admin.php:778
102
- #: ../admin/class-wordpress-popular-posts-admin.php:833 ../admin/partials/admin.php:412
103
  #: ../admin/partials/admin.php:459
104
  msgid "Edit"
105
  msgstr ""
106
 
107
- #: ../admin/class-wordpress-popular-posts-admin.php:789
108
- #: ../admin/class-wordpress-popular-posts-admin.php:844 ../admin/partials/admin.php:423
109
  #: ../admin/partials/admin.php:470
110
  msgid ""
111
  "Looks like traffic to your site is a little light right now. <br />Spread the word and "
112
  "come back later!"
113
  msgstr ""
114
 
115
- #: ../admin/class-wordpress-popular-posts-admin.php:912
116
  msgid "Settings"
117
  msgstr ""
118
 
119
- #: ../admin/class-wordpress-popular-posts-admin.php:1302
120
- #, php-format
121
- msgid ""
122
- "Your PHP installation is too old. WordPress Popular Posts requires at least PHP "
123
- "version %1$s to function correctly. Please contact your hosting provider and ask them "
124
- "to upgrade PHP to %1$s or higher."
125
- msgstr ""
126
-
127
- #: ../admin/class-wordpress-popular-posts-admin.php:1309
128
- #, php-format
129
- msgid ""
130
- "Your WordPress version is too old. WordPress Popular Posts requires at least WordPress "
131
- "version %1$s to function correctly. Please update your blog via Dashboard &gt; Update."
132
- msgstr ""
133
-
134
- #: ../admin/class-wordpress-popular-posts-admin.php:1334
135
- #, php-format
136
- msgid ""
137
- "<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> has been "
138
- "<strong>deactivated</strong>.</p></div>"
139
- msgstr ""
140
-
141
  #: ../admin/partials/admin.php:6 ../admin/partials/admin.php:254
142
  msgid "Stats"
143
  msgstr ""
@@ -572,343 +550,358 @@ msgid ""
572
  "\"%2$s\">[wpp] shortcode</a>."
573
  msgstr ""
574
 
575
- #: ../admin/partials/admin.php:713
576
  msgid "Parameter"
577
  msgstr ""
578
 
579
- #: ../admin/partials/admin.php:714
580
  msgid "What it does "
581
  msgstr ""
582
 
583
- #: ../admin/partials/admin.php:715
584
  msgid "Possible values"
585
  msgstr ""
586
 
587
- #: ../admin/partials/admin.php:716
588
  msgid "Defaults to"
589
  msgstr ""
590
 
591
- #: ../admin/partials/admin.php:717
592
  msgid "Example"
593
  msgstr ""
594
 
595
- #: ../admin/partials/admin.php:723
596
  msgid "Sets a heading for the list"
597
  msgstr ""
598
 
599
- #: ../admin/partials/admin.php:724 ../admin/partials/admin.php:731
600
- #: ../admin/partials/admin.php:738 ../admin/partials/admin.php:787
601
- #: ../admin/partials/admin.php:794 ../admin/partials/admin.php:801
602
- #: ../admin/partials/admin.php:808 ../admin/partials/admin.php:815
603
- #: ../admin/partials/admin.php:822 ../admin/partials/admin.php:913
604
- #: ../admin/partials/admin.php:934 ../admin/partials/admin.php:941
605
  msgid "Text string"
606
  msgstr ""
607
 
608
- #: ../admin/partials/admin.php:725 ../admin/partials/admin.php:795
609
- #: ../admin/partials/admin.php:802 ../admin/partials/admin.php:809
610
- #: ../admin/partials/admin.php:816 ../admin/partials/admin.php:823
611
  msgid "None"
612
  msgstr ""
613
 
614
- #: ../admin/partials/admin.php:726 ../admin/partials/admin.php:733
615
- #: ../admin/partials/admin.php:740 ../admin/partials/admin.php:747
616
- #: ../admin/partials/admin.php:754 ../admin/partials/admin.php:761
617
- #: ../admin/partials/admin.php:768 ../admin/partials/admin.php:775
618
- #: ../admin/partials/admin.php:782 ../admin/partials/admin.php:789
619
- #: ../admin/partials/admin.php:796 ../admin/partials/admin.php:803
620
- #: ../admin/partials/admin.php:810 ../admin/partials/admin.php:817
621
- #: ../admin/partials/admin.php:824 ../admin/partials/admin.php:831
622
- #: ../admin/partials/admin.php:838 ../admin/partials/admin.php:845
623
- #: ../admin/partials/admin.php:852 ../admin/partials/admin.php:859
624
- #: ../admin/partials/admin.php:866 ../admin/partials/admin.php:873
625
- #: ../admin/partials/admin.php:880 ../admin/partials/admin.php:887
626
- #: ../admin/partials/admin.php:894 ../admin/partials/admin.php:901
627
- #: ../admin/partials/admin.php:908 ../admin/partials/admin.php:915
628
- #: ../admin/partials/admin.php:922 ../admin/partials/admin.php:929
629
- #: ../admin/partials/admin.php:936 ../admin/partials/admin.php:943
630
- #: ../admin/partials/admin.php:950
631
  msgid "With wpp_get_mostpopular():"
632
  msgstr ""
633
 
634
- #: ../admin/partials/admin.php:726 ../admin/partials/admin.php:733
635
- #: ../admin/partials/admin.php:740 ../admin/partials/admin.php:747
636
- #: ../admin/partials/admin.php:754 ../admin/partials/admin.php:761
637
- #: ../admin/partials/admin.php:768 ../admin/partials/admin.php:775
638
- #: ../admin/partials/admin.php:782 ../admin/partials/admin.php:789
639
- #: ../admin/partials/admin.php:796 ../admin/partials/admin.php:803
640
- #: ../admin/partials/admin.php:810 ../admin/partials/admin.php:817
641
- #: ../admin/partials/admin.php:824 ../admin/partials/admin.php:831
642
- #: ../admin/partials/admin.php:838 ../admin/partials/admin.php:845
643
- #: ../admin/partials/admin.php:852 ../admin/partials/admin.php:859
644
- #: ../admin/partials/admin.php:866 ../admin/partials/admin.php:873
645
- #: ../admin/partials/admin.php:880 ../admin/partials/admin.php:887
646
- #: ../admin/partials/admin.php:894 ../admin/partials/admin.php:901
647
- #: ../admin/partials/admin.php:908 ../admin/partials/admin.php:915
648
- #: ../admin/partials/admin.php:922 ../admin/partials/admin.php:929
649
- #: ../admin/partials/admin.php:936 ../admin/partials/admin.php:943
650
- #: ../admin/partials/admin.php:950
651
  msgid "With the [wpp] shortcode:"
652
  msgstr ""
653
 
654
- #: ../admin/partials/admin.php:730
655
  msgid "Set the opening tag for the heading of the list"
656
  msgstr ""
657
 
658
- #: ../admin/partials/admin.php:737
659
  msgid "Set the closing tag for the heading of the list"
660
  msgstr ""
661
 
662
- #: ../admin/partials/admin.php:744
663
  msgid "Sets the maximum number of popular posts to be shown on the listing"
664
  msgstr ""
665
 
666
- #: ../admin/partials/admin.php:745 ../admin/partials/admin.php:759
667
- #: ../admin/partials/admin.php:829 ../admin/partials/admin.php:843
668
- #: ../admin/partials/admin.php:864 ../admin/partials/admin.php:871
669
  msgid "Positive integer"
670
  msgstr ""
671
 
672
- #: ../admin/partials/admin.php:751
673
  msgid ""
674
  "Tells WordPress Popular Posts to retrieve the most popular entries within the time "
675
  "range specified by you"
676
  msgstr ""
677
 
678
- #: ../admin/partials/admin.php:758
679
  msgid "Especifies the number of time units of the custom time range"
680
  msgstr ""
681
 
682
- #: ../admin/partials/admin.php:765
683
  msgid "Especifies the time unit of the custom time range"
684
  msgstr ""
685
 
686
- #: ../admin/partials/admin.php:772
687
  msgid ""
688
  "Tells WordPress Popular Posts to retrieve the most popular entries published within "
689
  "the time range specified by you"
690
  msgstr ""
691
 
692
- #: ../admin/partials/admin.php:779
693
  msgid "Sets the sorting option of the popular posts"
694
  msgstr ""
695
 
696
- #: ../admin/partials/admin.php:780
697
  msgid "(for average views per day)"
698
  msgstr ""
699
 
700
- #: ../admin/partials/admin.php:786
701
  msgid "Defines the type of posts to show on the listing"
702
  msgstr ""
703
 
704
- #: ../admin/partials/admin.php:793
705
  msgid ""
706
  "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the "
707
  "listing."
708
  msgstr ""
709
 
710
- #: ../admin/partials/admin.php:800
711
  msgid ""
712
  "If set, WordPress Popular Posts will retrieve all entries that belong to the specified "
713
  "category ID(s). If a minus sign is used, entries associated to the category will be "
714
  "excluded instead."
715
  msgstr ""
716
 
717
- #: ../admin/partials/admin.php:807
718
  msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy."
719
  msgstr ""
720
 
721
- #: ../admin/partials/admin.php:814
722
  msgid ""
723
  "If set, WordPress Popular Posts will retrieve all entries that belong to the specified "
724
  "term ID(s). If a minus sign is used, entries associated to the term(s) will be "
725
  "excluded instead."
726
  msgstr ""
727
 
728
- #: ../admin/partials/admin.php:821
729
  msgid ""
730
  "If set, WordPress Popular Posts will retrieve all entries created by specified "
731
  "author(s) ID(s)."
732
  msgstr ""
733
 
734
- #: ../admin/partials/admin.php:828
735
  msgid ""
736
  "If set, WordPress Popular Posts will shorten each post title to \"n\" characters "
737
  "whenever possible"
738
  msgstr ""
739
 
740
- #: ../admin/partials/admin.php:835
741
  msgid ""
742
  "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" words "
743
  "instead of characters"
744
  msgstr ""
745
 
746
- #: ../admin/partials/admin.php:842
747
  msgid ""
748
  "If set, WordPress Popular Posts will build and include an excerpt of \"n\" characters "
749
  "long from the content of each post listed as popular"
750
  msgstr ""
751
 
752
- #: ../admin/partials/admin.php:849
753
  msgid ""
754
  "If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) "
755
  "and hyperlinks found in the excerpt"
756
  msgstr ""
757
 
758
- #: ../admin/partials/admin.php:856
759
  msgid ""
760
  "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words instead "
761
  "of characters"
762
  msgstr ""
763
 
764
- #: ../admin/partials/admin.php:863
765
  msgid ""
766
  "If set, and if your current server configuration allows it, you will be able to "
767
  "display thumbnails of your posts. This attribute sets the width for thumbnails"
768
  msgstr ""
769
 
770
- #: ../admin/partials/admin.php:870
771
  msgid ""
772
  "If set, and if your current server configuration allows it, you will be able to "
773
  "display thumbnails of your posts. This attribute sets the height for thumbnails"
774
  msgstr ""
775
 
776
- #: ../admin/partials/admin.php:877
777
  msgid ""
778
  "If set, and if the WP-PostRatings plugin is installed and enabled on your blog, "
779
  "WordPress Popular Posts will show how your visitors are rating your entries"
780
  msgstr ""
781
 
782
- #: ../admin/partials/admin.php:884
783
  msgid ""
784
  "If set, WordPress Popular Posts will show how many comments each popular post has got "
785
  "during the specified time range"
786
  msgstr ""
787
 
788
- #: ../admin/partials/admin.php:891
789
  msgid ""
790
  "If set, WordPress Popular Posts will show how many views each popular post has got "
791
  "during the specified time range"
792
  msgstr ""
793
 
794
- #: ../admin/partials/admin.php:898
795
  msgid ""
796
  "If set, WordPress Popular Posts will show who published each popular post on the list"
797
  msgstr ""
798
 
799
- #: ../admin/partials/admin.php:905
800
  msgid ""
801
  "If set, WordPress Popular Posts will display the date when each popular post on the "
802
  "list was published"
803
  msgstr ""
804
 
805
- #: ../admin/partials/admin.php:912
806
  msgid "Sets the date format"
807
  msgstr ""
808
 
809
- #: ../admin/partials/admin.php:919
810
  msgid ""
811
  "If set, WordPress Popular Posts will display the categories associated to each entry"
812
  msgstr ""
813
 
814
- #: ../admin/partials/admin.php:926
815
  msgid ""
816
  "If set, WordPress Popular Posts will display the taxonomies associated to each entry"
817
  msgstr ""
818
 
819
- #: ../admin/partials/admin.php:933
820
  msgid "Sets the opening tag for the listing"
821
  msgstr ""
822
 
823
- #: ../admin/partials/admin.php:940
824
  msgid "Sets the closing tag for the listing"
825
  msgstr ""
826
 
827
- #: ../admin/partials/admin.php:947
828
  msgid "Sets the HTML structure of each post"
829
  msgstr ""
830
 
831
- #: ../admin/partials/admin.php:948
832
  msgid "Text string, custom HTML"
833
  msgstr ""
834
 
835
- #: ../admin/partials/admin.php:948
836
  msgid "Available Content Tags"
837
  msgstr ""
838
 
839
- #: ../admin/partials/admin.php:948
840
  msgid ""
841
  "returns thumbnail linked to post/page, requires thumbnail_width & thumbnail_height"
842
  msgstr ""
843
 
844
- #: ../admin/partials/admin.php:948
845
  msgid ""
846
  "returns thumbnail image without linking to post/page, requires thumbnail_width & "
847
  "thumbnail_height"
848
  msgstr ""
849
 
850
- #: ../admin/partials/admin.php:948
851
  msgid "returns thumbnail url, requires thumbnail_width & thumbnail_height"
852
  msgstr ""
853
 
854
- #: ../admin/partials/admin.php:948
855
  msgid "returns linked post/page title"
856
  msgstr ""
857
 
858
- #: ../admin/partials/admin.php:948
859
  msgid "returns the post/page ID"
860
  msgstr ""
861
 
862
- #: ../admin/partials/admin.php:948
863
  msgid "returns post/page excerpt, and requires excerpt_length to be greater than 0"
864
  msgstr ""
865
 
866
- #: ../admin/partials/admin.php:948
867
  msgid "returns the default stats tags"
868
  msgstr ""
869
 
870
- #: ../admin/partials/admin.php:948
871
  msgid "returns post/page current rating, requires WP-PostRatings installed and enabled"
872
  msgstr ""
873
 
874
- #: ../admin/partials/admin.php:948
875
  msgid ""
876
  "returns post/page current rating as an integer, requires WP-PostRatings installed and "
877
  "enabled"
878
  msgstr ""
879
 
880
- #: ../admin/partials/admin.php:948
881
  msgid "returns the URL of the post/page"
882
  msgstr ""
883
 
884
- #: ../admin/partials/admin.php:948
885
  msgid "returns post/page title, no link"
886
  msgstr ""
887
 
888
- #: ../admin/partials/admin.php:948
889
  msgid "returns linked author name, requires stats_author=1"
890
  msgstr ""
891
 
892
- #: ../admin/partials/admin.php:948
893
  msgid "returns linked category name, requires stats_category=1"
894
  msgstr ""
895
 
896
- #: ../admin/partials/admin.php:948
897
  msgid "returns linked taxonomy names, requires stats_taxonomy=1"
898
  msgstr ""
899
 
900
- #: ../admin/partials/admin.php:948
901
  msgid "returns views count only, no text"
902
  msgstr ""
903
 
904
- #: ../admin/partials/admin.php:948
905
  msgid "returns comments count only, no text, requires stats_comments=1"
906
  msgstr ""
907
 
908
- #: ../admin/partials/admin.php:948
909
  msgid "returns post/page date, requires stats_date=1"
910
  msgstr ""
911
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
912
  #: ../includes/class-wordpress-popular-posts-output.php:128
913
  msgid "Sorry. No data so far."
914
  msgstr ""
@@ -918,98 +911,101 @@ msgstr ""
918
  msgid "%s ago"
919
  msgstr ""
920
 
921
- #: ../includes/class-wordpress-popular-posts-output.php:736
922
  #, php-format
923
  msgid "1 view per day"
924
  msgid_plural "%s views per day"
925
  msgstr[0] ""
926
  msgstr[1] ""
927
 
928
- #: ../includes/class-wordpress-popular-posts-output.php:765
929
  #, php-format
930
  msgid "by %s"
931
  msgstr ""
932
 
933
- #: ../includes/class-wordpress-popular-posts-output.php:771
934
  #, php-format
935
  msgid "posted %s"
936
  msgstr ""
937
 
938
- #: ../includes/class-wordpress-popular-posts-output.php:771
939
  #, php-format
940
  msgid "posted on %s"
941
  msgstr ""
942
 
943
- #: ../includes/class-wordpress-popular-posts-output.php:780
944
  #, php-format
945
  msgid "under %s"
946
  msgstr ""
947
 
948
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:309
949
  msgid "Return popular posts from specified custom post type(s)."
950
  msgstr ""
951
 
952
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:316
953
  msgid "The maximum number of popular posts to return."
954
  msgstr ""
955
 
956
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:324
957
  msgid "Retrieve the most popular entries published within the specified time range."
958
  msgstr ""
959
 
960
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:332
961
  msgid "An offset point for the collection."
962
  msgstr ""
963
 
964
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:340
965
  msgid "Set the sorting option of the popular posts."
966
  msgstr ""
967
 
968
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:348
969
- msgid "Return posts from a specified time range."
970
  msgstr ""
971
 
972
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:356
973
  msgid "Specifies the time unit of the custom time range."
974
  msgstr ""
975
 
976
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:364
977
  msgid "Specifies the number of time units of the custom time range."
978
  msgstr ""
979
 
980
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:372
981
- msgid "Post IDs to exclude."
982
  msgstr ""
983
 
984
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:380
985
  msgid "Include posts in a specified taxonomy."
986
  msgstr ""
987
 
988
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:388
989
  msgid "Taxonomy IDs, separated by comma (prefix a minus sign to exclude)."
990
  msgstr ""
991
 
992
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:396
993
- msgid "Author ID(s)."
994
  msgstr ""
995
 
996
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:416
997
  msgid "Security nonce."
998
  msgstr ""
999
 
1000
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:422
1001
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:455
1002
  msgid "The post / page ID."
1003
  msgstr ""
1004
 
1005
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:429
1006
  msgid "Enables Data Sampling."
1007
  msgstr ""
1008
 
1009
- #: ../includes/class-wordpress-popular-posts-rest-controller.php:436
1010
  msgid "Sets the Sampling Rate."
1011
  msgstr ""
1012
 
 
 
 
 
1013
  #: ../includes/class-wordpress-popular-posts-widget.php:21
1014
  msgid "The most Popular Posts on your blog."
1015
  msgstr ""
5
  msgstr ""
6
  "Project-Id-Version: WordPress Popular Posts\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
8
+ "POT-Creation-Date: 2018-09-30 14:01-0400\n"
9
  "PO-Revision-Date: 2015-04-24 13:30-0430\n"
10
  "Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
11
  "Language-Team: Héctor Cabrera <me@cabrerahector.com>\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPath-1: ..\n"
24
 
25
+ #: ../admin/class-wordpress-popular-posts-admin.php:165
26
  #, php-format
27
  msgid "1 view in the last hour"
28
  msgid_plural "%s views in the last hour"
29
  msgstr[0] ""
30
  msgstr[1] ""
31
 
32
+ #: ../admin/class-wordpress-popular-posts-admin.php:231
33
  msgid "Use this image"
34
  msgstr ""
35
 
36
+ #: ../admin/class-wordpress-popular-posts-admin.php:249
37
  msgid "Overview"
38
  msgstr ""
39
 
40
+ #: ../admin/class-wordpress-popular-posts-admin.php:250
41
  msgid ""
42
  "Welcome to WordPress Popular Posts' Dashboard! In this screen you will find statistics "
43
  "on what's popular on your site, tools to further tweak WPP to your needs, and more!"
44
  msgstr ""
45
 
46
+ #: ../admin/class-wordpress-popular-posts-admin.php:256
47
  msgid "Like this plugin?"
48
  msgstr ""
49
 
50
+ #: ../admin/class-wordpress-popular-posts-admin.php:258
51
  msgid ""
52
  "Each donation motivates me to keep releasing free stuff for the WordPress community!"
53
  msgstr ""
54
 
55
+ #: ../admin/class-wordpress-popular-posts-admin.php:265
56
  #, php-format
57
  msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
58
  msgstr ""
59
 
60
+ #: ../admin/class-wordpress-popular-posts-admin.php:274
61
  #, php-format
62
  msgid ""
63
  "<p><strong>For more information:</strong></p><ul><li><a href=\"%1$s\">Documentation</"
65
  msgstr ""
66
 
67
  #: ../admin/class-wordpress-popular-posts-admin.php:658
68
+ #: ../admin/class-wordpress-popular-posts-admin.php:860 ../admin/partials/admin.php:411
69
  #: ../admin/partials/admin.php:458
70
+ #: ../includes/class-wordpress-popular-posts-output.php:744
71
  #, php-format
72
  msgid "1 view"
73
  msgid_plural "%s views"
75
  msgstr[1] ""
76
 
77
  #: ../admin/class-wordpress-popular-posts-admin.php:658
78
+ #: ../admin/class-wordpress-popular-posts-admin.php:998 ../admin/partials/admin.php:411
79
  #: ../admin/partials/admin.php:458
80
+ #: ../includes/class-wordpress-popular-posts-output.php:725
81
  #, php-format
82
  msgid "1 comment"
83
  msgid_plural "%s comments"
92
  msgid "Views"
93
  msgstr ""
94
 
95
+ #: ../admin/class-wordpress-popular-posts-admin.php:861
96
+ #: ../admin/class-wordpress-popular-posts-admin.php:999 ../admin/partials/admin.php:412
97
  #: ../admin/partials/admin.php:459
98
  msgid "View"
99
  msgstr ""
100
 
101
+ #: ../admin/class-wordpress-popular-posts-admin.php:861
102
+ #: ../admin/class-wordpress-popular-posts-admin.php:999 ../admin/partials/admin.php:412
103
  #: ../admin/partials/admin.php:459
104
  msgid "Edit"
105
  msgstr ""
106
 
107
+ #: ../admin/class-wordpress-popular-posts-admin.php:872
108
+ #: ../admin/class-wordpress-popular-posts-admin.php:1010 ../admin/partials/admin.php:423
109
  #: ../admin/partials/admin.php:470
110
  msgid ""
111
  "Looks like traffic to your site is a little light right now. <br />Spread the word and "
112
  "come back later!"
113
  msgstr ""
114
 
115
+ #: ../admin/class-wordpress-popular-posts-admin.php:1078
116
  msgid "Settings"
117
  msgstr ""
118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  #: ../admin/partials/admin.php:6 ../admin/partials/admin.php:254
120
  msgid "Stats"
121
  msgstr ""
550
  "\"%2$s\">[wpp] shortcode</a>."
551
  msgstr ""
552
 
553
+ #: ../admin/partials/admin.php:715
554
  msgid "Parameter"
555
  msgstr ""
556
 
557
+ #: ../admin/partials/admin.php:716
558
  msgid "What it does "
559
  msgstr ""
560
 
561
+ #: ../admin/partials/admin.php:717
562
  msgid "Possible values"
563
  msgstr ""
564
 
565
+ #: ../admin/partials/admin.php:718
566
  msgid "Defaults to"
567
  msgstr ""
568
 
569
+ #: ../admin/partials/admin.php:719
570
  msgid "Example"
571
  msgstr ""
572
 
573
+ #: ../admin/partials/admin.php:725
574
  msgid "Sets a heading for the list"
575
  msgstr ""
576
 
577
+ #: ../admin/partials/admin.php:726 ../admin/partials/admin.php:733
578
+ #: ../admin/partials/admin.php:740 ../admin/partials/admin.php:789
579
+ #: ../admin/partials/admin.php:796 ../admin/partials/admin.php:803
580
+ #: ../admin/partials/admin.php:810 ../admin/partials/admin.php:817
581
+ #: ../admin/partials/admin.php:824 ../admin/partials/admin.php:915
582
+ #: ../admin/partials/admin.php:936 ../admin/partials/admin.php:943
583
  msgid "Text string"
584
  msgstr ""
585
 
586
+ #: ../admin/partials/admin.php:727 ../admin/partials/admin.php:797
587
+ #: ../admin/partials/admin.php:804 ../admin/partials/admin.php:811
588
+ #: ../admin/partials/admin.php:818 ../admin/partials/admin.php:825
589
  msgid "None"
590
  msgstr ""
591
 
592
+ #: ../admin/partials/admin.php:728 ../admin/partials/admin.php:735
593
+ #: ../admin/partials/admin.php:742 ../admin/partials/admin.php:749
594
+ #: ../admin/partials/admin.php:756 ../admin/partials/admin.php:763
595
+ #: ../admin/partials/admin.php:770 ../admin/partials/admin.php:777
596
+ #: ../admin/partials/admin.php:784 ../admin/partials/admin.php:791
597
+ #: ../admin/partials/admin.php:798 ../admin/partials/admin.php:805
598
+ #: ../admin/partials/admin.php:812 ../admin/partials/admin.php:819
599
+ #: ../admin/partials/admin.php:826 ../admin/partials/admin.php:833
600
+ #: ../admin/partials/admin.php:840 ../admin/partials/admin.php:847
601
+ #: ../admin/partials/admin.php:854 ../admin/partials/admin.php:861
602
+ #: ../admin/partials/admin.php:868 ../admin/partials/admin.php:875
603
+ #: ../admin/partials/admin.php:882 ../admin/partials/admin.php:889
604
+ #: ../admin/partials/admin.php:896 ../admin/partials/admin.php:903
605
+ #: ../admin/partials/admin.php:910 ../admin/partials/admin.php:917
606
+ #: ../admin/partials/admin.php:924 ../admin/partials/admin.php:931
607
+ #: ../admin/partials/admin.php:938 ../admin/partials/admin.php:945
608
+ #: ../admin/partials/admin.php:952
609
  msgid "With wpp_get_mostpopular():"
610
  msgstr ""
611
 
612
+ #: ../admin/partials/admin.php:728 ../admin/partials/admin.php:735
613
+ #: ../admin/partials/admin.php:742 ../admin/partials/admin.php:749
614
+ #: ../admin/partials/admin.php:756 ../admin/partials/admin.php:763
615
+ #: ../admin/partials/admin.php:770 ../admin/partials/admin.php:777
616
+ #: ../admin/partials/admin.php:784 ../admin/partials/admin.php:791
617
+ #: ../admin/partials/admin.php:798 ../admin/partials/admin.php:805
618
+ #: ../admin/partials/admin.php:812 ../admin/partials/admin.php:819
619
+ #: ../admin/partials/admin.php:826 ../admin/partials/admin.php:833
620
+ #: ../admin/partials/admin.php:840 ../admin/partials/admin.php:847
621
+ #: ../admin/partials/admin.php:854 ../admin/partials/admin.php:861
622
+ #: ../admin/partials/admin.php:868 ../admin/partials/admin.php:875
623
+ #: ../admin/partials/admin.php:882 ../admin/partials/admin.php:889
624
+ #: ../admin/partials/admin.php:896 ../admin/partials/admin.php:903
625
+ #: ../admin/partials/admin.php:910 ../admin/partials/admin.php:917
626
+ #: ../admin/partials/admin.php:924 ../admin/partials/admin.php:931
627
+ #: ../admin/partials/admin.php:938 ../admin/partials/admin.php:945
628
+ #: ../admin/partials/admin.php:952
629
  msgid "With the [wpp] shortcode:"
630
  msgstr ""
631
 
632
+ #: ../admin/partials/admin.php:732
633
  msgid "Set the opening tag for the heading of the list"
634
  msgstr ""
635
 
636
+ #: ../admin/partials/admin.php:739
637
  msgid "Set the closing tag for the heading of the list"
638
  msgstr ""
639
 
640
+ #: ../admin/partials/admin.php:746
641
  msgid "Sets the maximum number of popular posts to be shown on the listing"
642
  msgstr ""
643
 
644
+ #: ../admin/partials/admin.php:747 ../admin/partials/admin.php:761
645
+ #: ../admin/partials/admin.php:831 ../admin/partials/admin.php:845
646
+ #: ../admin/partials/admin.php:866 ../admin/partials/admin.php:873
647
  msgid "Positive integer"
648
  msgstr ""
649
 
650
+ #: ../admin/partials/admin.php:753
651
  msgid ""
652
  "Tells WordPress Popular Posts to retrieve the most popular entries within the time "
653
  "range specified by you"
654
  msgstr ""
655
 
656
+ #: ../admin/partials/admin.php:760
657
  msgid "Especifies the number of time units of the custom time range"
658
  msgstr ""
659
 
660
+ #: ../admin/partials/admin.php:767
661
  msgid "Especifies the time unit of the custom time range"
662
  msgstr ""
663
 
664
+ #: ../admin/partials/admin.php:774
665
  msgid ""
666
  "Tells WordPress Popular Posts to retrieve the most popular entries published within "
667
  "the time range specified by you"
668
  msgstr ""
669
 
670
+ #: ../admin/partials/admin.php:781
671
  msgid "Sets the sorting option of the popular posts"
672
  msgstr ""
673
 
674
+ #: ../admin/partials/admin.php:782
675
  msgid "(for average views per day)"
676
  msgstr ""
677
 
678
+ #: ../admin/partials/admin.php:788
679
  msgid "Defines the type of posts to show on the listing"
680
  msgstr ""
681
 
682
+ #: ../admin/partials/admin.php:795
683
  msgid ""
684
  "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the "
685
  "listing."
686
  msgstr ""
687
 
688
+ #: ../admin/partials/admin.php:802
689
  msgid ""
690
  "If set, WordPress Popular Posts will retrieve all entries that belong to the specified "
691
  "category ID(s). If a minus sign is used, entries associated to the category will be "
692
  "excluded instead."
693
  msgstr ""
694
 
695
+ #: ../admin/partials/admin.php:809
696
  msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy."
697
  msgstr ""
698
 
699
+ #: ../admin/partials/admin.php:816
700
  msgid ""
701
  "If set, WordPress Popular Posts will retrieve all entries that belong to the specified "
702
  "term ID(s). If a minus sign is used, entries associated to the term(s) will be "
703
  "excluded instead."
704
  msgstr ""
705
 
706
+ #: ../admin/partials/admin.php:823
707
  msgid ""
708
  "If set, WordPress Popular Posts will retrieve all entries created by specified "
709
  "author(s) ID(s)."
710
  msgstr ""
711
 
712
+ #: ../admin/partials/admin.php:830
713
  msgid ""
714
  "If set, WordPress Popular Posts will shorten each post title to \"n\" characters "
715
  "whenever possible"
716
  msgstr ""
717
 
718
+ #: ../admin/partials/admin.php:837
719
  msgid ""
720
  "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" words "
721
  "instead of characters"
722
  msgstr ""
723
 
724
+ #: ../admin/partials/admin.php:844
725
  msgid ""
726
  "If set, WordPress Popular Posts will build and include an excerpt of \"n\" characters "
727
  "long from the content of each post listed as popular"
728
  msgstr ""
729
 
730
+ #: ../admin/partials/admin.php:851
731
  msgid ""
732
  "If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) "
733
  "and hyperlinks found in the excerpt"
734
  msgstr ""
735
 
736
+ #: ../admin/partials/admin.php:858
737
  msgid ""
738
  "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words instead "
739
  "of characters"
740
  msgstr ""
741
 
742
+ #: ../admin/partials/admin.php:865
743
  msgid ""
744
  "If set, and if your current server configuration allows it, you will be able to "
745
  "display thumbnails of your posts. This attribute sets the width for thumbnails"
746
  msgstr ""
747
 
748
+ #: ../admin/partials/admin.php:872
749
  msgid ""
750
  "If set, and if your current server configuration allows it, you will be able to "
751
  "display thumbnails of your posts. This attribute sets the height for thumbnails"
752
  msgstr ""
753
 
754
+ #: ../admin/partials/admin.php:879
755
  msgid ""
756
  "If set, and if the WP-PostRatings plugin is installed and enabled on your blog, "
757
  "WordPress Popular Posts will show how your visitors are rating your entries"
758
  msgstr ""
759
 
760
+ #: ../admin/partials/admin.php:886
761
  msgid ""
762
  "If set, WordPress Popular Posts will show how many comments each popular post has got "
763
  "during the specified time range"
764
  msgstr ""
765
 
766
+ #: ../admin/partials/admin.php:893
767
  msgid ""
768
  "If set, WordPress Popular Posts will show how many views each popular post has got "
769
  "during the specified time range"
770
  msgstr ""
771
 
772
+ #: ../admin/partials/admin.php:900
773
  msgid ""
774
  "If set, WordPress Popular Posts will show who published each popular post on the list"
775
  msgstr ""
776
 
777
+ #: ../admin/partials/admin.php:907
778
  msgid ""
779
  "If set, WordPress Popular Posts will display the date when each popular post on the "
780
  "list was published"
781
  msgstr ""
782
 
783
+ #: ../admin/partials/admin.php:914
784
  msgid "Sets the date format"
785
  msgstr ""
786
 
787
+ #: ../admin/partials/admin.php:921
788
  msgid ""
789
  "If set, WordPress Popular Posts will display the categories associated to each entry"
790
  msgstr ""
791
 
792
+ #: ../admin/partials/admin.php:928
793
  msgid ""
794
  "If set, WordPress Popular Posts will display the taxonomies associated to each entry"
795
  msgstr ""
796
 
797
+ #: ../admin/partials/admin.php:935
798
  msgid "Sets the opening tag for the listing"
799
  msgstr ""
800
 
801
+ #: ../admin/partials/admin.php:942
802
  msgid "Sets the closing tag for the listing"
803
  msgstr ""
804
 
805
+ #: ../admin/partials/admin.php:949
806
  msgid "Sets the HTML structure of each post"
807
  msgstr ""
808
 
809
+ #: ../admin/partials/admin.php:950
810
  msgid "Text string, custom HTML"
811
  msgstr ""
812
 
813
+ #: ../admin/partials/admin.php:950
814
  msgid "Available Content Tags"
815
  msgstr ""
816
 
817
+ #: ../admin/partials/admin.php:950
818
  msgid ""
819
  "returns thumbnail linked to post/page, requires thumbnail_width & thumbnail_height"
820
  msgstr ""
821
 
822
+ #: ../admin/partials/admin.php:950
823
  msgid ""
824
  "returns thumbnail image without linking to post/page, requires thumbnail_width & "
825
  "thumbnail_height"
826
  msgstr ""
827
 
828
+ #: ../admin/partials/admin.php:950
829
  msgid "returns thumbnail url, requires thumbnail_width & thumbnail_height"
830
  msgstr ""
831
 
832
+ #: ../admin/partials/admin.php:950
833
  msgid "returns linked post/page title"
834
  msgstr ""
835
 
836
+ #: ../admin/partials/admin.php:950
837
  msgid "returns the post/page ID"
838
  msgstr ""
839
 
840
+ #: ../admin/partials/admin.php:950
841
  msgid "returns post/page excerpt, and requires excerpt_length to be greater than 0"
842
  msgstr ""
843
 
844
+ #: ../admin/partials/admin.php:950
845
  msgid "returns the default stats tags"
846
  msgstr ""
847
 
848
+ #: ../admin/partials/admin.php:950
849
  msgid "returns post/page current rating, requires WP-PostRatings installed and enabled"
850
  msgstr ""
851
 
852
+ #: ../admin/partials/admin.php:950
853
  msgid ""
854
  "returns post/page current rating as an integer, requires WP-PostRatings installed and "
855
  "enabled"
856
  msgstr ""
857
 
858
+ #: ../admin/partials/admin.php:950
859
  msgid "returns the URL of the post/page"
860
  msgstr ""
861
 
862
+ #: ../admin/partials/admin.php:950
863
  msgid "returns post/page title, no link"
864
  msgstr ""
865
 
866
+ #: ../admin/partials/admin.php:950
867
  msgid "returns linked author name, requires stats_author=1"
868
  msgstr ""
869
 
870
+ #: ../admin/partials/admin.php:950
871
  msgid "returns linked category name, requires stats_category=1"
872
  msgstr ""
873
 
874
+ #: ../admin/partials/admin.php:950
875
  msgid "returns linked taxonomy names, requires stats_taxonomy=1"
876
  msgstr ""
877
 
878
+ #: ../admin/partials/admin.php:950
879
  msgid "returns views count only, no text"
880
  msgstr ""
881
 
882
+ #: ../admin/partials/admin.php:950
883
  msgid "returns comments count only, no text, requires stats_comments=1"
884
  msgstr ""
885
 
886
+ #: ../admin/partials/admin.php:950
887
  msgid "returns post/page date, requires stats_date=1"
888
  msgstr ""
889
 
890
+ #: ../includes/class-wordpress-popular-posts-activator.php:155
891
+ #, php-format
892
+ msgid ""
893
+ "Your PHP installation is too old. WordPress Popular Posts requires at least PHP "
894
+ "version %1$s to function correctly. Please contact your hosting provider and ask them "
895
+ "to upgrade PHP to %1$s or higher."
896
+ msgstr ""
897
+
898
+ #: ../includes/class-wordpress-popular-posts-activator.php:162
899
+ #, php-format
900
+ msgid ""
901
+ "Your WordPress version is too old. WordPress Popular Posts requires at least WordPress "
902
+ "version %1$s to function correctly. Please update your blog via Dashboard &gt; Update."
903
+ msgstr ""
904
+
905
  #: ../includes/class-wordpress-popular-posts-output.php:128
906
  msgid "Sorry. No data so far."
907
  msgstr ""
911
  msgid "%s ago"
912
  msgstr ""
913
 
914
+ #: ../includes/class-wordpress-popular-posts-output.php:738
915
  #, php-format
916
  msgid "1 view per day"
917
  msgid_plural "%s views per day"
918
  msgstr[0] ""
919
  msgstr[1] ""
920
 
921
+ #: ../includes/class-wordpress-popular-posts-output.php:767
922
  #, php-format
923
  msgid "by %s"
924
  msgstr ""
925
 
926
+ #: ../includes/class-wordpress-popular-posts-output.php:773
927
  #, php-format
928
  msgid "posted %s"
929
  msgstr ""
930
 
931
+ #: ../includes/class-wordpress-popular-posts-output.php:773
932
  #, php-format
933
  msgid "posted on %s"
934
  msgstr ""
935
 
936
+ #: ../includes/class-wordpress-popular-posts-output.php:782
937
  #, php-format
938
  msgid "under %s"
939
  msgstr ""
940
 
941
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:369
942
  msgid "Return popular posts from specified custom post type(s)."
943
  msgstr ""
944
 
945
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:376
946
  msgid "The maximum number of popular posts to return."
947
  msgstr ""
948
 
949
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:384
950
  msgid "Retrieve the most popular entries published within the specified time range."
951
  msgstr ""
952
 
953
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:392
954
  msgid "An offset point for the collection."
955
  msgstr ""
956
 
957
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:400
958
  msgid "Set the sorting option of the popular posts."
959
  msgstr ""
960
 
961
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:408
962
+ msgid "Return popular posts from a specified time range."
963
  msgstr ""
964
 
965
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:416
966
  msgid "Specifies the time unit of the custom time range."
967
  msgstr ""
968
 
969
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:424
970
  msgid "Specifies the number of time units of the custom time range."
971
  msgstr ""
972
 
973
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:432
974
+ msgid "Post IDs to exclude from the listing."
975
  msgstr ""
976
 
977
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:440
978
  msgid "Include posts in a specified taxonomy."
979
  msgstr ""
980
 
981
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:448
982
  msgid "Taxonomy IDs, separated by comma (prefix a minus sign to exclude)."
983
  msgstr ""
984
 
985
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:456
986
+ msgid "Include popular posts from author ID(s)."
987
  msgstr ""
988
 
989
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:476
990
  msgid "Security nonce."
991
  msgstr ""
992
 
993
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:482
 
994
  msgid "The post / page ID."
995
  msgstr ""
996
 
997
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:489
998
  msgid "Enables Data Sampling."
999
  msgstr ""
1000
 
1001
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:496
1002
  msgid "Sets the Sampling Rate."
1003
  msgstr ""
1004
 
1005
+ #: ../includes/class-wordpress-popular-posts-rest-controller.php:515
1006
+ msgid "Widget instance ID"
1007
+ msgstr ""
1008
+
1009
  #: ../includes/class-wordpress-popular-posts-widget.php:21
1010
  msgid "The most Popular Posts on your blog."
1011
  msgstr ""
public/class-wordpress-popular-posts-public.php CHANGED
@@ -102,13 +102,12 @@ class WPP_Public {
102
  $is_single = WPP_Helper::is_single();
103
  }
104
 
105
- wp_register_script( 'wpp-js', plugin_dir_url( __FILE__ ) . 'js/wpp-4.1.0.min.js', array(), $this->version, false );
106
 
107
  $params = array(
108
  'sampling_active' => (int) $this->admin_options['tools']['sampling']['active'],
109
  'sampling_rate' => $this->admin_options['tools']['sampling']['rate'],
110
  'ajax_url' => esc_url_raw( rest_url( 'wordpress-popular-posts/v1/popular-posts/' ) ),
111
- 'action' => 'update_views_ajax',
112
  'ID' => $is_single,
113
  'token' => wp_create_nonce( 'wp_rest' ),
114
  'debug' => WP_DEBUG
102
  $is_single = WPP_Helper::is_single();
103
  }
104
 
105
+ wp_register_script( 'wpp-js', plugin_dir_url( __FILE__ ) . 'js/wpp-4.2.0.min.js', array(), $this->version, false );
106
 
107
  $params = array(
108
  'sampling_active' => (int) $this->admin_options['tools']['sampling']['active'],
109
  'sampling_rate' => $this->admin_options['tools']['sampling']['rate'],
110
  'ajax_url' => esc_url_raw( rest_url( 'wordpress-popular-posts/v1/popular-posts/' ) ),
 
111
  'ID' => $is_single,
112
  'token' => wp_create_nonce( 'wp_rest' ),
113
  'debug' => WP_DEBUG
public/js/{wpp-4.1.0.min.js → wpp-4.2.0.min.js} RENAMED
@@ -1,3 +1,3 @@
1
  var WordPressPopularPosts=function(){var d=function(){},f=function(b,e,a,d){var c=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");b=-1!=["GET","POST"].indexOf(b)?b:"GET";c.open(b,e+("GET"==b?"?"+a:""),!0);"POST"==b&&c.setRequestHeader("Content-type","application/x-www-form-urlencoded");c.setRequestHeader("X-Requested-With","XMLHttpRequest");c.onreadystatechange=function(){4===c.readyState&&200===c.status&&"function"===typeof d&&d.call(void 0,c.response)};c.send("POST"==
2
  b?a:null)};return{get:function(b,e,a){a="function"===typeof a?a:d;f("GET",b,e,a)},post:function(b,e,a){a="function"===typeof a?a:d;f("POST",b,e,a)},ajax:f}}();
3
- if("undefined"!==typeof wpp_params && wpp_params.ID > 0){var do_request=!0;if("1"==wpp_params.sampling_active){var num=Math.floor(Math.random()*wpp_params.sampling_rate)+1;do_request=1===num}do_request&&WordPressPopularPosts.post(wpp_params.ajax_url,"action="+wpp_params.action+"&_wpnonce="+wpp_params.token+"&token="+wpp_params.token+"&wpp_id="+wpp_params.ID+"&sampling="+wpp_params.sampling_active+"&sampling_rate="+wpp_params.sampling_rate,function(d){wpp_params.debug&&window.console&&window.console.log&&window.console.log(d)})};
1
  var WordPressPopularPosts=function(){var d=function(){},f=function(b,e,a,d){var c=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");b=-1!=["GET","POST"].indexOf(b)?b:"GET";c.open(b,e+("GET"==b?"?"+a:""),!0);"POST"==b&&c.setRequestHeader("Content-type","application/x-www-form-urlencoded");c.setRequestHeader("X-Requested-With","XMLHttpRequest");c.onreadystatechange=function(){4===c.readyState&&200===c.status&&"function"===typeof d&&d.call(void 0,c.response)};c.send("POST"==
2
  b?a:null)};return{get:function(b,e,a){a="function"===typeof a?a:d;f("GET",b,e,a)},post:function(b,e,a){a="function"===typeof a?a:d;f("POST",b,e,a)},ajax:f}}();
3
+ if("undefined"!==typeof wpp_params && wpp_params.ID > 0){var do_request=!0;if("1"==wpp_params.sampling_active){var num=Math.floor(Math.random()*wpp_params.sampling_rate)+1;do_request=1===num}do_request&&WordPressPopularPosts.post(wpp_params.ajax_url,"_wpnonce="+wpp_params.token+"&wpp_id="+wpp_params.ID+"&sampling="+wpp_params.sampling_active+"&sampling_rate="+wpp_params.sampling_rate,function(d){wpp_params.debug&&window.console&&window.console.log&&window.console.log(d)})};
public/js/wpp.js CHANGED
@@ -64,7 +64,7 @@ if (
64
  if ( do_request ) {
65
  WordPressPopularPosts.post(
66
  wpp_params.ajax_url,
67
- "action=" + wpp_params.action + "&_wpnonce=" + wpp_params.token + "&token=" + wpp_params.token + "&wpp_id=" + wpp_params.ID + "&sampling=" + wpp_params.sampling_active + "&sampling_rate=" + wpp_params.sampling_rate,
68
  function( response ){
69
  wpp_params.debug&&window.console&&window.console.log&&window.console.log( response );
70
  }
64
  if ( do_request ) {
65
  WordPressPopularPosts.post(
66
  wpp_params.ajax_url,
67
+ "_wpnonce=" + wpp_params.token + "&wpp_id=" + wpp_params.ID + "&sampling=" + wpp_params.sampling_active + "&sampling_rate=" + wpp_params.sampling_rate,
68
  function( response ){
69
  wpp_params.debug&&window.console&&window.console.log&&window.console.log( response );
70
  }
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: popular, posts, widget, popularity, top
5
  Requires at least: 4.7
6
  Tested up to: 4.9.8
7
  Requires PHP: 5.3
8
- Stable tag: 4.1.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -23,6 +23,8 @@ WordPress Popular Posts is a highly customizable widget that displays your most
23
  * **Statistics dashboard** - See how your popular posts are doing directly from your admin area.
24
  * **Sorting options** - Order your popular list by comments, views (default) or average views per day!
25
  * **Use your own layout!** - WPP is flexible enough to let you customize the look and feel of your popular posts! (see [customizing WPP's HTML markup](https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#how-can-i-use-my-own-html-markup-with-your-plugin) and [How to style WordPress Popular Posts](https://github.com/cabrerahector/wordpress-popular-posts/wiki/6.-Styling-the-list) for more.)
 
 
26
  * **Disqus support** - Sort your popular posts by Disqus comments count!
27
  * **Polylang & WPML 3.2+ support** - Show the translated version of your popular posts!
28
  * **WordPress Multisite support** - Each site on the network can have its own popular posts!
@@ -60,7 +62,7 @@ Please make sure your site meets the [minimum requirements](https://github.com/c
60
  2. If you have a caching plugin installed on your site, flush its cache now so WPP can start tracking your site.
61
  3. If you have a security / firewall plugin installed on your site, make sure you [allow WPP access to the REST API](https://wordpress.org/support/topic/wpp-does-not-count-properly/#post-10411163) so it can start tracking your site.
62
  4. Go to Appearance > Editor. Under "Templates", click on `header.php` and make sure that the `<?php wp_head(); ?>` tag is present (should be right before the closing `</head>` tag).
63
- 5. (Optional, but highly recommended for large / high traffic sites) Enabling [Data Sampling](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#data-sampling) and/or [Caching](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#caching) might be a good idea. Check [here](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance) for more.
64
 
65
  That's it!
66
 
@@ -86,6 +88,20 @@ The FAQ section has been moved [here](https://github.com/cabrerahector/wordpress
86
  4. WordPress Popular Posts Stats panel.
87
 
88
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  = 4.1.2 =
90
 
91
  - Enables [Data Caching](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#caching) by default (new installs only).
@@ -103,19 +119,6 @@ The FAQ section has been moved [here](https://github.com/cabrerahector/wordpress
103
  - Fixes a minor bug (plugin returning the wrong excerpt when a translation plugin is used).
104
  - Bumps minimum required PHP version to 5.3.
105
 
106
- = 4.1.0 =
107
-
108
- **If you're using a caching plugin, flushing its cache right after installing / upgrading to this version is highly recommended.**
109
-
110
- - Adds support for the REST API.
111
- - Adds At-a-Glance stats.
112
- - Adds Today time range to Stats section.
113
- - Drops jQuery dependency on front-end (faster loading times!)
114
- - The plugin will no longer display debugging information unless WP_DEBUG is set to true.
115
- - Many minor bug fixes and improvements.
116
-
117
- See the [Release notes](https://cabrerahector.com/wordpress/wordpress-popular-posts-4-1-is-here/) for more details!
118
-
119
  See [full changelog](https://github.com/cabrerahector/wordpress-popular-posts/blob/master/changelog.md).
120
 
121
  == Credits ==
5
  Requires at least: 4.7
6
  Tested up to: 4.9.8
7
  Requires PHP: 5.3
8
+ Stable tag: 4.2.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
23
  * **Statistics dashboard** - See how your popular posts are doing directly from your admin area.
24
  * **Sorting options** - Order your popular list by comments, views (default) or average views per day!
25
  * **Use your own layout!** - WPP is flexible enough to let you customize the look and feel of your popular posts! (see [customizing WPP's HTML markup](https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#how-can-i-use-my-own-html-markup-with-your-plugin) and [How to style WordPress Popular Posts](https://github.com/cabrerahector/wordpress-popular-posts/wiki/6.-Styling-the-list) for more.)
26
+ * **Advanced caching features!** - WordPress Popular Posts includes a few options to make sure your site's performance stays as good as ever! (see [Performance](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance) for more details.)
27
+ * **REST API Support** - Embed your popular posts in your (web) app! (see [REST API Endpoints](https://github.com/cabrerahector/wordpress-popular-posts/wiki/8.-REST-API-Endpoints) for more.)
28
  * **Disqus support** - Sort your popular posts by Disqus comments count!
29
  * **Polylang & WPML 3.2+ support** - Show the translated version of your popular posts!
30
  * **WordPress Multisite support** - Each site on the network can have its own popular posts!
62
  2. If you have a caching plugin installed on your site, flush its cache now so WPP can start tracking your site.
63
  3. If you have a security / firewall plugin installed on your site, make sure you [allow WPP access to the REST API](https://wordpress.org/support/topic/wpp-does-not-count-properly/#post-10411163) so it can start tracking your site.
64
  4. Go to Appearance > Editor. Under "Templates", click on `header.php` and make sure that the `<?php wp_head(); ?>` tag is present (should be right before the closing `</head>` tag).
65
+ 5. (Optional, but highly recommended for large / high traffic sites) Enabling [Caching](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#caching) and/or [Data Sampling](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#data-sampling) might be a good idea if you're worried about performance. Check [here](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance) for more.
66
 
67
  That's it!
68
 
88
  4. WordPress Popular Posts Stats panel.
89
 
90
  == Changelog ==
91
+ = 4.2.0 =
92
+
93
+ **If you're using a caching plugin, flushing its cache right after installing / upgrading to this version is required.**
94
+
95
+ - **Breaking change**: Database query performance improvements (thanks Stofa!), plugin should be significantly faster for most people out there. Developers: if you're hooking into the `WPP_Query` class to customize the query, you will have to review it as this change will likely break your custom query.
96
+ - **Persistent object caching support**: WPP can now store views count in-memory, reducing greatly the number of database writes which is good for performance!
97
+ - Adds filter hook [wpp_parse_custom_content_tags](https://github.com/cabrerahector/wordpress-popular-posts/wiki/3.-Filters#wpp_parse_custom_content_tags).
98
+ - Adds filter hook [wpp_taxonomy_separator](https://github.com/cabrerahector/wordpress-popular-posts/wiki/3.-Filters#wpp_taxonomy_separator).
99
+ - You can now also pass arrays when using the parameters `post_type`, `cat`, `term_id`, `pid` or `author` (see [issue 169](https://github.com/cabrerahector/wordpress-popular-posts/issues/169#issuecomment-419667083) for details).
100
+ - The plugin will use language packs from wordpress.org from now on.
101
+ - Minor fixes and improvements.
102
+
103
+ Check the [Release notes](https://cabrerahector.com/wordpress/wordpress-popular-posts-4-2-is-all-about-speed/) for more details!
104
+
105
  = 4.1.2 =
106
 
107
  - Enables [Data Caching](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance#caching) by default (new installs only).
119
  - Fixes a minor bug (plugin returning the wrong excerpt when a translation plugin is used).
120
  - Bumps minimum required PHP version to 5.3.
121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  See [full changelog](https://github.com/cabrerahector/wordpress-popular-posts/blob/master/changelog.md).
123
 
124
  == Credits ==
wordpress-popular-posts.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: WordPress Popular Posts
17
  * Plugin URI: https://wordpress.org/plugins/wordpress-popular-posts/
18
  * Description: A highly customizable widget that displays the most popular posts on your blog.
19
- * Version: 4.1.2
20
  * Author: Hector Cabrera
21
  * Author URI: https://cabrerahector.com/
22
  * License: GPL-2.0+
@@ -29,12 +29,24 @@ if ( ! defined( 'WPINC' ) ) {
29
  die();
30
  }
31
 
32
- define( 'WPP_VER', '4.1.2' );
 
 
 
 
 
 
 
 
 
 
 
 
 
33
 
34
  /*
35
  * The code that runs during plugin activation.
36
  */
37
- require_once plugin_dir_path( __FILE__ ) . 'includes/class-wordpress-popular-posts-activator.php';
38
  register_activation_hook( __FILE__, array('WPP_Activator', 'activate') );
39
 
40
  /*
16
  * Plugin Name: WordPress Popular Posts
17
  * Plugin URI: https://wordpress.org/plugins/wordpress-popular-posts/
18
  * Description: A highly customizable widget that displays the most popular posts on your blog.
19
+ * Version: 4.2.0
20
  * Author: Hector Cabrera
21
  * Author URI: https://cabrerahector.com/
22
  * License: GPL-2.0+
29
  die();
30
  }
31
 
32
+ define( 'WPP_VER', '4.2.0' );
33
+
34
+ require_once plugin_dir_path( __FILE__ ) . 'includes/class-wordpress-popular-posts-admin-notices.php';
35
+ require_once plugin_dir_path( __FILE__ ) . 'includes/class-wordpress-popular-posts-activator.php';
36
+
37
+ // Can we run?
38
+ if ( $errors = WPP_Activator::check_requirements() ) {
39
+ if ( isset($_GET['activate']) ) unset($_GET['activate']);
40
+
41
+ // Display error message(s)
42
+ new WPP_Message( $errors, 'notice-error' );
43
+ // We're done here
44
+ return;
45
+ }
46
 
47
  /*
48
  * The code that runs during plugin activation.
49
  */
 
50
  register_activation_hook( __FILE__, array('WPP_Activator', 'activate') );
51
 
52
  /*