Content Views – Post Grid & List for WordPress - Version 1.2.2

Version Description

  • Performance optimization for pagination request
  • Add translation file (.po)
Download this release

Release Info

Developer PT Guy
Plugin Icon 128x128 Content Views – Post Grid & List for WordPress
Version 1.2.2
Comparing to
See all releases

Code changes from version 1.2.1 to 1.2.2

README.txt CHANGED
@@ -4,18 +4,18 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: post, posts, page, pages, query, queries, search, display, show, shortcode, thumbnail, title, content, excerpt, meta, date, author, term, taxonomy, pagination, grid, scrollable, collapsible, list, slide, layout, ui
5
  Requires at least: 3.3
6
  Tested up to: 3.9.1
7
- Stable tag: 1.2.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- Display posts any where (home page, sidebar, footer widget) in responsive grid layouts easier than ever, without coding!
12
 
13
  == Description ==
14
 
15
  Have you ever wanted to:
16
 
17
- * display specific posts in home page, in a page, in footer widget, in sidebar of your WordPress site
18
- * display latest posts in responsive grid layout
19
  * display posts in descending order of Title
20
  * replace boring Next, Prev button of WordPress theme by a beautiful pagination
21
  * display thumbnail in different size than 150x150 or 300x300
@@ -63,7 +63,8 @@ Also, you can import/export 'View' to use in other WordPress sites (Please check
63
 
64
  = More amazing features: =
65
 
66
- * Woocommerce support
 
67
  * Display posts in more Awesome layouts: Pinterest, Timeline
68
  * More beautiful output & powerful settings of Grid, List
69
  * Drag & drop to change display order of fields (thumbnail, title, content, meta fields)
@@ -147,6 +148,10 @@ You can create Unlimited Views, in Unlimited websites
147
 
148
  == Changelog ==
149
 
 
 
 
 
150
  = 1.2.1 =
151
  * Fix pagination bug if number of pages > 10
152
  * Fix bug of Preview button: click event fires twice
@@ -203,6 +208,9 @@ You can create Unlimited Views, in Unlimited websites
203
 
204
  == Upgrade Notice ==
205
 
 
 
 
206
  = 1.2.1 =
207
  Fix pagination bug if number of pages > 10. Fix bug of Preview button: click event fires twice. Enable other user roles (Editor, Author, Contributor) to see Content Views menu and manage Views
208
 
4
  Tags: post, posts, page, pages, query, queries, search, display, show, shortcode, thumbnail, title, content, excerpt, meta, date, author, term, taxonomy, pagination, grid, scrollable, collapsible, list, slide, layout, ui
5
  Requires at least: 3.3
6
  Tested up to: 3.9.1
7
+ Stable tag: 1.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ Query and display posts in responsive grid, list layouts easier than ever, without coding!
12
 
13
  == Description ==
14
 
15
  Have you ever wanted to:
16
 
17
+ * display multiple posts in responsive grid layout at home page
18
+ * display multiple posts in responsive grid layout at a specific page
19
  * display posts in descending order of Title
20
  * replace boring Next, Prev button of WordPress theme by a beautiful pagination
21
  * display thumbnail in different size than 150x150 or 300x300
63
 
64
  = More amazing features: =
65
 
66
+ * WooCommerce support
67
+ * Portfolio support
68
  * Display posts in more Awesome layouts: Pinterest, Timeline
69
  * More beautiful output & powerful settings of Grid, List
70
  * Drag & drop to change display order of fields (thumbnail, title, content, meta fields)
148
 
149
  == Changelog ==
150
 
151
+ = 1.2.2 =
152
+ * Performance optimization for pagination request
153
+ * Add translation file (.po)
154
+
155
  = 1.2.1 =
156
  * Fix pagination bug if number of pages > 10
157
  * Fix bug of Preview button: click event fires twice
208
 
209
  == Upgrade Notice ==
210
 
211
+ = 1.2.2 =
212
+ Performance optimization for pagination request. Add translation file (.po)
213
+
214
  = 1.2.1 =
215
  Fix pagination bug if number of pages > 10. Fix bug of Preview button: click event fires twice. Enable other user roles (Editor, Author, Contributor) to see Content Views menu and manage Views
216
 
content-views.php CHANGED
@@ -10,7 +10,7 @@
10
  * Plugin Name: Content Views
11
  * Plugin URI: http://wordpress.org/plugins/content-views-query-and-display-post-page/
12
  * Description: Query and display <strong>posts, pages</strong> in awesome layouts (<strong>grid, scrollable list, collapsible list</strong>) easier than ever, without coding!
13
- * Version: 1.2.1
14
  * Author: Palace Of Themes
15
  * Author URI: http://profiles.wordpress.org/pt-guy
16
  * Text Domain: content-views
@@ -27,7 +27,7 @@ if ( ! defined( 'WPINC' ) ) {
27
  /*
28
  * Define Constant
29
  */
30
- define( 'PT_CV_VERSION', '1.2.1' );
31
  define( 'PT_CV_FILE', __FILE__ );
32
  include_once( plugin_dir_path( __FILE__ ) . 'includes/defines.php' );
33
 
10
  * Plugin Name: Content Views
11
  * Plugin URI: http://wordpress.org/plugins/content-views-query-and-display-post-page/
12
  * Description: Query and display <strong>posts, pages</strong> in awesome layouts (<strong>grid, scrollable list, collapsible list</strong>) easier than ever, without coding!
13
+ * Version: 1.2.2
14
  * Author: Palace Of Themes
15
  * Author URI: http://profiles.wordpress.org/pt-guy
16
  * Text Domain: content-views
27
  /*
28
  * Define Constant
29
  */
30
+ define( 'PT_CV_VERSION', '1.2.2' );
31
  define( 'PT_CV_FILE', __FILE__ );
32
  include_once( plugin_dir_path( __FILE__ ) . 'includes/defines.php' );
33
 
includes/functions.php CHANGED
@@ -407,11 +407,20 @@ if ( ! class_exists( 'PT_CV_Functions' ) ) {
407
  */
408
  static function view_process_settings( $id, $settings, $pargs = array() ) {
409
  if ( ! $settings ) {
410
- return '';
411
  }
412
 
 
 
 
 
 
 
 
 
413
  // Escaped value appropriate for use in a SQL query
414
  global $pt_view_settings;
 
415
  $pt_view_settings = array();
416
  foreach ( $settings as $key => $value ) {
417
  $pt_view_settings[$key] = esc_sql( $value );
@@ -421,65 +430,99 @@ if ( ! class_exists( 'PT_CV_Functions' ) ) {
421
  global $pt_content_type;
422
  $pt_content_type = $content_type = PT_CV_Functions::setting_value( PT_CV_PREFIX . 'content-type', $pt_view_settings );
423
 
424
- /**
425
- * Get Query parameters
426
- * Set default values
427
- */
428
- $args = $default_args = array(
429
- 'post_type' => $content_type,
430
- 'post_status' => 'publish',
431
- 'ignore_sticky_posts' => 1,
432
- );
433
 
434
- // Post in
435
- if ( PT_CV_Functions::setting_value( PT_CV_PREFIX . 'post__in', $pt_view_settings ) ) {
436
- $post_in = PT_CV_Functions::string_to_array( PT_CV_Functions::setting_value( PT_CV_PREFIX . 'post__in', $pt_view_settings ) );
437
- $args['post__in'] = array_map( 'intval', array_filter( $post_in ) );
 
438
  }
439
 
440
- // Post not in
441
- if ( PT_CV_Functions::setting_value( PT_CV_PREFIX . 'post__not_in', $pt_view_settings ) ) {
442
- $post_not_in = PT_CV_Functions::string_to_array( PT_CV_Functions::setting_value( PT_CV_PREFIX . 'post__not_in', $pt_view_settings ) );
443
- $args['post__not_in'] = array_map( 'intval', array_filter( $post_not_in ) );
444
  }
445
 
446
- // Parent page
447
- if ( $content_type == 'page' ) {
448
- $post_parent = PT_CV_Functions::setting_value( PT_CV_PREFIX . 'post_parent', $pt_view_settings );
449
- if ( ! empty( $post_parent ) ) {
450
- $args['post_parent'] = (int) $post_parent;
451
- }
 
 
 
452
  }
453
 
454
- // Advance settings
455
- PT_CV_Functions::view_get_advanced_settings( $args, $content_type );
 
 
 
 
 
 
 
 
 
456
 
457
- /**
458
- * Get Display parameters
459
- */
460
- global $dargs;
461
- $dargs = array();
462
 
463
- // Get view type
464
- $view_type = PT_CV_Functions::setting_value( PT_CV_PREFIX . 'view-type', $pt_view_settings );
 
 
 
465
 
466
- $dargs['view-type'] = $view_type;
 
 
 
 
 
 
467
 
468
- // Field settings of a item
469
- PT_CV_Functions::view_get_display_settings( $dargs );
470
 
471
- // Pagination settings
472
- PT_CV_Functions::view_get_pagination_settings( $dargs, $args, $pargs );
 
 
473
 
474
- // Other settings
475
- PT_CV_Functions::view_get_other_settings( $dargs );
476
 
477
- // View type settings
478
- $dargs['view-type-settings'] = PT_CV_Functions::settings_values_by_prefix( PT_CV_PREFIX . $view_type . '-' );
479
 
480
- $dargs = apply_filters( PT_CV_PREFIX_ . 'all_display_settings', $dargs );
 
481
 
482
- // Validate settings before processing, if some required parameters are missing, show error and exit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
483
  $error = apply_filters( PT_CV_PREFIX_ . 'validate_settings', array(), $args );
484
 
485
  // Return error message
@@ -495,8 +538,6 @@ if ( ! class_exists( 'PT_CV_Functions' ) ) {
495
  $content_items = array();
496
 
497
  // The Query
498
- $args = apply_filters( PT_CV_PREFIX_ . 'query_parameters', $args );
499
-
500
  do_action( PT_CV_PREFIX_ . 'before_query' );
501
 
502
  $pt_query = new WP_Query( $args );
@@ -530,7 +571,7 @@ if ( ! class_exists( 'PT_CV_Functions' ) ) {
530
  * Output Pagination
531
  */
532
  $current_page = ( isset( $pargs['page'] ) && $pargs['page'] > 1 ) ? $pargs['page'] : 1;
533
- $html = PT_CV_Html::content_items_wrap( $content_items, $current_page, $args['posts_per_page'] );
534
 
535
  // Append Pagination HTML if this is first page, or not Ajax calling
536
  if ( $args['posts_per_page'] > 0 && $current_page === 1 ) {
@@ -543,7 +584,7 @@ if ( ! class_exists( 'PT_CV_Functions' ) ) {
543
  // Total number of pages
544
  $max_num_pages = ceil( $total_items / $args['posts_per_page'] );
545
 
546
- $html .= "\n" . PT_CV_Html::pagination_output( $max_num_pages, $id );
547
  }
548
 
549
  return $html;
@@ -928,12 +969,18 @@ if ( ! class_exists( 'PT_CV_Functions' ) ) {
928
  */
929
  static function view_output( $atts, $content = '' ) {
930
  $atts = shortcode_atts(
931
- array(
932
- 'id' => 0,
 
 
 
933
  ),
934
  $atts
935
  );
936
 
 
 
 
937
  // View meta id
938
  $id = esc_sql( $atts['id'] );
939
 
@@ -996,26 +1043,24 @@ if ( ! class_exists( 'PT_CV_Functions' ) ) {
996
  // Validate request
997
  check_ajax_referer( PT_CV_PREFIX_ . 'ajax_nonce', 'ajax_nonce' );
998
 
999
- // View meta id
1000
  $id = esc_sql( $_POST['id'] );
1001
 
1002
- if ( empty( $id ) ) {
1003
- // Get saved $settings
1004
- session_start();
1005
- if ( isset( $_SESSION[PT_CV_PREFIX . 'settings'] ) ) {
1006
- $settings = $_SESSION[PT_CV_PREFIX . 'settings'];
1007
- } else {
1008
- $settings = '';
1009
- }
1010
  } else {
1011
- // Get View settings
1012
- $settings = PT_CV_Functions::view_get_settings( $id );
1013
  }
 
1014
  // Pagination settings
1015
- $pargs = array( 'page' => (int) esc_sql( $_POST['page'] ) );
1016
 
1017
  // Show View output
1018
- echo balanceTags( PT_CV_Functions::view_process_settings( $id, $settings, $pargs ) );
1019
 
1020
  // Must exit
1021
  die;
407
  */
408
  static function view_process_settings( $id, $settings, $pargs = array() ) {
409
  if ( ! $settings ) {
410
+ return __( 'Empty settings', PT_CV_DOMAIN );
411
  }
412
 
413
+ if ( ! isset( $_SESSION ) ) {
414
+ session_start();
415
+ }
416
+
417
+ $post_fix = empty( $id ) ? '' : '_frontend';
418
+
419
+ $_SESSION[PT_CV_PREFIX . 'settings' . $post_fix] = $settings;
420
+
421
  // Escaped value appropriate for use in a SQL query
422
  global $pt_view_settings;
423
+
424
  $pt_view_settings = array();
425
  foreach ( $settings as $key => $value ) {
426
  $pt_view_settings[$key] = esc_sql( $value );
430
  global $pt_content_type;
431
  $pt_content_type = $content_type = PT_CV_Functions::setting_value( PT_CV_PREFIX . 'content-type', $pt_view_settings );
432
 
433
+ // Get view type
434
+ $view_type = PT_CV_Functions::setting_value( PT_CV_PREFIX . 'view-type', $pt_view_settings );
 
 
 
 
 
 
 
435
 
436
+ // Store Display settings
437
+ global $dargs;
438
+
439
+ if ( $pargs && isset( $pargs['session_id'] ) ) {
440
+ $unique_id = $pargs['session_id'];
441
  }
442
 
443
+ if ( empty( $unique_id ) ) {
444
+ $unique_id = PT_CV_Functions::string_random();
 
 
445
  }
446
 
447
+ if ( $unique_id ) {
448
+
449
+ $session_data = array_merge(
450
+ array( '$args' => '', '$dargs' => '' ),
451
+ isset( $_SESSION[PT_CV_PREFIX . 'view_' . $unique_id] ) ? (array) $_SESSION[PT_CV_PREFIX . 'view_' . $unique_id] : array()
452
+ );
453
+
454
+ $args = $session_data['$args'];
455
+ $dargs = $session_data['$dargs'];
456
  }
457
 
458
+ if ( empty( $args ) || empty( $dargs ) )
459
+ {
460
+ /**
461
+ * Get Query parameters
462
+ * Set default values
463
+ */
464
+ $args = array(
465
+ 'post_type' => $content_type,
466
+ 'post_status' => 'publish',
467
+ 'ignore_sticky_posts' => 1,
468
+ );
469
 
470
+ // Post in
471
+ if ( PT_CV_Functions::setting_value( PT_CV_PREFIX . 'post__in', $pt_view_settings ) ) {
472
+ $post_in = PT_CV_Functions::string_to_array( PT_CV_Functions::setting_value( PT_CV_PREFIX . 'post__in', $pt_view_settings ) );
473
+ $args['post__in'] = array_map( 'intval', array_filter( $post_in ) );
474
+ }
475
 
476
+ // Post not in
477
+ if ( PT_CV_Functions::setting_value( PT_CV_PREFIX . 'post__not_in', $pt_view_settings ) ) {
478
+ $post_not_in = PT_CV_Functions::string_to_array( PT_CV_Functions::setting_value( PT_CV_PREFIX . 'post__not_in', $pt_view_settings ) );
479
+ $args['post__not_in'] = array_map( 'intval', array_filter( $post_not_in ) );
480
+ }
481
 
482
+ // Parent page
483
+ if ( $content_type == 'page' ) {
484
+ $post_parent = PT_CV_Functions::setting_value( PT_CV_PREFIX . 'post_parent', $pt_view_settings );
485
+ if ( ! empty( $post_parent ) ) {
486
+ $args['post_parent'] = (int) $post_parent;
487
+ }
488
+ }
489
 
490
+ // Advance settings
491
+ PT_CV_Functions::view_get_advanced_settings( $args, $content_type );
492
 
493
+ /**
494
+ * Get Display parameters
495
+ */
496
+ $dargs = array();
497
 
498
+ $dargs['view-type'] = $view_type;
 
499
 
500
+ // Field settings of a item
501
+ PT_CV_Functions::view_get_display_settings( $dargs );
502
 
503
+ // Other settings
504
+ PT_CV_Functions::view_get_other_settings( $dargs );
505
 
506
+ // View type settings
507
+ $dargs['view-type-settings'] = PT_CV_Functions::settings_values_by_prefix( PT_CV_PREFIX . $view_type . '-' );
508
+
509
+ // Filter
510
+ $dargs = apply_filters( PT_CV_PREFIX_ . 'all_display_settings', $dargs );
511
+ $args = apply_filters( PT_CV_PREFIX_ . 'query_parameters', $args );
512
+
513
+ // Save settings
514
+ if ( ! empty( $unique_id ) ) {
515
+ $_SESSION[PT_CV_PREFIX . 'view_' . $unique_id] = array(
516
+ '$args' => $args,
517
+ '$dargs' => $dargs,
518
+ );
519
+ }
520
+ }
521
+
522
+ // Pagination settings
523
+ PT_CV_Functions::view_get_pagination_settings( $dargs, $args, $pargs );
524
+
525
+ // Validate settings, if some required parameters are missing, show error and exit
526
  $error = apply_filters( PT_CV_PREFIX_ . 'validate_settings', array(), $args );
527
 
528
  // Return error message
538
  $content_items = array();
539
 
540
  // The Query
 
 
541
  do_action( PT_CV_PREFIX_ . 'before_query' );
542
 
543
  $pt_query = new WP_Query( $args );
571
  * Output Pagination
572
  */
573
  $current_page = ( isset( $pargs['page'] ) && $pargs['page'] > 1 ) ? $pargs['page'] : 1;
574
+ $html = PT_CV_Html::content_items_wrap( $content_items, $current_page, $args['posts_per_page'], $id );
575
 
576
  // Append Pagination HTML if this is first page, or not Ajax calling
577
  if ( $args['posts_per_page'] > 0 && $current_page === 1 ) {
584
  // Total number of pages
585
  $max_num_pages = ceil( $total_items / $args['posts_per_page'] );
586
 
587
+ $html .= "\n" . PT_CV_Html::pagination_output( $max_num_pages, $unique_id );
588
  }
589
 
590
  return $html;
969
  */
970
  static function view_output( $atts, $content = '' ) {
971
  $atts = shortcode_atts(
972
+ apply_filters(
973
+ PT_CV_PREFIX_ . 'shortcode_params',
974
+ array(
975
+ 'id' => 0,
976
+ )
977
  ),
978
  $atts
979
  );
980
 
981
+ global $pt_cv_shortcode_params;
982
+ $pt_cv_shortcode_params = $atts;
983
+
984
  // View meta id
985
  $id = esc_sql( $atts['id'] );
986
 
1043
  // Validate request
1044
  check_ajax_referer( PT_CV_PREFIX_ . 'ajax_nonce', 'ajax_nonce' );
1045
 
1046
+ // Session id
1047
  $id = esc_sql( $_POST['id'] );
1048
 
1049
+ $post_fix = empty( $id ) ? '' : '_frontend';
1050
+
1051
+ // Get saved $settings
1052
+ session_start();
1053
+ if ( isset( $_SESSION[PT_CV_PREFIX . 'settings' . $post_fix] ) ) {
1054
+ $settings = $_SESSION[PT_CV_PREFIX . 'settings' . $post_fix];
 
 
1055
  } else {
1056
+ $settings = '';
 
1057
  }
1058
+
1059
  // Pagination settings
1060
+ $pargs = array( 'session_id' => $id , 'page' => (int) esc_sql( $_POST['page'] ) );
1061
 
1062
  // Show View output
1063
+ echo balanceTags( PT_CV_Functions::view_process_settings( null, $settings, $pargs ) );
1064
 
1065
  // Must exit
1066
  die;
includes/html.php CHANGED
@@ -245,10 +245,11 @@ if ( ! class_exists( 'PT_CV_Html' ) ) {
245
  * @param array $content_items The array of Raw HTML output (is not wrapped) of each item
246
  * @param int $current_page The current page
247
  * @param int $post_per_page The number of posts per page
 
248
  *
249
  * @return string Full HTML output for Content View
250
  */
251
- static function content_items_wrap( $content_items, $current_page, $post_per_page ) {
252
  global $dargs;
253
 
254
  if ( empty( $content_items ) ) {
@@ -318,7 +319,7 @@ if ( ! class_exists( 'PT_CV_Html' ) ) {
318
  $view_class = apply_filters( PT_CV_PREFIX_ . 'view_class', array( PT_CV_PREFIX . 'view', PT_CV_PREFIX . $view_type ) );
319
 
320
  // ID for the wrapper
321
- $view_id = PT_CV_PREFIX . 'view-' . PT_CV_Functions::string_random();
322
 
323
  $output = sprintf( '<div class="%s" id="%s" %s>%s</div>', esc_attr( implode( ' ', array_filter( $view_class ) ) ), esc_attr( $view_id ), $page_attr, $html );
324
 
245
  * @param array $content_items The array of Raw HTML output (is not wrapped) of each item
246
  * @param int $current_page The current page
247
  * @param int $post_per_page The number of posts per page
248
+ * @param int $id ID of View
249
  *
250
  * @return string Full HTML output for Content View
251
  */
252
+ static function content_items_wrap( $content_items, $current_page, $post_per_page, $id ) {
253
  global $dargs;
254
 
255
  if ( empty( $content_items ) ) {
319
  $view_class = apply_filters( PT_CV_PREFIX_ . 'view_class', array( PT_CV_PREFIX . 'view', PT_CV_PREFIX . $view_type ) );
320
 
321
  // ID for the wrapper
322
+ $view_id = PT_CV_PREFIX . 'view-' . $id;
323
 
324
  $output = sprintf( '<div class="%s" id="%s" %s>%s</div>', esc_attr( implode( ' ', array_filter( $view_class ) ) ), esc_attr( $view_id ), $page_attr, $html );
325
 
languages/content-views.po ADDED
@@ -0,0 +1,631 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Content Views\n"
4
+ "POT-Creation-Date: 2014-07-01 23:54+0700\n"
5
+ "PO-Revision-Date: 2014-07-01 23:56+0700\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: PT Guy <support@contentviewspro.com>\n"
8
+ "Language: en_US\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.7\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-SearchPath-0: pt-"
17
+ "content-views\n"
18
+
19
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:237
20
+ msgid "There is no taxonomy for selected content type"
21
+ msgstr ""
22
+
23
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:238
24
+ msgid "Pagination is disabled when Limit = -1"
25
+ msgstr ""
26
+
27
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:239
28
+ msgid "Opening a link is prevented in preview box"
29
+ msgstr ""
30
+
31
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:243
32
+ #: content-views-query-and-display-post-page/admin/views/view.php:74
33
+ msgid "Show Preview"
34
+ msgstr ""
35
+
36
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:244
37
+ msgid "Hide Preview"
38
+ msgstr ""
39
+
40
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:245
41
+ msgid "Update Preview"
42
+ msgstr ""
43
+
44
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:283
45
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:284
46
+ msgid "Content View Settings"
47
+ msgstr ""
48
+
49
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:294
50
+ msgid "All Content Views"
51
+ msgstr ""
52
+
53
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:295
54
+ #: content-views-query-and-display-post-page/public/content-views.php:256
55
+ msgid "All Views"
56
+ msgstr ""
57
+
58
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:302
59
+ #: content-views-query-and-display-post-page/public/content-views.php:252
60
+ msgid "Add New View"
61
+ msgstr ""
62
+
63
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:303
64
+ msgid "Add New"
65
+ msgstr ""
66
+
67
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:342
68
+ #: content-views-query-and-display-post-page/admin/includes/options.php:344
69
+ msgid "Settings"
70
+ msgstr ""
71
+
72
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:343
73
+ msgid "Add View"
74
+ msgstr ""
75
+
76
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:379
77
+ msgid "Edit this item"
78
+ msgstr ""
79
+
80
+ #: content-views-query-and-display-post-page/admin/content-views-admin.php:379
81
+ msgid "Edit"
82
+ msgstr ""
83
+
84
+ #: content-views-query-and-display-post-page/admin/includes/options.php:273
85
+ #: content-views-query-and-display-post-page/includes/settings.php:752
86
+ msgid "There is no option"
87
+ msgstr ""
88
+
89
+ #: content-views-query-and-display-post-page/admin/includes/plugin.php:107
90
+ msgid "Frontend assets"
91
+ msgstr ""
92
+
93
+ #: content-views-query-and-display-post-page/admin/includes/plugin.php:161
94
+ msgid "Don't load Bootstrap style & script in frontend of website"
95
+ msgstr ""
96
+
97
+ #: content-views-query-and-display-post-page/admin/views/view.php:43
98
+ #: content-views-query-and-display-post-page/public/content-views.php:254
99
+ msgid "Edit View"
100
+ msgstr ""
101
+
102
+ #: content-views-query-and-display-post-page/admin/views/view.php:57
103
+ msgid "Preview"
104
+ msgstr ""
105
+
106
+ #: content-views-query-and-display-post-page/admin/views/view.php:64
107
+ msgid ""
108
+ "Click \"Show Preview\" or \"Update Preview\" button to show, \"Hide Preview"
109
+ "\" button to hide the output"
110
+ msgstr ""
111
+
112
+ #: content-views-query-and-display-post-page/admin/views/view.php:98
113
+ msgid "View title"
114
+ msgstr ""
115
+
116
+ #: content-views-query-and-display-post-page/admin/views/view.php:105
117
+ msgid "Enter a name to identify your views easily"
118
+ msgstr ""
119
+
120
+ #: content-views-query-and-display-post-page/admin/views/view.php:115
121
+ #: content-views-query-and-display-post-page/admin/views/view.php:569
122
+ msgid "Save"
123
+ msgstr ""
124
+
125
+ #: content-views-query-and-display-post-page/admin/views/view.php:120
126
+ #: content-views-query-and-display-post-page/includes/hooks.php:53
127
+ msgid "Filter Settings"
128
+ msgstr ""
129
+
130
+ #: content-views-query-and-display-post-page/admin/views/view.php:123
131
+ #: content-views-query-and-display-post-page/includes/hooks.php:54
132
+ msgid "Display Settings"
133
+ msgstr ""
134
+
135
+ #: content-views-query-and-display-post-page/admin/views/view.php:135
136
+ #: content-views-query-and-display-post-page/includes/hooks.php:64
137
+ msgid "Content type"
138
+ msgstr ""
139
+
140
+ #: content-views-query-and-display-post-page/admin/views/view.php:152
141
+ msgid "Common filters"
142
+ msgstr ""
143
+
144
+ #: content-views-query-and-display-post-page/admin/views/view.php:167
145
+ msgid "In list"
146
+ msgstr ""
147
+
148
+ #: content-views-query-and-display-post-page/admin/views/view.php:174
149
+ msgid "List of ids (comma-separated values) of posts to retrieve"
150
+ msgstr ""
151
+
152
+ #: content-views-query-and-display-post-page/admin/views/view.php:182
153
+ msgid "Excludes"
154
+ msgstr ""
155
+
156
+ #: content-views-query-and-display-post-page/admin/views/view.php:189
157
+ msgid "List of ids (comma-separated values) of posts to exclude from view"
158
+ msgstr ""
159
+
160
+ #: content-views-query-and-display-post-page/admin/views/view.php:197
161
+ msgid "Parent page"
162
+ msgstr ""
163
+
164
+ #: content-views-query-and-display-post-page/admin/views/view.php:204
165
+ msgid "Enter ID of parent page to query child pages"
166
+ msgstr ""
167
+
168
+ #: content-views-query-and-display-post-page/admin/views/view.php:213
169
+ msgid "Limit"
170
+ msgstr ""
171
+
172
+ #: content-views-query-and-display-post-page/admin/views/view.php:221
173
+ msgid ""
174
+ "The number of posts to show. Leaving it blank to show all found posts (which "
175
+ "match all settings)"
176
+ msgstr ""
177
+
178
+ #: content-views-query-and-display-post-page/admin/views/view.php:235
179
+ msgid "Advanced filters"
180
+ msgstr ""
181
+
182
+ #: content-views-query-and-display-post-page/admin/views/view.php:291
183
+ msgid "Written by"
184
+ msgstr ""
185
+
186
+ #: content-views-query-and-display-post-page/admin/views/view.php:307
187
+ msgid "Not written by"
188
+ msgstr ""
189
+
190
+ #: content-views-query-and-display-post-page/admin/views/view.php:328
191
+ msgid "Taxonomies"
192
+ msgstr ""
193
+
194
+ #: content-views-query-and-display-post-page/admin/views/view.php:337
195
+ msgid "Select checkbox of taxonomies to filter posts by their terms"
196
+ msgstr ""
197
+
198
+ #: content-views-query-and-display-post-page/admin/views/view.php:345
199
+ msgid "Terms"
200
+ msgstr ""
201
+
202
+ #: content-views-query-and-display-post-page/admin/views/view.php:367
203
+ msgid "Relation"
204
+ msgstr ""
205
+
206
+ #: content-views-query-and-display-post-page/admin/views/view.php:376
207
+ msgid ""
208
+ "Select AND to show posts which match ALL settings of selected taxonomies[--"
209
+ "br--]Select OR to show posts which match settings of at least one selected "
210
+ "taxonomy"
211
+ msgstr ""
212
+
213
+ #: content-views-query-and-display-post-page/admin/views/view.php:386
214
+ #: content-views-query-and-display-post-page/includes/settings.php:112
215
+ msgid "Order by"
216
+ msgstr ""
217
+
218
+ #: content-views-query-and-display-post-page/admin/views/view.php:409
219
+ #: content-views-query-and-display-post-page/includes/values.php:217
220
+ msgid "Status"
221
+ msgstr ""
222
+
223
+ #: content-views-query-and-display-post-page/admin/views/view.php:419
224
+ msgid "Select status of posts"
225
+ msgstr ""
226
+
227
+ #: content-views-query-and-display-post-page/admin/views/view.php:429
228
+ msgid "Keyword"
229
+ msgstr ""
230
+
231
+ #: content-views-query-and-display-post-page/admin/views/view.php:436
232
+ msgid "Enter the keyword to searching for posts"
233
+ msgstr ""
234
+
235
+ #: content-views-query-and-display-post-page/admin/views/view.php:459
236
+ #: content-views-query-and-display-post-page/includes/hooks.php:73
237
+ msgid "View type"
238
+ msgstr ""
239
+
240
+ #: content-views-query-and-display-post-page/admin/views/view.php:474
241
+ #: content-views-query-and-display-post-page/includes/hooks.php:108
242
+ msgid "View type settings"
243
+ msgstr ""
244
+
245
+ #: content-views-query-and-display-post-page/admin/views/view.php:492
246
+ #: content-views-query-and-display-post-page/includes/hooks.php:78
247
+ msgid "Layout format of an output item"
248
+ msgstr ""
249
+
250
+ #: content-views-query-and-display-post-page/admin/views/view.php:507
251
+ #: content-views-query-and-display-post-page/includes/hooks.php:83
252
+ #: content-views-query-and-display-post-page/includes/hooks.php:90
253
+ msgid "Fields settings"
254
+ msgstr ""
255
+
256
+ #: content-views-query-and-display-post-page/admin/views/view.php:525
257
+ #: content-views-query-and-display-post-page/includes/hooks.php:97
258
+ msgid "Pagination settings"
259
+ msgstr ""
260
+
261
+ #: content-views-query-and-display-post-page/admin/views/view.php:543
262
+ msgid "Other settings"
263
+ msgstr ""
264
+
265
+ #: content-views-query-and-display-post-page/includes/functions.php:259
266
+ msgid "View all posts in"
267
+ msgstr ""
268
+
269
+ #: content-views-query-and-display-post-page/includes/functions.php:311
270
+ #: content-views-query-and-display-post-page/includes/html.php:380
271
+ msgid "(no title)"
272
+ msgstr ""
273
+
274
+ #: content-views-query-and-display-post-page/includes/functions.php:371
275
+ msgid "Sorry, your nonce did not verify."
276
+ msgstr ""
277
+
278
+ #: content-views-query-and-display-post-page/includes/functions.php:410
279
+ msgid "Empty settings"
280
+ msgstr ""
281
+
282
+ #: content-views-query-and-display-post-page/includes/functions.php:561
283
+ msgid "No post found"
284
+ msgstr ""
285
+
286
+ #: content-views-query-and-display-post-page/includes/hooks.php:49
287
+ msgid "Please select an option in : "
288
+ msgstr ""
289
+
290
+ #: content-views-query-and-display-post-page/includes/hooks.php:50
291
+ msgid "Please set value in : "
292
+ msgstr ""
293
+
294
+ #: content-views-query-and-display-post-page/includes/hooks.php:83
295
+ #: content-views-query-and-display-post-page/includes/settings.php:252
296
+ msgid "Fields display"
297
+ msgstr ""
298
+
299
+ #: content-views-query-and-display-post-page/includes/hooks.php:90
300
+ #: content-views-query-and-display-post-page/includes/settings.php:312
301
+ msgid "Content settings"
302
+ msgstr ""
303
+
304
+ #: content-views-query-and-display-post-page/includes/hooks.php:90
305
+ #: content-views-query-and-display-post-page/includes/settings.php:347
306
+ msgid "Excerpt length"
307
+ msgstr ""
308
+
309
+ #: content-views-query-and-display-post-page/includes/hooks.php:97
310
+ #: content-views-query-and-display-post-page/includes/settings.php:173
311
+ msgid "Items per page"
312
+ msgstr ""
313
+
314
+ #: content-views-query-and-display-post-page/includes/hooks.php:108
315
+ #: content-views-query-and-display-post-page/includes/settings.php:678
316
+ msgid "Items per row"
317
+ msgstr ""
318
+
319
+ #: content-views-query-and-display-post-page/includes/html.php:89
320
+ msgid "Click to toggle"
321
+ msgstr ""
322
+
323
+ #: content-views-query-and-display-post-page/includes/html.php:128
324
+ msgid "loading"
325
+ msgstr ""
326
+
327
+ #: content-views-query-and-display-post-page/includes/html.php:411
328
+ msgid "Read More"
329
+ msgstr ""
330
+
331
+ #: content-views-query-and-display-post-page/includes/html.php:563
332
+ msgid "in"
333
+ msgstr ""
334
+
335
+ #: content-views-query-and-display-post-page/includes/html.php:574
336
+ msgid "Leave a comment"
337
+ msgstr ""
338
+
339
+ #: content-views-query-and-display-post-page/includes/html.php:574
340
+ msgid "1 Comment"
341
+ msgstr ""
342
+
343
+ #: content-views-query-and-display-post-page/includes/html.php:574
344
+ msgid "% Comments"
345
+ msgstr ""
346
+
347
+ #: content-views-query-and-display-post-page/includes/html.php:585
348
+ msgid "by"
349
+ msgstr ""
350
+
351
+ #: content-views-query-and-display-post-page/includes/settings.php:44
352
+ msgid "In "
353
+ msgstr ""
354
+
355
+ #: content-views-query-and-display-post-page/includes/settings.php:80
356
+ msgid "Not in "
357
+ msgstr ""
358
+
359
+ #: content-views-query-and-display-post-page/includes/settings.php:126
360
+ msgid "Order"
361
+ msgstr ""
362
+
363
+ #: content-views-query-and-display-post-page/includes/settings.php:158
364
+ msgid "Pagination"
365
+ msgstr ""
366
+
367
+ #: content-views-query-and-display-post-page/includes/settings.php:164
368
+ msgid "Enable"
369
+ msgstr ""
370
+
371
+ #: content-views-query-and-display-post-page/includes/settings.php:181
372
+ msgid ""
373
+ "The number of items per page. If value of Limit option is not blank (empty), "
374
+ "this value should be smaller than Limit value"
375
+ msgstr ""
376
+
377
+ #: content-views-query-and-display-post-page/includes/settings.php:190
378
+ msgid "Pagination style"
379
+ msgstr ""
380
+
381
+ #: content-views-query-and-display-post-page/includes/settings.php:220
382
+ msgid "Open item in"
383
+ msgstr ""
384
+
385
+ #: content-views-query-and-display-post-page/includes/settings.php:228
386
+ msgid "How to open an item when click on Title or Thumbnail"
387
+ msgstr ""
388
+
389
+ #: content-views-query-and-display-post-page/includes/settings.php:270
390
+ msgid "Thumbnail settings"
391
+ msgstr ""
392
+
393
+ #: content-views-query-and-display-post-page/includes/settings.php:289
394
+ msgid "Meta fields settings"
395
+ msgstr ""
396
+
397
+ #: content-views-query-and-display-post-page/includes/settings.php:319
398
+ msgid "Show Full Content"
399
+ msgstr ""
400
+
401
+ #: content-views-query-and-display-post-page/includes/settings.php:320
402
+ msgid "Show Excerpt"
403
+ msgstr ""
404
+
405
+ #: content-views-query-and-display-post-page/includes/settings.php:360
406
+ msgid "The number of words in excerpt"
407
+ msgstr ""
408
+
409
+ #: content-views-query-and-display-post-page/includes/settings.php:425
410
+ msgid "Thumbnail position"
411
+ msgstr ""
412
+
413
+ #: content-views-query-and-display-post-page/includes/settings.php:458
414
+ msgid "Show Thumbnail"
415
+ msgstr ""
416
+
417
+ #: content-views-query-and-display-post-page/includes/settings.php:479
418
+ msgid "Show Title"
419
+ msgstr ""
420
+
421
+ #: content-views-query-and-display-post-page/includes/settings.php:501
422
+ msgid "Show Content"
423
+ msgstr ""
424
+
425
+ #: content-views-query-and-display-post-page/includes/settings.php:521
426
+ msgid "Show Meta Fields"
427
+ msgstr ""
428
+
429
+ #: content-views-query-and-display-post-page/includes/settings.php:546
430
+ msgid "Thumbnail size"
431
+ msgstr ""
432
+
433
+ #: content-views-query-and-display-post-page/includes/settings.php:590
434
+ msgid "Show Date"
435
+ msgstr ""
436
+
437
+ #: content-views-query-and-display-post-page/includes/settings.php:610
438
+ msgid "Show Author"
439
+ msgstr ""
440
+
441
+ #: content-views-query-and-display-post-page/includes/settings.php:630
442
+ msgid "Show Taxonomies (categories, tags...)"
443
+ msgstr ""
444
+
445
+ #: content-views-query-and-display-post-page/includes/settings.php:651
446
+ msgid "Show Comment Count"
447
+ msgstr ""
448
+
449
+ #: content-views-query-and-display-post-page/includes/settings.php:685
450
+ msgid "The number of items on each row of grid"
451
+ msgstr ""
452
+
453
+ #: content-views-query-and-display-post-page/includes/values.php:72
454
+ msgid "AND"
455
+ msgstr ""
456
+
457
+ #: content-views-query-and-display-post-page/includes/values.php:73
458
+ msgid "OR"
459
+ msgstr ""
460
+
461
+ #: content-views-query-and-display-post-page/includes/values.php:144
462
+ msgid "Yes"
463
+ msgstr ""
464
+
465
+ #: content-views-query-and-display-post-page/includes/values.php:145
466
+ msgid "No"
467
+ msgstr ""
468
+
469
+ #: content-views-query-and-display-post-page/includes/values.php:161
470
+ msgid "Show"
471
+ msgstr ""
472
+
473
+ #: content-views-query-and-display-post-page/includes/values.php:162
474
+ msgid "Hide"
475
+ msgstr ""
476
+
477
+ #: content-views-query-and-display-post-page/includes/values.php:173
478
+ msgid "Regular pagination"
479
+ msgstr ""
480
+
481
+ #: content-views-query-and-display-post-page/includes/values.php:188
482
+ msgid "ASC"
483
+ msgstr ""
484
+
485
+ #: content-views-query-and-display-post-page/includes/values.php:189
486
+ msgid "DESC"
487
+ msgstr ""
488
+
489
+ #: content-views-query-and-display-post-page/includes/values.php:198
490
+ msgid "Publish"
491
+ msgstr ""
492
+
493
+ #: content-views-query-and-display-post-page/includes/values.php:199
494
+ msgid "Pending"
495
+ msgstr ""
496
+
497
+ #: content-views-query-and-display-post-page/includes/values.php:200
498
+ msgid "Draft"
499
+ msgstr ""
500
+
501
+ #: content-views-query-and-display-post-page/includes/values.php:201
502
+ msgid "Auto draft"
503
+ msgstr ""
504
+
505
+ #: content-views-query-and-display-post-page/includes/values.php:202
506
+ msgid "Future"
507
+ msgstr ""
508
+
509
+ #: content-views-query-and-display-post-page/includes/values.php:203
510
+ msgid "Private"
511
+ msgstr ""
512
+
513
+ #: content-views-query-and-display-post-page/includes/values.php:204
514
+ msgid "Inherit"
515
+ msgstr ""
516
+
517
+ #: content-views-query-and-display-post-page/includes/values.php:205
518
+ msgid "Trash"
519
+ msgstr ""
520
+
521
+ #: content-views-query-and-display-post-page/includes/values.php:216
522
+ msgid "Author"
523
+ msgstr ""
524
+
525
+ #: content-views-query-and-display-post-page/includes/values.php:218
526
+ msgid "Taxonomy"
527
+ msgstr ""
528
+
529
+ #: content-views-query-and-display-post-page/includes/values.php:219
530
+ msgid "Search"
531
+ msgstr ""
532
+
533
+ #: content-views-query-and-display-post-page/includes/values.php:220
534
+ msgid "Order & Orderby"
535
+ msgstr ""
536
+
537
+ #: content-views-query-and-display-post-page/includes/values.php:233
538
+ #: content-views-query-and-display-post-page/includes/values.php:268
539
+ msgid "&mdash; Select &mdash;"
540
+ msgstr ""
541
+
542
+ #: content-views-query-and-display-post-page/includes/values.php:269
543
+ msgid "ID"
544
+ msgstr ""
545
+
546
+ #: content-views-query-and-display-post-page/includes/values.php:270
547
+ msgid "Title"
548
+ msgstr ""
549
+
550
+ #: content-views-query-and-display-post-page/includes/values.php:271
551
+ msgid "Created date"
552
+ msgstr ""
553
+
554
+ #: content-views-query-and-display-post-page/includes/values.php:272
555
+ msgid "Modified date"
556
+ msgstr ""
557
+
558
+ #: content-views-query-and-display-post-page/includes/values.php:288
559
+ msgid "Grid"
560
+ msgstr ""
561
+
562
+ #: content-views-query-and-display-post-page/includes/values.php:289
563
+ msgid "Collapsible List"
564
+ msgstr ""
565
+
566
+ #: content-views-query-and-display-post-page/includes/values.php:290
567
+ msgid "Scrollable List"
568
+ msgstr ""
569
+
570
+ #: content-views-query-and-display-post-page/includes/values.php:329
571
+ msgid ""
572
+ "1 column &#8212; All fields inside an output item are shown in one column"
573
+ msgstr ""
574
+
575
+ #: content-views-query-and-display-post-page/includes/values.php:330
576
+ msgid "2 columns &#8212; Show thumbnail on the left/right side of other fields"
577
+ msgstr ""
578
+
579
+ #: content-views-query-and-display-post-page/includes/values.php:344
580
+ msgid "New tab"
581
+ msgstr ""
582
+
583
+ #: content-views-query-and-display-post-page/includes/values.php:345
584
+ msgid "Current tab"
585
+ msgstr ""
586
+
587
+ #: content-views-query-and-display-post-page/includes/values.php:390
588
+ msgid "Original resolution (But resize automatically to fit its container)"
589
+ msgstr ""
590
+
591
+ #: content-views-query-and-display-post-page/includes/values.php:413
592
+ msgid "Top"
593
+ msgstr ""
594
+
595
+ #: content-views-query-and-display-post-page/includes/values.php:414
596
+ #: content-views-query-and-display-post-page/includes/values.php:433
597
+ msgid "Left"
598
+ msgstr ""
599
+
600
+ #: content-views-query-and-display-post-page/includes/values.php:415
601
+ msgid "Bottom"
602
+ msgstr ""
603
+
604
+ #: content-views-query-and-display-post-page/includes/values.php:416
605
+ #: content-views-query-and-display-post-page/includes/values.php:434
606
+ msgid "Right"
607
+ msgstr ""
608
+
609
+ #: content-views-query-and-display-post-page/public/content-views.php:253
610
+ msgid "New View"
611
+ msgstr ""
612
+
613
+ #: content-views-query-and-display-post-page/public/content-views.php:255
614
+ msgid "View View"
615
+ msgstr ""
616
+
617
+ #: content-views-query-and-display-post-page/public/content-views.php:257
618
+ msgid "Search Views"
619
+ msgstr ""
620
+
621
+ #: content-views-query-and-display-post-page/public/content-views.php:258
622
+ msgid "Parent Views:"
623
+ msgstr ""
624
+
625
+ #: content-views-query-and-display-post-page/public/content-views.php:259
626
+ msgid "No views found."
627
+ msgstr ""
628
+
629
+ #: content-views-query-and-display-post-page/public/content-views.php:260
630
+ msgid "No views found in Trash."
631
+ msgstr ""
languages/plugin-name.pot DELETED
@@ -1,31 +0,0 @@
1
- # Copyright (C) 2013 TODO
2
- # This file is distributed under the same license as the TODO package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: TODO 1.0.0\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/plugins/pt-content-views\n"
7
- "POT-Creation-Date: 2013-05-10 11:23:19+00:00\n"
8
- "PO-Revision-Date: 2013-05-10 10:37-0500\n"
9
- "Last-Translator: FULL NAME <email@example.com>\n"
10
- "Language-Team: LANGUAGE <translations@example.com >\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.5.7\n"
15
- "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
16
- "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
17
- "X-Poedit-Basepath: ../\n"
18
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #: class-pt-content-views-admin.php:170
22
- msgid "Page Title"
23
- msgstr ""
24
-
25
- #: class-pt-content-views-admin.php:171
26
- msgid "Menu Text"
27
- msgstr ""
28
-
29
- #: class-pt-content-views-admin.php:197
30
- msgid "Settings"
31
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/assets/css/public.css CHANGED
@@ -95,6 +95,9 @@
95
  float: left;
96
  margin: 0 auto !important;
97
  }
 
 
 
98
  .pt-cv-spinner {
99
  display: inline-block;
100
  opacity: 0;
95
  float: left;
96
  margin: 0 auto !important;
97
  }
98
+ .pagination>li>a {
99
+ cursor: pointer;
100
+ }
101
  .pt-cv-spinner {
102
  display: inline-block;
103
  opacity: 0;