Essential Content Types - Version 1.9

Version Description

(Released: September 18, 2021) = * Bug Fixed: Security issue on ajax calls

Download this release

Release Info

Developer catchthemes
Plugin Icon Essential Content Types
Version 1.9
Comparing to
See all releases

Code changes from version 1.8.6 to 1.9

README.txt CHANGED
@@ -201,6 +201,9 @@ Not so easy way (via FTP) :
201
 
202
  == Changelog ==
203
 
 
 
 
204
  = 1.8.6 (Released: August 05, 2021) =
205
  * Bug Fixed: Deprecated - Required parameter $atts follows optional parameter
206
  * Compatibility check up to version 5.8
201
 
202
  == Changelog ==
203
 
204
+ = 1.9 (Released: September 18, 2021) =
205
+ * Bug Fixed: Security issue on ajax calls
206
+
207
  = 1.8.6 (Released: August 05, 2021) =
208
  * Bug Fixed: Deprecated - Required parameter $atts follows optional parameter
209
  * Compatibility check up to version 5.8
admin/class-essential-content-types-admin.php CHANGED
@@ -50,7 +50,7 @@ class Essential_Content_Types_Admin {
50
  public function __construct( $plugin_name, $version ) {
51
 
52
  $this->plugin_name = $plugin_name;
53
- $this->version = $version;
54
 
55
  $this->load_dependencies();
56
 
@@ -75,7 +75,7 @@ class Essential_Content_Types_Admin {
75
  private function load_dependencies() {
76
 
77
  $portfolio_options = get_option( 'ect_portfolio' );
78
- if ( isset($portfolio_options['status']) && $portfolio_options['status'] ) {
79
  /**
80
  * Load Portfolio Content Type
81
  */
@@ -83,7 +83,7 @@ class Essential_Content_Types_Admin {
83
  }
84
 
85
  $testimonial_options = get_option( 'ect_testimonial' );
86
- if ( isset($testimonial_options['status']) && $testimonial_options['status'] ) {
87
  /**
88
  * Load Testimonial Content Type
89
  */
@@ -91,7 +91,7 @@ class Essential_Content_Types_Admin {
91
  }
92
 
93
  $featured_content_options = get_option( 'ect_featured_content' );
94
- if ( isset($featured_content_options['status']) && $featured_content_options['status'] ) {
95
  /**
96
  * Load Featured Content Type
97
  */
@@ -99,7 +99,7 @@ class Essential_Content_Types_Admin {
99
  }
100
 
101
  $service_options = get_option( 'ect_service' );
102
- if ( isset($service_options['status']) && $service_options['status'] ) {
103
  /**
104
  * Load Service Type
105
  */
@@ -107,7 +107,7 @@ class Essential_Content_Types_Admin {
107
  }
108
 
109
  $food_menu_options = get_option( 'ect_food_menu' );
110
- if ( isset($food_menu_options['status']) && $food_menu_options['status'] ) {
111
  /**
112
  * Load Food Menu Type
113
  */
@@ -124,21 +124,21 @@ class Essential_Content_Types_Admin {
124
  */
125
  public function enqueue_styles( $hook_suffix ) {
126
  $allowed_pages = array(
127
- 'toplevel_page_essential-content-types' => 1,
128
- 'essential-content-types_page_ect-portfolio' => 1,
129
- 'essential-content-types_page_ect-testimonial' => 1,
130
  'essential-content-types_page_ect-featured-content' => 1,
131
- 'essential-content-types_page_ect-service' => 1,
132
- 'essential-content-types_page_ect-food-menu' => 1,
133
  );
134
 
135
- if ( ! isset( $allowed_pages[ $hook_suffix ] ) ){
136
  return;
137
  }
138
 
139
  wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/essential-content-types-admin.css', array(), $this->version, 'all' );
140
 
141
- wp_enqueue_style( $this->plugin_name.'-tabs', plugin_dir_url( __FILE__ ) . 'css/admin-dashboard.css', array(), $this->version, 'all' );
142
 
143
  }
144
 
@@ -149,22 +149,21 @@ class Essential_Content_Types_Admin {
149
  */
150
  public function enqueue_scripts( $hook_suffix ) {
151
  $allowed_pages = array(
152
- 'toplevel_page_essential-content-types' => 1,
153
- 'essential-content-types_page_ect-portfolio' => 1,
154
- 'essential-content-types_page_ect-testimonial' => 1,
155
  'essential-content-types_page_ect-featured-content' => 1,
156
- 'essential-content-types_page_ect-service' => 1,
157
- 'essential-content-types_page_ect-food-menu' => 1,
158
  );
159
 
160
- if ( ! isset( $allowed_pages[ $hook_suffix ] ) ){
161
  return;
162
  }
163
 
164
  wp_enqueue_script( 'minHeight', plugin_dir_url( __FILE__ ) . 'js/jquery.matchHeight.min.js', array( 'jquery' ), $this->version, false );
165
  wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/essential-content-types-admin.js', array( 'minHeight', 'jquery' ), $this->version, false );
166
 
167
-
168
  }
169
 
170
  /**
@@ -204,7 +203,7 @@ class Essential_Content_Types_Admin {
204
  * Dashboard Page include
205
  */
206
  function settings_page() {
207
- if ( !current_user_can( 'manage_options' ) ) {
208
  wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
209
  }
210
 
@@ -213,25 +212,32 @@ class Essential_Content_Types_Admin {
213
  }
214
 
215
  function dashboard_switch() {
216
- $value = ( 'true' == $_POST['value'] ) ? 1 : 0;
217
-
218
- $option_name = $_POST['option_name'];
219
-
220
- $option_value = get_option( $option_name );
221
-
222
- $option_value['status'] = $value;
223
-
224
- if( update_option( $option_name, $option_value ) ) {
225
- echo $value;
226
- } else {
227
- esc_html_e( 'Connection Error. Please try again.', 'essential-content-types' );
228
- }
229
-
 
 
 
 
 
 
 
230
  wp_die(); // this is required to terminate immediately and return a proper response
231
  }
232
- function add_plugin_meta_links( $meta_fields, $file ){
233
 
234
- if( ESSENTIAL_CONTENT_TYPES_BASENAME == $file ) {
235
 
236
  $meta_fields[] = "<a href='https://catchplugins.com/support-forum/forum/essential-content-type/' target='_blank'>Support Forum</a>";
237
  $meta_fields[] = "<a href='https://wordpress.org/support/plugin/essential-content-types/#reviews' target='_blank' title='Rate'>
@@ -241,16 +247,16 @@ class Essential_Content_Types_Admin {
241
  . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
242
  . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
243
  . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
244
- . "</i></a>";
245
 
246
- $stars_color = "#ffb900";
247
 
248
- echo "<style>"
249
- . ".ct-rate-stars{display:inline-block;color:" . $stars_color . ";position:relative;top:3px;}"
250
- . ".ct-rate-stars svg{fill:" . $stars_color . ";}"
251
- . ".ct-rate-stars svg:hover{fill:" . $stars_color . "}"
252
- . ".ct-rate-stars svg:hover ~ svg{fill:none;}"
253
- . "</style>";
254
  }
255
 
256
  return $meta_fields;
50
  public function __construct( $plugin_name, $version ) {
51
 
52
  $this->plugin_name = $plugin_name;
53
+ $this->version = $version;
54
 
55
  $this->load_dependencies();
56
 
75
  private function load_dependencies() {
76
 
77
  $portfolio_options = get_option( 'ect_portfolio' );
78
+ if ( isset( $portfolio_options['status'] ) && $portfolio_options['status'] ) {
79
  /**
80
  * Load Portfolio Content Type
81
  */
83
  }
84
 
85
  $testimonial_options = get_option( 'ect_testimonial' );
86
+ if ( isset( $testimonial_options['status'] ) && $testimonial_options['status'] ) {
87
  /**
88
  * Load Testimonial Content Type
89
  */
91
  }
92
 
93
  $featured_content_options = get_option( 'ect_featured_content' );
94
+ if ( isset( $featured_content_options['status'] ) && $featured_content_options['status'] ) {
95
  /**
96
  * Load Featured Content Type
97
  */
99
  }
100
 
101
  $service_options = get_option( 'ect_service' );
102
+ if ( isset( $service_options['status'] ) && $service_options['status'] ) {
103
  /**
104
  * Load Service Type
105
  */
107
  }
108
 
109
  $food_menu_options = get_option( 'ect_food_menu' );
110
+ if ( isset( $food_menu_options['status'] ) && $food_menu_options['status'] ) {
111
  /**
112
  * Load Food Menu Type
113
  */
124
  */
125
  public function enqueue_styles( $hook_suffix ) {
126
  $allowed_pages = array(
127
+ 'toplevel_page_essential-content-types' => 1,
128
+ 'essential-content-types_page_ect-portfolio' => 1,
129
+ 'essential-content-types_page_ect-testimonial' => 1,
130
  'essential-content-types_page_ect-featured-content' => 1,
131
+ 'essential-content-types_page_ect-service' => 1,
132
+ 'essential-content-types_page_ect-food-menu' => 1,
133
  );
134
 
135
+ if ( ! isset( $allowed_pages[ $hook_suffix ] ) ) {
136
  return;
137
  }
138
 
139
  wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/essential-content-types-admin.css', array(), $this->version, 'all' );
140
 
141
+ wp_enqueue_style( $this->plugin_name . '-tabs', plugin_dir_url( __FILE__ ) . 'css/admin-dashboard.css', array(), $this->version, 'all' );
142
 
143
  }
144
 
149
  */
150
  public function enqueue_scripts( $hook_suffix ) {
151
  $allowed_pages = array(
152
+ 'toplevel_page_essential-content-types' => 1,
153
+ 'essential-content-types_page_ect-portfolio' => 1,
154
+ 'essential-content-types_page_ect-testimonial' => 1,
155
  'essential-content-types_page_ect-featured-content' => 1,
156
+ 'essential-content-types_page_ect-service' => 1,
157
+ 'essential-content-types_page_ect-food-menu' => 1,
158
  );
159
 
160
+ if ( ! isset( $allowed_pages[ $hook_suffix ] ) ) {
161
  return;
162
  }
163
 
164
  wp_enqueue_script( 'minHeight', plugin_dir_url( __FILE__ ) . 'js/jquery.matchHeight.min.js', array( 'jquery' ), $this->version, false );
165
  wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/essential-content-types-admin.js', array( 'minHeight', 'jquery' ), $this->version, false );
166
 
 
167
  }
168
 
169
  /**
203
  * Dashboard Page include
204
  */
205
  function settings_page() {
206
+ if ( ! current_user_can( 'manage_options' ) ) {
207
  wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
208
  }
209
 
212
  }
213
 
214
  function dashboard_switch() {
215
+ // Check nonce before doing and changes.
216
+ if ( ! check_ajax_referer( 'ect_nonce', 'security', false ) ) {
217
+ wp_die( esc_html__( 'Invalid Nonce', 'essential-content-types' ) );
218
+ } else {
219
+ if ( ! current_user_can( 'manage_options' ) ) {
220
+ wp_die( esc_html__( 'Permission denied!', 'essential-content-types' ) );
221
+ }
222
+ $value = ( 'true' == $_POST['value'] ) ? 1 : 0;
223
+
224
+ $option_name = $_POST['option_name'];
225
+
226
+ $option_value = get_option( $option_name );
227
+
228
+ $option_value['status'] = $value;
229
+
230
+ if ( update_option( $option_name, $option_value ) ) {
231
+ echo $value;
232
+ } else {
233
+ esc_html_e( 'Connection Error. Please try again.', 'essential-content-types' );
234
+ }
235
+ }
236
  wp_die(); // this is required to terminate immediately and return a proper response
237
  }
238
+ function add_plugin_meta_links( $meta_fields, $file ) {
239
 
240
+ if ( ESSENTIAL_CONTENT_TYPES_BASENAME == $file ) {
241
 
242
  $meta_fields[] = "<a href='https://catchplugins.com/support-forum/forum/essential-content-type/' target='_blank'>Support Forum</a>";
243
  $meta_fields[] = "<a href='https://wordpress.org/support/plugin/essential-content-types/#reviews' target='_blank' title='Rate'>
247
  . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
248
  . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
249
  . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
250
+ . '</i></a>';
251
 
252
+ $stars_color = '#ffb900';
253
 
254
+ echo '<style>'
255
+ . '.ct-rate-stars{display:inline-block;color:' . $stars_color . ';position:relative;top:3px;}'
256
+ . '.ct-rate-stars svg{fill:' . $stars_color . ';}'
257
+ . '.ct-rate-stars svg:hover{fill:' . $stars_color . '}'
258
+ . '.ct-rate-stars svg:hover ~ svg{fill:none;}'
259
+ . '</style>';
260
  }
261
 
262
  return $meta_fields;
admin/js/essential-content-types-admin.js CHANGED
@@ -1,100 +1,104 @@
1
- (function( $ ) {
2
  'use strict';
3
 
4
- $(function() {
5
- $( document ).on( 'scroll', function() {
6
- if ( $( this ).scrollTop() > 1 ) {
7
- $( 'nav#main-nav' ).addClass( 'sticky' );
8
  } else {
9
- $( 'nav#main-nav' ).removeClass( 'sticky' );
10
  }
11
  });
12
 
13
  /* For Input Switch */
14
- $( '.input-switch' ).on( 'click', function() {
15
- var loader = $( this ).parent().next();
16
-
17
  loader.show();
18
-
19
- var main_control = $( this );
20
  var data = {
21
- 'action' : 'ect_dashboard_switch',
22
- 'value' : this.checked,
23
- 'option_name' : main_control.attr( 'rel' )
 
24
  };
25
 
26
- $.post( ajaxurl, data, function( response ) {
27
- response = $.trim( response );
28
 
29
- if ( '1' == response ) {
30
- main_control.parent().parent().addClass( 'active' );
31
- main_control.parent().parent().removeClass( 'inactive' );
32
- } else if( '0' == response ) {
33
- main_control.parent().parent().addClass( 'inactive' );
34
- main_control.parent().parent().removeClass( 'active' );
35
  } else {
36
- alert( response );
37
  }
38
-
39
  loader.hide();
40
  });
41
  });
42
  /* For Input Switch End */
43
  });
44
 
45
- $(function() {
46
-
47
- /* CPT switch */
48
- $( '.ctp-switch' ).on( 'click', function() {
49
- var loader = $( this ).parent().next();
50
-
51
- loader.show();
52
-
53
- var main_control = $( this );
54
- var data = {
55
- 'action' : 'ctp_switch',
56
- 'value' : this.checked,
57
- 'option_name' : main_control.attr( 'rel' )
58
- };
59
-
60
- $.post( ajaxurl, data, function( response ) {
61
- response = $.trim( response );
62
-
63
- if ( '1' == response ) {
64
- main_control.parent().parent().addClass( 'active' );
65
- main_control.parent().parent().removeClass( 'inactive' );
66
- } else if( '0' == response ) {
67
- main_control.parent().parent().addClass( 'inactive' );
68
- main_control.parent().parent().removeClass( 'active' );
69
- } else {
70
- alert( response );
71
- }
72
- loader.hide();
73
- });
74
- });
75
- /* CPT switch End */
76
-
77
- // Tabs
78
- $('.catchp_widget_settings .nav-tab-wrapper a').on('click', function(e){
79
- e.preventDefault();
80
-
81
- if( !$(this).hasClass('ui-state-active') ){
82
- $('.nav-tab').removeClass('nav-tab-active');
83
- $('.wpcatchtab').removeClass('active').fadeOut(0);
84
-
85
- $(this).addClass('nav-tab-active');
86
-
87
- var anchorAttr = $(this).attr('href');
88
-
89
- $(anchorAttr).addClass('active').fadeOut(0).fadeIn(500);
90
- }
91
-
92
- });
93
- });
94
-
95
- // jQuery Match Height init for sidebar spots
96
- $(document).ready(function() {
97
- $('.catchp-sidebar-spot .sidebar-spot-inner, .col-2 .catchp-lists li, .col-3 .catchp-lists li, .module-content').matchHeight();
98
- });
99
-
100
- })( jQuery );
 
 
 
1
+ (function ($) {
2
  'use strict';
3
 
4
+ $(function () {
5
+ $(document).on('scroll', function () {
6
+ if ($(this).scrollTop() > 1) {
7
+ $('nav#main-nav').addClass('sticky');
8
  } else {
9
+ $('nav#main-nav').removeClass('sticky');
10
  }
11
  });
12
 
13
  /* For Input Switch */
14
+ $('.input-switch').on('click', function () {
15
+ var loader = $(this).parent().next();
16
+
17
  loader.show();
18
+
19
+ var main_control = $(this);
20
  var data = {
21
+ action: 'ect_dashboard_switch',
22
+ value: this.checked,
23
+ security: main_control.prev('#ect_nonce').val(),
24
+ option_name: main_control.attr('rel'),
25
  };
26
 
27
+ $.post(ajaxurl, data, function (response) {
28
+ response = $.trim(response);
29
 
30
+ if ('1' == response) {
31
+ main_control.parent().parent().addClass('active');
32
+ main_control.parent().parent().removeClass('inactive');
33
+ } else if ('0' == response) {
34
+ main_control.parent().parent().addClass('inactive');
35
+ main_control.parent().parent().removeClass('active');
36
  } else {
37
+ alert(response);
38
  }
39
+
40
  loader.hide();
41
  });
42
  });
43
  /* For Input Switch End */
44
  });
45
 
46
+ $(function () {
47
+ /* CPT switch */
48
+ $('.ctp-switch').on('click', function () {
49
+ var loader = $(this).parent().next();
50
+
51
+ loader.show();
52
+
53
+ var main_control = $(this);
54
+ var data = {
55
+ action: 'ctp_switch',
56
+ value: this.checked,
57
+ security: main_control.prev('#ctp_tabs_nonce').val(),
58
+ option_name: main_control.attr('rel'),
59
+ };
60
+
61
+ $.post(ajaxurl, data, function (response) {
62
+ response = $.trim(response);
63
+
64
+ if ('1' == response) {
65
+ main_control.parent().parent().addClass('active');
66
+ main_control.parent().parent().removeClass('inactive');
67
+ } else if ('0' == response) {
68
+ main_control.parent().parent().addClass('inactive');
69
+ main_control.parent().parent().removeClass('active');
70
+ } else {
71
+ alert(response);
72
+ }
73
+ loader.hide();
74
+ });
75
+ });
76
+ /* CPT switch End */
77
+
78
+ // Tabs
79
+ $('.catchp_widget_settings .nav-tab-wrapper a').on(
80
+ 'click',
81
+ function (e) {
82
+ e.preventDefault();
83
+
84
+ if (!$(this).hasClass('ui-state-active')) {
85
+ $('.nav-tab').removeClass('nav-tab-active');
86
+ $('.wpcatchtab').removeClass('active').fadeOut(0);
87
+
88
+ $(this).addClass('nav-tab-active');
89
+
90
+ var anchorAttr = $(this).attr('href');
91
+
92
+ $(anchorAttr).addClass('active').fadeOut(0).fadeIn(500);
93
+ }
94
+ }
95
+ );
96
+ });
97
+
98
+ // jQuery Match Height init for sidebar spots
99
+ $(document).ready(function () {
100
+ $(
101
+ '.catchp-sidebar-spot .sidebar-spot-inner, .col-2 .catchp-lists li, .col-3 .catchp-lists li, .module-content'
102
+ ).matchHeight();
103
+ });
104
+ })(jQuery);
admin/partials/dashboard-display.php CHANGED
@@ -29,6 +29,7 @@
29
  <div class="module-header <?php echo $portfolio_options['status'] ? 'active' : 'inactive'; ?>">
30
  <h3 class="module-title"><?php esc_html_e( 'Portfolios/Projects', 'essential-content-types' ); ?></h3>
31
  <div class="switch">
 
32
  <input type="checkbox" id="ect_portfolio" class="input-switch" rel="ect_portfolio" <?php checked( true, $portfolio_options['status'] ); ?> >
33
  <label for="ect_portfolio"></label>
34
  </div>
@@ -56,6 +57,7 @@
56
  <div class="module-header <?php echo $options['status'] ? 'active' : 'inactive'; ?>">
57
  <h3 class="module-title"><?php esc_html_e( 'Testimonials', 'essential-content-types' ); ?></h3>
58
  <div class="switch">
 
59
  <input type="checkbox" id="ect_testimonial" class="input-switch" rel="ect_testimonial" <?php checked( true, $options['status'] ); ?> >
60
  <label for="ect_testimonial"></label>
61
  </div>
@@ -84,6 +86,7 @@
84
  <h3 class="module-title"><?php esc_html_e( 'Featured Content', 'essential-content-types' ); ?></h3>
85
 
86
  <div class="switch">
 
87
  <input type="checkbox" id="ect_featured_content" class="input-switch" rel="ect_featured_content" <?php checked( true, $featured_content_options['status'] ); ?> >
88
  <label for="ect_featured_content"></label>
89
  </div>
@@ -112,6 +115,7 @@
112
  <h3 class="module-title"><?php esc_html_e( 'Services', 'essential-content-types' ); ?></h3>
113
 
114
  <div class="switch">
 
115
  <input type="checkbox" id="ect_service" class="input-switch" rel="ect_service" <?php checked( true, $service_options['status'] ); ?> >
116
  <label for="ect_service"></label>
117
  </div>
@@ -137,11 +141,12 @@
137
  <?php if( $food_menu_options['status'] ) : ?>
138
  <div class="module-wrap">
139
  <div id="module-food-menu" class="catch-modules">
140
-
141
  <div class="module-header <?php echo $food_menu_options['status'] ? 'active' : 'inactive'; ?>">
142
  <h3 class="module-title"><?php esc_html_e( 'Food Menu', 'essential-content-types' ); ?></h3>
143
 
144
  <div class="switch">
 
145
  <input type="checkbox" id="ect_food_menu" class="input-switch" rel="ect_food_menu" <?php checked( true, $food_menu_options['status'] ); ?> >
146
  <label for="ect_food_menu"></label>
147
  </div>
29
  <div class="module-header <?php echo $portfolio_options['status'] ? 'active' : 'inactive'; ?>">
30
  <h3 class="module-title"><?php esc_html_e( 'Portfolios/Projects', 'essential-content-types' ); ?></h3>
31
  <div class="switch">
32
+ <input type="hidden" name="ect_nonce" id="ect_nonce" value="<?php echo esc_attr( wp_create_nonce( 'ect_nonce' ) ); ?>" />
33
  <input type="checkbox" id="ect_portfolio" class="input-switch" rel="ect_portfolio" <?php checked( true, $portfolio_options['status'] ); ?> >
34
  <label for="ect_portfolio"></label>
35
  </div>
57
  <div class="module-header <?php echo $options['status'] ? 'active' : 'inactive'; ?>">
58
  <h3 class="module-title"><?php esc_html_e( 'Testimonials', 'essential-content-types' ); ?></h3>
59
  <div class="switch">
60
+ <input type="hidden" name="ect_nonce" id="ect_nonce" value="<?php echo esc_attr( wp_create_nonce( 'ect_nonce' ) ); ?>" />
61
  <input type="checkbox" id="ect_testimonial" class="input-switch" rel="ect_testimonial" <?php checked( true, $options['status'] ); ?> >
62
  <label for="ect_testimonial"></label>
63
  </div>
86
  <h3 class="module-title"><?php esc_html_e( 'Featured Content', 'essential-content-types' ); ?></h3>
87
 
88
  <div class="switch">
89
+ <input type="hidden" name="ect_nonce" id="ect_nonce" value="<?php echo esc_attr( wp_create_nonce( 'ect_nonce' ) ); ?>" />
90
  <input type="checkbox" id="ect_featured_content" class="input-switch" rel="ect_featured_content" <?php checked( true, $featured_content_options['status'] ); ?> >
91
  <label for="ect_featured_content"></label>
92
  </div>
115
  <h3 class="module-title"><?php esc_html_e( 'Services', 'essential-content-types' ); ?></h3>
116
 
117
  <div class="switch">
118
+ <input type="hidden" name="ect_nonce" id="ect_nonce" value="<?php echo esc_attr( wp_create_nonce( 'ect_nonce' ) ); ?>" />
119
  <input type="checkbox" id="ect_service" class="input-switch" rel="ect_service" <?php checked( true, $service_options['status'] ); ?> >
120
  <label for="ect_service"></label>
121
  </div>
141
  <?php if( $food_menu_options['status'] ) : ?>
142
  <div class="module-wrap">
143
  <div id="module-food-menu" class="catch-modules">
144
+
145
  <div class="module-header <?php echo $food_menu_options['status'] ? 'active' : 'inactive'; ?>">
146
  <h3 class="module-title"><?php esc_html_e( 'Food Menu', 'essential-content-types' ); ?></h3>
147
 
148
  <div class="switch">
149
+ <input type="hidden" name="ect_nonce" id="ect_nonce" value="<?php echo esc_attr( wp_create_nonce( 'ect_nonce' ) ); ?>" />
150
  <input type="checkbox" id="ect_food_menu" class="input-switch" rel="ect_food_menu" <?php checked( true, $food_menu_options['status'] ); ?> >
151
  <label for="ect_food_menu"></label>
152
  </div>
admin/partials/essential-content-types-admin-display.php CHANGED
@@ -49,6 +49,7 @@
49
  <?php $ctp_options = ctp_get_options(); ?>
50
  <div class="module-header <?php echo $ctp_options['theme_plugin_tabs'] ? 'active' : 'inactive'; ?>">
51
  <div class="switch">
 
52
  <input type="checkbox" id="ctp_options[theme_plugin_tabs]" class="ctp-switch" rel="theme_plugin_tabs" <?php checked( true, $ctp_options['theme_plugin_tabs'] ); ?> >
53
  <label for="ctp_options[theme_plugin_tabs]"></label>
54
  </div>
@@ -57,7 +58,7 @@
57
  </td>
58
  </tr>
59
  </table>
60
-
61
  </div>
62
  </div><!-- #ctp-switch -->
63
 
49
  <?php $ctp_options = ctp_get_options(); ?>
50
  <div class="module-header <?php echo $ctp_options['theme_plugin_tabs'] ? 'active' : 'inactive'; ?>">
51
  <div class="switch">
52
+ <input type="hidden" name="ctp_tabs_nonce" id="ctp_tabs_nonce" value="<?php echo esc_attr( wp_create_nonce( 'ctp_tabs_nonce' ) ); ?>" />
53
  <input type="checkbox" id="ctp_options[theme_plugin_tabs]" class="ctp-switch" rel="theme_plugin_tabs" <?php checked( true, $ctp_options['theme_plugin_tabs'] ); ?> >
54
  <label for="ctp_options[theme_plugin_tabs]"></label>
55
  </div>
58
  </td>
59
  </tr>
60
  </table>
61
+
62
  </div>
63
  </div><!-- #ctp-switch -->
64
 
essential-content-types.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: Essential Content Types
17
  * Plugin URI: https://catchplugins.com/plugins/essential-content-types/
18
  * Description: Essential Content Types allows you to feature the impressive content through different content/post types on your website just the way you want it. These content/post types are missed by the themes in WordPress Theme Directory as the feature falls more towards the plugins’ territory.
19
- * Version: 1.8.6
20
  * Author: Catch Plugins
21
  * Author URI: https://catchplugins.com
22
  * License: GPL-3.0+
@@ -31,7 +31,7 @@ if ( ! defined( 'WPINC' ) ) {
31
  }
32
 
33
  // Define Version
34
- define( 'ESSENTIAL_CONTENT_TYPES_VERSION', '1.8.6' );
35
 
36
  /**
37
  * The code that runs during plugin activation.
16
  * Plugin Name: Essential Content Types
17
  * Plugin URI: https://catchplugins.com/plugins/essential-content-types/
18
  * Description: Essential Content Types allows you to feature the impressive content through different content/post types on your website just the way you want it. These content/post types are missed by the themes in WordPress Theme Directory as the feature falls more towards the plugins’ territory.
19
+ * Version: 1.9
20
  * Author: Catch Plugins
21
  * Author URI: https://catchplugins.com
22
  * License: GPL-3.0+
31
  }
32
 
33
  // Define Version
34
+ define( 'ESSENTIAL_CONTENT_TYPES_VERSION', '1.9' );
35
 
36
  /**
37
  * The code that runs during plugin activation.
includes/ctp-tabs-removal.php CHANGED
@@ -1,9 +1,9 @@
1
- <?php
2
  /**
3
  * ctp_register_settings
4
  * Header Enhacement Pro Register Settings
5
  */
6
- if( ! function_exists( 'ctp_register_settings' ) ) {
7
  function ctp_register_settings() {
8
  // register_setting( $option_group, $option_name, $sanitize_callback )
9
  register_setting(
@@ -15,21 +15,21 @@ if( ! function_exists( 'ctp_register_settings' ) ) {
15
  }
16
  add_action( 'admin_init', 'ctp_register_settings' );
17
 
18
- if( ! function_exists( 'ctp_get_options' ) ) {
19
  /**
20
  * Returns the options array for ctp_get options
21
  *
22
  * @since 1.9
23
  */
24
- function ctp_get_options(){
25
  $defaults = ctp_default_options();
26
  $options = get_option( 'ctp_options', $defaults );
27
 
28
- return wp_parse_args( $options, $defaults ) ;
29
  }
30
  }
31
 
32
- if( ! function_exists( 'ctp_default_options' ) ) {
33
  /**
34
  * Return array of default options
35
  *
@@ -40,14 +40,13 @@ if( ! function_exists( 'ctp_default_options' ) ) {
40
  $default_options['theme_plugin_tabs'] = 1;
41
  if ( null == $option ) {
42
  return apply_filters( 'ctp_options', $default_options );
43
- }
44
- else {
45
  return $default_options[ $option ];
46
  }
47
  }
48
  }
49
 
50
- if( ! function_exists( 'ctp_switch' ) ){
51
  /**
52
  * Return $string
53
  *
@@ -55,21 +54,28 @@ if( ! function_exists( 'ctp_switch' ) ){
55
  * @return $string 1 or 2.
56
  */
57
  function ctp_switch() {
58
- $value = ( 'true' == $_POST['value'] ) ? 1 : 0;
59
-
60
- $option_name = $_POST['option_name'];
 
 
 
 
 
61
 
62
- $option_value = ctp_get_options();
63
 
64
- $option_value[$option_name] = $value;
65
 
66
- if( update_option( 'ctp_options', $option_value ) ) {
67
- echo $value;
68
- } else {
69
- esc_html_e( 'Connection Error. Please try again.', 'to-top' );
70
- }
71
 
 
 
 
 
 
 
72
  wp_die(); // this is required to terminate immediately and return a proper response
73
  }
74
  }
75
- add_action( 'wp_ajax_ctp_switch', 'ctp_switch' );
1
+ <?php
2
  /**
3
  * ctp_register_settings
4
  * Header Enhacement Pro Register Settings
5
  */
6
+ if ( ! function_exists( 'ctp_register_settings' ) ) {
7
  function ctp_register_settings() {
8
  // register_setting( $option_group, $option_name, $sanitize_callback )
9
  register_setting(
15
  }
16
  add_action( 'admin_init', 'ctp_register_settings' );
17
 
18
+ if ( ! function_exists( 'ctp_get_options' ) ) {
19
  /**
20
  * Returns the options array for ctp_get options
21
  *
22
  * @since 1.9
23
  */
24
+ function ctp_get_options() {
25
  $defaults = ctp_default_options();
26
  $options = get_option( 'ctp_options', $defaults );
27
 
28
+ return wp_parse_args( $options, $defaults );
29
  }
30
  }
31
 
32
+ if ( ! function_exists( 'ctp_default_options' ) ) {
33
  /**
34
  * Return array of default options
35
  *
40
  $default_options['theme_plugin_tabs'] = 1;
41
  if ( null == $option ) {
42
  return apply_filters( 'ctp_options', $default_options );
43
+ } else {
 
44
  return $default_options[ $option ];
45
  }
46
  }
47
  }
48
 
49
+ if ( ! function_exists( 'ctp_switch' ) ) {
50
  /**
51
  * Return $string
52
  *
54
  * @return $string 1 or 2.
55
  */
56
  function ctp_switch() {
57
+ // Check nonce before doing and changes.
58
+ if ( ! check_ajax_referer( 'ctp_tabs_nonce', 'security', false ) ) {
59
+ wp_die( esc_html__( 'Invalid Nonce', 'essential-content-types' ) );
60
+ } else {
61
+ if ( ! current_user_can( 'manage_options' ) ) {
62
+ wp_die( esc_html__( 'Permission denied!', 'essential-content-types' ) );
63
+ }
64
+ $value = ( 'true' == $_POST['value'] ) ? 1 : 0;
65
 
66
+ $option_name = $_POST['option_name'];
67
 
68
+ $option_value = ctp_get_options();
69
 
70
+ $option_value[ $option_name ] = $value;
 
 
 
 
71
 
72
+ if ( update_option( 'ctp_options', $option_value ) ) {
73
+ echo $value;
74
+ } else {
75
+ esc_html_e( 'Connection Error. Please try again.', 'essential-content-types' );
76
+ }
77
+ }
78
  wp_die(); // this is required to terminate immediately and return a proper response
79
  }
80
  }
81
+ add_action( 'wp_ajax_ctp_switch', 'ctp_switch' );
languages/essential-content-types-fr_FR.mo CHANGED
Binary file
languages/essential-content-types-fr_FR.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Essential Content Types\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/tags/_s\n"
7
- "POT-Creation-Date: 2021-08-05 10:15-0700\n"
8
- "PO-Revision-Date: 2021-08-05 10:15-0700\n"
9
  "Last-Translator: Charles Girardin <girardin.charles.57@gmail.com>\n"
10
  "Language-Team: Catch Plugins <info@catchplugins.com>\n"
11
  "Language: fr_FR\n"
@@ -21,23 +21,33 @@ msgstr ""
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
 
24
- #: ../admin/class-essential-content-types-admin.php:180
25
  #: ../admin/partials/dashboard-display.php:19
26
  msgid "Settings"
27
  msgstr "Paramètres"
28
 
 
29
  #: ../admin/class-essential-content-types-admin.php:193
30
- #: ../admin/class-essential-content-types-admin.php:194
31
  #: ../admin/partials/essential-content-types-admin-display.php:17
32
  msgid "Essential Content Types"
33
  msgstr "Types de contenus essentiels"
34
 
35
- #: ../admin/class-essential-content-types-admin.php:208
36
  msgid "You do not have sufficient permissions to access this page."
37
  msgstr "Vous n'avez pas les permissions suffisantes pour accéder à cette page."
38
 
39
- #: ../admin/class-essential-content-types-admin.php:227
40
- #: ../includes/ctp-tabs-removal.php:69
 
 
 
 
 
 
 
 
 
 
41
  msgid "Connection Error. Please try again."
42
  msgstr "Erreur de connexion. Veuillez réessayer."
43
 
@@ -52,9 +62,9 @@ msgstr "Contenus en vedette"
52
  #: ../admin/class-featured-content.php:104
53
  #: ../admin/class-featured-content.php:105
54
  #: ../admin/class-featured-content.php:303
55
- #: ../admin/partials/dashboard-display.php:84
56
- #: ../admin/partials/essential-content-types-admin-display.php:113
57
- #: ../admin/partials/essential-content-types-admin-display.php:289
58
  msgid "Featured Content"
59
  msgstr "Contenu en vedette"
60
 
@@ -600,8 +610,8 @@ msgid "Price"
600
  msgstr "Prix"
601
 
602
  #: ../admin/class-food-menu.php:504
603
- #: ../admin/partials/essential-content-types-admin-display.php:133
604
- #: ../admin/partials/essential-content-types-admin-display.php:241
605
  msgid "Order"
606
  msgstr "Commander"
607
 
@@ -723,8 +733,8 @@ msgid "Project"
723
  msgstr "Projet"
724
 
725
  #: ../admin/class-portfolio.php:232 ../admin/class-portfolio.php:418
726
- #: ../admin/partials/essential-content-types-admin-display.php:103
727
- #: ../admin/partials/essential-content-types-admin-display.php:281
728
  msgid "Portfolio"
729
  msgstr "Portfolio"
730
 
@@ -943,9 +953,9 @@ msgid "Service Items"
943
  msgstr "Eléments de service"
944
 
945
  #: ../admin/class-service.php:103 ../admin/class-service.php:284
946
- #: ../admin/class-service.php:290 ../admin/partials/dashboard-display.php:112
947
- #: ../admin/partials/essential-content-types-admin-display.php:118
948
- #: ../admin/partials/essential-content-types-admin-display.php:297
949
  msgid "Services"
950
  msgstr "Services"
951
 
@@ -1165,8 +1175,8 @@ msgstr ""
1165
  #: ../admin/class-testimonial.php:118 ../admin/class-testimonial.php:269
1166
  #: ../admin/class-testimonial.php:271 ../admin/class-testimonial.php:461
1167
  #: ../admin/class-testimonial.php:471
1168
- #: ../admin/partials/dashboard-display.php:57
1169
- #: ../admin/partials/essential-content-types-admin-display.php:108
1170
  msgid "Testimonials"
1171
  msgstr "Témoignages"
1172
 
@@ -1188,7 +1198,7 @@ msgid "Customer Testimonials"
1188
  msgstr "Témoignages clients"
1189
 
1190
  #: ../admin/class-testimonial.php:270
1191
- #: ../admin/partials/essential-content-types-admin-display.php:305
1192
  msgid "Testimonial"
1193
  msgstr "Témoignage"
1194
 
@@ -1350,38 +1360,38 @@ msgstr "Veuillez définir un nom pour l’icône SVG."
1350
  msgid "Portfolios/Projects"
1351
  msgstr "Portfolios/Projets"
1352
 
1353
- #: ../admin/partials/dashboard-display.php:40
1354
  msgid "Portfolio – Create and display your portfolio on your website."
1355
  msgstr "Portfolio - Créez et affichez votre portfolio sur votre site web."
1356
 
1357
- #: ../admin/partials/dashboard-display.php:42
1358
  msgid "Once enabled, Portfolio Post Type options will appear on Dashboard Menu"
1359
  msgstr ""
1360
  "Une fois activées, les options de publication du Portfolio apparaîtront dans "
1361
  "le menu du tableau de bord"
1362
 
1363
- #: ../admin/partials/dashboard-display.php:44
1364
  #, php-format
1365
  msgid "%1$sClick here%2$s to view Portfolio Archive Options."
1366
  msgstr "%1$sCliquez ici%2$s pour voir les options d'archivage du Portfolio."
1367
 
1368
- #: ../admin/partials/dashboard-display.php:67
1369
  msgid "Testimonials – Add customer testimonials to your website."
1370
  msgstr "Témoignages - Ajoutez des témoignages de clients à votre site web."
1371
 
1372
- #: ../admin/partials/dashboard-display.php:69
1373
  msgid ""
1374
  "Once enabled, Testimonials Post Type options will appear on Dashboard Menu"
1375
  msgstr ""
1376
  "Une fois activées, les options de publication des témoignages apparaîtront "
1377
  "dans le menu du tableau de bord"
1378
 
1379
- #: ../admin/partials/dashboard-display.php:71
1380
  #, php-format
1381
  msgid "%1$sClick here%2$s to view Testimonial Archive Options."
1382
  msgstr "%1$sCliquez ici%2$s pour voir les options d'archivage des témoignages."
1383
 
1384
- #: ../admin/partials/dashboard-display.php:95
1385
  msgid ""
1386
  "Featured Content – Display the content you want as featured content to "
1387
  "attract visitors' attention."
@@ -1389,7 +1399,7 @@ msgstr ""
1389
  "Contenu vedette - Affichez le contenu que vous souhaitez comme contenu "
1390
  "vedette pour attirer l'attention des visiteurs."
1391
 
1392
- #: ../admin/partials/dashboard-display.php:97
1393
  msgid ""
1394
  "Once enabled, Featured Content Post Type options will appear on Dashboard "
1395
  "Menu"
@@ -1397,41 +1407,41 @@ msgstr ""
1397
  "Une fois activées, les options de publication du contenu vedette "
1398
  "apparaîtront dans le menu du tableau de bord"
1399
 
1400
- #: ../admin/partials/dashboard-display.php:99
1401
  #, php-format
1402
  msgid "%1$sClick here%2$s to view Featured Content Archive Options."
1403
  msgstr ""
1404
  "%1$sCliquez ici%2$s pour voir les options d'archivage du contenu vedette."
1405
 
1406
- #: ../admin/partials/dashboard-display.php:123
1407
  msgid "Service – Create and display your service on your website."
1408
  msgstr "Service - Créez et affichez votre service sur votre site web."
1409
 
1410
- #: ../admin/partials/dashboard-display.php:125
1411
  msgid "Once enabled, Service Post Type options will appear on Dashboard Menu"
1412
  msgstr ""
1413
  "Une fois activées, les options de publication de service apparaîtront dans "
1414
  "le menu du tableau de bord"
1415
 
1416
- #: ../admin/partials/dashboard-display.php:127
1417
  #, php-format
1418
  msgid "%1$sClick here%2$s to view Service Archive Options."
1419
  msgstr "%1$sCliquez ici%2$s pour voir les options d'archivage du service."
1420
 
1421
- #: ../admin/partials/dashboard-display.php:142
1422
- #: ../admin/partials/essential-content-types-admin-display.php:86
1423
- #: ../admin/partials/essential-content-types-admin-display.php:313
1424
  #: ../admin/partials/sidebar.php:19
1425
  msgid "Food Menu"
1426
  msgstr "Menu (Alimentation)"
1427
 
1428
- #: ../admin/partials/dashboard-display.php:153
1429
  msgid "Food Menu – Create and display your Food Menu items on your website."
1430
  msgstr ""
1431
  "Menu alimentaire - Créez et affichez les articles de votre menu alimentaire "
1432
  "sur votre site web."
1433
 
1434
- #: ../admin/partials/dashboard-display.php:155
1435
  msgid ""
1436
  "Once enabled, Food Menu Items Post Type options will appear on Dashboard Menu"
1437
  msgstr ""
@@ -1456,13 +1466,13 @@ msgid "Dashboard"
1456
  msgstr "Tableau de bord"
1457
 
1458
  #: ../admin/partials/essential-content-types-admin-display.php:27
1459
- #: ../admin/partials/essential-content-types-admin-display.php:97
1460
- #: ../admin/partials/essential-content-types-admin-display.php:200
1461
  msgid "Features"
1462
  msgstr "Caractéristiques"
1463
 
1464
  #: ../admin/partials/essential-content-types-admin-display.php:28
1465
- #: ../admin/partials/essential-content-types-admin-display.php:192
1466
  msgid "Compare Table"
1467
  msgstr "Tableau comparatif"
1468
 
@@ -1483,72 +1493,72 @@ msgstr ""
1483
  msgid "Turn On Catch Themes & Catch Plugin tabs"
1484
  msgstr "Activer les onglets Catch Themes & Catch Plugins"
1485
 
1486
- #: ../admin/partials/essential-content-types-admin-display.php:67
1487
  msgid "Go Premium!"
1488
  msgstr "Prenez Premium !"
1489
 
1490
- #: ../admin/partials/essential-content-types-admin-display.php:72
1491
  msgid "Dismiss this item."
1492
  msgstr "Rejeter ce point."
1493
 
1494
- #: ../admin/partials/essential-content-types-admin-display.php:76
1495
  #: ../admin/partials/sidebar.php:9
1496
  msgid "Featured Content Widget"
1497
  msgstr "Widget de contenu vedette"
1498
 
1499
- #: ../admin/partials/essential-content-types-admin-display.php:77
1500
- #: ../admin/partials/essential-content-types-admin-display.php:345
1501
  #: ../admin/partials/sidebar.php:10
1502
  msgid "Portfolio Widget"
1503
  msgstr "Portfolio Widget"
1504
 
1505
- #: ../admin/partials/essential-content-types-admin-display.php:78
1506
  #: ../admin/partials/sidebar.php:11
1507
  msgid "Testomonials Widget"
1508
  msgstr "Widget Témoignages"
1509
 
1510
- #: ../admin/partials/essential-content-types-admin-display.php:79
1511
  #: ../admin/partials/sidebar.php:12
1512
  msgid "Services Widget"
1513
  msgstr "Widget des services"
1514
 
1515
- #: ../admin/partials/essential-content-types-admin-display.php:80
1516
  #: ../admin/partials/sidebar.php:13
1517
  msgid "Ability to add shortcodes via button"
1518
  msgstr "Possibilité d'ajouter des codes courts via un bouton"
1519
 
1520
- #: ../admin/partials/essential-content-types-admin-display.php:81
1521
- #: ../admin/partials/essential-content-types-admin-display.php:321
1522
  #: ../admin/partials/sidebar.php:14
1523
  msgid "Flexible Image Size"
1524
  msgstr "Taille d'image flexible"
1525
 
1526
- #: ../admin/partials/essential-content-types-admin-display.php:82
1527
  #: ../admin/partials/sidebar.php:15
1528
  msgid "Events Widget"
1529
  msgstr "Widget des événements"
1530
 
1531
- #: ../admin/partials/essential-content-types-admin-display.php:83
1532
  #: ../admin/partials/sidebar.php:16
1533
  msgid "Team Widget"
1534
  msgstr "Widget Équipe"
1535
 
1536
- #: ../admin/partials/essential-content-types-admin-display.php:84
1537
  #: ../admin/partials/sidebar.php:17
1538
  msgid "Events Custom Post Type"
1539
  msgstr "Contenu personnalisé pour les événements"
1540
 
1541
- #: ../admin/partials/essential-content-types-admin-display.php:85
1542
  #: ../admin/partials/sidebar.php:18
1543
  msgid "Team Custom Post Type"
1544
  msgstr "Contenu personnalisé pour l'équipe"
1545
 
1546
- #: ../admin/partials/essential-content-types-admin-display.php:88
1547
  msgid "Find out why you should upgrade to Essential Content Types Premium »"
1548
  msgstr ""
1549
  "Découvrez pourquoi vous devriez passer à Essential Content Types Premium »"
1550
 
1551
- #: ../admin/partials/essential-content-types-admin-display.php:104
1552
  msgid ""
1553
  "Portfolio enables you to showcase your professional accomplishments to the "
1554
  "world at large. Display your most impressive Portfolios in the way you like. "
@@ -1561,7 +1571,7 @@ msgstr ""
1561
  "votre Portfolio jusqu'à 6 colonnes. Une merveilleuse façon d'afficher "
1562
  "facilement votre expérience et votre expertise."
1563
 
1564
- #: ../admin/partials/essential-content-types-admin-display.php:109
1565
  msgid ""
1566
  "People are always after authenticity. They are always looking for ways to "
1567
  "know what your goods or services are really like. Customer testimonials "
@@ -1574,7 +1584,7 @@ msgstr ""
1574
  "personnaliser les témoignages comme vous le souhaitez et sélectionner votre "
1575
  "type de présentation jusqu'à 6 colonnes."
1576
 
1577
- #: ../admin/partials/essential-content-types-admin-display.php:114
1578
  msgid ""
1579
  "Featured Content allows you to showcase your recent and popular posts on "
1580
  "your website. Your Featured Content can be displayed up to 1 to 6 columns. "
@@ -1585,7 +1595,7 @@ msgstr ""
1585
  "à 6 colonnes. Activez l'option Contenu vedette et affichez vos messages les "
1586
  "plus impressionnants."
1587
 
1588
- #: ../admin/partials/essential-content-types-admin-display.php:119
1589
  msgid ""
1590
  "Every website owner wants people to know about eh services they provide. You "
1591
  "can place the services you provide right on the spotlight. Choose to display "
@@ -1598,11 +1608,11 @@ msgstr ""
1598
  "Affichez vos services et faites savoir au monde entier ce que vous pouvez "
1599
  "leur fournir."
1600
 
1601
- #: ../admin/partials/essential-content-types-admin-display.php:123
1602
  msgid "Supports all themes on WordPress"
1603
  msgstr "Prise en charge de tous les thèmes sur WordPress"
1604
 
1605
- #: ../admin/partials/essential-content-types-admin-display.php:124
1606
  msgid ""
1607
  "You don’t have to worry if you have a slightly different or complicated "
1608
  "theme installed on your website. It supports all the themes on WordPress and "
@@ -1612,12 +1622,12 @@ msgstr ""
1612
  "ou compliqué installé sur votre site web. Il prend en charge tous les thèmes "
1613
  "de WordPress et rend votre site web plus percutant et plus ludique."
1614
 
1615
- #: ../admin/partials/essential-content-types-admin-display.php:128
1616
- #: ../admin/partials/essential-content-types-admin-display.php:225
1617
  msgid "Lightweight"
1618
  msgstr "Léger"
1619
 
1620
- #: ../admin/partials/essential-content-types-admin-display.php:129
1621
  msgid ""
1622
  "It is extremely lightweight. You do not need to worry about it affecting the "
1623
  "space and speed of your website."
@@ -1625,7 +1635,7 @@ msgstr ""
1625
  "Il est extrêmement léger. Vous n'avez pas à vous soucier de l'impact sur "
1626
  "l'espace et la vitesse de votre site web."
1627
 
1628
- #: ../admin/partials/essential-content-types-admin-display.php:134
1629
  msgid ""
1630
  "You have the freedom to choose how your content would be displayed—whether "
1631
  "in ascending or descending alphabetical order by author name, title, date, "
@@ -1635,11 +1645,11 @@ msgstr ""
1635
  "que ce soit par ordre alphabétique croissant ou décroissant par nom "
1636
  "d'auteur, titre, date ou dans un ordre aléatoire."
1637
 
1638
- #: ../admin/partials/essential-content-types-admin-display.php:138
1639
  msgid "Enable/Disable any content/post type as needed"
1640
  msgstr "Activer/désactiver tout type de contenu/article selon les besoins"
1641
 
1642
- #: ../admin/partials/essential-content-types-admin-display.php:139
1643
  msgid ""
1644
  "With this option, you can choose whether you want to display your content/"
1645
  "post type or not. You can enable or disable any content or post type as per "
@@ -1649,11 +1659,11 @@ msgstr ""
1649
  "article. Vous pouvez activer ou désactiver n'importe quel type de contenu ou "
1650
  "de message selon vos besoins."
1651
 
1652
- #: ../admin/partials/essential-content-types-admin-display.php:143
1653
  msgid "Super Simple to Set Up"
1654
  msgstr "Super simple à mettre en place"
1655
 
1656
- #: ../admin/partials/essential-content-types-admin-display.php:144
1657
  msgid ""
1658
  "It is super easy to set up. Even the beginners can set it up easily and "
1659
  "also, you do not need to have any coding knowledge. Just install, activate, "
@@ -1664,12 +1674,12 @@ msgstr ""
1664
  "codage. Il suffit de l'installer, de l'activer, de le personnaliser à votre "
1665
  "façon et de profiter du plugin."
1666
 
1667
- #: ../admin/partials/essential-content-types-admin-display.php:148
1668
- #: ../admin/partials/essential-content-types-admin-display.php:209
1669
  msgid "Responsive Design"
1670
  msgstr "Design adaptatif (responsive)"
1671
 
1672
- #: ../admin/partials/essential-content-types-admin-display.php:149
1673
  msgid ""
1674
  "One of the key features of our plugins is that your website will magically "
1675
  "respond and adapt to different screen sizes delivering an optimized design "
@@ -1682,11 +1692,11 @@ msgstr ""
1682
  "mobiles. Vous n'aurez plus besoin de zoomer et de faire défiler les pages "
1683
  "lorsque vous naviguez sur votre téléphone portable."
1684
 
1685
- #: ../admin/partials/essential-content-types-admin-display.php:153
1686
  msgid "Incredible Support"
1687
  msgstr "Une assistance incroyable"
1688
 
1689
- #: ../admin/partials/essential-content-types-admin-display.php:154
1690
  msgid ""
1691
  "We have a great line of support team and support documentation. You do not "
1692
  "need to worry about how to use the plugins we provide, just refer to our "
@@ -1700,11 +1710,11 @@ msgstr ""
1700
  "avancée de votre site web, vous pouvez toujours faire appel à notre "
1701
  "personnalisateur de thèmes !"
1702
 
1703
- #: ../admin/partials/essential-content-types-admin-display.php:158
1704
  msgid "Widgets"
1705
  msgstr "Widgets"
1706
 
1707
- #: ../admin/partials/essential-content-types-admin-display.php:159
1708
  msgid ""
1709
  "Multitude of widget options provide you with the option to choose the "
1710
  "widgets that you want to display. You can have full control over each "
@@ -1717,11 +1727,11 @@ msgstr ""
1717
  "contenus à vos widgets dans les barres latérales, dans le pied de page et "
1718
  "dans toute autre barre latérale."
1719
 
1720
- #: ../admin/partials/essential-content-types-admin-display.php:163
1721
  msgid "Shortcodes"
1722
  msgstr "Codes courts (Shortcodes)"
1723
 
1724
- #: ../admin/partials/essential-content-types-admin-display.php:164
1725
  msgid ""
1726
  "With Shortcodes, you have the option to use the powerful shortcode options "
1727
  "to style multiple contents in completely different ways."
@@ -1730,12 +1740,12 @@ msgstr ""
1730
  "options de codes courts pour styliser plusieurs contenus de manière "
1731
  "totalement différente."
1732
 
1733
- #: ../admin/partials/essential-content-types-admin-display.php:168
1734
- #: ../admin/partials/essential-content-types-admin-display.php:233
1735
  msgid "Number of Posts"
1736
  msgstr "Nombre d’articles"
1737
 
1738
- #: ../admin/partials/essential-content-types-admin-display.php:169
1739
  msgid ""
1740
  "You have the option to choose the number of posts you want to display on "
1741
  "your website. Pick the number of posts that suits the best on your website."
@@ -1744,12 +1754,12 @@ msgstr ""
1744
  "afficher sur votre site web. Choisissez le nombre d'articles qui convient le "
1745
  "mieux à votre site web."
1746
 
1747
- #: ../admin/partials/essential-content-types-admin-display.php:173
1748
- #: ../admin/partials/essential-content-types-admin-display.php:265
1749
  msgid "Column Option"
1750
  msgstr "Option de colonne"
1751
 
1752
- #: ../admin/partials/essential-content-types-admin-display.php:174
1753
  msgid ""
1754
  "Column Option allows you to choose from multiple column options. Several "
1755
  "options are available for all column types in general to edit the default "
@@ -1759,24 +1769,24 @@ msgstr ""
1759
  "colonne. Plusieurs options sont disponibles pour tous les types de colonnes "
1760
  "en général afin de modifier le comportement par défaut."
1761
 
1762
- #: ../admin/partials/essential-content-types-admin-display.php:177
1763
  msgid "Upgrade to Essential Content Types Premium »"
1764
  msgstr "Mise à niveau vers Essential Content Types Premium »"
1765
 
1766
- #: ../admin/partials/essential-content-types-admin-display.php:185
1767
  msgid "Get Essential Content Types Pro -"
1768
  msgstr "Obtenir Essential Content Types Pro -"
1769
 
1770
- #: ../admin/partials/essential-content-types-admin-display.php:185
1771
  msgid "Get It Here!"
1772
  msgstr "Obtenez-le ici !"
1773
 
1774
- #: ../admin/partials/essential-content-types-admin-display.php:186
1775
  msgid "You are currently using the free version of Essential Content Types."
1776
  msgstr ""
1777
  "Vous utilisez actuellement la version gratuite de Essential Content Types."
1778
 
1779
- #: ../admin/partials/essential-content-types-admin-display.php:187
1780
  msgid ""
1781
  "If you have purchased from catchplugins.com, then follow this link to the "
1782
  "installation instructions (particularly step 1)."
@@ -1784,55 +1794,55 @@ msgstr ""
1784
  "Si vous avez acheté sur catchplugins.com, suivez ce lien vers les "
1785
  "instructions d'installation (en particulier l'étape 1)."
1786
 
1787
- #: ../admin/partials/essential-content-types-admin-display.php:201
1788
  msgid "Free"
1789
  msgstr "Gratuit"
1790
 
1791
- #: ../admin/partials/essential-content-types-admin-display.php:202
1792
  msgid "Pro"
1793
  msgstr "Pro"
1794
 
1795
- #: ../admin/partials/essential-content-types-admin-display.php:217
1796
  msgid "Super Easy Setup"
1797
  msgstr "Une installation super facile"
1798
 
1799
- #: ../admin/partials/essential-content-types-admin-display.php:249
1800
  msgid "Shortcode"
1801
  msgstr "Shortcode"
1802
 
1803
- #: ../admin/partials/essential-content-types-admin-display.php:257
1804
  msgid "Custom Post Types"
1805
  msgstr "Types d'Articles personnalisés"
1806
 
1807
- #: ../admin/partials/essential-content-types-admin-display.php:273
1808
  msgid "Fixed Image Size"
1809
  msgstr "Taille d'image fixe"
1810
 
1811
- #: ../admin/partials/essential-content-types-admin-display.php:329
1812
  msgid "Testimonial Slider Option"
1813
  msgstr "Option du diaporama de témoignage"
1814
 
1815
- #: ../admin/partials/essential-content-types-admin-display.php:337
1816
  msgid "Menu Title Font Size"
1817
  msgstr "Taille de la police du titre du menu"
1818
 
1819
- #: ../admin/partials/essential-content-types-admin-display.php:353
1820
  msgid "Featured Image Widget"
1821
  msgstr "Widget d'images en vedette"
1822
 
1823
- #: ../admin/partials/essential-content-types-admin-display.php:361
1824
  msgid "Testimonials Widget"
1825
  msgstr "Widget de témoignages"
1826
 
1827
- #: ../admin/partials/essential-content-types-admin-display.php:369
1828
  msgid "Services Widget"
1829
  msgstr "Widget des services"
1830
 
1831
- #: ../admin/partials/essential-content-types-admin-display.php:377
1832
  msgid "Add Shortcode Button"
1833
  msgstr "Bouton d'ajout de code court (shortcode)"
1834
 
1835
- #: ../admin/partials/essential-content-types-admin-display.php:385
1836
  msgid "Ads-free Dashboard"
1837
  msgstr "Tableau de bord sans publicité"
1838
 
4
  msgstr ""
5
  "Project-Id-Version: Essential Content Types\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/tags/_s\n"
7
+ "POT-Creation-Date: 2021-09-18 00:25-0700\n"
8
+ "PO-Revision-Date: 2021-09-18 00:25-0700\n"
9
  "Last-Translator: Charles Girardin <girardin.charles.57@gmail.com>\n"
10
  "Language-Team: Catch Plugins <info@catchplugins.com>\n"
11
  "Language: fr_FR\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
 
24
+ #: ../admin/class-essential-content-types-admin.php:179
25
  #: ../admin/partials/dashboard-display.php:19
26
  msgid "Settings"
27
  msgstr "Paramètres"
28
 
29
+ #: ../admin/class-essential-content-types-admin.php:192
30
  #: ../admin/class-essential-content-types-admin.php:193
 
31
  #: ../admin/partials/essential-content-types-admin-display.php:17
32
  msgid "Essential Content Types"
33
  msgstr "Types de contenus essentiels"
34
 
35
+ #: ../admin/class-essential-content-types-admin.php:207
36
  msgid "You do not have sufficient permissions to access this page."
37
  msgstr "Vous n'avez pas les permissions suffisantes pour accéder à cette page."
38
 
39
+ #: ../admin/class-essential-content-types-admin.php:217
40
+ #: ../includes/ctp-tabs-removal.php:59
41
+ msgid "Invalid Nonce"
42
+ msgstr ""
43
+
44
+ #: ../admin/class-essential-content-types-admin.php:220
45
+ #: ../includes/ctp-tabs-removal.php:62
46
+ msgid "Permission denied!"
47
+ msgstr ""
48
+
49
+ #: ../admin/class-essential-content-types-admin.php:233
50
+ #: ../includes/ctp-tabs-removal.php:75
51
  msgid "Connection Error. Please try again."
52
  msgstr "Erreur de connexion. Veuillez réessayer."
53
 
62
  #: ../admin/class-featured-content.php:104
63
  #: ../admin/class-featured-content.php:105
64
  #: ../admin/class-featured-content.php:303
65
+ #: ../admin/partials/dashboard-display.php:86
66
+ #: ../admin/partials/essential-content-types-admin-display.php:114
67
+ #: ../admin/partials/essential-content-types-admin-display.php:290
68
  msgid "Featured Content"
69
  msgstr "Contenu en vedette"
70
 
610
  msgstr "Prix"
611
 
612
  #: ../admin/class-food-menu.php:504
613
+ #: ../admin/partials/essential-content-types-admin-display.php:134
614
+ #: ../admin/partials/essential-content-types-admin-display.php:242
615
  msgid "Order"
616
  msgstr "Commander"
617
 
733
  msgstr "Projet"
734
 
735
  #: ../admin/class-portfolio.php:232 ../admin/class-portfolio.php:418
736
+ #: ../admin/partials/essential-content-types-admin-display.php:104
737
+ #: ../admin/partials/essential-content-types-admin-display.php:282
738
  msgid "Portfolio"
739
  msgstr "Portfolio"
740
 
953
  msgstr "Eléments de service"
954
 
955
  #: ../admin/class-service.php:103 ../admin/class-service.php:284
956
+ #: ../admin/class-service.php:290 ../admin/partials/dashboard-display.php:115
957
+ #: ../admin/partials/essential-content-types-admin-display.php:119
958
+ #: ../admin/partials/essential-content-types-admin-display.php:298
959
  msgid "Services"
960
  msgstr "Services"
961
 
1175
  #: ../admin/class-testimonial.php:118 ../admin/class-testimonial.php:269
1176
  #: ../admin/class-testimonial.php:271 ../admin/class-testimonial.php:461
1177
  #: ../admin/class-testimonial.php:471
1178
+ #: ../admin/partials/dashboard-display.php:58
1179
+ #: ../admin/partials/essential-content-types-admin-display.php:109
1180
  msgid "Testimonials"
1181
  msgstr "Témoignages"
1182
 
1198
  msgstr "Témoignages clients"
1199
 
1200
  #: ../admin/class-testimonial.php:270
1201
+ #: ../admin/partials/essential-content-types-admin-display.php:306
1202
  msgid "Testimonial"
1203
  msgstr "Témoignage"
1204
 
1360
  msgid "Portfolios/Projects"
1361
  msgstr "Portfolios/Projets"
1362
 
1363
+ #: ../admin/partials/dashboard-display.php:41
1364
  msgid "Portfolio – Create and display your portfolio on your website."
1365
  msgstr "Portfolio - Créez et affichez votre portfolio sur votre site web."
1366
 
1367
+ #: ../admin/partials/dashboard-display.php:43
1368
  msgid "Once enabled, Portfolio Post Type options will appear on Dashboard Menu"
1369
  msgstr ""
1370
  "Une fois activées, les options de publication du Portfolio apparaîtront dans "
1371
  "le menu du tableau de bord"
1372
 
1373
+ #: ../admin/partials/dashboard-display.php:45
1374
  #, php-format
1375
  msgid "%1$sClick here%2$s to view Portfolio Archive Options."
1376
  msgstr "%1$sCliquez ici%2$s pour voir les options d'archivage du Portfolio."
1377
 
1378
+ #: ../admin/partials/dashboard-display.php:69
1379
  msgid "Testimonials – Add customer testimonials to your website."
1380
  msgstr "Témoignages - Ajoutez des témoignages de clients à votre site web."
1381
 
1382
+ #: ../admin/partials/dashboard-display.php:71
1383
  msgid ""
1384
  "Once enabled, Testimonials Post Type options will appear on Dashboard Menu"
1385
  msgstr ""
1386
  "Une fois activées, les options de publication des témoignages apparaîtront "
1387
  "dans le menu du tableau de bord"
1388
 
1389
+ #: ../admin/partials/dashboard-display.php:73
1390
  #, php-format
1391
  msgid "%1$sClick here%2$s to view Testimonial Archive Options."
1392
  msgstr "%1$sCliquez ici%2$s pour voir les options d'archivage des témoignages."
1393
 
1394
+ #: ../admin/partials/dashboard-display.php:98
1395
  msgid ""
1396
  "Featured Content – Display the content you want as featured content to "
1397
  "attract visitors' attention."
1399
  "Contenu vedette - Affichez le contenu que vous souhaitez comme contenu "
1400
  "vedette pour attirer l'attention des visiteurs."
1401
 
1402
+ #: ../admin/partials/dashboard-display.php:100
1403
  msgid ""
1404
  "Once enabled, Featured Content Post Type options will appear on Dashboard "
1405
  "Menu"
1407
  "Une fois activées, les options de publication du contenu vedette "
1408
  "apparaîtront dans le menu du tableau de bord"
1409
 
1410
+ #: ../admin/partials/dashboard-display.php:102
1411
  #, php-format
1412
  msgid "%1$sClick here%2$s to view Featured Content Archive Options."
1413
  msgstr ""
1414
  "%1$sCliquez ici%2$s pour voir les options d'archivage du contenu vedette."
1415
 
1416
+ #: ../admin/partials/dashboard-display.php:127
1417
  msgid "Service – Create and display your service on your website."
1418
  msgstr "Service - Créez et affichez votre service sur votre site web."
1419
 
1420
+ #: ../admin/partials/dashboard-display.php:129
1421
  msgid "Once enabled, Service Post Type options will appear on Dashboard Menu"
1422
  msgstr ""
1423
  "Une fois activées, les options de publication de service apparaîtront dans "
1424
  "le menu du tableau de bord"
1425
 
1426
+ #: ../admin/partials/dashboard-display.php:131
1427
  #, php-format
1428
  msgid "%1$sClick here%2$s to view Service Archive Options."
1429
  msgstr "%1$sCliquez ici%2$s pour voir les options d'archivage du service."
1430
 
1431
+ #: ../admin/partials/dashboard-display.php:146
1432
+ #: ../admin/partials/essential-content-types-admin-display.php:87
1433
+ #: ../admin/partials/essential-content-types-admin-display.php:314
1434
  #: ../admin/partials/sidebar.php:19
1435
  msgid "Food Menu"
1436
  msgstr "Menu (Alimentation)"
1437
 
1438
+ #: ../admin/partials/dashboard-display.php:158
1439
  msgid "Food Menu – Create and display your Food Menu items on your website."
1440
  msgstr ""
1441
  "Menu alimentaire - Créez et affichez les articles de votre menu alimentaire "
1442
  "sur votre site web."
1443
 
1444
+ #: ../admin/partials/dashboard-display.php:160
1445
  msgid ""
1446
  "Once enabled, Food Menu Items Post Type options will appear on Dashboard Menu"
1447
  msgstr ""
1466
  msgstr "Tableau de bord"
1467
 
1468
  #: ../admin/partials/essential-content-types-admin-display.php:27
1469
+ #: ../admin/partials/essential-content-types-admin-display.php:98
1470
+ #: ../admin/partials/essential-content-types-admin-display.php:201
1471
  msgid "Features"
1472
  msgstr "Caractéristiques"
1473
 
1474
  #: ../admin/partials/essential-content-types-admin-display.php:28
1475
+ #: ../admin/partials/essential-content-types-admin-display.php:193
1476
  msgid "Compare Table"
1477
  msgstr "Tableau comparatif"
1478
 
1493
  msgid "Turn On Catch Themes & Catch Plugin tabs"
1494
  msgstr "Activer les onglets Catch Themes & Catch Plugins"
1495
 
1496
+ #: ../admin/partials/essential-content-types-admin-display.php:68
1497
  msgid "Go Premium!"
1498
  msgstr "Prenez Premium !"
1499
 
1500
+ #: ../admin/partials/essential-content-types-admin-display.php:73
1501
  msgid "Dismiss this item."
1502
  msgstr "Rejeter ce point."
1503
 
1504
+ #: ../admin/partials/essential-content-types-admin-display.php:77
1505
  #: ../admin/partials/sidebar.php:9
1506
  msgid "Featured Content Widget"
1507
  msgstr "Widget de contenu vedette"
1508
 
1509
+ #: ../admin/partials/essential-content-types-admin-display.php:78
1510
+ #: ../admin/partials/essential-content-types-admin-display.php:346
1511
  #: ../admin/partials/sidebar.php:10
1512
  msgid "Portfolio Widget"
1513
  msgstr "Portfolio Widget"
1514
 
1515
+ #: ../admin/partials/essential-content-types-admin-display.php:79
1516
  #: ../admin/partials/sidebar.php:11
1517
  msgid "Testomonials Widget"
1518
  msgstr "Widget Témoignages"
1519
 
1520
+ #: ../admin/partials/essential-content-types-admin-display.php:80
1521
  #: ../admin/partials/sidebar.php:12
1522
  msgid "Services Widget"
1523
  msgstr "Widget des services"
1524
 
1525
+ #: ../admin/partials/essential-content-types-admin-display.php:81
1526
  #: ../admin/partials/sidebar.php:13
1527
  msgid "Ability to add shortcodes via button"
1528
  msgstr "Possibilité d'ajouter des codes courts via un bouton"
1529
 
1530
+ #: ../admin/partials/essential-content-types-admin-display.php:82
1531
+ #: ../admin/partials/essential-content-types-admin-display.php:322
1532
  #: ../admin/partials/sidebar.php:14
1533
  msgid "Flexible Image Size"
1534
  msgstr "Taille d'image flexible"
1535
 
1536
+ #: ../admin/partials/essential-content-types-admin-display.php:83
1537
  #: ../admin/partials/sidebar.php:15
1538
  msgid "Events Widget"
1539
  msgstr "Widget des événements"
1540
 
1541
+ #: ../admin/partials/essential-content-types-admin-display.php:84
1542
  #: ../admin/partials/sidebar.php:16
1543
  msgid "Team Widget"
1544
  msgstr "Widget Équipe"
1545
 
1546
+ #: ../admin/partials/essential-content-types-admin-display.php:85
1547
  #: ../admin/partials/sidebar.php:17
1548
  msgid "Events Custom Post Type"
1549
  msgstr "Contenu personnalisé pour les événements"
1550
 
1551
+ #: ../admin/partials/essential-content-types-admin-display.php:86
1552
  #: ../admin/partials/sidebar.php:18
1553
  msgid "Team Custom Post Type"
1554
  msgstr "Contenu personnalisé pour l'équipe"
1555
 
1556
+ #: ../admin/partials/essential-content-types-admin-display.php:89
1557
  msgid "Find out why you should upgrade to Essential Content Types Premium »"
1558
  msgstr ""
1559
  "Découvrez pourquoi vous devriez passer à Essential Content Types Premium »"
1560
 
1561
+ #: ../admin/partials/essential-content-types-admin-display.php:105
1562
  msgid ""
1563
  "Portfolio enables you to showcase your professional accomplishments to the "
1564
  "world at large. Display your most impressive Portfolios in the way you like. "
1571
  "votre Portfolio jusqu'à 6 colonnes. Une merveilleuse façon d'afficher "
1572
  "facilement votre expérience et votre expertise."
1573
 
1574
+ #: ../admin/partials/essential-content-types-admin-display.php:110
1575
  msgid ""
1576
  "People are always after authenticity. They are always looking for ways to "
1577
  "know what your goods or services are really like. Customer testimonials "
1584
  "personnaliser les témoignages comme vous le souhaitez et sélectionner votre "
1585
  "type de présentation jusqu'à 6 colonnes."
1586
 
1587
+ #: ../admin/partials/essential-content-types-admin-display.php:115
1588
  msgid ""
1589
  "Featured Content allows you to showcase your recent and popular posts on "
1590
  "your website. Your Featured Content can be displayed up to 1 to 6 columns. "
1595
  "à 6 colonnes. Activez l'option Contenu vedette et affichez vos messages les "
1596
  "plus impressionnants."
1597
 
1598
+ #: ../admin/partials/essential-content-types-admin-display.php:120
1599
  msgid ""
1600
  "Every website owner wants people to know about eh services they provide. You "
1601
  "can place the services you provide right on the spotlight. Choose to display "
1608
  "Affichez vos services et faites savoir au monde entier ce que vous pouvez "
1609
  "leur fournir."
1610
 
1611
+ #: ../admin/partials/essential-content-types-admin-display.php:124
1612
  msgid "Supports all themes on WordPress"
1613
  msgstr "Prise en charge de tous les thèmes sur WordPress"
1614
 
1615
+ #: ../admin/partials/essential-content-types-admin-display.php:125
1616
  msgid ""
1617
  "You don’t have to worry if you have a slightly different or complicated "
1618
  "theme installed on your website. It supports all the themes on WordPress and "
1622
  "ou compliqué installé sur votre site web. Il prend en charge tous les thèmes "
1623
  "de WordPress et rend votre site web plus percutant et plus ludique."
1624
 
1625
+ #: ../admin/partials/essential-content-types-admin-display.php:129
1626
+ #: ../admin/partials/essential-content-types-admin-display.php:226
1627
  msgid "Lightweight"
1628
  msgstr "Léger"
1629
 
1630
+ #: ../admin/partials/essential-content-types-admin-display.php:130
1631
  msgid ""
1632
  "It is extremely lightweight. You do not need to worry about it affecting the "
1633
  "space and speed of your website."
1635
  "Il est extrêmement léger. Vous n'avez pas à vous soucier de l'impact sur "
1636
  "l'espace et la vitesse de votre site web."
1637
 
1638
+ #: ../admin/partials/essential-content-types-admin-display.php:135
1639
  msgid ""
1640
  "You have the freedom to choose how your content would be displayed—whether "
1641
  "in ascending or descending alphabetical order by author name, title, date, "
1645
  "que ce soit par ordre alphabétique croissant ou décroissant par nom "
1646
  "d'auteur, titre, date ou dans un ordre aléatoire."
1647
 
1648
+ #: ../admin/partials/essential-content-types-admin-display.php:139
1649
  msgid "Enable/Disable any content/post type as needed"
1650
  msgstr "Activer/désactiver tout type de contenu/article selon les besoins"
1651
 
1652
+ #: ../admin/partials/essential-content-types-admin-display.php:140
1653
  msgid ""
1654
  "With this option, you can choose whether you want to display your content/"
1655
  "post type or not. You can enable or disable any content or post type as per "
1659
  "article. Vous pouvez activer ou désactiver n'importe quel type de contenu ou "
1660
  "de message selon vos besoins."
1661
 
1662
+ #: ../admin/partials/essential-content-types-admin-display.php:144
1663
  msgid "Super Simple to Set Up"
1664
  msgstr "Super simple à mettre en place"
1665
 
1666
+ #: ../admin/partials/essential-content-types-admin-display.php:145
1667
  msgid ""
1668
  "It is super easy to set up. Even the beginners can set it up easily and "
1669
  "also, you do not need to have any coding knowledge. Just install, activate, "
1674
  "codage. Il suffit de l'installer, de l'activer, de le personnaliser à votre "
1675
  "façon et de profiter du plugin."
1676
 
1677
+ #: ../admin/partials/essential-content-types-admin-display.php:149
1678
+ #: ../admin/partials/essential-content-types-admin-display.php:210
1679
  msgid "Responsive Design"
1680
  msgstr "Design adaptatif (responsive)"
1681
 
1682
+ #: ../admin/partials/essential-content-types-admin-display.php:150
1683
  msgid ""
1684
  "One of the key features of our plugins is that your website will magically "
1685
  "respond and adapt to different screen sizes delivering an optimized design "
1692
  "mobiles. Vous n'aurez plus besoin de zoomer et de faire défiler les pages "
1693
  "lorsque vous naviguez sur votre téléphone portable."
1694
 
1695
+ #: ../admin/partials/essential-content-types-admin-display.php:154
1696
  msgid "Incredible Support"
1697
  msgstr "Une assistance incroyable"
1698
 
1699
+ #: ../admin/partials/essential-content-types-admin-display.php:155
1700
  msgid ""
1701
  "We have a great line of support team and support documentation. You do not "
1702
  "need to worry about how to use the plugins we provide, just refer to our "
1710
  "avancée de votre site web, vous pouvez toujours faire appel à notre "
1711
  "personnalisateur de thèmes !"
1712
 
1713
+ #: ../admin/partials/essential-content-types-admin-display.php:159
1714
  msgid "Widgets"
1715
  msgstr "Widgets"
1716
 
1717
+ #: ../admin/partials/essential-content-types-admin-display.php:160
1718
  msgid ""
1719
  "Multitude of widget options provide you with the option to choose the "
1720
  "widgets that you want to display. You can have full control over each "
1727
  "contenus à vos widgets dans les barres latérales, dans le pied de page et "
1728
  "dans toute autre barre latérale."
1729
 
1730
+ #: ../admin/partials/essential-content-types-admin-display.php:164
1731
  msgid "Shortcodes"
1732
  msgstr "Codes courts (Shortcodes)"
1733
 
1734
+ #: ../admin/partials/essential-content-types-admin-display.php:165
1735
  msgid ""
1736
  "With Shortcodes, you have the option to use the powerful shortcode options "
1737
  "to style multiple contents in completely different ways."
1740
  "options de codes courts pour styliser plusieurs contenus de manière "
1741
  "totalement différente."
1742
 
1743
+ #: ../admin/partials/essential-content-types-admin-display.php:169
1744
+ #: ../admin/partials/essential-content-types-admin-display.php:234
1745
  msgid "Number of Posts"
1746
  msgstr "Nombre d’articles"
1747
 
1748
+ #: ../admin/partials/essential-content-types-admin-display.php:170
1749
  msgid ""
1750
  "You have the option to choose the number of posts you want to display on "
1751
  "your website. Pick the number of posts that suits the best on your website."
1754
  "afficher sur votre site web. Choisissez le nombre d'articles qui convient le "
1755
  "mieux à votre site web."
1756
 
1757
+ #: ../admin/partials/essential-content-types-admin-display.php:174
1758
+ #: ../admin/partials/essential-content-types-admin-display.php:266
1759
  msgid "Column Option"
1760
  msgstr "Option de colonne"
1761
 
1762
+ #: ../admin/partials/essential-content-types-admin-display.php:175
1763
  msgid ""
1764
  "Column Option allows you to choose from multiple column options. Several "
1765
  "options are available for all column types in general to edit the default "
1769
  "colonne. Plusieurs options sont disponibles pour tous les types de colonnes "
1770
  "en général afin de modifier le comportement par défaut."
1771
 
1772
+ #: ../admin/partials/essential-content-types-admin-display.php:178
1773
  msgid "Upgrade to Essential Content Types Premium »"
1774
  msgstr "Mise à niveau vers Essential Content Types Premium »"
1775
 
1776
+ #: ../admin/partials/essential-content-types-admin-display.php:186
1777
  msgid "Get Essential Content Types Pro -"
1778
  msgstr "Obtenir Essential Content Types Pro -"
1779
 
1780
+ #: ../admin/partials/essential-content-types-admin-display.php:186
1781
  msgid "Get It Here!"
1782
  msgstr "Obtenez-le ici !"
1783
 
1784
+ #: ../admin/partials/essential-content-types-admin-display.php:187
1785
  msgid "You are currently using the free version of Essential Content Types."
1786
  msgstr ""
1787
  "Vous utilisez actuellement la version gratuite de Essential Content Types."
1788
 
1789
+ #: ../admin/partials/essential-content-types-admin-display.php:188
1790
  msgid ""
1791
  "If you have purchased from catchplugins.com, then follow this link to the "
1792
  "installation instructions (particularly step 1)."
1794
  "Si vous avez acheté sur catchplugins.com, suivez ce lien vers les "
1795
  "instructions d'installation (en particulier l'étape 1)."
1796
 
1797
+ #: ../admin/partials/essential-content-types-admin-display.php:202
1798
  msgid "Free"
1799
  msgstr "Gratuit"
1800
 
1801
+ #: ../admin/partials/essential-content-types-admin-display.php:203
1802
  msgid "Pro"
1803
  msgstr "Pro"
1804
 
1805
+ #: ../admin/partials/essential-content-types-admin-display.php:218
1806
  msgid "Super Easy Setup"
1807
  msgstr "Une installation super facile"
1808
 
1809
+ #: ../admin/partials/essential-content-types-admin-display.php:250
1810
  msgid "Shortcode"
1811
  msgstr "Shortcode"
1812
 
1813
+ #: ../admin/partials/essential-content-types-admin-display.php:258
1814
  msgid "Custom Post Types"
1815
  msgstr "Types d'Articles personnalisés"
1816
 
1817
+ #: ../admin/partials/essential-content-types-admin-display.php:274
1818
  msgid "Fixed Image Size"
1819
  msgstr "Taille d'image fixe"
1820
 
1821
+ #: ../admin/partials/essential-content-types-admin-display.php:330
1822
  msgid "Testimonial Slider Option"
1823
  msgstr "Option du diaporama de témoignage"
1824
 
1825
+ #: ../admin/partials/essential-content-types-admin-display.php:338
1826
  msgid "Menu Title Font Size"
1827
  msgstr "Taille de la police du titre du menu"
1828
 
1829
+ #: ../admin/partials/essential-content-types-admin-display.php:354
1830
  msgid "Featured Image Widget"
1831
  msgstr "Widget d'images en vedette"
1832
 
1833
+ #: ../admin/partials/essential-content-types-admin-display.php:362
1834
  msgid "Testimonials Widget"
1835
  msgstr "Widget de témoignages"
1836
 
1837
+ #: ../admin/partials/essential-content-types-admin-display.php:370
1838
  msgid "Services Widget"
1839
  msgstr "Widget des services"
1840
 
1841
+ #: ../admin/partials/essential-content-types-admin-display.php:378
1842
  msgid "Add Shortcode Button"
1843
  msgstr "Bouton d'ajout de code court (shortcode)"
1844
 
1845
+ #: ../admin/partials/essential-content-types-admin-display.php:386
1846
  msgid "Ads-free Dashboard"
1847
  msgstr "Tableau de bord sans publicité"
1848
 
languages/essential-content-types.pot CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Essential Content Types\n"
7
  "Report-Msgid-Bugs-To: https://wordpress.org/tags/_s\n"
8
- "POT-Creation-Date: 2021-08-05 10:15-0700\n"
9
  "PO-Revision-Date: 2016-12-12 09:23-0500\n"
10
  "Last-Translator: Sakin Shrestha <info@catchplugins.com>\n"
11
  "Language-Team: Catch Plugins <info@catchplugins.com>\n"
@@ -22,23 +22,33 @@ msgstr ""
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
- #: ../admin/class-essential-content-types-admin.php:180
26
  #: ../admin/partials/dashboard-display.php:19
27
  msgid "Settings"
28
  msgstr ""
29
 
 
30
  #: ../admin/class-essential-content-types-admin.php:193
31
- #: ../admin/class-essential-content-types-admin.php:194
32
  #: ../admin/partials/essential-content-types-admin-display.php:17
33
  msgid "Essential Content Types"
34
  msgstr ""
35
 
36
- #: ../admin/class-essential-content-types-admin.php:208
37
  msgid "You do not have sufficient permissions to access this page."
38
  msgstr ""
39
 
40
- #: ../admin/class-essential-content-types-admin.php:227
41
- #: ../includes/ctp-tabs-removal.php:69
 
 
 
 
 
 
 
 
 
 
42
  msgid "Connection Error. Please try again."
43
  msgstr ""
44
 
@@ -53,9 +63,9 @@ msgstr ""
53
  #: ../admin/class-featured-content.php:104
54
  #: ../admin/class-featured-content.php:105
55
  #: ../admin/class-featured-content.php:303
56
- #: ../admin/partials/dashboard-display.php:84
57
- #: ../admin/partials/essential-content-types-admin-display.php:113
58
- #: ../admin/partials/essential-content-types-admin-display.php:289
59
  msgid "Featured Content"
60
  msgstr ""
61
 
@@ -589,8 +599,8 @@ msgid "Price"
589
  msgstr ""
590
 
591
  #: ../admin/class-food-menu.php:504
592
- #: ../admin/partials/essential-content-types-admin-display.php:133
593
- #: ../admin/partials/essential-content-types-admin-display.php:241
594
  msgid "Order"
595
  msgstr ""
596
 
@@ -705,8 +715,8 @@ msgid "Project"
705
  msgstr ""
706
 
707
  #: ../admin/class-portfolio.php:232 ../admin/class-portfolio.php:418
708
- #: ../admin/partials/essential-content-types-admin-display.php:103
709
- #: ../admin/partials/essential-content-types-admin-display.php:281
710
  msgid "Portfolio"
711
  msgstr ""
712
 
@@ -920,9 +930,9 @@ msgid "Service Items"
920
  msgstr ""
921
 
922
  #: ../admin/class-service.php:103 ../admin/class-service.php:284
923
- #: ../admin/class-service.php:290 ../admin/partials/dashboard-display.php:112
924
- #: ../admin/partials/essential-content-types-admin-display.php:118
925
- #: ../admin/partials/essential-content-types-admin-display.php:297
926
  msgid "Services"
927
  msgstr ""
928
 
@@ -1135,8 +1145,8 @@ msgstr ""
1135
  #: ../admin/class-testimonial.php:118 ../admin/class-testimonial.php:269
1136
  #: ../admin/class-testimonial.php:271 ../admin/class-testimonial.php:461
1137
  #: ../admin/class-testimonial.php:471
1138
- #: ../admin/partials/dashboard-display.php:57
1139
- #: ../admin/partials/essential-content-types-admin-display.php:108
1140
  msgid "Testimonials"
1141
  msgstr ""
1142
 
@@ -1158,7 +1168,7 @@ msgid "Customer Testimonials"
1158
  msgstr ""
1159
 
1160
  #: ../admin/class-testimonial.php:270
1161
- #: ../admin/partials/essential-content-types-admin-display.php:305
1162
  msgid "Testimonial"
1163
  msgstr ""
1164
 
@@ -1312,76 +1322,76 @@ msgstr ""
1312
  msgid "Portfolios/Projects"
1313
  msgstr ""
1314
 
1315
- #: ../admin/partials/dashboard-display.php:40
1316
  msgid "Portfolio – Create and display your portfolio on your website."
1317
  msgstr ""
1318
 
1319
- #: ../admin/partials/dashboard-display.php:42
1320
  msgid ""
1321
  "Once enabled, Portfolio Post Type options will appear on Dashboard Menu"
1322
  msgstr ""
1323
 
1324
- #: ../admin/partials/dashboard-display.php:44
1325
  #, php-format
1326
  msgid "%1$sClick here%2$s to view Portfolio Archive Options."
1327
  msgstr ""
1328
 
1329
- #: ../admin/partials/dashboard-display.php:67
1330
  msgid "Testimonials – Add customer testimonials to your website."
1331
  msgstr ""
1332
 
1333
- #: ../admin/partials/dashboard-display.php:69
1334
  msgid ""
1335
  "Once enabled, Testimonials Post Type options will appear on Dashboard Menu"
1336
  msgstr ""
1337
 
1338
- #: ../admin/partials/dashboard-display.php:71
1339
  #, php-format
1340
  msgid "%1$sClick here%2$s to view Testimonial Archive Options."
1341
  msgstr ""
1342
 
1343
- #: ../admin/partials/dashboard-display.php:95
1344
  msgid ""
1345
  "Featured Content – Display the content you want as featured content to "
1346
  "attract visitors' attention."
1347
  msgstr ""
1348
 
1349
- #: ../admin/partials/dashboard-display.php:97
1350
  msgid ""
1351
  "Once enabled, Featured Content Post Type options will appear on Dashboard "
1352
  "Menu"
1353
  msgstr ""
1354
 
1355
- #: ../admin/partials/dashboard-display.php:99
1356
  #, php-format
1357
  msgid "%1$sClick here%2$s to view Featured Content Archive Options."
1358
  msgstr ""
1359
 
1360
- #: ../admin/partials/dashboard-display.php:123
1361
  msgid "Service – Create and display your service on your website."
1362
  msgstr ""
1363
 
1364
- #: ../admin/partials/dashboard-display.php:125
1365
  msgid "Once enabled, Service Post Type options will appear on Dashboard Menu"
1366
  msgstr ""
1367
 
1368
- #: ../admin/partials/dashboard-display.php:127
1369
  #, php-format
1370
  msgid "%1$sClick here%2$s to view Service Archive Options."
1371
  msgstr ""
1372
 
1373
- #: ../admin/partials/dashboard-display.php:142
1374
- #: ../admin/partials/essential-content-types-admin-display.php:86
1375
- #: ../admin/partials/essential-content-types-admin-display.php:313
1376
  #: ../admin/partials/sidebar.php:19
1377
  msgid "Food Menu"
1378
  msgstr ""
1379
 
1380
- #: ../admin/partials/dashboard-display.php:153
1381
  msgid "Food Menu – Create and display your Food Menu items on your website."
1382
  msgstr ""
1383
 
1384
- #: ../admin/partials/dashboard-display.php:155
1385
  msgid ""
1386
  "Once enabled, Food Menu Items Post Type options will appear on Dashboard "
1387
  "Menu"
@@ -1400,13 +1410,13 @@ msgid "Dashboard"
1400
  msgstr ""
1401
 
1402
  #: ../admin/partials/essential-content-types-admin-display.php:27
1403
- #: ../admin/partials/essential-content-types-admin-display.php:97
1404
- #: ../admin/partials/essential-content-types-admin-display.php:200
1405
  msgid "Features"
1406
  msgstr ""
1407
 
1408
  #: ../admin/partials/essential-content-types-admin-display.php:28
1409
- #: ../admin/partials/essential-content-types-admin-display.php:192
1410
  msgid "Compare Table"
1411
  msgstr ""
1412
 
@@ -1424,71 +1434,71 @@ msgstr ""
1424
  msgid "Turn On Catch Themes & Catch Plugin tabs"
1425
  msgstr ""
1426
 
1427
- #: ../admin/partials/essential-content-types-admin-display.php:67
1428
  msgid "Go Premium!"
1429
  msgstr ""
1430
 
1431
- #: ../admin/partials/essential-content-types-admin-display.php:72
1432
  msgid "Dismiss this item."
1433
  msgstr ""
1434
 
1435
- #: ../admin/partials/essential-content-types-admin-display.php:76
1436
  #: ../admin/partials/sidebar.php:9
1437
  msgid "Featured Content Widget"
1438
  msgstr ""
1439
 
1440
- #: ../admin/partials/essential-content-types-admin-display.php:77
1441
- #: ../admin/partials/essential-content-types-admin-display.php:345
1442
  #: ../admin/partials/sidebar.php:10
1443
  msgid "Portfolio Widget"
1444
  msgstr ""
1445
 
1446
- #: ../admin/partials/essential-content-types-admin-display.php:78
1447
  #: ../admin/partials/sidebar.php:11
1448
  msgid "Testomonials Widget"
1449
  msgstr ""
1450
 
1451
- #: ../admin/partials/essential-content-types-admin-display.php:79
1452
  #: ../admin/partials/sidebar.php:12
1453
  msgid "Services Widget"
1454
  msgstr ""
1455
 
1456
- #: ../admin/partials/essential-content-types-admin-display.php:80
1457
  #: ../admin/partials/sidebar.php:13
1458
  msgid "Ability to add shortcodes via button"
1459
  msgstr ""
1460
 
1461
- #: ../admin/partials/essential-content-types-admin-display.php:81
1462
- #: ../admin/partials/essential-content-types-admin-display.php:321
1463
  #: ../admin/partials/sidebar.php:14
1464
  msgid "Flexible Image Size"
1465
  msgstr ""
1466
 
1467
- #: ../admin/partials/essential-content-types-admin-display.php:82
1468
  #: ../admin/partials/sidebar.php:15
1469
  msgid "Events Widget"
1470
  msgstr ""
1471
 
1472
- #: ../admin/partials/essential-content-types-admin-display.php:83
1473
  #: ../admin/partials/sidebar.php:16
1474
  msgid "Team Widget"
1475
  msgstr ""
1476
 
1477
- #: ../admin/partials/essential-content-types-admin-display.php:84
1478
  #: ../admin/partials/sidebar.php:17
1479
  msgid "Events Custom Post Type"
1480
  msgstr ""
1481
 
1482
- #: ../admin/partials/essential-content-types-admin-display.php:85
1483
  #: ../admin/partials/sidebar.php:18
1484
  msgid "Team Custom Post Type"
1485
  msgstr ""
1486
 
1487
- #: ../admin/partials/essential-content-types-admin-display.php:88
1488
  msgid "Find out why you should upgrade to Essential Content Types Premium »"
1489
  msgstr ""
1490
 
1491
- #: ../admin/partials/essential-content-types-admin-display.php:104
1492
  msgid ""
1493
  "Portfolio enables you to showcase your professional accomplishments to the "
1494
  "world at large. Display your most impressive Portfolios in the way you "
@@ -1496,7 +1506,7 @@ msgid ""
1496
  "columns. A marvelous way to easily display your experience and expertise."
1497
  msgstr ""
1498
 
1499
- #: ../admin/partials/essential-content-types-admin-display.php:109
1500
  msgid ""
1501
  "People are always after authenticity. They are always looking for ways to "
1502
  "know what your goods or services are really like. Customer testimonials "
@@ -1504,14 +1514,14 @@ msgid ""
1504
  "want and also select your testimonial layout type up to 6 columns."
1505
  msgstr ""
1506
 
1507
- #: ../admin/partials/essential-content-types-admin-display.php:114
1508
  msgid ""
1509
  "Featured Content allows you to showcase your recent and popular posts on "
1510
  "your website. Your Featured Content can be displayed up to 1 to 6 columns. "
1511
  "Enable the Featured Content option and display your most impressive posts."
1512
  msgstr ""
1513
 
1514
- #: ../admin/partials/essential-content-types-admin-display.php:119
1515
  msgid ""
1516
  "Every website owner wants people to know about eh services they provide. "
1517
  "You can place the services you provide right on the spotlight. Choose to "
@@ -1519,63 +1529,63 @@ msgid ""
1519
  "world know what you can provide them with."
1520
  msgstr ""
1521
 
1522
- #: ../admin/partials/essential-content-types-admin-display.php:123
1523
  msgid "Supports all themes on WordPress"
1524
  msgstr ""
1525
 
1526
- #: ../admin/partials/essential-content-types-admin-display.php:124
1527
  msgid ""
1528
  "You don’t have to worry if you have a slightly different or complicated "
1529
  "theme installed on your website. It supports all the themes on WordPress "
1530
  "and makes your website more striking and playful."
1531
  msgstr ""
1532
 
1533
- #: ../admin/partials/essential-content-types-admin-display.php:128
1534
- #: ../admin/partials/essential-content-types-admin-display.php:225
1535
  msgid "Lightweight"
1536
  msgstr ""
1537
 
1538
- #: ../admin/partials/essential-content-types-admin-display.php:129
1539
  msgid ""
1540
  "It is extremely lightweight. You do not need to worry about it affecting "
1541
  "the space and speed of your website."
1542
  msgstr ""
1543
 
1544
- #: ../admin/partials/essential-content-types-admin-display.php:134
1545
  msgid ""
1546
  "You have the freedom to choose how your content would be displayed—whether "
1547
  "in ascending or descending alphabetical order by author name, title, date, "
1548
  "or in random order."
1549
  msgstr ""
1550
 
1551
- #: ../admin/partials/essential-content-types-admin-display.php:138
1552
  msgid "Enable/Disable any content/post type as needed"
1553
  msgstr ""
1554
 
1555
- #: ../admin/partials/essential-content-types-admin-display.php:139
1556
  msgid ""
1557
  "With this option, you can choose whether you want to display your content/"
1558
  "post type or not. You can enable or disable any content or post type as per "
1559
  "your need."
1560
  msgstr ""
1561
 
1562
- #: ../admin/partials/essential-content-types-admin-display.php:143
1563
  msgid "Super Simple to Set Up"
1564
  msgstr ""
1565
 
1566
- #: ../admin/partials/essential-content-types-admin-display.php:144
1567
  msgid ""
1568
  "It is super easy to set up. Even the beginners can set it up easily and "
1569
  "also, you do not need to have any coding knowledge. Just install, activate, "
1570
  "customize it your way and enjoy the plugin."
1571
  msgstr ""
1572
 
1573
- #: ../admin/partials/essential-content-types-admin-display.php:148
1574
- #: ../admin/partials/essential-content-types-admin-display.php:209
1575
  msgid "Responsive Design"
1576
  msgstr ""
1577
 
1578
- #: ../admin/partials/essential-content-types-admin-display.php:149
1579
  msgid ""
1580
  "One of the key features of our plugins is that your website will magically "
1581
  "respond and adapt to different screen sizes delivering an optimized design "
@@ -1583,11 +1593,11 @@ msgid ""
1583
  "zoom and scroll around when browsing on your mobile phone."
1584
  msgstr ""
1585
 
1586
- #: ../admin/partials/essential-content-types-admin-display.php:153
1587
  msgid "Incredible Support"
1588
  msgstr ""
1589
 
1590
- #: ../admin/partials/essential-content-types-admin-display.php:154
1591
  msgid ""
1592
  "We have a great line of support team and support documentation. You do not "
1593
  "need to worry about how to use the plugins we provide, just refer to our "
@@ -1595,11 +1605,11 @@ msgid ""
1595
  "your website, you can always hire our theme customizer!"
1596
  msgstr ""
1597
 
1598
- #: ../admin/partials/essential-content-types-admin-display.php:158
1599
  msgid "Widgets"
1600
  msgstr ""
1601
 
1602
- #: ../admin/partials/essential-content-types-admin-display.php:159
1603
  msgid ""
1604
  "Multitude of widget options provide you with the option to choose the "
1605
  "widgets that you want to display. You can have full control over each "
@@ -1607,110 +1617,110 @@ msgid ""
1607
  "your sidebars, footer and any sidebar widgets."
1608
  msgstr ""
1609
 
1610
- #: ../admin/partials/essential-content-types-admin-display.php:163
1611
  msgid "Shortcodes"
1612
  msgstr ""
1613
 
1614
- #: ../admin/partials/essential-content-types-admin-display.php:164
1615
  msgid ""
1616
  "With Shortcodes, you have the option to use the powerful shortcode options "
1617
  "to style multiple contents in completely different ways."
1618
  msgstr ""
1619
 
1620
- #: ../admin/partials/essential-content-types-admin-display.php:168
1621
- #: ../admin/partials/essential-content-types-admin-display.php:233
1622
  msgid "Number of Posts"
1623
  msgstr ""
1624
 
1625
- #: ../admin/partials/essential-content-types-admin-display.php:169
1626
  msgid ""
1627
  "You have the option to choose the number of posts you want to display on "
1628
  "your website. Pick the number of posts that suits the best on your website."
1629
  msgstr ""
1630
 
1631
- #: ../admin/partials/essential-content-types-admin-display.php:173
1632
- #: ../admin/partials/essential-content-types-admin-display.php:265
1633
  msgid "Column Option"
1634
  msgstr ""
1635
 
1636
- #: ../admin/partials/essential-content-types-admin-display.php:174
1637
  msgid ""
1638
  "Column Option allows you to choose from multiple column options. Several "
1639
  "options are available for all column types in general to edit the default "
1640
  "behavior."
1641
  msgstr ""
1642
 
1643
- #: ../admin/partials/essential-content-types-admin-display.php:177
1644
  msgid "Upgrade to Essential Content Types Premium »"
1645
  msgstr ""
1646
 
1647
- #: ../admin/partials/essential-content-types-admin-display.php:185
1648
  msgid "Get Essential Content Types Pro -"
1649
  msgstr ""
1650
 
1651
- #: ../admin/partials/essential-content-types-admin-display.php:185
1652
  msgid "Get It Here!"
1653
  msgstr ""
1654
 
1655
- #: ../admin/partials/essential-content-types-admin-display.php:186
1656
  msgid "You are currently using the free version of Essential Content Types."
1657
  msgstr ""
1658
 
1659
- #: ../admin/partials/essential-content-types-admin-display.php:187
1660
  msgid ""
1661
  "If you have purchased from catchplugins.com, then follow this link to the "
1662
  "installation instructions (particularly step 1)."
1663
  msgstr ""
1664
 
1665
- #: ../admin/partials/essential-content-types-admin-display.php:201
1666
  msgid "Free"
1667
  msgstr ""
1668
 
1669
- #: ../admin/partials/essential-content-types-admin-display.php:202
1670
  msgid "Pro"
1671
  msgstr ""
1672
 
1673
- #: ../admin/partials/essential-content-types-admin-display.php:217
1674
  msgid "Super Easy Setup"
1675
  msgstr ""
1676
 
1677
- #: ../admin/partials/essential-content-types-admin-display.php:249
1678
  msgid "Shortcode"
1679
  msgstr ""
1680
 
1681
- #: ../admin/partials/essential-content-types-admin-display.php:257
1682
  msgid "Custom Post Types"
1683
  msgstr ""
1684
 
1685
- #: ../admin/partials/essential-content-types-admin-display.php:273
1686
  msgid "Fixed Image Size"
1687
  msgstr ""
1688
 
1689
- #: ../admin/partials/essential-content-types-admin-display.php:329
1690
  msgid "Testimonial Slider Option"
1691
  msgstr ""
1692
 
1693
- #: ../admin/partials/essential-content-types-admin-display.php:337
1694
  msgid "Menu Title Font Size"
1695
  msgstr ""
1696
 
1697
- #: ../admin/partials/essential-content-types-admin-display.php:353
1698
  msgid "Featured Image Widget"
1699
  msgstr ""
1700
 
1701
- #: ../admin/partials/essential-content-types-admin-display.php:361
1702
  msgid "Testimonials Widget"
1703
  msgstr ""
1704
 
1705
- #: ../admin/partials/essential-content-types-admin-display.php:369
1706
  msgid "Services Widget"
1707
  msgstr ""
1708
 
1709
- #: ../admin/partials/essential-content-types-admin-display.php:377
1710
  msgid "Add Shortcode Button"
1711
  msgstr ""
1712
 
1713
- #: ../admin/partials/essential-content-types-admin-display.php:385
1714
  msgid "Ads-free Dashboard"
1715
  msgstr ""
1716
 
5
  msgstr ""
6
  "Project-Id-Version: Essential Content Types\n"
7
  "Report-Msgid-Bugs-To: https://wordpress.org/tags/_s\n"
8
+ "POT-Creation-Date: 2021-09-18 00:25-0700\n"
9
  "PO-Revision-Date: 2016-12-12 09:23-0500\n"
10
  "Last-Translator: Sakin Shrestha <info@catchplugins.com>\n"
11
  "Language-Team: Catch Plugins <info@catchplugins.com>\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
+ #: ../admin/class-essential-content-types-admin.php:179
26
  #: ../admin/partials/dashboard-display.php:19
27
  msgid "Settings"
28
  msgstr ""
29
 
30
+ #: ../admin/class-essential-content-types-admin.php:192
31
  #: ../admin/class-essential-content-types-admin.php:193
 
32
  #: ../admin/partials/essential-content-types-admin-display.php:17
33
  msgid "Essential Content Types"
34
  msgstr ""
35
 
36
+ #: ../admin/class-essential-content-types-admin.php:207
37
  msgid "You do not have sufficient permissions to access this page."
38
  msgstr ""
39
 
40
+ #: ../admin/class-essential-content-types-admin.php:217
41
+ #: ../includes/ctp-tabs-removal.php:59
42
+ msgid "Invalid Nonce"
43
+ msgstr ""
44
+
45
+ #: ../admin/class-essential-content-types-admin.php:220
46
+ #: ../includes/ctp-tabs-removal.php:62
47
+ msgid "Permission denied!"
48
+ msgstr ""
49
+
50
+ #: ../admin/class-essential-content-types-admin.php:233
51
+ #: ../includes/ctp-tabs-removal.php:75
52
  msgid "Connection Error. Please try again."
53
  msgstr ""
54
 
63
  #: ../admin/class-featured-content.php:104
64
  #: ../admin/class-featured-content.php:105
65
  #: ../admin/class-featured-content.php:303
66
+ #: ../admin/partials/dashboard-display.php:86
67
+ #: ../admin/partials/essential-content-types-admin-display.php:114
68
+ #: ../admin/partials/essential-content-types-admin-display.php:290
69
  msgid "Featured Content"
70
  msgstr ""
71
 
599
  msgstr ""
600
 
601
  #: ../admin/class-food-menu.php:504
602
+ #: ../admin/partials/essential-content-types-admin-display.php:134
603
+ #: ../admin/partials/essential-content-types-admin-display.php:242
604
  msgid "Order"
605
  msgstr ""
606
 
715
  msgstr ""
716
 
717
  #: ../admin/class-portfolio.php:232 ../admin/class-portfolio.php:418
718
+ #: ../admin/partials/essential-content-types-admin-display.php:104
719
+ #: ../admin/partials/essential-content-types-admin-display.php:282
720
  msgid "Portfolio"
721
  msgstr ""
722
 
930
  msgstr ""
931
 
932
  #: ../admin/class-service.php:103 ../admin/class-service.php:284
933
+ #: ../admin/class-service.php:290 ../admin/partials/dashboard-display.php:115
934
+ #: ../admin/partials/essential-content-types-admin-display.php:119
935
+ #: ../admin/partials/essential-content-types-admin-display.php:298
936
  msgid "Services"
937
  msgstr ""
938
 
1145
  #: ../admin/class-testimonial.php:118 ../admin/class-testimonial.php:269
1146
  #: ../admin/class-testimonial.php:271 ../admin/class-testimonial.php:461
1147
  #: ../admin/class-testimonial.php:471
1148
+ #: ../admin/partials/dashboard-display.php:58
1149
+ #: ../admin/partials/essential-content-types-admin-display.php:109
1150
  msgid "Testimonials"
1151
  msgstr ""
1152
 
1168
  msgstr ""
1169
 
1170
  #: ../admin/class-testimonial.php:270
1171
+ #: ../admin/partials/essential-content-types-admin-display.php:306
1172
  msgid "Testimonial"
1173
  msgstr ""
1174
 
1322
  msgid "Portfolios/Projects"
1323
  msgstr ""
1324
 
1325
+ #: ../admin/partials/dashboard-display.php:41
1326
  msgid "Portfolio – Create and display your portfolio on your website."
1327
  msgstr ""
1328
 
1329
+ #: ../admin/partials/dashboard-display.php:43
1330
  msgid ""
1331
  "Once enabled, Portfolio Post Type options will appear on Dashboard Menu"
1332
  msgstr ""
1333
 
1334
+ #: ../admin/partials/dashboard-display.php:45
1335
  #, php-format
1336
  msgid "%1$sClick here%2$s to view Portfolio Archive Options."
1337
  msgstr ""
1338
 
1339
+ #: ../admin/partials/dashboard-display.php:69
1340
  msgid "Testimonials – Add customer testimonials to your website."
1341
  msgstr ""
1342
 
1343
+ #: ../admin/partials/dashboard-display.php:71
1344
  msgid ""
1345
  "Once enabled, Testimonials Post Type options will appear on Dashboard Menu"
1346
  msgstr ""
1347
 
1348
+ #: ../admin/partials/dashboard-display.php:73
1349
  #, php-format
1350
  msgid "%1$sClick here%2$s to view Testimonial Archive Options."
1351
  msgstr ""
1352
 
1353
+ #: ../admin/partials/dashboard-display.php:98
1354
  msgid ""
1355
  "Featured Content – Display the content you want as featured content to "
1356
  "attract visitors' attention."
1357
  msgstr ""
1358
 
1359
+ #: ../admin/partials/dashboard-display.php:100
1360
  msgid ""
1361
  "Once enabled, Featured Content Post Type options will appear on Dashboard "
1362
  "Menu"
1363
  msgstr ""
1364
 
1365
+ #: ../admin/partials/dashboard-display.php:102
1366
  #, php-format
1367
  msgid "%1$sClick here%2$s to view Featured Content Archive Options."
1368
  msgstr ""
1369
 
1370
+ #: ../admin/partials/dashboard-display.php:127
1371
  msgid "Service – Create and display your service on your website."
1372
  msgstr ""
1373
 
1374
+ #: ../admin/partials/dashboard-display.php:129
1375
  msgid "Once enabled, Service Post Type options will appear on Dashboard Menu"
1376
  msgstr ""
1377
 
1378
+ #: ../admin/partials/dashboard-display.php:131
1379
  #, php-format
1380
  msgid "%1$sClick here%2$s to view Service Archive Options."
1381
  msgstr ""
1382
 
1383
+ #: ../admin/partials/dashboard-display.php:146
1384
+ #: ../admin/partials/essential-content-types-admin-display.php:87
1385
+ #: ../admin/partials/essential-content-types-admin-display.php:314
1386
  #: ../admin/partials/sidebar.php:19
1387
  msgid "Food Menu"
1388
  msgstr ""
1389
 
1390
+ #: ../admin/partials/dashboard-display.php:158
1391
  msgid "Food Menu – Create and display your Food Menu items on your website."
1392
  msgstr ""
1393
 
1394
+ #: ../admin/partials/dashboard-display.php:160
1395
  msgid ""
1396
  "Once enabled, Food Menu Items Post Type options will appear on Dashboard "
1397
  "Menu"
1410
  msgstr ""
1411
 
1412
  #: ../admin/partials/essential-content-types-admin-display.php:27
1413
+ #: ../admin/partials/essential-content-types-admin-display.php:98
1414
+ #: ../admin/partials/essential-content-types-admin-display.php:201
1415
  msgid "Features"
1416
  msgstr ""
1417
 
1418
  #: ../admin/partials/essential-content-types-admin-display.php:28
1419
+ #: ../admin/partials/essential-content-types-admin-display.php:193
1420
  msgid "Compare Table"
1421
  msgstr ""
1422
 
1434
  msgid "Turn On Catch Themes & Catch Plugin tabs"
1435
  msgstr ""
1436
 
1437
+ #: ../admin/partials/essential-content-types-admin-display.php:68
1438
  msgid "Go Premium!"
1439
  msgstr ""
1440
 
1441
+ #: ../admin/partials/essential-content-types-admin-display.php:73
1442
  msgid "Dismiss this item."
1443
  msgstr ""
1444
 
1445
+ #: ../admin/partials/essential-content-types-admin-display.php:77
1446
  #: ../admin/partials/sidebar.php:9
1447
  msgid "Featured Content Widget"
1448
  msgstr ""
1449
 
1450
+ #: ../admin/partials/essential-content-types-admin-display.php:78
1451
+ #: ../admin/partials/essential-content-types-admin-display.php:346
1452
  #: ../admin/partials/sidebar.php:10
1453
  msgid "Portfolio Widget"
1454
  msgstr ""
1455
 
1456
+ #: ../admin/partials/essential-content-types-admin-display.php:79
1457
  #: ../admin/partials/sidebar.php:11
1458
  msgid "Testomonials Widget"
1459
  msgstr ""
1460
 
1461
+ #: ../admin/partials/essential-content-types-admin-display.php:80
1462
  #: ../admin/partials/sidebar.php:12
1463
  msgid "Services Widget"
1464
  msgstr ""
1465
 
1466
+ #: ../admin/partials/essential-content-types-admin-display.php:81
1467
  #: ../admin/partials/sidebar.php:13
1468
  msgid "Ability to add shortcodes via button"
1469
  msgstr ""
1470
 
1471
+ #: ../admin/partials/essential-content-types-admin-display.php:82
1472
+ #: ../admin/partials/essential-content-types-admin-display.php:322
1473
  #: ../admin/partials/sidebar.php:14
1474
  msgid "Flexible Image Size"
1475
  msgstr ""
1476
 
1477
+ #: ../admin/partials/essential-content-types-admin-display.php:83
1478
  #: ../admin/partials/sidebar.php:15
1479
  msgid "Events Widget"
1480
  msgstr ""
1481
 
1482
+ #: ../admin/partials/essential-content-types-admin-display.php:84
1483
  #: ../admin/partials/sidebar.php:16
1484
  msgid "Team Widget"
1485
  msgstr ""
1486
 
1487
+ #: ../admin/partials/essential-content-types-admin-display.php:85
1488
  #: ../admin/partials/sidebar.php:17
1489
  msgid "Events Custom Post Type"
1490
  msgstr ""
1491
 
1492
+ #: ../admin/partials/essential-content-types-admin-display.php:86
1493
  #: ../admin/partials/sidebar.php:18
1494
  msgid "Team Custom Post Type"
1495
  msgstr ""
1496
 
1497
+ #: ../admin/partials/essential-content-types-admin-display.php:89
1498
  msgid "Find out why you should upgrade to Essential Content Types Premium »"
1499
  msgstr ""
1500
 
1501
+ #: ../admin/partials/essential-content-types-admin-display.php:105
1502
  msgid ""
1503
  "Portfolio enables you to showcase your professional accomplishments to the "
1504
  "world at large. Display your most impressive Portfolios in the way you "
1506
  "columns. A marvelous way to easily display your experience and expertise."
1507
  msgstr ""
1508
 
1509
+ #: ../admin/partials/essential-content-types-admin-display.php:110
1510
  msgid ""
1511
  "People are always after authenticity. They are always looking for ways to "
1512
  "know what your goods or services are really like. Customer testimonials "
1514
  "want and also select your testimonial layout type up to 6 columns."
1515
  msgstr ""
1516
 
1517
+ #: ../admin/partials/essential-content-types-admin-display.php:115
1518
  msgid ""
1519
  "Featured Content allows you to showcase your recent and popular posts on "
1520
  "your website. Your Featured Content can be displayed up to 1 to 6 columns. "
1521
  "Enable the Featured Content option and display your most impressive posts."
1522
  msgstr ""
1523
 
1524
+ #: ../admin/partials/essential-content-types-admin-display.php:120
1525
  msgid ""
1526
  "Every website owner wants people to know about eh services they provide. "
1527
  "You can place the services you provide right on the spotlight. Choose to "
1529
  "world know what you can provide them with."
1530
  msgstr ""
1531
 
1532
+ #: ../admin/partials/essential-content-types-admin-display.php:124
1533
  msgid "Supports all themes on WordPress"
1534
  msgstr ""
1535
 
1536
+ #: ../admin/partials/essential-content-types-admin-display.php:125
1537
  msgid ""
1538
  "You don’t have to worry if you have a slightly different or complicated "
1539
  "theme installed on your website. It supports all the themes on WordPress "
1540
  "and makes your website more striking and playful."
1541
  msgstr ""
1542
 
1543
+ #: ../admin/partials/essential-content-types-admin-display.php:129
1544
+ #: ../admin/partials/essential-content-types-admin-display.php:226
1545
  msgid "Lightweight"
1546
  msgstr ""
1547
 
1548
+ #: ../admin/partials/essential-content-types-admin-display.php:130
1549
  msgid ""
1550
  "It is extremely lightweight. You do not need to worry about it affecting "
1551
  "the space and speed of your website."
1552
  msgstr ""
1553
 
1554
+ #: ../admin/partials/essential-content-types-admin-display.php:135
1555
  msgid ""
1556
  "You have the freedom to choose how your content would be displayed—whether "
1557
  "in ascending or descending alphabetical order by author name, title, date, "
1558
  "or in random order."
1559
  msgstr ""
1560
 
1561
+ #: ../admin/partials/essential-content-types-admin-display.php:139
1562
  msgid "Enable/Disable any content/post type as needed"
1563
  msgstr ""
1564
 
1565
+ #: ../admin/partials/essential-content-types-admin-display.php:140
1566
  msgid ""
1567
  "With this option, you can choose whether you want to display your content/"
1568
  "post type or not. You can enable or disable any content or post type as per "
1569
  "your need."
1570
  msgstr ""
1571
 
1572
+ #: ../admin/partials/essential-content-types-admin-display.php:144
1573
  msgid "Super Simple to Set Up"
1574
  msgstr ""
1575
 
1576
+ #: ../admin/partials/essential-content-types-admin-display.php:145
1577
  msgid ""
1578
  "It is super easy to set up. Even the beginners can set it up easily and "
1579
  "also, you do not need to have any coding knowledge. Just install, activate, "
1580
  "customize it your way and enjoy the plugin."
1581
  msgstr ""
1582
 
1583
+ #: ../admin/partials/essential-content-types-admin-display.php:149
1584
+ #: ../admin/partials/essential-content-types-admin-display.php:210
1585
  msgid "Responsive Design"
1586
  msgstr ""
1587
 
1588
+ #: ../admin/partials/essential-content-types-admin-display.php:150
1589
  msgid ""
1590
  "One of the key features of our plugins is that your website will magically "
1591
  "respond and adapt to different screen sizes delivering an optimized design "
1593
  "zoom and scroll around when browsing on your mobile phone."
1594
  msgstr ""
1595
 
1596
+ #: ../admin/partials/essential-content-types-admin-display.php:154
1597
  msgid "Incredible Support"
1598
  msgstr ""
1599
 
1600
+ #: ../admin/partials/essential-content-types-admin-display.php:155
1601
  msgid ""
1602
  "We have a great line of support team and support documentation. You do not "
1603
  "need to worry about how to use the plugins we provide, just refer to our "
1605
  "your website, you can always hire our theme customizer!"
1606
  msgstr ""
1607
 
1608
+ #: ../admin/partials/essential-content-types-admin-display.php:159
1609
  msgid "Widgets"
1610
  msgstr ""
1611
 
1612
+ #: ../admin/partials/essential-content-types-admin-display.php:160
1613
  msgid ""
1614
  "Multitude of widget options provide you with the option to choose the "
1615
  "widgets that you want to display. You can have full control over each "
1617
  "your sidebars, footer and any sidebar widgets."
1618
  msgstr ""
1619
 
1620
+ #: ../admin/partials/essential-content-types-admin-display.php:164
1621
  msgid "Shortcodes"
1622
  msgstr ""
1623
 
1624
+ #: ../admin/partials/essential-content-types-admin-display.php:165
1625
  msgid ""
1626
  "With Shortcodes, you have the option to use the powerful shortcode options "
1627
  "to style multiple contents in completely different ways."
1628
  msgstr ""
1629
 
1630
+ #: ../admin/partials/essential-content-types-admin-display.php:169
1631
+ #: ../admin/partials/essential-content-types-admin-display.php:234
1632
  msgid "Number of Posts"
1633
  msgstr ""
1634
 
1635
+ #: ../admin/partials/essential-content-types-admin-display.php:170
1636
  msgid ""
1637
  "You have the option to choose the number of posts you want to display on "
1638
  "your website. Pick the number of posts that suits the best on your website."
1639
  msgstr ""
1640
 
1641
+ #: ../admin/partials/essential-content-types-admin-display.php:174
1642
+ #: ../admin/partials/essential-content-types-admin-display.php:266
1643
  msgid "Column Option"
1644
  msgstr ""
1645
 
1646
+ #: ../admin/partials/essential-content-types-admin-display.php:175
1647
  msgid ""
1648
  "Column Option allows you to choose from multiple column options. Several "
1649
  "options are available for all column types in general to edit the default "
1650
  "behavior."
1651
  msgstr ""
1652
 
1653
+ #: ../admin/partials/essential-content-types-admin-display.php:178
1654
  msgid "Upgrade to Essential Content Types Premium »"
1655
  msgstr ""
1656
 
1657
+ #: ../admin/partials/essential-content-types-admin-display.php:186
1658
  msgid "Get Essential Content Types Pro -"
1659
  msgstr ""
1660
 
1661
+ #: ../admin/partials/essential-content-types-admin-display.php:186
1662
  msgid "Get It Here!"
1663
  msgstr ""
1664
 
1665
+ #: ../admin/partials/essential-content-types-admin-display.php:187
1666
  msgid "You are currently using the free version of Essential Content Types."
1667
  msgstr ""
1668
 
1669
+ #: ../admin/partials/essential-content-types-admin-display.php:188
1670
  msgid ""
1671
  "If you have purchased from catchplugins.com, then follow this link to the "
1672
  "installation instructions (particularly step 1)."
1673
  msgstr ""
1674
 
1675
+ #: ../admin/partials/essential-content-types-admin-display.php:202
1676
  msgid "Free"
1677
  msgstr ""
1678
 
1679
+ #: ../admin/partials/essential-content-types-admin-display.php:203
1680
  msgid "Pro"
1681
  msgstr ""
1682
 
1683
+ #: ../admin/partials/essential-content-types-admin-display.php:218
1684
  msgid "Super Easy Setup"
1685
  msgstr ""
1686
 
1687
+ #: ../admin/partials/essential-content-types-admin-display.php:250
1688
  msgid "Shortcode"
1689
  msgstr ""
1690
 
1691
+ #: ../admin/partials/essential-content-types-admin-display.php:258
1692
  msgid "Custom Post Types"
1693
  msgstr ""
1694
 
1695
+ #: ../admin/partials/essential-content-types-admin-display.php:274
1696
  msgid "Fixed Image Size"
1697
  msgstr ""
1698
 
1699
+ #: ../admin/partials/essential-content-types-admin-display.php:330
1700
  msgid "Testimonial Slider Option"
1701
  msgstr ""
1702
 
1703
+ #: ../admin/partials/essential-content-types-admin-display.php:338
1704
  msgid "Menu Title Font Size"
1705
  msgstr ""
1706
 
1707
+ #: ../admin/partials/essential-content-types-admin-display.php:354
1708
  msgid "Featured Image Widget"
1709
  msgstr ""
1710
 
1711
+ #: ../admin/partials/essential-content-types-admin-display.php:362
1712
  msgid "Testimonials Widget"
1713
  msgstr ""
1714
 
1715
+ #: ../admin/partials/essential-content-types-admin-display.php:370
1716
  msgid "Services Widget"
1717
  msgstr ""
1718
 
1719
+ #: ../admin/partials/essential-content-types-admin-display.php:378
1720
  msgid "Add Shortcode Button"
1721
  msgstr ""
1722
 
1723
+ #: ../admin/partials/essential-content-types-admin-display.php:386
1724
  msgid "Ads-free Dashboard"
1725
  msgstr ""
1726