WordPress Page Builder – Beaver Builder - Version 1.7.4

Version Description

Download this release

Release Info

Developer justinbusa
Plugin Icon 128x128 WordPress Page Builder – Beaver Builder
Version 1.7.4
Comparing to
See all releases

Code changes from version 1.7.3 to 1.7.4

changelog.txt CHANGED
@@ -1,3 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <h4>1.7.3 - 02/01/2016</h4>
2
  <p><strong>Enhancements</strong></p>
3
  <ul>
1
+ <h4>1.7.4 - 02/22/2016</h4>
2
+ <p><strong>Enhancements</strong></p>
3
+ <ul>
4
+ <li>Added a welcome page to the admin settings.</li>
5
+ <li>Added updater enhancements to support the new domain manager.</li>
6
+ <li>Pagination in the Gallery module's lightbox is now sequential instead of top to bottom.</li>
7
+ <li>Changed the column settings icon from a wrench icon to columns icon for consistency with the module overlay.</li>
8
+ <li>The Content Slider module now adds the srcset attribute to images when it can.</li>
9
+ <li>The URL is now updated when a smooth scroll link has finished scrolling.</li>
10
+ <li>Args can now be passed to auto suggest fields for modifying any of the auto suggest settings.</li>
11
+ <li>Misc translation updates.</li>
12
+ </ul>
13
+ <p><strong>Bug Fixes</strong></p>
14
+ <ul>
15
+ <li>Fixed a bug with flashing slides in the Content Slider module.</li>
16
+ <li>Fixed a bug with column display settings when equal heights are enabled.</li>
17
+ <li>Fixed a bug with shortcodes not rendering on bbPress pages.</li>
18
+ <li>Fixed a bug with the Gallery module not working in the tabs module when added via a shortcode.</li>
19
+ <li>Fixed a bug with the fl-builder class being added to archive pages.</li>
20
+ <li>Fixed a bug with the number showing in the Number Counter module before it has animated.</li>
21
+ <li>Fixed a bug with duplicate videos showing in Video modules when using the browser's back button.</li>
22
+ <li>Fixed issues with bad Layout Settings JavaScript breaking the builder.</li>
23
+ <li>Fixed module CSS bugs with empty values.</li>
24
+ <li>Fixed a translation bug in the Posts module with translating the comments string.</li>
25
+ <li>Fixed issues with schema structured data in all post modules.</li>
26
+ <li>Fixed a JavaScript bug with the Accordion module.</li>
27
+ <li>Fixes edge case issues with widget/shortcode scripts firing before they should. Specifically fixes issues with Hero Slider.</li>
28
+ <li>Fixed CSS issues with post titles being hidden when loading builder content via a shortcode.</li>
29
+ <li>Fixed Thai translation.</li>
30
+ </ul>
31
+
32
  <h4>1.7.3 - 02/01/2016</h4>
33
  <p><strong>Enhancements</strong></p>
34
  <ul>
classes/class-fl-builder-admin-settings.php CHANGED
@@ -143,6 +143,10 @@ final class FLBuilderAdminSettings {
143
  static public function render_nav_items()
144
  {
145
  $item_data = array(
 
 
 
 
146
  'license' => array(
147
  'title' => __( 'License', 'fl-builder' ),
148
  'show' => FL_BUILDER_LITE !== true && ( is_network_admin() || ! self::multisite_support() )
@@ -204,6 +208,11 @@ final class FLBuilderAdminSettings {
204
  */
205
  static public function render_forms()
206
  {
 
 
 
 
 
207
  // License
208
  if ( is_network_admin() || ! self::multisite_support() ) {
209
  self::render_form( 'license' );
143
  static public function render_nav_items()
144
  {
145
  $item_data = array(
146
+ 'welcome' => array(
147
+ 'title' => __( 'Welcome', 'fl-builder' ),
148
+ 'show' => FLBuilderModel::get_branding() == __( 'Page Builder', 'fl-builder' ) && ( is_network_admin() || ! self::multisite_support() )
149
+ ),
150
  'license' => array(
151
  'title' => __( 'License', 'fl-builder' ),
152
  'show' => FL_BUILDER_LITE !== true && ( is_network_admin() || ! self::multisite_support() )
208
  */
209
  static public function render_forms()
210
  {
211
+ // Welcome
212
+ if ( FLBuilderModel::get_branding() == __( 'Page Builder', 'fl-builder' ) && ( is_network_admin() || ! self::multisite_support() ) ) {
213
+ self::render_form( 'welcome' );
214
+ }
215
+
216
  // License
217
  if ( is_network_admin() || ! self::multisite_support() ) {
218
  self::render_form( 'license' );
classes/class-fl-builder-admin.php CHANGED
@@ -56,9 +56,7 @@ final class FLBuilderAdmin {
56
  }
57
 
58
  // Success! Trigger the activation notice.
59
- if(FL_BUILDER_LITE !== true) {
60
- update_site_option('_fl_builder_activation_admin_notice', true);
61
- }
62
  }
63
 
64
  /**
@@ -102,14 +100,23 @@ final class FLBuilderAdmin {
102
  static public function activate_notice()
103
  {
104
  if ( class_exists('FLBuilderMultisiteSettings') && is_multisite() && current_user_can( 'manage_network_plugins' ) ) {
105
- $href = esc_url( network_admin_url( '/settings.php?page=fl-builder-multisite-settings#license' ) );
 
 
 
 
 
 
 
 
106
  }
107
  else {
108
- $href = esc_url( admin_url( '/options-general.php?page=fl-builder-settings#license' ) );
 
109
  }
110
 
111
  echo '<div class="updated" style="background: #d3ebc1;">';
112
- echo '<p><strong>' . sprintf( __( 'Page Builder activated! <a%s>Click here</a> to enable remote updates.', 'fl-builder' ), ' href="' . esc_url( $href ) . '"' ) . '</strong></p>';
113
  echo '</div>';
114
  }
115
 
56
  }
57
 
58
  // Success! Trigger the activation notice.
59
+ update_site_option('_fl_builder_activation_admin_notice', true);
 
 
60
  }
61
 
62
  /**
100
  static public function activate_notice()
101
  {
102
  if ( class_exists('FLBuilderMultisiteSettings') && is_multisite() && current_user_can( 'manage_network_plugins' ) ) {
103
+ $href = esc_url( network_admin_url( '/settings.php?page=fl-builder-multisite-settings' ) );
104
+ }
105
+ else {
106
+ $href = esc_url( admin_url( '/options-general.php?page=fl-builder-settings' ) );
107
+ }
108
+
109
+ if ( FL_BUILDER_LITE !== true ) {
110
+ $href .= '#license';
111
+ $message = __( 'Page Builder activated! <a%s>Click here</a> to enable remote updates.', 'fl-builder' );
112
  }
113
  else {
114
+ $href .= '#welcome';
115
+ $message = __( 'Page Builder activated! <a%s>Click here</a> to get started.', 'fl-builder' );
116
  }
117
 
118
  echo '<div class="updated" style="background: #d3ebc1;">';
119
+ echo '<p><strong>' . sprintf( $message, ' href="' . esc_url( $href ) . '"' ) . '</strong></p>';
120
  echo '</div>';
121
  }
122
 
classes/class-fl-builder.php CHANGED
@@ -255,35 +255,16 @@ final class FLBuilder {
255
  }
256
 
257
  /**
258
- * Include a jQuery fallback script when the builder is
259
- * enabled for a page.
260
- *
261
- * @since 1.0
262
- * @return void
263
- */
264
- static public function include_jquery()
265
- {
266
- if(FLBuilderModel::is_builder_enabled()) {
267
- include FL_BUILDER_DIR . 'includes/jquery.php';
268
- }
269
- }
270
-
271
- /**
272
- * Register and enqueue the styles and scripts for all builder
273
- * layouts in the main WordPress query.
274
  *
275
- * @since 1.0
276
  * @return void
277
  */
278
- static public function layout_styles_scripts()
279
  {
280
- global $wp_query;
281
- global $post;
282
-
283
- $original_post = $post;
284
- $ver = FL_BUILDER_VERSION;
285
- $css_url = plugins_url('/css/', FL_BUILDER_FILE);
286
- $js_url = plugins_url('/js/', FL_BUILDER_FILE);
287
 
288
  // Register additional CSS
289
  wp_register_style('font-awesome', $css_url . 'font-awesome.min.css', array(), $ver);
@@ -304,7 +285,7 @@ final class FLBuilder {
304
  wp_register_script('jquery-mosaicflow', $js_url . 'jquery.mosaicflow.min.js', array('jquery'), $ver, true);
305
  wp_register_script('jquery-waypoints', $js_url . 'jquery.waypoints.min.js', array('jquery'), $ver, true);
306
  wp_register_script('jquery-wookmark', $js_url . 'jquery.wookmark.min.js', array('jquery'), $ver, true);
307
-
308
  // YUI 3 (Needed for the slideshow)
309
  if(FLBuilderModel::is_ssl()) {
310
  wp_register_script('yui3', 'https://yui-s.yahooapis.com/3.5.1/build/yui/yui-min.js', array(), '3.5.1', false);
@@ -312,6 +293,21 @@ final class FLBuilder {
312
  else {
313
  wp_register_script('yui3', 'http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js', array(), '3.5.1', false);
314
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
 
316
  // Enqueue assets for posts in the main query.
317
  if ( isset( $wp_query->posts ) ) {
@@ -408,12 +404,12 @@ final class FLBuilder {
408
  }
409
 
410
  /**
411
- * Enqueue the styles and scripts for the builder interface.
412
  *
413
- * @since 1.0
414
  * @return void
415
  */
416
- static public function styles_scripts()
417
  {
418
  if(FLBuilderModel::is_builder_active()) {
419
 
@@ -512,6 +508,20 @@ final class FLBuilder {
512
  }
513
  }
514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
  /**
516
  * Adds builder classes to the body class.
517
  *
@@ -521,7 +531,7 @@ final class FLBuilder {
521
  */
522
  static public function body_class($classes)
523
  {
524
- if(FLBuilderModel::is_builder_enabled()) {
525
  $classes[] = 'fl-builder';
526
  }
527
  if(FLBuilderModel::is_builder_active() && !FLBuilderModel::current_user_has_editing_capability()) {
@@ -744,6 +754,9 @@ final class FLBuilder {
744
  $wp_query = new WP_Query( $args );
745
  $post_data = FLBuilderModel::get_post_data();
746
 
 
 
 
747
  // Unset the builder's post_data post ID so the global $post is used.
748
  FLBuilderModel::update_post_data( 'post_id', null );
749
 
@@ -1988,7 +2001,8 @@ final class FLBuilder {
1988
 
1989
  // Default page heading
1990
  if($post && !$global_settings->show_default_heading && ($post->post_type == 'page' || $post->post_type == 'fl-builder-template')) {
1991
- $css .= $global_settings->default_heading_selector . ' { display:none; }';
 
1992
  }
1993
 
1994
  // Custom Global CSS
@@ -2442,4 +2456,26 @@ final class FLBuilder {
2442
  error_log( ob_get_clean() );
2443
  }
2444
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2445
  }
255
  }
256
 
257
  /**
258
+ * Register the styles and scripts for builder layouts.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  *
260
+ * @since 1.7.4
261
  * @return void
262
  */
263
+ static public function register_layout_styles_scripts()
264
  {
265
+ $ver = FL_BUILDER_VERSION;
266
+ $css_url = plugins_url('/css/', FL_BUILDER_FILE);
267
+ $js_url = plugins_url('/js/', FL_BUILDER_FILE);
 
 
 
 
268
 
269
  // Register additional CSS
270
  wp_register_style('font-awesome', $css_url . 'font-awesome.min.css', array(), $ver);
285
  wp_register_script('jquery-mosaicflow', $js_url . 'jquery.mosaicflow.min.js', array('jquery'), $ver, true);
286
  wp_register_script('jquery-waypoints', $js_url . 'jquery.waypoints.min.js', array('jquery'), $ver, true);
287
  wp_register_script('jquery-wookmark', $js_url . 'jquery.wookmark.min.js', array('jquery'), $ver, true);
288
+
289
  // YUI 3 (Needed for the slideshow)
290
  if(FLBuilderModel::is_ssl()) {
291
  wp_register_script('yui3', 'https://yui-s.yahooapis.com/3.5.1/build/yui/yui-min.js', array(), '3.5.1', false);
293
  else {
294
  wp_register_script('yui3', 'http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js', array(), '3.5.1', false);
295
  }
296
+ }
297
+
298
+ /**
299
+ * Enqueue the styles and scripts for all builder layouts
300
+ * in the main WordPress query.
301
+ *
302
+ * @since 1.7.4
303
+ * @return void
304
+ */
305
+ static public function enqueue_all_layouts_styles_scripts()
306
+ {
307
+ global $wp_query;
308
+ global $post;
309
+
310
+ $original_post = $post;
311
 
312
  // Enqueue assets for posts in the main query.
313
  if ( isset( $wp_query->posts ) ) {
404
  }
405
 
406
  /**
407
+ * Register and enqueue the styles and scripts for the builder UI.
408
  *
409
+ * @since 1.7.4
410
  * @return void
411
  */
412
+ static public function enqueue_ui_styles_scripts()
413
  {
414
  if(FLBuilderModel::is_builder_active()) {
415
 
508
  }
509
  }
510
 
511
+ /**
512
+ * Include a jQuery fallback script when the builder is
513
+ * enabled for a page.
514
+ *
515
+ * @since 1.0
516
+ * @return void
517
+ */
518
+ static public function include_jquery()
519
+ {
520
+ if(FLBuilderModel::is_builder_enabled()) {
521
+ include FL_BUILDER_DIR . 'includes/jquery.php';
522
+ }
523
+ }
524
+
525
  /**
526
  * Adds builder classes to the body class.
527
  *
531
  */
532
  static public function body_class($classes)
533
  {
534
+ if(FLBuilderModel::is_builder_enabled() && !is_archive()) {
535
  $classes[] = 'fl-builder';
536
  }
537
  if(FLBuilderModel::is_builder_active() && !FLBuilderModel::current_user_has_editing_capability()) {
754
  $wp_query = new WP_Query( $args );
755
  $post_data = FLBuilderModel::get_post_data();
756
 
757
+ // Make sure the builder's render content filter is present.
758
+ add_filter( 'the_content', 'FLBuilder::render_content' );
759
+
760
  // Unset the builder's post_data post ID so the global $post is used.
761
  FLBuilderModel::update_post_data( 'post_id', null );
762
 
2001
 
2002
  // Default page heading
2003
  if($post && !$global_settings->show_default_heading && ($post->post_type == 'page' || $post->post_type == 'fl-builder-template')) {
2004
+ $css .= '.page ' . $global_settings->default_heading_selector . ' { display:none; }';
2005
+ $css .= '.single-fl-builder-template ' . $global_settings->default_heading_selector . ' { display:none; }';
2006
  }
2007
 
2008
  // Custom Global CSS
2456
  error_log( ob_get_clean() );
2457
  }
2458
  }
2459
+
2460
+ /**
2461
+ * @since 1.0
2462
+ * @deprecated 1.7.4
2463
+ */
2464
+ static public function layout_styles_scripts( $post_id )
2465
+ {
2466
+ _deprecated_function( __METHOD__, '1.7.4', __CLASS__ . '::enqueue_layout_styles_scripts()' );
2467
+
2468
+ self::enqueue_layout_styles_scripts( $post_id );
2469
+ }
2470
+
2471
+ /**
2472
+ * @since 1.0
2473
+ * @deprecated 1.7.4
2474
+ */
2475
+ static public function styles_scripts()
2476
+ {
2477
+ _deprecated_function( __METHOD__, '1.7.4', __CLASS__ . '::enqueue_ui_styles_scripts()' );
2478
+
2479
+ self::enqueue_ui_styles_scripts();
2480
+ }
2481
  }
css/fl-builder-admin-settings.css CHANGED
@@ -63,6 +63,47 @@
63
  margin: 30px 0 5px;
64
  }
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  /* Settings Forms
67
  ----------------------------------------------------------- */
68
 
@@ -125,7 +166,7 @@
125
 
126
  /* Nav
127
  ----------------------------------------------------------- */
128
-
129
  .fl-settings-nav {
130
  float: none;
131
  margin: 15px 0 0 0;
@@ -134,7 +175,7 @@
134
 
135
  /* Content
136
  ----------------------------------------------------------- */
137
-
138
  .fl-settings-content {
139
  float: none;
140
  margin-top: 15px;
@@ -153,12 +194,12 @@
153
  ----------------------------------------------------------- */
154
 
155
  @media (max-width: 782px) {
156
-
157
  /* Settings Forms
158
  ----------------------------------------------------------- */
159
-
160
  .fl-settings-form th,
161
  .fl-settings-form td {
162
  padding: 5px 17px;
163
  }
164
- }
63
  margin: 30px 0 5px;
64
  }
65
 
66
+ /* Welcome Page
67
+ ----------------------------------------------------------- */
68
+
69
+ #fl-welcome-form {
70
+ max-width: none;
71
+ }
72
+ .fl-welcome-page-content {
73
+ max-width: 880px;
74
+ }
75
+ .fl-welcome-page-content ul {
76
+ list-style-type: disc;
77
+ margin: 15px 0 20px 35px;
78
+ }
79
+ .fl-welcome-page-content hr {
80
+ clear: both;
81
+ margin: 20px 0 5px;
82
+ }
83
+ .fl-welcome-page-content .fl-welcome-col-wrap {
84
+ clear:both;
85
+ }
86
+ .fl-welcome-page-content .fl-welcome-col {
87
+ box-sizing: border-box;
88
+ display: inline-block;
89
+ width: 49.7%;
90
+ vertical-align: text-top;
91
+ }
92
+ .fl-welcome-page-content .fl-welcome-col:first-child {
93
+ padding-right: 30px;
94
+ }
95
+ .fl-welcome-page-content .fl-welcome-col:last-child {
96
+ padding-left: 30px;
97
+ }
98
+ .fl-welcome-page-content .fl-welcome-big-link {
99
+ font-weight: 600;
100
+ font-size: 14px;
101
+ }
102
+ .fl-welcome-page-content .fl-welcome-img {
103
+ max-width: 100%;
104
+ display: inline-block;
105
+ }
106
+
107
  /* Settings Forms
108
  ----------------------------------------------------------- */
109
 
166
 
167
  /* Nav
168
  ----------------------------------------------------------- */
169
+
170
  .fl-settings-nav {
171
  float: none;
172
  margin: 15px 0 0 0;
175
 
176
  /* Content
177
  ----------------------------------------------------------- */
178
+
179
  .fl-settings-content {
180
  float: none;
181
  margin-top: 15px;
194
  ----------------------------------------------------------- */
195
 
196
  @media (max-width: 782px) {
197
+
198
  /* Settings Forms
199
  ----------------------------------------------------------- */
200
+
201
  .fl-settings-form th,
202
  .fl-settings-form td {
203
  padding: 5px 17px;
204
  }
205
+ }
css/fl-builder-layout-medium.css CHANGED
@@ -2,16 +2,16 @@
2
  ------------------------------------------------------ */
3
 
4
  .fl-visible-desktop,
5
- .fl-visible-desktop.fl-col,
6
  .fl-visible-mobile,
7
- .fl-visible-mobile.fl-col {
 
8
  display: none;
9
  }
10
  .fl-visible-desktop-medium,
11
- .fl-visible-desktop-medium.fl-col,
12
  .fl-visible-medium,
13
- .fl-visible-medium.fl-col,
14
  .fl-visible-medium-mobile,
15
- .fl-visible-medium-mobile.fl-col {
 
 
16
  display: block;
17
  }
2
  ------------------------------------------------------ */
3
 
4
  .fl-visible-desktop,
 
5
  .fl-visible-mobile,
6
+ .fl-col-group .fl-visible-desktop.fl-col,
7
+ .fl-col-group .fl-visible-mobile.fl-col {
8
  display: none;
9
  }
10
  .fl-visible-desktop-medium,
 
11
  .fl-visible-medium,
 
12
  .fl-visible-medium-mobile,
13
+ .fl-col-group .fl-visible-desktop-medium.fl-col,
14
+ .fl-col-group .fl-visible-medium.fl-col,
15
+ .fl-col-group .fl-visible-medium-mobile.fl-col {
16
  display: block;
17
  }
css/fl-builder-layout-responsive.css CHANGED
@@ -2,17 +2,17 @@
2
  ------------------------------------------------------ */
3
 
4
  .fl-visible-desktop,
5
- .fl-visible-desktop.fl-col,
6
  .fl-visible-desktop-medium,
7
- .fl-visible-desktop-medium.fl-col,
8
  .fl-visible-medium,
9
- .fl-visible-medium.fl-col {
 
 
10
  display: none;
11
  }
12
  .fl-visible-medium-mobile,
13
- .fl-visible-medium-mobile.fl-col,
14
  .fl-visible-mobile,
15
- .fl-visible-mobile.fl-col {
 
16
  display: block;
17
  }
18
 
2
  ------------------------------------------------------ */
3
 
4
  .fl-visible-desktop,
 
5
  .fl-visible-desktop-medium,
 
6
  .fl-visible-medium,
7
+ .fl-col-group .fl-visible-desktop.fl-col,
8
+ .fl-col-group .fl-visible-desktop-medium.fl-col,
9
+ .fl-col-group .fl-visible-medium.fl-col {
10
  display: none;
11
  }
12
  .fl-visible-medium-mobile,
 
13
  .fl-visible-mobile,
14
+ .fl-col-group .fl-visible-medium-mobile.fl-col,
15
+ .fl-col-group .fl-visible-mobile.fl-col {
16
  display: block;
17
  }
18
 
css/fl-builder-layout.css CHANGED
@@ -62,11 +62,11 @@
62
  ------------------------------------------------------ */
63
 
64
  .fl-visible-medium,
65
- .fl-visible-medium.fl-col,
66
  .fl-visible-medium-mobile,
67
- .fl-visible-medium-mobile.fl-col,
68
  .fl-visible-mobile,
69
- .fl-visible-mobile.fl-col {
 
 
70
  display: none;
71
  }
72
 
62
  ------------------------------------------------------ */
63
 
64
  .fl-visible-medium,
 
65
  .fl-visible-medium-mobile,
 
66
  .fl-visible-mobile,
67
+ .fl-col-group .fl-visible-medium.fl-col,
68
+ .fl-col-group .fl-visible-medium-mobile.fl-col,
69
+ .fl-col-group .fl-visible-mobile.fl-col {
70
  display: none;
71
  }
72
 
css/fl-builder.css CHANGED
@@ -52,7 +52,7 @@ html.fl-builder-edit {
52
  .fl-visible-medium,
53
  .fl-visible-medium-mobile,
54
  .fl-visible-mobile {
55
- display: block;
56
  }
57
 
58
  /* Builder Buttons
@@ -1421,21 +1421,21 @@ form.fl-builder-settings {
1421
  }
1422
 
1423
  /* Editor Link Modal */
1424
- .fl-builder form#wp-link {
1425
  color: #000;
1426
  font-family: Helvetica, Verdana, sans-serif;
1427
  font-size: 13px;
1428
  }
1429
- .fl-builder form#wp-link #link-options label {
1430
  display: block;
1431
  margin-bottom: 2px;
1432
  }
1433
- .fl-builder form#wp-link #link-options label span {
1434
  padding-right: 10px;
1435
  width: 60px;
1436
  vertical-align: middle;
1437
  }
1438
- .fl-builder form#wp-link #link-options input[type="text"] {
1439
  display: inline-block;
1440
  height: auto;
1441
  margin: 5px 0 0;
52
  .fl-visible-medium,
53
  .fl-visible-medium-mobile,
54
  .fl-visible-mobile {
55
+ display: block !important;
56
  }
57
 
58
  /* Builder Buttons
1421
  }
1422
 
1423
  /* Editor Link Modal */
1424
+ .fl-builder-edit form#wp-link {
1425
  color: #000;
1426
  font-family: Helvetica, Verdana, sans-serif;
1427
  font-size: 13px;
1428
  }
1429
+ .fl-builder-edit form#wp-link #link-options label {
1430
  display: block;
1431
  margin-bottom: 2px;
1432
  }
1433
+ .fl-builder-edit form#wp-link #link-options label span {
1434
  padding-right: 10px;
1435
  width: 60px;
1436
  vertical-align: middle;
1437
  }
1438
+ .fl-builder-edit form#wp-link #link-options input[type="text"] {
1439
  display: inline-block;
1440
  height: auto;
1441
  margin: 5px 0 0;
css/fl-builder.min.css CHANGED
@@ -1 +1 @@
1
- .fl-builder-edit #wpadminbar,.fl-builder-hidden-editor{display:none}html.fl-builder-edit{margin-top:43px!important}.fl-builder-edit body{position:static!important}.fl-clear{clear:both}.fl-builder-loading{background:url(../img/ajax-loader.gif) center center no-repeat rgba(240,240,240,.8);bottom:0;display:none;left:0;position:fixed;right:0;text-align:center;top:0;z-index:200000}.fl-builder-settings .fl-builder-loading{background:url(../img/ajax-loader.gif) center center no-repeat rgba(255,255,255,.8);display:block;position:absolute}#tiptip_holder{z-index:200000}.screen-reader-text{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden}.fl-visible-desktop,.fl-visible-desktop-medium,.fl-visible-medium,.fl-visible-medium-mobile,.fl-visible-mobile{display:block}.fl-builder-button{color:#555;border-color:#ccc;background:#f7f7f7;-webkit-box-shadow:inset 0 1px 0 #fff,0 1px 0 rgba(0,0,0,.08);box-shadow:inset 0 1px 0 #fff,0 1px 0 rgba(0,0,0,.08);vertical-align:top;display:inline-block;text-decoration:none;font-size:13px!important;line-height:13px!important;height:28px;margin:0;padding:7px 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-border-radius:3px;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box!important;-moz-box-sizing:border-box!important;box-sizing:border-box!important}.fl-builder-button:hover{background:#fafafa;border-color:#999;color:#222}.fl-builder-button-primary{background:#2ea2cc;border-color:#0074a2;-webkit-box-shadow:inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15);color:#fff!important;text-decoration:none}.fl-builder-button-primary:hover{background:#1e8cbe;border-color:#0074a2;-webkit-box-shadow:inset 0 1px 0 rgba(120,200,230,.6);box-shadow:inset 0 1px 0 rgba(120,200,230,.6);color:#fff!important}.fl-builder-button-large{height:30px;line-height:30px!important;padding:0 12px 2px}.fl-builder-button-small{font-size:11px!important;line-height:11px!important;height:24px}.fl-builder-help-button{color:#b3b3b3;font-size:16px!important}.fl-builder-help-button i{position:relative;top:-1px}.fl-builder-help-button:hover{color:#666}.fl-builder-badge{background:#333;border-radius:2px;color:#fff!important;display:inline;font-size:11px!important;font-weight:400;letter-spacing:1px;margin-left:2px;padding:2px 4px;vertical-align:top}.fl-builder-badge-global{background:#ff9600}.fl-builder-has-submenu{position:relative}ul.fl-builder-submenu{background:#3ba0ff;box-shadow:0 0 20px rgba(0,0,0,.2);display:none;left:0;list-style:none;margin:0;padding:6px 0;position:absolute;text-align:left;top:100%;width:155px;z-index:100008}.fl-builder-submenu-right ul.fl-builder-submenu{left:auto;right:0}.fl-builder-submenu-open ul.fl-builder-submenu{display:block}ul.fl-builder-submenu li a{color:#fff!important;display:block;line-height:13px;font-size:13px;font-family:Helvetica,Verdana,sans-serif;font-weight:400;opacity:.8;filter:alpha(opacity=80);padding:6px 12px;text-decoration:none}ul.fl-builder-submenu li a:hover{background:#54acff;color:#fff;opacity:1;filter:alpha(opacity=100)}.fl-builder-bar-content,.fl-builder-panel{color:#999;font-family:Helvetica,Verdana,sans-serif}.fl-block-overlay-global ul.fl-builder-submenu{background:#ff9600}.fl-block-overlay-global ul.fl-builder-submenu li a:hover{background:#fa3}.fl-builder-bar{left:0;position:fixed;right:0;top:0;z-index:100008}.fl-builder-bar-content{background:#f4f4f4;border-bottom:1px solid #ccc;box-shadow:0 0 8px rgba(0,0,0,.2);-moz-box-shadow:0 0 8px rgba(0,0,0,.2);-webkit-box-shadow:0 0 8px rgba(0,0,0,.2);font-size:14px;height:43px}.fl-builder-bar-title{color:#333;display:block;float:left;font-size:20px;font-weight:300;line-height:20px;padding:7px 10px}.fl-builder-bar-title img{height:30px!important;margin:0 1px 0 0!important;vertical-align:middle!important}.fl-builder-bar-title span{vertical-align:middle}.fl-builder-bar-title.fl-builder-bar-title-no-icon{padding:12px}.fl-builder-bar-actions{float:right;padding:7px}.fl-builder-bar .fl-builder-button{float:right;margin:0 0 0 6px}.fl-builder-bar .fl-builder-add-content-button{display:none}.fl-builder-buy-button,.fl-builder-upgrade-button{background:#f7951e;border-color:#de7c04;-webkit-box-shadow:inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);color:#fff!important;text-decoration:none}.fl-builder-buy-button:hover,.fl-builder-upgrade-button:hover{background:#de861b;border-color:#c46e04;-webkit-box-shadow:inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);color:#fff!important}.fl-builder-panel{background:#f0f0f0;border-left:1px solid #ccc;bottom:0;box-shadow:0 0 8px rgba(0,0,0,.2);-moz-box-shadow:0 0 8px rgba(0,0,0,.2);-webkit-box-shadow:0 0 8px rgba(0,0,0,.2);font-size:14px;opacity:1;position:fixed;right:0;top:43px;width:300px;z-index:100007;-webkit-transform:translateZ(0);transition:opacity .2s;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;-ms-transition:opacity .2s;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fl-block-col-resize-feedback,.fl-builder-drop-zone,.fl-builder-empty{font-family:Helvetica,Verdana,sans-serif!important}.fl-builder-panel-actions{background:#f4f4f4;border-bottom:1px solid #dbdbdb;height:43px;left:0;position:absolute;right:0;top:0;text-align:right;z-index:100009}.fl-builder-panel-actions .fl-builder-panel-close{color:#bfbfbf;cursor:pointer;float:left;font-size:18px;margin:12px 18px}.fl-builder-panel-actions .fl-builder-panel-close:hover{color:#333}.fl-builder-panel-content-wrap{bottom:0;height:auto;left:0;overflow:hidden;position:absolute;right:0;top:43px}.fl-builder-panel-content{padding-bottom:60px}.fl-builder-blocks-section .fl-builder-block,.fl-builder-blocks-section .fl-builder-blocks-section-title{cursor:pointer;display:block;line-height:14px;padding:15px 20px}.fl-builder-blocks-section .fl-builder-blocks-section-title{border-bottom:1px solid #dfdfdf;color:#333;font-weight:400}.fl-builder-blocks-section .fl-builder-blocks-section-title i{color:#bfbfbf;float:right}.fl-builder-blocks-section .fl-builder-blocks-section-title:hover,.fl-builder-blocks-section .fl-builder-blocks-section-title:hover i{background:#e5e5e5}.fl-builder-blocks-section-content{background:#fff;display:none}.fl-builder-blocks-section.fl-active .fl-builder-blocks-section-content{display:block}.fl-builder-blocks-section-content .fl-builder-block{border-bottom:1px solid #ebebeb;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fl-builder-blocks-section-content .fl-builder-block i{color:#d9d9d9;margin-right:10px}.fl-builder-blocks-section-content .fl-builder-block:hover{background:#0074a1;color:#fff;cursor:move}.fl-builder-blocks-separator{background:#dfdfdf;height:6px}.fl-builder-block:hover .fl-builder-badge{background:#2ea2cc}.ui-sortable-helper .fl-builder-badge{display:none!important}.fl-builder-block-template-image{margin:5px 0 10px;max-width:100%}.fl-photo-field .fl-photo-preview-img img,.fl-video-field .fl-video-preview-img img{max-width:60px}.fl-builder-block-template .fl-builder-block-title{display:block}.ui-sortable-helper .fl-builder-block-template-image{display:none!important}span.fl-builder-block-no-node-templates{display:block;padding:15px 20px}span.fl-builder-block-no-node-templates:hover{cursor:default;background:#fff}.fl-builder-blocks-node-template .fl-builder-block{position:relative}.fl-builder-blocks-section-content .fl-builder-node-template-actions{bottom:0;cursor:default;display:none;position:absolute;right:0;top:0;width:72px}.fl-builder-blocks-section-content .fl-builder-node-template-delete,.fl-builder-blocks-section-content .fl-builder-node-template-edit{bottom:0;cursor:pointer;margin:0;padding:15px 0;position:absolute;text-align:center;top:0;width:30px}.fl-builder-blocks-section-content .fl-builder-node-template-delete{right:12px}.fl-builder-blocks-section-content .fl-builder-node-template-edit{right:42px}.fl-builder-blocks-section-content .fl-builder-node-template-delete i,.fl-builder-blocks-section-content .fl-builder-node-template-edit i{margin:0}.fl-builder-blocks-section-content .fl-builder-node-template-delete:hover i,.fl-builder-blocks-section-content .fl-builder-node-template-edit:hover i{color:#fff}.fl-builder-blocks-node-template .fl-builder-block:hover{padding-right:85px}.fl-builder-blocks-node-template .fl-builder-block:hover .fl-builder-node-template-actions{display:block}.ui-sortable-helper .fl-builder-node-template-delete,.ui-sortable-helper .fl-builder-node-template-edit{display:none!important}.fl-builder-empty{border:1px dashed #3ba0ff;color:#3ba0ff;font-size:14px;margin:10px;padding:100px 20px;text-align:center;text-transform:uppercase}.fl-builder-empty .fl-builder-drop-zone{margin:10px}.fl-builder-block-drag-helper,.fl-builder-block.ui-draggable-dragging{background:#fff!important;border:1px solid #ccc;box-shadow:0 0 8px rgba(0,0,0,.2);-moz-box-shadow:0 0 8px rgba(0,0,0,.2);-webkit-box-shadow:0 0 8px rgba(0,0,0,.2);color:#999!important;font-family:Helvetica,Verdana,sans-serif!important;font-size:14px!important;height:45px!important;line-height:42px!important;overflow:hidden;padding:0 18px;position:fixed!important;text-overflow:ellipsis;white-space:nowrap;width:140px!important;z-index:100010}.fl-builder-drop-zone{background:#3ba0ff;color:#fff;display:block;font-weight:700;font-size:14px;margin:10px;padding:10px;text-shadow:none}.fl-builder-drop-zone-global{background:#ff9600}.fl-builder-content>.fl-builder-drop-zone{margin:10px 20px}.fl-row-content>.fl-builder-drop-zone{margin:5px}.fl-row-highlight{padding:5px 0}.fl-row-highlight .fl-row-content{border:1px dashed red;padding:5px}.fl-col-highlight{padding:15px 5px}.fl-col-highlight .fl-col-content{border-style:dashed;border-color:#3ba0ff;min-height:100px;border-width:1px}.fl-col-highlight.fl-node-global .fl-col-content{border-color:#ff9600}.fl-builder-simple .fl-col-highlight .fl-col-content{border:none}.fl-block-overlay,.fl-block-overlay *{text-shadow:none}.fl-block-overlay-active{position:relative}.fl-block-overlay-actions{background:#3ba0ff;float:left;margin:0 -1px;text-shadow:none}.fl-block-overlay-actions>span{display:block;float:left}.fl-block-overlay-actions i{color:#fff!important;cursor:pointer;display:block!important;float:left;font-size:14px!important;height:28px!important;font-weight:100!important;line-height:28px!important;opacity:.8;filter:alpha(opacity=80);text-align:center;width:28px!important}.fl-block-overlay-actions i:hover{opacity:1;filter:alpha(opacity=100)}.fl-block-overlay-actions>i:first-child{padding-left:4px}.fl-block-overlay-actions>i:last-child{padding-right:2px}.fl-block-overlay-actions i.fl-block-move{cursor:move}.fl-block-overlay-title{border-right:1px solid #5eb1ff;color:#fff!important;float:left;font-family:Helvetica,Verdana,sans-serif;font-size:13px;height:30px;line-height:29px;margin-right:2px;padding:0 8px}.fl-row-overlay{background:rgba(59,160,255,.15);border:1px solid #3ba0ff;bottom:0;box-sizing:border-box!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important;color:#fff;left:0;position:absolute;top:-30px;width:100%;z-index:100006}.fl-row-overlay-header-bottom{bottom:-30px;top:0}.fl-row-overlay-header-bottom .fl-block-overlay-header{position:absolute;bottom:0}.fl-block-overlay-active .fl-row-content-wrap{position:relative}.fl-block-overlay-active .fl-row-content{position:relative;z-index:100007}.fl-col-overlay,.fl-module-overlay{background:rgba(59,160,255,.15);border:1px solid #3ba0ff;cursor:pointer;color:#fff;position:absolute;z-index:100007}.fl-col-overlay{bottom:15px;left:5px;right:5px;top:15px}.fl-module-overlay{bottom:4px;left:4px;min-height:32px;right:4px;top:4px}.fl-builder-global-templates-locked .fl-block-overlay-global.fl-module-overlay{cursor:default}.fl-module-adjust-height{padding-bottom:15px;padding-top:15px}.fl-block-overlay-global{background:rgba(255,150,0,.1);border:1px solid #ff9600}.fl-block-overlay-global .fl-block-overlay-actions{background:#ff9600}.fl-block-overlay-global .fl-block-overlay-title{border-right:1px solid #ffcf66}.fl-block-overlay-title-global{background:#fff;border-radius:2px;color:#ff9600!important;font-size:11px;letter-spacing:1px;margin-left:4px;padding:2px 4px;vertical-align:top}.fl-block-overlay-global.fl-row-overlay{background:rgba(255,150,0,.3);cursor:pointer;z-index:100007}.fl-builder-global-templates-locked .fl-block-overlay-global.fl-row-overlay{cursor:default}.fl-builder-row-template .fl-block-overlay-global.fl-row-overlay{background:rgba(255,150,0,.1);cursor:default;z-index:100006}.fl-block-overlay-muted .fl-row-overlay{background:rgba(153,153,153,.1);border:1px solid #8c8c8c}.fl-block-overlay-muted .fl-row-overlay .fl-block-overlay-actions{background:#8c8c8c}.fl-block-overlay-muted .fl-row-overlay .fl-block-overlay-title{border-right:1px solid #a6a6a6}.fl-node-disabled{position:relative}.fl-node-disabled-overlay{background:rgba(153,153,153,.75);bottom:0;left:0;position:absolute;right:0;top:0}.fl-block-col-resize{bottom:0!important;position:absolute;top:0!important;width:6px}.fl-block-col-resize-e{cursor:ew-resize;left:auto!important;right:-4px!important}.fl-block-col-resize-w{cursor:ew-resize;left:-4px!important}.fl-block-col-resize-handle-wrap{margin:-4px 0 0 -5px;padding:0 5px;position:absolute;top:50%!important}.fl-block-col-resize-e .fl-block-col-resize-handle-wrap{margin-left:-6px}.fl-block-col-resize-handle{background:#fff;border:1px solid #259aff;height:7px;width:7px}.fl-block-col-resize-feedback{color:#333!important;display:none;font-size:11px!important;position:absolute}.fl-builder-actions-title,.fl-builder-alert-lightbox .fl-lightbox-message{color:#333!important;font-family:Helvetica,Verdana,sans-serif!important;font-size:16px!important}.fl-block-col-resize-feedback-left,.fl-block-col-resize-feedback-right{background:#fff;border:1px solid #3ba0ff;padding:2px 4px}.fl-block-col-resize-feedback-left{right:20px;top:-7px}.fl-block-col-resize-feedback-right{left:20px;top:-7px}.fl-builder-actions-lightbox .fl-lightbox{width:300px}.fl-builder-actions-lightbox .fl-builder-actions{display:block;padding:25px;text-align:center}.fl-builder-actions-title{display:block;margin-bottom:20px}.fl-builder-actions .fl-builder-button{display:block;margin-bottom:7px}.fl-builder-alert-lightbox{z-index:200001}.fl-builder-alert-lightbox .fl-lightbox{width:440px!important}.fl-builder-alert-lightbox .fl-lightbox-message{line-height:24px;padding:30px}.fl-builder-settings-message,.fl-builder-settings-message *{font-size:15px!important;line-height:23px!important}.fl-template-category-select{width:180px!important}.fl-template-selector .fl-builder-settings-section{margin:0 0 10px}.fl-template-selector .fl-builder-settings-fields{height:470px}.fl-template-selector .fl-builder-settings-tab-description{font-size:15px!important;margin:0!important;padding:10px 0 25px;text-align:center}.fl-template-preview{float:left;margin:0 20px 30px 0;position:relative;text-align:center;width:170px}.fl-template-preview.fl-last{margin-right:0}.fl-template-image{border:1px solid #d9d9d9;cursor:pointer;margin-bottom:12px;height:164px;overflow:hidden}.fl-template-image:hover{border-color:red}.fl-template-image img{max-height:none;width:100%}.fl-template-preview span{display:block;text-align:center}.fl-user-template-category-name{background:#f2f2f2;border-bottom:3px solid #dfdfdf;border-top:2px solid #dfdfdf;font-weight:700;padding:8px 15px}.fl-user-templates{border-top:1px solid #dfdfdf;margin-bottom:20px;margin-right:8px}.fl-user-template{border-bottom:1px solid #dfdfdf;padding:15px;position:relative}.fl-user-template:hover{background:#0074a1;color:#fff!important;cursor:pointer}.fl-user-template:hover *{color:#fff!important}.fl-user-template-actions{bottom:0;position:absolute;right:0;top:0}.fl-user-template-actions a{color:#bfbfbf!important;display:inline-block;padding:15px}.fl-user-template:hover a{color:#99c7d9!important}.fl-user-template:hover a:hover{color:#fff!important}.fl-user-templates-message{display:none}.fl-builder-node-template-settings .fl-builder-settings-fields,.fl-builder-user-template-settings .fl-builder-settings-fields{height:150px}.fl-builder-lightbox .fl-lightbox{width:600px}form.fl-builder-settings{margin:0;padding:0}.fl-builder-settings-message{padding:20px 25px!important;background:#f2f2f2!important}.fl-builder-preview-loader{position:relative;top:-1px;margin-left:3px}.fl-lightbox-header .fl-builder-preview-loader{margin:0;position:absolute;right:15px;top:15px}.fl-builder-settings-tabs{background:#f5f5f5;border-bottom:1px solid #dfdfdf;padding:15px 20px 0}.fl-builder-settings-tabs a{color:#999;display:inline-block;margin:0;padding:10px 20px;text-decoration:none}.fl-builder-settings-tabs a:hover{color:#333}.fl-builder-settings-tabs a.fl-active{background:#fff;border:1px solid #dfdfdf;border-bottom:none;color:#222;position:relative;top:1px}.fl-builder-settings-tabs a.error{color:#d03436;padding-right:10px}.fl-builder-settings-tabs a.error .fl-error-icon{background:url(../img/sprite.png) -148px -5px no-repeat;display:inline-block;height:16px;margin-left:7px;position:relative;top:3px;width:16px}.fl-builder-settings-tab{display:none;width:550px}.fl-builder-settings-tab.fl-active{display:block}.fl-builder-settings-tab-description{background:#f5f5f5;padding:10px 15px}.fl-form-table{border:none;width:100%}.fl-form-table tbody{border:none}.fl-form-table th{border:none!important;background:#fff!important;font-weight:400!important;padding:10px!important;text-align:left!important;vertical-align:top!important;width:200px!important}.fl-form-table td{border:none;padding:8px 10px}.fl-builder-settings-fields{height:410px;margin:5px 0 0;overflow:hidden;position:relative}.fl-lightbox-header .fl-builder-settings-fields{height:auto;margin:0;position:absolute;right:10px;top:10px}.fl-builder-settings-fields .fl-nanoscroller-content{padding:15px 20px}.fl-builder-settings-fields input[type=email],.fl-builder-settings-fields input[type=file],.fl-builder-settings-fields input[type=number],.fl-builder-settings-fields input[type=password],.fl-builder-settings-fields input[type=search],.fl-builder-settings-fields input[type=tel],.fl-builder-settings-fields input[type=text],.fl-builder-settings-fields input[type=url],.fl-builder-settings-fields select,.fl-builder-settings-fields textarea{background-color:#fff;border-color:#dfdfdf;border-style:solid;border-width:1px;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;color:#333;display:inline;font-size:12px;height:auto;line-height:15px;margin:1px;outline:0;padding:3px;width:auto}.fl-builder-settings-fields input[type=email]:focus,.fl-builder-settings-fields input[type=file]:focus,.fl-builder-settings-fields input[type=number]:focus,.fl-builder-settings-fields input[type=password]:focus,.fl-builder-settings-fields input[type=search]:focus,.fl-builder-settings-fields input[type=tel]:focus,.fl-builder-settings-fields input[type=text]:focus,.fl-builder-settings-fields input[type=url]:focus,.fl-builder-settings-fields select:focus,.fl-builder-settings-fields textarea:focus{background:0 0;border-color:#aaa}.fl-builder-settings-fields select[multiple]{height:60px}.fl-builder-settings-fields ::-webkit-input-placeholder{color:#999!important}.fl-builder-settings-fields input:-moz-placeholder{color:#999}.fl-builder-settings-fields ::-moz-placeholder{color:#999!important}.fl-builder-settings-fields input:-ms-input-placeholder{color:#999}.fl-builder-settings-fields label{font-weight:400}.fl-builder-settings-fields select{height:2em;color:#000;padding:2px}.fl-builder-settings-description{border-bottom:1px solid #dfdfdf;margin:0 0 10px;padding-bottom:10px!important}.fl-builder-settings-fields table{margin:0}.fl-builder-settings-fields h3.fl-builder-settings-title{border-bottom:1px solid #dfdfdf;color:#333;font-size:14px;font-weight:700;margin:0 0 20px!important;padding:10px}.fl-builder-settings-section{margin-bottom:15px}.wp-core-ui h1,.wp-core-ui h2,.wp-core-ui h3,.wp-core-ui h4,.wp-core-ui h5,.wp-core-ui h6{color:#333}.wp-core-ui .submitbox .submitdelete{color:#a00}.wp-core-ui button{font-weight:400;text-transform:capitalize}.wp-core-ui input[type=email],.wp-core-ui input[type=file],.wp-core-ui input[type=number],.wp-core-ui input[type=password],.wp-core-ui input[type=search],.wp-core-ui input[type=tel],.wp-core-ui input[type=text],.wp-core-ui input[type=url],.wp-core-ui select,.wp-core-ui textarea{background-color:#fff;border-color:#dfdfdf;border-style:solid;border-width:1px;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;color:#333;font-weight:400}.wp-core-ui input[type=email]:focus,.wp-core-ui input[type=file]:focus,.wp-core-ui input[type=number]:focus,.wp-core-ui input[type=password]:focus,.wp-core-ui input[type=search]:focus,.wp-core-ui input[type=tel]:focus,.wp-core-ui input[type=text]:focus,.wp-core-ui input[type=url]:focus,.wp-core-ui select:focus,.wp-core-ui textarea:focus{background:0 0;border-color:#aaa}.wp-core-ui input[type=search]{background-image:none;padding:6px}.fl-builder-settings-fields input.text-full,.fl-builder-settings-fields textarea{width:97%}.fl-color-picker{cursor:pointer}.fl-color-picker .fl-color-picker-clear:hover{background-color:#ededed}.colorpicker input{padding:0!important;font-size:11px!important;color:#fff!important;width:29px!important;height:auto!important;background:0 0!important;border:none!important}.colorpicker .colorpicker_hex input{width:45px!important}.fl-builder-custom-field{border:1px solid #dfdfdf;border-radius:3px;padding:5px 10px}.fl-builder-custom-field a{color:#21759b!important;text-decoration:underline!important}.fl-builder-custom-field a:hover{color:#d54e21!important}.fl-builder-custom-field label.error{margin-top:5px}.fl-photo-field .fl-photo-select,.fl-photo-field.fl-photo-empty .fl-photo-preview{display:none}.fl-photo-field.fl-photo-empty .fl-photo-select{display:block}.fl-photo-field .fl-photo-preview-img{float:left;line-height:0;margin:5px 0}.fl-photo-field .fl-photo-preview select{margin:8px 0 8px 10px;width:200px}.fl-photo-field .fl-photo-edit{margin:0 0 0 11px}.fl-multiple-photos-field .fl-multiple-photos-add,.fl-photo-field .fl-photo-remove,.fl-photo-field .fl-photo-replace{margin:0 0 0 8px}.fl-builder-edit .media-frame{-webkit-backface-visibility:hidden}.fl-builder-edit .media-modal-content .thumbnail{padding:0;border:none;border-radius:0}.fl-builder-edit button.button-link.media-modal-close{position:absolute;box-shadow:none;-webkit-box-shadow:none}.fl-multiple-photos-field .fl-multiple-photos-select,.fl-multiple-photos-field.fl-multiple-photos-empty .fl-multiple-photos-add,.fl-multiple-photos-field.fl-multiple-photos-empty .fl-multiple-photos-count,.fl-multiple-photos-field.fl-multiple-photos-empty .fl-multiple-photos-edit,.fl-multiple-photos-lightbox .gallery-settings{display:none}.fl-multiple-photos-field.fl-multiple-photos-empty .fl-multiple-photos-select{display:inline}.fl-multiple-photos-count{font-weight:700;margin-bottom:3px}.fl-video-field .fl-video-select,.fl-video-field.fl-video-empty .fl-video-preview{display:none}.fl-video-field.fl-video-empty .fl-video-select{display:block}.fl-video-field .fl-video-preview-img{float:left;line-height:0;margin:5px 0}.fl-video-field .fl-video-preview-filename{display:inline-block;font-size:14px;font-weight:700;margin:7px 0 0 11px}.fl-video-field .fl-video-replace{margin:0 0 0 11px}.fl-multiple-audios-field .fl-multiple-audios-select,.fl-multiple-audios-field.fl-multiple-audios-empty .fl-multiple-audios-add,.fl-multiple-audios-field.fl-multiple-audios-empty .fl-multiple-audios-edit{display:none}.fl-multiple-audios-field.fl-multiple-audios-empty .fl-multiple-audios-select{display:block}.fl-multiple-audios-field .fl-multiple-audios-add{margin:0 0 0 8px}.fl-icon-field .fl-icon-select,.fl-icon-field.fl-icon-empty .fl-icon-preview{display:none}.fl-icon-field.fl-icon-empty .fl-icon-select{display:block}.fl-icon-field .fl-icon-preview i{display:inline-block;font-size:28px;margin:10px 10px 9px 2px;vertical-align:middle}.fl-icon-field .fl-icon-remove{margin:0 0 0 8px}.fl-builder-settings .wp-switch-editor{background:#ebebeb;border:1px solid #e5e5e5;border-radius:0;color:#333}.fl-builder-settings .wp-editor-container{border:1px solid #e5e5e5}.fl-builder-settings .mce-toolbar .mce-btn-group .mce-btn{margin:2px 0}.fl-builder-settings .mce-menubtn.mce-fixed-width button{width:100px}.mce-close:active,.mce-close:hover,.mce-toolbar .mce-btn button:active,.mce-toolbar .mce-btn button:hover,.mce-window .mce-btn button:active,.mce-window .mce-btn button:hover{background:0 0;border:none}.mce-ico{font-family:tinymce,Arial!important}.mce-toolbar i.mce-ico{font:400 20px/1 dashicons!important}.fl-builder form#wp-link,.fl-color-picker-ui,.popover[class*=tour-],ul.as-list{font-family:Helvetica,Verdana,sans-serif}.wp-core-ui .quicktags-toolbar input.button.button-small{margin:1px!important}.wp-editor-container textarea.wp-editor-area{background:0 0;border:none;padding:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.fl-builder form#wp-link{color:#000;font-size:13px}.fl-builder form#wp-link #link-options label{display:block;margin-bottom:2px}.fl-builder form#wp-link #link-options label span{padding-right:10px;width:60px;vertical-align:middle}.fl-builder form#wp-link #link-options input[type=text]{display:inline-block;height:auto;margin:5px 0 0;padding:3px 5px;width:80%}.ace_editor,.ace_editor *{font-family:Monaco,Menlo,"Ubuntu Mono","Droid Sans Mono",Consolas,monospace!important;font-size:12px!important;font-weight:400!important;letter-spacing:0!important}.fl-builder-global-settings #fl-builder-settings-tab-css,.fl-builder-global-settings #fl-builder-settings-tab-js,.fl-builder-html-settings #fl-builder-settings-tab-general,.fl-builder-layout-settings #fl-builder-settings-tab-css,.fl-builder-layout-settings #fl-builder-settings-tab-js{width:560px}.fl-builder-global-settings #fl-builder-settings-section-css,.fl-builder-global-settings #fl-builder-settings-section-js,.fl-builder-html-settings #fl-builder-settings-section-general,.fl-builder-layout-settings #fl-builder-settings-section-css,.fl-builder-layout-settings #fl-builder-settings-section-js{margin-bottom:0}.fl-builder-global-settings #fl-builder-settings-tab-css td,.fl-builder-global-settings #fl-builder-settings-tab-js td,.fl-builder-html-settings #fl-builder-settings-section-general td,.fl-builder-layout-settings #fl-builder-settings-tab-css td,.fl-builder-layout-settings #fl-builder-settings-tab-js td{padding:0}.fl-layout-field-option{border:2px solid #d9d9d9;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-sizing:border-box!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important;cursor:pointer;float:left;line-height:0;max-width:23%;margin:0 1% 2%;padding:5px}.fl-layout-field-option-selected,.fl-layout-field-option:hover{border-color:red}.fl-layout-field-option img{max-width:100%}.fl-link-field-input{width:244px!important}.fl-link-field-search{display:none;border:1px solid #dfdfdf;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;margin:4px 0 0;padding:10px}.fl-link-field-search-title{display:block;margin:0 0 3px 2px}.fl-link-field-search-cancel{margin-top:6px}.fl-help-tooltip{display:inline-block;position:relative}.fl-help-tooltip-icon{color:#999!important;cursor:pointer;font-family:FontAwesome;font-size:15px!important;padding:5px;vertical-align:middle}.fl-help-tooltip-text{background:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ccc;-moz-box-shadow:0 0 5px #ccc;-webkit-box-shadow:0 0 5px #ccc;display:none;font-weight:400;left:23px;padding:10px 13px;position:absolute;top:-6px;width:250px;z-index:1000}.fl-form-field-preview-text .fa{font-size:18px;line-height:22px}.fl-builder-field-actions{padding-left:0!important;padding-right:0!important;text-align:center;vertical-align:middle;width:85px}.fl-builder-field-actions i{color:#999!important;cursor:pointer;font-size:13px!important;height:24px;line-height:29px!important;width:24px}.fl-builder-field-actions i:hover{color:#000!important}.fl-builder-field-actions i.fl-builder-field-copy,.fl-builder-field-actions i.fl-builder-field-delete{margin-left:5px}.fl-builder-field-actions i.fl-builder-field-move{cursor:move}.fl-builder-field-dd-helper{background:#ccc;height:30px!important;float:left;width:130px!important}.fl-builder-field-dd-zone{border:1px dashed #ccc;height:30px}.fl-builder-field-actions-single{width:auto}.fl-builder-field-actions-single i.fl-builder-field-delete,.fl-builder-field-actions-single i.fl-builder-field-move{display:none}.fl-builder-widget-settings input{display:inline-block!important;margin:5px 10px 8px!important}.fl-builder-lightbox-loading{background:url(../img/ajax-loader.gif) center center no-repeat;height:100px}.fl-builder-settings .error,.fl-builder-settings input.error{border-color:#d03436}.fl-builder-settings label.error,.fl-builder-settings p.error{color:#d03436;display:block;margin-top:5px}.fl-builder-settings .fl-form-table .fl-field-description{color:#999;font-style:normal}ul.as-selections{background-color:#fff;border-color:#dfdfdf;border-style:solid;border-width:1px;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;color:#333;font-size:12px;height:auto;line-height:15px;margin:1px;outline:0;padding:3px;width:auto}ul.as-selections.loading{background:url(../img/ajax-loader-small.gif) 98% center no-repeat}ul.as-selections li.as-selection-item{background:#d4eaf6;border:none;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;font-size:11px;line-height:14px;margin-bottom:4px;padding-bottom:0;padding-top:0}ul.as-selections li.as-selection-item.blur{background:#f4f4f4}ul.as-selections li.as-selection-item a.as-close{line-height:12px}ul.as-selections li.as-original{margin:0}ul.as-selections li.as-original input{height:auto;font-size:12px;margin:0;padding:0}ul.as-list{margin:0;font-size:13px;color:#000;background-color:#fff;background-color:rgba(255,255,255,.95);z-index:2;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);-moz-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);-ms-border-radius:0;-o-border-radius:0;border:none;border:1px solid #dfdfdf;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}li.as-message,li.as-result-item{border:none}li.as-result-item.active{background:#e5e5e5;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;color:#333;text-shadow:none}li.as-result-item em{background:0 0!important;color:#333!important;font-size:12px;padding:0!important}.fl-loop-builder-filter{display:none}.fl-builder-service-settings{position:relative}.fl-builder-service-error{color:red!important;padding:15px 0 0}.fl-builder-service-account-delete{color:red!important;margin-left:10px;position:relative;top:2px}.fl-builder-service-connect-row .fl-field-description{background:#f0f0f0;color:#333!important;display:block;float:none;margin:10px 0 0;padding:10px}.fl-builder-service-connect-row .fl-field-description a{color:#21759b!important;text-decoration:underline!important}.fl-builder-getting-started-video{line-height:0!important;padding:10px}.fl-builder-getting-started-video iframe{border:none;height:326px;width:100%}.fl-builder-tour-actions .fl-builder-actions-title{font-size:14px!important;line-height:19px}.fl-builder-tour-mask{bottom:0;left:0;position:fixed;right:0;top:0;z-index:100000000}.fl-builder-tour-dimmed{background:rgba(0,0,0,.7);bottom:0;left:0;position:absolute;right:0;top:0}body>.fl-builder-tour-dimmed{position:fixed}.tour-backdrop{z-index:110000}.popover[class*=tour-]{border:1px solid #ccc;border-radius:0;-webkit-box-shadow:0 0 30px rgba(0,0,0,.3);box-shadow:0 0 40px rgba(0,0,0,.3);color:#666;font-size:13px;font-weight:400;line-height:18px;max-width:none;padding:0;width:300px;z-index:100000001}.popover[class*=tour-].bottom>.arrow{border-bottom-color:#ccc}.popover[class*=tour-].bottom>.arrow:after{border-bottom-color:#f7f7f7}.popover[class*=tour-] .popover-title{border-radius:0;color:#333;letter-spacing:normal;text-transform:none}.popover[class*=tour-] .fa-times{color:#b3b3b3;cursor:pointer;font-size:16px;padding:5px;position:absolute;right:3px;top:2px}.popover[class*=tour-] .fa-times:hover{color:#666}.popover[class*=tour-] .popover-content{border-bottom:1px solid #d9d9d9;padding:13px 15px}.popover[class*=tour-] .fl-builder-tour-next{display:block;float:none;width:100%}.fl-builder-shortcode-mask-wrap{position:relative}.fl-builder-shortcode-mask{bottom:-1px;left:-1px;position:absolute;right:-1px;top:-1px;z-index:1}.fl-color-picker-ui .iris-picker{width:200px;height:215px;display:block;position:relative;border-top:1px solid rgba(0,0,0,.1)}.fl-color-picker-ui .iris-picker .iris-square-inner,.fl-color-picker-ui .iris-picker-inner{position:absolute;left:0;top:0;bottom:0;right:0}.fl-color-picker-ui .iris-picker,.iris-picker *{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}.fl-color-picker-ui .iris-error{background-color:#ffafaf}.fl-color-picker-ui .iris-picker .iris-square{width:200px;height:200px}.fl-color-picker-ui .iris-picker .iris-palette,.fl-color-picker-ui .iris-picker .iris-slider,.fl-color-picker-ui .iris-picker .iris-square-inner{height:100%;width:12.5%}.fl-color-picker-ui .iris-picker .iris-placeholder,.fl-color-picker-ui .iris-picker .iris-square{position:relative}.fl-color-picker-ui .iris-picker .iris-square-inner{width:auto;margin:0}.fl-color-picker-ui .iris-ie-9 .iris-palette,.fl-color-picker-ui .iris-ie-9 .iris-slider,.fl-color-picker-ui .iris-ie-9 .iris-square,.fl-color-picker-ui .iris-ie-9 .iris-square-inner{box-shadow:none;border-radius:0}.fl-color-picker-ui .iris-ie-9 .iris-palette,.fl-color-picker-ui .iris-ie-9 .iris-slider,.fl-color-picker-ui .iris-ie-9 .iris-square{outline:solid rgba(0,0,0,.1)}.fl-color-picker-ui .iris-ie-lt9 .iris-palette,.fl-color-picker-ui .iris-ie-lt9 .iris-slider,.fl-color-picker-ui .iris-ie-lt9 .iris-square,.fl-color-picker-ui .iris-ie-lt9 .iris-square-inner{outline:#999 solid 1px}.fl-color-picker-ui .iris-ie-lt9 .iris-square .ui-slider-handle{outline:#999 solid 1px;background-color:#fff;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"}.fl-color-picker-ui .iris-ie-lt9 .iris-square .iris-square-handle{background:0 0;border:3px solid #fff;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"}.fl-color-picker-ui .iris-picker .iris-strip{width:200px;margin-top:5px;position:relative;height:10px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fl-color-picker-ui .iris-picker .iris-strip .ui-slider-handle{width:6px;position:absolute;right:0;top:-2px;bottom:-2px;margin:0;border-radius:3px;background:#fff;box-shadow:0 0 2px rgba(0,0,0,.5);z-index:5;cursor:ew-resize}.fl-color-picker-ui .iris-picker .iris-slider-offset{position:absolute;top:0;left:6px;right:0;bottom:0;width:auto;height:auto;background:0 0;border:none;border-radius:0;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fl-color-picker-ui .iris-picker .iris-square-handle{background:0 0;border:5px solid #999;border-radius:50%;border-color:rgba(128,128,128,.5);box-shadow:none;width:12px;height:12px;position:absolute;left:-10px;top:-10px;cursor:move;opacity:1;z-index:10}.fl-color-picker-ui .iris-picker .ui-state-focus .iris-square-handle{opacity:.8}.fl-color-picker-ui .iris-picker .iris-square-handle:hover{border-color:#999}.fl-color-picker-ui .iris-picker .iris-square-value:focus .iris-square-handle{box-shadow:0 0 2px rgba(0,0,0,.75);opacity:.8}.fl-color-picker-ui .iris-picker .iris-square-handle:hover::after{border-color:#fff}.fl-color-picker-ui .iris-picker .iris-square-handle::after{position:absolute;bottom:-4px;right:-4px;left:-4px;top:-4px;border:3px solid #f9f9f9;border-color:rgba(255,255,255,.8);border-radius:50%;content:" "}.fl-color-picker-clear,.fl-color-picker-color{float:left;border:1px solid rgba(0,0,0,.1);cursor:pointer}.fl-color-picker-ui .iris-picker .iris-square-value{width:8px;height:8px;position:absolute}.iris-ie-lt9 .iris-square-value,.iris-mozilla .iris-square-value{width:1px;height:1px}.fl-color-picker-wrapper{position:relative;width:48px;height:32px}.fl-color-picker-color{position:relative;width:30px;height:30px;background-color:transparent}.fl-color-picker-color.fl-color-picker-empty{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABG2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS4xLjIiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIi8+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSJyIj8+MahxaQAAAAlwSFlzAAALEwAACxMBAJqcGAAACk9pQ0NQUGhvdG9zaG9wIElDQyBwcm9maWxlAAB42p1TZ1RT6RY99970QkuIgJRLb1IVCCBSQouAFJEmKiEJEEqIIaHZFVHBEUVFBBvIoIgDjo6AjBVRLAyKCtgH5CGijoOjiIrK++F7o2vWvPfmzf611z7nrPOds88HwAgMlkgzUTWADKlCHhHgg8fExuHkLkCBCiRwABAIs2Qhc/0jAQD4fjw8KyLAB74AAXjTCwgAwE2bwDAch/8P6kKZXAGAhAHAdJE4SwiAFABAeo5CpgBARgGAnZgmUwCgBABgy2Ni4wBQLQBgJ3/m0wCAnfiZewEAW5QhFQGgkQAgE2WIRABoOwCsz1aKRQBYMAAUZkvEOQDYLQAwSVdmSACwtwDAzhALsgAIDAAwUYiFKQAEewBgyCMjeACEmQAURvJXPPErrhDnKgAAeJmyPLkkOUWBWwgtcQdXVy4eKM5JFysUNmECYZpALsJ5mRkygTQP4PPMAACgkRUR4IPz/XjODq7OzjaOtg5fLeq/Bv8iYmLj/uXPq3BAAADhdH7R/iwvsxqAOwaAbf6iJe4EaF4LoHX3i2ayD0C1AKDp2lfzcPh+PDxFoZC52dnl5OTYSsRCW2HKV33+Z8JfwFf9bPl+PPz39eC+4iSBMl2BRwT44MLM9EylHM+SCYRi3OaPR/y3C//8HdMixEliuVgqFONREnGORJqM8zKlIolCkinFJdL/ZOLfLPsDPt81ALBqPgF7kS2oXWMD9ksnEFh0wOL3AADyu2/B1CgIA4Bog+HPd//vP/1HoCUAgGZJknEAAF5EJC5UyrM/xwgAAESggSqwQRv0wRgswAYcwQXcwQv8YDaEQiTEwkIQQgpkgBxyYCmsgkIohs2wHSpgL9RAHTTAUWiGk3AOLsJVuA49cA/6YQiewSi8gQkEQcgIE2Eh2ogBYopYI44IF5mF+CHBSAQSiyQgyYgUUSJLkTVIMVKKVCBVSB3yPXICOYdcRrqRO8gAMoL8hrxHMZSBslE91Ay1Q7moNxqERqIL0GR0MZqPFqCb0HK0Gj2MNqHn0KtoD9qPPkPHMMDoGAczxGwwLsbDQrE4LAmTY8uxIqwMq8YasFasA7uJ9WPPsXcEEoFFwAk2BHdCIGEeQUhYTFhO2EioIBwkNBHaCTcJA4RRwicik6hLtCa6EfnEGGIyMYdYSCwj1hKPEy8Qe4hDxDckEolDMie5kAJJsaRU0hLSRtJuUiPpLKmbNEgaI5PJ2mRrsgc5lCwgK8iF5J3kw+Qz5BvkIfJbCp1iQHGk+FPiKFLKakoZ5RDlNOUGZZgyQVWjmlLdqKFUETWPWkKtobZSr1GHqBM0dZo5zYMWSUulraKV0xpoF2j3aa/odLoR3ZUeTpfQV9LL6Ufol+gD9HcMDYYVg8eIZygZmxgHGGcZdxivmEymGdOLGcdUMDcx65jnmQ+Zb1VYKrYqfBWRygqVSpUmlRsqL1Spqqaq3qoLVfNVy1SPqV5Tfa5GVTNT46kJ1JarVaqdUOtTG1NnqTuoh6pnqG9UP6R+Wf2JBlnDTMNPQ6RRoLFf47zGIAtjGbN4LCFrDauGdYE1xCaxzdl8diq7mP0du4s9qqmhOUMzSjNXs1LzlGY/B+OYcficdE4J5yinl/N+it4U7yniKRumNEy5MWVca6qWl5ZYq0irUatH6702ru2nnaa9RbtZ+4EOQcdKJ1wnR2ePzgWd51PZU92nCqcWTT069a4uqmulG6G7RHe/bqfumJ6+XoCeTG+n3nm95/ocfS/9VP1t+qf1RwxYBrMMJAbbDM4YPMU1cW88HS/H2/FRQ13DQEOlYZVhl+GEkbnRPKPVRo1GD4xpxlzjJONtxm3GoyYGJiEmS03qTe6aUk25pimmO0w7TMfNzM2izdaZNZs9Mdcy55vnm9eb37dgWnhaLLaotrhlSbLkWqZZ7ra8boVaOVmlWFVaXbNGrZ2tJda7rbunEae5TpNOq57WZ8Ow8bbJtqm3GbDl2AbbrrZttn1hZ2IXZ7fFrsPuk72Tfbp9jf09Bw2H2Q6rHVodfnO0chQ6Vjrems6c7j99xfSW6S9nWM8Qz9gz47YTyynEaZ1Tm9NHZxdnuXOD84iLiUuCyy6XPi6bG8bdyL3kSnT1cV3hetL1nZuzm8LtqNuv7jbuae6H3J/MNJ8pnlkzc9DDyEPgUeXRPwuflTBr36x+T0NPgWe15yMvYy+RV63XsLeld6r3Ye8XPvY+cp/jPuM8N94y3llfzDfAt8i3y0/Db55fhd9DfyP/ZP96/9EAp4AlAWcDiYFBgVsC+/h6fCG/jj8622X2stntQYyguUEVQY+CrYLlwa0haMjskK0h9+eYzpHOaQ6FUH7o1tAHYeZhi8N+DCeFh4VXhj+OcIhYGtExlzV30dxDc99E+kSWRN6bZzFPOa8tSjUqPqouajzaN7o0uj/GLmZZzNVYnVhJbEscOS4qrjZubL7f/O3zh+Kd4gvjexeYL8hdcHmhzsL0hacWqS4SLDqWQEyITjiU8EEQKqgWjCXyE3cljgp5wh3CZyIv0TbRiNhDXCoeTvJIKk16kuyRvDV5JMUzpSzluYQnqZC8TA1M3Zs6nhaadiBtMj06vTGDkpGQcUKqIU2TtmfqZ+ZmdsusZYWy/sVui7cvHpUHyWuzkKwFWS0KtkKm6FRaKNcqB7JnZVdmv82JyjmWq54rze3Ms8rbkDec75//7RLCEuGStqWGS1ctHVjmvaxqObI8cXnbCuMVBSuGVgasPLiKtipt1U+r7VeXrn69JnpNa4FewcqCwbUBa+sLVQrlhX3r3NftXU9YL1nftWH6hp0bPhWJiq4U2xeXFX/YKNx45RuHb8q/mdyUtKmrxLlkz2bSZunm3i2eWw6Wqpfmlw5uDdnatA3fVrTt9fZF2y+XzSjbu4O2Q7mjvzy4vGWnyc7NOz9UpFT0VPpUNu7S3bVh1/hu0e4be7z2NOzV21u89/0+yb7bVQFVTdVm1WX7Sfuz9z+uiarp+Jb7bV2tTm1x7ccD0gP9ByMOtte51NUd0j1UUo/WK+tHDscfvv6d73ctDTYNVY2cxuIjcER55On3Cd/3Hg062naMe6zhB9Mfdh1nHS9qQprymkabU5r7W2Jbuk/MPtHW6t56/EfbHw+cNDxZeUrzVMlp2umC05Nn8s+MnZWdfX4u+dxg26K2e+djzt9qD2/vuhB04dJF/4vnO7w7zlzyuHTystvlE1e4V5qvOl9t6nTqPP6T00/Hu5y7mq65XGu57nq9tXtm9+kbnjfO3fS9efEW/9bVnjk93b3zem/3xff13xbdfnIn/c7Lu9l3J+6tvE+8X/RA7UHZQ92H1T9b/tzY79x/asB3oPPR3Ef3BoWDz/6R9Y8PQwWPmY/Lhg2G6544Pjk54j9y/en8p0PPZM8mnhf+ov7LrhcWL3741evXztGY0aGX8peTv218pf3qwOsZr9vGwsYevsl4MzFe9Fb77cF33Hcd76PfD0/kfCB/KP9o+bH1U9Cn+5MZk5P/BAOY8/xjMy3bAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAGbSURBVHjajNO/S1VxGMfx9+ebQ6FiImkOgatTDYlKXgfPgVAbHRpt6U/oH6jmHAPH2gOX2vx1URCaWoKGhhQ1hKsJLnqeT8sxTveeSz3bFx5ez/f58vkqyzL+pyQhiYhYsL0i6bIoiuf6B/AIENCUBPAUWAX6AGx/6wpIyoEPJTBhewxYk9Rz3RMRXYEeSevATHneB/qBgcqAi4hY6gAkYVvApKS3wP2aAYWk5Yh4rzzPKff7U7axfQP4LKkdOJb0zPZH23QAtpE0FBGbwLmkV7ZfV6AD29PAD6AWGLa9JSlJemj7l6THtj9VbnFuexHYbgcGbe+UjzgLHNq+DawBt4BeYBy4sj33FxARA8BeOblh+0jSsO0mcAk8sD0u6Q3w0vZGdYWhiGgCKaXUAH7aHikDFMAU0IqIzrzkeX6nsvOU7Zak0YjYklRImgZaZXBqgW3gXtl4aHsQ2AWSpAZwXEleJ5Bl2feU0rztr5WdQ9IMcFJt7naDL5JeAKcR8S6ldAVM2j5rD1g3YB24C9wEDiQ9AU7rPkgd8HsAv5vXzUui544AAAAASUVORK5CYII=) center center no-repeat}.fl-color-picker-clear{position:relative;display:block;width:17px;height:30px;border-left:none;background-color:#FAFAFA}.fl-color-picker-color.fl-color-picker-empty+.fl-color-picker-clear{display:none}.fl-color-picker-ui{display:inline-block;z-index:999999;position:fixed;overflow:hidden;padding-bottom:45px;border:1px solid rgba(0,0,0,.1);color:#999;background-color:#FAFAFA;border-radius:3px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1);-webkit-transition:opacity .2s,visibility .2s;-moz-transition:opacity .2s,visibility .2s;-ms-transition:opacity .2s,visibility .2s;-o-transition:opacity .2s,visibility .2s;transition:opacity .2s,visibility .2s;visibility:hidden;opacity:0;-webkit-transform:translate3d(0,0,0)}.fl-color-picker-ui.fl-color-picker-active{visibility:visible;opacity:1}.fl-color-picker-ui .fl-color-picker-input,.fl-color-picker-ui .fl-color-picker-input:focus{width:100%;height:30px;border:none!important;font-size:14px!important;padding:0 8px;vertical-align:middle;color:#999;background-color:#fff;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.fl-color-picker-ui .iris-square-value{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.fl-color-picker-preset-add{position:absolute;top:8px;right:8px;width:14px;height:14px;background-color:#999;border-radius:50%;cursor:pointer;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;transition:all .2s}.fl-color-picker-preset-add:hover{background-color:#333}.fl-color-picker-preset-add:after,.fl-color-picker-preset-add:before{content:'';display:block;position:relative;background-color:#fff}.fl-color-picker-preset-add:before{top:6px;left:3px;width:8px;height:2px}.fl-color-picker-preset-add:after{left:6px;top:1px;width:2px;height:8px}.fl-color-picker-presets{position:absolute;left:0;bottom:0;width:100%;z-index:15;overflow:auto;border-top:1px solid rgba(0,0,0,.1);background-color:#FAFAFA}.fl-color-picker-presets-list .fl-color-picker-preset:hover,.fl-color-picker-presets-toggle:hover{background-color:#EDEDED}.fl-color-picker-presets-toggle{position:relative;overflow:hidden;width:100%;height:35px;text-align:center;line-height:35px;font-size:12px;font-weight:700;cursor:pointer;-webkit-transition:all .1s;-moz-transition:all .1s;-ms-transition:all .1s;-o-transition:all .1s;transition:all .1s}.fl-color-picker-presets-close-label,.fl-color-picker-presets-open-label{position:absolute;top:50%;left:50%;visibility:hidden;color:#999;-webkit-transition:all .5s;-moz-transition:all .5s;-ms-transition:all .5s;-o-transition:all .5s;transition:all .5s;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%);opacity:0}.fl-color-picker-presets-close-label.fl-color-picker-active,.fl-color-picker-presets-open-label.fl-color-picker-active{color:#999;visibility:visible;opacity:1}.fl-color-picker-presets-list{width:100%;list-style:none;margin:0;padding:0;overflow:auto}.fl-color-picker-presets-list .fl-color-picker-no-preset,.fl-color-picker-presets-list .fl-color-picker-preset{position:relative;padding:5px;font-size:12px;border-top:1px solid rgba(0,0,0,.1);-webkit-transition:all .1s;-moz-transition:all .1s;-ms-transition:all .1s;-o-transition:all .1s;transition:all .1s}.fl-color-picker-presets-list .fl-color-picker-preset-color{display:inline-block;width:20px;height:20px;margin-right:3px;vertical-align:middle;border:1px solid rgba(0,0,0,.1);border-radius:2px;cursor:pointer}.fl-color-picker-presets-list .fl-color-picker-preset-label{vertical-align:middle;color:#999}.fl-color-picker-clear .fl-color-picker-icon-remove,.fl-color-picker-presets-list .fl-color-picker-preset-remove{position:absolute;top:50%;cursor:pointer;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.fl-color-picker-clear .fl-color-picker-icon-remove{right:0}.fl-color-picker-presets-list .fl-color-picker-preset-remove{right:5px}.fl-color-picker-presets-list .fl-color-picker-preset-remove:hover:after,.fl-color-picker-presets-list .fl-color-picker-preset-remove:hover:before{background-color:#333}.fl-color-picker-added{position:absolute;width:100%;top:0;left:0;right:0;bottom:35px;z-index:10;color:#fff;text-align:center;background-color:rgba(0,0,0,.6)}.fl-color-picker-added-text{position:absolute;top:50%;left:50%;width:80%;font-size:14px;color:#fff!important;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.fl-color-picker-icon-check{position:relative;width:50px;height:50px;margin:5px auto}.fl-color-picker-icon-check:before{content:'';display:block;position:relative;width:15px;height:30px;margin-left:14px;border:7px solid #fff;border-left:none;border-top:none;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.fl-color-picker-icon-arrow-down,.fl-color-picker-icon-arrow-up{display:inline-block;position:relative;width:10px;height:10px;margin-left:5px}.fl-color-picker-icon-arrow-down:before,.fl-color-picker-icon-arrow-up:before{content:'';display:block;position:relative;width:6px;height:6px;border:2px solid #999;border-left:none;border-top:none;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.fl-color-picker-icon-arrow-up{top:2px;-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fl-color-picker-icon-remove{width:15px;height:15px}.fl-color-picker-icon-remove:after,.fl-color-picker-icon-remove:before{content:'';display:block;position:relative;background-color:#999}.fl-color-picker-icon-remove:before{left:6px;width:2px;height:10px;margin-top:3px;background:#999;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.fl-color-picker-icon-remove:after{left:6px;width:2px;height:10px;margin-top:-10px;background:#999;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.fl-icons-filter input,.fl-icons-filter select{vertical-align:middle;width:160px}.fl-icon-selector .fl-lightbox{height:100%}.fl-icons-filter{height:auto!important;margin:0!important;position:absolute!important;right:10px;top:10px}.fl-icons-filter input{line-height:18px}.fl-icons-list{bottom:52px;left:0;overflow:auto;padding:20px;position:absolute;right:0;top:48px}.fl-icons-list::-webkit-scrollbar{background-color:#ccc;-webkit-appearance:none;width:10px}.fl-icons-list::-webkit-scrollbar-thumb{background-color:#666;border:1px solid #ccc}.fl-icons-section{text-align:center}.fl-icons-section h2{border-bottom:1px solid #dfdfdf;color:#333!important;font-family:Helvetica,Verdana,sans-serif!important;font-size:16px!important;font-weight:700!important;margin:0 0 20px!important;padding:0 0 10px!important;text-align:left}.fl-icons-list i,.fl-icons-list i:before{cursor:pointer;display:inline-block;font-size:32px;height:80px;line-height:80px;width:80px}.fl-icons-list i:hover{background:#e5e5e5}.fl-icon-selector-footer{bottom:0;left:0;position:absolute;right:0}.fl-lightbox-mask,.fl-lightbox-wrap{bottom:0;left:0;position:fixed;right:0;top:0}.fl-lightbox-wrap{display:none;overflow:auto;padding:30px;z-index:100010;-webkit-backface-visibility:hidden;-webkit-transform:translateZ(0)}.fl-lightbox-wrap.fl-icon-selector{z-index:100011}.fl-lightbox-mask{background:#000;opacity:.7;filter:alpha(opacity=70);z-index:100010}.fl-lightbox,.fl-lightbox-header{background:#fff;position:relative}.fl-lightbox{box-shadow:rgba(0,0,0,1) 0 4px 30px;-moz-box-shadow:rgba(0,0,0,1) 0 4px 30px;-webkit-box-shadow:rgba(0,0,0,1) 0 4px 30px;z-index:100011}.fl-lightbox :not(i){color:#333;font-family:Helvetica,Verdana,sans-serif;font-size:12px;line-height:16px;text-decoration:none;text-transform:none}.fl-lightbox *,.fl-lightbox :after,.fl-lightbox :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fl-lightbox .fl-nanoscroller-pane{bottom:4px;right:4px;width:8px}.fl-lightbox .fa{font-family:FontAwesome}.fl-lightbox-content-wrap{height:100%}.fl-lightbox.ui-draggable{box-shadow:rgba(0,0,0,.5) 0 4px 30px;-moz-box-shadow:rgba(0,0,0,.5) 0 4px 30px;-webkit-box-shadow:rgba(0,0,0,.5) 0 4px 30px}.fl-lightbox-header{border-bottom:1px solid #dfdfdf;box-shadow:0 4px 4px -4px rgba(0,0,0,.1);-moz-box-shadow:0 4px 4px -4px rgba(0,0,0,.1);-webkit-box-shadow:0 4px 4px -4px rgba(0,0,0,.1)}.fl-lightbox-header h1{color:#333!important;font-size:18px!important;font-family:Helvetica,Verdana,sans-serif!important;font-weight:300!important;margin:0!important;padding:15px 20px!important}.fl-lightbox.ui-draggable .fl-lightbox-header{cursor:move}.fl-lightbox-footer{border-top:1px solid #dfdfdf;box-shadow:0 -4px 4px -4px rgba(0,0,0,.1);-moz-box-shadow:0 -4px 4px -4px rgba(0,0,0,.1);-webkit-box-shadow:0 -4px 4px -4px rgba(0,0,0,.1);padding:10px;text-align:right}.fl-lightbox-footer .fl-builder-button{margin-left:5px!important}
1
+ .fl-builder-edit #wpadminbar,.fl-builder-hidden-editor{display:none}html.fl-builder-edit{margin-top:43px!important}.fl-builder-edit body{position:static!important}.fl-clear{clear:both}.fl-builder-loading{background:url(../img/ajax-loader.gif) center center no-repeat rgba(240,240,240,.8);bottom:0;display:none;left:0;position:fixed;right:0;text-align:center;top:0;z-index:200000}.fl-builder-settings .fl-builder-loading{background:url(../img/ajax-loader.gif) center center no-repeat rgba(255,255,255,.8);display:block;position:absolute}#tiptip_holder{z-index:200000}.screen-reader-text{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden}.fl-visible-desktop,.fl-visible-desktop-medium,.fl-visible-medium,.fl-visible-medium-mobile,.fl-visible-mobile{display:block!important}.fl-builder-button{color:#555;border-color:#ccc;background:#f7f7f7;-webkit-box-shadow:inset 0 1px 0 #fff,0 1px 0 rgba(0,0,0,.08);box-shadow:inset 0 1px 0 #fff,0 1px 0 rgba(0,0,0,.08);vertical-align:top;display:inline-block;text-decoration:none;font-size:13px!important;line-height:13px!important;height:28px;margin:0;padding:7px 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-border-radius:3px;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box!important;-moz-box-sizing:border-box!important;box-sizing:border-box!important}.fl-builder-button:hover{background:#fafafa;border-color:#999;color:#222}.fl-builder-button-primary{background:#2ea2cc;border-color:#0074a2;-webkit-box-shadow:inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15);color:#fff!important;text-decoration:none}.fl-builder-button-primary:hover{background:#1e8cbe;border-color:#0074a2;-webkit-box-shadow:inset 0 1px 0 rgba(120,200,230,.6);box-shadow:inset 0 1px 0 rgba(120,200,230,.6);color:#fff!important}.fl-builder-button-large{height:30px;line-height:30px!important;padding:0 12px 2px}.fl-builder-button-small{font-size:11px!important;line-height:11px!important;height:24px}.fl-builder-help-button{color:#b3b3b3;font-size:16px!important}.fl-builder-help-button i{position:relative;top:-1px}.fl-builder-help-button:hover{color:#666}.fl-builder-badge{background:#333;border-radius:2px;color:#fff!important;display:inline;font-size:11px!important;font-weight:400;letter-spacing:1px;margin-left:2px;padding:2px 4px;vertical-align:top}.fl-builder-badge-global{background:#ff9600}.fl-builder-has-submenu{position:relative}ul.fl-builder-submenu{background:#3ba0ff;box-shadow:0 0 20px rgba(0,0,0,.2);display:none;left:0;list-style:none;margin:0;padding:6px 0;position:absolute;text-align:left;top:100%;width:155px;z-index:100008}.fl-builder-submenu-right ul.fl-builder-submenu{left:auto;right:0}.fl-builder-submenu-open ul.fl-builder-submenu{display:block}ul.fl-builder-submenu li a{color:#fff!important;display:block;line-height:13px;font-size:13px;font-family:Helvetica,Verdana,sans-serif;font-weight:400;opacity:.8;filter:alpha(opacity=80);padding:6px 12px;text-decoration:none}ul.fl-builder-submenu li a:hover{background:#54acff;color:#fff;opacity:1;filter:alpha(opacity=100)}.fl-builder-bar-content,.fl-builder-panel{color:#999;font-family:Helvetica,Verdana,sans-serif}.fl-block-overlay-global ul.fl-builder-submenu{background:#ff9600}.fl-block-overlay-global ul.fl-builder-submenu li a:hover{background:#fa3}.fl-builder-bar{left:0;position:fixed;right:0;top:0;z-index:100008}.fl-builder-bar-content{background:#f4f4f4;border-bottom:1px solid #ccc;box-shadow:0 0 8px rgba(0,0,0,.2);-moz-box-shadow:0 0 8px rgba(0,0,0,.2);-webkit-box-shadow:0 0 8px rgba(0,0,0,.2);font-size:14px;height:43px}.fl-builder-bar-title{color:#333;display:block;float:left;font-size:20px;font-weight:300;line-height:20px;padding:7px 10px}.fl-builder-bar-title img{height:30px!important;margin:0 1px 0 0!important;vertical-align:middle!important}.fl-builder-bar-title span{vertical-align:middle}.fl-builder-bar-title.fl-builder-bar-title-no-icon{padding:12px}.fl-builder-bar-actions{float:right;padding:7px}.fl-builder-bar .fl-builder-button{float:right;margin:0 0 0 6px}.fl-builder-bar .fl-builder-add-content-button{display:none}.fl-builder-buy-button,.fl-builder-upgrade-button{background:#f7951e;border-color:#de7c04;-webkit-box-shadow:inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);color:#fff!important;text-decoration:none}.fl-builder-buy-button:hover,.fl-builder-upgrade-button:hover{background:#de861b;border-color:#c46e04;-webkit-box-shadow:inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);color:#fff!important}.fl-builder-panel{background:#f0f0f0;border-left:1px solid #ccc;bottom:0;box-shadow:0 0 8px rgba(0,0,0,.2);-moz-box-shadow:0 0 8px rgba(0,0,0,.2);-webkit-box-shadow:0 0 8px rgba(0,0,0,.2);font-size:14px;opacity:1;position:fixed;right:0;top:43px;width:300px;z-index:100007;-webkit-transform:translateZ(0);transition:opacity .2s;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;-ms-transition:opacity .2s;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fl-block-col-resize-feedback,.fl-builder-drop-zone,.fl-builder-empty{font-family:Helvetica,Verdana,sans-serif!important}.fl-builder-panel-actions{background:#f4f4f4;border-bottom:1px solid #dbdbdb;height:43px;left:0;position:absolute;right:0;top:0;text-align:right;z-index:100009}.fl-builder-panel-actions .fl-builder-panel-close{color:#bfbfbf;cursor:pointer;float:left;font-size:18px;margin:12px 18px}.fl-builder-panel-actions .fl-builder-panel-close:hover{color:#333}.fl-builder-panel-content-wrap{bottom:0;height:auto;left:0;overflow:hidden;position:absolute;right:0;top:43px}.fl-builder-panel-content{padding-bottom:60px}.fl-builder-blocks-section .fl-builder-block,.fl-builder-blocks-section .fl-builder-blocks-section-title{cursor:pointer;display:block;line-height:14px;padding:15px 20px}.fl-builder-blocks-section .fl-builder-blocks-section-title{border-bottom:1px solid #dfdfdf;color:#333;font-weight:400}.fl-builder-blocks-section .fl-builder-blocks-section-title i{color:#bfbfbf;float:right}.fl-builder-blocks-section .fl-builder-blocks-section-title:hover,.fl-builder-blocks-section .fl-builder-blocks-section-title:hover i{background:#e5e5e5}.fl-builder-blocks-section-content{background:#fff;display:none}.fl-builder-blocks-section.fl-active .fl-builder-blocks-section-content{display:block}.fl-builder-blocks-section-content .fl-builder-block{border-bottom:1px solid #ebebeb;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fl-builder-blocks-section-content .fl-builder-block i{color:#d9d9d9;margin-right:10px}.fl-builder-blocks-section-content .fl-builder-block:hover{background:#0074a1;color:#fff;cursor:move}.fl-builder-blocks-separator{background:#dfdfdf;height:6px}.fl-builder-block:hover .fl-builder-badge{background:#2ea2cc}.ui-sortable-helper .fl-builder-badge{display:none!important}.fl-builder-block-template-image{margin:5px 0 10px;max-width:100%}.fl-photo-field .fl-photo-preview-img img,.fl-video-field .fl-video-preview-img img{max-width:60px}.fl-builder-block-template .fl-builder-block-title{display:block}.ui-sortable-helper .fl-builder-block-template-image{display:none!important}span.fl-builder-block-no-node-templates{display:block;padding:15px 20px}span.fl-builder-block-no-node-templates:hover{cursor:default;background:#fff}.fl-builder-blocks-node-template .fl-builder-block{position:relative}.fl-builder-blocks-section-content .fl-builder-node-template-actions{bottom:0;cursor:default;display:none;position:absolute;right:0;top:0;width:72px}.fl-builder-blocks-section-content .fl-builder-node-template-delete,.fl-builder-blocks-section-content .fl-builder-node-template-edit{bottom:0;cursor:pointer;margin:0;padding:15px 0;position:absolute;text-align:center;top:0;width:30px}.fl-builder-blocks-section-content .fl-builder-node-template-delete{right:12px}.fl-builder-blocks-section-content .fl-builder-node-template-edit{right:42px}.fl-builder-blocks-section-content .fl-builder-node-template-delete i,.fl-builder-blocks-section-content .fl-builder-node-template-edit i{margin:0}.fl-builder-blocks-section-content .fl-builder-node-template-delete:hover i,.fl-builder-blocks-section-content .fl-builder-node-template-edit:hover i{color:#fff}.fl-builder-blocks-node-template .fl-builder-block:hover{padding-right:85px}.fl-builder-blocks-node-template .fl-builder-block:hover .fl-builder-node-template-actions{display:block}.ui-sortable-helper .fl-builder-node-template-delete,.ui-sortable-helper .fl-builder-node-template-edit{display:none!important}.fl-builder-empty{border:1px dashed #3ba0ff;color:#3ba0ff;font-size:14px;margin:10px;padding:100px 20px;text-align:center;text-transform:uppercase}.fl-builder-empty .fl-builder-drop-zone{margin:10px}.fl-builder-block-drag-helper,.fl-builder-block.ui-draggable-dragging{background:#fff!important;border:1px solid #ccc;box-shadow:0 0 8px rgba(0,0,0,.2);-moz-box-shadow:0 0 8px rgba(0,0,0,.2);-webkit-box-shadow:0 0 8px rgba(0,0,0,.2);color:#999!important;font-family:Helvetica,Verdana,sans-serif!important;font-size:14px!important;height:45px!important;line-height:42px!important;overflow:hidden;padding:0 18px;position:fixed!important;text-overflow:ellipsis;white-space:nowrap;width:140px!important;z-index:100010}.fl-builder-drop-zone{background:#3ba0ff;color:#fff;display:block;font-weight:700;font-size:14px;margin:10px;padding:10px;text-shadow:none}.fl-builder-drop-zone-global{background:#ff9600}.fl-builder-content>.fl-builder-drop-zone{margin:10px 20px}.fl-row-content>.fl-builder-drop-zone{margin:5px}.fl-row-highlight{padding:5px 0}.fl-row-highlight .fl-row-content{border:1px dashed red;padding:5px}.fl-col-highlight{padding:15px 5px}.fl-col-highlight .fl-col-content{border-style:dashed;border-color:#3ba0ff;min-height:100px;border-width:1px}.fl-col-highlight.fl-node-global .fl-col-content{border-color:#ff9600}.fl-builder-simple .fl-col-highlight .fl-col-content{border:none}.fl-block-overlay,.fl-block-overlay *{text-shadow:none}.fl-block-overlay-active{position:relative}.fl-block-overlay-actions{background:#3ba0ff;float:left;margin:0 -1px;text-shadow:none}.fl-block-overlay-actions>span{display:block;float:left}.fl-block-overlay-actions i{color:#fff!important;cursor:pointer;display:block!important;float:left;font-size:14px!important;height:28px!important;font-weight:100!important;line-height:28px!important;opacity:.8;filter:alpha(opacity=80);text-align:center;width:28px!important}.fl-block-overlay-actions i:hover{opacity:1;filter:alpha(opacity=100)}.fl-block-overlay-actions>i:first-child{padding-left:4px}.fl-block-overlay-actions>i:last-child{padding-right:2px}.fl-block-overlay-actions i.fl-block-move{cursor:move}.fl-block-overlay-title{border-right:1px solid #5eb1ff;color:#fff!important;float:left;font-family:Helvetica,Verdana,sans-serif;font-size:13px;height:30px;line-height:29px;margin-right:2px;padding:0 8px}.fl-row-overlay{background:rgba(59,160,255,.15);border:1px solid #3ba0ff;bottom:0;box-sizing:border-box!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important;color:#fff;left:0;position:absolute;top:-30px;width:100%;z-index:100006}.fl-row-overlay-header-bottom{bottom:-30px;top:0}.fl-row-overlay-header-bottom .fl-block-overlay-header{position:absolute;bottom:0}.fl-block-overlay-active .fl-row-content-wrap{position:relative}.fl-block-overlay-active .fl-row-content{position:relative;z-index:100007}.fl-col-overlay,.fl-module-overlay{background:rgba(59,160,255,.15);border:1px solid #3ba0ff;cursor:pointer;color:#fff;position:absolute;z-index:100007}.fl-col-overlay{bottom:15px;left:5px;right:5px;top:15px}.fl-module-overlay{bottom:4px;left:4px;min-height:32px;right:4px;top:4px}.fl-builder-global-templates-locked .fl-block-overlay-global.fl-module-overlay{cursor:default}.fl-module-adjust-height{padding-bottom:15px;padding-top:15px}.fl-block-overlay-global{background:rgba(255,150,0,.1);border:1px solid #ff9600}.fl-block-overlay-global .fl-block-overlay-actions{background:#ff9600}.fl-block-overlay-global .fl-block-overlay-title{border-right:1px solid #ffcf66}.fl-block-overlay-title-global{background:#fff;border-radius:2px;color:#ff9600!important;font-size:11px;letter-spacing:1px;margin-left:4px;padding:2px 4px;vertical-align:top}.fl-block-overlay-global.fl-row-overlay{background:rgba(255,150,0,.3);cursor:pointer;z-index:100007}.fl-builder-global-templates-locked .fl-block-overlay-global.fl-row-overlay{cursor:default}.fl-builder-row-template .fl-block-overlay-global.fl-row-overlay{background:rgba(255,150,0,.1);cursor:default;z-index:100006}.fl-block-overlay-muted .fl-row-overlay{background:rgba(153,153,153,.1);border:1px solid #8c8c8c}.fl-block-overlay-muted .fl-row-overlay .fl-block-overlay-actions{background:#8c8c8c}.fl-block-overlay-muted .fl-row-overlay .fl-block-overlay-title{border-right:1px solid #a6a6a6}.fl-node-disabled{position:relative}.fl-node-disabled-overlay{background:rgba(153,153,153,.75);bottom:0;left:0;position:absolute;right:0;top:0}.fl-block-col-resize{bottom:0!important;position:absolute;top:0!important;width:6px}.fl-block-col-resize-e{cursor:ew-resize;left:auto!important;right:-4px!important}.fl-block-col-resize-w{cursor:ew-resize;left:-4px!important}.fl-block-col-resize-handle-wrap{margin:-4px 0 0 -5px;padding:0 5px;position:absolute;top:50%!important}.fl-block-col-resize-e .fl-block-col-resize-handle-wrap{margin-left:-6px}.fl-block-col-resize-handle{background:#fff;border:1px solid #259aff;height:7px;width:7px}.fl-block-col-resize-feedback{color:#333!important;display:none;font-size:11px!important;position:absolute}.fl-builder-actions-title,.fl-builder-alert-lightbox .fl-lightbox-message{color:#333!important;font-family:Helvetica,Verdana,sans-serif!important;font-size:16px!important}.fl-block-col-resize-feedback-left,.fl-block-col-resize-feedback-right{background:#fff;border:1px solid #3ba0ff;padding:2px 4px}.fl-block-col-resize-feedback-left{right:20px;top:-7px}.fl-block-col-resize-feedback-right{left:20px;top:-7px}.fl-builder-actions-lightbox .fl-lightbox{width:300px}.fl-builder-actions-lightbox .fl-builder-actions{display:block;padding:25px;text-align:center}.fl-builder-actions-title{display:block;margin-bottom:20px}.fl-builder-actions .fl-builder-button{display:block;margin-bottom:7px}.fl-builder-alert-lightbox{z-index:200001}.fl-builder-alert-lightbox .fl-lightbox{width:440px!important}.fl-builder-alert-lightbox .fl-lightbox-message{line-height:24px;padding:30px}.fl-builder-settings-message,.fl-builder-settings-message *{font-size:15px!important;line-height:23px!important}.fl-template-category-select{width:180px!important}.fl-template-selector .fl-builder-settings-section{margin:0 0 10px}.fl-template-selector .fl-builder-settings-fields{height:470px}.fl-template-selector .fl-builder-settings-tab-description{font-size:15px!important;margin:0!important;padding:10px 0 25px;text-align:center}.fl-template-preview{float:left;margin:0 20px 30px 0;position:relative;text-align:center;width:170px}.fl-template-preview.fl-last{margin-right:0}.fl-template-image{border:1px solid #d9d9d9;cursor:pointer;margin-bottom:12px;height:164px;overflow:hidden}.fl-template-image:hover{border-color:red}.fl-template-image img{max-height:none;width:100%}.fl-template-preview span{display:block;text-align:center}.fl-user-template-category-name{background:#f2f2f2;border-bottom:3px solid #dfdfdf;border-top:2px solid #dfdfdf;font-weight:700;padding:8px 15px}.fl-user-templates{border-top:1px solid #dfdfdf;margin-bottom:20px;margin-right:8px}.fl-user-template{border-bottom:1px solid #dfdfdf;padding:15px;position:relative}.fl-user-template:hover{background:#0074a1;color:#fff!important;cursor:pointer}.fl-user-template:hover *{color:#fff!important}.fl-user-template-actions{bottom:0;position:absolute;right:0;top:0}.fl-user-template-actions a{color:#bfbfbf!important;display:inline-block;padding:15px}.fl-user-template:hover a{color:#99c7d9!important}.fl-user-template:hover a:hover{color:#fff!important}.fl-user-templates-message{display:none}.fl-builder-node-template-settings .fl-builder-settings-fields,.fl-builder-user-template-settings .fl-builder-settings-fields{height:150px}.fl-builder-lightbox .fl-lightbox{width:600px}form.fl-builder-settings{margin:0;padding:0}.fl-builder-settings-message{padding:20px 25px!important;background:#f2f2f2!important}.fl-builder-preview-loader{position:relative;top:-1px;margin-left:3px}.fl-lightbox-header .fl-builder-preview-loader{margin:0;position:absolute;right:15px;top:15px}.fl-builder-settings-tabs{background:#f5f5f5;border-bottom:1px solid #dfdfdf;padding:15px 20px 0}.fl-builder-settings-tabs a{color:#999;display:inline-block;margin:0;padding:10px 20px;text-decoration:none}.fl-builder-settings-tabs a:hover{color:#333}.fl-builder-settings-tabs a.fl-active{background:#fff;border:1px solid #dfdfdf;border-bottom:none;color:#222;position:relative;top:1px}.fl-builder-settings-tabs a.error{color:#d03436;padding-right:10px}.fl-builder-settings-tabs a.error .fl-error-icon{background:url(../img/sprite.png) -148px -5px no-repeat;display:inline-block;height:16px;margin-left:7px;position:relative;top:3px;width:16px}.fl-builder-settings-tab{display:none;width:550px}.fl-builder-settings-tab.fl-active{display:block}.fl-builder-settings-tab-description{background:#f5f5f5;padding:10px 15px}.fl-form-table{border:none;width:100%}.fl-form-table tbody{border:none}.fl-form-table th{border:none!important;background:#fff!important;font-weight:400!important;padding:10px!important;text-align:left!important;vertical-align:top!important;width:200px!important}.fl-form-table td{border:none;padding:8px 10px}.fl-builder-settings-fields{height:410px;margin:5px 0 0;overflow:hidden;position:relative}.fl-lightbox-header .fl-builder-settings-fields{height:auto;margin:0;position:absolute;right:10px;top:10px}.fl-builder-settings-fields .fl-nanoscroller-content{padding:15px 20px}.fl-builder-settings-fields input[type=email],.fl-builder-settings-fields input[type=file],.fl-builder-settings-fields input[type=number],.fl-builder-settings-fields input[type=password],.fl-builder-settings-fields input[type=search],.fl-builder-settings-fields input[type=tel],.fl-builder-settings-fields input[type=text],.fl-builder-settings-fields input[type=url],.fl-builder-settings-fields select,.fl-builder-settings-fields textarea{background-color:#fff;border-color:#dfdfdf;border-style:solid;border-width:1px;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;color:#333;display:inline;font-size:12px;height:auto;line-height:15px;margin:1px;outline:0;padding:3px;width:auto}.fl-builder-settings-fields input[type=email]:focus,.fl-builder-settings-fields input[type=file]:focus,.fl-builder-settings-fields input[type=number]:focus,.fl-builder-settings-fields input[type=password]:focus,.fl-builder-settings-fields input[type=search]:focus,.fl-builder-settings-fields input[type=tel]:focus,.fl-builder-settings-fields input[type=text]:focus,.fl-builder-settings-fields input[type=url]:focus,.fl-builder-settings-fields select:focus,.fl-builder-settings-fields textarea:focus{background:0 0;border-color:#aaa}.fl-builder-settings-fields select[multiple]{height:60px}.fl-builder-settings-fields ::-webkit-input-placeholder{color:#999!important}.fl-builder-settings-fields input:-moz-placeholder{color:#999}.fl-builder-settings-fields ::-moz-placeholder{color:#999!important}.fl-builder-settings-fields input:-ms-input-placeholder{color:#999}.fl-builder-settings-fields label{font-weight:400}.fl-builder-settings-fields select{height:2em;color:#000;padding:2px}.fl-builder-settings-description{border-bottom:1px solid #dfdfdf;margin:0 0 10px;padding-bottom:10px!important}.fl-builder-settings-fields table{margin:0}.fl-builder-settings-fields h3.fl-builder-settings-title{border-bottom:1px solid #dfdfdf;color:#333;font-size:14px;font-weight:700;margin:0 0 20px!important;padding:10px}.fl-builder-settings-section{margin-bottom:15px}.wp-core-ui h1,.wp-core-ui h2,.wp-core-ui h3,.wp-core-ui h4,.wp-core-ui h5,.wp-core-ui h6{color:#333}.wp-core-ui .submitbox .submitdelete{color:#a00}.wp-core-ui button{font-weight:400;text-transform:capitalize}.wp-core-ui input[type=email],.wp-core-ui input[type=file],.wp-core-ui input[type=number],.wp-core-ui input[type=password],.wp-core-ui input[type=search],.wp-core-ui input[type=tel],.wp-core-ui input[type=text],.wp-core-ui input[type=url],.wp-core-ui select,.wp-core-ui textarea{background-color:#fff;border-color:#dfdfdf;border-style:solid;border-width:1px;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;color:#333;font-weight:400}.wp-core-ui input[type=email]:focus,.wp-core-ui input[type=file]:focus,.wp-core-ui input[type=number]:focus,.wp-core-ui input[type=password]:focus,.wp-core-ui input[type=search]:focus,.wp-core-ui input[type=tel]:focus,.wp-core-ui input[type=text]:focus,.wp-core-ui input[type=url]:focus,.wp-core-ui select:focus,.wp-core-ui textarea:focus{background:0 0;border-color:#aaa}.wp-core-ui input[type=search]{background-image:none;padding:6px}.fl-builder-settings-fields input.text-full,.fl-builder-settings-fields textarea{width:97%}.fl-color-picker{cursor:pointer}.fl-color-picker .fl-color-picker-clear:hover{background-color:#ededed}.colorpicker input{padding:0!important;font-size:11px!important;color:#fff!important;width:29px!important;height:auto!important;background:0 0!important;border:none!important}.colorpicker .colorpicker_hex input{width:45px!important}.fl-builder-custom-field{border:1px solid #dfdfdf;border-radius:3px;padding:5px 10px}.fl-builder-custom-field a{color:#21759b!important;text-decoration:underline!important}.fl-builder-custom-field a:hover{color:#d54e21!important}.fl-builder-custom-field label.error{margin-top:5px}.fl-photo-field .fl-photo-select,.fl-photo-field.fl-photo-empty .fl-photo-preview{display:none}.fl-photo-field.fl-photo-empty .fl-photo-select{display:block}.fl-photo-field .fl-photo-preview-img{float:left;line-height:0;margin:5px 0}.fl-photo-field .fl-photo-preview select{margin:8px 0 8px 10px;width:200px}.fl-photo-field .fl-photo-edit{margin:0 0 0 11px}.fl-multiple-photos-field .fl-multiple-photos-add,.fl-photo-field .fl-photo-remove,.fl-photo-field .fl-photo-replace{margin:0 0 0 8px}.fl-builder-edit .media-frame{-webkit-backface-visibility:hidden}.fl-builder-edit .media-modal-content .thumbnail{padding:0;border:none;border-radius:0}.fl-builder-edit button.button-link.media-modal-close{position:absolute;box-shadow:none;-webkit-box-shadow:none}.fl-multiple-photos-field .fl-multiple-photos-select,.fl-multiple-photos-field.fl-multiple-photos-empty .fl-multiple-photos-add,.fl-multiple-photos-field.fl-multiple-photos-empty .fl-multiple-photos-count,.fl-multiple-photos-field.fl-multiple-photos-empty .fl-multiple-photos-edit,.fl-multiple-photos-lightbox .gallery-settings{display:none}.fl-multiple-photos-field.fl-multiple-photos-empty .fl-multiple-photos-select{display:inline}.fl-multiple-photos-count{font-weight:700;margin-bottom:3px}.fl-video-field .fl-video-select,.fl-video-field.fl-video-empty .fl-video-preview{display:none}.fl-video-field.fl-video-empty .fl-video-select{display:block}.fl-video-field .fl-video-preview-img{float:left;line-height:0;margin:5px 0}.fl-video-field .fl-video-preview-filename{display:inline-block;font-size:14px;font-weight:700;margin:7px 0 0 11px}.fl-video-field .fl-video-replace{margin:0 0 0 11px}.fl-multiple-audios-field .fl-multiple-audios-select,.fl-multiple-audios-field.fl-multiple-audios-empty .fl-multiple-audios-add,.fl-multiple-audios-field.fl-multiple-audios-empty .fl-multiple-audios-edit{display:none}.fl-multiple-audios-field.fl-multiple-audios-empty .fl-multiple-audios-select{display:block}.fl-multiple-audios-field .fl-multiple-audios-add{margin:0 0 0 8px}.fl-icon-field .fl-icon-select,.fl-icon-field.fl-icon-empty .fl-icon-preview{display:none}.fl-icon-field.fl-icon-empty .fl-icon-select{display:block}.fl-icon-field .fl-icon-preview i{display:inline-block;font-size:28px;margin:10px 10px 9px 2px;vertical-align:middle}.fl-icon-field .fl-icon-remove{margin:0 0 0 8px}.fl-builder-settings .wp-switch-editor{background:#ebebeb;border:1px solid #e5e5e5;border-radius:0;color:#333}.fl-builder-settings .wp-editor-container{border:1px solid #e5e5e5}.fl-builder-settings .mce-toolbar .mce-btn-group .mce-btn{margin:2px 0}.fl-builder-settings .mce-menubtn.mce-fixed-width button{width:100px}.mce-close:active,.mce-close:hover,.mce-toolbar .mce-btn button:active,.mce-toolbar .mce-btn button:hover,.mce-window .mce-btn button:active,.mce-window .mce-btn button:hover{background:0 0;border:none}.mce-ico{font-family:tinymce,Arial!important}.mce-toolbar i.mce-ico{font:400 20px/1 dashicons!important}.fl-builder-edit form#wp-link,.fl-color-picker-ui,.popover[class*=tour-],ul.as-list{font-family:Helvetica,Verdana,sans-serif}.wp-core-ui .quicktags-toolbar input.button.button-small{margin:1px!important}.wp-editor-container textarea.wp-editor-area{background:0 0;border:none;padding:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.fl-builder-edit form#wp-link{color:#000;font-size:13px}.fl-builder-edit form#wp-link #link-options label{display:block;margin-bottom:2px}.fl-builder-edit form#wp-link #link-options label span{padding-right:10px;width:60px;vertical-align:middle}.fl-builder-edit form#wp-link #link-options input[type=text]{display:inline-block;height:auto;margin:5px 0 0;padding:3px 5px;width:80%}.ace_editor,.ace_editor *{font-family:Monaco,Menlo,"Ubuntu Mono","Droid Sans Mono",Consolas,monospace!important;font-size:12px!important;font-weight:400!important;letter-spacing:0!important}.fl-builder-global-settings #fl-builder-settings-tab-css,.fl-builder-global-settings #fl-builder-settings-tab-js,.fl-builder-html-settings #fl-builder-settings-tab-general,.fl-builder-layout-settings #fl-builder-settings-tab-css,.fl-builder-layout-settings #fl-builder-settings-tab-js{width:560px}.fl-builder-global-settings #fl-builder-settings-section-css,.fl-builder-global-settings #fl-builder-settings-section-js,.fl-builder-html-settings #fl-builder-settings-section-general,.fl-builder-layout-settings #fl-builder-settings-section-css,.fl-builder-layout-settings #fl-builder-settings-section-js{margin-bottom:0}.fl-builder-global-settings #fl-builder-settings-tab-css td,.fl-builder-global-settings #fl-builder-settings-tab-js td,.fl-builder-html-settings #fl-builder-settings-section-general td,.fl-builder-layout-settings #fl-builder-settings-tab-css td,.fl-builder-layout-settings #fl-builder-settings-tab-js td{padding:0}.fl-layout-field-option{border:2px solid #d9d9d9;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-sizing:border-box!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important;cursor:pointer;float:left;line-height:0;max-width:23%;margin:0 1% 2%;padding:5px}.fl-layout-field-option-selected,.fl-layout-field-option:hover{border-color:red}.fl-layout-field-option img{max-width:100%}.fl-link-field-input{width:244px!important}.fl-link-field-search{display:none;border:1px solid #dfdfdf;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;margin:4px 0 0;padding:10px}.fl-link-field-search-title{display:block;margin:0 0 3px 2px}.fl-link-field-search-cancel{margin-top:6px}.fl-help-tooltip{display:inline-block;position:relative}.fl-help-tooltip-icon{color:#999!important;cursor:pointer;font-family:FontAwesome;font-size:15px!important;padding:5px;vertical-align:middle}.fl-help-tooltip-text{background:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ccc;-moz-box-shadow:0 0 5px #ccc;-webkit-box-shadow:0 0 5px #ccc;display:none;font-weight:400;left:23px;padding:10px 13px;position:absolute;top:-6px;width:250px;z-index:1000}.fl-form-field-preview-text .fa{font-size:18px;line-height:22px}.fl-builder-field-actions{padding-left:0!important;padding-right:0!important;text-align:center;vertical-align:middle;width:85px}.fl-builder-field-actions i{color:#999!important;cursor:pointer;font-size:13px!important;height:24px;line-height:29px!important;width:24px}.fl-builder-field-actions i:hover{color:#000!important}.fl-builder-field-actions i.fl-builder-field-copy,.fl-builder-field-actions i.fl-builder-field-delete{margin-left:5px}.fl-builder-field-actions i.fl-builder-field-move{cursor:move}.fl-builder-field-dd-helper{background:#ccc;height:30px!important;float:left;width:130px!important}.fl-builder-field-dd-zone{border:1px dashed #ccc;height:30px}.fl-builder-field-actions-single{width:auto}.fl-builder-field-actions-single i.fl-builder-field-delete,.fl-builder-field-actions-single i.fl-builder-field-move{display:none}.fl-builder-widget-settings input{display:inline-block!important;margin:5px 10px 8px!important}.fl-builder-lightbox-loading{background:url(../img/ajax-loader.gif) center center no-repeat;height:100px}.fl-builder-settings .error,.fl-builder-settings input.error{border-color:#d03436}.fl-builder-settings label.error,.fl-builder-settings p.error{color:#d03436;display:block;margin-top:5px}.fl-builder-settings .fl-form-table .fl-field-description{color:#999;font-style:normal}ul.as-selections{background-color:#fff;border-color:#dfdfdf;border-style:solid;border-width:1px;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;color:#333;font-size:12px;height:auto;line-height:15px;margin:1px;outline:0;padding:3px;width:auto}ul.as-selections.loading{background:url(../img/ajax-loader-small.gif) 98% center no-repeat}ul.as-selections li.as-selection-item{background:#d4eaf6;border:none;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;font-size:11px;line-height:14px;margin-bottom:4px;padding-bottom:0;padding-top:0}ul.as-selections li.as-selection-item.blur{background:#f4f4f4}ul.as-selections li.as-selection-item a.as-close{line-height:12px}ul.as-selections li.as-original{margin:0}ul.as-selections li.as-original input{height:auto;font-size:12px;margin:0;padding:0}ul.as-list{margin:0;font-size:13px;color:#000;background-color:#fff;background-color:rgba(255,255,255,.95);z-index:2;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);-moz-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);-ms-border-radius:0;-o-border-radius:0;border:none;border:1px solid #dfdfdf;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}li.as-message,li.as-result-item{border:none}li.as-result-item.active{background:#e5e5e5;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;color:#333;text-shadow:none}li.as-result-item em{background:0 0!important;color:#333!important;font-size:12px;padding:0!important}.fl-loop-builder-filter{display:none}.fl-builder-service-settings{position:relative}.fl-builder-service-error{color:red!important;padding:15px 0 0}.fl-builder-service-account-delete{color:red!important;margin-left:10px;position:relative;top:2px}.fl-builder-service-connect-row .fl-field-description{background:#f0f0f0;color:#333!important;display:block;float:none;margin:10px 0 0;padding:10px}.fl-builder-service-connect-row .fl-field-description a{color:#21759b!important;text-decoration:underline!important}.fl-builder-getting-started-video{line-height:0!important;padding:10px}.fl-builder-getting-started-video iframe{border:none;height:326px;width:100%}.fl-builder-tour-actions .fl-builder-actions-title{font-size:14px!important;line-height:19px}.fl-builder-tour-mask{bottom:0;left:0;position:fixed;right:0;top:0;z-index:100000000}.fl-builder-tour-dimmed{background:rgba(0,0,0,.7);bottom:0;left:0;position:absolute;right:0;top:0}body>.fl-builder-tour-dimmed{position:fixed}.tour-backdrop{z-index:110000}.popover[class*=tour-]{border:1px solid #ccc;border-radius:0;-webkit-box-shadow:0 0 30px rgba(0,0,0,.3);box-shadow:0 0 40px rgba(0,0,0,.3);color:#666;font-size:13px;font-weight:400;line-height:18px;max-width:none;padding:0;width:300px;z-index:100000001}.popover[class*=tour-].bottom>.arrow{border-bottom-color:#ccc}.popover[class*=tour-].bottom>.arrow:after{border-bottom-color:#f7f7f7}.popover[class*=tour-] .popover-title{border-radius:0;color:#333;letter-spacing:normal;text-transform:none}.popover[class*=tour-] .fa-times{color:#b3b3b3;cursor:pointer;font-size:16px;padding:5px;position:absolute;right:3px;top:2px}.popover[class*=tour-] .fa-times:hover{color:#666}.popover[class*=tour-] .popover-content{border-bottom:1px solid #d9d9d9;padding:13px 15px}.popover[class*=tour-] .fl-builder-tour-next{display:block;float:none;width:100%}.fl-builder-shortcode-mask-wrap{position:relative}.fl-builder-shortcode-mask{bottom:-1px;left:-1px;position:absolute;right:-1px;top:-1px;z-index:1}.fl-color-picker-ui .iris-picker{width:200px;height:215px;display:block;position:relative;border-top:1px solid rgba(0,0,0,.1)}.fl-color-picker-ui .iris-picker .iris-square-inner,.fl-color-picker-ui .iris-picker-inner{position:absolute;left:0;top:0;bottom:0;right:0}.fl-color-picker-ui .iris-picker,.iris-picker *{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}.fl-color-picker-ui .iris-error{background-color:#ffafaf}.fl-color-picker-ui .iris-picker .iris-square{width:200px;height:200px}.fl-color-picker-ui .iris-picker .iris-palette,.fl-color-picker-ui .iris-picker .iris-slider,.fl-color-picker-ui .iris-picker .iris-square-inner{height:100%;width:12.5%}.fl-color-picker-ui .iris-picker .iris-placeholder,.fl-color-picker-ui .iris-picker .iris-square{position:relative}.fl-color-picker-ui .iris-picker .iris-square-inner{width:auto;margin:0}.fl-color-picker-ui .iris-ie-9 .iris-palette,.fl-color-picker-ui .iris-ie-9 .iris-slider,.fl-color-picker-ui .iris-ie-9 .iris-square,.fl-color-picker-ui .iris-ie-9 .iris-square-inner{box-shadow:none;border-radius:0}.fl-color-picker-ui .iris-ie-9 .iris-palette,.fl-color-picker-ui .iris-ie-9 .iris-slider,.fl-color-picker-ui .iris-ie-9 .iris-square{outline:rgba(0,0,0,.1) solid 1px}.fl-color-picker-ui .iris-ie-lt9 .iris-palette,.fl-color-picker-ui .iris-ie-lt9 .iris-slider,.fl-color-picker-ui .iris-ie-lt9 .iris-square,.fl-color-picker-ui .iris-ie-lt9 .iris-square-inner{outline:#999 solid 1px}.fl-color-picker-ui .iris-ie-lt9 .iris-square .ui-slider-handle{outline:#999 solid 1px;background-color:#fff;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"}.fl-color-picker-ui .iris-ie-lt9 .iris-square .iris-square-handle{background:0 0;border:3px solid #fff;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"}.fl-color-picker-ui .iris-picker .iris-strip{width:200px;margin-top:5px;position:relative;height:10px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fl-color-picker-ui .iris-picker .iris-strip .ui-slider-handle{width:6px;position:absolute;right:0;top:-2px;bottom:-2px;margin:0;border-radius:3px;background:#fff;box-shadow:0 0 2px rgba(0,0,0,.5);z-index:5;cursor:ew-resize}.fl-color-picker-ui .iris-picker .iris-slider-offset{position:absolute;top:0;left:6px;right:0;bottom:0;width:auto;height:auto;background:0 0;border:none;border-radius:0;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fl-color-picker-ui .iris-picker .iris-square-handle{background:0 0;border:5px solid #999;border-radius:50%;border-color:rgba(128,128,128,.5);box-shadow:none;width:12px;height:12px;position:absolute;left:-10px;top:-10px;cursor:move;opacity:1;z-index:10}.fl-color-picker-ui .iris-picker .ui-state-focus .iris-square-handle{opacity:.8}.fl-color-picker-ui .iris-picker .iris-square-handle:hover{border-color:#999}.fl-color-picker-ui .iris-picker .iris-square-value:focus .iris-square-handle{box-shadow:0 0 2px rgba(0,0,0,.75);opacity:.8}.fl-color-picker-ui .iris-picker .iris-square-handle:hover::after{border-color:#fff}.fl-color-picker-ui .iris-picker .iris-square-handle::after{position:absolute;bottom:-4px;right:-4px;left:-4px;top:-4px;border:3px solid #f9f9f9;border-color:rgba(255,255,255,.8);border-radius:50%;content:" "}.fl-color-picker-clear,.fl-color-picker-color{float:left;border:1px solid rgba(0,0,0,.1);cursor:pointer}.fl-color-picker-ui .iris-picker .iris-square-value{width:8px;height:8px;position:absolute}.iris-ie-lt9 .iris-square-value,.iris-mozilla .iris-square-value{width:1px;height:1px}.fl-color-picker-wrapper{position:relative;width:48px;height:32px}.fl-color-picker-color{position:relative;width:30px;height:30px;background-color:transparent}.fl-color-picker-color.fl-color-picker-empty{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABG2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS4xLjIiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIi8+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSJyIj8+MahxaQAAAAlwSFlzAAALEwAACxMBAJqcGAAACk9pQ0NQUGhvdG9zaG9wIElDQyBwcm9maWxlAAB42p1TZ1RT6RY99970QkuIgJRLb1IVCCBSQouAFJEmKiEJEEqIIaHZFVHBEUVFBBvIoIgDjo6AjBVRLAyKCtgH5CGijoOjiIrK++F7o2vWvPfmzf611z7nrPOds88HwAgMlkgzUTWADKlCHhHgg8fExuHkLkCBCiRwABAIs2Qhc/0jAQD4fjw8KyLAB74AAXjTCwgAwE2bwDAch/8P6kKZXAGAhAHAdJE4SwiAFABAeo5CpgBARgGAnZgmUwCgBABgy2Ni4wBQLQBgJ3/m0wCAnfiZewEAW5QhFQGgkQAgE2WIRABoOwCsz1aKRQBYMAAUZkvEOQDYLQAwSVdmSACwtwDAzhALsgAIDAAwUYiFKQAEewBgyCMjeACEmQAURvJXPPErrhDnKgAAeJmyPLkkOUWBWwgtcQdXVy4eKM5JFysUNmECYZpALsJ5mRkygTQP4PPMAACgkRUR4IPz/XjODq7OzjaOtg5fLeq/Bv8iYmLj/uXPq3BAAADhdH7R/iwvsxqAOwaAbf6iJe4EaF4LoHX3i2ayD0C1AKDp2lfzcPh+PDxFoZC52dnl5OTYSsRCW2HKV33+Z8JfwFf9bPl+PPz39eC+4iSBMl2BRwT44MLM9EylHM+SCYRi3OaPR/y3C//8HdMixEliuVgqFONREnGORJqM8zKlIolCkinFJdL/ZOLfLPsDPt81ALBqPgF7kS2oXWMD9ksnEFh0wOL3AADyu2/B1CgIA4Bog+HPd//vP/1HoCUAgGZJknEAAF5EJC5UyrM/xwgAAESggSqwQRv0wRgswAYcwQXcwQv8YDaEQiTEwkIQQgpkgBxyYCmsgkIohs2wHSpgL9RAHTTAUWiGk3AOLsJVuA49cA/6YQiewSi8gQkEQcgIE2Eh2ogBYopYI44IF5mF+CHBSAQSiyQgyYgUUSJLkTVIMVKKVCBVSB3yPXICOYdcRrqRO8gAMoL8hrxHMZSBslE91Ay1Q7moNxqERqIL0GR0MZqPFqCb0HK0Gj2MNqHn0KtoD9qPPkPHMMDoGAczxGwwLsbDQrE4LAmTY8uxIqwMq8YasFasA7uJ9WPPsXcEEoFFwAk2BHdCIGEeQUhYTFhO2EioIBwkNBHaCTcJA4RRwicik6hLtCa6EfnEGGIyMYdYSCwj1hKPEy8Qe4hDxDckEolDMie5kAJJsaRU0hLSRtJuUiPpLKmbNEgaI5PJ2mRrsgc5lCwgK8iF5J3kw+Qz5BvkIfJbCp1iQHGk+FPiKFLKakoZ5RDlNOUGZZgyQVWjmlLdqKFUETWPWkKtobZSr1GHqBM0dZo5zYMWSUulraKV0xpoF2j3aa/odLoR3ZUeTpfQV9LL6Ufol+gD9HcMDYYVg8eIZygZmxgHGGcZdxivmEymGdOLGcdUMDcx65jnmQ+Zb1VYKrYqfBWRygqVSpUmlRsqL1Spqqaq3qoLVfNVy1SPqV5Tfa5GVTNT46kJ1JarVaqdUOtTG1NnqTuoh6pnqG9UP6R+Wf2JBlnDTMNPQ6RRoLFf47zGIAtjGbN4LCFrDauGdYE1xCaxzdl8diq7mP0du4s9qqmhOUMzSjNXs1LzlGY/B+OYcficdE4J5yinl/N+it4U7yniKRumNEy5MWVca6qWl5ZYq0irUatH6702ru2nnaa9RbtZ+4EOQcdKJ1wnR2ePzgWd51PZU92nCqcWTT069a4uqmulG6G7RHe/bqfumJ6+XoCeTG+n3nm95/ocfS/9VP1t+qf1RwxYBrMMJAbbDM4YPMU1cW88HS/H2/FRQ13DQEOlYZVhl+GEkbnRPKPVRo1GD4xpxlzjJONtxm3GoyYGJiEmS03qTe6aUk25pimmO0w7TMfNzM2izdaZNZs9Mdcy55vnm9eb37dgWnhaLLaotrhlSbLkWqZZ7ra8boVaOVmlWFVaXbNGrZ2tJda7rbunEae5TpNOq57WZ8Ow8bbJtqm3GbDl2AbbrrZttn1hZ2IXZ7fFrsPuk72Tfbp9jf09Bw2H2Q6rHVodfnO0chQ6Vjrems6c7j99xfSW6S9nWM8Qz9gz47YTyynEaZ1Tm9NHZxdnuXOD84iLiUuCyy6XPi6bG8bdyL3kSnT1cV3hetL1nZuzm8LtqNuv7jbuae6H3J/MNJ8pnlkzc9DDyEPgUeXRPwuflTBr36x+T0NPgWe15yMvYy+RV63XsLeld6r3Ye8XPvY+cp/jPuM8N94y3llfzDfAt8i3y0/Db55fhd9DfyP/ZP96/9EAp4AlAWcDiYFBgVsC+/h6fCG/jj8622X2stntQYyguUEVQY+CrYLlwa0haMjskK0h9+eYzpHOaQ6FUH7o1tAHYeZhi8N+DCeFh4VXhj+OcIhYGtExlzV30dxDc99E+kSWRN6bZzFPOa8tSjUqPqouajzaN7o0uj/GLmZZzNVYnVhJbEscOS4qrjZubL7f/O3zh+Kd4gvjexeYL8hdcHmhzsL0hacWqS4SLDqWQEyITjiU8EEQKqgWjCXyE3cljgp5wh3CZyIv0TbRiNhDXCoeTvJIKk16kuyRvDV5JMUzpSzluYQnqZC8TA1M3Zs6nhaadiBtMj06vTGDkpGQcUKqIU2TtmfqZ+ZmdsusZYWy/sVui7cvHpUHyWuzkKwFWS0KtkKm6FRaKNcqB7JnZVdmv82JyjmWq54rze3Ms8rbkDec75//7RLCEuGStqWGS1ctHVjmvaxqObI8cXnbCuMVBSuGVgasPLiKtipt1U+r7VeXrn69JnpNa4FewcqCwbUBa+sLVQrlhX3r3NftXU9YL1nftWH6hp0bPhWJiq4U2xeXFX/YKNx45RuHb8q/mdyUtKmrxLlkz2bSZunm3i2eWw6Wqpfmlw5uDdnatA3fVrTt9fZF2y+XzSjbu4O2Q7mjvzy4vGWnyc7NOz9UpFT0VPpUNu7S3bVh1/hu0e4be7z2NOzV21u89/0+yb7bVQFVTdVm1WX7Sfuz9z+uiarp+Jb7bV2tTm1x7ccD0gP9ByMOtte51NUd0j1UUo/WK+tHDscfvv6d73ctDTYNVY2cxuIjcER55On3Cd/3Hg062naMe6zhB9Mfdh1nHS9qQprymkabU5r7W2Jbuk/MPtHW6t56/EfbHw+cNDxZeUrzVMlp2umC05Nn8s+MnZWdfX4u+dxg26K2e+djzt9qD2/vuhB04dJF/4vnO7w7zlzyuHTystvlE1e4V5qvOl9t6nTqPP6T00/Hu5y7mq65XGu57nq9tXtm9+kbnjfO3fS9efEW/9bVnjk93b3zem/3xff13xbdfnIn/c7Lu9l3J+6tvE+8X/RA7UHZQ92H1T9b/tzY79x/asB3oPPR3Ef3BoWDz/6R9Y8PQwWPmY/Lhg2G6544Pjk54j9y/en8p0PPZM8mnhf+ov7LrhcWL3741evXztGY0aGX8peTv218pf3qwOsZr9vGwsYevsl4MzFe9Fb77cF33Hcd76PfD0/kfCB/KP9o+bH1U9Cn+5MZk5P/BAOY8/xjMy3bAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAGbSURBVHjajNO/S1VxGMfx9+ebQ6FiImkOgatTDYlKXgfPgVAbHRpt6U/oH6jmHAPH2gOX2vx1URCaWoKGhhQ1hKsJLnqeT8sxTveeSz3bFx5ez/f58vkqyzL+pyQhiYhYsL0i6bIoiuf6B/AIENCUBPAUWAX6AGx/6wpIyoEPJTBhewxYk9Rz3RMRXYEeSevATHneB/qBgcqAi4hY6gAkYVvApKS3wP2aAYWk5Yh4rzzPKff7U7axfQP4LKkdOJb0zPZH23QAtpE0FBGbwLmkV7ZfV6AD29PAD6AWGLa9JSlJemj7l6THtj9VbnFuexHYbgcGbe+UjzgLHNq+DawBt4BeYBy4sj33FxARA8BeOblh+0jSsO0mcAk8sD0u6Q3w0vZGdYWhiGgCKaXUAH7aHikDFMAU0IqIzrzkeX6nsvOU7Zak0YjYklRImgZaZXBqgW3gXtl4aHsQ2AWSpAZwXEleJ5Bl2feU0rztr5WdQ9IMcFJt7naDL5JeAKcR8S6ldAVM2j5rD1g3YB24C9wEDiQ9AU7rPkgd8HsAv5vXzUui544AAAAASUVORK5CYII=) center center no-repeat}.fl-color-picker-clear{position:relative;display:block;width:17px;height:30px;border-left:none;background-color:#FAFAFA}.fl-color-picker-color.fl-color-picker-empty+.fl-color-picker-clear{display:none}.fl-color-picker-ui{display:inline-block;z-index:999999;position:fixed;overflow:hidden;padding-bottom:45px;border:1px solid rgba(0,0,0,.1);color:#999;background-color:#FAFAFA;border-radius:3px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1);-webkit-transition:opacity .2s,visibility .2s;-moz-transition:opacity .2s,visibility .2s;-ms-transition:opacity .2s,visibility .2s;-o-transition:opacity .2s,visibility .2s;transition:opacity .2s,visibility .2s;visibility:hidden;opacity:0;-webkit-transform:translate3d(0,0,0)}.fl-color-picker-ui.fl-color-picker-active{visibility:visible;opacity:1}.fl-color-picker-ui .fl-color-picker-input,.fl-color-picker-ui .fl-color-picker-input:focus{width:100%;height:30px;border:none!important;font-size:14px!important;padding:0 8px;vertical-align:middle;color:#999;background-color:#fff;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.fl-color-picker-ui .iris-square-value{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.fl-color-picker-preset-add{position:absolute;top:8px;right:8px;width:14px;height:14px;background-color:#999;border-radius:50%;cursor:pointer;-webkit-transition:all .2s;-moz-transition:all .2s;-ms-transition:all .2s;-o-transition:all .2s;transition:all .2s}.fl-color-picker-preset-add:hover{background-color:#333}.fl-color-picker-preset-add:after,.fl-color-picker-preset-add:before{content:'';display:block;position:relative;background-color:#fff}.fl-color-picker-preset-add:before{top:6px;left:3px;width:8px;height:2px}.fl-color-picker-preset-add:after{left:6px;top:1px;width:2px;height:8px}.fl-color-picker-presets{position:absolute;left:0;bottom:0;width:100%;z-index:15;overflow:auto;border-top:1px solid rgba(0,0,0,.1);background-color:#FAFAFA}.fl-color-picker-presets-list .fl-color-picker-preset:hover,.fl-color-picker-presets-toggle:hover{background-color:#EDEDED}.fl-color-picker-presets-toggle{position:relative;overflow:hidden;width:100%;height:35px;text-align:center;line-height:35px;font-size:12px;font-weight:700;cursor:pointer;-webkit-transition:all .1s;-moz-transition:all .1s;-ms-transition:all .1s;-o-transition:all .1s;transition:all .1s}.fl-color-picker-presets-close-label,.fl-color-picker-presets-open-label{position:absolute;top:50%;left:50%;visibility:hidden;color:#999;-webkit-transition:all .5s;-moz-transition:all .5s;-ms-transition:all .5s;-o-transition:all .5s;transition:all .5s;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%);opacity:0}.fl-color-picker-presets-close-label.fl-color-picker-active,.fl-color-picker-presets-open-label.fl-color-picker-active{color:#999;visibility:visible;opacity:1}.fl-color-picker-presets-list{width:100%;list-style:none;margin:0;padding:0;overflow:auto}.fl-color-picker-presets-list .fl-color-picker-no-preset,.fl-color-picker-presets-list .fl-color-picker-preset{position:relative;padding:5px;font-size:12px;border-top:1px solid rgba(0,0,0,.1);-webkit-transition:all .1s;-moz-transition:all .1s;-ms-transition:all .1s;-o-transition:all .1s;transition:all .1s}.fl-color-picker-presets-list .fl-color-picker-preset-color{display:inline-block;width:20px;height:20px;margin-right:3px;vertical-align:middle;border:1px solid rgba(0,0,0,.1);border-radius:2px;cursor:pointer}.fl-color-picker-presets-list .fl-color-picker-preset-label{vertical-align:middle;color:#999}.fl-color-picker-clear .fl-color-picker-icon-remove,.fl-color-picker-presets-list .fl-color-picker-preset-remove{position:absolute;top:50%;cursor:pointer;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.fl-color-picker-clear .fl-color-picker-icon-remove{right:0}.fl-color-picker-presets-list .fl-color-picker-preset-remove{right:5px}.fl-color-picker-presets-list .fl-color-picker-preset-remove:hover:after,.fl-color-picker-presets-list .fl-color-picker-preset-remove:hover:before{background-color:#333}.fl-color-picker-added{position:absolute;width:100%;top:0;left:0;right:0;bottom:35px;z-index:10;color:#fff;text-align:center;background-color:rgba(0,0,0,.6)}.fl-color-picker-added-text{position:absolute;top:50%;left:50%;width:80%;font-size:14px;color:#fff!important;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.fl-color-picker-icon-check{position:relative;width:50px;height:50px;margin:5px auto}.fl-color-picker-icon-check:before{content:'';display:block;position:relative;width:15px;height:30px;margin-left:14px;border:7px solid #fff;border-left:none;border-top:none;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.fl-color-picker-icon-arrow-down,.fl-color-picker-icon-arrow-up{display:inline-block;position:relative;width:10px;height:10px;margin-left:5px}.fl-color-picker-icon-arrow-down:before,.fl-color-picker-icon-arrow-up:before{content:'';display:block;position:relative;width:6px;height:6px;border:2px solid #999;border-left:none;border-top:none;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.fl-color-picker-icon-arrow-up{top:2px;-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fl-color-picker-icon-remove{width:15px;height:15px}.fl-color-picker-icon-remove:after,.fl-color-picker-icon-remove:before{content:'';display:block;position:relative;background-color:#999}.fl-color-picker-icon-remove:before{left:6px;width:2px;height:10px;margin-top:3px;background:#999;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.fl-color-picker-icon-remove:after{left:6px;width:2px;height:10px;margin-top:-10px;background:#999;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.fl-icons-filter input,.fl-icons-filter select{vertical-align:middle;width:160px}.fl-icon-selector .fl-lightbox{height:100%}.fl-icons-filter{height:auto!important;margin:0!important;position:absolute!important;right:10px;top:10px}.fl-icons-filter input{line-height:18px}.fl-icons-list{bottom:52px;left:0;overflow:auto;padding:20px;position:absolute;right:0;top:48px}.fl-icons-list::-webkit-scrollbar{background-color:#ccc;-webkit-appearance:none;width:10px}.fl-icons-list::-webkit-scrollbar-thumb{background-color:#666;border:1px solid #ccc}.fl-icons-section{text-align:center}.fl-icons-section h2{border-bottom:1px solid #dfdfdf;color:#333!important;font-family:Helvetica,Verdana,sans-serif!important;font-size:16px!important;font-weight:700!important;margin:0 0 20px!important;padding:0 0 10px!important;text-align:left}.fl-icons-list i,.fl-icons-list i:before{cursor:pointer;display:inline-block;font-size:32px;height:80px;line-height:80px;width:80px}.fl-icons-list i:hover{background:#e5e5e5}.fl-icon-selector-footer{bottom:0;left:0;position:absolute;right:0}.fl-lightbox-mask,.fl-lightbox-wrap{bottom:0;left:0;position:fixed;right:0;top:0}.fl-lightbox-wrap{display:none;overflow:auto;padding:30px;z-index:100010;-webkit-backface-visibility:hidden;-webkit-transform:translateZ(0)}.fl-lightbox-wrap.fl-icon-selector{z-index:100011}.fl-lightbox-mask{background:#000;opacity:.7;filter:alpha(opacity=70);z-index:100010}.fl-lightbox,.fl-lightbox-header{background:#fff;position:relative}.fl-lightbox{box-shadow:rgba(0,0,0,1) 0 4px 30px;-moz-box-shadow:rgba(0,0,0,1) 0 4px 30px;-webkit-box-shadow:rgba(0,0,0,1) 0 4px 30px;z-index:100011}.fl-lightbox :not(i){color:#333;font-family:Helvetica,Verdana,sans-serif;font-size:12px;line-height:16px;text-decoration:none;text-transform:none}.fl-lightbox *,.fl-lightbox :after,.fl-lightbox :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fl-lightbox .fl-nanoscroller-pane{bottom:4px;right:4px;width:8px}.fl-lightbox .fa{font-family:FontAwesome}.fl-lightbox-content-wrap{height:100%}.fl-lightbox.ui-draggable{box-shadow:rgba(0,0,0,.5) 0 4px 30px;-moz-box-shadow:rgba(0,0,0,.5) 0 4px 30px;-webkit-box-shadow:rgba(0,0,0,.5) 0 4px 30px}.fl-lightbox-header{border-bottom:1px solid #dfdfdf;box-shadow:0 4px 4px -4px rgba(0,0,0,.1);-moz-box-shadow:0 4px 4px -4px rgba(0,0,0,.1);-webkit-box-shadow:0 4px 4px -4px rgba(0,0,0,.1)}.fl-lightbox-header h1{color:#333!important;font-size:18px!important;font-family:Helvetica,Verdana,sans-serif!important;font-weight:300!important;margin:0!important;padding:15px 20px!important}.fl-lightbox.ui-draggable .fl-lightbox-header{cursor:move}.fl-lightbox-footer{border-top:1px solid #dfdfdf;box-shadow:0 -4px 4px -4px rgba(0,0,0,.1);-moz-box-shadow:0 -4px 4px -4px rgba(0,0,0,.1);-webkit-box-shadow:0 -4px 4px -4px rgba(0,0,0,.1);padding:10px;text-align:right}.fl-lightbox-footer .fl-builder-button{margin-left:5px!important}
fl-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Beaver Builder Plugin (Lite Version)
4
  * Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
5
  * Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
6
- * Version: 1.7.3
7
  * Author: The Beaver Builder Team
8
  * Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
9
  * Copyright: (c) 2014 Beaver Builder
@@ -11,7 +11,7 @@
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: fl-builder
13
  */
14
- define('FL_BUILDER_VERSION', '1.7.3');
15
  define('FL_BUILDER_FILE', __FILE__);
16
  define('FL_BUILDER_DIR', plugin_dir_path(FL_BUILDER_FILE));
17
  define('FL_BUILDER_URL', plugins_url('/', FL_BUILDER_FILE));
@@ -88,8 +88,9 @@ add_action('wp', 'FLBuilderAJAX::init');
88
  add_action('init', 'FLBuilder::register_templates_post_type');
89
  add_action('send_headers', 'FLBuilder::no_cache_headers');
90
  add_action('wp', 'FLBuilder::init');
91
- add_action('wp_enqueue_scripts', 'FLBuilder::layout_styles_scripts');
92
- add_action('wp_enqueue_scripts', 'FLBuilder::styles_scripts');
 
93
  add_action('wp_head', 'FLBuilder::render_custom_css_for_editing', 999);
94
  add_action('admin_bar_menu', 'FLBuilder::admin_bar_menu', 999);
95
  add_action('wp_footer', 'FLBuilder::include_jquery');
3
  * Plugin Name: Beaver Builder Plugin (Lite Version)
4
  * Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
5
  * Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
6
+ * Version: 1.7.4
7
  * Author: The Beaver Builder Team
8
  * Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
9
  * Copyright: (c) 2014 Beaver Builder
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: fl-builder
13
  */
14
+ define('FL_BUILDER_VERSION', '1.7.4');
15
  define('FL_BUILDER_FILE', __FILE__);
16
  define('FL_BUILDER_DIR', plugin_dir_path(FL_BUILDER_FILE));
17
  define('FL_BUILDER_URL', plugins_url('/', FL_BUILDER_FILE));
88
  add_action('init', 'FLBuilder::register_templates_post_type');
89
  add_action('send_headers', 'FLBuilder::no_cache_headers');
90
  add_action('wp', 'FLBuilder::init');
91
+ add_action('wp_enqueue_scripts', 'FLBuilder::register_layout_styles_scripts');
92
+ add_action('wp_enqueue_scripts', 'FLBuilder::enqueue_ui_styles_scripts');
93
+ add_action('wp_enqueue_scripts', 'FLBuilder::enqueue_all_layouts_styles_scripts');
94
  add_action('wp_head', 'FLBuilder::render_custom_css_for_editing', 999);
95
  add_action('admin_bar_menu', 'FLBuilder::admin_bar_menu', 999);
96
  add_action('wp_footer', 'FLBuilder::include_jquery');
img/screenshot-getting-started.jpg ADDED
Binary file
includes/admin-settings-welcome.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div id="fl-welcome-form" class="fl-settings-form">
2
+
3
+ <h3 class="fl-settings-form-header"><?php _e('Welcome to Beaver Builder!', 'fl-builder'); ?></h3>
4
+
5
+ <div class="fl-settings-form-content fl-welcome-page-content">
6
+
7
+ <p><?php _e('Thank you for choosing Beaver Builder and welcome to the colony! Find some helpful information below. Also, to the left are the Page Builder settings options.', 'fl-builder'); ?></p>
8
+
9
+ <h4><?php _e('Getting Started - Building your first page.', 'fl-builder'); ?></h4>
10
+
11
+ <div class="fl-welcome-col-wrap">
12
+
13
+ <div class="fl-welcome-col">
14
+
15
+ <p><a href="<?php echo admin_url(); ?>post-new.php?post_type=page" class="fl-welcome-big-link"><?php _e('Pages → Add New', 'fl-builder'); ?></a></p>
16
+
17
+ <p><?php _e('Ready to start building? Add a new page and jump into Beaver Builder by clicking the Page Builder tab shown on the image.', 'fl-builder'); ?></p>
18
+
19
+ <h4><?php _e('Join the Community', 'fl-builder'); ?></h4>
20
+
21
+ <p><?php _e('There\'s a wonderful community of "Beaver Builders" out there and we\'d love it if <em>you</em> joined us!', 'fl-builder'); ?></p>
22
+
23
+ <ul>
24
+ <li><?php _e('<a href="https://www.facebook.com/groups/beaverbuilders/" target="_blank">Join the Beaver Builder\'s Group on Facebook</a>', 'fl-builder'); ?></li>
25
+ <li><?php _e('<a href="https://beaverbuilders.herokuapp.com/" target="_blank">Join the Beaver Builder\'s Group on Slack</a>', 'fl-builder'); ?></li>
26
+ </ul>
27
+
28
+ <p><?php _e('Come by and share a project, ask a question, or just say hi! For news about new features and updates, like our <a href="https://www.facebook.com/wpbeaverbuilder/" target="_blank">Facebook Page</a> or follow us <a href="https://twitter.com/beaverbuilder" target="_blank">on Twitter</a>.', 'fl-builder'); ?></p>
29
+
30
+ </div>
31
+
32
+ <div class="fl-welcome-col">
33
+ <img class="fl-welcome-img" src="<?php echo FL_BUILDER_URL; ?>img/screenshot-getting-started.jpg" alt="">
34
+ </div>
35
+
36
+ </div>
37
+
38
+ <hr>
39
+
40
+ <div class="fl-welcome-col-wrap">
41
+
42
+ <div class="fl-welcome-col">
43
+
44
+ <h4><?php _e('What\'s New in Beaver Builder 1.7', 'fl-builder'); ?></h4>
45
+
46
+ <p><?php _e('Beaver Builder 1.7 is live and it\'s got some slick new features:', 'fl-builder'); ?></p>
47
+
48
+ <ul>
49
+ <li><?php _e('Partial Refresh is live and will make your builder experience faster and more fluid.', 'fl-builder'); ?></li>
50
+ <li><?php _e('The Audio Module and Count Down module are available!', 'fl-builder'); ?></li>
51
+ <li><?php _e('You can now insert layouts with a shortcode.', 'fl-builder'); ?></li>
52
+ </ul>
53
+
54
+ <p><?php _e('Read more our <a href="https://www.wpbeaverbuilder.com/beaver-builder-1-7-now-with-partial-refresh-per-page-code-settings-and-our-first-shortcode/" target="_blank">update post</a> or <a href="https://www.wpbeaverbuilder.com/change-logs/" target="_blank">change logs</a>.', 'fl-builder'); ?></p>
55
+
56
+ </div>
57
+
58
+ <div class="fl-welcome-col">
59
+
60
+ <h4><?php _e('Need Some Help?', 'fl-builder'); ?></h4>
61
+
62
+ <p><?php _e('We take pride in offering outstanding support.', 'fl-builder'); ?></p>
63
+
64
+ <p><?php _e('The fastest way to find an answer to a question is to see if someone\'s already answered it!', 'fl-builder'); ?></p>
65
+
66
+ <p><?php _e('For that, check our <a href="https://www.wpbeaverbuilder.com/knowledge-base/" target="_blank">Knowledge Base</a>, <a href="https://www.wpbeaverbuilder.com/frequently-asked-questions/" target="_blank">FAQ page</a>, or search our <a href="http://www.wpbeaverbuilder.com/support/" target="_blank">support forum.</a>', 'fl-builder'); ?></p>
67
+
68
+ <p><?php _e('If you can\'t find an answer, feel free to post a question in our <a href="http://www.wpbeaverbuilder.com/support/" target="_blank">support forum</a>.', 'fl-builder'); ?></p>
69
+ </div>
70
+
71
+ </div>
72
+
73
+ </div>
74
+ </div>
includes/field-suggest.php CHANGED
@@ -5,7 +5,8 @@ $action = isset( $field['action'] ) ? $field['action'] : '';
5
  $data = isset( $field['data'] ) ? $field['data'] : '';
6
  $placeholder = isset( $field['placeholder'] ) ? esc_attr( $field['placeholder'] ) : esc_attr( 'Start typing...', 'fl-builder' );
7
  $limit = isset( $field['limit'] ) ? $field['limit'] : 'false';
 
8
  $value = FLBuilderAutoSuggest::get_value( $action, $value, $data );
9
 
10
  ?>
11
- <input type="text" class="text text-full fl-suggest-field<?php echo $class; ?>" name="<?php echo $name; ?>" data-value='<?php echo $value; ?>' data-action="<?php echo $action; ?>" data-action-data="<?php echo $data; ?>" data-limit="<?php echo $limit; ?>" placeholder="<?php echo $placeholder; ?>" />
5
  $data = isset( $field['data'] ) ? $field['data'] : '';
6
  $placeholder = isset( $field['placeholder'] ) ? esc_attr( $field['placeholder'] ) : esc_attr( 'Start typing...', 'fl-builder' );
7
  $limit = isset( $field['limit'] ) ? $field['limit'] : 'false';
8
+ $args = isset( $field['args'] ) && is_array( $field['args'] ) ? $field['args'] : array();
9
  $value = FLBuilderAutoSuggest::get_value( $action, $value, $data );
10
 
11
  ?>
12
+ <input type="text" class="text text-full fl-suggest-field<?php echo $class; ?>" name="<?php echo $name; ?>" data-value='<?php echo $value; ?>' data-action="<?php echo $action; ?>" data-action-data="<?php echo $data; ?>" data-limit="<?php echo $limit; ?>" data-args='<?php echo json_encode( $args ); ?>' placeholder="<?php echo $placeholder; ?>" />
includes/row-css.php CHANGED
@@ -100,11 +100,13 @@
100
  <?php if(!empty($row->settings->border_type)) : // Border ?>
101
  .fl-node-<?php echo $row->node; ?> .fl-row-content-wrap {
102
  border-style: <?php echo $row->settings->border_type; ?>;
103
- border-color: #<?php echo $row->settings->border_color; ?>;
104
- border-color: rgba(<?php echo implode(',', FLBuilderColor::hex_to_rgb($row->settings->border_color)) ?>, <?php echo $row->settings->border_opacity/100; ?>);
105
  border-top-width: <?php echo is_numeric($row->settings->border_top) ? $row->settings->border_top : '0'; ?>px;
106
  border-bottom-width: <?php echo is_numeric($row->settings->border_bottom) ? $row->settings->border_bottom : '0'; ?>px;
107
  border-left-width: <?php echo is_numeric($row->settings->border_left) ? $row->settings->border_left : '0'; ?>px;
108
  border-right-width: <?php echo is_numeric($row->settings->border_right) ? $row->settings->border_right : '0'; ?>px;
 
 
 
 
109
  }
110
  <?php endif; ?>
100
  <?php if(!empty($row->settings->border_type)) : // Border ?>
101
  .fl-node-<?php echo $row->node; ?> .fl-row-content-wrap {
102
  border-style: <?php echo $row->settings->border_type; ?>;
 
 
103
  border-top-width: <?php echo is_numeric($row->settings->border_top) ? $row->settings->border_top : '0'; ?>px;
104
  border-bottom-width: <?php echo is_numeric($row->settings->border_bottom) ? $row->settings->border_bottom : '0'; ?>px;
105
  border-left-width: <?php echo is_numeric($row->settings->border_left) ? $row->settings->border_left : '0'; ?>px;
106
  border-right-width: <?php echo is_numeric($row->settings->border_right) ? $row->settings->border_right : '0'; ?>px;
107
+ <?php if(!empty($row->settings->border_color)) : ?>
108
+ border-color: #<?php echo $row->settings->border_color; ?>;
109
+ border-color: rgba(<?php echo implode(',', FLBuilderColor::hex_to_rgb($row->settings->border_color)) ?>, <?php echo $row->settings->border_opacity/100; ?>);
110
+ <?php endif; ?>
111
  }
112
  <?php endif; ?>
includes/ui-js-templates.php CHANGED
@@ -28,7 +28,7 @@
28
  <div class="fl-block-overlay-actions">
29
  <?php if ( ! $simple_ui ) : ?>
30
  <span class="fl-builder-has-submenu">
31
- <i class="fl-block-settings fa fa-wrench fl-tip" title="<?php _e( 'Edit Column', 'fl-builder' ); ?>"></i>
32
  <ul class="fl-builder-submenu fl-block-col-submenu">
33
  <li><a class="fl-block-col-edit" href="javascript:void(0);"><?php _e( 'Column Settings', 'fl-builder' ); ?></a></li>
34
  <# if ( data.numCols < 12 ) { #>
28
  <div class="fl-block-overlay-actions">
29
  <?php if ( ! $simple_ui ) : ?>
30
  <span class="fl-builder-has-submenu">
31
+ <i class="fl-block-settings fa fa-columns fl-tip" title="<?php _e( 'Edit Column', 'fl-builder' ); ?>"></i>
32
  <ul class="fl-builder-submenu fl-block-col-submenu">
33
  <li><a class="fl-block-col-edit" href="javascript:void(0);"><?php _e( 'Column Settings', 'fl-builder' ); ?></a></li>
34
  <# if ( data.numCols < 12 ) { #>
includes/updater-config.php CHANGED
@@ -3,7 +3,7 @@
3
  if(class_exists('FLUpdater')) {
4
  FLUpdater::add_product(array(
5
  'name' => 'Beaver Builder Plugin (Lite Version)',
6
- 'version' => '1.7.3',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
3
  if(class_exists('FLUpdater')) {
4
  FLUpdater::add_product(array(
5
  'name' => 'Beaver Builder Plugin (Lite Version)',
6
+ 'version' => '1.7.4',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
includes/updater/classes/class-fl-updater.php CHANGED
@@ -7,15 +7,6 @@
7
  */
8
  final class FLUpdater {
9
 
10
- /**
11
- * The API URL for the Beaver Builder store.
12
- *
13
- * @since 1.0
14
- * @access private
15
- * @var string $_store_api_url
16
- */
17
- static private $_store_api_url = 'https://www.wpbeaverbuilder.com/';
18
-
19
  /**
20
  * The API URL for the Beaver Builder update server.
21
  *
@@ -79,14 +70,14 @@ final class FLUpdater {
79
 
80
  $response = FLUpdater::api_request(self::$_updates_api_url, array(
81
  'fl-api-method' => 'update_check',
82
- 'email' => FLUpdater::get_subscription_email(),
83
  'domain' => network_home_url(),
84
  'product' => $this->settings['name'],
85
  'slug' => $this->settings['slug'],
86
  'version' => $this->settings['version']
87
  ));
88
 
89
- if(isset($response) && $response !== false && is_object($response) && !isset($response->errors)) {
90
 
91
  if($this->settings['type'] == 'plugin') {
92
 
@@ -152,14 +143,14 @@ final class FLUpdater {
152
 
153
  $response = FLUpdater::api_request(self::$_updates_api_url, array(
154
  'fl-api-method' => 'plugin_info',
155
- 'email' => FLUpdater::get_subscription_email(),
156
  'domain' => network_home_url(),
157
  'product' => $this->settings['name'],
158
  'slug' => $this->settings['slug'],
159
  'version' => $this->settings['version']
160
  ));
161
 
162
- if(isset($response) && is_object($response) && $response !== false) {
163
  $response->name = $this->settings['name'];
164
  $response->sections = (array)$response->sections;
165
  return $response;
@@ -224,23 +215,24 @@ final class FLUpdater {
224
  // Activate a subscription?
225
  if(isset($_POST['fl-updater-nonce'])) {
226
  if(wp_verify_nonce($_POST['fl-updater-nonce'], 'updater-nonce')) {
227
- self::save_subscription_email($_POST['email']);
228
  }
229
  }
230
 
231
- $status = self::get_subscription_status();
 
232
 
233
  // Include the form ui.
234
  include FL_UPDATER_DIR . 'includes/form.php';
235
  }
236
 
237
  /**
238
- * Static method for getting the subscription email or license key.
239
  *
240
  * @since 1.0
241
  * @return string
242
  */
243
- static public function get_subscription_email()
244
  {
245
  $value = get_site_option('fl_themes_subscription_email');
246
 
@@ -248,35 +240,37 @@ final class FLUpdater {
248
  }
249
 
250
  /**
251
- * Static method for updating the subscription email.
252
  *
253
  * @since 1.0
254
- * @param string $email The new email address or license key.
255
  * @return void
256
  */
257
- static public function save_subscription_email($email)
258
  {
259
- update_site_option('fl_themes_subscription_email', $email);
 
 
 
 
 
 
 
260
  }
261
 
262
  /**
263
- * Static method for retrieving the subscription status.
264
  *
265
  * @since 1.0
266
  * @return bool
267
  */
268
- static public function get_subscription_status()
269
  {
270
- $status = self::api_request(self::$_store_api_url, array(
271
- 'fl-api-method' => 'subscription_status',
272
- 'email' => FLUpdater::get_subscription_email()
 
273
  ));
274
-
275
- if(isset($status->active) && $status->active) {
276
- return $status;
277
- }
278
-
279
- return false;
280
  }
281
 
282
  /**
@@ -363,21 +357,29 @@ final class FLUpdater {
363
  */
364
  static private function remote_get($url)
365
  {
366
- $request = wp_remote_get($url);
 
 
367
 
368
  if(is_wp_error($request)) {
369
- return false;
370
  }
371
  if(wp_remote_retrieve_response_code($request) != 200) {
372
- return false;
 
 
 
 
 
 
373
  }
374
 
375
- $response = json_decode(wp_remote_retrieve_body($request));
376
-
377
- if(isset($response->error)) {
378
- return false;
379
  }
380
 
381
- return $response;
382
  }
383
  }
7
  */
8
  final class FLUpdater {
9
 
 
 
 
 
 
 
 
 
 
10
  /**
11
  * The API URL for the Beaver Builder update server.
12
  *
70
 
71
  $response = FLUpdater::api_request(self::$_updates_api_url, array(
72
  'fl-api-method' => 'update_check',
73
+ 'license' => FLUpdater::get_subscription_license(),
74
  'domain' => network_home_url(),
75
  'product' => $this->settings['name'],
76
  'slug' => $this->settings['slug'],
77
  'version' => $this->settings['version']
78
  ));
79
 
80
+ if( ! isset( $response->error ) ) {
81
 
82
  if($this->settings['type'] == 'plugin') {
83
 
143
 
144
  $response = FLUpdater::api_request(self::$_updates_api_url, array(
145
  'fl-api-method' => 'plugin_info',
146
+ 'license' => FLUpdater::get_subscription_license(),
147
  'domain' => network_home_url(),
148
  'product' => $this->settings['name'],
149
  'slug' => $this->settings['slug'],
150
  'version' => $this->settings['version']
151
  ));
152
 
153
+ if( ! isset( $response->error ) ) {
154
  $response->name = $this->settings['name'];
155
  $response->sections = (array)$response->sections;
156
  return $response;
215
  // Activate a subscription?
216
  if(isset($_POST['fl-updater-nonce'])) {
217
  if(wp_verify_nonce($_POST['fl-updater-nonce'], 'updater-nonce')) {
218
+ self::save_subscription_license($_POST['license']);
219
  }
220
  }
221
 
222
+ $license = self::get_subscription_license();
223
+ $subscription = self::get_subscription_info();
224
 
225
  // Include the form ui.
226
  include FL_UPDATER_DIR . 'includes/form.php';
227
  }
228
 
229
  /**
230
+ * Static method for getting the subscription license key.
231
  *
232
  * @since 1.0
233
  * @return string
234
  */
235
+ static public function get_subscription_license()
236
  {
237
  $value = get_site_option('fl_themes_subscription_email');
238
 
240
  }
241
 
242
  /**
243
+ * Static method for updating the subscription license.
244
  *
245
  * @since 1.0
246
+ * @param string $license The new license key.
247
  * @return void
248
  */
249
+ static public function save_subscription_license($license)
250
  {
251
+ FLUpdater::api_request(self::$_updates_api_url, array(
252
+ 'fl-api-method' => 'activate_domain',
253
+ 'license' => $license,
254
+ 'domain' => network_home_url(),
255
+ 'products' => json_encode( self::$_products )
256
+ ));
257
+
258
+ update_site_option('fl_themes_subscription_email', $license);
259
  }
260
 
261
  /**
262
+ * Static method for retrieving the subscription info.
263
  *
264
  * @since 1.0
265
  * @return bool
266
  */
267
+ static public function get_subscription_info()
268
  {
269
+ return self::api_request(self::$_updates_api_url, array(
270
+ 'fl-api-method' => 'subscription_info',
271
+ 'domain' => network_home_url(),
272
+ 'license' => FLUpdater::get_subscription_license()
273
  ));
 
 
 
 
 
 
274
  }
275
 
276
  /**
357
  */
358
  static private function remote_get($url)
359
  {
360
+ $request = wp_remote_get($url);
361
+ $error = new stdClass();
362
+ $error->error = true;
363
 
364
  if(is_wp_error($request)) {
365
+ return $error;
366
  }
367
  if(wp_remote_retrieve_response_code($request) != 200) {
368
+ return $error;
369
+ }
370
+
371
+ $body = wp_remote_retrieve_body($request);
372
+
373
+ if(is_wp_error($body)) {
374
+ return $error;
375
  }
376
 
377
+ $body_decoded = json_decode($body);
378
+
379
+ if(!is_object($body_decoded)) {
380
+ return $error;
381
  }
382
 
383
+ return $body_decoded;
384
  }
385
  }
includes/updater/includes/form.php CHANGED
@@ -1,19 +1,26 @@
1
  <div class="wrap">
2
 
3
- <?php if(!$status) : ?>
4
- <p style="padding:10px 20px; background: #d54e21; color: #fff;">
5
  <?php _e('UPDATES UNAVAILABLE! Please subscribe or enter your license key below to enable automatic updates.', 'fl-builder'); ?>
6
  &nbsp;<a style="color: #fff;" href="<?php echo FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => 'settings-page' ) ); ?>" target="_blank"><?php _e('Subscribe Now', 'fl-builder'); ?> &raquo;</a>
7
  </p>
 
 
 
 
 
8
  <?php endif; ?>
9
 
10
  <h3 class="fl-settings-form-header">
11
  <?php _e('Updates &amp; Support Subscription', 'fl-builder'); ?>
12
  <span> &mdash; </span>
13
- <?php if($status) : ?>
14
- <i style="color:#3cb341;"><?php _e('Active!', 'fl-builder'); ?></i>
15
- <?php else : ?>
16
  <i style="color:#ae5842;"><?php _e('Not Active!', 'fl-builder'); ?></i>
 
 
 
 
17
  <?php endif; ?>
18
  </h3>
19
 
@@ -26,19 +33,27 @@
26
  <p>
27
  <?php echo sprintf( __( 'Enter your <a%s>license key</a> to enable remote updates and support.', 'fl-builder' ), ' href="https://www.wpbeaverbuilder.com/my-account/?utm_source=external&utm_medium=builder&utm_campaign=settings-page" target="_blank"' ) ?>
28
  </p>
 
29
  <?php if(is_multisite()) : ?>
30
  <p>
31
  <strong><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e('This applies to all sites on the network.', 'fl-builder'); ?>
32
  </p>
33
  <?php endif; ?>
34
- <form action="" method="post">
 
35
 
36
- <input type="password" name="email" value="<?php echo self::get_subscription_email(); ?>" class="regular-text" />
37
 
38
  <p class="submit">
39
- <input type="submit" name="submit" class="button button-primary" value="<?php esc_attr_e( 'Save Subscription Settings', 'fl-builder' ); ?>">
40
  <?php wp_nonce_field('updater-nonce', 'fl-updater-nonce'); ?>
41
  </p>
42
  </form>
 
 
 
 
 
 
43
 
44
  </div>
1
  <div class="wrap">
2
 
3
+ <?php if(isset($subscription->error) || !$subscription->active) : ?>
4
+ <p class="fl-license-error" style="padding:10px 20px; background: #d54e21; color: #fff;">
5
  <?php _e('UPDATES UNAVAILABLE! Please subscribe or enter your license key below to enable automatic updates.', 'fl-builder'); ?>
6
  &nbsp;<a style="color: #fff;" href="<?php echo FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => 'settings-page' ) ); ?>" target="_blank"><?php _e('Subscribe Now', 'fl-builder'); ?> &raquo;</a>
7
  </p>
8
+ <?php elseif(!$subscription->domain->active) : ?>
9
+ <p class="fl-license-error" style="padding:10px 20px; background: #d54e21; color: #fff;">
10
+ <?php _e('UPDATES UNAVAILABLE! Your subscription is active but this domain has been deactivated. Please reactivate this domain in your account to enable automatic updates.', 'fl-builder'); ?>
11
+ &nbsp;<a style="color: #fff;" href="https://www.wpbeaverbuilder.com/my-account/?utm_source=external&utm_medium=builder&utm_campaign=settings-page" target="_blank"><?php _e('Visit Account', 'fl-builder'); ?> &raquo;</a>
12
+ </p>
13
  <?php endif; ?>
14
 
15
  <h3 class="fl-settings-form-header">
16
  <?php _e('Updates &amp; Support Subscription', 'fl-builder'); ?>
17
  <span> &mdash; </span>
18
+ <?php if(isset($subscription->error) || !$subscription->active) : ?>
 
 
19
  <i style="color:#ae5842;"><?php _e('Not Active!', 'fl-builder'); ?></i>
20
+ <?php elseif(!$subscription->domain->active) : ?>
21
+ <i style="color:#ae5842;"><?php _e('Deactivated!', 'fl-builder'); ?></i>
22
+ <?php else : ?>
23
+ <i style="color:#3cb341;"><?php _e('Active!', 'fl-builder'); ?></i>
24
  <?php endif; ?>
25
  </h3>
26
 
33
  <p>
34
  <?php echo sprintf( __( 'Enter your <a%s>license key</a> to enable remote updates and support.', 'fl-builder' ), ' href="https://www.wpbeaverbuilder.com/my-account/?utm_source=external&utm_medium=builder&utm_campaign=settings-page" target="_blank"' ) ?>
35
  </p>
36
+
37
  <?php if(is_multisite()) : ?>
38
  <p>
39
  <strong><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e('This applies to all sites on the network.', 'fl-builder'); ?>
40
  </p>
41
  <?php endif; ?>
42
+
43
+ <form class="fl-license-form" action="" method="post" <?php if ( ! empty( $license ) ) echo 'style="display:none;"'; ?>>
44
 
45
+ <input type="password" name="license" value="" class="regular-text" />
46
 
47
  <p class="submit">
48
+ <input type="submit" name="submit" class="button button-primary" value="<?php esc_attr_e( 'Save License Key', 'fl-builder' ); ?>">
49
  <?php wp_nonce_field('updater-nonce', 'fl-updater-nonce'); ?>
50
  </p>
51
  </form>
52
+
53
+ <div class="fl-new-license-form" <?php if ( empty( $license ) ) echo 'style="display:none;"'; ?>>
54
+ <p class="submit">
55
+ <input type="button" class="button button-primary" value="<?php esc_attr_e( 'Enter License Key', 'fl-builder' ); ?>">
56
+ </p>
57
+ </div>
58
 
59
  </div>
includes/updater/updater.php CHANGED
@@ -12,6 +12,6 @@ if(!class_exists('FLUpdater') && FL_BUILDER_LITE !== true) {
12
  /* Actions */
13
  add_action('fl_themes_license_form', 'FLUpdater::render_form');
14
 
15
- /* Run the updater. */
16
  FLUpdater::init();
17
  }
12
  /* Actions */
13
  add_action('fl_themes_license_form', 'FLUpdater::render_form');
14
 
15
+ /* Initialize the updater. */
16
  FLUpdater::init();
17
  }
js/fl-builder-admin-settings.js CHANGED
@@ -27,8 +27,10 @@
27
  init: function()
28
  {
29
  this._bind();
 
30
  this._initNav();
31
  this._initOverrides();
 
32
  this._templatesOverrideChange();
33
  this._initHelpButtonSettings();
34
  },
@@ -56,6 +58,24 @@
56
  $('#uninstall-form').on('submit', FLBuilderAdminSettings._uninstallFormSubmit);
57
  },
58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  /**
60
  * Initializes the nav for the builder's admin settings page.
61
  *
@@ -191,6 +211,27 @@
191
  }
192
  },
193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  /**
195
  * Fires when the templates override setting is changed.
196
  *
27
  init: function()
28
  {
29
  this._bind();
30
+ this._maybeShowWelcome();
31
  this._initNav();
32
  this._initOverrides();
33
+ this._initLicenseSettings();
34
  this._templatesOverrideChange();
35
  this._initHelpButtonSettings();
36
  },
58
  $('#uninstall-form').on('submit', FLBuilderAdminSettings._uninstallFormSubmit);
59
  },
60
 
61
+ /**
62
+ * Show the welcome page after the license has been saved.
63
+ *
64
+ * @since 1.7.4
65
+ * @access private
66
+ * @method _maybeShowWelcome
67
+ */
68
+ _maybeShowWelcome: function()
69
+ {
70
+ var onLicense = 'license' == window.location.hash.replace( '#', '' ),
71
+ isUpdated = $( '.wrap .updated' ).length,
72
+ licenseError = $( '.fl-license-error' ).length;
73
+
74
+ if ( onLicense && isUpdated && ! licenseError ) {
75
+ window.location.hash = 'welcome';
76
+ }
77
+ },
78
+
79
  /**
80
  * Initializes the nav for the builder's admin settings page.
81
  *
211
  }
212
  },
213
 
214
+ /**
215
+ * @since 1.7.4
216
+ * @access private
217
+ * @method _initLicenseSettings
218
+ */
219
+ _initLicenseSettings: function()
220
+ {
221
+ $( '.fl-new-license-form .button' ).on( 'click', FLBuilderAdminSettings._newLicenseButtonClick );
222
+ },
223
+
224
+ /**
225
+ * @since 1.7.4
226
+ * @access private
227
+ * @method _newLicenseButtonClick
228
+ */
229
+ _newLicenseButtonClick: function()
230
+ {
231
+ $( '.fl-new-license-form' ).hide();
232
+ $( '.fl-license-form' ).show();
233
+ },
234
+
235
  /**
236
  * Fires when the templates override setting is changed.
237
  *
js/fl-builder-ajax-layout.js CHANGED
@@ -336,7 +336,7 @@
336
  }
337
 
338
  // Remove elements that shouldn't be in data.html.
339
- html.find( '> *' ).each( function() {
340
  if ( ! $( this ).hasClass( nodeClass ) ) {
341
  removed = $( this ).remove();
342
  scriptsStyles += removed[0].outerHTML;
336
  }
337
 
338
  // Remove elements that shouldn't be in data.html.
339
+ html.find( '> *, script' ).each( function() {
340
  if ( ! $( this ).hasClass( nodeClass ) ) {
341
  removed = $( this ).remove();
342
  scriptsStyles += removed[0].outerHTML;
js/fl-builder-layout.js CHANGED
@@ -46,6 +46,36 @@
46
  }
47
  },
48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  /**
50
  * Unbinds builder layout events.
51
  *
@@ -100,17 +130,24 @@
100
  */
101
  _initClasses: function()
102
  {
 
 
 
 
 
 
 
103
  // Add the builder body class.
104
- $('body').addClass('fl-builder');
105
 
106
  // Add the builder touch body class.
107
  if(FLBuilderLayout._isTouch()) {
108
- $('body').addClass('fl-builder-touch');
109
  }
110
 
111
  // Add the builder mobile body class.
112
  if(FLBuilderLayout._isMobile()) {
113
- $('body').addClass('fl-builder-mobile');
114
  }
115
  },
116
 
@@ -582,7 +619,14 @@
582
  dest = element.offset().top - config.offset;
583
  }
584
 
585
- $( 'html, body' ).animate( { scrollTop: dest }, config.duration, config.easing, callback );
 
 
 
 
 
 
 
586
  }
587
  },
588
 
46
  }
47
  },
48
 
49
+ /**
50
+ * Public method for refreshing Wookmark or MosaicFlow galleries
51
+ * within an element.
52
+ *
53
+ * @since 1.7.4
54
+ * @method refreshGalleries
55
+ */
56
+ refreshGalleries: function( element )
57
+ {
58
+ var $element = 'undefined' == typeof element ? $( 'body' ) : $( element ),
59
+ mfContent = $element.find( '.fl-mosaicflow-content' ),
60
+ wmContent = $element.find( '.fl-gallery' ),
61
+ mfObject = null;
62
+
63
+ if ( mfContent ) {
64
+
65
+ mfObject = mfContent.data( 'mosaicflow' );
66
+
67
+ if ( mfObject ) {
68
+ mfObject.columns = $( [] );
69
+ mfObject.columnsHeights = [];
70
+ mfContent.data( 'mosaicflow', mfObject );
71
+ mfContent.mosaicflow( 'refill' );
72
+ }
73
+ }
74
+ if ( wmContent ) {
75
+ wmContent.trigger( 'refreshWookmark' );
76
+ }
77
+ },
78
+
79
  /**
80
  * Unbinds builder layout events.
81
  *
130
  */
131
  _initClasses: function()
132
  {
133
+ var body = $( 'body' );
134
+
135
+ // Don't add to archive pages.
136
+ if ( body.hasClass( 'archive' ) ) {
137
+ return;
138
+ }
139
+
140
  // Add the builder body class.
141
+ body.addClass('fl-builder');
142
 
143
  // Add the builder touch body class.
144
  if(FLBuilderLayout._isTouch()) {
145
+ body.addClass('fl-builder-touch');
146
  }
147
 
148
  // Add the builder mobile body class.
149
  if(FLBuilderLayout._isMobile()) {
150
+ body.addClass('fl-builder-mobile');
151
  }
152
  },
153
 
619
  dest = element.offset().top - config.offset;
620
  }
621
 
622
+ $( 'html, body' ).animate( { scrollTop: dest }, config.duration, config.easing, function() {
623
+
624
+ if ( 'undefined' != typeof callback ) {
625
+ callback();
626
+ }
627
+
628
+ window.location.hash = element.attr( 'id' );
629
+ } );
630
  }
631
  },
632
 
js/fl-builder.js CHANGED
@@ -4676,13 +4676,13 @@
4676
  _initAutoSuggestField: function()
4677
  {
4678
  var field = $(this);
4679
-
4680
  field.autoSuggest(FLBuilder._ajaxUrl({
4681
  'fl_action' : 'fl_builder_autosuggest',
4682
  'fl_as_action' : field.data('action'),
4683
  'fl_as_action_data' : field.data('action-data'),
4684
  '_wpnonce' : FLBuilderConfig.ajaxNonce
4685
- }), {
4686
  asHtmlID : field.attr('name'),
4687
  selectedItemProp : 'name',
4688
  searchObjProps : 'name',
@@ -4697,7 +4697,7 @@
4697
  afterSelectionAdd : FLBuilder._updateAutoSuggestField,
4698
  afterSelectionRemove : FLBuilder._updateAutoSuggestField,
4699
  selectionLimit : field.data('limit')
4700
- });
4701
  },
4702
 
4703
  /**
4676
  _initAutoSuggestField: function()
4677
  {
4678
  var field = $(this);
4679
+
4680
  field.autoSuggest(FLBuilder._ajaxUrl({
4681
  'fl_action' : 'fl_builder_autosuggest',
4682
  'fl_as_action' : field.data('action'),
4683
  'fl_as_action_data' : field.data('action-data'),
4684
  '_wpnonce' : FLBuilderConfig.ajaxNonce
4685
+ }), $.extend({}, {
4686
  asHtmlID : field.attr('name'),
4687
  selectedItemProp : 'name',
4688
  searchObjProps : 'name',
4697
  afterSelectionAdd : FLBuilder._updateAutoSuggestField,
4698
  afterSelectionRemove : FLBuilder._updateAutoSuggestField,
4699
  selectionLimit : field.data('limit')
4700
+ }, field.data( 'args' )));
4701
  },
4702
 
4703
  /**
js/fl-builder.min.js CHANGED
@@ -1,5 +1,5 @@
1
- !function(e){FLBuilderAJAXLayout=function(t,l){this._data=e.extend({},this._defaults,"string"==typeof t?JSON.parse(t):t),this._callback=l,this._post=e("#fl-post-id").val(),this._head=e("head").eq(0),this._body=e("body").eq(0),this._data.css&&(this._loader=e('<img src="'+this._data.css+'" />'),this._oldCss=e('link[href*="/cache/'+this._post+'"]'),this._newCss=e('<link rel="stylesheet" id="fl-builder-layout-'+this._post+'-css" href="'+this._data.css+'" />')),this._data.partial?(this._data.js&&(this._oldJs=e("#fl-builder-partial-refresh-js"),this._newJs=e('<script type="text/javascript" id="fl-builder-partial-refresh-js">'+this._data.js+"</script>")),this._data.nodeId&&(this._data.oldNodeId?(this._oldScriptsStyles=e('.fl-builder-node-scripts-styles[data-node="'+this._data.oldNodeId+'"]'),this._content=e(".fl-node-"+this._data.oldNodeId)):(this._oldScriptsStyles=e('.fl-builder-node-scripts-styles[data-node="'+this._data.nodeId+'"]'),this._content=e(".fl-node-"+this._data.nodeId)))):(this._oldJs=e('script[src*="/cache/'+this._post+'"]'),this._newJs=e('<script src="'+this._data.js+'"></script>'),this._oldScriptsStyles=e(".fl-builder-layout-scripts-styles"),this._content=e(FLBuilder._contentClass)),this._init()},FLBuilderAJAXLayout.prototype={_defaults:{partial:!1,nodeId:null,nodeType:null,nodeParent:null,nodePosition:null,oldNodeId:null,html:null,scriptsStyles:null,css:null,js:null},_data:null,_callback:function(){},_post:null,_head:null,_body:null,_loader:null,_oldCss:null,_newCss:null,_oldJs:null,_newJs:null,_oldScriptsStyles:null,_content:null,_init:function(){this._body.height(this._body.height()),this._loader?(this._loader.on("error",e.proxy(this._loadNewCSSComplete,this)),this._body.append(this._loader)):this._finish()},_loadNewCSSComplete:function(){this._loader.remove(),this._oldCss.length>0?this._oldCss.after(this._newCss):this._head.append(this._newCss),setTimeout(e.proxy(this._finish,this),250)},_finish:function(){this._removeOldContentAndAssets(),this._cleanNewHTML(),this._cleanNewAssets(),this._addNewHTML(),this._addNewScriptsStyles(),this._addNewJS(),e(FLBuilder._contentClass).trigger("fl-builder.layout-rendered"),FLBuilder.hideAjaxLoader(),"undefined"!=typeof this._callback&&this._callback()},_removeOldContentAndAssets:function(){this._content&&this._content.empty(),this._oldCss&&this._oldCss.remove(),this._oldJs&&this._oldJs.remove(),this._oldScriptsStyles&&this._oldScriptsStyles.remove()},_cleanNewHTML:function(){if(this._data.scriptsStyles){var t=e("<div>"+this._data.html+"</div>"),l="fl-row",i=this._data.scriptsStyles,o="";this._data.partial&&(l="column-group"==this._data.nodeType?"fl-col-group":"column"==this._data.nodeType?"fl-col":"fl-"+this._data.nodeType),t.find("> *").each(function(){e(this).hasClass(l)||(o=e(this).remove(),i+=o[0].outerHTML)}),""!==i&&(i=this._data.partial?'<div class="fl-builder-node-scripts-styles" data-node="'+this._data.nodeId+'">'+i+"<div>":'<div class="fl-builder-node-scripts-styles">'+i+"<div>"),this._data.html=t.html(),this._data.scriptsStyles=i}},_addNewHTML:function(){var e;this._data.partial?this._data.nodeParent?(e=this._data.nodeParent.hasClass("fl-builder-content")?this._data.nodeParent.find(".fl-row"):this._data.nodeParent.hasClass("fl-row-content")?this._data.nodeParent.find(".fl-col-group"):this._data.nodeParent.find(".fl-module"),0===e.length||e.length==this._data.nodePosition?this._data.nodeParent.append(this._data.html):e.eq(this._data.nodePosition).before(this._data.html)):(this._content.after(this._data.html),this._content.remove()):this._content.append(this._data.html)},_cleanNewAssets:function(){var t=this;this._data.html=this._removeDuplicateAssets(this._data.html),this._data.scriptsStyles&&""!==this._data.scriptsStyles&&(this._data.scriptsStyles=this._removeDuplicateAssets(this._data.scriptsStyles)),this._data.partial?e(".fl-builder-node-scripts-styles").each(function(){t._data.html.indexOf("fl-node-"+e(this).data("node"))>-1&&e(this).remove()}):(e("#fl-builder-partial-refresh-js").remove(),e(".fl-builder-node-scripts-styles").remove())},_removeDuplicateAssets:function(t){var l=e("<div>"+t+"</div>"),i="",o=null,s="",r=null,n=window.location,a=n.protocol+"//"+n.hostname+(n.port?":"+n.port:"");return l.find("script").each(function(){i=e(this).attr("src"),"undefined"!=typeof i&&(i=i.replace(a,""),o=e('script[src*="'+i+'"]'),o.length>0&&e(this).remove())}),l.find("link").each(function(){s=e(this).attr("href"),"undefined"!=typeof s&&(s=s.replace(a,""),r=e('link[href*="'+s+'"]'),r.length>0&&e(this).remove())}),l.html()},_addNewScriptsStyles:function(){this._data.scriptsStyles&&""!==this._data.scriptsStyles&&this._body.append(this._data.scriptsStyles)},_addNewJS:function(){setTimeout(e.proxy(function(){this._newJs&&this._head.append(this._newJs)},this),50)},_complete:function(){FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._initSortables(),FLBuilder._resizeLayout(),FLBuilder._initMediaElements(),FLBuilderLayout.init(),this._body.height("auto")}}}(jQuery),function(e){FLBuilderPreview=function(t){this.type=t.type,"undefined"!=t.state&&t.state?this.state=t.state:this._saveState(),"undefined"!=t.layout&&t.layout?FLBuilder._renderLayout(t.layout,e.proxy(this._init,this)):this._init()},FLBuilderPreview._fontsList={},FLBuilderPreview.prototype={type:"",nodeId:null,classes:{},elements:{},state:null,_savedSettings:null,_styleSheet:null,_timeout:null,_lastClassName:null,_xhr:null,_init:function(){switch(this.nodeId=e(".fl-builder-settings").data("node"),this._saveSettings(),this._initElementsAndClasses(),this._initDefaultFieldPreviews(),this.type){case"row":this._initRow();break;case"col":this._initColumn();break;case"module":this._initModule()}},_saveSettings:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings");this._savedSettings=FLBuilder._getSettings(t)},_settingsHaveChanged:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=FLBuilder._getSettings(t);return JSON.stringify(this._savedSettings)!=JSON.stringify(l)},_initElementsAndClasses:function(){var t;t="row"==this.type?".fl-row-content-wrap":".fl-"+this.type+"-content",e.extend(this.classes,{settings:".fl-builder-"+this.type+"-settings",settingsHeader:".fl-builder-"+this.type+"-settings .fl-lightbox-header",node:FLBuilder._contentClass+" .fl-node-"+this.nodeId,content:FLBuilder._contentClass+" .fl-node-"+this.nodeId+" "+t}),e.extend(this.elements,{settings:e(this.classes.settings),settingsHeader:e(this.classes.settingsHeader),node:e(this.classes.node),content:e(this.classes.content)})},updateCSSRule:function(e,t,l){this._styleSheet||(this._styleSheet=new FLStyleSheet),this._styleSheet.updateRule(e,t,l)},delay:function(e,t){this._cancelDelay(),this._timeout=setTimeout(t,e)},_cancelDelay:function(){null!==this._timeout&&clearTimeout(this._timeout)},hexToRgb:function(e){var t=parseInt(e,16),l=t>>16&255,i=t>>8&255,o=255&t;return[l,i,o]},parseFloat:function(e){return isNaN(parseFloat(e))?0:parseFloat(e)},_saveState:function(){var t=e("#fl-post-id").val(),l=e('link[href*="/cache/'+t+'"]').attr("href"),i=e('script[src*="/cache/'+t+'"]').attr("src"),o=e(FLBuilder._contentClass).html();this.state={css:l,js:i,html:o}},preview:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.attr("data-node"),i=FLBuilder._getSettings(t);this._cancelPreview(),this._xhr=FLBuilder.ajax({action:"render_layout",node_id:l,node_preview:i},e.proxy(this._renderPreview,this))},delayPreview:function(t){var l="undefined"==typeof t?[]:e(t.target).closest("tr").find("th"),i=e(".fl-builder-widget-settings .fl-builder-settings-title"),o=e(".fl-builder-settings .fl-lightbox-header"),s=FLBuilderLayoutConfig.paths.pluginUrl+"img/ajax-loader-small.gif",r=e('<img class="fl-builder-preview-loader" src="'+s+'" />');e(".fl-builder-preview-loader").remove(),l.length>0?l.append(r):i.length>0?i.append(r):o.length>0&&o.append(r),this.delay(1e3,e.proxy(this.preview,this))},_cancelPreview:function(){this._xhr&&(this._xhr.abort(),this._xhr=null)},_renderPreview:function(t){this._xhr=null,FLBuilder._renderLayout(t,e.proxy(this._renderPreviewComplete,this))},_renderPreviewComplete:function(){this._initElementsAndClasses(),e(".fl-builder-preview-loader").remove(),e(FLBuilder._contentClass).trigger("fl-builder.preview-rendered")},revert:function(){this._cancelDelay(),this._cancelPreview(),this._styleSheet&&this._styleSheet.remove(),this._settingsHaveChanged()&&FLBuilder._renderLayout(this.state)},clear:function(){this._cancelDelay(),this._cancelPreview(),this._styleSheet&&(this._styleSheet.remove(),this._styleSheet=null)},_initNodeTextColor:function(){e.extend(this.elements,{textColor:e(this.classes.settings+" input[name=text_color]"),linkColor:e(this.classes.settings+" input[name=link_color]"),hoverColor:e(this.classes.settings+" input[name=hover_color]"),headingColor:e(this.classes.settings+" input[name=heading_color]")}),this.elements.textColor.on("change",e.proxy(this._textColorChange,this)),this.elements.linkColor.on("change",e.proxy(this._textColorChange,this)),this.elements.hoverColor.on("change",e.proxy(this._textColorChange,this)),this.elements.headingColor.on("change",e.proxy(this._textColorChange,this))},_textColorChange:function(t){var l=this.elements.textColor.val(),i=this.elements.linkColor.val(),o=this.elements.hoverColor.val(),s=this.elements.headingColor.val();i=""===i?l:i,o=""===o?l:o,s=""===s?l:s,this.delay(100,e.proxy(function(){""===l?this.updateCSSRule(this.classes.node,"color","inherit"):this.updateCSSRule(this.classes.node,"color","#"+l),""===i?this.updateCSSRule(this.classes.node+" a","color","inherit"):this.updateCSSRule(this.classes.node+" a","color","#"+i),""===o?this.updateCSSRule(this.classes.node+" a:hover","color","inherit"):this.updateCSSRule(this.classes.node+" a:hover","color","#"+o),""===s?(this.updateCSSRule(this.classes.node+" h1","color","inherit"),this.updateCSSRule(this.classes.node+" h2","color","inherit"),this.updateCSSRule(this.classes.node+" h3","color","inherit"),this.updateCSSRule(this.classes.node+" h4","color","inherit"),this.updateCSSRule(this.classes.node+" h5","color","inherit"),this.updateCSSRule(this.classes.node+" h6","color","inherit"),this.updateCSSRule(this.classes.node+" h1 a","color","inherit"),this.updateCSSRule(this.classes.node+" h2 a","color","inherit"),this.updateCSSRule(this.classes.node+" h3 a","color","inherit"),this.updateCSSRule(this.classes.node+" h4 a","color","inherit"),this.updateCSSRule(this.classes.node+" h5 a","color","inherit"),this.updateCSSRule(this.classes.node+" h6 a","color","inherit")):(this.updateCSSRule(this.classes.node+" h1","color","#"+s),this.updateCSSRule(this.classes.node+" h2","color","#"+s),this.updateCSSRule(this.classes.node+" h3","color","#"+s),this.updateCSSRule(this.classes.node+" h4","color","#"+s),this.updateCSSRule(this.classes.node+" h5","color","#"+s),this.updateCSSRule(this.classes.node+" h6","color","#"+s),this.updateCSSRule(this.classes.node+" h1 a","color","#"+s),this.updateCSSRule(this.classes.node+" h2 a","color","#"+s),this.updateCSSRule(this.classes.node+" h3 a","color","#"+s),this.updateCSSRule(this.classes.node+" h4 a","color","#"+s),this.updateCSSRule(this.classes.node+" h5 a","color","#"+s),this.updateCSSRule(this.classes.node+" h6 a","color","#"+s))},this))},_initNodeBg:function(){e.extend(this.elements,{bgType:e(this.classes.settings+" select[name=bg_type]"),bgColor:e(this.classes.settings+" input[name=bg_color]"),bgColorPicker:e(this.classes.settings+" .fl-picker-bg_color"),bgOpacity:e(this.classes.settings+" input[name=bg_opacity]"),bgImageSrc:e(this.classes.settings+" select[name=bg_image_src]"),bgRepeat:e(this.classes.settings+" select[name=bg_repeat]"),bgPosition:e(this.classes.settings+" select[name=bg_position]"),bgAttachment:e(this.classes.settings+" select[name=bg_attachment]"),bgSize:e(this.classes.settings+" select[name=bg_size]"),bgVideo:e(this.classes.settings+" input[name=bg_video]"),bgVideoFallbackSrc:e(this.classes.settings+" select[name=bg_video_fallback_src]"),bgSlideshowSource:e(this.classes.settings+" select[name=ss_source]"),bgSlideshowPhotos:e(this.classes.settings+" input[name=ss_photos]"),bgSlideshowFeedUrl:e(this.classes.settings+" input[name=ss_feed_url]"),bgSlideshowSpeed:e(this.classes.settings+" input[name=ss_speed]"),bgSlideshowTrans:e(this.classes.settings+" select[name=ss_transition]"),bgSlideshowTransSpeed:e(this.classes.settings+" input[name=ss_transitionDuration]"),bgParallaxImageSrc:e(this.classes.settings+" select[name=bg_parallax_image_src]"),bgOverlayColor:e(this.classes.settings+" input[name=bg_overlay_color]"),bgOverlayOpacity:e(this.classes.settings+" input[name=bg_overlay_opacity]")}),this.elements.bgType.on("change",e.proxy(this._bgTypeChange,this)),this.elements.bgColor.on("change",e.proxy(this._bgColorChange,this)),this.elements.bgOpacity.on("keyup",e.proxy(this._bgOpacityChange,this)),this.elements.bgImageSrc.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgRepeat.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgPosition.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgAttachment.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgSize.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgSlideshowSource.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowPhotos.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowFeedUrl.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowSpeed.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowTrans.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowTransSpeed.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgParallaxImageSrc.on("change",e.proxy(this._bgParallaxChange,this)),this.elements.bgOverlayColor.on("change",e.proxy(this._bgOverlayChange,this)),this.elements.bgOverlayOpacity.on("keyup",e.proxy(this._bgOverlayChange,this))},_bgTypeChange:function(e){var t=this.elements.bgType.val();this.elements.node.removeClass("fl-row-bg-video"),this.elements.node.removeClass("fl-row-bg-slideshow"),this.elements.node.removeClass("fl-row-bg-parallax"),this.elements.node.find(".fl-bg-video").remove(),this.elements.node.find(".fl-bg-slideshow").remove(),this.elements.content.css("background-image",""),this.updateCSSRule(this.classes.content,{"background-color":"transparent","background-image":"none"}),"none"==t?this._bgOverlayClear():"color"==t?(this.elements.bgColor.trigger("change"),this._bgOverlayClear()):"photo"==t?(this.elements.bgColor.trigger("change"),this.elements.bgImageSrc.trigger("change")):"video"==t?(this.elements.bgColor.trigger("change"),""!=this.elements.bgVideo.val()&&this.preview()):"slideshow"==t?(this.elements.bgColor.trigger("change"),this._bgSlideshowChange()):"parallax"==t&&(this.elements.bgColor.trigger("change"),this.elements.bgParallaxImageSrc.trigger("change"))},_bgColorChange:function(t){var l,i,o;""===this.elements.bgColor.val()||isNaN(this.elements.bgOpacity.val())?this.updateCSSRule(this.classes.content,"background-color","transparent"):(l=this.hexToRgb(this.elements.bgColor.val()),i=this.parseFloat(this.elements.bgOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.updateCSSRule(this.classes.content,"background-color",o)},this)))},_bgOpacityChange:function(e){this.elements.bgColor.trigger("change")},_bgPhotoChange:function(e){this.elements.bgImageSrc.val()&&this.updateCSSRule(this.classes.content,{"background-image":"url("+this.elements.bgImageSrc.val()+")","background-repeat":this.elements.bgRepeat.val(),"background-position":this.elements.bgPosition.val(),"background-attachment":this.elements.bgAttachment.val(),"background-size":this.elements.bgSize.val()})},_bgSlideshowChange:function(t){var l=this.elements,i=l.bgSlideshowSource.val(),o=l.bgSlideshowPhotos.val(),s=l.bgSlideshowFeedUrl.val(),r=l.bgSlideshowSpeed.val(),n=l.bgSlideshowTransSpeed.val();("wordpress"!=i||""!==o)&&("smugmug"!=i||""!==s)&&(isNaN(parseInt(r))||isNaN(parseInt(n))||this.delay(500,e.proxy(this.preview,this)))},_bgParallaxChange:function(e){this.elements.bgParallaxImageSrc.val()&&this.updateCSSRule(this.classes.content,{"background-image":"url("+this.elements.bgParallaxImageSrc.val()+")","background-repeat":"no-repeat","background-position":"center center","background-attachment":"fixed","background-size":"cover"})},_bgOverlayChange:function(t){var l,i,o;""===this.elements.bgOverlayColor.val()||isNaN(this.elements.bgOverlayOpacity.val())?(this.elements.node.removeClass("fl-row-bg-overlay"),this.elements.node.removeClass("fl-col-bg-overlay"),this.updateCSSRule(this.classes.content+":after","background-color","transparent")):(l=this.hexToRgb(this.elements.bgOverlayColor.val()),i=this.parseFloat(this.elements.bgOverlayOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.elements.node.hasClass("fl-col")?this.elements.node.addClass("fl-col-bg-overlay"):this.elements.node.addClass("fl-row-bg-overlay"),this.updateCSSRule(this.classes.content+":after","background-color",o)},this)))},_bgOverlayClear:function(e){this.elements.bgOverlayColor.prev(".fl-color-picker-clear").trigger("click")},_initNodeBorder:function(){e.extend(this.elements,{borderType:e(this.classes.settings+" select[name=border_type]"),borderColor:e(this.classes.settings+" input[name=border_color]"),borderColorPicker:e(this.classes.settings+" .fl-picker-border_color"),borderOpacity:e(this.classes.settings+" input[name=border_opacity]"),borderTopWidth:e(this.classes.settings+" input[name=border_top]"),borderBottomWidth:e(this.classes.settings+" input[name=border_bottom]"),borderLeftWidth:e(this.classes.settings+" input[name=border_left]"),borderRightWidth:e(this.classes.settings+" input[name=border_right]")}),this.elements.borderType.on("change",e.proxy(this._borderTypeChange,this)),this.elements.borderColor.on("change",e.proxy(this._borderColorChange,this)),this.elements.borderOpacity.on("keyup",e.proxy(this._borderOpacityChange,this)),this.elements.borderTopWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderBottomWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderLeftWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderRightWidth.on("keyup",e.proxy(this._borderWidthChange,this))},_borderTypeChange:function(e){var t=this.elements.borderType.val();this.updateCSSRule(this.classes.content,{"border-style":""===t?"none":t}),this.elements.borderColor.trigger("change"),this.elements.borderTopWidth.trigger("keyup")},_borderColorChange:function(t){var l,i,o;""===this.elements.borderColor.val()||isNaN(this.elements.borderOpacity.val())?this.updateCSSRule(this.classes.content,"border-color","transparent"):(l=this.hexToRgb(this.elements.borderColor.val()),i=parseInt(this.elements.borderOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.updateCSSRule(this.classes.content,"border-color",o)},this)))},_borderOpacityChange:function(e){this.elements.borderColor.trigger("change")},_getBorderWidths:function(e){var t=this.elements.borderTopWidth.val(),l=this.elements.borderBottomWidth.val(),i=this.elements.borderLeftWidth.val(),o=this.elements.borderRightWidth.val();return""===t&&(t=this.elements.borderTopWidth.attr("placeholder")),""===l&&(l=this.elements.borderBottomWidth.attr("placeholder")),""===i&&(i=this.elements.borderLeftWidth.attr("placeholder")),""===o&&(o=this.elements.borderRightWidth.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_borderWidthChange:function(e){var t=this._getBorderWidths();this.elements.borderColor.trigger("change"),this.updateCSSRule(this.classes.content,{"border-top-width":t.top+"px","border-bottom-width":t.bottom+"px","border-left-width":t.left+"px","border-right-width":t.right+"px"}),this._positionAbsoluteBgs()},_initNodeClassName:function(){e.extend(this.elements,{className:e(this.classes.settings+" input[name=class]")}),this.elements.className.on("keyup",e.proxy(this._classNameChange,this)),this._lastClassName=this.elements.className.val()},_classNameChange:function(e){var t=this.elements.className.val();null!==this._lastClassName&&this.elements.node.removeClass(this._lastClassName),this.elements.node.addClass(t),this._lastClassName=t},_initMargins:function(){e.extend(this.elements,{marginTop:e(this.classes.settings+" input[name=margin_top]"),marginBottom:e(this.classes.settings+" input[name=margin_bottom]"),marginLeft:e(this.classes.settings+" input[name=margin_left]"),marginRight:e(this.classes.settings+" input[name=margin_right]")}),this.elements.marginTop.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginBottom.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginLeft.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginRight.on("keyup",e.proxy(this._marginChange,this))},_getMargins:function(e){var t=this.elements.marginTop.val(),l=this.elements.marginBottom.val(),i=this.elements.marginLeft.val(),o=this.elements.marginRight.val();return""===t&&(t=this.elements.marginTop.attr("placeholder")),""===l&&(l=this.elements.marginBottom.attr("placeholder")),""===i&&(i=this.elements.marginLeft.attr("placeholder")),""===o&&(o=this.elements.marginRight.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_marginChange:function(e){var t=this._getMargins();this.updateCSSRule(this.classes.content,{"margin-top":t.top+"px","margin-bottom":t.bottom+"px","margin-left":t.left+"px","margin-right":t.right+"px"}),this._positionAbsoluteBgs()},_initPadding:function(){e.extend(this.elements,{paddingTop:e(this.classes.settings+" input[name=padding_top]"),paddingBottom:e(this.classes.settings+" input[name=padding_bottom]"),paddingLeft:e(this.classes.settings+" input[name=padding_left]"),paddingRight:e(this.classes.settings+" input[name=padding_right]")}),this.elements.paddingTop.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingBottom.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingLeft.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingRight.on("keyup",e.proxy(this._paddingChange,this))},_getPadding:function(e){var t=this.elements.paddingTop.val(),l=this.elements.paddingBottom.val(),i=this.elements.paddingLeft.val(),o=this.elements.paddingRight.val();return""===t&&(t=this.elements.paddingTop.attr("placeholder")),""===l&&(l=this.elements.paddingBottom.attr("placeholder")),""===i&&(i=this.elements.paddingLeft.attr("placeholder")),""===o&&(o=this.elements.paddingRight.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_paddingChange:function(e){var t=this._getPadding();this.updateCSSRule(this.classes.content,{"padding-top":t.top+"px","padding-bottom":t.bottom+"px","padding-left":t.left+"px","padding-right":t.right+"px"}),this._positionAbsoluteBgs()},_positionAbsoluteBgs:function(){var e=this.elements.node.find(".fl-bg-slideshow"),t=this.elements.node.find(".fl-bg-video"),l=null,i=null;(e.length>0||t.length>0)&&(l=this._getMargins(),i=this._getBorderWidths(),e.length>0&&(this.updateCSSRule(this.classes.node+" .fl-bg-slideshow",{top:l.top+i.top+"px",bottom:l.bottom+i.bottom+"px",left:l.left+i.left+"px",right:l.right+i.right+"px"}),FLBuilder._resizeLayout()),t.length>0&&this.updateCSSRule(this.classes.node+" .fl-bg-video",{top:l.top+i.top+"px",bottom:l.bottom+i.bottom+"px",left:l.left+i.left+"px",right:l.right+i.right+"px"}))},_initRow:function(){e.extend(this.elements,{width:e(this.classes.settings+" select[name=width]"),height:e(this.classes.settings+" select[name=full_height]"),contentWidth:e(this.classes.settings+" select[name=content_width]")}),this.elements.width.on("change",e.proxy(this._rowWidthChange,this)),this.elements.height.on("change",e.proxy(this._rowHeightChange,this)),this.elements.contentWidth.on("change",e.proxy(this._rowContentWidthChange,this)),this._initNodeTextColor(),this._initNodeBg(),this._initNodeBorder(),this._initNodeClassName(),this._initMargins(),this._initPadding()},_rowWidthChange:function(e){var t=this.elements.node;"full"==this.elements.width.val()?(t.removeClass("fl-row-fixed-width"),t.addClass("fl-row-full-width")):(t.removeClass("fl-row-full-width"),t.addClass("fl-row-fixed-width"))},_rowHeightChange:function(e){var t=this.elements.node;"full"==this.elements.height.val()?t.addClass("fl-row-full-height"):t.removeClass("fl-row-full-height")},_rowContentWidthChange:function(e){var t=this.elements.content.find(".fl-row-content");"full"==this.elements.contentWidth.val()?(t.removeClass("fl-row-fixed-width"),t.addClass("fl-row-full-width")):(t.removeClass("fl-row-full-width"),t.addClass("fl-row-fixed-width"))},_initColumn:function(){e.extend(this.elements,{size:e(this.classes.settings+" input[name=size]"),columnHeight:e(this.classes.settings+" select[name=equal_height]")}),this.elements.size.on("keyup",e.proxy(this._colSizeChange,this)),this.elements.columnHeight.on("change",e.proxy(this._colHeightChange,this)),this._initNodeTextColor(),this._initNodeBg(),this._initNodeBorder(),this._initNodeClassName(),this._initMargins(),this._initPadding()},_colSizeChange:function(){var t=10,l=100-t,i=parseFloat(this.elements.size.val()),o=this.elements.node.prev(".fl-col"),s=this.elements.node.next(".fl-col"),r=0===s.length?o:s,n=this.elements.node.siblings(".fl-col"),a=0;0===n.length||isNaN(i)||(n.each(function(){e(this).data("node")!=r.data("node")&&(l-=parseFloat(e(this)[0].style.width),a+=parseFloat(e(this)[0].style.width))}),t>i&&(i=t),i>l&&(i=l),r.css("width",100-a-i+"%"),this.elements.node.css("width",i+"%"))},_colHeightChange:function(){var e=this.elements.node.parent(".fl-col-group");"yes"==this.elements.columnHeight.val()?e.addClass("fl-col-group-equal-height"):e.removeClass("fl-col-group-equal-height")},_initModule:function(){this._initNodeClassName(),this._initMargins()},_initDefaultFieldPreviews:function(){for(var e=this.elements.settings.find(".fl-field"),t=null,l=null,i=0;i<e.length;i++)t=e.eq(i),l=t.data("preview"),"refresh"==l.type&&this._initFieldRefreshPreview(t),"text"==l.type&&this._initFieldTextPreview(t),"css"==l.type&&this._initFieldCSSPreview(t),"widget"==l.type&&this._initFieldWidgetPreview(t),"font"==l.type&&this._initFieldFontPreview(t)},_initFieldRefreshPreview:function(t){var l=t.data("type"),i=t.data("preview"),o=e.proxy(this.delayPreview,this);switch(l){case"text":t.find("input[type=text]").on("keyup",o);break;case"textarea":t.find("textarea").on("keyup",o);break;case"select":t.find("select").on("change",o);break;case"color":t.find(".fl-color-picker-value").on("change",o);break;case"photo":t.find("select").on("change",o);break;case"multiple-photos":t.find("input").on("change",o);break;case"photo-sizes":t.find("select").on("change",o);break;case"video":t.find("input").on("change",o);break;case"multiple-audios":t.find("input").on("change",o);break;case"icon":t.find("input").on("change",o);break;case"form":t.delegate("input","change",o);break;case"editor":this._addTextEditorCallback(t,i);break;case"code":t.find("textarea").on("change",o);break;case"post-type":t.find("select").on("change",o);break;case"suggest":t.find(".as-values").on("change",o)}},_initFieldTextPreview:function(t){var l=t.data("type"),i=t.data("preview"),o=e.proxy(this._previewText,this,i);switch(l){case"text":t.find("input[type=text]").on("keyup",o);break;case"textarea":t.find("textarea").on("keyup",o);break;case"code":t.find("textarea").on("change",o);break;case"editor":this._addTextEditorCallback(t,i)}},_previewText:function(t,l){var i=this.elements.node.find(t.selector),o=e("<div>"+e(l.target).val()+"</div>");i.length>0&&(o.find("script").remove(),i.html(o.html()))},_previewTextEditor:function(t,l,i){var o=this.elements.node.find(t.selector),s="undefined"!=typeof tinyMCE?tinyMCE.get(l):null,r=e("#"+l),n="";o.length>0&&(n=e(s&&"none"==r.css("display")?"<div>"+s.getContent()+"</div>":"undefined"==typeof switchEditors||"undefined"==typeof switchEditors.wpautop?"<div>"+r.val()+"</div>":"<div>"+switchEditors.wpautop(r.val())+"</div>"),n.find("script").remove(),o.html(n.html()))},_addTextEditorCallback:function(t,l){var i=t.find("textarea.wp-editor-area").attr("id"),o=null;if("refresh"==l.type)o=e.proxy(this.delayPreview,this);else{if("text"!=l.type)return;o=e.proxy(this._previewTextEditor,this,l,i)}e("#"+i).on("keyup",o),"undefined"!=typeof tinyMCE&&(editor=tinyMCE.get(i),editor.on("change",o),editor.on("keyup",o))},_initFieldFontPreview:function(t){var l=t.data("type"),i=t.data("preview");i.id=t.attr("id");var o=e.proxy(this._previewFont,this,i);"font"==l&&t.find(".fl-font-field").on("change","select",o)},_previewFont:function(t,l){var i=e(l.delegateTarget),o=i.find(".fl-font-field-font"),s=e(o).find(":selected"),r=s.parent().attr("label"),n=i.find(".fl-font-field-weight"),a=t.id+"-"+this.nodeId,d=this._getPreviewSelector(this.classes.node,t.selector);"Google"==r&&this._buildFontStylesheet(a,o.val(),n.val()),"Default"==o.val()?(this.updateCSSRule(d,"font-family",""),this.updateCSSRule(d,"font-weight","")):(this.updateCSSRule(d,"font-family",o.val()),this.updateCSSRule(d,"font-weight",n.val()))},_buildFontStylesheet:function(t,l,i){var o="//fonts.googleapis.com/css?family=",s="",r={},n={};r[l]=[i],FLBuilderPreview._fontsList[t]=r,Object.keys(FLBuilderPreview._fontsList).forEach(function(e){var t=FLBuilderPreview._fontsList[e];Object.keys(t).forEach(function(e){var l=t[e];n[e]=n[e]||[],l=l.filter(function(t){return n[e].indexOf(t)<0}),n[e]=n[e].concat(l)})}),e.each(n,function(e,t){s+=e+":"+t.join()+"|"}),s=o+s.slice(0,-1).replace(" ","+"),e("#fl-builder-google-fonts-preview").length<1?e("<link>").attr("id","fl-builder-google-fonts-preview").attr("type","text/css").attr("rel","stylesheet").attr("href",s).appendTo("head"):e("#fl-builder-google-fonts-preview").attr("href",s)},_initFieldCSSPreview:function(e){var t=e.data("preview"),l=null;if("undefined"!=typeof t.rules)for(l in t.rules)this._initFieldCSSPreviewCallback(e,t.rules[l]);else this._initFieldCSSPreviewCallback(e,t)},_initFieldCSSPreviewCallback:function(t,l){switch(t.data("type")){case"text":t.find("input[type=text]").on("keyup",e.proxy(this._previewCSS,this,l));break;case"select":t.find("select").on("change",e.proxy(this._previewCSS,this,l));break;case"color":t.find(".fl-color-picker-value").on("change",e.proxy(this._previewColor,this,l))}},_previewCSS:function(t,l){var i=this._getPreviewSelector(this.classes.node,t.selector),o=t.property,s="undefined"==typeof t.unit?"":t.unit,r=e(l.target).val();"%"==s?r=parseInt(r)/100:r+=s,this.updateCSSRule(i,o,r)},_previewColor:function(t,l){var i=this._getPreviewSelector(this.classes.node,t.selector),o=e(l.target).val(),s=""===o?"inherit":"#"+o;this.updateCSSRule(i,t.property,s)},_initFieldWidgetPreview:function(t){var l=e.proxy(this.delayPreview,this);t.find("input").on("keyup",l),t.find("input[type=checkbox]").on("click",l),t.find("textarea").on("keyup",l),t.find("select").on("change",l)},_getPreviewSelector:function(e,t){for(var l="",i=t.split(","),o=0;o<i.length;o++)l+=e+" "+i[o],o!=i.length-1&&(l+=", ");return l}}}(jQuery),function(e){var t={init:function(){var t=e("body");t.delegate(".fl-builder-service-select","change",this._serviceChange),t.delegate(".fl-builder-service-connect-button","click",this._connectClicked),t.delegate(".fl-builder-service-account-select","change",this._accountChange),t.delegate(".fl-builder-service-account-delete","click",this._accountDeleteClicked),t.delegate(".fl-builder-campaign-monitor-client-select","change",this._campaignMonitorClientChange),t.delegate(".fl-builder-mailchimp-list-select","change",this._mailChimpListChange)},_startSettingsLoading:function(t){var l=e(".fl-builder-settings"),i=t.closest(".fl-builder-service-settings"),o=e(".fl-builder-service-error");
2
  l.append('<div class="fl-builder-loading"></div>'),i.addClass("fl-builder-service-settings-loading"),o.remove()},_finishSettingsLoading:function(){var t=e(".fl-builder-settings"),l=e(".fl-builder-service-settings-loading");t.find(".fl-builder-loading").remove(),l.removeClass("fl-builder-service-settings-loading")},_serviceChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this),o=i.closest("tr"),s=i.val();o.siblings("tr.fl-builder-service-account-row").remove(),o.siblings("tr.fl-builder-service-connect-row").remove(),o.siblings("tr.fl-builder-service-field-row").remove(),e(".fl-builder-service-error").remove(),""!==s&&(t._startSettingsLoading(i),FLBuilder.ajax({action:"render_service_settings",node_id:l,service:s},t._serviceChangeComplete))},_serviceChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-select-row");s.after(i.html),t._addAccountDelete(o),t._finishSettingsLoading()},_connectClicked:function(){for(var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-connect-row"),r=i.find(".fl-builder-service-connect-input"),n=null,a=null,d=0,u={action:"connect_service",node_id:l,service:o.val(),fields:{}};d<r.length;d++)n=r.eq(d),a=n.attr("name"),u.fields[a]=n.val();s.hide(),t._startSettingsLoading(o),FLBuilder.ajax(u,t._connectComplete)},_connectComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-select-row"),r=o.find(".fl-builder-service-select"),n=o.find(".fl-builder-service-account-row"),a=o.find(".fl-builder-service-account-select"),d=o.find(".fl-builder-service-connect-row");i.error?(d.show(),0===a.length?r.after('<div class="fl-builder-service-error">'+i.error+"</div>"):a.after('<div class="fl-builder-service-error">'+i.error+"</div>")):(d.remove(),n.remove(),s.after(i.html)),t._addAccountDelete(o),t._finishSettingsLoading()},_accountChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=i.find(".fl-builder-service-connect-row"),n=i.find("tr.fl-builder-service-field-row"),a=e(".fl-builder-service-error"),d=s.val(),u=null;r.remove(),n.remove(),a.remove(),"add_new_account"==d?u={action:"render_service_settings",node_id:l,service:o.val(),add_new:!0}:""!==d&&(u={action:"render_service_fields",node_id:l,service:o.val(),account:d}),u&&(t._startSettingsLoading(o),FLBuilder.ajax(u,t._accountChangeComplete)),t._addAccountDelete(i)},_accountChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-account-row");s.after(i.html),t._finishSettingsLoading()},_addAccountDelete:function(e){var t=e.find(".fl-builder-service-account-select");t.length>0&&(e.find(".fl-builder-service-account-delete").remove(),""!==t.val()&&"add_new_account"!=t.val()&&t.after('<a href="javascript:void(0);" class="fl-builder-service-account-delete">'+FLBuilderStrings.deleteAccount+"</a>"))},_accountDeleteClicked:function(){var l=e(this).closest(".fl-builder-service-settings"),i=l.find(".fl-builder-service-select"),o=l.find(".fl-builder-service-account-select");confirm(FLBuilderStrings.deleteAccountWarning)&&(FLBuilder.ajax({action:"delete_service_account",service:i.val(),account:o.val()},t._accountDeleteComplete),t._startSettingsLoading(o))},_accountDeleteComplete:function(){var l=e(".fl-builder-service-settings-loading"),i=l.find(".fl-builder-service-select");t._finishSettingsLoading(),i.trigger("change")},_campaignMonitorClientChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=e(this),n=i.find(".fl-builder-service-list-select"),a=r.val();0!==n.length&&n.closest("tr").remove(),""!==a&&(t._startSettingsLoading(o),FLBuilder.ajax({action:"render_service_fields",node_id:l,service:o.val(),account:s.val(),client:a},t._campaignMonitorClientChangeComplete))},_campaignMonitorClientChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-campaign-monitor-client-select");s.closest("tr").after(i.html),t._finishSettingsLoading()},_mailChimpListChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=i.find(".fl-builder-service-list-select");e(".fl-builder-mailchimp-group-select").closest("tr").remove(),""!==r.val()&&(t._startSettingsLoading(o),FLBuilder.ajax({action:"render_service_fields",node_id:l,service:o.val(),account:s.val(),list_id:r.val()},t._mailChimpListChangeComplete))},_mailChimpListChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-list-select");s.closest("tr").after(i.html),t._finishSettingsLoading()}};e(function(){t.init()})}(jQuery),function(e){FLBuilderTour={_tour:null,start:function(){FLBuilderTour._tour?FLBuilderTour._tour.restart():(FLBuilderTour._tour=new Tour(FLBuilderTour._config()),FLBuilderTour._tour.init()),FLBuilderTour._tour.start()},_config:function(){var t={storage:!1,onStart:FLBuilderTour._onStart,onPrev:FLBuilderTour._onPrev,onNext:FLBuilderTour._onNext,onEnd:FLBuilderTour._onEnd,template:'<div class="popover" role="tooltip"> <i class="fa fa-times" data-role="end"></i> <div class="arrow"></div> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation clearfix"> <button class="fl-builder-button fl-builder-button-primary fl-builder-tour-next" data-role="next">'+FLBuilderStrings.tourNext+"</button> </div> </div>",steps:[{animation:!1,element:".fl-builder-bar",placement:"bottom",title:FLBuilderStrings.tourTemplatesTitle,content:FLBuilderStrings.tourTemplates,onShown:function(){0===e(".fl-template-selector").length?(e(".popover[class*=tour-]").css("visibility","hidden"),FLBuilder._showTemplateSelector()):FLBuilderTour._templateSelectorLoaded()}},{animation:!1,element:"#fl-builder-blocks-rows .fl-builder-blocks-section-title",placement:"left",title:FLBuilderStrings.tourAddRowsTitle,content:FLBuilderStrings.tourAddRows,onShow:function(){FLBuilderTour._dimSection("body"),FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._showPanel(),e(".fl-template-selector .fl-builder-settings-cancel").trigger("click"),e("#fl-builder-blocks-rows .fl-builder-blocks-section-title").trigger("click")}},{animation:!1,element:"#fl-builder-blocks-basic .fl-builder-blocks-section-title",placement:"left",title:FLBuilderStrings.tourAddContentTitle,content:FLBuilderStrings.tourAddContent,onShow:function(){FLBuilderTour._dimSection("body"),FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._showPanel(),e("#fl-builder-blocks-basic .fl-builder-blocks-section-title").trigger("click"),e(".fl-row").eq(0).trigger("mouseleave"),e(".fl-module").eq(0).trigger("mouseleave")}},{animation:!1,element:".fl-row:first-of-type",placement:"top",title:FLBuilderStrings.tourEditContentTitle,content:FLBuilderStrings.tourEditContent,onShow:function(){FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._closePanel(),e(".fl-row").eq(0).trigger("mouseenter"),e(".fl-module").eq(0).trigger("mouseenter")}},{animation:!1,element:".fl-row:first-of-type .fl-module-overlay .fl-block-overlay-actions",placement:"top",title:FLBuilderStrings.tourEditContentTitle,content:FLBuilderStrings.tourEditContent2,onShow:function(){FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._closePanel(),e(".fl-row").eq(0).trigger("mouseenter"),e(".fl-module").eq(0).trigger("mouseenter")}},{animation:!1,element:".fl-builder-add-content-button",placement:"bottom",title:FLBuilderStrings.tourAddContentButtonTitle,content:FLBuilderStrings.tourAddContentButton,onShow:function(){FLBuilderTour._dimSection("body"),e(".fl-row").eq(0).trigger("mouseleave"),e(".fl-module").eq(0).trigger("mouseleave")}},{animation:!1,element:".fl-builder-templates-button",placement:"bottom",title:FLBuilderStrings.tourTemplatesButtonTitle,content:FLBuilderStrings.tourTemplatesButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,element:".fl-builder-tools-button",placement:"bottom",title:FLBuilderStrings.tourToolsButtonTitle,content:FLBuilderStrings.tourToolsButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,element:".fl-builder-done-button",placement:"bottom",title:FLBuilderStrings.tourDoneButtonTitle,content:FLBuilderStrings.tourDoneButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,orphan:!0,backdrop:!0,title:FLBuilderStrings.tourFinishedTitle,content:FLBuilderStrings.tourFinished,template:'<div class="popover" role="tooltip"> <div class="arrow"></div> <i class="fa fa-times" data-role="end"></i> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation clearfix"> <button class="fl-builder-button fl-builder-button-primary fl-builder-tour-next" data-role="end">'+FLBuilderStrings.tourEnd+"</button> </div> </div>"}]};return FLBuilderConfig.lite?t.steps.shift():"disabled"==FLBuilderConfig.enabledTemplates?t.steps.shift():"fl-builder-template"==FLBuilderConfig.postType&&t.steps.shift(),t},_onStart:function(){var t=e("body");t.append('<div class="fl-builder-tour-mask"></div>'),t.on("fl-builder.template-selector-loaded",FLBuilderTour._templateSelectorLoaded),0===e(".fl-row").length&&"module"!=FLBuilderConfig.userTemplateType&&(e(".fl-builder-content").append('<div class="fl-builder-tour-demo-content fl-row fl-row-fixed-width fl-row-bg-none"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-fixed-width fl-node-content"> <div class="fl-col-group"> <div class="fl-col" style="width:100%"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text" data-type="rich-text" data-name="Text Editor"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus pellentesque ut lorem non cursus. Sed mauris nunc, porttitor iaculis lorem a, sollicitudin lacinia sapien. Proin euismod orci lacus, et sollicitudin leo posuere ac. In hac habitasse platea dictumst. Maecenas elit magna, consequat in turpis suscipit, ultrices rhoncus arcu. Phasellus finibus sapien nec elit tempus venenatis. Maecenas tincidunt sapien non libero maximus, in aliquam felis tincidunt. Mauris mollis ultricies facilisis. Duis condimentum dignissim tortor sit amet facilisis. Aenean gravida lacus eu risus molestie egestas. Donec ut dolor dictum, fringilla metus malesuada, viverra nunc. Maecenas ut purus ac justo aliquet lacinia. Cras vestibulum elementum tincidunt. Maecenas mattis tortor neque, consectetur dignissim neque tempor nec.</p></div> </div> </div> </div> </div> </div> </div> </div> </div>'),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols())},_onPrev:function(){e(".fl-builder-tour-dimmed").remove()},_onNext:function(){e(".fl-builder-tour-dimmed").remove()},_onEnd:function(){e("body").off("fl-builder.template-selector-loaded"),e(".fl-builder-tour-mask").remove(),e(".fl-builder-tour-dimmed").remove(),e(".fl-builder-tour-demo-content").remove(),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._showPanel(),FLBuilder._initTemplateSelector()},_dimSection:function(t){e(t).find(".fl-builder-tour-dimmed").remove(),e(t).append('<div class="fl-builder-tour-dimmed"></div>')},_templateSelectorLoaded:function(){var t=e(".fl-builder-settings-lightbox .fl-lightbox-header"),l=t.height(),i=t.offset().top+75;e(".popover[class*=tour-]").css({top:i+l+"px",visibility:"visible"})}}}(jQuery),function(e){FLBuilder={preview:null,_actionsLightbox:null,_addModuleAfterRowRender:null,_colResizeData:null,_colResizing:!1,_contentClass:!1,_dragEnabled:!1,_dragging:!1,_exitUrl:null,_layout:null,_layoutSettingsCSSCache:null,_layoutSettingsCSSTimeout:null,_lightbox:null,_lightboxScrollbarTimeout:null,_loadedModuleAssets:[],_moduleHelpers:{},_multiplePhotoSelector:null,_newColGroupParent:null,_newColGroupPosition:0,_newModuleParent:null,_newModulePosition:0,_newRowPosition:0,_selectedTemplateId:null,_selectedTemplateType:null,_singlePhotoSelector:null,_singleVideoSelector:null,_multipleAudiosSelector:null,_silentUpdate:!1,_silentUpdateCallbackData:null,_init:function(){FLBuilder._initJQueryReadyFix(),FLBuilder._initGlobalErrorHandling(),FLBuilder._initPostLock(),FLBuilder._initClassNames(),FLBuilder._initMediaUploader(),FLBuilder._initOverflowFix(),FLBuilder._initScrollbars(),FLBuilder._initLightboxes(),FLBuilder._initSortables(),FLBuilder._initCoreTemplateSettings(),FLBuilder._bindEvents(),FLBuilder._bindOverlayEvents(),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._showTourOrTemplates()},_initJQueryReadyFix:function(){FLBuilderConfig.debug||(jQuery.fn.oldReady=jQuery.fn.ready,jQuery.fn.ready=function(e){return jQuery.fn.oldReady(function(){try{"function"==typeof e&&e()}catch(t){FLBuilder.logError(t)}})})},_initGlobalErrorHandling:function(){FLBuilderConfig.debug||(window.onerror=function(e,t,l,i,o){return FLBuilder.logGlobalError(e,t,l,i,o),!0})},_initPostLock:function(){"undefined"!=typeof wp.heartbeat&&(wp.heartbeat.interval(30),wp.heartbeat.enqueue("fl_builder_post_lock",{post_id:e("#fl-post-id").val()}))},_initClassNames:function(){e("html").addClass("fl-builder-edit"),e("body").addClass("fl-builder"),FLBuilderConfig.simpleUi&&e("body").addClass("fl-builder-simple"),FLBuilder._contentClass=".fl-builder-content-"+FLBuilderConfig.postId},_initMediaUploader:function(){wp.media.model.settings.post.id=e("#fl-post-id").val()},_initOverflowFix:function(){e(FLBuilder._contentClass).parents().css("overflow","visible")},_initScrollbars:function(){e(".fl-nanoscroller").nanoScroller({alwaysVisible:!0,preventPageScrolling:!0,paneClass:"fl-nanoscroller-pane",sliderClass:"fl-nanoscroller-slider",contentClass:"fl-nanoscroller-content"})},_initLightboxes:function(){FLBuilder._lightbox=new FLLightbox({className:"fl-builder-lightbox fl-builder-settings-lightbox"}),FLBuilder._lightbox.on("close",FLBuilder._lightboxClosed),FLBuilder._actionsLightbox=new FLLightbox({className:"fl-builder-actions-lightbox"})},_initSortables:function(){var t={appendTo:"body",cursor:"move",cursorAt:{left:25,top:20},distance:1,helper:FLBuilder._blockDragHelper,start:FLBuilder._blockDragStart,sort:FLBuilder._blockDragSort,placeholder:"fl-builder-drop-zone",tolerance:"intersect"},l="",i="";l="row"==FLBuilderConfig.userTemplateType?FLBuilder._contentClass+" .fl-row-content":FLBuilder._contentClass+", "+FLBuilder._contentClass+" .fl-row:not(.fl-node-global) .fl-row-content",i="row"==FLBuilderConfig.userTemplateType?FLBuilder._contentClass+" .fl-row-content, "+FLBuilder._contentClass+" .fl-col-content":FLBuilder._contentClass+", "+FLBuilder._contentClass+" .fl-row:not(.fl-node-global) .fl-row-content, "+FLBuilder._contentClass+" .fl-col:not(.fl-node-global) .fl-col-content",e(".fl-builder-rows").sortable(e.extend({},t,{connectWith:l,items:".fl-builder-block-row",stop:FLBuilder._rowDragStop})),e(".fl-builder-row-templates").sortable(e.extend({},t,{connectWith:FLBuilder._contentClass,items:".fl-builder-block-row-template",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-saved-rows").sortable(e.extend({},t,{cancel:".fl-builder-node-template-actions, .fl-builder-node-template-edit, .fl-builder-node-template-delete",connectWith:FLBuilder._contentClass,items:".fl-builder-block-saved-row",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-modules, .fl-builder-widgets").sortable(e.extend({},t,{connectWith:i,items:".fl-builder-block-module",stop:FLBuilder._moduleDragStop})),e(".fl-builder-module-templates").sortable(e.extend({},t,{connectWith:i,items:".fl-builder-block-module-template",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-saved-modules").sortable(e.extend({},t,{cancel:".fl-builder-node-template-actions, .fl-builder-node-template-edit, .fl-builder-node-template-delete",connectWith:i,items:".fl-builder-block-saved-module",stop:FLBuilder._nodeTemplateDragStop})),e(FLBuilder._contentClass).sortable(e.extend({},t,{handle:".fl-row-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._rowDragHelper,items:".fl-row",stop:FLBuilder._rowDragStop})),e(FLBuilder._contentClass+" .fl-row-content").sortable(e.extend({},t,{handle:".fl-row-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._rowDragHelper,items:".fl-col-group",stop:FLBuilder._rowDragStop})),e(FLBuilder._contentClass+" .fl-col-content").sortable(e.extend({},t,{connectWith:i,handle:".fl-module-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._moduleDragHelper,items:".fl-module",stop:FLBuilder._moduleDragStop}))},_bindEvents:function(){e("a").on("click",FLBuilder._preventDefault),e(".fl-page-nav .nav a").on("click",FLBuilder._headerLinkClicked),e(document).on("heartbeat-tick",FLBuilder._initPostLock),e(window).on("beforeunload",FLBuilder._warnBeforeUnload),e("body").delegate(".fl-builder-has-submenu","click",FLBuilder._submenuParentClicked),e("body").delegate(".fl-builder-has-submenu a","click",FLBuilder._submenuChildClicked),e("body").delegate(".fl-builder-submenu","mouseenter",FLBuilder._submenuMouseenter),e("body").delegate(".fl-builder-submenu","mouseleave",FLBuilder._submenuMouseleave),e(".fl-builder-tools-button").on("click",FLBuilder._toolsClicked),e(".fl-builder-done-button").on("click",FLBuilder._doneClicked),e(".fl-builder-add-content-button").on("click",FLBuilder._showPanel),e(".fl-builder-templates-button").on("click",FLBuilder._changeTemplateClicked),e(".fl-builder-buy-button").on("click",FLBuilder._upgradeClicked),e(".fl-builder-upgrade-button").on("click",FLBuilder._upgradeClicked),e(".fl-builder-help-button").on("click",FLBuilder._helpButtonClicked),e(".fl-builder-panel-actions .fl-builder-panel-close").on("click",FLBuilder._closePanel),e(".fl-builder-blocks-section-title").on("click",FLBuilder._blockSectionTitleClicked),e("body").delegate(".fl-builder-node-template-actions","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-edit","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-delete","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-edit","click",FLBuilder._editNodeTemplateClicked),e("body").delegate(".fl-builder-node-template-delete","click",FLBuilder._deleteNodeTemplateClicked),e("body").delegate(".fl-builder-block","mousedown",FLBuilder._blockDragInit),e("body").on("mouseup",FLBuilder._blockDragCancel),e("body").delegate(".fl-builder-actions .fl-builder-cancel-button","click",FLBuilder._cancelButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-publish-button","click",FLBuilder._publishButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-draft-button","click",FLBuilder._draftButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-discard-button","click",FLBuilder._discardButtonClicked),e("body").delegate(".fl-builder-save-user-template-button","click",FLBuilder._saveUserTemplateClicked),e("body").delegate(".fl-builder-duplicate-layout-button","click",FLBuilder._duplicateLayoutClicked),e("body").delegate(".fl-builder-layout-settings-button","click",FLBuilder._layoutSettingsClicked),e("body").delegate(".fl-builder-layout-settings .fl-builder-settings-save","click",FLBuilder._saveLayoutSettingsClicked),e("body").delegate(".fl-builder-layout-settings .fl-builder-settings-cancel","click",FLBuilder._cancelLayoutSettingsClicked),e("body").delegate(".fl-builder-global-settings-button","click",FLBuilder._globalSettingsClicked),e("body").delegate(".fl-builder-global-settings .fl-builder-settings-save","click",FLBuilder._saveGlobalSettingsClicked),e("body").delegate(".fl-builder-global-settings .fl-builder-settings-cancel","click",FLBuilder._cancelLayoutSettingsClicked),e("body").delegate(".fl-template-category-select","change",FLBuilder._templateCategoryChanged),e("body").delegate(".fl-template-preview","click",FLBuilder._templateClicked),e("body").delegate(".fl-user-template","click",FLBuilder._userTemplateClicked),e("body").delegate(".fl-user-template-edit","click",FLBuilder._editUserTemplateClicked),e("body").delegate(".fl-user-template-delete","click",FLBuilder._deleteUserTemplateClicked),e("body").delegate(".fl-builder-template-replace-button","click",FLBuilder._templateReplaceClicked),e("body").delegate(".fl-builder-template-append-button","click",FLBuilder._templateAppendClicked),e("body").delegate(".fl-builder-template-actions .fl-builder-cancel-button","click",FLBuilder._templateCancelClicked),e("body").delegate(".fl-builder-user-template-settings .fl-builder-settings-save","click",FLBuilder._saveUserTemplateSettings),e("body").delegate(".fl-builder-help-tour-button","click",FLBuilder._startHelpTour),e("body").delegate(".fl-builder-help-video-button","click",FLBuilder._watchVideoClicked),e("body").delegate(".fl-builder-knowledge-base-button","click",FLBuilder._viewKnowledgeBaseClicked),e("body").delegate(".fl-builder-forums-button","click",FLBuilder._visitForumsClicked),e("body").delegate(".fl-builder-no-tour-button","click",FLBuilder._noTourButtonClicked),e("body").delegate(".fl-builder-yes-tour-button","click",FLBuilder._yesTourButtonClicked),e("body").delegate(".fl-builder-alert-close","click",FLBuilder._alertClose),e("body").delegate(".fl-row-overlay .fl-block-remove","click",FLBuilder._deleteRowClicked),e("body").delegate(".fl-row-overlay .fl-block-copy","click",FLBuilder._rowCopyClicked),e("body").delegate(".fl-row-overlay .fl-block-move","mousedown",FLBuilder._blockDragInit),e("body").delegate(".fl-row-overlay .fl-block-settings","click",FLBuilder._rowSettingsClicked),e("body").delegate(".fl-row-overlay","click",FLBuilder._rowSettingsClicked),e("body").delegate(".fl-builder-row-settings .fl-builder-settings-save","click",FLBuilder._saveSettings),e("body").delegate(".fl-col-overlay","click",FLBuilder._colSettingsClicked),e("body").delegate(".fl-builder-col-settings .fl-builder-settings-save","click",FLBuilder._saveSettings),e("body").delegate(".fl-col-overlay .fl-block-remove","click",FLBuilder._deleteColClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-edit","click",FLBuilder._colSettingsClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-delete","click",FLBuilder._deleteColClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-insert-before","click",FLBuilder._insertColBeforeClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-insert-after","click",FLBuilder._insertColAfterClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-reset","click",FLBuilder._resetColumnWidths),e("body").delegate(".fl-module-overlay .fl-block-remove","click",FLBuilder._deleteModuleClicked),e("body").delegate(".fl-module-overlay .fl-block-copy","click",FLBuilder._moduleCopyClicked),e("body").delegate(".fl-module-overlay .fl-block-move","mousedown",FLBuilder._blockDragInit),e("body").delegate(".fl-module-overlay .fl-block-settings","click",FLBuilder._moduleSettingsClicked),e("body").delegate(".fl-module-overlay","click",FLBuilder._moduleSettingsClicked),e("body").delegate(".fl-builder-module-settings .fl-builder-settings-save","click",FLBuilder._saveModuleClicked),e("body").delegate(".fl-builder-settings-save-as","click",FLBuilder._showNodeTemplateSettings),e("body").delegate(".fl-builder-node-template-settings .fl-builder-settings-save","click",FLBuilder._saveNodeTemplate),e("body").delegate(".fl-builder-settings-tabs a","click",FLBuilder._settingsTabClicked),e("body").delegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked),e("body").delegate(".fl-help-tooltip-icon","mouseover",FLBuilder._showHelpTooltip),e("body").delegate(".fl-help-tooltip-icon","mouseout",FLBuilder._hideHelpTooltip),e("body").delegate(".fl-builder-field-add","click",FLBuilder._addFieldClicked),e("body").delegate(".fl-builder-field-copy","click",FLBuilder._copyFieldClicked),e("body").delegate(".fl-builder-field-delete","click",FLBuilder._deleteFieldClicked),e("body").delegate(".fl-builder-settings-fields select","change",FLBuilder._settingsSelectChanged),e("body").delegate(".fl-photo-field .fl-photo-select","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-edit","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-replace","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-remove","click",FLBuilder._singlePhotoRemoved),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-select","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-edit","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-add","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-video-field .fl-video-select","click",FLBuilder._selectSingleVideo),e("body").delegate(".fl-video-field .fl-video-replace","click",FLBuilder._selectSingleVideo),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-select","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-edit","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-add","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-icon-field .fl-icon-select","click",FLBuilder._selectIcon),e("body").delegate(".fl-icon-field .fl-icon-replace","click",FLBuilder._selectIcon),e("body").delegate(".fl-icon-field .fl-icon-remove","click",FLBuilder._removeIcon),e("body").delegate(".fl-form-field .fl-form-field-edit","click",FLBuilder._formFieldClicked),e("body").delegate(".fl-form-field-settings .fl-builder-settings-save","click",FLBuilder._saveFormFieldClicked),e("body").delegate(".fl-layout-field-option","click",FLBuilder._layoutFieldClicked),e("body").delegate(".fl-link-field-select","click",FLBuilder._linkFieldSelectClicked),e("body").delegate(".fl-link-field-search-cancel","click",FLBuilder._linkFieldSelectCancelClicked),e("body").delegate(".fl-loop-builder select[name=post_type]","change",FLBuilder._loopBuilderPostTypeChange),e("body").delegate(".fl-select-add-value","change",FLBuilder._textFieldAddValueSelectChange)},_bindOverlayEvents:function(){var t=e(FLBuilder._contentClass);t.delegate(".fl-row","mouseenter",FLBuilder._rowMouseenter),t.delegate(".fl-row","mouseleave",FLBuilder._rowMouseleave),t.delegate(".fl-row-overlay","mouseleave",FLBuilder._rowMouseleave),t.delegate(".fl-col","mouseenter",FLBuilder._colMouseenter),t.delegate(".fl-col","mouseleave",FLBuilder._colMouseleave),t.delegate(".fl-module","mouseenter",FLBuilder._moduleMouseenter),t.delegate(".fl-module","mouseleave",FLBuilder._moduleMouseleave)},_destroyOverlayEvents:function(){var t=e(FLBuilder._contentClass);t.undelegate(".fl-row","mouseenter",FLBuilder._rowMouseenter),t.undelegate(".fl-row","mouseleave",FLBuilder._rowMouseleave),t.undelegate(".fl-row-overlay","mouseleave",FLBuilder._rowMouseleave),t.undelegate(".fl-col","mouseenter",FLBuilder._colMouseenter),t.undelegate(".fl-col","mouseleave",FLBuilder._colMouseleave),t.undelegate(".fl-module","mouseenter",FLBuilder._moduleMouseenter),t.undelegate(".fl-module","mouseleave",FLBuilder._moduleMouseleave)},_preventDefault:function(e){e.preventDefault()},_stopPropagation:function(e){e.stopPropagation()},_headerLinkClicked:function(t){var l=e(this),i=l.attr("href");t.preventDefault(),FLBuilderConfig.isUserTemplate||(FLBuilder._exitUrl=i.indexOf("?")>-1?i:i+"?fl_builder",FLBuilder._doneClicked())},_warnBeforeUnload:function(){var t=e(".fl-builder-row-settings").length>0,l=e(".fl-builder-col-settings").length>0,i=e(".fl-builder-module-settings").length>0;return t||l||i?FLBuilderStrings.unloadWarning:void 0},_initTipTips:function(){e(".fl-tip").tipTip()},_hideTipTips:function(){e("#tiptip_holder").stop().remove()},_submenuParentClicked:function(t){var l=e(this),i=l.find(".fl-builder-submenu");l.hasClass("fl-builder-submenu-open")?(l.removeClass("fl-builder-submenu-open"),l.removeClass("fl-builder-submenu-right")):(l.offset().left+i.width()>e(window).width()&&l.addClass("fl-builder-submenu-right"),l.addClass("fl-builder-submenu-open")),FLBuilder._hideTipTips(),t.preventDefault(),t.stopPropagation()},_submenuChildClicked:function(t){e(this).closest(".fl-builder-submenu-open").removeClass("fl-builder-submenu-open")},_submenuMouseenter:function(t){var l=e(this),i=l.data("timeout");"undefined"!=typeof i&&clearTimeout(i)},_submenuMouseleave:function(t){var l=e(this),i=setTimeout(function(){l.closest(".fl-builder-submenu-open").removeClass("fl-builder-submenu-open")},500);l.data("timeout",i)},_toolsClicked:function(){var e={},t=FLBuilderConfig.lite,l=FLBuilderConfig.enabledTemplates;t||FLBuilderConfig.isUserTemplate||"enabled"!=l&&"user"!=l||(e["save-user-template"]=FLBuilderStrings.saveTemplate,"undefined"!=typeof FLBuilderTemplateSettings&&(e["save-template"]=FLBuilderStrings.saveCoreTemplate)),FLBuilderConfig.isUserTemplate?"undefined"!=typeof window.opener&&window.opener||(e["duplicate-layout"]=FLBuilderStrings.duplicateLayout):e["duplicate-layout"]=FLBuilderStrings.duplicateLayout,e["layout-settings"]=FLBuilderStrings.editLayoutSettings,e["global-settings"]=FLBuilderStrings.editGlobalSettings,FLBuilder._showActionsLightbox({className:"fl-builder-tools-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:e})},_doneClicked:function(){FLBuilder._showActionsLightbox({className:"fl-builder-save-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:{publish:FLBuilderStrings.publish,draft:FLBuilderStrings.draft,discard:FLBuilderStrings.discard}})},_upgradeClicked:function(){window.open(FLBuilderConfig.upgradeUrl)},_helpButtonClicked:function(){var e={};FLBuilderConfig.help.tour&&(e["help-tour"]=FLBuilderStrings.takeHelpTour),FLBuilderConfig.help.video&&(e["help-video"]=FLBuilderStrings.watchHelpVideo),FLBuilderConfig.help.knowledge_base&&(e["knowledge-base"]=FLBuilderStrings.viewKnowledgeBase),FLBuilderConfig.help.forums&&(e.forums=FLBuilderStrings.visitForums),FLBuilder._showActionsLightbox({className:"fl-builder-help-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:e})},_closePanel:function(){e(".fl-builder-panel").stop(!0,!0).animate({right:"-350px"},500,function(){e(this).hide()}),e(".fl-builder-bar .fl-builder-add-content-button").stop(!0,!0).fadeIn()},_showPanel:function(){e(".fl-builder-bar .fl-builder-add-content-button").stop(!0,!0).fadeOut(),e(".fl-builder-panel").stop(!0,!0).show().animate({right:"0"},500)},_blockSectionTitleClicked:function(){var t=e(this),l=t.parent();l.hasClass("fl-active")?l.removeClass("fl-active"):(e(".fl-builder-blocks-section").removeClass("fl-active"),l.addClass("fl-active")),FLBuilder._initScrollbars()},_publishButtonClicked:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_layout"},FLBuilder._exit),FLBuilder._actionsLightbox.close()},_draftButtonClicked:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_draft"},FLBuilder._exit),FLBuilder._actionsLightbox.close()},_discardButtonClicked:function(){var e=confirm(FLBuilderStrings.discardMessage);e&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"clear_draft_layout"},FLBuilder._exit),FLBuilder._actionsLightbox.close())},_cancelButtonClicked:function(){FLBuilder._exitUrl=null,FLBuilder._actionsLightbox.close()},_exit:function(){var e=window.location.href;FLBuilderConfig.isUserTemplate&&"undefined"!=typeof window.opener&&window.opener?("undefined"!=typeof window.opener.FLBuilder&&window.opener.FLBuilder._updateLayout(),
3
  window.close()):(e=FLBuilder._exitUrl?FLBuilder._exitUrl:e.replace("?fl_builder","").replace("&fl_builder",""),window.location.href=e)},_duplicateLayoutClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"duplicate_post"},FLBuilder._duplicateLayoutComplete)},_duplicateLayoutComplete:function(t){var l=e("#fl-admin-url").val();window.location.href=l+"post.php?post="+t+"&action=edit"},_layoutSettingsClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(),FLBuilder._closePanel(),FLBuilder.ajax({action:"render_layout_settings"},FLBuilder._layoutSettingsLoaded)},_layoutSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._layoutSettingsInitCSS()},_layoutSettingsInitCSS:function(){var t=e(".fl-builder-settings #fl-field-css textarea:not(.ace_text-input)");t.on("change",FLBuilder._layoutSettingsCSSChanged),FLBuilder._layoutSettingsCSSCache=t.val()},_layoutSettingsCSSChanged:function(){FLBuilder._layoutSettingsCSSTimeout&&clearTimeout(FLBuilder._layoutSettingsCSSTimeout),FLBuilder._layoutSettingsCSSTimeout=setTimeout(e.proxy(FLBuilder._layoutSettingsCSSDoChange,this),600)},_layoutSettingsCSSDoChange:function(){var t=e(".fl-builder-settings"),l=e(this),i=l.parents("#fl-field-css");i.find(".ace_error").length>0||(t.hasClass("fl-builder-layout-settings")?e("#fl-builder-layout-css").html(l.val()):e("#fl-builder-global-css").html(l.val()),FLBuilder._layoutSettingsCSSTimeout=null)},_saveLayoutSettingsClicked:function(){for(var t=e(this).closest(".fl-builder-settings"),l=t.serializeArray(),i={},o=0;o<l.length;o++)i[l[o].name]=l[o].value;FLBuilder.showAjaxLoader(),FLBuilder._lightbox.close(),FLBuilder._layoutSettingsCSSCache=null,FLBuilder.ajax({action:"save_layout_settings",settings:i},FLBuilder._updateLayout)},_cancelLayoutSettingsClicked:function(){var t=e(".fl-builder-settings");t.hasClass("fl-builder-layout-settings")?e("#fl-builder-layout-css").html(FLBuilder._layoutSettingsCSSCache):e("#fl-builder-global-css").html(FLBuilder._layoutSettingsCSSCache),FLBuilder._layoutSettingsCSSCache=null},_globalSettingsClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_global_settings"},FLBuilder._globalSettingsLoaded)},_globalSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._layoutSettingsInitCSS(),FLBuilder._initSettingsValidation({module_margins:{required:!0,number:!0},row_margins:{required:!0,number:!0},row_padding:{required:!0,number:!0},row_width:{required:!0,number:!0},responsive_breakpoint:{required:!0,number:!0}})},_saveGlobalSettingsClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=t.validate().form(),i=t.serializeArray(),o={},s=0;if(l){for(;s<i.length;s++)o[i[s].name]=i[s].value;FLBuilder.showAjaxLoader(),FLBuilder._layoutSettingsCSSCache=null,FLBuilder.ajax({action:"save_global_settings",settings:o},FLBuilder._updateLayout),FLBuilder._lightbox.close()}},_initTemplateSelector:function(){var t=e(FLBuilder._contentClass).find(".fl-row");0===t.length&&FLBuilder._showTemplateSelector()},_changeTemplateClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showTemplateSelector()},_showTemplateSelector:function(){FLBuilderConfig.simpleUi||FLBuilderConfig.isUserTemplate||"disabled"!=FLBuilderConfig.enabledTemplates&&(FLBuilderConfig.lite||(FLBuilder._showLightbox(!1),FLBuilder.ajax({action:"render_template_selector"},FLBuilder._templateSelectorLoaded)))},_templateSelectorLoaded:function(t){var l=JSON.parse(t),i=null,o=null;FLBuilder._setLightboxContent(l.html),i=e(".fl-template-category-select"),o=e(".fl-user-template"),("user"==FLBuilderConfig.enabledTemplates||o.length>0)&&(i.val("fl-builder-settings-tab-yours"),e(".fl-builder-settings-tab").removeClass("fl-active"),e("#fl-builder-settings-tab-yours").addClass("fl-active")),0===o.length&&e(".fl-user-templates-message").show(),e("body").trigger("fl-builder.template-selector-loaded")},_templateCategoryChanged:function(){e(".fl-template-selector .fl-builder-settings-tab").hide(),e("#"+e(this).val()).show()},_templateClicked:function(){var t=e(this),l=t.closest(".fl-template-preview").attr("data-id");e(FLBuilder._contentClass).children(".fl-row").length>0?0===l?confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._lightbox._node.hide(),FLBuilder._applyTemplate(0,!1,"core")):(FLBuilder._selectedTemplateId=l,FLBuilder._selectedTemplateType="core",FLBuilder._showTemplateActions(),FLBuilder._lightbox._node.hide()):FLBuilder._applyTemplate(l,!1,"core")},_showTemplateActions:function(){FLBuilder._showActionsLightbox({className:"fl-builder-template-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:{"template-replace":FLBuilderStrings.templateReplace,"template-append":FLBuilderStrings.templateAppend}})},_templateReplaceClicked:function(){confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._actionsLightbox.close(),FLBuilder._applyTemplate(FLBuilder._selectedTemplateId,!1,FLBuilder._selectedTemplateType))},_templateAppendClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._applyTemplate(FLBuilder._selectedTemplateId,!0,FLBuilder._selectedTemplateType)},_templateCancelClicked:function(){FLBuilder._lightbox._node.show()},_applyTemplate:function(e,t,l){t="undefined"!=typeof t&&t?"1":"0",l="undefined"==typeof l?"core":l,FLBuilder._lightbox.close(),FLBuilder.showAjaxLoader(),"core"==l?FLBuilder.ajax({action:"apply_template",template_id:e,append:t},FLBuilder._updateLayout):FLBuilder.ajax({action:"apply_user_template",template_id:e,append:t},FLBuilder._updateLayout)},_saveUserTemplateClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(!1),FLBuilder.ajax({action:"render_user_template_settings"},FLBuilder._userTemplateSettingsLoaded)},_userTemplateSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._initSettingsValidation({name:{required:!0}})},_saveUserTemplateSettings:function(){var t=e(this).closest(".fl-builder-settings"),l=t.validate().form(),i=FLBuilder._getSettings(t);l&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_user_template",settings:i},FLBuilder._saveUserTemplateSettingsComplete),FLBuilder._lightbox.close())},_saveUserTemplateSettingsComplete:function(){FLBuilder.alert(FLBuilderStrings.templateSaved)},_userTemplateClicked:function(){var t=e(this).attr("data-id");e(FLBuilder._contentClass).children(".fl-row").length>0?"blank"==t?confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._lightbox._node.hide(),FLBuilder._applyTemplate("blank",!1,"user")):(FLBuilder._selectedTemplateId=t,FLBuilder._selectedTemplateType="user",FLBuilder._showTemplateActions(),FLBuilder._lightbox._node.hide()):FLBuilder._applyTemplate(t,!1,"user")},_editUserTemplateClicked:function(t){t.preventDefault(),t.stopPropagation(),window.open(e(this).attr("href"))},_deleteUserTemplateClicked:function(t){var l=e(this).closest(".fl-user-template"),i=l.attr("data-id"),o=e(".fl-user-template[data-id="+i+"]"),s=null;confirm(FLBuilderStrings.deleteTemplate)&&(FLBuilder.ajax({action:"delete_user_template",template_id:i}),o.fadeOut(function(){l=e(this),s=l.closest(".fl-user-template-category"),l.remove(),0===s.find(".fl-user-template").length&&s.remove(),1===e(".fl-user-template").length&&(e(".fl-user-templates").hide(),e(".fl-user-templates-message").show())})),t.stopPropagation()},_initCoreTemplateSettings:function(){"undefined"!=typeof FLBuilderTemplateSettings&&FLBuilderTemplateSettings.init()},_watchVideoClicked:function(){var e=wp.template("fl-video-lightbox");FLBuilder._actionsLightbox.close(),FLBuilder._lightbox.open(e({video:FLBuilderConfig.help.video_embed}))},_viewKnowledgeBaseClicked:function(){FLBuilder._actionsLightbox.close(),window.open(FLBuilderConfig.help.knowledge_base_url)},_visitForumsClicked:function(){FLBuilder._actionsLightbox.close(),window.open(FLBuilderConfig.help.forums_url)},_showTourOrTemplates:function(){FLBuilderConfig.simpleUi||FLBuilderConfig.isUserTemplate||(FLBuilderConfig.help.tour&&FLBuilderConfig.newUser?FLBuilder._showTourLightbox():FLBuilder._initTemplateSelector())},_showTourLightbox:function(){var e=wp.template("fl-tour-lightbox");FLBuilder._actionsLightbox.open(e())},_noTourButtonClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._initTemplateSelector()},_yesTourButtonClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilderTour.start()},_startHelpTour:function(){FLBuilder._actionsLightbox.close(),FLBuilderTour.start()},_setupEmptyLayout:function(){var t=e(FLBuilder._contentClass);FLBuilderConfig.isUserTemplate&&"module"==FLBuilderConfig.userTemplateType||(t.removeClass("fl-builder-empty"),t.find(".fl-builder-empty-message").remove(),0===t.children(".fl-row").length&&(t.addClass("fl-builder-empty"),t.append('<span class="fl-builder-empty-message">'+FLBuilderStrings.emptyMessage+"</span>"),FLBuilder._initSortables()))},_updateLayout:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"render_layout"},FLBuilder._renderLayout)},_renderLayout:function(e,t){FLBuilder._layout=new FLBuilderAJAXLayout(e,t)},_renderLayoutComplete:function(){FLBuilder._layout&&(FLBuilder._layout._complete(),FLBuilder._layout=null)},_resizeLayout:function(){e(window).trigger("resize"),"undefined"!=typeof YUI&&YUI().use("node-event-simulate",function(e){e.one(window).simulate("resize")})},_initMediaElements:function(){var t={};"undefined"!=typeof e.fn.mediaelementplayer&&("undefined"!=typeof _wpmejsSettings&&(t.pluginPath=_wpmejsSettings.pluginPath),e(".wp-audio-shortcode, .wp-video-shortcode").not(".mejs-container").mediaelementplayer(t))},_blockDragHelper:function(e,t){var l=t.clone();return t.clone().insertAfter(t),l.addClass("fl-builder-block-drag-helper"),l},_blockDragInit:function(t){var l=e(t.target),i=null,o=0,s="row"==FLBuilderConfig.userTemplateType?"":":not(.fl-node-global)";FLBuilder._dragEnabled=!0,l.closest(".fl-module").length>0?i=l.closest(".fl-module"):l.closest(".fl-row").length>0?i=l.closest(".fl-row"):l.hasClass("fl-builder-block-row")||l.hasClass("fl-builder-block-saved-row")?e(".fl-row").each(function(){null===i&&e(this).offset().top-e(window).scrollTop()>0&&(i=e(this))}):(l.hasClass("fl-builder-block-module")||l.hasClass("fl-builder-block-saved-module"))&&e(".fl-module").each(function(){null===i&&e(this).offset().top-e(window).scrollTop()>0&&(i=e(this))}),null!==i?o=i.offset().top-e(window).scrollTop():i=l,e(".fl-builder-empty-message").hide(),e(FLBuilder._contentClass+" .fl-row"+s).addClass("fl-row-highlight"),(i.hasClass("fl-module")||i.hasClass("fl-builder-block-module")||i.hasClass("fl-builder-block-saved-module"))&&e(FLBuilder._contentClass+" .fl-col"+s).addClass("fl-col-highlight"),FLBuilder._disableGlobalRows(),FLBuilder._closePanel(),FLBuilder._destroyOverlayEvents(),FLBuilder._removeAllOverlays(),o>0&&scrollTo(0,i.offset().top-o)},_blockDragStart:function(t,l){FLBuilder._dragging=!0,e(FLBuilder._contentClass).sortable("refreshPositions"),e(FLBuilder._contentClass+" .fl-row-content").sortable("refreshPositions"),e(FLBuilder._contentClass+" .fl-col-content").sortable("refreshPositions")},_blockDragSort:function(e,t){if("undefined"!=typeof t.placeholder){var l=t.placeholder.parent(),i=FLBuilderStrings.insert;l.hasClass("fl-col-content")?i=t.item.hasClass("fl-builder-block-module")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-builder-block-saved-module")||t.item.hasClass("fl-builder-block-module-template")?t.item.find(".fl-builder-block-title").text():t.item.attr("data-name"):l.hasClass("fl-row-content")?i=t.item.hasClass("fl-builder-block-row")?t.item.find(".fl-builder-block-title").text():FLBuilderStrings.newColumn:l.hasClass("fl-builder-content")&&(i=t.item.hasClass("fl-builder-block-row")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-builder-block-saved-row")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-row")?FLBuilderStrings.row:FLBuilderStrings.newRow),t.placeholder.html(i),t.item.hasClass("fl-node-global")||t.item.hasClass("fl-builder-block-global")?t.placeholder.addClass("fl-builder-drop-zone-global"):t.placeholder.removeClass("fl-builder-drop-zone-global")}},_blockDragStop:function(t,l){var i=l.item.parent(),o=i.offset().top-e(window).scrollTop();i.hasClass("fl-builder-blocks-section-content")&&FLBuilder._showPanel(),FLBuilder._dragEnabled=!1,FLBuilder._dragging=!1,FLBuilder._bindOverlayEvents(),FLBuilder._highlightEmptyCols(),FLBuilder._enableGlobalRows(),e(".fl-builder-empty-message").show(),scrollTo(0,i.offset().top-o)},_blockDragCancel:function(){FLBuilder._dragEnabled&&!FLBuilder._dragging&&(FLBuilder._dragEnabled=!1,FLBuilder._dragging=!1,FLBuilder._bindOverlayEvents(),FLBuilder._highlightEmptyCols(),FLBuilder._enableGlobalRows(),e(".fl-builder-empty-message").show())},_removeAllOverlays:function(){FLBuilder._removeRowOverlays(),FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),FLBuilder._hideTipTips()},_appendOverlay:function(e,t){var l=0,i=null,o=e.hasClass("fl-row"),s=o?e.find("> .fl-row-content-wrap"):e.find("> .fl-node-content"),r={top:parseInt(s.css("margin-top"),10),bottom:parseInt(s.css("margin-bottom"),10)};e.append(t),e.addClass("fl-block-overlay-active"),FLBuilder._initTipTips(),i=e.find("> .fl-block-overlay"),r.top<0&&(l=parseInt(i.css("top"),10),l=isNaN(l)?0:l,i.css("top",r.top+l+"px")),r.bottom<0&&(l=parseInt(i.css("bottom"),10),l=isNaN(l)?0:l,i.css("bottom",r.bottom+l+"px")),o&&i.offset().top<43&&i.addClass("fl-row-overlay-header-bottom")},_highlightEmptyCols:function(){var t="row"==FLBuilderConfig.userTemplateType?"":":not(.fl-node-global)",l=e(FLBuilder._contentClass+" .fl-row"+t),i=e(FLBuilder._contentClass+" .fl-col"+t);l.removeClass("fl-row-highlight"),i.removeClass("fl-col-highlight"),i.each(function(){var t=e(this);0===t.find(".fl-module").length&&t.addClass("fl-col-highlight")})},_removeRowOverlays:function(){e(".fl-row").removeClass("fl-block-overlay-active"),e(".fl-row-overlay").remove(),e(".fl-module").removeClass("fl-module-adjust-height")},_disableGlobalRows:function(){if("row"!=FLBuilderConfig.userTemplateType){var t=e(".fl-row.fl-node-global");t.addClass("fl-node-disabled"),t.append('<div class="fl-node-disabled-overlay"></div>')}},_enableGlobalRows:function(){"row"!=FLBuilderConfig.userTemplateType&&(e(".fl-node-disabled").removeClass("fl-node-disabled"),e(".fl-node-disabled-overlay").remove())},_rowMouseenter:function(){var t=e(this),l=wp.template("fl-row-overlay");t.hasClass("fl-block-overlay-active")||(FLBuilder._appendOverlay(t,l({global:t.hasClass("fl-node-global"),node:t.attr("data-node")})),t.find(".fl-module").each(function(){e(this).outerHeight(!0)<20&&e(this).addClass("fl-module-adjust-height")}))},_rowMouseleave:function(t){var l=e(t.toElement)||e(t.relatedTarget),i=l.hasClass("fl-row-overlay"),o=l.closest(".fl-row-overlay").length>0,s=l.is("#tiptip_holder"),r=l.closest("#tiptip_holder").length>0;i||o||s||r||FLBuilder._removeRowOverlays()},_rowDragHelper:function(){return e('<div class="fl-builder-block-drag-helper" style="width: 190px; height: 45px;">'+FLBuilderStrings.row+"</div>")},_rowDragStop:function(t,l){var i=l.item,o=i.parent();return FLBuilder._blockDragStop(t,l),o.hasClass("fl-builder-rows")?void i.remove():void(i.hasClass("fl-builder-block")?(o.hasClass("fl-row-content")?FLBuilder._addColGroup(i.closest(".fl-row").attr("data-node"),i.attr("data-cols"),o.children(".fl-col-group, .fl-builder-block").index(i)):FLBuilder._addRow(i.attr("data-cols"),o.children(".fl-row, .fl-builder-block").index(i)),i.remove(),FLBuilder._showPanel(),e(".fl-builder-modules").siblings(".fl-builder-blocks-section-title").eq(0).trigger("click")):FLBuilder._reorderRow(i.attr("data-node"),o.children(".fl-row").index(i)))},_reorderRow:function(e,t){FLBuilder.ajax({action:"reorder_node",node_id:e,position:t,silent:!0})},_addRow:function(e,t){FLBuilder.showAjaxLoader(),FLBuilder._newRowPosition=t,FLBuilder.ajax({action:"render_new_row",cols:e,position:t},FLBuilder._addRowComplete)},_addRowComplete:function(t){var l=JSON.parse(t),i=e(FLBuilder._contentClass),o=e(l.html).data("node");l.nodeParent=i,l.nodePosition=FLBuilder._newRowPosition,FLBuilder._renderLayout(l,function(){null!==FLBuilder._addModuleAfterRowRender&&(FLBuilder._addModuleAfterRowRender.hasClass("fl-module")&&(e(".fl-node-"+o+" .fl-col-content").append(FLBuilder._addModuleAfterRowRender),FLBuilder._reorderModule(FLBuilder._addModuleAfterRowRender)),FLBuilder._addModuleAfterRowRender=null)})},_deleteRowClicked:function(t){var l=e(this).closest(".fl-row-overlay").attr("data-node"),i=e(".fl-row[data-node="+l+"]"),o=null;i.find(".fl-module").length?(o=confirm(FLBuilderStrings.deleteRowMessage),o&&FLBuilder._deleteRow(i)):FLBuilder._deleteRow(i),FLBuilder._removeAllOverlays(),t.stopPropagation()},_deleteRow:function(e){FLBuilder.ajax({action:"delete_node",node_id:e.attr("data-node"),silent:!0}),e.empty(),e.remove(),FLBuilder._setupEmptyLayout(),FLBuilder._removeRowOverlays()},_rowCopyClicked:function(t){var l=e(this).closest(".fl-row"),i=l.attr("data-node");FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder._newRowPosition=l.index(".fl-row")+1,FLBuilder.ajax({action:"copy_row",node_id:i},FLBuilder._rowCopyComplete),t.stopPropagation()},_rowCopyComplete:function(t){var l=JSON.parse(t);l.nodeParent=e(FLBuilder._contentClass),l.nodePosition=FLBuilder._newRowPosition,FLBuilder._renderLayout(l)},_rowSettingsClicked:function(t){var l=e(this),i=l.closest(".fl-row-overlay").attr("data-node"),o=l.closest(".fl-block-overlay-global").length>0;o&&"row"!=FLBuilderConfig.userTemplateType?FLBuilderConfig.userCanEditGlobalTemplates&&window.open(e('.fl-row[data-node="'+i+'"]').attr("data-template-url")):l.hasClass("fl-block-settings")&&(FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_row_settings",node_id:i},FLBuilder._rowSettingsLoaded)),t.stopPropagation()},_rowSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.settings),FLBuilder.preview=new FLBuilderPreview({type:"row",state:t.state})},_colMouseenter:function(){var t=e(this),l=t.hasClass("fl-node-global"),i=t.parents(".fl-node-global").length>0,o=t.parents(".fl-col-group").find(".fl-col").length,s=0===t.index(),r=o===t.index()+1,n=wp.template("fl-col-overlay");FLBuilderConfig.simpleUi||l&&i&&"row"!=FLBuilderConfig.userTemplateType||t.find(".fl-module").length>0||(t.hasClass("fl-block-overlay-active")||(FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),FLBuilder._appendOverlay(t,n({global:l,numCols:o,first:s,last:r})),FLBuilder._initColDragResizing()),e("body").addClass("fl-block-overlay-muted"))},_colMouseleave:function(t){var l=e(this),i=e(t.toElement)||e(t.relatedTarget),o=l.find(".fl-module").length>0,s=i.is("#tiptip_holder"),r=i.closest("#tiptip_holder").length>0;o||s||r||FLBuilder._removeColOverlays()},_removeColOverlays:function(){var t=e(".fl-col");t.removeClass("fl-block-overlay-active"),t.find(".fl-col-overlay").remove(),e("body").removeClass("fl-block-overlay-muted")},_colSettingsClicked:function(t){var l=e(this).closest(".fl-col").attr("data-node");FLBuilder._colResizing||(FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_column_settings",node_id:l},FLBuilder._colSettingsLoaded),t.stopPropagation())},_colSettingsLoaded:function(t){var l=JSON.parse(t),i=null,o=null,s=null;FLBuilder._setSettingsFormContent(l.settings),i=e(".fl-builder-col-settings"),o=i.data("node"),s=e('.fl-col[data-node="'+o+'"]'),0===s.siblings(".fl-col").length&&e(i).find("#fl-builder-settings-section-general").css("display","none"),FLBuilder.preview=new FLBuilderPreview({type:"col",state:l.state})},_deleteColClicked:function(t){var l=e(this),i=l.closest(".fl-col"),o=l.closest(".fl-module"),s=!0;o.length>0&&(s=confirm(FLBuilderStrings.deleteColumnMessage)),s&&(FLBuilder._deleteCol(i),FLBuilder._removeAllOverlays()),t.stopPropagation()},_deleteCol:function(e){var t=e.closest(".fl-row"),l=e.closest(".fl-col-group"),i=0;e.remove(),rowCols=t.find(".fl-col"),groupCols=l.find(".fl-col"),0===rowCols.length&&"row"!=FLBuilderConfig.userTemplateType?FLBuilder._deleteRow(t):(0===groupCols.length?l.remove():(i=6===groupCols.length?16.65:7===groupCols.length?14.28:Math.round(100/groupCols.length*100)/100,groupCols.css("width",i+"%")),FLBuilder.ajax({action:"delete_col",node_id:e.attr("data-node"),new_width:i,silent:!0}))},_insertColBeforeClicked:function(t){FLBuilder._insertCol(e(this).closest(".fl-col"),"before"),t.stopPropagation()},_insertColAfterClicked:function(t){FLBuilder._insertCol(e(this).closest(".fl-col"),"after"),t.stopPropagation()},_insertCol:function(e,t){FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder.ajax({action:"render_new_column",node_id:e.attr("data-node"),insert:t},FLBuilder._renderLayout)},_addColGroup:function(t,l,i){FLBuilder.showAjaxLoader(),FLBuilder._newColGroupParent=e(".fl-node-"+t+" .fl-row-content"),FLBuilder._newColGroupPosition=i,FLBuilder.ajax({action:"render_new_column_group",cols:l,node_id:t,position:i},FLBuilder._addColGroupComplete)},_addColGroupComplete:function(t){var l=JSON.parse(t),i=e(l.html).find(".fl-col").data("node");l.nodeParent=FLBuilder._newColGroupParent,l.nodePosition=FLBuilder._newColGroupPosition,FLBuilder._renderLayout(l,function(){null!==FLBuilder._addModuleAfterRowRender&&(FLBuilder._addModuleAfterRowRender.hasClass("fl-module")&&(e(".fl-node-"+i+" .fl-col-content").append(FLBuilder._addModuleAfterRowRender),FLBuilder._reorderModule(FLBuilder._addModuleAfterRowRender)),FLBuilder._addModuleAfterRowRender=null)})},_initColDragResizing:function(){e(".fl-block-col-resize").draggable({axis:"x",start:FLBuilder._colDragResizeStart,drag:FLBuilder._colDragResize,stop:FLBuilder._colDragResizeStop})},_colDragResizeStart:function(t,l){var i=e(l.helper),o="",s=i.closest(".fl-col-group"),r=s.find(".fl-col"),n=i.closest(".fl-col"),a=null,d=100,u=0;for(i.hasClass("fl-block-col-resize-e")?(o="e",a=n.next(".fl-col")):(o="w",a=n.prev(".fl-col"));u<r.length;u++)r.eq(u).data("node")!=n.data("node")&&r.eq(u).data("node")!=a.data("node")&&(d-=parseFloat(r.eq(u)[0].style.width));FLBuilder._colResizeData={handle:i,feedbackLeft:i.find(".fl-block-col-resize-feedback-left"),feedbackRight:i.find(".fl-block-col-resize-feedback-right"),direction:o,groupWidth:s.outerWidth(),col:n,colWidth:parseFloat(n[0].style.width)/100,sibling:a,offset:l.position.left,availWidth:d},FLBuilder._colResizing=!0,FLBuilder._closePanel(),FLBuilder._destroyOverlayEvents()},_colDragResize:function(e,t){var l=FLBuilder._colResizeData,i=(l.offset-t.position.left)/l.groupWidth,o="e"==l.direction?100*(l.colWidth-i):100*(l.colWidth+i),s=Math.round(100*o)/100,r=l.availWidth-o,n=Math.round(100*r)/100,a=10,d=Math.round(100*(l.availWidth-10))/100;10>s?(s=a,n=d):10>n&&(s=d,n=a),"e"==l.direction?(l.feedbackLeft.html(s.toFixed(1)+"%").show(),l.feedbackRight.html(n.toFixed(1)+"%").show()):(l.feedbackLeft.html(n.toFixed(1)+"%").show(),l.feedbackRight.html(s.toFixed(1)+"%").show()),l.col.css("width",s+"%"),l.sibling.css("width",n+"%")},_colDragResizeStop:function(e,t){var l=FLBuilder._colResizeData;FLBuilder._colResizeData.feedbackLeft.hide(),FLBuilder._colResizeData.feedbackRight.hide(),FLBuilder.ajax({action:"resize_cols",col_id:l.col.data("node"),col_width:parseFloat(l.col[0].style.width),sibling_id:l.sibling.data("node"),sibling_width:parseFloat(l.sibling[0].style.width),silent:!0}),FLBuilder._colResizeData=null,FLBuilder._bindOverlayEvents(),setTimeout(function(){FLBuilder._colResizing=!1},50)},_resetColumnWidths:function(t){var l=e(this).closest(".fl-col-group"),i=l.find(".fl-col"),o=0;o=6===i.length?16.65:7===i.length?14.28:Math.round(100/i.length*100)/100,i.css("width",o+"%"),FLBuilder.ajax({action:"reset_col_widths",group_id:l.data("node"),silent:!0}),t.stopPropagation()},_moduleMouseenter:function(){var t=e(this),l=t.attr("data-name"),i=t.hasClass("fl-node-global"),o=t.parents(".fl-node-global").length>0,s=t.parents(".fl-col-group").find(".fl-col").length,r=t.parents(".fl-col"),n=0===r.index(),a=s===r.index()+1,d=wp.template("fl-module-overlay");FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),i&&o&&"row"!=FLBuilderConfig.userTemplateType||(t.hasClass("fl-block-overlay-active")||(FLBuilder._appendOverlay(t,d({global:i,moduleName:l,numCols:s,parentFirst:n,parentLast:a})),FLBuilder._initColDragResizing()),e("body").addClass("fl-block-overlay-muted"))},_moduleMouseleave:function(t){var l=(e(this),e(t.toElement)||e(t.relatedTarget)),i=l.is("#tiptip_holder"),o=l.closest("#tiptip_holder").length>0;i||o||FLBuilder._removeModuleOverlays()},_removeModuleOverlays:function(){var t=e(".fl-module");t.removeClass("fl-block-overlay-active"),t.find(".fl-module-overlay").remove(),e("body").removeClass("fl-block-overlay-muted")},_moduleDragHelper:function(t,l){return e('<div class="fl-builder-block-drag-helper">'+l.attr("data-name")+"</div>")},_moduleDragStop:function(e,t){var l=t.item,i=l.parent(),o=0,s=0;return FLBuilder._blockDragStop(e,t),i.hasClass("fl-builder-modules")||i.hasClass("fl-builder-widgets")?void l.remove():(l.hasClass("fl-builder-block")?(i.hasClass("fl-builder-content")?(o=i.children(".fl-row, .fl-builder-block").index(l),s=0):i.hasClass("fl-row-content")?(o=i.children(".fl-col-group, .fl-builder-block").index(l),s=l.closest(".fl-row").attr("data-node")):(o=i.children(".fl-module, .fl-builder-block").index(l),s=l.closest(".fl-col").attr("data-node")),FLBuilder._addModule(i,s,l.attr("data-type"),o,l.attr("data-widget")),t.item.remove()):i.hasClass("fl-builder-content")?(o=i.children(".fl-row, .fl-module").index(l),FLBuilder._addModuleAfterRowRender=l,FLBuilder._addRow("1-col",o),l.remove()):i.hasClass("fl-row-content")?(o=i.children(".fl-col-group, .fl-module").index(l),FLBuilder._addModuleAfterRowRender=l,FLBuilder._addColGroup(l.closest(".fl-row").attr("data-node"),"1-col",o),l.remove()):FLBuilder._reorderModule(l),void FLBuilder._resizeLayout())},_reorderModule:function(e){var t=e.closest(".fl-col").attr("data-node"),l=e.attr("data-parent"),i=e.attr("data-node"),o=e.index();t==l?FLBuilder.ajax({action:"reorder_node",node_id:i,position:o,silent:!0}):(e.attr("data-parent",t),FLBuilder.ajax({action:"move_node",new_parent:t,node_id:i,position:o,silent:!0}))},_deleteModuleClicked:function(t){var l=e(this).closest(".fl-module"),i=confirm(FLBuilderStrings.deleteModuleMessage);i&&(FLBuilder._deleteModule(l),FLBuilder._removeAllOverlays()),t.stopPropagation()},_deleteModule:function(e){var t=e.closest(".fl-row");FLBuilder.ajax({action:"delete_node",node_id:e.attr("data-node"),silent:!0}),e.empty(),e.remove(),t.removeClass("fl-block-overlay-muted"),FLBuilder._highlightEmptyCols(),FLBuilder._removeAllOverlays()},_moduleCopyClicked:function(t){var l=e(this).closest(".fl-module");FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder._newModuleParent=l.parent(),FLBuilder._newModulePosition=l.index()+1,FLBuilder.ajax({action:"copy_module",node_id:l.attr("data-node")},FLBuilder._moduleCopyComplete),t.stopPropagation()},_moduleCopyComplete:function(e){var t=JSON.parse(e);t.nodeParent=FLBuilder._newModuleParent,t.nodePosition=FLBuilder._newModulePosition,FLBuilder._renderLayout(t)},_moduleSettingsClicked:function(t){var l=e(this),i=l.closest(".fl-module").attr("data-node"),o=l.closest(".fl-col").attr("data-node"),s=l.closest(".fl-module").attr("data-type"),r=l.closest(".fl-block-overlay-global").length>0;t.stopPropagation(),FLBuilder._colResizing||(!r||FLBuilderConfig.userCanEditGlobalTemplates)&&FLBuilder._showModuleSettings(i,o,s)},_showModuleSettings:function(e,t,l){FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_module_settings",node_id:e,type:l,parent_id:t},FLBuilder._moduleSettingsLoaded)},_moduleSettingsLoaded:function(t){var l=JSON.parse(t),i=e("<div>"+l.settings+"</div>"),o=i.find("link.fl-builder-settings-css"),s=i.find("script.fl-builder-settings-js"),r=i.find(".fl-builder-settings"),n=r.attr("data-type"),a=null,d=null,u=null;e.inArray(n,FLBuilder._loadedModuleAssets)>-1?(o.remove(),s.remove()):(e("head").append(o),e("head").append(s),FLBuilder._loadedModuleAssets.push(n)),FLBuilder._setSettingsFormContent(i),"undefined"!=typeof l.layout&&(a=l.layout,a.nodeParent=FLBuilder._newModuleParent,a.nodePosition=FLBuilder._newModulePosition),"undefined"!=typeof l.state&&(d=l.state),FLBuilder.preview=new FLBuilderPreview({type:"module",layout:a,state:d}),u=FLBuilder._moduleHelpers[n],"undefined"!=typeof u&&(FLBuilder._initSettingsValidation(u.rules),u.init())},_saveModuleClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=t.attr("data-type"),i=(t.attr("data-node"),FLBuilder._moduleHelpers[l]),o=!0;"undefined"!=typeof i&&(t.find("label.error").remove(),t.validate().hideErrors(),o=t.validate().form(),o&&(o=i.submit())),o?(FLBuilder._saveSettings(),FLBuilder._lightbox.close()):FLBuilder._toggleSettingsTabErrors()},_addModule:function(e,t,l,i,o){FLBuilder.showAjaxLoader(),FLBuilder._newModuleParent=e,FLBuilder._newModulePosition=i,FLBuilder.ajax({action:"render_new_module",parent_id:t,type:l,position:i,node_preview:1,widget:"undefined"==typeof o?"":o},FLBuilder._addModuleComplete)},_addModuleComplete:function(t){FLBuilder._showLightbox(),FLBuilder._moduleSettingsLoaded(t),e(".fl-builder-module-settings").data("new-module","1")},registerModuleHelper:function(t,l){var i={rules:{},init:function(){},submit:function(){return!0},preview:function(){}};FLBuilder._moduleHelpers[t]=e.extend({},i,l)},_registerModuleHelper:function(e,t){FLBuilder.registerModuleHelper(e,t)},_showNodeTemplateSettings:function(t){var l=e(".fl-builder-settings-lightbox .fl-builder-settings");FLBuilder._saveSettings(),FLBuilder.ajax({action:"render_node_template_settings",node_id:l.attr("data-node")},FLBuilder._nodeTemplateSettingsLoaded)},_nodeTemplateSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._showLightbox(!1),FLBuilder._setSettingsFormContent(t.html),FLBuilder._initSettingsValidation({name:{required:!0}})},_saveNodeTemplate:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.validate().form();l&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_node_template",node_id:t.attr("data-node"),settings:FLBuilder._getSettings(t)},FLBuilder._saveNodeTemplateComplete),FLBuilder._lightbox.close())},_saveNodeTemplateComplete:function(t){var l=JSON.parse(t),i=e(".fl-builder-saved-"+l.type+"s"),o=i.find(".fl-builder-block"),s=null,r="",n=l.name.toLowerCase(),a=0,d=wp.template("fl-node-template-block");if("row"==l.type?FLBuilder.alert(FLBuilderStrings.rowTemplateSaved):"module"==l.type&&FLBuilder.alert(FLBuilderStrings.moduleTemplateSaved),l.layout&&FLBuilder._renderLayout(l.layout),0===o.length)i.append(d(l));else for(;a<o.length;a++){if(s=o.eq(a),r=s.text().toLowerCase().trim(),0===a&&r>n){i.prepend(d(l));break}if(r>n){s.before(d(l));break}if(o.length-1===a){i.append(d(l));break}}i.find(".fl-builder-block-no-node-templates").remove()},_nodeTemplateDragStop:function(e,t){var l=t.item,i=l.parent(),o=null,s=0,r="",n=null;FLBuilder._blockDragStop(e,t),l.hasClass("fl-builder-block-saved-row")||l.hasClass("fl-builder-block-row-template")?(s=i.children(".fl-row, .fl-builder-block").index(l),o=null,r="render_new_row",n=FLBuilder._addRowComplete,FLBuilder._newRowPosition=s):(l.hasClass("fl-builder-block-saved-module")||l.hasClass("fl-builder-block-module-template"))&&(r="render_new_module",n=FLBuilder._addModuleComplete,i.hasClass("fl-builder-content")?(s=i.children(".fl-row, .fl-builder-block").index(l),o=0):i.hasClass("fl-row-content")?(s=i.children(".fl-col-group, .fl-builder-block").index(l),o=l.closest(".fl-row").attr("data-node")):(s=i.children(".fl-module, .fl-builder-block").index(l),o=l.closest(".fl-col").attr("data-node")),FLBuilder._newModuleParent=i,FLBuilder._newModulePosition=s),
4
- FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:r,template_id:l.attr("data-id"),parent_id:o,position:s},n),l.remove()},_editNodeTemplateClicked:function(t){t.preventDefault(),t.stopPropagation(),window.open(e(this).attr("href"))},_deleteNodeTemplateClicked:function(t){var l=e(t.target),i=l.closest(".fl-builder-blocks-section"),o=i.find(".fl-builder-blocks-section-content"),s=o.find(".fl-builder-block"),r=l.closest(".fl-builder-block"),n=r.hasClass("fl-builder-block-global"),a=n?FLBuilder._updateLayout:void 0,d=n?FLBuilderStrings.deleteGlobalTemplate:FLBuilderStrings.deleteTemplate;confirm(d)&&(r.remove(),1===s.length&&(r.hasClass("fl-builder-block-saved-row")?o.append('<span class="fl-builder-block-no-node-templates">'+FLBuilderStrings.noSavedRows+"</span>"):o.append('<span class="fl-builder-block-no-node-templates">'+FLBuilderStrings.noSavedModules+"</span>")),FLBuilder.ajax({action:"delete_node_template",template_id:r.attr("data-id"),silent:r.hasClass("fl-builder-block-global")?!1:!0},a))},_initSettingsForms:function(){FLBuilder._initColorPickers(),FLBuilder._initSelectFields(),FLBuilder._initMultipleFields(),FLBuilder._initAutoSuggestFields(),FLBuilder._initLinkFields(),FLBuilder._initFontFields()},_setSettingsFormContent:function(e){FLBuilder._setLightboxContent(e),FLBuilder._initSettingsForms()},_settingsTabClicked:function(t){var l=e(this),i=l.closest(".fl-builder-settings"),o=l.attr("href").split("#").pop();i.find(".fl-builder-settings-tab").removeClass("fl-active"),i.find("#"+o).addClass("fl-active"),i.find(".fl-builder-settings-tabs .fl-active").removeClass("fl-active"),e(this).addClass("fl-active"),t.preventDefault()},_settingsCancelClicked:function(t){var l=e(".fl-builder-module-settings"),i=null,o=null,s=null,r=null;l.length>0&&"undefined"!=typeof l.data("new-module")?(i=e(FLBuilder.preview.state.html),o=e(".fl-node-"+l.data("node")),s=o.closest(".fl-col"),r=i.find(".fl-node-"+s.data("node")),r.length>0?FLBuilder._deleteModule(o):FLBuilder._deleteCol(s)):FLBuilder.preview&&FLBuilder.preview.revert(),FLBuilder.preview=null,FLLightbox.closeParent(this)},_initSettingsValidation:function(t,l){var i=e(".fl-builder-settings").last();i.validate({ignore:[],rules:t,messages:l,errorPlacement:FLBuilder._settingsErrorPlacement})},_settingsErrorPlacement:function(e,t){e.appendTo(t.parent())},_toggleSettingsTabErrors:function(){for(var t=e(".fl-builder-settings:visible"),l=t.find(".fl-builder-settings-tab"),i=null,o=null,s=0;s<l.length;s++)i=l.eq(s),o=i.find("label.error"),tabLink=t.find(".fl-builder-settings-tabs a[href*="+i.attr("id")+"]"),tabLink.find(".fl-error-icon").remove(),tabLink.removeClass("error"),o.length>0&&(tabLink.append('<span class="fl-error-icon"></span>'),tabLink.addClass("error"))},_getSettings:function(t){FLBuilder._updateEditorFields();var l=t.serializeArray(),i=0,o=0,s="",r="",n="",a=[],d=[],u={};for(i=0;i<l.length;i++)if(s=l[i].value.replace(/\r/gm,""),!(l[i].name.indexOf("flrich")>-1))if(l[i].name.indexOf("[")>-1){for(r=l[i].name.replace(/\[(.*)\]/,""),n=l[i].name.replace(r,""),a=[],d=n.match(/\[[^\]]*\]/g),o=0;o<d.length;o++)"[]"!=d[o]&&a.push(d[o].replace(/\[|\]/g,""));n.match(/\[\]\[[^\]]*\]\[[^\]]+\]/)?("undefined"==typeof u[r]&&(u[r]={}),"undefined"==typeof u[r][a[0]]&&(u[r][a[0]]={}),"undefined"==typeof u[r][a[0]][a[1]]&&(u[r][a[0]][a[1]]={}),u[r][a[0]][a[1]]=s):n.match(/\[\]\[[^\]]*\]\[\]/)?("undefined"==typeof u[r]&&(u[r]={}),"undefined"==typeof u[r][a[0]]&&(u[r][a[0]]=[]),u[r][a[0]].push(s)):n.match(/\[\]\[[^\]]*\]/)?("undefined"==typeof u[r]&&(u[r]={}),u[r][a[0]]=s):n.match(/\[\]/)&&("undefined"==typeof u[r]&&(u[r]=[]),u[r].push(s))}else u[l[i].name]=s;for(n in u)if("undefined"!=typeof u["as_values_"+n]){u[n]=e.grep(u["as_values_"+n].split(","),function(e){return""!==e}).join(",");try{delete u["as_values_"+n]}catch(c){}}return u},_saveSettings:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.attr("data-node"),i=FLBuilder._getSettings(t);FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_settings",node_id:l,settings:i},FLBuilder._saveSettingsComplete),FLBuilder._lightbox.close()},_saveSettingsComplete:function(e){FLBuilder._renderLayout(e,function(){FLBuilder.preview&&(FLBuilder.preview.clear(),FLBuilder.preview=null)})},_showHelpTooltip:function(){e(this).siblings(".fl-help-tooltip-text").fadeIn()},_hideHelpTooltip:function(){e(this).siblings(".fl-help-tooltip-text").fadeOut()},_initAutoSuggestFields:function(){e(".fl-suggest-field").each(FLBuilder._initAutoSuggestField)},_initAutoSuggestField:function(){var t=e(this);t.autoSuggest(FLBuilder._ajaxUrl({fl_action:"fl_builder_autosuggest",fl_as_action:t.data("action"),fl_as_action_data:t.data("action-data"),_wpnonce:FLBuilderConfig.ajaxNonce}),{asHtmlID:t.attr("name"),selectedItemProp:"name",searchObjProps:"name",minChars:3,keyDelay:1e3,fadeOut:!1,usePlaceholder:!0,emptyText:FLBuilderStrings.noResultsFound,showResultListWhenNoMatch:!0,preFill:t.data("value"),queryParam:"fl_as_query",afterSelectionAdd:FLBuilder._updateAutoSuggestField,afterSelectionRemove:FLBuilder._updateAutoSuggestField,selectionLimit:t.data("limit")})},_updateAutoSuggestField:function(t,l,i){e(this).siblings(".as-values").val(i.join(",")).trigger("change")},_initMultipleFields:function(){for(var t=e(".fl-builder-field-multiples"),l=null,i=null,o=0,s=FLBuilderConfig.isRtl?{left:10}:{right:10};o<t.length;o++)l=t.eq(o),i=l.find(".fl-builder-field-multiple"),1===i.length?i.eq(0).find(".fl-builder-field-actions").addClass("fl-builder-field-actions-single"):i.find(".fl-builder-field-actions").removeClass("fl-builder-field-actions-single");e(".fl-builder-field-multiples").sortable({items:".fl-builder-field-multiple",cursor:"move",cursorAt:s,distance:5,opacity:.5,helper:FLBuilder._fieldDragHelper,placeholder:"fl-builder-field-dd-zone",stop:FLBuilder._fieldDragStop,tolerance:"pointer"})},_addFieldClicked:function(){var t=e(this),l=t.attr("data-field"),i=t.closest("tr").siblings("tr[data-field="+l+"]").last(),o=i.clone(),s=parseInt(i.find("label span.fl-builder-field-index").html(),10)+1;o.find("th label span.fl-builder-field-index").html(s),o.find(".fl-form-field-preview-text").html(""),o.find("input, textarea, select").val(""),i.after(o),FLBuilder._initMultipleFields()},_copyFieldClicked:function(){var t=e(this),l=t.closest("tr"),i=l.clone(),o=parseInt(l.find("label span.fl-builder-field-index").html(),10)+1;i.find("th label span.fl-builder-field-index").html(o),l.after(i),FLBuilder._renumberFields(l.parent()),FLBuilder._initMultipleFields(),FLBuilder.preview.delayPreview()},_deleteFieldClicked:function(){var t=e(this).closest("tr"),l=t.parent(),i=confirm(FLBuilderStrings.deleteFieldMessage);i&&(t.remove(),FLBuilder._renumberFields(l),FLBuilder._initMultipleFields(),FLBuilder.preview.delayPreview())},_renumberFields:function(e){for(var t=e.find(".fl-builder-field-multiple"),l=0;l<t.length;l++)t.eq(l).find("th label span.fl-builder-field-index").html(l+1)},_fieldDragHelper:function(){return e('<div class="fl-builder-field-dd-helper"></div>')},_fieldDragStop:function(e,t){FLBuilder._renumberFields(t.item.parent()),FLBuilder.preview.delayPreview()},_initSelectFields:function(){e(".fl-builder-settings:visible").find(".fl-builder-settings-fields select").trigger("change")},_settingsSelectChanged:function(){var t=e(this),l=t.attr("data-toggle"),i=t.attr("data-hide"),o=t.attr("data-trigger"),s=t.val(),r=0;if("undefined"!=typeof l){l=JSON.parse(l);for(r in l)FLBuilder._settingsSelectToggle(l[r].fields,"hide","#fl-field-"),FLBuilder._settingsSelectToggle(l[r].sections,"hide","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(l[r].tabs,"hide","a[href*=fl-builder-settings-tab-","]");"undefined"!=typeof l[s]&&(FLBuilder._settingsSelectToggle(l[s].fields,"show","#fl-field-"),FLBuilder._settingsSelectToggle(l[s].sections,"show","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(l[s].tabs,"show","a[href*=fl-builder-settings-tab-","]"))}if("undefined"!=typeof i&&(i=JSON.parse(i),"undefined"!=typeof i[s]&&(FLBuilder._settingsSelectToggle(i[s].fields,"hide","#fl-field-"),FLBuilder._settingsSelectToggle(i[s].sections,"hide","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(i[s].tabs,"hide","a[href*=fl-builder-settings-tab-","]"))),"undefined"!=typeof o&&(o=JSON.parse(o),"undefined"!=typeof o[s]&&"undefined"!=typeof o[s].fields))for(r=0;r<o[s].fields.length;r++)e("#fl-field-"+o[s].fields[r]).find("select").trigger("change")},_settingsSelectToggle:function(t,l,i,o){var s=0;if(o="undefined"==typeof o?"":o,"undefined"!=typeof t)for(;s<t.length;s++)e(i+t[s]+o)[l]()},_initColorPickers:function(){var t=FLBuilderConfig.colorPresets?FLBuilderConfig.colorPresets:[];FLBuilder.colorPicker=new FLBuilderColorPicker({elements:".fl-color-picker .fl-color-picker-value",presets:t,labels:{colorPresets:FLBuilderStrings.colorPresets,colorPicker:FLBuilderStrings.colorPicker,placeholder:FLBuilderStrings.placeholder,removePresetConfirm:FLBuilderStrings.removePresetConfirm,noneColorSelected:FLBuilderStrings.noneColorSelected,alreadySaved:FLBuilderStrings.alreadySaved,noPresets:FLBuilderStrings.noPresets,presetAdded:FLBuilderStrings.presetAdded}}),e(FLBuilder.colorPicker).on("presetRemoved presetAdded",function(e,t){FLBuilder.ajax({action:"save_color_presets",presets:t.presets})})},_selectSinglePhoto:function(){null===FLBuilder._singlePhotoSelector&&(FLBuilder._singlePhotoSelector=wp.media({title:FLBuilderStrings.selectPhoto,button:{text:FLBuilderStrings.selectPhoto},library:{type:"image"},multiple:!1})),FLBuilder._singlePhotoSelector.once("open",e.proxy(FLBuilder._singlePhotoOpened,this)),FLBuilder._singlePhotoSelector.once("select",e.proxy(FLBuilder._singlePhotoSelected,this)),FLBuilder._singlePhotoSelector.open()},_singlePhotoOpened:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection"),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=i.val(),s=null;e(this).hasClass("fl-photo-replace")?(t.reset(),l.addClass("fl-photo-empty"),i.val("")):""!==o?(s=wp.media.attachment(o),s.fetch(),t.add(s?[s]:[])):t.reset()},_singlePhotoSelected:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection").first().toJSON(),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=l.find(".fl-photo-preview img"),s=l.find("select");i.val(t.id),o.attr("src",FLBuilder._getPhotoSrc(t)),l.removeClass("fl-photo-empty"),l.find("label.error").remove(),s.show(),s.html(FLBuilder._getPhotoSizeOptions(t)),s.trigger("change")},_singlePhotoRemoved:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection"),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=l.find("select");t.reset(),l.addClass("fl-photo-empty"),i.val(""),o.html(""),o.trigger("change")},_getPhotoSrc:function(e){return"undefined"==typeof e.sizes?e.url:"undefined"!=typeof e.sizes.thumbnail?e.sizes.thumbnail.url:e.sizes.full.url},_getPhotoSizeOptions:function(e){var t="",l=null,i=null,o="",s={full:FLBuilderStrings.fullSize,large:FLBuilderStrings.large,medium:FLBuilderStrings.medium,thumbnail:FLBuilderStrings.thumbnail};if("undefined"==typeof e.sizes)t+='<option value="'+e.url+'">'+FLBuilderStrings.fullSize+"</option>";else for(l in e.sizes)o="undefined"!=typeof s[l]?s[l]+" - ":"undefined"!=typeof FLBuilderConfig.customImageSizeTitles[l]?FLBuilderConfig.customImageSizeTitles[l]+" - ":"",i="full"==l?' selected="selected"':"",t+='<option value="'+e.sizes[l].url+'"'+i+">"+o+e.sizes[l].width+" x "+e.sizes[l].height+"</option>";return t},_selectMultiplePhotos:function(){var t=e(this).closest(".fl-multiple-photos-field"),l=t.find("input[type=hidden]"),i=l.val(),o=""===i?'[gallery ids="-1"]':'[gallery ids="'+JSON.parse(i).join()+'"]',s=wp.shortcode.next("gallery",o).shortcode,r=wp.media.gallery.defaults.id,n=null,a=null;_.isUndefined(s.get("id"))&&!_.isUndefined(r)&&s.set("id",r),n=wp.media.gallery.attachments(s),a=new wp.media.model.Selection(n.models,{props:n.props.toJSON(),multiple:!0}),a.gallery=n.gallery,a.more().done(function(){a.props.set({query:!1}),a.unmirror(),a.props.unset("orderby")}),FLBuilder._multiplePhotoSelector&&FLBuilder._multiplePhotoSelector.dispose(),FLBuilder._multiplePhotoSelector=wp.media({frame:"post",state:e(this).hasClass("fl-multiple-photos-edit")?"gallery-edit":"gallery-library",title:wp.media.view.l10n.editGalleryTitle,editing:!0,multiple:!0,selection:a}).open(),e(FLBuilder._multiplePhotoSelector.views.view.el).addClass("fl-multiple-photos-lightbox"),FLBuilder._multiplePhotoSelector.once("update",e.proxy(FLBuilder._multiplePhotosSelected,this))},_multiplePhotosSelected:function(t){for(var l=e(this).closest(".fl-multiple-photos-field"),i=l.find("input[type=hidden]"),o=l.find(".fl-multiple-photos-count"),s=[],r=0;r<t.models.length;r++)s.push(t.models[r].id);1==s.length?o.html("1 "+FLBuilderStrings.photoSelected):o.html(s.length+" "+FLBuilderStrings.photosSelected),l.removeClass("fl-multiple-photos-empty"),l.find("label.error").remove(),i.val(JSON.stringify(s)).trigger("change")},_selectSingleVideo:function(){null===FLBuilder._singleVideoSelector&&(FLBuilder._singleVideoSelector=wp.media({title:FLBuilderStrings.selectVideo,button:{text:FLBuilderStrings.selectVideo},library:{type:"video"},multiple:!1})),FLBuilder._singleVideoSelector.once("select",e.proxy(FLBuilder._singleVideoSelected,this)),FLBuilder._singleVideoSelector.open()},_singleVideoSelected:function(){var t=FLBuilder._singleVideoSelector.state().get("selection").first().toJSON(),l=e(this).closest(".fl-video-field"),i=l.find(".fl-video-preview-img img"),o=l.find(".fl-video-preview-filename"),s=l.find("input[type=hidden]");i.attr("src",t.icon),o.html(t.filename),l.removeClass("fl-video-empty"),l.find("label.error").remove(),s.val(t.id).trigger("change")},_selectMultipleAudios:function(){var t=e(this).closest(".fl-multiple-audios-field"),l=t.find("input[type=hidden]"),i=l.val(),o=""==i?'[playlist ids="-1"]':'[playlist ids="'+JSON.parse(i).join()+'"]',s=wp.shortcode.next("playlist",o).shortcode,r=wp.media.playlist.defaults.id,n=null,a=null;_.isUndefined(s.get("id"))&&!_.isUndefined(r)&&s.set("id",r),n=wp.media.playlist.attachments(s),a=new wp.media.model.Selection(n.models,{props:n.props.toJSON(),multiple:!0}),a.playlist=n.playlist,a.more().done(function(){a.props.set({query:!1}),a.unmirror(),a.props.unset("orderby")}),FLBuilder._multipleAudiosSelector&&FLBuilder._multipleAudiosSelector.dispose(),FLBuilder._multipleAudiosSelector=wp.media({frame:"post",state:e(this).hasClass("fl-multiple-audios-edit")?"playlist-edit":"playlist-library",title:wp.media.view.l10n.editPlaylistTitle,editing:!0,multiple:!0,selection:a}).open(),FLBuilder._multipleAudiosSelector.content.get("view").sidebar.unset("playlist"),FLBuilder._multipleAudiosSelector.on("content:render:browse",function(e){e&&e.sidebar.on("ready",function(){e.sidebar.unset("playlist")})}),FLBuilder._multipleAudiosSelector.once("update",e.proxy(FLBuilder._multipleAudiosSelected,this))},_multipleAudiosSelected:function(t){for(var l=e(this).closest(".fl-multiple-audios-field"),i=l.find(".fl-multiple-audios-count"),o=l.find("input[type=hidden]"),s=[],r=0;r<t.models.length;r++)s.push(t.models[r].id);1==s.length?i.html("1 "+FLBuilderStrings.audioSelected):i.html(s.length+" "+FLBuilderStrings.audiosSelected),o.val(JSON.stringify(s)).trigger("change"),l.removeClass("fl-multiple-audios-empty"),l.find("label.error").remove()},_selectIcon:function(){var e=this;FLIconSelector.open(function(t){FLBuilder._iconSelected.apply(e,[t])})},_iconSelected:function(t){var l=e(this).closest(".fl-icon-field"),i=l.find("input[type=hidden]"),o=l.find("i"),s=o.attr("data-icon");i.val(t).trigger("change"),o.removeClass(s),o.addClass(t),o.attr("data-icon",t),l.removeClass("fl-icon-empty"),l.find("label.error").remove()},_removeIcon:function(){var t=e(this).closest(".fl-icon-field"),l=t.find("input[type=hidden]"),i=t.find("i");l.val("").trigger("change"),i.removeClass(),i.attr("data-icon",""),t.addClass("fl-icon-empty")},_formFieldClicked:function(){var t=e(this),l=t.closest(".fl-lightbox-wrap").attr("data-instance-id"),i=FLLightbox._instances[l],o=i._node.find(".fl-lightbox").css("left"),s=i._node.find(".fl-lightbox").css("top"),r=t.closest(".fl-builder-settings"),n=t.attr("data-type"),a=t.siblings("input").val(),d=FLBuilder._moduleHelpers[n],u=new FLLightbox({className:"fl-builder-lightbox fl-form-field-settings",destroyOnClose:!0});t.closest(".fl-builder-lightbox").hide(),t.attr("id","fl-"+u._id),u.open('<div class="fl-builder-lightbox-loading"></div>'),u.draggable({handle:".fl-lightbox-header"}),e("body").undelegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked),u._node.find(".fl-lightbox").css({left:o,top:Number(parseInt(s)+233)+"px"}),FLBuilder.ajax({action:"render_settings_form",node_id:r.attr("data-node"),node_settings:FLBuilder._getSettings(r),type:n,settings:a.replace(/&#39;/g,"'")},function(e){var t=JSON.parse(e);u.setContent(t.html),u._node.find("form.fl-builder-settings").attr("data-type",n),u._node.find(".fl-builder-settings-cancel").on("click",FLBuilder._closeFormFieldLightbox),FLBuilder._initSettingsForms(),"undefined"!=typeof d&&(FLBuilder._initSettingsValidation(d.rules),d.init()),u._node.find(".fl-lightbox").css({left:o,top:s})})},_closeFormFieldLightbox:function(){var t=e(this).closest(".fl-lightbox-wrap").attr("data-instance-id"),l=FLLightbox._instances[t],i=e(".fl-builder-settings-lightbox"),o=i.find("form"),s=l._node.find(".fl-lightbox").css("left"),r=l._node.find(".fl-lightbox").css("top"),n=0,a=e(window),d=a.height();l._node.find(".fl-lightbox-content").html('<div class="fl-builder-lightbox-loading"></div>'),n=l._node.find(".fl-lightbox").height(),d-80>n?l._node.find(".fl-lightbox").css("top",(d-n)/2-40+"px"):l._node.find(".fl-lightbox").css("top","0px"),l.on("close",function(){i.show(),i.find("label.error").remove(),o.validate().hideErrors(),FLBuilder._toggleSettingsTabErrors(),i.find(".fl-lightbox").css({left:s,top:r})}),setTimeout(function(){l.close(),e("body").delegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked)},500)},_saveFormFieldClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=e(this).closest(".fl-lightbox-wrap").attr("data-instance-id"),i=t.attr("data-type"),o=FLBuilder._getSettings(t),s=FLBuilder._moduleHelpers[i],r=e(".fl-builder-settings #fl-"+l),n=r.parent().attr("data-preview-text"),a=o[n],d=e('select[name="'+n+'"]'),u=document.createElement("div"),c=!0;return d.length>0&&(a=d.find('option[value="'+o[n]+'"]').text()),"undefined"!=typeof s&&(t.find("label.error").remove(),t.validate().hideErrors(),c=t.validate().form(),c&&(c=s.submit())),c?("undefined"!=typeof n&&(a.indexOf("fa fa-")>-1?a='<i class="'+a+'"></i>':a.length>35&&(u.innerHTML=a,a=(u.textContent||u.innerText||"").replace(/^(.{35}[^\s]*).*/,"$1")+"..."),r.siblings(".fl-form-field-preview-text").html(a)),r.siblings("input").val(JSON.stringify(o)).trigger("change"),FLBuilder._closeFormFieldLightbox.apply(this),!0):(FLBuilder._toggleSettingsTabErrors(),!1)},_layoutFieldClicked:function(){var t=e(this);t.siblings().removeClass("fl-layout-field-option-selected"),t.addClass("fl-layout-field-option-selected"),t.siblings("input").val(t.attr("data-value"))},_initLinkFields:function(){e(".fl-link-field").each(FLBuilder._initLinkField)},_initLinkField:function(){var t=e(this),l=t.find(".fl-link-field-search-input");l.autoSuggest(FLBuilder._ajaxUrl({fl_action:"fl_builder_autosuggest",fl_as_action:"fl_as_links",_wpnonce:FLBuilderConfig.ajaxNonce}),{asHtmlID:l.attr("name"),selectedItemProp:"name",searchObjProps:"name",minChars:3,keyDelay:1e3,fadeOut:!1,usePlaceholder:!0,emptyText:FLBuilderStrings.noResultsFound,showResultListWhenNoMatch:!0,queryParam:"fl_as_query",selectionLimit:1,afterSelectionAdd:FLBuilder._updateLinkField})},_updateLinkField:function(e,t,l){var i=e.closest(".fl-link-field"),o=i.find(".fl-link-field-search"),s=i.find(".fl-link-field-search-input"),r=i.find(".fl-link-field-input");r.val(t.value).trigger("keyup"),s.autoSuggest("remove",t.value),o.hide()},_linkFieldSelectClicked:function(){e(this).parent().find(".fl-link-field-search").show()},_linkFieldSelectCancelClicked:function(){e(this).parent().hide()},_initFontFields:function(){e(".fl-font-field").each(FLBuilder._initFontField)},_initFontField:function(){var t=e(this),l=t.find(".fl-font-field-font");l.on("change",function(){FLBuilder._getFontWeights(l)})},_getFontWeights:function(t){var l=t.next(".fl-font-field-weight"),i=t.val(),o={"default":"Default",regular:"Regular",100:"Thin 100",200:"Extra-Light 200",300:"Light 300",400:"Normal 400",500:"Medium 500",600:"Semi-Bold 600",700:"Bold 700",800:"Extra-Bold 800",900:"Ultra-Bold 900"},s={};l.html(""),s="undefined"!=typeof FLBuilderFontFamilies.system[i]?FLBuilderFontFamilies.system[i].weights:"undefined"!=typeof FLBuilderFontFamilies.google[i]?FLBuilderFontFamilies.google[i]:FLBuilderFontFamilies["default"][i],e.each(s,function(e,t){l.append('<option value="'+t+'">'+o[t]+"</option>")})},initEditorField:function(e){var t=tinyMCEPreInit.mceInit.flhiddeneditor;t.elements=e,tinyMCEPreInit.mceInit[e]=t},_updateEditorFields:function(){var t=e(".fl-builder-settings textarea.wp-editor-area");t.each(FLBuilder._updateEditorField)},_updateEditorField:function(){var t=e(this),l=t.closest(".wp-editor-wrap"),i=t.attr("id"),o=t.closest(".fl-editor-field").attr("id"),s="undefined"==typeof tinyMCE?!1:tinyMCE.get(i),r=t.siblings('textarea[name="'+o+'"]');0===r.length&&(r=e('<textarea name="'+o+'"></textarea>').hide(),t.after(r)),s&&l.hasClass("tmce-active")?r.val(s.getContent()):"undefined"!=typeof switchEditors?r.val(switchEditors.wpautop(t.val())):r.val(t.val())},_loopBuilderPostTypeChange:function(){var t=e(this).val();e(".fl-loop-builder-filter").hide(),e(".fl-loop-builder-"+t+"-filter").show()},_textFieldAddValueSelectChange:function(){var t=e(this),l=e('input[name="'+t.data("target")+'"]'),i=l.val(),o=t.val();-1==i.indexOf(o)&&l.attr("value",i.trim()+" "+o.trim()),t.val("")},ajax:function(t,l){var i;if(FLBuilder._silentUpdate)return FLBuilder.showAjaxLoader(),void(FLBuilder._silentUpdateCallbackData=[t,l]);t.silent===!0&&(FLBuilder._silentUpdate=!0);for(i in t)"undefined"==typeof t[i]&&(t[i]=null);return t._wpnonce=FLBuilderConfig.ajaxNonce,t.post_id=e("#fl-post-id").val(),t.fl_builder=1,t.fl_action=t.action,t={fl_builder_data:t},e.post(FLBuilder._ajaxUrl(),t,function(e){FLBuilder._ajaxComplete(),"undefined"!=typeof l&&l.call(this,e)})},_ajaxComplete:function(){var e,t;FLBuilder._silentUpdate=!1,null!==FLBuilder._silentUpdateCallbackData?(FLBuilder.showAjaxLoader(),e=FLBuilder._silentUpdateCallbackData[0],t=FLBuilder._silentUpdateCallbackData[1],FLBuilder._silentUpdateCallbackData=null,FLBuilder.ajax(e,t)):FLBuilder.hideAjaxLoader()},_ajaxUrl:function(e){var t=window.location.href.split("#").shift(),l=null;if("undefined"!=typeof e)for(l in e)t+=t.indexOf("?")>-1?"&":"?",t+=l+"="+e[l];return t},showAjaxLoader:function(){0===e(".fl-builder-lightbox-loading").length&&e(".fl-builder-loading").show()},hideAjaxLoader:function(){e(".fl-builder-loading").hide()},_showLightbox:function(e){e="undefined"==typeof e?!0:e,FLBuilder._lightbox.open('<div class="fl-builder-lightbox-loading"></div>'),e?FLBuilder._lightbox.draggable({handle:".fl-lightbox-header"}):FLBuilder._lightbox.draggable(!1),FLBuilder._removeAllOverlays(),FLBuilder._initLightboxScrollbars()},_setLightboxContent:function(e){FLBuilder._lightbox.setContent(e)},_initLightboxScrollbars:function(){FLBuilder._initScrollbars(),FLBuilder._lightboxScrollbarTimeout=setTimeout(FLBuilder._initLightboxScrollbars,500)},_lightboxClosed:function(){FLBuilder._lightbox.empty(),clearTimeout(FLBuilder._lightboxScrollbarTimeout)},_showActionsLightbox:function(e){var t=wp.template("fl-actions-lightbox");FLBuilder._actionsLightbox.open(t(e))},alert:function(e){var t=new FLLightbox({className:"fl-builder-lightbox fl-builder-alert-lightbox",destroyOnClose:!0}),l=wp.template("fl-alert-lightbox");t.open(l({message:e}))},_alertClose:function(){FLLightbox.closeParent(this)},log:function(e){"undefined"!=typeof window.console&&"undefined"!=typeof window.console.log&&console.log(e)},logError:function(e){var t=null;"undefined"!=typeof e&&("undefined"!=typeof e.stack?t=e.stack:"undefined"!=typeof e.message&&(t=e.message),t&&(FLBuilder.log("************************************************************************"),FLBuilder.log(FLBuilderStrings.errorMessage),FLBuilder.log(t),FLBuilder.log("************************************************************************")))},logGlobalError:function(e,t,l,i,o){FLBuilder.log("************************************************************************"),FLBuilder.log(FLBuilderStrings.errorMessage),FLBuilder.log(FLBuilderStrings.globalErrorMessage.replace("{message}",e).replace("{line}",l).replace("{file}",t)),"undefined"!=typeof o&&"undefined"!=typeof o.stack&&(FLBuilder.log(o.stack),FLBuilder.log("************************************************************************"))}},e(function(){FLBuilder._init()})}(jQuery);var FLBuilderColorPicker;!function(e,t){function l(){var t,l,i="backgroundImage";h?f="filter":(t=e('<div id="iris-gradtest" />'),l="linear-gradient(top,#fff,#000)",e.each(p,function(e,o){return t.css(i,o+l),t.css(i).match("gradient")?(f=e,!1):void 0}),f===!1&&(t.css("background","-webkit-gradient(linear,0% 0%,0% 100%,from(#fff),to(#000))"),t.css(this.bgImageString).match("gradient")&&(f="webkit")),t.remove())}function i(t,l){return t="top"===t?"top":"left",l=e.isArray(l)?l:Array.prototype.slice.call(arguments,1),"webkit"===f?s(t,l):p[f]+"linear-gradient("+t+", "+l.join(", ")+")"}function o(t,l){var i,o,s,n,a,d,u,c,h;t="top"===t?"top":"left",l=e.isArray(l)?l:Array.prototype.slice.call(arguments,1),i="top"===t?0:1,o=e(this),s=l.length-1,n="filter",a=1===i?"left":"top",d=1===i?"right":"bottom",u=1===i?"height":"width",c='<div class="iris-ie-gradient-shim" style="position:absolute;'+u+":100%;"+a+":%start%;"+d+":%end%;"+n+':%filter%;" data-color:"%color%"></div>',h="","static"===o.css("position")&&o.css({position:"relative"}),l=r(l),e.each(l,function(e,t){var o,r,n;return e===s?!1:(o=l[e+1],void(t.stop!==o.stop&&(r=100-parseFloat(o.stop)+"%",t.octoHex=new Color(t.color).toIEOctoHex(),o.octoHex=new Color(o.color).toIEOctoHex(),n="progid:DXImageTransform.Microsoft.Gradient(GradientType="+i+", StartColorStr='"+t.octoHex+"', EndColorStr='"+o.octoHex+"')",h+=c.replace("%start%",t.stop).replace("%end%",r).replace("%filter%",n))))}),o.find(".iris-ie-gradient-shim").remove(),e(h).prependTo(o)}function s(t,l){var i=[];return t="top"===t?"0% 0%,0% 100%,":"0% 100%,100% 100%,",l=r(l),e.each(l,function(e,t){i.push("color-stop("+parseFloat(t.stop)/100+", "+t.color+")")}),"-webkit-gradient(linear,"+t+i.join(",")+")"}function r(t){var l=[],i=[],o=[],s=t.length-1;return e.each(t,function(e,t){var o=t,s=!1,r=t.match(/1?[0-9]{1,2}%$/);r&&(o=t.replace(/\s?1?[0-9]{1,2}%$/,""),s=r.shift()),l.push(o),i.push(s)}),i[0]===!1&&(i[0]="0%"),i[s]===!1&&(i[s]="100%"),i=n(i),e.each(i,function(e){o[e]={color:l[e],stop:i[e]}}),o}function n(t){var l,i,o,s,r=0,a=t.length-1,d=0,u=!1;if(t.length<=2||e.inArray(!1,t)<0)return t;for(;d<t.length-1;)u||t[d]!==!1?u&&t[d]!==!1&&(a=d,d=t.length):(r=d-1,u=!0),d++;for(i=a-r,s=parseInt(t[r].replace("%"),10),l=(parseFloat(t[a].replace("%"))-s)/i,d=r+1,o=1;a>d;)t[d]=s+o*l+"%",o++,d++;return n(t)}var a=[],d=navigator.userAgent.toLowerCase(),u="Microsoft Internet Explorer"===navigator.appName,c=u?parseFloat(d.match(/msie ([0-9]{1,}[\.0-9]{0,})/)[1]):0,h=u&&10>c,f=!1,p=["-moz-","-webkit-","-o-","-ms-"];e.fn.gradient=function(){var t=arguments;return this.each(function(){h?o.apply(this,t):e(this).css("backgroundImage",i.apply(this,t))})},e.fn.raninbowGradient=function(t,l){var i,o,s,r;for(t=t||"top",i=e.extend({},{s:100,l:50},l),o="hsl(%h%,"+i.s+"%,"+i.l+"%)",s=0,r=[];360>=s;)r.push(o.replace("%h%",s)),s+=30;return this.each(function(){e(this).gradient(t,r)})},FLBuilderColorPicker=function(t){this._html='<div class="fl-color-picker-ui"><div class="iris-picker"><div class="iris-picker-inner"><div class="iris-square"><a class="iris-square-value" href="#"><span class="iris-square-handle ui-slider-handle"></span></a><div class="iris-square-inner iris-square-horiz"></div><div class="iris-square-inner iris-square-vert"></div></div><div class="iris-slider iris-strip"><div class="iris-slider-offset"></div></div></div></div></div>';var l={elements:null,color:"",mode:"hsl",controls:{horiz:"s",vert:"l",strip:"h"},target:!1,width:200,presets:[],labels:{colorPresets:"Color Presets",colorPicker:"Color Picker",placeholder:"Paste color here...",removePresetConfirm:"Are you sure?",noneColorSelected:"None color selected.",alreadySaved:"%s is already a saved preset.",noPresets:"Add a color preset first.",presetAdded:"%s added to presets!"}};this.options=e.extend({},l,t),(h===!1||h===!0&&c>7)&&this._init()},FLBuilderColorPicker.prototype={_html:"",_color:"",_currentElement:"",_inited:!1,_defaultHSLControls:{horiz:"s",vert:"l",strip:"h"},_defaultHSVControls:{horiz:"h",vert:"v",strip:"s"},_scale:{h:360,s:100,l:100,v:100},_init:function(){var t=this;e(t.options.elements);this._color=new Color("#000000").setHSpace(t.options.mode),a=this.options.presets,f===!1&&l(),e("html").hasClass("fl-color-picker-init")?t.picker=e(".fl-color-picker-ui"):t.picker=e(this._html).appendTo("body"),u?9===c?t.picker.addClass("iris-ie-9"):8>=c&&t.picker.addClass("iris-ie-lt9"):d.indexOf("compatible")<0&&d.indexOf("khtml")<0&&d.match(/mozilla/)&&t.picker.addClass("iris-mozilla"),t.controls={square:t.picker.find(".iris-square"),squareDrag:t.picker.find(".iris-square-value"),horiz:t.picker.find(".iris-square-horiz"),vert:t.picker.find(".iris-square-vert"),strip:t.picker.find(".iris-strip"),stripSlider:t.picker.find(".iris-strip .iris-slider-offset")},"hsv"===t.options.mode&&t._has("l",t.options.controls)?t.options.controls=t._defaultHSVControls:"hsl"===t.options.mode&&t._has("v",t.options.controls)&&(t.options.controls=t._defaultHSLControls),t.hue=t._color.h(),this._setTemplates(),this._ui=e(".fl-color-picker-ui"),this._iris=e(".iris-picker"),this._wrapper=e("body"),e("html").hasClass("fl-color-picker-init")||this._ui.prepend(this._hexHtml).append(this._presetsHtml),t.element=this._ui.find(".fl-color-picker-input"),t._initControls(),t.active="external",t._change(),t._addInputListeners(t.element),this._buildUI(),this._prepareColorFields(),this._pickerControls(),this._presetsControls(),e("html").addClass("fl-color-picker-init")},_prepareColorFields:function(){e(".fl-color-picker-value").each(function(){var t=e(this),l=t.parent().find(".fl-color-picker-color");t.val()&&l.css({backgroundColor:"#"+t.val().toString()})})},_setTemplates:function(){this._presetsHtml='<div class="fl-color-picker-presets"><div class="fl-color-picker-presets-toggle"><div class="fl-color-picker-presets-open-label fl-color-picker-active">'+this.options.labels.colorPresets+' <span class="fl-color-picker-icon-arrow-up"></span></div><div class="fl-color-picker-presets-close-label">'+this.options.labels.colorPicker+' <span class="fl-color-picker-icon-arrow-down"></span></div></div><ul class="fl-color-picker-presets-list"></ul></div>',this._hexHtml='<input type="text" class="fl-color-picker-input" maxlength="7" placeholder="'+this.options.labels.placeholder+'"><div class="fl-color-picker-preset-add"></div>',this._presetsTpl='<li class="fl-color-picker-preset"><span class="fl-color-picker-preset-color"></span> <span class="fl-color-picker-preset-label"></span> <span class="fl-color-picker-preset-remove fl-color-picker-icon-remove"></span></li>',this._noPresetsTpl='<li class="fl-color-picker-no-preset"><span class="fl-color-picker-preset-label">'+this.options.labels.noPresets+"</span></li>"},_has:function(t,l){var i=!1;return e.each(l,function(e,l){return t===l?(i=!0,!1):void 0}),i},_buildUI:function(){var t=this;t._presetsList=this._ui.find(".fl-color-picker-presets-list"),
5
  t._presetsList.html(""),this.options.presets.length>0?e.each(this.options.presets,function(e,l){t._addPresetView(l)}):t._presetsList.append(this._noPresetsTpl)},_addPresetView:function(t){var l=this._presetsList.find(".fl-color-picker-no-preset");l.length>0&&l.remove();var i=e(this._presetsTpl),o=Color(t);i.attr("data-color",t).find(".fl-color-picker-preset-color").css({backgroundColor:o.toString()}).end().find(".fl-color-picker-preset-label").html(o.toString()),this._presetsList.append(i)},_addPresetFeedback:function(){this._ui.append('<div class="fl-color-picker-added"><div class="fl-color-picker-added-text"><div class="fl-color-picker-icon-check"></div> "'+this.options.labels.presetAdded.replace("%s",this._color.toString())+'"</div></div>'),this._ui.find(".fl-color-picker-added").hide().fadeIn(200).delay(2e3).fadeOut(200,function(){e(this).remove()})},_pickerControls:function(){var t=this;this._wrapper.on("click",".fl-color-picker-color",function(){var l=e(this);t._currentElement=l.parent().find(".fl-color-picker-value"),t._ui.position({my:"left top",at:"left bottom",of:l,collision:"flipfit",using:function(e,l){t._togglePicker(e)}})}).on("click",".fl-color-picker-clear",function(){var l=e(this);t._currentElement=l.parent().find(".fl-color-picker-value"),l.prev(".fl-color-picker-color").css({backgroundColor:"transparent"}).addClass("fl-color-picker-empty"),t._setColor(""),t.element.val(""),t._currentElement.val("").trigger("change")}),e(document).on("click",function(t){0===e(t.target).closest(".fl-color-picker-ui").length&&e(".fl-color-picker-ui.fl-color-picker-active").removeClass("fl-color-picker-active")})},_presetsControls:function(){var t=this,l=t._ui.find(".fl-color-picker-preset-add"),i=t._ui.find(".fl-color-picker-presets"),o=i.find(".fl-color-picker-presets-open-label"),s=i.find(".fl-color-picker-presets-close-label"),r=i.find(".fl-color-picker-presets-list");l.off("click").on("click",function(){t._addPreset(t.element.val())}),r.css({height:t.element.innerHeight()+t._iris.innerHeight()+14+"px"}).hide(),i.off("click").on("click",".fl-color-picker-presets-toggle",function(){o.toggleClass("fl-color-picker-active"),s.toggleClass("fl-color-picker-active"),r.slideToggle(500)}).on("click",".fl-color-picker-preset",function(l){var i=new Color(e(this).data("color").toString());t._setColor(i),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:i.toString()}).removeClass("fl-color-picker-empty"),o.toggleClass("fl-color-picker-active"),s.toggleClass("fl-color-picker-active"),r.slideToggle(500)}).on("click",".fl-color-picker-preset-remove",function(l){l.stopPropagation(),t._removePreset(e(this).parent().data("color"))})},_removePreset:function(t){if(confirm(this.options.labels.removePresetConfirm)){var l=t.toString(),i=a.indexOf(l);i>-1&&(a.splice(i,1),this.options.presets=a,this._presetsList.find('.fl-color-picker-preset[data-color="'+l+'"]').slideUp(function(){e(this).remove()})),a.length<1&&this._presetsList.append(this._noPresetsTpl),e(this).trigger("presetRemoved",{presets:a})}},_addPreset:function(t){var l=t.toString().replace(/^#/,"");""===l?alert(this.options.labels.noneColorSelected):a.indexOf(l)>-1?alert(this.options.labels.alreadySaved.replace("%s","#"+l)):(this._addPresetView(l),this._addPresetFeedback(),a.push(l),this.options.presets=a,e(this).trigger("presetAdded",{presets:a}))},_togglePicker:function(e){var t=this;this._ui.hasClass("fl-color-picker-active")?(this._ui.removeClass("fl-color-picker-active"),e&&setTimeout(function(){t._ui.css(e),t._ui.addClass("fl-color-picker-active"),t._setColor(t._currentElement.val())},200)):(e&&t._ui.css(e),setTimeout(function(){t._ui.addClass("fl-color-picker-active"),t._setColor(t._currentElement.val())},200))},_paint:function(){var e=this;e._paintDimension("right","strip"),e._paintDimension("top","vert"),e._paintDimension("left","horiz")},_paintDimension:function(e,t){var l,i=this,o=i._color,s=i.options.mode,r=i._getHSpaceColor(),n=i.controls[t],a=i.options.controls;if(t!==i.active&&("square"!==i.active||"strip"===t))switch(a[t]){case"h":if("hsv"===s){switch(r=o.clone(),t){case"horiz":r[a.vert](100);break;case"vert":r[a.horiz](100);break;case"strip":r.setHSpace("hsl")}l=r.toHsl()}else l="strip"===t?{s:r.s,l:r.l}:{s:100,l:r.l};n.raninbowGradient(e,l);break;case"s":"hsv"===s?"vert"===t?l=[o.clone().a(0).s(0).toCSS("rgba"),o.clone().a(1).s(0).toCSS("rgba")]:"strip"===t?l=[o.clone().s(100).toCSS("hsl"),o.clone().s(0).toCSS("hsl")]:"horiz"===t&&(l=["#fff","hsl("+r.h+",100%,50%)"]):l="vert"===t&&"h"===i.options.controls.horiz?["hsla(0, 0%, "+r.l+"%, 0)","hsla(0, 0%, "+r.l+"%, 1)"]:["hsl("+r.h+",0%,50%)","hsl("+r.h+",100%,50%)"],n.gradient(e,l);break;case"l":l="strip"===t?["hsl("+r.h+",100%,100%)","hsl("+r.h+", "+r.s+"%,50%)","hsl("+r.h+",100%,0%)"]:["#fff","rgba(255,255,255,0) 50%","rgba(0,0,0,0) 50%","rgba(0,0,0,1)"],n.gradient(e,l);break;case"v":l="strip"===t?[o.clone().v(100).toCSS(),o.clone().v(0).toCSS()]:["rgba(0,0,0,0)","#000"],n.gradient(e,l)}},_getHSpaceColor:function(){return"hsv"===this.options.mode?this._color.toHsv():this._color.toHsl()},_addInputListeners:function(e){var t=this,l=100,i=function(l){var i=new Color(e.val()),o=e.val().replace(/^#/,"");if(e.removeClass("iris-error"),i.error)""!==o&&e.addClass("iris-error");else if(i.toString()!==t._color.toString())if("keyup"===l.type){if(o.match(/^[0-9a-fA-F]{3}$/))return;t._setColor(o),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:Color(o).toString()}).removeClass("fl-color-picker-empty"),t._currentElement.val(o).trigger("change")}else if("paste"===l.type)return o=l.originalEvent.clipboardData.getData("text").replace(/^#/,""),hex=Color(o).toString(),t._setColor(o),e.val(hex),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:hex}).removeClass("fl-color-picker-empty"),t._currentElement.val(o).trigger("change"),!1};e.on("change",i).on("keyup",t._debounce(i,l))},_initControls:function(){var t=this,l=t.controls,i=l.square,o=t.options.controls,s=t._scale[o.strip];l.stripSlider.slider({orientation:"horizontal",max:s,slide:function(e,l){t.active="strip","h"===o.strip&&(l.value=s-l.value),t._color[o.strip](l.value),t._change.apply(t,arguments)}}),l.squareDrag.draggable({containment:l.square.find(".iris-square-inner"),zIndex:1e3,cursor:"move",drag:function(e,l){t._squareDrag(e,l)},start:function(){i.addClass("iris-dragging"),e(this).addClass("ui-state-focus")},stop:function(){i.removeClass("iris-dragging"),e(this).removeClass("ui-state-focus")}}).on("mousedown mouseup",function(l){var i="ui-state-focus";l.preventDefault(),"mousedown"===l.type?(t.picker.find("."+i).removeClass(i).blur(),e(this).addClass(i).focus()):e(this).removeClass(i)}).on("keydown",function(e){var i=l.square,o=l.squareDrag,s=o.position(),r=2;switch(e.altKey&&(r*=10),e.keyCode){case 37:s.left-=r;break;case 38:s.top-=r;break;case 39:s.left+=r;break;case 40:s.top+=r;break;default:return!0}s.left=Math.max(0,Math.min(s.left,i.width())),s.top=Math.max(0,Math.min(s.top,i.height())),o.css(s),t._squareDrag(e,{position:s}),e.preventDefault()}),i.mousedown(function(l){var i,o;1===l.which&&e(l.target).is("div")&&(i=t.controls.square.offset(),o={top:l.pageY-i.top,left:l.pageX-i.left},l.preventDefault(),t._squareDrag(l,{position:o}),l.target=t.controls.squareDrag.get(0),t.controls.squareDrag.css(o).trigger(l))})},_squareDrag:function(e,t){var l=this,i=l.options.controls,o=l._squareDimensions(),s=Math.round((o.h-t.position.top)/o.h*l._scale[i.vert]),r=l._scale[i.horiz]-Math.round((o.w-t.position.left)/o.w*l._scale[i.horiz]);l._color[i.horiz](r)[i.vert](s),l.active="square",l._change.apply(l,arguments)},_setColor:function(e){var t,l,i=this,o=i.options.color;i.options.color=e,e=""+e,t=e.replace(/^#/,""),l=new Color(e).setHSpace(i.options.mode),l.error?i.options.color=o:(i._color=l,i.options.color=i._color.toString(),i.active="external",i._change())},_squareDimensions:function(e){var l,i,o=this.controls.square;return e!==t&&o.data("dimensions")?o.data("dimensions"):(i=this.controls.squareDrag,l={w:o.width(),h:o.height()},o.data("dimensions",l),l)},_isNonHueControl:function(e,t){return"square"===e&&"h"===this.options.controls.strip?!0:"external"===t||"h"===t&&"strip"===e?!1:!0},_change:function(){var t=this,l=t.controls,i=t._getHSpaceColor(),o=["square","strip"],s=t.options.controls,r=s[t.active]||"external",n=t.hue;"strip"===t.active?o=[]:"external"!==t.active&&o.pop(),e.each(o,function(e,o){var r,n,a;if(o!==t.active)switch(o){case"strip":r="h"===s.strip?t._scale[s.strip]-i[s.strip]:i[s.strip],l.stripSlider.slider("value",r);break;case"square":n=t._squareDimensions(),a={left:i[s.horiz]/t._scale[s.horiz]*n.w,top:n.h-i[s.vert]/t._scale[s.vert]*n.h},t.controls.squareDrag.css(a)}}),i.h!==n&&t._isNonHueControl(t.active,r)&&t._color.h(n),t.hue=t._color.h(),t.options.color=t._color.toString(),t.element.is(":input")&&!t._color.error&&(t.element.removeClass("iris-error"),t.element.val()!==t._color.toString()&&(t.element.val(t._color.toString()),this._currentElement&&(this._currentElement.val(t._color.toString().replace(/^#/,"")).parent().find(".fl-color-picker-color").css({backgroundColor:t._color.toString()}).removeClass("fl-color-picker-empty"),this._currentElement.trigger("change")))),t._paint(),t._inited=!0,t.active=!1},_debounce:function(e,t,l){var i,o;return function(){var s,r,n=this,a=arguments;return s=function(){i=null,l||(o=e.apply(n,a))},r=l&&!i,clearTimeout(i),i=setTimeout(s,t),r&&(o=e.apply(n,a)),o}}}}(jQuery),function(e,t){var l=function(e,t){return this instanceof l?this._init(e,t):new l(e,t)};l.fn=l.prototype={_color:0,_alpha:1,error:!1,_hsl:{h:0,s:0,l:0},_hsv:{h:0,s:0,v:0},_hSpace:"hsl",_init:function(e){var l="noop";switch(typeof e){case"object":return e.a!==t&&this.a(e.a),l=e.r!==t?"fromRgb":e.l!==t?"fromHsl":e.v!==t?"fromHsv":l,this[l](e);case"string":return this.fromCSS(e);case"number":return this.fromInt(parseInt(e,10))}return this},_error:function(){return this.error=!0,this},clone:function(){for(var e=new l(this.toInt()),t=["_alpha","_hSpace","_hsl","_hsv","error"],i=t.length-1;i>=0;i--)e[t[i]]=this[t[i]];return e},setHSpace:function(e){return this._hSpace="hsv"===e?e:"hsl",this},noop:function(){return this},fromCSS:function(e){var t,l=/^(rgb|hs(l|v))a?\(/;if(this.error=!1,e=e.replace(/^\s+/,"").replace(/\s+$/,"").replace(/;$/,""),e.match(l)&&e.match(/\)$/)){if(t=e.replace(/(\s|%)/g,"").replace(l,"").replace(/,?\);?$/,"").split(","),t.length<3)return this._error();if(4===t.length&&(this.a(parseFloat(t.pop())),this.error))return this;for(var i=t.length-1;i>=0;i--)if(t[i]=parseInt(t[i],10),isNaN(t[i]))return this._error();return e.match(/^rgb/)?this.fromRgb({r:t[0],g:t[1],b:t[2]}):e.match(/^hsv/)?this.fromHsv({h:t[0],s:t[1],v:t[2]}):this.fromHsl({h:t[0],s:t[1],l:t[2]})}return this.fromHex(e)},fromRgb:function(e,l){return"object"!=typeof e||e.r===t||e.g===t||e.b===t?this._error():(this.error=!1,this.fromInt(parseInt((e.r<<16)+(e.g<<8)+e.b,10),l))},fromHex:function(e){return e=e.replace(/^#/,"").replace(/^0x/,""),3===e.length&&(e=e[0]+e[0]+e[1]+e[1]+e[2]+e[2]),this.error=!/^[0-9A-F]{6}$/i.test(e),this.fromInt(parseInt(e,16))},fromHsl:function(e){var l,i,o,s,r,n,a,d;return"object"!=typeof e||e.h===t||e.s===t||e.l===t?this._error():(this._hsl=e,this._hSpace="hsl",n=e.h/360,a=e.s/100,d=e.l/100,0===a?l=i=o=d:(s=.5>d?d*(1+a):d+a-d*a,r=2*d-s,l=this.hue2rgb(r,s,n+1/3),i=this.hue2rgb(r,s,n),o=this.hue2rgb(r,s,n-1/3)),this.fromRgb({r:255*l,g:255*i,b:255*o},!0))},fromHsv:function(e){var l,i,o,s,r,n,a,d,u,c,h;if("object"!=typeof e||e.h===t||e.s===t||e.v===t)return this._error();switch(this._hsv=e,this._hSpace="hsv",l=e.h/360,i=e.s/100,o=e.v/100,a=Math.floor(6*l),d=6*l-a,u=o*(1-i),c=o*(1-d*i),h=o*(1-(1-d)*i),a%6){case 0:s=o,r=h,n=u;break;case 1:s=c,r=o,n=u;break;case 2:s=u,r=o,n=h;break;case 3:s=u,r=c,n=o;break;case 4:s=h,r=u,n=o;break;case 5:s=o,r=u,n=c}return this.fromRgb({r:255*s,g:255*r,b:255*n},!0)},fromInt:function(e,l){return this._color=parseInt(e,10),isNaN(this._color)&&(this._color=0),this._color>16777215?this._color=16777215:this._color<0&&(this._color=0),l===t&&(this._hsv.h=this._hsv.s=this._hsl.h=this._hsl.s=0),this},hue2rgb:function(e,t,l){return 0>l&&(l+=1),l>1&&(l-=1),1/6>l?e+6*(t-e)*l:.5>l?t:2/3>l?e+(t-e)*(2/3-l)*6:e},toString:function(){var e=parseInt(this._color,10).toString(16);if(this.error)return"";if(e.length<6)for(var t=6-e.length-1;t>=0;t--)e="0"+e;return"#"+e},toCSS:function(e,t){switch(e=e||"hex",t=parseFloat(t||this._alpha),e){case"rgb":case"rgba":var l=this.toRgb();return 1>t?"rgba( "+l.r+", "+l.g+", "+l.b+", "+t+" )":"rgb( "+l.r+", "+l.g+", "+l.b+" )";case"hsl":case"hsla":var i=this.toHsl();return 1>t?"hsla( "+i.h+", "+i.s+"%, "+i.l+"%, "+t+" )":"hsl( "+i.h+", "+i.s+"%, "+i.l+"% )";default:return this.toString()}},toRgb:function(){return{r:255&this._color>>16,g:255&this._color>>8,b:255&this._color}},toHsl:function(){var e,t,l=this.toRgb(),i=l.r/255,o=l.g/255,s=l.b/255,r=Math.max(i,o,s),n=Math.min(i,o,s),a=(r+n)/2;if(r===n)e=t=0;else{var d=r-n;switch(t=a>.5?d/(2-r-n):d/(r+n),r){case i:e=(o-s)/d+(s>o?6:0);break;case o:e=(s-i)/d+2;break;case s:e=(i-o)/d+4}e/=6}return e=Math.round(360*e),0===e&&this._hsl.h!==e&&(e=this._hsl.h),t=Math.round(100*t),0===t&&this._hsl.s&&(t=this._hsl.s),{h:e,s:t,l:Math.round(100*a)}},toHsv:function(){var e,t,l=this.toRgb(),i=l.r/255,o=l.g/255,s=l.b/255,r=Math.max(i,o,s),n=Math.min(i,o,s),a=r,d=r-n;if(t=0===r?0:d/r,r===n)e=t=0;else{switch(r){case i:e=(o-s)/d+(s>o?6:0);break;case o:e=(s-i)/d+2;break;case s:e=(i-o)/d+4}e/=6}return e=Math.round(360*e),0===e&&this._hsv.h!==e&&(e=this._hsv.h),t=Math.round(100*t),0===t&&this._hsv.s&&(t=this._hsv.s),{h:e,s:t,v:Math.round(100*a)}},toInt:function(){return this._color},toIEOctoHex:function(){var e=this.toString(),t=parseInt(255*this._alpha,10).toString(16);return 1===t.length&&(t="0"+t),"#"+t+e.replace(/^#/,"")},toLuminosity:function(){var e=this.toRgb();return.2126*Math.pow(e.r/255,2.2)+.7152*Math.pow(e.g/255,2.2)+.0722*Math.pow(e.b/255,2.2)},getDistanceLuminosityFrom:function(e){if(!(e instanceof l))throw"getDistanceLuminosityFrom requires a Color object";var t=this.toLuminosity(),i=e.toLuminosity();return t>i?(t+.05)/(i+.05):(i+.05)/(t+.05)},getMaxContrastColor:function(){var e=this.toLuminosity(),t=e>=.5?"000000":"ffffff";return new l(t)},getReadableContrastingColor:function(e,i){if(!(e instanceof l))return this;var o=i===t?5:i,s=e.getDistanceLuminosityFrom(this),r=e.getMaxContrastColor(),n=r.getDistanceLuminosityFrom(e);if(o>=n)return r;if(s>=o)return this;for(var a=0===r.toInt()?-1:1;o>s&&(this.l(a,!0),s=this.getDistanceLuminosityFrom(e),0!==this._color&&16777215!==this._color););return this},a:function(e){if(e===t)return this._alpha;var l=parseFloat(e);return isNaN(l)?this._error():(this._alpha=l,this)},darken:function(e){return e=e||5,this.l(-e,!0)},lighten:function(e){return e=e||5,this.l(e,!0)},saturate:function(e){return e=e||15,this.s(e,!0)},desaturate:function(e){return e=e||15,this.s(-e,!0)},toGrayscale:function(){return this.setHSpace("hsl").s(0)},getComplement:function(){return this.h(180,!0)},getSplitComplement:function(e){e=e||1;var t=180+30*e;return this.h(t,!0)},getAnalog:function(e){e=e||1;var t=30*e;return this.h(t,!0)},getTetrad:function(e){e=e||1;var t=60*e;return this.h(t,!0)},getTriad:function(e){e=e||1;var t=120*e;return this.h(t,!0)},_partial:function(e){var l=i[e];return function(i,o){var s=this._spaceFunc("to",l.space);return i===t?s[e]:(o===!0&&(i=s[e]+i),l.mod&&(i%=l.mod),l.range&&(i=i<l.range[0]?l.range[0]:i>l.range[1]?l.range[1]:i),s[e]=i,this._spaceFunc("from",l.space,s))}},_spaceFunc:function(e,t,l){var i=t||this._hSpace,o=e+i.charAt(0).toUpperCase()+i.substr(1);return this[o](l)}};var i={h:{mod:360},s:{range:[0,100]},l:{space:"hsl",range:[0,100]},v:{space:"hsv",range:[0,100]},r:{space:"rgb",range:[0,255]},g:{space:"rgb",range:[0,255]},b:{space:"rgb",range:[0,255]}};for(var o in i)i.hasOwnProperty(o)&&(l.fn[o]=l.fn._partial(o));"object"==typeof exports?module.exports=l:e.Color=l}(this),function(e){FLIconSelector={_content:null,_lightbox:null,_rendered:!1,_filterText:"",open:function(e){FLIconSelector._rendered||FLIconSelector._render(),null===FLIconSelector._content?(FLIconSelector._lightbox.open('<div class="fl-builder-lightbox-loading"></div>'),FLBuilder.ajax({action:"render_icon_selector"},FLIconSelector._getContentComplete)):FLIconSelector._lightbox.open(),FLIconSelector._lightbox.on("icon-selected",function(t,l){FLIconSelector._lightbox.off("icon-selected"),FLIconSelector._lightbox.close(),e(l)})},_render:function(){FLIconSelector._lightbox=new FLLightbox({className:"fl-icon-selector"}),FLIconSelector._rendered=!0},_getContentComplete:function(t){var l=JSON.parse(t);FLIconSelector._content=l.html,FLIconSelector._lightbox.setContent(l.html),e(".fl-icons-filter-select").on("change",FLIconSelector._filter),e(".fl-icons-filter-text").on("keyup",FLIconSelector._filter),e(".fl-icons-list i").on("click",FLIconSelector._select),e(".fl-icon-selector-cancel").on("click",e.proxy(FLIconSelector._lightbox.close,FLIconSelector._lightbox))},_filter:function(){var t=e(".fl-icons-filter-select").val(),l=e(".fl-icons-filter-text").val();"all"==t?e(".fl-icons-section").show():(e(".fl-icons-section").hide(),e(".fl-"+t).show()),FLIconSelector._filterText=l,""!==l?e(".fl-icons-list i").each(FLIconSelector._filterIcon):e(".fl-icons-list i").show()},_filterIcon:function(){var t=e(this);-1==t.attr("class").indexOf(FLIconSelector._filterText)?t.hide():t.show()},_select:function(){var t=e(this).attr("class");FLIconSelector._lightbox.trigger("icon-selected",t)}}}(jQuery),function(e){FLLightbox=function(e){this._init(e),this._render(),this._bind()},FLLightbox.closeParent=function(t){var l=e(t).closest(".fl-lightbox-wrap").attr("data-instance-id");FLLightbox._instances[l].close()},FLLightbox._instances={},FLLightbox.prototype={_id:null,_node:null,_visible:!1,_resizeTimer:null,_draggable:!1,_defaults:{className:"",destroyOnClose:!1},open:function(e){this._node.show(),this._visible=!0,"undefined"!=typeof e?this.setContent(e):this._resize(),this.trigger("open")},close:function(){this._node.hide(),this._visible=!1,this.trigger("close"),this._defaults.destroyOnClose&&this.destroy()},setContent:function(e){this._node.find(".fl-lightbox-content").html(e),this._resize()},empty:function(){this._node.find(".fl-lightbox-content").empty()},on:function(e,t){this._node.on(e,t)},off:function(e){this._node.off(e)},trigger:function(e,t){this._node.trigger(e,t)},draggable:function(e){var t=this._node.find(".fl-lightbox-mask"),l=this._node.find(".fl-lightbox");e="undefined"==typeof e?!1:e,this._draggable&&l.draggable("destroy"),e?(this._unbind(),this._draggable=!0,t.hide(),l.draggable({cursor:"move",handle:e.handle||""})):(t.show(),this._bind(),this._draggable=!1),this._resize()},destroy:function(){e(window).off("resize.fl-lightbox-"+this._id),this._node.empty(),this._node.remove(),FLLightbox._instances[this._id]="undefined";try{delete FLLightbox._instances[this._id]}catch(t){}},_init:function(t){var l=0,i=null;for(i in FLLightbox._instances)l++;this._defaults=e.extend({},this._defaults,t),this._id=(new Date).getTime()+l,FLLightbox._instances[this._id]=this},_render:function(){this._node=e('<div class="fl-lightbox-wrap" data-instance-id="'+this._id+'"><div class="fl-lightbox-mask"></div><div class="fl-lightbox"><div class="fl-lightbox-content-wrap"><div class="fl-lightbox-content"></div></div></div></div>'),this._node.addClass(this._defaults.className),e("body").append(this._node)},_bind:function(){e(window).on("resize.fl-lightbox-"+this._id,e.proxy(this._delayedResize,this))},_unbind:function(){e(window).off("resize.fl-lightbox-"+this._id)},_delayedResize:function(){clearTimeout(this._resizeTimer),this._resizeTimer=setTimeout(e.proxy(this._resize,this),250)},_resize:function(){if(this._visible){var t=this._node.find(".fl-lightbox"),l=t.height(),i=t.width(),o=e(window),s=o.height(),r=o.width(),n="0px",a=(r-i)/2-30+"px";t.css({margin:"0px",top:"auto",left:"auto"}),s-80>l&&(n=(s-l)/2-40+"px"),this._draggable?(t.css("top",n),t.css("left",FLBuilderConfig.isRtl?"-"+a:a)):(t.css("margin-top",n),t.css("margin-left","auto"),t.css("margin-right","auto"))}},_onKeypress:function(e){27==e.which&&this._visible&&this.close()}}}(jQuery),function(e){FLStyleSheet=function(){},FLStyleSheet.prototype={_sheet:null,_sheetElement:null,updateRule:function(e,t,l){this._createSheet();for(var i=this._sheet.cssRules?this._sheet.cssRules:this._sheet.rules,o=null,s=0;s<i.length;s++)i[s].selectorText.toLowerCase()==e.toLowerCase()&&(o=i[s]);if(o)if("object"==typeof t)for(s in t)o.style[this._toCamelCase(s)]=t[s];else o.style[this._toCamelCase(t)]=l;else this.addRule(e,t,l)},addRule:function(e,t,l){this._createSheet();var i="",o="";if("object"==typeof t)for(o in t)i+=o+":"+t[o]+";";else i=t+":"+l+";";this._sheet.insertRule?this._sheet.insertRule(e+" { "+i+" }",this._sheet.cssRules.length):this._sheet.addRule(e,i)},remove:function(){this._sheetElement&&(this._sheetElement.remove(),this._sheetElement=null),this._sheet&&(this._sheet=null)},_createSheet:function(){this._sheet||(this._sheetElement=e('<style type="text/css"></style>'),e("body").append(this._sheetElement),this._sheet=this._sheetElement[0].sheet)},_toCamelCase:function(e){return e.toLowerCase().replace(/-(.)/g,function(e,t){return t.toUpperCase()})}}}(jQuery);
1
+ !function(e){FLBuilderAJAXLayout=function(t,l){this._data=e.extend({},this._defaults,"string"==typeof t?JSON.parse(t):t),this._callback=l,this._post=e("#fl-post-id").val(),this._head=e("head").eq(0),this._body=e("body").eq(0),this._data.css&&(this._loader=e('<img src="'+this._data.css+'" />'),this._oldCss=e('link[href*="/cache/'+this._post+'"]'),this._newCss=e('<link rel="stylesheet" id="fl-builder-layout-'+this._post+'-css" href="'+this._data.css+'" />')),this._data.partial?(this._data.js&&(this._oldJs=e("#fl-builder-partial-refresh-js"),this._newJs=e('<script type="text/javascript" id="fl-builder-partial-refresh-js">'+this._data.js+"</script>")),this._data.nodeId&&(this._data.oldNodeId?(this._oldScriptsStyles=e('.fl-builder-node-scripts-styles[data-node="'+this._data.oldNodeId+'"]'),this._content=e(".fl-node-"+this._data.oldNodeId)):(this._oldScriptsStyles=e('.fl-builder-node-scripts-styles[data-node="'+this._data.nodeId+'"]'),this._content=e(".fl-node-"+this._data.nodeId)))):(this._oldJs=e('script[src*="/cache/'+this._post+'"]'),this._newJs=e('<script src="'+this._data.js+'"></script>'),this._oldScriptsStyles=e(".fl-builder-layout-scripts-styles"),this._content=e(FLBuilder._contentClass)),this._init()},FLBuilderAJAXLayout.prototype={_defaults:{partial:!1,nodeId:null,nodeType:null,nodeParent:null,nodePosition:null,oldNodeId:null,html:null,scriptsStyles:null,css:null,js:null},_data:null,_callback:function(){},_post:null,_head:null,_body:null,_loader:null,_oldCss:null,_newCss:null,_oldJs:null,_newJs:null,_oldScriptsStyles:null,_content:null,_init:function(){this._body.height(this._body.height()),this._loader?(this._loader.on("error",e.proxy(this._loadNewCSSComplete,this)),this._body.append(this._loader)):this._finish()},_loadNewCSSComplete:function(){this._loader.remove(),this._oldCss.length>0?this._oldCss.after(this._newCss):this._head.append(this._newCss),setTimeout(e.proxy(this._finish,this),250)},_finish:function(){this._removeOldContentAndAssets(),this._cleanNewHTML(),this._cleanNewAssets(),this._addNewHTML(),this._addNewScriptsStyles(),this._addNewJS(),e(FLBuilder._contentClass).trigger("fl-builder.layout-rendered"),FLBuilder.hideAjaxLoader(),"undefined"!=typeof this._callback&&this._callback()},_removeOldContentAndAssets:function(){this._content&&this._content.empty(),this._oldCss&&this._oldCss.remove(),this._oldJs&&this._oldJs.remove(),this._oldScriptsStyles&&this._oldScriptsStyles.remove()},_cleanNewHTML:function(){if(this._data.scriptsStyles){var t=e("<div>"+this._data.html+"</div>"),l="fl-row",i=this._data.scriptsStyles,o="";this._data.partial&&(l="column-group"==this._data.nodeType?"fl-col-group":"column"==this._data.nodeType?"fl-col":"fl-"+this._data.nodeType),t.find("> *, script").each(function(){e(this).hasClass(l)||(o=e(this).remove(),i+=o[0].outerHTML)}),""!==i&&(i=this._data.partial?'<div class="fl-builder-node-scripts-styles" data-node="'+this._data.nodeId+'">'+i+"<div>":'<div class="fl-builder-node-scripts-styles">'+i+"<div>"),this._data.html=t.html(),this._data.scriptsStyles=i}},_addNewHTML:function(){var e;this._data.partial?this._data.nodeParent?(e=this._data.nodeParent.hasClass("fl-builder-content")?this._data.nodeParent.find(".fl-row"):this._data.nodeParent.hasClass("fl-row-content")?this._data.nodeParent.find(".fl-col-group"):this._data.nodeParent.find(".fl-module"),0===e.length||e.length==this._data.nodePosition?this._data.nodeParent.append(this._data.html):e.eq(this._data.nodePosition).before(this._data.html)):(this._content.after(this._data.html),this._content.remove()):this._content.append(this._data.html)},_cleanNewAssets:function(){var t=this;this._data.html=this._removeDuplicateAssets(this._data.html),this._data.scriptsStyles&&""!==this._data.scriptsStyles&&(this._data.scriptsStyles=this._removeDuplicateAssets(this._data.scriptsStyles)),this._data.partial?e(".fl-builder-node-scripts-styles").each(function(){t._data.html.indexOf("fl-node-"+e(this).data("node"))>-1&&e(this).remove()}):(e("#fl-builder-partial-refresh-js").remove(),e(".fl-builder-node-scripts-styles").remove())},_removeDuplicateAssets:function(t){var l=e("<div>"+t+"</div>"),i="",o=null,s="",r=null,n=window.location,a=n.protocol+"//"+n.hostname+(n.port?":"+n.port:"");return l.find("script").each(function(){i=e(this).attr("src"),"undefined"!=typeof i&&(i=i.replace(a,""),o=e('script[src*="'+i+'"]'),o.length>0&&e(this).remove())}),l.find("link").each(function(){s=e(this).attr("href"),"undefined"!=typeof s&&(s=s.replace(a,""),r=e('link[href*="'+s+'"]'),r.length>0&&e(this).remove())}),l.html()},_addNewScriptsStyles:function(){this._data.scriptsStyles&&""!==this._data.scriptsStyles&&this._body.append(this._data.scriptsStyles)},_addNewJS:function(){setTimeout(e.proxy(function(){this._newJs&&this._head.append(this._newJs)},this),50)},_complete:function(){FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._initSortables(),FLBuilder._resizeLayout(),FLBuilder._initMediaElements(),FLBuilderLayout.init(),this._body.height("auto")}}}(jQuery),function(e){FLBuilderPreview=function(t){this.type=t.type,"undefined"!=t.state&&t.state?this.state=t.state:this._saveState(),"undefined"!=t.layout&&t.layout?FLBuilder._renderLayout(t.layout,e.proxy(this._init,this)):this._init()},FLBuilderPreview._fontsList={},FLBuilderPreview.prototype={type:"",nodeId:null,classes:{},elements:{},state:null,_savedSettings:null,_styleSheet:null,_timeout:null,_lastClassName:null,_xhr:null,_init:function(){switch(this.nodeId=e(".fl-builder-settings").data("node"),this._saveSettings(),this._initElementsAndClasses(),this._initDefaultFieldPreviews(),this.type){case"row":this._initRow();break;case"col":this._initColumn();break;case"module":this._initModule()}},_saveSettings:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings");this._savedSettings=FLBuilder._getSettings(t)},_settingsHaveChanged:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=FLBuilder._getSettings(t);return JSON.stringify(this._savedSettings)!=JSON.stringify(l)},_initElementsAndClasses:function(){var t;t="row"==this.type?".fl-row-content-wrap":".fl-"+this.type+"-content",e.extend(this.classes,{settings:".fl-builder-"+this.type+"-settings",settingsHeader:".fl-builder-"+this.type+"-settings .fl-lightbox-header",node:FLBuilder._contentClass+" .fl-node-"+this.nodeId,content:FLBuilder._contentClass+" .fl-node-"+this.nodeId+" "+t}),e.extend(this.elements,{settings:e(this.classes.settings),settingsHeader:e(this.classes.settingsHeader),node:e(this.classes.node),content:e(this.classes.content)})},updateCSSRule:function(e,t,l){this._styleSheet||(this._styleSheet=new FLStyleSheet),this._styleSheet.updateRule(e,t,l)},delay:function(e,t){this._cancelDelay(),this._timeout=setTimeout(t,e)},_cancelDelay:function(){null!==this._timeout&&clearTimeout(this._timeout)},hexToRgb:function(e){var t=parseInt(e,16),l=t>>16&255,i=t>>8&255,o=255&t;return[l,i,o]},parseFloat:function(e){return isNaN(parseFloat(e))?0:parseFloat(e)},_saveState:function(){var t=e("#fl-post-id").val(),l=e('link[href*="/cache/'+t+'"]').attr("href"),i=e('script[src*="/cache/'+t+'"]').attr("src"),o=e(FLBuilder._contentClass).html();this.state={css:l,js:i,html:o}},preview:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.attr("data-node"),i=FLBuilder._getSettings(t);this._cancelPreview(),this._xhr=FLBuilder.ajax({action:"render_layout",node_id:l,node_preview:i},e.proxy(this._renderPreview,this))},delayPreview:function(t){var l="undefined"==typeof t?[]:e(t.target).closest("tr").find("th"),i=e(".fl-builder-widget-settings .fl-builder-settings-title"),o=e(".fl-builder-settings .fl-lightbox-header"),s=FLBuilderLayoutConfig.paths.pluginUrl+"img/ajax-loader-small.gif",r=e('<img class="fl-builder-preview-loader" src="'+s+'" />');e(".fl-builder-preview-loader").remove(),l.length>0?l.append(r):i.length>0?i.append(r):o.length>0&&o.append(r),this.delay(1e3,e.proxy(this.preview,this))},_cancelPreview:function(){this._xhr&&(this._xhr.abort(),this._xhr=null)},_renderPreview:function(t){this._xhr=null,FLBuilder._renderLayout(t,e.proxy(this._renderPreviewComplete,this))},_renderPreviewComplete:function(){this._initElementsAndClasses(),e(".fl-builder-preview-loader").remove(),e(FLBuilder._contentClass).trigger("fl-builder.preview-rendered")},revert:function(){this._cancelDelay(),this._cancelPreview(),this._styleSheet&&this._styleSheet.remove(),this._settingsHaveChanged()&&FLBuilder._renderLayout(this.state)},clear:function(){this._cancelDelay(),this._cancelPreview(),this._styleSheet&&(this._styleSheet.remove(),this._styleSheet=null)},_initNodeTextColor:function(){e.extend(this.elements,{textColor:e(this.classes.settings+" input[name=text_color]"),linkColor:e(this.classes.settings+" input[name=link_color]"),hoverColor:e(this.classes.settings+" input[name=hover_color]"),headingColor:e(this.classes.settings+" input[name=heading_color]")}),this.elements.textColor.on("change",e.proxy(this._textColorChange,this)),this.elements.linkColor.on("change",e.proxy(this._textColorChange,this)),this.elements.hoverColor.on("change",e.proxy(this._textColorChange,this)),this.elements.headingColor.on("change",e.proxy(this._textColorChange,this))},_textColorChange:function(t){var l=this.elements.textColor.val(),i=this.elements.linkColor.val(),o=this.elements.hoverColor.val(),s=this.elements.headingColor.val();i=""===i?l:i,o=""===o?l:o,s=""===s?l:s,this.delay(100,e.proxy(function(){""===l?this.updateCSSRule(this.classes.node,"color","inherit"):this.updateCSSRule(this.classes.node,"color","#"+l),""===i?this.updateCSSRule(this.classes.node+" a","color","inherit"):this.updateCSSRule(this.classes.node+" a","color","#"+i),""===o?this.updateCSSRule(this.classes.node+" a:hover","color","inherit"):this.updateCSSRule(this.classes.node+" a:hover","color","#"+o),""===s?(this.updateCSSRule(this.classes.node+" h1","color","inherit"),this.updateCSSRule(this.classes.node+" h2","color","inherit"),this.updateCSSRule(this.classes.node+" h3","color","inherit"),this.updateCSSRule(this.classes.node+" h4","color","inherit"),this.updateCSSRule(this.classes.node+" h5","color","inherit"),this.updateCSSRule(this.classes.node+" h6","color","inherit"),this.updateCSSRule(this.classes.node+" h1 a","color","inherit"),this.updateCSSRule(this.classes.node+" h2 a","color","inherit"),this.updateCSSRule(this.classes.node+" h3 a","color","inherit"),this.updateCSSRule(this.classes.node+" h4 a","color","inherit"),this.updateCSSRule(this.classes.node+" h5 a","color","inherit"),this.updateCSSRule(this.classes.node+" h6 a","color","inherit")):(this.updateCSSRule(this.classes.node+" h1","color","#"+s),this.updateCSSRule(this.classes.node+" h2","color","#"+s),this.updateCSSRule(this.classes.node+" h3","color","#"+s),this.updateCSSRule(this.classes.node+" h4","color","#"+s),this.updateCSSRule(this.classes.node+" h5","color","#"+s),this.updateCSSRule(this.classes.node+" h6","color","#"+s),this.updateCSSRule(this.classes.node+" h1 a","color","#"+s),this.updateCSSRule(this.classes.node+" h2 a","color","#"+s),this.updateCSSRule(this.classes.node+" h3 a","color","#"+s),this.updateCSSRule(this.classes.node+" h4 a","color","#"+s),this.updateCSSRule(this.classes.node+" h5 a","color","#"+s),this.updateCSSRule(this.classes.node+" h6 a","color","#"+s))},this))},_initNodeBg:function(){e.extend(this.elements,{bgType:e(this.classes.settings+" select[name=bg_type]"),bgColor:e(this.classes.settings+" input[name=bg_color]"),bgColorPicker:e(this.classes.settings+" .fl-picker-bg_color"),bgOpacity:e(this.classes.settings+" input[name=bg_opacity]"),bgImageSrc:e(this.classes.settings+" select[name=bg_image_src]"),bgRepeat:e(this.classes.settings+" select[name=bg_repeat]"),bgPosition:e(this.classes.settings+" select[name=bg_position]"),bgAttachment:e(this.classes.settings+" select[name=bg_attachment]"),bgSize:e(this.classes.settings+" select[name=bg_size]"),bgVideo:e(this.classes.settings+" input[name=bg_video]"),bgVideoFallbackSrc:e(this.classes.settings+" select[name=bg_video_fallback_src]"),bgSlideshowSource:e(this.classes.settings+" select[name=ss_source]"),bgSlideshowPhotos:e(this.classes.settings+" input[name=ss_photos]"),bgSlideshowFeedUrl:e(this.classes.settings+" input[name=ss_feed_url]"),bgSlideshowSpeed:e(this.classes.settings+" input[name=ss_speed]"),bgSlideshowTrans:e(this.classes.settings+" select[name=ss_transition]"),bgSlideshowTransSpeed:e(this.classes.settings+" input[name=ss_transitionDuration]"),bgParallaxImageSrc:e(this.classes.settings+" select[name=bg_parallax_image_src]"),bgOverlayColor:e(this.classes.settings+" input[name=bg_overlay_color]"),bgOverlayOpacity:e(this.classes.settings+" input[name=bg_overlay_opacity]")}),this.elements.bgType.on("change",e.proxy(this._bgTypeChange,this)),this.elements.bgColor.on("change",e.proxy(this._bgColorChange,this)),this.elements.bgOpacity.on("keyup",e.proxy(this._bgOpacityChange,this)),this.elements.bgImageSrc.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgRepeat.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgPosition.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgAttachment.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgSize.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgSlideshowSource.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowPhotos.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowFeedUrl.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowSpeed.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowTrans.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowTransSpeed.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgParallaxImageSrc.on("change",e.proxy(this._bgParallaxChange,this)),this.elements.bgOverlayColor.on("change",e.proxy(this._bgOverlayChange,this)),this.elements.bgOverlayOpacity.on("keyup",e.proxy(this._bgOverlayChange,this))},_bgTypeChange:function(e){var t=this.elements.bgType.val();this.elements.node.removeClass("fl-row-bg-video"),this.elements.node.removeClass("fl-row-bg-slideshow"),this.elements.node.removeClass("fl-row-bg-parallax"),this.elements.node.find(".fl-bg-video").remove(),this.elements.node.find(".fl-bg-slideshow").remove(),this.elements.content.css("background-image",""),this.updateCSSRule(this.classes.content,{"background-color":"transparent","background-image":"none"}),"none"==t?this._bgOverlayClear():"color"==t?(this.elements.bgColor.trigger("change"),this._bgOverlayClear()):"photo"==t?(this.elements.bgColor.trigger("change"),this.elements.bgImageSrc.trigger("change")):"video"==t?(this.elements.bgColor.trigger("change"),""!=this.elements.bgVideo.val()&&this.preview()):"slideshow"==t?(this.elements.bgColor.trigger("change"),this._bgSlideshowChange()):"parallax"==t&&(this.elements.bgColor.trigger("change"),this.elements.bgParallaxImageSrc.trigger("change"))},_bgColorChange:function(t){var l,i,o;""===this.elements.bgColor.val()||isNaN(this.elements.bgOpacity.val())?this.updateCSSRule(this.classes.content,"background-color","transparent"):(l=this.hexToRgb(this.elements.bgColor.val()),i=this.parseFloat(this.elements.bgOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.updateCSSRule(this.classes.content,"background-color",o)},this)))},_bgOpacityChange:function(e){this.elements.bgColor.trigger("change")},_bgPhotoChange:function(e){this.elements.bgImageSrc.val()&&this.updateCSSRule(this.classes.content,{"background-image":"url("+this.elements.bgImageSrc.val()+")","background-repeat":this.elements.bgRepeat.val(),"background-position":this.elements.bgPosition.val(),"background-attachment":this.elements.bgAttachment.val(),"background-size":this.elements.bgSize.val()})},_bgSlideshowChange:function(t){var l=this.elements,i=l.bgSlideshowSource.val(),o=l.bgSlideshowPhotos.val(),s=l.bgSlideshowFeedUrl.val(),r=l.bgSlideshowSpeed.val(),n=l.bgSlideshowTransSpeed.val();("wordpress"!=i||""!==o)&&("smugmug"!=i||""!==s)&&(isNaN(parseInt(r))||isNaN(parseInt(n))||this.delay(500,e.proxy(this.preview,this)))},_bgParallaxChange:function(e){this.elements.bgParallaxImageSrc.val()&&this.updateCSSRule(this.classes.content,{"background-image":"url("+this.elements.bgParallaxImageSrc.val()+")","background-repeat":"no-repeat","background-position":"center center","background-attachment":"fixed","background-size":"cover"})},_bgOverlayChange:function(t){var l,i,o;""===this.elements.bgOverlayColor.val()||isNaN(this.elements.bgOverlayOpacity.val())?(this.elements.node.removeClass("fl-row-bg-overlay"),this.elements.node.removeClass("fl-col-bg-overlay"),this.updateCSSRule(this.classes.content+":after","background-color","transparent")):(l=this.hexToRgb(this.elements.bgOverlayColor.val()),i=this.parseFloat(this.elements.bgOverlayOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.elements.node.hasClass("fl-col")?this.elements.node.addClass("fl-col-bg-overlay"):this.elements.node.addClass("fl-row-bg-overlay"),this.updateCSSRule(this.classes.content+":after","background-color",o)},this)))},_bgOverlayClear:function(e){this.elements.bgOverlayColor.prev(".fl-color-picker-clear").trigger("click")},_initNodeBorder:function(){e.extend(this.elements,{borderType:e(this.classes.settings+" select[name=border_type]"),borderColor:e(this.classes.settings+" input[name=border_color]"),borderColorPicker:e(this.classes.settings+" .fl-picker-border_color"),borderOpacity:e(this.classes.settings+" input[name=border_opacity]"),borderTopWidth:e(this.classes.settings+" input[name=border_top]"),borderBottomWidth:e(this.classes.settings+" input[name=border_bottom]"),borderLeftWidth:e(this.classes.settings+" input[name=border_left]"),borderRightWidth:e(this.classes.settings+" input[name=border_right]")}),this.elements.borderType.on("change",e.proxy(this._borderTypeChange,this)),this.elements.borderColor.on("change",e.proxy(this._borderColorChange,this)),this.elements.borderOpacity.on("keyup",e.proxy(this._borderOpacityChange,this)),this.elements.borderTopWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderBottomWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderLeftWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderRightWidth.on("keyup",e.proxy(this._borderWidthChange,this))},_borderTypeChange:function(e){var t=this.elements.borderType.val();this.updateCSSRule(this.classes.content,{"border-style":""===t?"none":t}),this.elements.borderColor.trigger("change"),this.elements.borderTopWidth.trigger("keyup")},_borderColorChange:function(t){var l,i,o;""===this.elements.borderColor.val()||isNaN(this.elements.borderOpacity.val())?this.updateCSSRule(this.classes.content,"border-color","transparent"):(l=this.hexToRgb(this.elements.borderColor.val()),i=parseInt(this.elements.borderOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.updateCSSRule(this.classes.content,"border-color",o)},this)))},_borderOpacityChange:function(e){this.elements.borderColor.trigger("change")},_getBorderWidths:function(e){var t=this.elements.borderTopWidth.val(),l=this.elements.borderBottomWidth.val(),i=this.elements.borderLeftWidth.val(),o=this.elements.borderRightWidth.val();return""===t&&(t=this.elements.borderTopWidth.attr("placeholder")),""===l&&(l=this.elements.borderBottomWidth.attr("placeholder")),""===i&&(i=this.elements.borderLeftWidth.attr("placeholder")),""===o&&(o=this.elements.borderRightWidth.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_borderWidthChange:function(e){var t=this._getBorderWidths();this.elements.borderColor.trigger("change"),this.updateCSSRule(this.classes.content,{"border-top-width":t.top+"px","border-bottom-width":t.bottom+"px","border-left-width":t.left+"px","border-right-width":t.right+"px"}),this._positionAbsoluteBgs()},_initNodeClassName:function(){e.extend(this.elements,{className:e(this.classes.settings+" input[name=class]")}),this.elements.className.on("keyup",e.proxy(this._classNameChange,this)),this._lastClassName=this.elements.className.val()},_classNameChange:function(e){var t=this.elements.className.val();null!==this._lastClassName&&this.elements.node.removeClass(this._lastClassName),this.elements.node.addClass(t),this._lastClassName=t},_initMargins:function(){e.extend(this.elements,{marginTop:e(this.classes.settings+" input[name=margin_top]"),marginBottom:e(this.classes.settings+" input[name=margin_bottom]"),marginLeft:e(this.classes.settings+" input[name=margin_left]"),marginRight:e(this.classes.settings+" input[name=margin_right]")}),this.elements.marginTop.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginBottom.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginLeft.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginRight.on("keyup",e.proxy(this._marginChange,this))},_getMargins:function(e){var t=this.elements.marginTop.val(),l=this.elements.marginBottom.val(),i=this.elements.marginLeft.val(),o=this.elements.marginRight.val();return""===t&&(t=this.elements.marginTop.attr("placeholder")),""===l&&(l=this.elements.marginBottom.attr("placeholder")),""===i&&(i=this.elements.marginLeft.attr("placeholder")),""===o&&(o=this.elements.marginRight.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_marginChange:function(e){var t=this._getMargins();this.updateCSSRule(this.classes.content,{"margin-top":t.top+"px","margin-bottom":t.bottom+"px","margin-left":t.left+"px","margin-right":t.right+"px"}),this._positionAbsoluteBgs()},_initPadding:function(){e.extend(this.elements,{paddingTop:e(this.classes.settings+" input[name=padding_top]"),paddingBottom:e(this.classes.settings+" input[name=padding_bottom]"),paddingLeft:e(this.classes.settings+" input[name=padding_left]"),paddingRight:e(this.classes.settings+" input[name=padding_right]")}),this.elements.paddingTop.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingBottom.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingLeft.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingRight.on("keyup",e.proxy(this._paddingChange,this))},_getPadding:function(e){var t=this.elements.paddingTop.val(),l=this.elements.paddingBottom.val(),i=this.elements.paddingLeft.val(),o=this.elements.paddingRight.val();return""===t&&(t=this.elements.paddingTop.attr("placeholder")),""===l&&(l=this.elements.paddingBottom.attr("placeholder")),""===i&&(i=this.elements.paddingLeft.attr("placeholder")),""===o&&(o=this.elements.paddingRight.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_paddingChange:function(e){var t=this._getPadding();this.updateCSSRule(this.classes.content,{"padding-top":t.top+"px","padding-bottom":t.bottom+"px","padding-left":t.left+"px","padding-right":t.right+"px"}),this._positionAbsoluteBgs()},_positionAbsoluteBgs:function(){var e=this.elements.node.find(".fl-bg-slideshow"),t=this.elements.node.find(".fl-bg-video"),l=null,i=null;(e.length>0||t.length>0)&&(l=this._getMargins(),i=this._getBorderWidths(),e.length>0&&(this.updateCSSRule(this.classes.node+" .fl-bg-slideshow",{top:l.top+i.top+"px",bottom:l.bottom+i.bottom+"px",left:l.left+i.left+"px",right:l.right+i.right+"px"}),FLBuilder._resizeLayout()),t.length>0&&this.updateCSSRule(this.classes.node+" .fl-bg-video",{top:l.top+i.top+"px",bottom:l.bottom+i.bottom+"px",left:l.left+i.left+"px",right:l.right+i.right+"px"}))},_initRow:function(){e.extend(this.elements,{width:e(this.classes.settings+" select[name=width]"),height:e(this.classes.settings+" select[name=full_height]"),contentWidth:e(this.classes.settings+" select[name=content_width]")}),this.elements.width.on("change",e.proxy(this._rowWidthChange,this)),this.elements.height.on("change",e.proxy(this._rowHeightChange,this)),this.elements.contentWidth.on("change",e.proxy(this._rowContentWidthChange,this)),this._initNodeTextColor(),this._initNodeBg(),this._initNodeBorder(),this._initNodeClassName(),this._initMargins(),this._initPadding()},_rowWidthChange:function(e){var t=this.elements.node;"full"==this.elements.width.val()?(t.removeClass("fl-row-fixed-width"),t.addClass("fl-row-full-width")):(t.removeClass("fl-row-full-width"),t.addClass("fl-row-fixed-width"))},_rowHeightChange:function(e){var t=this.elements.node;"full"==this.elements.height.val()?t.addClass("fl-row-full-height"):t.removeClass("fl-row-full-height")},_rowContentWidthChange:function(e){var t=this.elements.content.find(".fl-row-content");"full"==this.elements.contentWidth.val()?(t.removeClass("fl-row-fixed-width"),t.addClass("fl-row-full-width")):(t.removeClass("fl-row-full-width"),t.addClass("fl-row-fixed-width"))},_initColumn:function(){e.extend(this.elements,{size:e(this.classes.settings+" input[name=size]"),columnHeight:e(this.classes.settings+" select[name=equal_height]")}),this.elements.size.on("keyup",e.proxy(this._colSizeChange,this)),this.elements.columnHeight.on("change",e.proxy(this._colHeightChange,this)),this._initNodeTextColor(),this._initNodeBg(),this._initNodeBorder(),this._initNodeClassName(),this._initMargins(),this._initPadding()},_colSizeChange:function(){var t=10,l=100-t,i=parseFloat(this.elements.size.val()),o=this.elements.node.prev(".fl-col"),s=this.elements.node.next(".fl-col"),r=0===s.length?o:s,n=this.elements.node.siblings(".fl-col"),a=0;0===n.length||isNaN(i)||(n.each(function(){e(this).data("node")!=r.data("node")&&(l-=parseFloat(e(this)[0].style.width),a+=parseFloat(e(this)[0].style.width))}),t>i&&(i=t),i>l&&(i=l),r.css("width",100-a-i+"%"),this.elements.node.css("width",i+"%"))},_colHeightChange:function(){var e=this.elements.node.parent(".fl-col-group");"yes"==this.elements.columnHeight.val()?e.addClass("fl-col-group-equal-height"):e.removeClass("fl-col-group-equal-height")},_initModule:function(){this._initNodeClassName(),this._initMargins()},_initDefaultFieldPreviews:function(){for(var e=this.elements.settings.find(".fl-field"),t=null,l=null,i=0;i<e.length;i++)t=e.eq(i),l=t.data("preview"),"refresh"==l.type&&this._initFieldRefreshPreview(t),"text"==l.type&&this._initFieldTextPreview(t),"css"==l.type&&this._initFieldCSSPreview(t),"widget"==l.type&&this._initFieldWidgetPreview(t),"font"==l.type&&this._initFieldFontPreview(t)},_initFieldRefreshPreview:function(t){var l=t.data("type"),i=t.data("preview"),o=e.proxy(this.delayPreview,this);switch(l){case"text":t.find("input[type=text]").on("keyup",o);break;case"textarea":t.find("textarea").on("keyup",o);break;case"select":t.find("select").on("change",o);break;case"color":t.find(".fl-color-picker-value").on("change",o);break;case"photo":t.find("select").on("change",o);break;case"multiple-photos":t.find("input").on("change",o);break;case"photo-sizes":t.find("select").on("change",o);break;case"video":t.find("input").on("change",o);break;case"multiple-audios":t.find("input").on("change",o);break;case"icon":t.find("input").on("change",o);break;case"form":t.delegate("input","change",o);break;case"editor":this._addTextEditorCallback(t,i);break;case"code":t.find("textarea").on("change",o);break;case"post-type":t.find("select").on("change",o);break;case"suggest":t.find(".as-values").on("change",o)}},_initFieldTextPreview:function(t){var l=t.data("type"),i=t.data("preview"),o=e.proxy(this._previewText,this,i);switch(l){case"text":t.find("input[type=text]").on("keyup",o);break;case"textarea":t.find("textarea").on("keyup",o);break;case"code":t.find("textarea").on("change",o);break;case"editor":this._addTextEditorCallback(t,i)}},_previewText:function(t,l){var i=this.elements.node.find(t.selector),o=e("<div>"+e(l.target).val()+"</div>");i.length>0&&(o.find("script").remove(),i.html(o.html()))},_previewTextEditor:function(t,l,i){var o=this.elements.node.find(t.selector),s="undefined"!=typeof tinyMCE?tinyMCE.get(l):null,r=e("#"+l),n="";o.length>0&&(n=e(s&&"none"==r.css("display")?"<div>"+s.getContent()+"</div>":"undefined"==typeof switchEditors||"undefined"==typeof switchEditors.wpautop?"<div>"+r.val()+"</div>":"<div>"+switchEditors.wpautop(r.val())+"</div>"),n.find("script").remove(),o.html(n.html()))},_addTextEditorCallback:function(t,l){var i=t.find("textarea.wp-editor-area").attr("id"),o=null;if("refresh"==l.type)o=e.proxy(this.delayPreview,this);else{if("text"!=l.type)return;o=e.proxy(this._previewTextEditor,this,l,i)}e("#"+i).on("keyup",o),"undefined"!=typeof tinyMCE&&(editor=tinyMCE.get(i),editor.on("change",o),editor.on("keyup",o))},_initFieldFontPreview:function(t){var l=t.data("type"),i=t.data("preview");i.id=t.attr("id");var o=e.proxy(this._previewFont,this,i);"font"==l&&t.find(".fl-font-field").on("change","select",o)},_previewFont:function(t,l){var i=e(l.delegateTarget),o=i.find(".fl-font-field-font"),s=e(o).find(":selected"),r=s.parent().attr("label"),n=i.find(".fl-font-field-weight"),a=t.id+"-"+this.nodeId,d=this._getPreviewSelector(this.classes.node,t.selector);"Google"==r&&this._buildFontStylesheet(a,o.val(),n.val()),"Default"==o.val()?(this.updateCSSRule(d,"font-family",""),this.updateCSSRule(d,"font-weight","")):(this.updateCSSRule(d,"font-family",o.val()),this.updateCSSRule(d,"font-weight",n.val()))},_buildFontStylesheet:function(t,l,i){var o="//fonts.googleapis.com/css?family=",s="",r={},n={};r[l]=[i],FLBuilderPreview._fontsList[t]=r,Object.keys(FLBuilderPreview._fontsList).forEach(function(e){var t=FLBuilderPreview._fontsList[e];Object.keys(t).forEach(function(e){var l=t[e];n[e]=n[e]||[],l=l.filter(function(t){return n[e].indexOf(t)<0}),n[e]=n[e].concat(l)})}),e.each(n,function(e,t){s+=e+":"+t.join()+"|"}),s=o+s.slice(0,-1).replace(" ","+"),e("#fl-builder-google-fonts-preview").length<1?e("<link>").attr("id","fl-builder-google-fonts-preview").attr("type","text/css").attr("rel","stylesheet").attr("href",s).appendTo("head"):e("#fl-builder-google-fonts-preview").attr("href",s)},_initFieldCSSPreview:function(e){var t=e.data("preview"),l=null;if("undefined"!=typeof t.rules)for(l in t.rules)this._initFieldCSSPreviewCallback(e,t.rules[l]);else this._initFieldCSSPreviewCallback(e,t)},_initFieldCSSPreviewCallback:function(t,l){switch(t.data("type")){case"text":t.find("input[type=text]").on("keyup",e.proxy(this._previewCSS,this,l));break;case"select":t.find("select").on("change",e.proxy(this._previewCSS,this,l));break;case"color":t.find(".fl-color-picker-value").on("change",e.proxy(this._previewColor,this,l))}},_previewCSS:function(t,l){var i=this._getPreviewSelector(this.classes.node,t.selector),o=t.property,s="undefined"==typeof t.unit?"":t.unit,r=e(l.target).val();"%"==s?r=parseInt(r)/100:r+=s,this.updateCSSRule(i,o,r)},_previewColor:function(t,l){var i=this._getPreviewSelector(this.classes.node,t.selector),o=e(l.target).val(),s=""===o?"inherit":"#"+o;this.updateCSSRule(i,t.property,s)},_initFieldWidgetPreview:function(t){var l=e.proxy(this.delayPreview,this);t.find("input").on("keyup",l),t.find("input[type=checkbox]").on("click",l),t.find("textarea").on("keyup",l),t.find("select").on("change",l)},_getPreviewSelector:function(e,t){for(var l="",i=t.split(","),o=0;o<i.length;o++)l+=e+" "+i[o],o!=i.length-1&&(l+=", ");return l}}}(jQuery),function(e){var t={init:function(){var t=e("body");t.delegate(".fl-builder-service-select","change",this._serviceChange),t.delegate(".fl-builder-service-connect-button","click",this._connectClicked),t.delegate(".fl-builder-service-account-select","change",this._accountChange),t.delegate(".fl-builder-service-account-delete","click",this._accountDeleteClicked),t.delegate(".fl-builder-campaign-monitor-client-select","change",this._campaignMonitorClientChange),t.delegate(".fl-builder-mailchimp-list-select","change",this._mailChimpListChange)},_startSettingsLoading:function(t){var l=e(".fl-builder-settings"),i=t.closest(".fl-builder-service-settings"),o=e(".fl-builder-service-error");
2
  l.append('<div class="fl-builder-loading"></div>'),i.addClass("fl-builder-service-settings-loading"),o.remove()},_finishSettingsLoading:function(){var t=e(".fl-builder-settings"),l=e(".fl-builder-service-settings-loading");t.find(".fl-builder-loading").remove(),l.removeClass("fl-builder-service-settings-loading")},_serviceChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this),o=i.closest("tr"),s=i.val();o.siblings("tr.fl-builder-service-account-row").remove(),o.siblings("tr.fl-builder-service-connect-row").remove(),o.siblings("tr.fl-builder-service-field-row").remove(),e(".fl-builder-service-error").remove(),""!==s&&(t._startSettingsLoading(i),FLBuilder.ajax({action:"render_service_settings",node_id:l,service:s},t._serviceChangeComplete))},_serviceChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-select-row");s.after(i.html),t._addAccountDelete(o),t._finishSettingsLoading()},_connectClicked:function(){for(var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-connect-row"),r=i.find(".fl-builder-service-connect-input"),n=null,a=null,d=0,u={action:"connect_service",node_id:l,service:o.val(),fields:{}};d<r.length;d++)n=r.eq(d),a=n.attr("name"),u.fields[a]=n.val();s.hide(),t._startSettingsLoading(o),FLBuilder.ajax(u,t._connectComplete)},_connectComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-select-row"),r=o.find(".fl-builder-service-select"),n=o.find(".fl-builder-service-account-row"),a=o.find(".fl-builder-service-account-select"),d=o.find(".fl-builder-service-connect-row");i.error?(d.show(),0===a.length?r.after('<div class="fl-builder-service-error">'+i.error+"</div>"):a.after('<div class="fl-builder-service-error">'+i.error+"</div>")):(d.remove(),n.remove(),s.after(i.html)),t._addAccountDelete(o),t._finishSettingsLoading()},_accountChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=i.find(".fl-builder-service-connect-row"),n=i.find("tr.fl-builder-service-field-row"),a=e(".fl-builder-service-error"),d=s.val(),u=null;r.remove(),n.remove(),a.remove(),"add_new_account"==d?u={action:"render_service_settings",node_id:l,service:o.val(),add_new:!0}:""!==d&&(u={action:"render_service_fields",node_id:l,service:o.val(),account:d}),u&&(t._startSettingsLoading(o),FLBuilder.ajax(u,t._accountChangeComplete)),t._addAccountDelete(i)},_accountChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-account-row");s.after(i.html),t._finishSettingsLoading()},_addAccountDelete:function(e){var t=e.find(".fl-builder-service-account-select");t.length>0&&(e.find(".fl-builder-service-account-delete").remove(),""!==t.val()&&"add_new_account"!=t.val()&&t.after('<a href="javascript:void(0);" class="fl-builder-service-account-delete">'+FLBuilderStrings.deleteAccount+"</a>"))},_accountDeleteClicked:function(){var l=e(this).closest(".fl-builder-service-settings"),i=l.find(".fl-builder-service-select"),o=l.find(".fl-builder-service-account-select");confirm(FLBuilderStrings.deleteAccountWarning)&&(FLBuilder.ajax({action:"delete_service_account",service:i.val(),account:o.val()},t._accountDeleteComplete),t._startSettingsLoading(o))},_accountDeleteComplete:function(){var l=e(".fl-builder-service-settings-loading"),i=l.find(".fl-builder-service-select");t._finishSettingsLoading(),i.trigger("change")},_campaignMonitorClientChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=e(this),n=i.find(".fl-builder-service-list-select"),a=r.val();0!==n.length&&n.closest("tr").remove(),""!==a&&(t._startSettingsLoading(o),FLBuilder.ajax({action:"render_service_fields",node_id:l,service:o.val(),account:s.val(),client:a},t._campaignMonitorClientChangeComplete))},_campaignMonitorClientChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-campaign-monitor-client-select");s.closest("tr").after(i.html),t._finishSettingsLoading()},_mailChimpListChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=i.find(".fl-builder-service-list-select");e(".fl-builder-mailchimp-group-select").closest("tr").remove(),""!==r.val()&&(t._startSettingsLoading(o),FLBuilder.ajax({action:"render_service_fields",node_id:l,service:o.val(),account:s.val(),list_id:r.val()},t._mailChimpListChangeComplete))},_mailChimpListChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-list-select");s.closest("tr").after(i.html),t._finishSettingsLoading()}};e(function(){t.init()})}(jQuery),function(e){FLBuilderTour={_tour:null,start:function(){FLBuilderTour._tour?FLBuilderTour._tour.restart():(FLBuilderTour._tour=new Tour(FLBuilderTour._config()),FLBuilderTour._tour.init()),FLBuilderTour._tour.start()},_config:function(){var t={storage:!1,onStart:FLBuilderTour._onStart,onPrev:FLBuilderTour._onPrev,onNext:FLBuilderTour._onNext,onEnd:FLBuilderTour._onEnd,template:'<div class="popover" role="tooltip"> <i class="fa fa-times" data-role="end"></i> <div class="arrow"></div> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation clearfix"> <button class="fl-builder-button fl-builder-button-primary fl-builder-tour-next" data-role="next">'+FLBuilderStrings.tourNext+"</button> </div> </div>",steps:[{animation:!1,element:".fl-builder-bar",placement:"bottom",title:FLBuilderStrings.tourTemplatesTitle,content:FLBuilderStrings.tourTemplates,onShown:function(){0===e(".fl-template-selector").length?(e(".popover[class*=tour-]").css("visibility","hidden"),FLBuilder._showTemplateSelector()):FLBuilderTour._templateSelectorLoaded()}},{animation:!1,element:"#fl-builder-blocks-rows .fl-builder-blocks-section-title",placement:"left",title:FLBuilderStrings.tourAddRowsTitle,content:FLBuilderStrings.tourAddRows,onShow:function(){FLBuilderTour._dimSection("body"),FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._showPanel(),e(".fl-template-selector .fl-builder-settings-cancel").trigger("click"),e("#fl-builder-blocks-rows .fl-builder-blocks-section-title").trigger("click")}},{animation:!1,element:"#fl-builder-blocks-basic .fl-builder-blocks-section-title",placement:"left",title:FLBuilderStrings.tourAddContentTitle,content:FLBuilderStrings.tourAddContent,onShow:function(){FLBuilderTour._dimSection("body"),FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._showPanel(),e("#fl-builder-blocks-basic .fl-builder-blocks-section-title").trigger("click"),e(".fl-row").eq(0).trigger("mouseleave"),e(".fl-module").eq(0).trigger("mouseleave")}},{animation:!1,element:".fl-row:first-of-type",placement:"top",title:FLBuilderStrings.tourEditContentTitle,content:FLBuilderStrings.tourEditContent,onShow:function(){FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._closePanel(),e(".fl-row").eq(0).trigger("mouseenter"),e(".fl-module").eq(0).trigger("mouseenter")}},{animation:!1,element:".fl-row:first-of-type .fl-module-overlay .fl-block-overlay-actions",placement:"top",title:FLBuilderStrings.tourEditContentTitle,content:FLBuilderStrings.tourEditContent2,onShow:function(){FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._closePanel(),e(".fl-row").eq(0).trigger("mouseenter"),e(".fl-module").eq(0).trigger("mouseenter")}},{animation:!1,element:".fl-builder-add-content-button",placement:"bottom",title:FLBuilderStrings.tourAddContentButtonTitle,content:FLBuilderStrings.tourAddContentButton,onShow:function(){FLBuilderTour._dimSection("body"),e(".fl-row").eq(0).trigger("mouseleave"),e(".fl-module").eq(0).trigger("mouseleave")}},{animation:!1,element:".fl-builder-templates-button",placement:"bottom",title:FLBuilderStrings.tourTemplatesButtonTitle,content:FLBuilderStrings.tourTemplatesButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,element:".fl-builder-tools-button",placement:"bottom",title:FLBuilderStrings.tourToolsButtonTitle,content:FLBuilderStrings.tourToolsButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,element:".fl-builder-done-button",placement:"bottom",title:FLBuilderStrings.tourDoneButtonTitle,content:FLBuilderStrings.tourDoneButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,orphan:!0,backdrop:!0,title:FLBuilderStrings.tourFinishedTitle,content:FLBuilderStrings.tourFinished,template:'<div class="popover" role="tooltip"> <div class="arrow"></div> <i class="fa fa-times" data-role="end"></i> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation clearfix"> <button class="fl-builder-button fl-builder-button-primary fl-builder-tour-next" data-role="end">'+FLBuilderStrings.tourEnd+"</button> </div> </div>"}]};return FLBuilderConfig.lite?t.steps.shift():"disabled"==FLBuilderConfig.enabledTemplates?t.steps.shift():"fl-builder-template"==FLBuilderConfig.postType&&t.steps.shift(),t},_onStart:function(){var t=e("body");t.append('<div class="fl-builder-tour-mask"></div>'),t.on("fl-builder.template-selector-loaded",FLBuilderTour._templateSelectorLoaded),0===e(".fl-row").length&&"module"!=FLBuilderConfig.userTemplateType&&(e(".fl-builder-content").append('<div class="fl-builder-tour-demo-content fl-row fl-row-fixed-width fl-row-bg-none"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-fixed-width fl-node-content"> <div class="fl-col-group"> <div class="fl-col" style="width:100%"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text" data-type="rich-text" data-name="Text Editor"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus pellentesque ut lorem non cursus. Sed mauris nunc, porttitor iaculis lorem a, sollicitudin lacinia sapien. Proin euismod orci lacus, et sollicitudin leo posuere ac. In hac habitasse platea dictumst. Maecenas elit magna, consequat in turpis suscipit, ultrices rhoncus arcu. Phasellus finibus sapien nec elit tempus venenatis. Maecenas tincidunt sapien non libero maximus, in aliquam felis tincidunt. Mauris mollis ultricies facilisis. Duis condimentum dignissim tortor sit amet facilisis. Aenean gravida lacus eu risus molestie egestas. Donec ut dolor dictum, fringilla metus malesuada, viverra nunc. Maecenas ut purus ac justo aliquet lacinia. Cras vestibulum elementum tincidunt. Maecenas mattis tortor neque, consectetur dignissim neque tempor nec.</p></div> </div> </div> </div> </div> </div> </div> </div> </div>'),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols())},_onPrev:function(){e(".fl-builder-tour-dimmed").remove()},_onNext:function(){e(".fl-builder-tour-dimmed").remove()},_onEnd:function(){e("body").off("fl-builder.template-selector-loaded"),e(".fl-builder-tour-mask").remove(),e(".fl-builder-tour-dimmed").remove(),e(".fl-builder-tour-demo-content").remove(),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._showPanel(),FLBuilder._initTemplateSelector()},_dimSection:function(t){e(t).find(".fl-builder-tour-dimmed").remove(),e(t).append('<div class="fl-builder-tour-dimmed"></div>')},_templateSelectorLoaded:function(){var t=e(".fl-builder-settings-lightbox .fl-lightbox-header"),l=t.height(),i=t.offset().top+75;e(".popover[class*=tour-]").css({top:i+l+"px",visibility:"visible"})}}}(jQuery),function(e){FLBuilder={preview:null,_actionsLightbox:null,_addModuleAfterRowRender:null,_colResizeData:null,_colResizing:!1,_contentClass:!1,_dragEnabled:!1,_dragging:!1,_exitUrl:null,_layout:null,_layoutSettingsCSSCache:null,_layoutSettingsCSSTimeout:null,_lightbox:null,_lightboxScrollbarTimeout:null,_loadedModuleAssets:[],_moduleHelpers:{},_multiplePhotoSelector:null,_newColGroupParent:null,_newColGroupPosition:0,_newModuleParent:null,_newModulePosition:0,_newRowPosition:0,_selectedTemplateId:null,_selectedTemplateType:null,_singlePhotoSelector:null,_singleVideoSelector:null,_multipleAudiosSelector:null,_silentUpdate:!1,_silentUpdateCallbackData:null,_init:function(){FLBuilder._initJQueryReadyFix(),FLBuilder._initGlobalErrorHandling(),FLBuilder._initPostLock(),FLBuilder._initClassNames(),FLBuilder._initMediaUploader(),FLBuilder._initOverflowFix(),FLBuilder._initScrollbars(),FLBuilder._initLightboxes(),FLBuilder._initSortables(),FLBuilder._initCoreTemplateSettings(),FLBuilder._bindEvents(),FLBuilder._bindOverlayEvents(),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._showTourOrTemplates()},_initJQueryReadyFix:function(){FLBuilderConfig.debug||(jQuery.fn.oldReady=jQuery.fn.ready,jQuery.fn.ready=function(e){return jQuery.fn.oldReady(function(){try{"function"==typeof e&&e()}catch(t){FLBuilder.logError(t)}})})},_initGlobalErrorHandling:function(){FLBuilderConfig.debug||(window.onerror=function(e,t,l,i,o){return FLBuilder.logGlobalError(e,t,l,i,o),!0})},_initPostLock:function(){"undefined"!=typeof wp.heartbeat&&(wp.heartbeat.interval(30),wp.heartbeat.enqueue("fl_builder_post_lock",{post_id:e("#fl-post-id").val()}))},_initClassNames:function(){e("html").addClass("fl-builder-edit"),e("body").addClass("fl-builder"),FLBuilderConfig.simpleUi&&e("body").addClass("fl-builder-simple"),FLBuilder._contentClass=".fl-builder-content-"+FLBuilderConfig.postId},_initMediaUploader:function(){wp.media.model.settings.post.id=e("#fl-post-id").val()},_initOverflowFix:function(){e(FLBuilder._contentClass).parents().css("overflow","visible")},_initScrollbars:function(){e(".fl-nanoscroller").nanoScroller({alwaysVisible:!0,preventPageScrolling:!0,paneClass:"fl-nanoscroller-pane",sliderClass:"fl-nanoscroller-slider",contentClass:"fl-nanoscroller-content"})},_initLightboxes:function(){FLBuilder._lightbox=new FLLightbox({className:"fl-builder-lightbox fl-builder-settings-lightbox"}),FLBuilder._lightbox.on("close",FLBuilder._lightboxClosed),FLBuilder._actionsLightbox=new FLLightbox({className:"fl-builder-actions-lightbox"})},_initSortables:function(){var t={appendTo:"body",cursor:"move",cursorAt:{left:25,top:20},distance:1,helper:FLBuilder._blockDragHelper,start:FLBuilder._blockDragStart,sort:FLBuilder._blockDragSort,placeholder:"fl-builder-drop-zone",tolerance:"intersect"},l="",i="";l="row"==FLBuilderConfig.userTemplateType?FLBuilder._contentClass+" .fl-row-content":FLBuilder._contentClass+", "+FLBuilder._contentClass+" .fl-row:not(.fl-node-global) .fl-row-content",i="row"==FLBuilderConfig.userTemplateType?FLBuilder._contentClass+" .fl-row-content, "+FLBuilder._contentClass+" .fl-col-content":FLBuilder._contentClass+", "+FLBuilder._contentClass+" .fl-row:not(.fl-node-global) .fl-row-content, "+FLBuilder._contentClass+" .fl-col:not(.fl-node-global) .fl-col-content",e(".fl-builder-rows").sortable(e.extend({},t,{connectWith:l,items:".fl-builder-block-row",stop:FLBuilder._rowDragStop})),e(".fl-builder-row-templates").sortable(e.extend({},t,{connectWith:FLBuilder._contentClass,items:".fl-builder-block-row-template",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-saved-rows").sortable(e.extend({},t,{cancel:".fl-builder-node-template-actions, .fl-builder-node-template-edit, .fl-builder-node-template-delete",connectWith:FLBuilder._contentClass,items:".fl-builder-block-saved-row",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-modules, .fl-builder-widgets").sortable(e.extend({},t,{connectWith:i,items:".fl-builder-block-module",stop:FLBuilder._moduleDragStop})),e(".fl-builder-module-templates").sortable(e.extend({},t,{connectWith:i,items:".fl-builder-block-module-template",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-saved-modules").sortable(e.extend({},t,{cancel:".fl-builder-node-template-actions, .fl-builder-node-template-edit, .fl-builder-node-template-delete",connectWith:i,items:".fl-builder-block-saved-module",stop:FLBuilder._nodeTemplateDragStop})),e(FLBuilder._contentClass).sortable(e.extend({},t,{handle:".fl-row-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._rowDragHelper,items:".fl-row",stop:FLBuilder._rowDragStop})),e(FLBuilder._contentClass+" .fl-row-content").sortable(e.extend({},t,{handle:".fl-row-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._rowDragHelper,items:".fl-col-group",stop:FLBuilder._rowDragStop})),e(FLBuilder._contentClass+" .fl-col-content").sortable(e.extend({},t,{connectWith:i,handle:".fl-module-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._moduleDragHelper,items:".fl-module",stop:FLBuilder._moduleDragStop}))},_bindEvents:function(){e("a").on("click",FLBuilder._preventDefault),e(".fl-page-nav .nav a").on("click",FLBuilder._headerLinkClicked),e(document).on("heartbeat-tick",FLBuilder._initPostLock),e(window).on("beforeunload",FLBuilder._warnBeforeUnload),e("body").delegate(".fl-builder-has-submenu","click",FLBuilder._submenuParentClicked),e("body").delegate(".fl-builder-has-submenu a","click",FLBuilder._submenuChildClicked),e("body").delegate(".fl-builder-submenu","mouseenter",FLBuilder._submenuMouseenter),e("body").delegate(".fl-builder-submenu","mouseleave",FLBuilder._submenuMouseleave),e(".fl-builder-tools-button").on("click",FLBuilder._toolsClicked),e(".fl-builder-done-button").on("click",FLBuilder._doneClicked),e(".fl-builder-add-content-button").on("click",FLBuilder._showPanel),e(".fl-builder-templates-button").on("click",FLBuilder._changeTemplateClicked),e(".fl-builder-buy-button").on("click",FLBuilder._upgradeClicked),e(".fl-builder-upgrade-button").on("click",FLBuilder._upgradeClicked),e(".fl-builder-help-button").on("click",FLBuilder._helpButtonClicked),e(".fl-builder-panel-actions .fl-builder-panel-close").on("click",FLBuilder._closePanel),e(".fl-builder-blocks-section-title").on("click",FLBuilder._blockSectionTitleClicked),e("body").delegate(".fl-builder-node-template-actions","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-edit","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-delete","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-edit","click",FLBuilder._editNodeTemplateClicked),e("body").delegate(".fl-builder-node-template-delete","click",FLBuilder._deleteNodeTemplateClicked),e("body").delegate(".fl-builder-block","mousedown",FLBuilder._blockDragInit),e("body").on("mouseup",FLBuilder._blockDragCancel),e("body").delegate(".fl-builder-actions .fl-builder-cancel-button","click",FLBuilder._cancelButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-publish-button","click",FLBuilder._publishButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-draft-button","click",FLBuilder._draftButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-discard-button","click",FLBuilder._discardButtonClicked),e("body").delegate(".fl-builder-save-user-template-button","click",FLBuilder._saveUserTemplateClicked),e("body").delegate(".fl-builder-duplicate-layout-button","click",FLBuilder._duplicateLayoutClicked),e("body").delegate(".fl-builder-layout-settings-button","click",FLBuilder._layoutSettingsClicked),e("body").delegate(".fl-builder-layout-settings .fl-builder-settings-save","click",FLBuilder._saveLayoutSettingsClicked),e("body").delegate(".fl-builder-layout-settings .fl-builder-settings-cancel","click",FLBuilder._cancelLayoutSettingsClicked),e("body").delegate(".fl-builder-global-settings-button","click",FLBuilder._globalSettingsClicked),e("body").delegate(".fl-builder-global-settings .fl-builder-settings-save","click",FLBuilder._saveGlobalSettingsClicked),e("body").delegate(".fl-builder-global-settings .fl-builder-settings-cancel","click",FLBuilder._cancelLayoutSettingsClicked),e("body").delegate(".fl-template-category-select","change",FLBuilder._templateCategoryChanged),e("body").delegate(".fl-template-preview","click",FLBuilder._templateClicked),e("body").delegate(".fl-user-template","click",FLBuilder._userTemplateClicked),e("body").delegate(".fl-user-template-edit","click",FLBuilder._editUserTemplateClicked),e("body").delegate(".fl-user-template-delete","click",FLBuilder._deleteUserTemplateClicked),e("body").delegate(".fl-builder-template-replace-button","click",FLBuilder._templateReplaceClicked),e("body").delegate(".fl-builder-template-append-button","click",FLBuilder._templateAppendClicked),e("body").delegate(".fl-builder-template-actions .fl-builder-cancel-button","click",FLBuilder._templateCancelClicked),e("body").delegate(".fl-builder-user-template-settings .fl-builder-settings-save","click",FLBuilder._saveUserTemplateSettings),e("body").delegate(".fl-builder-help-tour-button","click",FLBuilder._startHelpTour),e("body").delegate(".fl-builder-help-video-button","click",FLBuilder._watchVideoClicked),e("body").delegate(".fl-builder-knowledge-base-button","click",FLBuilder._viewKnowledgeBaseClicked),e("body").delegate(".fl-builder-forums-button","click",FLBuilder._visitForumsClicked),e("body").delegate(".fl-builder-no-tour-button","click",FLBuilder._noTourButtonClicked),e("body").delegate(".fl-builder-yes-tour-button","click",FLBuilder._yesTourButtonClicked),e("body").delegate(".fl-builder-alert-close","click",FLBuilder._alertClose),e("body").delegate(".fl-row-overlay .fl-block-remove","click",FLBuilder._deleteRowClicked),e("body").delegate(".fl-row-overlay .fl-block-copy","click",FLBuilder._rowCopyClicked),e("body").delegate(".fl-row-overlay .fl-block-move","mousedown",FLBuilder._blockDragInit),e("body").delegate(".fl-row-overlay .fl-block-settings","click",FLBuilder._rowSettingsClicked),e("body").delegate(".fl-row-overlay","click",FLBuilder._rowSettingsClicked),e("body").delegate(".fl-builder-row-settings .fl-builder-settings-save","click",FLBuilder._saveSettings),e("body").delegate(".fl-col-overlay","click",FLBuilder._colSettingsClicked),e("body").delegate(".fl-builder-col-settings .fl-builder-settings-save","click",FLBuilder._saveSettings),e("body").delegate(".fl-col-overlay .fl-block-remove","click",FLBuilder._deleteColClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-edit","click",FLBuilder._colSettingsClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-delete","click",FLBuilder._deleteColClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-insert-before","click",FLBuilder._insertColBeforeClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-insert-after","click",FLBuilder._insertColAfterClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-reset","click",FLBuilder._resetColumnWidths),e("body").delegate(".fl-module-overlay .fl-block-remove","click",FLBuilder._deleteModuleClicked),e("body").delegate(".fl-module-overlay .fl-block-copy","click",FLBuilder._moduleCopyClicked),e("body").delegate(".fl-module-overlay .fl-block-move","mousedown",FLBuilder._blockDragInit),e("body").delegate(".fl-module-overlay .fl-block-settings","click",FLBuilder._moduleSettingsClicked),e("body").delegate(".fl-module-overlay","click",FLBuilder._moduleSettingsClicked),e("body").delegate(".fl-builder-module-settings .fl-builder-settings-save","click",FLBuilder._saveModuleClicked),e("body").delegate(".fl-builder-settings-save-as","click",FLBuilder._showNodeTemplateSettings),e("body").delegate(".fl-builder-node-template-settings .fl-builder-settings-save","click",FLBuilder._saveNodeTemplate),e("body").delegate(".fl-builder-settings-tabs a","click",FLBuilder._settingsTabClicked),e("body").delegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked),e("body").delegate(".fl-help-tooltip-icon","mouseover",FLBuilder._showHelpTooltip),e("body").delegate(".fl-help-tooltip-icon","mouseout",FLBuilder._hideHelpTooltip),e("body").delegate(".fl-builder-field-add","click",FLBuilder._addFieldClicked),e("body").delegate(".fl-builder-field-copy","click",FLBuilder._copyFieldClicked),e("body").delegate(".fl-builder-field-delete","click",FLBuilder._deleteFieldClicked),e("body").delegate(".fl-builder-settings-fields select","change",FLBuilder._settingsSelectChanged),e("body").delegate(".fl-photo-field .fl-photo-select","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-edit","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-replace","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-remove","click",FLBuilder._singlePhotoRemoved),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-select","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-edit","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-add","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-video-field .fl-video-select","click",FLBuilder._selectSingleVideo),e("body").delegate(".fl-video-field .fl-video-replace","click",FLBuilder._selectSingleVideo),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-select","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-edit","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-add","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-icon-field .fl-icon-select","click",FLBuilder._selectIcon),e("body").delegate(".fl-icon-field .fl-icon-replace","click",FLBuilder._selectIcon),e("body").delegate(".fl-icon-field .fl-icon-remove","click",FLBuilder._removeIcon),e("body").delegate(".fl-form-field .fl-form-field-edit","click",FLBuilder._formFieldClicked),e("body").delegate(".fl-form-field-settings .fl-builder-settings-save","click",FLBuilder._saveFormFieldClicked),e("body").delegate(".fl-layout-field-option","click",FLBuilder._layoutFieldClicked),e("body").delegate(".fl-link-field-select","click",FLBuilder._linkFieldSelectClicked),e("body").delegate(".fl-link-field-search-cancel","click",FLBuilder._linkFieldSelectCancelClicked),e("body").delegate(".fl-loop-builder select[name=post_type]","change",FLBuilder._loopBuilderPostTypeChange),e("body").delegate(".fl-select-add-value","change",FLBuilder._textFieldAddValueSelectChange)},_bindOverlayEvents:function(){var t=e(FLBuilder._contentClass);t.delegate(".fl-row","mouseenter",FLBuilder._rowMouseenter),t.delegate(".fl-row","mouseleave",FLBuilder._rowMouseleave),t.delegate(".fl-row-overlay","mouseleave",FLBuilder._rowMouseleave),t.delegate(".fl-col","mouseenter",FLBuilder._colMouseenter),t.delegate(".fl-col","mouseleave",FLBuilder._colMouseleave),t.delegate(".fl-module","mouseenter",FLBuilder._moduleMouseenter),t.delegate(".fl-module","mouseleave",FLBuilder._moduleMouseleave)},_destroyOverlayEvents:function(){var t=e(FLBuilder._contentClass);t.undelegate(".fl-row","mouseenter",FLBuilder._rowMouseenter),t.undelegate(".fl-row","mouseleave",FLBuilder._rowMouseleave),t.undelegate(".fl-row-overlay","mouseleave",FLBuilder._rowMouseleave),t.undelegate(".fl-col","mouseenter",FLBuilder._colMouseenter),t.undelegate(".fl-col","mouseleave",FLBuilder._colMouseleave),t.undelegate(".fl-module","mouseenter",FLBuilder._moduleMouseenter),t.undelegate(".fl-module","mouseleave",FLBuilder._moduleMouseleave)},_preventDefault:function(e){e.preventDefault()},_stopPropagation:function(e){e.stopPropagation()},_headerLinkClicked:function(t){var l=e(this),i=l.attr("href");t.preventDefault(),FLBuilderConfig.isUserTemplate||(FLBuilder._exitUrl=i.indexOf("?")>-1?i:i+"?fl_builder",FLBuilder._doneClicked())},_warnBeforeUnload:function(){var t=e(".fl-builder-row-settings").length>0,l=e(".fl-builder-col-settings").length>0,i=e(".fl-builder-module-settings").length>0;return t||l||i?FLBuilderStrings.unloadWarning:void 0},_initTipTips:function(){e(".fl-tip").tipTip()},_hideTipTips:function(){e("#tiptip_holder").stop().remove()},_submenuParentClicked:function(t){var l=e(this),i=l.find(".fl-builder-submenu");l.hasClass("fl-builder-submenu-open")?(l.removeClass("fl-builder-submenu-open"),l.removeClass("fl-builder-submenu-right")):(l.offset().left+i.width()>e(window).width()&&l.addClass("fl-builder-submenu-right"),l.addClass("fl-builder-submenu-open")),FLBuilder._hideTipTips(),t.preventDefault(),t.stopPropagation()},_submenuChildClicked:function(t){e(this).closest(".fl-builder-submenu-open").removeClass("fl-builder-submenu-open")},_submenuMouseenter:function(t){var l=e(this),i=l.data("timeout");"undefined"!=typeof i&&clearTimeout(i)},_submenuMouseleave:function(t){var l=e(this),i=setTimeout(function(){l.closest(".fl-builder-submenu-open").removeClass("fl-builder-submenu-open")},500);l.data("timeout",i)},_toolsClicked:function(){var e={},t=FLBuilderConfig.lite,l=FLBuilderConfig.enabledTemplates;t||FLBuilderConfig.isUserTemplate||"enabled"!=l&&"user"!=l||(e["save-user-template"]=FLBuilderStrings.saveTemplate,"undefined"!=typeof FLBuilderTemplateSettings&&(e["save-template"]=FLBuilderStrings.saveCoreTemplate)),FLBuilderConfig.isUserTemplate?"undefined"!=typeof window.opener&&window.opener||(e["duplicate-layout"]=FLBuilderStrings.duplicateLayout):e["duplicate-layout"]=FLBuilderStrings.duplicateLayout,e["layout-settings"]=FLBuilderStrings.editLayoutSettings,e["global-settings"]=FLBuilderStrings.editGlobalSettings,FLBuilder._showActionsLightbox({className:"fl-builder-tools-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:e})},_doneClicked:function(){FLBuilder._showActionsLightbox({className:"fl-builder-save-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:{publish:FLBuilderStrings.publish,draft:FLBuilderStrings.draft,discard:FLBuilderStrings.discard}})},_upgradeClicked:function(){window.open(FLBuilderConfig.upgradeUrl)},_helpButtonClicked:function(){var e={};FLBuilderConfig.help.tour&&(e["help-tour"]=FLBuilderStrings.takeHelpTour),FLBuilderConfig.help.video&&(e["help-video"]=FLBuilderStrings.watchHelpVideo),FLBuilderConfig.help.knowledge_base&&(e["knowledge-base"]=FLBuilderStrings.viewKnowledgeBase),FLBuilderConfig.help.forums&&(e.forums=FLBuilderStrings.visitForums),FLBuilder._showActionsLightbox({className:"fl-builder-help-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:e})},_closePanel:function(){e(".fl-builder-panel").stop(!0,!0).animate({right:"-350px"},500,function(){e(this).hide()}),e(".fl-builder-bar .fl-builder-add-content-button").stop(!0,!0).fadeIn()},_showPanel:function(){e(".fl-builder-bar .fl-builder-add-content-button").stop(!0,!0).fadeOut(),e(".fl-builder-panel").stop(!0,!0).show().animate({right:"0"},500)},_blockSectionTitleClicked:function(){var t=e(this),l=t.parent();l.hasClass("fl-active")?l.removeClass("fl-active"):(e(".fl-builder-blocks-section").removeClass("fl-active"),l.addClass("fl-active")),FLBuilder._initScrollbars()},_publishButtonClicked:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_layout"},FLBuilder._exit),FLBuilder._actionsLightbox.close()},_draftButtonClicked:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_draft"},FLBuilder._exit),FLBuilder._actionsLightbox.close()},_discardButtonClicked:function(){var e=confirm(FLBuilderStrings.discardMessage);e&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"clear_draft_layout"},FLBuilder._exit),FLBuilder._actionsLightbox.close())},_cancelButtonClicked:function(){FLBuilder._exitUrl=null,FLBuilder._actionsLightbox.close()},_exit:function(){var e=window.location.href;FLBuilderConfig.isUserTemplate&&"undefined"!=typeof window.opener&&window.opener?("undefined"!=typeof window.opener.FLBuilder&&window.opener.FLBuilder._updateLayout(),
3
  window.close()):(e=FLBuilder._exitUrl?FLBuilder._exitUrl:e.replace("?fl_builder","").replace("&fl_builder",""),window.location.href=e)},_duplicateLayoutClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"duplicate_post"},FLBuilder._duplicateLayoutComplete)},_duplicateLayoutComplete:function(t){var l=e("#fl-admin-url").val();window.location.href=l+"post.php?post="+t+"&action=edit"},_layoutSettingsClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(),FLBuilder._closePanel(),FLBuilder.ajax({action:"render_layout_settings"},FLBuilder._layoutSettingsLoaded)},_layoutSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._layoutSettingsInitCSS()},_layoutSettingsInitCSS:function(){var t=e(".fl-builder-settings #fl-field-css textarea:not(.ace_text-input)");t.on("change",FLBuilder._layoutSettingsCSSChanged),FLBuilder._layoutSettingsCSSCache=t.val()},_layoutSettingsCSSChanged:function(){FLBuilder._layoutSettingsCSSTimeout&&clearTimeout(FLBuilder._layoutSettingsCSSTimeout),FLBuilder._layoutSettingsCSSTimeout=setTimeout(e.proxy(FLBuilder._layoutSettingsCSSDoChange,this),600)},_layoutSettingsCSSDoChange:function(){var t=e(".fl-builder-settings"),l=e(this),i=l.parents("#fl-field-css");i.find(".ace_error").length>0||(t.hasClass("fl-builder-layout-settings")?e("#fl-builder-layout-css").html(l.val()):e("#fl-builder-global-css").html(l.val()),FLBuilder._layoutSettingsCSSTimeout=null)},_saveLayoutSettingsClicked:function(){for(var t=e(this).closest(".fl-builder-settings"),l=t.serializeArray(),i={},o=0;o<l.length;o++)i[l[o].name]=l[o].value;FLBuilder.showAjaxLoader(),FLBuilder._lightbox.close(),FLBuilder._layoutSettingsCSSCache=null,FLBuilder.ajax({action:"save_layout_settings",settings:i},FLBuilder._updateLayout)},_cancelLayoutSettingsClicked:function(){var t=e(".fl-builder-settings");t.hasClass("fl-builder-layout-settings")?e("#fl-builder-layout-css").html(FLBuilder._layoutSettingsCSSCache):e("#fl-builder-global-css").html(FLBuilder._layoutSettingsCSSCache),FLBuilder._layoutSettingsCSSCache=null},_globalSettingsClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_global_settings"},FLBuilder._globalSettingsLoaded)},_globalSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._layoutSettingsInitCSS(),FLBuilder._initSettingsValidation({module_margins:{required:!0,number:!0},row_margins:{required:!0,number:!0},row_padding:{required:!0,number:!0},row_width:{required:!0,number:!0},responsive_breakpoint:{required:!0,number:!0}})},_saveGlobalSettingsClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=t.validate().form(),i=t.serializeArray(),o={},s=0;if(l){for(;s<i.length;s++)o[i[s].name]=i[s].value;FLBuilder.showAjaxLoader(),FLBuilder._layoutSettingsCSSCache=null,FLBuilder.ajax({action:"save_global_settings",settings:o},FLBuilder._updateLayout),FLBuilder._lightbox.close()}},_initTemplateSelector:function(){var t=e(FLBuilder._contentClass).find(".fl-row");0===t.length&&FLBuilder._showTemplateSelector()},_changeTemplateClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showTemplateSelector()},_showTemplateSelector:function(){FLBuilderConfig.simpleUi||FLBuilderConfig.isUserTemplate||"disabled"!=FLBuilderConfig.enabledTemplates&&(FLBuilderConfig.lite||(FLBuilder._showLightbox(!1),FLBuilder.ajax({action:"render_template_selector"},FLBuilder._templateSelectorLoaded)))},_templateSelectorLoaded:function(t){var l=JSON.parse(t),i=null,o=null;FLBuilder._setLightboxContent(l.html),i=e(".fl-template-category-select"),o=e(".fl-user-template"),("user"==FLBuilderConfig.enabledTemplates||o.length>0)&&(i.val("fl-builder-settings-tab-yours"),e(".fl-builder-settings-tab").removeClass("fl-active"),e("#fl-builder-settings-tab-yours").addClass("fl-active")),0===o.length&&e(".fl-user-templates-message").show(),e("body").trigger("fl-builder.template-selector-loaded")},_templateCategoryChanged:function(){e(".fl-template-selector .fl-builder-settings-tab").hide(),e("#"+e(this).val()).show()},_templateClicked:function(){var t=e(this),l=t.closest(".fl-template-preview").attr("data-id");e(FLBuilder._contentClass).children(".fl-row").length>0?0===l?confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._lightbox._node.hide(),FLBuilder._applyTemplate(0,!1,"core")):(FLBuilder._selectedTemplateId=l,FLBuilder._selectedTemplateType="core",FLBuilder._showTemplateActions(),FLBuilder._lightbox._node.hide()):FLBuilder._applyTemplate(l,!1,"core")},_showTemplateActions:function(){FLBuilder._showActionsLightbox({className:"fl-builder-template-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:{"template-replace":FLBuilderStrings.templateReplace,"template-append":FLBuilderStrings.templateAppend}})},_templateReplaceClicked:function(){confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._actionsLightbox.close(),FLBuilder._applyTemplate(FLBuilder._selectedTemplateId,!1,FLBuilder._selectedTemplateType))},_templateAppendClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._applyTemplate(FLBuilder._selectedTemplateId,!0,FLBuilder._selectedTemplateType)},_templateCancelClicked:function(){FLBuilder._lightbox._node.show()},_applyTemplate:function(e,t,l){t="undefined"!=typeof t&&t?"1":"0",l="undefined"==typeof l?"core":l,FLBuilder._lightbox.close(),FLBuilder.showAjaxLoader(),"core"==l?FLBuilder.ajax({action:"apply_template",template_id:e,append:t},FLBuilder._updateLayout):FLBuilder.ajax({action:"apply_user_template",template_id:e,append:t},FLBuilder._updateLayout)},_saveUserTemplateClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(!1),FLBuilder.ajax({action:"render_user_template_settings"},FLBuilder._userTemplateSettingsLoaded)},_userTemplateSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._initSettingsValidation({name:{required:!0}})},_saveUserTemplateSettings:function(){var t=e(this).closest(".fl-builder-settings"),l=t.validate().form(),i=FLBuilder._getSettings(t);l&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_user_template",settings:i},FLBuilder._saveUserTemplateSettingsComplete),FLBuilder._lightbox.close())},_saveUserTemplateSettingsComplete:function(){FLBuilder.alert(FLBuilderStrings.templateSaved)},_userTemplateClicked:function(){var t=e(this).attr("data-id");e(FLBuilder._contentClass).children(".fl-row").length>0?"blank"==t?confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._lightbox._node.hide(),FLBuilder._applyTemplate("blank",!1,"user")):(FLBuilder._selectedTemplateId=t,FLBuilder._selectedTemplateType="user",FLBuilder._showTemplateActions(),FLBuilder._lightbox._node.hide()):FLBuilder._applyTemplate(t,!1,"user")},_editUserTemplateClicked:function(t){t.preventDefault(),t.stopPropagation(),window.open(e(this).attr("href"))},_deleteUserTemplateClicked:function(t){var l=e(this).closest(".fl-user-template"),i=l.attr("data-id"),o=e(".fl-user-template[data-id="+i+"]"),s=null;confirm(FLBuilderStrings.deleteTemplate)&&(FLBuilder.ajax({action:"delete_user_template",template_id:i}),o.fadeOut(function(){l=e(this),s=l.closest(".fl-user-template-category"),l.remove(),0===s.find(".fl-user-template").length&&s.remove(),1===e(".fl-user-template").length&&(e(".fl-user-templates").hide(),e(".fl-user-templates-message").show())})),t.stopPropagation()},_initCoreTemplateSettings:function(){"undefined"!=typeof FLBuilderTemplateSettings&&FLBuilderTemplateSettings.init()},_watchVideoClicked:function(){var e=wp.template("fl-video-lightbox");FLBuilder._actionsLightbox.close(),FLBuilder._lightbox.open(e({video:FLBuilderConfig.help.video_embed}))},_viewKnowledgeBaseClicked:function(){FLBuilder._actionsLightbox.close(),window.open(FLBuilderConfig.help.knowledge_base_url)},_visitForumsClicked:function(){FLBuilder._actionsLightbox.close(),window.open(FLBuilderConfig.help.forums_url)},_showTourOrTemplates:function(){FLBuilderConfig.simpleUi||FLBuilderConfig.isUserTemplate||(FLBuilderConfig.help.tour&&FLBuilderConfig.newUser?FLBuilder._showTourLightbox():FLBuilder._initTemplateSelector())},_showTourLightbox:function(){var e=wp.template("fl-tour-lightbox");FLBuilder._actionsLightbox.open(e())},_noTourButtonClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._initTemplateSelector()},_yesTourButtonClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilderTour.start()},_startHelpTour:function(){FLBuilder._actionsLightbox.close(),FLBuilderTour.start()},_setupEmptyLayout:function(){var t=e(FLBuilder._contentClass);FLBuilderConfig.isUserTemplate&&"module"==FLBuilderConfig.userTemplateType||(t.removeClass("fl-builder-empty"),t.find(".fl-builder-empty-message").remove(),0===t.children(".fl-row").length&&(t.addClass("fl-builder-empty"),t.append('<span class="fl-builder-empty-message">'+FLBuilderStrings.emptyMessage+"</span>"),FLBuilder._initSortables()))},_updateLayout:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"render_layout"},FLBuilder._renderLayout)},_renderLayout:function(e,t){FLBuilder._layout=new FLBuilderAJAXLayout(e,t)},_renderLayoutComplete:function(){FLBuilder._layout&&(FLBuilder._layout._complete(),FLBuilder._layout=null)},_resizeLayout:function(){e(window).trigger("resize"),"undefined"!=typeof YUI&&YUI().use("node-event-simulate",function(e){e.one(window).simulate("resize")})},_initMediaElements:function(){var t={};"undefined"!=typeof e.fn.mediaelementplayer&&("undefined"!=typeof _wpmejsSettings&&(t.pluginPath=_wpmejsSettings.pluginPath),e(".wp-audio-shortcode, .wp-video-shortcode").not(".mejs-container").mediaelementplayer(t))},_blockDragHelper:function(e,t){var l=t.clone();return t.clone().insertAfter(t),l.addClass("fl-builder-block-drag-helper"),l},_blockDragInit:function(t){var l=e(t.target),i=null,o=0,s="row"==FLBuilderConfig.userTemplateType?"":":not(.fl-node-global)";FLBuilder._dragEnabled=!0,l.closest(".fl-module").length>0?i=l.closest(".fl-module"):l.closest(".fl-row").length>0?i=l.closest(".fl-row"):l.hasClass("fl-builder-block-row")||l.hasClass("fl-builder-block-saved-row")?e(".fl-row").each(function(){null===i&&e(this).offset().top-e(window).scrollTop()>0&&(i=e(this))}):(l.hasClass("fl-builder-block-module")||l.hasClass("fl-builder-block-saved-module"))&&e(".fl-module").each(function(){null===i&&e(this).offset().top-e(window).scrollTop()>0&&(i=e(this))}),null!==i?o=i.offset().top-e(window).scrollTop():i=l,e(".fl-builder-empty-message").hide(),e(FLBuilder._contentClass+" .fl-row"+s).addClass("fl-row-highlight"),(i.hasClass("fl-module")||i.hasClass("fl-builder-block-module")||i.hasClass("fl-builder-block-saved-module"))&&e(FLBuilder._contentClass+" .fl-col"+s).addClass("fl-col-highlight"),FLBuilder._disableGlobalRows(),FLBuilder._closePanel(),FLBuilder._destroyOverlayEvents(),FLBuilder._removeAllOverlays(),o>0&&scrollTo(0,i.offset().top-o)},_blockDragStart:function(t,l){FLBuilder._dragging=!0,e(FLBuilder._contentClass).sortable("refreshPositions"),e(FLBuilder._contentClass+" .fl-row-content").sortable("refreshPositions"),e(FLBuilder._contentClass+" .fl-col-content").sortable("refreshPositions")},_blockDragSort:function(e,t){if("undefined"!=typeof t.placeholder){var l=t.placeholder.parent(),i=FLBuilderStrings.insert;l.hasClass("fl-col-content")?i=t.item.hasClass("fl-builder-block-module")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-builder-block-saved-module")||t.item.hasClass("fl-builder-block-module-template")?t.item.find(".fl-builder-block-title").text():t.item.attr("data-name"):l.hasClass("fl-row-content")?i=t.item.hasClass("fl-builder-block-row")?t.item.find(".fl-builder-block-title").text():FLBuilderStrings.newColumn:l.hasClass("fl-builder-content")&&(i=t.item.hasClass("fl-builder-block-row")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-builder-block-saved-row")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-row")?FLBuilderStrings.row:FLBuilderStrings.newRow),t.placeholder.html(i),t.item.hasClass("fl-node-global")||t.item.hasClass("fl-builder-block-global")?t.placeholder.addClass("fl-builder-drop-zone-global"):t.placeholder.removeClass("fl-builder-drop-zone-global")}},_blockDragStop:function(t,l){var i=l.item.parent(),o=i.offset().top-e(window).scrollTop();i.hasClass("fl-builder-blocks-section-content")&&FLBuilder._showPanel(),FLBuilder._dragEnabled=!1,FLBuilder._dragging=!1,FLBuilder._bindOverlayEvents(),FLBuilder._highlightEmptyCols(),FLBuilder._enableGlobalRows(),e(".fl-builder-empty-message").show(),scrollTo(0,i.offset().top-o)},_blockDragCancel:function(){FLBuilder._dragEnabled&&!FLBuilder._dragging&&(FLBuilder._dragEnabled=!1,FLBuilder._dragging=!1,FLBuilder._bindOverlayEvents(),FLBuilder._highlightEmptyCols(),FLBuilder._enableGlobalRows(),e(".fl-builder-empty-message").show())},_removeAllOverlays:function(){FLBuilder._removeRowOverlays(),FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),FLBuilder._hideTipTips()},_appendOverlay:function(e,t){var l=0,i=null,o=e.hasClass("fl-row"),s=o?e.find("> .fl-row-content-wrap"):e.find("> .fl-node-content"),r={top:parseInt(s.css("margin-top"),10),bottom:parseInt(s.css("margin-bottom"),10)};e.append(t),e.addClass("fl-block-overlay-active"),FLBuilder._initTipTips(),i=e.find("> .fl-block-overlay"),r.top<0&&(l=parseInt(i.css("top"),10),l=isNaN(l)?0:l,i.css("top",r.top+l+"px")),r.bottom<0&&(l=parseInt(i.css("bottom"),10),l=isNaN(l)?0:l,i.css("bottom",r.bottom+l+"px")),o&&i.offset().top<43&&i.addClass("fl-row-overlay-header-bottom")},_highlightEmptyCols:function(){var t="row"==FLBuilderConfig.userTemplateType?"":":not(.fl-node-global)",l=e(FLBuilder._contentClass+" .fl-row"+t),i=e(FLBuilder._contentClass+" .fl-col"+t);l.removeClass("fl-row-highlight"),i.removeClass("fl-col-highlight"),i.each(function(){var t=e(this);0===t.find(".fl-module").length&&t.addClass("fl-col-highlight")})},_removeRowOverlays:function(){e(".fl-row").removeClass("fl-block-overlay-active"),e(".fl-row-overlay").remove(),e(".fl-module").removeClass("fl-module-adjust-height")},_disableGlobalRows:function(){if("row"!=FLBuilderConfig.userTemplateType){var t=e(".fl-row.fl-node-global");t.addClass("fl-node-disabled"),t.append('<div class="fl-node-disabled-overlay"></div>')}},_enableGlobalRows:function(){"row"!=FLBuilderConfig.userTemplateType&&(e(".fl-node-disabled").removeClass("fl-node-disabled"),e(".fl-node-disabled-overlay").remove())},_rowMouseenter:function(){var t=e(this),l=wp.template("fl-row-overlay");t.hasClass("fl-block-overlay-active")||(FLBuilder._appendOverlay(t,l({global:t.hasClass("fl-node-global"),node:t.attr("data-node")})),t.find(".fl-module").each(function(){e(this).outerHeight(!0)<20&&e(this).addClass("fl-module-adjust-height")}))},_rowMouseleave:function(t){var l=e(t.toElement)||e(t.relatedTarget),i=l.hasClass("fl-row-overlay"),o=l.closest(".fl-row-overlay").length>0,s=l.is("#tiptip_holder"),r=l.closest("#tiptip_holder").length>0;i||o||s||r||FLBuilder._removeRowOverlays()},_rowDragHelper:function(){return e('<div class="fl-builder-block-drag-helper" style="width: 190px; height: 45px;">'+FLBuilderStrings.row+"</div>")},_rowDragStop:function(t,l){var i=l.item,o=i.parent();return FLBuilder._blockDragStop(t,l),o.hasClass("fl-builder-rows")?void i.remove():void(i.hasClass("fl-builder-block")?(o.hasClass("fl-row-content")?FLBuilder._addColGroup(i.closest(".fl-row").attr("data-node"),i.attr("data-cols"),o.children(".fl-col-group, .fl-builder-block").index(i)):FLBuilder._addRow(i.attr("data-cols"),o.children(".fl-row, .fl-builder-block").index(i)),i.remove(),FLBuilder._showPanel(),e(".fl-builder-modules").siblings(".fl-builder-blocks-section-title").eq(0).trigger("click")):FLBuilder._reorderRow(i.attr("data-node"),o.children(".fl-row").index(i)))},_reorderRow:function(e,t){FLBuilder.ajax({action:"reorder_node",node_id:e,position:t,silent:!0})},_addRow:function(e,t){FLBuilder.showAjaxLoader(),FLBuilder._newRowPosition=t,FLBuilder.ajax({action:"render_new_row",cols:e,position:t},FLBuilder._addRowComplete)},_addRowComplete:function(t){var l=JSON.parse(t),i=e(FLBuilder._contentClass),o=e(l.html).data("node");l.nodeParent=i,l.nodePosition=FLBuilder._newRowPosition,FLBuilder._renderLayout(l,function(){null!==FLBuilder._addModuleAfterRowRender&&(FLBuilder._addModuleAfterRowRender.hasClass("fl-module")&&(e(".fl-node-"+o+" .fl-col-content").append(FLBuilder._addModuleAfterRowRender),FLBuilder._reorderModule(FLBuilder._addModuleAfterRowRender)),FLBuilder._addModuleAfterRowRender=null)})},_deleteRowClicked:function(t){var l=e(this).closest(".fl-row-overlay").attr("data-node"),i=e(".fl-row[data-node="+l+"]"),o=null;i.find(".fl-module").length?(o=confirm(FLBuilderStrings.deleteRowMessage),o&&FLBuilder._deleteRow(i)):FLBuilder._deleteRow(i),FLBuilder._removeAllOverlays(),t.stopPropagation()},_deleteRow:function(e){FLBuilder.ajax({action:"delete_node",node_id:e.attr("data-node"),silent:!0}),e.empty(),e.remove(),FLBuilder._setupEmptyLayout(),FLBuilder._removeRowOverlays()},_rowCopyClicked:function(t){var l=e(this).closest(".fl-row"),i=l.attr("data-node");FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder._newRowPosition=l.index(".fl-row")+1,FLBuilder.ajax({action:"copy_row",node_id:i},FLBuilder._rowCopyComplete),t.stopPropagation()},_rowCopyComplete:function(t){var l=JSON.parse(t);l.nodeParent=e(FLBuilder._contentClass),l.nodePosition=FLBuilder._newRowPosition,FLBuilder._renderLayout(l)},_rowSettingsClicked:function(t){var l=e(this),i=l.closest(".fl-row-overlay").attr("data-node"),o=l.closest(".fl-block-overlay-global").length>0;o&&"row"!=FLBuilderConfig.userTemplateType?FLBuilderConfig.userCanEditGlobalTemplates&&window.open(e('.fl-row[data-node="'+i+'"]').attr("data-template-url")):l.hasClass("fl-block-settings")&&(FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_row_settings",node_id:i},FLBuilder._rowSettingsLoaded)),t.stopPropagation()},_rowSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.settings),FLBuilder.preview=new FLBuilderPreview({type:"row",state:t.state})},_colMouseenter:function(){var t=e(this),l=t.hasClass("fl-node-global"),i=t.parents(".fl-node-global").length>0,o=t.parents(".fl-col-group").find(".fl-col").length,s=0===t.index(),r=o===t.index()+1,n=wp.template("fl-col-overlay");FLBuilderConfig.simpleUi||l&&i&&"row"!=FLBuilderConfig.userTemplateType||t.find(".fl-module").length>0||(t.hasClass("fl-block-overlay-active")||(FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),FLBuilder._appendOverlay(t,n({global:l,numCols:o,first:s,last:r})),FLBuilder._initColDragResizing()),e("body").addClass("fl-block-overlay-muted"))},_colMouseleave:function(t){var l=e(this),i=e(t.toElement)||e(t.relatedTarget),o=l.find(".fl-module").length>0,s=i.is("#tiptip_holder"),r=i.closest("#tiptip_holder").length>0;o||s||r||FLBuilder._removeColOverlays()},_removeColOverlays:function(){var t=e(".fl-col");t.removeClass("fl-block-overlay-active"),t.find(".fl-col-overlay").remove(),e("body").removeClass("fl-block-overlay-muted")},_colSettingsClicked:function(t){var l=e(this).closest(".fl-col").attr("data-node");FLBuilder._colResizing||(FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_column_settings",node_id:l},FLBuilder._colSettingsLoaded),t.stopPropagation())},_colSettingsLoaded:function(t){var l=JSON.parse(t),i=null,o=null,s=null;FLBuilder._setSettingsFormContent(l.settings),i=e(".fl-builder-col-settings"),o=i.data("node"),s=e('.fl-col[data-node="'+o+'"]'),0===s.siblings(".fl-col").length&&e(i).find("#fl-builder-settings-section-general").css("display","none"),FLBuilder.preview=new FLBuilderPreview({type:"col",state:l.state})},_deleteColClicked:function(t){var l=e(this),i=l.closest(".fl-col"),o=l.closest(".fl-module"),s=!0;o.length>0&&(s=confirm(FLBuilderStrings.deleteColumnMessage)),s&&(FLBuilder._deleteCol(i),FLBuilder._removeAllOverlays()),t.stopPropagation()},_deleteCol:function(e){var t=e.closest(".fl-row"),l=e.closest(".fl-col-group"),i=0;e.remove(),rowCols=t.find(".fl-col"),groupCols=l.find(".fl-col"),0===rowCols.length&&"row"!=FLBuilderConfig.userTemplateType?FLBuilder._deleteRow(t):(0===groupCols.length?l.remove():(i=6===groupCols.length?16.65:7===groupCols.length?14.28:Math.round(100/groupCols.length*100)/100,groupCols.css("width",i+"%")),FLBuilder.ajax({action:"delete_col",node_id:e.attr("data-node"),new_width:i,silent:!0}))},_insertColBeforeClicked:function(t){FLBuilder._insertCol(e(this).closest(".fl-col"),"before"),t.stopPropagation()},_insertColAfterClicked:function(t){FLBuilder._insertCol(e(this).closest(".fl-col"),"after"),t.stopPropagation()},_insertCol:function(e,t){FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder.ajax({action:"render_new_column",node_id:e.attr("data-node"),insert:t},FLBuilder._renderLayout)},_addColGroup:function(t,l,i){FLBuilder.showAjaxLoader(),FLBuilder._newColGroupParent=e(".fl-node-"+t+" .fl-row-content"),FLBuilder._newColGroupPosition=i,FLBuilder.ajax({action:"render_new_column_group",cols:l,node_id:t,position:i},FLBuilder._addColGroupComplete)},_addColGroupComplete:function(t){var l=JSON.parse(t),i=e(l.html).find(".fl-col").data("node");l.nodeParent=FLBuilder._newColGroupParent,l.nodePosition=FLBuilder._newColGroupPosition,FLBuilder._renderLayout(l,function(){null!==FLBuilder._addModuleAfterRowRender&&(FLBuilder._addModuleAfterRowRender.hasClass("fl-module")&&(e(".fl-node-"+i+" .fl-col-content").append(FLBuilder._addModuleAfterRowRender),FLBuilder._reorderModule(FLBuilder._addModuleAfterRowRender)),FLBuilder._addModuleAfterRowRender=null)})},_initColDragResizing:function(){e(".fl-block-col-resize").draggable({axis:"x",start:FLBuilder._colDragResizeStart,drag:FLBuilder._colDragResize,stop:FLBuilder._colDragResizeStop})},_colDragResizeStart:function(t,l){var i=e(l.helper),o="",s=i.closest(".fl-col-group"),r=s.find(".fl-col"),n=i.closest(".fl-col"),a=null,d=100,u=0;for(i.hasClass("fl-block-col-resize-e")?(o="e",a=n.next(".fl-col")):(o="w",a=n.prev(".fl-col"));u<r.length;u++)r.eq(u).data("node")!=n.data("node")&&r.eq(u).data("node")!=a.data("node")&&(d-=parseFloat(r.eq(u)[0].style.width));FLBuilder._colResizeData={handle:i,feedbackLeft:i.find(".fl-block-col-resize-feedback-left"),feedbackRight:i.find(".fl-block-col-resize-feedback-right"),direction:o,groupWidth:s.outerWidth(),col:n,colWidth:parseFloat(n[0].style.width)/100,sibling:a,offset:l.position.left,availWidth:d},FLBuilder._colResizing=!0,FLBuilder._closePanel(),FLBuilder._destroyOverlayEvents()},_colDragResize:function(e,t){var l=FLBuilder._colResizeData,i=(l.offset-t.position.left)/l.groupWidth,o="e"==l.direction?100*(l.colWidth-i):100*(l.colWidth+i),s=Math.round(100*o)/100,r=l.availWidth-o,n=Math.round(100*r)/100,a=10,d=Math.round(100*(l.availWidth-10))/100;10>s?(s=a,n=d):10>n&&(s=d,n=a),"e"==l.direction?(l.feedbackLeft.html(s.toFixed(1)+"%").show(),l.feedbackRight.html(n.toFixed(1)+"%").show()):(l.feedbackLeft.html(n.toFixed(1)+"%").show(),l.feedbackRight.html(s.toFixed(1)+"%").show()),l.col.css("width",s+"%"),l.sibling.css("width",n+"%")},_colDragResizeStop:function(e,t){var l=FLBuilder._colResizeData;FLBuilder._colResizeData.feedbackLeft.hide(),FLBuilder._colResizeData.feedbackRight.hide(),FLBuilder.ajax({action:"resize_cols",col_id:l.col.data("node"),col_width:parseFloat(l.col[0].style.width),sibling_id:l.sibling.data("node"),sibling_width:parseFloat(l.sibling[0].style.width),silent:!0}),FLBuilder._colResizeData=null,FLBuilder._bindOverlayEvents(),setTimeout(function(){FLBuilder._colResizing=!1},50)},_resetColumnWidths:function(t){var l=e(this).closest(".fl-col-group"),i=l.find(".fl-col"),o=0;o=6===i.length?16.65:7===i.length?14.28:Math.round(100/i.length*100)/100,i.css("width",o+"%"),FLBuilder.ajax({action:"reset_col_widths",group_id:l.data("node"),silent:!0}),t.stopPropagation()},_moduleMouseenter:function(){var t=e(this),l=t.attr("data-name"),i=t.hasClass("fl-node-global"),o=t.parents(".fl-node-global").length>0,s=t.parents(".fl-col-group").find(".fl-col").length,r=t.parents(".fl-col"),n=0===r.index(),a=s===r.index()+1,d=wp.template("fl-module-overlay");FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),i&&o&&"row"!=FLBuilderConfig.userTemplateType||(t.hasClass("fl-block-overlay-active")||(FLBuilder._appendOverlay(t,d({global:i,moduleName:l,numCols:s,parentFirst:n,parentLast:a})),FLBuilder._initColDragResizing()),e("body").addClass("fl-block-overlay-muted"))},_moduleMouseleave:function(t){var l=(e(this),e(t.toElement)||e(t.relatedTarget)),i=l.is("#tiptip_holder"),o=l.closest("#tiptip_holder").length>0;i||o||FLBuilder._removeModuleOverlays()},_removeModuleOverlays:function(){var t=e(".fl-module");t.removeClass("fl-block-overlay-active"),t.find(".fl-module-overlay").remove(),e("body").removeClass("fl-block-overlay-muted")},_moduleDragHelper:function(t,l){return e('<div class="fl-builder-block-drag-helper">'+l.attr("data-name")+"</div>")},_moduleDragStop:function(e,t){var l=t.item,i=l.parent(),o=0,s=0;return FLBuilder._blockDragStop(e,t),i.hasClass("fl-builder-modules")||i.hasClass("fl-builder-widgets")?void l.remove():(l.hasClass("fl-builder-block")?(i.hasClass("fl-builder-content")?(o=i.children(".fl-row, .fl-builder-block").index(l),s=0):i.hasClass("fl-row-content")?(o=i.children(".fl-col-group, .fl-builder-block").index(l),s=l.closest(".fl-row").attr("data-node")):(o=i.children(".fl-module, .fl-builder-block").index(l),s=l.closest(".fl-col").attr("data-node")),FLBuilder._addModule(i,s,l.attr("data-type"),o,l.attr("data-widget")),t.item.remove()):i.hasClass("fl-builder-content")?(o=i.children(".fl-row, .fl-module").index(l),FLBuilder._addModuleAfterRowRender=l,FLBuilder._addRow("1-col",o),l.remove()):i.hasClass("fl-row-content")?(o=i.children(".fl-col-group, .fl-module").index(l),FLBuilder._addModuleAfterRowRender=l,FLBuilder._addColGroup(l.closest(".fl-row").attr("data-node"),"1-col",o),l.remove()):FLBuilder._reorderModule(l),void FLBuilder._resizeLayout())},_reorderModule:function(e){var t=e.closest(".fl-col").attr("data-node"),l=e.attr("data-parent"),i=e.attr("data-node"),o=e.index();t==l?FLBuilder.ajax({action:"reorder_node",node_id:i,position:o,silent:!0}):(e.attr("data-parent",t),FLBuilder.ajax({action:"move_node",new_parent:t,node_id:i,position:o,silent:!0}))},_deleteModuleClicked:function(t){var l=e(this).closest(".fl-module"),i=confirm(FLBuilderStrings.deleteModuleMessage);i&&(FLBuilder._deleteModule(l),FLBuilder._removeAllOverlays()),t.stopPropagation()},_deleteModule:function(e){var t=e.closest(".fl-row");FLBuilder.ajax({action:"delete_node",node_id:e.attr("data-node"),silent:!0}),e.empty(),e.remove(),t.removeClass("fl-block-overlay-muted"),FLBuilder._highlightEmptyCols(),FLBuilder._removeAllOverlays()},_moduleCopyClicked:function(t){var l=e(this).closest(".fl-module");FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder._newModuleParent=l.parent(),FLBuilder._newModulePosition=l.index()+1,FLBuilder.ajax({action:"copy_module",node_id:l.attr("data-node")},FLBuilder._moduleCopyComplete),t.stopPropagation()},_moduleCopyComplete:function(e){var t=JSON.parse(e);t.nodeParent=FLBuilder._newModuleParent,t.nodePosition=FLBuilder._newModulePosition,FLBuilder._renderLayout(t)},_moduleSettingsClicked:function(t){var l=e(this),i=l.closest(".fl-module").attr("data-node"),o=l.closest(".fl-col").attr("data-node"),s=l.closest(".fl-module").attr("data-type"),r=l.closest(".fl-block-overlay-global").length>0;t.stopPropagation(),FLBuilder._colResizing||(!r||FLBuilderConfig.userCanEditGlobalTemplates)&&FLBuilder._showModuleSettings(i,o,s)},_showModuleSettings:function(e,t,l){FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_module_settings",node_id:e,type:l,parent_id:t},FLBuilder._moduleSettingsLoaded)},_moduleSettingsLoaded:function(t){var l=JSON.parse(t),i=e("<div>"+l.settings+"</div>"),o=i.find("link.fl-builder-settings-css"),s=i.find("script.fl-builder-settings-js"),r=i.find(".fl-builder-settings"),n=r.attr("data-type"),a=null,d=null,u=null;e.inArray(n,FLBuilder._loadedModuleAssets)>-1?(o.remove(),s.remove()):(e("head").append(o),e("head").append(s),FLBuilder._loadedModuleAssets.push(n)),FLBuilder._setSettingsFormContent(i),"undefined"!=typeof l.layout&&(a=l.layout,a.nodeParent=FLBuilder._newModuleParent,a.nodePosition=FLBuilder._newModulePosition),"undefined"!=typeof l.state&&(d=l.state),FLBuilder.preview=new FLBuilderPreview({type:"module",layout:a,state:d}),u=FLBuilder._moduleHelpers[n],"undefined"!=typeof u&&(FLBuilder._initSettingsValidation(u.rules),u.init())},_saveModuleClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=t.attr("data-type"),i=(t.attr("data-node"),FLBuilder._moduleHelpers[l]),o=!0;"undefined"!=typeof i&&(t.find("label.error").remove(),t.validate().hideErrors(),o=t.validate().form(),o&&(o=i.submit())),o?(FLBuilder._saveSettings(),FLBuilder._lightbox.close()):FLBuilder._toggleSettingsTabErrors()},_addModule:function(e,t,l,i,o){FLBuilder.showAjaxLoader(),FLBuilder._newModuleParent=e,FLBuilder._newModulePosition=i,FLBuilder.ajax({action:"render_new_module",parent_id:t,type:l,position:i,node_preview:1,widget:"undefined"==typeof o?"":o},FLBuilder._addModuleComplete)},_addModuleComplete:function(t){FLBuilder._showLightbox(),FLBuilder._moduleSettingsLoaded(t),e(".fl-builder-module-settings").data("new-module","1")},registerModuleHelper:function(t,l){var i={rules:{},init:function(){},submit:function(){return!0},preview:function(){}};FLBuilder._moduleHelpers[t]=e.extend({},i,l)},_registerModuleHelper:function(e,t){FLBuilder.registerModuleHelper(e,t)},_showNodeTemplateSettings:function(t){var l=e(".fl-builder-settings-lightbox .fl-builder-settings");FLBuilder._saveSettings(),FLBuilder.ajax({action:"render_node_template_settings",node_id:l.attr("data-node")},FLBuilder._nodeTemplateSettingsLoaded)},_nodeTemplateSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._showLightbox(!1),FLBuilder._setSettingsFormContent(t.html),FLBuilder._initSettingsValidation({name:{required:!0}})},_saveNodeTemplate:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.validate().form();l&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_node_template",node_id:t.attr("data-node"),settings:FLBuilder._getSettings(t)},FLBuilder._saveNodeTemplateComplete),FLBuilder._lightbox.close())},_saveNodeTemplateComplete:function(t){var l=JSON.parse(t),i=e(".fl-builder-saved-"+l.type+"s"),o=i.find(".fl-builder-block"),s=null,r="",n=l.name.toLowerCase(),a=0,d=wp.template("fl-node-template-block");if("row"==l.type?FLBuilder.alert(FLBuilderStrings.rowTemplateSaved):"module"==l.type&&FLBuilder.alert(FLBuilderStrings.moduleTemplateSaved),l.layout&&FLBuilder._renderLayout(l.layout),0===o.length)i.append(d(l));else for(;a<o.length;a++){if(s=o.eq(a),r=s.text().toLowerCase().trim(),0===a&&r>n){i.prepend(d(l));break}if(r>n){s.before(d(l));break}if(o.length-1===a){i.append(d(l));break}}i.find(".fl-builder-block-no-node-templates").remove()},_nodeTemplateDragStop:function(e,t){var l=t.item,i=l.parent(),o=null,s=0,r="",n=null;FLBuilder._blockDragStop(e,t),l.hasClass("fl-builder-block-saved-row")||l.hasClass("fl-builder-block-row-template")?(s=i.children(".fl-row, .fl-builder-block").index(l),o=null,r="render_new_row",n=FLBuilder._addRowComplete,FLBuilder._newRowPosition=s):(l.hasClass("fl-builder-block-saved-module")||l.hasClass("fl-builder-block-module-template"))&&(r="render_new_module",n=FLBuilder._addModuleComplete,i.hasClass("fl-builder-content")?(s=i.children(".fl-row, .fl-builder-block").index(l),o=0):i.hasClass("fl-row-content")?(s=i.children(".fl-col-group, .fl-builder-block").index(l),o=l.closest(".fl-row").attr("data-node")):(s=i.children(".fl-module, .fl-builder-block").index(l),o=l.closest(".fl-col").attr("data-node")),FLBuilder._newModuleParent=i,FLBuilder._newModulePosition=s),
4
+ FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:r,template_id:l.attr("data-id"),parent_id:o,position:s},n),l.remove()},_editNodeTemplateClicked:function(t){t.preventDefault(),t.stopPropagation(),window.open(e(this).attr("href"))},_deleteNodeTemplateClicked:function(t){var l=e(t.target),i=l.closest(".fl-builder-blocks-section"),o=i.find(".fl-builder-blocks-section-content"),s=o.find(".fl-builder-block"),r=l.closest(".fl-builder-block"),n=r.hasClass("fl-builder-block-global"),a=n?FLBuilder._updateLayout:void 0,d=n?FLBuilderStrings.deleteGlobalTemplate:FLBuilderStrings.deleteTemplate;confirm(d)&&(r.remove(),1===s.length&&(r.hasClass("fl-builder-block-saved-row")?o.append('<span class="fl-builder-block-no-node-templates">'+FLBuilderStrings.noSavedRows+"</span>"):o.append('<span class="fl-builder-block-no-node-templates">'+FLBuilderStrings.noSavedModules+"</span>")),FLBuilder.ajax({action:"delete_node_template",template_id:r.attr("data-id"),silent:r.hasClass("fl-builder-block-global")?!1:!0},a))},_initSettingsForms:function(){FLBuilder._initColorPickers(),FLBuilder._initSelectFields(),FLBuilder._initMultipleFields(),FLBuilder._initAutoSuggestFields(),FLBuilder._initLinkFields(),FLBuilder._initFontFields()},_setSettingsFormContent:function(e){FLBuilder._setLightboxContent(e),FLBuilder._initSettingsForms()},_settingsTabClicked:function(t){var l=e(this),i=l.closest(".fl-builder-settings"),o=l.attr("href").split("#").pop();i.find(".fl-builder-settings-tab").removeClass("fl-active"),i.find("#"+o).addClass("fl-active"),i.find(".fl-builder-settings-tabs .fl-active").removeClass("fl-active"),e(this).addClass("fl-active"),t.preventDefault()},_settingsCancelClicked:function(t){var l=e(".fl-builder-module-settings"),i=null,o=null,s=null,r=null;l.length>0&&"undefined"!=typeof l.data("new-module")?(i=e(FLBuilder.preview.state.html),o=e(".fl-node-"+l.data("node")),s=o.closest(".fl-col"),r=i.find(".fl-node-"+s.data("node")),r.length>0?FLBuilder._deleteModule(o):FLBuilder._deleteCol(s)):FLBuilder.preview&&FLBuilder.preview.revert(),FLBuilder.preview=null,FLLightbox.closeParent(this)},_initSettingsValidation:function(t,l){var i=e(".fl-builder-settings").last();i.validate({ignore:[],rules:t,messages:l,errorPlacement:FLBuilder._settingsErrorPlacement})},_settingsErrorPlacement:function(e,t){e.appendTo(t.parent())},_toggleSettingsTabErrors:function(){for(var t=e(".fl-builder-settings:visible"),l=t.find(".fl-builder-settings-tab"),i=null,o=null,s=0;s<l.length;s++)i=l.eq(s),o=i.find("label.error"),tabLink=t.find(".fl-builder-settings-tabs a[href*="+i.attr("id")+"]"),tabLink.find(".fl-error-icon").remove(),tabLink.removeClass("error"),o.length>0&&(tabLink.append('<span class="fl-error-icon"></span>'),tabLink.addClass("error"))},_getSettings:function(t){FLBuilder._updateEditorFields();var l=t.serializeArray(),i=0,o=0,s="",r="",n="",a=[],d=[],u={};for(i=0;i<l.length;i++)if(s=l[i].value.replace(/\r/gm,""),!(l[i].name.indexOf("flrich")>-1))if(l[i].name.indexOf("[")>-1){for(r=l[i].name.replace(/\[(.*)\]/,""),n=l[i].name.replace(r,""),a=[],d=n.match(/\[[^\]]*\]/g),o=0;o<d.length;o++)"[]"!=d[o]&&a.push(d[o].replace(/\[|\]/g,""));n.match(/\[\]\[[^\]]*\]\[[^\]]+\]/)?("undefined"==typeof u[r]&&(u[r]={}),"undefined"==typeof u[r][a[0]]&&(u[r][a[0]]={}),"undefined"==typeof u[r][a[0]][a[1]]&&(u[r][a[0]][a[1]]={}),u[r][a[0]][a[1]]=s):n.match(/\[\]\[[^\]]*\]\[\]/)?("undefined"==typeof u[r]&&(u[r]={}),"undefined"==typeof u[r][a[0]]&&(u[r][a[0]]=[]),u[r][a[0]].push(s)):n.match(/\[\]\[[^\]]*\]/)?("undefined"==typeof u[r]&&(u[r]={}),u[r][a[0]]=s):n.match(/\[\]/)&&("undefined"==typeof u[r]&&(u[r]=[]),u[r].push(s))}else u[l[i].name]=s;for(n in u)if("undefined"!=typeof u["as_values_"+n]){u[n]=e.grep(u["as_values_"+n].split(","),function(e){return""!==e}).join(",");try{delete u["as_values_"+n]}catch(c){}}return u},_saveSettings:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.attr("data-node"),i=FLBuilder._getSettings(t);FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_settings",node_id:l,settings:i},FLBuilder._saveSettingsComplete),FLBuilder._lightbox.close()},_saveSettingsComplete:function(e){FLBuilder._renderLayout(e,function(){FLBuilder.preview&&(FLBuilder.preview.clear(),FLBuilder.preview=null)})},_showHelpTooltip:function(){e(this).siblings(".fl-help-tooltip-text").fadeIn()},_hideHelpTooltip:function(){e(this).siblings(".fl-help-tooltip-text").fadeOut()},_initAutoSuggestFields:function(){e(".fl-suggest-field").each(FLBuilder._initAutoSuggestField)},_initAutoSuggestField:function(){var t=e(this);t.autoSuggest(FLBuilder._ajaxUrl({fl_action:"fl_builder_autosuggest",fl_as_action:t.data("action"),fl_as_action_data:t.data("action-data"),_wpnonce:FLBuilderConfig.ajaxNonce}),e.extend({},{asHtmlID:t.attr("name"),selectedItemProp:"name",searchObjProps:"name",minChars:3,keyDelay:1e3,fadeOut:!1,usePlaceholder:!0,emptyText:FLBuilderStrings.noResultsFound,showResultListWhenNoMatch:!0,preFill:t.data("value"),queryParam:"fl_as_query",afterSelectionAdd:FLBuilder._updateAutoSuggestField,afterSelectionRemove:FLBuilder._updateAutoSuggestField,selectionLimit:t.data("limit")},t.data("args")))},_updateAutoSuggestField:function(t,l,i){e(this).siblings(".as-values").val(i.join(",")).trigger("change")},_initMultipleFields:function(){for(var t=e(".fl-builder-field-multiples"),l=null,i=null,o=0,s=FLBuilderConfig.isRtl?{left:10}:{right:10};o<t.length;o++)l=t.eq(o),i=l.find(".fl-builder-field-multiple"),1===i.length?i.eq(0).find(".fl-builder-field-actions").addClass("fl-builder-field-actions-single"):i.find(".fl-builder-field-actions").removeClass("fl-builder-field-actions-single");e(".fl-builder-field-multiples").sortable({items:".fl-builder-field-multiple",cursor:"move",cursorAt:s,distance:5,opacity:.5,helper:FLBuilder._fieldDragHelper,placeholder:"fl-builder-field-dd-zone",stop:FLBuilder._fieldDragStop,tolerance:"pointer"})},_addFieldClicked:function(){var t=e(this),l=t.attr("data-field"),i=t.closest("tr").siblings("tr[data-field="+l+"]").last(),o=i.clone(),s=parseInt(i.find("label span.fl-builder-field-index").html(),10)+1;o.find("th label span.fl-builder-field-index").html(s),o.find(".fl-form-field-preview-text").html(""),o.find("input, textarea, select").val(""),i.after(o),FLBuilder._initMultipleFields()},_copyFieldClicked:function(){var t=e(this),l=t.closest("tr"),i=l.clone(),o=parseInt(l.find("label span.fl-builder-field-index").html(),10)+1;i.find("th label span.fl-builder-field-index").html(o),l.after(i),FLBuilder._renumberFields(l.parent()),FLBuilder._initMultipleFields(),FLBuilder.preview.delayPreview()},_deleteFieldClicked:function(){var t=e(this).closest("tr"),l=t.parent(),i=confirm(FLBuilderStrings.deleteFieldMessage);i&&(t.remove(),FLBuilder._renumberFields(l),FLBuilder._initMultipleFields(),FLBuilder.preview.delayPreview())},_renumberFields:function(e){for(var t=e.find(".fl-builder-field-multiple"),l=0;l<t.length;l++)t.eq(l).find("th label span.fl-builder-field-index").html(l+1)},_fieldDragHelper:function(){return e('<div class="fl-builder-field-dd-helper"></div>')},_fieldDragStop:function(e,t){FLBuilder._renumberFields(t.item.parent()),FLBuilder.preview.delayPreview()},_initSelectFields:function(){e(".fl-builder-settings:visible").find(".fl-builder-settings-fields select").trigger("change")},_settingsSelectChanged:function(){var t=e(this),l=t.attr("data-toggle"),i=t.attr("data-hide"),o=t.attr("data-trigger"),s=t.val(),r=0;if("undefined"!=typeof l){l=JSON.parse(l);for(r in l)FLBuilder._settingsSelectToggle(l[r].fields,"hide","#fl-field-"),FLBuilder._settingsSelectToggle(l[r].sections,"hide","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(l[r].tabs,"hide","a[href*=fl-builder-settings-tab-","]");"undefined"!=typeof l[s]&&(FLBuilder._settingsSelectToggle(l[s].fields,"show","#fl-field-"),FLBuilder._settingsSelectToggle(l[s].sections,"show","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(l[s].tabs,"show","a[href*=fl-builder-settings-tab-","]"))}if("undefined"!=typeof i&&(i=JSON.parse(i),"undefined"!=typeof i[s]&&(FLBuilder._settingsSelectToggle(i[s].fields,"hide","#fl-field-"),FLBuilder._settingsSelectToggle(i[s].sections,"hide","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(i[s].tabs,"hide","a[href*=fl-builder-settings-tab-","]"))),"undefined"!=typeof o&&(o=JSON.parse(o),"undefined"!=typeof o[s]&&"undefined"!=typeof o[s].fields))for(r=0;r<o[s].fields.length;r++)e("#fl-field-"+o[s].fields[r]).find("select").trigger("change")},_settingsSelectToggle:function(t,l,i,o){var s=0;if(o="undefined"==typeof o?"":o,"undefined"!=typeof t)for(;s<t.length;s++)e(i+t[s]+o)[l]()},_initColorPickers:function(){var t=FLBuilderConfig.colorPresets?FLBuilderConfig.colorPresets:[];FLBuilder.colorPicker=new FLBuilderColorPicker({elements:".fl-color-picker .fl-color-picker-value",presets:t,labels:{colorPresets:FLBuilderStrings.colorPresets,colorPicker:FLBuilderStrings.colorPicker,placeholder:FLBuilderStrings.placeholder,removePresetConfirm:FLBuilderStrings.removePresetConfirm,noneColorSelected:FLBuilderStrings.noneColorSelected,alreadySaved:FLBuilderStrings.alreadySaved,noPresets:FLBuilderStrings.noPresets,presetAdded:FLBuilderStrings.presetAdded}}),e(FLBuilder.colorPicker).on("presetRemoved presetAdded",function(e,t){FLBuilder.ajax({action:"save_color_presets",presets:t.presets})})},_selectSinglePhoto:function(){null===FLBuilder._singlePhotoSelector&&(FLBuilder._singlePhotoSelector=wp.media({title:FLBuilderStrings.selectPhoto,button:{text:FLBuilderStrings.selectPhoto},library:{type:"image"},multiple:!1})),FLBuilder._singlePhotoSelector.once("open",e.proxy(FLBuilder._singlePhotoOpened,this)),FLBuilder._singlePhotoSelector.once("select",e.proxy(FLBuilder._singlePhotoSelected,this)),FLBuilder._singlePhotoSelector.open()},_singlePhotoOpened:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection"),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=i.val(),s=null;e(this).hasClass("fl-photo-replace")?(t.reset(),l.addClass("fl-photo-empty"),i.val("")):""!==o?(s=wp.media.attachment(o),s.fetch(),t.add(s?[s]:[])):t.reset()},_singlePhotoSelected:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection").first().toJSON(),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=l.find(".fl-photo-preview img"),s=l.find("select");i.val(t.id),o.attr("src",FLBuilder._getPhotoSrc(t)),l.removeClass("fl-photo-empty"),l.find("label.error").remove(),s.show(),s.html(FLBuilder._getPhotoSizeOptions(t)),s.trigger("change")},_singlePhotoRemoved:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection"),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=l.find("select");t.reset(),l.addClass("fl-photo-empty"),i.val(""),o.html(""),o.trigger("change")},_getPhotoSrc:function(e){return"undefined"==typeof e.sizes?e.url:"undefined"!=typeof e.sizes.thumbnail?e.sizes.thumbnail.url:e.sizes.full.url},_getPhotoSizeOptions:function(e){var t="",l=null,i=null,o="",s={full:FLBuilderStrings.fullSize,large:FLBuilderStrings.large,medium:FLBuilderStrings.medium,thumbnail:FLBuilderStrings.thumbnail};if("undefined"==typeof e.sizes)t+='<option value="'+e.url+'">'+FLBuilderStrings.fullSize+"</option>";else for(l in e.sizes)o="undefined"!=typeof s[l]?s[l]+" - ":"undefined"!=typeof FLBuilderConfig.customImageSizeTitles[l]?FLBuilderConfig.customImageSizeTitles[l]+" - ":"",i="full"==l?' selected="selected"':"",t+='<option value="'+e.sizes[l].url+'"'+i+">"+o+e.sizes[l].width+" x "+e.sizes[l].height+"</option>";return t},_selectMultiplePhotos:function(){var t=e(this).closest(".fl-multiple-photos-field"),l=t.find("input[type=hidden]"),i=l.val(),o=""===i?'[gallery ids="-1"]':'[gallery ids="'+JSON.parse(i).join()+'"]',s=wp.shortcode.next("gallery",o).shortcode,r=wp.media.gallery.defaults.id,n=null,a=null;_.isUndefined(s.get("id"))&&!_.isUndefined(r)&&s.set("id",r),n=wp.media.gallery.attachments(s),a=new wp.media.model.Selection(n.models,{props:n.props.toJSON(),multiple:!0}),a.gallery=n.gallery,a.more().done(function(){a.props.set({query:!1}),a.unmirror(),a.props.unset("orderby")}),FLBuilder._multiplePhotoSelector&&FLBuilder._multiplePhotoSelector.dispose(),FLBuilder._multiplePhotoSelector=wp.media({frame:"post",state:e(this).hasClass("fl-multiple-photos-edit")?"gallery-edit":"gallery-library",title:wp.media.view.l10n.editGalleryTitle,editing:!0,multiple:!0,selection:a}).open(),e(FLBuilder._multiplePhotoSelector.views.view.el).addClass("fl-multiple-photos-lightbox"),FLBuilder._multiplePhotoSelector.once("update",e.proxy(FLBuilder._multiplePhotosSelected,this))},_multiplePhotosSelected:function(t){for(var l=e(this).closest(".fl-multiple-photos-field"),i=l.find("input[type=hidden]"),o=l.find(".fl-multiple-photos-count"),s=[],r=0;r<t.models.length;r++)s.push(t.models[r].id);1==s.length?o.html("1 "+FLBuilderStrings.photoSelected):o.html(s.length+" "+FLBuilderStrings.photosSelected),l.removeClass("fl-multiple-photos-empty"),l.find("label.error").remove(),i.val(JSON.stringify(s)).trigger("change")},_selectSingleVideo:function(){null===FLBuilder._singleVideoSelector&&(FLBuilder._singleVideoSelector=wp.media({title:FLBuilderStrings.selectVideo,button:{text:FLBuilderStrings.selectVideo},library:{type:"video"},multiple:!1})),FLBuilder._singleVideoSelector.once("select",e.proxy(FLBuilder._singleVideoSelected,this)),FLBuilder._singleVideoSelector.open()},_singleVideoSelected:function(){var t=FLBuilder._singleVideoSelector.state().get("selection").first().toJSON(),l=e(this).closest(".fl-video-field"),i=l.find(".fl-video-preview-img img"),o=l.find(".fl-video-preview-filename"),s=l.find("input[type=hidden]");i.attr("src",t.icon),o.html(t.filename),l.removeClass("fl-video-empty"),l.find("label.error").remove(),s.val(t.id).trigger("change")},_selectMultipleAudios:function(){var t=e(this).closest(".fl-multiple-audios-field"),l=t.find("input[type=hidden]"),i=l.val(),o=""==i?'[playlist ids="-1"]':'[playlist ids="'+JSON.parse(i).join()+'"]',s=wp.shortcode.next("playlist",o).shortcode,r=wp.media.playlist.defaults.id,n=null,a=null;_.isUndefined(s.get("id"))&&!_.isUndefined(r)&&s.set("id",r),n=wp.media.playlist.attachments(s),a=new wp.media.model.Selection(n.models,{props:n.props.toJSON(),multiple:!0}),a.playlist=n.playlist,a.more().done(function(){a.props.set({query:!1}),a.unmirror(),a.props.unset("orderby")}),FLBuilder._multipleAudiosSelector&&FLBuilder._multipleAudiosSelector.dispose(),FLBuilder._multipleAudiosSelector=wp.media({frame:"post",state:e(this).hasClass("fl-multiple-audios-edit")?"playlist-edit":"playlist-library",title:wp.media.view.l10n.editPlaylistTitle,editing:!0,multiple:!0,selection:a}).open(),FLBuilder._multipleAudiosSelector.content.get("view").sidebar.unset("playlist"),FLBuilder._multipleAudiosSelector.on("content:render:browse",function(e){e&&e.sidebar.on("ready",function(){e.sidebar.unset("playlist")})}),FLBuilder._multipleAudiosSelector.once("update",e.proxy(FLBuilder._multipleAudiosSelected,this))},_multipleAudiosSelected:function(t){for(var l=e(this).closest(".fl-multiple-audios-field"),i=l.find(".fl-multiple-audios-count"),o=l.find("input[type=hidden]"),s=[],r=0;r<t.models.length;r++)s.push(t.models[r].id);1==s.length?i.html("1 "+FLBuilderStrings.audioSelected):i.html(s.length+" "+FLBuilderStrings.audiosSelected),o.val(JSON.stringify(s)).trigger("change"),l.removeClass("fl-multiple-audios-empty"),l.find("label.error").remove()},_selectIcon:function(){var e=this;FLIconSelector.open(function(t){FLBuilder._iconSelected.apply(e,[t])})},_iconSelected:function(t){var l=e(this).closest(".fl-icon-field"),i=l.find("input[type=hidden]"),o=l.find("i"),s=o.attr("data-icon");i.val(t).trigger("change"),o.removeClass(s),o.addClass(t),o.attr("data-icon",t),l.removeClass("fl-icon-empty"),l.find("label.error").remove()},_removeIcon:function(){var t=e(this).closest(".fl-icon-field"),l=t.find("input[type=hidden]"),i=t.find("i");l.val("").trigger("change"),i.removeClass(),i.attr("data-icon",""),t.addClass("fl-icon-empty")},_formFieldClicked:function(){var t=e(this),l=t.closest(".fl-lightbox-wrap").attr("data-instance-id"),i=FLLightbox._instances[l],o=i._node.find(".fl-lightbox").css("left"),s=i._node.find(".fl-lightbox").css("top"),r=t.closest(".fl-builder-settings"),n=t.attr("data-type"),a=t.siblings("input").val(),d=FLBuilder._moduleHelpers[n],u=new FLLightbox({className:"fl-builder-lightbox fl-form-field-settings",destroyOnClose:!0});t.closest(".fl-builder-lightbox").hide(),t.attr("id","fl-"+u._id),u.open('<div class="fl-builder-lightbox-loading"></div>'),u.draggable({handle:".fl-lightbox-header"}),e("body").undelegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked),u._node.find(".fl-lightbox").css({left:o,top:Number(parseInt(s)+233)+"px"}),FLBuilder.ajax({action:"render_settings_form",node_id:r.attr("data-node"),node_settings:FLBuilder._getSettings(r),type:n,settings:a.replace(/&#39;/g,"'")},function(e){var t=JSON.parse(e);u.setContent(t.html),u._node.find("form.fl-builder-settings").attr("data-type",n),u._node.find(".fl-builder-settings-cancel").on("click",FLBuilder._closeFormFieldLightbox),FLBuilder._initSettingsForms(),"undefined"!=typeof d&&(FLBuilder._initSettingsValidation(d.rules),d.init()),u._node.find(".fl-lightbox").css({left:o,top:s})})},_closeFormFieldLightbox:function(){var t=e(this).closest(".fl-lightbox-wrap").attr("data-instance-id"),l=FLLightbox._instances[t],i=e(".fl-builder-settings-lightbox"),o=i.find("form"),s=l._node.find(".fl-lightbox").css("left"),r=l._node.find(".fl-lightbox").css("top"),n=0,a=e(window),d=a.height();l._node.find(".fl-lightbox-content").html('<div class="fl-builder-lightbox-loading"></div>'),n=l._node.find(".fl-lightbox").height(),d-80>n?l._node.find(".fl-lightbox").css("top",(d-n)/2-40+"px"):l._node.find(".fl-lightbox").css("top","0px"),l.on("close",function(){i.show(),i.find("label.error").remove(),o.validate().hideErrors(),FLBuilder._toggleSettingsTabErrors(),i.find(".fl-lightbox").css({left:s,top:r})}),setTimeout(function(){l.close(),e("body").delegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked)},500)},_saveFormFieldClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=e(this).closest(".fl-lightbox-wrap").attr("data-instance-id"),i=t.attr("data-type"),o=FLBuilder._getSettings(t),s=FLBuilder._moduleHelpers[i],r=e(".fl-builder-settings #fl-"+l),n=r.parent().attr("data-preview-text"),a=o[n],d=e('select[name="'+n+'"]'),u=document.createElement("div"),c=!0;return d.length>0&&(a=d.find('option[value="'+o[n]+'"]').text()),"undefined"!=typeof s&&(t.find("label.error").remove(),t.validate().hideErrors(),c=t.validate().form(),c&&(c=s.submit())),c?("undefined"!=typeof n&&(a.indexOf("fa fa-")>-1?a='<i class="'+a+'"></i>':a.length>35&&(u.innerHTML=a,a=(u.textContent||u.innerText||"").replace(/^(.{35}[^\s]*).*/,"$1")+"..."),r.siblings(".fl-form-field-preview-text").html(a)),r.siblings("input").val(JSON.stringify(o)).trigger("change"),FLBuilder._closeFormFieldLightbox.apply(this),!0):(FLBuilder._toggleSettingsTabErrors(),!1)},_layoutFieldClicked:function(){var t=e(this);t.siblings().removeClass("fl-layout-field-option-selected"),t.addClass("fl-layout-field-option-selected"),t.siblings("input").val(t.attr("data-value"))},_initLinkFields:function(){e(".fl-link-field").each(FLBuilder._initLinkField)},_initLinkField:function(){var t=e(this),l=t.find(".fl-link-field-search-input");l.autoSuggest(FLBuilder._ajaxUrl({fl_action:"fl_builder_autosuggest",fl_as_action:"fl_as_links",_wpnonce:FLBuilderConfig.ajaxNonce}),{asHtmlID:l.attr("name"),selectedItemProp:"name",searchObjProps:"name",minChars:3,keyDelay:1e3,fadeOut:!1,usePlaceholder:!0,emptyText:FLBuilderStrings.noResultsFound,showResultListWhenNoMatch:!0,queryParam:"fl_as_query",selectionLimit:1,afterSelectionAdd:FLBuilder._updateLinkField})},_updateLinkField:function(e,t,l){var i=e.closest(".fl-link-field"),o=i.find(".fl-link-field-search"),s=i.find(".fl-link-field-search-input"),r=i.find(".fl-link-field-input");r.val(t.value).trigger("keyup"),s.autoSuggest("remove",t.value),o.hide()},_linkFieldSelectClicked:function(){e(this).parent().find(".fl-link-field-search").show()},_linkFieldSelectCancelClicked:function(){e(this).parent().hide()},_initFontFields:function(){e(".fl-font-field").each(FLBuilder._initFontField)},_initFontField:function(){var t=e(this),l=t.find(".fl-font-field-font");l.on("change",function(){FLBuilder._getFontWeights(l)})},_getFontWeights:function(t){var l=t.next(".fl-font-field-weight"),i=t.val(),o={"default":"Default",regular:"Regular",100:"Thin 100",200:"Extra-Light 200",300:"Light 300",400:"Normal 400",500:"Medium 500",600:"Semi-Bold 600",700:"Bold 700",800:"Extra-Bold 800",900:"Ultra-Bold 900"},s={};l.html(""),s="undefined"!=typeof FLBuilderFontFamilies.system[i]?FLBuilderFontFamilies.system[i].weights:"undefined"!=typeof FLBuilderFontFamilies.google[i]?FLBuilderFontFamilies.google[i]:FLBuilderFontFamilies["default"][i],e.each(s,function(e,t){l.append('<option value="'+t+'">'+o[t]+"</option>")})},initEditorField:function(e){var t=tinyMCEPreInit.mceInit.flhiddeneditor;t.elements=e,tinyMCEPreInit.mceInit[e]=t},_updateEditorFields:function(){var t=e(".fl-builder-settings textarea.wp-editor-area");t.each(FLBuilder._updateEditorField)},_updateEditorField:function(){var t=e(this),l=t.closest(".wp-editor-wrap"),i=t.attr("id"),o=t.closest(".fl-editor-field").attr("id"),s="undefined"==typeof tinyMCE?!1:tinyMCE.get(i),r=t.siblings('textarea[name="'+o+'"]');0===r.length&&(r=e('<textarea name="'+o+'"></textarea>').hide(),t.after(r)),s&&l.hasClass("tmce-active")?r.val(s.getContent()):"undefined"!=typeof switchEditors?r.val(switchEditors.wpautop(t.val())):r.val(t.val())},_loopBuilderPostTypeChange:function(){var t=e(this).val();e(".fl-loop-builder-filter").hide(),e(".fl-loop-builder-"+t+"-filter").show()},_textFieldAddValueSelectChange:function(){var t=e(this),l=e('input[name="'+t.data("target")+'"]'),i=l.val(),o=t.val();-1==i.indexOf(o)&&l.attr("value",i.trim()+" "+o.trim()),t.val("")},ajax:function(t,l){var i;if(FLBuilder._silentUpdate)return FLBuilder.showAjaxLoader(),void(FLBuilder._silentUpdateCallbackData=[t,l]);t.silent===!0&&(FLBuilder._silentUpdate=!0);for(i in t)"undefined"==typeof t[i]&&(t[i]=null);return t._wpnonce=FLBuilderConfig.ajaxNonce,t.post_id=e("#fl-post-id").val(),t.fl_builder=1,t.fl_action=t.action,t={fl_builder_data:t},e.post(FLBuilder._ajaxUrl(),t,function(e){FLBuilder._ajaxComplete(),"undefined"!=typeof l&&l.call(this,e)})},_ajaxComplete:function(){var e,t;FLBuilder._silentUpdate=!1,null!==FLBuilder._silentUpdateCallbackData?(FLBuilder.showAjaxLoader(),e=FLBuilder._silentUpdateCallbackData[0],t=FLBuilder._silentUpdateCallbackData[1],FLBuilder._silentUpdateCallbackData=null,FLBuilder.ajax(e,t)):FLBuilder.hideAjaxLoader()},_ajaxUrl:function(e){var t=window.location.href.split("#").shift(),l=null;if("undefined"!=typeof e)for(l in e)t+=t.indexOf("?")>-1?"&":"?",t+=l+"="+e[l];return t},showAjaxLoader:function(){0===e(".fl-builder-lightbox-loading").length&&e(".fl-builder-loading").show()},hideAjaxLoader:function(){e(".fl-builder-loading").hide()},_showLightbox:function(e){e="undefined"==typeof e?!0:e,FLBuilder._lightbox.open('<div class="fl-builder-lightbox-loading"></div>'),e?FLBuilder._lightbox.draggable({handle:".fl-lightbox-header"}):FLBuilder._lightbox.draggable(!1),FLBuilder._removeAllOverlays(),FLBuilder._initLightboxScrollbars()},_setLightboxContent:function(e){FLBuilder._lightbox.setContent(e)},_initLightboxScrollbars:function(){FLBuilder._initScrollbars(),FLBuilder._lightboxScrollbarTimeout=setTimeout(FLBuilder._initLightboxScrollbars,500)},_lightboxClosed:function(){FLBuilder._lightbox.empty(),clearTimeout(FLBuilder._lightboxScrollbarTimeout)},_showActionsLightbox:function(e){var t=wp.template("fl-actions-lightbox");FLBuilder._actionsLightbox.open(t(e))},alert:function(e){var t=new FLLightbox({className:"fl-builder-lightbox fl-builder-alert-lightbox",destroyOnClose:!0}),l=wp.template("fl-alert-lightbox");t.open(l({message:e}))},_alertClose:function(){FLLightbox.closeParent(this)},log:function(e){"undefined"!=typeof window.console&&"undefined"!=typeof window.console.log&&console.log(e)},logError:function(e){var t=null;"undefined"!=typeof e&&("undefined"!=typeof e.stack?t=e.stack:"undefined"!=typeof e.message&&(t=e.message),t&&(FLBuilder.log("************************************************************************"),FLBuilder.log(FLBuilderStrings.errorMessage),FLBuilder.log(t),FLBuilder.log("************************************************************************")))},logGlobalError:function(e,t,l,i,o){FLBuilder.log("************************************************************************"),FLBuilder.log(FLBuilderStrings.errorMessage),FLBuilder.log(FLBuilderStrings.globalErrorMessage.replace("{message}",e).replace("{line}",l).replace("{file}",t)),"undefined"!=typeof o&&"undefined"!=typeof o.stack&&(FLBuilder.log(o.stack),FLBuilder.log("************************************************************************"))}},e(function(){FLBuilder._init()})}(jQuery);var FLBuilderColorPicker;!function(e,t){function l(){var t,l,i="backgroundImage";h?f="filter":(t=e('<div id="iris-gradtest" />'),l="linear-gradient(top,#fff,#000)",e.each(p,function(e,o){return t.css(i,o+l),t.css(i).match("gradient")?(f=e,!1):void 0}),f===!1&&(t.css("background","-webkit-gradient(linear,0% 0%,0% 100%,from(#fff),to(#000))"),t.css(this.bgImageString).match("gradient")&&(f="webkit")),t.remove())}function i(t,l){return t="top"===t?"top":"left",l=e.isArray(l)?l:Array.prototype.slice.call(arguments,1),"webkit"===f?s(t,l):p[f]+"linear-gradient("+t+", "+l.join(", ")+")"}function o(t,l){var i,o,s,n,a,d,u,c,h;t="top"===t?"top":"left",l=e.isArray(l)?l:Array.prototype.slice.call(arguments,1),i="top"===t?0:1,o=e(this),s=l.length-1,n="filter",a=1===i?"left":"top",d=1===i?"right":"bottom",u=1===i?"height":"width",c='<div class="iris-ie-gradient-shim" style="position:absolute;'+u+":100%;"+a+":%start%;"+d+":%end%;"+n+':%filter%;" data-color:"%color%"></div>',h="","static"===o.css("position")&&o.css({position:"relative"}),l=r(l),e.each(l,function(e,t){var o,r,n;return e===s?!1:(o=l[e+1],void(t.stop!==o.stop&&(r=100-parseFloat(o.stop)+"%",t.octoHex=new Color(t.color).toIEOctoHex(),o.octoHex=new Color(o.color).toIEOctoHex(),n="progid:DXImageTransform.Microsoft.Gradient(GradientType="+i+", StartColorStr='"+t.octoHex+"', EndColorStr='"+o.octoHex+"')",h+=c.replace("%start%",t.stop).replace("%end%",r).replace("%filter%",n))))}),o.find(".iris-ie-gradient-shim").remove(),e(h).prependTo(o)}function s(t,l){var i=[];return t="top"===t?"0% 0%,0% 100%,":"0% 100%,100% 100%,",l=r(l),e.each(l,function(e,t){i.push("color-stop("+parseFloat(t.stop)/100+", "+t.color+")")}),"-webkit-gradient(linear,"+t+i.join(",")+")"}function r(t){var l=[],i=[],o=[],s=t.length-1;return e.each(t,function(e,t){var o=t,s=!1,r=t.match(/1?[0-9]{1,2}%$/);r&&(o=t.replace(/\s?1?[0-9]{1,2}%$/,""),s=r.shift()),l.push(o),i.push(s)}),i[0]===!1&&(i[0]="0%"),i[s]===!1&&(i[s]="100%"),i=n(i),e.each(i,function(e){o[e]={color:l[e],stop:i[e]}}),o}function n(t){var l,i,o,s,r=0,a=t.length-1,d=0,u=!1;if(t.length<=2||e.inArray(!1,t)<0)return t;for(;d<t.length-1;)u||t[d]!==!1?u&&t[d]!==!1&&(a=d,d=t.length):(r=d-1,u=!0),d++;for(i=a-r,s=parseInt(t[r].replace("%"),10),l=(parseFloat(t[a].replace("%"))-s)/i,d=r+1,o=1;a>d;)t[d]=s+o*l+"%",o++,d++;return n(t)}var a=[],d=navigator.userAgent.toLowerCase(),u="Microsoft Internet Explorer"===navigator.appName,c=u?parseFloat(d.match(/msie ([0-9]{1,}[\.0-9]{0,})/)[1]):0,h=u&&10>c,f=!1,p=["-moz-","-webkit-","-o-","-ms-"];e.fn.gradient=function(){var t=arguments;return this.each(function(){h?o.apply(this,t):e(this).css("backgroundImage",i.apply(this,t))})},e.fn.raninbowGradient=function(t,l){var i,o,s,r;for(t=t||"top",i=e.extend({},{s:100,l:50},l),o="hsl(%h%,"+i.s+"%,"+i.l+"%)",s=0,r=[];360>=s;)r.push(o.replace("%h%",s)),s+=30;return this.each(function(){e(this).gradient(t,r)})},FLBuilderColorPicker=function(t){this._html='<div class="fl-color-picker-ui"><div class="iris-picker"><div class="iris-picker-inner"><div class="iris-square"><a class="iris-square-value" href="#"><span class="iris-square-handle ui-slider-handle"></span></a><div class="iris-square-inner iris-square-horiz"></div><div class="iris-square-inner iris-square-vert"></div></div><div class="iris-slider iris-strip"><div class="iris-slider-offset"></div></div></div></div></div>';var l={elements:null,color:"",mode:"hsl",controls:{horiz:"s",vert:"l",strip:"h"},target:!1,width:200,presets:[],labels:{colorPresets:"Color Presets",colorPicker:"Color Picker",placeholder:"Paste color here...",removePresetConfirm:"Are you sure?",noneColorSelected:"None color selected.",alreadySaved:"%s is already a saved preset.",noPresets:"Add a color preset first.",presetAdded:"%s added to presets!"}};this.options=e.extend({},l,t),(h===!1||h===!0&&c>7)&&this._init()},FLBuilderColorPicker.prototype={_html:"",_color:"",_currentElement:"",_inited:!1,_defaultHSLControls:{horiz:"s",vert:"l",strip:"h"},_defaultHSVControls:{horiz:"h",vert:"v",strip:"s"},_scale:{h:360,s:100,l:100,v:100},_init:function(){var t=this;e(t.options.elements);this._color=new Color("#000000").setHSpace(t.options.mode),a=this.options.presets,f===!1&&l(),e("html").hasClass("fl-color-picker-init")?t.picker=e(".fl-color-picker-ui"):t.picker=e(this._html).appendTo("body"),u?9===c?t.picker.addClass("iris-ie-9"):8>=c&&t.picker.addClass("iris-ie-lt9"):d.indexOf("compatible")<0&&d.indexOf("khtml")<0&&d.match(/mozilla/)&&t.picker.addClass("iris-mozilla"),t.controls={square:t.picker.find(".iris-square"),squareDrag:t.picker.find(".iris-square-value"),horiz:t.picker.find(".iris-square-horiz"),vert:t.picker.find(".iris-square-vert"),strip:t.picker.find(".iris-strip"),stripSlider:t.picker.find(".iris-strip .iris-slider-offset")},"hsv"===t.options.mode&&t._has("l",t.options.controls)?t.options.controls=t._defaultHSVControls:"hsl"===t.options.mode&&t._has("v",t.options.controls)&&(t.options.controls=t._defaultHSLControls),t.hue=t._color.h(),this._setTemplates(),this._ui=e(".fl-color-picker-ui"),this._iris=e(".iris-picker"),this._wrapper=e("body"),e("html").hasClass("fl-color-picker-init")||this._ui.prepend(this._hexHtml).append(this._presetsHtml),t.element=this._ui.find(".fl-color-picker-input"),t._initControls(),t.active="external",t._change(),t._addInputListeners(t.element),this._buildUI(),this._prepareColorFields(),this._pickerControls(),this._presetsControls(),e("html").addClass("fl-color-picker-init")},_prepareColorFields:function(){e(".fl-color-picker-value").each(function(){var t=e(this),l=t.parent().find(".fl-color-picker-color");t.val()&&l.css({backgroundColor:"#"+t.val().toString()})})},_setTemplates:function(){this._presetsHtml='<div class="fl-color-picker-presets"><div class="fl-color-picker-presets-toggle"><div class="fl-color-picker-presets-open-label fl-color-picker-active">'+this.options.labels.colorPresets+' <span class="fl-color-picker-icon-arrow-up"></span></div><div class="fl-color-picker-presets-close-label">'+this.options.labels.colorPicker+' <span class="fl-color-picker-icon-arrow-down"></span></div></div><ul class="fl-color-picker-presets-list"></ul></div>',this._hexHtml='<input type="text" class="fl-color-picker-input" maxlength="7" placeholder="'+this.options.labels.placeholder+'"><div class="fl-color-picker-preset-add"></div>',this._presetsTpl='<li class="fl-color-picker-preset"><span class="fl-color-picker-preset-color"></span> <span class="fl-color-picker-preset-label"></span> <span class="fl-color-picker-preset-remove fl-color-picker-icon-remove"></span></li>',this._noPresetsTpl='<li class="fl-color-picker-no-preset"><span class="fl-color-picker-preset-label">'+this.options.labels.noPresets+"</span></li>"},_has:function(t,l){var i=!1;return e.each(l,function(e,l){return t===l?(i=!0,!1):void 0}),i},_buildUI:function(){var t=this;t._presetsList=this._ui.find(".fl-color-picker-presets-list"),
5
  t._presetsList.html(""),this.options.presets.length>0?e.each(this.options.presets,function(e,l){t._addPresetView(l)}):t._presetsList.append(this._noPresetsTpl)},_addPresetView:function(t){var l=this._presetsList.find(".fl-color-picker-no-preset");l.length>0&&l.remove();var i=e(this._presetsTpl),o=Color(t);i.attr("data-color",t).find(".fl-color-picker-preset-color").css({backgroundColor:o.toString()}).end().find(".fl-color-picker-preset-label").html(o.toString()),this._presetsList.append(i)},_addPresetFeedback:function(){this._ui.append('<div class="fl-color-picker-added"><div class="fl-color-picker-added-text"><div class="fl-color-picker-icon-check"></div> "'+this.options.labels.presetAdded.replace("%s",this._color.toString())+'"</div></div>'),this._ui.find(".fl-color-picker-added").hide().fadeIn(200).delay(2e3).fadeOut(200,function(){e(this).remove()})},_pickerControls:function(){var t=this;this._wrapper.on("click",".fl-color-picker-color",function(){var l=e(this);t._currentElement=l.parent().find(".fl-color-picker-value"),t._ui.position({my:"left top",at:"left bottom",of:l,collision:"flipfit",using:function(e,l){t._togglePicker(e)}})}).on("click",".fl-color-picker-clear",function(){var l=e(this);t._currentElement=l.parent().find(".fl-color-picker-value"),l.prev(".fl-color-picker-color").css({backgroundColor:"transparent"}).addClass("fl-color-picker-empty"),t._setColor(""),t.element.val(""),t._currentElement.val("").trigger("change")}),e(document).on("click",function(t){0===e(t.target).closest(".fl-color-picker-ui").length&&e(".fl-color-picker-ui.fl-color-picker-active").removeClass("fl-color-picker-active")})},_presetsControls:function(){var t=this,l=t._ui.find(".fl-color-picker-preset-add"),i=t._ui.find(".fl-color-picker-presets"),o=i.find(".fl-color-picker-presets-open-label"),s=i.find(".fl-color-picker-presets-close-label"),r=i.find(".fl-color-picker-presets-list");l.off("click").on("click",function(){t._addPreset(t.element.val())}),r.css({height:t.element.innerHeight()+t._iris.innerHeight()+14+"px"}).hide(),i.off("click").on("click",".fl-color-picker-presets-toggle",function(){o.toggleClass("fl-color-picker-active"),s.toggleClass("fl-color-picker-active"),r.slideToggle(500)}).on("click",".fl-color-picker-preset",function(l){var i=new Color(e(this).data("color").toString());t._setColor(i),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:i.toString()}).removeClass("fl-color-picker-empty"),o.toggleClass("fl-color-picker-active"),s.toggleClass("fl-color-picker-active"),r.slideToggle(500)}).on("click",".fl-color-picker-preset-remove",function(l){l.stopPropagation(),t._removePreset(e(this).parent().data("color"))})},_removePreset:function(t){if(confirm(this.options.labels.removePresetConfirm)){var l=t.toString(),i=a.indexOf(l);i>-1&&(a.splice(i,1),this.options.presets=a,this._presetsList.find('.fl-color-picker-preset[data-color="'+l+'"]').slideUp(function(){e(this).remove()})),a.length<1&&this._presetsList.append(this._noPresetsTpl),e(this).trigger("presetRemoved",{presets:a})}},_addPreset:function(t){var l=t.toString().replace(/^#/,"");""===l?alert(this.options.labels.noneColorSelected):a.indexOf(l)>-1?alert(this.options.labels.alreadySaved.replace("%s","#"+l)):(this._addPresetView(l),this._addPresetFeedback(),a.push(l),this.options.presets=a,e(this).trigger("presetAdded",{presets:a}))},_togglePicker:function(e){var t=this;this._ui.hasClass("fl-color-picker-active")?(this._ui.removeClass("fl-color-picker-active"),e&&setTimeout(function(){t._ui.css(e),t._ui.addClass("fl-color-picker-active"),t._setColor(t._currentElement.val())},200)):(e&&t._ui.css(e),setTimeout(function(){t._ui.addClass("fl-color-picker-active"),t._setColor(t._currentElement.val())},200))},_paint:function(){var e=this;e._paintDimension("right","strip"),e._paintDimension("top","vert"),e._paintDimension("left","horiz")},_paintDimension:function(e,t){var l,i=this,o=i._color,s=i.options.mode,r=i._getHSpaceColor(),n=i.controls[t],a=i.options.controls;if(t!==i.active&&("square"!==i.active||"strip"===t))switch(a[t]){case"h":if("hsv"===s){switch(r=o.clone(),t){case"horiz":r[a.vert](100);break;case"vert":r[a.horiz](100);break;case"strip":r.setHSpace("hsl")}l=r.toHsl()}else l="strip"===t?{s:r.s,l:r.l}:{s:100,l:r.l};n.raninbowGradient(e,l);break;case"s":"hsv"===s?"vert"===t?l=[o.clone().a(0).s(0).toCSS("rgba"),o.clone().a(1).s(0).toCSS("rgba")]:"strip"===t?l=[o.clone().s(100).toCSS("hsl"),o.clone().s(0).toCSS("hsl")]:"horiz"===t&&(l=["#fff","hsl("+r.h+",100%,50%)"]):l="vert"===t&&"h"===i.options.controls.horiz?["hsla(0, 0%, "+r.l+"%, 0)","hsla(0, 0%, "+r.l+"%, 1)"]:["hsl("+r.h+",0%,50%)","hsl("+r.h+",100%,50%)"],n.gradient(e,l);break;case"l":l="strip"===t?["hsl("+r.h+",100%,100%)","hsl("+r.h+", "+r.s+"%,50%)","hsl("+r.h+",100%,0%)"]:["#fff","rgba(255,255,255,0) 50%","rgba(0,0,0,0) 50%","rgba(0,0,0,1)"],n.gradient(e,l);break;case"v":l="strip"===t?[o.clone().v(100).toCSS(),o.clone().v(0).toCSS()]:["rgba(0,0,0,0)","#000"],n.gradient(e,l)}},_getHSpaceColor:function(){return"hsv"===this.options.mode?this._color.toHsv():this._color.toHsl()},_addInputListeners:function(e){var t=this,l=100,i=function(l){var i=new Color(e.val()),o=e.val().replace(/^#/,"");if(e.removeClass("iris-error"),i.error)""!==o&&e.addClass("iris-error");else if(i.toString()!==t._color.toString())if("keyup"===l.type){if(o.match(/^[0-9a-fA-F]{3}$/))return;t._setColor(o),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:Color(o).toString()}).removeClass("fl-color-picker-empty"),t._currentElement.val(o).trigger("change")}else if("paste"===l.type)return o=l.originalEvent.clipboardData.getData("text").replace(/^#/,""),hex=Color(o).toString(),t._setColor(o),e.val(hex),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:hex}).removeClass("fl-color-picker-empty"),t._currentElement.val(o).trigger("change"),!1};e.on("change",i).on("keyup",t._debounce(i,l))},_initControls:function(){var t=this,l=t.controls,i=l.square,o=t.options.controls,s=t._scale[o.strip];l.stripSlider.slider({orientation:"horizontal",max:s,slide:function(e,l){t.active="strip","h"===o.strip&&(l.value=s-l.value),t._color[o.strip](l.value),t._change.apply(t,arguments)}}),l.squareDrag.draggable({containment:l.square.find(".iris-square-inner"),zIndex:1e3,cursor:"move",drag:function(e,l){t._squareDrag(e,l)},start:function(){i.addClass("iris-dragging"),e(this).addClass("ui-state-focus")},stop:function(){i.removeClass("iris-dragging"),e(this).removeClass("ui-state-focus")}}).on("mousedown mouseup",function(l){var i="ui-state-focus";l.preventDefault(),"mousedown"===l.type?(t.picker.find("."+i).removeClass(i).blur(),e(this).addClass(i).focus()):e(this).removeClass(i)}).on("keydown",function(e){var i=l.square,o=l.squareDrag,s=o.position(),r=2;switch(e.altKey&&(r*=10),e.keyCode){case 37:s.left-=r;break;case 38:s.top-=r;break;case 39:s.left+=r;break;case 40:s.top+=r;break;default:return!0}s.left=Math.max(0,Math.min(s.left,i.width())),s.top=Math.max(0,Math.min(s.top,i.height())),o.css(s),t._squareDrag(e,{position:s}),e.preventDefault()}),i.mousedown(function(l){var i,o;1===l.which&&e(l.target).is("div")&&(i=t.controls.square.offset(),o={top:l.pageY-i.top,left:l.pageX-i.left},l.preventDefault(),t._squareDrag(l,{position:o}),l.target=t.controls.squareDrag.get(0),t.controls.squareDrag.css(o).trigger(l))})},_squareDrag:function(e,t){var l=this,i=l.options.controls,o=l._squareDimensions(),s=Math.round((o.h-t.position.top)/o.h*l._scale[i.vert]),r=l._scale[i.horiz]-Math.round((o.w-t.position.left)/o.w*l._scale[i.horiz]);l._color[i.horiz](r)[i.vert](s),l.active="square",l._change.apply(l,arguments)},_setColor:function(e){var t,l,i=this,o=i.options.color;i.options.color=e,e=""+e,t=e.replace(/^#/,""),l=new Color(e).setHSpace(i.options.mode),l.error?i.options.color=o:(i._color=l,i.options.color=i._color.toString(),i.active="external",i._change())},_squareDimensions:function(e){var l,i,o=this.controls.square;return e!==t&&o.data("dimensions")?o.data("dimensions"):(i=this.controls.squareDrag,l={w:o.width(),h:o.height()},o.data("dimensions",l),l)},_isNonHueControl:function(e,t){return"square"===e&&"h"===this.options.controls.strip?!0:"external"===t||"h"===t&&"strip"===e?!1:!0},_change:function(){var t=this,l=t.controls,i=t._getHSpaceColor(),o=["square","strip"],s=t.options.controls,r=s[t.active]||"external",n=t.hue;"strip"===t.active?o=[]:"external"!==t.active&&o.pop(),e.each(o,function(e,o){var r,n,a;if(o!==t.active)switch(o){case"strip":r="h"===s.strip?t._scale[s.strip]-i[s.strip]:i[s.strip],l.stripSlider.slider("value",r);break;case"square":n=t._squareDimensions(),a={left:i[s.horiz]/t._scale[s.horiz]*n.w,top:n.h-i[s.vert]/t._scale[s.vert]*n.h},t.controls.squareDrag.css(a)}}),i.h!==n&&t._isNonHueControl(t.active,r)&&t._color.h(n),t.hue=t._color.h(),t.options.color=t._color.toString(),t.element.is(":input")&&!t._color.error&&(t.element.removeClass("iris-error"),t.element.val()!==t._color.toString()&&(t.element.val(t._color.toString()),this._currentElement&&(this._currentElement.val(t._color.toString().replace(/^#/,"")).parent().find(".fl-color-picker-color").css({backgroundColor:t._color.toString()}).removeClass("fl-color-picker-empty"),this._currentElement.trigger("change")))),t._paint(),t._inited=!0,t.active=!1},_debounce:function(e,t,l){var i,o;return function(){var s,r,n=this,a=arguments;return s=function(){i=null,l||(o=e.apply(n,a))},r=l&&!i,clearTimeout(i),i=setTimeout(s,t),r&&(o=e.apply(n,a)),o}}}}(jQuery),function(e,t){var l=function(e,t){return this instanceof l?this._init(e,t):new l(e,t)};l.fn=l.prototype={_color:0,_alpha:1,error:!1,_hsl:{h:0,s:0,l:0},_hsv:{h:0,s:0,v:0},_hSpace:"hsl",_init:function(e){var l="noop";switch(typeof e){case"object":return e.a!==t&&this.a(e.a),l=e.r!==t?"fromRgb":e.l!==t?"fromHsl":e.v!==t?"fromHsv":l,this[l](e);case"string":return this.fromCSS(e);case"number":return this.fromInt(parseInt(e,10))}return this},_error:function(){return this.error=!0,this},clone:function(){for(var e=new l(this.toInt()),t=["_alpha","_hSpace","_hsl","_hsv","error"],i=t.length-1;i>=0;i--)e[t[i]]=this[t[i]];return e},setHSpace:function(e){return this._hSpace="hsv"===e?e:"hsl",this},noop:function(){return this},fromCSS:function(e){var t,l=/^(rgb|hs(l|v))a?\(/;if(this.error=!1,e=e.replace(/^\s+/,"").replace(/\s+$/,"").replace(/;$/,""),e.match(l)&&e.match(/\)$/)){if(t=e.replace(/(\s|%)/g,"").replace(l,"").replace(/,?\);?$/,"").split(","),t.length<3)return this._error();if(4===t.length&&(this.a(parseFloat(t.pop())),this.error))return this;for(var i=t.length-1;i>=0;i--)if(t[i]=parseInt(t[i],10),isNaN(t[i]))return this._error();return e.match(/^rgb/)?this.fromRgb({r:t[0],g:t[1],b:t[2]}):e.match(/^hsv/)?this.fromHsv({h:t[0],s:t[1],v:t[2]}):this.fromHsl({h:t[0],s:t[1],l:t[2]})}return this.fromHex(e)},fromRgb:function(e,l){return"object"!=typeof e||e.r===t||e.g===t||e.b===t?this._error():(this.error=!1,this.fromInt(parseInt((e.r<<16)+(e.g<<8)+e.b,10),l))},fromHex:function(e){return e=e.replace(/^#/,"").replace(/^0x/,""),3===e.length&&(e=e[0]+e[0]+e[1]+e[1]+e[2]+e[2]),this.error=!/^[0-9A-F]{6}$/i.test(e),this.fromInt(parseInt(e,16))},fromHsl:function(e){var l,i,o,s,r,n,a,d;return"object"!=typeof e||e.h===t||e.s===t||e.l===t?this._error():(this._hsl=e,this._hSpace="hsl",n=e.h/360,a=e.s/100,d=e.l/100,0===a?l=i=o=d:(s=.5>d?d*(1+a):d+a-d*a,r=2*d-s,l=this.hue2rgb(r,s,n+1/3),i=this.hue2rgb(r,s,n),o=this.hue2rgb(r,s,n-1/3)),this.fromRgb({r:255*l,g:255*i,b:255*o},!0))},fromHsv:function(e){var l,i,o,s,r,n,a,d,u,c,h;if("object"!=typeof e||e.h===t||e.s===t||e.v===t)return this._error();switch(this._hsv=e,this._hSpace="hsv",l=e.h/360,i=e.s/100,o=e.v/100,a=Math.floor(6*l),d=6*l-a,u=o*(1-i),c=o*(1-d*i),h=o*(1-(1-d)*i),a%6){case 0:s=o,r=h,n=u;break;case 1:s=c,r=o,n=u;break;case 2:s=u,r=o,n=h;break;case 3:s=u,r=c,n=o;break;case 4:s=h,r=u,n=o;break;case 5:s=o,r=u,n=c}return this.fromRgb({r:255*s,g:255*r,b:255*n},!0)},fromInt:function(e,l){return this._color=parseInt(e,10),isNaN(this._color)&&(this._color=0),this._color>16777215?this._color=16777215:this._color<0&&(this._color=0),l===t&&(this._hsv.h=this._hsv.s=this._hsl.h=this._hsl.s=0),this},hue2rgb:function(e,t,l){return 0>l&&(l+=1),l>1&&(l-=1),1/6>l?e+6*(t-e)*l:.5>l?t:2/3>l?e+(t-e)*(2/3-l)*6:e},toString:function(){var e=parseInt(this._color,10).toString(16);if(this.error)return"";if(e.length<6)for(var t=6-e.length-1;t>=0;t--)e="0"+e;return"#"+e},toCSS:function(e,t){switch(e=e||"hex",t=parseFloat(t||this._alpha),e){case"rgb":case"rgba":var l=this.toRgb();return 1>t?"rgba( "+l.r+", "+l.g+", "+l.b+", "+t+" )":"rgb( "+l.r+", "+l.g+", "+l.b+" )";case"hsl":case"hsla":var i=this.toHsl();return 1>t?"hsla( "+i.h+", "+i.s+"%, "+i.l+"%, "+t+" )":"hsl( "+i.h+", "+i.s+"%, "+i.l+"% )";default:return this.toString()}},toRgb:function(){return{r:255&this._color>>16,g:255&this._color>>8,b:255&this._color}},toHsl:function(){var e,t,l=this.toRgb(),i=l.r/255,o=l.g/255,s=l.b/255,r=Math.max(i,o,s),n=Math.min(i,o,s),a=(r+n)/2;if(r===n)e=t=0;else{var d=r-n;switch(t=a>.5?d/(2-r-n):d/(r+n),r){case i:e=(o-s)/d+(s>o?6:0);break;case o:e=(s-i)/d+2;break;case s:e=(i-o)/d+4}e/=6}return e=Math.round(360*e),0===e&&this._hsl.h!==e&&(e=this._hsl.h),t=Math.round(100*t),0===t&&this._hsl.s&&(t=this._hsl.s),{h:e,s:t,l:Math.round(100*a)}},toHsv:function(){var e,t,l=this.toRgb(),i=l.r/255,o=l.g/255,s=l.b/255,r=Math.max(i,o,s),n=Math.min(i,o,s),a=r,d=r-n;if(t=0===r?0:d/r,r===n)e=t=0;else{switch(r){case i:e=(o-s)/d+(s>o?6:0);break;case o:e=(s-i)/d+2;break;case s:e=(i-o)/d+4}e/=6}return e=Math.round(360*e),0===e&&this._hsv.h!==e&&(e=this._hsv.h),t=Math.round(100*t),0===t&&this._hsv.s&&(t=this._hsv.s),{h:e,s:t,v:Math.round(100*a)}},toInt:function(){return this._color},toIEOctoHex:function(){var e=this.toString(),t=parseInt(255*this._alpha,10).toString(16);return 1===t.length&&(t="0"+t),"#"+t+e.replace(/^#/,"")},toLuminosity:function(){var e=this.toRgb();return.2126*Math.pow(e.r/255,2.2)+.7152*Math.pow(e.g/255,2.2)+.0722*Math.pow(e.b/255,2.2)},getDistanceLuminosityFrom:function(e){if(!(e instanceof l))throw"getDistanceLuminosityFrom requires a Color object";var t=this.toLuminosity(),i=e.toLuminosity();return t>i?(t+.05)/(i+.05):(i+.05)/(t+.05)},getMaxContrastColor:function(){var e=this.toLuminosity(),t=e>=.5?"000000":"ffffff";return new l(t)},getReadableContrastingColor:function(e,i){if(!(e instanceof l))return this;var o=i===t?5:i,s=e.getDistanceLuminosityFrom(this),r=e.getMaxContrastColor(),n=r.getDistanceLuminosityFrom(e);if(o>=n)return r;if(s>=o)return this;for(var a=0===r.toInt()?-1:1;o>s&&(this.l(a,!0),s=this.getDistanceLuminosityFrom(e),0!==this._color&&16777215!==this._color););return this},a:function(e){if(e===t)return this._alpha;var l=parseFloat(e);return isNaN(l)?this._error():(this._alpha=l,this)},darken:function(e){return e=e||5,this.l(-e,!0)},lighten:function(e){return e=e||5,this.l(e,!0)},saturate:function(e){return e=e||15,this.s(e,!0)},desaturate:function(e){return e=e||15,this.s(-e,!0)},toGrayscale:function(){return this.setHSpace("hsl").s(0)},getComplement:function(){return this.h(180,!0)},getSplitComplement:function(e){e=e||1;var t=180+30*e;return this.h(t,!0)},getAnalog:function(e){e=e||1;var t=30*e;return this.h(t,!0)},getTetrad:function(e){e=e||1;var t=60*e;return this.h(t,!0)},getTriad:function(e){e=e||1;var t=120*e;return this.h(t,!0)},_partial:function(e){var l=i[e];return function(i,o){var s=this._spaceFunc("to",l.space);return i===t?s[e]:(o===!0&&(i=s[e]+i),l.mod&&(i%=l.mod),l.range&&(i=i<l.range[0]?l.range[0]:i>l.range[1]?l.range[1]:i),s[e]=i,this._spaceFunc("from",l.space,s))}},_spaceFunc:function(e,t,l){var i=t||this._hSpace,o=e+i.charAt(0).toUpperCase()+i.substr(1);return this[o](l)}};var i={h:{mod:360},s:{range:[0,100]},l:{space:"hsl",range:[0,100]},v:{space:"hsv",range:[0,100]},r:{space:"rgb",range:[0,255]},g:{space:"rgb",range:[0,255]},b:{space:"rgb",range:[0,255]}};for(var o in i)i.hasOwnProperty(o)&&(l.fn[o]=l.fn._partial(o));"object"==typeof exports?module.exports=l:e.Color=l}(this),function(e){FLIconSelector={_content:null,_lightbox:null,_rendered:!1,_filterText:"",open:function(e){FLIconSelector._rendered||FLIconSelector._render(),null===FLIconSelector._content?(FLIconSelector._lightbox.open('<div class="fl-builder-lightbox-loading"></div>'),FLBuilder.ajax({action:"render_icon_selector"},FLIconSelector._getContentComplete)):FLIconSelector._lightbox.open(),FLIconSelector._lightbox.on("icon-selected",function(t,l){FLIconSelector._lightbox.off("icon-selected"),FLIconSelector._lightbox.close(),e(l)})},_render:function(){FLIconSelector._lightbox=new FLLightbox({className:"fl-icon-selector"}),FLIconSelector._rendered=!0},_getContentComplete:function(t){var l=JSON.parse(t);FLIconSelector._content=l.html,FLIconSelector._lightbox.setContent(l.html),e(".fl-icons-filter-select").on("change",FLIconSelector._filter),e(".fl-icons-filter-text").on("keyup",FLIconSelector._filter),e(".fl-icons-list i").on("click",FLIconSelector._select),e(".fl-icon-selector-cancel").on("click",e.proxy(FLIconSelector._lightbox.close,FLIconSelector._lightbox))},_filter:function(){var t=e(".fl-icons-filter-select").val(),l=e(".fl-icons-filter-text").val();"all"==t?e(".fl-icons-section").show():(e(".fl-icons-section").hide(),e(".fl-"+t).show()),FLIconSelector._filterText=l,""!==l?e(".fl-icons-list i").each(FLIconSelector._filterIcon):e(".fl-icons-list i").show()},_filterIcon:function(){var t=e(this);-1==t.attr("class").indexOf(FLIconSelector._filterText)?t.hide():t.show()},_select:function(){var t=e(this).attr("class");FLIconSelector._lightbox.trigger("icon-selected",t)}}}(jQuery),function(e){FLLightbox=function(e){this._init(e),this._render(),this._bind()},FLLightbox.closeParent=function(t){var l=e(t).closest(".fl-lightbox-wrap").attr("data-instance-id");FLLightbox._instances[l].close()},FLLightbox._instances={},FLLightbox.prototype={_id:null,_node:null,_visible:!1,_resizeTimer:null,_draggable:!1,_defaults:{className:"",destroyOnClose:!1},open:function(e){this._node.show(),this._visible=!0,"undefined"!=typeof e?this.setContent(e):this._resize(),this.trigger("open")},close:function(){this._node.hide(),this._visible=!1,this.trigger("close"),this._defaults.destroyOnClose&&this.destroy()},setContent:function(e){this._node.find(".fl-lightbox-content").html(e),this._resize()},empty:function(){this._node.find(".fl-lightbox-content").empty()},on:function(e,t){this._node.on(e,t)},off:function(e){this._node.off(e)},trigger:function(e,t){this._node.trigger(e,t)},draggable:function(e){var t=this._node.find(".fl-lightbox-mask"),l=this._node.find(".fl-lightbox");e="undefined"==typeof e?!1:e,this._draggable&&l.draggable("destroy"),e?(this._unbind(),this._draggable=!0,t.hide(),l.draggable({cursor:"move",handle:e.handle||""})):(t.show(),this._bind(),this._draggable=!1),this._resize()},destroy:function(){e(window).off("resize.fl-lightbox-"+this._id),this._node.empty(),this._node.remove(),FLLightbox._instances[this._id]="undefined";try{delete FLLightbox._instances[this._id]}catch(t){}},_init:function(t){var l=0,i=null;for(i in FLLightbox._instances)l++;this._defaults=e.extend({},this._defaults,t),this._id=(new Date).getTime()+l,FLLightbox._instances[this._id]=this},_render:function(){this._node=e('<div class="fl-lightbox-wrap" data-instance-id="'+this._id+'"><div class="fl-lightbox-mask"></div><div class="fl-lightbox"><div class="fl-lightbox-content-wrap"><div class="fl-lightbox-content"></div></div></div></div>'),this._node.addClass(this._defaults.className),e("body").append(this._node)},_bind:function(){e(window).on("resize.fl-lightbox-"+this._id,e.proxy(this._delayedResize,this))},_unbind:function(){e(window).off("resize.fl-lightbox-"+this._id)},_delayedResize:function(){clearTimeout(this._resizeTimer),this._resizeTimer=setTimeout(e.proxy(this._resize,this),250)},_resize:function(){if(this._visible){var t=this._node.find(".fl-lightbox"),l=t.height(),i=t.width(),o=e(window),s=o.height(),r=o.width(),n="0px",a=(r-i)/2-30+"px";t.css({margin:"0px",top:"auto",left:"auto"}),s-80>l&&(n=(s-l)/2-40+"px"),this._draggable?(t.css("top",n),t.css("left",FLBuilderConfig.isRtl?"-"+a:a)):(t.css("margin-top",n),t.css("margin-left","auto"),t.css("margin-right","auto"))}},_onKeypress:function(e){27==e.which&&this._visible&&this.close()}}}(jQuery),function(e){FLStyleSheet=function(){},FLStyleSheet.prototype={_sheet:null,_sheetElement:null,updateRule:function(e,t,l){this._createSheet();for(var i=this._sheet.cssRules?this._sheet.cssRules:this._sheet.rules,o=null,s=0;s<i.length;s++)i[s].selectorText.toLowerCase()==e.toLowerCase()&&(o=i[s]);if(o)if("object"==typeof t)for(s in t)o.style[this._toCamelCase(s)]=t[s];else o.style[this._toCamelCase(t)]=l;else this.addRule(e,t,l)},addRule:function(e,t,l){this._createSheet();var i="",o="";if("object"==typeof t)for(o in t)i+=o+":"+t[o]+";";else i=t+":"+l+";";this._sheet.insertRule?this._sheet.insertRule(e+" { "+i+" }",this._sheet.cssRules.length):this._sheet.addRule(e,i)},remove:function(){this._sheetElement&&(this._sheetElement.remove(),this._sheetElement=null),this._sheet&&(this._sheet=null)},_createSheet:function(){this._sheet||(this._sheetElement=e('<style type="text/css"></style>'),e("body").append(this._sheetElement),this._sheet=this._sheetElement[0].sheet)},_toCamelCase:function(e){return e.toLowerCase().replace(/-(.)/g,function(e,t){return t.toUpperCase()})}}}(jQuery);
js/jquery.fitvids.js CHANGED
@@ -1,47 +1,31 @@
1
- /*global jQuery */
2
- /*jshint multistr:true browser:true */
3
  /*!
4
- * FitVids 1.0
5
  *
6
- * Copyright 2011, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
7
  * Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
8
  * Released under the WTFPL license - http://sam.zoy.org/wtfpl/
9
  *
10
- * Date: Thu Sept 01 18:00:00 2011 -0500
11
  */
12
 
13
- (function( $ ){
14
 
15
- "use strict";
16
 
17
  $.fn.fitVids = function( options ) {
18
  var settings = {
19
- customSelector: null
 
20
  };
21
 
22
- var div = document.createElement('div'),
23
- ref = document.getElementsByTagName('base')[0] || document.getElementsByTagName('script')[0];
24
-
25
- div.className = 'fit-vids-style';
26
- div.innerHTML = '&shy;<style> \
27
- .fluid-width-video-wrapper { \
28
- width: 100%; \
29
- position: relative; \
30
- padding: 0; \
31
- } \
32
- \
33
- .fluid-width-video-wrapper iframe, \
34
- .fluid-width-video-wrapper object, \
35
- .fluid-width-video-wrapper embed { \
36
- position: absolute; \
37
- top: 0; \
38
- left: 0; \
39
- width: 100%; \
40
- height: 100%; \
41
- } \
42
- </style>';
43
-
44
- ref.parentNode.insertBefore(div,ref);
45
 
46
  if ( options ) {
47
  $.extend( settings, options );
@@ -49,32 +33,54 @@
49
 
50
  return this.each(function(){
51
  var selectors = [
52
- "iframe[src*='player.vimeo.com']",
53
- "iframe[src*='www.youtube.com']",
54
- "iframe[src*='www.kickstarter.com']",
55
- "object",
56
- "embed"
 
57
  ];
58
 
59
  if (settings.customSelector) {
60
  selectors.push(settings.customSelector);
61
  }
62
 
 
 
 
 
 
 
63
  var $allVideos = $(this).find(selectors.join(','));
 
 
64
 
65
  $allVideos.each(function(){
66
  var $this = $(this);
 
 
 
67
  if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; }
 
 
 
 
 
68
  var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(),
69
  width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(),
70
  aspectRatio = height / width;
71
- if(!$this.attr('id')){
72
- var videoID = 'fitvid' + Math.floor(Math.random()*999999);
73
- $this.attr('id', videoID);
 
74
  }
75
- $this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+"%");
76
  $this.removeAttr('height').removeAttr('width');
77
  });
78
  });
79
  };
80
- })( jQuery );
 
 
 
 
1
+ /*jshint browser:true */
 
2
  /*!
3
+ * FitVids 1.1
4
  *
5
+ * Copyright 2013, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
6
  * Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
7
  * Released under the WTFPL license - http://sam.zoy.org/wtfpl/
8
  *
 
9
  */
10
 
11
+ ;(function( $ ){
12
 
13
+ 'use strict';
14
 
15
  $.fn.fitVids = function( options ) {
16
  var settings = {
17
+ customSelector: null,
18
+ ignore: null
19
  };
20
 
21
+ if(!document.getElementById('fit-vids-style')) {
22
+ // appendStyles: https://github.com/toddmotto/fluidvids/blob/master/dist/fluidvids.js
23
+ var head = document.head || document.getElementsByTagName('head')[0];
24
+ var css = '.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}';
25
+ var div = document.createElement("div");
26
+ div.innerHTML = '<p>x</p><style id="fit-vids-style">' + css + '</style>';
27
+ head.appendChild(div.childNodes[1]);
28
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
  if ( options ) {
31
  $.extend( settings, options );
33
 
34
  return this.each(function(){
35
  var selectors = [
36
+ 'iframe[src*="player.vimeo.com"]',
37
+ 'iframe[src*="youtube.com"]',
38
+ 'iframe[src*="youtube-nocookie.com"]',
39
+ 'iframe[src*="kickstarter.com"][src*="video.html"]',
40
+ 'object',
41
+ 'embed'
42
  ];
43
 
44
  if (settings.customSelector) {
45
  selectors.push(settings.customSelector);
46
  }
47
 
48
+ var ignoreList = '.fitvidsignore';
49
+
50
+ if(settings.ignore) {
51
+ ignoreList = ignoreList + ', ' + settings.ignore;
52
+ }
53
+
54
  var $allVideos = $(this).find(selectors.join(','));
55
+ $allVideos = $allVideos.not('object object'); // SwfObj conflict patch
56
+ $allVideos = $allVideos.not(ignoreList); // Disable FitVids on this video.
57
 
58
  $allVideos.each(function(){
59
  var $this = $(this);
60
+ if($this.parents(ignoreList).length > 0) {
61
+ return; // Disable FitVids on this video.
62
+ }
63
  if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; }
64
+ if ((!$this.css('height') && !$this.css('width')) && (isNaN($this.attr('height')) || isNaN($this.attr('width'))))
65
+ {
66
+ $this.attr('height', 9);
67
+ $this.attr('width', 16);
68
+ }
69
  var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(),
70
  width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(),
71
  aspectRatio = height / width;
72
+ if(!$this.attr('name')){
73
+ var videoID = 'fitvid' + $.fn.fitVids._count;
74
+ $this.attr('name', videoID);
75
+ $.fn.fitVids._count++;
76
  }
77
+ $this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+'%');
78
  $this.removeAttr('height').removeAttr('width');
79
  });
80
  });
81
  };
82
+
83
+ $.fn.fitVids._count = 0;
84
+
85
+ // Works with either jQuery or Zepto
86
+ })( window.jQuery || window.Zepto );
languages/es_ES.mo CHANGED
Binary file
languages/es_ES.po CHANGED
@@ -3,14 +3,14 @@ msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-08-31 09:36-0700\n"
6
- "PO-Revision-Date: 2015-09-02 10:02+0100\n"
7
  "Last-Translator: Roberto Porcar <rporcar@arrakis.es>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.7.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -104,8 +104,7 @@ msgstr ""
104
 
105
  #: classes/class-fl-builder-admin-settings.php:638
106
  msgid "Error! You must have at least one feature of the help button enabled."
107
- msgstr ""
108
- "¡Error! Debse tener al menos una característica del botón ayuda habilitada."
109
 
110
  #: classes/class-fl-builder-admin.php:45
111
  #, php-format
@@ -215,7 +214,7 @@ msgstr "Páginas de Contenido"
215
  #: classes/class-fl-builder-photo.php:100
216
  msgctxt "Image size."
217
  msgid "Full Size"
218
- msgstr "Tamaño completo"
219
 
220
  #: classes/class-fl-builder-photo.php:101
221
  msgctxt "Image size."
@@ -328,15 +327,15 @@ msgstr "Error: datos API no válidos."
328
 
329
  #: classes/class-fl-builder-service-aweber.php:72
330
  msgid "Error: You must provide an Authorization Code."
331
- msgstr "Error: Debse proporcionar un código de autorización."
332
 
333
  #: classes/class-fl-builder-service-aweber.php:76
334
  msgid "Error: Please enter a valid Authorization Code."
335
- msgstr "Error: Por favor, introducd un código de autorización válido."
336
 
337
  #: classes/class-fl-builder-service-aweber.php:127
338
  msgid "Authorization Code"
339
- msgstr "Código Autorización"
340
 
341
  #: classes/class-fl-builder-service-aweber.php:128
342
  #, php-format
@@ -350,7 +349,7 @@ msgstr ""
350
  #: classes/class-fl-builder-service-aweber.php:219
351
  msgid ""
352
  "There was an error subscribing to AWeber. The account is no longer connected."
353
- msgstr "Hubo un error suscribirse a AWeber. La cuenta ya no está conectada."
354
 
355
  #: classes/class-fl-builder-service-aweber.php:242
356
  msgid "There was an error connecting to AWeber. Please try again."
@@ -374,8 +373,8 @@ msgid ""
374
  "Your API key can be found in your Campaign Monitor account under Account "
375
  "Settings > API Key."
376
  msgstr ""
377
- "La clave API puede encontrarse en tu cuenta Campaign Monitor bajo de campaña "
378
- "Monitor bajo Account Settings > API Key."
379
 
380
  #: classes/class-fl-builder-service-campaign-monitor.php:158
381
  msgctxt "A client account in Campaign Monitor."
@@ -387,7 +386,8 @@ msgid ""
387
  "There was an error subscribing to Campaign Monitor. The account is no longer "
388
  "connected."
389
  msgstr ""
390
- "Hubo un error suscribirse a Campaign Monitor. La cuenta ya no está conectada."
 
391
 
392
  #: classes/class-fl-builder-service-campaign-monitor.php:253
393
  msgid "There was an error subscribing to Campaign Monitor."
@@ -405,15 +405,15 @@ msgstr "Error: No se pudo conectar a Constant Contact. %s"
405
 
406
  #: classes/class-fl-builder-service-constant-contact.php:89
407
  msgid "Your Constant Contact API key."
408
- msgstr "Tu API key Constant Contact."
409
 
410
  #: classes/class-fl-builder-service-constant-contact.php:99
411
  msgid "Access Token"
412
- msgstr "Access Token"
413
 
414
  #: classes/class-fl-builder-service-constant-contact.php:100
415
  msgid "Your Constant Contact access token."
416
- msgstr "El token de acceso de contacto permanente."
417
 
418
  #: classes/class-fl-builder-service-constant-contact.php:101
419
  #, php-format
@@ -512,16 +512,17 @@ msgstr "Etiqueta"
512
  msgid ""
513
  "There was an error subscribing to Hatchbuck. The account is no longer "
514
  "connected."
515
- msgstr "Hubo un error suscribirse a Hatchbuck. La cuenta ya no está conectada."
 
516
 
517
  #: classes/class-fl-builder-service-hatchbuck.php:190
518
  msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
519
- msgstr "Hubo un error suscribirse a Hatchbuck. La API key no es válida."
520
 
521
  #: classes/class-fl-builder-service-hatchbuck.php:200
522
  #: classes/class-fl-builder-service-hatchbuck.php:232
523
  msgid "There was an error subscribing to Hatchbuck."
524
- msgstr "Hubo un error suscribirse a Hatchbuck."
525
 
526
  #: classes/class-fl-builder-service-icontact.php:75
527
  msgid "Error: You must provide a username."
@@ -547,7 +548,7 @@ msgstr "Nombre de usuario"
547
 
548
  #: classes/class-fl-builder-service-icontact.php:126
549
  msgid "Your iContact username."
550
- msgstr "Su nombre de usuario iContact."
551
 
552
  #: classes/class-fl-builder-service-icontact.php:136
553
  #: classes/class-fl-builder-service-infusionsoft.php:118
@@ -580,12 +581,13 @@ msgstr ""
580
  msgid ""
581
  "There was an error subscribing to iContact. The account is no longer "
582
  "connected."
583
- msgstr "Hubo un error suscribirse a iContact. La cuenta ya no está conectada."
 
584
 
585
  #: classes/class-fl-builder-service-icontact.php:280
586
  #, php-format
587
  msgid "There was an error subscribing to iContact. %s"
588
- msgstr "Hubo un error suscribirse a iContact. %s"
589
 
590
  #: classes/class-fl-builder-service-infusionsoft.php:49
591
  #, php-format
@@ -639,7 +641,7 @@ msgid ""
639
  "Your API key can be found in your Mad Mimi account under Account > Settings "
640
  "&amp; Billing > API."
641
  msgstr ""
642
- "Tu clave API puedes encontrarla en tu cuenta Mad Mimi en Account > Settings "
643
  "&amp; Billing > API."
644
 
645
  #: classes/class-fl-builder-service-madmimi.php:156
@@ -666,7 +668,7 @@ msgstr ""
666
 
667
  #: classes/class-fl-builder-service-mailchimp.php:215
668
  msgid "No Group"
669
- msgstr "Sin grupo"
670
 
671
  #: classes/class-fl-builder-service-mailchimp.php:227
672
  msgctxt "MailChimp list group."
@@ -710,7 +712,7 @@ msgstr "Error: No se pudo establecer conexión con SendinBlue. %s"
710
 
711
  #: classes/class-fl-builder-service-sendinblue.php:103
712
  msgid "Access Key"
713
- msgstr "Clave de Acceso"
714
 
715
  #: classes/class-fl-builder-service-sendinblue.php:104
716
  msgid ""
@@ -775,7 +777,7 @@ msgstr "Conectar"
775
 
776
  #: classes/class-fl-builder-services.php:295
777
  msgid "Add Account..."
778
- msgstr "Añadir cuenta"
779
 
780
  #: classes/class-fl-builder-services.php:302
781
  msgid "Account"
@@ -787,7 +789,7 @@ msgstr "Plantillas de Page Builder"
787
 
788
  #: classes/class-fl-builder-templates-override.php:49
789
  msgid "Error! Please enter a number for the site ID."
790
- msgstr "¡Error! Por favor, introduce un número la identificación del sitio."
791
 
792
  #: classes/class-fl-builder-templates-override.php:53
793
  msgid "Error! A site with that ID doesn't exist."
@@ -800,11 +802,11 @@ msgstr "Plantilla: %s"
800
 
801
  #: classes/class-fl-builder.php:652
802
  msgid "Upgrade!"
803
- msgstr "Actualizar!"
804
 
805
  #: classes/class-fl-builder.php:656
806
  msgid "Buy Now!"
807
- msgstr "Comprar Ahora!"
808
 
809
  #: classes/class-fl-builder.php:660 includes/ui-js-config.php:36
810
  #: includes/ui-js-templates.php:100
@@ -873,7 +875,7 @@ msgstr "Buscar Plantillas"
873
  #: classes/class-fl-builder.php:1137
874
  msgctxt "Custom post type label."
875
  msgid "Parent Templates:"
876
- msgstr "Plantillas Maestras:"
877
 
878
  #: classes/class-fl-builder.php:1138
879
  msgctxt "Custom post type label."
@@ -908,12 +910,12 @@ msgstr "Todas las Categorías"
908
  #: classes/class-fl-builder.php:1157
909
  msgctxt "Custom taxonomy label."
910
  msgid "Parent Category"
911
- msgstr "Categoria Padre"
912
 
913
  #: classes/class-fl-builder.php:1158
914
  msgctxt "Custom taxonomy label."
915
  msgid "Parent Category:"
916
- msgstr "Categoria Padre:"
917
 
918
  #: classes/class-fl-builder.php:1159
919
  msgctxt "Custom taxonomy label."
@@ -1031,7 +1033,7 @@ msgstr "Vaciar Caché"
1031
 
1032
  #: includes/admin-settings-editing.php:3
1033
  msgid "Editing Settings"
1034
- msgstr "Editar configuración"
1035
 
1036
  #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
1037
  #: includes/admin-settings-modules.php:10
@@ -1055,7 +1057,7 @@ msgstr ""
1055
 
1056
  #: includes/admin-settings-editing.php:21
1057
  msgid "Global Templates Editing Capability"
1058
- msgstr "Capacidad de Edición Plantillas Globales"
1059
 
1060
  #: includes/admin-settings-editing.php:22
1061
  #, php-format
@@ -1094,19 +1096,19 @@ msgstr "Activar Vídeo de Ayuda"
1094
 
1095
  #: includes/admin-settings-help-button.php:39
1096
  msgid "Help Video Embed Code"
1097
- msgstr "Ayuda Código Inserción de Vídeo"
1098
 
1099
  #: includes/admin-settings-help-button.php:45
1100
  msgid "Knowledge Base"
1101
- msgstr "Base de conocimiento"
1102
 
1103
  #: includes/admin-settings-help-button.php:49
1104
  msgid "Enable Knowledge Base"
1105
- msgstr "Habilitar la Base de conocimiento"
1106
 
1107
  #: includes/admin-settings-help-button.php:53
1108
  msgid "Knowledge Base URL"
1109
- msgstr "URL Base de conocimiento"
1110
 
1111
  #: includes/admin-settings-help-button.php:59
1112
  msgid "Forums"
@@ -1170,13 +1172,12 @@ msgstr ""
1170
 
1171
  #: includes/admin-settings-modules.php:3
1172
  msgid "Enabled Modules"
1173
- msgstr "Módulos habilitados"
1174
 
1175
  #: includes/admin-settings-modules.php:16
1176
  msgid "Check or uncheck modules below to enable or disable them."
1177
  msgstr ""
1178
- "Selecciona o deshabilita las siguientes opciones para activar o desactivar "
1179
- "los módulos."
1180
 
1181
  #: includes/admin-settings-modules.php:26
1182
  msgctxt "Plugin setup page: Modules."
@@ -1192,8 +1193,8 @@ msgid ""
1192
  "Enter a comma separated list of the post types you would like the builder to "
1193
  "work with."
1194
  msgstr ""
1195
- "Introduce una lista separada por comas de los tipos de entrada "
1196
- "personalizados con los que quieres trabajar."
1197
 
1198
  #: includes/admin-settings-post-types.php:19
1199
  #: includes/admin-settings-post-types.php:39
@@ -1207,7 +1208,8 @@ msgstr "Ejemplo: página, entrada, producto"
1207
 
1208
  #: includes/admin-settings-post-types.php:38
1209
  msgid "Select the post types you would like the builder to work with."
1210
- msgstr "Selecciona los tipos de entrada con los que te gustaría trabajar."
 
1211
 
1212
  #: includes/admin-settings-post-types.php:70
1213
  msgid "Save Post Types"
@@ -1216,7 +1218,7 @@ msgstr "Guardar Tipos de Entrada"
1216
  #: includes/admin-settings-templates-override.php:1
1217
  #: includes/admin-settings-templates-override.php:12
1218
  msgid "Override Core Templates"
1219
- msgstr "Reemplazar Plantillas Base"
1220
 
1221
  #: includes/admin-settings-templates-override.php:3
1222
  msgid ""
@@ -1224,15 +1226,15 @@ msgid ""
1224
  "builder templates. Leave this field blank if you do not wish to override "
1225
  "core templates."
1226
  msgstr ""
1227
- "Introduce el ID del sitio en la red cuyas plantillas base deben "
1228
- "reemplazarse. Deja este campo en blanco si no deseas sobrescribir las "
1229
- "plantillas base."
1230
 
1231
  #: includes/admin-settings-templates-override.php:8
1232
  msgid ""
1233
  "Use this setting to override core builder templates with your templates."
1234
  msgstr ""
1235
- "Usa esta opción para sobrescribir las plantillas base con tus propias "
1236
  "plantillas."
1237
 
1238
  #: includes/admin-settings-templates-override.php:17
@@ -1247,11 +1249,11 @@ msgstr ""
1247
 
1248
  #: includes/admin-settings-templates-override.php:21
1249
  msgid "Show Row Templates?"
1250
- msgstr "Mostrar Plantillas de Fila?"
1251
 
1252
  #: includes/admin-settings-templates-override.php:27
1253
  msgid "Show Module Templates?"
1254
- msgstr "Mostrar Plantillas de Módulo?"
1255
 
1256
  #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1257
  msgid "Template Settings"
@@ -1266,7 +1268,7 @@ msgid ""
1266
  "Use this setting to enable or disable templates in the builder interface."
1267
  msgstr ""
1268
  "Usa esta opción para activar o desactivar las plantillas en las opciones del "
1269
- "plugin."
1270
 
1271
  #: includes/admin-settings-templates.php:25
1272
  msgid "Enable All Templates"
@@ -1274,11 +1276,11 @@ msgstr "Habilitar Todas las Plantillas"
1274
 
1275
  #: includes/admin-settings-templates.php:26
1276
  msgid "Enable Core Templates Only"
1277
- msgstr "Habilitar Sólo Plantillas Base"
1278
 
1279
  #: includes/admin-settings-templates.php:27
1280
  msgid "Enable User Templates Only"
1281
- msgstr "Habilitar Sólo Plantillas de Usuario"
1282
 
1283
  #: includes/admin-settings-templates.php:28
1284
  msgid "Disable All Templates"
@@ -1287,7 +1289,7 @@ msgstr "Deshabilitar Todas las Plantillas"
1287
  #: includes/admin-settings-templates.php:31
1288
  #: includes/admin-settings-templates.php:36
1289
  msgid "Enable Templates Admin"
1290
- msgstr "Habilitar Plantillas Admin"
1291
 
1292
  #: includes/admin-settings-templates.php:32
1293
  msgid "Use this setting to edit builder templates in the WordPress admin."
@@ -1464,11 +1466,11 @@ msgstr "Página de Aterrizaje"
1464
  #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1465
  msgctxt "Templates category label."
1466
  msgid "Company Info"
1467
- msgstr "Datos de la empresa"
1468
 
1469
  #: includes/admin-templates-edit.php:40
1470
  msgid "Update Template"
1471
- msgstr "Actualizar plantilla"
1472
 
1473
  #: includes/admin-templates.php:3
1474
  msgid "Page Builder Template"
@@ -1527,7 +1529,7 @@ msgstr "Estilo"
1527
 
1528
  #: includes/column-settings.php:14
1529
  msgid "Column Width"
1530
- msgstr "Ancho de columna"
1531
 
1532
  #: includes/column-settings.php:26 modules/button/button.php:66
1533
  #: modules/callout/callout.php:226 modules/callout/callout.php:479
@@ -1558,7 +1560,7 @@ msgstr "Color del Enlace"
1558
  #: modules/menu/menu.php:196 modules/post-carousel/post-carousel.php:406
1559
  #: modules/post-slider/post-slider.php:715
1560
  msgid "Link Hover Color"
1561
- msgstr "Color del Enlace on Hover"
1562
 
1563
  #: includes/column-settings.php:54 includes/row-settings.php:76
1564
  msgid "Heading Color"
@@ -1733,13 +1735,14 @@ msgid ""
1733
  "background if fill is selected in the scale setting."
1734
  msgstr ""
1735
  "Anexar Fondo especifica como se comporta la imagen cuando se hace scroll en "
1736
- "la página. Si se ha seleccionado scroll, la imagen realizará este efecto. Es "
1737
- "la opción por defecto. Fijo permitirá a la imagen hacer scroll con el fondo "
1738
- "si la opción Relleno se ha seleccionado en Escalar Fondo."
 
1739
 
1740
  #: includes/column-settings.php:172 includes/row-settings.php:212
1741
  msgid "Scale"
1742
- msgstr "Escalar"
1743
 
1744
  #: includes/column-settings.php:175 includes/row-settings.php:215
1745
  msgctxt "Background scale."
@@ -1764,7 +1767,7 @@ msgstr ""
1764
 
1765
  #: includes/column-settings.php:187 includes/row-settings.php:366
1766
  msgid "Background Overlay"
1767
- msgstr "Fondo de Superposición"
1768
 
1769
  #: includes/column-settings.php:191 includes/row-settings.php:370
1770
  msgid "Overlay Color"
@@ -1889,7 +1892,7 @@ msgstr "Derecha"
1889
  #: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
1890
  #: modules/subscribe-form/subscribe-form.php:273
1891
  msgid "Padding"
1892
- msgstr "Márgenes interiores / Padding"
1893
 
1894
  #: includes/column-settings.php:427 includes/global-settings.php:103
1895
  #: includes/module-settings.php:62 includes/row-settings.php:606
@@ -1934,12 +1937,12 @@ msgstr "Sólo dispositivos pequeños"
1934
  #: includes/column-settings.php:440
1935
  msgid "Choose whether to show or hide this column at different device sizes."
1936
  msgstr ""
1937
- "Elegir si deseas mostrar u ocultar esta columna en dispositivos de diferente "
1938
- "tamaños."
1939
 
1940
  #: includes/column-settings.php:447
1941
  msgid "Medium Device Width"
1942
- msgstr "Anchura de dispositivo de tamaño mediano"
1943
 
1944
  #: includes/column-settings.php:448
1945
  msgid "The width of this column on medium devices such as tablets."
@@ -1966,11 +1969,11 @@ msgstr "Personalizada"
1966
 
1967
  #: includes/column-settings.php:464
1968
  msgid "Custom Medium Device Width"
1969
- msgstr "Personalizar anchura en dispositivo de tamaño mediano"
1970
 
1971
  #: includes/column-settings.php:475
1972
  msgid "Small Device Width"
1973
- msgstr "Anchura de dispositivo de tamaño pequeño"
1974
 
1975
  #: includes/column-settings.php:476
1976
  msgid "The width of this column on small devices such as phones."
@@ -1979,7 +1982,7 @@ msgstr ""
1979
 
1980
  #: includes/column-settings.php:492
1981
  msgid "Custom Small Device Width"
1982
- msgstr "Personalizar anchura en dispositivo de tamaño pequeño"
1983
 
1984
  #: includes/column-settings.php:504 includes/module-settings.php:115
1985
  #: includes/row-settings.php:627
@@ -2080,7 +2083,7 @@ msgstr "Seleccionar Video"
2080
 
2081
  #: includes/field-video.php:17
2082
  msgid "Replace Video"
2083
- msgstr "Reemplazar Vídeo"
2084
 
2085
  #: includes/global-settings.php:7 includes/node-template-settings.php:7
2086
  #: includes/template-settings.php:7 includes/user-template-settings.php:7
@@ -2108,7 +2111,7 @@ msgstr "Nota: Estos ajustes se aplican a todas las páginas y entradas."
2108
 
2109
  #: includes/global-settings.php:11
2110
  msgid "Default Page Heading"
2111
- msgstr "Encabezado de Página Predeterminado"
2112
 
2113
  #: includes/global-settings.php:15
2114
  msgctxt ""
@@ -2122,9 +2125,8 @@ msgid ""
2122
  "You will also be required to enter some basic CSS for this to work if you "
2123
  "choose no."
2124
  msgstr ""
2125
- "Eligiendo no se ocultá el encabezado por defecto del tema para el tipo "
2126
- "\"Página\". Necesitarás algo de CSS básico para que esto funcione si eliges "
2127
- "no."
2128
 
2129
  #: includes/global-settings.php:30
2130
  msgid "CSS Selector"
@@ -2177,7 +2179,7 @@ msgctxt ""
2177
  "General settings form field label. Intended meaning: \"Enable auto spacing "
2178
  "for responsive layouts?\""
2179
  msgid "Enable Auto Spacing"
2180
- msgstr "Habilitar Auto espaciado"
2181
 
2182
  #: includes/global-settings.php:127
2183
  msgid ""
@@ -2185,14 +2187,14 @@ msgid ""
2185
  "margins and padding in your layout once the small device breakpoint is "
2186
  "reached. Most users will want to leave this enabled."
2187
  msgstr ""
2188
- "Cuando espaciado automático está habilitado, beaver builder ajustará "
2189
- "automáticamente los márgenes y espaciado del diseño una vez se alcance el "
2190
- "breakpoint del dispositivo. La mayoría de usuarios querrán dejar esto "
2191
  "habilitado."
2192
 
2193
  #: includes/global-settings.php:131
2194
  msgid "Medium Device Breakpoint"
2195
- msgstr "Punto de Ruptura para Dispositivos de tamaño medio"
2196
 
2197
  #: includes/global-settings.php:136
2198
  msgid ""
@@ -2204,7 +2206,7 @@ msgstr ""
2204
 
2205
  #: includes/global-settings.php:140
2206
  msgid "Small Device Breakpoint"
2207
- msgstr "Punto de Ruptura para Dispositivos de tamaño pequeño"
2208
 
2209
  #: includes/global-settings.php:145
2210
  msgid ""
@@ -2313,8 +2315,8 @@ msgstr ""
2313
  #: includes/module-settings.php:75
2314
  msgid "Choose whether to show or hide this module at different device sizes."
2315
  msgstr ""
2316
- "Elegir si deseas mostrar u ocultar esta columna en dispositivos con tamaños "
2317
- "diferentes."
2318
 
2319
  #: includes/module-settings.php:83
2320
  msgid "Animation"
@@ -2333,22 +2335,22 @@ msgstr "Desvanecer"
2333
  #: includes/module-settings.php:91
2334
  msgctxt "Animation style."
2335
  msgid "Slide Left"
2336
- msgstr "Deslizar desde la Izquierda"
2337
 
2338
  #: includes/module-settings.php:92
2339
  msgctxt "Animation style."
2340
  msgid "Slide Right"
2341
- msgstr "Deslizar desde la Derecha"
2342
 
2343
  #: includes/module-settings.php:93
2344
  msgctxt "Animation style."
2345
  msgid "Slide Up"
2346
- msgstr "Deslizar desde Arriba"
2347
 
2348
  #: includes/module-settings.php:94
2349
  msgctxt "Animation style."
2350
  msgid "Slide Down"
2351
- msgstr "Deslizar desde Abajo"
2352
 
2353
  #: includes/module-settings.php:102
2354
  #: modules/content-slider/content-slider.php:230
@@ -2421,7 +2423,7 @@ msgid ""
2421
  "Global templates can be added to multiple pages and edited in one place."
2422
  msgstr ""
2423
  "Las plantillas globales se pueden añadir en múltiples páginas y editarse en "
2424
- "un solo sitio."
2425
 
2426
  #: includes/row-settings.php:6 includes/ui-js-config.php:67
2427
  #: includes/ui-js-templates.php:12
@@ -2439,8 +2441,8 @@ msgid ""
2439
  "no wider than the Row Max Width set in the Global Settings."
2440
  msgstr ""
2441
  "Las filas de anchura completa abarcan todo el ancho de la página de lado a "
2442
- "lado. Las filas fijas no son mas anchas que la Anchura Máxima de la Fila "
2443
- "establecida en la Configuración Global."
2444
 
2445
  #: includes/row-settings.php:34
2446
  msgid "Content Width"
@@ -2451,8 +2453,8 @@ msgid ""
2451
  "Full width content spans the width of the page from edge to edge. Fixed "
2452
  "content is no wider than the Row Max Width set in the Global Settings."
2453
  msgstr ""
2454
- "Los contenidos a anchura completa abarcan todo el ancho de la página de lado "
2455
- "a lado. El contenido fijo no es más ancho que la Anchura Máxima de la Fila "
2456
  "establecida en la Configuración Global."
2457
 
2458
  #: includes/row-settings.php:48 modules/button/button.php:120
@@ -2478,7 +2480,7 @@ msgstr "Color del Texto"
2478
  #: includes/row-settings.php:95
2479
  msgctxt "Background type."
2480
  msgid "Video"
2481
- msgstr "Vídeo"
2482
 
2483
  #: includes/row-settings.php:97
2484
  msgctxt "Background type."
@@ -2497,14 +2499,14 @@ msgstr "Fondo de Video"
2497
  #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
2498
  #: modules/video/video.php:19 modules/video/video.php:100
2499
  msgid "Video"
2500
- msgstr "Vídeo"
2501
 
2502
  #: includes/row-settings.php:232
2503
  msgid ""
2504
  "An HTML5 video to use as the background of this row. Supported types are "
2505
  "MP4, WebM and Ogg."
2506
  msgstr ""
2507
- "Un vídeo HTML5 para utilizar como fondo de esta fila. Los tipos soportados "
2508
  "son MP4, WebM y Ogg."
2509
 
2510
  #: includes/row-settings.php:239
@@ -2537,9 +2539,9 @@ msgid ""
2537
  "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
2538
  "accessed by using the get a link function in your SmugMug gallery."
2539
  msgstr ""
2540
- "Sacar imágenes de la biblioteca de WordPress o de una galería en tu sitio "
2541
- "SmugMug insertando la URL del feed RSS de SmugMug. A esta dirección se puede "
2542
- "acceder desde la función obtener enlace en tu galería SmugMug."
2543
 
2544
  #: includes/row-settings.php:273 modules/gallery/gallery.php:259
2545
  #: modules/slideshow/slideshow.php:289
@@ -2642,8 +2644,8 @@ msgstr "Lento"
2642
  #: includes/row-settings.php:619
2643
  msgid "Choose whether to show or hide this row at different device sizes."
2644
  msgstr ""
2645
- "Elegir si deseas mostrar u ocultar esta fila en dispositivos con tamaños "
2646
- "diferentes."
2647
 
2648
  #: includes/row-settings.php:632
2649
  msgid ""
@@ -2698,7 +2700,7 @@ msgstr "En Blanco"
2698
 
2699
  #: includes/template-settings.php:18
2700
  msgid "Image Filename"
2701
- msgstr "Nombre de archivo de imagen"
2702
 
2703
  #: includes/template-settings.php:19
2704
  msgid ""
@@ -2721,8 +2723,8 @@ msgid ""
2721
  "Warning! Changing the template will replace your existing layout. Do you "
2722
  "really want to do this?"
2723
  msgstr ""
2724
- "¡Advertencia! Cambiando la plantilla reemplazaras tu diseño actual. ¿Quieres "
2725
- "hacer esto?"
2726
 
2727
  #: includes/ui-js-config.php:25 includes/ui-js-templates.php:29
2728
  msgid "Column"
@@ -2744,8 +2746,8 @@ msgid ""
2744
  "Are you sure you want to remove this account? Other modules that are "
2745
  "connected to it will be affected."
2746
  msgstr ""
2747
- "¿Estás seguro que desesa eliminar esta cuenta? Se verán afectados los demás "
2748
- "módulos que estén relacionados con este."
2749
 
2750
  #: includes/ui-js-config.php:29
2751
  msgid "Do you really want to delete this item?"
@@ -2756,23 +2758,23 @@ msgid ""
2756
  "Do you really want to delete this module? All content data will be "
2757
  "permanently deleted."
2758
  msgstr ""
2759
- "¿Quieres eliminar este módulo? Se eliminarán definitivamente todos los datos "
2760
- "de contenido."
2761
 
2762
  #: includes/ui-js-config.php:31
2763
  msgid ""
2764
  "Do you really want to delete this row? All content data will be permanently "
2765
  "deleted."
2766
  msgstr ""
2767
- "¿Quieres eliminar esta fila? Se eliminarán definitivamente todos los datos "
2768
- "de contenido."
2769
 
2770
  #: includes/ui-js-config.php:33
2771
  msgid ""
2772
  "WARNING! You are about to delete a global template that may be linked to "
2773
  "other pages. Do you really want to delete this template and unlink it?"
2774
  msgstr ""
2775
- "ADVERTENCIA! Estás a punto de borrar una plantilla global que puede estar "
2776
  "vinculada a otras páginas. ¿De verdad quieres eliminar esta plantilla y "
2777
  "desvincularla?"
2778
 
@@ -2860,7 +2862,7 @@ msgstr "Módulo"
2860
 
2861
  #: includes/ui-js-config.php:52
2862
  msgid "Module Template Saved!"
2863
- msgstr "Módulo de Plantilla Guardado!"
2864
 
2865
  #: includes/ui-js-config.php:53 includes/ui-js-templates.php:10
2866
  #: includes/ui-js-templates.php:50
@@ -2906,7 +2908,7 @@ msgstr "Fotos Seleccionadas"
2906
  #: includes/ui-js-config.php:63
2907
  #: modules/subscribe-form/includes/frontend.php:15
2908
  msgid "Please Wait..."
2909
- msgstr "Por favor espere..."
2910
 
2911
  #: includes/ui-js-config.php:64
2912
  msgid "Publish Changes"
@@ -2918,11 +2920,11 @@ msgstr "Fila"
2918
 
2919
  #: includes/ui-js-config.php:68
2920
  msgid "Row Template Saved!"
2921
- msgstr "Plantilla de Fila Guardada!"
2922
 
2923
  #: includes/ui-js-config.php:69
2924
  msgid "Save Core Template"
2925
- msgstr "Guardar Plantilla Base"
2926
 
2927
  #: includes/ui-js-config.php:70 includes/user-template-settings.php:4
2928
  msgid "Save Template"
@@ -2986,23 +2988,23 @@ msgstr ""
2986
 
2987
  #: includes/ui-js-config.php:86
2988
  msgid "Add Rows"
2989
- msgstr "Añadir filas"
2990
 
2991
  #: includes/ui-js-config.php:87
2992
  msgid ""
2993
  "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
2994
  "and dropping row layouts onto the page."
2995
  msgstr ""
2996
- "Añadir filas multi-columna, ajustar espaciado, añadir fundos y más, "
2997
- "arrastrando y soltando diseños de fila en la página."
2998
 
2999
  #: includes/ui-js-config.php:89
3000
  msgid ""
3001
  "Add new content by dragging and dropping modules or widgets into your row "
3002
  "layouts or to create a new row layout."
3003
  msgstr ""
3004
- "Añade contenido nuevo arrastrando y soltando módulos o widgets en tu fila o "
3005
- "bien para crear una nueva distribución de fila."
3006
 
3007
  #: includes/ui-js-config.php:90
3008
  msgid "Edit Content"
@@ -3025,7 +3027,7 @@ msgstr ""
3025
 
3026
  #: includes/ui-js-config.php:93
3027
  msgid "Add More Content"
3028
- msgstr "Añadir Más Contenido"
3029
 
3030
  #: includes/ui-js-config.php:94
3031
  msgid ""
@@ -3046,8 +3048,8 @@ msgid ""
3046
  "page content."
3047
  msgstr ""
3048
  "Usa el botón de Plantillas para escoger una nueva plantilla o adjuntar una "
3049
- "plantilla a tú diseño ya existente. Adjuntar insertará una nueva plantilla "
3050
- "al final de tu diseño."
3051
 
3052
  #: includes/ui-js-config.php:97
3053
  msgid "Helpful Tools"
@@ -3063,7 +3065,7 @@ msgstr ""
3063
 
3064
  #: includes/ui-js-config.php:99
3065
  msgid "Publish Your Changes"
3066
- msgstr "Publicar Tus Cambios"
3067
 
3068
  #: includes/ui-js-config.php:100
3069
  msgid ""
@@ -3075,7 +3077,7 @@ msgstr ""
3075
 
3076
  #: includes/ui-js-config.php:101
3077
  msgid "Let's Get Building!"
3078
- msgstr "Empezar a Diseñar!"
3079
 
3080
  #: includes/ui-js-config.php:102
3081
  msgid ""
@@ -3083,9 +3085,9 @@ msgid ""
3083
  "you need help, click the help icon in the upper right corner to access the "
3084
  "help menu. Happy building!"
3085
  msgstr ""
3086
- "Ahora que ya sabes lo básico, estás listo para empezar a diseñar! Si "
3087
  "necesitas ayuda en cualquier momento, haz clic en el icono de ayuda en la "
3088
- "esquina superior derecha para acceder al menú de ayuda. ¡Happy building!"
3089
 
3090
  #: includes/ui-js-config.php:103
3091
  msgid ""
@@ -3100,7 +3102,7 @@ msgstr "Ver la Base de Conocimiento"
3100
 
3101
  #: includes/ui-js-config.php:105
3102
  msgid "Visit the Forums"
3103
- msgstr "Visitar los Foros"
3104
 
3105
  #: includes/ui-js-config.php:106
3106
  msgid "Watch the Video"
@@ -3124,7 +3126,7 @@ msgid ""
3124
  "Welcome! It looks like this might be your first time using the builder. "
3125
  "Would you like to take a tour?"
3126
  msgstr ""
3127
- "¡Bienvenido! Parece que es la primera vez que utilizas este editor. ¿Te "
3128
  "gustaría realizar un tour?"
3129
 
3130
  #: includes/ui-js-templates.php:88
@@ -3133,11 +3135,11 @@ msgstr "No, Gracias"
3133
 
3134
  #: includes/ui-js-templates.php:89
3135
  msgid "Yes Please!"
3136
- msgstr "Sí, por favor!"
3137
 
3138
  #: includes/ui-js-templates.php:96
3139
  msgid "Getting Started Video"
3140
- msgstr "Video Primeros Pasos"
3141
 
3142
  #: includes/ui-panel-node-templates.php:6
3143
  msgid "Saved Rows"
@@ -3149,7 +3151,7 @@ msgstr "Módulos Guardados"
3149
 
3150
  #: includes/ui-panel.php:11
3151
  msgid "Row Layouts"
3152
- msgstr "Distribución de la Fila"
3153
 
3154
  #: includes/ui-panel.php:15
3155
  msgid "1 Column"
@@ -3185,7 +3187,7 @@ msgstr "Barra Lateral Derecha"
3185
 
3186
  #: includes/ui-panel.php:23
3187
  msgid "Left &amp; Right Sidebar"
3188
- msgstr "Izquierda & Barra Lateral Derecha"
3189
 
3190
  #: includes/updater/classes/class-fl-updater.php:132
3191
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
@@ -3207,19 +3209,19 @@ msgid ""
3207
  "enable automatic updates."
3208
  msgstr ""
3209
  "¡ACTUALIZACIONES NO DISPONIBLES! Por favor suscríbete o introduce la clave "
3210
- "de licencia para habilitar actualizaciones automáticas."
3211
 
3212
  #: includes/updater/includes/form.php:11
3213
  msgid "Updates &amp; Support Subscription"
3214
- msgstr "Suscripción Actualizaciones &amp; Soporte"
3215
 
3216
  #: includes/updater/includes/form.php:14
3217
  msgid "Active!"
3218
- msgstr "Activado!"
3219
 
3220
  #: includes/updater/includes/form.php:16
3221
  msgid "Not Active!"
3222
- msgstr "No activado!"
3223
 
3224
  #: includes/updater/includes/form.php:22
3225
  msgid "Email address saved!"
@@ -3327,7 +3329,7 @@ msgstr "Botón"
3327
 
3328
  #: modules/button/button.php:15
3329
  msgid "A simple call to action button."
3330
- msgstr "Un simple botón de Call to Action"
3331
 
3332
  #: modules/button/button.php:67 modules/cta/cta.php:223
3333
  msgid "Click Here"
@@ -3478,7 +3480,7 @@ msgstr "Esquinas Redondeadas"
3478
 
3479
  #: modules/callout/callout.php:14
3480
  msgid "Callout"
3481
- msgstr "Leyenda"
3482
 
3483
  #: modules/callout/callout.php:15
3484
  msgid "A heading and snippet of text with an optional link, icon and image."
@@ -3498,22 +3500,23 @@ msgstr "Encabezado"
3498
 
3499
  #: modules/callout/callout.php:249
3500
  msgid "Overall Alignment"
3501
- msgstr "Alineación"
3502
 
3503
  #: modules/callout/callout.php:256
3504
  msgid "The alignment that will apply to all elements within the callout."
3505
  msgstr ""
3506
- "La alineación que se aplicará a todos los elementos dentro del callout."
 
3507
 
3508
  #: modules/callout/callout.php:264 modules/cta/cta.php:148
3509
  msgid "Heading Structure"
3510
- msgstr "Estructura del Encabezado"
3511
 
3512
  #: modules/callout/callout.php:268
3513
  #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3514
  #: modules/post-slider/post-slider.php:586
3515
  msgid "Heading Tag"
3516
- msgstr "Etiqueta de Encabezado"
3517
 
3518
  #: modules/callout/callout.php:281
3519
  #: modules/content-slider/content-slider.php:446
@@ -3522,11 +3525,11 @@ msgstr "Etiqueta de Encabezado"
3522
  #: modules/post-slider/post-slider.php:613
3523
  #: modules/testimonials/testimonials.php:69
3524
  msgid "Heading Size"
3525
- msgstr "Tamaño del Encabezado"
3526
 
3527
  #: modules/callout/callout.php:295 modules/cta/cta.php:179
3528
  msgid "Heading Custom Size"
3529
- msgstr "Tamaño Personalizado del Encabezado"
3530
 
3531
  #: modules/callout/callout.php:313
3532
  msgid "Image Type"
@@ -3550,7 +3553,7 @@ msgstr "Ninguno"
3550
  #: modules/callout/callout.php:345 modules/photo/photo.php:421
3551
  #: modules/post-slider/post-slider.php:485
3552
  msgid "Landscape"
3553
- msgstr "Horizontal"
3554
 
3555
  #: modules/callout/callout.php:346 modules/photo/photo.php:422
3556
  #: modules/post-slider/post-slider.php:486
@@ -3560,7 +3563,7 @@ msgstr "Panorama"
3560
  #: modules/callout/callout.php:347 modules/photo/photo.php:423
3561
  #: modules/post-slider/post-slider.php:487
3562
  msgid "Portrait"
3563
- msgstr "Vertical"
3564
 
3565
  #: modules/callout/callout.php:348 modules/photo/photo.php:424
3566
  #: modules/post-slider/post-slider.php:488
@@ -3574,11 +3577,11 @@ msgstr "Círculo"
3574
 
3575
  #: modules/callout/callout.php:357 modules/callout/callout.php:377
3576
  msgid "Above Heading"
3577
- msgstr "Sobre el Encabezado"
3578
 
3579
  #: modules/callout/callout.php:358 modules/callout/callout.php:378
3580
  msgid "Below Heading"
3581
- msgstr "Debajo del Encabezado"
3582
 
3583
  #: modules/callout/callout.php:359 modules/callout/callout.php:381
3584
  msgid "Left of Text and Heading"
@@ -3590,11 +3593,11 @@ msgstr "Derecha del Texto y Título"
3590
 
3591
  #: modules/callout/callout.php:379
3592
  msgid "Left of Heading"
3593
- msgstr "Izquierda del Encabezado"
3594
 
3595
  #: modules/callout/callout.php:380
3596
  msgid "Right of Heading"
3597
- msgstr "Derecha del Encabezado"
3598
 
3599
  #: modules/callout/callout.php:388
3600
  msgid "Icon Colors"
@@ -3607,7 +3610,7 @@ msgstr "Color al pasar el puntero"
3607
 
3608
  #: modules/callout/callout.php:428
3609
  msgid "Icon Structure"
3610
- msgstr "Estructura del icono"
3611
 
3612
  #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
3613
  #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
@@ -3618,7 +3621,7 @@ msgstr "Tamaño"
3618
  #: modules/callout/callout.php:443
3619
  #: modules/content-slider/content-slider.php:571
3620
  msgid "Call To Action"
3621
- msgstr "Call To Action"
3622
 
3623
  #: modules/callout/callout.php:451
3624
  msgid ""
@@ -3626,12 +3629,12 @@ msgid ""
3626
  "below, this link will also be used for the text or button."
3627
  msgstr ""
3628
  "El enlace se aplica para todo el módulo. Si eliges una llamada a la acción "
3629
- "debajo, este enlace también se utilizará para el texto o botón."
3630
 
3631
  #: modules/callout/callout.php:471
3632
  #: modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
3633
  msgid "Call to Action"
3634
- msgstr "Call to Action"
3635
 
3636
  #: modules/callout/callout.php:478
3637
  #: modules/content-slider/content-slider.php:600
@@ -3653,7 +3656,7 @@ msgstr "Icono del Botón"
3653
  #: modules/callout/callout.php:505
3654
  #: modules/content-slider/content-slider.php:626
3655
  msgid "Button Icon Position"
3656
- msgstr "Posición Icono del Botón"
3657
 
3658
  #: modules/callout/callout.php:515
3659
  #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
@@ -3665,7 +3668,7 @@ msgstr "Colores del Botón"
3665
  #: modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
3666
  #: modules/subscribe-form/subscribe-form.php:223
3667
  msgid "Button Style"
3668
- msgstr "Estilo de Botón"
3669
 
3670
  #: modules/callout/callout.php:588
3671
  #: modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
@@ -3683,11 +3686,11 @@ msgstr "Formulario de Contacto"
3683
 
3684
  #: modules/contact-form/contact-form.php:15
3685
  msgid "A very simple contact form."
3686
- msgstr "Un formulario de contacto sencillo."
3687
 
3688
  #: modules/contact-form/contact-form.php:31
3689
  msgid "Contact Form Submission"
3690
- msgstr "Formulario de Contacto"
3691
 
3692
  #: modules/contact-form/contact-form.php:41
3693
  msgid "Message"
@@ -3695,7 +3698,7 @@ msgstr "Mensaje"
3695
 
3696
  #: modules/contact-form/contact-form.php:65
3697
  msgid "Send To Email"
3698
- msgstr "Enviar al Correo electrónico"
3699
 
3700
  #: modules/contact-form/contact-form.php:67
3701
  msgid "example@mail.com"
@@ -3708,7 +3711,7 @@ msgstr "El formulario se enviará a este e-mail"
3708
  #: modules/contact-form/contact-form.php:75
3709
  #: modules/subscribe-form/subscribe-form.php:108
3710
  msgid "Name Field"
3711
- msgstr "Nombre de Campo"
3712
 
3713
  #: modules/contact-form/contact-form.php:78
3714
  #: modules/contact-form/contact-form.php:87
@@ -3756,7 +3759,7 @@ msgstr "Ocultar"
3756
 
3757
  #: modules/contact-form/contact-form.php:84
3758
  msgid "Subject Field"
3759
- msgstr "Campo Asunto"
3760
 
3761
  #: modules/contact-form/contact-form.php:93
3762
  msgid "Email Field"
@@ -3764,7 +3767,7 @@ msgstr "Campo de Email"
3764
 
3765
  #: modules/contact-form/contact-form.php:102
3766
  msgid "Phone Field"
3767
- msgstr "Campo Teléfono"
3768
 
3769
  #: modules/contact-form/includes/frontend.php:5
3770
  msgctxt "Contact form field label."
@@ -3774,11 +3777,11 @@ msgstr "Nombre"
3774
  #: modules/contact-form/includes/frontend.php:6
3775
  #: modules/subscribe-form/includes/frontend.php:6
3776
  msgid "Please enter your name."
3777
- msgstr "Por favor introduzca su nombre."
3778
 
3779
  #: modules/contact-form/includes/frontend.php:7
3780
  msgid "Your name"
3781
- msgstr "Su nombre"
3782
 
3783
  #: modules/contact-form/includes/frontend.php:13
3784
  #: modules/contact-form/includes/frontend.php:15
@@ -3787,15 +3790,15 @@ msgstr "Asunto"
3787
 
3788
  #: modules/contact-form/includes/frontend.php:14
3789
  msgid "Please enter a subject."
3790
- msgstr "Introduce un asunto, por favor."
3791
 
3792
  #: modules/contact-form/includes/frontend.php:22
3793
  msgid "Please enter a valid email."
3794
- msgstr "Introduzca un correo electrónico válido."
3795
 
3796
  #: modules/contact-form/includes/frontend.php:23
3797
  msgid "Your email"
3798
- msgstr "Su correo electrónico"
3799
 
3800
  #: modules/contact-form/includes/frontend.php:29
3801
  msgid "Phone"
@@ -3803,7 +3806,7 @@ msgstr "Teléfono"
3803
 
3804
  #: modules/contact-form/includes/frontend.php:30
3805
  msgid "Please enter a valid phone number."
3806
- msgstr "Por favor, introduce un teléfono válido."
3807
 
3808
  #: modules/contact-form/includes/frontend.php:31
3809
  msgid "Your phone"
@@ -3815,11 +3818,11 @@ msgstr "Mensaje"
3815
 
3816
  #: modules/contact-form/includes/frontend.php:37
3817
  msgid "Please enter a message."
3818
- msgstr "Por favor escriba su mensaje."
3819
 
3820
  #: modules/contact-form/includes/frontend.php:38
3821
  msgid "Your message"
3822
- msgstr "Su mensaje"
3823
 
3824
  #: modules/contact-form/includes/frontend.php:43
3825
  msgid "Send"
@@ -3827,11 +3830,11 @@ msgstr "Enviar"
3827
 
3828
  #: modules/contact-form/includes/frontend.php:44
3829
  msgid "Message Sent!"
3830
- msgstr "Mensaje Enviado!"
3831
 
3832
  #: modules/contact-form/includes/frontend.php:45
3833
  msgid "Message failed. Please try again."
3834
- msgstr "Error. Por favor inténtelo de nuevo."
3835
 
3836
  #: modules/content-slider/content-slider.php:14
3837
  msgid "Content Slider"
@@ -3854,8 +3857,8 @@ msgid ""
3854
  "This setting is the minimum height of the content slider. Content will "
3855
  "expand the height automatically."
3856
  msgstr ""
3857
- "Este ajuste es la altura mínima del contenido del slider. El contenido se "
3858
- "expandirá a esta altura de forma automática."
3859
 
3860
  #: modules/content-slider/content-slider.php:207
3861
  #: modules/post-carousel/post-carousel.php:136
@@ -3898,7 +3901,7 @@ msgstr "La anchura máxima que tendrá el área de contenido en las diapositivas
3898
 
3899
  #: modules/content-slider/content-slider.php:290
3900
  msgid "Slides"
3901
- msgstr "Slides (Diapositivas)"
3902
 
3903
  #: modules/content-slider/content-slider.php:297
3904
  #: modules/post-slider/post-slider.php:374
@@ -3911,15 +3914,15 @@ msgstr "Configuración de la Diapositiva"
3911
 
3912
  #: modules/content-slider/content-slider.php:322
3913
  msgid "Slide Label"
3914
- msgstr "Etiqueta Slide"
3915
 
3916
  #: modules/content-slider/content-slider.php:323
3917
  msgid ""
3918
  "A label to identify this slide on the Slides tab of the Content Slider "
3919
  "settings."
3920
  msgstr ""
3921
- "Una etiqueta para identificar esta diapositiva en la ficha diapositivas de "
3922
- "la configuración de contenido Slider."
3923
 
3924
  #: modules/content-slider/content-slider.php:328
3925
  msgid "Background Layout"
@@ -3927,7 +3930,7 @@ msgstr "Diseño de Fondo"
3927
 
3928
  #: modules/content-slider/content-slider.php:334
3929
  msgid "This setting is for the entire background of your slide."
3930
- msgstr "Esta configuración es todo el fondo de la diapositiva."
3931
 
3932
  #: modules/content-slider/content-slider.php:369
3933
  msgid "Background Video Code"
@@ -3935,7 +3938,7 @@ msgstr "Código Video de Fondo"
3935
 
3936
  #: modules/content-slider/content-slider.php:375
3937
  msgid "Content Layout"
3938
- msgstr "Diseño de Contenido"
3939
 
3940
  #: modules/content-slider/content-slider.php:381
3941
  msgid ""
@@ -3962,7 +3965,7 @@ msgstr "Ninguno"
3962
 
3963
  #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
3964
  msgid "Video Embed Code"
3965
- msgstr "Código Inserción Video"
3966
 
3967
  #: modules/content-slider/content-slider.php:469
3968
  msgid "Text Position"
@@ -4020,12 +4023,12 @@ msgstr ""
4020
  #: modules/post-carousel/post-carousel.php:423
4021
  #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:728
4022
  msgid "Text Background Opacity"
4023
- msgstr "Opacidad Texto del Fondo"
4024
 
4025
  #: modules/content-slider/content-slider.php:558
4026
  #: modules/post-slider/post-slider.php:745
4027
  msgid "Text Background Height"
4028
- msgstr "Altura Texto del Fondo"
4029
 
4030
  #: modules/content-slider/content-slider.php:560
4031
  #: modules/post-slider/post-slider.php:747
@@ -4070,7 +4073,7 @@ msgid ""
4070
  "devices or no photo if desired."
4071
  msgstr ""
4072
  "Puedes elegir una foto diferente que cambiará al navegar desde dispositivos "
4073
- "móviles o simplemente no elegir ninguna foto."
4074
 
4075
  #: modules/content-slider/content-slider.php:743
4076
  msgid "Use Main Photo"
@@ -4086,7 +4089,7 @@ msgstr "No hay foto"
4086
 
4087
  #: modules/content-slider/content-slider.php:760
4088
  msgid "Mobile Text Colors"
4089
- msgstr "Colores de Texto Móvil"
4090
 
4091
  #: modules/cta/cta.php:15
4092
  msgid "Display a heading, subheading and a button."
@@ -4094,11 +4097,11 @@ msgstr "Mostrar un título, subtítulo y un botón."
4094
 
4095
  #: modules/cta/cta.php:76
4096
  msgid "Ready to find out more?"
4097
- msgstr "¿Intentando convencerme?"
4098
 
4099
  #: modules/cta/cta.php:91
4100
  msgid "Drop us a line today for a free quote!"
4101
- msgstr "¡Lo haré con este Call to Action!"
4102
 
4103
  #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
4104
  #: modules/menu/menu.php:90 modules/post-carousel/post-carousel.php:117
@@ -4189,9 +4192,9 @@ msgid ""
4189
  "media manager for each image. The caption is also pulled directly from "
4190
  "SmugMug if you have captions set in your gallery."
4191
  msgstr ""
4192
- "La cabecera tira de cualquier texto que haya en el área de título de la "
4193
- "biblioteca de medios para cada imagen. El titulo también se toma "
4194
- "directamente de SmugMug si tienes títulos en tu galería."
4195
 
4196
  #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4197
  msgid "Click Action"
@@ -4212,7 +4215,7 @@ msgstr "Enlace de Foto"
4212
 
4213
  #: modules/heading/heading.php:15
4214
  msgid "Display a title/page heading."
4215
- msgstr "Mostrar un título/encabezado de página."
4216
 
4217
  #: modules/heading/heading.php:101
4218
  msgid "HTML Tag"
@@ -4236,7 +4239,7 @@ msgstr "HTML"
4236
 
4237
  #: modules/html/html.php:15
4238
  msgid "Display raw HTML code."
4239
- msgstr "Mostrar código HTML."
4240
 
4241
  #: modules/icon-group/icon-group.php:14
4242
  msgid "Icon Group"
@@ -4244,7 +4247,7 @@ msgstr "Grupo de Iconos"
4244
 
4245
  #: modules/icon-group/icon-group.php:15
4246
  msgid "Display a group of linked Font Awesome icons."
4247
- msgstr "Muestra un grupo de iconos Font Awesome enlazados."
4248
 
4249
  #: modules/icon-group/icon-group.php:125
4250
  msgid "Add Icon"
@@ -4264,7 +4267,7 @@ msgstr "Mostrar un mapa de Google."
4264
 
4265
  #: modules/map/map.php:33
4266
  msgid "Address"
4267
- msgstr "Dirección"
4268
 
4269
  #: modules/map/map.php:34
4270
  msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
@@ -4277,14 +4280,13 @@ msgstr "Menú"
4277
 
4278
  #: modules/menu/menu.php:15
4279
  msgid "Renders a WordPress menu."
4280
- msgstr "Colocar un menú WordPress."
4281
 
4282
  #: modules/menu/menu.php:25
4283
  msgid ""
4284
  "Select a WordPress menu that you created in the admin under Appearance > "
4285
  "Menus."
4286
- msgstr ""
4287
- "Selecciona un menú WordPress que hayas creado desde Apariencia > Menús."
4288
 
4289
  #: modules/menu/menu.php:42
4290
  msgid "No Menus Found"
@@ -4304,7 +4306,7 @@ msgstr "Expandido"
4304
 
4305
  #: modules/menu/menu.php:112
4306
  msgid "Submenu Icon"
4307
- msgstr "Icono Submenú"
4308
 
4309
  #: modules/menu/menu.php:115 modules/menu/menu.php:125
4310
  msgid "Arrows"
@@ -4320,7 +4322,7 @@ msgstr "Ninguno"
4320
 
4321
  #: modules/menu/menu.php:122
4322
  msgid "Submenu Icon click"
4323
- msgstr "Icono clic del Submenu"
4324
 
4325
  #: modules/menu/menu.php:131
4326
  msgid "Mobile Style"
@@ -4328,11 +4330,11 @@ msgstr "Estilo Móvil"
4328
 
4329
  #: modules/menu/menu.php:135
4330
  msgid "Hamburger Icon"
4331
- msgstr "Icono Hamburguesa"
4332
 
4333
  #: modules/menu/menu.php:136
4334
  msgid "Hamburger Icon + label"
4335
- msgstr "Icono Hamburguesa + etiqueta"
4336
 
4337
  #: modules/menu/menu.php:137
4338
  msgid "Menu Button"
@@ -4340,11 +4342,11 @@ msgstr "Botón de Menú"
4340
 
4341
  #: modules/menu/menu.php:153
4342
  msgid "Menu Alignment"
4343
- msgstr "Alineación Menú"
4344
 
4345
  #: modules/menu/menu.php:164
4346
  msgid "Submenu Drop Shadow"
4347
- msgstr "Sombra Submenú"
4348
 
4349
  #: modules/menu/menu.php:206
4350
  msgid "Link Size"
@@ -4352,7 +4354,7 @@ msgstr "Tamaño del Enlace"
4352
 
4353
  #: modules/menu/menu.php:220
4354
  msgid "Link Format"
4355
- msgstr "Formato del Enlece"
4356
 
4357
  #: modules/menu/menu.php:224
4358
  msgid "Uppercase"
@@ -4400,7 +4402,7 @@ msgstr "Color de Fondo del Menú"
4400
 
4401
  #: modules/menu/menu.php:313 modules/menu/menu.php:331
4402
  msgid "Menu Background Opacity"
4403
- msgstr "Opacidad de Fondo del Menú"
4404
 
4405
  #: modules/menu/menu.php:321
4406
  msgid "Submenu Background Color"
@@ -4408,7 +4410,7 @@ msgstr "Color de Fondo del Submenú"
4408
 
4409
  #: modules/menu/menu.php:340
4410
  msgid "Link Background Hover Color"
4411
- msgstr "Color de Fondo del Enlace on Hover"
4412
 
4413
  #: modules/menu/menu.php:351 modules/separator/separator.php:14
4414
  msgid "Separator"
@@ -4432,7 +4434,7 @@ msgstr "Añadir una foto o mostrar una de la biblioteca."
4432
 
4433
  #: modules/photo/photo.php:391
4434
  msgid "Photo Source"
4435
- msgstr "Origen de la Imagen"
4436
 
4437
  #: modules/photo/photo.php:395 modules/photo/photo.php:467
4438
  msgid "URL"
@@ -4440,7 +4442,7 @@ msgstr "URL"
4440
 
4441
  #: modules/photo/photo.php:412
4442
  msgid "Photo URL"
4443
- msgstr "Foto URL"
4444
 
4445
  #: modules/photo/photo.php:413
4446
  msgid "http://www.example.com/my-photo.jpg"
@@ -4448,7 +4450,7 @@ msgstr "http://www.ejemplo.com/mi-foto.jpg"
4448
 
4449
  #: modules/photo/photo.php:441 modules/photo/photo.php:455
4450
  msgid "Caption"
4451
- msgstr "Encabezado"
4452
 
4453
  #: modules/photo/photo.php:445
4454
  msgid "Show Caption"
@@ -4465,20 +4467,20 @@ msgstr "Ninguno"
4465
 
4466
  #: modules/photo/photo.php:469
4467
  msgid "Photo File"
4468
- msgstr "Foto Archivo"
4469
 
4470
  #: modules/photo/photo.php:480
4471
  msgid ""
4472
  "Link type applies to how the image should be linked on click. You can choose "
4473
  "a specific URL, the individual photo or a separate page with the photo."
4474
  msgstr ""
4475
- "Tipo de enlace se aplica a cómo la imagen debería estar vinculada al hacer "
4476
- "clic. Puede elegir una dirección URL específica, la foto individual o una "
4477
  "página separada con la foto."
4478
 
4479
  #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
4480
  msgid "Link URL"
4481
- msgstr "Enlace URL"
4482
 
4483
  #: modules/post-carousel/includes/post-gallery-loop.php:35
4484
  #: modules/post-carousel/includes/post-grid-loop.php:22
@@ -4496,7 +4498,7 @@ msgstr "Carrusel de Entradas"
4496
 
4497
  #: modules/post-carousel/post-carousel.php:15
4498
  msgid "Display a carousel of your WordPress posts."
4499
- msgstr "Mostrar un carrusel de tus entradas de WordPress."
4500
 
4501
  #: modules/post-carousel/post-carousel.php:110
4502
  #: modules/post-slider/post-slider.php:338
@@ -4539,7 +4541,7 @@ msgstr "Espaciado de la Entrada"
4539
 
4540
  #: modules/post-carousel/post-carousel.php:229
4541
  msgid "Equalize Column Heights"
4542
- msgstr "Ajustar Altura de Columnas"
4543
 
4544
  #: modules/post-carousel/post-carousel.php:238
4545
  msgid "Post Hover Transition"
@@ -4548,12 +4550,12 @@ msgstr "Transición Hover de la Entrada"
4548
  #: modules/post-carousel/post-carousel.php:242
4549
  #: modules/post-grid/post-grid.php:248
4550
  msgid "Slide Up"
4551
- msgstr "Deslizar Arriba"
4552
 
4553
  #: modules/post-carousel/post-carousel.php:243
4554
  #: modules/post-grid/post-grid.php:249
4555
  msgid "Slide Down"
4556
- msgstr "Deslizar Abajo"
4557
 
4558
  #: modules/post-carousel/post-carousel.php:244
4559
  #: modules/post-grid/post-grid.php:250
@@ -4583,7 +4585,7 @@ msgstr "Icono de la Entrada"
4583
  #: modules/post-carousel/post-carousel.php:297
4584
  #: modules/post-grid/post-grid.php:279
4585
  msgid "Post Icon Position"
4586
- msgstr "Posición Icono de la Entrada"
4587
 
4588
  #: modules/post-carousel/post-carousel.php:300
4589
  #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
@@ -4598,7 +4600,7 @@ msgstr "Debajo del Texto"
4598
  #: modules/post-carousel/post-carousel.php:306
4599
  #: modules/post-grid/post-grid.php:288
4600
  msgid "Post Icon Size"
4601
- msgstr "Tamaño Icono de la Entrada"
4602
 
4603
  #: modules/post-carousel/post-carousel.php:315
4604
  #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:495
@@ -4618,12 +4620,12 @@ msgstr "Enlace Más"
4618
  #: modules/post-carousel/post-carousel.php:381
4619
  #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:570
4620
  msgid "More Link Text"
4621
- msgstr "Texto Enlace Más"
4622
 
4623
  #: modules/post-carousel/post-carousel.php:418
4624
  #: modules/post-grid/post-grid.php:307
4625
  msgid "Post Icon Color"
4626
- msgstr "Color Icono de la Entrada"
4627
 
4628
  #: modules/post-grid/includes/frontend.php:41
4629
  msgid "No posts found."
@@ -4631,7 +4633,7 @@ msgstr "No se ha encontrado ninguna entrada."
4631
 
4632
  #: modules/post-grid/post-grid.php:15
4633
  msgid "Display a grid of your WordPress posts."
4634
- msgstr "Motrar una tabla con tus entradas de WordPress"
4635
 
4636
  #: modules/post-grid/post-grid.php:51
4637
  msgid "Layout Style"
@@ -4656,7 +4658,7 @@ msgstr "Ninguna"
4656
 
4657
  #: modules/post-grid/post-grid.php:84
4658
  msgid "Posts Per Page"
4659
- msgstr "Entradas Por Página"
4660
 
4661
  #: modules/post-grid/post-grid.php:95
4662
  msgid "Post Width"
@@ -4680,7 +4682,7 @@ msgstr "Extracto"
4680
 
4681
  #: modules/post-grid/post-grid.php:215
4682
  msgid "Full Text"
4683
- msgstr "Texto completo"
4684
 
4685
  #: modules/post-grid/post-grid.php:244
4686
  msgid "Hover Transition"
@@ -4692,15 +4694,15 @@ msgstr "Slider de Entradas"
4692
 
4693
  #: modules/post-slider/post-slider.php:15
4694
  msgid "Display a slider of your WordPress posts."
4695
- msgstr "Muestra un control deslizante de tus entradas de WordPress."
4696
 
4697
  #: modules/post-slider/post-slider.php:350
4698
  msgid ""
4699
  "This setting is the minimum height of the post slider. Content will expand "
4700
  "the height automatically."
4701
  msgstr ""
4702
- "Este ajuste es la altura mínima del contenido del slider. El contenido se "
4703
- "expandirá a esta altura de forma automática."
4704
 
4705
  #: modules/post-slider/post-slider.php:440
4706
  msgid "Show Featured Image?"
@@ -4732,7 +4734,7 @@ msgstr "Márgenes del Texto"
4732
 
4733
  #: modules/post-slider/post-slider.php:736
4734
  msgid "Text Background Gradient"
4735
- msgstr "Gradiente de Fondo del Texto"
4736
 
4737
  #: modules/pricing-table/pricing-table.php:14
4738
  msgid "Pricing Table"
@@ -4765,15 +4767,15 @@ msgstr "Apretado"
4765
 
4766
  #: modules/pricing-table/pricing-table.php:59
4767
  msgid "Features Min Height"
4768
- msgstr "Altura Mínima Características"
4769
 
4770
  #: modules/pricing-table/pricing-table.php:63
4771
  msgid ""
4772
  "Use this to normalize the height of your boxes when they have different "
4773
  "numbers of features."
4774
  msgstr ""
4775
- "Usa esto para normalizar la altura de las cajas cuando tienen diferente "
4776
- "número de características."
4777
 
4778
  #: modules/pricing-table/pricing-table.php:70
4779
  msgctxt "Border size."
@@ -4791,11 +4793,11 @@ msgstr "Añadir Caja de Precios"
4791
 
4792
  #: modules/pricing-table/pricing-table.php:98
4793
  msgid "Title Size"
4794
- msgstr "Tamaño de Título"
4795
 
4796
  #: modules/pricing-table/pricing-table.php:107
4797
  msgid "Price Box"
4798
- msgstr "Precio"
4799
 
4800
  #: modules/pricing-table/pricing-table.php:111
4801
  #: modules/woocommerce/woocommerce.php:190
@@ -4846,7 +4848,7 @@ msgstr "Color Destacado"
4846
 
4847
  #: modules/pricing-table/pricing-table.php:178
4848
  msgid "Accent Text Color"
4849
- msgstr "Color Texto Destacado"
4850
 
4851
  #: modules/pricing-table/pricing-table.php:182
4852
  msgid "Box Top Margin"
@@ -4876,13 +4878,11 @@ msgstr "Barra Lateral"
4876
  #: modules/sidebar/sidebar.php:15
4877
  msgid ""
4878
  "Display a WordPress sidebar that has been registered by the current theme."
4879
- msgstr ""
4880
- "Muestra una barra lateral de WordPress que ha sido registrada por el tema "
4881
- "actual."
4882
 
4883
  #: modules/slideshow/slideshow.php:14
4884
  msgid "Slideshow"
4885
- msgstr "Slideshow"
4886
 
4887
  #: modules/slideshow/slideshow.php:15
4888
  msgid "Display multiple photos in a slideshow view."
@@ -4917,10 +4917,11 @@ msgid ""
4917
  "images to all sides of the content area while cropping the left and right to "
4918
  "fit the height you specify."
4919
  msgstr ""
4920
- "Recortar configurado a No, ajustará las imágenes a la altura especificada y "
4921
- "mantendrá la anchura proporcional, mientras que recortar configurado a Sí, "
4922
- "ajustará las imágenes a todos los lados del área de contenido, cortando a "
4923
- "izquierda y derecha para adecuarlas a la altura que has especificado."
 
4924
 
4925
  #: modules/slideshow/slideshow.php:330
4926
  msgid "Disable Right-Click"
@@ -4956,8 +4957,8 @@ msgid ""
4956
  msgstr ""
4957
  "Las flechas de navegación permiten al usuario moverse libremente a través de "
4958
  "las imágenes en la presentación. Son las flechas más grandes que están "
4959
- "superpuestas a las imágenes y están separados de las flechas de control de "
4960
- "navegación."
4961
 
4962
  #: modules/slideshow/slideshow.php:455
4963
  msgid "Control Bar"
@@ -4982,19 +4983,19 @@ msgstr "Miniaturas"
4982
 
4983
  #: modules/slideshow/slideshow.php:479
4984
  msgid "Nav Position"
4985
- msgstr "Posición Navegación"
4986
 
4987
  #: modules/slideshow/slideshow.php:489
4988
  msgid "Control Bar Buttons"
4989
- msgstr "Botones Barra de Control"
4990
 
4991
  #: modules/slideshow/slideshow.php:502
4992
  msgid "Play Button"
4993
- msgstr "Botón Play"
4994
 
4995
  #: modules/slideshow/slideshow.php:511
4996
  msgid "Fullscreen Button"
4997
- msgstr "Botón Pantalla Completa"
4998
 
4999
  #: modules/slideshow/slideshow.php:520
5000
  msgid "Photo Count"
@@ -5002,11 +5003,11 @@ msgstr "Contador de Fotos"
5002
 
5003
  #: modules/slideshow/slideshow.php:529
5004
  msgid "Thumbs Button"
5005
- msgstr "Botón Miniaturas"
5006
 
5007
  #: modules/slideshow/slideshow.php:538
5008
  msgid "Caption Button"
5009
- msgstr "Botón Caption"
5010
 
5011
  #: modules/slideshow/slideshow.php:547
5012
  msgid "Social Button"
@@ -5014,7 +5015,7 @@ msgstr "Botón Social"
5014
 
5015
  #: modules/slideshow/slideshow.php:557
5016
  msgid "Control Bar Overlay"
5017
- msgstr "Barra de Control de Superposición"
5018
 
5019
  #: modules/slideshow/slideshow.php:561
5020
  msgid "Overlay Enabled"
@@ -5025,7 +5026,7 @@ msgid ""
5025
  "Control bar overlay specifies if the control bar buttons you choose overlay "
5026
  "your slideshow images or site below the slideshow completely."
5027
  msgstr ""
5028
- "La Barra de Control de Superposición especifica si los botones de la barra "
5029
  "de control han de estar superpuestos a la imagen o si han de aparecer por "
5030
  "debajo de la presentación de las imágenes."
5031
 
@@ -5038,12 +5039,12 @@ msgid ""
5038
  "Overlay hide will hide the control bar after however many seconds you "
5039
  "specify below. They will reappear upon mouse over."
5040
  msgstr ""
5041
- "Superponer ocultará la barra de control tras los segundos que hayas "
5042
- "especificado aquí abajo. Volverá a aparecer el pasar el ratón por encima."
5043
 
5044
  #: modules/slideshow/slideshow.php:586
5045
  msgid "Overlay Hide Delay"
5046
- msgstr "Retardo Ocultar Superposición"
5047
 
5048
  #: modules/slideshow/slideshow.php:598
5049
  msgid "Thumbs Size"
@@ -5067,7 +5068,7 @@ msgstr "Botón de Google Plus"
5067
 
5068
  #: modules/slideshow/slideshow.php:647
5069
  msgid "Pinterest Button"
5070
- msgstr "Botón Pinterest"
5071
 
5072
  #: modules/social-buttons/social-buttons.php:14
5073
  msgid "Social Buttons"
@@ -5075,7 +5076,7 @@ msgstr "Botones Sociales"
5075
 
5076
  #: modules/social-buttons/social-buttons.php:15
5077
  msgid "Displays social buttons."
5078
- msgstr "Muestra Botones Sociales."
5079
 
5080
  #: modules/social-buttons/social-buttons.php:71
5081
  msgid "Target URL"
@@ -5091,10 +5092,9 @@ msgid ""
5091
  "to interface with. For example, if you show Facebook, the user will \"Like\" "
5092
  "whatever you put in this field."
5093
  msgstr ""
5094
- "El campo de dirección URL de destino se correlaciona con la página con la "
5095
- "que deseas que tus iconos sociales que interactúen. Por ejemplo, si muestras "
5096
- "Facebook, el usuario hará un \"Me gusta\" a lo que sea que hayas puesto en "
5097
- "este campo."
5098
 
5099
  #: modules/social-buttons/social-buttons.php:89
5100
  msgid "Custom URL"
@@ -5119,7 +5119,7 @@ msgstr "Nombre"
5119
 
5120
  #: modules/subscribe-form/includes/frontend.php:12
5121
  msgid "Please enter a valid email address."
5122
- msgstr "Por favor, introduce una dirección de email válida."
5123
 
5124
  #: modules/subscribe-form/includes/frontend.php:41
5125
  msgid "Something went wrong. Please check your entries and try again."
@@ -5127,11 +5127,11 @@ msgstr "Algo salió mal. Por favor revisa las entradas e inténtalo de nuevo."
5127
 
5128
  #: modules/subscribe-form/subscribe-form.php:18
5129
  msgid "Subscribe Form"
5130
- msgstr "Formulario de suscripción"
5131
 
5132
  #: modules/subscribe-form/subscribe-form.php:19
5133
  msgid "Adds a simple subscribe form to your layout."
5134
- msgstr "Añade un formulario simple de suscripción a tu diseño."
5135
 
5136
  #: modules/subscribe-form/subscribe-form.php:118
5137
  msgid "Success"
@@ -5139,11 +5139,11 @@ msgstr "Éxito"
5139
 
5140
  #: modules/subscribe-form/subscribe-form.php:122
5141
  msgid "Success Action"
5142
- msgstr "Acción de éxito"
5143
 
5144
  #: modules/subscribe-form/subscribe-form.php:124
5145
  msgid "Show Message"
5146
- msgstr "Mostrar mensaje"
5147
 
5148
  #: modules/subscribe-form/subscribe-form.php:125
5149
  msgid "Redirect"
@@ -5158,7 +5158,7 @@ msgstr ""
5158
 
5159
  #: modules/subscribe-form/subscribe-form.php:151
5160
  msgid "Success URL"
5161
- msgstr "URL Éxito"
5162
 
5163
  #: modules/subscribe-form/subscribe-form.php:169
5164
  msgid "Subscribe!"
@@ -5180,7 +5180,7 @@ msgstr "Testimonios"
5180
 
5181
  #: modules/testimonials/testimonials.php:15
5182
  msgid "An animated tesimonials area."
5183
- msgstr "Área de Testimonios Animada"
5184
 
5185
  #: modules/testimonials/testimonials.php:41
5186
  msgid "Compact"
@@ -5213,7 +5213,7 @@ msgstr "Agregar Testimonio"
5213
 
5214
  #: modules/video/video.php:20
5215
  msgid "Render a WordPress or embedable video."
5216
- msgstr "Reproducir un video WordPress o un video incrustado."
5217
 
5218
  #: modules/video/video.php:83
5219
  msgid "Video Type"
@@ -5241,7 +5241,7 @@ msgstr "Widget"
5241
 
5242
  #: modules/widget/widget.php:15
5243
  msgid "Display a WordPress widget."
5244
- msgstr "Mostrar un widget de WordPress."
5245
 
5246
  #: modules/woocommerce/woocommerce.php:16
5247
  msgid "WooCommerce"
@@ -5258,11 +5258,11 @@ msgstr "Producto Simple"
5258
  #: modules/woocommerce/woocommerce.php:62
5259
  #: modules/woocommerce/woocommerce.php:113
5260
  msgid "Multiple Products"
5261
- msgstr "Producto Múltiple"
5262
 
5263
  #: modules/woocommerce/woocommerce.php:63
5264
  msgid "\"Add to Cart\" Button"
5265
- msgstr "Botón \"Añadir al Carrito\""
5266
 
5267
  #: modules/woocommerce/woocommerce.php:64
5268
  msgid "Categories"
@@ -5295,8 +5295,8 @@ msgid ""
5295
  "area and rolling over the product. The unique ID will be the first attribute."
5296
  msgstr ""
5297
  "Al agregar productos en el área de productos de WooCommerce, a cada uno se "
5298
- "le asignará un ID. Estos ID se encuentran en el área Productos situándose "
5299
- "sobre el producto. El ID único será el primer atributo."
5300
 
5301
  #: modules/woocommerce/woocommerce.php:94
5302
  msgid "Parent Category ID"
@@ -5341,7 +5341,7 @@ msgstr "Productos Destacados"
5341
 
5342
  #: modules/woocommerce/woocommerce.php:124
5343
  msgid "Sale Products"
5344
- msgstr "Productos en Venta"
5345
 
5346
  #: modules/woocommerce/woocommerce.php:125
5347
  msgid "Best Selling Products"
@@ -5353,7 +5353,7 @@ msgstr "Productos Mejor Valorados"
5353
 
5354
  #: modules/woocommerce/woocommerce.php:154
5355
  msgid "Product IDs"
5356
- msgstr "IDs de producto"
5357
 
5358
  #: modules/woocommerce/woocommerce.php:156
5359
  msgid ""
@@ -5369,7 +5369,7 @@ msgstr ""
5369
 
5370
  #: modules/woocommerce/woocommerce.php:160
5371
  msgid "Category Slug"
5372
- msgstr "Categoría Slug"
5373
 
5374
  #: modules/woocommerce/woocommerce.php:162
5375
  msgid ""
@@ -5406,7 +5406,7 @@ msgstr "Puntuación"
5406
 
5407
  #: modules/woocommerce/woocommerce.php:195
5408
  msgid "Sort Direction"
5409
- msgstr "Dirección para ordenar"
5410
 
5411
  #~ msgctxt "Duplicate page/post action label."
5412
  #~ msgid "Duplicate"
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-08-31 09:36-0700\n"
6
+ "PO-Revision-Date: 2016-02-03 16:17-0600\n"
7
  "Last-Translator: Roberto Porcar <rporcar@arrakis.es>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
104
 
105
  #: classes/class-fl-builder-admin-settings.php:638
106
  msgid "Error! You must have at least one feature of the help button enabled."
107
+ msgstr "¡Error! Debes tener al menos una opción del botón ayuda habilitada."
 
108
 
109
  #: classes/class-fl-builder-admin.php:45
110
  #, php-format
214
  #: classes/class-fl-builder-photo.php:100
215
  msgctxt "Image size."
216
  msgid "Full Size"
217
+ msgstr "Tamaño Completo"
218
 
219
  #: classes/class-fl-builder-photo.php:101
220
  msgctxt "Image size."
327
 
328
  #: classes/class-fl-builder-service-aweber.php:72
329
  msgid "Error: You must provide an Authorization Code."
330
+ msgstr "Error: Debes proporcionar un código de autorización."
331
 
332
  #: classes/class-fl-builder-service-aweber.php:76
333
  msgid "Error: Please enter a valid Authorization Code."
334
+ msgstr "Error: Por favor, introduce un código de autorización válido."
335
 
336
  #: classes/class-fl-builder-service-aweber.php:127
337
  msgid "Authorization Code"
338
+ msgstr "Código de Autorización"
339
 
340
  #: classes/class-fl-builder-service-aweber.php:128
341
  #, php-format
349
  #: classes/class-fl-builder-service-aweber.php:219
350
  msgid ""
351
  "There was an error subscribing to AWeber. The account is no longer connected."
352
+ msgstr "Hubo un error al suscribirse a AWeber. La cuenta ya no está conectada."
353
 
354
  #: classes/class-fl-builder-service-aweber.php:242
355
  msgid "There was an error connecting to AWeber. Please try again."
373
  "Your API key can be found in your Campaign Monitor account under Account "
374
  "Settings > API Key."
375
  msgstr ""
376
+ "La clave API puede encontrarse en tu cuenta Campaign Monitor bajo Account "
377
+ "Settings > API Key."
378
 
379
  #: classes/class-fl-builder-service-campaign-monitor.php:158
380
  msgctxt "A client account in Campaign Monitor."
386
  "There was an error subscribing to Campaign Monitor. The account is no longer "
387
  "connected."
388
  msgstr ""
389
+ "Hubo un error al suscribirse a Campaign Monitor. La cuenta ya no está "
390
+ "conectada."
391
 
392
  #: classes/class-fl-builder-service-campaign-monitor.php:253
393
  msgid "There was an error subscribing to Campaign Monitor."
405
 
406
  #: classes/class-fl-builder-service-constant-contact.php:89
407
  msgid "Your Constant Contact API key."
408
+ msgstr "Tu API key de Constant Contact."
409
 
410
  #: classes/class-fl-builder-service-constant-contact.php:99
411
  msgid "Access Token"
412
+ msgstr "Token de Acceso"
413
 
414
  #: classes/class-fl-builder-service-constant-contact.php:100
415
  msgid "Your Constant Contact access token."
416
+ msgstr "El token de acceso de Constant Contact."
417
 
418
  #: classes/class-fl-builder-service-constant-contact.php:101
419
  #, php-format
512
  msgid ""
513
  "There was an error subscribing to Hatchbuck. The account is no longer "
514
  "connected."
515
+ msgstr ""
516
+ "Hubo un error al suscribirse a Hatchbuck. La cuenta ya no está conectada."
517
 
518
  #: classes/class-fl-builder-service-hatchbuck.php:190
519
  msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
520
+ msgstr "Hubo un error al suscribirse a Hatchbuck. La API key no es válida."
521
 
522
  #: classes/class-fl-builder-service-hatchbuck.php:200
523
  #: classes/class-fl-builder-service-hatchbuck.php:232
524
  msgid "There was an error subscribing to Hatchbuck."
525
+ msgstr "Hubo un error al suscribirse a Hatchbuck."
526
 
527
  #: classes/class-fl-builder-service-icontact.php:75
528
  msgid "Error: You must provide a username."
548
 
549
  #: classes/class-fl-builder-service-icontact.php:126
550
  msgid "Your iContact username."
551
+ msgstr "Su nombre de usuario de iContact."
552
 
553
  #: classes/class-fl-builder-service-icontact.php:136
554
  #: classes/class-fl-builder-service-infusionsoft.php:118
581
  msgid ""
582
  "There was an error subscribing to iContact. The account is no longer "
583
  "connected."
584
+ msgstr ""
585
+ "Hubo un error al suscribirse a iContact. La cuenta ya no está conectada."
586
 
587
  #: classes/class-fl-builder-service-icontact.php:280
588
  #, php-format
589
  msgid "There was an error subscribing to iContact. %s"
590
+ msgstr "Hubo un error al suscribirse a iContact. %s"
591
 
592
  #: classes/class-fl-builder-service-infusionsoft.php:49
593
  #, php-format
641
  "Your API key can be found in your Mad Mimi account under Account > Settings "
642
  "&amp; Billing > API."
643
  msgstr ""
644
+ "Puedes encontrar tu clave API en tu cuenta Mad Mimi en Account > Settings "
645
  "&amp; Billing > API."
646
 
647
  #: classes/class-fl-builder-service-madmimi.php:156
668
 
669
  #: classes/class-fl-builder-service-mailchimp.php:215
670
  msgid "No Group"
671
+ msgstr "Sin Grupo"
672
 
673
  #: classes/class-fl-builder-service-mailchimp.php:227
674
  msgctxt "MailChimp list group."
712
 
713
  #: classes/class-fl-builder-service-sendinblue.php:103
714
  msgid "Access Key"
715
+ msgstr "Access Key"
716
 
717
  #: classes/class-fl-builder-service-sendinblue.php:104
718
  msgid ""
777
 
778
  #: classes/class-fl-builder-services.php:295
779
  msgid "Add Account..."
780
+ msgstr "Añadir Cuenta..."
781
 
782
  #: classes/class-fl-builder-services.php:302
783
  msgid "Account"
789
 
790
  #: classes/class-fl-builder-templates-override.php:49
791
  msgid "Error! Please enter a number for the site ID."
792
+ msgstr "¡Error! Por favor, introduce un número para la ID del sitio."
793
 
794
  #: classes/class-fl-builder-templates-override.php:53
795
  msgid "Error! A site with that ID doesn't exist."
802
 
803
  #: classes/class-fl-builder.php:652
804
  msgid "Upgrade!"
805
+ msgstr "¡Actualizar!"
806
 
807
  #: classes/class-fl-builder.php:656
808
  msgid "Buy Now!"
809
+ msgstr "¡Comprar Ahora!"
810
 
811
  #: classes/class-fl-builder.php:660 includes/ui-js-config.php:36
812
  #: includes/ui-js-templates.php:100
875
  #: classes/class-fl-builder.php:1137
876
  msgctxt "Custom post type label."
877
  msgid "Parent Templates:"
878
+ msgstr "Plantillas Padre:"
879
 
880
  #: classes/class-fl-builder.php:1138
881
  msgctxt "Custom post type label."
910
  #: classes/class-fl-builder.php:1157
911
  msgctxt "Custom taxonomy label."
912
  msgid "Parent Category"
913
+ msgstr "Categoría Padre"
914
 
915
  #: classes/class-fl-builder.php:1158
916
  msgctxt "Custom taxonomy label."
917
  msgid "Parent Category:"
918
+ msgstr "Categoría Padre:"
919
 
920
  #: classes/class-fl-builder.php:1159
921
  msgctxt "Custom taxonomy label."
1033
 
1034
  #: includes/admin-settings-editing.php:3
1035
  msgid "Editing Settings"
1036
+ msgstr "Editar Configuración"
1037
 
1038
  #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
1039
  #: includes/admin-settings-modules.php:10
1057
 
1058
  #: includes/admin-settings-editing.php:21
1059
  msgid "Global Templates Editing Capability"
1060
+ msgstr "Capacidad de Edición de Plantillas Globales"
1061
 
1062
  #: includes/admin-settings-editing.php:22
1063
  #, php-format
1096
 
1097
  #: includes/admin-settings-help-button.php:39
1098
  msgid "Help Video Embed Code"
1099
+ msgstr "Código de Inserción del Vídeo de Ayuda"
1100
 
1101
  #: includes/admin-settings-help-button.php:45
1102
  msgid "Knowledge Base"
1103
+ msgstr "Base de Conocimiento"
1104
 
1105
  #: includes/admin-settings-help-button.php:49
1106
  msgid "Enable Knowledge Base"
1107
+ msgstr "Habilitar la Base de Conocimiento"
1108
 
1109
  #: includes/admin-settings-help-button.php:53
1110
  msgid "Knowledge Base URL"
1111
+ msgstr "URL Base de Conocimiento"
1112
 
1113
  #: includes/admin-settings-help-button.php:59
1114
  msgid "Forums"
1172
 
1173
  #: includes/admin-settings-modules.php:3
1174
  msgid "Enabled Modules"
1175
+ msgstr "Módulos Habilitados"
1176
 
1177
  #: includes/admin-settings-modules.php:16
1178
  msgid "Check or uncheck modules below to enable or disable them."
1179
  msgstr ""
1180
+ "Selecciona las siguientes opciones para activar o desactivar los módulos."
 
1181
 
1182
  #: includes/admin-settings-modules.php:26
1183
  msgctxt "Plugin setup page: Modules."
1193
  "Enter a comma separated list of the post types you would like the builder to "
1194
  "work with."
1195
  msgstr ""
1196
+ "Introduce una lista separada por comas de los tipos de entrada con los que "
1197
+ "quieres que el editor funcione."
1198
 
1199
  #: includes/admin-settings-post-types.php:19
1200
  #: includes/admin-settings-post-types.php:39
1208
 
1209
  #: includes/admin-settings-post-types.php:38
1210
  msgid "Select the post types you would like the builder to work with."
1211
+ msgstr ""
1212
+ "Selecciona los tipos de entrada con los que quieres que el editor funcione."
1213
 
1214
  #: includes/admin-settings-post-types.php:70
1215
  msgid "Save Post Types"
1218
  #: includes/admin-settings-templates-override.php:1
1219
  #: includes/admin-settings-templates-override.php:12
1220
  msgid "Override Core Templates"
1221
+ msgstr "Reemplazar Plantillas Originales"
1222
 
1223
  #: includes/admin-settings-templates-override.php:3
1224
  msgid ""
1226
  "builder templates. Leave this field blank if you do not wish to override "
1227
  "core templates."
1228
  msgstr ""
1229
+ "Introduce el ID del sitio en la red cuyas plantillas deben reemplazar las "
1230
+ "plantillas originales. Deja este campo en blanco si no deseas sobreescribir "
1231
+ "las plantillas base."
1232
 
1233
  #: includes/admin-settings-templates-override.php:8
1234
  msgid ""
1235
  "Use this setting to override core builder templates with your templates."
1236
  msgstr ""
1237
+ "Usa esta opción para sobreescribir las plantillas originales con tus propias "
1238
  "plantillas."
1239
 
1240
  #: includes/admin-settings-templates-override.php:17
1249
 
1250
  #: includes/admin-settings-templates-override.php:21
1251
  msgid "Show Row Templates?"
1252
+ msgstr "¿Mostrar Plantillas de Fila?"
1253
 
1254
  #: includes/admin-settings-templates-override.php:27
1255
  msgid "Show Module Templates?"
1256
+ msgstr "¿Mostrar Plantillas de Módulo?"
1257
 
1258
  #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1259
  msgid "Template Settings"
1268
  "Use this setting to enable or disable templates in the builder interface."
1269
  msgstr ""
1270
  "Usa esta opción para activar o desactivar las plantillas en las opciones del "
1271
+ "editor."
1272
 
1273
  #: includes/admin-settings-templates.php:25
1274
  msgid "Enable All Templates"
1276
 
1277
  #: includes/admin-settings-templates.php:26
1278
  msgid "Enable Core Templates Only"
1279
+ msgstr "Habilitar Sólo Plantillas Originales"
1280
 
1281
  #: includes/admin-settings-templates.php:27
1282
  msgid "Enable User Templates Only"
1283
+ msgstr "Habilitar Sólo Plantillas del Usuario"
1284
 
1285
  #: includes/admin-settings-templates.php:28
1286
  msgid "Disable All Templates"
1289
  #: includes/admin-settings-templates.php:31
1290
  #: includes/admin-settings-templates.php:36
1291
  msgid "Enable Templates Admin"
1292
+ msgstr "Habilitar Admin de Plantillas"
1293
 
1294
  #: includes/admin-settings-templates.php:32
1295
  msgid "Use this setting to edit builder templates in the WordPress admin."
1466
  #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1467
  msgctxt "Templates category label."
1468
  msgid "Company Info"
1469
+ msgstr "Datos de la Empresa"
1470
 
1471
  #: includes/admin-templates-edit.php:40
1472
  msgid "Update Template"
1473
+ msgstr "Actualizar Plantilla"
1474
 
1475
  #: includes/admin-templates.php:3
1476
  msgid "Page Builder Template"
1529
 
1530
  #: includes/column-settings.php:14
1531
  msgid "Column Width"
1532
+ msgstr "Ancho de Columna"
1533
 
1534
  #: includes/column-settings.php:26 modules/button/button.php:66
1535
  #: modules/callout/callout.php:226 modules/callout/callout.php:479
1560
  #: modules/menu/menu.php:196 modules/post-carousel/post-carousel.php:406
1561
  #: modules/post-slider/post-slider.php:715
1562
  msgid "Link Hover Color"
1563
+ msgstr "Color del Enlace en Hover"
1564
 
1565
  #: includes/column-settings.php:54 includes/row-settings.php:76
1566
  msgid "Heading Color"
1735
  "background if fill is selected in the scale setting."
1736
  msgstr ""
1737
  "Anexar Fondo especifica como se comporta la imagen cuando se hace scroll en "
1738
+ "la página. Si se ha seleccionado scroll, la imagen hará scroll junto con la "
1739
+ "página. Es la opción por defecto. Fijo permitirá a la imagen hacer scroll "
1740
+ "con el fondo si la opción Relleno se ha seleccionado en la configuración de "
1741
+ "Escala."
1742
 
1743
  #: includes/column-settings.php:172 includes/row-settings.php:212
1744
  msgid "Scale"
1745
+ msgstr "Escala"
1746
 
1747
  #: includes/column-settings.php:175 includes/row-settings.php:215
1748
  msgctxt "Background scale."
1767
 
1768
  #: includes/column-settings.php:187 includes/row-settings.php:366
1769
  msgid "Background Overlay"
1770
+ msgstr "Superposición de Fondo"
1771
 
1772
  #: includes/column-settings.php:191 includes/row-settings.php:370
1773
  msgid "Overlay Color"
1892
  #: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
1893
  #: modules/subscribe-form/subscribe-form.php:273
1894
  msgid "Padding"
1895
+ msgstr "Márgenes Internos / Padding"
1896
 
1897
  #: includes/column-settings.php:427 includes/global-settings.php:103
1898
  #: includes/module-settings.php:62 includes/row-settings.php:606
1937
  #: includes/column-settings.php:440
1938
  msgid "Choose whether to show or hide this column at different device sizes."
1939
  msgstr ""
1940
+ "Elige si deseas mostrar u ocultar esta columna en los diferentes tamaños de "
1941
+ "pantalla."
1942
 
1943
  #: includes/column-settings.php:447
1944
  msgid "Medium Device Width"
1945
+ msgstr "Anchura en dispositivos de tamaño mediano"
1946
 
1947
  #: includes/column-settings.php:448
1948
  msgid "The width of this column on medium devices such as tablets."
1969
 
1970
  #: includes/column-settings.php:464
1971
  msgid "Custom Medium Device Width"
1972
+ msgstr "Personalizar anchura en dispositivos de tamaño mediano"
1973
 
1974
  #: includes/column-settings.php:475
1975
  msgid "Small Device Width"
1976
+ msgstr "Anchura en dispositivos de tamaño pequeño"
1977
 
1978
  #: includes/column-settings.php:476
1979
  msgid "The width of this column on small devices such as phones."
1982
 
1983
  #: includes/column-settings.php:492
1984
  msgid "Custom Small Device Width"
1985
+ msgstr "Personalizar anchura en dispositivos de tamaño pequeño"
1986
 
1987
  #: includes/column-settings.php:504 includes/module-settings.php:115
1988
  #: includes/row-settings.php:627
2083
 
2084
  #: includes/field-video.php:17
2085
  msgid "Replace Video"
2086
+ msgstr "Reemplazar Video"
2087
 
2088
  #: includes/global-settings.php:7 includes/node-template-settings.php:7
2089
  #: includes/template-settings.php:7 includes/user-template-settings.php:7
2111
 
2112
  #: includes/global-settings.php:11
2113
  msgid "Default Page Heading"
2114
+ msgstr "Título de Página Predeterminado"
2115
 
2116
  #: includes/global-settings.php:15
2117
  msgctxt ""
2125
  "You will also be required to enter some basic CSS for this to work if you "
2126
  "choose no."
2127
  msgstr ""
2128
+ "Elegir \"No\" ocultará el título por defecto para las \"Página\". "
2129
+ "Necesitarás algo de CSS básico para que esto funcione si eliges no."
 
2130
 
2131
  #: includes/global-settings.php:30
2132
  msgid "CSS Selector"
2179
  "General settings form field label. Intended meaning: \"Enable auto spacing "
2180
  "for responsive layouts?\""
2181
  msgid "Enable Auto Spacing"
2182
+ msgstr "Habilitar Auto Espaciado"
2183
 
2184
  #: includes/global-settings.php:127
2185
  msgid ""
2187
  "margins and padding in your layout once the small device breakpoint is "
2188
  "reached. Most users will want to leave this enabled."
2189
  msgstr ""
2190
+ "Cuando el Auto Espaciado está habilitado, el editor ajustará automáticamente "
2191
+ "los márgenes externos e internos del diseño una vez se alcance el punto de "
2192
+ "quiebre de dispositivos pequeños. La mayoría de usuarios querrán dejar esto "
2193
  "habilitado."
2194
 
2195
  #: includes/global-settings.php:131
2196
  msgid "Medium Device Breakpoint"
2197
+ msgstr "Punto de Ruptura para Dispositivos de Tamaño Medio"
2198
 
2199
  #: includes/global-settings.php:136
2200
  msgid ""
2206
 
2207
  #: includes/global-settings.php:140
2208
  msgid "Small Device Breakpoint"
2209
+ msgstr "Punto de Ruptura para Dispositivos de Tamaño Pequeño"
2210
 
2211
  #: includes/global-settings.php:145
2212
  msgid ""
2315
  #: includes/module-settings.php:75
2316
  msgid "Choose whether to show or hide this module at different device sizes."
2317
  msgstr ""
2318
+ "Elige si deseas mostrar u ocultar este módulo en los diferentes tamaños de "
2319
+ "pantalla."
2320
 
2321
  #: includes/module-settings.php:83
2322
  msgid "Animation"
2335
  #: includes/module-settings.php:91
2336
  msgctxt "Animation style."
2337
  msgid "Slide Left"
2338
+ msgstr "Deslizar Hacia la Izquierda"
2339
 
2340
  #: includes/module-settings.php:92
2341
  msgctxt "Animation style."
2342
  msgid "Slide Right"
2343
+ msgstr "Deslizar Hacia la Derecha"
2344
 
2345
  #: includes/module-settings.php:93
2346
  msgctxt "Animation style."
2347
  msgid "Slide Up"
2348
+ msgstr "Deslizar Hacia Arriba"
2349
 
2350
  #: includes/module-settings.php:94
2351
  msgctxt "Animation style."
2352
  msgid "Slide Down"
2353
+ msgstr "Deslizar Hacia Abajo"
2354
 
2355
  #: includes/module-settings.php:102
2356
  #: modules/content-slider/content-slider.php:230
2423
  "Global templates can be added to multiple pages and edited in one place."
2424
  msgstr ""
2425
  "Las plantillas globales se pueden añadir en múltiples páginas y editarse en "
2426
+ "un solo lugar."
2427
 
2428
  #: includes/row-settings.php:6 includes/ui-js-config.php:67
2429
  #: includes/ui-js-templates.php:12
2441
  "no wider than the Row Max Width set in the Global Settings."
2442
  msgstr ""
2443
  "Las filas de anchura completa abarcan todo el ancho de la página de lado a "
2444
+ "lado. Las filas fijas utilizan la Anchura Máxima de la Fila establecida en "
2445
+ "la Configuración Global."
2446
 
2447
  #: includes/row-settings.php:34
2448
  msgid "Content Width"
2453
  "Full width content spans the width of the page from edge to edge. Fixed "
2454
  "content is no wider than the Row Max Width set in the Global Settings."
2455
  msgstr ""
2456
+ "Los contenidos de anchura completa abarcan todo el ancho de la página de "
2457
+ "lado a lado. El contenido fijo utiliza la Anchura Máxima de la Fila "
2458
  "establecida en la Configuración Global."
2459
 
2460
  #: includes/row-settings.php:48 modules/button/button.php:120
2480
  #: includes/row-settings.php:95
2481
  msgctxt "Background type."
2482
  msgid "Video"
2483
+ msgstr "Video"
2484
 
2485
  #: includes/row-settings.php:97
2486
  msgctxt "Background type."
2499
  #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
2500
  #: modules/video/video.php:19 modules/video/video.php:100
2501
  msgid "Video"
2502
+ msgstr "Video"
2503
 
2504
  #: includes/row-settings.php:232
2505
  msgid ""
2506
  "An HTML5 video to use as the background of this row. Supported types are "
2507
  "MP4, WebM and Ogg."
2508
  msgstr ""
2509
+ "Un video HTML5 para utilizar como fondo de esta fila. Los tipos soportados "
2510
  "son MP4, WebM y Ogg."
2511
 
2512
  #: includes/row-settings.php:239
2539
  "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
2540
  "accessed by using the get a link function in your SmugMug gallery."
2541
  msgstr ""
2542
+ "Sacar imágenes de tu biblioteca o de una galería en tu sitio SmugMug "
2543
+ "insertando la URL del feed RSS de SmugMug. A esta dirección se puede acceder "
2544
+ "desde la función obtener enlace en tu galería SmugMug."
2545
 
2546
  #: includes/row-settings.php:273 modules/gallery/gallery.php:259
2547
  #: modules/slideshow/slideshow.php:289
2644
  #: includes/row-settings.php:619
2645
  msgid "Choose whether to show or hide this row at different device sizes."
2646
  msgstr ""
2647
+ "Elige si deseas mostrar u ocultar esta fila en los diferentes tamaños de "
2648
+ "pantalla."
2649
 
2650
  #: includes/row-settings.php:632
2651
  msgid ""
2700
 
2701
  #: includes/template-settings.php:18
2702
  msgid "Image Filename"
2703
+ msgstr "Nombre del archivo de imagen"
2704
 
2705
  #: includes/template-settings.php:19
2706
  msgid ""
2723
  "Warning! Changing the template will replace your existing layout. Do you "
2724
  "really want to do this?"
2725
  msgstr ""
2726
+ "¡Advertencia! Cambiar plantilla reemplazará tu diseño actual. ¿Quieres hacer "
2727
+ "esto?"
2728
 
2729
  #: includes/ui-js-config.php:25 includes/ui-js-templates.php:29
2730
  msgid "Column"
2746
  "Are you sure you want to remove this account? Other modules that are "
2747
  "connected to it will be affected."
2748
  msgstr ""
2749
+ "¿Estás seguro que deseas eliminar esta cuenta? Se verán afectados los demás "
2750
+ "módulos que estén relacionados con ésta."
2751
 
2752
  #: includes/ui-js-config.php:29
2753
  msgid "Do you really want to delete this item?"
2758
  "Do you really want to delete this module? All content data will be "
2759
  "permanently deleted."
2760
  msgstr ""
2761
+ "¿Quieres eliminar este módulo? Todos los datos de contenido se eliminarán "
2762
+ "permanentemente."
2763
 
2764
  #: includes/ui-js-config.php:31
2765
  msgid ""
2766
  "Do you really want to delete this row? All content data will be permanently "
2767
  "deleted."
2768
  msgstr ""
2769
+ "¿Quieres eliminar esta fila? Todos los datos de contenido se eliminarán "
2770
+ "permanentemente."
2771
 
2772
  #: includes/ui-js-config.php:33
2773
  msgid ""
2774
  "WARNING! You are about to delete a global template that may be linked to "
2775
  "other pages. Do you really want to delete this template and unlink it?"
2776
  msgstr ""
2777
+ "¡ADVERTENCIA! Estás a punto de borrar una plantilla global que puede estar "
2778
  "vinculada a otras páginas. ¿De verdad quieres eliminar esta plantilla y "
2779
  "desvincularla?"
2780
 
2862
 
2863
  #: includes/ui-js-config.php:52
2864
  msgid "Module Template Saved!"
2865
+ msgstr "¡Plantilla de Módulo Guardada!"
2866
 
2867
  #: includes/ui-js-config.php:53 includes/ui-js-templates.php:10
2868
  #: includes/ui-js-templates.php:50
2908
  #: includes/ui-js-config.php:63
2909
  #: modules/subscribe-form/includes/frontend.php:15
2910
  msgid "Please Wait..."
2911
+ msgstr "Por favor espera..."
2912
 
2913
  #: includes/ui-js-config.php:64
2914
  msgid "Publish Changes"
2920
 
2921
  #: includes/ui-js-config.php:68
2922
  msgid "Row Template Saved!"
2923
+ msgstr "¡Plantilla de Fila Guardada!"
2924
 
2925
  #: includes/ui-js-config.php:69
2926
  msgid "Save Core Template"
2927
+ msgstr "Guardar Plantilla Original"
2928
 
2929
  #: includes/ui-js-config.php:70 includes/user-template-settings.php:4
2930
  msgid "Save Template"
2988
 
2989
  #: includes/ui-js-config.php:86
2990
  msgid "Add Rows"
2991
+ msgstr "Añadir Filas"
2992
 
2993
  #: includes/ui-js-config.php:87
2994
  msgid ""
2995
  "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
2996
  "and dropping row layouts onto the page."
2997
  msgstr ""
2998
+ "Añade filas con diferentes columnas, ajusta el espaciado, añade fondos y más "
2999
+ "simplemente arrastrando y soltando diseños de fila en la página."
3000
 
3001
  #: includes/ui-js-config.php:89
3002
  msgid ""
3003
  "Add new content by dragging and dropping modules or widgets into your row "
3004
  "layouts or to create a new row layout."
3005
  msgstr ""
3006
+ "Añade contenido nuevo arrastrando y soltando módulos o widgets en una fila "
3007
+ "existente o bien para crea una nueva fila."
3008
 
3009
  #: includes/ui-js-config.php:90
3010
  msgid "Edit Content"
3027
 
3028
  #: includes/ui-js-config.php:93
3029
  msgid "Add More Content"
3030
+ msgstr "Añade Más Contenido"
3031
 
3032
  #: includes/ui-js-config.php:94
3033
  msgid ""
3048
  "page content."
3049
  msgstr ""
3050
  "Usa el botón de Plantillas para escoger una nueva plantilla o adjuntar una "
3051
+ "plantilla a tú diseño ya existente. La opción de Adjuntar insertará una "
3052
+ "nueva plantilla al final de tu diseño actual."
3053
 
3054
  #: includes/ui-js-config.php:97
3055
  msgid "Helpful Tools"
3065
 
3066
  #: includes/ui-js-config.php:99
3067
  msgid "Publish Your Changes"
3068
+ msgstr "Publica Tus Cambios"
3069
 
3070
  #: includes/ui-js-config.php:100
3071
  msgid ""
3077
 
3078
  #: includes/ui-js-config.php:101
3079
  msgid "Let's Get Building!"
3080
+ msgstr "¡Empieza a Diseñar!"
3081
 
3082
  #: includes/ui-js-config.php:102
3083
  msgid ""
3085
  "you need help, click the help icon in the upper right corner to access the "
3086
  "help menu. Happy building!"
3087
  msgstr ""
3088
+ "Ahora que ya sabes lo básico, estás listo para empezar a diseñar. Si "
3089
  "necesitas ayuda en cualquier momento, haz clic en el icono de ayuda en la "
3090
+ "esquina superior derecha para acceder al menú de ayuda. ¡Disfrútalo!"
3091
 
3092
  #: includes/ui-js-config.php:103
3093
  msgid ""
3102
 
3103
  #: includes/ui-js-config.php:105
3104
  msgid "Visit the Forums"
3105
+ msgstr "Visita los Foros"
3106
 
3107
  #: includes/ui-js-config.php:106
3108
  msgid "Watch the Video"
3126
  "Welcome! It looks like this might be your first time using the builder. "
3127
  "Would you like to take a tour?"
3128
  msgstr ""
3129
+ "¡Bienvenido! Parece que es la primera vez que utilizas el editor. ¿Te "
3130
  "gustaría realizar un tour?"
3131
 
3132
  #: includes/ui-js-templates.php:88
3135
 
3136
  #: includes/ui-js-templates.php:89
3137
  msgid "Yes Please!"
3138
+ msgstr "¡Sí por favor!"
3139
 
3140
  #: includes/ui-js-templates.php:96
3141
  msgid "Getting Started Video"
3142
+ msgstr "Video de Primeros Pasos"
3143
 
3144
  #: includes/ui-panel-node-templates.php:6
3145
  msgid "Saved Rows"
3151
 
3152
  #: includes/ui-panel.php:11
3153
  msgid "Row Layouts"
3154
+ msgstr "Distribución de Fila"
3155
 
3156
  #: includes/ui-panel.php:15
3157
  msgid "1 Column"
3187
 
3188
  #: includes/ui-panel.php:23
3189
  msgid "Left &amp; Right Sidebar"
3190
+ msgstr "Barra Lateral Izquierda &amp; Derecha"
3191
 
3192
  #: includes/updater/classes/class-fl-updater.php:132
3193
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3209
  "enable automatic updates."
3210
  msgstr ""
3211
  "¡ACTUALIZACIONES NO DISPONIBLES! Por favor suscríbete o introduce la clave "
3212
+ "de licencia para habilitar las actualizaciones automáticas."
3213
 
3214
  #: includes/updater/includes/form.php:11
3215
  msgid "Updates &amp; Support Subscription"
3216
+ msgstr "Suscripción de Actualizaciones &amp; Soporte"
3217
 
3218
  #: includes/updater/includes/form.php:14
3219
  msgid "Active!"
3220
+ msgstr "¡Activado!"
3221
 
3222
  #: includes/updater/includes/form.php:16
3223
  msgid "Not Active!"
3224
+ msgstr "¡No activado!"
3225
 
3226
  #: includes/updater/includes/form.php:22
3227
  msgid "Email address saved!"
3329
 
3330
  #: modules/button/button.php:15
3331
  msgid "A simple call to action button."
3332
+ msgstr "Un simple botón de Llamado de Acción"
3333
 
3334
  #: modules/button/button.php:67 modules/cta/cta.php:223
3335
  msgid "Click Here"
3480
 
3481
  #: modules/callout/callout.php:14
3482
  msgid "Callout"
3483
+ msgstr "Callout"
3484
 
3485
  #: modules/callout/callout.php:15
3486
  msgid "A heading and snippet of text with an optional link, icon and image."
3500
 
3501
  #: modules/callout/callout.php:249
3502
  msgid "Overall Alignment"
3503
+ msgstr "Alineación General"
3504
 
3505
  #: modules/callout/callout.php:256
3506
  msgid "The alignment that will apply to all elements within the callout."
3507
  msgstr ""
3508
+ "El alineamiento que si aplicará para todos los elementos dentro de un "
3509
+ "Callout."
3510
 
3511
  #: modules/callout/callout.php:264 modules/cta/cta.php:148
3512
  msgid "Heading Structure"
3513
+ msgstr "Estructura del Título"
3514
 
3515
  #: modules/callout/callout.php:268
3516
  #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3517
  #: modules/post-slider/post-slider.php:586
3518
  msgid "Heading Tag"
3519
+ msgstr "Etiqueta de Título"
3520
 
3521
  #: modules/callout/callout.php:281
3522
  #: modules/content-slider/content-slider.php:446
3525
  #: modules/post-slider/post-slider.php:613
3526
  #: modules/testimonials/testimonials.php:69
3527
  msgid "Heading Size"
3528
+ msgstr "Tamaño del Título"
3529
 
3530
  #: modules/callout/callout.php:295 modules/cta/cta.php:179
3531
  msgid "Heading Custom Size"
3532
+ msgstr "Tamaño Personalizado del Título"
3533
 
3534
  #: modules/callout/callout.php:313
3535
  msgid "Image Type"
3553
  #: modules/callout/callout.php:345 modules/photo/photo.php:421
3554
  #: modules/post-slider/post-slider.php:485
3555
  msgid "Landscape"
3556
+ msgstr "Paisaje"
3557
 
3558
  #: modules/callout/callout.php:346 modules/photo/photo.php:422
3559
  #: modules/post-slider/post-slider.php:486
3563
  #: modules/callout/callout.php:347 modules/photo/photo.php:423
3564
  #: modules/post-slider/post-slider.php:487
3565
  msgid "Portrait"
3566
+ msgstr "Retrato"
3567
 
3568
  #: modules/callout/callout.php:348 modules/photo/photo.php:424
3569
  #: modules/post-slider/post-slider.php:488
3577
 
3578
  #: modules/callout/callout.php:357 modules/callout/callout.php:377
3579
  msgid "Above Heading"
3580
+ msgstr "Sobre el Título"
3581
 
3582
  #: modules/callout/callout.php:358 modules/callout/callout.php:378
3583
  msgid "Below Heading"
3584
+ msgstr "Debajo del Título"
3585
 
3586
  #: modules/callout/callout.php:359 modules/callout/callout.php:381
3587
  msgid "Left of Text and Heading"
3593
 
3594
  #: modules/callout/callout.php:379
3595
  msgid "Left of Heading"
3596
+ msgstr "Izquierda del Título"
3597
 
3598
  #: modules/callout/callout.php:380
3599
  msgid "Right of Heading"
3600
+ msgstr "Derecha del Título"
3601
 
3602
  #: modules/callout/callout.php:388
3603
  msgid "Icon Colors"
3610
 
3611
  #: modules/callout/callout.php:428
3612
  msgid "Icon Structure"
3613
+ msgstr "Estructura del Icono"
3614
 
3615
  #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
3616
  #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
3621
  #: modules/callout/callout.php:443
3622
  #: modules/content-slider/content-slider.php:571
3623
  msgid "Call To Action"
3624
+ msgstr "Llamado de Acción"
3625
 
3626
  #: modules/callout/callout.php:451
3627
  msgid ""
3629
  "below, this link will also be used for the text or button."
3630
  msgstr ""
3631
  "El enlace se aplica para todo el módulo. Si eliges una llamada a la acción "
3632
+ "en la parte de abajo, este enlace también se utilizará para el texto o botón."
3633
 
3634
  #: modules/callout/callout.php:471
3635
  #: modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
3636
  msgid "Call to Action"
3637
+ msgstr "Llamado de Acción"
3638
 
3639
  #: modules/callout/callout.php:478
3640
  #: modules/content-slider/content-slider.php:600
3656
  #: modules/callout/callout.php:505
3657
  #: modules/content-slider/content-slider.php:626
3658
  msgid "Button Icon Position"
3659
+ msgstr "Posición del Icono del Botón"
3660
 
3661
  #: modules/callout/callout.php:515
3662
  #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
3668
  #: modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
3669
  #: modules/subscribe-form/subscribe-form.php:223
3670
  msgid "Button Style"
3671
+ msgstr "Estilo del Botón"
3672
 
3673
  #: modules/callout/callout.php:588
3674
  #: modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
3686
 
3687
  #: modules/contact-form/contact-form.php:15
3688
  msgid "A very simple contact form."
3689
+ msgstr "Un formulario de contacto muy simple."
3690
 
3691
  #: modules/contact-form/contact-form.php:31
3692
  msgid "Contact Form Submission"
3693
+ msgstr "Envío de Formulario de Contacto"
3694
 
3695
  #: modules/contact-form/contact-form.php:41
3696
  msgid "Message"
3698
 
3699
  #: modules/contact-form/contact-form.php:65
3700
  msgid "Send To Email"
3701
+ msgstr "Enviar al Email"
3702
 
3703
  #: modules/contact-form/contact-form.php:67
3704
  msgid "example@mail.com"
3711
  #: modules/contact-form/contact-form.php:75
3712
  #: modules/subscribe-form/subscribe-form.php:108
3713
  msgid "Name Field"
3714
+ msgstr "Campo de Nombre"
3715
 
3716
  #: modules/contact-form/contact-form.php:78
3717
  #: modules/contact-form/contact-form.php:87
3759
 
3760
  #: modules/contact-form/contact-form.php:84
3761
  msgid "Subject Field"
3762
+ msgstr "Campo de Asunto"
3763
 
3764
  #: modules/contact-form/contact-form.php:93
3765
  msgid "Email Field"
3767
 
3768
  #: modules/contact-form/contact-form.php:102
3769
  msgid "Phone Field"
3770
+ msgstr "Campo de Teléfono"
3771
 
3772
  #: modules/contact-form/includes/frontend.php:5
3773
  msgctxt "Contact form field label."
3777
  #: modules/contact-form/includes/frontend.php:6
3778
  #: modules/subscribe-form/includes/frontend.php:6
3779
  msgid "Please enter your name."
3780
+ msgstr "Introduce tu nombre por favor."
3781
 
3782
  #: modules/contact-form/includes/frontend.php:7
3783
  msgid "Your name"
3784
+ msgstr "Tu nombre"
3785
 
3786
  #: modules/contact-form/includes/frontend.php:13
3787
  #: modules/contact-form/includes/frontend.php:15
3790
 
3791
  #: modules/contact-form/includes/frontend.php:14
3792
  msgid "Please enter a subject."
3793
+ msgstr "Introduce un asunto por favor."
3794
 
3795
  #: modules/contact-form/includes/frontend.php:22
3796
  msgid "Please enter a valid email."
3797
+ msgstr "Introduce un correo electrónico válido por favor."
3798
 
3799
  #: modules/contact-form/includes/frontend.php:23
3800
  msgid "Your email"
3801
+ msgstr "Tu correo electrónico"
3802
 
3803
  #: modules/contact-form/includes/frontend.php:29
3804
  msgid "Phone"
3806
 
3807
  #: modules/contact-form/includes/frontend.php:30
3808
  msgid "Please enter a valid phone number."
3809
+ msgstr "Introduce un teléfono válido por favor."
3810
 
3811
  #: modules/contact-form/includes/frontend.php:31
3812
  msgid "Your phone"
3818
 
3819
  #: modules/contact-form/includes/frontend.php:37
3820
  msgid "Please enter a message."
3821
+ msgstr "Escribe un mensaje por favor."
3822
 
3823
  #: modules/contact-form/includes/frontend.php:38
3824
  msgid "Your message"
3825
+ msgstr "Tu mensaje"
3826
 
3827
  #: modules/contact-form/includes/frontend.php:43
3828
  msgid "Send"
3830
 
3831
  #: modules/contact-form/includes/frontend.php:44
3832
  msgid "Message Sent!"
3833
+ msgstr "¡Mensaje Enviado!"
3834
 
3835
  #: modules/contact-form/includes/frontend.php:45
3836
  msgid "Message failed. Please try again."
3837
+ msgstr "Hubo un error. Por favor inténtelo de nuevo."
3838
 
3839
  #: modules/content-slider/content-slider.php:14
3840
  msgid "Content Slider"
3857
  "This setting is the minimum height of the content slider. Content will "
3858
  "expand the height automatically."
3859
  msgstr ""
3860
+ "Este ajuste es la altura mínima del contenido del slider. El contenido "
3861
+ "expandirá la altura de forma automática."
3862
 
3863
  #: modules/content-slider/content-slider.php:207
3864
  #: modules/post-carousel/post-carousel.php:136
3901
 
3902
  #: modules/content-slider/content-slider.php:290
3903
  msgid "Slides"
3904
+ msgstr "Diapositivas (Slides)"
3905
 
3906
  #: modules/content-slider/content-slider.php:297
3907
  #: modules/post-slider/post-slider.php:374
3914
 
3915
  #: modules/content-slider/content-slider.php:322
3916
  msgid "Slide Label"
3917
+ msgstr "Rótulo de Diapositiva"
3918
 
3919
  #: modules/content-slider/content-slider.php:323
3920
  msgid ""
3921
  "A label to identify this slide on the Slides tab of the Content Slider "
3922
  "settings."
3923
  msgstr ""
3924
+ "Un rótulo para identificar esta diapositiva en la pestaña de diapositivas en "
3925
+ "la configuración del contenido deslizante."
3926
 
3927
  #: modules/content-slider/content-slider.php:328
3928
  msgid "Background Layout"
3930
 
3931
  #: modules/content-slider/content-slider.php:334
3932
  msgid "This setting is for the entire background of your slide."
3933
+ msgstr "Esta configuración es para todo el fondo de la diapositiva."
3934
 
3935
  #: modules/content-slider/content-slider.php:369
3936
  msgid "Background Video Code"
3938
 
3939
  #: modules/content-slider/content-slider.php:375
3940
  msgid "Content Layout"
3941
+ msgstr "Diseño del Contenido"
3942
 
3943
  #: modules/content-slider/content-slider.php:381
3944
  msgid ""
3965
 
3966
  #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
3967
  msgid "Video Embed Code"
3968
+ msgstr "Código de Inserción del Video"
3969
 
3970
  #: modules/content-slider/content-slider.php:469
3971
  msgid "Text Position"
4023
  #: modules/post-carousel/post-carousel.php:423
4024
  #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:728
4025
  msgid "Text Background Opacity"
4026
+ msgstr "Opacidad del Fondo del Texto"
4027
 
4028
  #: modules/content-slider/content-slider.php:558
4029
  #: modules/post-slider/post-slider.php:745
4030
  msgid "Text Background Height"
4031
+ msgstr "Altura del Fondo del Texto"
4032
 
4033
  #: modules/content-slider/content-slider.php:560
4034
  #: modules/post-slider/post-slider.php:747
4073
  "devices or no photo if desired."
4074
  msgstr ""
4075
  "Puedes elegir una foto diferente que cambiará al navegar desde dispositivos "
4076
+ "móviles o ninguna foto si lo deseas."
4077
 
4078
  #: modules/content-slider/content-slider.php:743
4079
  msgid "Use Main Photo"
4089
 
4090
  #: modules/content-slider/content-slider.php:760
4091
  msgid "Mobile Text Colors"
4092
+ msgstr "Colores del Texto en Móvil"
4093
 
4094
  #: modules/cta/cta.php:15
4095
  msgid "Display a heading, subheading and a button."
4097
 
4098
  #: modules/cta/cta.php:76
4099
  msgid "Ready to find out more?"
4100
+ msgstr "¿Listo para saber más?"
4101
 
4102
  #: modules/cta/cta.php:91
4103
  msgid "Drop us a line today for a free quote!"
4104
+ msgstr "¡Ponte en contacto para conseguir una cotización gratis!"
4105
 
4106
  #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
4107
  #: modules/menu/menu.php:90 modules/post-carousel/post-carousel.php:117
4192
  "media manager for each image. The caption is also pulled directly from "
4193
  "SmugMug if you have captions set in your gallery."
4194
  msgstr ""
4195
+ "La leyenda tira de cualquier texto que haya en el área de leyenda en la "
4196
+ "biblioteca de medios para cada imagen. La leyenda también se toma "
4197
+ "directamente de SmugMug si tienes leyendas en tu galería."
4198
 
4199
  #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4200
  msgid "Click Action"
4215
 
4216
  #: modules/heading/heading.php:15
4217
  msgid "Display a title/page heading."
4218
+ msgstr "Mostrar un título de página."
4219
 
4220
  #: modules/heading/heading.php:101
4221
  msgid "HTML Tag"
4239
 
4240
  #: modules/html/html.php:15
4241
  msgid "Display raw HTML code."
4242
+ msgstr "Mostrar código HTML crudo."
4243
 
4244
  #: modules/icon-group/icon-group.php:14
4245
  msgid "Icon Group"
4247
 
4248
  #: modules/icon-group/icon-group.php:15
4249
  msgid "Display a group of linked Font Awesome icons."
4250
+ msgstr "Muestra un grupo de iconos Font Awesome con enlaces."
4251
 
4252
  #: modules/icon-group/icon-group.php:125
4253
  msgid "Add Icon"
4267
 
4268
  #: modules/map/map.php:33
4269
  msgid "Address"
4270
+ msgstr "Dirección o coordenadas"
4271
 
4272
  #: modules/map/map.php:34
4273
  msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4280
 
4281
  #: modules/menu/menu.php:15
4282
  msgid "Renders a WordPress menu."
4283
+ msgstr "Colocar un menú existente."
4284
 
4285
  #: modules/menu/menu.php:25
4286
  msgid ""
4287
  "Select a WordPress menu that you created in the admin under Appearance > "
4288
  "Menus."
4289
+ msgstr "Selecciona un menú que hayas creado."
 
4290
 
4291
  #: modules/menu/menu.php:42
4292
  msgid "No Menus Found"
4306
 
4307
  #: modules/menu/menu.php:112
4308
  msgid "Submenu Icon"
4309
+ msgstr "Icono de Submenú"
4310
 
4311
  #: modules/menu/menu.php:115 modules/menu/menu.php:125
4312
  msgid "Arrows"
4322
 
4323
  #: modules/menu/menu.php:122
4324
  msgid "Submenu Icon click"
4325
+ msgstr "Click de Icono de Submenú"
4326
 
4327
  #: modules/menu/menu.php:131
4328
  msgid "Mobile Style"
4330
 
4331
  #: modules/menu/menu.php:135
4332
  msgid "Hamburger Icon"
4333
+ msgstr "Icono de Hamburguesa"
4334
 
4335
  #: modules/menu/menu.php:136
4336
  msgid "Hamburger Icon + label"
4337
+ msgstr "Icono de Hamburguesa + leyenda"
4338
 
4339
  #: modules/menu/menu.php:137
4340
  msgid "Menu Button"
4342
 
4343
  #: modules/menu/menu.php:153
4344
  msgid "Menu Alignment"
4345
+ msgstr "Alineación del Menú"
4346
 
4347
  #: modules/menu/menu.php:164
4348
  msgid "Submenu Drop Shadow"
4349
+ msgstr "Sombra de Submenú"
4350
 
4351
  #: modules/menu/menu.php:206
4352
  msgid "Link Size"
4354
 
4355
  #: modules/menu/menu.php:220
4356
  msgid "Link Format"
4357
+ msgstr "Formato del Enlace"
4358
 
4359
  #: modules/menu/menu.php:224
4360
  msgid "Uppercase"
4402
 
4403
  #: modules/menu/menu.php:313 modules/menu/menu.php:331
4404
  msgid "Menu Background Opacity"
4405
+ msgstr "Opacidad del Fondo del Menú"
4406
 
4407
  #: modules/menu/menu.php:321
4408
  msgid "Submenu Background Color"
4410
 
4411
  #: modules/menu/menu.php:340
4412
  msgid "Link Background Hover Color"
4413
+ msgstr "Color de Fondo del Enlace con el puntero encima"
4414
 
4415
  #: modules/menu/menu.php:351 modules/separator/separator.php:14
4416
  msgid "Separator"
4434
 
4435
  #: modules/photo/photo.php:391
4436
  msgid "Photo Source"
4437
+ msgstr "Fuente de la Imagen"
4438
 
4439
  #: modules/photo/photo.php:395 modules/photo/photo.php:467
4440
  msgid "URL"
4442
 
4443
  #: modules/photo/photo.php:412
4444
  msgid "Photo URL"
4445
+ msgstr "URL de la Foto"
4446
 
4447
  #: modules/photo/photo.php:413
4448
  msgid "http://www.example.com/my-photo.jpg"
4450
 
4451
  #: modules/photo/photo.php:441 modules/photo/photo.php:455
4452
  msgid "Caption"
4453
+ msgstr "Leyenda"
4454
 
4455
  #: modules/photo/photo.php:445
4456
  msgid "Show Caption"
4467
 
4468
  #: modules/photo/photo.php:469
4469
  msgid "Photo File"
4470
+ msgstr "Archivo de Foto"
4471
 
4472
  #: modules/photo/photo.php:480
4473
  msgid ""
4474
  "Link type applies to how the image should be linked on click. You can choose "
4475
  "a specific URL, the individual photo or a separate page with the photo."
4476
  msgstr ""
4477
+ "Tipo de Enlace se aplica a cómo la imagen debería estar vinculada al hacer "
4478
+ "clic. Puedes elegir una dirección URL específica, la foto individual o una "
4479
  "página separada con la foto."
4480
 
4481
  #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
4482
  msgid "Link URL"
4483
+ msgstr "URL del Enlace"
4484
 
4485
  #: modules/post-carousel/includes/post-gallery-loop.php:35
4486
  #: modules/post-carousel/includes/post-grid-loop.php:22
4498
 
4499
  #: modules/post-carousel/post-carousel.php:15
4500
  msgid "Display a carousel of your WordPress posts."
4501
+ msgstr "Mostrar un carrusel de tus entradas."
4502
 
4503
  #: modules/post-carousel/post-carousel.php:110
4504
  #: modules/post-slider/post-slider.php:338
4541
 
4542
  #: modules/post-carousel/post-carousel.php:229
4543
  msgid "Equalize Column Heights"
4544
+ msgstr "Igualar Altura de Columnas"
4545
 
4546
  #: modules/post-carousel/post-carousel.php:238
4547
  msgid "Post Hover Transition"
4550
  #: modules/post-carousel/post-carousel.php:242
4551
  #: modules/post-grid/post-grid.php:248
4552
  msgid "Slide Up"
4553
+ msgstr "Deslizar Hacia Arriba"
4554
 
4555
  #: modules/post-carousel/post-carousel.php:243
4556
  #: modules/post-grid/post-grid.php:249
4557
  msgid "Slide Down"
4558
+ msgstr "Deslizar Hacia Abajo"
4559
 
4560
  #: modules/post-carousel/post-carousel.php:244
4561
  #: modules/post-grid/post-grid.php:250
4585
  #: modules/post-carousel/post-carousel.php:297
4586
  #: modules/post-grid/post-grid.php:279
4587
  msgid "Post Icon Position"
4588
+ msgstr "Posición del Icono de la Entrada"
4589
 
4590
  #: modules/post-carousel/post-carousel.php:300
4591
  #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
4600
  #: modules/post-carousel/post-carousel.php:306
4601
  #: modules/post-grid/post-grid.php:288
4602
  msgid "Post Icon Size"
4603
+ msgstr "Tamaño del Icono de la Entrada"
4604
 
4605
  #: modules/post-carousel/post-carousel.php:315
4606
  #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:495
4620
  #: modules/post-carousel/post-carousel.php:381
4621
  #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:570
4622
  msgid "More Link Text"
4623
+ msgstr "Texto del Enlace Más"
4624
 
4625
  #: modules/post-carousel/post-carousel.php:418
4626
  #: modules/post-grid/post-grid.php:307
4627
  msgid "Post Icon Color"
4628
+ msgstr "Color del Icono de la Entrada"
4629
 
4630
  #: modules/post-grid/includes/frontend.php:41
4631
  msgid "No posts found."
4633
 
4634
  #: modules/post-grid/post-grid.php:15
4635
  msgid "Display a grid of your WordPress posts."
4636
+ msgstr "Mostrar una tabla con tus entradas."
4637
 
4638
  #: modules/post-grid/post-grid.php:51
4639
  msgid "Layout Style"
4658
 
4659
  #: modules/post-grid/post-grid.php:84
4660
  msgid "Posts Per Page"
4661
+ msgstr "Entradas por Página"
4662
 
4663
  #: modules/post-grid/post-grid.php:95
4664
  msgid "Post Width"
4682
 
4683
  #: modules/post-grid/post-grid.php:215
4684
  msgid "Full Text"
4685
+ msgstr "Texto Completo"
4686
 
4687
  #: modules/post-grid/post-grid.php:244
4688
  msgid "Hover Transition"
4694
 
4695
  #: modules/post-slider/post-slider.php:15
4696
  msgid "Display a slider of your WordPress posts."
4697
+ msgstr "Muestra un control deslizante de tus entradas."
4698
 
4699
  #: modules/post-slider/post-slider.php:350
4700
  msgid ""
4701
  "This setting is the minimum height of the post slider. Content will expand "
4702
  "the height automatically."
4703
  msgstr ""
4704
+ "Este ajuste es la altura mínima del contenido del slider. El contenido "
4705
+ "expandirá la altura de forma automática."
4706
 
4707
  #: modules/post-slider/post-slider.php:440
4708
  msgid "Show Featured Image?"
4734
 
4735
  #: modules/post-slider/post-slider.php:736
4736
  msgid "Text Background Gradient"
4737
+ msgstr "Gradiente del Fondo del Texto"
4738
 
4739
  #: modules/pricing-table/pricing-table.php:14
4740
  msgid "Pricing Table"
4767
 
4768
  #: modules/pricing-table/pricing-table.php:59
4769
  msgid "Features Min Height"
4770
+ msgstr "Altura Mínima de Características"
4771
 
4772
  #: modules/pricing-table/pricing-table.php:63
4773
  msgid ""
4774
  "Use this to normalize the height of your boxes when they have different "
4775
  "numbers of features."
4776
  msgstr ""
4777
+ "Usa esto para igualar la altura de las cajas cuando tienen diferente número "
4778
+ "de características."
4779
 
4780
  #: modules/pricing-table/pricing-table.php:70
4781
  msgctxt "Border size."
4793
 
4794
  #: modules/pricing-table/pricing-table.php:98
4795
  msgid "Title Size"
4796
+ msgstr "Tamaño del Título"
4797
 
4798
  #: modules/pricing-table/pricing-table.php:107
4799
  msgid "Price Box"
4800
+ msgstr "Caja de Precio"
4801
 
4802
  #: modules/pricing-table/pricing-table.php:111
4803
  #: modules/woocommerce/woocommerce.php:190
4848
 
4849
  #: modules/pricing-table/pricing-table.php:178
4850
  msgid "Accent Text Color"
4851
+ msgstr "Color de Texto Destacado"
4852
 
4853
  #: modules/pricing-table/pricing-table.php:182
4854
  msgid "Box Top Margin"
4878
  #: modules/sidebar/sidebar.php:15
4879
  msgid ""
4880
  "Display a WordPress sidebar that has been registered by the current theme."
4881
+ msgstr "Muestra una barra lateral que ha sido registrada por el tema actual."
 
 
4882
 
4883
  #: modules/slideshow/slideshow.php:14
4884
  msgid "Slideshow"
4885
+ msgstr "Presentación"
4886
 
4887
  #: modules/slideshow/slideshow.php:15
4888
  msgid "Display multiple photos in a slideshow view."
4917
  "images to all sides of the content area while cropping the left and right to "
4918
  "fit the height you specify."
4919
  msgstr ""
4920
+ "Al configurar el ajuste de Recordara a No, las imágenes se ajustarán a la "
4921
+ "altura especificada y mantendrá la anchura proporcional, mientras que "
4922
+ "recortar configurado a Sí, ajustará las imágenes a todos los lados del área "
4923
+ "de contenido, cortando a izquierda y derecha para adecuarlas a la altura que "
4924
+ "has especificado."
4925
 
4926
  #: modules/slideshow/slideshow.php:330
4927
  msgid "Disable Right-Click"
4957
  msgstr ""
4958
  "Las flechas de navegación permiten al usuario moverse libremente a través de "
4959
  "las imágenes en la presentación. Son las flechas más grandes que están "
4960
+ "superpuestas a las imágenes y están separadas de las flechas de navegación "
4961
+ "en la Barra de Control."
4962
 
4963
  #: modules/slideshow/slideshow.php:455
4964
  msgid "Control Bar"
4983
 
4984
  #: modules/slideshow/slideshow.php:479
4985
  msgid "Nav Position"
4986
+ msgstr "Posición de Navegación"
4987
 
4988
  #: modules/slideshow/slideshow.php:489
4989
  msgid "Control Bar Buttons"
4990
+ msgstr "Botones de la Barra de Control"
4991
 
4992
  #: modules/slideshow/slideshow.php:502
4993
  msgid "Play Button"
4994
+ msgstr "Botón de Play"
4995
 
4996
  #: modules/slideshow/slideshow.php:511
4997
  msgid "Fullscreen Button"
4998
+ msgstr "Botón de Pantalla Completa"
4999
 
5000
  #: modules/slideshow/slideshow.php:520
5001
  msgid "Photo Count"
5003
 
5004
  #: modules/slideshow/slideshow.php:529
5005
  msgid "Thumbs Button"
5006
+ msgstr "Botón de Miniaturas"
5007
 
5008
  #: modules/slideshow/slideshow.php:538
5009
  msgid "Caption Button"
5010
+ msgstr "Botón de Leyenda"
5011
 
5012
  #: modules/slideshow/slideshow.php:547
5013
  msgid "Social Button"
5015
 
5016
  #: modules/slideshow/slideshow.php:557
5017
  msgid "Control Bar Overlay"
5018
+ msgstr "Superposición de la Barra de Control"
5019
 
5020
  #: modules/slideshow/slideshow.php:561
5021
  msgid "Overlay Enabled"
5026
  "Control bar overlay specifies if the control bar buttons you choose overlay "
5027
  "your slideshow images or site below the slideshow completely."
5028
  msgstr ""
5029
+ "Superposición de la Barra de Control especifica si los botones de la barra "
5030
  "de control han de estar superpuestos a la imagen o si han de aparecer por "
5031
  "debajo de la presentación de las imágenes."
5032
 
5039
  "Overlay hide will hide the control bar after however many seconds you "
5040
  "specify below. They will reappear upon mouse over."
5041
  msgstr ""
5042
+ "Se ocultará la barra de control tras los segundos que hayas especificado "
5043
+ "aquí abajo. Volverá a aparecer el pasar el ratón por encima."
5044
 
5045
  #: modules/slideshow/slideshow.php:586
5046
  msgid "Overlay Hide Delay"
5047
+ msgstr "Retardo para Ocultar Superposición"
5048
 
5049
  #: modules/slideshow/slideshow.php:598
5050
  msgid "Thumbs Size"
5068
 
5069
  #: modules/slideshow/slideshow.php:647
5070
  msgid "Pinterest Button"
5071
+ msgstr "Botón de Pinterest"
5072
 
5073
  #: modules/social-buttons/social-buttons.php:14
5074
  msgid "Social Buttons"
5076
 
5077
  #: modules/social-buttons/social-buttons.php:15
5078
  msgid "Displays social buttons."
5079
+ msgstr "Muestra botones sociales."
5080
 
5081
  #: modules/social-buttons/social-buttons.php:71
5082
  msgid "Target URL"
5092
  "to interface with. For example, if you show Facebook, the user will \"Like\" "
5093
  "whatever you put in this field."
5094
  msgstr ""
5095
+ "El campo de URL de destino se correlaciona con la página con la que deseas "
5096
+ "que tus iconos sociales interactúen. Por ejemplo, si muestras Facebook, el "
5097
+ "usuario hará un \"Me gusta\" a lo que sea que hayas puesto en este campo."
 
5098
 
5099
  #: modules/social-buttons/social-buttons.php:89
5100
  msgid "Custom URL"
5119
 
5120
  #: modules/subscribe-form/includes/frontend.php:12
5121
  msgid "Please enter a valid email address."
5122
+ msgstr "Introduce una dirección de email válida por favor."
5123
 
5124
  #: modules/subscribe-form/includes/frontend.php:41
5125
  msgid "Something went wrong. Please check your entries and try again."
5127
 
5128
  #: modules/subscribe-form/subscribe-form.php:18
5129
  msgid "Subscribe Form"
5130
+ msgstr "Formulario de Suscripción"
5131
 
5132
  #: modules/subscribe-form/subscribe-form.php:19
5133
  msgid "Adds a simple subscribe form to your layout."
5134
+ msgstr "Añade un formulario de suscripción simple a tu diseño."
5135
 
5136
  #: modules/subscribe-form/subscribe-form.php:118
5137
  msgid "Success"
5139
 
5140
  #: modules/subscribe-form/subscribe-form.php:122
5141
  msgid "Success Action"
5142
+ msgstr "Acción de Éxito"
5143
 
5144
  #: modules/subscribe-form/subscribe-form.php:124
5145
  msgid "Show Message"
5146
+ msgstr "Mostrar Mensaje"
5147
 
5148
  #: modules/subscribe-form/subscribe-form.php:125
5149
  msgid "Redirect"
5158
 
5159
  #: modules/subscribe-form/subscribe-form.php:151
5160
  msgid "Success URL"
5161
+ msgstr "URL de Éxito"
5162
 
5163
  #: modules/subscribe-form/subscribe-form.php:169
5164
  msgid "Subscribe!"
5180
 
5181
  #: modules/testimonials/testimonials.php:15
5182
  msgid "An animated tesimonials area."
5183
+ msgstr "Área animada de testimonios."
5184
 
5185
  #: modules/testimonials/testimonials.php:41
5186
  msgid "Compact"
5213
 
5214
  #: modules/video/video.php:20
5215
  msgid "Render a WordPress or embedable video."
5216
+ msgstr "Reproducir un video o un video incrustado."
5217
 
5218
  #: modules/video/video.php:83
5219
  msgid "Video Type"
5241
 
5242
  #: modules/widget/widget.php:15
5243
  msgid "Display a WordPress widget."
5244
+ msgstr "Mostrar un widget."
5245
 
5246
  #: modules/woocommerce/woocommerce.php:16
5247
  msgid "WooCommerce"
5258
  #: modules/woocommerce/woocommerce.php:62
5259
  #: modules/woocommerce/woocommerce.php:113
5260
  msgid "Multiple Products"
5261
+ msgstr "Productos Múltiples"
5262
 
5263
  #: modules/woocommerce/woocommerce.php:63
5264
  msgid "\"Add to Cart\" Button"
5265
+ msgstr "Botón de \"Añadir al Carrito\""
5266
 
5267
  #: modules/woocommerce/woocommerce.php:64
5268
  msgid "Categories"
5295
  "area and rolling over the product. The unique ID will be the first attribute."
5296
  msgstr ""
5297
  "Al agregar productos en el área de productos de WooCommerce, a cada uno se "
5298
+ "le asignará un ID. Puedes encontrar este ID unico en el área Productos "
5299
+ "situándose sobre el producto. El ID único será el primer atributo."
5300
 
5301
  #: modules/woocommerce/woocommerce.php:94
5302
  msgid "Parent Category ID"
5341
 
5342
  #: modules/woocommerce/woocommerce.php:124
5343
  msgid "Sale Products"
5344
+ msgstr "Productos en Oferta"
5345
 
5346
  #: modules/woocommerce/woocommerce.php:125
5347
  msgid "Best Selling Products"
5353
 
5354
  #: modules/woocommerce/woocommerce.php:154
5355
  msgid "Product IDs"
5356
+ msgstr "IDs de Producto"
5357
 
5358
  #: modules/woocommerce/woocommerce.php:156
5359
  msgid ""
5369
 
5370
  #: modules/woocommerce/woocommerce.php:160
5371
  msgid "Category Slug"
5372
+ msgstr "Sula de Categoría"
5373
 
5374
  #: modules/woocommerce/woocommerce.php:162
5375
  msgid ""
5406
 
5407
  #: modules/woocommerce/woocommerce.php:195
5408
  msgid "Sort Direction"
5409
+ msgstr "Dirección Para Ordenar"
5410
 
5411
  #~ msgctxt "Duplicate page/post action label."
5412
  #~ msgid "Duplicate"
languages/nl_NL.mo CHANGED
Binary file
languages/nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-19 21:49+0200\n"
6
- "PO-Revision-Date: 2015-10-28 15:42+0100\n"
7
  "Last-Translator: Didou Schol <didou@badabing.nl>\n"
8
  "Language-Team: \n"
9
  "Language: nl_NL\n"
@@ -11,7 +11,7 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Generator: Poedit 1.8.4\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
17
  "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
@@ -22,7 +22,6 @@ msgstr ""
22
 
23
  # @ fl-builder
24
  #: classes/class-fl-builder-admin-settings.php:116
25
- #: includes/global-settings.php:4
26
  #, php-format
27
  msgctxt "%s stands for custom branded \"Page Builder\" name."
28
  msgid "%s Settings"
@@ -52,7 +51,7 @@ msgstr "Modules"
52
 
53
  # @ fl-builder
54
  #: classes/class-fl-builder-admin-settings.php:159
55
- #: classes/class-fl-builder.php:668
56
  msgid "Templates"
57
  msgstr "Templates"
58
 
@@ -64,9 +63,9 @@ msgstr "Post Typen"
64
 
65
  # @ fl-builder
66
  #: classes/class-fl-builder-admin-settings.php:167
67
- #: modules/icon-group/icon-group.php:27
68
- #: modules/post-carousel/post-carousel.php:275
69
- #: modules/post-grid/post-grid.php:257
70
  msgid "Icons"
71
  msgstr "Iconen"
72
 
@@ -77,14 +76,13 @@ msgstr "Bewerken"
77
 
78
  # @ fl-builder
79
  #: classes/class-fl-builder-admin-settings.php:175
80
- #: includes/admin-settings-branding.php:3
81
  msgid "Branding"
82
  msgstr "Merk"
83
 
84
  # @ fl-builder
85
  #: classes/class-fl-builder-admin-settings.php:179
86
  msgid "Help Button"
87
- msgstr "Help Button"
88
 
89
  #: classes/class-fl-builder-admin-settings.php:183
90
  #: includes/admin-settings-cache.php:3
@@ -114,15 +112,15 @@ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
114
  msgstr "Error! Upload aub een icoon-set van Icomoon of Fontello."
115
 
116
  # @ fl-builder
117
- #: classes/class-fl-builder-admin-settings.php:620
118
  msgid "Error! Please enter an iframe for the video embed code."
119
  msgstr "Error! Geef aub een iframe voor de video embed-code."
120
 
121
  # @ fl-builder
122
- #: classes/class-fl-builder-admin-settings.php:638
123
  msgid "Error! You must have at least one feature of the help button enabled."
124
  msgstr ""
125
- "Error! Je moet minstens één optie an de help button geselecteerd hebben."
126
 
127
  # @ fl-builder
128
  #: classes/class-fl-builder-admin.php:45
@@ -160,12 +158,26 @@ msgstr "Update [Plugin action link label.]"
160
 
161
  # @ fl-builder
162
  #: classes/class-fl-builder-admin.php:253
163
- #: classes/class-fl-builder-model.php:4077
164
  msgid "Page Builder"
165
  msgstr "Page Builder"
166
 
167
  # @ fl-builder
168
- #: classes/class-fl-builder-model.php:1756
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  #, php-format
170
  msgctxt "%s stands for the module filename"
171
  msgid ""
@@ -176,23 +188,24 @@ msgstr ""
176
  "bestandsnaam aan te passen voor compatibiliteit met Beaver Builder."
177
 
178
  # @ fl-builder
179
- #: classes/class-fl-builder-model.php:1807
180
- #: classes/class-fl-builder-model.php:1868 modules/heading/heading.php:16
181
- #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
182
- #: modules/separator/separator.php:16 modules/video/video.php:21
 
 
183
  msgid "Basic Modules"
184
  msgstr "Basis Modules"
185
 
186
  # @ fl-builder
187
- #: classes/class-fl-builder-model.php:1808
188
- #: classes/class-fl-builder-model.php:1869 modules/accordion/accordion.php:16
189
- #: modules/button/button.php:16 modules/callout/callout.php:16
190
- #: modules/contact-form/contact-form.php:16
191
- #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
192
- #: modules/gallery/gallery.php:16 modules/html/html.php:16
193
- #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
194
- #: modules/map/map.php:16 modules/menu/menu.php:16
195
- #: modules/post-carousel/post-carousel.php:16
196
  #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
197
  #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
198
  #: modules/slideshow/slideshow.php:16
@@ -204,38 +217,38 @@ msgid "Advanced Modules"
204
  msgstr "Geavanceerde Modules"
205
 
206
  # @ fl-builder
207
- #: classes/class-fl-builder-model.php:1809
208
- #: classes/class-fl-builder-model.php:1870
209
  msgid "Other Modules"
210
  msgstr "Andere Modules"
211
 
212
  # @ fl-builder
213
- #: classes/class-fl-builder-model.php:1810
214
- #: classes/class-fl-builder-model.php:1871
215
  #: includes/admin-settings-modules.php:32 includes/ui-panel.php:56
216
  #: modules/widget/widget.php:16
217
  msgid "WordPress Widgets"
218
  msgstr "Wordpress Widgets"
219
 
220
  # @ fl-builder
221
- #: classes/class-fl-builder-model.php:2535
222
  #, php-format
223
  msgctxt "%s stands for post/page title."
224
  msgid "Copy of %s"
225
  msgstr "Kopie van %s"
226
 
227
- #: classes/class-fl-builder-model.php:3014
228
  msgctxt "Default user template category."
229
  msgid "Uncategorized"
230
  msgstr "Uncategorized"
231
 
232
  # @ fl-builder
233
- #: classes/class-fl-builder-model.php:4034
234
  msgid "Home Pages"
235
  msgstr "Home Pagina's"
236
 
237
  # @ fl-builder
238
- #: classes/class-fl-builder-model.php:4035
239
  msgid "Content Pages"
240
  msgstr "Inhoud Pagina's"
241
 
@@ -269,12 +282,16 @@ msgstr "Fout: U moet een API URL geven."
269
 
270
  #: classes/class-fl-builder-service-activecampaign.php:73
271
  #: classes/class-fl-builder-service-campaign-monitor.php:55
 
272
  #: classes/class-fl-builder-service-constant-contact.php:48
 
273
  #: classes/class-fl-builder-service-getresponse.php:67
274
  #: classes/class-fl-builder-service-hatchbuck.php:48
275
  #: classes/class-fl-builder-service-infusionsoft.php:79
276
  #: classes/class-fl-builder-service-madmimi.php:73
277
  #: classes/class-fl-builder-service-mailchimp.php:67
 
 
278
  msgid "Error: You must provide an API key."
279
  msgstr "Fout: Je moet een API key ingeven."
280
 
@@ -296,12 +313,16 @@ msgstr ""
296
 
297
  #: classes/class-fl-builder-service-activecampaign.php:119
298
  #: classes/class-fl-builder-service-campaign-monitor.php:88
 
299
  #: classes/class-fl-builder-service-constant-contact.php:88
 
300
  #: classes/class-fl-builder-service-getresponse.php:100
301
  #: classes/class-fl-builder-service-hatchbuck.php:87
302
  #: classes/class-fl-builder-service-infusionsoft.php:129
303
  #: classes/class-fl-builder-service-madmimi.php:121
304
  #: classes/class-fl-builder-service-mailchimp.php:100
 
 
305
  msgid "API Key"
306
  msgstr "API key"
307
 
@@ -318,16 +339,19 @@ msgstr ""
318
  #: classes/class-fl-builder-service-aweber.php:182
319
  #: classes/class-fl-builder-service-campaign-monitor.php:148
320
  #: classes/class-fl-builder-service-campaign-monitor.php:199
 
321
  #: classes/class-fl-builder-service-constant-contact.php:156
 
322
  #: classes/class-fl-builder-service-getresponse.php:154
323
  #: classes/class-fl-builder-service-icontact.php:207
324
  #: classes/class-fl-builder-service-infusionsoft.php:204
325
  #: classes/class-fl-builder-service-madmimi.php:178
326
  #: classes/class-fl-builder-service-mailchimp.php:177
327
  #: classes/class-fl-builder-service-mailpoet.php:92
 
328
  #: classes/class-fl-builder-service-sendinblue.php:161
329
- #: classes/class-fl-builder-services.php:288 includes/service-settings.php:21
330
- #: modules/woocommerce/woocommerce.php:60
331
  msgid "Choose..."
332
  msgstr "Kies..."
333
 
@@ -335,6 +359,7 @@ msgstr "Kies..."
335
  #: classes/class-fl-builder-service-aweber.php:192
336
  #: classes/class-fl-builder-service-campaign-monitor.php:209
337
  #: classes/class-fl-builder-service-constant-contact.php:166
 
338
  #: classes/class-fl-builder-service-getresponse.php:164
339
  #: classes/class-fl-builder-service-icontact.php:217
340
  #: classes/class-fl-builder-service-infusionsoft.php:214
@@ -399,6 +424,7 @@ msgstr "Er is een fout opgetreden bij het registreren bij AWeber. %s"
399
 
400
  #: classes/class-fl-builder-service-campaign-monitor.php:67
401
  #: classes/class-fl-builder-service-campaign-monitor.php:129
 
402
  #: classes/class-fl-builder-service-getresponse.php:76
403
  #: classes/class-fl-builder-service-getresponse.php:132
404
  #: classes/class-fl-builder-service-hatchbuck.php:63
@@ -431,6 +457,61 @@ msgid "There was an error subscribing to Campaign Monitor."
431
  msgstr ""
432
  "Er is een fout opgetreden tijdens het aanmelden bij de Campagne Monitor."
433
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  #: classes/class-fl-builder-service-constant-contact.php:52
435
  msgid "Error: You must provide an access token."
436
  msgstr "Error: Je moet een access token verstrekken."
@@ -480,6 +561,95 @@ msgstr ""
480
  "Er heeft zich een fout voorgedaan tijdens het aanmelden bij Constant "
481
  "Contact. %s"
482
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
483
  #: classes/class-fl-builder-service-email-address.php:39
484
  #: classes/class-fl-builder-service-madmimi.php:69
485
  msgid "Error: You must provide an email address."
@@ -512,7 +682,7 @@ msgid "Name"
512
  msgstr "Naam"
513
 
514
  #: classes/class-fl-builder-service-email-address.php:124
515
- #: modules/subscribe-form/subscribe-form.php:73
516
  msgid "There was an error subscribing. Please try again."
517
  msgstr ""
518
  "Er heeft zich een fout voorgedaan bij het abonneren. Probeer het nog eens."
@@ -748,6 +918,47 @@ msgid "There was an error subscribing. MailPoet is not installed."
748
  msgstr ""
749
  "Er is een fout opgetreden bij het aanmelden. Mailpoet is niet geïnstalleerd."
750
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
  #: classes/class-fl-builder-service-sendinblue.php:67
752
  msgid "Error: You must provide an Access Key."
753
  msgstr "Fout: U moet een toegangssleutel opgeven."
@@ -794,31 +1005,84 @@ msgstr ""
794
  msgid "Error: Could not subscribe to SendinBlue. %s"
795
  msgstr "Fout: Kon niet abonneren op SendinBlue. %s"
796
 
797
- #: classes/class-fl-builder-services.php:158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
798
  msgctxt "Third party service such as MailChimp."
799
  msgid "Error: Missing service type."
800
  msgstr "Fout: Ontbrekende servicetype."
801
 
802
- #: classes/class-fl-builder-services.php:161
803
  msgctxt "Connection data such as an API key."
804
  msgid "Error: Missing service data."
805
  msgstr "Fout: Ontbrekende service data."
806
 
807
- #: classes/class-fl-builder-services.php:164
808
  msgctxt "Account name for a third party service such as MailChimp."
809
  msgid "Error: Missing account name."
810
  msgstr "Fout: Ontbrekende accountnaam."
811
 
812
- #: classes/class-fl-builder-services.php:173
813
  msgctxt "Account name for a third party service such as MailChimp."
814
  msgid "Error: An account with that name already exists."
815
  msgstr "Fout: er bestaat al een account met die naam."
816
 
817
- #: classes/class-fl-builder-services.php:253
818
  msgid "Account Name"
819
  msgstr "Accountnaam"
820
 
821
- #: classes/class-fl-builder-services.php:254
822
  msgid ""
823
  "Used to identify this connection within the accounts list and can be "
824
  "anything you like."
@@ -826,187 +1090,188 @@ msgstr ""
826
  "Gebruikt om deze verbinding in de lijst met gebruikersaccounts te "
827
  "identificeren en kan alles zijn wat je wil."
828
 
829
- #: classes/class-fl-builder-services.php:267
830
  msgid "Connect"
831
  msgstr "Verbinden"
832
 
833
- #: classes/class-fl-builder-services.php:295
834
  msgid "Add Account..."
835
  msgstr "Account Toevoegen..."
836
 
837
- #: classes/class-fl-builder-services.php:302
838
  msgid "Account"
839
  msgstr "Account"
840
 
841
- #: classes/class-fl-builder-template-settings.php:33
842
- msgid "Page Builder Templates"
843
- msgstr "Page Builder Templates"
844
-
845
- #: classes/class-fl-builder-templates-override.php:49
846
- msgid "Error! Please enter a number for the site ID."
847
- msgstr "Fout! Voer een nummer voor de site-ID."
848
 
849
- #: classes/class-fl-builder-templates-override.php:53
850
- msgid "Error! A site with that ID doesn't exist."
851
- msgstr "Fout! Een site met die ID bestaat niet."
852
 
853
  # @ fl-builder
854
- #: classes/class-fl-builder.php:617
855
  #, php-format
856
  msgid "Template: %s"
857
  msgstr "Template: %s"
858
 
859
  # @ fl-builder
860
- #: classes/class-fl-builder.php:652
861
  msgid "Upgrade!"
862
  msgstr "Upgraden!"
863
 
864
  # @ fl-builder
865
- #: classes/class-fl-builder.php:656
866
  msgid "Buy Now!"
867
  msgstr "Nu Kopen!"
868
 
869
  # @ fl-builder
870
- #: classes/class-fl-builder.php:660 includes/ui-js-config.php:36
871
- #: includes/ui-js-templates.php:100
872
  msgid "Done"
873
  msgstr "Klaar"
874
 
875
  # @ fl-builder
876
- #: classes/class-fl-builder.php:664
877
  msgid "Tools"
878
  msgstr "Gereedschappen"
879
 
880
  # @ fl-builder
881
- #: classes/class-fl-builder.php:672 includes/ui-js-config.php:88
882
  msgid "Add Content"
883
  msgstr "Inhoud Toevoegen"
884
 
885
  # @ fl-builder
886
- #: classes/class-fl-builder.php:1032
887
  #, php-format
888
  msgctxt "Field name to add."
889
  msgid "Add %s"
890
  msgstr "%s Toevoegen"
891
 
892
- #: classes/class-fl-builder.php:1126 classes/class-fl-builder.php:1128
893
  msgctxt "Custom post type label."
894
  msgid "Templates"
895
  msgstr "Templates"
896
 
897
- #: classes/class-fl-builder.php:1127 classes/class-fl-builder.php:1129
898
  msgctxt "Custom post type label."
899
  msgid "Template"
900
  msgstr "Template"
901
 
902
  # @ fl-builder
903
- #: classes/class-fl-builder.php:1130
904
  msgctxt "Custom post type label."
905
  msgid "Add New"
906
  msgstr "Toevoegen"
907
 
908
- #: classes/class-fl-builder.php:1131
909
  msgctxt "Custom post type label."
910
  msgid "Add New Template"
911
  msgstr "Nieuwe Template Toevoegen"
912
 
913
- #: classes/class-fl-builder.php:1132
914
  msgctxt "Custom post type label."
915
  msgid "New Template"
916
  msgstr "Nieuwe Template"
917
 
918
- #: classes/class-fl-builder.php:1133
919
  msgctxt "Custom post type label."
920
  msgid "Edit Template"
921
  msgstr "Bewerk Template"
922
 
923
- #: classes/class-fl-builder.php:1134
924
  msgctxt "Custom post type label."
925
  msgid "View Template"
926
  msgstr "Bekijk Template"
927
 
928
- #: classes/class-fl-builder.php:1135
929
  msgctxt "Custom post type label."
930
  msgid "All Templates"
931
  msgstr "Alle sjablonen"
932
 
933
- #: classes/class-fl-builder.php:1136
934
  msgctxt "Custom post type label."
935
  msgid "Search Templates"
936
  msgstr "Zoek Templates"
937
 
938
- #: classes/class-fl-builder.php:1137
939
  msgctxt "Custom post type label."
940
  msgid "Parent Templates:"
941
  msgstr "Bovenliggende Templates:"
942
 
943
- #: classes/class-fl-builder.php:1138
944
  msgctxt "Custom post type label."
945
  msgid "No templates found."
946
  msgstr "Geen templates gevonden."
947
 
948
- #: classes/class-fl-builder.php:1139
949
  msgctxt "Custom post type label."
950
  msgid "No templates found in Trash."
951
  msgstr "Geen templates gevonden in de prullenbak."
952
 
953
- #: classes/class-fl-builder.php:1153 classes/class-fl-builder.php:1163
954
  msgctxt "Custom taxonomy label."
955
- msgid "Categories"
956
- msgstr "Categorieën"
957
 
958
- #: classes/class-fl-builder.php:1154
959
  msgctxt "Custom taxonomy label."
960
- msgid "Category"
961
- msgstr "Categorie"
962
 
963
- #: classes/class-fl-builder.php:1155
964
  msgctxt "Custom taxonomy label."
965
- msgid "Search Categories"
966
- msgstr "Categorieën zoeken"
967
 
968
- #: classes/class-fl-builder.php:1156
969
  msgctxt "Custom taxonomy label."
970
- msgid "All Categories"
971
- msgstr "Alle categoriën"
972
 
973
- #: classes/class-fl-builder.php:1157
974
  msgctxt "Custom taxonomy label."
975
- msgid "Parent Category"
976
- msgstr "Bovenliggende Categorie"
977
 
978
- #: classes/class-fl-builder.php:1158
979
  msgctxt "Custom taxonomy label."
980
- msgid "Parent Category:"
981
- msgstr "Bovenliggende Categorie:"
982
 
983
- #: classes/class-fl-builder.php:1159
984
  msgctxt "Custom taxonomy label."
985
- msgid "Edit Category"
986
- msgstr "Bewerk Categorie"
987
 
988
- #: classes/class-fl-builder.php:1160
989
  msgctxt "Custom taxonomy label."
990
- msgid "Update Category"
991
- msgstr "Categorie bijwerken"
992
 
993
- #: classes/class-fl-builder.php:1161
994
  msgctxt "Custom taxonomy label."
995
- msgid "Add New Category"
996
- msgstr "Voeg nieuwe Categorie toe"
997
 
998
- #: classes/class-fl-builder.php:1162
999
  msgctxt "Custom taxonomy label."
1000
- msgid "New Category Name"
1001
- msgstr "Nieuwe Categorie Naam"
 
 
 
 
 
1002
 
1003
- #: classes/class-fl-builder.php:1172
1004
  msgctxt "Custom taxonomy label."
1005
  msgid "Type"
1006
  msgstr "Type"
1007
 
1008
- #: classes/class-fl-builder.php:1448 classes/class-fl-builder.php:1527
1009
- #: classes/class-fl-builder.php:1735 includes/ui-js-templates.php:110
1010
  #: includes/ui-panel-node-templates.php:18
1011
  #: includes/ui-panel-node-templates.php:49
1012
  msgctxt "Indicator for global node templates."
@@ -1014,7 +1279,7 @@ msgid "Global"
1014
  msgstr "Algemeen"
1015
 
1016
  # @ fl-builder
1017
- #: classes/class-fl-builder.php:1734
1018
  #, php-format
1019
  msgctxt "%s stands for module name."
1020
  msgid "%s Settings"
@@ -1040,25 +1305,6 @@ msgctxt "%s stands for custom branded \"Page Builder\" name."
1040
  msgid "Launch %s"
1041
  msgstr "%s starten"
1042
 
1043
- # @ fl-builder
1044
- #: includes/admin-settings-branding.php:7
1045
- msgid "White label the page builder by entering a custom name below."
1046
- msgstr "White label de page builder door hieronder een eigen naam in te geven."
1047
-
1048
- # @ fl-builder
1049
- #: includes/admin-settings-branding.php:10
1050
- msgid ""
1051
- "Additionally, you may also add a custom icon by entering the URL of an image "
1052
- "below. Leave the field blank if you do not wish to use an icon."
1053
- msgstr ""
1054
- "Daarnaast kun je ook een aangepast pictogram toevoegen door het invoeren van "
1055
- "de URL van een afbeelding hieronder. Laat het veld leeg als je geen "
1056
- "pictogram wenst te gebruiken."
1057
-
1058
- #: includes/admin-settings-branding.php:14
1059
- msgid "Save Branding"
1060
- msgstr "Merk opslaan"
1061
-
1062
  #: includes/admin-settings-cache.php:9
1063
  msgid ""
1064
  "A CSS and JavaScript file is dynamically generated and cached each time you "
@@ -1071,7 +1317,7 @@ msgstr ""
1071
  "gecached telkens wanneer je een nieuwe layout maakt. Soms dient de cache "
1072
  "ververst te worden, wanneer je de site migreert naar een andere server of "
1073
  "update naar de laatste versie. Indien je problemen ondervindt, probeer dan "
1074
- "de cache te wissen door op onderstaande button te klikken."
1075
 
1076
  # @ fl-builder
1077
  #: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14
@@ -1143,75 +1389,6 @@ msgstr ""
1143
  msgid "Save Editing Settings"
1144
  msgstr "Bewaar Editing Instellingen"
1145
 
1146
- # @ fl-builder
1147
- #: includes/admin-settings-help-button.php:8
1148
- msgid "Help Button Settings"
1149
- msgstr "Help Button Instellingen"
1150
-
1151
- # @ fl-builder
1152
- #: includes/admin-settings-help-button.php:17
1153
- msgid "Enable Help Button"
1154
- msgstr "Activeer Help Button"
1155
-
1156
- # @ fl-builder
1157
- #: includes/admin-settings-help-button.php:23
1158
- msgid "Help Tour"
1159
- msgstr "Help Rondleiding"
1160
-
1161
- # @ fl-builder
1162
- #: includes/admin-settings-help-button.php:27
1163
- msgid "Enable Help Tour"
1164
- msgstr "Activeer Help Rondleiding"
1165
-
1166
- # @ fl-builder
1167
- #: includes/admin-settings-help-button.php:31
1168
- msgid "Help Video"
1169
- msgstr "Help Video"
1170
-
1171
- # @ fl-builder
1172
- #: includes/admin-settings-help-button.php:35
1173
- msgid "Enable Help Video"
1174
- msgstr "Activeer Help Video"
1175
-
1176
- # @ fl-builder
1177
- #: includes/admin-settings-help-button.php:39
1178
- msgid "Help Video Embed Code"
1179
- msgstr "Help Video Embed Code"
1180
-
1181
- # @ fl-builder
1182
- #: includes/admin-settings-help-button.php:45
1183
- msgid "Knowledge Base"
1184
- msgstr "Kennisbank"
1185
-
1186
- # @ fl-builder
1187
- #: includes/admin-settings-help-button.php:49
1188
- msgid "Enable Knowledge Base"
1189
- msgstr "Activeer Kennisbank"
1190
-
1191
- # @ fl-builder
1192
- #: includes/admin-settings-help-button.php:53
1193
- msgid "Knowledge Base URL"
1194
- msgstr "Kennisbank URL"
1195
-
1196
- # @ fl-builder
1197
- #: includes/admin-settings-help-button.php:59
1198
- msgid "Forums"
1199
- msgstr "Forums"
1200
-
1201
- # @ fl-builder
1202
- #: includes/admin-settings-help-button.php:63
1203
- msgid "Enable Forums"
1204
- msgstr "Activeer Forums"
1205
-
1206
- # @ fl-builder
1207
- #: includes/admin-settings-help-button.php:67
1208
- msgid "Forums URL"
1209
- msgstr "Forum URL"
1210
-
1211
- #: includes/admin-settings-help-button.php:77
1212
- msgid "Save Help Button Settings"
1213
- msgstr "Help Button Instellingen Opslaan"
1214
-
1215
  # @ fl-builder
1216
  #: includes/admin-settings-icons.php:3
1217
  msgid "Icon Settings"
@@ -1306,52 +1483,12 @@ msgstr "Voorbeeld: pagina, post, product."
1306
  msgid "Select the post types you would like the builder to work with."
1307
  msgstr "Selecteer de post typen die je wilt waar de builder mee werkt."
1308
 
1309
- #: includes/admin-settings-post-types.php:70
1310
  msgid "Save Post Types"
1311
  msgstr "Post Type Opslaan"
1312
 
1313
- #: includes/admin-settings-templates-override.php:1
1314
- #: includes/admin-settings-templates-override.php:12
1315
- msgid "Override Core Templates"
1316
- msgstr "Overschrijven Core Templates"
1317
-
1318
- #: includes/admin-settings-templates-override.php:3
1319
- msgid ""
1320
- "Enter the ID of a site on the network whose templates should override core "
1321
- "builder templates. Leave this field blank if you do not wish to override "
1322
- "core templates."
1323
- msgstr ""
1324
- "Geef de ID van een site op het netwerk waarvan de templates de kern builder "
1325
- "templates moet overschrijven. Laat dit veld leeg indien je niet de kern "
1326
- "templates wilt overschrijven."
1327
-
1328
- #: includes/admin-settings-templates-override.php:8
1329
- msgid ""
1330
- "Use this setting to override core builder templates with your templates."
1331
- msgstr ""
1332
- "Gebruik deze instelling om kern builder sjablonen met jouw sjablonen te "
1333
- "overschrijven."
1334
-
1335
- #: includes/admin-settings-templates-override.php:17
1336
- msgid ""
1337
- "You may also choose to show your row and module templates as sections within "
1338
- "the builder panel. A new section will be created for each row or module "
1339
- "category that you have defined."
1340
- msgstr ""
1341
- "Je kunt er ook voor kiezen om je rij- en module-templates als secties in "
1342
- "het builder paneel te tonen. Een nieuwe sectie zal worden aangemaakt voor "
1343
- "iedere rij- of module-categorie die je hebt gedefinieerd."
1344
-
1345
- #: includes/admin-settings-templates-override.php:21
1346
- msgid "Show Row Templates?"
1347
- msgstr "Rij Templates weergeven?"
1348
-
1349
- #: includes/admin-settings-templates-override.php:27
1350
- msgid "Show Module Templates?"
1351
- msgstr "Module Templates weergeven?"
1352
-
1353
  # @ fl-builder
1354
- #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1355
  msgid "Template Settings"
1356
  msgstr "Template Instellingen"
1357
 
@@ -1406,7 +1543,7 @@ msgid ""
1406
  "all of the data associated with it. You can uninstall or deactivate the page "
1407
  "builder from the plugins page instead if you do not wish to delete the data."
1408
  msgstr ""
1409
- "Door op onderstaande button te klikken zal de page builder en alle daarmee "
1410
  "geassocieerde data verwijderd worden. Je kunt als alternatief de page "
1411
  "builder vanaf de plugins pagina verwijderen of deactiveren als je niet ook "
1412
  "de data wenst te verwijderen."
@@ -1445,104 +1582,78 @@ msgstr "Upgrade Nu"
1445
  msgid "Learn More"
1446
  msgstr "Leer Meer"
1447
 
1448
- #: includes/admin-templates-edit.php:3
1449
- msgid "Edit Template"
1450
- msgstr "Bewerk Template"
1451
-
1452
- #: includes/admin-templates-edit.php:8
1453
- msgctxt "Template edit form field label. Template name."
1454
- msgid "Name"
1455
- msgstr "Naam"
1456
-
1457
  # @ fl-builder
1458
- #: includes/admin-templates-edit.php:12 modules/callout/callout.php:306
1459
- #: modules/post-carousel/post-carousel.php:255
1460
- #: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:460
1461
- msgid "Image"
1462
- msgstr "Afbeelding"
1463
 
1464
  # @ fl-builder
1465
- #: includes/admin-templates-edit.php:16 includes/column-settings.php:139
1466
- #: includes/row-settings.php:179 includes/template-settings.php:23
1467
- #: modules/callout/callout.php:354 modules/callout/callout.php:374
1468
- #: modules/content-slider/content-slider.php:473
1469
- #: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:626
1470
- #: modules/post-slider/post-slider.php:645
1471
- msgid "Position"
1472
- msgstr "Positie"
1473
-
1474
- #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1475
- msgctxt "Template edit form field label. Is template premium one?"
1476
- msgid "Premium"
1477
- msgstr "Premium"
 
 
 
 
 
 
 
1478
 
1479
  # @ fl-builder
1480
- #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
1481
- #: includes/global-settings.php:18 includes/global-settings.php:110
1482
- #: includes/global-settings.php:124 includes/node-template-settings.php:22
1483
- #: includes/row-settings.php:331 includes/template-settings.php:31
1484
- #: modules/accordion/accordion.php:90 modules/callout/callout.php:421
1485
- #: modules/content-slider/content-slider.php:210
1486
- #: modules/content-slider/content-slider.php:224
1487
- #: modules/content-slider/content-slider.php:258
1488
- #: modules/content-slider/content-slider.php:267
1489
- #: modules/content-slider/content-slider.php:538
1490
- #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1491
- #: modules/menu/menu.php:167 modules/menu/menu.php:358
1492
- #: modules/post-carousel/post-carousel.php:139
1493
- #: modules/post-carousel/post-carousel.php:155
1494
- #: modules/post-carousel/post-carousel.php:182
1495
- #: modules/post-carousel/post-carousel.php:191
1496
- #: modules/post-carousel/post-carousel.php:232
1497
- #: modules/post-carousel/post-carousel.php:283
1498
- #: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:357
1499
- #: modules/post-slider/post-slider.php:382
1500
- #: modules/post-slider/post-slider.php:409
1501
- #: modules/post-slider/post-slider.php:418
1502
- #: modules/post-slider/post-slider.php:739 modules/slideshow/slideshow.php:323
1503
- #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
1504
- #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
1505
- #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
1506
- #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
1507
- #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
1508
- #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
1509
- #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
1510
- #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
1511
- #: modules/slideshow/slideshow.php:650
1512
- #: modules/social-buttons/social-buttons.php:111
1513
- #: modules/social-buttons/social-buttons.php:120
1514
- #: modules/social-buttons/social-buttons.php:129
1515
- #: modules/testimonials/testimonials.php:85
1516
- #: modules/testimonials/testimonials.php:124
1517
- #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1518
- #: modules/video/video.php:123
1519
- msgid "No"
1520
- msgstr "Nee"
1521
 
1522
- # @ fl-builder
1523
- #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
1524
- #: includes/global-settings.php:19 includes/global-settings.php:111
1525
- #: includes/global-settings.php:125 includes/node-template-settings.php:23
1526
- #: includes/row-settings.php:332 includes/template-settings.php:32
1527
- #: modules/accordion/accordion.php:89 modules/callout/callout.php:422
1528
- #: modules/content-slider/content-slider.php:211
1529
- #: modules/content-slider/content-slider.php:225
1530
- #: modules/content-slider/content-slider.php:259
1531
- #: modules/content-slider/content-slider.php:268
1532
- #: modules/content-slider/content-slider.php:539
1533
- #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1534
- #: modules/menu/menu.php:168 modules/menu/menu.php:359
1535
- #: modules/post-carousel/post-carousel.php:140
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: modules/post-carousel/post-carousel.php:156
1537
  #: modules/post-carousel/post-carousel.php:183
1538
  #: modules/post-carousel/post-carousel.php:192
1539
  #: modules/post-carousel/post-carousel.php:233
1540
- #: modules/post-carousel/post-carousel.php:282
1541
- #: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:358
1542
- #: modules/post-slider/post-slider.php:383
1543
- #: modules/post-slider/post-slider.php:410
1544
- #: modules/post-slider/post-slider.php:419
1545
- #: modules/post-slider/post-slider.php:740 modules/slideshow/slideshow.php:324
 
1546
  #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
1547
  #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
1548
  #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
@@ -1552,238 +1663,202 @@ msgstr "Nee"
1552
  #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
1553
  #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
1554
  #: modules/slideshow/slideshow.php:651
1555
- #: modules/social-buttons/social-buttons.php:110
1556
- #: modules/social-buttons/social-buttons.php:119
1557
- #: modules/social-buttons/social-buttons.php:128
1558
  #: modules/testimonials/testimonials.php:86
1559
  #: modules/testimonials/testimonials.php:125
1560
- #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1561
- #: modules/video/video.php:124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1562
  msgid "Yes"
1563
  msgstr "Ja"
1564
 
1565
- #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
1566
- msgid "Category"
1567
- msgstr "Categorie"
1568
-
1569
- #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1570
- msgctxt "Templates category label."
1571
- msgid "Landing Pages"
1572
- msgstr "Bestemmingspagina 's"
1573
-
1574
- #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1575
- msgctxt "Templates category label."
1576
- msgid "Company Info"
1577
- msgstr "Bedrijfsinfo"
1578
-
1579
- #: includes/admin-templates-edit.php:40
1580
- msgid "Update Template"
1581
- msgstr "Template Bijwerken"
1582
 
1583
- #: includes/admin-templates.php:3
1584
- msgid "Page Builder Template"
1585
- msgstr "Page Builder Template"
 
 
 
 
 
 
1586
 
1587
- #: includes/admin-templates.php:10
1588
- msgctxt "Templates list column label."
1589
- msgid "Name"
1590
- msgstr "Naam"
 
1591
 
1592
- #: includes/admin-templates.php:11
1593
- msgctxt "Templates list column label."
1594
- msgid "Category"
1595
- msgstr "Categorie"
 
1596
 
1597
- #: includes/admin-templates.php:12
1598
- msgctxt "Templates list column label. Is template premium one?"
1599
- msgid "Premium"
1600
- msgstr "Premium"
1601
 
1602
  # @ fl-builder
1603
- #: includes/admin-templates.php:25 includes/field-photo.php:12
1604
- #: includes/template-selector.php:70
1605
- msgid "Edit"
1606
- msgstr "Bewerk"
1607
 
1608
  # @ fl-builder
1609
- #: includes/admin-templates.php:27 includes/template-selector.php:71
1610
- msgid "Delete"
1611
- msgstr "Verwijder"
 
 
 
 
 
 
 
1612
 
1613
  # @ fl-builder
1614
- #: includes/admin-templates.php:40 includes/ui-js-config.php:32
1615
- msgid "Do you really want to delete this template?"
1616
- msgstr "Wilt je echt dit template verwijderen?"
 
 
1617
 
1618
  # @ fl-builder
1619
- #: includes/column-settings.php:4 includes/ui-js-templates.php:31
1620
- #: includes/ui-js-templates.php:55
1621
- msgid "Column Settings"
1622
- msgstr "Kolom Instellingen"
1623
-
1624
- # @ fl-builder
1625
- #: includes/column-settings.php:7 includes/module-settings.php:87
1626
- #: includes/row-settings.php:9 modules/accordion/accordion.php:45
1627
- #: modules/button/button.php:117 modules/button/button.php:155
1628
- #: modules/button/button.php:159 modules/callout/callout.php:242
1629
- #: modules/callout/callout.php:554
1630
- #: modules/content-slider/content-slider.php:426
1631
- #: modules/content-slider/content-slider.php:667 modules/cta/cta.php:102
1632
- #: modules/cta/cta.php:309 modules/heading/heading.php:69
1633
- #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1634
- #: modules/menu/menu.php:146 modules/post-carousel/post-carousel.php:389
1635
- #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:579
1636
- #: modules/pricing-table/pricing-table.php:43
1637
- #: modules/pricing-table/pricing-table.php:155
1638
- #: modules/separator/separator.php:72
1639
- #: modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
1640
- msgid "Style"
1641
- msgstr "Stijl"
1642
-
1643
- # @ fl-builder
1644
- #: includes/column-settings.php:14
1645
- msgid "Column Width"
1646
- msgstr "Kolom Breedte"
1647
-
1648
- # @ fl-builder
1649
- #: includes/column-settings.php:26 modules/button/button.php:66
1650
- #: modules/callout/callout.php:226 modules/callout/callout.php:479
1651
- #: modules/callout/callout.php:495
1652
- #: modules/content-slider/content-slider.php:383
1653
- #: modules/content-slider/content-slider.php:617 modules/cta/cta.php:85
1654
- #: modules/cta/cta.php:222 modules/menu/menu.php:174
1655
- #: modules/post-slider/post-slider.php:622
1656
- msgid "Text"
1657
- msgstr "Tekst"
1658
-
1659
- # @ fl-builder
1660
- #: includes/column-settings.php:30 includes/column-settings.php:93
1661
- #: includes/column-settings.php:248 includes/row-settings.php:133
1662
- #: includes/row-settings.php:427 modules/callout/callout.php:392
1663
- #: modules/content-slider/content-slider.php:338
1664
- #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1665
- #: modules/separator/separator.php:34
1666
- msgid "Color"
1667
- msgstr "Kleur"
1668
-
1669
- #: includes/column-settings.php:38 includes/row-settings.php:60
1670
- #: modules/menu/menu.php:178 modules/post-carousel/post-carousel.php:401
1671
- #: modules/post-slider/post-slider.php:699
1672
- msgid "Link Color"
1673
- msgstr "Link Kleur"
1674
-
1675
- #: includes/column-settings.php:46 includes/row-settings.php:68
1676
- #: modules/menu/menu.php:196 modules/post-carousel/post-carousel.php:406
1677
- #: modules/post-slider/post-slider.php:715
1678
- msgid "Link Hover Color"
1679
- msgstr "Link Hover Kleur"
1680
-
1681
- #: includes/column-settings.php:54 includes/row-settings.php:76
1682
- msgid "Heading Color"
1683
- msgstr "Kopregel Kleur"
1684
-
1685
- # @ fl-builder
1686
- #: includes/column-settings.php:63 includes/row-settings.php:85
1687
- #: modules/post-slider/post-slider.php:463
1688
- msgid "Background"
1689
- msgstr "Achtergrond"
1690
-
1691
- # @ fl-builder
1692
- #: includes/column-settings.php:67 includes/column-settings.php:215
1693
- #: includes/row-settings.php:89 includes/row-settings.php:394
1694
- #: modules/callout/callout.php:475
1695
- #: modules/content-slider/content-slider.php:332
1696
- #: modules/content-slider/content-slider.php:379
1697
- #: modules/content-slider/content-slider.php:597
1698
- #: modules/content-slider/content-slider.php:739
1699
- #: modules/slideshow/slideshow.php:347
1700
- msgid "Type"
1701
- msgstr "Type"
1702
-
1703
- # @ fl-builder
1704
- #: includes/column-settings.php:70 includes/row-settings.php:92
1705
- #: modules/content-slider/content-slider.php:339
1706
- msgctxt "Background type."
1707
- msgid "None"
1708
- msgstr "Niet"
1709
-
1710
- # @ fl-builder
1711
- #: includes/column-settings.php:71 includes/row-settings.php:93
1712
  msgctxt "Background type."
1713
  msgid "Color"
1714
  msgstr "Kleur"
1715
 
1716
  # @ fl-builder
1717
- #: includes/column-settings.php:72 includes/row-settings.php:94
1718
  msgctxt "Background type."
1719
  msgid "Photo"
1720
  msgstr "Afbeelding"
1721
 
1722
  # @ fl-builder
1723
- #: includes/column-settings.php:89 includes/row-settings.php:129
1724
- #: modules/button/button.php:124 modules/callout/callout.php:405
1725
- #: modules/callout/callout.php:519
1726
- #: modules/content-slider/content-slider.php:364
1727
- #: modules/content-slider/content-slider.php:640 modules/cta/cta.php:198
1728
- #: modules/cta/cta.php:274 modules/icon-group/icon-group.php:64
1729
- #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
 
1730
  msgid "Background Color"
1731
  msgstr "Achtergrondkleur"
1732
 
1733
  # @ fl-builder
1734
- #: includes/column-settings.php:101 includes/column-settings.php:256
1735
- #: includes/row-settings.php:141 includes/row-settings.php:435
1736
- #: modules/separator/separator.php:44
1737
  msgid "Opacity"
1738
  msgstr "Dichtheid"
1739
 
1740
  # @ fl-builder
1741
- #: includes/column-settings.php:113 includes/row-settings.php:153
1742
- #: modules/content-slider/content-slider.php:360
1743
  msgid "Background Photo"
1744
  msgstr "Achtergrond Afbeelding"
1745
 
1746
  # @ fl-builder
1747
- #: includes/column-settings.php:117 includes/row-settings.php:157
1748
- #: includes/row-settings.php:345 modules/callout/callout.php:317
1749
- #: modules/callout/callout.php:333 modules/callout/callout.php:337
1750
- #: modules/content-slider/content-slider.php:336
1751
- #: modules/content-slider/content-slider.php:405
1752
- #: modules/content-slider/content-slider.php:755 modules/photo/photo.php:25
1753
- #: modules/photo/photo.php:408
1754
  msgid "Photo"
1755
  msgstr "Afbeelding"
1756
 
1757
  # @ fl-builder
1758
- #: includes/column-settings.php:124 includes/row-settings.php:164
1759
  msgid "Repeat"
1760
  msgstr "Herhaal"
1761
 
1762
  # @ fl-builder
1763
- #: includes/column-settings.php:127 includes/row-settings.php:167
1764
  msgctxt "Background repeat."
1765
  msgid "None"
1766
  msgstr "Niet"
1767
 
1768
  # @ fl-builder
1769
- #: includes/column-settings.php:128 includes/row-settings.php:168
1770
  msgctxt "Background repeat."
1771
  msgid "Tile"
1772
  msgstr "Tegel"
1773
 
1774
  # @ fl-builder
1775
- #: includes/column-settings.php:129 includes/row-settings.php:169
1776
  msgctxt "Background repeat."
1777
  msgid "Horizontal"
1778
  msgstr "Horizontaal"
1779
 
1780
  # @ fl-builder
1781
- #: includes/column-settings.php:130 includes/row-settings.php:170
1782
  msgctxt "Background repeat."
1783
  msgid "Vertical"
1784
  msgstr "Verticaal"
1785
 
1786
- #: includes/column-settings.php:132 includes/row-settings.php:172
1787
  msgid ""
1788
  "Repeat applies to how the image should display in the background. Choosing "
1789
  "none will display the image as uploaded. Tile will repeat the image as many "
@@ -1797,79 +1872,89 @@ msgstr ""
1797
  "horizontaal of verticaal te herhalen."
1798
 
1799
  # @ fl-builder
1800
- #: includes/column-settings.php:142 includes/row-settings.php:182
 
 
 
 
 
 
 
 
 
1801
  msgid "Left Top"
1802
  msgstr "Links Boven"
1803
 
1804
  # @ fl-builder
1805
- #: includes/column-settings.php:143 includes/row-settings.php:183
1806
  msgid "Left Center"
1807
  msgstr "Links Midden"
1808
 
1809
  # @ fl-builder
1810
- #: includes/column-settings.php:144 includes/row-settings.php:184
1811
  msgid "Left Bottom"
1812
  msgstr "Links Onder"
1813
 
1814
  # @ fl-builder
1815
- #: includes/column-settings.php:145 includes/row-settings.php:185
1816
  msgid "Right Top"
1817
  msgstr "Recht Boven"
1818
 
1819
  # @ fl-builder
1820
- #: includes/column-settings.php:146 includes/row-settings.php:186
1821
  msgid "Right Center"
1822
  msgstr "Rechts Midden"
1823
 
1824
  # @ fl-builder
1825
- #: includes/column-settings.php:147 includes/row-settings.php:187
1826
  msgid "Right Bottom"
1827
  msgstr "Recht Onder"
1828
 
1829
  # @ fl-builder
1830
- #: includes/column-settings.php:148 includes/row-settings.php:188
1831
  msgid "Center Top"
1832
  msgstr "Midden Boven"
1833
 
1834
  # @ fl-builder
1835
- #: includes/column-settings.php:149 includes/row-settings.php:189
1836
- #: modules/button/button.php:227 modules/callout/callout.php:252
1837
- #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1838
- #: modules/heading/heading.php:90 modules/heading/heading.php:162
1839
- #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1840
- #: modules/menu/menu.php:158 modules/photo/photo.php:434
1841
- #: modules/social-buttons/social-buttons.php:100
 
1842
  msgid "Center"
1843
  msgstr "Gecentreerd"
1844
 
1845
  # @ fl-builder
1846
- #: includes/column-settings.php:150 includes/row-settings.php:190
1847
  msgid "Center Bottom"
1848
  msgstr "Midden Onder"
1849
 
1850
- #: includes/column-settings.php:152 includes/row-settings.php:192
1851
  msgid "Position will tell the image where it should sit in the background."
1852
  msgstr "Positie zal de positie van de afbeelding in de achtergrond instellen."
1853
 
1854
  # @ fl-builder
1855
- #: includes/column-settings.php:159 includes/row-settings.php:199
1856
  msgid "Attachment"
1857
  msgstr "Gehechtheid"
1858
 
1859
  # @ fl-builder
1860
- #: includes/column-settings.php:162 includes/row-settings.php:202
1861
- #: modules/post-grid/post-grid.php:78
1862
  msgid "Scroll"
1863
  msgstr "Scroll"
1864
 
1865
  # @ fl-builder
1866
- #: includes/column-settings.php:163 includes/global-settings.php:69
1867
  #: includes/global-settings.php:83 includes/row-settings.php:19
1868
- #: includes/row-settings.php:37 includes/row-settings.php:203
1869
  msgid "Fixed"
1870
  msgstr "Vastgezet"
1871
 
1872
- #: includes/column-settings.php:165 includes/row-settings.php:205
1873
  msgid ""
1874
  "Attachment will specify how the image reacts when scrolling a page. When "
1875
  "scrolling is selected, the image will scroll with page scrolling. This is "
@@ -1883,27 +1968,27 @@ msgstr ""
1883
  "is ingesteld op verschalen."
1884
 
1885
  # @ fl-builder
1886
- #: includes/column-settings.php:172 includes/row-settings.php:212
1887
  msgid "Scale"
1888
  msgstr "Schaal"
1889
 
1890
  # @ fl-builder
1891
- #: includes/column-settings.php:175 includes/row-settings.php:215
1892
  msgctxt "Background scale."
1893
  msgid "None"
1894
  msgstr "Geen"
1895
 
1896
  # @ fl-builder
1897
- #: includes/column-settings.php:176 includes/row-settings.php:216
1898
  msgid "Fit"
1899
  msgstr "Passend"
1900
 
1901
  # @ fl-builder
1902
- #: includes/column-settings.php:177 includes/row-settings.php:217
1903
  msgid "Fill"
1904
  msgstr "Uitvullen"
1905
 
1906
- #: includes/column-settings.php:179 includes/row-settings.php:219
1907
  msgid ""
1908
  "Scale applies to how the image should display in the background. You can "
1909
  "select either fill or fit to the background."
@@ -1912,27 +1997,27 @@ msgstr ""
1912
  "kiezen uit vullen of aan te passen op de achtergrond."
1913
 
1914
  # @ fl-builder
1915
- #: includes/column-settings.php:187 includes/row-settings.php:366
1916
  msgid "Background Overlay"
1917
  msgstr "Achtergrond Overlay"
1918
 
1919
  # @ fl-builder
1920
- #: includes/column-settings.php:191 includes/row-settings.php:370
1921
  msgid "Overlay Color"
1922
  msgstr "Overlay Kleur"
1923
 
1924
  # @ fl-builder
1925
- #: includes/column-settings.php:199 includes/row-settings.php:378
1926
  msgid "Overlay Opacity"
1927
  msgstr "Overlay Dichtheid"
1928
 
1929
  # @ fl-builder
1930
- #: includes/column-settings.php:211 includes/row-settings.php:390
1931
  msgid "Border"
1932
  msgstr "Rand"
1933
 
1934
  # @ fl-builder
1935
- #: includes/column-settings.php:217 includes/row-settings.php:396
1936
  msgid ""
1937
  "The type of border to use. Double borders must have a width of at least 3px "
1938
  "to render properly."
@@ -1941,245 +2026,238 @@ msgstr ""
1941
  "breedte van 3px te hebben om goed te worden weergegeven."
1942
 
1943
  # @ fl-builder
1944
- #: includes/column-settings.php:219 includes/row-settings.php:398
1945
  msgctxt "Border type."
1946
  msgid "None"
1947
  msgstr "Geen"
1948
 
1949
  # @ fl-builder
1950
- #: includes/column-settings.php:220 includes/row-settings.php:399
1951
- #: modules/separator/separator.php:75
1952
  msgctxt "Border type."
1953
  msgid "Solid"
1954
  msgstr "Vast"
1955
 
1956
  # @ fl-builder
1957
- #: includes/column-settings.php:221 includes/row-settings.php:400
1958
- #: modules/separator/separator.php:76
1959
  msgctxt "Border type."
1960
  msgid "Dashed"
1961
  msgstr "Gestreept"
1962
 
1963
  # @ fl-builder
1964
- #: includes/column-settings.php:222 includes/row-settings.php:401
1965
- #: modules/separator/separator.php:77
1966
  msgctxt "Border type."
1967
  msgid "Dotted"
1968
  msgstr "Gestippeld"
1969
 
1970
  # @ fl-builder
1971
- #: includes/column-settings.php:223 includes/row-settings.php:402
1972
- #: modules/separator/separator.php:78
1973
  msgctxt "Border type."
1974
  msgid "Double"
1975
  msgstr "Dubbel"
1976
 
1977
  # @ fl-builder
1978
- #: includes/column-settings.php:267 includes/row-settings.php:446
1979
  msgid "Top Width"
1980
  msgstr "Boven Breedte"
1981
 
1982
  # @ fl-builder
1983
- #: includes/column-settings.php:279 includes/row-settings.php:458
1984
  msgid "Bottom Width"
1985
  msgstr "Onder Breedte"
1986
 
1987
  # @ fl-builder
1988
- #: includes/column-settings.php:291 includes/row-settings.php:470
1989
  msgid "Left Width"
1990
  msgstr "Links Breedte"
1991
 
1992
  # @ fl-builder
1993
- #: includes/column-settings.php:303 includes/row-settings.php:482
1994
  msgid "Right Width"
1995
  msgstr "Rechts Breedte"
1996
 
1997
  # @ fl-builder
1998
- #: includes/column-settings.php:318 includes/module-settings.php:6
1999
- #: includes/row-settings.php:497 modules/content-slider/content-slider.php:274
2000
  msgid "Advanced"
2001
  msgstr "Geavanceerd"
2002
 
2003
  # @ fl-builder
2004
- #: includes/column-settings.php:321 includes/global-settings.php:41
2005
  #: includes/global-settings.php:94 includes/module-settings.php:9
2006
- #: includes/row-settings.php:500
2007
  msgid "Margins"
2008
  msgstr "Marges"
2009
 
2010
  # @ fl-builder
2011
- #: includes/column-settings.php:325 includes/column-settings.php:378
2012
- #: includes/module-settings.php:13 includes/row-settings.php:504
2013
- #: includes/row-settings.php:557 modules/slideshow/slideshow.php:483
2014
  msgid "Top"
2015
  msgstr "Boven"
2016
 
2017
  # @ fl-builder
2018
- #: includes/column-settings.php:337 includes/column-settings.php:390
2019
- #: includes/module-settings.php:25 includes/row-settings.php:516
2020
- #: includes/row-settings.php:569 modules/post-slider/post-slider.php:632
2021
- #: modules/slideshow/slideshow.php:482
2022
  msgid "Bottom"
2023
  msgstr "Onder"
2024
 
2025
  # @ fl-builder
2026
- #: includes/column-settings.php:349 includes/column-settings.php:402
2027
- #: includes/module-settings.php:37 includes/row-settings.php:528
2028
- #: includes/row-settings.php:581 modules/button/button.php:228
2029
- #: modules/callout/callout.php:253
2030
- #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
2031
- #: modules/heading/heading.php:89 modules/heading/heading.php:161
2032
- #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
2033
- #: modules/menu/menu.php:157 modules/photo/photo.php:433
2034
  #: modules/post-slider/post-slider.php:630
2035
  #: modules/post-slider/post-slider.php:649
2036
- #: modules/social-buttons/social-buttons.php:101
 
2037
  msgid "Left"
2038
  msgstr "Links"
2039
 
2040
  # @ fl-builder
2041
- #: includes/column-settings.php:361 includes/column-settings.php:414
2042
- #: includes/module-settings.php:49 includes/row-settings.php:540
2043
- #: includes/row-settings.php:593 modules/button/button.php:229
2044
- #: modules/callout/callout.php:254
2045
- #: modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
2046
- #: modules/heading/heading.php:91 modules/heading/heading.php:163
2047
- #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
2048
- #: modules/menu/menu.php:159 modules/photo/photo.php:435
2049
  #: modules/post-slider/post-slider.php:631
2050
  #: modules/post-slider/post-slider.php:650
2051
- #: modules/social-buttons/social-buttons.php:102
 
2052
  msgid "Right"
2053
  msgstr "Rechts"
2054
 
2055
  # @ fl-builder
2056
- #: includes/column-settings.php:374 includes/global-settings.php:49
2057
- #: includes/row-settings.php:553 modules/button/button.php:242
2058
- #: modules/callout/callout.php:609
2059
- #: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
2060
- #: modules/subscribe-form/subscribe-form.php:273
 
2061
  msgid "Padding"
2062
  msgstr "Padding"
2063
 
2064
  # @ fl-builder
2065
- #: includes/column-settings.php:427 includes/global-settings.php:103
2066
- #: includes/module-settings.php:62 includes/row-settings.php:606
2067
  msgid "Responsive Layout"
2068
  msgstr "Responsive Layout"
2069
 
2070
  # @ fl-builder
2071
- #: includes/column-settings.php:431 includes/module-settings.php:66
2072
- #: includes/row-settings.php:610 modules/slideshow/slideshow.php:298
2073
  msgid "Display"
2074
  msgstr "Weergave"
2075
 
2076
  # @ fl-builder
2077
- #: includes/column-settings.php:433 includes/module-settings.php:68
2078
- #: includes/row-settings.php:612
2079
  msgid "Always"
2080
  msgstr "Altijd"
2081
 
2082
  # @ fl-builder
2083
- #: includes/column-settings.php:434 includes/module-settings.php:69
2084
- #: includes/row-settings.php:613
2085
  msgid "Large Devices Only"
2086
  msgstr "Alleen Grote Apparaten"
2087
 
2088
  # @ fl-builder
2089
- #: includes/column-settings.php:435 includes/module-settings.php:70
2090
- #: includes/row-settings.php:614
2091
  msgid "Large &amp; Medium Devices Only"
2092
  msgstr "Alleen Grote &amp; Medium Apparaten"
2093
 
2094
  # @ fl-builder
2095
- #: includes/column-settings.php:436 includes/module-settings.php:71
2096
- #: includes/row-settings.php:615
2097
  msgid "Medium Devices Only"
2098
  msgstr "Alleen Medium Apparaten"
2099
 
2100
  # @ fl-builder
2101
- #: includes/column-settings.php:437 includes/module-settings.php:72
2102
- #: includes/row-settings.php:616
2103
  msgid "Medium &amp; Small Devices Only"
2104
  msgstr "Alleen Medium &amp; Kleine Apparaten"
2105
 
2106
  # @ fl-builder
2107
- #: includes/column-settings.php:438 includes/module-settings.php:73
2108
- #: includes/row-settings.php:617
2109
  msgid "Small Devices Only"
2110
  msgstr "Alleen Kleine Apparaten"
2111
 
2112
  # @ fl-builder
2113
- #: includes/column-settings.php:440
2114
  msgid "Choose whether to show or hide this column at different device sizes."
2115
  msgstr ""
2116
  "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
2117
  "afmetingen."
2118
 
2119
  # @ fl-builder
2120
- #: includes/column-settings.php:447
2121
  msgid "Medium Device Width"
2122
  msgstr "Medium Apparaat Breedte"
2123
 
2124
  # @ fl-builder
2125
- #: includes/column-settings.php:448
2126
  msgid "The width of this column on medium devices such as tablets."
2127
  msgstr "De breedte van deze kolom op medium apparaten zoals tablets."
2128
 
2129
  # @ fl-builder
2130
- #: includes/column-settings.php:450 includes/column-settings.php:478
2131
- #: modules/callout/callout.php:284
2132
- #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
2133
- #: modules/heading/heading.php:117 modules/heading/heading.php:144
2134
- #: modules/heading/heading.php:174 modules/menu/menu.php:156
2135
- #: modules/post-slider/post-slider.php:602
2136
- msgid "Default"
2137
- msgstr "Standaard"
2138
-
2139
- # @ fl-builder
2140
- #: includes/column-settings.php:451 includes/column-settings.php:479
2141
- #: modules/button/button.php:202 modules/callout/callout.php:285
2142
- #: modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
2143
- #: modules/heading/heading.php:118 modules/heading/heading.php:145
2144
- #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:603
2145
- #: modules/social-buttons/social-buttons.php:74
2146
  msgid "Custom"
2147
  msgstr "Aangepast"
2148
 
2149
  # @ fl-builder
2150
- #: includes/column-settings.php:464
2151
  msgid "Custom Medium Device Width"
2152
  msgstr "Aangepaste Medium Apparaat Breedte"
2153
 
2154
  # @ fl-builder
2155
- #: includes/column-settings.php:475
2156
  msgid "Small Device Width"
2157
  msgstr "Klein Apparaat Breedte"
2158
 
2159
  # @ fl-builder
2160
- #: includes/column-settings.php:476
2161
  msgid "The width of this column on small devices such as phones."
2162
  msgstr "De breedte van deze kolom op kleine apparaten zoals telefoons."
2163
 
2164
  # @ fl-builder
2165
- #: includes/column-settings.php:492
2166
  msgid "Custom Small Device Width"
2167
  msgstr "Aangepaste Kleine Apparaat Breedte"
2168
 
2169
  # @ fl-builder
2170
- #: includes/column-settings.php:504 includes/module-settings.php:115
2171
- #: includes/row-settings.php:627
2172
  msgid "CSS Selectors"
2173
  msgstr "CSS selectors"
2174
 
2175
  # @ fl-builder
2176
- #: includes/column-settings.php:508 includes/loop-settings.php:28
2177
- #: includes/module-settings.php:119 includes/row-settings.php:631
2178
  msgid "ID"
2179
  msgstr "ID"
2180
 
2181
  # @ fl-builder
2182
- #: includes/column-settings.php:509
2183
  msgid ""
2184
  "A unique ID that will be applied to this column's HTML. Must start with a "
2185
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
@@ -2189,12 +2267,12 @@ msgstr ""
2189
  "getallen bevatten. Geen spaties."
2190
 
2191
  # @ fl-builder
2192
- #: includes/column-settings.php:516
2193
  msgid "CSS Class"
2194
  msgstr "CSS Class"
2195
 
2196
  # @ fl-builder
2197
- #: includes/column-settings.php:517
2198
  msgid ""
2199
  "A class that will be applied to this column's HTML. Must start with a letter "
2200
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
@@ -2217,14 +2295,14 @@ msgid "Select Icon"
2217
  msgstr "Icoon Kiezen"
2218
 
2219
  # @ fl-builder
2220
- #: includes/field-icon.php:5 includes/field-photo.php:13
2221
  msgid "Replace"
2222
  msgstr "Vervangen"
2223
 
2224
  # @ fl-builder
2225
- #: includes/field-icon.php:7 includes/ui-js-config.php:65
2226
- #: includes/ui-js-templates.php:15 includes/ui-js-templates.php:32
2227
- #: includes/ui-js-templates.php:56
2228
  msgid "Remove"
2229
  msgstr "Verwijder"
2230
 
@@ -2238,17 +2316,36 @@ msgstr "Selecteer"
2238
  msgid "Enter a post title to search."
2239
  msgstr "Geef een post titel om te zoeken."
2240
 
2241
- #: includes/field-link.php:6 includes/field-suggest.php:7
2242
  msgid "Start typing..."
2243
  msgstr "Begin met typen..."
2244
 
2245
  # @ fl-builder
2246
  #: includes/field-link.php:7 includes/icon-selector.php:28
2247
  #: includes/settings.php:71 includes/template-selector.php:92
2248
- #: includes/ui-js-config.php:22 includes/ui-js-templates.php:72
2249
  msgid "Cancel"
2250
  msgstr "Annuleren"
2251
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2252
  # @ fl-builder
2253
  #: includes/field-multiple-photos.php:20
2254
  #, php-format
@@ -2273,12 +2370,17 @@ msgid "Add Photos"
2273
  msgstr "Afbeeldingen Toevoegen"
2274
 
2275
  # @ fl-builder
2276
- #: includes/field-photo.php:3 includes/ui-js-config.php:71
2277
  msgid "Select Photo"
2278
  msgstr "Selecteer Afbeelding"
2279
 
2280
  # @ fl-builder
2281
- #: includes/field-video.php:3 includes/ui-js-config.php:73
 
 
 
 
 
2282
  msgid "Select Video"
2283
  msgstr "Selecteer Video"
2284
 
@@ -2287,31 +2389,38 @@ msgstr "Selecteer Video"
2287
  msgid "Replace Video"
2288
  msgstr "Vervang Video"
2289
 
 
 
 
 
2290
  # @ fl-builder
2291
  #: includes/global-settings.php:7 includes/node-template-settings.php:7
2292
- #: includes/template-settings.php:7 includes/user-template-settings.php:7
2293
- #: modules/accordion/accordion.php:110 modules/button/button.php:59
2294
- #: modules/callout/callout.php:210 modules/contact-form/contact-form.php:58
2295
- #: modules/content-slider/content-slider.php:191
2296
- #: modules/content-slider/content-slider.php:315 modules/cta/cta.php:68
2297
- #: modules/gallery/gallery.php:220 modules/heading/heading.php:26
2298
- #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
2299
- #: modules/icon/icon.php:27 modules/map/map.php:26 modules/menu/menu.php:82
2300
- #: modules/photo/photo.php:384 modules/pricing-table/pricing-table.php:87
2301
- #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
2302
- #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
2303
- #: modules/social-buttons/social-buttons.php:64
2304
- #: modules/subscribe-form/subscribe-form.php:87 modules/tabs/tabs.php:77
2305
- #: modules/testimonials/testimonials.php:30
2306
- #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
2307
- #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
 
 
2308
  msgid "General"
2309
  msgstr "Algemeen"
2310
 
2311
- # @ fl-builder
2312
  #: includes/global-settings.php:8
2313
- msgid "Note: These settings apply to all posts and pages."
2314
- msgstr "Opmerking: Deze instellingen gelden voor alle berichten en pagina's."
 
 
2315
 
2316
  # @ fl-builder
2317
  #: includes/global-settings.php:11
@@ -2374,7 +2483,8 @@ msgstr "Standaard Rij Breedte"
2374
  # @ fl-builder
2375
  #: includes/global-settings.php:70 includes/global-settings.php:84
2376
  #: includes/row-settings.php:20 includes/row-settings.php:38
2377
- #: modules/button/button.php:201 modules/callout/callout.php:596
 
2378
  msgid "Full Width"
2379
  msgstr "Volledige Breedte"
2380
 
@@ -2437,12 +2547,24 @@ msgstr ""
2437
  "De browserbreedte waarbij de layout voor kleine apparaten zoals telefoons "
2438
  "aangepast zal worden."
2439
 
 
 
 
 
 
 
 
 
2440
  # @ fl-builder
2441
  #: includes/icon-selector.php:5
2442
  msgctxt "Select option for showing all icon libraries."
2443
  msgid "All Libraries"
2444
  msgstr "Alle bibliotheken"
2445
 
 
 
 
 
2446
  # @ fl-builder
2447
  #: includes/loop-settings.php:20
2448
  msgid "Post Type"
@@ -2454,9 +2576,10 @@ msgid "Order By"
2454
  msgstr "Sorteer Op"
2455
 
2456
  # @ fl-builder
2457
- #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
2458
- #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:508
2459
- #: modules/woocommerce/woocommerce.php:189
 
2460
  msgid "Date"
2461
  msgstr "Datum"
2462
 
@@ -2466,14 +2589,15 @@ msgid "Date Last Modified"
2466
  msgstr "Datum Laatst Gewijzigd"
2467
 
2468
  # @ fl-builder
2469
- #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90
2470
- #: modules/pricing-table/pricing-table.php:94
 
2471
  msgid "Title"
2472
  msgstr "Titel"
2473
 
2474
  # @ fl-builder
2475
- #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
2476
- #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:499
2477
  msgid "Author"
2478
  msgstr "Auteur"
2479
 
@@ -2498,12 +2622,12 @@ msgid "Order"
2498
  msgstr "Volgorde"
2499
 
2500
  # @ fl-builder
2501
- #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
2502
  msgid "Descending"
2503
  msgstr "Aflopend"
2504
 
2505
  # @ fl-builder
2506
- #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
2507
  msgid "Ascending"
2508
  msgstr "Oplopend"
2509
 
@@ -2600,24 +2724,24 @@ msgstr "Schuif Onder"
2600
 
2601
  # @ fl-builder
2602
  #: includes/module-settings.php:102
2603
- #: modules/content-slider/content-slider.php:230
2604
- #: modules/post-carousel/post-carousel.php:145
2605
  #: modules/post-slider/post-slider.php:363
2606
- #: modules/testimonials/testimonials.php:91
2607
  msgid "Delay"
2608
  msgstr "Vertraging"
2609
 
2610
  # @ fl-builder
2611
- #: includes/module-settings.php:106 includes/row-settings.php:290
2612
- #: includes/row-settings.php:321 modules/content-slider/content-slider.php:234
2613
- #: modules/content-slider/content-slider.php:251
2614
- #: modules/post-carousel/post-carousel.php:148
2615
- #: modules/post-carousel/post-carousel.php:164
2616
  #: modules/post-slider/post-slider.php:366
2617
- #: modules/post-slider/post-slider.php:391 modules/slideshow/slideshow.php:393
2618
- #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
2619
- #: modules/testimonials/testimonials.php:95
2620
- #: modules/testimonials/testimonials.php:112
2621
  msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2622
  msgid "seconds"
2623
  msgstr "seconden"
@@ -2638,7 +2762,7 @@ msgstr ""
2638
  "getallen bevatten. Geen spaties."
2639
 
2640
  # @ fl-builder
2641
- #: includes/module-settings.php:127 includes/row-settings.php:639
2642
  msgid "Class"
2643
  msgstr "Class"
2644
 
@@ -2660,7 +2784,7 @@ msgid "Save %s Template"
2660
  msgstr "%s Template Opslaan"
2661
 
2662
  # @ fl-builder
2663
- #: includes/node-template-settings.php:14 includes/template-settings.php:14
2664
  #: includes/user-template-settings.php:15
2665
  msgctxt "Template name."
2666
  msgid "Name"
@@ -2679,14 +2803,15 @@ msgstr ""
2679
  "op één plaats."
2680
 
2681
  # @ fl-builder
2682
- #: includes/row-settings.php:6 includes/ui-js-config.php:67
2683
  #: includes/ui-js-templates.php:12
2684
  msgid "Row Settings"
2685
  msgstr "Rij Instellingen"
2686
 
2687
  # @ fl-builder
2688
- #: includes/row-settings.php:16 modules/button/button.php:197
2689
- #: modules/content-slider/content-slider.php:484
 
2690
  msgid "Width"
2691
  msgstr "Breed"
2692
 
@@ -2716,97 +2841,123 @@ msgstr ""
2716
  "Instellingen."
2717
 
2718
  # @ fl-builder
2719
- #: includes/row-settings.php:48 modules/button/button.php:120
2720
- #: modules/cta/cta.php:188 modules/heading/heading.php:72
2721
- #: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2722
- #: modules/post-carousel/post-carousel.php:392
2723
- #: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:680
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2724
  msgid "Colors"
2725
  msgstr "Kleuren"
2726
 
2727
  # @ fl-builder
2728
- #: includes/row-settings.php:52 modules/button/button.php:139
2729
- #: modules/callout/callout.php:534
2730
- #: modules/content-slider/content-slider.php:529
2731
- #: modules/content-slider/content-slider.php:651
2732
- #: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192
2733
- #: modules/cta/cta.php:289 modules/heading/heading.php:77
2734
- #: modules/post-carousel/post-carousel.php:396
2735
- #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:684
2736
- #: modules/subscribe-form/subscribe-form.php:207
 
 
2737
  msgid "Text Color"
2738
  msgstr "Tekst kleur"
2739
 
2740
  # @ fl-builder
2741
- #: includes/row-settings.php:95
2742
  msgctxt "Background type."
2743
  msgid "Video"
2744
  msgstr "Video"
2745
 
2746
  # @ fl-builder
2747
- #: includes/row-settings.php:97
2748
  msgctxt "Background type."
2749
  msgid "Slideshow"
2750
  msgstr "Diavoorstelling"
2751
 
2752
  # @ fl-builder
2753
- #: includes/row-settings.php:101
2754
  msgctxt "Background type."
2755
  msgid "Parallax"
2756
  msgstr "Parallax"
2757
 
2758
  # @ fl-builder
2759
- #: includes/row-settings.php:227
2760
  msgid "Background Video"
2761
  msgstr "Achtergrond Video"
2762
 
2763
- # @ fl-builder
2764
- #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
2765
- #: modules/video/video.php:19 modules/video/video.php:100
2766
- msgid "Video"
2767
- msgstr "Video"
2768
 
2769
- # @ fl-builder
2770
- #: includes/row-settings.php:232
 
 
 
 
 
 
 
 
 
 
 
2771
  msgid ""
2772
- "An HTML5 video to use as the background of this row. Supported types are "
2773
- "MP4, WebM and Ogg."
2774
  msgstr ""
2775
- "Een HTML5 video om te gebruiken als de achtergrond van deze rij. "
2776
- "Ondersteunde types zijn MP4, WebM en Ogg."
2777
 
2778
  # @ fl-builder
2779
- #: includes/row-settings.php:239
2780
  msgid "Fallback Photo"
2781
  msgstr "Terugval Afbeelding"
2782
 
2783
  # @ fl-builder
2784
- #: includes/row-settings.php:240
2785
  msgid "A photo that will be displayed if the video fails to load."
2786
  msgstr ""
2787
  "Een afbeelding die wordt weergegeven als de video niet kan worden geladen."
2788
 
2789
  # @ fl-builder
2790
- #: includes/row-settings.php:248
2791
  msgid "Background Slideshow"
2792
  msgstr "Achtergrond Diavoorstelling"
2793
 
2794
  # @ fl-builder
2795
- #: includes/row-settings.php:252 modules/gallery/gallery.php:241
2796
- #: modules/slideshow/slideshow.php:271
2797
  msgid "Source"
2798
  msgstr "Bron"
2799
 
2800
  # @ fl-builder
2801
- #: includes/row-settings.php:255 modules/gallery/gallery.php:244
2802
- #: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
2803
- #: modules/video/video.php:86
2804
  msgid "Media Library"
2805
  msgstr "Media Bibliotheek"
2806
 
2807
  # @ fl-builder
2808
- #: includes/row-settings.php:258 modules/gallery/gallery.php:247
2809
- #: modules/slideshow/slideshow.php:277
2810
  msgid ""
2811
  "Pull images from the WordPress media library or a gallery on your SmugMug "
2812
  "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
@@ -2818,133 +2969,133 @@ msgstr ""
2818
  "gallery."
2819
 
2820
  # @ fl-builder
2821
- #: includes/row-settings.php:273 modules/gallery/gallery.php:259
2822
- #: modules/slideshow/slideshow.php:289
2823
  msgid "Photos"
2824
  msgstr "Afbeeldingen"
2825
 
2826
  # @ fl-builder
2827
- #: includes/row-settings.php:280 modules/gallery/gallery.php:263
2828
- #: modules/slideshow/slideshow.php:293
2829
  msgid "Feed URL"
2830
  msgstr "Feed URL"
2831
 
2832
  # @ fl-builder
2833
- #: includes/row-settings.php:287 includes/row-settings.php:352
2834
- #: modules/slideshow/slideshow.php:390
2835
  msgid "Speed"
2836
  msgstr "Snelheid"
2837
 
2838
  # @ fl-builder
2839
- #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
2840
- #: modules/post-slider/post-slider.php:370 modules/slideshow/slideshow.php:397
2841
- #: modules/testimonials/testimonials.php:99
2842
  msgid "Transition"
2843
  msgstr "Overgang"
2844
 
2845
  # @ fl-builder
2846
- #: includes/row-settings.php:300
2847
  msgctxt "Slideshow transition type."
2848
  msgid "None"
2849
  msgstr "Geen"
2850
 
2851
  # @ fl-builder
2852
- #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
2853
- #: modules/post-carousel/post-carousel.php:241
2854
- #: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:373
2855
- #: modules/slideshow/slideshow.php:401
2856
- #: modules/testimonials/testimonials.php:103
2857
  msgid "Fade"
2858
  msgstr "Vervagen"
2859
 
2860
  # @ fl-builder
2861
- #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
2862
  msgid "Ken Burns"
2863
  msgstr "Ken Burns"
2864
 
2865
  # @ fl-builder
2866
- #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
2867
  msgid "Slide Horizontal"
2868
  msgstr "Schuif Horizontaal"
2869
 
2870
  # @ fl-builder
2871
- #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
2872
  msgid "Slide Vertical"
2873
  msgstr "Schuif Vertikaal"
2874
 
2875
  # @ fl-builder
2876
- #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
2877
  msgid "Blinds"
2878
  msgstr "Blinds"
2879
 
2880
  # @ fl-builder
2881
- #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
2882
  msgid "Bars"
2883
  msgstr "Balken"
2884
 
2885
  # @ fl-builder
2886
- #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
2887
  msgid "Random Bars"
2888
  msgstr "Willekeurige Balken"
2889
 
2890
  # @ fl-builder
2891
- #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
2892
  msgid "Boxes"
2893
  msgstr "Vakken"
2894
 
2895
  # @ fl-builder
2896
- #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
2897
  msgid "Random Boxes"
2898
  msgstr "Willekeurige Vakken"
2899
 
2900
  # @ fl-builder
2901
- #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
2902
  msgid "Boxes Grow"
2903
  msgstr "Groeiende Vakken"
2904
 
2905
  # @ fl-builder
2906
- #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
2907
- #: modules/post-carousel/post-carousel.php:161
2908
- #: modules/post-slider/post-slider.php:388 modules/slideshow/slideshow.php:415
2909
- #: modules/testimonials/testimonials.php:108
2910
  msgid "Transition Speed"
2911
  msgstr "Animatie snelheid"
2912
 
2913
  # @ fl-builder
2914
- #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
2915
  msgid "Randomize Photos"
2916
  msgstr "Willekeurige Afbeeldingen"
2917
 
2918
  # @ fl-builder
2919
- #: includes/row-settings.php:341
2920
  msgid "Background Parallax"
2921
  msgstr "Achtergrond Parallax"
2922
 
2923
  # @ fl-builder
2924
- #: includes/row-settings.php:355
2925
  msgid "Fast"
2926
  msgstr "Snel"
2927
 
2928
  # @ fl-builder
2929
- #: includes/row-settings.php:356
2930
  msgctxt "Speed."
2931
  msgid "Medium"
2932
  msgstr "Medium"
2933
 
2934
  # @ fl-builder
2935
- #: includes/row-settings.php:357
2936
  msgid "Slow"
2937
  msgstr "Langzaam"
2938
 
2939
  # @ fl-builder
2940
- #: includes/row-settings.php:619
2941
  msgid "Choose whether to show or hide this row at different device sizes."
2942
  msgstr ""
2943
  "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
2944
  "afmetingen."
2945
 
2946
  # @ fl-builder
2947
- #: includes/row-settings.php:632
2948
  msgid ""
2949
  "A unique ID that will be applied to this row's HTML. Must start with a "
2950
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
@@ -2954,7 +3105,7 @@ msgstr ""
2954
  "getallen bevatten. Geen spaties."
2955
 
2956
  # @ fl-builder
2957
- #: includes/row-settings.php:640
2958
  msgid ""
2959
  "A class that will be applied to this row's HTML. Must start with a letter "
2960
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
@@ -3003,27 +3154,32 @@ msgctxt "Template name."
3003
  msgid "Blank"
3004
  msgstr "Blanco"
3005
 
3006
- #: includes/template-settings.php:18
3007
- msgid "Image Filename"
3008
- msgstr "Afbeelding Bestandsnaam"
3009
-
3010
- #: includes/template-settings.php:19
3011
- msgid ""
3012
- "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
3013
- "templates/\" directory."
3014
- msgstr ""
3015
- "De bestandsnaam van de afbeelding zoals \"thumb.jpg\" dat zich bevind in de "
3016
- "\"img/templates/\" directory."
3017
 
3018
- #: includes/ui-js-config.php:21
3019
  msgid "What would you like to do?"
3020
  msgstr "Wat wil je doen?"
3021
 
3022
- #: includes/ui-js-config.php:23
 
 
 
 
 
 
 
 
 
 
 
 
3023
  msgid "Change Template"
3024
  msgstr "Verander Template"
3025
 
3026
- #: includes/ui-js-config.php:24
3027
  msgid ""
3028
  "Warning! Changing the template will replace your existing layout. Do you "
3029
  "really want to do this?"
@@ -3031,22 +3187,34 @@ msgstr ""
3031
  "Waarschuwing! Het veranderen van het template zal je bestaande layout "
3032
  "vervangen. Weet je zeker dat je dit wilt doen?"
3033
 
3034
- #: includes/ui-js-config.php:25 includes/ui-js-templates.php:29
 
 
 
 
 
 
 
 
3035
  msgid "Column"
3036
  msgstr "Kolom"
3037
 
3038
- #: includes/ui-js-config.php:26
3039
  msgid ""
3040
  "Please select either a background layout or content layout before submitting."
3041
  msgstr ""
3042
  "Selecteer ofwel een achtergrond layout of inhoud layout alvorens verder te "
3043
  "gaan."
3044
 
3045
- #: includes/ui-js-config.php:27
 
 
 
 
3046
  msgid "Remove Account"
3047
  msgstr "Account Verwijderen"
3048
 
3049
- #: includes/ui-js-config.php:28
3050
  msgid ""
3051
  "Are you sure you want to remove this account? Other modules that are "
3052
  "connected to it will be affected."
@@ -3054,27 +3222,28 @@ msgstr ""
3054
  "Weet je zeker dat je dit account wil verwijderen? Andere modules die "
3055
  "verbonden zijn zullen ook worden beïnvloed."
3056
 
3057
- #: includes/ui-js-config.php:29
 
 
 
 
3058
  msgid "Do you really want to delete this item?"
3059
  msgstr "Wil je dit item echt verwijderen?"
3060
 
3061
- #: includes/ui-js-config.php:30
3062
- msgid ""
3063
- "Do you really want to delete this module? All content data will be "
3064
- "permanently deleted."
3065
- msgstr ""
3066
- "Wil je deze module echt verwijderen? Alle inhoud gegevens zullen definitief "
3067
- "verwijderd worden."
3068
 
3069
- #: includes/ui-js-config.php:31
3070
- msgid ""
3071
- "Do you really want to delete this row? All content data will be permanently "
3072
- "deleted."
3073
- msgstr ""
3074
- "Wil je deze rij echt verwijderen? Alle inhoud gegevens zullen definitief "
3075
- "verwijderd worden."
3076
 
3077
- #: includes/ui-js-config.php:33
 
 
 
 
 
3078
  msgid ""
3079
  "WARNING! You are about to delete a global template that may be linked to "
3080
  "other pages. Do you really want to delete this template and unlink it?"
@@ -3083,11 +3252,11 @@ msgstr ""
3083
  "dat kan zijn gekoppeld aan andere pagina's. Wil je echt dit template "
3084
  "verwijderen en het ontkoppelen?"
3085
 
3086
- #: includes/ui-js-config.php:34
3087
  msgid "Discard Changes"
3088
  msgstr "Wijzigingen Negeren"
3089
 
3090
- #: includes/ui-js-config.php:35
3091
  msgid ""
3092
  "Do you really want to discard these changes? All of your changes that are "
3093
  "not published will be lost."
@@ -3095,32 +3264,36 @@ msgstr ""
3095
  "Weet je zeker dat je deze wijzigingen wilt negeren? All je wijzigingen "
3096
  "worden niet gepubliceerd en gaan verloren."
3097
 
3098
- #: includes/ui-js-config.php:37
3099
  msgid "Save Draft"
3100
  msgstr "Concept Opslaan"
3101
 
3102
- #: includes/ui-js-config.php:38 includes/ui-js-templates.php:14
3103
- #: includes/ui-js-templates.php:54
3104
  msgid "Duplicate"
3105
  msgstr "Kopiëren"
3106
 
3107
- #: includes/ui-js-config.php:39
3108
- msgid "Duplicate This Page"
3109
- msgstr "Kopieer deze pagina"
3110
-
3111
- #: includes/ui-js-config.php:40
3112
- msgid "Duplicate This Template"
3113
- msgstr "Kopieer Dit Template"
3114
-
3115
- #: includes/ui-js-config.php:41
3116
- msgid "Edit Global Settings"
3117
- msgstr "Wijzig Globale Instellingen"
3118
 
3119
- #: includes/ui-js-config.php:42
3120
  msgid "Drop a row layout or module to get started!"
3121
  msgstr "Drop een rij layout of module om aan de slag te gaan!"
3122
 
3123
- #: includes/ui-js-config.php:43
 
 
 
 
 
 
 
 
 
 
 
 
3124
  msgid ""
3125
  "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
3126
  "not functioning as expected the cause is most likely this error. Please help "
@@ -3133,159 +3306,179 @@ msgstr ""
3133
  "een weer in te schakelen en tussentijds Beaver Builder te testen om te "
3134
  "bepalen of het probleem is gerelateerd aan een derde partij plugin."
3135
 
3136
- #: includes/ui-js-config.php:44
3137
  msgid "Full Size"
3138
  msgstr "Volledige Grootte"
3139
 
3140
- #: includes/ui-js-config.php:45
3141
  msgid "Get Help"
3142
  msgstr "Hulp zoeken..."
3143
 
3144
  # @ fl-builder
3145
- #: includes/ui-js-config.php:46
3146
  msgid "\"{message}\" on line {line} of {file}."
3147
  msgstr "\"{message}\" op rij {line} van {file}."
3148
 
3149
- #: includes/ui-js-config.php:47
3150
  msgid "Insert"
3151
  msgstr "Invoegen"
3152
 
3153
- #: includes/ui-js-config.php:48
3154
  msgid "Large"
3155
  msgstr "Groot"
3156
 
3157
- #: includes/ui-js-config.php:49
3158
  msgid "Manage Templates"
3159
  msgstr "Templates Beheren"
3160
 
3161
- #: includes/ui-js-config.php:50
3162
  msgid "Medium"
3163
  msgstr "Medium"
3164
 
3165
- #: includes/ui-js-config.php:51
3166
  msgid "Module"
3167
  msgstr "Module"
3168
 
3169
- #: includes/ui-js-config.php:52
3170
  msgid "Module Template Saved!"
3171
  msgstr "Module Template Opgeslagen!"
3172
 
3173
- #: includes/ui-js-config.php:53 includes/ui-js-templates.php:10
3174
- #: includes/ui-js-templates.php:50
3175
  msgid "Move"
3176
  msgstr "Verplaats"
3177
 
3178
- #: includes/ui-js-config.php:54
3179
  msgid "New Column"
3180
  msgstr "Nieuwe Kolom"
3181
 
3182
- #: includes/ui-js-config.php:55
3183
  msgid "New Row"
3184
  msgstr "Nieuwe Rij"
3185
 
3186
- #: includes/ui-js-config.php:56
 
 
 
 
 
 
 
 
3187
  msgid "No results found."
3188
  msgstr "Geen resultaten gevonden."
3189
 
3190
- #: includes/ui-js-config.php:57 includes/ui-panel-node-templates.php:11
3191
  msgid "No saved rows found."
3192
  msgstr "Geen opgeslagen rijen gevonden."
3193
 
3194
- #: includes/ui-js-config.php:58 includes/ui-panel-node-templates.php:42
3195
  msgid "No saved modules found."
3196
  msgstr "Geen opgeslagen modules gevonden."
3197
 
3198
- #: includes/ui-js-config.php:59 includes/ui-js-templates.php:80
3199
  msgid "OK"
3200
  msgstr "OK"
3201
 
3202
  # @ fl-builder
3203
- #: includes/ui-js-config.php:60 modules/photo/photo.php:470
3204
  msgid "Photo Page"
3205
  msgstr "Afbeelding Pagina"
3206
 
3207
- #: includes/ui-js-config.php:61
3208
  msgid "Photo Selected"
3209
  msgstr "Afbeelding Geselecteerd"
3210
 
3211
- #: includes/ui-js-config.php:62
3212
  msgid "Photos Selected"
3213
  msgstr "Afbeeldingen Geselecteerd"
3214
 
3215
- #: includes/ui-js-config.php:63 modules/subscribe-form/includes/frontend.php:15
 
 
 
 
3216
  msgid "Please Wait..."
3217
  msgstr "Even geduld a.u.b..."
3218
 
3219
- #: includes/ui-js-config.php:64
 
 
 
 
3220
  msgid "Publish Changes"
3221
  msgstr "Wijzigingen Publiceren"
3222
 
3223
- #: includes/ui-js-config.php:66 includes/ui-js-templates.php:5
 
 
 
 
3224
  msgid "Row"
3225
  msgstr "Rij"
3226
 
3227
- #: includes/ui-js-config.php:68
3228
  msgid "Row Template Saved!"
3229
  msgstr "Rij Template Opgeslagen!"
3230
 
3231
- #: includes/ui-js-config.php:69
3232
  msgid "Save Core Template"
3233
  msgstr "Core Template Opslaan"
3234
 
3235
  # @ fl-builder
3236
- #: includes/ui-js-config.php:70 includes/user-template-settings.php:4
3237
  msgid "Save Template"
3238
  msgstr "Template Opslaan"
3239
 
3240
- #: includes/ui-js-config.php:72
3241
  msgid "Select Photos"
3242
  msgstr "Selecteer Afbeeldingen"
3243
 
3244
- #: includes/ui-js-config.php:74
3245
  msgid "Please select an account before saving."
3246
  msgstr "Selecteer een account alvorens op te slaan."
3247
 
3248
- #: includes/ui-js-config.php:75
3249
  msgid "Please connect an account before saving."
3250
  msgstr "Activeer eerst een account alvorens op te slaan."
3251
 
3252
- #: includes/ui-js-config.php:76
3253
  msgid "Please select a list before saving."
3254
  msgstr "Selecteer een lijst alvorens op te slaan."
3255
 
3256
- #: includes/ui-js-config.php:77
3257
  msgid "Take a Tour"
3258
  msgstr "Volg een Rondleiding"
3259
 
3260
- #: includes/ui-js-config.php:78
3261
  msgid "Append New Layout"
3262
  msgstr "Nieuwe Layout toevoegen"
3263
 
3264
- #: includes/ui-js-config.php:79
3265
  msgid "Replace Existing Layout"
3266
  msgstr "Vervang Bestaande Layout"
3267
 
3268
- #: includes/ui-js-config.php:80
3269
  msgid "Template Saved!"
3270
  msgstr "Template Opgeslagen!"
3271
 
3272
- #: includes/ui-js-config.php:81 modules/post-slider/post-slider.php:464
3273
  msgid "Thumbnail"
3274
  msgstr "Miniatuur"
3275
 
3276
- #: includes/ui-js-config.php:82
3277
  msgid "Next"
3278
  msgstr "Volgende"
3279
 
3280
- #: includes/ui-js-config.php:83
3281
  msgid "Get Started"
3282
  msgstr "Starten"
3283
 
3284
- #: includes/ui-js-config.php:84
3285
  msgid "Choose a Template"
3286
  msgstr "Kies een Template"
3287
 
3288
- #: includes/ui-js-config.php:85
3289
  msgid ""
3290
  "Get started by choosing a layout template to customize, or build a page from "
3291
  "scratch by selecting the blank layout template."
@@ -3293,11 +3486,11 @@ msgstr ""
3293
  "Ga aan de slag door een layout template te kiezen om aan te passen, of bouw "
3294
  "een pagina uit het niets door de lege layout template te selecteren."
3295
 
3296
- #: includes/ui-js-config.php:86
3297
  msgid "Add Rows"
3298
  msgstr "Rijen Toevoegen"
3299
 
3300
- #: includes/ui-js-config.php:87
3301
  msgid ""
3302
  "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
3303
  "and dropping row layouts onto the page."
@@ -3305,7 +3498,7 @@ msgstr ""
3305
  "Voeg rijen met meerder kolommen toe, pas afstand aan, voeg achtergronden toe "
3306
  "en meer door rij-layouts te slepen naar de pagina."
3307
 
3308
- #: includes/ui-js-config.php:89
3309
  msgid ""
3310
  "Add new content by dragging and dropping modules or widgets into your row "
3311
  "layouts or to create a new row layout."
@@ -3313,30 +3506,30 @@ msgstr ""
3313
  "Voeg nieuwe inhoud toe door modules of widgets in je bestaande rij-layouts "
3314
  "te slepen, of door een nieuwe rij-layout te maken."
3315
 
3316
- #: includes/ui-js-config.php:90
3317
  msgid "Edit Content"
3318
  msgstr "Inhoud Bewerken"
3319
 
3320
- #: includes/ui-js-config.php:91
3321
  msgid ""
3322
  "Move your mouse over rows, columns or modules to edit and interact with them."
3323
  msgstr ""
3324
  "Verplaats je muis over de rijen, kolommen of modules om ze te bewerken en in "
3325
  "te stellen."
3326
 
3327
- #: includes/ui-js-config.php:92
3328
  msgid ""
3329
  "Use the action buttons to perform actions such as moving, editing, "
3330
  "duplicating or deleting rows, columns and modules."
3331
  msgstr ""
3332
- "Gebruik de actie buttons om rijen, kolommen of modules te verplaatsen, "
3333
  "bewerken, kopiëren of verwijderen."
3334
 
3335
- #: includes/ui-js-config.php:93
3336
  msgid "Add More Content"
3337
  msgstr "Meer Inhoud Toevoegen"
3338
 
3339
- #: includes/ui-js-config.php:94
3340
  msgid ""
3341
  "Use the Add Content button to open the content panel and add new row "
3342
  "layouts, modules or widgets."
@@ -3344,37 +3537,37 @@ msgstr ""
3344
  "Gebruik de knop Inhoud Toevoegen om het inhoud paneel te openen en voeg "
3345
  "nieuwe rij-layouts, modules of widgets toe."
3346
 
3347
- #: includes/ui-js-config.php:95
3348
  msgid "Change Templates"
3349
  msgstr "Templates Wijzigen"
3350
 
3351
- #: includes/ui-js-config.php:96
3352
  msgid ""
3353
  "Use the Templates button to pick a new template or append one to your "
3354
  "layout. Appending will insert a new template at the end of your existing "
3355
  "page content."
3356
  msgstr ""
3357
- "Gebruik de Templates button om een nieuwe template te selecteren of voeg een "
3358
  "template toe aan je eigen layout. Wanneer je toevoegt zal de nieuwe template "
3359
  "achter je bestaande inhoud geplaatst worden."
3360
 
3361
- #: includes/ui-js-config.php:97
3362
  msgid "Helpful Tools"
3363
  msgstr "Handige Tools"
3364
 
3365
- #: includes/ui-js-config.php:98
3366
  msgid ""
3367
- "The Tools button lets you duplicate a page, save a template or edit the "
3368
- "global settings."
3369
  msgstr ""
3370
- "De Gereedschappen knop stelt je in staat een pagina te kopiëren, een "
3371
- "template op te slaan of de globale instellingen te bewerken."
3372
 
3373
- #: includes/ui-js-config.php:99
3374
  msgid "Publish Your Changes"
3375
  msgstr "Wijzigingen Publiceren"
3376
 
3377
- #: includes/ui-js-config.php:100
3378
  msgid ""
3379
  "Once you're finished, click the Done button to publish your changes, save a "
3380
  "draft or revert back to the last published state."
@@ -3383,11 +3576,11 @@ msgstr ""
3383
  "publiceren, een concept op te slaan of terug te keren naar de laatst "
3384
  "gepubliceerde staat."
3385
 
3386
- #: includes/ui-js-config.php:101
3387
  msgid "Let's Get Building!"
3388
  msgstr "Laten We Bouwen!"
3389
 
3390
- #: includes/ui-js-config.php:102
3391
  msgid ""
3392
  "Now that you know the basics, you're ready to start building! If at any time "
3393
  "you need help, click the help icon in the upper right corner to access the "
@@ -3397,7 +3590,7 @@ msgstr ""
3397
  "moment hulp nodig hebt, klik dan op het Help-pictogram in de "
3398
  "rechterbovenhoek om het helpmenu te openen. Veel plezier met bouwen!"
3399
 
3400
- #: includes/ui-js-config.php:103
3401
  msgid ""
3402
  "The settings you are currently editing will not be saved if you navigate "
3403
  "away from this page."
@@ -3405,48 +3598,63 @@ msgstr ""
3405
  "De instellingen die je momenteel bewerkt worden niet opgeslagen als je van "
3406
  "deze pagina weg navigeert."
3407
 
3408
- #: includes/ui-js-config.php:104
3409
  msgid "View the Knowledge Base"
3410
  msgstr "Bekijk Kennisbank"
3411
 
3412
- #: includes/ui-js-config.php:105
3413
  msgid "Visit the Forums"
3414
  msgstr "Naar het forum"
3415
 
3416
- #: includes/ui-js-config.php:106
3417
  msgid "Watch the Video"
3418
  msgstr "Bekijk de Video"
3419
 
3420
- #: includes/ui-js-templates.php:5 includes/ui-js-templates.php:29
3421
- #: includes/ui-js-templates.php:45
3422
- msgid "Global"
3423
- msgstr "Algemeen"
 
 
 
3424
 
3425
- #: includes/ui-js-templates.php:7 includes/ui-js-templates.php:47
 
 
 
 
3426
  msgid "Locked"
3427
  msgstr "Vergrendeld"
3428
 
3429
- #: includes/ui-js-templates.php:52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3430
  msgid "Settings"
3431
  msgstr "Instellingen"
3432
 
3433
- #: includes/ui-js-templates.php:87
3434
- msgid ""
3435
- "Welcome! It looks like this might be your first time using the builder. "
3436
- "Would you like to take a tour?"
3437
- msgstr ""
3438
- "Welkom! Het lijkt erop dat dit zou de eerste keer is dat je gaat bouwen met "
3439
- "de builder. Wil je misschien een rondleiding?"
3440
 
3441
- #: includes/ui-js-templates.php:88
3442
  msgid "No Thanks"
3443
  msgstr "Nee, bedankt"
3444
 
3445
- #: includes/ui-js-templates.php:89
3446
- msgid "Yes Please!"
3447
- msgstr "Ja Graag!"
3448
-
3449
- #: includes/ui-js-templates.php:96
3450
  msgid "Getting Started Video"
3451
  msgstr "Aan de slag Video"
3452
 
@@ -3509,18 +3717,18 @@ msgid "Left &amp; Right Sidebar"
3509
  msgstr "Linker &amp; Rechter Zijbalk"
3510
 
3511
  # @ fl-builder
3512
- #: includes/updater/classes/class-fl-updater.php:132
3513
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3514
  msgstr "<strong>UPDATE NIET BESCHIKBAAR!</strong>"
3515
 
3516
  # @ fl-builder
3517
- #: includes/updater/classes/class-fl-updater.php:134
3518
  msgid "Please subscribe to enable automatic updates for this plugin."
3519
  msgstr ""
3520
  "Gelieve te abonneren om de automatische updates op deze plug-in te schakelen."
3521
 
3522
  # @ fl-builder
3523
- #: includes/updater/classes/class-fl-updater.php:136
3524
  #: includes/updater/includes/form.php:6
3525
  msgid "Subscribe Now"
3526
  msgstr "Nu Abonneren"
@@ -3548,10 +3756,9 @@ msgstr "Actief!"
3548
  msgid "Not Active!"
3549
  msgstr "Niet Actief!"
3550
 
3551
- # @ fl-builder
3552
  #: includes/updater/includes/form.php:22
3553
- msgid "Email address saved!"
3554
- msgstr "E-mailadres opgeslagen!"
3555
 
3556
  #: includes/updater/includes/form.php:27
3557
  #, php-format
@@ -3574,7 +3781,7 @@ msgstr ""
3574
  "Templates</strong> kan worden hergebruikt."
3575
 
3576
  # @ fl-builder
3577
- #: modules/accordion/accordion.php:14 modules/menu/menu.php:95
3578
  msgid "Accordion"
3579
  msgstr "Accordion"
3580
 
@@ -3584,55 +3791,55 @@ msgid "Display a collapsible accordion of items."
3584
  msgstr "Toon een opvouwbare accordeon van items."
3585
 
3586
  # @ fl-builder
3587
- #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
3588
  msgid "Items"
3589
  msgstr "Items"
3590
 
3591
  # @ fl-builder
3592
- #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
3593
  msgid "Item"
3594
  msgstr "Item"
3595
 
3596
  # @ fl-builder
3597
- #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
3598
  msgid "Border Color"
3599
  msgstr "Rand kleur"
3600
 
3601
  # @ fl-builder
3602
- #: modules/accordion/accordion.php:62
3603
  msgid "Label Size"
3604
  msgstr "Label Afmetingen"
3605
 
3606
  # @ fl-builder
3607
- #: modules/accordion/accordion.php:65
3608
  msgctxt "Label size."
3609
  msgid "Small"
3610
  msgstr "Klein"
3611
 
3612
  # @ fl-builder
3613
- #: modules/accordion/accordion.php:66
3614
  msgctxt "Label size."
3615
  msgid "Medium"
3616
  msgstr "Medium"
3617
 
3618
  # @ fl-builder
3619
- #: modules/accordion/accordion.php:67
3620
  msgctxt "Label size."
3621
  msgid "Large"
3622
  msgstr "Groot"
3623
 
3624
  # @ fl-builder
3625
- #: modules/accordion/accordion.php:75
3626
  msgid "Item Spacing"
3627
  msgstr "Item Afstand"
3628
 
3629
  # @ fl-builder
3630
- #: modules/accordion/accordion.php:86
3631
  msgid "Collapse Inactive"
3632
  msgstr "Inactief oprollen"
3633
 
3634
  # @ fl-builder
3635
- #: modules/accordion/accordion.php:92
3636
  msgid ""
3637
  "Choosing yes will keep only one item open at a time. Choosing no will allow "
3638
  "multiple items to be open at the same time."
@@ -3641,34 +3848,97 @@ msgstr ""
3641
  "dat meerdere items gelijktijdig open staan."
3642
 
3643
  # @ fl-builder
3644
- #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
3645
  msgid "Add Item"
3646
  msgstr "Item Toevoegen"
3647
 
3648
  # @ fl-builder
3649
- #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
3650
  msgid "Label"
3651
  msgstr "Label"
3652
 
3653
  # @ fl-builder
3654
- #: modules/accordion/accordion.php:122
3655
- #: modules/post-carousel/post-carousel.php:359
3656
- #: modules/post-carousel/post-carousel.php:363
3657
- #: modules/post-carousel/post-carousel.php:435
3658
- #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
3659
- #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:548
3660
  #: modules/post-slider/post-slider.php:552
3661
- #: modules/post-slider/post-slider.php:759 modules/tabs/tabs.php:89
3662
  msgid "Content"
3663
  msgstr "Inhoud"
3664
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3665
  # @ fl-builder
3666
- #: modules/button/button.php:14 modules/callout/callout.php:480
3667
- #: modules/content-slider/content-slider.php:602 modules/cta/cta.php:215
3668
- #: modules/pricing-table/pricing-table.php:129
3669
- #: modules/subscribe-form/subscribe-form.php:161
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3670
  msgid "Button"
3671
- msgstr "Button"
3672
 
3673
  # @ fl-builder
3674
  #: modules/button/button.php:15
@@ -3676,169 +3946,170 @@ msgid "A simple call to action button."
3676
  msgstr "Een eenvoudige Call-to-Action knop."
3677
 
3678
  # @ fl-builder
3679
- #: modules/button/button.php:67 modules/cta/cta.php:223
3680
  msgid "Click Here"
3681
  msgstr "Klik Hier"
3682
 
3683
  # @ fl-builder
3684
- #: modules/button/button.php:75 modules/callout/callout.php:318
3685
- #: modules/callout/callout.php:366 modules/callout/callout.php:370
3686
- #: modules/cta/cta.php:231 modules/icon-group/icon-group.php:34
3687
- #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
3688
- #: modules/icon/icon.php:34
3689
  msgid "Icon"
3690
  msgstr "Icoon"
3691
 
3692
- #: modules/button/button.php:80 modules/cta/cta.php:236
3693
- #: modules/subscribe-form/subscribe-form.php:178
3694
  msgid "Icon Position"
3695
  msgstr "Icoon Positie"
3696
 
3697
- #: modules/button/button.php:83 modules/callout/callout.php:508
3698
- #: modules/content-slider/content-slider.php:629 modules/cta/cta.php:239
3699
- #: modules/subscribe-form/subscribe-form.php:181
 
3700
  msgid "Before Text"
3701
  msgstr "Vóór tekst"
3702
 
3703
- #: modules/button/button.php:84 modules/callout/callout.php:509
3704
- #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:240
3705
- #: modules/subscribe-form/subscribe-form.php:182
 
3706
  msgid "After Text"
3707
  msgstr "Na tekst"
3708
 
3709
  # @ fl-builder
3710
- #: modules/button/button.php:90 modules/button/button.php:94
3711
- #: modules/callout/callout.php:446 modules/callout/callout.php:450
3712
- #: modules/content-slider/content-slider.php:574
3713
- #: modules/content-slider/content-slider.php:578
3714
- #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:250
3715
- #: modules/heading/heading.php:43 modules/heading/heading.php:47
3716
- #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
3717
- #: modules/slideshow/slideshow.php:351
3718
- msgid "Link"
3719
- msgstr "Link"
3720
-
3721
- # @ fl-builder
3722
- #: modules/button/button.php:95
3723
  msgid "http://www.example.com"
3724
  msgstr "http://www.voorbeeld.com/"
3725
 
3726
  # @ fl-builder
3727
- #: modules/button/button.php:102 modules/callout/callout.php:458
3728
- #: modules/content-slider/content-slider.php:583 modules/cta/cta.php:257
3729
- #: modules/heading/heading.php:54 modules/icon/icon.php:50
3730
- #: modules/photo/photo.php:494
3731
  msgid "Link Target"
3732
  msgstr "Link Doel"
3733
 
3734
  # @ fl-builder
3735
- #: modules/button/button.php:105 modules/callout/callout.php:461
3736
- #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:260
3737
- #: modules/heading/heading.php:57 modules/icon/icon.php:53
3738
- #: modules/photo/photo.php:497
3739
  msgid "Same Window"
3740
  msgstr "Zelfde Venster"
3741
 
3742
  # @ fl-builder
3743
- #: modules/button/button.php:106 modules/callout/callout.php:462
3744
- #: modules/content-slider/content-slider.php:587 modules/cta/cta.php:261
3745
- #: modules/heading/heading.php:58 modules/icon/icon.php:54
3746
- #: modules/photo/photo.php:498
3747
  msgid "New Window"
3748
  msgstr "Nieuw Venster"
3749
 
3750
  # @ fl-builder
3751
- #: modules/button/button.php:130 modules/callout/callout.php:410
3752
- #: modules/callout/callout.php:525
3753
- #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:280
3754
- #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
3755
- #: modules/subscribe-form/subscribe-form.php:198
 
3756
  msgid "Background Hover Color"
3757
  msgstr "Achtergrond-hover Kleur"
3758
 
3759
  # @ fl-builder
3760
- #: modules/button/button.php:145 modules/callout/callout.php:540
3761
- #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:295
3762
- #: modules/subscribe-form/subscribe-form.php:213
 
3763
  msgid "Text Hover Color"
3764
  msgstr "Tekst-hover kleur"
3765
 
3766
  # @ fl-builder
3767
- #: modules/button/button.php:162 modules/callout/callout.php:557
3768
- #: modules/content-slider/content-slider.php:670 modules/cta/cta.php:312
3769
- #: modules/subscribe-form/subscribe-form.php:230
 
3770
  msgid "Flat"
3771
  msgstr "Plat"
3772
 
3773
  # @ fl-builder
3774
- #: modules/button/button.php:163 modules/callout/callout.php:418
3775
- #: modules/callout/callout.php:558
3776
- #: modules/content-slider/content-slider.php:671 modules/cta/cta.php:313
3777
- #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3778
- #: modules/subscribe-form/subscribe-form.php:231
 
3779
  msgid "Gradient"
3780
  msgstr "Verlopend"
3781
 
3782
  # @ fl-builder
3783
- #: modules/button/button.php:164 modules/callout/callout.php:559
3784
- #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3785
- #: modules/subscribe-form/subscribe-form.php:232
 
3786
  msgid "Transparent"
3787
  msgstr "Transparant"
3788
 
3789
  # @ fl-builder
3790
- #: modules/button/button.php:174 modules/callout/callout.php:569
3791
- #: modules/content-slider/content-slider.php:682 modules/cta/cta.php:324
3792
- #: modules/pricing-table/pricing-table.php:67
3793
- #: modules/subscribe-form/subscribe-form.php:242
 
3794
  msgid "Border Size"
3795
  msgstr "Rand Breedte"
3796
 
3797
  # @ fl-builder
3798
- #: modules/button/button.php:183 modules/callout/callout.php:578
3799
- #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204
3800
- #: modules/cta/cta.php:333 modules/subscribe-form/subscribe-form.php:251
 
3801
  msgid "Background Opacity"
3802
  msgstr "Achtergrond Dichtheid"
3803
 
3804
  # @ fl-builder
3805
- #: modules/button/button.php:193 modules/callout/callout.php:245
3806
- #: modules/cta/cta.php:105 modules/heading/heading.php:82
3807
- #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3808
- #: modules/subscribe-form/subscribe-form.php:95
3809
  msgid "Structure"
3810
  msgstr "Structuur"
3811
 
3812
  # @ fl-builder
3813
- #: modules/button/button.php:200 modules/callout/callout.php:595
 
3814
  msgctxt "Width."
3815
  msgid "Auto"
3816
  msgstr "Auto"
3817
 
3818
  # @ fl-builder
3819
- #: modules/button/button.php:216
3820
  msgid "Custom Width"
3821
  msgstr "Aangepaste Breedte"
3822
 
3823
  # @ fl-builder
3824
- #: modules/button/button.php:224 modules/cta/cta.php:123
3825
- #: modules/heading/heading.php:86 modules/heading/heading.php:141
3826
- #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3827
- #: modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
 
3828
  msgid "Alignment"
3829
  msgstr "Uitlijning"
3830
 
3831
  # @ fl-builder
3832
- #: modules/button/button.php:234 modules/callout/callout.php:601
3833
- #: modules/content-slider/content-slider.php:705 modules/cta/cta.php:347
3834
- #: modules/heading/heading.php:114 modules/heading/heading.php:171
3835
- #: modules/subscribe-form/subscribe-form.php:265
 
3836
  msgid "Font Size"
3837
  msgstr "Tekengrootte"
3838
 
3839
  # @ fl-builder
3840
- #: modules/button/button.php:250 modules/callout/callout.php:617
3841
- #: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
 
3842
  msgid "Round Corners"
3843
  msgstr "Afronden Hoeken"
3844
 
@@ -3853,231 +4124,248 @@ msgid "A heading and snippet of text with an optional link, icon and image."
3853
  msgstr "Een kop en tekstfragment met een optionele link, icoon en afbeelding."
3854
 
3855
  # @ fl-builder
3856
- #: modules/callout/callout.php:217
3857
- #: modules/content-slider/content-slider.php:414
3858
- #: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75
3859
- #: modules/heading/heading.php:14 modules/heading/heading.php:33
3860
  #: modules/post-slider/post-slider.php:582
3861
- #: modules/testimonials/testimonials.php:56
3862
- #: modules/testimonials/testimonials.php:61
3863
  msgid "Heading"
3864
  msgstr "Kopregel"
3865
 
3866
  # @ fl-builder
3867
- #: modules/callout/callout.php:249
3868
  msgid "Overall Alignment"
3869
  msgstr "Algemene Uitlijning"
3870
 
3871
  # @ fl-builder
3872
- #: modules/callout/callout.php:256
3873
  msgid "The alignment that will apply to all elements within the callout."
3874
  msgstr ""
3875
  "De uitlijning die zal gelden voor alle elementen binnen het bijschrift."
3876
 
3877
  # @ fl-builder
3878
- #: modules/callout/callout.php:264 modules/cta/cta.php:148
3879
  msgid "Heading Structure"
3880
  msgstr "Kopregel Structuur"
3881
 
3882
  # @ fl-builder
3883
- #: modules/callout/callout.php:268
3884
- #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3885
  #: modules/post-slider/post-slider.php:586
3886
  msgid "Heading Tag"
3887
  msgstr "Kopregel Tag"
3888
 
3889
  # @ fl-builder
3890
- #: modules/callout/callout.php:281
3891
- #: modules/content-slider/content-slider.php:446
3892
- #: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
3893
  #: modules/post-slider/post-slider.php:599
3894
  #: modules/post-slider/post-slider.php:613
3895
- #: modules/testimonials/testimonials.php:69
3896
  msgid "Heading Size"
3897
  msgstr "Kopregel Grootte"
3898
 
3899
  # @ fl-builder
3900
- #: modules/callout/callout.php:295 modules/cta/cta.php:179
3901
  msgid "Heading Custom Size"
3902
  msgstr "Kopregel Aangepaste Grootte"
3903
 
3904
  # @ fl-builder
3905
- #: modules/callout/callout.php:313
 
 
 
 
 
 
3906
  msgid "Image Type"
3907
  msgstr "Afbeelding Type"
3908
 
3909
  # @ fl-builder
3910
- #: modules/callout/callout.php:316
3911
  msgctxt "Image type."
3912
  msgid "None"
3913
  msgstr "Geen"
3914
 
3915
  # @ fl-builder
3916
- #: modules/callout/callout.php:341 modules/photo/photo.php:417
3917
- #: modules/post-slider/post-slider.php:482 modules/slideshow/slideshow.php:320
 
3918
  msgid "Crop"
3919
  msgstr "Pas aan"
3920
 
3921
- #: modules/callout/callout.php:344 modules/photo/photo.php:420
3922
  msgctxt "Photo Crop."
3923
  msgid "None"
3924
  msgstr "Niet"
3925
 
3926
  # @ fl-builder
3927
- #: modules/callout/callout.php:345 modules/photo/photo.php:421
 
3928
  #: modules/post-slider/post-slider.php:485
3929
  msgid "Landscape"
3930
  msgstr "Landschap"
3931
 
3932
  # @ fl-builder
3933
- #: modules/callout/callout.php:346 modules/photo/photo.php:422
 
3934
  #: modules/post-slider/post-slider.php:486
3935
  msgid "Panorama"
3936
  msgstr "Panorama"
3937
 
3938
  # @ fl-builder
3939
- #: modules/callout/callout.php:347 modules/photo/photo.php:423
 
3940
  #: modules/post-slider/post-slider.php:487
3941
  msgid "Portrait"
3942
  msgstr "Portret"
3943
 
3944
  # @ fl-builder
3945
- #: modules/callout/callout.php:348 modules/photo/photo.php:424
 
3946
  #: modules/post-slider/post-slider.php:488
3947
  msgid "Square"
3948
  msgstr "Vierkant"
3949
 
3950
  # @ fl-builder
3951
- #: modules/callout/callout.php:349 modules/photo/photo.php:425
 
3952
  #: modules/post-slider/post-slider.php:489
3953
  msgid "Circle"
3954
  msgstr "Cirkel"
3955
 
3956
  # @ fl-builder
3957
- #: modules/callout/callout.php:357 modules/callout/callout.php:377
3958
  msgid "Above Heading"
3959
  msgstr "Boven Kopregel"
3960
 
3961
  # @ fl-builder
3962
- #: modules/callout/callout.php:358 modules/callout/callout.php:378
3963
  msgid "Below Heading"
3964
  msgstr "Onder Kopregel"
3965
 
3966
  # @ fl-builder
3967
- #: modules/callout/callout.php:359 modules/callout/callout.php:381
3968
  msgid "Left of Text and Heading"
3969
  msgstr "Links van Tekst en Kopregel"
3970
 
3971
  # @ fl-builder
3972
- #: modules/callout/callout.php:360 modules/callout/callout.php:382
3973
  msgid "Right of Text and Heading"
3974
  msgstr "Rechts van Tekst en Kopregel"
3975
 
3976
  # @ fl-builder
3977
- #: modules/callout/callout.php:379
3978
  msgid "Left of Heading"
3979
  msgstr "Links van Kopregel"
3980
 
3981
  # @ fl-builder
3982
- #: modules/callout/callout.php:380
3983
  msgid "Right of Heading"
3984
  msgstr "Rechts van Kopregel"
3985
 
3986
  # @ fl-builder
3987
- #: modules/callout/callout.php:388
3988
  msgid "Icon Colors"
3989
  msgstr "Icoon Kleuren"
3990
 
3991
  # @ fl-builder
3992
- #: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56
3993
- #: modules/icon/icon.php:87
3994
  msgid "Hover Color"
3995
  msgstr "Hover Kleur"
3996
 
3997
  # @ fl-builder
3998
- #: modules/callout/callout.php:428
3999
  msgid "Icon Structure"
4000
  msgstr "Icoon Structuur"
4001
 
4002
  # @ fl-builder
4003
- #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
4004
- #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
4005
- #: modules/post-grid/post-grid.php:139 modules/post-slider/post-slider.php:477
4006
  msgid "Size"
4007
  msgstr "Grootte"
4008
 
4009
  # @ fl-builder
4010
- #: modules/callout/callout.php:443
4011
- #: modules/content-slider/content-slider.php:571
4012
  msgid "Call To Action"
4013
  msgstr "Call-to-Action"
4014
 
4015
  # @ fl-builder
4016
- #: modules/callout/callout.php:451
4017
  msgid ""
4018
  "The link applies to the entire module. If choosing a call to action type "
4019
  "below, this link will also be used for the text or button."
4020
  msgstr ""
4021
  "De koppeling geldt voor de gehele module. Wanneer je hieronder voor een call-"
4022
- "to-action actietype kiest, zal deze koppeling ook voor tekst en buttons "
4023
  "gebruikt worden."
4024
 
4025
  # @ fl-builder
4026
- #: modules/callout/callout.php:471
4027
- #: modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
4028
  msgid "Call to Action"
4029
  msgstr "Call-to-Action"
4030
 
4031
  # @ fl-builder
4032
- #: modules/callout/callout.php:478
4033
- #: modules/content-slider/content-slider.php:600
4034
  msgctxt "Call to action."
4035
  msgid "None"
4036
  msgstr "Geen"
4037
 
4038
  # @ fl-builder
4039
- #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
4040
- #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:571
4041
  msgid "Read More"
4042
  msgstr "Lees verder"
4043
 
4044
  # @ fl-builder
4045
- #: modules/callout/callout.php:500
4046
- #: modules/content-slider/content-slider.php:621
4047
- #: modules/subscribe-form/subscribe-form.php:173
 
4048
  msgid "Button Icon"
4049
- msgstr "Button Icoon"
4050
 
4051
- #: modules/callout/callout.php:505
4052
- #: modules/content-slider/content-slider.php:626
 
4053
  msgid "Button Icon Position"
4054
- msgstr "Button Icoon Positie"
4055
 
4056
  # @ fl-builder
4057
- #: modules/callout/callout.php:515
4058
- #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
4059
- #: modules/subscribe-form/subscribe-form.php:188
 
4060
  msgid "Button Colors"
4061
- msgstr "Button Kleuren"
4062
 
4063
  # @ fl-builder
4064
- #: modules/callout/callout.php:550
4065
- #: modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
4066
- #: modules/subscribe-form/subscribe-form.php:223
 
4067
  msgid "Button Style"
4068
- msgstr "Button Stijl"
4069
 
4070
  # @ fl-builder
4071
- #: modules/callout/callout.php:588
4072
- #: modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
4073
- #: modules/subscribe-form/subscribe-form.php:261
 
4074
  msgid "Button Structure"
4075
- msgstr "Button Structuur"
4076
 
4077
  # @ fl-builder
4078
- #: modules/callout/callout.php:592
4079
  msgid "Button Width"
4080
- msgstr "Button Breedte"
4081
 
4082
  # @ fl-builder
4083
  #: modules/contact-form/contact-form.php:14
@@ -4090,92 +4378,127 @@ msgid "A very simple contact form."
4090
  msgstr "Een zeer eenvoudig contactformulier."
4091
 
4092
  # @ fl-builder
4093
- #: modules/contact-form/contact-form.php:31
4094
  msgid "Contact Form Submission"
4095
  msgstr "Contactformulier verzenden"
4096
 
4097
- #: modules/contact-form/contact-form.php:41
4098
  msgid "Message"
4099
  msgstr "Bericht"
4100
 
4101
  # @ fl-builder
4102
- #: modules/contact-form/contact-form.php:65
4103
  msgid "Send To Email"
4104
  msgstr "Verzend naar e-mailadres"
4105
 
4106
  # @ fl-builder
4107
- #: modules/contact-form/contact-form.php:67
4108
  msgid "example@mail.com"
4109
  msgstr "voorbeeld@mail.com"
4110
 
4111
  # @ fl-builder
4112
- #: modules/contact-form/contact-form.php:68
4113
  msgid "The contact form will send to this e-mail"
4114
  msgstr "Het contactformulier zal naar dit e-mailadres sturen"
4115
 
4116
- #: modules/contact-form/contact-form.php:75
4117
- #: modules/subscribe-form/subscribe-form.php:108
4118
  msgid "Name Field"
4119
  msgstr "Naamveld"
4120
 
4121
  # @ fl-builder
4122
- #: modules/contact-form/contact-form.php:78
4123
- #: modules/contact-form/contact-form.php:87
4124
- #: modules/contact-form/contact-form.php:96
4125
- #: modules/contact-form/contact-form.php:105
4126
- #: modules/post-carousel/post-carousel.php:258
4127
- #: modules/post-carousel/post-carousel.php:322
4128
- #: modules/post-carousel/post-carousel.php:331
4129
- #: modules/post-carousel/post-carousel.php:366
4130
- #: modules/post-carousel/post-carousel.php:375
4131
- #: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
4132
- #: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
4133
- #: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
4134
  #: modules/post-slider/post-slider.php:443
4135
  #: modules/post-slider/post-slider.php:502
4136
  #: modules/post-slider/post-slider.php:511
4137
  #: modules/post-slider/post-slider.php:541
4138
  #: modules/post-slider/post-slider.php:555
4139
  #: modules/post-slider/post-slider.php:564
4140
- #: modules/subscribe-form/subscribe-form.php:111
4141
  msgid "Show"
4142
  msgstr "Toon"
4143
 
4144
  # @ fl-builder
4145
- #: modules/contact-form/contact-form.php:79
4146
- #: modules/contact-form/contact-form.php:88
4147
- #: modules/contact-form/contact-form.php:97
4148
- #: modules/contact-form/contact-form.php:106
4149
- #: modules/post-carousel/post-carousel.php:259
4150
- #: modules/post-carousel/post-carousel.php:323
4151
- #: modules/post-carousel/post-carousel.php:332
4152
- #: modules/post-carousel/post-carousel.php:367
4153
- #: modules/post-carousel/post-carousel.php:376
4154
- #: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
4155
- #: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
4156
- #: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
4157
  #: modules/post-slider/post-slider.php:444
4158
  #: modules/post-slider/post-slider.php:503
4159
  #: modules/post-slider/post-slider.php:512
4160
  #: modules/post-slider/post-slider.php:542
4161
  #: modules/post-slider/post-slider.php:556
4162
  #: modules/post-slider/post-slider.php:565
4163
- #: modules/subscribe-form/subscribe-form.php:112
4164
  msgid "Hide"
4165
  msgstr "Verberg"
4166
 
4167
- #: modules/contact-form/contact-form.php:84
4168
  msgid "Subject Field"
4169
  msgstr "Onderwerp Veld"
4170
 
4171
- #: modules/contact-form/contact-form.php:93
4172
  msgid "Email Field"
4173
  msgstr "E-mail Veld"
4174
 
4175
- #: modules/contact-form/contact-form.php:102
4176
  msgid "Phone Field"
4177
  msgstr "Telefoonnummer Veld"
4178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4179
  # @ fl-builder
4180
  #: modules/contact-form/includes/frontend.php:5
4181
  msgctxt "Contact form field label."
@@ -4241,12 +4564,12 @@ msgid "Send"
4241
  msgstr "Verzenden"
4242
 
4243
  # @ fl-builder
4244
- #: modules/contact-form/includes/frontend.php:44
4245
  msgid "Message Sent!"
4246
  msgstr "Bericht verzonden!"
4247
 
4248
  # @ fl-builder
4249
- #: modules/contact-form/includes/frontend.php:45
4250
  msgid "Message failed. Please try again."
4251
  msgstr "Bericht mislukt. Probeer opnieuw."
4252
 
@@ -4261,14 +4584,7 @@ msgid "Displays multiple slides with an optional heading and call to action."
4261
  msgstr "Geeft meerdere dia&#39;s met een optionele kopregel en call-to-action."
4262
 
4263
  # @ fl-builder
4264
- #: modules/content-slider/content-slider.php:198 modules/map/map.php:41
4265
- #: modules/post-slider/post-slider.php:345 modules/separator/separator.php:58
4266
- #: modules/slideshow/slideshow.php:302
4267
- msgid "Height"
4268
- msgstr "Hoogte"
4269
-
4270
- # @ fl-builder
4271
- #: modules/content-slider/content-slider.php:203
4272
  msgid ""
4273
  "This setting is the minimum height of the content slider. Content will "
4274
  "expand the height automatically."
@@ -4277,75 +4593,67 @@ msgstr ""
4277
  "hoogte automatisch uitbreiden."
4278
 
4279
  # @ fl-builder
4280
- #: modules/content-slider/content-slider.php:207
4281
- #: modules/post-carousel/post-carousel.php:136
4282
- #: modules/post-slider/post-slider.php:354 modules/slideshow/slideshow.php:381
4283
- #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
4284
- msgid "Auto Play"
4285
- msgstr "Autostart"
4286
-
4287
- # @ fl-builder
4288
- #: modules/content-slider/content-slider.php:221
4289
  msgid "Show Play/Pause"
4290
  msgstr "Toon Play/Pause"
4291
 
4292
  # @ fl-builder
4293
- #: modules/content-slider/content-slider.php:241
4294
- #: modules/testimonials/testimonials.php:102
4295
  msgctxt "Transition type."
4296
  msgid "Slide"
4297
  msgstr "Schuif"
4298
 
4299
  # @ fl-builder
4300
- #: modules/content-slider/content-slider.php:255
4301
- #: modules/post-carousel/post-carousel.php:188
4302
  #: modules/post-slider/post-slider.php:415
4303
- #: modules/testimonials/testimonials.php:121
4304
  msgid "Show Arrows"
4305
  msgstr "Toon Pijlen:"
4306
 
4307
  # @ fl-builder
4308
- #: modules/content-slider/content-slider.php:264
4309
- #: modules/post-carousel/post-carousel.php:179
4310
  #: modules/post-slider/post-slider.php:406
4311
- #: modules/testimonials/testimonials.php:151
4312
  msgid "Show Dots"
4313
  msgstr "Toon Stippen"
4314
 
4315
  # @ fl-builder
4316
- #: modules/content-slider/content-slider.php:278
4317
  msgid "Max Content Width"
4318
  msgstr "Max Inhoud Breedte"
4319
 
4320
  # @ fl-builder
4321
- #: modules/content-slider/content-slider.php:283
4322
  msgid "The max width that the content area will be within your slides."
4323
  msgstr ""
4324
  "De maximale breedte die het inhoud gebied zal worden binnen je dia&#39;s."
4325
 
4326
  # @ fl-builder
4327
- #: modules/content-slider/content-slider.php:290
4328
  msgid "Slides"
4329
  msgstr "Dia's"
4330
 
4331
  # @ fl-builder
4332
- #: modules/content-slider/content-slider.php:297
4333
  #: modules/post-slider/post-slider.php:374
4334
  msgid "Slide"
4335
  msgstr "Dia"
4336
 
4337
  # @ fl-builder
4338
- #: modules/content-slider/content-slider.php:312
4339
  msgid "Slide Settings"
4340
  msgstr "Dia Instellingen"
4341
 
4342
  # @ fl-builder
4343
- #: modules/content-slider/content-slider.php:322
4344
  msgid "Slide Label"
4345
  msgstr "Dia Label"
4346
 
4347
  # @ fl-builder
4348
- #: modules/content-slider/content-slider.php:323
4349
  msgid ""
4350
  "A label to identify this slide on the Slides tab of the Content Slider "
4351
  "settings."
@@ -4354,27 +4662,32 @@ msgstr ""
4354
  "Content Slider instellingen."
4355
 
4356
  # @ fl-builder
4357
- #: modules/content-slider/content-slider.php:328
4358
  msgid "Background Layout"
4359
  msgstr "Achtergrond Layout"
4360
 
4361
  # @ fl-builder
4362
- #: modules/content-slider/content-slider.php:334
4363
  msgid "This setting is for the entire background of your slide."
4364
  msgstr "Deze instelling is voor de volledige achtergrond van je dia."
4365
 
4366
  # @ fl-builder
4367
- #: modules/content-slider/content-slider.php:369
 
 
 
 
 
4368
  msgid "Background Video Code"
4369
  msgstr "Achtergrond Video Code"
4370
 
4371
  # @ fl-builder
4372
- #: modules/content-slider/content-slider.php:375
4373
  msgid "Content Layout"
4374
  msgstr "Inhoud Layout"
4375
 
4376
  # @ fl-builder
4377
- #: modules/content-slider/content-slider.php:381
4378
  msgid ""
4379
  "This allows you to add content over or in addition to the background "
4380
  "selection above. The location of the content layout can be selected in the "
@@ -4385,33 +4698,33 @@ msgstr ""
4385
  "op het stijl tabblad."
4386
 
4387
  # @ fl-builder
4388
- #: modules/content-slider/content-slider.php:384
4389
  msgid "Text &amp; Photo"
4390
  msgstr "Tekst &amp Afbeelding"
4391
 
4392
  # @ fl-builder
4393
- #: modules/content-slider/content-slider.php:385
4394
  msgid "Text &amp; Video"
4395
  msgstr "Tekst &amp; Video"
4396
 
4397
  # @ fl-builder
4398
- #: modules/content-slider/content-slider.php:386
4399
  msgctxt "Content type."
4400
  msgid "None"
4401
  msgstr "Geen"
4402
 
4403
  # @ fl-builder
4404
- #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
4405
  msgid "Video Embed Code"
4406
  msgstr "Video Embed Code"
4407
 
4408
  # @ fl-builder
4409
- #: modules/content-slider/content-slider.php:469
4410
  msgid "Text Position"
4411
  msgstr "Tekst Positie"
4412
 
4413
  # @ fl-builder
4414
- #: modules/content-slider/content-slider.php:475
4415
  msgid ""
4416
  "The position will move the content layout selections left, right or center "
4417
  "over the background of the slide."
@@ -4420,47 +4733,47 @@ msgstr ""
4420
  "over de achtergrond van de dia verplaatsen."
4421
 
4422
  # @ fl-builder
4423
- #: modules/content-slider/content-slider.php:492
4424
  msgid "Top Margin"
4425
  msgstr "bovenmarge"
4426
 
4427
  # @ fl-builder
4428
- #: modules/content-slider/content-slider.php:500
4429
  msgid "Bottom Margin"
4430
  msgstr "ondermarge"
4431
 
4432
  # @ fl-builder
4433
- #: modules/content-slider/content-slider.php:508
4434
  msgid "Left Margin"
4435
  msgstr "Linker Marge"
4436
 
4437
  # @ fl-builder
4438
- #: modules/content-slider/content-slider.php:516
4439
  msgid "Right Margin"
4440
  msgstr "Rechter Marge"
4441
 
4442
  # @ fl-builder
4443
- #: modules/content-slider/content-slider.php:525
4444
  msgid "Text Colors"
4445
  msgstr "Tekst Kleuren"
4446
 
4447
  # @ fl-builder
4448
- #: modules/content-slider/content-slider.php:535
4449
  msgid "Text Shadow"
4450
  msgstr "Tekst Schaduw"
4451
 
4452
  # @ fl-builder
4453
- #: modules/content-slider/content-slider.php:544
4454
- #: modules/content-slider/content-slider.php:770
4455
- #: modules/post-carousel/post-carousel.php:411
4456
- #: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:721
4457
  msgid "Text Background Color"
4458
  msgstr "Tekst Achtergrond Kleur"
4459
 
4460
  # @ fl-builder
4461
- #: modules/content-slider/content-slider.php:545
4462
- #: modules/post-carousel/post-carousel.php:413
4463
- #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:722
4464
  msgid ""
4465
  "The color applies to the overlay behind text over the background selections."
4466
  msgstr ""
@@ -4468,20 +4781,20 @@ msgstr ""
4468
  "selecties."
4469
 
4470
  # @ fl-builder
4471
- #: modules/content-slider/content-slider.php:550
4472
- #: modules/post-carousel/post-carousel.php:423
4473
- #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:728
4474
  msgid "Text Background Opacity"
4475
  msgstr "Tekst Achtergrond Dichtheid"
4476
 
4477
  # @ fl-builder
4478
- #: modules/content-slider/content-slider.php:558
4479
  #: modules/post-slider/post-slider.php:745
4480
  msgid "Text Background Height"
4481
  msgstr "Tekst Achtergrond Hoogte"
4482
 
4483
  # @ fl-builder
4484
- #: modules/content-slider/content-slider.php:560
4485
  #: modules/post-slider/post-slider.php:747
4486
  msgid ""
4487
  "Auto will allow the overlay to fit however long the text content is. 100% "
@@ -4492,40 +4805,40 @@ msgstr ""
4492
  "dia reikt."
4493
 
4494
  # @ fl-builder
4495
- #: modules/content-slider/content-slider.php:562
4496
  #: modules/post-slider/post-slider.php:749
4497
  msgctxt "Background height."
4498
  msgid "Auto"
4499
  msgstr "Auto"
4500
 
4501
  # @ fl-builder
4502
- #: modules/content-slider/content-slider.php:579
4503
  msgid ""
4504
  "The link applies to the entire slide. If choosing a call to action type "
4505
  "below, this link will also be used for the text or button."
4506
  msgstr ""
4507
  "De link heeft betrekking op de gehele dia. Indien je kiest voor een "
4508
  "hieronderstaand call-to-action type, zal de link worden gebruikt voor de "
4509
- "tekst of button."
4510
 
4511
  # @ fl-builder
4512
- #: modules/content-slider/content-slider.php:721
4513
  msgid "Border Radius"
4514
  msgstr "Rand radius"
4515
 
4516
  # @ fl-builder
4517
- #: modules/content-slider/content-slider.php:732
4518
  msgctxt "Module settings form tab. Display on mobile devices."
4519
  msgid "Mobile"
4520
  msgstr "Mobiel"
4521
 
4522
  # @ fl-builder
4523
- #: modules/content-slider/content-slider.php:735
4524
  msgid "Mobile Photo"
4525
  msgstr "Mobiele Afbeelding"
4526
 
4527
  # @ fl-builder
4528
- #: modules/content-slider/content-slider.php:741
4529
  msgid ""
4530
  "You can choose a different photo that the slide will change to on mobile "
4531
  "devices or no photo if desired."
@@ -4534,73 +4847,218 @@ msgstr ""
4534
  "apparaat of kies ervoor geen afbeelding weer te geven."
4535
 
4536
  # @ fl-builder
4537
- #: modules/content-slider/content-slider.php:743
4538
  msgid "Use Main Photo"
4539
  msgstr "Selecteer Belangrijkste Afbeelding"
4540
 
4541
  # @ fl-builder
4542
- #: modules/content-slider/content-slider.php:744
4543
  msgid "Choose Another Photo"
4544
  msgstr "Selecteer Een Andere Afbeelding"
4545
 
4546
  # @ fl-builder
4547
- #: modules/content-slider/content-slider.php:745
4548
  msgid "No Photo"
4549
  msgstr "Geen Afbeelding"
4550
 
4551
  # @ fl-builder
4552
- #: modules/content-slider/content-slider.php:760
4553
  msgid "Mobile Text Colors"
4554
  msgstr "Mobiele Tekst Kleuren"
4555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4556
  # @ fl-builder
4557
  #: modules/cta/cta.php:15
4558
  msgid "Display a heading, subheading and a button."
4559
- msgstr "Geef een kopregel, subregel en een button."
4560
 
4561
  # @ fl-builder
4562
- #: modules/cta/cta.php:76
4563
  msgid "Ready to find out more?"
4564
  msgstr "Klaar om meer te ontdekken?"
4565
 
4566
  # @ fl-builder
4567
- #: modules/cta/cta.php:91
4568
  msgid "Drop us a line today for a free quote!"
4569
  msgstr "Bel ons vandaag nog voor een vrijblijvende offerte!"
4570
 
4571
  # @ fl-builder
4572
- #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
4573
- #: modules/menu/menu.php:90 modules/post-carousel/post-carousel.php:117
4574
- #: modules/post-carousel/post-carousel.php:206
4575
- #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:433
4576
- #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
4577
- #: modules/testimonials/testimonials.php:37
4578
- #: modules/woocommerce/woocommerce.php:57
4579
- msgid "Layout"
4580
- msgstr "Weergave"
4581
-
4582
- # @ fl-builder
4583
- #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
4584
  msgid "Inline"
4585
  msgstr "Inline"
4586
 
4587
  # @ fl-builder
4588
- #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
4589
  msgid "Stacked"
4590
  msgstr "Gestapeld"
4591
 
4592
  # @ fl-builder
4593
- #: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
 
4594
  msgid "Spacing"
4595
  msgstr "Tussenruimte"
4596
 
4597
  # @ fl-builder
4598
- #: modules/cta/cta.php:246
4599
  msgid "Button Link"
4600
  msgstr "Knop Link"
4601
 
4602
  # @ fl-builder
4603
- #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:121
4604
  #: modules/post-grid/post-grid.php:55
4605
  msgid "Gallery"
4606
  msgstr "Galerij"
@@ -4611,66 +5069,66 @@ msgid "Display multiple photos in a gallery view."
4611
  msgstr "Weergave van meerdere afbeeldingen in een fotogalerie."
4612
 
4613
  # @ fl-builder
4614
- #: modules/gallery/gallery.php:230
4615
  msgid "Collage"
4616
  msgstr "Collage"
4617
 
4618
  # @ fl-builder
4619
- #: modules/gallery/gallery.php:231
4620
  msgctxt "Gallery layout: thumbnails."
4621
  msgid "Thumbs"
4622
  msgstr "Miniaturen"
4623
 
4624
  # @ fl-builder
4625
- #: modules/gallery/gallery.php:267
4626
  msgid "Photo Size"
4627
  msgstr "Afbeelding Formaat"
4628
 
4629
  # @ fl-builder
4630
- #: modules/gallery/gallery.php:270
4631
  msgctxt "Photo size."
4632
  msgid "Small"
4633
  msgstr "Klein"
4634
 
4635
  # @ fl-builder
4636
- #: modules/gallery/gallery.php:271
4637
  msgctxt "Photo size."
4638
  msgid "Medium"
4639
  msgstr "Medium"
4640
 
4641
  # @ fl-builder
4642
- #: modules/gallery/gallery.php:272
4643
  msgctxt "Photo size."
4644
  msgid "Large"
4645
  msgstr "Groot"
4646
 
4647
  # @ fl-builder
4648
- #: modules/gallery/gallery.php:277
4649
  msgid "Photo Spacing"
4650
  msgstr "Afstand tussen Afbeeldingen"
4651
 
4652
  # @ fl-builder
4653
- #: modules/gallery/gallery.php:285
4654
  msgid "Show Captions"
4655
  msgstr "Toon Bijschriften"
4656
 
4657
  # @ fl-builder
4658
- #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
4659
  msgid "Never"
4660
  msgstr "Nooit"
4661
 
4662
  # @ fl-builder
4663
- #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
4664
  msgid "On Hover"
4665
  msgstr "Tijdens Hover"
4666
 
4667
  # @ fl-builder
4668
- #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
4669
  msgid "Below Photo"
4670
  msgstr "Onder Afbeelding"
4671
 
4672
  # @ fl-builder
4673
- #: modules/gallery/gallery.php:292
4674
  msgid ""
4675
  "The caption pulls from whatever text you put in the caption area in the "
4676
  "media manager for each image. The caption is also pulled directly from "
@@ -4681,23 +5139,23 @@ msgstr ""
4681
  "wordt ook direct gehaald van SmugMug als je bijschriften in je galerij hebt."
4682
 
4683
  # @ fl-builder
4684
- #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4685
  msgid "Click Action"
4686
  msgstr "Muisklik Actie"
4687
 
4688
  # @ fl-builder
4689
- #: modules/gallery/gallery.php:299
4690
  msgctxt "Click action."
4691
  msgid "None"
4692
  msgstr "Geen"
4693
 
4694
  # @ fl-builder
4695
- #: modules/gallery/gallery.php:300 modules/photo/photo.php:468
4696
  msgid "Lightbox"
4697
  msgstr "Lightbox"
4698
 
4699
  # @ fl-builder
4700
- #: modules/gallery/gallery.php:301
4701
  msgid "Photo Link"
4702
  msgstr "Afbeelding Link"
4703
 
@@ -4707,22 +5165,26 @@ msgid "Display a title/page heading."
4707
  msgstr "Een titel/pagina kop weergeven"
4708
 
4709
  # @ fl-builder
4710
- #: modules/heading/heading.php:101
4711
  msgid "HTML Tag"
4712
  msgstr "HTML Tag"
4713
 
 
 
 
 
4714
  # @ fl-builder
4715
- #: modules/heading/heading.php:128 modules/heading/heading.php:188
4716
  msgid "Custom Font Size"
4717
  msgstr "Aangepaste Tekengrootte"
4718
 
4719
  # @ fl-builder
4720
- #: modules/heading/heading.php:137
4721
  msgid "Mobile Structure"
4722
  msgstr "Mobiele Structuur"
4723
 
4724
  # @ fl-builder
4725
- #: modules/heading/heading.php:158
4726
  msgid "Custom Alignment"
4727
  msgstr "Aangepaste Uitlijning"
4728
 
@@ -4747,7 +5209,7 @@ msgid "Display a group of linked Font Awesome icons."
4747
  msgstr "Toon een groep gelinkte Font Awesome iconen."
4748
 
4749
  # @ fl-builder
4750
- #: modules/icon-group/icon-group.php:125
4751
  msgid "Add Icon"
4752
  msgstr "Icoon Toevoegen"
4753
 
@@ -4767,17 +5229,17 @@ msgid "Display a Google map."
4767
  msgstr "Toon een Google map."
4768
 
4769
  # @ fl-builder
4770
- #: modules/map/map.php:33
4771
  msgid "Address"
4772
  msgstr "Adres"
4773
 
4774
  # @ fl-builder
4775
- #: modules/map/map.php:34
4776
  msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4777
  msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
4778
 
4779
- #: modules/menu/menu.php:14 modules/menu/menu.php:24 modules/menu/menu.php:62
4780
- #: modules/menu/menu.php:69
4781
  msgid "Menu"
4782
  msgstr "Menu"
4783
 
@@ -4785,7 +5247,7 @@ msgstr "Menu"
4785
  msgid "Renders a WordPress menu."
4786
  msgstr "Maakt een WordPress menu."
4787
 
4788
- #: modules/menu/menu.php:25
4789
  msgid ""
4790
  "Select a WordPress menu that you created in the admin under Appearance > "
4791
  "Menus."
@@ -4793,202 +5255,341 @@ msgstr ""
4793
  "Selecteer een WordPress menu dat u hebt gemaakt in de admin onder "
4794
  "Vormgeving> Menus."
4795
 
4796
- #: modules/menu/menu.php:42
4797
  msgid "No Menus Found"
4798
  msgstr "Geen menu's gevonden"
4799
 
4800
  # @ fl-builder
4801
- #: modules/menu/menu.php:93 modules/tabs/tabs.php:55
4802
  msgid "Horizontal"
4803
  msgstr "Horizontaal"
4804
 
4805
  # @ fl-builder
4806
- #: modules/menu/menu.php:94 modules/tabs/tabs.php:56
4807
  msgid "Vertical"
4808
  msgstr "Vertikaal"
4809
 
4810
- #: modules/menu/menu.php:96 modules/menu/menu.php:134
4811
  msgid "Expanded"
4812
  msgstr "Uitgevouwen"
4813
 
4814
- #: modules/menu/menu.php:112
4815
  msgid "Submenu Icon"
4816
  msgstr "Submenu Icoon"
4817
 
4818
- #: modules/menu/menu.php:115 modules/menu/menu.php:125
4819
  msgid "Arrows"
4820
  msgstr "Pijlen"
4821
 
4822
- #: modules/menu/menu.php:116 modules/menu/menu.php:126
4823
  msgid "Plus sign"
4824
  msgstr "Plusteken"
4825
 
4826
- #: modules/menu/menu.php:117 modules/menu/menu.php:223
4827
- msgid "None"
4828
- msgstr "Geen"
4829
-
4830
- #: modules/menu/menu.php:122
4831
  msgid "Submenu Icon click"
4832
  msgstr "Submenu Icoon click"
4833
 
4834
- #: modules/menu/menu.php:131
4835
  msgid "Mobile Style"
4836
  msgstr "Mobiele stijl"
4837
 
4838
- #: modules/menu/menu.php:135
4839
  msgid "Hamburger Icon"
4840
  msgstr "Hamburger Icoon"
4841
 
4842
- #: modules/menu/menu.php:136
4843
- msgid "Hamburger Icon + label"
4844
- msgstr "Hamburger Icoon + label"
4845
 
4846
- #: modules/menu/menu.php:137
4847
  msgid "Menu Button"
4848
  msgstr "Menu-knop"
4849
 
 
 
 
 
4850
  #: modules/menu/menu.php:153
 
 
 
 
 
 
 
 
4851
  msgid "Menu Alignment"
4852
  msgstr "Menu Uitlijning"
4853
 
4854
- #: modules/menu/menu.php:164
4855
  msgid "Submenu Drop Shadow"
4856
  msgstr "Submenu slagschaduw"
4857
 
4858
- #: modules/menu/menu.php:206
4859
  msgid "Link Size"
4860
  msgstr "Link Grootte"
4861
 
4862
- #: modules/menu/menu.php:220
4863
  msgid "Link Format"
4864
  msgstr "Link Format"
4865
 
4866
- #: modules/menu/menu.php:224
4867
  msgid "Uppercase"
4868
  msgstr "Hoofdletters"
4869
 
4870
- #: modules/menu/menu.php:225
4871
  msgid "Lowercase"
4872
  msgstr "Kleine letters"
4873
 
4874
- #: modules/menu/menu.php:226
4875
  msgid "Capitalize"
4876
  msgstr "Kapitaliseren"
4877
 
4878
- #: modules/menu/menu.php:236
4879
  msgid "Link Weight"
4880
  msgstr "Link Gewicht"
4881
 
4882
- #: modules/menu/menu.php:239
4883
  msgid "Normal"
4884
  msgstr "Normaal"
4885
 
4886
- #: modules/menu/menu.php:240
4887
  msgid "Bold"
4888
  msgstr "Vet"
4889
 
4890
- #: modules/menu/menu.php:241
4891
- msgid "Light"
4892
- msgstr "Licht"
4893
-
4894
- #: modules/menu/menu.php:251
4895
  msgid "Horizontal Spacing"
4896
  msgstr "Horizontale afstand"
4897
 
4898
- #: modules/menu/menu.php:274
4899
  msgid "Vertical Spacing"
4900
  msgstr "Verticale afstand"
4901
 
4902
- #: modules/menu/menu.php:299
4903
- msgid "Backgrounds"
4904
- msgstr "Achtergronden"
4905
-
4906
- #: modules/menu/menu.php:303
4907
  msgid "Menu Background Color"
4908
  msgstr "Menu Achtergrondkleur"
4909
 
4910
- #: modules/menu/menu.php:313 modules/menu/menu.php:331
 
 
 
 
4911
  msgid "Menu Background Opacity"
4912
  msgstr "Menu Achtergrond Dichtheid"
4913
 
4914
- #: modules/menu/menu.php:321
4915
  msgid "Submenu Background Color"
4916
  msgstr "Submenu Achtergrondkleur"
4917
 
4918
- #: modules/menu/menu.php:340
 
 
 
 
4919
  msgid "Link Background Hover Color"
4920
  msgstr "Link Achtergrond Hover Kleur"
4921
 
4922
- # @ fl-builder
4923
- #: modules/menu/menu.php:351 modules/separator/separator.php:14
4924
- msgid "Separator"
4925
- msgstr "Scheidingslijn"
4926
-
4927
- #: modules/menu/menu.php:355
4928
  msgid "Show Separators"
4929
  msgstr "Toon scheidingslijnen"
4930
 
4931
- #: modules/menu/menu.php:369
4932
- msgid "Separator Color"
4933
- msgstr "Scheidingslijn Kleur"
4934
-
4935
- #: modules/menu/menu.php:374
4936
  msgid "Separator Opacity"
4937
  msgstr "Scheidingsteken Dichtheid"
4938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4939
  # @ fl-builder
4940
  #: modules/photo/photo.php:26
4941
  msgid "Upload a photo or display one from the media library."
4942
  msgstr "Upload een afbeelding of toon er een uit je mediabibliotheek."
4943
 
4944
  # @ fl-builder
4945
- #: modules/photo/photo.php:391
4946
  msgid "Photo Source"
4947
  msgstr "Afbeelding Bron"
4948
 
4949
  # @ fl-builder
4950
- #: modules/photo/photo.php:395 modules/photo/photo.php:467
4951
  msgid "URL"
4952
  msgstr "URL"
4953
 
4954
  # @ fl-builder
4955
- #: modules/photo/photo.php:412
4956
  msgid "Photo URL"
4957
  msgstr "Afbeelding URL"
4958
 
4959
  # @ fl-builder
4960
- #: modules/photo/photo.php:413
4961
  msgid "http://www.example.com/my-photo.jpg"
4962
  msgstr "http://www.voorbeeld.com/mijn-photo.jpg"
4963
 
4964
  # @ fl-builder
4965
- #: modules/photo/photo.php:441 modules/photo/photo.php:455
4966
  msgid "Caption"
4967
  msgstr "Bijschrift"
4968
 
4969
  # @ fl-builder
4970
- #: modules/photo/photo.php:445
4971
  msgid "Show Caption"
4972
  msgstr "Toon Bijschrift"
4973
 
4974
  # @ fl-builder
4975
- #: modules/photo/photo.php:464
4976
  msgid "Link Type"
4977
  msgstr "Link Type"
4978
 
4979
  # @ fl-builder
4980
- #: modules/photo/photo.php:466
4981
  msgctxt "Link type."
4982
  msgid "None"
4983
  msgstr "Geen"
4984
 
4985
  # @ fl-builder
4986
- #: modules/photo/photo.php:469
4987
  msgid "Photo File"
4988
  msgstr "Afbeeldingbestand"
4989
 
4990
  # @ fl-builder
4991
- #: modules/photo/photo.php:480
4992
  msgid ""
4993
  "Link type applies to how the image should be linked on click. You can choose "
4994
  "a specific URL, the individual photo or a separate page with the photo."
@@ -4998,7 +5599,7 @@ msgstr ""
4998
  "afbeelding of een aparte pagina met de afbeelding."
4999
 
5000
  # @ fl-builder
5001
- #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
5002
  msgid "Link URL"
5003
  msgstr "Link URL"
5004
 
@@ -5021,140 +5622,130 @@ msgstr "Berichten Carousel"
5021
  msgid "Display a carousel of your WordPress posts."
5022
  msgstr "Een carousel van uw WordPress posten weergeven"
5023
 
5024
- #: modules/post-carousel/post-carousel.php:110
5025
  #: modules/post-slider/post-slider.php:338
5026
  msgid "Slider"
5027
  msgstr "Slider"
5028
 
5029
  # @ fl-builder
5030
- #: modules/post-carousel/post-carousel.php:120
5031
- #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:91
5032
  msgid "Grid"
5033
  msgstr "Raster"
5034
 
5035
- # @ fl-builder
5036
- #: modules/post-carousel/post-carousel.php:152
5037
- #: modules/post-slider/post-slider.php:379 modules/video/video.php:120
5038
- msgid "Loop"
5039
- msgstr "Herhaal"
5040
-
5041
- #: modules/post-carousel/post-carousel.php:168
5042
  #: modules/post-slider/post-slider.php:395
5043
  msgid "Number of Posts"
5044
  msgstr "Aantal berichten"
5045
 
5046
- #: modules/post-carousel/post-carousel.php:175
5047
  #: modules/post-slider/post-slider.php:402
5048
  msgid "Slider Controls"
5049
  msgstr "Slider Controls"
5050
 
5051
  # @ fl-builder
5052
- #: modules/post-carousel/post-carousel.php:209
5053
  #: modules/post-grid/post-grid.php:14
5054
  msgid "Posts"
5055
  msgstr "Berichten"
5056
 
5057
- #: modules/post-carousel/post-carousel.php:213
5058
  msgid "Post Max Width"
5059
  msgstr "Bericht Max Breedte"
5060
 
5061
  # @ fl-builder
5062
- #: modules/post-carousel/post-carousel.php:221
5063
- #: modules/post-grid/post-grid.php:103
5064
  msgid "Post Spacing"
5065
  msgstr "Tussenruimte"
5066
 
5067
- #: modules/post-carousel/post-carousel.php:229
5068
- msgid "Equalize Column Heights"
5069
- msgstr "Kolom hoogtes gelijkstellen"
5070
-
5071
- #: modules/post-carousel/post-carousel.php:238
5072
  msgid "Post Hover Transition"
5073
  msgstr "Bericht Hover Overgang"
5074
 
5075
- #: modules/post-carousel/post-carousel.php:242
5076
- #: modules/post-grid/post-grid.php:248
5077
  msgid "Slide Up"
5078
  msgstr "Schuif Omhoog"
5079
 
5080
- #: modules/post-carousel/post-carousel.php:243
5081
- #: modules/post-grid/post-grid.php:249
5082
  msgid "Slide Down"
5083
  msgstr "Schuif Omlaag"
5084
 
5085
- #: modules/post-carousel/post-carousel.php:244
5086
- #: modules/post-grid/post-grid.php:250
5087
  msgid "Scale Up"
5088
  msgstr "Vergroot"
5089
 
5090
- #: modules/post-carousel/post-carousel.php:245
5091
- #: modules/post-grid/post-grid.php:251
5092
  msgid "Scale Down"
5093
  msgstr "Verklein"
5094
 
5095
  # @ fl-builder
5096
- #: modules/post-carousel/post-carousel.php:251
5097
- #: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:456
5098
  msgid "Featured Image"
5099
  msgstr "Uitgelichte Afbeelding"
5100
 
5101
- #: modules/post-carousel/post-carousel.php:279
5102
- #: modules/post-grid/post-grid.php:261
5103
  msgid "Use Icon for Posts"
5104
  msgstr "Gebruik pictogram voor berichten"
5105
 
5106
- #: modules/post-carousel/post-carousel.php:293
5107
- #: modules/post-grid/post-grid.php:275
5108
  msgid "Post Icon"
5109
  msgstr "Bericht Icoon"
5110
 
5111
- #: modules/post-carousel/post-carousel.php:297
5112
- #: modules/post-grid/post-grid.php:279
5113
  msgid "Post Icon Position"
5114
  msgstr "Bericht Icoon Positie"
5115
 
5116
  # @ fl-builder
5117
- #: modules/post-carousel/post-carousel.php:300
5118
- #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
5119
  msgid "Above Text"
5120
  msgstr "Boven Tekst"
5121
 
5122
- #: modules/post-carousel/post-carousel.php:301
5123
- #: modules/post-grid/post-grid.php:283
5124
  msgid "Below Text"
5125
  msgstr "Onder tekst"
5126
 
5127
- #: modules/post-carousel/post-carousel.php:306
5128
- #: modules/post-grid/post-grid.php:288
5129
  msgid "Post Icon Size"
5130
  msgstr "Bericht Icoon Grootte"
5131
 
5132
  # @ fl-builder
5133
- #: modules/post-carousel/post-carousel.php:315
5134
- #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:495
5135
  msgid "Post Info"
5136
  msgstr "Bericht Info"
5137
 
5138
  # @ fl-builder
5139
- #: modules/post-carousel/post-carousel.php:342
5140
- #: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:522
5141
  msgid "Date Format"
5142
  msgstr "Datumnotatie"
5143
 
5144
  # @ fl-builder
5145
- #: modules/post-carousel/post-carousel.php:372
5146
- #: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:561
5147
  msgid "More Link"
5148
  msgstr "Lees Meer Link"
5149
 
5150
  # @ fl-builder
5151
- #: modules/post-carousel/post-carousel.php:381
5152
- #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:570
5153
  msgid "More Link Text"
5154
  msgstr "More Link Tekst"
5155
 
5156
- #: modules/post-carousel/post-carousel.php:418
5157
- #: modules/post-grid/post-grid.php:307
5158
  msgid "Post Icon Color"
5159
  msgstr "Bericht Icoon Kleur"
5160
 
@@ -5178,55 +5769,54 @@ msgstr "Opmaakstijl"
5178
  msgid "Feed"
5179
  msgstr "Feed"
5180
 
5181
- # @ fl-builder
5182
  #: modules/post-grid/post-grid.php:74
5183
- msgid "Pagination Style"
5184
- msgstr "Paginering Stijl"
5185
 
5186
  # @ fl-builder
5187
- #: modules/post-grid/post-grid.php:77
5188
- msgid "Numbers"
5189
- msgstr "Cijfers"
5190
 
5191
  # @ fl-builder
5192
- #: modules/post-grid/post-grid.php:79
5193
  msgctxt "Pagination style."
5194
  msgid "None"
5195
  msgstr "Geen"
5196
 
5197
  # @ fl-builder
5198
- #: modules/post-grid/post-grid.php:84
5199
  msgid "Posts Per Page"
5200
  msgstr "Berichten per pagina"
5201
 
5202
  # @ fl-builder
5203
- #: modules/post-grid/post-grid.php:95
5204
  msgid "Post Width"
5205
  msgstr "Bericht Breedte"
5206
 
5207
  # @ fl-builder
5208
- #: modules/post-grid/post-grid.php:134
5209
  msgid "Beside Text"
5210
  msgstr "Naast Tekst"
5211
 
5212
  # @ fl-builder
5213
- #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:538
5214
  msgid "Comments"
5215
  msgstr "Reacties"
5216
 
5217
- #: modules/post-grid/post-grid.php:211
5218
  msgid "Content Type"
5219
  msgstr "Inhoud Type"
5220
 
5221
- #: modules/post-grid/post-grid.php:214
5222
  msgid "Excerpt"
5223
  msgstr "Samenvatting"
5224
 
5225
- #: modules/post-grid/post-grid.php:215
5226
  msgid "Full Text"
5227
  msgstr "Volledige Tekst"
5228
 
5229
- #: modules/post-grid/post-grid.php:244
5230
  msgid "Hover Transition"
5231
  msgstr "Over overgang"
5232
 
@@ -5289,38 +5879,60 @@ msgid "A simple pricing table generator."
5289
  msgstr "Een eenvoudige Prijstabel generator."
5290
 
5291
  # @ fl-builder
5292
- #: modules/pricing-table/pricing-table.php:26
5293
  msgid "Pricing Boxes"
5294
  msgstr "Prijs Vakken"
5295
 
5296
  # @ fl-builder
5297
- #: modules/pricing-table/pricing-table.php:33
5298
  msgid "Pricing Box"
5299
  msgstr "Prijs Vak"
5300
 
5301
- # @ fl-builder
5302
- #: modules/pricing-table/pricing-table.php:50
5303
- msgid "Box Spacing"
5304
- msgstr "Vak Tussenruimte"
5305
 
5306
  # @ fl-builder
5307
- #: modules/pricing-table/pricing-table.php:53
5308
- #: modules/testimonials/testimonials.php:40
5309
- msgid "Wide"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5310
  msgstr "Breed"
5311
 
5312
- # @ fl-builder
5313
- #: modules/pricing-table/pricing-table.php:54
5314
- msgid "Tight"
5315
- msgstr "Strak"
 
 
 
 
 
5316
 
5317
  # @ fl-builder
5318
- #: modules/pricing-table/pricing-table.php:59
5319
  msgid "Features Min Height"
5320
  msgstr "Opties Min Hoogte"
5321
 
5322
  # @ fl-builder
5323
- #: modules/pricing-table/pricing-table.php:63
5324
  msgid ""
5325
  "Use this to normalize the height of your boxes when they have different "
5326
  "numbers of features."
@@ -5329,97 +5941,78 @@ msgstr ""
5329
  "ongelijk aantal opties hebben."
5330
 
5331
  # @ fl-builder
5332
- #: modules/pricing-table/pricing-table.php:70
5333
- msgctxt "Border size."
5334
- msgid "Wide"
5335
- msgstr "Breed"
5336
-
5337
- # @ fl-builder
5338
- #: modules/pricing-table/pricing-table.php:71
5339
- msgctxt "Border size."
5340
- msgid "Tight"
5341
- msgstr "Strak"
5342
-
5343
- # @ fl-builder
5344
- #: modules/pricing-table/pricing-table.php:84
5345
  msgid "Add Pricing Box"
5346
  msgstr "Prijzen vak Toevoegen"
5347
 
5348
  # @ fl-builder
5349
- #: modules/pricing-table/pricing-table.php:98
5350
  msgid "Title Size"
5351
  msgstr "Titel Grootte"
5352
 
5353
  # @ fl-builder
5354
- #: modules/pricing-table/pricing-table.php:107
5355
  msgid "Price Box"
5356
  msgstr "Prijs Vak"
5357
 
5358
  # @ fl-builder
5359
- #: modules/pricing-table/pricing-table.php:111
5360
- #: modules/woocommerce/woocommerce.php:190
5361
- msgid "Price"
5362
- msgstr "Prijs"
5363
-
5364
- # @ fl-builder
5365
- #: modules/pricing-table/pricing-table.php:115
5366
  msgid "Duration"
5367
  msgstr "Tijdsduur"
5368
 
5369
  # @ fl-builder
5370
- #: modules/pricing-table/pricing-table.php:116
5371
  msgid "per Year"
5372
  msgstr "Per Jaar"
5373
 
5374
  # @ fl-builder
5375
- #: modules/pricing-table/pricing-table.php:120
5376
  msgid "Price Size"
5377
  msgstr "Prijs grootte"
5378
 
5379
  # @ fl-builder
5380
- #: modules/pricing-table/pricing-table.php:133
5381
- #: modules/subscribe-form/subscribe-form.php:168
5382
- msgid "Button Text"
5383
- msgstr "Knop Tekst"
5384
-
5385
- # @ fl-builder
5386
- #: modules/pricing-table/pricing-table.php:137
5387
- msgid "Button URL"
5388
- msgstr "Button URL"
5389
-
5390
- # @ fl-builder
5391
- #: modules/pricing-table/pricing-table.php:142
5392
  msgctxt "Price features displayed in pricing box."
5393
  msgid "Features"
5394
  msgstr "Opties"
5395
 
5396
  # @ fl-builder
5397
- #: modules/pricing-table/pricing-table.php:147
5398
  msgid "One feature per line. HTML is okay."
5399
  msgstr "Eén optie per regel. HTML is oke."
5400
 
5401
  # @ fl-builder
5402
- #: modules/pricing-table/pricing-table.php:162
5403
- msgid "Box Background"
5404
- msgstr "Vak Achtergrond"
 
5405
 
5406
  # @ fl-builder
5407
- #: modules/pricing-table/pricing-table.php:167
 
 
 
 
 
 
 
 
 
5408
  msgid "Box Foreground"
5409
  msgstr "Vak Voorgrond"
5410
 
5411
  # @ fl-builder
5412
- #: modules/pricing-table/pricing-table.php:173
5413
  msgid "Accent Color"
5414
  msgstr "Accent kleur"
5415
 
5416
  # @ fl-builder
5417
- #: modules/pricing-table/pricing-table.php:178
5418
  msgid "Accent Text Color"
5419
  msgstr "Tekst Accentkleur"
5420
 
5421
  # @ fl-builder
5422
- #: modules/pricing-table/pricing-table.php:182
5423
  msgid "Box Top Margin"
5424
  msgstr "Vak Bovenmarge"
5425
 
@@ -5434,7 +6027,7 @@ msgid "A divider line to separate content."
5434
  msgstr "Een scheidingslijn om inhoud te scheiden."
5435
 
5436
  # @ fl-builder
5437
- #: modules/separator/separator.php:85
5438
  msgid ""
5439
  "The type of border to use. Double borders must have a height of at least 3px "
5440
  "to render properly."
@@ -5466,24 +6059,24 @@ msgid "Display multiple photos in a slideshow view."
5466
  msgstr "Weergave van meerdere afbeeldingenin een diavoorstelling."
5467
 
5468
  # @ fl-builder
5469
- #: modules/slideshow/slideshow.php:310
5470
  msgid "Skin Color"
5471
  msgstr "Skin Kleur"
5472
 
5473
  # @ fl-builder
5474
- #: modules/slideshow/slideshow.php:313
5475
  msgctxt "Color."
5476
  msgid "Light"
5477
  msgstr "Licht"
5478
 
5479
  # @ fl-builder
5480
- #: modules/slideshow/slideshow.php:314
5481
  msgctxt "Color."
5482
  msgid "Dark"
5483
  msgstr "Donker"
5484
 
5485
  # @ fl-builder
5486
- #: modules/slideshow/slideshow.php:316
5487
  msgid ""
5488
  "If your overall theme/images are lighter in color, light will display "
5489
  "buttons in a darker color scheme and vice versa for dark."
@@ -5492,7 +6085,7 @@ msgstr ""
5492
  "in een donkere kleur schema weergeven en en omgekeerd voor donker."
5493
 
5494
  # @ fl-builder
5495
- #: modules/slideshow/slideshow.php:326
5496
  msgid ""
5497
  "Crop set to no will fit the slideshow images to the height you specify and "
5498
  "keep the width proportional, whereas crop set to yes will fit the slideshow "
@@ -5506,39 +6099,39 @@ msgstr ""
5506
  "aan de afmetingen te voldoen."
5507
 
5508
  # @ fl-builder
5509
- #: modules/slideshow/slideshow.php:330
5510
  msgid "Disable Right-Click"
5511
  msgstr "Klik met de rechtermuisknop uitschakelen"
5512
 
5513
  # @ fl-builder
5514
- #: modules/slideshow/slideshow.php:350
5515
  msgctxt "Click action type."
5516
  msgid "None"
5517
  msgstr "Geen"
5518
 
5519
  # @ fl-builder
5520
- #: modules/slideshow/slideshow.php:374
5521
  msgid "Playback"
5522
  msgstr "Afspelen"
5523
 
5524
  # @ fl-builder
5525
- #: modules/slideshow/slideshow.php:400
5526
  msgctxt "Slideshow transition."
5527
  msgid "None"
5528
  msgstr "Geen"
5529
 
5530
  # @ fl-builder
5531
- #: modules/slideshow/slideshow.php:437
5532
  msgid "Controls"
5533
  msgstr "Instellingen"
5534
 
5535
  # @ fl-builder
5536
- #: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
5537
  msgid "Navigation Arrows"
5538
  msgstr "Navigatiepijlen"
5539
 
5540
  # @ fl-builder
5541
- #: modules/slideshow/slideshow.php:450
5542
  msgid ""
5543
  "Navigational arrows allow the visitor to freely move through the images in "
5544
  "your slideshow. These are larger arrows that overlay your slideshow images "
@@ -5550,83 +6143,83 @@ msgstr ""
5550
  "de balk met besturingselementen."
5551
 
5552
  # @ fl-builder
5553
- #: modules/slideshow/slideshow.php:455
5554
  msgid "Control Bar"
5555
  msgstr "Navigatiebalk"
5556
 
5557
  # @ fl-builder
5558
- #: modules/slideshow/slideshow.php:459
5559
  msgid "Nav Type"
5560
  msgstr "Navigatie Type"
5561
 
5562
  # @ fl-builder
5563
- #: modules/slideshow/slideshow.php:462
5564
  msgctxt "Nav type."
5565
  msgid "None"
5566
  msgstr "Geen"
5567
 
5568
  # @ fl-builder
5569
- #: modules/slideshow/slideshow.php:463
5570
  msgid "Buttons"
5571
  msgstr "Knoppen"
5572
 
5573
  # @ fl-builder
5574
- #: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
5575
  msgid "Thumbs"
5576
  msgstr "Miniaturen"
5577
 
5578
  # @ fl-builder
5579
- #: modules/slideshow/slideshow.php:479
5580
  msgid "Nav Position"
5581
  msgstr "Navigatie Positie"
5582
 
5583
  # @ fl-builder
5584
- #: modules/slideshow/slideshow.php:489
5585
  msgid "Control Bar Buttons"
5586
  msgstr "Navigatiebalk Knoppen"
5587
 
5588
  # @ fl-builder
5589
- #: modules/slideshow/slideshow.php:502
5590
  msgid "Play Button"
5591
- msgstr "Play Button"
5592
 
5593
  # @ fl-builder
5594
- #: modules/slideshow/slideshow.php:511
5595
  msgid "Fullscreen Button"
5596
  msgstr "Volledig Scherm Knop"
5597
 
5598
  # @ fl-builder
5599
- #: modules/slideshow/slideshow.php:520
5600
  msgid "Photo Count"
5601
  msgstr "Aantal Afbeeldingen"
5602
 
5603
  # @ fl-builder
5604
- #: modules/slideshow/slideshow.php:529
5605
  msgid "Thumbs Button"
5606
- msgstr "Miniaturen Button"
5607
 
5608
  # @ fl-builder
5609
- #: modules/slideshow/slideshow.php:538
5610
  msgid "Caption Button"
5611
- msgstr "Bijschrift Button"
5612
 
5613
  # @ fl-builder
5614
- #: modules/slideshow/slideshow.php:547
5615
  msgid "Social Button"
5616
- msgstr "Social Media Button"
5617
 
5618
  # @ fl-builder
5619
- #: modules/slideshow/slideshow.php:557
5620
  msgid "Control Bar Overlay"
5621
  msgstr "Navigatiebalk Overlay"
5622
 
5623
  # @ fl-builder
5624
- #: modules/slideshow/slideshow.php:561
5625
  msgid "Overlay Enabled"
5626
  msgstr "Overlay Ingeschakeld"
5627
 
5628
  # @ fl-builder
5629
- #: modules/slideshow/slideshow.php:572
5630
  msgid ""
5631
  "Control bar overlay specifies if the control bar buttons you choose overlay "
5632
  "your slideshow images or site below the slideshow completely."
@@ -5636,12 +6229,12 @@ msgstr ""
5636
  "diavoorstelling worden geplaatst."
5637
 
5638
  # @ fl-builder
5639
- #: modules/slideshow/slideshow.php:576
5640
  msgid "Overlay Hide"
5641
  msgstr "Verberg Overlay"
5642
 
5643
  # @ fl-builder
5644
- #: modules/slideshow/slideshow.php:582
5645
  msgid ""
5646
  "Overlay hide will hide the control bar after however many seconds you "
5647
  "specify below. They will reappear upon mouse over."
@@ -5650,62 +6243,62 @@ msgstr ""
5650
  "seconden. Ze verschijnen weer wanneer er met de muis overheen wordt bewogen."
5651
 
5652
  # @ fl-builder
5653
- #: modules/slideshow/slideshow.php:586
5654
  msgid "Overlay Hide Delay"
5655
  msgstr "OVerberg Overlay Vertraging"
5656
 
5657
  # @ fl-builder
5658
- #: modules/slideshow/slideshow.php:598
5659
  msgid "Thumbs Size"
5660
  msgstr "Miniatuur Afmeting"
5661
 
5662
  # @ fl-builder
5663
- #: modules/slideshow/slideshow.php:607
5664
  msgid "Social"
5665
  msgstr "Social"
5666
 
5667
  # @ fl-builder
5668
- #: modules/slideshow/slideshow.php:611
5669
  msgid "Facebook Button"
5670
- msgstr "Facebook Button"
5671
 
5672
  # @ fl-builder
5673
- #: modules/slideshow/slideshow.php:623
5674
  msgid "Twitter Button"
5675
- msgstr "Twitter Button"
5676
 
5677
  # @ fl-builder
5678
- #: modules/slideshow/slideshow.php:635
5679
  msgid "Google Plus Button"
5680
- msgstr "Google+ Button"
5681
 
5682
  # @ fl-builder
5683
- #: modules/slideshow/slideshow.php:647
5684
  msgid "Pinterest Button"
5685
- msgstr "Pinterest Button"
5686
 
5687
  # @ fl-builder
5688
  #: modules/social-buttons/social-buttons.php:14
5689
  msgid "Social Buttons"
5690
- msgstr "Social Buttons"
5691
 
5692
  # @ fl-builder
5693
  #: modules/social-buttons/social-buttons.php:15
5694
  msgid "Displays social buttons."
5695
- msgstr "Toon Social Buttons."
5696
 
5697
  # @ fl-builder
5698
- #: modules/social-buttons/social-buttons.php:71
5699
  msgid "Target URL"
5700
  msgstr "Doel URL"
5701
 
5702
  # @ fl-builder
5703
- #: modules/social-buttons/social-buttons.php:75
5704
  msgid "Current Page"
5705
  msgstr "Huidige Pagina"
5706
 
5707
  # @ fl-builder
5708
- #: modules/social-buttons/social-buttons.php:82
5709
  msgid ""
5710
  "The Target URL field correlates to the page you would like your social icons "
5711
  "to interface with. For example, if you show Facebook, the user will \"Like\" "
@@ -5716,22 +6309,22 @@ msgstr ""
5716
  "gebruiker \"Liken\" wat je in dit veld plaatst."
5717
 
5718
  # @ fl-builder
5719
- #: modules/social-buttons/social-buttons.php:89
5720
  msgid "Custom URL"
5721
  msgstr "Aangepaste URL"
5722
 
5723
  # @ fl-builder
5724
- #: modules/social-buttons/social-buttons.php:107
5725
  msgid "Show Facebook"
5726
  msgstr "Toon Facebook"
5727
 
5728
  # @ fl-builder
5729
- #: modules/social-buttons/social-buttons.php:116
5730
  msgid "Show Twitter"
5731
  msgstr "Toon Twitter"
5732
 
5733
  # @ fl-builder
5734
- #: modules/social-buttons/social-buttons.php:125
5735
  msgid "Show Google+"
5736
  msgstr "Toon Google+"
5737
 
@@ -5756,33 +6349,13 @@ msgstr "Aanmeld Formulier"
5756
  msgid "Adds a simple subscribe form to your layout."
5757
  msgstr "Voeg een eenvoudig abonneren formulier toe aan je layout."
5758
 
5759
- #: modules/subscribe-form/subscribe-form.php:118
5760
- msgid "Success"
5761
- msgstr "Succes"
5762
-
5763
- #: modules/subscribe-form/subscribe-form.php:122
5764
- msgid "Success Action"
5765
- msgstr "Succes actie"
5766
-
5767
- #: modules/subscribe-form/subscribe-form.php:124
5768
- msgid "Show Message"
5769
- msgstr "Toon Bericht"
5770
-
5771
- #: modules/subscribe-form/subscribe-form.php:125
5772
- msgid "Redirect"
5773
- msgstr "Omleiden"
5774
-
5775
- #: modules/subscribe-form/subscribe-form.php:144
5776
  msgid ""
5777
  "Thanks for subscribing! Please check your email for further instructions."
5778
  msgstr ""
5779
  "Bedankt voor het aanmelden! Controleer uw email voor verdere instructies."
5780
 
5781
- #: modules/subscribe-form/subscribe-form.php:151
5782
- msgid "Success URL"
5783
- msgstr "Succes URL"
5784
-
5785
- #: modules/subscribe-form/subscribe-form.php:169
5786
  msgid "Subscribe!"
5787
  msgstr "Aanmelden!"
5788
 
@@ -5798,8 +6371,8 @@ msgstr "Een verzameling met getabde inhoud weergeven."
5798
 
5799
  # @ fl-builder
5800
  #: modules/testimonials/testimonials.php:14
5801
- #: modules/testimonials/testimonials.php:60
5802
- #: modules/testimonials/testimonials.php:174
5803
  msgid "Testimonials"
5804
  msgstr "Beoordelingen"
5805
 
@@ -5810,36 +6383,41 @@ msgstr "Een geanimeerde beoordelingen gebied."
5810
 
5811
  # @ fl-builder
5812
  #: modules/testimonials/testimonials.php:41
 
 
 
 
 
5813
  msgid "Compact"
5814
  msgstr "Compact"
5815
 
5816
  # @ fl-builder
5817
- #: modules/testimonials/testimonials.php:51
5818
  msgid "Wide is for 1 column rows, compact is for multi-column rows."
5819
  msgstr "Wijd is voor 1 kolom per rij, compact is voor multi-kolom rijen."
5820
 
5821
  # @ fl-builder
5822
- #: modules/testimonials/testimonials.php:78
5823
  msgid "Slider Settings"
5824
  msgstr "Diavoorstelling Instellingen"
5825
 
5826
  # @ fl-builder
5827
- #: modules/testimonials/testimonials.php:135
5828
  msgid "Arrow Color"
5829
  msgstr "Pijl kleur"
5830
 
5831
  # @ fl-builder
5832
- #: modules/testimonials/testimonials.php:165
5833
  msgid "Dot Color"
5834
  msgstr "Dot kleur"
5835
 
5836
  # @ fl-builder
5837
- #: modules/testimonials/testimonials.php:181
5838
  msgid "Testimonial"
5839
  msgstr "Beoordeling"
5840
 
5841
  # @ fl-builder
5842
- #: modules/testimonials/testimonials.php:197
5843
  msgid "Add Testimonial"
5844
  msgstr "Beoordeling Toevoegen"
5845
 
@@ -5849,23 +6427,37 @@ msgid "Render a WordPress or embedable video."
5849
  msgstr "Toon een Wordpress of ingesloten video."
5850
 
5851
  # @ fl-builder
5852
- #: modules/video/video.php:83
5853
  msgid "Video Type"
5854
  msgstr "Video type"
5855
 
5856
  # @ fl-builder
5857
- #: modules/video/video.php:87
5858
  msgid "Embed"
5859
  msgstr "Insluiten"
5860
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5861
  # @ fl-builder
5862
- #: modules/video/video.php:104
5863
  msgctxt "Video preview/fallback image."
5864
  msgid "Poster"
5865
  msgstr "Poster"
5866
 
5867
  # @ fl-builder
5868
- #: modules/widget/includes/frontend.php:35
5869
  #: modules/widget/includes/settings-general.php:46
5870
  #, php-format
5871
  msgctxt "%s stands for widget slug."
@@ -5893,53 +6485,57 @@ msgid "Display products or categories from your WooCommerce store."
5893
  msgstr "Producten of categorieën uit je WooCommerce winkel weergeven."
5894
 
5895
  # @ fl-builder
5896
- #: modules/woocommerce/woocommerce.php:61
5897
  msgid "Single Product"
5898
  msgstr "Enkel product"
5899
 
 
 
 
 
5900
  # @ fl-builder
5901
- #: modules/woocommerce/woocommerce.php:62
5902
- #: modules/woocommerce/woocommerce.php:113
5903
  msgid "Multiple Products"
5904
  msgstr "Meerdere producten"
5905
 
5906
  # @ fl-builder
5907
- #: modules/woocommerce/woocommerce.php:63
5908
  msgid "\"Add to Cart\" Button"
5909
- msgstr "\"Voeg toe aan je winkelwagen\" button"
5910
 
5911
  # @ fl-builder
5912
- #: modules/woocommerce/woocommerce.php:64
5913
  msgid "Categories"
5914
  msgstr "Categorieën"
5915
 
5916
  # @ fl-builder
5917
- #: modules/woocommerce/woocommerce.php:65
5918
  msgid "Cart"
5919
  msgstr "Winkelwagen"
5920
 
5921
  # @ fl-builder
5922
- #: modules/woocommerce/woocommerce.php:66
5923
  msgid "Checkout"
5924
  msgstr "Afrekenen"
5925
 
5926
  # @ fl-builder
5927
- #: modules/woocommerce/woocommerce.php:67
5928
  msgid "Order Tracking"
5929
  msgstr "Bestelling Volgen"
5930
 
5931
  # @ fl-builder
5932
- #: modules/woocommerce/woocommerce.php:68
5933
  msgid "My Account"
5934
  msgstr "Mijn account"
5935
 
5936
  # @ fl-builder
5937
- #: modules/woocommerce/woocommerce.php:87
5938
  msgid "Product ID"
5939
  msgstr "Product-ID"
5940
 
5941
  # @ fl-builder
5942
- #: modules/woocommerce/woocommerce.php:90
5943
  msgid ""
5944
  "As you add products in the WooCommerce Products area, each will be assigned "
5945
  "a unique ID. You can find this unique product ID by visiting the Products "
@@ -5951,12 +6547,12 @@ msgstr ""
5951
  "De unieke ID is het eerste kenmerk."
5952
 
5953
  # @ fl-builder
5954
- #: modules/woocommerce/woocommerce.php:94
5955
  msgid "Parent Category ID"
5956
  msgstr "Bovenliggende categorie ID"
5957
 
5958
  # @ fl-builder
5959
- #: modules/woocommerce/woocommerce.php:97
5960
  msgid ""
5961
  "As you add product categories in the WooCommerce Products area, each will be "
5962
  "assigned a unique ID. This ID can be found by hovering on the category in "
@@ -5970,58 +6566,58 @@ msgstr ""
5970
  "ID is de enige numerieke waarde in de URL."
5971
 
5972
  # @ fl-builder
5973
- #: modules/woocommerce/woocommerce.php:101
5974
- #: modules/woocommerce/woocommerce.php:172
5975
  msgid "Columns"
5976
  msgstr "Kolommen"
5977
 
5978
  # @ fl-builder
5979
- #: modules/woocommerce/woocommerce.php:117
5980
  msgid "Products Source"
5981
  msgstr "Producten Bron"
5982
 
5983
  # @ fl-builder
5984
- #: modules/woocommerce/woocommerce.php:120
5985
  msgid "Products IDs"
5986
  msgstr "Producten-ID's"
5987
 
5988
  # @ fl-builder
5989
- #: modules/woocommerce/woocommerce.php:121
5990
  msgid "Product Category"
5991
  msgstr "Productcategorie"
5992
 
5993
  # @ fl-builder
5994
- #: modules/woocommerce/woocommerce.php:122
5995
  msgid "Recent Products"
5996
  msgstr "Recente Producten"
5997
 
5998
  # @ fl-builder
5999
- #: modules/woocommerce/woocommerce.php:123
6000
  msgid "Featured Products"
6001
  msgstr "Uitgelichte Producten"
6002
 
6003
  # @ fl-builder
6004
- #: modules/woocommerce/woocommerce.php:124
6005
  msgid "Sale Products"
6006
  msgstr "Verkoop Producten"
6007
 
6008
  # @ fl-builder
6009
- #: modules/woocommerce/woocommerce.php:125
6010
  msgid "Best Selling Products"
6011
  msgstr "Best Verkopende Producten"
6012
 
6013
  # @ fl-builder
6014
- #: modules/woocommerce/woocommerce.php:126
6015
  msgid "Top Rated Products"
6016
  msgstr "Best Beoordeelde Producten"
6017
 
6018
  # @ fl-builder
6019
- #: modules/woocommerce/woocommerce.php:154
6020
  msgid "Product IDs"
6021
  msgstr "Product-ID's"
6022
 
6023
  # @ fl-builder
6024
- #: modules/woocommerce/woocommerce.php:156
6025
  msgid ""
6026
  "As you add products in the WooCommerce Products area, each will be assigned "
6027
  "a unique ID. You can find this unique product ID by visiting the Products "
@@ -6035,12 +6631,12 @@ msgstr ""
6035
  "gescheiden door een komma."
6036
 
6037
  # @ fl-builder
6038
- #: modules/woocommerce/woocommerce.php:160
6039
  msgid "Category Slug"
6040
  msgstr "Categorie Slug"
6041
 
6042
  # @ fl-builder
6043
- #: modules/woocommerce/woocommerce.php:162
6044
  msgid ""
6045
  "As you add product categories in the WooCommerce Products area, each will be "
6046
  "assigned a unique slug or you can edit and add your own. These slugs can be "
@@ -6053,35 +6649,310 @@ msgstr ""
6053
  "Producten. Je kunt er hier meerdere ingeven, gescheiden door een komma. "
6054
 
6055
  # @ fl-builder
6056
- #: modules/woocommerce/woocommerce.php:166
6057
  msgid "Number of Products"
6058
  msgstr "Aantal Producten"
6059
 
6060
  # @ fl-builder
6061
- #: modules/woocommerce/woocommerce.php:183
6062
  msgid "Sort By"
6063
  msgstr "Sorteren Op"
6064
 
6065
  # @ fl-builder
6066
- #: modules/woocommerce/woocommerce.php:186
6067
  msgctxt "Sort by."
6068
  msgid "Default"
6069
  msgstr "Standaard"
6070
 
6071
  # @ fl-builder
6072
- #: modules/woocommerce/woocommerce.php:187
6073
  msgid "Popularity"
6074
  msgstr "Populariteit"
6075
 
6076
  # @ fl-builder
6077
- #: modules/woocommerce/woocommerce.php:188
6078
  msgid "Rating"
6079
  msgstr "Waardering"
6080
 
6081
- #: modules/woocommerce/woocommerce.php:195
6082
  msgid "Sort Direction"
6083
  msgstr "Sorteer Richting"
6084
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6085
  # @ fl-builder
6086
  #~ msgctxt "Custom post type label."
6087
  #~ msgid "Layout Templates"
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-11 10:36+0100\n"
6
+ "PO-Revision-Date: 2016-02-11 11:24+0100\n"
7
  "Last-Translator: Didou Schol <didou@badabing.nl>\n"
8
  "Language-Team: \n"
9
  "Language: nl_NL\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.6\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
17
  "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
22
 
23
  # @ fl-builder
24
  #: classes/class-fl-builder-admin-settings.php:116
 
25
  #, php-format
26
  msgctxt "%s stands for custom branded \"Page Builder\" name."
27
  msgid "%s Settings"
51
 
52
  # @ fl-builder
53
  #: classes/class-fl-builder-admin-settings.php:159
54
+ #: classes/class-fl-builder.php:663
55
  msgid "Templates"
56
  msgstr "Templates"
57
 
63
 
64
  # @ fl-builder
65
  #: classes/class-fl-builder-admin-settings.php:167
66
+ #: modules/icon-group/icon-group.php:28
67
+ #: modules/post-carousel/post-carousel.php:289
68
+ #: modules/post-grid/post-grid.php:266
69
  msgid "Icons"
70
  msgstr "Iconen"
71
 
76
 
77
  # @ fl-builder
78
  #: classes/class-fl-builder-admin-settings.php:175
 
79
  msgid "Branding"
80
  msgstr "Merk"
81
 
82
  # @ fl-builder
83
  #: classes/class-fl-builder-admin-settings.php:179
84
  msgid "Help Button"
85
+ msgstr "Help knop"
86
 
87
  #: classes/class-fl-builder-admin-settings.php:183
88
  #: includes/admin-settings-cache.php:3
112
  msgstr "Error! Upload aub een icoon-set van Icomoon of Fontello."
113
 
114
  # @ fl-builder
115
+ #: classes/class-fl-builder-admin-settings.php:632
116
  msgid "Error! Please enter an iframe for the video embed code."
117
  msgstr "Error! Geef aub een iframe voor de video embed-code."
118
 
119
  # @ fl-builder
120
+ #: classes/class-fl-builder-admin-settings.php:650
121
  msgid "Error! You must have at least one feature of the help button enabled."
122
  msgstr ""
123
+ "Error! Je moet minstens één optie van de help knop geselecteerd hebben."
124
 
125
  # @ fl-builder
126
  #: classes/class-fl-builder-admin.php:45
158
 
159
  # @ fl-builder
160
  #: classes/class-fl-builder-admin.php:253
161
+ #: classes/class-fl-builder-model.php:4405
162
  msgid "Page Builder"
163
  msgstr "Page Builder"
164
 
165
  # @ fl-builder
166
+ #: classes/class-fl-builder-fonts.php:41 classes/class-fl-builder-fonts.php:66
167
+ #: classes/class-fl-builder-fonts.php:97 includes/column-settings.php:463
168
+ #: includes/column-settings.php:491 includes/row-settings.php:50
169
+ #: modules/callout/callout.php:285
170
+ #: modules/content-slider/content-slider.php:475 modules/cta/cta.php:169
171
+ #: modules/heading/heading.php:130 modules/heading/heading.php:157
172
+ #: modules/heading/heading.php:187 modules/menu/menu.php:156
173
+ #: modules/menu/menu.php:180 modules/post-carousel/post-carousel.php:359
174
+ #: modules/post-grid/post-grid.php:184 modules/post-slider/post-slider.php:525
175
+ #: modules/post-slider/post-slider.php:602
176
+ msgid "Default"
177
+ msgstr "Standaard"
178
+
179
+ # @ fl-builder
180
+ #: classes/class-fl-builder-model.php:1838
181
  #, php-format
182
  msgctxt "%s stands for the module filename"
183
  msgid ""
188
  "bestandsnaam aan te passen voor compatibiliteit met Beaver Builder."
189
 
190
  # @ fl-builder
191
+ #: classes/class-fl-builder-model.php:1896
192
+ #: classes/class-fl-builder-model.php:1960 modules/audio/audio.php:21
193
+ #: modules/button/button.php:16 modules/heading/heading.php:16
194
+ #: modules/html/html.php:16 modules/photo/photo.php:27
195
+ #: modules/rich-text/rich-text.php:16 modules/separator/separator.php:16
196
+ #: modules/video/video.php:21
197
  msgid "Basic Modules"
198
  msgstr "Basis Modules"
199
 
200
  # @ fl-builder
201
+ #: classes/class-fl-builder-model.php:1897
202
+ #: classes/class-fl-builder-model.php:1961 modules/accordion/accordion.php:16
203
+ #: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
204
+ #: modules/content-slider/content-slider.php:16
205
+ #: modules/countdown/countdown.php:16 modules/cta/cta.php:16
206
+ #: modules/gallery/gallery.php:16 modules/icon-group/icon-group.php:16
207
+ #: modules/icon/icon.php:16 modules/map/map.php:16 modules/menu/menu.php:16
208
+ #: modules/numbers/numbers.php:16 modules/post-carousel/post-carousel.php:16
 
209
  #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
210
  #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
211
  #: modules/slideshow/slideshow.php:16
217
  msgstr "Geavanceerde Modules"
218
 
219
  # @ fl-builder
220
+ #: classes/class-fl-builder-model.php:1898
221
+ #: classes/class-fl-builder-model.php:1962
222
  msgid "Other Modules"
223
  msgstr "Andere Modules"
224
 
225
  # @ fl-builder
226
+ #: classes/class-fl-builder-model.php:1899
227
+ #: classes/class-fl-builder-model.php:1963
228
  #: includes/admin-settings-modules.php:32 includes/ui-panel.php:56
229
  #: modules/widget/widget.php:16
230
  msgid "WordPress Widgets"
231
  msgstr "Wordpress Widgets"
232
 
233
  # @ fl-builder
234
+ #: classes/class-fl-builder-model.php:2679
235
  #, php-format
236
  msgctxt "%s stands for post/page title."
237
  msgid "Copy of %s"
238
  msgstr "Kopie van %s"
239
 
240
+ #: classes/class-fl-builder-model.php:3287
241
  msgctxt "Default user template category."
242
  msgid "Uncategorized"
243
  msgstr "Uncategorized"
244
 
245
  # @ fl-builder
246
+ #: classes/class-fl-builder-model.php:4333
247
  msgid "Home Pages"
248
  msgstr "Home Pagina's"
249
 
250
  # @ fl-builder
251
+ #: classes/class-fl-builder-model.php:4334
252
  msgid "Content Pages"
253
  msgstr "Inhoud Pagina's"
254
 
282
 
283
  #: classes/class-fl-builder-service-activecampaign.php:73
284
  #: classes/class-fl-builder-service-campaign-monitor.php:55
285
+ #: classes/class-fl-builder-service-campayn.php:106
286
  #: classes/class-fl-builder-service-constant-contact.php:48
287
+ #: classes/class-fl-builder-service-convertkit.php:67
288
  #: classes/class-fl-builder-service-getresponse.php:67
289
  #: classes/class-fl-builder-service-hatchbuck.php:48
290
  #: classes/class-fl-builder-service-infusionsoft.php:79
291
  #: classes/class-fl-builder-service-madmimi.php:73
292
  #: classes/class-fl-builder-service-mailchimp.php:67
293
+ #: classes/class-fl-builder-service-mailrelay.php:82
294
+ #: classes/class-fl-builder-service-sendy.php:72
295
  msgid "Error: You must provide an API key."
296
  msgstr "Fout: Je moet een API key ingeven."
297
 
313
 
314
  #: classes/class-fl-builder-service-activecampaign.php:119
315
  #: classes/class-fl-builder-service-campaign-monitor.php:88
316
+ #: classes/class-fl-builder-service-campayn.php:149
317
  #: classes/class-fl-builder-service-constant-contact.php:88
318
+ #: classes/class-fl-builder-service-convertkit.php:99
319
  #: classes/class-fl-builder-service-getresponse.php:100
320
  #: classes/class-fl-builder-service-hatchbuck.php:87
321
  #: classes/class-fl-builder-service-infusionsoft.php:129
322
  #: classes/class-fl-builder-service-madmimi.php:121
323
  #: classes/class-fl-builder-service-mailchimp.php:100
324
+ #: classes/class-fl-builder-service-mailrelay.php:130
325
+ #: classes/class-fl-builder-service-sendy.php:126
326
  msgid "API Key"
327
  msgstr "API key"
328
 
339
  #: classes/class-fl-builder-service-aweber.php:182
340
  #: classes/class-fl-builder-service-campaign-monitor.php:148
341
  #: classes/class-fl-builder-service-campaign-monitor.php:199
342
+ #: classes/class-fl-builder-service-campayn.php:203
343
  #: classes/class-fl-builder-service-constant-contact.php:156
344
+ #: classes/class-fl-builder-service-convertkit.php:153
345
  #: classes/class-fl-builder-service-getresponse.php:154
346
  #: classes/class-fl-builder-service-icontact.php:207
347
  #: classes/class-fl-builder-service-infusionsoft.php:204
348
  #: classes/class-fl-builder-service-madmimi.php:178
349
  #: classes/class-fl-builder-service-mailchimp.php:177
350
  #: classes/class-fl-builder-service-mailpoet.php:92
351
+ #: classes/class-fl-builder-service-mailrelay.php:187
352
  #: classes/class-fl-builder-service-sendinblue.php:161
353
+ #: classes/class-fl-builder-services.php:309 includes/service-settings.php:21
354
+ #: modules/woocommerce/woocommerce.php:61
355
  msgid "Choose..."
356
  msgstr "Kies..."
357
 
359
  #: classes/class-fl-builder-service-aweber.php:192
360
  #: classes/class-fl-builder-service-campaign-monitor.php:209
361
  #: classes/class-fl-builder-service-constant-contact.php:166
362
+ #: classes/class-fl-builder-service-convertkit.php:163
363
  #: classes/class-fl-builder-service-getresponse.php:164
364
  #: classes/class-fl-builder-service-icontact.php:217
365
  #: classes/class-fl-builder-service-infusionsoft.php:214
424
 
425
  #: classes/class-fl-builder-service-campaign-monitor.php:67
426
  #: classes/class-fl-builder-service-campaign-monitor.php:129
427
+ #: classes/class-fl-builder-service-convertkit.php:131
428
  #: classes/class-fl-builder-service-getresponse.php:76
429
  #: classes/class-fl-builder-service-getresponse.php:132
430
  #: classes/class-fl-builder-service-hatchbuck.php:63
457
  msgstr ""
458
  "Er is een fout opgetreden tijdens het aanmelden bij de Campagne Monitor."
459
 
460
+ #: classes/class-fl-builder-service-campayn.php:102
461
+ #: classes/class-fl-builder-service-mailrelay.php:78
462
+ msgid "Error: You must provide a Host."
463
+ msgstr "Fout: je moet een host opgeven."
464
+
465
+ #: classes/class-fl-builder-service-campayn.php:117
466
+ #, php-format
467
+ msgid "Error: Could not connect to Campayn. %s"
468
+ msgstr "Error: Kon niet verbinden met Campayn. %s"
469
+
470
+ #: classes/class-fl-builder-service-campayn.php:138
471
+ #: classes/class-fl-builder-service-mailrelay.php:119
472
+ msgid "Host"
473
+ msgstr "Host"
474
+
475
+ #: classes/class-fl-builder-service-campayn.php:139
476
+ msgid ""
477
+ "The host you chose when you signed up for your account. Check your welcome "
478
+ "email if you forgot it. Please enter it without the initial http:// (for "
479
+ "example: demo.campayn.com)."
480
+ msgstr ""
481
+ "De host die je hebt gekozen toen je een account aanmaakte. Controleer je "
482
+ "welkomst e-mail als je het niet meer weet. Voer de host in zonder http://"
483
+
484
+ #: classes/class-fl-builder-service-campayn.php:150
485
+ msgid ""
486
+ "Your API key can be found in your Campayn account under Settings > API Key."
487
+ msgstr ""
488
+ "Je API key kan je vinden in je Campayn account onder instellingen > API Key."
489
+
490
+ #: classes/class-fl-builder-service-campayn.php:181
491
+ #: classes/class-fl-builder-service-convertkit.php:78
492
+ #: classes/class-fl-builder-service-mailrelay.php:165
493
+ #, php-format
494
+ msgid "Error: Please check your API key. %s"
495
+ msgstr "Fout: Controller je API key. %s"
496
+
497
+ #: classes/class-fl-builder-service-campayn.php:213
498
+ msgctxt "An email list from third party provider."
499
+ msgid "List"
500
+ msgstr "Lijst"
501
+
502
+ #: classes/class-fl-builder-service-campayn.php:241
503
+ msgid ""
504
+ "There was an error subscribing to Campayn. The account is no longer "
505
+ "connected."
506
+ msgstr ""
507
+ "Er was een fout bij het aanmelden bij Campayn. De account is niet langer "
508
+ "verbonden."
509
+
510
+ #: classes/class-fl-builder-service-campayn.php:288
511
+ #, php-format
512
+ msgid "There was an error subscribing to Campayn. %s"
513
+ msgstr "Er was een fout bij het aanmelden bij Campayn. %s"
514
+
515
  #: classes/class-fl-builder-service-constant-contact.php:52
516
  msgid "Error: You must provide an access token."
517
  msgstr "Error: Je moet een access token verstrekken."
561
  "Er heeft zich een fout voorgedaan tijdens het aanmelden bij Constant "
562
  "Contact. %s"
563
 
564
+ #: classes/class-fl-builder-service-convertkit.php:100
565
+ msgid ""
566
+ "Your API key can be found in your ConvertKit account under Account > Account "
567
+ "Settings > API Key."
568
+ msgstr ""
569
+ "Je kan je API sleutel vinden in je ConvertKit account onder Account > "
570
+ "Account instellingen > API sleutel."
571
+
572
+ #: classes/class-fl-builder-service-convertkit.php:190
573
+ msgid ""
574
+ "There was an error subscribing to ConvertKit. The account is no longer "
575
+ "connected."
576
+ msgstr ""
577
+ "Er was een fout bij het aanmelden bij ConvertKit. De account is niet langer "
578
+ "verbonden."
579
+
580
+ #: classes/class-fl-builder-service-convertkit.php:198
581
+ msgid "There was an error subscribing to ConvertKit."
582
+ msgstr "Er was een error met het aanmelden bij ConvertKit."
583
+
584
+ #: classes/class-fl-builder-service-drip.php:67
585
+ msgid "Error: You must provide an API token."
586
+ msgstr "Fout: je moet een geldige API token opgeven."
587
+
588
+ #: classes/class-fl-builder-service-drip.php:71
589
+ msgid "Error: You must provide an Account ID."
590
+ msgstr "Fout: je moet een geldig account ID opgeven."
591
+
592
+ #: classes/class-fl-builder-service-drip.php:92
593
+ #, php-format
594
+ msgid "Error: Please check your Account ID. %s"
595
+ msgstr "Fout: Controleer je Account ID. %s"
596
+
597
+ #: classes/class-fl-builder-service-drip.php:99
598
+ #, php-format
599
+ msgid "Error: Please check your API token. %s"
600
+ msgstr "Fout: Controleer je API token. %s"
601
+
602
+ #: classes/class-fl-builder-service-drip.php:122
603
+ msgid "API Token"
604
+ msgstr "API Token."
605
+
606
+ #: classes/class-fl-builder-service-drip.php:123
607
+ #, php-format
608
+ msgid ""
609
+ "Your API Token can be found in your Drip account under Settings > My User "
610
+ "Settings. Or, you can click this <a%s>direct link</a>."
611
+ msgstr ""
612
+ "Je API token kan je vinden in je Drip account onder Instellingen > My User "
613
+ "Settings. Of je kan direct op deze <a%s>direct link</a> klikken."
614
+
615
+ #: classes/class-fl-builder-service-drip.php:133
616
+ msgid "Account ID"
617
+ msgstr "Account ID"
618
+
619
+ #: classes/class-fl-builder-service-drip.php:134
620
+ msgid ""
621
+ "Your Account ID can be found in your Drip account under Settings > Site "
622
+ "Setup."
623
+ msgstr ""
624
+ "Je Account ID kan gevonden worden in je Drip account onder Instellingen > "
625
+ "Site setup."
626
+
627
+ #: classes/class-fl-builder-service-drip.php:180
628
+ msgctxt "A tag to add to contacts in Drip when they subscribe."
629
+ msgid "Tags"
630
+ msgstr "Tags"
631
+
632
+ #: classes/class-fl-builder-service-drip.php:181
633
+ msgid "For multiple tags, separate with comma."
634
+ msgstr "Gebruik een komma om meerdere tags te scheiden."
635
+
636
+ #: classes/class-fl-builder-service-drip.php:208
637
+ msgid ""
638
+ "There was an error subscribing to Drip. The account is no longer connected."
639
+ msgstr ""
640
+ "Er was een fout bij het aanmelden bij Drip. De account is niet langer "
641
+ "verbonden."
642
+
643
+ #: classes/class-fl-builder-service-drip.php:229
644
+ #, php-format
645
+ msgid "There was an error searching contact from Drip. %s"
646
+ msgstr "Er was een fout bij het zoeken naar contacten van Drip. %s"
647
+
648
+ #: classes/class-fl-builder-service-drip.php:254
649
+ #, php-format
650
+ msgid "There was an error subscribing to Drip. %s"
651
+ msgstr "Er was een fout bij het aanmelden bij Drip. %s"
652
+
653
  #: classes/class-fl-builder-service-email-address.php:39
654
  #: classes/class-fl-builder-service-madmimi.php:69
655
  msgid "Error: You must provide an email address."
682
  msgstr "Naam"
683
 
684
  #: classes/class-fl-builder-service-email-address.php:124
685
+ #: modules/subscribe-form/subscribe-form.php:84
686
  msgid "There was an error subscribing. Please try again."
687
  msgstr ""
688
  "Er heeft zich een fout voorgedaan bij het abonneren. Probeer het nog eens."
918
  msgstr ""
919
  "Er is een fout opgetreden bij het aanmelden. Mailpoet is niet geïnstalleerd."
920
 
921
+ #: classes/class-fl-builder-service-mailrelay.php:98
922
+ #, php-format
923
+ msgid "Error: Could not connect to Mailrelay. %s"
924
+ msgstr "Fout: Kan niet verbinden met Mailrelay. %s"
925
+
926
+ #: classes/class-fl-builder-service-mailrelay.php:120
927
+ msgid ""
928
+ "The host you chose when you signed up for your account. Check your welcome "
929
+ "email if you forgot it. Please enter it without the initial http:// (e.g. "
930
+ "demo.ip-zone.com)."
931
+ msgstr ""
932
+ "De host die je hebt gekozen toen je je account aanmaakte. Controleer je "
933
+ "welkomst email als je deze niet meer weet. Voer de host in zonder http:// "
934
+ "(bijv. demo.ip-zone.com)."
935
+
936
+ #: classes/class-fl-builder-service-mailrelay.php:131
937
+ msgid ""
938
+ "Your API key can be found in your Mailrelay account under Menu > Settings > "
939
+ "API access."
940
+ msgstr ""
941
+ "Je API key kan gevonden worden in je Mailrelay account onder Menu > Settings "
942
+ "> API access."
943
+
944
+ #: classes/class-fl-builder-service-mailrelay.php:198
945
+ msgctxt "A list of subscribers group from a Mailrelay account."
946
+ msgid "Group"
947
+ msgstr "Groep"
948
+
949
+ #: classes/class-fl-builder-service-mailrelay.php:225
950
+ msgid ""
951
+ "There was an error subscribing to Mailrelay. The account is no longer "
952
+ "connected."
953
+ msgstr ""
954
+ "Er was een fout bij het aanmelden bij Mailrelay. De account is niet langer "
955
+ "verbonden."
956
+
957
+ #: classes/class-fl-builder-service-mailrelay.php:238
958
+ #, php-format
959
+ msgid "There was an error subscribing to Mailrelay. %s"
960
+ msgstr "Er was een fout bij het aanmelden bij Mailrelay. %s"
961
+
962
  #: classes/class-fl-builder-service-sendinblue.php:67
963
  msgid "Error: You must provide an Access Key."
964
  msgstr "Fout: U moet een toegangssleutel opgeven."
1005
  msgid "Error: Could not subscribe to SendinBlue. %s"
1006
  msgstr "Fout: Kon niet abonneren op SendinBlue. %s"
1007
 
1008
+ #: classes/class-fl-builder-service-sendy.php:68
1009
+ msgid "Error: You must provide your Sendy installation URL."
1010
+ msgstr "Fout: Je moet een geldige Sendy installatie URL opgeven."
1011
+
1012
+ #: classes/class-fl-builder-service-sendy.php:76
1013
+ msgid "Error: You must provide a list ID."
1014
+ msgstr "Fout: Je moet een geldig lijst ID opgeven."
1015
+
1016
+ #: classes/class-fl-builder-service-sendy.php:94
1017
+ #, php-format
1018
+ msgid "Error: Could not connect to Sendy. %s"
1019
+ msgstr "Fout: Kon niet verbinden met Sendy. %s"
1020
+
1021
+ #: classes/class-fl-builder-service-sendy.php:115
1022
+ msgid "Installation URL"
1023
+ msgstr "Installatie URL"
1024
+
1025
+ #: classes/class-fl-builder-service-sendy.php:116
1026
+ msgid ""
1027
+ "The URL where your Sendy application is installed (e.g. http://mywebsite.com/"
1028
+ "sendy)."
1029
+ msgstr ""
1030
+ "Het URL waar je Sendy applicatie is geïnstalleerd (bijv. http://mywebsite."
1031
+ "com/sendy)."
1032
+
1033
+ #: classes/class-fl-builder-service-sendy.php:127
1034
+ msgid "Found in your Sendy application under Settings."
1035
+ msgstr "Gevonden in je Sendy applicatie onder Settings."
1036
+
1037
+ #: classes/class-fl-builder-service-sendy.php:137
1038
+ msgid "List ID"
1039
+ msgstr "Lijst ID"
1040
+
1041
+ #: classes/class-fl-builder-service-sendy.php:138
1042
+ msgid ""
1043
+ "The ID of the list you would like users to subscribe to. The ID of a list "
1044
+ "can be found under \"View all lists\" in the section named ID."
1045
+ msgstr ""
1046
+ "Het ID van de lijst waar je gebruikers op wilt laten abonneren. Het ID kan "
1047
+ "gevonden worden onder \"Bekijk alle lijsten\" in de sectie ID."
1048
+
1049
+ #: classes/class-fl-builder-service-sendy.php:186
1050
+ msgid ""
1051
+ "There was an error subscribing to Sendy. The account is no longer connected."
1052
+ msgstr ""
1053
+ "Er was een fout bij het aanmelden bij Sendy. De account is niet meer "
1054
+ "verbonden."
1055
+
1056
+ #: classes/class-fl-builder-service-sendy.php:200
1057
+ #, php-format
1058
+ msgid "There was an error subscribing to Sendy. %s"
1059
+ msgstr "Er was een fout bij het aanmelden bij Sendy. %s"
1060
+
1061
+ #: classes/class-fl-builder-services.php:183
1062
  msgctxt "Third party service such as MailChimp."
1063
  msgid "Error: Missing service type."
1064
  msgstr "Fout: Ontbrekende servicetype."
1065
 
1066
+ #: classes/class-fl-builder-services.php:186
1067
  msgctxt "Connection data such as an API key."
1068
  msgid "Error: Missing service data."
1069
  msgstr "Fout: Ontbrekende service data."
1070
 
1071
+ #: classes/class-fl-builder-services.php:189
1072
  msgctxt "Account name for a third party service such as MailChimp."
1073
  msgid "Error: Missing account name."
1074
  msgstr "Fout: Ontbrekende accountnaam."
1075
 
1076
+ #: classes/class-fl-builder-services.php:198
1077
  msgctxt "Account name for a third party service such as MailChimp."
1078
  msgid "Error: An account with that name already exists."
1079
  msgstr "Fout: er bestaat al een account met die naam."
1080
 
1081
+ #: classes/class-fl-builder-services.php:274
1082
  msgid "Account Name"
1083
  msgstr "Accountnaam"
1084
 
1085
+ #: classes/class-fl-builder-services.php:275
1086
  msgid ""
1087
  "Used to identify this connection within the accounts list and can be "
1088
  "anything you like."
1090
  "Gebruikt om deze verbinding in de lijst met gebruikersaccounts te "
1091
  "identificeren en kan alles zijn wat je wil."
1092
 
1093
+ #: classes/class-fl-builder-services.php:288
1094
  msgid "Connect"
1095
  msgstr "Verbinden"
1096
 
1097
+ #: classes/class-fl-builder-services.php:316
1098
  msgid "Add Account..."
1099
  msgstr "Account Toevoegen..."
1100
 
1101
+ #: classes/class-fl-builder-services.php:323
1102
  msgid "Account"
1103
  msgstr "Account"
1104
 
1105
+ #: classes/class-fl-builder-timezones.php:71
1106
+ msgid "Select a city"
1107
+ msgstr "Selecteer een stad."
 
 
 
 
1108
 
1109
+ #: classes/class-fl-builder-timezones.php:120
1110
+ msgid "UTC"
1111
+ msgstr "UTC"
1112
 
1113
  # @ fl-builder
1114
+ #: classes/class-fl-builder.php:612
1115
  #, php-format
1116
  msgid "Template: %s"
1117
  msgstr "Template: %s"
1118
 
1119
  # @ fl-builder
1120
+ #: classes/class-fl-builder.php:647
1121
  msgid "Upgrade!"
1122
  msgstr "Upgraden!"
1123
 
1124
  # @ fl-builder
1125
+ #: classes/class-fl-builder.php:651
1126
  msgid "Buy Now!"
1127
  msgstr "Nu Kopen!"
1128
 
1129
  # @ fl-builder
1130
+ #: classes/class-fl-builder.php:655 includes/ui-js-config.php:45
1131
+ #: includes/ui-js-templates.php:163
1132
  msgid "Done"
1133
  msgstr "Klaar"
1134
 
1135
  # @ fl-builder
1136
+ #: classes/class-fl-builder.php:659
1137
  msgid "Tools"
1138
  msgstr "Gereedschappen"
1139
 
1140
  # @ fl-builder
1141
+ #: classes/class-fl-builder.php:667 includes/ui-js-config.php:106
1142
  msgid "Add Content"
1143
  msgstr "Inhoud Toevoegen"
1144
 
1145
  # @ fl-builder
1146
+ #: classes/class-fl-builder.php:1041
1147
  #, php-format
1148
  msgctxt "Field name to add."
1149
  msgid "Add %s"
1150
  msgstr "%s Toevoegen"
1151
 
1152
+ #: classes/class-fl-builder.php:1149 classes/class-fl-builder.php:1151
1153
  msgctxt "Custom post type label."
1154
  msgid "Templates"
1155
  msgstr "Templates"
1156
 
1157
+ #: classes/class-fl-builder.php:1150 classes/class-fl-builder.php:1152
1158
  msgctxt "Custom post type label."
1159
  msgid "Template"
1160
  msgstr "Template"
1161
 
1162
  # @ fl-builder
1163
+ #: classes/class-fl-builder.php:1153
1164
  msgctxt "Custom post type label."
1165
  msgid "Add New"
1166
  msgstr "Toevoegen"
1167
 
1168
+ #: classes/class-fl-builder.php:1154
1169
  msgctxt "Custom post type label."
1170
  msgid "Add New Template"
1171
  msgstr "Nieuwe Template Toevoegen"
1172
 
1173
+ #: classes/class-fl-builder.php:1155
1174
  msgctxt "Custom post type label."
1175
  msgid "New Template"
1176
  msgstr "Nieuwe Template"
1177
 
1178
+ #: classes/class-fl-builder.php:1156
1179
  msgctxt "Custom post type label."
1180
  msgid "Edit Template"
1181
  msgstr "Bewerk Template"
1182
 
1183
+ #: classes/class-fl-builder.php:1157
1184
  msgctxt "Custom post type label."
1185
  msgid "View Template"
1186
  msgstr "Bekijk Template"
1187
 
1188
+ #: classes/class-fl-builder.php:1158
1189
  msgctxt "Custom post type label."
1190
  msgid "All Templates"
1191
  msgstr "Alle sjablonen"
1192
 
1193
+ #: classes/class-fl-builder.php:1159
1194
  msgctxt "Custom post type label."
1195
  msgid "Search Templates"
1196
  msgstr "Zoek Templates"
1197
 
1198
+ #: classes/class-fl-builder.php:1160
1199
  msgctxt "Custom post type label."
1200
  msgid "Parent Templates:"
1201
  msgstr "Bovenliggende Templates:"
1202
 
1203
+ #: classes/class-fl-builder.php:1161
1204
  msgctxt "Custom post type label."
1205
  msgid "No templates found."
1206
  msgstr "Geen templates gevonden."
1207
 
1208
+ #: classes/class-fl-builder.php:1162
1209
  msgctxt "Custom post type label."
1210
  msgid "No templates found in Trash."
1211
  msgstr "Geen templates gevonden in de prullenbak."
1212
 
1213
+ #: classes/class-fl-builder.php:1176
1214
  msgctxt "Custom taxonomy label."
1215
+ msgid "Template Categories"
1216
+ msgstr "Template categorieën"
1217
 
1218
+ #: classes/class-fl-builder.php:1177
1219
  msgctxt "Custom taxonomy label."
1220
+ msgid "Template Category"
1221
+ msgstr "Template categorie"
1222
 
1223
+ #: classes/class-fl-builder.php:1178
1224
  msgctxt "Custom taxonomy label."
1225
+ msgid "Search Template Categories"
1226
+ msgstr "Doorzoek template categorieën"
1227
 
1228
+ #: classes/class-fl-builder.php:1179
1229
  msgctxt "Custom taxonomy label."
1230
+ msgid "All Template Categories"
1231
+ msgstr "Alle template categorieën"
1232
 
1233
+ #: classes/class-fl-builder.php:1180
1234
  msgctxt "Custom taxonomy label."
1235
+ msgid "Parent Template Category"
1236
+ msgstr "Hoofd template categorie"
1237
 
1238
+ #: classes/class-fl-builder.php:1181
1239
  msgctxt "Custom taxonomy label."
1240
+ msgid "Parent Template Category:"
1241
+ msgstr "Hoofd template categorie"
1242
 
1243
+ #: classes/class-fl-builder.php:1182
1244
  msgctxt "Custom taxonomy label."
1245
+ msgid "Edit Template Category"
1246
+ msgstr "Bewerk template categorie"
1247
 
1248
+ #: classes/class-fl-builder.php:1183
1249
  msgctxt "Custom taxonomy label."
1250
+ msgid "Update Template Category"
1251
+ msgstr "Update template categorie"
1252
 
1253
+ #: classes/class-fl-builder.php:1184
1254
  msgctxt "Custom taxonomy label."
1255
+ msgid "Add New Template Category"
1256
+ msgstr "Voeg nieuwe template categorie toe"
1257
 
1258
+ #: classes/class-fl-builder.php:1185
1259
  msgctxt "Custom taxonomy label."
1260
+ msgid "New Template Category Name"
1261
+ msgstr "Nieuwe template categorie naam"
1262
+
1263
+ #: classes/class-fl-builder.php:1186
1264
+ msgctxt "Custom taxonomy label."
1265
+ msgid "Categories"
1266
+ msgstr "Categorieën"
1267
 
1268
+ #: classes/class-fl-builder.php:1195
1269
  msgctxt "Custom taxonomy label."
1270
  msgid "Type"
1271
  msgstr "Type"
1272
 
1273
+ #: classes/class-fl-builder.php:1449 classes/class-fl-builder.php:1563
1274
+ #: classes/class-fl-builder.php:1704 includes/ui-js-templates.php:173
1275
  #: includes/ui-panel-node-templates.php:18
1276
  #: includes/ui-panel-node-templates.php:49
1277
  msgctxt "Indicator for global node templates."
1279
  msgstr "Algemeen"
1280
 
1281
  # @ fl-builder
1282
+ #: classes/class-fl-builder.php:1703
1283
  #, php-format
1284
  msgctxt "%s stands for module name."
1285
  msgid "%s Settings"
1305
  msgid "Launch %s"
1306
  msgstr "%s starten"
1307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1308
  #: includes/admin-settings-cache.php:9
1309
  msgid ""
1310
  "A CSS and JavaScript file is dynamically generated and cached each time you "
1317
  "gecached telkens wanneer je een nieuwe layout maakt. Soms dient de cache "
1318
  "ververst te worden, wanneer je de site migreert naar een andere server of "
1319
  "update naar de laatste versie. Indien je problemen ondervindt, probeer dan "
1320
+ "de cache te wissen door op onderstaande knop te klikken."
1321
 
1322
  # @ fl-builder
1323
  #: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14
1389
  msgid "Save Editing Settings"
1390
  msgstr "Bewaar Editing Instellingen"
1391
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1392
  # @ fl-builder
1393
  #: includes/admin-settings-icons.php:3
1394
  msgid "Icon Settings"
1483
  msgid "Select the post types you would like the builder to work with."
1484
  msgstr "Selecteer de post typen die je wilt waar de builder mee werkt."
1485
 
1486
+ #: includes/admin-settings-post-types.php:71
1487
  msgid "Save Post Types"
1488
  msgstr "Post Type Opslaan"
1489
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1490
  # @ fl-builder
1491
+ #: includes/admin-settings-templates.php:9
1492
  msgid "Template Settings"
1493
  msgstr "Template Instellingen"
1494
 
1543
  "all of the data associated with it. You can uninstall or deactivate the page "
1544
  "builder from the plugins page instead if you do not wish to delete the data."
1545
  msgstr ""
1546
+ "Door op onderstaande knop te klikken zal de page builder en alle daarmee "
1547
  "geassocieerde data verwijderd worden. Je kunt als alternatief de page "
1548
  "builder vanaf de plugins pagina verwijderen of deactiveren als je niet ook "
1549
  "de data wenst te verwijderen."
1582
  msgid "Learn More"
1583
  msgstr "Leer Meer"
1584
 
 
 
 
 
 
 
 
 
 
1585
  # @ fl-builder
1586
+ #: includes/column-settings.php:4 includes/ui-js-templates.php:33
1587
+ #: includes/ui-js-templates.php:88
1588
+ msgid "Column Settings"
1589
+ msgstr "Kolom Instellingen"
 
1590
 
1591
  # @ fl-builder
1592
+ #: includes/column-settings.php:7 includes/module-settings.php:87
1593
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:46
1594
+ #: modules/audio/audio.php:148 modules/button/button.php:118
1595
+ #: modules/button/button.php:156 modules/button/button.php:160
1596
+ #: modules/callout/callout.php:243 modules/callout/callout.php:555
1597
+ #: modules/content-slider/content-slider.php:452
1598
+ #: modules/content-slider/content-slider.php:693
1599
+ #: modules/countdown/countdown.php:141 modules/cta/cta.php:103
1600
+ #: modules/cta/cta.php:310 modules/heading/heading.php:70
1601
+ #: modules/icon-group/icon-group.php:45 modules/icon/icon.php:76
1602
+ #: modules/menu/menu.php:170 modules/numbers/numbers.php:167
1603
+ #: modules/post-carousel/post-carousel.php:403
1604
+ #: modules/post-grid/post-grid.php:246 modules/post-slider/post-slider.php:579
1605
+ #: modules/pricing-table/pricing-table.php:72
1606
+ #: modules/pricing-table/pricing-table.php:265
1607
+ #: modules/pricing-table/pricing-table.php:352
1608
+ #: modules/separator/separator.php:73
1609
+ #: modules/subscribe-form/subscribe-form.php:238 modules/tabs/tabs.php:46
1610
+ msgid "Style"
1611
+ msgstr "Stijl"
1612
 
1613
  # @ fl-builder
1614
+ #: includes/column-settings.php:14
1615
+ msgid "Column Width"
1616
+ msgstr "Kolom Breedte"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1617
 
1618
+ #: includes/column-settings.php:25 modules/post-carousel/post-carousel.php:230
1619
+ msgid "Equalize Column Heights"
1620
+ msgstr "Kolom hoogtes gelijkstellen"
1621
+
1622
+ #: includes/column-settings.php:26
1623
+ msgid ""
1624
+ "Setting this to yes will make all of the columns in this group the same "
1625
+ "height regardless of how much content is in each of them."
1626
+ msgstr ""
1627
+ "Door deze instelling op JA in te stellen worden alle kolommen in deze groep "
1628
+ "dezelfde hoogte, ongeacht hoe hoog de content in elke kolom is."
1629
+
1630
+ # @ fl-builder
1631
+ #: includes/column-settings.php:29 includes/global-settings.php:18
1632
+ #: includes/global-settings.php:110 includes/global-settings.php:124
1633
+ #: includes/node-template-settings.php:22 includes/row-settings.php:328
1634
+ #: modules/accordion/accordion.php:91 modules/audio/audio.php:123
1635
+ #: modules/audio/audio.php:135 modules/audio/audio.php:160
1636
+ #: modules/audio/audio.php:174 modules/audio/audio.php:186
1637
+ #: modules/audio/audio.php:195 modules/callout/callout.php:422
1638
+ #: modules/content-slider/content-slider.php:236
1639
+ #: modules/content-slider/content-slider.php:250
1640
+ #: modules/content-slider/content-slider.php:284
1641
+ #: modules/content-slider/content-slider.php:293
1642
+ #: modules/content-slider/content-slider.php:564
1643
+ #: modules/countdown/countdown.php:334 modules/icon-group/icon-group.php:81
1644
+ #: modules/icon/icon.php:112 modules/menu/menu.php:191
1645
+ #: modules/menu/menu.php:388 modules/post-carousel/post-carousel.php:140
1646
  #: modules/post-carousel/post-carousel.php:156
1647
  #: modules/post-carousel/post-carousel.php:183
1648
  #: modules/post-carousel/post-carousel.php:192
1649
  #: modules/post-carousel/post-carousel.php:233
1650
+ #: modules/post-carousel/post-carousel.php:297
1651
+ #: modules/post-grid/post-grid.php:78 modules/post-grid/post-grid.php:274
1652
+ #: modules/post-slider/post-slider.php:357
1653
+ #: modules/post-slider/post-slider.php:382
1654
+ #: modules/post-slider/post-slider.php:409
1655
+ #: modules/post-slider/post-slider.php:418
1656
+ #: modules/post-slider/post-slider.php:739 modules/slideshow/slideshow.php:324
1657
  #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
1658
  #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
1659
  #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1663
  #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
1664
  #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
1665
  #: modules/slideshow/slideshow.php:651
1666
+ #: modules/social-buttons/social-buttons.php:112
1667
+ #: modules/social-buttons/social-buttons.php:121
1668
+ #: modules/social-buttons/social-buttons.php:130
1669
  #: modules/testimonials/testimonials.php:86
1670
  #: modules/testimonials/testimonials.php:125
1671
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:126
1672
+ #: modules/video/video.php:138
1673
+ msgid "No"
1674
+ msgstr "Nee"
1675
+
1676
+ # @ fl-builder
1677
+ #: includes/column-settings.php:30 includes/global-settings.php:19
1678
+ #: includes/global-settings.php:111 includes/global-settings.php:125
1679
+ #: includes/node-template-settings.php:23 includes/row-settings.php:329
1680
+ #: modules/accordion/accordion.php:90 modules/audio/audio.php:124
1681
+ #: modules/audio/audio.php:136 modules/audio/audio.php:161
1682
+ #: modules/audio/audio.php:175 modules/audio/audio.php:187
1683
+ #: modules/audio/audio.php:196 modules/callout/callout.php:423
1684
+ #: modules/content-slider/content-slider.php:237
1685
+ #: modules/content-slider/content-slider.php:251
1686
+ #: modules/content-slider/content-slider.php:285
1687
+ #: modules/content-slider/content-slider.php:294
1688
+ #: modules/content-slider/content-slider.php:565
1689
+ #: modules/countdown/countdown.php:335 modules/icon-group/icon-group.php:82
1690
+ #: modules/icon/icon.php:113 modules/menu/menu.php:192
1691
+ #: modules/menu/menu.php:389 modules/post-carousel/post-carousel.php:141
1692
+ #: modules/post-carousel/post-carousel.php:157
1693
+ #: modules/post-carousel/post-carousel.php:184
1694
+ #: modules/post-carousel/post-carousel.php:193
1695
+ #: modules/post-carousel/post-carousel.php:234
1696
+ #: modules/post-carousel/post-carousel.php:296
1697
+ #: modules/post-grid/post-grid.php:77 modules/post-grid/post-grid.php:273
1698
+ #: modules/post-slider/post-slider.php:358
1699
+ #: modules/post-slider/post-slider.php:383
1700
+ #: modules/post-slider/post-slider.php:410
1701
+ #: modules/post-slider/post-slider.php:419
1702
+ #: modules/post-slider/post-slider.php:740 modules/slideshow/slideshow.php:325
1703
+ #: modules/slideshow/slideshow.php:335 modules/slideshow/slideshow.php:386
1704
+ #: modules/slideshow/slideshow.php:427 modules/slideshow/slideshow.php:449
1705
+ #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
1706
+ #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
1707
+ #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
1708
+ #: modules/slideshow/slideshow.php:552 modules/slideshow/slideshow.php:566
1709
+ #: modules/slideshow/slideshow.php:581 modules/slideshow/slideshow.php:616
1710
+ #: modules/slideshow/slideshow.php:628 modules/slideshow/slideshow.php:640
1711
+ #: modules/slideshow/slideshow.php:652
1712
+ #: modules/social-buttons/social-buttons.php:111
1713
+ #: modules/social-buttons/social-buttons.php:120
1714
+ #: modules/social-buttons/social-buttons.php:129
1715
+ #: modules/testimonials/testimonials.php:87
1716
+ #: modules/testimonials/testimonials.php:126
1717
+ #: modules/testimonials/testimonials.php:156 modules/video/video.php:127
1718
+ #: modules/video/video.php:139
1719
  msgid "Yes"
1720
  msgstr "Ja"
1721
 
1722
+ # @ fl-builder
1723
+ #: includes/column-settings.php:39 modules/button/button.php:67
1724
+ #: modules/callout/callout.php:227 modules/callout/callout.php:480
1725
+ #: modules/callout/callout.php:496
1726
+ #: modules/content-slider/content-slider.php:409
1727
+ #: modules/content-slider/content-slider.php:643 modules/cta/cta.php:86
1728
+ #: modules/cta/cta.php:223 modules/menu/menu.php:198
1729
+ #: modules/post-slider/post-slider.php:622
1730
+ msgid "Text"
1731
+ msgstr "Tekst"
 
 
 
 
 
 
 
1732
 
1733
+ # @ fl-builder
1734
+ #: includes/column-settings.php:43 includes/column-settings.php:106
1735
+ #: includes/column-settings.php:261 includes/row-settings.php:367
1736
+ #: includes/row-settings.php:448 modules/callout/callout.php:393
1737
+ #: modules/content-slider/content-slider.php:364
1738
+ #: modules/icon-group/icon-group.php:52 modules/icon/icon.php:83
1739
+ #: modules/separator/separator.php:35
1740
+ msgid "Color"
1741
+ msgstr "Kleur"
1742
 
1743
+ #: includes/column-settings.php:51 includes/row-settings.php:73
1744
+ #: modules/menu/menu.php:202 modules/post-carousel/post-carousel.php:415
1745
+ #: modules/post-slider/post-slider.php:699
1746
+ msgid "Link Color"
1747
+ msgstr "Link Kleur"
1748
 
1749
+ #: includes/column-settings.php:59 includes/row-settings.php:81
1750
+ #: modules/menu/menu.php:220 modules/post-carousel/post-carousel.php:420
1751
+ #: modules/post-slider/post-slider.php:715
1752
+ msgid "Link Hover Color"
1753
+ msgstr "Link Hover Kleur"
1754
 
1755
+ #: includes/column-settings.php:67 includes/row-settings.php:89
1756
+ msgid "Heading Color"
1757
+ msgstr "Kopregel Kleur"
 
1758
 
1759
  # @ fl-builder
1760
+ #: includes/column-settings.php:76 includes/row-settings.php:98
1761
+ #: modules/post-slider/post-slider.php:463
1762
+ msgid "Background"
1763
+ msgstr "Achtergrond"
1764
 
1765
  # @ fl-builder
1766
+ #: includes/column-settings.php:80 includes/column-settings.php:228
1767
+ #: includes/row-settings.php:102 includes/row-settings.php:415
1768
+ #: modules/callout/callout.php:476
1769
+ #: modules/content-slider/content-slider.php:358
1770
+ #: modules/content-slider/content-slider.php:405
1771
+ #: modules/content-slider/content-slider.php:623
1772
+ #: modules/content-slider/content-slider.php:765
1773
+ #: modules/slideshow/slideshow.php:348
1774
+ msgid "Type"
1775
+ msgstr "Type"
1776
 
1777
  # @ fl-builder
1778
+ #: includes/column-settings.php:83 includes/row-settings.php:105
1779
+ #: modules/content-slider/content-slider.php:365
1780
+ msgctxt "Background type."
1781
+ msgid "None"
1782
+ msgstr "Niet"
1783
 
1784
  # @ fl-builder
1785
+ #: includes/column-settings.php:84 includes/row-settings.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1786
  msgctxt "Background type."
1787
  msgid "Color"
1788
  msgstr "Kleur"
1789
 
1790
  # @ fl-builder
1791
+ #: includes/column-settings.php:85 includes/row-settings.php:107
1792
  msgctxt "Background type."
1793
  msgid "Photo"
1794
  msgstr "Afbeelding"
1795
 
1796
  # @ fl-builder
1797
+ #: includes/column-settings.php:102 includes/row-settings.php:363
1798
+ #: modules/button/button.php:125 modules/callout/callout.php:406
1799
+ #: modules/callout/callout.php:520
1800
+ #: modules/content-slider/content-slider.php:390
1801
+ #: modules/content-slider/content-slider.php:666 modules/cta/cta.php:199
1802
+ #: modules/cta/cta.php:275 modules/icon-group/icon-group.php:65
1803
+ #: modules/icon/icon.php:96 modules/pricing-table/pricing-table.php:236
1804
+ #: modules/subscribe-form/subscribe-form.php:203
1805
  msgid "Background Color"
1806
  msgstr "Achtergrondkleur"
1807
 
1808
  # @ fl-builder
1809
+ #: includes/column-settings.php:114 includes/column-settings.php:269
1810
+ #: includes/row-settings.php:375 includes/row-settings.php:456
1811
+ #: modules/separator/separator.php:45
1812
  msgid "Opacity"
1813
  msgstr "Dichtheid"
1814
 
1815
  # @ fl-builder
1816
+ #: includes/column-settings.php:126 includes/row-settings.php:142
1817
+ #: modules/content-slider/content-slider.php:386
1818
  msgid "Background Photo"
1819
  msgstr "Achtergrond Afbeelding"
1820
 
1821
  # @ fl-builder
1822
+ #: includes/column-settings.php:130 includes/row-settings.php:146
1823
+ #: includes/row-settings.php:342 modules/callout/callout.php:318
1824
+ #: modules/callout/callout.php:334 modules/callout/callout.php:338
1825
+ #: modules/content-slider/content-slider.php:362
1826
+ #: modules/content-slider/content-slider.php:431
1827
+ #: modules/content-slider/content-slider.php:781 modules/photo/photo.php:25
1828
+ #: modules/photo/photo.php:446
1829
  msgid "Photo"
1830
  msgstr "Afbeelding"
1831
 
1832
  # @ fl-builder
1833
+ #: includes/column-settings.php:137 includes/row-settings.php:153
1834
  msgid "Repeat"
1835
  msgstr "Herhaal"
1836
 
1837
  # @ fl-builder
1838
+ #: includes/column-settings.php:140 includes/row-settings.php:156
1839
  msgctxt "Background repeat."
1840
  msgid "None"
1841
  msgstr "Niet"
1842
 
1843
  # @ fl-builder
1844
+ #: includes/column-settings.php:141 includes/row-settings.php:157
1845
  msgctxt "Background repeat."
1846
  msgid "Tile"
1847
  msgstr "Tegel"
1848
 
1849
  # @ fl-builder
1850
+ #: includes/column-settings.php:142 includes/row-settings.php:158
1851
  msgctxt "Background repeat."
1852
  msgid "Horizontal"
1853
  msgstr "Horizontaal"
1854
 
1855
  # @ fl-builder
1856
+ #: includes/column-settings.php:143 includes/row-settings.php:159
1857
  msgctxt "Background repeat."
1858
  msgid "Vertical"
1859
  msgstr "Verticaal"
1860
 
1861
+ #: includes/column-settings.php:145 includes/row-settings.php:161
1862
  msgid ""
1863
  "Repeat applies to how the image should display in the background. Choosing "
1864
  "none will display the image as uploaded. Tile will repeat the image as many "
1872
  "horizontaal of verticaal te herhalen."
1873
 
1874
  # @ fl-builder
1875
+ #: includes/column-settings.php:152 includes/row-settings.php:168
1876
+ #: modules/callout/callout.php:355 modules/callout/callout.php:375
1877
+ #: modules/content-slider/content-slider.php:499
1878
+ #: modules/post-grid/post-grid.php:139 modules/post-slider/post-slider.php:626
1879
+ #: modules/post-slider/post-slider.php:645
1880
+ msgid "Position"
1881
+ msgstr "Positie"
1882
+
1883
+ # @ fl-builder
1884
+ #: includes/column-settings.php:155 includes/row-settings.php:171
1885
  msgid "Left Top"
1886
  msgstr "Links Boven"
1887
 
1888
  # @ fl-builder
1889
+ #: includes/column-settings.php:156 includes/row-settings.php:172
1890
  msgid "Left Center"
1891
  msgstr "Links Midden"
1892
 
1893
  # @ fl-builder
1894
+ #: includes/column-settings.php:157 includes/row-settings.php:173
1895
  msgid "Left Bottom"
1896
  msgstr "Links Onder"
1897
 
1898
  # @ fl-builder
1899
+ #: includes/column-settings.php:158 includes/row-settings.php:174
1900
  msgid "Right Top"
1901
  msgstr "Recht Boven"
1902
 
1903
  # @ fl-builder
1904
+ #: includes/column-settings.php:159 includes/row-settings.php:175
1905
  msgid "Right Center"
1906
  msgstr "Rechts Midden"
1907
 
1908
  # @ fl-builder
1909
+ #: includes/column-settings.php:160 includes/row-settings.php:176
1910
  msgid "Right Bottom"
1911
  msgstr "Recht Onder"
1912
 
1913
  # @ fl-builder
1914
+ #: includes/column-settings.php:161 includes/row-settings.php:177
1915
  msgid "Center Top"
1916
  msgstr "Midden Boven"
1917
 
1918
  # @ fl-builder
1919
+ #: includes/column-settings.php:162 includes/row-settings.php:178
1920
+ #: modules/button/button.php:228 modules/callout/callout.php:253
1921
+ #: modules/content-slider/content-slider.php:504 modules/cta/cta.php:128
1922
+ #: modules/heading/heading.php:91 modules/heading/heading.php:175
1923
+ #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1924
+ #: modules/menu/menu.php:182 modules/photo/photo.php:472
1925
+ #: modules/pricing-table/pricing-table.php:316
1926
+ #: modules/social-buttons/social-buttons.php:101
1927
  msgid "Center"
1928
  msgstr "Gecentreerd"
1929
 
1930
  # @ fl-builder
1931
+ #: includes/column-settings.php:163 includes/row-settings.php:179
1932
  msgid "Center Bottom"
1933
  msgstr "Midden Onder"
1934
 
1935
+ #: includes/column-settings.php:165 includes/row-settings.php:181
1936
  msgid "Position will tell the image where it should sit in the background."
1937
  msgstr "Positie zal de positie van de afbeelding in de achtergrond instellen."
1938
 
1939
  # @ fl-builder
1940
+ #: includes/column-settings.php:172 includes/row-settings.php:188
1941
  msgid "Attachment"
1942
  msgstr "Gehechtheid"
1943
 
1944
  # @ fl-builder
1945
+ #: includes/column-settings.php:175 includes/row-settings.php:191
1946
+ #: modules/post-grid/post-grid.php:87
1947
  msgid "Scroll"
1948
  msgstr "Scroll"
1949
 
1950
  # @ fl-builder
1951
+ #: includes/column-settings.php:176 includes/global-settings.php:69
1952
  #: includes/global-settings.php:83 includes/row-settings.php:19
1953
+ #: includes/row-settings.php:37 includes/row-settings.php:192
1954
  msgid "Fixed"
1955
  msgstr "Vastgezet"
1956
 
1957
+ #: includes/column-settings.php:178 includes/row-settings.php:194
1958
  msgid ""
1959
  "Attachment will specify how the image reacts when scrolling a page. When "
1960
  "scrolling is selected, the image will scroll with page scrolling. This is "
1968
  "is ingesteld op verschalen."
1969
 
1970
  # @ fl-builder
1971
+ #: includes/column-settings.php:185 includes/row-settings.php:201
1972
  msgid "Scale"
1973
  msgstr "Schaal"
1974
 
1975
  # @ fl-builder
1976
+ #: includes/column-settings.php:188 includes/row-settings.php:204
1977
  msgctxt "Background scale."
1978
  msgid "None"
1979
  msgstr "Geen"
1980
 
1981
  # @ fl-builder
1982
+ #: includes/column-settings.php:189 includes/row-settings.php:205
1983
  msgid "Fit"
1984
  msgstr "Passend"
1985
 
1986
  # @ fl-builder
1987
+ #: includes/column-settings.php:190 includes/row-settings.php:206
1988
  msgid "Fill"
1989
  msgstr "Uitvullen"
1990
 
1991
+ #: includes/column-settings.php:192 includes/row-settings.php:208
1992
  msgid ""
1993
  "Scale applies to how the image should display in the background. You can "
1994
  "select either fill or fit to the background."
1997
  "kiezen uit vullen of aan te passen op de achtergrond."
1998
 
1999
  # @ fl-builder
2000
+ #: includes/column-settings.php:200 includes/row-settings.php:387
2001
  msgid "Background Overlay"
2002
  msgstr "Achtergrond Overlay"
2003
 
2004
  # @ fl-builder
2005
+ #: includes/column-settings.php:204 includes/row-settings.php:391
2006
  msgid "Overlay Color"
2007
  msgstr "Overlay Kleur"
2008
 
2009
  # @ fl-builder
2010
+ #: includes/column-settings.php:212 includes/row-settings.php:399
2011
  msgid "Overlay Opacity"
2012
  msgstr "Overlay Dichtheid"
2013
 
2014
  # @ fl-builder
2015
+ #: includes/column-settings.php:224 includes/row-settings.php:411
2016
  msgid "Border"
2017
  msgstr "Rand"
2018
 
2019
  # @ fl-builder
2020
+ #: includes/column-settings.php:230 includes/row-settings.php:417
2021
  msgid ""
2022
  "The type of border to use. Double borders must have a width of at least 3px "
2023
  "to render properly."
2026
  "breedte van 3px te hebben om goed te worden weergegeven."
2027
 
2028
  # @ fl-builder
2029
+ #: includes/column-settings.php:232 includes/row-settings.php:419
2030
  msgctxt "Border type."
2031
  msgid "None"
2032
  msgstr "Geen"
2033
 
2034
  # @ fl-builder
2035
+ #: includes/column-settings.php:233 includes/row-settings.php:420
2036
+ #: modules/separator/separator.php:76
2037
  msgctxt "Border type."
2038
  msgid "Solid"
2039
  msgstr "Vast"
2040
 
2041
  # @ fl-builder
2042
+ #: includes/column-settings.php:234 includes/row-settings.php:421
2043
+ #: modules/separator/separator.php:77
2044
  msgctxt "Border type."
2045
  msgid "Dashed"
2046
  msgstr "Gestreept"
2047
 
2048
  # @ fl-builder
2049
+ #: includes/column-settings.php:235 includes/row-settings.php:422
2050
+ #: modules/separator/separator.php:78
2051
  msgctxt "Border type."
2052
  msgid "Dotted"
2053
  msgstr "Gestippeld"
2054
 
2055
  # @ fl-builder
2056
+ #: includes/column-settings.php:236 includes/row-settings.php:423
2057
+ #: modules/separator/separator.php:79
2058
  msgctxt "Border type."
2059
  msgid "Double"
2060
  msgstr "Dubbel"
2061
 
2062
  # @ fl-builder
2063
+ #: includes/column-settings.php:280 includes/row-settings.php:467
2064
  msgid "Top Width"
2065
  msgstr "Boven Breedte"
2066
 
2067
  # @ fl-builder
2068
+ #: includes/column-settings.php:292 includes/row-settings.php:479
2069
  msgid "Bottom Width"
2070
  msgstr "Onder Breedte"
2071
 
2072
  # @ fl-builder
2073
+ #: includes/column-settings.php:304 includes/row-settings.php:491
2074
  msgid "Left Width"
2075
  msgstr "Links Breedte"
2076
 
2077
  # @ fl-builder
2078
+ #: includes/column-settings.php:316 includes/row-settings.php:503
2079
  msgid "Right Width"
2080
  msgstr "Rechts Breedte"
2081
 
2082
  # @ fl-builder
2083
+ #: includes/column-settings.php:331 includes/module-settings.php:6
2084
+ #: includes/row-settings.php:518 modules/content-slider/content-slider.php:300
2085
  msgid "Advanced"
2086
  msgstr "Geavanceerd"
2087
 
2088
  # @ fl-builder
2089
+ #: includes/column-settings.php:334 includes/global-settings.php:41
2090
  #: includes/global-settings.php:94 includes/module-settings.php:9
2091
+ #: includes/row-settings.php:521
2092
  msgid "Margins"
2093
  msgstr "Marges"
2094
 
2095
  # @ fl-builder
2096
+ #: includes/column-settings.php:338 includes/column-settings.php:391
2097
+ #: includes/module-settings.php:13 includes/row-settings.php:525
2098
+ #: includes/row-settings.php:578 modules/slideshow/slideshow.php:484
2099
  msgid "Top"
2100
  msgstr "Boven"
2101
 
2102
  # @ fl-builder
2103
+ #: includes/column-settings.php:350 includes/column-settings.php:403
2104
+ #: includes/module-settings.php:25 includes/row-settings.php:537
2105
+ #: includes/row-settings.php:590 modules/post-slider/post-slider.php:632
2106
+ #: modules/slideshow/slideshow.php:483
2107
  msgid "Bottom"
2108
  msgstr "Onder"
2109
 
2110
  # @ fl-builder
2111
+ #: includes/column-settings.php:362 includes/column-settings.php:415
2112
+ #: includes/module-settings.php:37 includes/row-settings.php:549
2113
+ #: includes/row-settings.php:602 modules/button/button.php:229
2114
+ #: modules/callout/callout.php:254
2115
+ #: modules/content-slider/content-slider.php:503 modules/cta/cta.php:127
2116
+ #: modules/heading/heading.php:90 modules/heading/heading.php:174
2117
+ #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
2118
+ #: modules/menu/menu.php:181 modules/photo/photo.php:471
2119
  #: modules/post-slider/post-slider.php:630
2120
  #: modules/post-slider/post-slider.php:649
2121
+ #: modules/pricing-table/pricing-table.php:315
2122
+ #: modules/social-buttons/social-buttons.php:102
2123
  msgid "Left"
2124
  msgstr "Links"
2125
 
2126
  # @ fl-builder
2127
+ #: includes/column-settings.php:374 includes/column-settings.php:427
2128
+ #: includes/module-settings.php:49 includes/row-settings.php:561
2129
+ #: includes/row-settings.php:614 modules/button/button.php:230
2130
+ #: modules/callout/callout.php:255
2131
+ #: modules/content-slider/content-slider.php:505 modules/cta/cta.php:129
2132
+ #: modules/heading/heading.php:92 modules/heading/heading.php:176
2133
+ #: modules/icon-group/icon-group.php:113 modules/icon/icon.php:136
2134
+ #: modules/menu/menu.php:183 modules/photo/photo.php:473
2135
  #: modules/post-slider/post-slider.php:631
2136
  #: modules/post-slider/post-slider.php:650
2137
+ #: modules/pricing-table/pricing-table.php:317
2138
+ #: modules/social-buttons/social-buttons.php:103
2139
  msgid "Right"
2140
  msgstr "Rechts"
2141
 
2142
  # @ fl-builder
2143
+ #: includes/column-settings.php:387 includes/global-settings.php:49
2144
+ #: includes/row-settings.php:574 modules/button/button.php:243
2145
+ #: modules/callout/callout.php:610
2146
+ #: modules/content-slider/content-slider.php:739 modules/cta/cta.php:356
2147
+ #: modules/pricing-table/pricing-table.php:333
2148
+ #: modules/subscribe-form/subscribe-form.php:284
2149
  msgid "Padding"
2150
  msgstr "Padding"
2151
 
2152
  # @ fl-builder
2153
+ #: includes/column-settings.php:440 includes/global-settings.php:103
2154
+ #: includes/module-settings.php:62 includes/row-settings.php:627
2155
  msgid "Responsive Layout"
2156
  msgstr "Responsive Layout"
2157
 
2158
  # @ fl-builder
2159
+ #: includes/column-settings.php:444 includes/module-settings.php:66
2160
+ #: includes/row-settings.php:631 modules/slideshow/slideshow.php:299
2161
  msgid "Display"
2162
  msgstr "Weergave"
2163
 
2164
  # @ fl-builder
2165
+ #: includes/column-settings.php:446 includes/module-settings.php:68
2166
+ #: includes/row-settings.php:633
2167
  msgid "Always"
2168
  msgstr "Altijd"
2169
 
2170
  # @ fl-builder
2171
+ #: includes/column-settings.php:447 includes/module-settings.php:69
2172
+ #: includes/row-settings.php:634
2173
  msgid "Large Devices Only"
2174
  msgstr "Alleen Grote Apparaten"
2175
 
2176
  # @ fl-builder
2177
+ #: includes/column-settings.php:448 includes/module-settings.php:70
2178
+ #: includes/row-settings.php:635
2179
  msgid "Large &amp; Medium Devices Only"
2180
  msgstr "Alleen Grote &amp; Medium Apparaten"
2181
 
2182
  # @ fl-builder
2183
+ #: includes/column-settings.php:449 includes/module-settings.php:71
2184
+ #: includes/row-settings.php:636
2185
  msgid "Medium Devices Only"
2186
  msgstr "Alleen Medium Apparaten"
2187
 
2188
  # @ fl-builder
2189
+ #: includes/column-settings.php:450 includes/module-settings.php:72
2190
+ #: includes/row-settings.php:637
2191
  msgid "Medium &amp; Small Devices Only"
2192
  msgstr "Alleen Medium &amp; Kleine Apparaten"
2193
 
2194
  # @ fl-builder
2195
+ #: includes/column-settings.php:451 includes/module-settings.php:73
2196
+ #: includes/row-settings.php:638
2197
  msgid "Small Devices Only"
2198
  msgstr "Alleen Kleine Apparaten"
2199
 
2200
  # @ fl-builder
2201
+ #: includes/column-settings.php:453
2202
  msgid "Choose whether to show or hide this column at different device sizes."
2203
  msgstr ""
2204
  "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
2205
  "afmetingen."
2206
 
2207
  # @ fl-builder
2208
+ #: includes/column-settings.php:460
2209
  msgid "Medium Device Width"
2210
  msgstr "Medium Apparaat Breedte"
2211
 
2212
  # @ fl-builder
2213
+ #: includes/column-settings.php:461
2214
  msgid "The width of this column on medium devices such as tablets."
2215
  msgstr "De breedte van deze kolom op medium apparaten zoals tablets."
2216
 
2217
  # @ fl-builder
2218
+ #: includes/column-settings.php:464 includes/column-settings.php:492
2219
+ #: modules/button/button.php:203 modules/callout/callout.php:286
2220
+ #: modules/content-slider/content-slider.php:476 modules/cta/cta.php:170
2221
+ #: modules/heading/heading.php:131 modules/heading/heading.php:158
2222
+ #: modules/heading/heading.php:188 modules/post-slider/post-slider.php:603
2223
+ #: modules/social-buttons/social-buttons.php:75
 
 
 
 
 
 
 
 
 
 
2224
  msgid "Custom"
2225
  msgstr "Aangepast"
2226
 
2227
  # @ fl-builder
2228
+ #: includes/column-settings.php:477
2229
  msgid "Custom Medium Device Width"
2230
  msgstr "Aangepaste Medium Apparaat Breedte"
2231
 
2232
  # @ fl-builder
2233
+ #: includes/column-settings.php:488
2234
  msgid "Small Device Width"
2235
  msgstr "Klein Apparaat Breedte"
2236
 
2237
  # @ fl-builder
2238
+ #: includes/column-settings.php:489
2239
  msgid "The width of this column on small devices such as phones."
2240
  msgstr "De breedte van deze kolom op kleine apparaten zoals telefoons."
2241
 
2242
  # @ fl-builder
2243
+ #: includes/column-settings.php:505
2244
  msgid "Custom Small Device Width"
2245
  msgstr "Aangepaste Kleine Apparaat Breedte"
2246
 
2247
  # @ fl-builder
2248
+ #: includes/column-settings.php:517 includes/module-settings.php:115
2249
+ #: includes/row-settings.php:648
2250
  msgid "CSS Selectors"
2251
  msgstr "CSS selectors"
2252
 
2253
  # @ fl-builder
2254
+ #: includes/column-settings.php:521 includes/loop-settings.php:28
2255
+ #: includes/module-settings.php:119 includes/row-settings.php:652
2256
  msgid "ID"
2257
  msgstr "ID"
2258
 
2259
  # @ fl-builder
2260
+ #: includes/column-settings.php:522
2261
  msgid ""
2262
  "A unique ID that will be applied to this column's HTML. Must start with a "
2263
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
2267
  "getallen bevatten. Geen spaties."
2268
 
2269
  # @ fl-builder
2270
+ #: includes/column-settings.php:529
2271
  msgid "CSS Class"
2272
  msgstr "CSS Class"
2273
 
2274
  # @ fl-builder
2275
+ #: includes/column-settings.php:530
2276
  msgid ""
2277
  "A class that will be applied to this column's HTML. Must start with a letter "
2278
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
2295
  msgstr "Icoon Kiezen"
2296
 
2297
  # @ fl-builder
2298
+ #: includes/field-icon.php:5 includes/field-photo.php:16
2299
  msgid "Replace"
2300
  msgstr "Vervangen"
2301
 
2302
  # @ fl-builder
2303
+ #: includes/field-icon.php:7 includes/field-photo.php:14
2304
+ #: includes/ui-js-config.php:81 includes/ui-js-templates.php:15
2305
+ #: includes/ui-js-templates.php:43 includes/ui-js-templates.php:99
2306
  msgid "Remove"
2307
  msgstr "Verwijder"
2308
 
2316
  msgid "Enter a post title to search."
2317
  msgstr "Geef een post titel om te zoeken."
2318
 
2319
+ #: includes/field-link.php:6
2320
  msgid "Start typing..."
2321
  msgstr "Begin met typen..."
2322
 
2323
  # @ fl-builder
2324
  #: includes/field-link.php:7 includes/icon-selector.php:28
2325
  #: includes/settings.php:71 includes/template-selector.php:92
2326
+ #: includes/ui-js-config.php:27 includes/ui-js-templates.php:135
2327
  msgid "Cancel"
2328
  msgstr "Annuleren"
2329
 
2330
+ #: includes/field-multiple-audios.php:21
2331
+ #, php-format
2332
+ msgid "1 Audio File Selected"
2333
+ msgid_plural "%d Audio Files Selected"
2334
+ msgstr[0] "1 Audio bestand geselecteerd"
2335
+ msgstr[1] "%d audio bestanden geselecteerd"
2336
+
2337
+ #: includes/field-multiple-audios.php:23 includes/ui-js-config.php:88
2338
+ msgid "Select Audio"
2339
+ msgstr "Selecteer audio"
2340
+
2341
+ #: includes/field-multiple-audios.php:24
2342
+ msgid "Edit Playlist"
2343
+ msgstr "Bewerk afspeellijst"
2344
+
2345
+ #: includes/field-multiple-audios.php:25
2346
+ msgid "Add Audio Files"
2347
+ msgstr "Audio bestanden toevoegen"
2348
+
2349
  # @ fl-builder
2350
  #: includes/field-multiple-photos.php:20
2351
  #, php-format
2370
  msgstr "Afbeeldingen Toevoegen"
2371
 
2372
  # @ fl-builder
2373
+ #: includes/field-photo.php:3 includes/ui-js-config.php:89
2374
  msgid "Select Photo"
2375
  msgstr "Selecteer Afbeelding"
2376
 
2377
  # @ fl-builder
2378
+ #: includes/field-photo.php:12 includes/template-selector.php:70
2379
+ msgid "Edit"
2380
+ msgstr "Bewerk"
2381
+
2382
+ # @ fl-builder
2383
+ #: includes/field-video.php:3 includes/ui-js-config.php:91
2384
  msgid "Select Video"
2385
  msgstr "Selecteer Video"
2386
 
2389
  msgid "Replace Video"
2390
  msgstr "Vervang Video"
2391
 
2392
+ #: includes/global-settings.php:4 includes/ui-js-config.php:49
2393
+ msgid "Global Settings"
2394
+ msgstr "Globale instellingen"
2395
+
2396
  # @ fl-builder
2397
  #: includes/global-settings.php:7 includes/node-template-settings.php:7
2398
+ #: includes/user-template-settings.php:7 modules/accordion/accordion.php:111
2399
+ #: modules/audio/audio.php:76 modules/button/button.php:60
2400
+ #: modules/callout/callout.php:211 modules/contact-form/contact-form.php:78
2401
+ #: modules/content-slider/content-slider.php:217
2402
+ #: modules/content-slider/content-slider.php:341
2403
+ #: modules/countdown/countdown.php:81 modules/cta/cta.php:69
2404
+ #: modules/gallery/gallery.php:221 modules/heading/heading.php:27
2405
+ #: modules/html/html.php:27 modules/icon-group/icon-group.php:129
2406
+ #: modules/icon/icon.php:28 modules/map/map.php:27 modules/menu/menu.php:84
2407
+ #: modules/numbers/numbers.php:59 modules/photo/photo.php:422
2408
+ #: modules/pricing-table/pricing-table.php:134
2409
+ #: modules/rich-text/rich-text.php:27 modules/separator/separator.php:28
2410
+ #: modules/sidebar/sidebar.php:28 modules/slideshow/slideshow.php:265
2411
+ #: modules/social-buttons/social-buttons.php:65
2412
+ #: modules/subscribe-form/subscribe-form.php:98 modules/tabs/tabs.php:78
2413
+ #: modules/testimonials/testimonials.php:31
2414
+ #: modules/testimonials/testimonials.php:201 modules/video/video.php:82
2415
+ #: modules/widget/widget.php:68 modules/woocommerce/woocommerce.php:51
2416
  msgid "General"
2417
  msgstr "Algemeen"
2418
 
 
2419
  #: includes/global-settings.php:8
2420
+ msgid "<strong>Note</strong>: These settings apply to all posts and pages."
2421
+ msgstr ""
2422
+ "<strong>Opmerking</strong>: Deze instellingen zijn van toepassing op alle "
2423
+ "pagina's en berichten."
2424
 
2425
  # @ fl-builder
2426
  #: includes/global-settings.php:11
2483
  # @ fl-builder
2484
  #: includes/global-settings.php:70 includes/global-settings.php:84
2485
  #: includes/row-settings.php:20 includes/row-settings.php:38
2486
+ #: modules/button/button.php:202 modules/callout/callout.php:597
2487
+ #: modules/menu/menu.php:157 modules/pricing-table/pricing-table.php:307
2488
  msgid "Full Width"
2489
  msgstr "Volledige Breedte"
2490
 
2547
  "De browserbreedte waarbij de layout voor kleine apparaten zoals telefoons "
2548
  "aangepast zal worden."
2549
 
2550
+ #: includes/global-settings.php:152 includes/layout-settings.php:7
2551
+ msgid "CSS"
2552
+ msgstr "CSS"
2553
+
2554
+ #: includes/global-settings.php:171 includes/layout-settings.php:26
2555
+ msgid "JavaScript"
2556
+ msgstr "JavaScript"
2557
+
2558
  # @ fl-builder
2559
  #: includes/icon-selector.php:5
2560
  msgctxt "Select option for showing all icon libraries."
2561
  msgid "All Libraries"
2562
  msgstr "Alle bibliotheken"
2563
 
2564
+ #: includes/layout-settings.php:4 includes/ui-js-config.php:50
2565
+ msgid "Layout Settings"
2566
+ msgstr "Layout instellingen"
2567
+
2568
  # @ fl-builder
2569
  #: includes/loop-settings.php:20
2570
  msgid "Post Type"
2576
  msgstr "Sorteer Op"
2577
 
2578
  # @ fl-builder
2579
+ #: includes/loop-settings.php:29 modules/countdown/countdown.php:84
2580
+ #: modules/post-carousel/post-carousel.php:342
2581
+ #: modules/post-grid/post-grid.php:167 modules/post-slider/post-slider.php:508
2582
+ #: modules/woocommerce/woocommerce.php:194
2583
  msgid "Date"
2584
  msgstr "Datum"
2585
 
2589
  msgstr "Datum Laatst Gewijzigd"
2590
 
2591
  # @ fl-builder
2592
+ #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:83
2593
+ #: modules/pricing-table/pricing-table.php:137
2594
+ #: modules/pricing-table/pricing-table.php:141
2595
  msgid "Title"
2596
  msgstr "Titel"
2597
 
2598
  # @ fl-builder
2599
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:333
2600
+ #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:499
2601
  msgid "Author"
2602
  msgstr "Auteur"
2603
 
2622
  msgstr "Volgorde"
2623
 
2624
  # @ fl-builder
2625
+ #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:204
2626
  msgid "Descending"
2627
  msgstr "Aflopend"
2628
 
2629
  # @ fl-builder
2630
+ #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:203
2631
  msgid "Ascending"
2632
  msgstr "Oplopend"
2633
 
2724
 
2725
  # @ fl-builder
2726
  #: includes/module-settings.php:102
2727
+ #: modules/content-slider/content-slider.php:256
2728
+ #: modules/post-carousel/post-carousel.php:146
2729
  #: modules/post-slider/post-slider.php:363
2730
+ #: modules/testimonials/testimonials.php:92
2731
  msgid "Delay"
2732
  msgstr "Vertraging"
2733
 
2734
  # @ fl-builder
2735
+ #: includes/module-settings.php:106 includes/row-settings.php:287
2736
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:260
2737
+ #: modules/content-slider/content-slider.php:277
2738
+ #: modules/post-carousel/post-carousel.php:149
2739
+ #: modules/post-carousel/post-carousel.php:165
2740
  #: modules/post-slider/post-slider.php:366
2741
+ #: modules/post-slider/post-slider.php:391 modules/slideshow/slideshow.php:394
2742
+ #: modules/slideshow/slideshow.php:419 modules/slideshow/slideshow.php:590
2743
+ #: modules/testimonials/testimonials.php:96
2744
+ #: modules/testimonials/testimonials.php:113
2745
  msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2746
  msgid "seconds"
2747
  msgstr "seconden"
2762
  "getallen bevatten. Geen spaties."
2763
 
2764
  # @ fl-builder
2765
+ #: includes/module-settings.php:127 includes/row-settings.php:660
2766
  msgid "Class"
2767
  msgstr "Class"
2768
 
2784
  msgstr "%s Template Opslaan"
2785
 
2786
  # @ fl-builder
2787
+ #: includes/node-template-settings.php:14
2788
  #: includes/user-template-settings.php:15
2789
  msgctxt "Template name."
2790
  msgid "Name"
2803
  "op één plaats."
2804
 
2805
  # @ fl-builder
2806
+ #: includes/row-settings.php:6 includes/ui-js-config.php:84
2807
  #: includes/ui-js-templates.php:12
2808
  msgid "Row Settings"
2809
  msgstr "Rij Instellingen"
2810
 
2811
  # @ fl-builder
2812
+ #: includes/row-settings.php:16 modules/button/button.php:198
2813
+ #: modules/content-slider/content-slider.php:510
2814
+ #: modules/pricing-table/pricing-table.php:303
2815
  msgid "Width"
2816
  msgstr "Breed"
2817
 
2841
  "Instellingen."
2842
 
2843
  # @ fl-builder
2844
+ #: includes/row-settings.php:47 modules/content-slider/content-slider.php:224
2845
+ #: modules/map/map.php:42 modules/post-slider/post-slider.php:345
2846
+ #: modules/separator/separator.php:59 modules/slideshow/slideshow.php:303
2847
+ msgid "Height"
2848
+ msgstr "Hoogte"
2849
+
2850
+ #: includes/row-settings.php:51
2851
+ msgid "Full Height"
2852
+ msgstr "Volledige hoogte"
2853
+
2854
+ #: includes/row-settings.php:53
2855
+ msgid "Full height rows fill the height of the browser window."
2856
+ msgstr "Volledige hoogte rijen vullen de hoogte van het browser scherm."
2857
+
2858
+ # @ fl-builder
2859
+ #: includes/row-settings.php:61 modules/button/button.php:121
2860
+ #: modules/cta/cta.php:189 modules/heading/heading.php:73
2861
+ #: modules/icon-group/icon-group.php:48 modules/icon/icon.php:79
2862
+ #: modules/numbers/numbers.php:170 modules/post-carousel/post-carousel.php:406
2863
+ #: modules/post-grid/post-grid.php:306 modules/post-slider/post-slider.php:680
2864
  msgid "Colors"
2865
  msgstr "Kleuren"
2866
 
2867
  # @ fl-builder
2868
+ #: includes/row-settings.php:65 modules/button/button.php:140
2869
+ #: modules/callout/callout.php:535
2870
+ #: modules/content-slider/content-slider.php:555
2871
+ #: modules/content-slider/content-slider.php:677
2872
+ #: modules/content-slider/content-slider.php:790
2873
+ #: modules/countdown/countdown.php:182 modules/cta/cta.php:193
2874
+ #: modules/cta/cta.php:290 modules/heading/heading.php:78
2875
+ #: modules/numbers/numbers.php:174 modules/post-carousel/post-carousel.php:410
2876
+ #: modules/post-grid/post-grid.php:310 modules/post-slider/post-slider.php:684
2877
+ #: modules/pricing-table/pricing-table.php:248
2878
+ #: modules/subscribe-form/subscribe-form.php:218
2879
  msgid "Text Color"
2880
  msgstr "Tekst kleur"
2881
 
2882
  # @ fl-builder
2883
+ #: includes/row-settings.php:108
2884
  msgctxt "Background type."
2885
  msgid "Video"
2886
  msgstr "Video"
2887
 
2888
  # @ fl-builder
2889
+ #: includes/row-settings.php:110
2890
  msgctxt "Background type."
2891
  msgid "Slideshow"
2892
  msgstr "Diavoorstelling"
2893
 
2894
  # @ fl-builder
2895
+ #: includes/row-settings.php:114
2896
  msgctxt "Background type."
2897
  msgid "Parallax"
2898
  msgstr "Parallax"
2899
 
2900
  # @ fl-builder
2901
+ #: includes/row-settings.php:216
2902
  msgid "Background Video"
2903
  msgstr "Achtergrond Video"
2904
 
2905
+ #: includes/row-settings.php:220 modules/video/video.php:106
2906
+ msgid "Video (MP4)"
2907
+ msgstr "Video (MP4)"
 
 
2908
 
2909
+ #: includes/row-settings.php:221
2910
+ msgid ""
2911
+ "A video in the MP4 format to use as the background of this row. Most modern "
2912
+ "browsers support this format."
2913
+ msgstr ""
2914
+ "Een video in het MP4 formaat om te gebruiken als de achtergrond van deze "
2915
+ "rij. De meeste moderne browsers ondersteunen dit formaat."
2916
+
2917
+ #: includes/row-settings.php:228 modules/video/video.php:111
2918
+ msgid "Video (WebM)"
2919
+ msgstr "Video (WebM)"
2920
+
2921
+ #: includes/row-settings.php:229
2922
  msgid ""
2923
+ "A video in the WebM format to use as the background of this row. This format "
2924
+ "is required to support browsers such as FireFox and Opera."
2925
  msgstr ""
2926
+ "Een video in het WebM formaat om te gebruiken als achtergrond voor deze rij. "
2927
+ "Dit formaat is benodigd om browsers als Firefox en Opera te ondersteunen."
2928
 
2929
  # @ fl-builder
2930
+ #: includes/row-settings.php:236
2931
  msgid "Fallback Photo"
2932
  msgstr "Terugval Afbeelding"
2933
 
2934
  # @ fl-builder
2935
+ #: includes/row-settings.php:237
2936
  msgid "A photo that will be displayed if the video fails to load."
2937
  msgstr ""
2938
  "Een afbeelding die wordt weergegeven als de video niet kan worden geladen."
2939
 
2940
  # @ fl-builder
2941
+ #: includes/row-settings.php:245
2942
  msgid "Background Slideshow"
2943
  msgstr "Achtergrond Diavoorstelling"
2944
 
2945
  # @ fl-builder
2946
+ #: includes/row-settings.php:249 modules/gallery/gallery.php:242
2947
+ #: modules/slideshow/slideshow.php:272
2948
  msgid "Source"
2949
  msgstr "Bron"
2950
 
2951
  # @ fl-builder
2952
+ #: includes/row-settings.php:252 modules/audio/audio.php:86
2953
+ #: modules/gallery/gallery.php:245 modules/photo/photo.php:432
2954
+ #: modules/slideshow/slideshow.php:275 modules/video/video.php:92
2955
  msgid "Media Library"
2956
  msgstr "Media Bibliotheek"
2957
 
2958
  # @ fl-builder
2959
+ #: includes/row-settings.php:255 modules/gallery/gallery.php:248
2960
+ #: modules/slideshow/slideshow.php:278
2961
  msgid ""
2962
  "Pull images from the WordPress media library or a gallery on your SmugMug "
2963
  "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
2969
  "gallery."
2970
 
2971
  # @ fl-builder
2972
+ #: includes/row-settings.php:270 modules/gallery/gallery.php:260
2973
+ #: modules/slideshow/slideshow.php:290
2974
  msgid "Photos"
2975
  msgstr "Afbeeldingen"
2976
 
2977
  # @ fl-builder
2978
+ #: includes/row-settings.php:277 modules/gallery/gallery.php:264
2979
+ #: modules/slideshow/slideshow.php:294
2980
  msgid "Feed URL"
2981
  msgstr "Feed URL"
2982
 
2983
  # @ fl-builder
2984
+ #: includes/row-settings.php:284 includes/row-settings.php:349
2985
+ #: modules/slideshow/slideshow.php:391
2986
  msgid "Speed"
2987
  msgstr "Snelheid"
2988
 
2989
  # @ fl-builder
2990
+ #: includes/row-settings.php:294 modules/content-slider/content-slider.php:264
2991
+ #: modules/post-slider/post-slider.php:370 modules/slideshow/slideshow.php:398
2992
+ #: modules/testimonials/testimonials.php:100
2993
  msgid "Transition"
2994
  msgstr "Overgang"
2995
 
2996
  # @ fl-builder
2997
+ #: includes/row-settings.php:297
2998
  msgctxt "Slideshow transition type."
2999
  msgid "None"
3000
  msgstr "Geen"
3001
 
3002
  # @ fl-builder
3003
+ #: includes/row-settings.php:298 modules/content-slider/content-slider.php:268
3004
+ #: modules/post-carousel/post-carousel.php:242
3005
+ #: modules/post-grid/post-grid.php:256 modules/post-slider/post-slider.php:373
3006
+ #: modules/slideshow/slideshow.php:402
3007
+ #: modules/testimonials/testimonials.php:104
3008
  msgid "Fade"
3009
  msgstr "Vervagen"
3010
 
3011
  # @ fl-builder
3012
+ #: includes/row-settings.php:299 modules/slideshow/slideshow.php:403
3013
  msgid "Ken Burns"
3014
  msgstr "Ken Burns"
3015
 
3016
  # @ fl-builder
3017
+ #: includes/row-settings.php:300 modules/slideshow/slideshow.php:404
3018
  msgid "Slide Horizontal"
3019
  msgstr "Schuif Horizontaal"
3020
 
3021
  # @ fl-builder
3022
+ #: includes/row-settings.php:301 modules/slideshow/slideshow.php:405
3023
  msgid "Slide Vertical"
3024
  msgstr "Schuif Vertikaal"
3025
 
3026
  # @ fl-builder
3027
+ #: includes/row-settings.php:302 modules/slideshow/slideshow.php:406
3028
  msgid "Blinds"
3029
  msgstr "Blinds"
3030
 
3031
  # @ fl-builder
3032
+ #: includes/row-settings.php:303 modules/slideshow/slideshow.php:407
3033
  msgid "Bars"
3034
  msgstr "Balken"
3035
 
3036
  # @ fl-builder
3037
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:408
3038
  msgid "Random Bars"
3039
  msgstr "Willekeurige Balken"
3040
 
3041
  # @ fl-builder
3042
+ #: includes/row-settings.php:305 modules/slideshow/slideshow.php:409
3043
  msgid "Boxes"
3044
  msgstr "Vakken"
3045
 
3046
  # @ fl-builder
3047
+ #: includes/row-settings.php:306 modules/slideshow/slideshow.php:410
3048
  msgid "Random Boxes"
3049
  msgstr "Willekeurige Vakken"
3050
 
3051
  # @ fl-builder
3052
+ #: includes/row-settings.php:307 modules/slideshow/slideshow.php:411
3053
  msgid "Boxes Grow"
3054
  msgstr "Groeiende Vakken"
3055
 
3056
  # @ fl-builder
3057
+ #: includes/row-settings.php:315 modules/content-slider/content-slider.php:273
3058
+ #: modules/post-carousel/post-carousel.php:162
3059
+ #: modules/post-slider/post-slider.php:388 modules/slideshow/slideshow.php:416
3060
+ #: modules/testimonials/testimonials.php:109
3061
  msgid "Transition Speed"
3062
  msgstr "Animatie snelheid"
3063
 
3064
  # @ fl-builder
3065
+ #: includes/row-settings.php:325 modules/slideshow/slideshow.php:423
3066
  msgid "Randomize Photos"
3067
  msgstr "Willekeurige Afbeeldingen"
3068
 
3069
  # @ fl-builder
3070
+ #: includes/row-settings.php:338
3071
  msgid "Background Parallax"
3072
  msgstr "Achtergrond Parallax"
3073
 
3074
  # @ fl-builder
3075
+ #: includes/row-settings.php:352
3076
  msgid "Fast"
3077
  msgstr "Snel"
3078
 
3079
  # @ fl-builder
3080
+ #: includes/row-settings.php:353
3081
  msgctxt "Speed."
3082
  msgid "Medium"
3083
  msgstr "Medium"
3084
 
3085
  # @ fl-builder
3086
+ #: includes/row-settings.php:354
3087
  msgid "Slow"
3088
  msgstr "Langzaam"
3089
 
3090
  # @ fl-builder
3091
+ #: includes/row-settings.php:640
3092
  msgid "Choose whether to show or hide this row at different device sizes."
3093
  msgstr ""
3094
  "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
3095
  "afmetingen."
3096
 
3097
  # @ fl-builder
3098
+ #: includes/row-settings.php:653
3099
  msgid ""
3100
  "A unique ID that will be applied to this row's HTML. Must start with a "
3101
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
3105
  "getallen bevatten. Geen spaties."
3106
 
3107
  # @ fl-builder
3108
+ #: includes/row-settings.php:661
3109
  msgid ""
3110
  "A class that will be applied to this row's HTML. Must start with a letter "
3111
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
3154
  msgid "Blank"
3155
  msgstr "Blanco"
3156
 
3157
+ # @ fl-builder
3158
+ #: includes/template-selector.php:71
3159
+ msgid "Delete"
3160
+ msgstr "Verwijder"
 
 
 
 
 
 
 
3161
 
3162
+ #: includes/ui-js-config.php:23
3163
  msgid "What would you like to do?"
3164
  msgstr "Wat wil je doen?"
3165
 
3166
+ #: includes/ui-js-config.php:24
3167
+ msgid " is already a saved preset."
3168
+ msgstr " is al opgeslagen als vooraf ingesteld."
3169
+
3170
+ #: includes/ui-js-config.php:25
3171
+ msgid "Audio File Selected"
3172
+ msgstr "Audio bestand geselecteerd"
3173
+
3174
+ #: includes/ui-js-config.php:26
3175
+ msgid "Audio Files Selected"
3176
+ msgstr "Audio bestand geselecteerd"
3177
+
3178
+ #: includes/ui-js-config.php:28
3179
  msgid "Change Template"
3180
  msgstr "Verander Template"
3181
 
3182
+ #: includes/ui-js-config.php:29
3183
  msgid ""
3184
  "Warning! Changing the template will replace your existing layout. Do you "
3185
  "really want to do this?"
3187
  "Waarschuwing! Het veranderen van het template zal je bestaande layout "
3188
  "vervangen. Weet je zeker dat je dit wilt doen?"
3189
 
3190
+ #: includes/ui-js-config.php:30
3191
+ msgid "Color Presets"
3192
+ msgstr "Kleur voorinstellingen"
3193
+
3194
+ #: includes/ui-js-config.php:31
3195
+ msgid "Color Picker"
3196
+ msgstr "Selecteer kleur"
3197
+
3198
+ #: includes/ui-js-config.php:32
3199
  msgid "Column"
3200
  msgstr "Kolom"
3201
 
3202
+ #: includes/ui-js-config.php:33
3203
  msgid ""
3204
  "Please select either a background layout or content layout before submitting."
3205
  msgstr ""
3206
  "Selecteer ofwel een achtergrond layout of inhoud layout alvorens verder te "
3207
  "gaan."
3208
 
3209
+ #: includes/ui-js-config.php:34
3210
+ msgid "Error! Please enter a date that is in the future."
3211
+ msgstr "Fout! Voer een datum in die in de toekomst ligt."
3212
+
3213
+ #: includes/ui-js-config.php:35
3214
  msgid "Remove Account"
3215
  msgstr "Account Verwijderen"
3216
 
3217
+ #: includes/ui-js-config.php:36
3218
  msgid ""
3219
  "Are you sure you want to remove this account? Other modules that are "
3220
  "connected to it will be affected."
3222
  "Weet je zeker dat je dit account wil verwijderen? Andere modules die "
3223
  "verbonden zijn zullen ook worden beïnvloed."
3224
 
3225
+ #: includes/ui-js-config.php:37
3226
+ msgid "Do you really want to delete this column?"
3227
+ msgstr "Wil je echt deze kolom verwijderen?"
3228
+
3229
+ #: includes/ui-js-config.php:38
3230
  msgid "Do you really want to delete this item?"
3231
  msgstr "Wil je dit item echt verwijderen?"
3232
 
3233
+ #: includes/ui-js-config.php:39
3234
+ msgid "Do you really want to delete this module?"
3235
+ msgstr "Wil je echt deze module verwijderen?"
 
 
 
 
3236
 
3237
+ #: includes/ui-js-config.php:40
3238
+ msgid "Do you really want to delete this row?"
3239
+ msgstr "Wil je echt deze rij verwijderen?"
 
 
 
 
3240
 
3241
+ # @ fl-builder
3242
+ #: includes/ui-js-config.php:41
3243
+ msgid "Do you really want to delete this template?"
3244
+ msgstr "Wilt je echt dit template verwijderen?"
3245
+
3246
+ #: includes/ui-js-config.php:42
3247
  msgid ""
3248
  "WARNING! You are about to delete a global template that may be linked to "
3249
  "other pages. Do you really want to delete this template and unlink it?"
3252
  "dat kan zijn gekoppeld aan andere pagina's. Wil je echt dit template "
3253
  "verwijderen en het ontkoppelen?"
3254
 
3255
+ #: includes/ui-js-config.php:43
3256
  msgid "Discard Changes"
3257
  msgstr "Wijzigingen Negeren"
3258
 
3259
+ #: includes/ui-js-config.php:44
3260
  msgid ""
3261
  "Do you really want to discard these changes? All of your changes that are "
3262
  "not published will be lost."
3264
  "Weet je zeker dat je deze wijzigingen wilt negeren? All je wijzigingen "
3265
  "worden niet gepubliceerd en gaan verloren."
3266
 
3267
+ #: includes/ui-js-config.php:46
3268
  msgid "Save Draft"
3269
  msgstr "Concept Opslaan"
3270
 
3271
+ #: includes/ui-js-config.php:47 includes/ui-js-templates.php:14
3272
+ #: includes/ui-js-templates.php:84
3273
  msgid "Duplicate"
3274
  msgstr "Kopiëren"
3275
 
3276
+ #: includes/ui-js-config.php:48
3277
+ msgid "Duplicate Layout"
3278
+ msgstr "Dupliceer layout"
 
 
 
 
 
 
 
 
3279
 
3280
+ #: includes/ui-js-config.php:51
3281
  msgid "Drop a row layout or module to get started!"
3282
  msgstr "Drop een rij layout of module om aan de slag te gaan!"
3283
 
3284
+ #: includes/ui-js-config.php:52
3285
+ msgid "Error! Please enter a valid day."
3286
+ msgstr "Fout! Voer een geldige dag in."
3287
+
3288
+ #: includes/ui-js-config.php:53
3289
+ msgid "Error! Please enter a valid month."
3290
+ msgstr "Fout! Voer een geldige maand in."
3291
+
3292
+ #: includes/ui-js-config.php:54
3293
+ msgid "Error! Please enter a valid year."
3294
+ msgstr "Fout! Voer een geldig jaar in."
3295
+
3296
+ #: includes/ui-js-config.php:55
3297
  msgid ""
3298
  "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
3299
  "not functioning as expected the cause is most likely this error. Please help "
3306
  "een weer in te schakelen en tussentijds Beaver Builder te testen om te "
3307
  "bepalen of het probleem is gerelateerd aan een derde partij plugin."
3308
 
3309
+ #: includes/ui-js-config.php:56
3310
  msgid "Full Size"
3311
  msgstr "Volledige Grootte"
3312
 
3313
+ #: includes/ui-js-config.php:57
3314
  msgid "Get Help"
3315
  msgstr "Hulp zoeken..."
3316
 
3317
  # @ fl-builder
3318
+ #: includes/ui-js-config.php:58
3319
  msgid "\"{message}\" on line {line} of {file}."
3320
  msgstr "\"{message}\" op rij {line} van {file}."
3321
 
3322
+ #: includes/ui-js-config.php:59
3323
  msgid "Insert"
3324
  msgstr "Invoegen"
3325
 
3326
+ #: includes/ui-js-config.php:60 modules/pricing-table/pricing-table.php:111
3327
  msgid "Large"
3328
  msgstr "Groot"
3329
 
3330
+ #: includes/ui-js-config.php:61
3331
  msgid "Manage Templates"
3332
  msgstr "Templates Beheren"
3333
 
3334
+ #: includes/ui-js-config.php:62 modules/pricing-table/pricing-table.php:112
3335
  msgid "Medium"
3336
  msgstr "Medium"
3337
 
3338
+ #: includes/ui-js-config.php:63
3339
  msgid "Module"
3340
  msgstr "Module"
3341
 
3342
+ #: includes/ui-js-config.php:64
3343
  msgid "Module Template Saved!"
3344
  msgstr "Module Template Opgeslagen!"
3345
 
3346
+ #: includes/ui-js-config.php:65 includes/ui-js-templates.php:10
3347
+ #: includes/ui-js-templates.php:80
3348
  msgid "Move"
3349
  msgstr "Verplaats"
3350
 
3351
+ #: includes/ui-js-config.php:66
3352
  msgid "New Column"
3353
  msgstr "Nieuwe Kolom"
3354
 
3355
+ #: includes/ui-js-config.php:67
3356
  msgid "New Row"
3357
  msgstr "Nieuwe Rij"
3358
 
3359
+ #: includes/ui-js-config.php:68
3360
+ msgid "Please enter a color first."
3361
+ msgstr "Voer eerst een kleur in."
3362
+
3363
+ #: includes/ui-js-config.php:69
3364
+ msgid "Add a color preset first."
3365
+ msgstr "Voeg eerst een kleur aan voorinstellingen toe."
3366
+
3367
+ #: includes/ui-js-config.php:70
3368
  msgid "No results found."
3369
  msgstr "Geen resultaten gevonden."
3370
 
3371
+ #: includes/ui-js-config.php:71 includes/ui-panel-node-templates.php:11
3372
  msgid "No saved rows found."
3373
  msgstr "Geen opgeslagen rijen gevonden."
3374
 
3375
+ #: includes/ui-js-config.php:72 includes/ui-panel-node-templates.php:42
3376
  msgid "No saved modules found."
3377
  msgstr "Geen opgeslagen modules gevonden."
3378
 
3379
+ #: includes/ui-js-config.php:73 includes/ui-js-templates.php:143
3380
  msgid "OK"
3381
  msgstr "OK"
3382
 
3383
  # @ fl-builder
3384
+ #: includes/ui-js-config.php:74 modules/photo/photo.php:508
3385
  msgid "Photo Page"
3386
  msgstr "Afbeelding Pagina"
3387
 
3388
+ #: includes/ui-js-config.php:75
3389
  msgid "Photo Selected"
3390
  msgstr "Afbeelding Geselecteerd"
3391
 
3392
+ #: includes/ui-js-config.php:76
3393
  msgid "Photos Selected"
3394
  msgstr "Afbeeldingen Geselecteerd"
3395
 
3396
+ #: includes/ui-js-config.php:77
3397
+ msgid "Paste color here..."
3398
+ msgstr "Plak een kleur hier..."
3399
+
3400
+ #: includes/ui-js-config.php:78 modules/subscribe-form/includes/frontend.php:15
3401
  msgid "Please Wait..."
3402
  msgstr "Even geduld a.u.b..."
3403
 
3404
+ #: includes/ui-js-config.php:79
3405
+ msgid " added to presets!"
3406
+ msgstr " toegevoegd aan voorinstellingen!"
3407
+
3408
+ #: includes/ui-js-config.php:80
3409
  msgid "Publish Changes"
3410
  msgstr "Wijzigingen Publiceren"
3411
 
3412
+ #: includes/ui-js-config.php:82
3413
+ msgid "Are you sure?"
3414
+ msgstr "Weet je het zeker?"
3415
+
3416
+ #: includes/ui-js-config.php:83 includes/ui-js-templates.php:5
3417
  msgid "Row"
3418
  msgstr "Rij"
3419
 
3420
+ #: includes/ui-js-config.php:85
3421
  msgid "Row Template Saved!"
3422
  msgstr "Rij Template Opgeslagen!"
3423
 
3424
+ #: includes/ui-js-config.php:86
3425
  msgid "Save Core Template"
3426
  msgstr "Core Template Opslaan"
3427
 
3428
  # @ fl-builder
3429
+ #: includes/ui-js-config.php:87 includes/user-template-settings.php:4
3430
  msgid "Save Template"
3431
  msgstr "Template Opslaan"
3432
 
3433
+ #: includes/ui-js-config.php:90
3434
  msgid "Select Photos"
3435
  msgstr "Selecteer Afbeeldingen"
3436
 
3437
+ #: includes/ui-js-config.php:92
3438
  msgid "Please select an account before saving."
3439
  msgstr "Selecteer een account alvorens op te slaan."
3440
 
3441
+ #: includes/ui-js-config.php:93
3442
  msgid "Please connect an account before saving."
3443
  msgstr "Activeer eerst een account alvorens op te slaan."
3444
 
3445
+ #: includes/ui-js-config.php:94
3446
  msgid "Please select a list before saving."
3447
  msgstr "Selecteer een lijst alvorens op te slaan."
3448
 
3449
+ #: includes/ui-js-config.php:95
3450
  msgid "Take a Tour"
3451
  msgstr "Volg een Rondleiding"
3452
 
3453
+ #: includes/ui-js-config.php:96
3454
  msgid "Append New Layout"
3455
  msgstr "Nieuwe Layout toevoegen"
3456
 
3457
+ #: includes/ui-js-config.php:97
3458
  msgid "Replace Existing Layout"
3459
  msgstr "Vervang Bestaande Layout"
3460
 
3461
+ #: includes/ui-js-config.php:98
3462
  msgid "Template Saved!"
3463
  msgstr "Template Opgeslagen!"
3464
 
3465
+ #: includes/ui-js-config.php:99 modules/post-slider/post-slider.php:464
3466
  msgid "Thumbnail"
3467
  msgstr "Miniatuur"
3468
 
3469
+ #: includes/ui-js-config.php:100
3470
  msgid "Next"
3471
  msgstr "Volgende"
3472
 
3473
+ #: includes/ui-js-config.php:101 modules/pricing-table/pricing-table.php:197
3474
  msgid "Get Started"
3475
  msgstr "Starten"
3476
 
3477
+ #: includes/ui-js-config.php:102
3478
  msgid "Choose a Template"
3479
  msgstr "Kies een Template"
3480
 
3481
+ #: includes/ui-js-config.php:103
3482
  msgid ""
3483
  "Get started by choosing a layout template to customize, or build a page from "
3484
  "scratch by selecting the blank layout template."
3486
  "Ga aan de slag door een layout template te kiezen om aan te passen, of bouw "
3487
  "een pagina uit het niets door de lege layout template te selecteren."
3488
 
3489
+ #: includes/ui-js-config.php:104
3490
  msgid "Add Rows"
3491
  msgstr "Rijen Toevoegen"
3492
 
3493
+ #: includes/ui-js-config.php:105
3494
  msgid ""
3495
  "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
3496
  "and dropping row layouts onto the page."
3498
  "Voeg rijen met meerder kolommen toe, pas afstand aan, voeg achtergronden toe "
3499
  "en meer door rij-layouts te slepen naar de pagina."
3500
 
3501
+ #: includes/ui-js-config.php:107
3502
  msgid ""
3503
  "Add new content by dragging and dropping modules or widgets into your row "
3504
  "layouts or to create a new row layout."
3506
  "Voeg nieuwe inhoud toe door modules of widgets in je bestaande rij-layouts "
3507
  "te slepen, of door een nieuwe rij-layout te maken."
3508
 
3509
+ #: includes/ui-js-config.php:108
3510
  msgid "Edit Content"
3511
  msgstr "Inhoud Bewerken"
3512
 
3513
+ #: includes/ui-js-config.php:109
3514
  msgid ""
3515
  "Move your mouse over rows, columns or modules to edit and interact with them."
3516
  msgstr ""
3517
  "Verplaats je muis over de rijen, kolommen of modules om ze te bewerken en in "
3518
  "te stellen."
3519
 
3520
+ #: includes/ui-js-config.php:110
3521
  msgid ""
3522
  "Use the action buttons to perform actions such as moving, editing, "
3523
  "duplicating or deleting rows, columns and modules."
3524
  msgstr ""
3525
+ "Gebruik de actie knop om rijen, kolommen of modules te verplaatsen, "
3526
  "bewerken, kopiëren of verwijderen."
3527
 
3528
+ #: includes/ui-js-config.php:111
3529
  msgid "Add More Content"
3530
  msgstr "Meer Inhoud Toevoegen"
3531
 
3532
+ #: includes/ui-js-config.php:112
3533
  msgid ""
3534
  "Use the Add Content button to open the content panel and add new row "
3535
  "layouts, modules or widgets."
3537
  "Gebruik de knop Inhoud Toevoegen om het inhoud paneel te openen en voeg "
3538
  "nieuwe rij-layouts, modules of widgets toe."
3539
 
3540
+ #: includes/ui-js-config.php:113
3541
  msgid "Change Templates"
3542
  msgstr "Templates Wijzigen"
3543
 
3544
+ #: includes/ui-js-config.php:114
3545
  msgid ""
3546
  "Use the Templates button to pick a new template or append one to your "
3547
  "layout. Appending will insert a new template at the end of your existing "
3548
  "page content."
3549
  msgstr ""
3550
+ "Gebruik de Templates knop om een nieuwe template te selecteren of voeg een "
3551
  "template toe aan je eigen layout. Wanneer je toevoegt zal de nieuwe template "
3552
  "achter je bestaande inhoud geplaatst worden."
3553
 
3554
+ #: includes/ui-js-config.php:115
3555
  msgid "Helpful Tools"
3556
  msgstr "Handige Tools"
3557
 
3558
+ #: includes/ui-js-config.php:116
3559
  msgid ""
3560
+ "The Tools button lets you save a template, duplicate a layout, edit the "
3561
+ "settings for a layout or edit the global settings."
3562
  msgstr ""
3563
+ "Met de Gereedschappen knop kan je templates opslaan, instellingen bewerken "
3564
+ "voor een layout of de globale instellingen wijzigen."
3565
 
3566
+ #: includes/ui-js-config.php:117
3567
  msgid "Publish Your Changes"
3568
  msgstr "Wijzigingen Publiceren"
3569
 
3570
+ #: includes/ui-js-config.php:118
3571
  msgid ""
3572
  "Once you're finished, click the Done button to publish your changes, save a "
3573
  "draft or revert back to the last published state."
3576
  "publiceren, een concept op te slaan of terug te keren naar de laatst "
3577
  "gepubliceerde staat."
3578
 
3579
+ #: includes/ui-js-config.php:119
3580
  msgid "Let's Get Building!"
3581
  msgstr "Laten We Bouwen!"
3582
 
3583
+ #: includes/ui-js-config.php:120
3584
  msgid ""
3585
  "Now that you know the basics, you're ready to start building! If at any time "
3586
  "you need help, click the help icon in the upper right corner to access the "
3590
  "moment hulp nodig hebt, klik dan op het Help-pictogram in de "
3591
  "rechterbovenhoek om het helpmenu te openen. Veel plezier met bouwen!"
3592
 
3593
+ #: includes/ui-js-config.php:121
3594
  msgid ""
3595
  "The settings you are currently editing will not be saved if you navigate "
3596
  "away from this page."
3598
  "De instellingen die je momenteel bewerkt worden niet opgeslagen als je van "
3599
  "deze pagina weg navigeert."
3600
 
3601
+ #: includes/ui-js-config.php:122
3602
  msgid "View the Knowledge Base"
3603
  msgstr "Bekijk Kennisbank"
3604
 
3605
+ #: includes/ui-js-config.php:123
3606
  msgid "Visit the Forums"
3607
  msgstr "Naar het forum"
3608
 
3609
+ #: includes/ui-js-config.php:124
3610
  msgid "Watch the Video"
3611
  msgstr "Bekijk de Video"
3612
 
3613
+ #: includes/ui-js-config.php:125 includes/ui-js-templates.php:150
3614
+ msgid ""
3615
+ "Welcome! It looks like this might be your first time using the builder. "
3616
+ "Would you like to take a tour?"
3617
+ msgstr ""
3618
+ "Welkom! Het lijkt erop dat dit zou de eerste keer is dat je gaat bouwen met "
3619
+ "de builder. Wil je misschien een rondleiding?"
3620
 
3621
+ #: includes/ui-js-config.php:126 includes/ui-js-templates.php:152
3622
+ msgid "Yes Please!"
3623
+ msgstr "Ja Graag!"
3624
+
3625
+ #: includes/ui-js-templates.php:7 includes/ui-js-templates.php:77
3626
  msgid "Locked"
3627
  msgstr "Vergrendeld"
3628
 
3629
+ #: includes/ui-js-templates.php:31 includes/ui-js-templates.php:86
3630
+ msgid "Edit Column"
3631
+ msgstr "Kolom bewerken"
3632
+
3633
+ #: includes/ui-js-templates.php:35 includes/ui-js-templates.php:91
3634
+ msgid "Insert Column Before"
3635
+ msgstr "Kolom hiervoor invoegen"
3636
+
3637
+ #: includes/ui-js-templates.php:36 includes/ui-js-templates.php:92
3638
+ msgid "Insert Column After"
3639
+ msgstr "Kolom hierna invoegen"
3640
+
3641
+ #: includes/ui-js-templates.php:39 includes/ui-js-templates.php:95
3642
+ msgid "Reset Column Widths"
3643
+ msgstr "Reset kolom breedte"
3644
+
3645
+ #: includes/ui-js-templates.php:82
3646
  msgid "Settings"
3647
  msgstr "Instellingen"
3648
 
3649
+ #: includes/ui-js-templates.php:89
3650
+ msgid "Delete Column"
3651
+ msgstr "Verwijder kolom"
 
 
 
 
3652
 
3653
+ #: includes/ui-js-templates.php:151
3654
  msgid "No Thanks"
3655
  msgstr "Nee, bedankt"
3656
 
3657
+ #: includes/ui-js-templates.php:159
 
 
 
 
3658
  msgid "Getting Started Video"
3659
  msgstr "Aan de slag Video"
3660
 
3717
  msgstr "Linker &amp; Rechter Zijbalk"
3718
 
3719
  # @ fl-builder
3720
+ #: includes/updater/classes/class-fl-updater.php:294
3721
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3722
  msgstr "<strong>UPDATE NIET BESCHIKBAAR!</strong>"
3723
 
3724
  # @ fl-builder
3725
+ #: includes/updater/classes/class-fl-updater.php:296
3726
  msgid "Please subscribe to enable automatic updates for this plugin."
3727
  msgstr ""
3728
  "Gelieve te abonneren om de automatische updates op deze plug-in te schakelen."
3729
 
3730
  # @ fl-builder
3731
+ #: includes/updater/classes/class-fl-updater.php:300
3732
  #: includes/updater/includes/form.php:6
3733
  msgid "Subscribe Now"
3734
  msgstr "Nu Abonneren"
3756
  msgid "Not Active!"
3757
  msgstr "Niet Actief!"
3758
 
 
3759
  #: includes/updater/includes/form.php:22
3760
+ msgid "License key saved!"
3761
+ msgstr "Licentie sleutel opgeslagen!"
3762
 
3763
  #: includes/updater/includes/form.php:27
3764
  #, php-format
3781
  "Templates</strong> kan worden hergebruikt."
3782
 
3783
  # @ fl-builder
3784
+ #: modules/accordion/accordion.php:14 modules/menu/menu.php:97
3785
  msgid "Accordion"
3786
  msgstr "Accordion"
3787
 
3791
  msgstr "Toon een opvouwbare accordeon van items."
3792
 
3793
  # @ fl-builder
3794
+ #: modules/accordion/accordion.php:29 modules/tabs/tabs.php:29
3795
  msgid "Items"
3796
  msgstr "Items"
3797
 
3798
  # @ fl-builder
3799
+ #: modules/accordion/accordion.php:36 modules/tabs/tabs.php:36
3800
  msgid "Item"
3801
  msgstr "Item"
3802
 
3803
  # @ fl-builder
3804
+ #: modules/accordion/accordion.php:53 modules/tabs/tabs.php:62
3805
  msgid "Border Color"
3806
  msgstr "Rand kleur"
3807
 
3808
  # @ fl-builder
3809
+ #: modules/accordion/accordion.php:63
3810
  msgid "Label Size"
3811
  msgstr "Label Afmetingen"
3812
 
3813
  # @ fl-builder
3814
+ #: modules/accordion/accordion.php:66
3815
  msgctxt "Label size."
3816
  msgid "Small"
3817
  msgstr "Klein"
3818
 
3819
  # @ fl-builder
3820
+ #: modules/accordion/accordion.php:67
3821
  msgctxt "Label size."
3822
  msgid "Medium"
3823
  msgstr "Medium"
3824
 
3825
  # @ fl-builder
3826
+ #: modules/accordion/accordion.php:68
3827
  msgctxt "Label size."
3828
  msgid "Large"
3829
  msgstr "Groot"
3830
 
3831
  # @ fl-builder
3832
+ #: modules/accordion/accordion.php:76
3833
  msgid "Item Spacing"
3834
  msgstr "Item Afstand"
3835
 
3836
  # @ fl-builder
3837
+ #: modules/accordion/accordion.php:87
3838
  msgid "Collapse Inactive"
3839
  msgstr "Inactief oprollen"
3840
 
3841
  # @ fl-builder
3842
+ #: modules/accordion/accordion.php:93
3843
  msgid ""
3844
  "Choosing yes will keep only one item open at a time. Choosing no will allow "
3845
  "multiple items to be open at the same time."
3848
  "dat meerdere items gelijktijdig open staan."
3849
 
3850
  # @ fl-builder
3851
+ #: modules/accordion/accordion.php:108 modules/tabs/tabs.php:75
3852
  msgid "Add Item"
3853
  msgstr "Item Toevoegen"
3854
 
3855
  # @ fl-builder
3856
+ #: modules/accordion/accordion.php:118 modules/tabs/tabs.php:85
3857
  msgid "Label"
3858
  msgstr "Label"
3859
 
3860
  # @ fl-builder
3861
+ #: modules/accordion/accordion.php:123
3862
+ #: modules/post-carousel/post-carousel.php:373
3863
+ #: modules/post-carousel/post-carousel.php:377
3864
+ #: modules/post-carousel/post-carousel.php:449
3865
+ #: modules/post-grid/post-grid.php:207 modules/post-grid/post-grid.php:211
3866
+ #: modules/post-grid/post-grid.php:339 modules/post-slider/post-slider.php:548
3867
  #: modules/post-slider/post-slider.php:552
3868
+ #: modules/post-slider/post-slider.php:759 modules/tabs/tabs.php:90
3869
  msgid "Content"
3870
  msgstr "Inhoud"
3871
 
3872
+ #: modules/audio/audio.php:19 modules/audio/audio.php:100
3873
+ msgid "Audio"
3874
+ msgstr "Audio"
3875
+
3876
+ #: modules/audio/audio.php:20
3877
+ msgid "Render a WordPress audio shortcode."
3878
+ msgstr "Toont een audio shortcode."
3879
+
3880
+ #: modules/audio/audio.php:83
3881
+ msgid "Audio Type"
3882
+ msgstr "Audio soort"
3883
+
3884
+ # @ fl-builder
3885
+ #: modules/audio/audio.php:87 modules/audio/audio.php:112
3886
+ #: modules/button/button.php:91 modules/button/button.php:95
3887
+ #: modules/callout/callout.php:447 modules/callout/callout.php:451
3888
+ #: modules/content-slider/content-slider.php:600
3889
+ #: modules/content-slider/content-slider.php:604
3890
+ #: modules/content-slider/content-slider.php:627 modules/cta/cta.php:251
3891
+ #: modules/heading/heading.php:44 modules/heading/heading.php:48
3892
+ #: modules/icon-group/icon-group.php:140 modules/icon/icon.php:44
3893
+ #: modules/slideshow/slideshow.php:352
3894
+ msgid "Link"
3895
+ msgstr "Link"
3896
+
3897
  # @ fl-builder
3898
+ #: modules/audio/audio.php:120 modules/content-slider/content-slider.php:233
3899
+ #: modules/post-carousel/post-carousel.php:137
3900
+ #: modules/post-slider/post-slider.php:354 modules/slideshow/slideshow.php:382
3901
+ #: modules/testimonials/testimonials.php:83 modules/video/video.php:123
3902
+ msgid "Auto Play"
3903
+ msgstr "Autostart"
3904
+
3905
+ # @ fl-builder
3906
+ #: modules/audio/audio.php:132 modules/post-carousel/post-carousel.php:153
3907
+ #: modules/post-slider/post-slider.php:379 modules/video/video.php:135
3908
+ msgid "Loop"
3909
+ msgstr "Herhaal"
3910
+
3911
+ #: modules/audio/audio.php:151 modules/menu/menu.php:265
3912
+ msgid "Light"
3913
+ msgstr "Licht"
3914
+
3915
+ #: modules/audio/audio.php:152
3916
+ msgid "Dark"
3917
+ msgstr "Donker"
3918
+
3919
+ #: modules/audio/audio.php:157
3920
+ msgid "Show Playlist"
3921
+ msgstr "Playlist tonen"
3922
+
3923
+ #: modules/audio/audio.php:171
3924
+ msgid "Show Track Numbers"
3925
+ msgstr "Track nummers tonen"
3926
+
3927
+ #: modules/audio/audio.php:183
3928
+ msgid "Show Thumbnail"
3929
+ msgstr "Mininatuur tonen"
3930
+
3931
+ #: modules/audio/audio.php:192
3932
+ msgid "Show Artist Name"
3933
+ msgstr "Artiest naam tonen"
3934
+
3935
+ # @ fl-builder
3936
+ #: modules/button/button.php:14 modules/callout/callout.php:481
3937
+ #: modules/content-slider/content-slider.php:628 modules/cta/cta.php:216
3938
+ #: modules/pricing-table/pricing-table.php:189
3939
+ #: modules/subscribe-form/subscribe-form.php:172
3940
  msgid "Button"
3941
+ msgstr "Knop"
3942
 
3943
  # @ fl-builder
3944
  #: modules/button/button.php:15
3946
  msgstr "Een eenvoudige Call-to-Action knop."
3947
 
3948
  # @ fl-builder
3949
+ #: modules/button/button.php:68 modules/cta/cta.php:224
3950
  msgid "Click Here"
3951
  msgstr "Klik Hier"
3952
 
3953
  # @ fl-builder
3954
+ #: modules/button/button.php:76 modules/callout/callout.php:319
3955
+ #: modules/callout/callout.php:367 modules/callout/callout.php:371
3956
+ #: modules/cta/cta.php:232 modules/icon-group/icon-group.php:35
3957
+ #: modules/icon-group/icon-group.php:136 modules/icon/icon.php:14
3958
+ #: modules/icon/icon.php:35
3959
  msgid "Icon"
3960
  msgstr "Icoon"
3961
 
3962
+ #: modules/button/button.php:81 modules/cta/cta.php:237
3963
+ #: modules/subscribe-form/subscribe-form.php:189
3964
  msgid "Icon Position"
3965
  msgstr "Icoon Positie"
3966
 
3967
+ #: modules/button/button.php:84 modules/callout/callout.php:509
3968
+ #: modules/content-slider/content-slider.php:655 modules/cta/cta.php:240
3969
+ #: modules/pricing-table/pricing-table.php:225
3970
+ #: modules/subscribe-form/subscribe-form.php:192
3971
  msgid "Before Text"
3972
  msgstr "Vóór tekst"
3973
 
3974
+ #: modules/button/button.php:85 modules/callout/callout.php:510
3975
+ #: modules/content-slider/content-slider.php:656 modules/cta/cta.php:241
3976
+ #: modules/pricing-table/pricing-table.php:226
3977
+ #: modules/subscribe-form/subscribe-form.php:193
3978
  msgid "After Text"
3979
  msgstr "Na tekst"
3980
 
3981
  # @ fl-builder
3982
+ #: modules/button/button.php:96
 
 
 
 
 
 
 
 
 
 
 
 
3983
  msgid "http://www.example.com"
3984
  msgstr "http://www.voorbeeld.com/"
3985
 
3986
  # @ fl-builder
3987
+ #: modules/button/button.php:103 modules/callout/callout.php:459
3988
+ #: modules/content-slider/content-slider.php:609 modules/cta/cta.php:258
3989
+ #: modules/heading/heading.php:55 modules/icon/icon.php:51
3990
+ #: modules/photo/photo.php:532 modules/pricing-table/pricing-table.php:205
3991
  msgid "Link Target"
3992
  msgstr "Link Doel"
3993
 
3994
  # @ fl-builder
3995
+ #: modules/button/button.php:106 modules/callout/callout.php:462
3996
+ #: modules/content-slider/content-slider.php:612 modules/cta/cta.php:261
3997
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
3998
+ #: modules/photo/photo.php:535 modules/pricing-table/pricing-table.php:208
3999
  msgid "Same Window"
4000
  msgstr "Zelfde Venster"
4001
 
4002
  # @ fl-builder
4003
+ #: modules/button/button.php:107 modules/callout/callout.php:463
4004
+ #: modules/content-slider/content-slider.php:613 modules/cta/cta.php:262
4005
+ #: modules/heading/heading.php:59 modules/icon/icon.php:55
4006
+ #: modules/photo/photo.php:536 modules/pricing-table/pricing-table.php:209
4007
  msgid "New Window"
4008
  msgstr "Nieuw Venster"
4009
 
4010
  # @ fl-builder
4011
+ #: modules/button/button.php:131 modules/callout/callout.php:411
4012
+ #: modules/callout/callout.php:526
4013
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:281
4014
+ #: modules/icon-group/icon-group.php:70 modules/icon/icon.php:101
4015
+ #: modules/pricing-table/pricing-table.php:242
4016
+ #: modules/subscribe-form/subscribe-form.php:209
4017
  msgid "Background Hover Color"
4018
  msgstr "Achtergrond-hover Kleur"
4019
 
4020
  # @ fl-builder
4021
+ #: modules/button/button.php:146 modules/callout/callout.php:541
4022
+ #: modules/content-slider/content-slider.php:683 modules/cta/cta.php:296
4023
+ #: modules/pricing-table/pricing-table.php:254
4024
+ #: modules/subscribe-form/subscribe-form.php:224
4025
  msgid "Text Hover Color"
4026
  msgstr "Tekst-hover kleur"
4027
 
4028
  # @ fl-builder
4029
+ #: modules/button/button.php:163 modules/callout/callout.php:558
4030
+ #: modules/content-slider/content-slider.php:696 modules/cta/cta.php:313
4031
+ #: modules/pricing-table/pricing-table.php:268
4032
+ #: modules/subscribe-form/subscribe-form.php:241
4033
  msgid "Flat"
4034
  msgstr "Plat"
4035
 
4036
  # @ fl-builder
4037
+ #: modules/button/button.php:164 modules/callout/callout.php:419
4038
+ #: modules/callout/callout.php:559
4039
+ #: modules/content-slider/content-slider.php:697 modules/cta/cta.php:314
4040
+ #: modules/icon-group/icon-group.php:78 modules/icon/icon.php:109
4041
+ #: modules/pricing-table/pricing-table.php:269
4042
+ #: modules/subscribe-form/subscribe-form.php:242
4043
  msgid "Gradient"
4044
  msgstr "Verlopend"
4045
 
4046
  # @ fl-builder
4047
+ #: modules/button/button.php:165 modules/callout/callout.php:560
4048
+ #: modules/content-slider/content-slider.php:698 modules/cta/cta.php:315
4049
+ #: modules/pricing-table/pricing-table.php:270
4050
+ #: modules/subscribe-form/subscribe-form.php:243
4051
  msgid "Transparent"
4052
  msgstr "Transparant"
4053
 
4054
  # @ fl-builder
4055
+ #: modules/button/button.php:175 modules/callout/callout.php:570
4056
+ #: modules/content-slider/content-slider.php:708 modules/cta/cta.php:325
4057
+ #: modules/pricing-table/pricing-table.php:98
4058
+ #: modules/pricing-table/pricing-table.php:280
4059
+ #: modules/subscribe-form/subscribe-form.php:253
4060
  msgid "Border Size"
4061
  msgstr "Rand Breedte"
4062
 
4063
  # @ fl-builder
4064
+ #: modules/button/button.php:184 modules/callout/callout.php:579
4065
+ #: modules/content-slider/content-slider.php:717 modules/cta/cta.php:205
4066
+ #: modules/cta/cta.php:334 modules/pricing-table/pricing-table.php:289
4067
+ #: modules/subscribe-form/subscribe-form.php:262
4068
  msgid "Background Opacity"
4069
  msgstr "Achtergrond Dichtheid"
4070
 
4071
  # @ fl-builder
4072
+ #: modules/button/button.php:194 modules/callout/callout.php:246
4073
+ #: modules/cta/cta.php:106 modules/heading/heading.php:83
4074
+ #: modules/icon-group/icon-group.php:88 modules/icon/icon.php:119
4075
+ #: modules/subscribe-form/subscribe-form.php:106
4076
  msgid "Structure"
4077
  msgstr "Structuur"
4078
 
4079
  # @ fl-builder
4080
+ #: modules/button/button.php:201 modules/callout/callout.php:596
4081
+ #: modules/pricing-table/pricing-table.php:306
4082
  msgctxt "Width."
4083
  msgid "Auto"
4084
  msgstr "Auto"
4085
 
4086
  # @ fl-builder
4087
+ #: modules/button/button.php:217
4088
  msgid "Custom Width"
4089
  msgstr "Aangepaste Breedte"
4090
 
4091
  # @ fl-builder
4092
+ #: modules/button/button.php:225 modules/cta/cta.php:124
4093
+ #: modules/heading/heading.php:87 modules/heading/heading.php:154
4094
+ #: modules/icon-group/icon-group.php:108 modules/icon/icon.php:131
4095
+ #: modules/photo/photo.php:468 modules/pricing-table/pricing-table.php:312
4096
+ #: modules/social-buttons/social-buttons.php:98
4097
  msgid "Alignment"
4098
  msgstr "Uitlijning"
4099
 
4100
  # @ fl-builder
4101
+ #: modules/button/button.php:235 modules/callout/callout.php:602
4102
+ #: modules/content-slider/content-slider.php:731 modules/cta/cta.php:348
4103
+ #: modules/heading/heading.php:127 modules/heading/heading.php:184
4104
+ #: modules/pricing-table/pricing-table.php:325
4105
+ #: modules/subscribe-form/subscribe-form.php:276
4106
  msgid "Font Size"
4107
  msgstr "Tekengrootte"
4108
 
4109
  # @ fl-builder
4110
+ #: modules/button/button.php:251 modules/callout/callout.php:618
4111
+ #: modules/cta/cta.php:364 modules/pricing-table/pricing-table.php:341
4112
+ #: modules/subscribe-form/subscribe-form.php:292
4113
  msgid "Round Corners"
4114
  msgstr "Afronden Hoeken"
4115
 
4124
  msgstr "Een kop en tekstfragment met een optionele link, icoon en afbeelding."
4125
 
4126
  # @ fl-builder
4127
+ #: modules/callout/callout.php:218
4128
+ #: modules/content-slider/content-slider.php:440
4129
+ #: modules/content-slider/content-slider.php:455 modules/cta/cta.php:76
4130
+ #: modules/heading/heading.php:14 modules/heading/heading.php:34
4131
  #: modules/post-slider/post-slider.php:582
4132
+ #: modules/testimonials/testimonials.php:57
4133
+ #: modules/testimonials/testimonials.php:62
4134
  msgid "Heading"
4135
  msgstr "Kopregel"
4136
 
4137
  # @ fl-builder
4138
+ #: modules/callout/callout.php:250
4139
  msgid "Overall Alignment"
4140
  msgstr "Algemene Uitlijning"
4141
 
4142
  # @ fl-builder
4143
+ #: modules/callout/callout.php:257
4144
  msgid "The alignment that will apply to all elements within the callout."
4145
  msgstr ""
4146
  "De uitlijning die zal gelden voor alle elementen binnen het bijschrift."
4147
 
4148
  # @ fl-builder
4149
+ #: modules/callout/callout.php:265 modules/cta/cta.php:149
4150
  msgid "Heading Structure"
4151
  msgstr "Kopregel Structuur"
4152
 
4153
  # @ fl-builder
4154
+ #: modules/callout/callout.php:269
4155
+ #: modules/content-slider/content-slider.php:459 modules/cta/cta.php:153
4156
  #: modules/post-slider/post-slider.php:586
4157
  msgid "Heading Tag"
4158
  msgstr "Kopregel Tag"
4159
 
4160
  # @ fl-builder
4161
+ #: modules/callout/callout.php:282
4162
+ #: modules/content-slider/content-slider.php:472
4163
+ #: modules/content-slider/content-slider.php:486 modules/cta/cta.php:166
4164
  #: modules/post-slider/post-slider.php:599
4165
  #: modules/post-slider/post-slider.php:613
4166
+ #: modules/testimonials/testimonials.php:70
4167
  msgid "Heading Size"
4168
  msgstr "Kopregel Grootte"
4169
 
4170
  # @ fl-builder
4171
+ #: modules/callout/callout.php:296 modules/cta/cta.php:180
4172
  msgid "Heading Custom Size"
4173
  msgstr "Kopregel Aangepaste Grootte"
4174
 
4175
  # @ fl-builder
4176
+ #: modules/callout/callout.php:307 modules/post-carousel/post-carousel.php:256
4177
+ #: modules/post-grid/post-grid.php:125 modules/post-slider/post-slider.php:460
4178
+ msgid "Image"
4179
+ msgstr "Afbeelding"
4180
+
4181
+ # @ fl-builder
4182
+ #: modules/callout/callout.php:314
4183
  msgid "Image Type"
4184
  msgstr "Afbeelding Type"
4185
 
4186
  # @ fl-builder
4187
+ #: modules/callout/callout.php:317
4188
  msgctxt "Image type."
4189
  msgid "None"
4190
  msgstr "Geen"
4191
 
4192
  # @ fl-builder
4193
+ #: modules/callout/callout.php:342 modules/photo/photo.php:455
4194
+ #: modules/post-carousel/post-carousel.php:275
4195
+ #: modules/post-slider/post-slider.php:482 modules/slideshow/slideshow.php:321
4196
  msgid "Crop"
4197
  msgstr "Pas aan"
4198
 
4199
+ #: modules/callout/callout.php:345 modules/photo/photo.php:458
4200
  msgctxt "Photo Crop."
4201
  msgid "None"
4202
  msgstr "Niet"
4203
 
4204
  # @ fl-builder
4205
+ #: modules/callout/callout.php:346 modules/photo/photo.php:459
4206
+ #: modules/post-carousel/post-carousel.php:278
4207
  #: modules/post-slider/post-slider.php:485
4208
  msgid "Landscape"
4209
  msgstr "Landschap"
4210
 
4211
  # @ fl-builder
4212
+ #: modules/callout/callout.php:347 modules/photo/photo.php:460
4213
+ #: modules/post-carousel/post-carousel.php:279
4214
  #: modules/post-slider/post-slider.php:486
4215
  msgid "Panorama"
4216
  msgstr "Panorama"
4217
 
4218
  # @ fl-builder
4219
+ #: modules/callout/callout.php:348 modules/photo/photo.php:461
4220
+ #: modules/post-carousel/post-carousel.php:280
4221
  #: modules/post-slider/post-slider.php:487
4222
  msgid "Portrait"
4223
  msgstr "Portret"
4224
 
4225
  # @ fl-builder
4226
+ #: modules/callout/callout.php:349 modules/photo/photo.php:462
4227
+ #: modules/post-carousel/post-carousel.php:281
4228
  #: modules/post-slider/post-slider.php:488
4229
  msgid "Square"
4230
  msgstr "Vierkant"
4231
 
4232
  # @ fl-builder
4233
+ #: modules/callout/callout.php:350 modules/photo/photo.php:463
4234
+ #: modules/post-carousel/post-carousel.php:282
4235
  #: modules/post-slider/post-slider.php:489
4236
  msgid "Circle"
4237
  msgstr "Cirkel"
4238
 
4239
  # @ fl-builder
4240
+ #: modules/callout/callout.php:358 modules/callout/callout.php:378
4241
  msgid "Above Heading"
4242
  msgstr "Boven Kopregel"
4243
 
4244
  # @ fl-builder
4245
+ #: modules/callout/callout.php:359 modules/callout/callout.php:379
4246
  msgid "Below Heading"
4247
  msgstr "Onder Kopregel"
4248
 
4249
  # @ fl-builder
4250
+ #: modules/callout/callout.php:360 modules/callout/callout.php:382
4251
  msgid "Left of Text and Heading"
4252
  msgstr "Links van Tekst en Kopregel"
4253
 
4254
  # @ fl-builder
4255
+ #: modules/callout/callout.php:361 modules/callout/callout.php:383
4256
  msgid "Right of Text and Heading"
4257
  msgstr "Rechts van Tekst en Kopregel"
4258
 
4259
  # @ fl-builder
4260
+ #: modules/callout/callout.php:380
4261
  msgid "Left of Heading"
4262
  msgstr "Links van Kopregel"
4263
 
4264
  # @ fl-builder
4265
+ #: modules/callout/callout.php:381
4266
  msgid "Right of Heading"
4267
  msgstr "Rechts van Kopregel"
4268
 
4269
  # @ fl-builder
4270
+ #: modules/callout/callout.php:389
4271
  msgid "Icon Colors"
4272
  msgstr "Icoon Kleuren"
4273
 
4274
  # @ fl-builder
4275
+ #: modules/callout/callout.php:398 modules/icon-group/icon-group.php:57
4276
+ #: modules/icon/icon.php:88
4277
  msgid "Hover Color"
4278
  msgstr "Hover Kleur"
4279
 
4280
  # @ fl-builder
4281
+ #: modules/callout/callout.php:429
4282
  msgid "Icon Structure"
4283
  msgstr "Icoon Structuur"
4284
 
4285
  # @ fl-builder
4286
+ #: modules/callout/callout.php:433 modules/icon-group/icon-group.php:92
4287
+ #: modules/icon/icon.php:123 modules/post-carousel/post-carousel.php:270
4288
+ #: modules/post-grid/post-grid.php:148 modules/post-slider/post-slider.php:477
4289
  msgid "Size"
4290
  msgstr "Grootte"
4291
 
4292
  # @ fl-builder
4293
+ #: modules/callout/callout.php:444
4294
+ #: modules/content-slider/content-slider.php:597
4295
  msgid "Call To Action"
4296
  msgstr "Call-to-Action"
4297
 
4298
  # @ fl-builder
4299
+ #: modules/callout/callout.php:452
4300
  msgid ""
4301
  "The link applies to the entire module. If choosing a call to action type "
4302
  "below, this link will also be used for the text or button."
4303
  msgstr ""
4304
  "De koppeling geldt voor de gehele module. Wanneer je hieronder voor een call-"
4305
+ "to-action actietype kiest, zal deze koppeling ook voor tekst en knop "
4306
  "gebruikt worden."
4307
 
4308
  # @ fl-builder
4309
+ #: modules/callout/callout.php:472
4310
+ #: modules/content-slider/content-slider.php:619 modules/cta/cta.php:14
4311
  msgid "Call to Action"
4312
  msgstr "Call-to-Action"
4313
 
4314
  # @ fl-builder
4315
+ #: modules/callout/callout.php:479
4316
+ #: modules/content-slider/content-slider.php:626
4317
  msgctxt "Call to action."
4318
  msgid "None"
4319
  msgstr "Geen"
4320
 
4321
  # @ fl-builder
4322
+ #: modules/callout/callout.php:497 modules/post-carousel/post-carousel.php:396
4323
+ #: modules/post-grid/post-grid.php:239 modules/post-slider/post-slider.php:571
4324
  msgid "Read More"
4325
  msgstr "Lees verder"
4326
 
4327
  # @ fl-builder
4328
+ #: modules/callout/callout.php:501
4329
+ #: modules/content-slider/content-slider.php:647
4330
+ #: modules/pricing-table/pricing-table.php:217
4331
+ #: modules/subscribe-form/subscribe-form.php:184
4332
  msgid "Button Icon"
4333
+ msgstr "Knop Icoon"
4334
 
4335
+ #: modules/callout/callout.php:506
4336
+ #: modules/content-slider/content-slider.php:652
4337
+ #: modules/pricing-table/pricing-table.php:222
4338
  msgid "Button Icon Position"
4339
+ msgstr "Knop Icoon Positie"
4340
 
4341
  # @ fl-builder
4342
+ #: modules/callout/callout.php:516
4343
+ #: modules/content-slider/content-slider.php:662 modules/cta/cta.php:271
4344
+ #: modules/pricing-table/pricing-table.php:232
4345
+ #: modules/subscribe-form/subscribe-form.php:199
4346
  msgid "Button Colors"
4347
+ msgstr "Knop Kleuren"
4348
 
4349
  # @ fl-builder
4350
+ #: modules/callout/callout.php:551
4351
+ #: modules/content-slider/content-slider.php:689 modules/cta/cta.php:306
4352
+ #: modules/pricing-table/pricing-table.php:261
4353
+ #: modules/subscribe-form/subscribe-form.php:234
4354
  msgid "Button Style"
4355
+ msgstr "Knop Stijl"
4356
 
4357
  # @ fl-builder
4358
+ #: modules/callout/callout.php:589
4359
+ #: modules/content-slider/content-slider.php:727 modules/cta/cta.php:344
4360
+ #: modules/pricing-table/pricing-table.php:299
4361
+ #: modules/subscribe-form/subscribe-form.php:272
4362
  msgid "Button Structure"
4363
+ msgstr "Knop Structuur"
4364
 
4365
  # @ fl-builder
4366
+ #: modules/callout/callout.php:593
4367
  msgid "Button Width"
4368
+ msgstr "Knop Breedte"
4369
 
4370
  # @ fl-builder
4371
  #: modules/contact-form/contact-form.php:14
4378
  msgstr "Een zeer eenvoudig contactformulier."
4379
 
4380
  # @ fl-builder
4381
+ #: modules/contact-form/contact-form.php:34
4382
  msgid "Contact Form Submission"
4383
  msgstr "Contactformulier verzenden"
4384
 
4385
+ #: modules/contact-form/contact-form.php:50
4386
  msgid "Message"
4387
  msgstr "Bericht"
4388
 
4389
  # @ fl-builder
4390
+ #: modules/contact-form/contact-form.php:85
4391
  msgid "Send To Email"
4392
  msgstr "Verzend naar e-mailadres"
4393
 
4394
  # @ fl-builder
4395
+ #: modules/contact-form/contact-form.php:87
4396
  msgid "example@mail.com"
4397
  msgstr "voorbeeld@mail.com"
4398
 
4399
  # @ fl-builder
4400
+ #: modules/contact-form/contact-form.php:88
4401
  msgid "The contact form will send to this e-mail"
4402
  msgstr "Het contactformulier zal naar dit e-mailadres sturen"
4403
 
4404
+ #: modules/contact-form/contact-form.php:95
4405
+ #: modules/subscribe-form/subscribe-form.php:119
4406
  msgid "Name Field"
4407
  msgstr "Naamveld"
4408
 
4409
  # @ fl-builder
4410
+ #: modules/contact-form/contact-form.php:98
4411
+ #: modules/contact-form/contact-form.php:107
4412
+ #: modules/contact-form/contact-form.php:116
4413
+ #: modules/contact-form/contact-form.php:125
4414
+ #: modules/post-carousel/post-carousel.php:259
4415
+ #: modules/post-carousel/post-carousel.php:336
4416
+ #: modules/post-carousel/post-carousel.php:345
4417
+ #: modules/post-carousel/post-carousel.php:380
4418
+ #: modules/post-carousel/post-carousel.php:389
4419
+ #: modules/post-grid/post-grid.php:128 modules/post-grid/post-grid.php:161
4420
+ #: modules/post-grid/post-grid.php:170 modules/post-grid/post-grid.php:200
4421
+ #: modules/post-grid/post-grid.php:214 modules/post-grid/post-grid.php:232
4422
  #: modules/post-slider/post-slider.php:443
4423
  #: modules/post-slider/post-slider.php:502
4424
  #: modules/post-slider/post-slider.php:511
4425
  #: modules/post-slider/post-slider.php:541
4426
  #: modules/post-slider/post-slider.php:555
4427
  #: modules/post-slider/post-slider.php:564
4428
+ #: modules/subscribe-form/subscribe-form.php:122
4429
  msgid "Show"
4430
  msgstr "Toon"
4431
 
4432
  # @ fl-builder
4433
+ #: modules/contact-form/contact-form.php:99
4434
+ #: modules/contact-form/contact-form.php:108
4435
+ #: modules/contact-form/contact-form.php:117
4436
+ #: modules/contact-form/contact-form.php:126
4437
+ #: modules/post-carousel/post-carousel.php:260
4438
+ #: modules/post-carousel/post-carousel.php:337
4439
+ #: modules/post-carousel/post-carousel.php:346
4440
+ #: modules/post-carousel/post-carousel.php:381
4441
+ #: modules/post-carousel/post-carousel.php:390
4442
+ #: modules/post-grid/post-grid.php:129 modules/post-grid/post-grid.php:162
4443
+ #: modules/post-grid/post-grid.php:171 modules/post-grid/post-grid.php:201
4444
+ #: modules/post-grid/post-grid.php:215 modules/post-grid/post-grid.php:233
4445
  #: modules/post-slider/post-slider.php:444
4446
  #: modules/post-slider/post-slider.php:503
4447
  #: modules/post-slider/post-slider.php:512
4448
  #: modules/post-slider/post-slider.php:542
4449
  #: modules/post-slider/post-slider.php:556
4450
  #: modules/post-slider/post-slider.php:565
4451
+ #: modules/subscribe-form/subscribe-form.php:123
4452
  msgid "Hide"
4453
  msgstr "Verberg"
4454
 
4455
+ #: modules/contact-form/contact-form.php:104
4456
  msgid "Subject Field"
4457
  msgstr "Onderwerp Veld"
4458
 
4459
+ #: modules/contact-form/contact-form.php:113
4460
  msgid "Email Field"
4461
  msgstr "E-mail Veld"
4462
 
4463
+ #: modules/contact-form/contact-form.php:122
4464
  msgid "Phone Field"
4465
  msgstr "Telefoonnummer Veld"
4466
 
4467
+ #: modules/contact-form/contact-form.php:132
4468
+ #: modules/subscribe-form/subscribe-form.php:129
4469
+ msgid "Success"
4470
+ msgstr "Succes"
4471
+
4472
+ #: modules/contact-form/contact-form.php:136
4473
+ #: modules/subscribe-form/subscribe-form.php:133
4474
+ msgid "Success Action"
4475
+ msgstr "Succes actie"
4476
+
4477
+ #: modules/contact-form/contact-form.php:138 modules/menu/menu.php:119
4478
+ #: modules/menu/menu.php:247 modules/pricing-table/pricing-table.php:84
4479
+ #: modules/pricing-table/pricing-table.php:113
4480
+ msgid "None"
4481
+ msgstr "Geen"
4482
+
4483
+ #: modules/contact-form/contact-form.php:139
4484
+ #: modules/subscribe-form/subscribe-form.php:135
4485
+ msgid "Show Message"
4486
+ msgstr "Toon Bericht"
4487
+
4488
+ #: modules/contact-form/contact-form.php:140
4489
+ #: modules/subscribe-form/subscribe-form.php:136
4490
+ msgid "Redirect"
4491
+ msgstr "Omleiden"
4492
+
4493
+ #: modules/contact-form/contact-form.php:159
4494
+ msgid "Thanks for your message! We’ll be in touch soon."
4495
+ msgstr "Bedankt voor je bericht!"
4496
+
4497
+ #: modules/contact-form/contact-form.php:166
4498
+ #: modules/subscribe-form/subscribe-form.php:162
4499
+ msgid "Success URL"
4500
+ msgstr "Succes URL"
4501
+
4502
  # @ fl-builder
4503
  #: modules/contact-form/includes/frontend.php:5
4504
  msgctxt "Contact form field label."
4564
  msgstr "Verzenden"
4565
 
4566
  # @ fl-builder
4567
+ #: modules/contact-form/includes/frontend.php:47
4568
  msgid "Message Sent!"
4569
  msgstr "Bericht verzonden!"
4570
 
4571
  # @ fl-builder
4572
+ #: modules/contact-form/includes/frontend.php:50
4573
  msgid "Message failed. Please try again."
4574
  msgstr "Bericht mislukt. Probeer opnieuw."
4575
 
4584
  msgstr "Geeft meerdere dia&#39;s met een optionele kopregel en call-to-action."
4585
 
4586
  # @ fl-builder
4587
+ #: modules/content-slider/content-slider.php:229
 
 
 
 
 
 
 
4588
  msgid ""
4589
  "This setting is the minimum height of the content slider. Content will "
4590
  "expand the height automatically."
4593
  "hoogte automatisch uitbreiden."
4594
 
4595
  # @ fl-builder
4596
+ #: modules/content-slider/content-slider.php:247
 
 
 
 
 
 
 
 
4597
  msgid "Show Play/Pause"
4598
  msgstr "Toon Play/Pause"
4599
 
4600
  # @ fl-builder
4601
+ #: modules/content-slider/content-slider.php:267
4602
+ #: modules/testimonials/testimonials.php:103
4603
  msgctxt "Transition type."
4604
  msgid "Slide"
4605
  msgstr "Schuif"
4606
 
4607
  # @ fl-builder
4608
+ #: modules/content-slider/content-slider.php:281
4609
+ #: modules/post-carousel/post-carousel.php:189
4610
  #: modules/post-slider/post-slider.php:415
4611
+ #: modules/testimonials/testimonials.php:122
4612
  msgid "Show Arrows"
4613
  msgstr "Toon Pijlen:"
4614
 
4615
  # @ fl-builder
4616
+ #: modules/content-slider/content-slider.php:290
4617
+ #: modules/post-carousel/post-carousel.php:180
4618
  #: modules/post-slider/post-slider.php:406
4619
+ #: modules/testimonials/testimonials.php:152
4620
  msgid "Show Dots"
4621
  msgstr "Toon Stippen"
4622
 
4623
  # @ fl-builder
4624
+ #: modules/content-slider/content-slider.php:304
4625
  msgid "Max Content Width"
4626
  msgstr "Max Inhoud Breedte"
4627
 
4628
  # @ fl-builder
4629
+ #: modules/content-slider/content-slider.php:309
4630
  msgid "The max width that the content area will be within your slides."
4631
  msgstr ""
4632
  "De maximale breedte die het inhoud gebied zal worden binnen je dia&#39;s."
4633
 
4634
  # @ fl-builder
4635
+ #: modules/content-slider/content-slider.php:316
4636
  msgid "Slides"
4637
  msgstr "Dia's"
4638
 
4639
  # @ fl-builder
4640
+ #: modules/content-slider/content-slider.php:323
4641
  #: modules/post-slider/post-slider.php:374
4642
  msgid "Slide"
4643
  msgstr "Dia"
4644
 
4645
  # @ fl-builder
4646
+ #: modules/content-slider/content-slider.php:338
4647
  msgid "Slide Settings"
4648
  msgstr "Dia Instellingen"
4649
 
4650
  # @ fl-builder
4651
+ #: modules/content-slider/content-slider.php:348
4652
  msgid "Slide Label"
4653
  msgstr "Dia Label"
4654
 
4655
  # @ fl-builder
4656
+ #: modules/content-slider/content-slider.php:349
4657
  msgid ""
4658
  "A label to identify this slide on the Slides tab of the Content Slider "
4659
  "settings."
4662
  "Content Slider instellingen."
4663
 
4664
  # @ fl-builder
4665
+ #: modules/content-slider/content-slider.php:354
4666
  msgid "Background Layout"
4667
  msgstr "Achtergrond Layout"
4668
 
4669
  # @ fl-builder
4670
+ #: modules/content-slider/content-slider.php:360
4671
  msgid "This setting is for the entire background of your slide."
4672
  msgstr "Deze instelling is voor de volledige achtergrond van je dia."
4673
 
4674
  # @ fl-builder
4675
+ #: modules/content-slider/content-slider.php:363 modules/video/video.php:19
4676
+ msgid "Video"
4677
+ msgstr "Video"
4678
+
4679
+ # @ fl-builder
4680
+ #: modules/content-slider/content-slider.php:395
4681
  msgid "Background Video Code"
4682
  msgstr "Achtergrond Video Code"
4683
 
4684
  # @ fl-builder
4685
+ #: modules/content-slider/content-slider.php:401
4686
  msgid "Content Layout"
4687
  msgstr "Inhoud Layout"
4688
 
4689
  # @ fl-builder
4690
+ #: modules/content-slider/content-slider.php:407
4691
  msgid ""
4692
  "This allows you to add content over or in addition to the background "
4693
  "selection above. The location of the content layout can be selected in the "
4698
  "op het stijl tabblad."
4699
 
4700
  # @ fl-builder
4701
+ #: modules/content-slider/content-slider.php:410
4702
  msgid "Text &amp; Photo"
4703
  msgstr "Tekst &amp Afbeelding"
4704
 
4705
  # @ fl-builder
4706
+ #: modules/content-slider/content-slider.php:411
4707
  msgid "Text &amp; Video"
4708
  msgstr "Tekst &amp; Video"
4709
 
4710
  # @ fl-builder
4711
+ #: modules/content-slider/content-slider.php:412
4712
  msgctxt "Content type."
4713
  msgid "None"
4714
  msgstr "Geen"
4715
 
4716
  # @ fl-builder
4717
+ #: modules/content-slider/content-slider.php:435 modules/video/video.php:147
4718
  msgid "Video Embed Code"
4719
  msgstr "Video Embed Code"
4720
 
4721
  # @ fl-builder
4722
+ #: modules/content-slider/content-slider.php:495
4723
  msgid "Text Position"
4724
  msgstr "Tekst Positie"
4725
 
4726
  # @ fl-builder
4727
+ #: modules/content-slider/content-slider.php:501
4728
  msgid ""
4729
  "The position will move the content layout selections left, right or center "
4730
  "over the background of the slide."
4733
  "over de achtergrond van de dia verplaatsen."
4734
 
4735
  # @ fl-builder
4736
+ #: modules/content-slider/content-slider.php:518
4737
  msgid "Top Margin"
4738
  msgstr "bovenmarge"
4739
 
4740
  # @ fl-builder
4741
+ #: modules/content-slider/content-slider.php:526
4742
  msgid "Bottom Margin"
4743
  msgstr "ondermarge"
4744
 
4745
  # @ fl-builder
4746
+ #: modules/content-slider/content-slider.php:534
4747
  msgid "Left Margin"
4748
  msgstr "Linker Marge"
4749
 
4750
  # @ fl-builder
4751
+ #: modules/content-slider/content-slider.php:542
4752
  msgid "Right Margin"
4753
  msgstr "Rechter Marge"
4754
 
4755
  # @ fl-builder
4756
+ #: modules/content-slider/content-slider.php:551
4757
  msgid "Text Colors"
4758
  msgstr "Tekst Kleuren"
4759
 
4760
  # @ fl-builder
4761
+ #: modules/content-slider/content-slider.php:561
4762
  msgid "Text Shadow"
4763
  msgstr "Tekst Schaduw"
4764
 
4765
  # @ fl-builder
4766
+ #: modules/content-slider/content-slider.php:570
4767
+ #: modules/content-slider/content-slider.php:796
4768
+ #: modules/post-carousel/post-carousel.php:425
4769
+ #: modules/post-grid/post-grid.php:321 modules/post-slider/post-slider.php:721
4770
  msgid "Text Background Color"
4771
  msgstr "Tekst Achtergrond Kleur"
4772
 
4773
  # @ fl-builder
4774
+ #: modules/content-slider/content-slider.php:571
4775
+ #: modules/post-carousel/post-carousel.php:427
4776
+ #: modules/post-grid/post-grid.php:323 modules/post-slider/post-slider.php:722
4777
  msgid ""
4778
  "The color applies to the overlay behind text over the background selections."
4779
  msgstr ""
4781
  "selecties."
4782
 
4783
  # @ fl-builder
4784
+ #: modules/content-slider/content-slider.php:576
4785
+ #: modules/post-carousel/post-carousel.php:437
4786
+ #: modules/post-grid/post-grid.php:328 modules/post-slider/post-slider.php:728
4787
  msgid "Text Background Opacity"
4788
  msgstr "Tekst Achtergrond Dichtheid"
4789
 
4790
  # @ fl-builder
4791
+ #: modules/content-slider/content-slider.php:584
4792
  #: modules/post-slider/post-slider.php:745
4793
  msgid "Text Background Height"
4794
  msgstr "Tekst Achtergrond Hoogte"
4795
 
4796
  # @ fl-builder
4797
+ #: modules/content-slider/content-slider.php:586
4798
  #: modules/post-slider/post-slider.php:747
4799
  msgid ""
4800
  "Auto will allow the overlay to fit however long the text content is. 100% "
4805
  "dia reikt."
4806
 
4807
  # @ fl-builder
4808
+ #: modules/content-slider/content-slider.php:588
4809
  #: modules/post-slider/post-slider.php:749
4810
  msgctxt "Background height."
4811
  msgid "Auto"
4812
  msgstr "Auto"
4813
 
4814
  # @ fl-builder
4815
+ #: modules/content-slider/content-slider.php:605
4816
  msgid ""
4817
  "The link applies to the entire slide. If choosing a call to action type "
4818
  "below, this link will also be used for the text or button."
4819
  msgstr ""
4820
  "De link heeft betrekking op de gehele dia. Indien je kiest voor een "
4821
  "hieronderstaand call-to-action type, zal de link worden gebruikt voor de "
4822
+ "tekst of knop."
4823
 
4824
  # @ fl-builder
4825
+ #: modules/content-slider/content-slider.php:747
4826
  msgid "Border Radius"
4827
  msgstr "Rand radius"
4828
 
4829
  # @ fl-builder
4830
+ #: modules/content-slider/content-slider.php:758
4831
  msgctxt "Module settings form tab. Display on mobile devices."
4832
  msgid "Mobile"
4833
  msgstr "Mobiel"
4834
 
4835
  # @ fl-builder
4836
+ #: modules/content-slider/content-slider.php:761
4837
  msgid "Mobile Photo"
4838
  msgstr "Mobiele Afbeelding"
4839
 
4840
  # @ fl-builder
4841
+ #: modules/content-slider/content-slider.php:767
4842
  msgid ""
4843
  "You can choose a different photo that the slide will change to on mobile "
4844
  "devices or no photo if desired."
4847
  "apparaat of kies ervoor geen afbeelding weer te geven."
4848
 
4849
  # @ fl-builder
4850
+ #: modules/content-slider/content-slider.php:769
4851
  msgid "Use Main Photo"
4852
  msgstr "Selecteer Belangrijkste Afbeelding"
4853
 
4854
  # @ fl-builder
4855
+ #: modules/content-slider/content-slider.php:770
4856
  msgid "Choose Another Photo"
4857
  msgstr "Selecteer Een Andere Afbeelding"
4858
 
4859
  # @ fl-builder
4860
+ #: modules/content-slider/content-slider.php:771
4861
  msgid "No Photo"
4862
  msgstr "Geen Afbeelding"
4863
 
4864
  # @ fl-builder
4865
+ #: modules/content-slider/content-slider.php:786
4866
  msgid "Mobile Text Colors"
4867
  msgstr "Mobiele Tekst Kleuren"
4868
 
4869
+ #: modules/countdown/countdown.php:14
4870
+ msgid "Countdown"
4871
+ msgstr "Terugteller"
4872
+
4873
+ #: modules/countdown/countdown.php:15
4874
+ msgid "Render a Countdown module."
4875
+ msgstr "Laat een terugtel module zien."
4876
+
4877
+ #: modules/countdown/countdown.php:88 modules/countdown/includes/frontend.php:4
4878
+ msgid "Day"
4879
+ msgstr "Dag"
4880
+
4881
+ #: modules/countdown/countdown.php:98
4882
+ msgid "Month"
4883
+ msgstr "Maand"
4884
+
4885
+ #: modules/countdown/countdown.php:108
4886
+ msgid "Year"
4887
+ msgstr "Jaar"
4888
+
4889
+ #: modules/countdown/countdown.php:119 modules/countdown/countdown.php:123
4890
+ msgid "Time"
4891
+ msgstr "Tijd"
4892
+
4893
+ #: modules/countdown/countdown.php:132
4894
+ msgid "Time Zone"
4895
+ msgstr "Tijdzone"
4896
+
4897
+ # @ fl-builder
4898
+ #: modules/countdown/countdown.php:148 modules/cta/cta.php:110
4899
+ #: modules/gallery/gallery.php:228 modules/menu/menu.php:92
4900
+ #: modules/numbers/numbers.php:66 modules/post-carousel/post-carousel.php:118
4901
+ #: modules/post-carousel/post-carousel.php:207
4902
+ #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:433
4903
+ #: modules/subscribe-form/subscribe-form.php:110 modules/tabs/tabs.php:53
4904
+ #: modules/testimonials/testimonials.php:38
4905
+ #: modules/woocommerce/woocommerce.php:58
4906
+ msgid "Layout"
4907
+ msgstr "Weergave"
4908
+
4909
+ # @ fl-builder
4910
+ #: modules/countdown/countdown.php:151 modules/post-grid/post-grid.php:86
4911
+ msgid "Numbers"
4912
+ msgstr "Cijfers"
4913
+
4914
+ #: modules/countdown/countdown.php:152
4915
+ msgid "Numbers + Circles"
4916
+ msgstr "Nummers en Cirkels"
4917
+
4918
+ #: modules/countdown/countdown.php:168
4919
+ msgid "Numbers and Text"
4920
+ msgstr "Nummers en Tekst"
4921
+
4922
+ #: modules/countdown/countdown.php:172 modules/numbers/numbers.php:184
4923
+ msgid "Number Color"
4924
+ msgstr "Nummer kleur"
4925
+
4926
+ #: modules/countdown/countdown.php:192 modules/numbers/numbers.php:194
4927
+ msgid "Number Size"
4928
+ msgstr "Nummer grootte"
4929
+
4930
+ #: modules/countdown/countdown.php:206
4931
+ msgid "Text Size"
4932
+ msgstr "Text grootte"
4933
+
4934
+ #: modules/countdown/countdown.php:220
4935
+ msgid "Horizontal Padding"
4936
+ msgstr "Horizontale padding"
4937
+
4938
+ #: modules/countdown/countdown.php:243
4939
+ msgid "Vertical Padding"
4940
+ msgstr "Verticale padding"
4941
+
4942
+ #: modules/countdown/countdown.php:266
4943
+ msgid "Number Spacing"
4944
+ msgstr "Nummer tussenruimte"
4945
+
4946
+ #: modules/countdown/countdown.php:290 modules/menu/menu.php:323
4947
+ msgid "Backgrounds"
4948
+ msgstr "Achtergronden"
4949
+
4950
+ #: modules/countdown/countdown.php:294
4951
+ msgid "Number Background Color"
4952
+ msgstr "Nummer achtergrond kleur"
4953
+
4954
+ #: modules/countdown/countdown.php:304
4955
+ msgid "Number Background Opacity"
4956
+ msgstr "Nummer achtergrond doorzichtigheid"
4957
+
4958
+ #: modules/countdown/countdown.php:312
4959
+ msgid "Number Border Radius"
4960
+ msgstr "Nummer rand afronding"
4961
+
4962
+ # @ fl-builder
4963
+ #: modules/countdown/countdown.php:327 modules/menu/menu.php:381
4964
+ #: modules/separator/separator.php:14
4965
+ msgid "Separator"
4966
+ msgstr "Scheidingslijn"
4967
+
4968
+ #: modules/countdown/countdown.php:331
4969
+ msgid "Show Time Separators"
4970
+ msgstr "Tijd scheider tonen"
4971
+
4972
+ #: modules/countdown/countdown.php:345
4973
+ msgid "Separator Type"
4974
+ msgstr "Verdeler soort"
4975
+
4976
+ #: modules/countdown/countdown.php:348
4977
+ msgid "Colon"
4978
+ msgstr "Dubbele punt"
4979
+
4980
+ #: modules/countdown/countdown.php:349
4981
+ msgid "Line"
4982
+ msgstr "Lijn"
4983
+
4984
+ #: modules/countdown/countdown.php:359 modules/menu/menu.php:399
4985
+ msgid "Separator Color"
4986
+ msgstr "Scheidingslijn Kleur"
4987
+
4988
+ #: modules/countdown/countdown.php:364
4989
+ msgid "Separator Size"
4990
+ msgstr "Verdeler grootte"
4991
+
4992
+ #: modules/countdown/countdown.php:373
4993
+ msgid "Circle Styles"
4994
+ msgstr "Cirkel stijl"
4995
+
4996
+ #: modules/countdown/countdown.php:377
4997
+ msgid "Circle Size"
4998
+ msgstr "Cirkel grootte"
4999
+
5000
+ #: modules/countdown/countdown.php:411
5001
+ msgid "Circle Stroke Size"
5002
+ msgstr "Cirkel rand breedte"
5003
+
5004
+ #: modules/countdown/countdown.php:425 modules/numbers/numbers.php:251
5005
+ msgid "Circle Foreground Color"
5006
+ msgstr "Cirkel voorgrond kleur"
5007
+
5008
+ #: modules/countdown/countdown.php:436 modules/numbers/numbers.php:262
5009
+ msgid "Circle Background Color"
5010
+ msgstr "Cirkel achtergrond kleur"
5011
+
5012
+ #: modules/countdown/includes/frontend.php:5
5013
+ msgid "Hour"
5014
+ msgstr "Uur"
5015
+
5016
+ #: modules/countdown/includes/frontend.php:6
5017
+ msgid "Minute"
5018
+ msgstr "Minuut"
5019
+
5020
+ #: modules/countdown/includes/frontend.php:7
5021
+ msgid "Second"
5022
+ msgstr "Seconde"
5023
+
5024
  # @ fl-builder
5025
  #: modules/cta/cta.php:15
5026
  msgid "Display a heading, subheading and a button."
5027
+ msgstr "Geef een kopregel, subregel en een knop."
5028
 
5029
  # @ fl-builder
5030
+ #: modules/cta/cta.php:77
5031
  msgid "Ready to find out more?"
5032
  msgstr "Klaar om meer te ontdekken?"
5033
 
5034
  # @ fl-builder
5035
+ #: modules/cta/cta.php:92
5036
  msgid "Drop us a line today for a free quote!"
5037
  msgstr "Bel ons vandaag nog voor een vrijblijvende offerte!"
5038
 
5039
  # @ fl-builder
5040
+ #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:114
 
 
 
 
 
 
 
 
 
 
 
5041
  msgid "Inline"
5042
  msgstr "Inline"
5043
 
5044
  # @ fl-builder
5045
+ #: modules/cta/cta.php:114 modules/subscribe-form/subscribe-form.php:113
5046
  msgid "Stacked"
5047
  msgstr "Gestapeld"
5048
 
5049
  # @ fl-builder
5050
+ #: modules/cta/cta.php:134 modules/icon-group/icon-group.php:100
5051
+ #: modules/pricing-table/pricing-table.php:108
5052
  msgid "Spacing"
5053
  msgstr "Tussenruimte"
5054
 
5055
  # @ fl-builder
5056
+ #: modules/cta/cta.php:247
5057
  msgid "Button Link"
5058
  msgstr "Knop Link"
5059
 
5060
  # @ fl-builder
5061
+ #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:122
5062
  #: modules/post-grid/post-grid.php:55
5063
  msgid "Gallery"
5064
  msgstr "Galerij"
5069
  msgstr "Weergave van meerdere afbeeldingen in een fotogalerie."
5070
 
5071
  # @ fl-builder
5072
+ #: modules/gallery/gallery.php:231
5073
  msgid "Collage"
5074
  msgstr "Collage"
5075
 
5076
  # @ fl-builder
5077
+ #: modules/gallery/gallery.php:232
5078
  msgctxt "Gallery layout: thumbnails."
5079
  msgid "Thumbs"
5080
  msgstr "Miniaturen"
5081
 
5082
  # @ fl-builder
5083
+ #: modules/gallery/gallery.php:268
5084
  msgid "Photo Size"
5085
  msgstr "Afbeelding Formaat"
5086
 
5087
  # @ fl-builder
5088
+ #: modules/gallery/gallery.php:271
5089
  msgctxt "Photo size."
5090
  msgid "Small"
5091
  msgstr "Klein"
5092
 
5093
  # @ fl-builder
5094
+ #: modules/gallery/gallery.php:272
5095
  msgctxt "Photo size."
5096
  msgid "Medium"
5097
  msgstr "Medium"
5098
 
5099
  # @ fl-builder
5100
+ #: modules/gallery/gallery.php:273
5101
  msgctxt "Photo size."
5102
  msgid "Large"
5103
  msgstr "Groot"
5104
 
5105
  # @ fl-builder
5106
+ #: modules/gallery/gallery.php:278
5107
  msgid "Photo Spacing"
5108
  msgstr "Afstand tussen Afbeeldingen"
5109
 
5110
  # @ fl-builder
5111
+ #: modules/gallery/gallery.php:286
5112
  msgid "Show Captions"
5113
  msgstr "Toon Bijschriften"
5114
 
5115
  # @ fl-builder
5116
+ #: modules/gallery/gallery.php:289 modules/photo/photo.php:486
5117
  msgid "Never"
5118
  msgstr "Nooit"
5119
 
5120
  # @ fl-builder
5121
+ #: modules/gallery/gallery.php:290 modules/photo/photo.php:487
5122
  msgid "On Hover"
5123
  msgstr "Tijdens Hover"
5124
 
5125
  # @ fl-builder
5126
+ #: modules/gallery/gallery.php:291 modules/photo/photo.php:488
5127
  msgid "Below Photo"
5128
  msgstr "Onder Afbeelding"
5129
 
5130
  # @ fl-builder
5131
+ #: modules/gallery/gallery.php:293
5132
  msgid ""
5133
  "The caption pulls from whatever text you put in the caption area in the "
5134
  "media manager for each image. The caption is also pulled directly from "
5139
  "wordt ook direct gehaald van SmugMug als je bijschriften in je galerij hebt."
5140
 
5141
  # @ fl-builder
5142
+ #: modules/gallery/gallery.php:297 modules/slideshow/slideshow.php:344
5143
  msgid "Click Action"
5144
  msgstr "Muisklik Actie"
5145
 
5146
  # @ fl-builder
5147
+ #: modules/gallery/gallery.php:300
5148
  msgctxt "Click action."
5149
  msgid "None"
5150
  msgstr "Geen"
5151
 
5152
  # @ fl-builder
5153
+ #: modules/gallery/gallery.php:301 modules/photo/photo.php:506
5154
  msgid "Lightbox"
5155
  msgstr "Lightbox"
5156
 
5157
  # @ fl-builder
5158
+ #: modules/gallery/gallery.php:302
5159
  msgid "Photo Link"
5160
  msgstr "Afbeelding Link"
5161
 
5165
  msgstr "Een titel/pagina kop weergeven"
5166
 
5167
  # @ fl-builder
5168
+ #: modules/heading/heading.php:102
5169
  msgid "HTML Tag"
5170
  msgstr "HTML Tag"
5171
 
5172
+ #: modules/heading/heading.php:119
5173
+ msgid "Font"
5174
+ msgstr "Lettertype"
5175
+
5176
  # @ fl-builder
5177
+ #: modules/heading/heading.php:141 modules/heading/heading.php:201
5178
  msgid "Custom Font Size"
5179
  msgstr "Aangepaste Tekengrootte"
5180
 
5181
  # @ fl-builder
5182
+ #: modules/heading/heading.php:150
5183
  msgid "Mobile Structure"
5184
  msgstr "Mobiele Structuur"
5185
 
5186
  # @ fl-builder
5187
+ #: modules/heading/heading.php:171
5188
  msgid "Custom Alignment"
5189
  msgstr "Aangepaste Uitlijning"
5190
 
5209
  msgstr "Toon een groep gelinkte Font Awesome iconen."
5210
 
5211
  # @ fl-builder
5212
+ #: modules/icon-group/icon-group.php:126
5213
  msgid "Add Icon"
5214
  msgstr "Icoon Toevoegen"
5215
 
5229
  msgstr "Toon een Google map."
5230
 
5231
  # @ fl-builder
5232
+ #: modules/map/map.php:34
5233
  msgid "Address"
5234
  msgstr "Adres"
5235
 
5236
  # @ fl-builder
5237
+ #: modules/map/map.php:35
5238
  msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
5239
  msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
5240
 
5241
+ #: modules/menu/menu.php:14 modules/menu/menu.php:26 modules/menu/menu.php:64
5242
+ #: modules/menu/menu.php:71
5243
  msgid "Menu"
5244
  msgstr "Menu"
5245
 
5247
  msgid "Renders a WordPress menu."
5248
  msgstr "Maakt een WordPress menu."
5249
 
5250
+ #: modules/menu/menu.php:27
5251
  msgid ""
5252
  "Select a WordPress menu that you created in the admin under Appearance > "
5253
  "Menus."
5255
  "Selecteer een WordPress menu dat u hebt gemaakt in de admin onder "
5256
  "Vormgeving> Menus."
5257
 
5258
+ #: modules/menu/menu.php:44
5259
  msgid "No Menus Found"
5260
  msgstr "Geen menu's gevonden"
5261
 
5262
  # @ fl-builder
5263
+ #: modules/menu/menu.php:95 modules/tabs/tabs.php:56
5264
  msgid "Horizontal"
5265
  msgstr "Horizontaal"
5266
 
5267
  # @ fl-builder
5268
+ #: modules/menu/menu.php:96 modules/tabs/tabs.php:57
5269
  msgid "Vertical"
5270
  msgstr "Vertikaal"
5271
 
5272
+ #: modules/menu/menu.php:98 modules/menu/menu.php:136
5273
  msgid "Expanded"
5274
  msgstr "Uitgevouwen"
5275
 
5276
+ #: modules/menu/menu.php:114
5277
  msgid "Submenu Icon"
5278
  msgstr "Submenu Icoon"
5279
 
5280
+ #: modules/menu/menu.php:117 modules/menu/menu.php:127
5281
  msgid "Arrows"
5282
  msgstr "Pijlen"
5283
 
5284
+ #: modules/menu/menu.php:118 modules/menu/menu.php:128
5285
  msgid "Plus sign"
5286
  msgstr "Plusteken"
5287
 
5288
+ #: modules/menu/menu.php:124
 
 
 
 
5289
  msgid "Submenu Icon click"
5290
  msgstr "Submenu Icoon click"
5291
 
5292
+ #: modules/menu/menu.php:133
5293
  msgid "Mobile Style"
5294
  msgstr "Mobiele stijl"
5295
 
5296
+ #: modules/menu/menu.php:137
5297
  msgid "Hamburger Icon"
5298
  msgstr "Hamburger Icoon"
5299
 
5300
+ #: modules/menu/menu.php:138
5301
+ msgid "Hamburger Icon + Label"
5302
+ msgstr "Hamburger menu met label"
5303
 
5304
+ #: modules/menu/menu.php:139
5305
  msgid "Menu Button"
5306
  msgstr "Menu-knop"
5307
 
5308
+ #: modules/menu/menu.php:152
5309
+ msgid "Mobile Width"
5310
+ msgstr "Mobiele breedte"
5311
+
5312
  #: modules/menu/menu.php:153
5313
+ msgid ""
5314
+ "Choose Full Width if you want the menu to span the width of the screen on "
5315
+ "mobile devices."
5316
+ msgstr ""
5317
+ "Kies volledige breedte als je het menu de volledige breedte wilt laten "
5318
+ "innemen op mobiele apparaten"
5319
+
5320
+ #: modules/menu/menu.php:177
5321
  msgid "Menu Alignment"
5322
  msgstr "Menu Uitlijning"
5323
 
5324
+ #: modules/menu/menu.php:188
5325
  msgid "Submenu Drop Shadow"
5326
  msgstr "Submenu slagschaduw"
5327
 
5328
+ #: modules/menu/menu.php:230
5329
  msgid "Link Size"
5330
  msgstr "Link Grootte"
5331
 
5332
+ #: modules/menu/menu.php:244
5333
  msgid "Link Format"
5334
  msgstr "Link Format"
5335
 
5336
+ #: modules/menu/menu.php:248
5337
  msgid "Uppercase"
5338
  msgstr "Hoofdletters"
5339
 
5340
+ #: modules/menu/menu.php:249
5341
  msgid "Lowercase"
5342
  msgstr "Kleine letters"
5343
 
5344
+ #: modules/menu/menu.php:250
5345
  msgid "Capitalize"
5346
  msgstr "Kapitaliseren"
5347
 
5348
+ #: modules/menu/menu.php:260
5349
  msgid "Link Weight"
5350
  msgstr "Link Gewicht"
5351
 
5352
+ #: modules/menu/menu.php:263
5353
  msgid "Normal"
5354
  msgstr "Normaal"
5355
 
5356
+ #: modules/menu/menu.php:264
5357
  msgid "Bold"
5358
  msgstr "Vet"
5359
 
5360
+ #: modules/menu/menu.php:275
 
 
 
 
5361
  msgid "Horizontal Spacing"
5362
  msgstr "Horizontale afstand"
5363
 
5364
+ #: modules/menu/menu.php:298
5365
  msgid "Vertical Spacing"
5366
  msgstr "Verticale afstand"
5367
 
5368
+ #: modules/menu/menu.php:327
 
 
 
 
5369
  msgid "Menu Background Color"
5370
  msgstr "Menu Achtergrondkleur"
5371
 
5372
+ #: modules/menu/menu.php:337
5373
+ msgid "Menu Background Color (Mobile)"
5374
+ msgstr "Menu achtergrond kleur (mobiel)"
5375
+
5376
+ #: modules/menu/menu.php:342
5377
  msgid "Menu Background Opacity"
5378
  msgstr "Menu Achtergrond Dichtheid"
5379
 
5380
+ #: modules/menu/menu.php:350
5381
  msgid "Submenu Background Color"
5382
  msgstr "Submenu Achtergrondkleur"
5383
 
5384
+ #: modules/menu/menu.php:361
5385
+ msgid "Submenu Background Opacity"
5386
+ msgstr "Submenu achtergrond kleur"
5387
+
5388
+ #: modules/menu/menu.php:370
5389
  msgid "Link Background Hover Color"
5390
  msgstr "Link Achtergrond Hover Kleur"
5391
 
5392
+ #: modules/menu/menu.php:385
 
 
 
 
 
5393
  msgid "Show Separators"
5394
  msgstr "Toon scheidingslijnen"
5395
 
5396
+ #: modules/menu/menu.php:404
 
 
 
 
5397
  msgid "Separator Opacity"
5398
  msgstr "Scheidingsteken Dichtheid"
5399
 
5400
+ #: modules/numbers/numbers.php:14
5401
+ msgid "Number Counter"
5402
+ msgstr "Nummer teller"
5403
+
5404
+ #: modules/numbers/numbers.php:15
5405
+ msgid "Renders an animated number counter."
5406
+ msgstr "Toont een geanimeerde nummer teller."
5407
+
5408
+ #: modules/numbers/numbers.php:69
5409
+ msgid "Only Numbers"
5410
+ msgstr "Alleen nummers"
5411
+
5412
+ #: modules/numbers/numbers.php:70
5413
+ msgid "Circle Counter"
5414
+ msgstr "Cirkel teller"
5415
+
5416
+ #: modules/numbers/numbers.php:71
5417
+ msgid "Bars Counter"
5418
+ msgstr "Balk teller"
5419
+
5420
+ #: modules/numbers/numbers.php:85
5421
+ msgid "Number Type"
5422
+ msgstr "Nummer soort"
5423
+
5424
+ #: modules/numbers/numbers.php:88
5425
+ msgid "Percent"
5426
+ msgstr "Procent"
5427
+
5428
+ #: modules/numbers/numbers.php:89
5429
+ msgid "Standard"
5430
+ msgstr "Standaard"
5431
+
5432
+ #: modules/numbers/numbers.php:99
5433
+ msgid "Number"
5434
+ msgstr "Nummer"
5435
+
5436
+ #: modules/numbers/numbers.php:106
5437
+ msgid "Total"
5438
+ msgstr "Totaal"
5439
+
5440
+ #: modules/numbers/numbers.php:108
5441
+ msgid ""
5442
+ "The total number of units for this counter. For example, if the Number is "
5443
+ "set to 250 and the Total is set to 500, the counter will animate to 50%."
5444
+ msgstr ""
5445
+ "Het totaal aantal voor de teller. Als het nummer bijvoorbeeld op 250 staat "
5446
+ "en het totaal op 500, dan zal de teller animeren tot 50%."
5447
+
5448
+ #: modules/numbers/numbers.php:112
5449
+ msgid "Number Position"
5450
+ msgstr "Nummer positie"
5451
+
5452
+ #: modules/numbers/numbers.php:114
5453
+ msgid "Where to display the number in relation to the bar."
5454
+ msgstr "Waar het nummer in verhouding tot de balk getoond moet worden."
5455
+
5456
+ #: modules/numbers/numbers.php:116
5457
+ msgid "Inside Bar"
5458
+ msgstr "Binnen balk"
5459
+
5460
+ #: modules/numbers/numbers.php:117
5461
+ msgid "Above Bar"
5462
+ msgstr "Boven balk"
5463
+
5464
+ #: modules/numbers/numbers.php:118
5465
+ msgid "Below Bar"
5466
+ msgstr "Onder balk"
5467
+
5468
+ #: modules/numbers/numbers.php:123
5469
+ msgid "Text Before Number"
5470
+ msgstr "Text voor het nummer"
5471
+
5472
+ #: modules/numbers/numbers.php:125
5473
+ msgid "Text to appear above the number. Leave it empty for none."
5474
+ msgstr "Text om te weergeven boven het nummer. Laat leeg voor geen."
5475
+
5476
+ #: modules/numbers/numbers.php:129
5477
+ msgid "Text After Number"
5478
+ msgstr "Text achter het nummer"
5479
+
5480
+ #: modules/numbers/numbers.php:131
5481
+ msgid "Text to appear after the number. Leave it empty for none."
5482
+ msgstr "Text om te weergeven achter het nummer. Laat leeg voor geen."
5483
+
5484
+ #: modules/numbers/numbers.php:135
5485
+ msgid "Number Prefix"
5486
+ msgstr "Nummer voorvoegsel"
5487
+
5488
+ #: modules/numbers/numbers.php:137
5489
+ msgid "For example, if your number is US$ 10, your prefix would be \"US$ \"."
5490
+ msgstr "Als je nummer €10 is, is je voorvoegsel \"€\"."
5491
+
5492
+ #: modules/numbers/numbers.php:141
5493
+ msgid "Number Suffix"
5494
+ msgstr "Nummer achtervoegsel"
5495
+
5496
+ #: modules/numbers/numbers.php:143
5497
+ msgid "For example, if your number is 10%, your prefix would be \"%\"."
5498
+ msgstr "Als je nummer 10% is, is je achtervoegsel \"%\"."
5499
+
5500
+ #: modules/numbers/numbers.php:147
5501
+ msgid "Animation Speed"
5502
+ msgstr "Animatie snelheid"
5503
+
5504
+ #: modules/numbers/numbers.php:151 modules/numbers/numbers.php:160
5505
+ msgid "second(s)"
5506
+ msgstr "Seconde(s)"
5507
+
5508
+ #: modules/numbers/numbers.php:152
5509
+ msgid "Number of seconds to complete the animation."
5510
+ msgstr "Aantal secondes om de animatie in te voltooien"
5511
+
5512
+ #: modules/numbers/numbers.php:156
5513
+ msgid "Animation Delay"
5514
+ msgstr "Animatie vertraging"
5515
+
5516
+ #: modules/numbers/numbers.php:209
5517
+ msgid "Circle Bar Styles"
5518
+ msgstr "Cirkel balk stijl"
5519
+
5520
+ #: modules/numbers/numbers.php:213
5521
+ msgid "Cirle Size"
5522
+ msgstr "Cirkel grootte"
5523
+
5524
+ #: modules/numbers/numbers.php:237
5525
+ msgid "Cirle Stroke Size"
5526
+ msgstr "Cirkel rand"
5527
+
5528
+ #: modules/numbers/numbers.php:274
5529
+ msgid "Bar Styles"
5530
+ msgstr "Balk stijlen"
5531
+
5532
+ #: modules/numbers/numbers.php:278
5533
+ msgid "Bar Foreground Color"
5534
+ msgstr "Balk achtergrond kleur"
5535
+
5536
+ #: modules/numbers/numbers.php:289
5537
+ msgid "Bar Background Color"
5538
+ msgstr "Balk achtergrond kleur"
5539
+
5540
  # @ fl-builder
5541
  #: modules/photo/photo.php:26
5542
  msgid "Upload a photo or display one from the media library."
5543
  msgstr "Upload een afbeelding of toon er een uit je mediabibliotheek."
5544
 
5545
  # @ fl-builder
5546
+ #: modules/photo/photo.php:429
5547
  msgid "Photo Source"
5548
  msgstr "Afbeelding Bron"
5549
 
5550
  # @ fl-builder
5551
+ #: modules/photo/photo.php:433 modules/photo/photo.php:505
5552
  msgid "URL"
5553
  msgstr "URL"
5554
 
5555
  # @ fl-builder
5556
+ #: modules/photo/photo.php:450
5557
  msgid "Photo URL"
5558
  msgstr "Afbeelding URL"
5559
 
5560
  # @ fl-builder
5561
+ #: modules/photo/photo.php:451
5562
  msgid "http://www.example.com/my-photo.jpg"
5563
  msgstr "http://www.voorbeeld.com/mijn-photo.jpg"
5564
 
5565
  # @ fl-builder
5566
+ #: modules/photo/photo.php:479 modules/photo/photo.php:493
5567
  msgid "Caption"
5568
  msgstr "Bijschrift"
5569
 
5570
  # @ fl-builder
5571
+ #: modules/photo/photo.php:483
5572
  msgid "Show Caption"
5573
  msgstr "Toon Bijschrift"
5574
 
5575
  # @ fl-builder
5576
+ #: modules/photo/photo.php:502
5577
  msgid "Link Type"
5578
  msgstr "Link Type"
5579
 
5580
  # @ fl-builder
5581
+ #: modules/photo/photo.php:504
5582
  msgctxt "Link type."
5583
  msgid "None"
5584
  msgstr "Geen"
5585
 
5586
  # @ fl-builder
5587
+ #: modules/photo/photo.php:507
5588
  msgid "Photo File"
5589
  msgstr "Afbeeldingbestand"
5590
 
5591
  # @ fl-builder
5592
+ #: modules/photo/photo.php:518
5593
  msgid ""
5594
  "Link type applies to how the image should be linked on click. You can choose "
5595
  "a specific URL, the individual photo or a separate page with the photo."
5599
  "afbeelding of een aparte pagina met de afbeelding."
5600
 
5601
  # @ fl-builder
5602
+ #: modules/photo/photo.php:525 modules/slideshow/slideshow.php:365
5603
  msgid "Link URL"
5604
  msgstr "Link URL"
5605
 
5622
  msgid "Display a carousel of your WordPress posts."
5623
  msgstr "Een carousel van uw WordPress posten weergeven"
5624
 
5625
+ #: modules/post-carousel/post-carousel.php:111
5626
  #: modules/post-slider/post-slider.php:338
5627
  msgid "Slider"
5628
  msgstr "Slider"
5629
 
5630
  # @ fl-builder
5631
+ #: modules/post-carousel/post-carousel.php:121
5632
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:100
5633
  msgid "Grid"
5634
  msgstr "Raster"
5635
 
5636
+ #: modules/post-carousel/post-carousel.php:169
 
 
 
 
 
 
5637
  #: modules/post-slider/post-slider.php:395
5638
  msgid "Number of Posts"
5639
  msgstr "Aantal berichten"
5640
 
5641
+ #: modules/post-carousel/post-carousel.php:176
5642
  #: modules/post-slider/post-slider.php:402
5643
  msgid "Slider Controls"
5644
  msgstr "Slider Controls"
5645
 
5646
  # @ fl-builder
5647
+ #: modules/post-carousel/post-carousel.php:210
5648
  #: modules/post-grid/post-grid.php:14
5649
  msgid "Posts"
5650
  msgstr "Berichten"
5651
 
5652
+ #: modules/post-carousel/post-carousel.php:214
5653
  msgid "Post Max Width"
5654
  msgstr "Bericht Max Breedte"
5655
 
5656
  # @ fl-builder
5657
+ #: modules/post-carousel/post-carousel.php:222
5658
+ #: modules/post-grid/post-grid.php:112
5659
  msgid "Post Spacing"
5660
  msgstr "Tussenruimte"
5661
 
5662
+ #: modules/post-carousel/post-carousel.php:239
 
 
 
 
5663
  msgid "Post Hover Transition"
5664
  msgstr "Bericht Hover Overgang"
5665
 
5666
+ #: modules/post-carousel/post-carousel.php:243
5667
+ #: modules/post-grid/post-grid.php:257
5668
  msgid "Slide Up"
5669
  msgstr "Schuif Omhoog"
5670
 
5671
+ #: modules/post-carousel/post-carousel.php:244
5672
+ #: modules/post-grid/post-grid.php:258
5673
  msgid "Slide Down"
5674
  msgstr "Schuif Omlaag"
5675
 
5676
+ #: modules/post-carousel/post-carousel.php:245
5677
+ #: modules/post-grid/post-grid.php:259
5678
  msgid "Scale Up"
5679
  msgstr "Vergroot"
5680
 
5681
+ #: modules/post-carousel/post-carousel.php:246
5682
+ #: modules/post-grid/post-grid.php:260
5683
  msgid "Scale Down"
5684
  msgstr "Verklein"
5685
 
5686
  # @ fl-builder
5687
+ #: modules/post-carousel/post-carousel.php:252
5688
+ #: modules/post-grid/post-grid.php:121 modules/post-slider/post-slider.php:456
5689
  msgid "Featured Image"
5690
  msgstr "Uitgelichte Afbeelding"
5691
 
5692
+ #: modules/post-carousel/post-carousel.php:293
5693
+ #: modules/post-grid/post-grid.php:270
5694
  msgid "Use Icon for Posts"
5695
  msgstr "Gebruik pictogram voor berichten"
5696
 
5697
+ #: modules/post-carousel/post-carousel.php:307
5698
+ #: modules/post-grid/post-grid.php:284
5699
  msgid "Post Icon"
5700
  msgstr "Bericht Icoon"
5701
 
5702
+ #: modules/post-carousel/post-carousel.php:311
5703
+ #: modules/post-grid/post-grid.php:288
5704
  msgid "Post Icon Position"
5705
  msgstr "Bericht Icoon Positie"
5706
 
5707
  # @ fl-builder
5708
+ #: modules/post-carousel/post-carousel.php:314
5709
+ #: modules/post-grid/post-grid.php:142 modules/post-grid/post-grid.php:291
5710
  msgid "Above Text"
5711
  msgstr "Boven Tekst"
5712
 
5713
+ #: modules/post-carousel/post-carousel.php:315
5714
+ #: modules/post-grid/post-grid.php:292
5715
  msgid "Below Text"
5716
  msgstr "Onder tekst"
5717
 
5718
+ #: modules/post-carousel/post-carousel.php:320
5719
+ #: modules/post-grid/post-grid.php:297
5720
  msgid "Post Icon Size"
5721
  msgstr "Bericht Icoon Grootte"
5722
 
5723
  # @ fl-builder
5724
+ #: modules/post-carousel/post-carousel.php:329
5725
+ #: modules/post-grid/post-grid.php:154 modules/post-slider/post-slider.php:495
5726
  msgid "Post Info"
5727
  msgstr "Bericht Info"
5728
 
5729
  # @ fl-builder
5730
+ #: modules/post-carousel/post-carousel.php:356
5731
+ #: modules/post-grid/post-grid.php:181 modules/post-slider/post-slider.php:522
5732
  msgid "Date Format"
5733
  msgstr "Datumnotatie"
5734
 
5735
  # @ fl-builder
5736
+ #: modules/post-carousel/post-carousel.php:386
5737
+ #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:561
5738
  msgid "More Link"
5739
  msgstr "Lees Meer Link"
5740
 
5741
  # @ fl-builder
5742
+ #: modules/post-carousel/post-carousel.php:395
5743
+ #: modules/post-grid/post-grid.php:238 modules/post-slider/post-slider.php:570
5744
  msgid "More Link Text"
5745
  msgstr "More Link Tekst"
5746
 
5747
+ #: modules/post-carousel/post-carousel.php:432
5748
+ #: modules/post-grid/post-grid.php:316
5749
  msgid "Post Icon Color"
5750
  msgstr "Bericht Icoon Kleur"
5751
 
5769
  msgid "Feed"
5770
  msgstr "Feed"
5771
 
 
5772
  #: modules/post-grid/post-grid.php:74
5773
+ msgid "Equal Heights"
5774
+ msgstr "Gelijke hoogtes"
5775
 
5776
  # @ fl-builder
5777
+ #: modules/post-grid/post-grid.php:83
5778
+ msgid "Pagination Style"
5779
+ msgstr "Paginering Stijl"
5780
 
5781
  # @ fl-builder
5782
+ #: modules/post-grid/post-grid.php:88
5783
  msgctxt "Pagination style."
5784
  msgid "None"
5785
  msgstr "Geen"
5786
 
5787
  # @ fl-builder
5788
+ #: modules/post-grid/post-grid.php:93
5789
  msgid "Posts Per Page"
5790
  msgstr "Berichten per pagina"
5791
 
5792
  # @ fl-builder
5793
+ #: modules/post-grid/post-grid.php:104
5794
  msgid "Post Width"
5795
  msgstr "Bericht Breedte"
5796
 
5797
  # @ fl-builder
5798
+ #: modules/post-grid/post-grid.php:143
5799
  msgid "Beside Text"
5800
  msgstr "Naast Tekst"
5801
 
5802
  # @ fl-builder
5803
+ #: modules/post-grid/post-grid.php:197 modules/post-slider/post-slider.php:538
5804
  msgid "Comments"
5805
  msgstr "Reacties"
5806
 
5807
+ #: modules/post-grid/post-grid.php:220
5808
  msgid "Content Type"
5809
  msgstr "Inhoud Type"
5810
 
5811
+ #: modules/post-grid/post-grid.php:223
5812
  msgid "Excerpt"
5813
  msgstr "Samenvatting"
5814
 
5815
+ #: modules/post-grid/post-grid.php:224
5816
  msgid "Full Text"
5817
  msgstr "Volledige Tekst"
5818
 
5819
+ #: modules/post-grid/post-grid.php:253
5820
  msgid "Hover Transition"
5821
  msgstr "Over overgang"
5822
 
5879
  msgstr "Een eenvoudige Prijstabel generator."
5880
 
5881
  # @ fl-builder
5882
+ #: modules/pricing-table/pricing-table.php:55
5883
  msgid "Pricing Boxes"
5884
  msgstr "Prijs Vakken"
5885
 
5886
  # @ fl-builder
5887
+ #: modules/pricing-table/pricing-table.php:62
5888
  msgid "Pricing Box"
5889
  msgstr "Prijs Vak"
5890
 
5891
+ #: modules/pricing-table/pricing-table.php:79
5892
+ msgid "Highlight"
5893
+ msgstr "Markeren"
 
5894
 
5895
  # @ fl-builder
5896
+ #: modules/pricing-table/pricing-table.php:82
5897
+ #: modules/pricing-table/pricing-table.php:158
5898
+ #: modules/woocommerce/woocommerce.php:195
5899
+ msgid "Price"
5900
+ msgstr "Prijs"
5901
+
5902
+ #: modules/pricing-table/pricing-table.php:89
5903
+ msgid "Border Style"
5904
+ msgstr "Rand stijl"
5905
+
5906
+ #: modules/pricing-table/pricing-table.php:92
5907
+ msgid "Rounded"
5908
+ msgstr "Rond"
5909
+
5910
+ #: modules/pricing-table/pricing-table.php:93
5911
+ msgid "Straight"
5912
+ msgstr "Recht"
5913
+
5914
+ #: modules/pricing-table/pricing-table.php:101
5915
+ msgctxt "Border size."
5916
+ msgid "Large"
5917
  msgstr "Breed"
5918
 
5919
+ #: modules/pricing-table/pricing-table.php:102
5920
+ msgctxt "Border size."
5921
+ msgid "Medium"
5922
+ msgstr "Gemiddeld"
5923
+
5924
+ #: modules/pricing-table/pricing-table.php:103
5925
+ msgctxt "Border size."
5926
+ msgid "Small"
5927
+ msgstr "Dun"
5928
 
5929
  # @ fl-builder
5930
+ #: modules/pricing-table/pricing-table.php:118
5931
  msgid "Features Min Height"
5932
  msgstr "Opties Min Hoogte"
5933
 
5934
  # @ fl-builder
5935
+ #: modules/pricing-table/pricing-table.php:122
5936
  msgid ""
5937
  "Use this to normalize the height of your boxes when they have different "
5938
  "numbers of features."
5941
  "ongelijk aantal opties hebben."
5942
 
5943
  # @ fl-builder
5944
+ #: modules/pricing-table/pricing-table.php:131
 
 
 
 
 
 
 
 
 
 
 
 
5945
  msgid "Add Pricing Box"
5946
  msgstr "Prijzen vak Toevoegen"
5947
 
5948
  # @ fl-builder
5949
+ #: modules/pricing-table/pricing-table.php:145
5950
  msgid "Title Size"
5951
  msgstr "Titel Grootte"
5952
 
5953
  # @ fl-builder
5954
+ #: modules/pricing-table/pricing-table.php:154
5955
  msgid "Price Box"
5956
  msgstr "Prijs Vak"
5957
 
5958
  # @ fl-builder
5959
+ #: modules/pricing-table/pricing-table.php:162
 
 
 
 
 
 
5960
  msgid "Duration"
5961
  msgstr "Tijdsduur"
5962
 
5963
  # @ fl-builder
5964
+ #: modules/pricing-table/pricing-table.php:163
5965
  msgid "per Year"
5966
  msgstr "Per Jaar"
5967
 
5968
  # @ fl-builder
5969
+ #: modules/pricing-table/pricing-table.php:167
5970
  msgid "Price Size"
5971
  msgstr "Prijs grootte"
5972
 
5973
  # @ fl-builder
5974
+ #: modules/pricing-table/pricing-table.php:176
 
 
 
 
 
 
 
 
 
 
 
5975
  msgctxt "Price features displayed in pricing box."
5976
  msgid "Features"
5977
  msgstr "Opties"
5978
 
5979
  # @ fl-builder
5980
+ #: modules/pricing-table/pricing-table.php:181
5981
  msgid "One feature per line. HTML is okay."
5982
  msgstr "Eén optie per regel. HTML is oke."
5983
 
5984
  # @ fl-builder
5985
+ #: modules/pricing-table/pricing-table.php:196
5986
+ #: modules/subscribe-form/subscribe-form.php:179
5987
+ msgid "Button Text"
5988
+ msgstr "Knop Tekst"
5989
 
5990
  # @ fl-builder
5991
+ #: modules/pricing-table/pricing-table.php:201
5992
+ msgid "Button URL"
5993
+ msgstr "Knop URL"
5994
+
5995
+ #: modules/pricing-table/pricing-table.php:359
5996
+ msgid "Box Border"
5997
+ msgstr "Box rand"
5998
+
5999
+ # @ fl-builder
6000
+ #: modules/pricing-table/pricing-table.php:364
6001
  msgid "Box Foreground"
6002
  msgstr "Vak Voorgrond"
6003
 
6004
  # @ fl-builder
6005
+ #: modules/pricing-table/pricing-table.php:370
6006
  msgid "Accent Color"
6007
  msgstr "Accent kleur"
6008
 
6009
  # @ fl-builder
6010
+ #: modules/pricing-table/pricing-table.php:375
6011
  msgid "Accent Text Color"
6012
  msgstr "Tekst Accentkleur"
6013
 
6014
  # @ fl-builder
6015
+ #: modules/pricing-table/pricing-table.php:379
6016
  msgid "Box Top Margin"
6017
  msgstr "Vak Bovenmarge"
6018
 
6027
  msgstr "Een scheidingslijn om inhoud te scheiden."
6028
 
6029
  # @ fl-builder
6030
+ #: modules/separator/separator.php:86
6031
  msgid ""
6032
  "The type of border to use. Double borders must have a height of at least 3px "
6033
  "to render properly."
6059
  msgstr "Weergave van meerdere afbeeldingenin een diavoorstelling."
6060
 
6061
  # @ fl-builder
6062
+ #: modules/slideshow/slideshow.php:311
6063
  msgid "Skin Color"
6064
  msgstr "Skin Kleur"
6065
 
6066
  # @ fl-builder
6067
+ #: modules/slideshow/slideshow.php:314
6068
  msgctxt "Color."
6069
  msgid "Light"
6070
  msgstr "Licht"
6071
 
6072
  # @ fl-builder
6073
+ #: modules/slideshow/slideshow.php:315
6074
  msgctxt "Color."
6075
  msgid "Dark"
6076
  msgstr "Donker"
6077
 
6078
  # @ fl-builder
6079
+ #: modules/slideshow/slideshow.php:317
6080
  msgid ""
6081
  "If your overall theme/images are lighter in color, light will display "
6082
  "buttons in a darker color scheme and vice versa for dark."
6085
  "in een donkere kleur schema weergeven en en omgekeerd voor donker."
6086
 
6087
  # @ fl-builder
6088
+ #: modules/slideshow/slideshow.php:327
6089
  msgid ""
6090
  "Crop set to no will fit the slideshow images to the height you specify and "
6091
  "keep the width proportional, whereas crop set to yes will fit the slideshow "
6099
  "aan de afmetingen te voldoen."
6100
 
6101
  # @ fl-builder
6102
+ #: modules/slideshow/slideshow.php:331
6103
  msgid "Disable Right-Click"
6104
  msgstr "Klik met de rechtermuisknop uitschakelen"
6105
 
6106
  # @ fl-builder
6107
+ #: modules/slideshow/slideshow.php:351
6108
  msgctxt "Click action type."
6109
  msgid "None"
6110
  msgstr "Geen"
6111
 
6112
  # @ fl-builder
6113
+ #: modules/slideshow/slideshow.php:375
6114
  msgid "Playback"
6115
  msgstr "Afspelen"
6116
 
6117
  # @ fl-builder
6118
+ #: modules/slideshow/slideshow.php:401
6119
  msgctxt "Slideshow transition."
6120
  msgid "None"
6121
  msgstr "Geen"
6122
 
6123
  # @ fl-builder
6124
+ #: modules/slideshow/slideshow.php:438
6125
  msgid "Controls"
6126
  msgstr "Instellingen"
6127
 
6128
  # @ fl-builder
6129
+ #: modules/slideshow/slideshow.php:445 modules/slideshow/slideshow.php:494
6130
  msgid "Navigation Arrows"
6131
  msgstr "Navigatiepijlen"
6132
 
6133
  # @ fl-builder
6134
+ #: modules/slideshow/slideshow.php:451
6135
  msgid ""
6136
  "Navigational arrows allow the visitor to freely move through the images in "
6137
  "your slideshow. These are larger arrows that overlay your slideshow images "
6143
  "de balk met besturingselementen."
6144
 
6145
  # @ fl-builder
6146
+ #: modules/slideshow/slideshow.php:456
6147
  msgid "Control Bar"
6148
  msgstr "Navigatiebalk"
6149
 
6150
  # @ fl-builder
6151
+ #: modules/slideshow/slideshow.php:460
6152
  msgid "Nav Type"
6153
  msgstr "Navigatie Type"
6154
 
6155
  # @ fl-builder
6156
+ #: modules/slideshow/slideshow.php:463
6157
  msgctxt "Nav type."
6158
  msgid "None"
6159
  msgstr "Geen"
6160
 
6161
  # @ fl-builder
6162
+ #: modules/slideshow/slideshow.php:464
6163
  msgid "Buttons"
6164
  msgstr "Knoppen"
6165
 
6166
  # @ fl-builder
6167
+ #: modules/slideshow/slideshow.php:465 modules/slideshow/slideshow.php:595
6168
  msgid "Thumbs"
6169
  msgstr "Miniaturen"
6170
 
6171
  # @ fl-builder
6172
+ #: modules/slideshow/slideshow.php:480
6173
  msgid "Nav Position"
6174
  msgstr "Navigatie Positie"
6175
 
6176
  # @ fl-builder
6177
+ #: modules/slideshow/slideshow.php:490
6178
  msgid "Control Bar Buttons"
6179
  msgstr "Navigatiebalk Knoppen"
6180
 
6181
  # @ fl-builder
6182
+ #: modules/slideshow/slideshow.php:503
6183
  msgid "Play Button"
6184
+ msgstr "Play Knop"
6185
 
6186
  # @ fl-builder
6187
+ #: modules/slideshow/slideshow.php:512
6188
  msgid "Fullscreen Button"
6189
  msgstr "Volledig Scherm Knop"
6190
 
6191
  # @ fl-builder
6192
+ #: modules/slideshow/slideshow.php:521
6193
  msgid "Photo Count"
6194
  msgstr "Aantal Afbeeldingen"
6195
 
6196
  # @ fl-builder
6197
+ #: modules/slideshow/slideshow.php:530
6198
  msgid "Thumbs Button"
6199
+ msgstr "Miniaturen Knop"
6200
 
6201
  # @ fl-builder
6202
+ #: modules/slideshow/slideshow.php:539
6203
  msgid "Caption Button"
6204
+ msgstr "Bijschrift Knop"
6205
 
6206
  # @ fl-builder
6207
+ #: modules/slideshow/slideshow.php:548
6208
  msgid "Social Button"
6209
+ msgstr "Social Media Knop"
6210
 
6211
  # @ fl-builder
6212
+ #: modules/slideshow/slideshow.php:558
6213
  msgid "Control Bar Overlay"
6214
  msgstr "Navigatiebalk Overlay"
6215
 
6216
  # @ fl-builder
6217
+ #: modules/slideshow/slideshow.php:562
6218
  msgid "Overlay Enabled"
6219
  msgstr "Overlay Ingeschakeld"
6220
 
6221
  # @ fl-builder
6222
+ #: modules/slideshow/slideshow.php:573
6223
  msgid ""
6224
  "Control bar overlay specifies if the control bar buttons you choose overlay "
6225
  "your slideshow images or site below the slideshow completely."
6229
  "diavoorstelling worden geplaatst."
6230
 
6231
  # @ fl-builder
6232
+ #: modules/slideshow/slideshow.php:577
6233
  msgid "Overlay Hide"
6234
  msgstr "Verberg Overlay"
6235
 
6236
  # @ fl-builder
6237
+ #: modules/slideshow/slideshow.php:583
6238
  msgid ""
6239
  "Overlay hide will hide the control bar after however many seconds you "
6240
  "specify below. They will reappear upon mouse over."
6243
  "seconden. Ze verschijnen weer wanneer er met de muis overheen wordt bewogen."
6244
 
6245
  # @ fl-builder
6246
+ #: modules/slideshow/slideshow.php:587
6247
  msgid "Overlay Hide Delay"
6248
  msgstr "OVerberg Overlay Vertraging"
6249
 
6250
  # @ fl-builder
6251
+ #: modules/slideshow/slideshow.php:599
6252
  msgid "Thumbs Size"
6253
  msgstr "Miniatuur Afmeting"
6254
 
6255
  # @ fl-builder
6256
+ #: modules/slideshow/slideshow.php:608
6257
  msgid "Social"
6258
  msgstr "Social"
6259
 
6260
  # @ fl-builder
6261
+ #: modules/slideshow/slideshow.php:612
6262
  msgid "Facebook Button"
6263
+ msgstr "Facebook Knop"
6264
 
6265
  # @ fl-builder
6266
+ #: modules/slideshow/slideshow.php:624
6267
  msgid "Twitter Button"
6268
+ msgstr "Twitter Knop"
6269
 
6270
  # @ fl-builder
6271
+ #: modules/slideshow/slideshow.php:636
6272
  msgid "Google Plus Button"
6273
+ msgstr "Google+ Knop"
6274
 
6275
  # @ fl-builder
6276
+ #: modules/slideshow/slideshow.php:648
6277
  msgid "Pinterest Button"
6278
+ msgstr "Pinterest Knop"
6279
 
6280
  # @ fl-builder
6281
  #: modules/social-buttons/social-buttons.php:14
6282
  msgid "Social Buttons"
6283
+ msgstr "Social Knoppen"
6284
 
6285
  # @ fl-builder
6286
  #: modules/social-buttons/social-buttons.php:15
6287
  msgid "Displays social buttons."
6288
+ msgstr "Toon Social Knoppen."
6289
 
6290
  # @ fl-builder
6291
+ #: modules/social-buttons/social-buttons.php:72
6292
  msgid "Target URL"
6293
  msgstr "Doel URL"
6294
 
6295
  # @ fl-builder
6296
+ #: modules/social-buttons/social-buttons.php:76
6297
  msgid "Current Page"
6298
  msgstr "Huidige Pagina"
6299
 
6300
  # @ fl-builder
6301
+ #: modules/social-buttons/social-buttons.php:83
6302
  msgid ""
6303
  "The Target URL field correlates to the page you would like your social icons "
6304
  "to interface with. For example, if you show Facebook, the user will \"Like\" "
6309
  "gebruiker \"Liken\" wat je in dit veld plaatst."
6310
 
6311
  # @ fl-builder
6312
+ #: modules/social-buttons/social-buttons.php:90
6313
  msgid "Custom URL"
6314
  msgstr "Aangepaste URL"
6315
 
6316
  # @ fl-builder
6317
+ #: modules/social-buttons/social-buttons.php:108
6318
  msgid "Show Facebook"
6319
  msgstr "Toon Facebook"
6320
 
6321
  # @ fl-builder
6322
+ #: modules/social-buttons/social-buttons.php:117
6323
  msgid "Show Twitter"
6324
  msgstr "Toon Twitter"
6325
 
6326
  # @ fl-builder
6327
+ #: modules/social-buttons/social-buttons.php:126
6328
  msgid "Show Google+"
6329
  msgstr "Toon Google+"
6330
 
6349
  msgid "Adds a simple subscribe form to your layout."
6350
  msgstr "Voeg een eenvoudig abonneren formulier toe aan je layout."
6351
 
6352
+ #: modules/subscribe-form/subscribe-form.php:155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6353
  msgid ""
6354
  "Thanks for subscribing! Please check your email for further instructions."
6355
  msgstr ""
6356
  "Bedankt voor het aanmelden! Controleer uw email voor verdere instructies."
6357
 
6358
+ #: modules/subscribe-form/subscribe-form.php:180
 
 
 
 
6359
  msgid "Subscribe!"
6360
  msgstr "Aanmelden!"
6361
 
6371
 
6372
  # @ fl-builder
6373
  #: modules/testimonials/testimonials.php:14
6374
+ #: modules/testimonials/testimonials.php:61
6375
+ #: modules/testimonials/testimonials.php:175
6376
  msgid "Testimonials"
6377
  msgstr "Beoordelingen"
6378
 
6383
 
6384
  # @ fl-builder
6385
  #: modules/testimonials/testimonials.php:41
6386
+ msgid "Wide"
6387
+ msgstr "Breed"
6388
+
6389
+ # @ fl-builder
6390
+ #: modules/testimonials/testimonials.php:42
6391
  msgid "Compact"
6392
  msgstr "Compact"
6393
 
6394
  # @ fl-builder
6395
+ #: modules/testimonials/testimonials.php:52
6396
  msgid "Wide is for 1 column rows, compact is for multi-column rows."
6397
  msgstr "Wijd is voor 1 kolom per rij, compact is voor multi-kolom rijen."
6398
 
6399
  # @ fl-builder
6400
+ #: modules/testimonials/testimonials.php:79
6401
  msgid "Slider Settings"
6402
  msgstr "Diavoorstelling Instellingen"
6403
 
6404
  # @ fl-builder
6405
+ #: modules/testimonials/testimonials.php:136
6406
  msgid "Arrow Color"
6407
  msgstr "Pijl kleur"
6408
 
6409
  # @ fl-builder
6410
+ #: modules/testimonials/testimonials.php:166
6411
  msgid "Dot Color"
6412
  msgstr "Dot kleur"
6413
 
6414
  # @ fl-builder
6415
+ #: modules/testimonials/testimonials.php:182
6416
  msgid "Testimonial"
6417
  msgstr "Beoordeling"
6418
 
6419
  # @ fl-builder
6420
+ #: modules/testimonials/testimonials.php:198
6421
  msgid "Add Testimonial"
6422
  msgstr "Beoordeling Toevoegen"
6423
 
6427
  msgstr "Toon een Wordpress of ingesloten video."
6428
 
6429
  # @ fl-builder
6430
+ #: modules/video/video.php:89
6431
  msgid "Video Type"
6432
  msgstr "Video type"
6433
 
6434
  # @ fl-builder
6435
+ #: modules/video/video.php:93
6436
  msgid "Embed"
6437
  msgstr "Insluiten"
6438
 
6439
+ #: modules/video/video.php:107
6440
+ msgid "A video in the MP4 format. Most modern browsers support this format."
6441
+ msgstr ""
6442
+ "Een video in het MP4 formaat. De meeste moderne browsers ondersteunen dit "
6443
+ "formaat."
6444
+
6445
+ #: modules/video/video.php:112
6446
+ msgid ""
6447
+ "A video in the WebM format to use as fallback. This format is required to "
6448
+ "support browsers such as FireFox and Opera."
6449
+ msgstr ""
6450
+ "Een video in het WebM formaat is nodig als terugval. Dit formaat is nodig om "
6451
+ "browsers als Firefox en Opera te ondersteunen."
6452
+
6453
  # @ fl-builder
6454
+ #: modules/video/video.php:119
6455
  msgctxt "Video preview/fallback image."
6456
  msgid "Poster"
6457
  msgstr "Poster"
6458
 
6459
  # @ fl-builder
6460
+ #: modules/widget/includes/frontend.php:34
6461
  #: modules/widget/includes/settings-general.php:46
6462
  #, php-format
6463
  msgctxt "%s stands for widget slug."
6485
  msgstr "Producten of categorieën uit je WooCommerce winkel weergeven."
6486
 
6487
  # @ fl-builder
6488
+ #: modules/woocommerce/woocommerce.php:62
6489
  msgid "Single Product"
6490
  msgstr "Enkel product"
6491
 
6492
+ #: modules/woocommerce/woocommerce.php:63
6493
+ msgid "Product Page"
6494
+ msgstr "Product pagina"
6495
+
6496
  # @ fl-builder
6497
+ #: modules/woocommerce/woocommerce.php:64
6498
+ #: modules/woocommerce/woocommerce.php:118
6499
  msgid "Multiple Products"
6500
  msgstr "Meerdere producten"
6501
 
6502
  # @ fl-builder
6503
+ #: modules/woocommerce/woocommerce.php:65
6504
  msgid "\"Add to Cart\" Button"
6505
+ msgstr "\"Voeg toe aan je winkelwagen\" knop"
6506
 
6507
  # @ fl-builder
6508
+ #: modules/woocommerce/woocommerce.php:66
6509
  msgid "Categories"
6510
  msgstr "Categorieën"
6511
 
6512
  # @ fl-builder
6513
+ #: modules/woocommerce/woocommerce.php:67
6514
  msgid "Cart"
6515
  msgstr "Winkelwagen"
6516
 
6517
  # @ fl-builder
6518
+ #: modules/woocommerce/woocommerce.php:68
6519
  msgid "Checkout"
6520
  msgstr "Afrekenen"
6521
 
6522
  # @ fl-builder
6523
+ #: modules/woocommerce/woocommerce.php:69
6524
  msgid "Order Tracking"
6525
  msgstr "Bestelling Volgen"
6526
 
6527
  # @ fl-builder
6528
+ #: modules/woocommerce/woocommerce.php:70
6529
  msgid "My Account"
6530
  msgstr "Mijn account"
6531
 
6532
  # @ fl-builder
6533
+ #: modules/woocommerce/woocommerce.php:92
6534
  msgid "Product ID"
6535
  msgstr "Product-ID"
6536
 
6537
  # @ fl-builder
6538
+ #: modules/woocommerce/woocommerce.php:95
6539
  msgid ""
6540
  "As you add products in the WooCommerce Products area, each will be assigned "
6541
  "a unique ID. You can find this unique product ID by visiting the Products "
6547
  "De unieke ID is het eerste kenmerk."
6548
 
6549
  # @ fl-builder
6550
+ #: modules/woocommerce/woocommerce.php:99
6551
  msgid "Parent Category ID"
6552
  msgstr "Bovenliggende categorie ID"
6553
 
6554
  # @ fl-builder
6555
+ #: modules/woocommerce/woocommerce.php:102
6556
  msgid ""
6557
  "As you add product categories in the WooCommerce Products area, each will be "
6558
  "assigned a unique ID. This ID can be found by hovering on the category in "
6566
  "ID is de enige numerieke waarde in de URL."
6567
 
6568
  # @ fl-builder
6569
+ #: modules/woocommerce/woocommerce.php:106
6570
+ #: modules/woocommerce/woocommerce.php:177
6571
  msgid "Columns"
6572
  msgstr "Kolommen"
6573
 
6574
  # @ fl-builder
6575
+ #: modules/woocommerce/woocommerce.php:122
6576
  msgid "Products Source"
6577
  msgstr "Producten Bron"
6578
 
6579
  # @ fl-builder
6580
+ #: modules/woocommerce/woocommerce.php:125
6581
  msgid "Products IDs"
6582
  msgstr "Producten-ID's"
6583
 
6584
  # @ fl-builder
6585
+ #: modules/woocommerce/woocommerce.php:126
6586
  msgid "Product Category"
6587
  msgstr "Productcategorie"
6588
 
6589
  # @ fl-builder
6590
+ #: modules/woocommerce/woocommerce.php:127
6591
  msgid "Recent Products"
6592
  msgstr "Recente Producten"
6593
 
6594
  # @ fl-builder
6595
+ #: modules/woocommerce/woocommerce.php:128
6596
  msgid "Featured Products"
6597
  msgstr "Uitgelichte Producten"
6598
 
6599
  # @ fl-builder
6600
+ #: modules/woocommerce/woocommerce.php:129
6601
  msgid "Sale Products"
6602
  msgstr "Verkoop Producten"
6603
 
6604
  # @ fl-builder
6605
+ #: modules/woocommerce/woocommerce.php:130
6606
  msgid "Best Selling Products"
6607
  msgstr "Best Verkopende Producten"
6608
 
6609
  # @ fl-builder
6610
+ #: modules/woocommerce/woocommerce.php:131
6611
  msgid "Top Rated Products"
6612
  msgstr "Best Beoordeelde Producten"
6613
 
6614
  # @ fl-builder
6615
+ #: modules/woocommerce/woocommerce.php:159
6616
  msgid "Product IDs"
6617
  msgstr "Product-ID's"
6618
 
6619
  # @ fl-builder
6620
+ #: modules/woocommerce/woocommerce.php:161
6621
  msgid ""
6622
  "As you add products in the WooCommerce Products area, each will be assigned "
6623
  "a unique ID. You can find this unique product ID by visiting the Products "
6631
  "gescheiden door een komma."
6632
 
6633
  # @ fl-builder
6634
+ #: modules/woocommerce/woocommerce.php:165
6635
  msgid "Category Slug"
6636
  msgstr "Categorie Slug"
6637
 
6638
  # @ fl-builder
6639
+ #: modules/woocommerce/woocommerce.php:167
6640
  msgid ""
6641
  "As you add product categories in the WooCommerce Products area, each will be "
6642
  "assigned a unique slug or you can edit and add your own. These slugs can be "
6649
  "Producten. Je kunt er hier meerdere ingeven, gescheiden door een komma. "
6650
 
6651
  # @ fl-builder
6652
+ #: modules/woocommerce/woocommerce.php:171
6653
  msgid "Number of Products"
6654
  msgstr "Aantal Producten"
6655
 
6656
  # @ fl-builder
6657
+ #: modules/woocommerce/woocommerce.php:188
6658
  msgid "Sort By"
6659
  msgstr "Sorteren Op"
6660
 
6661
  # @ fl-builder
6662
+ #: modules/woocommerce/woocommerce.php:191
6663
  msgctxt "Sort by."
6664
  msgid "Default"
6665
  msgstr "Standaard"
6666
 
6667
  # @ fl-builder
6668
+ #: modules/woocommerce/woocommerce.php:192
6669
  msgid "Popularity"
6670
  msgstr "Populariteit"
6671
 
6672
  # @ fl-builder
6673
+ #: modules/woocommerce/woocommerce.php:193
6674
  msgid "Rating"
6675
  msgstr "Waardering"
6676
 
6677
+ #: modules/woocommerce/woocommerce.php:200
6678
  msgid "Sort Direction"
6679
  msgstr "Sorteer Richting"
6680
 
6681
+ #~ msgid "Page Builder Templates"
6682
+ #~ msgstr "Page Builder Templates"
6683
+
6684
+ #~ msgid "Error! Please enter a number for the site ID."
6685
+ #~ msgstr "Fout! Voer een nummer voor de site-ID."
6686
+
6687
+ #~ msgid "Error! A site with that ID doesn't exist."
6688
+ #~ msgstr "Fout! Een site met die ID bestaat niet."
6689
+
6690
+ #~ msgctxt "Custom taxonomy label."
6691
+ #~ msgid "Category"
6692
+ #~ msgstr "Categorie"
6693
+
6694
+ #~ msgctxt "Custom taxonomy label."
6695
+ #~ msgid "Search Categories"
6696
+ #~ msgstr "Categorieën zoeken"
6697
+
6698
+ #~ msgctxt "Custom taxonomy label."
6699
+ #~ msgid "All Categories"
6700
+ #~ msgstr "Alle categoriën"
6701
+
6702
+ #~ msgctxt "Custom taxonomy label."
6703
+ #~ msgid "Parent Category"
6704
+ #~ msgstr "Bovenliggende Categorie"
6705
+
6706
+ #~ msgctxt "Custom taxonomy label."
6707
+ #~ msgid "Parent Category:"
6708
+ #~ msgstr "Bovenliggende Categorie:"
6709
+
6710
+ #~ msgctxt "Custom taxonomy label."
6711
+ #~ msgid "Edit Category"
6712
+ #~ msgstr "Bewerk Categorie"
6713
+
6714
+ #~ msgctxt "Custom taxonomy label."
6715
+ #~ msgid "Update Category"
6716
+ #~ msgstr "Categorie bijwerken"
6717
+
6718
+ #~ msgctxt "Custom taxonomy label."
6719
+ #~ msgid "Add New Category"
6720
+ #~ msgstr "Voeg nieuwe Categorie toe"
6721
+
6722
+ #~ msgctxt "Custom taxonomy label."
6723
+ #~ msgid "New Category Name"
6724
+ #~ msgstr "Nieuwe Categorie Naam"
6725
+
6726
+ # @ fl-builder
6727
+ #~ msgid "White label the page builder by entering a custom name below."
6728
+ #~ msgstr ""
6729
+ #~ "White label de page builder door hieronder een eigen naam in te geven."
6730
+
6731
+ # @ fl-builder
6732
+ #~ msgid ""
6733
+ #~ "Additionally, you may also add a custom icon by entering the URL of an "
6734
+ #~ "image below. Leave the field blank if you do not wish to use an icon."
6735
+ #~ msgstr ""
6736
+ #~ "Daarnaast kun je ook een aangepast pictogram toevoegen door het invoeren "
6737
+ #~ "van de URL van een afbeelding hieronder. Laat het veld leeg als je geen "
6738
+ #~ "pictogram wenst te gebruiken."
6739
+
6740
+ #~ msgid "Save Branding"
6741
+ #~ msgstr "Merk opslaan"
6742
+
6743
+ # @ fl-builder
6744
+ #~ msgid "Help Button Settings"
6745
+ #~ msgstr "Help Button Instellingen"
6746
+
6747
+ # @ fl-builder
6748
+ #~ msgid "Enable Help Button"
6749
+ #~ msgstr "Activeer Help Button"
6750
+
6751
+ # @ fl-builder
6752
+ #~ msgid "Help Tour"
6753
+ #~ msgstr "Help Rondleiding"
6754
+
6755
+ # @ fl-builder
6756
+ #~ msgid "Enable Help Tour"
6757
+ #~ msgstr "Activeer Help Rondleiding"
6758
+
6759
+ # @ fl-builder
6760
+ #~ msgid "Help Video"
6761
+ #~ msgstr "Help Video"
6762
+
6763
+ # @ fl-builder
6764
+ #~ msgid "Enable Help Video"
6765
+ #~ msgstr "Activeer Help Video"
6766
+
6767
+ # @ fl-builder
6768
+ #~ msgid "Help Video Embed Code"
6769
+ #~ msgstr "Help Video Embed Code"
6770
+
6771
+ # @ fl-builder
6772
+ #~ msgid "Knowledge Base"
6773
+ #~ msgstr "Kennisbank"
6774
+
6775
+ # @ fl-builder
6776
+ #~ msgid "Enable Knowledge Base"
6777
+ #~ msgstr "Activeer Kennisbank"
6778
+
6779
+ # @ fl-builder
6780
+ #~ msgid "Knowledge Base URL"
6781
+ #~ msgstr "Kennisbank URL"
6782
+
6783
+ # @ fl-builder
6784
+ #~ msgid "Forums"
6785
+ #~ msgstr "Forums"
6786
+
6787
+ # @ fl-builder
6788
+ #~ msgid "Enable Forums"
6789
+ #~ msgstr "Activeer Forums"
6790
+
6791
+ # @ fl-builder
6792
+ #~ msgid "Forums URL"
6793
+ #~ msgstr "Forum URL"
6794
+
6795
+ #~ msgid "Save Help Button Settings"
6796
+ #~ msgstr "Help Button Instellingen Opslaan"
6797
+
6798
+ #~ msgid "Override Core Templates"
6799
+ #~ msgstr "Overschrijven Core Templates"
6800
+
6801
+ #~ msgid ""
6802
+ #~ "Enter the ID of a site on the network whose templates should override "
6803
+ #~ "core builder templates. Leave this field blank if you do not wish to "
6804
+ #~ "override core templates."
6805
+ #~ msgstr ""
6806
+ #~ "Geef de ID van een site op het netwerk waarvan de templates de kern "
6807
+ #~ "builder templates moet overschrijven. Laat dit veld leeg indien je niet "
6808
+ #~ "de kern templates wilt overschrijven."
6809
+
6810
+ #~ msgid ""
6811
+ #~ "Use this setting to override core builder templates with your templates."
6812
+ #~ msgstr ""
6813
+ #~ "Gebruik deze instelling om kern builder sjablonen met jouw sjablonen te "
6814
+ #~ "overschrijven."
6815
+
6816
+ #~ msgid ""
6817
+ #~ "You may also choose to show your row and module templates as sections "
6818
+ #~ "within the builder panel. A new section will be created for each row or "
6819
+ #~ "module category that you have defined."
6820
+ #~ msgstr ""
6821
+ #~ "Je kunt er ook voor kiezen om je rij- en module-templates als secties in "
6822
+ #~ "het builder paneel te tonen. Een nieuwe sectie zal worden aangemaakt voor "
6823
+ #~ "iedere rij- of module-categorie die je hebt gedefinieerd."
6824
+
6825
+ #~ msgid "Show Row Templates?"
6826
+ #~ msgstr "Rij Templates weergeven?"
6827
+
6828
+ #~ msgid "Show Module Templates?"
6829
+ #~ msgstr "Module Templates weergeven?"
6830
+
6831
+ #~ msgid "Edit Template"
6832
+ #~ msgstr "Bewerk Template"
6833
+
6834
+ #~ msgctxt "Template edit form field label. Template name."
6835
+ #~ msgid "Name"
6836
+ #~ msgstr "Naam"
6837
+
6838
+ #~ msgctxt "Template edit form field label. Is template premium one?"
6839
+ #~ msgid "Premium"
6840
+ #~ msgstr "Premium"
6841
+
6842
+ #~ msgid "Category"
6843
+ #~ msgstr "Categorie"
6844
+
6845
+ #~ msgctxt "Templates category label."
6846
+ #~ msgid "Landing Pages"
6847
+ #~ msgstr "Bestemmingspagina 's"
6848
+
6849
+ #~ msgctxt "Templates category label."
6850
+ #~ msgid "Company Info"
6851
+ #~ msgstr "Bedrijfsinfo"
6852
+
6853
+ #~ msgid "Update Template"
6854
+ #~ msgstr "Template Bijwerken"
6855
+
6856
+ #~ msgid "Page Builder Template"
6857
+ #~ msgstr "Page Builder Template"
6858
+
6859
+ #~ msgctxt "Templates list column label."
6860
+ #~ msgid "Name"
6861
+ #~ msgstr "Naam"
6862
+
6863
+ #~ msgctxt "Templates list column label."
6864
+ #~ msgid "Category"
6865
+ #~ msgstr "Categorie"
6866
+
6867
+ #~ msgctxt "Templates list column label. Is template premium one?"
6868
+ #~ msgid "Premium"
6869
+ #~ msgstr "Premium"
6870
+
6871
+ # @ fl-builder
6872
+ #~ msgid "Note: These settings apply to all posts and pages."
6873
+ #~ msgstr ""
6874
+ #~ "Opmerking: Deze instellingen gelden voor alle berichten en pagina's."
6875
+
6876
+ # @ fl-builder
6877
+ #~ msgid ""
6878
+ #~ "An HTML5 video to use as the background of this row. Supported types are "
6879
+ #~ "MP4, WebM and Ogg."
6880
+ #~ msgstr ""
6881
+ #~ "Een HTML5 video om te gebruiken als de achtergrond van deze rij. "
6882
+ #~ "Ondersteunde types zijn MP4, WebM en Ogg."
6883
+
6884
+ #~ msgid "Image Filename"
6885
+ #~ msgstr "Afbeelding Bestandsnaam"
6886
+
6887
+ #~ msgid ""
6888
+ #~ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
6889
+ #~ "templates/\" directory."
6890
+ #~ msgstr ""
6891
+ #~ "De bestandsnaam van de afbeelding zoals \"thumb.jpg\" dat zich bevind in "
6892
+ #~ "de \"img/templates/\" directory."
6893
+
6894
+ #~ msgid ""
6895
+ #~ "Do you really want to delete this module? All content data will be "
6896
+ #~ "permanently deleted."
6897
+ #~ msgstr ""
6898
+ #~ "Wil je deze module echt verwijderen? Alle inhoud gegevens zullen "
6899
+ #~ "definitief verwijderd worden."
6900
+
6901
+ #~ msgid ""
6902
+ #~ "Do you really want to delete this row? All content data will be "
6903
+ #~ "permanently deleted."
6904
+ #~ msgstr ""
6905
+ #~ "Wil je deze rij echt verwijderen? Alle inhoud gegevens zullen definitief "
6906
+ #~ "verwijderd worden."
6907
+
6908
+ #~ msgid "Duplicate This Page"
6909
+ #~ msgstr "Kopieer deze pagina"
6910
+
6911
+ #~ msgid "Duplicate This Template"
6912
+ #~ msgstr "Kopieer Dit Template"
6913
+
6914
+ #~ msgid "Edit Global Settings"
6915
+ #~ msgstr "Wijzig Globale Instellingen"
6916
+
6917
+ #~ msgid ""
6918
+ #~ "The Tools button lets you duplicate a page, save a template or edit the "
6919
+ #~ "global settings."
6920
+ #~ msgstr ""
6921
+ #~ "De Gereedschappen knop stelt je in staat een pagina te kopiëren, een "
6922
+ #~ "template op te slaan of de globale instellingen te bewerken."
6923
+
6924
+ #~ msgid "Global"
6925
+ #~ msgstr "Algemeen"
6926
+
6927
+ # @ fl-builder
6928
+ #~ msgid "Email address saved!"
6929
+ #~ msgstr "E-mailadres opgeslagen!"
6930
+
6931
+ #~ msgid "Hamburger Icon + label"
6932
+ #~ msgstr "Hamburger Icoon + label"
6933
+
6934
+ # @ fl-builder
6935
+ #~ msgid "Box Spacing"
6936
+ #~ msgstr "Vak Tussenruimte"
6937
+
6938
+ # @ fl-builder
6939
+ #~ msgid "Tight"
6940
+ #~ msgstr "Strak"
6941
+
6942
+ # @ fl-builder
6943
+ #~ msgctxt "Border size."
6944
+ #~ msgid "Wide"
6945
+ #~ msgstr "Breed"
6946
+
6947
+ # @ fl-builder
6948
+ #~ msgctxt "Border size."
6949
+ #~ msgid "Tight"
6950
+ #~ msgstr "Strak"
6951
+
6952
+ # @ fl-builder
6953
+ #~ msgid "Box Background"
6954
+ #~ msgstr "Vak Achtergrond"
6955
+
6956
  # @ fl-builder
6957
  #~ msgctxt "Custom post type label."
6958
  #~ msgid "Layout Templates"
languages/{th_TH.mo → th.mo} RENAMED
File without changes
languages/{th_TH.po → th.po} RENAMED
File without changes