WordPress Page Builder – Beaver Builder - Version 1.4.8

Version Description

Download this release

Release Info

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

Code changes from version 1.4.6 to 1.4.8

changelog.txt CHANGED
@@ -1,3 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <h4>1.4.6 - 02/15/2015</h4>
2
  <p><strong>Enhancements</strong></p>
3
  <ul>
1
+ <h4>1.4.8 - 02/22/2015</h4>
2
+ <p><strong>Enhancements</strong></p>
3
+ <ul>
4
+ <li>Added a background color overlay setting for rows. A huge thanks to <a href="http://favolla.com.br/" target="_blank">Diego de Oliveira</a> for this contribution!</li>
5
+ <li>Added global settings for default row width.</li>
6
+ <li>Added a confirmation popup for switching back to text editor mode.</li>
7
+ </ul>
8
+ <p><strong>Bug Fixes</strong></p>
9
+ <ul>
10
+ <li>Fixed a bug with custom icons that only happens on certain sites as PHP's glob function doesn't always return an array.</li>
11
+ <li>Fixed an admin settings JavaScript error caused by unescaped translation strings.</li>
12
+ <li>Fixed a bug causing row background slideshows to show up on archive pages.</li>
13
+ </ul>
14
+
15
+ <h4>1.4.7 - 02/16/2015</h4>
16
+ <p><strong>Bug Fixes</strong></p>
17
+ <ul>
18
+ <li>Fixed a bug that broke the builder's admin settings page on the standard version.</li>
19
+ </ul>
20
+
21
  <h4>1.4.6 - 02/15/2015</h4>
22
  <p><strong>Enhancements</strong></p>
23
  <ul>
classes/class-fl-builder-icons.php CHANGED
@@ -151,6 +151,11 @@ final class FLBuilderIcons {
151
  $upload_info = FLBuilderModel::get_cache_dir( 'icons' );
152
  $folders = glob( $upload_info['path'] . '*' );
153
 
 
 
 
 
 
154
  // Loop through uploaded sets.
155
  foreach ( $folders as $folder ) {
156
 
151
  $upload_info = FLBuilderModel::get_cache_dir( 'icons' );
152
  $folders = glob( $upload_info['path'] . '*' );
153
 
154
+ // Make sure we have an array.
155
+ if( ! is_array( $folders ) ) {
156
+ return;
157
+ }
158
+
159
  // Loop through uploaded sets.
160
  foreach ( $folders as $folder ) {
161
 
css/fl-builder.css CHANGED
@@ -440,7 +440,7 @@ html.fl-builder-edit {
440
  width: 100%;
441
  z-index: 100006;
442
  }
443
- .fl-block-overlay-active .fl-col {
444
  position: relative;
445
  z-index: 100007;
446
  }
440
  width: 100%;
441
  z-index: 100006;
442
  }
443
+ .fl-block-overlay-active .fl-row-content {
444
  position: relative;
445
  z-index: 100007;
446
  }
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.4.6
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.4.6');
15
  define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
16
  define('FL_BUILDER_URL', plugins_url('/', __FILE__));
17
  define('FL_BUILDER_LITE', true);
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.4.8
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.4.8');
15
  define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
16
  define('FL_BUILDER_URL', plugins_url('/', __FILE__));
17
  define('FL_BUILDER_LITE', true);
includes/admin-posts.php CHANGED
@@ -8,4 +8,11 @@
8
  <a href="<?php echo FLBuilderModel::get_edit_url(); ?>" class="fl-launch-builder button button-primary button-large"><?php printf( _x( 'Launch %s', '%s stands for custom branded "Page Builder" name.', 'fl-builder' ), FLBuilderModel::get_branding() ); ?></a>
9
  </div>
10
  <div class="fl-builder-loading"></div>
11
- </div>
 
 
 
 
 
 
 
8
  <a href="<?php echo FLBuilderModel::get_edit_url(); ?>" class="fl-launch-builder button button-primary button-large"><?php printf( _x( 'Launch %s', '%s stands for custom branded "Page Builder" name.', 'fl-builder' ), FLBuilderModel::get_branding() ); ?></a>
9
  </div>
10
  <div class="fl-builder-loading"></div>
11
+ </div>
12
+ <script type="text/javascript">
13
+
14
+ FLBuilderAdminPostsStrings = {
15
+ switchToEditor: '<?php printf( esc_attr_x( 'Switching to Text Editor mode will disable your %s layout until it is enabled again. Any edits made while in Text Editor mode will not be made on your %s layout. Do you want to continue?', '%s stands for custom branded "Page Builder" name.', 'fl-builder' ), FLBuilderModel::get_branding(), FLBuilderModel::get_branding() ); ?>'
16
+ };
17
+
18
+ </script>
includes/admin-settings-js-config.php CHANGED
@@ -1,8 +1,8 @@
1
  <script type="text/javascript">
2
 
3
  FLBuilderAdminSettingsStrings = {
4
- selectFile: '<?php _e('Select File', 'fl-builder'); ?>',
5
- uninstall: '<?php _e('Please type "uninstall" in the box below to confirm that you really want to uninstall the page builder and all of its data.', 'fl-builder'); ?>'
6
  };
7
 
8
  </script>
1
  <script type="text/javascript">
2
 
3
  FLBuilderAdminSettingsStrings = {
4
+ selectFile: '<?php esc_attr_e('Select File', 'fl-builder'); ?>',
5
+ uninstall: '<?php esc_attr_e('Please type "uninstall" in the box below to confirm that you really want to uninstall the page builder and all of its data.', 'fl-builder'); ?>'
6
  };
7
 
8
  </script>
includes/global-settings.php CHANGED
@@ -60,6 +60,29 @@ FLBuilder::register_settings_form('global', array(
60
  'size' => '5',
61
  'description' => 'px',
62
  'help' => __('All rows will default to this width. You can override this and make a row full width in the settings for each row.', 'fl-builder')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  )
64
  )
65
  ),
60
  'size' => '5',
61
  'description' => 'px',
62
  'help' => __('All rows will default to this width. You can override this and make a row full width in the settings for each row.', 'fl-builder')
63
+ ),
64
+ 'row_width_default' => array(
65
+ 'type' => 'select',
66
+ 'label' => __( 'Default Row Width', 'fl-builder' ),
67
+ 'default' => 'fixed',
68
+ 'options' => array(
69
+ 'fixed' => __( 'Fixed', 'fl-builder' ),
70
+ 'full' => __( 'Full Width', 'fl-builder' )
71
+ ),
72
+ 'toggle' => array(
73
+ 'full' => array(
74
+ 'fields' => array('row_content_width_default')
75
+ )
76
+ ),
77
+ ),
78
+ 'row_content_width_default' => array(
79
+ 'type' => 'select',
80
+ 'label' => __( 'Default Row Content Width', 'fl-builder' ),
81
+ 'default' => 'fixed',
82
+ 'options' => array(
83
+ 'fixed' => __( 'Fixed', 'fl-builder' ),
84
+ 'full' => __( 'Full Width', 'fl-builder' )
85
+ ),
86
  )
87
  )
88
  ),
includes/row-css.php CHANGED
@@ -24,6 +24,28 @@
24
  }
25
  <?php endif; ?>
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  <?php if($row->settings->bg_type == 'parallax' && !empty($row->settings->bg_parallax_image_src)) : ?>
28
  .fl-node-<?php echo $row->node; ?> .fl-row-content-wrap {
29
  background-repeat: no-repeat;
24
  }
25
  <?php endif; ?>
26
 
27
+ <?php if( in_array( $row->settings->bg_type, array('photo', 'parallax', 'slideshow', 'video') ) && !empty($row->settings->bg_overlay_color)) : ?>
28
+ .fl-node-<?php echo $row->node; ?> .fl-row-content-wrap {
29
+ position: relative;
30
+ }
31
+ .fl-node-<?php echo $row->node; ?> .fl-row-content-wrap:after {
32
+ content: '';
33
+ display: block;
34
+ position: absolute;
35
+ top: 0;
36
+ right: 0;
37
+ bottom: 0;
38
+ left: 0;
39
+ z-index: 0;
40
+ background-color: #<?php echo $row->settings->bg_overlay_color; ?>;
41
+ background-color: rgba(<?php echo implode(',', FLBuilderColor::hex_to_rgb($row->settings->bg_overlay_color)) ?>, <?php echo $row->settings->bg_overlay_opacity/100; ?>);
42
+ }
43
+ .fl-node-<?php echo $row->node; ?> .fl-row-content {
44
+ position: relative;
45
+ z-index: 1;
46
+ }
47
+ <?php endif; ?>
48
+
49
  <?php if($row->settings->bg_type == 'parallax' && !empty($row->settings->bg_parallax_image_src)) : ?>
50
  .fl-node-<?php echo $row->node; ?> .fl-row-content-wrap {
51
  background-repeat: no-repeat;
includes/row-js.php CHANGED
@@ -8,6 +8,10 @@ if($settings->bg_type == 'slideshow') :
8
 
9
  ?>
10
  YUI({'logExclude': { 'yui': true } }).use('fl-slideshow', function(Y) {
 
 
 
 
11
 
12
  var oldSlideshow = Y.one('.fl-node-<?php echo $id; ?> .fl-bg-slideshow .fl-slideshow'),
13
  newSlideshow = new Y.FL.Slideshow({
8
 
9
  ?>
10
  YUI({'logExclude': { 'yui': true } }).use('fl-slideshow', function(Y) {
11
+
12
+ if( null === Y.one('.fl-node-<?php echo $id; ?> .fl-bg-slideshow') ) {
13
+ return;
14
+ }
15
 
16
  var oldSlideshow = Y.one('.fl-node-<?php echo $id; ?> .fl-bg-slideshow .fl-slideshow'),
17
  newSlideshow = new Y.FL.Slideshow({
includes/row-settings.php CHANGED
@@ -14,7 +14,7 @@ FLBuilder::register_settings_form('row', array(
14
  'width' => array(
15
  'type' => 'select',
16
  'label' => __('Width', 'fl-builder'),
17
- 'default' => 'fixed',
18
  'options' => array(
19
  'fixed' => __('Fixed', 'fl-builder'),
20
  'full' => __('Full Width', 'fl-builder')
@@ -32,7 +32,7 @@ FLBuilder::register_settings_form('row', array(
32
  'content_width' => array(
33
  'type' => 'select',
34
  'label' => __('Content Width', 'fl-builder'),
35
- 'default' => 'fixed',
36
  'options' => array(
37
  'fixed' => __('Fixed', 'fl-builder'),
38
  'full' => __('Full Width', 'fl-builder')
@@ -83,16 +83,16 @@ FLBuilder::register_settings_form('row', array(
83
  'sections' => array('bg_color')
84
  ),
85
  'photo' => array(
86
- 'sections' => array('bg_photo')
87
  ),
88
  'video' => array(
89
- 'sections' => array('bg_video')
90
  ),
91
  'slideshow' => array(
92
- 'sections' => array('bg_slideshow')
93
  ),
94
  'parallax' => array(
95
- 'sections' => array('bg_parallax')
96
  )
97
  ),
98
  'preview' => array(
@@ -338,6 +338,30 @@ FLBuilder::register_settings_form('row', array(
338
  )
339
  )
340
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  'border' => array(
342
  'title' => __('Border', 'fl-builder'),
343
  'fields' => array(
14
  'width' => array(
15
  'type' => 'select',
16
  'label' => __('Width', 'fl-builder'),
17
+ 'default' => $global_settings->row_width_default,
18
  'options' => array(
19
  'fixed' => __('Fixed', 'fl-builder'),
20
  'full' => __('Full Width', 'fl-builder')
32
  'content_width' => array(
33
  'type' => 'select',
34
  'label' => __('Content Width', 'fl-builder'),
35
+ 'default' => $global_settings->row_content_width_default,
36
  'options' => array(
37
  'fixed' => __('Fixed', 'fl-builder'),
38
  'full' => __('Full Width', 'fl-builder')
83
  'sections' => array('bg_color')
84
  ),
85
  'photo' => array(
86
+ 'sections' => array('bg_photo', 'bg_overlay')
87
  ),
88
  'video' => array(
89
+ 'sections' => array('bg_video', 'bg_overlay')
90
  ),
91
  'slideshow' => array(
92
+ 'sections' => array('bg_slideshow', 'bg_overlay')
93
  ),
94
  'parallax' => array(
95
+ 'sections' => array('bg_parallax', 'bg_overlay')
96
  )
97
  ),
98
  'preview' => array(
338
  )
339
  )
340
  ),
341
+ 'bg_overlay' => array(
342
+ 'title' => __('Background Overlay', 'fl-builder'),
343
+ 'fields' => array(
344
+ 'bg_overlay_color' => array(
345
+ 'type' => 'color',
346
+ 'label' => __('Overlay Color', 'fl-builder'),
347
+ 'show_reset' => true,
348
+ 'preview' => array(
349
+ 'type' => 'none'
350
+ )
351
+ ),
352
+ 'bg_overlay_opacity' => array(
353
+ 'type' => 'text',
354
+ 'label' => __('Overlay Opacity', 'fl-builder'),
355
+ 'default' => '50',
356
+ 'description' => '%',
357
+ 'maxlength' => '3',
358
+ 'size' => '5',
359
+ 'preview' => array(
360
+ 'type' => 'none'
361
+ )
362
+ )
363
+ )
364
+ ),
365
  'border' => array(
366
  'title' => __('Border', 'fl-builder'),
367
  'fields' => array(
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.4.6',
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.4.8',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
js/fl-builder-admin-posts.js CHANGED
@@ -28,17 +28,19 @@ var FLBuilderAdminPosts;
28
  */
29
  _enableEditorClicked: function()
30
  {
31
- if(!$('body').hasClass('fl-builder-enabled')) {
32
  return;
33
  }
 
34
 
35
- $('.fl-builder-admin-tabs a').removeClass('fl-active');
36
- $(this).addClass('fl-active');
37
-
38
- FLBuilderAdminPosts.ajax({
39
- action: 'fl_builder_save',
40
- method: 'disable',
41
- }, FLBuilderAdminPosts._enableEditorComplete);
 
42
  },
43
 
44
  /**
28
  */
29
  _enableEditorClicked: function()
30
  {
31
+ if ( ! $( 'body' ).hasClass( 'fl-builder-enabled' ) ) {
32
  return;
33
  }
34
+ if ( confirm( FLBuilderAdminPostsStrings.switchToEditor ) ) {
35
 
36
+ $('.fl-builder-admin-tabs a').removeClass('fl-active');
37
+ $(this).addClass('fl-active');
38
+
39
+ FLBuilderAdminPosts.ajax({
40
+ action: 'fl_builder_save',
41
+ method: 'disable',
42
+ }, FLBuilderAdminPosts._enableEditorComplete);
43
+ }
44
  },
45
 
46
  /**
js/fl-builder-preview.js CHANGED
@@ -296,9 +296,6 @@ var FLBuilderPreview;
296
 
297
  // Remove the loading graphic.
298
  $('.fl-builder-preview-loader').remove();
299
-
300
- // Send the preview event.
301
- $( FLBuilder._contentClass ).trigger( 'preview-rendered' );
302
  },
303
 
304
  /**
@@ -399,7 +396,9 @@ var FLBuilderPreview;
399
  bgSlideshowSpeed : $(this.classes.settings + ' input[name=ss_speed]'),
400
  bgSlideshowTrans : $(this.classes.settings + ' select[name=ss_transition]'),
401
  bgSlideshowTransSpeed : $(this.classes.settings + ' input[name=ss_transitionDuration]'),
402
- bgParallaxImageSrc : $(this.classes.settings + ' select[name=bg_parallax_image_src]')
 
 
403
  });
404
 
405
  // Events
@@ -418,6 +417,8 @@ var FLBuilderPreview;
418
  this.elements.bgSlideshowTrans.on( 'change', $.proxy(this._bgSlideshowChange, this));
419
  this.elements.bgSlideshowTransSpeed.on( 'keyup', $.proxy(this._bgSlideshowChange, this));
420
  this.elements.bgParallaxImageSrc.on( 'change', $.proxy(this._bgParallaxChange, this));
 
 
421
  },
422
 
423
  /**
@@ -441,9 +442,15 @@ var FLBuilderPreview;
441
  'background-image' : 'none'
442
  });
443
 
 
 
 
 
 
444
  // Color
445
- if(val == 'color') {
446
  this.elements.bgColor.trigger('change');
 
447
  }
448
 
449
  // Photo
@@ -564,6 +571,49 @@ var FLBuilderPreview;
564
  }
565
  },
566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
567
  /* Node Border Settings
568
  ----------------------------------------------------------*/
569
 
296
 
297
  // Remove the loading graphic.
298
  $('.fl-builder-preview-loader').remove();
 
 
 
299
  },
300
 
301
  /**
396
  bgSlideshowSpeed : $(this.classes.settings + ' input[name=ss_speed]'),
397
  bgSlideshowTrans : $(this.classes.settings + ' select[name=ss_transition]'),
398
  bgSlideshowTransSpeed : $(this.classes.settings + ' input[name=ss_transitionDuration]'),
399
+ bgParallaxImageSrc : $(this.classes.settings + ' select[name=bg_parallax_image_src]'),
400
+ bgOverlayColor : $(this.classes.settings + ' input[name=bg_overlay_color]'),
401
+ bgOverlayOpacity : $(this.classes.settings + ' input[name=bg_overlay_opacity]')
402
  });
403
 
404
  // Events
417
  this.elements.bgSlideshowTrans.on( 'change', $.proxy(this._bgSlideshowChange, this));
418
  this.elements.bgSlideshowTransSpeed.on( 'keyup', $.proxy(this._bgSlideshowChange, this));
419
  this.elements.bgParallaxImageSrc.on( 'change', $.proxy(this._bgParallaxChange, this));
420
+ this.elements.bgOverlayColor.on( 'change', $.proxy(this._bgOverlayChange, this));
421
+ this.elements.bgOverlayOpacity.on( 'keyup', $.proxy(this._bgOverlayChange, this));
422
  },
423
 
424
  /**
442
  'background-image' : 'none'
443
  });
444
 
445
+ // None
446
+ if(val == 'none') {
447
+ this._bgOverlayClear();
448
+ }
449
+
450
  // Color
451
+ else if(val == 'color') {
452
  this.elements.bgColor.trigger('change');
453
+ this._bgOverlayClear();
454
  }
455
 
456
  // Photo
571
  }
572
  },
573
 
574
+ /**
575
+ * @method _bgOverlayChange
576
+ * @private
577
+ */
578
+ _bgOverlayChange: function(e)
579
+ {
580
+ var rgb, alpha, value;
581
+
582
+ if(this.elements.bgOverlayColor.val() == '' || isNaN(this.elements.bgOverlayOpacity.val())) {
583
+ this.updateCSSRule(this.classes.content + ':after', 'background-color', 'transparent');
584
+ }
585
+ else {
586
+
587
+ rgb = this.hexToRgb(this.elements.bgOverlayColor.val()),
588
+ alpha = this.parseFloat(this.elements.bgOverlayOpacity.val())/100,
589
+ value = 'rgba(' + rgb.join() + ', ' + alpha + ')';
590
+
591
+ this.delay(100, $.proxy(function(){
592
+ this.updateCSSRule(this.classes.content, 'position', 'relative');
593
+ this.updateCSSRule(this.classes.content + ':after', {
594
+ 'background-color' : value,
595
+ 'content' : "''",
596
+ 'display' : 'block',
597
+ 'position' : 'absolute',
598
+ 'top' : '0',
599
+ 'right' : '0',
600
+ 'bottom' : '0',
601
+ 'left' : '0',
602
+ 'z-index' : '0'
603
+ });
604
+ }, this));
605
+
606
+ }
607
+ },
608
+ /**
609
+ * @method _bgOverlayClear
610
+ * @private
611
+ */
612
+ _bgOverlayClear: function(e)
613
+ {
614
+ this.elements.bgOverlayColor.prev('.fl-color-picker-clear').trigger('click');
615
+ },
616
+
617
  /* Node Border Settings
618
  ----------------------------------------------------------*/
619
 
js/fl-builder.js CHANGED
@@ -1328,6 +1328,9 @@ var FLBuilder;
1328
  setTimeout(function(){
1329
  head.append(newJs);
1330
  }, 50);
 
 
 
1331
 
1332
  // Remove action overlays so they can reset.
1333
  FLBuilder._removeAllOverlays();
1328
  setTimeout(function(){
1329
  head.append(newJs);
1330
  }, 50);
1331
+
1332
+ // Send the layout rendered event.
1333
+ $( FLBuilder._contentClass ).trigger( 'fl-builder.layout-rendered' );
1334
 
1335
  // Remove action overlays so they can reset.
1336
  FLBuilder._removeAllOverlays();
languages/pt_BR.mo CHANGED
Binary file
languages/pt_BR.po CHANGED
@@ -2,4151 +2,4236 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Beaver Builder Plugin (Developer Version) v1.4.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2015-02-02 20:33:26+0000\n"
7
  "Last-Translator: developer <contato@favolla.com.br>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: CSL v1.x\n"
14
- "X-Poedit-Language: Portuguese\n"
15
- "X-Poedit-Country: BRAZIL\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
 
18
  "X-Poedit-Basepath: ../\n"
19
- "X-Poedit-Bookmarks: \n"
20
  "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
 
23
- #: classes/class-fl-builder-admin.php:39
 
24
  #, php-format
25
- #@ fl-builder
26
- msgid "This version of the <strong>Page Builder</strong> plugin is not compatible with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version of this plugin."
27
- msgstr "Esta versão do plugin<strong>Construtor de Páginas</strong> não é compatível com o WordPress Multisite. <a%s>Por favor, atualize</a> para a versão Multisite do plugin."
 
 
 
 
 
28
 
29
- #: classes/class-fl-builder-admin.php:49
30
- #@ fl-builder
31
- msgid "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or greater. Please update WordPress before activating the plugin."
32
- msgstr "O plugin <strong>Construtor de Páginas</strong> requer WordPress versão 3.5 ou superior. Por favor, atualize seu WordPress antes de ativar o plugin."
 
 
 
 
33
 
34
- #: classes/class-fl-builder-admin.php:90
 
35
  #, php-format
36
- #@ fl-builder
37
  msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
38
- msgstr "Construtor de Páginas ativado! <a%s>Clique aqui</a> para habilitar atualizações remotas."
 
 
39
 
40
- #: classes/class-fl-builder-admin.php:184
41
- #@ fl-builder
42
  msgctxt "Plugin action link label."
43
  msgid "Upgrade"
44
  msgstr "Atualizar"
45
 
46
- #: classes/class-fl-builder-admin.php:197
47
- #: classes/class-fl-builder-model.php:2437
48
- #@ fl-builder
49
  msgid "Page Builder"
50
  msgstr "Construtor de Páginas"
51
 
52
- #: classes/class-fl-builder-model.php:1852
 
53
  #, php-format
54
- #@ fl-builder
55
  msgctxt "%s stands for post/page title."
56
  msgid "Copy of %s"
57
  msgstr "Cópia de %s"
58
 
 
59
  #: classes/class-fl-builder-photo.php:75
60
- #@ fl-builder
61
  msgctxt "Image size."
62
  msgid "Full Size"
63
  msgstr "Tamanho Completo"
64
 
 
65
  #: classes/class-fl-builder-photo.php:76
66
- #@ fl-builder
67
  msgctxt "Image size."
68
  msgid "Large"
69
  msgstr "Grande"
70
 
 
71
  #: classes/class-fl-builder-photo.php:77
72
- #@ fl-builder
73
  msgctxt "Image size."
74
  msgid "Medium"
75
  msgstr "Médio"
76
 
 
77
  #: classes/class-fl-builder-photo.php:78
78
- #@ fl-builder
79
  msgctxt "Image size."
80
  msgid "Thumbnail"
81
  msgstr "Thumbnail"
82
 
 
 
 
 
 
83
  #: classes/class-fl-builder.php:699
84
  #, php-format
85
- #@ fl-builder
86
  msgctxt "Field name to add."
87
  msgid "Add %s"
88
  msgstr "Adicionar %s"
89
 
90
- #: classes/class-fl-builder.php:762
91
- #: classes/class-fl-builder.php:764
92
- #@ fl-builder
93
  msgctxt "Custom post type label."
94
  msgid "Layout Templates"
95
  msgstr "Templates de Layout"
96
 
97
- #: classes/class-fl-builder.php:763
98
- #: classes/class-fl-builder.php:765
99
- #@ fl-builder
100
  msgctxt "Custom post type label."
101
  msgid "Layout Template"
102
  msgstr "Template de Layout"
103
 
 
104
  #: classes/class-fl-builder.php:766
105
- #@ fl-builder
106
  msgctxt "Custom post type label."
107
  msgid "Add New"
108
  msgstr "Adicionar Novo"
109
 
 
110
  #: classes/class-fl-builder.php:767
111
- #@ fl-builder
112
  msgctxt "Custom post type label."
113
  msgid "Add New Layout Template"
114
  msgstr "Adicionar Novo Template de Layout"
115
 
 
116
  #: classes/class-fl-builder.php:768
117
- #@ fl-builder
118
  msgctxt "Custom post type label."
119
  msgid "New Layout Template"
120
  msgstr "Novo Template de Layout"
121
 
 
122
  #: classes/class-fl-builder.php:769
123
- #@ fl-builder
124
  msgctxt "Custom post type label."
125
  msgid "Edit Layout Template"
126
  msgstr "Editar Template de Layout"
127
 
 
128
  #: classes/class-fl-builder.php:770
129
- #@ fl-builder
130
  msgctxt "Custom post type label."
131
  msgid "View Layout Template"
132
  msgstr "Ver Template de Layout"
133
 
 
134
  #: classes/class-fl-builder.php:771
135
- #@ fl-builder
136
  msgctxt "Custom post type label."
137
  msgid "All Layout Templates"
138
  msgstr "Todos os Templates de Layout"
139
 
 
140
  #: classes/class-fl-builder.php:772
141
- #@ fl-builder
142
  msgctxt "Custom post type label."
143
  msgid "Search Layout Templates"
144
  msgstr "Pesquisar Templates de Layout"
145
 
 
146
  #: classes/class-fl-builder.php:773
147
- #@ fl-builder
148
  msgctxt "Custom post type label."
149
  msgid "Parent Layout Templates:"
150
  msgstr "Template de Layout Pai:"
151
 
 
152
  #: classes/class-fl-builder.php:774
153
- #@ fl-builder
154
  msgctxt "Custom post type label."
155
  msgid "No layout templates found."
156
  msgstr "Nenhum template de layout encontrado."
157
 
 
158
  #: classes/class-fl-builder.php:775
159
- #@ fl-builder
160
  msgctxt "Custom post type label."
161
  msgid "No layout templates found in Trash."
162
  msgstr "Nenhum template de layout encontrado na Lixeira."
163
 
164
- #: classes/class-fl-builder.php:1113
165
- #: includes/js-config.php:58
166
  #, php-format
167
- #@ fl-builder
168
  msgctxt "%s stands for module name."
169
  msgid "%s Settings"
170
  msgstr "%s - Configurações"
171
 
172
- #: includes/admin-branding.php:3
173
- #: includes/admin-settings.php:36
174
- #@ fl-builder
175
  msgid "Branding"
176
  msgstr ""
177
 
 
178
  #: includes/admin-branding.php:11
179
- #@ fl-builder
180
  msgid "White label the page builder by entering a custom name below."
181
- msgstr "Customize a marca do Construtor de Páginas inserindo um nome customizado abaixo."
 
 
182
 
 
183
  #: includes/admin-branding.php:14
184
- #@ fl-builder
185
- msgid "Additionally, you may also add a custom icon by entering the URL of an image below. Leave the field blank if you do not wish to use an icon."
186
- msgstr "Adicionalmente, você pode também adicionar um ícone customizado inserindo a url de uma imagem abaixo. Deixe o campo em branco se você não deseja usar um ícone."
187
-
188
- #: includes/admin-branding.php:18
189
- #@ fl-builder
190
- msgid "Save Branding"
191
- msgstr "Salvar Branding"
192
-
193
- #: includes/admin-posts.php:3
194
- #: modules/rich-text/rich-text.php:14
195
- #@ fl-builder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  msgid "Text Editor"
197
  msgstr "Editor de Texto"
198
 
 
199
  #: includes/admin-posts.php:7
200
  #, php-format
201
- #@ fl-builder
202
  msgctxt "%s stands for custom branded \"Page Builder\" name."
203
  msgid "%s is currently active for this page."
204
  msgstr "%s está atualmente ativo para esta página."
205
 
 
206
  #: includes/admin-posts.php:8
207
  #, php-format
208
- #@ fl-builder
209
  msgctxt "%s stands for custom branded \"Page Builder\" name."
210
  msgid "Launch %s"
211
  msgstr "Iniciar %s"
212
 
213
- #: includes/admin-settings.php:7
214
- #: includes/global-settings.php:4
 
215
  #, php-format
216
- #@ fl-builder
217
  msgctxt "%s stands for custom branded \"Page Builder\" name."
218
  msgid "%s Settings"
219
  msgstr "Configurações do %s"
220
 
221
- #: includes/admin-settings.php:12
222
- #@ fl-builder
223
  msgid "Settings updated!"
224
  msgstr "Configurações atualizadas!"
225
 
226
- #: includes/admin-settings.php:19
227
- #@ fl-builder
228
  msgid "License"
229
  msgstr "Licença"
230
 
231
- #: includes/admin-settings.php:23
232
- #: includes/admin-settings.php:59
233
- #@ fl-builder
234
  msgid "Upgrade"
235
  msgstr "Atualizar"
236
 
237
- #: includes/admin-settings.php:26
238
- #: includes/global-settings.php:67
239
- #@ fl-builder
240
  msgid "Modules"
241
  msgstr "Módulos"
242
 
243
- #: includes/admin-settings.php:29
 
244
  #: includes/ui.php:44
245
- #@ fl-builder
246
  msgid "Templates"
247
  msgstr ""
248
 
249
- #: includes/admin-settings.php:32
250
- #: includes/admin-settings.php:163
251
- #@ fl-builder
252
  msgid "Post Types"
253
  msgstr "Tipos de Post"
254
 
255
- #: includes/admin-settings.php:33
256
- #@ fl-builder
257
  msgid "Editing"
258
  msgstr "Edição"
259
 
260
- #: includes/admin-settings.php:40
261
- #: includes/admin-settings.php:250
262
- #: includes/admin-settings.php:262
263
- #@ fl-builder
264
  msgid "Uninstall"
265
  msgstr "Desinstalar"
266
 
 
267
  #: includes/admin-settings.php:61
268
- #@ fl-builder
269
- msgid "You are currently running the lite version of the Beaver Builder plugin. Upgrade today for access to premium features such as advanced modules, templates, support and more!"
270
- msgstr "Atualmente você está usando a versão lite do plugin Beaver Builder. Atualize hoje para ter acesso a recursos premium como módulos avançados, templates, suporte e muito mais!"
 
 
 
 
 
271
 
 
272
  #: includes/admin-settings.php:63
273
- #@ fl-builder
274
  msgid "Upgrade Now"
275
  msgstr "Atualizar Agora"
276
 
 
277
  #: includes/admin-settings.php:65
278
- #@ fl-builder
279
  msgid "Learn More"
280
  msgstr "Saiba Mais"
281
 
282
- #: includes/admin-settings.php:74
283
- #@ fl-builder
284
  msgid "Enabled Modules"
285
  msgstr "Módulos Ativados"
286
 
287
- #: includes/admin-settings.php:81
288
- #: includes/admin-settings.php:132
289
- #: includes/admin-settings.php:170
290
- #: includes/admin-settings.php:222
291
- #@ fl-builder
292
  msgid "Override network settings?"
293
  msgstr "Sobrescrever configurações da rede?"
294
 
295
- #: includes/admin-settings.php:87
296
- #@ fl-builder
297
  msgid "Check or uncheck modules below to enable or disable them."
298
  msgstr "Marque ou desmarque módulos abaixo para ativá-los ou desativá-los."
299
 
300
- #: includes/admin-settings.php:96
301
- #@ fl-builder
302
  msgctxt "Plugin setup page: Modules."
303
  msgid "All"
304
  msgstr "Todos"
305
 
306
- #: includes/admin-settings.php:114
307
- #@ fl-builder
308
- msgid "Save Module Settings"
309
- msgstr "Salvar Configurações de Módulos"
310
-
311
- #: includes/admin-settings.php:125
312
- #@ fl-builder
313
  msgid "Template Settings"
314
  msgstr "Configurações de Template"
315
 
316
- #: includes/admin-settings.php:138
317
- #@ fl-builder
318
  msgid "Enable or disable templates using the options below."
319
  msgstr "Ative ou desative templates usando as opções abaixo."
320
 
321
- #: includes/admin-settings.php:145
322
- #@ fl-builder
323
  msgid "Enable All Templates"
324
  msgstr "Ativar Todos os Templates"
325
 
326
- #: includes/admin-settings.php:146
327
- #@ fl-builder
328
  msgid "Enable Core Templates Only"
329
  msgstr "Ativar Templates Padrões Apenas"
330
 
331
- #: includes/admin-settings.php:147
332
- #@ fl-builder
333
  msgid "Enable User Templates Only"
334
  msgstr "Usar apenas Templates definidos pelo Usuário"
335
 
336
- #: includes/admin-settings.php:148
337
- #@ fl-builder
338
  msgid "Disable All Templates"
339
  msgstr "Desativar Todos os Templates"
340
 
341
- #: includes/admin-settings.php:152
342
- #@ fl-builder
343
- msgid "Save Template Settings"
344
- msgstr "Salvar Configurações de Templates"
345
-
346
  #: includes/admin-settings.php:176
347
- #@ fl-builder
348
  msgid "Select the post types you would like the builder to work with."
349
- msgstr "Selecione os tipos de post em que você gostaria que o construtor de páginas funcione."
 
 
350
 
351
- #: includes/admin-settings.php:177
352
- #@ fl-builder
353
  msgid "NOTE: Not all custom post types may be supported."
354
- msgstr "NOTA: Possivelmente, nem todos os tipos de post customizados podem ser suportados."
355
-
356
- #: includes/admin-settings.php:205
357
- #@ fl-builder
358
- msgid "Save Post Types"
359
- msgstr "Salvar Tipos de Post"
360
 
361
- #: includes/admin-settings.php:215
362
- #@ fl-builder
363
  msgid "Editing Settings"
364
  msgstr "Configurações de Edição"
365
 
366
- #: includes/admin-settings.php:228
 
367
  #, php-format
368
- #@ fl-builder
369
- msgid "Set the <a%s>capability</a> required for users to access advanced builder editing such as adding, deleting or moving modules."
370
- msgstr "Configure uma<a%s>capacidade</a> obrigatória de usuários para acessar o modo de edição avançada do construtor de páginas, como adicionar, deleter ou mover módulos."
371
-
372
- #: includes/admin-settings.php:234
373
- #@ fl-builder
374
- msgid "Save Editing Settings"
375
- msgstr "Salvar Configurações de Edição"
376
-
377
- #: includes/admin-settings.php:252
378
- #@ fl-builder
379
- msgid "Clicking the button below will uninstall the page builder plugin and delete all of the data associated with it. You can uninstall or deactivate the page builder from the plugins page instead if you do not wish to delete the data."
380
- msgstr "Ao clicar no botão abaixo, você irá desinstalar o construtor de páginas e deletará todos os dados associados a ele. Você pode, como alternativa, desinstalar ou desativar o construtor de páginas na página de plugins se você não deseja deletar os dados."
381
-
382
- #: includes/admin-settings.php:254
383
- #: includes/admin-settings.php:257
 
 
 
 
 
 
 
384
  #: includes/updater/includes/form.php:31
385
- #@ fl-builder
386
  msgid "NOTE:"
387
  msgstr "NOTA:"
388
 
389
- #: includes/admin-settings.php:254
390
- #@ fl-builder
391
- msgid "The builder does not delete the post meta <code>_fl_builder_data</code>, <code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case you want to reinstall it later. If you do, the builder will rebuild all of its data using those meta values."
392
- msgstr "O construtor de páginas não deleta os dados de post <code>_fl_builder_data</code>, <code>_fl_builder_draft</code> e <code>_fl_builder_enabled</code> no caso de você desejar reinstalar o plugin posteriormente. Se esse for o caso,o construtor de páginas irá reconstruir todos os seus dados usando os valores de dados preservados."
393
-
394
- #: includes/admin-settings.php:257
 
 
 
 
 
 
 
 
 
 
395
  #: includes/updater/includes/form.php:31
396
- #@ fl-builder
397
  msgid "This applies to all sites on the network."
398
  msgstr "Isto se aplica a todos os sites na rede."
399
 
400
- #: includes/admin-settings.php:276
401
- #@ fl-builder
402
- msgid "Please type \"uninstall\" in the box below to confirm that you really want to uninstall the page builder and all of its data."
403
- msgstr "Por favor, digite \"uninstall\" na caixa abaixo para confirmar que você realmente deseja desinstalar o construtor de páginas e todos os seus dados."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
 
 
405
  #: includes/column-settings.php:4
406
- #: includes/js-config.php:21
407
- #@ fl-builder
408
  msgid "Column Settings"
409
  msgstr "Configurações de Coluna"
410
 
411
- #: includes/column-settings.php:7
412
- #: includes/module-settings.php:95
413
- #: includes/row-settings.php:9
414
- #: modules/accordion/accordion.php:45
415
- #: modules/button/button.php:95
416
- #: modules/callout/callout.php:239
417
- #: modules/content-slider/content-slider.php:419
418
- #: modules/cta/cta.php:99
419
- #: modules/heading/heading.php:69
420
- #: modules/icon/icon.php:75
421
- #: modules/icon-group/icon-group.php:44
422
- #: modules/pricing-table/pricing-table.php:43
423
  #: modules/pricing-table/pricing-table.php:155
424
- #: modules/separator/separator.php:72
425
- #: modules/tabs/tabs.php:45
426
- #@ fl-builder
427
  msgid "Style"
428
  msgstr "Estilo"
429
 
 
430
  #: includes/column-settings.php:14
431
- #@ fl-builder
432
  msgid "Column Width"
433
  msgstr "Largura da Coluna"
434
 
435
- #: includes/column-settings.php:26
436
- #: includes/row-settings.php:48
437
- #: modules/button/button.php:53
438
- #: modules/callout/callout.php:223
439
- #: modules/callout/callout.php:476
440
- #: modules/callout/callout.php:492
441
  #: modules/content-slider/content-slider.php:376
442
- #: modules/content-slider/content-slider.php:610
443
- #: modules/cta/cta.php:82
444
  #: modules/cta/cta.php:219
445
- #@ fl-builder
446
  msgid "Text"
447
  msgstr "Texto"
448
 
449
- #: includes/column-settings.php:30
450
- #: includes/column-settings.php:43
451
- #: includes/column-settings.php:100
452
- #: includes/row-settings.php:52
453
- #: includes/row-settings.php:109
454
- #: includes/row-settings.php:379
455
  #: modules/callout/callout.php:389
456
  #: modules/content-slider/content-slider.php:331
457
- #: modules/icon/icon.php:82
458
- #: modules/icon-group/icon-group.php:51
459
  #: modules/separator/separator.php:34
460
- #@ fl-builder
461
  msgid "Color"
462
  msgstr "Cor"
463
 
464
- #: includes/column-settings.php:39
465
- #: includes/row-settings.php:105
466
- #: modules/button/button.php:102
467
- #: modules/callout/callout.php:402
468
  #: modules/callout/callout.php:506
469
  #: modules/content-slider/content-slider.php:357
470
- #: modules/content-slider/content-slider.php:624
471
- #: modules/cta/cta.php:195
472
- #: modules/cta/cta.php:262
473
  #: modules/icon/icon.php:95
474
- #: modules/icon-group/icon-group.php:64
475
- #@ fl-builder
476
  msgid "Background Color"
477
  msgstr "Cor de Fundo"
478
 
479
- #: includes/column-settings.php:51
480
- #: includes/column-settings.php:108
481
- #: includes/row-settings.php:117
482
- #: includes/row-settings.php:387
483
  #: modules/separator/separator.php:44
484
- #@ fl-builder
485
  msgid "Opacity"
486
  msgstr "Opacidade"
487
 
488
- #: includes/column-settings.php:63
489
- #: includes/row-settings.php:342
490
- #@ fl-builder
491
  msgid "Border"
492
  msgstr "Borda"
493
 
494
- #: includes/column-settings.php:67
495
- #: includes/row-settings.php:65
496
- #: includes/row-settings.php:346
497
- #: modules/callout/callout.php:472
498
  #: modules/content-slider/content-slider.php:325
499
  #: modules/content-slider/content-slider.php:372
500
  #: modules/content-slider/content-slider.php:590
501
  #: modules/content-slider/content-slider.php:694
502
  #: modules/slideshow/slideshow.php:339
503
- #@ fl-builder
504
  msgid "Type"
505
  msgstr "Tipo"
506
 
507
- #: includes/column-settings.php:69
508
- #: includes/row-settings.php:348
509
- #@ fl-builder
510
- msgid "The type of border to use. Double borders must have a width of at least 3px to render properly."
511
- msgstr "O tipo de borda a ser usado. Bordas duplas precisam ter uma largura de ao menos 3px para renderizar adequadamente."
 
 
 
512
 
513
- #: includes/column-settings.php:71
514
- #: includes/row-settings.php:350
515
- #@ fl-builder
516
  msgctxt "Border type."
517
  msgid "None"
518
  msgstr "Nenhum"
519
 
520
- #: includes/column-settings.php:72
521
- #: includes/row-settings.php:351
522
  #: modules/separator/separator.php:75
523
- #@ fl-builder
524
  msgctxt "Border type."
525
  msgid "Solid"
526
  msgstr "Sólida"
527
 
528
- #: includes/column-settings.php:73
529
- #: includes/row-settings.php:352
530
  #: modules/separator/separator.php:76
531
- #@ fl-builder
532
  msgctxt "Border type."
533
  msgid "Dashed"
534
  msgstr "Tracejada"
535
 
536
- #: includes/column-settings.php:74
537
- #: includes/row-settings.php:353
538
  #: modules/separator/separator.php:77
539
- #@ fl-builder
540
  msgctxt "Border type."
541
  msgid "Dotted"
542
  msgstr "Pontilhada"
543
 
544
- #: includes/column-settings.php:75
545
- #: includes/row-settings.php:354
546
  #: modules/separator/separator.php:78
547
- #@ fl-builder
548
  msgctxt "Border type."
549
  msgid "Double"
550
  msgstr "Dupla"
551
 
552
- #: includes/column-settings.php:119
553
- #: includes/row-settings.php:398
554
- #@ fl-builder
555
  msgid "Top Width"
556
  msgstr "Largura do topo"
557
 
558
- #: includes/column-settings.php:131
559
- #: includes/row-settings.php:410
560
- #@ fl-builder
561
  msgid "Bottom Width"
562
  msgstr "Largura da Base"
563
 
564
- #: includes/column-settings.php:143
565
- #: includes/row-settings.php:422
566
- #@ fl-builder
567
  msgid "Left Width"
568
  msgstr "Largura da Esquerda"
569
 
570
- #: includes/column-settings.php:155
571
- #: includes/row-settings.php:434
572
- #@ fl-builder
573
  msgid "Right Width"
574
  msgstr "Largura da Direita"
575
 
576
- #: includes/column-settings.php:170
577
- #: includes/module-settings.php:6
578
- #: includes/row-settings.php:449
579
- #: modules/content-slider/content-slider.php:267
580
- #@ fl-builder
581
  msgid "Advanced"
582
  msgstr "Avançado"
583
 
584
- #: includes/column-settings.php:177
585
- #: includes/module-settings.php:13
586
- #: includes/row-settings.php:456
587
- #@ fl-builder
588
  msgid "CSS Class"
589
  msgstr "Classe CSS"
590
 
 
591
  #: includes/column-settings.php:178
592
- #@ fl-builder
593
- msgid "A custom CSS class that will be applied to this column. Spaces only, no dots."
594
- msgstr "Uma classe CSS customizada que será aplicada a esta coluna. Somente espaços, sem pontos."
 
 
595
 
596
- #: includes/column-settings.php:186
597
- #: includes/global-settings.php:80
598
- #@ fl-builder
599
  msgid "Responsive Layout"
600
  msgstr "Layout Responsivo"
601
 
602
- #: includes/column-settings.php:190
603
- #: includes/module-settings.php:21
604
- #: includes/row-settings.php:464
605
- #: modules/slideshow/slideshow.php:290
606
- #@ fl-builder
607
  msgid "Display"
608
  msgstr "Mostrar"
609
 
610
- #: includes/column-settings.php:192
611
- #: includes/module-settings.php:23
612
- #: includes/row-settings.php:466
613
- #@ fl-builder
614
  msgid "Always"
615
  msgstr "Sempre"
616
 
617
- #: includes/column-settings.php:193
618
- #: includes/module-settings.php:24
619
- #: includes/row-settings.php:467
620
- #@ fl-builder
621
  msgid "Large Devices Only"
622
  msgstr "Apenas para Dispositivos Grandes"
623
 
624
- #: includes/column-settings.php:194
625
- #: includes/module-settings.php:25
626
- #: includes/row-settings.php:468
627
- #@ fl-builder
628
  msgid "Large &amp; Medium Devices Only"
629
  msgstr "Apenas Dispositivos Grandes &amp; Médios"
630
 
631
- #: includes/column-settings.php:195
632
- #: includes/module-settings.php:26
633
- #: includes/row-settings.php:469
634
- #@ fl-builder
635
  msgid "Medium Devices Only"
636
  msgstr "Apenas Dispositivos Médios"
637
 
638
- #: includes/column-settings.php:196
639
- #: includes/module-settings.php:27
640
- #: includes/row-settings.php:470
641
- #@ fl-builder
642
  msgid "Medium &amp; Small Devices Only"
643
  msgstr "Apenas Dispositivos Médios &amp; Pequenos"
644
 
645
- #: includes/column-settings.php:197
646
- #: includes/module-settings.php:28
647
- #: includes/row-settings.php:471
648
- #@ fl-builder
649
  msgid "Small Devices Only"
650
  msgstr "Apenas dispositivos Pequenos"
651
 
 
652
  #: includes/column-settings.php:199
653
- #@ fl-builder
654
  msgid "Choose whether to show or hide this column at different device sizes."
655
- msgstr "Escolha entre mostrar ou esconder esta coluna em diferentes tamanhos de dispositivo."
 
 
656
 
 
657
  #: includes/column-settings.php:206
658
- #@ fl-builder
659
  msgid "Medium Device Width"
660
  msgstr "Largura de Dispositivo Médio"
661
 
 
662
  #: includes/column-settings.php:207
663
- #@ fl-builder
664
  msgid "The width of this column on medium devices such as tablets."
665
  msgstr "A largura desta coluna em dispositivos médios, como tablets."
666
 
667
- #: includes/column-settings.php:209
668
- #: includes/column-settings.php:237
669
  #: modules/callout/callout.php:281
670
- #: modules/content-slider/content-slider.php:442
671
- #: modules/cta/cta.php:165
672
- #: modules/heading/heading.php:117
673
- #: modules/heading/heading.php:144
674
  #: modules/heading/heading.php:174
675
- #@ fl-builder
676
  msgid "Default"
677
  msgstr "Padrão"
678
 
679
- #: includes/column-settings.php:210
680
- #: includes/column-settings.php:238
681
- #: modules/button/button.php:151
682
- #: modules/callout/callout.php:282
683
- #: modules/content-slider/content-slider.php:443
684
- #: modules/cta/cta.php:166
685
- #: modules/heading/heading.php:118
686
- #: modules/heading/heading.php:145
687
  #: modules/heading/heading.php:175
688
  #: modules/social-buttons/social-buttons.php:74
689
- #@ fl-builder
690
  msgid "Custom"
691
  msgstr "Customizado"
692
 
 
693
  #: includes/column-settings.php:223
694
- #@ fl-builder
695
  msgid "Custom Medium Device Width"
696
  msgstr "Largura Customizada de Dispositivo Médio"
697
 
 
698
  #: includes/column-settings.php:234
699
- #@ fl-builder
700
  msgid "Small Device Width"
701
  msgstr "Largura de Dispositivo Pequeno"
702
 
 
703
  #: includes/column-settings.php:235
704
- #@ fl-builder
705
  msgid "The width of this column on small devices such as phones."
706
  msgstr "A largura desta coluna em dispositivos pequenos, como smartphones."
707
 
 
708
  #: includes/column-settings.php:251
709
- #@ fl-builder
710
  msgid "Custom Small Device Width"
711
  msgstr "Largura Customizada de Dispositivo Pequeno"
712
 
713
- #: includes/column-settings.php:263
714
- #: includes/global-settings.php:41
715
- #: includes/global-settings.php:71
716
- #: includes/module-settings.php:38
717
- #: includes/row-settings.php:481
718
- #@ fl-builder
719
  msgid "Margins"
720
  msgstr "Margens"
721
 
722
- #: includes/column-settings.php:267
723
- #: includes/column-settings.php:320
724
- #: includes/module-settings.php:42
725
- #: includes/row-settings.php:485
726
- #: includes/row-settings.php:538
727
- #: modules/slideshow/slideshow.php:475
728
- #@ fl-builder
729
  msgid "Top"
730
  msgstr "Topo"
731
 
732
- #: includes/column-settings.php:279
733
- #: includes/column-settings.php:332
734
- #: includes/module-settings.php:54
735
- #: includes/row-settings.php:497
736
- #: includes/row-settings.php:550
737
- #: modules/slideshow/slideshow.php:474
738
- #@ fl-builder
739
  msgid "Bottom"
740
  msgstr "Base"
741
 
742
- #: includes/column-settings.php:291
743
- #: includes/column-settings.php:344
744
- #: includes/module-settings.php:66
745
- #: includes/row-settings.php:509
746
- #: includes/row-settings.php:562
747
- #: modules/button/button.php:177
748
  #: modules/callout/callout.php:250
749
- #: modules/content-slider/content-slider.php:470
750
- #: modules/cta/cta.php:123
751
- #: modules/heading/heading.php:89
752
- #: modules/heading/heading.php:161
753
- #: modules/icon/icon.php:134
754
- #: modules/icon-group/icon-group.php:111
755
- #: modules/photo/photo.php:417
756
- #: modules/social-buttons/social-buttons.php:101
757
- #@ fl-builder
758
  msgid "Left"
759
  msgstr "Esquerda"
760
 
761
- #: includes/column-settings.php:303
762
- #: includes/column-settings.php:356
763
- #: includes/module-settings.php:78
764
- #: includes/row-settings.php:521
765
- #: includes/row-settings.php:574
766
- #: modules/button/button.php:178
767
  #: modules/callout/callout.php:251
768
- #: modules/content-slider/content-slider.php:472
769
- #: modules/cta/cta.php:125
770
- #: modules/heading/heading.php:91
771
- #: modules/heading/heading.php:163
772
- #: modules/icon/icon.php:135
773
- #: modules/icon-group/icon-group.php:112
774
- #: modules/photo/photo.php:419
775
- #: modules/social-buttons/social-buttons.php:102
776
- #@ fl-builder
777
  msgid "Right"
778
  msgstr "Direita"
779
 
780
- #: includes/column-settings.php:316
781
- #: includes/global-settings.php:49
782
- #: includes/row-settings.php:534
783
- #: modules/button/button.php:191
784
  #: modules/callout/callout.php:567
785
- #: modules/content-slider/content-slider.php:668
786
- #: modules/cta/cta.php:314
787
- #@ fl-builder
788
  msgid "Padding"
789
  msgstr ""
790
 
791
- #: includes/field-form.php:17
 
792
  #, php-format
793
- #@ fl-builder
794
  msgctxt "%s stands for form field label."
795
  msgid "Edit %s"
796
  msgstr "Editar %s"
797
 
798
- #: includes/field-icon.php:2
799
- #: includes/icon-selector.php:2
800
- #@ fl-builder
801
  msgid "Select Icon"
802
  msgstr "Selecionar Ícone"
803
 
804
- #: includes/field-icon.php:5
805
- #: includes/field-photo.php:13
806
- #@ fl-builder
807
  msgid "Replace"
808
  msgstr "Substituir"
809
 
 
810
  #: includes/field-icon.php:7
811
- #: includes/js-config.php:50
812
- #@ fl-builder
813
  msgid "Remove"
814
  msgstr "Remover"
815
 
 
816
  #: includes/field-link.php:3
817
- #@ fl-builder
818
  msgid "Select"
819
  msgstr "Selecionar"
820
 
 
821
  #: includes/field-link.php:5
822
- #@ fl-builder
823
  msgid "Enter a post title to search."
824
  msgstr "Digite um título de post para pesquisar."
825
 
826
- #: includes/field-link.php:6
827
- #: includes/field-suggest.php:7
828
- #@ fl-builder
829
- msgid "Start typing..."
830
- msgstr "Comece a digitar..."
831
-
832
- #: includes/field-link.php:7
833
- #: includes/icon-selector.php:28
834
- #: includes/js-config.php:17
835
- #: includes/settings.php:63
836
- #: includes/template-selector.php:102
837
  #: includes/ui.php:11
838
- #@ fl-builder
839
  msgid "Cancel"
840
  msgstr "Cancelar"
841
 
 
842
  #: includes/field-multiple-photos.php:8
843
  #, php-format
844
- #@ fl-builder
845
  msgid "1 Photo Selected"
846
  msgid_plural "%d Photos Selected"
847
  msgstr[0] "1 Foto Selecionada"
848
  msgstr[1] "%d Fotos Selecionadas"
849
 
 
850
  #: includes/field-multiple-photos.php:13
851
- #@ fl-builder
852
  msgid "Create Gallery"
853
  msgstr "Criar Galeria"
854
 
 
855
  #: includes/field-multiple-photos.php:14
856
- #@ fl-builder
857
  msgid "Edit Gallery"
858
  msgstr "Editar Galeria"
859
 
 
860
  #: includes/field-multiple-photos.php:15
861
- #@ fl-builder
862
  msgid "Add Photos"
863
  msgstr "Adicionar Fotos"
864
 
 
865
  #: includes/field-photo.php:3
866
- #: includes/js-config.php:55
867
- #@ fl-builder
868
  msgid "Select Photo"
869
  msgstr "Selecionar Foto"
870
 
871
- #: includes/field-photo.php:12
872
- #: includes/template-selector.php:83
873
- #@ fl-builder
874
- msgid "Edit"
875
- msgstr "Editar"
876
-
877
  #: includes/field-video.php:3
878
- #: includes/js-config.php:57
879
- #@ fl-builder
880
  msgid "Select Video"
881
  msgstr "Selecionar Vídeo"
882
 
 
883
  #: includes/field-video.php:17
884
- #@ fl-builder
885
  msgid "Replace Video"
886
  msgstr "Substituir Vídeo"
887
 
888
- #: includes/global-settings.php:7
889
- #: includes/user-template-settings.php:7
890
- #: modules/accordion/accordion.php:110
891
- #: modules/button/button.php:46
892
- #: modules/callout/callout.php:207
893
  #: modules/contact-form/contact-form.php:57
894
  #: modules/content-slider/content-slider.php:184
895
- #: modules/content-slider/content-slider.php:308
896
- #: modules/cta/cta.php:65
897
- #: modules/gallery/gallery.php:213
898
- #: modules/heading/heading.php:26
899
- #: modules/html/html.php:26
900
- #: modules/icon/icon.php:27
901
- #: modules/icon-group/icon-group.php:128
902
- #: modules/map/map.php:26
903
- #: modules/photo/photo.php:368
904
  #: modules/pricing-table/pricing-table.php:87
905
- #: modules/rich-text/rich-text.php:26
906
- #: modules/separator/separator.php:27
907
- #: modules/sidebar/sidebar.php:27
908
- #: modules/slideshow/slideshow.php:256
909
- #: modules/social-buttons/social-buttons.php:64
910
- #: modules/tabs/tabs.php:77
911
  #: modules/testimonials/testimonials.php:30
912
- #: modules/testimonials/testimonials.php:200
913
- #: modules/video/video.php:76
914
- #: modules/widget/widget.php:64
915
- #: modules/woocommerce/woocommerce.php:50
916
- #@ fl-builder
917
  msgid "General"
918
  msgstr "Geral"
919
 
 
920
  #: includes/global-settings.php:8
921
- #@ fl-builder
922
  msgid "Note: These settings apply to all posts and pages."
923
  msgstr "Nota: Estas configurações são aplicadas a todos os posts e páginas."
924
 
 
925
  #: includes/global-settings.php:11
926
- #@ fl-builder
927
  msgid "Default Page Heading"
928
  msgstr "Cabeçalho padrão de Página"
929
 
 
930
  #: includes/global-settings.php:15
931
- #@ fl-builder
932
- msgctxt "General settings form field label. Intended meaning: \"Show page heading?\""
933
  msgid "Show"
934
  msgstr "Mostrar"
935
 
936
- #: includes/global-settings.php:18
937
- #: includes/global-settings.php:87
938
- #: includes/row-settings.php:307
939
- #: modules/accordion/accordion.php:90
940
- #: modules/button/button.php:135
941
- #: modules/callout/callout.php:418
942
- #: modules/callout/callout.php:539
943
- #: modules/content-slider/content-slider.php:203
944
- #: modules/content-slider/content-slider.php:217
945
- #: modules/content-slider/content-slider.php:251
946
- #: modules/content-slider/content-slider.php:260
947
- #: modules/content-slider/content-slider.php:531
948
- #: modules/content-slider/content-slider.php:649
949
- #: modules/cta/cta.php:295
950
- #: modules/icon/icon.php:111
951
- #: modules/icon-group/icon-group.php:80
952
- #: modules/slideshow/slideshow.php:315
953
- #: modules/slideshow/slideshow.php:325
954
- #: modules/slideshow/slideshow.php:376
955
- #: modules/slideshow/slideshow.php:417
956
- #: modules/slideshow/slideshow.php:439
957
- #: modules/slideshow/slideshow.php:488
958
- #: modules/slideshow/slideshow.php:497
959
- #: modules/slideshow/slideshow.php:506
960
- #: modules/slideshow/slideshow.php:515
961
- #: modules/slideshow/slideshow.php:524
962
- #: modules/slideshow/slideshow.php:533
963
- #: modules/slideshow/slideshow.php:542
964
- #: modules/slideshow/slideshow.php:556
965
- #: modules/slideshow/slideshow.php:571
966
- #: modules/slideshow/slideshow.php:606
967
- #: modules/slideshow/slideshow.php:618
968
- #: modules/slideshow/slideshow.php:630
969
- #: modules/slideshow/slideshow.php:642
970
- #: modules/social-buttons/social-buttons.php:111
971
- #: modules/social-buttons/social-buttons.php:120
972
- #: modules/social-buttons/social-buttons.php:129
973
- #: modules/testimonials/testimonials.php:85
974
- #: modules/testimonials/testimonials.php:124
975
- #: modules/testimonials/testimonials.php:154
976
- #: modules/video/video.php:111
977
- #: modules/video/video.php:123
978
- #@ fl-builder
979
- msgid "No"
980
- msgstr "Não"
981
-
982
- #: includes/global-settings.php:19
983
- #: includes/global-settings.php:88
984
- #: includes/row-settings.php:308
985
- #: modules/accordion/accordion.php:89
986
- #: modules/button/button.php:136
987
- #: modules/callout/callout.php:419
988
- #: modules/callout/callout.php:540
989
- #: modules/content-slider/content-slider.php:204
990
- #: modules/content-slider/content-slider.php:218
991
- #: modules/content-slider/content-slider.php:252
992
- #: modules/content-slider/content-slider.php:261
993
- #: modules/content-slider/content-slider.php:532
994
- #: modules/content-slider/content-slider.php:650
995
- #: modules/cta/cta.php:296
996
- #: modules/icon/icon.php:112
997
- #: modules/icon-group/icon-group.php:81
998
- #: modules/slideshow/slideshow.php:316
999
- #: modules/slideshow/slideshow.php:326
1000
- #: modules/slideshow/slideshow.php:377
1001
- #: modules/slideshow/slideshow.php:418
1002
- #: modules/slideshow/slideshow.php:440
1003
- #: modules/slideshow/slideshow.php:489
1004
- #: modules/slideshow/slideshow.php:498
1005
- #: modules/slideshow/slideshow.php:507
1006
- #: modules/slideshow/slideshow.php:516
1007
- #: modules/slideshow/slideshow.php:525
1008
- #: modules/slideshow/slideshow.php:534
1009
- #: modules/slideshow/slideshow.php:543
1010
- #: modules/slideshow/slideshow.php:557
1011
- #: modules/slideshow/slideshow.php:572
1012
- #: modules/slideshow/slideshow.php:607
1013
- #: modules/slideshow/slideshow.php:619
1014
- #: modules/slideshow/slideshow.php:631
1015
- #: modules/slideshow/slideshow.php:643
1016
- #: modules/social-buttons/social-buttons.php:110
1017
- #: modules/social-buttons/social-buttons.php:119
1018
- #: modules/social-buttons/social-buttons.php:128
1019
- #: modules/testimonials/testimonials.php:86
1020
- #: modules/testimonials/testimonials.php:125
1021
- #: modules/testimonials/testimonials.php:155
1022
- #: modules/video/video.php:112
1023
- #: modules/video/video.php:124
1024
- #@ fl-builder
1025
- msgid "Yes"
1026
- msgstr "Sim"
1027
-
1028
  #: includes/global-settings.php:26
1029
- #@ fl-builder
1030
- msgid "Choosing no will hide the default theme heading for the \"Page\" post type. You will also be required to enter some basic CSS for this to work if you choose no."
1031
- msgstr "Escolher \"não\\\"\\ irá esconder o cabeçalho padrão do tema para o tipo de post \"Página\". Você também pode precisar inserir algum CSS básico para fazer isto funcionar se selecionar \"não\"."
 
 
 
 
 
1032
 
 
1033
  #: includes/global-settings.php:30
1034
- #@ fl-builder
1035
  msgid "CSS Selector"
1036
  msgstr "Seletor CSS"
1037
 
 
1038
  #: includes/global-settings.php:32
1039
- #@ fl-builder
1040
  msgid "Enter a CSS selector for the default page heading to hide it."
1041
- msgstr "Insira um seletor CSS para o cabeçalho padrão da página para escondê-lo."
 
1042
 
 
1043
  #: includes/global-settings.php:37
1044
- #@ fl-builder
1045
  msgid "Rows"
1046
  msgstr "Linhas"
1047
 
 
1048
  #: includes/global-settings.php:57
1049
- #@ fl-builder
1050
  msgid "Max Width"
1051
  msgstr "Largura Máxima"
1052
 
 
1053
  #: includes/global-settings.php:62
1054
- #@ fl-builder
1055
- msgid "All rows will default to this width. You can override this and make a row full width in the settings for each row."
1056
- msgstr "Todas as linhas, por padrão, terão esta largura. Você pode sobrescrever isto e fazer uma linha com largura completa nas configurações de cada linha."
 
 
 
1057
 
 
1058
  #: includes/global-settings.php:84
1059
- #@ fl-builder
1060
- msgctxt "General settings form field label. Intended meaning: \"Responsive layout enabled?\""
 
1061
  msgid "Enabled"
1062
  msgstr "Ativado"
1063
 
 
1064
  #: includes/global-settings.php:98
1065
- #@ fl-builder
1066
  msgid "Medium Device Breakpoint"
1067
  msgstr "Ponto de Quebra de Dispositivo Médio"
1068
 
 
1069
  #: includes/global-settings.php:103
1070
- #@ fl-builder
1071
- msgid "The browser width at which the layout will adjust for medium devices such as tablets."
1072
- msgstr "A largura do navegador em que o layout irá se ajustar para dispositivos médios, como tablets."
 
 
 
1073
 
 
1074
  #: includes/global-settings.php:107
1075
- #@ fl-builder
1076
  msgid "Small Device Breakpoint"
1077
  msgstr "Ponto de Quebra para Dispositivos Pequenos"
1078
 
 
1079
  #: includes/global-settings.php:112
1080
- #@ fl-builder
1081
- msgid "The browser width at which the layout will adjust for small devices such as phones."
1082
- msgstr "A largura do navegador em que o layout ir[a se ajustar para dispositivos pequenos, como smartphones."
 
 
 
1083
 
 
1084
  #: includes/icon-selector.php:5
1085
- #@ fl-builder
1086
  msgctxt "Select option for showing all icon libraries."
1087
  msgid "All Libraries"
1088
  msgstr "Todas as bibliotecas"
1089
 
1090
- #: includes/js-config.php:16
1091
- #@ fl-builder
1092
- msgid "What would you like to do?"
1093
- msgstr "O que vocë gostaria de fazer agora?"
1094
-
1095
- #: includes/js-config.php:18
1096
- #@ fl-builder
1097
- msgid "Change Template"
1098
- msgstr "Mudar Template"
1099
-
1100
- #: includes/js-config.php:19
1101
- #@ fl-builder
1102
- msgid "Warning! Changing the template will replace your existing layout. Do you really want to do this?"
1103
- msgstr "Atenção! Mudar o template irá substituir seu layout existente. Você realmente gostaria de fazer isso?"
1104
-
1105
- #: includes/js-config.php:20
1106
- #@ fl-builder
1107
- msgid "Column"
1108
- msgstr "Coluna"
1109
-
1110
- #: includes/js-config.php:22
1111
- #@ fl-builder
1112
- msgid "Please select either a background layout or content layout before submitting."
1113
- msgstr "Por favor, selecione um layout de fundo ou de conteúdo antes de enviar."
1114
-
1115
- #: includes/js-config.php:23
1116
- #@ fl-builder
1117
- msgid "Do you really want to delete this item?"
1118
- msgstr "Você realmente deseja deletar este item?"
1119
-
1120
- #: includes/js-config.php:24
1121
- #@ fl-builder
1122
- msgid "Do you really want to delete this module? All content data will be permanently deleted."
1123
- msgstr "Você realmente deseja deletar este módulo? Todo o seu conteúdo será permanentemente deletado."
1124
-
1125
- #: includes/js-config.php:25
1126
- #@ fl-builder
1127
- msgid "Do you really want to delete this row? All content data will be permanently deleted."
1128
- msgstr "Você realmente deseja deletar esta linha? Todo o seu conteúdo será permanentemente deletado."
1129
-
1130
- #: includes/js-config.php:26
1131
- #@ fl-builder
1132
- msgid "Do you really want to delete this template?"
1133
- msgstr "Você realmente deseja deletar este template?"
1134
-
1135
- #: includes/js-config.php:27
1136
- #@ fl-builder
1137
- msgid "Discard Draft"
1138
- msgstr "Descartar Rascunho"
1139
-
1140
- #: includes/js-config.php:28
1141
- #@ fl-builder
1142
- msgid "Do you really want to discard this draft? All of your changes that are not published will be lost."
1143
- msgstr "Você realmente deseja descartar este rascunho? Todas as suas alterações que não foram publicadas serão perdidas."
1144
-
1145
- #: includes/js-config.php:29
1146
- #@ fl-builder
1147
- msgid "Save Draft"
1148
- msgstr "Salvar Rascunho"
1149
-
1150
  #: includes/js-config.php:30
1151
- #@ fl-builder
1152
  msgctxt "Duplicate page/post action label."
1153
  msgid "Duplicate"
1154
  msgstr "Duplicar"
1155
 
1156
- #: includes/js-config.php:31
1157
- #@ fl-builder
1158
- msgid "Duplicate This Page"
1159
- msgstr "Duplicar Esta Página"
1160
-
1161
- #: includes/js-config.php:32
1162
- #@ fl-builder
1163
- msgid "Duplicate This Template"
1164
- msgstr "Duplicar Este Template"
1165
-
1166
- #: includes/js-config.php:33
1167
- #@ fl-builder
1168
- msgid "Edit Global Settings"
1169
- msgstr "Editar Configurações Globais"
1170
-
1171
- #: includes/js-config.php:34
1172
- #@ fl-builder
1173
- msgid "Drop a row layout or module to get started!"
1174
- msgstr "Arraste e solte um layout de linha ou um módulo para começar!"
1175
-
1176
- #: includes/js-config.php:35
1177
- #@ fl-builder
1178
- msgid "Full Size"
1179
- msgstr "Tamanho Completo"
1180
-
1181
- #: includes/js-config.php:36
1182
- #@ fl-builder
1183
- msgid "Insert"
1184
- msgstr "Inserir"
1185
-
1186
- #: includes/js-config.php:37
1187
- #@ fl-builder
1188
- msgid "Large"
1189
- msgstr "Grande"
1190
-
1191
- #: includes/js-config.php:38
1192
- #@ fl-builder
1193
- msgid "Manage Templates"
1194
- msgstr "Administrar Templates"
1195
-
1196
- #: includes/js-config.php:39
1197
- #@ fl-builder
1198
- msgid "Medium"
1199
- msgstr "Médio"
1200
-
1201
- #: includes/js-config.php:40
1202
- #@ fl-builder
1203
- msgid "Module"
1204
- msgstr "Módulo"
1205
-
1206
- #: includes/js-config.php:41
1207
- #@ fl-builder
1208
- msgid "Move"
1209
- msgstr "Mover"
1210
-
1211
- #: includes/js-config.php:42
1212
- #@ fl-builder
1213
- msgid "New Column"
1214
- msgstr "Nova Coluna"
1215
-
1216
- #: includes/js-config.php:43
1217
- #@ fl-builder
1218
- msgid "New Row"
1219
- msgstr "Nova Linha"
1220
-
1221
- #: includes/js-config.php:44
1222
- #@ fl-builder
1223
- msgid "No results found."
1224
- msgstr "Nenhum resultado encontrado."
1225
-
1226
- #: includes/js-config.php:45
1227
- #@ fl-builder
1228
- msgid "OK"
1229
- msgstr "OK"
1230
-
1231
- #: includes/js-config.php:46
1232
- #: modules/photo/photo.php:454
1233
- #@ fl-builder
1234
- msgid "Photo Page"
1235
- msgstr "Página da Foto"
1236
-
1237
- #: includes/js-config.php:47
1238
- #@ fl-builder
1239
- msgid "Photo Selected"
1240
- msgstr "Foto Selecionada"
1241
-
1242
- #: includes/js-config.php:48
1243
- #@ fl-builder
1244
- msgid "Photos Selected"
1245
- msgstr "Fotos Selecionadas"
1246
-
1247
- #: includes/js-config.php:49
1248
- #@ fl-builder
1249
- msgid "Publish Changes"
1250
- msgstr "Publicar Alterações"
1251
-
1252
- #: includes/js-config.php:51
1253
- #@ fl-builder
1254
- msgid "Row"
1255
- msgstr "Linha"
1256
-
1257
- #: includes/js-config.php:52
1258
- #: includes/row-settings.php:6
1259
- #@ fl-builder
1260
- msgid "Row Settings"
1261
- msgstr "Configurações de Linha"
1262
-
1263
- #: includes/js-config.php:53
1264
- #@ fl-builder
1265
- msgid "Save Core Template"
1266
- msgstr "Salvar Template do Plugin"
1267
-
1268
- #: includes/js-config.php:54
1269
- #: includes/ui.php:10
1270
- #: includes/user-template-settings.php:4
1271
- #@ fl-builder
1272
- msgid "Save Template"
1273
- msgstr "Salvar Template"
1274
-
1275
- #: includes/js-config.php:56
1276
- #@ fl-builder
1277
- msgid "Select Photos"
1278
- msgstr "Selecionar Fotos"
1279
-
1280
- #: includes/js-config.php:59
1281
- #@ fl-builder
1282
- msgid "Append New Layout"
1283
- msgstr "Anexar Novo Layout"
1284
-
1285
- #: includes/js-config.php:60
1286
- #@ fl-builder
1287
- msgid "Replace Existing Layout"
1288
- msgstr "Substituir Layout Existente"
1289
-
1290
- #: includes/js-config.php:61
1291
- #@ fl-builder
1292
- msgid "Template Saved!"
1293
- msgstr "Template Salvo!"
1294
-
1295
- #: includes/js-config.php:62
1296
- #@ fl-builder
1297
- msgid "Thumbnail"
1298
- msgstr ""
1299
-
1300
- #: includes/js-config.php:63
1301
- #@ fl-builder
1302
- msgid "The settings you are currently editing will not be saved if you navigate away from this page."
1303
- msgstr "As configurações que você está atualmente editando não serão salvas se você sair desta página."
1304
-
1305
  #: includes/loop-settings.php:19
1306
- #@ fl-builder
1307
  msgid "Post Type"
1308
  msgstr "Tipo de Post"
1309
 
 
1310
  #: includes/loop-settings.php:25
1311
- #@ fl-builder
1312
  msgid "Order By"
1313
  msgstr "Ordenar Por"
1314
 
 
1315
  #: includes/loop-settings.php:27
1316
- #@ fl-builder
1317
  msgid "ID"
1318
  msgstr ""
1319
 
1320
- #: includes/loop-settings.php:28
1321
- #: modules/post-grid/post-grid.php:155
1322
  #: modules/woocommerce/woocommerce.php:189
1323
- #@ fl-builder
1324
  msgid "Date"
1325
  msgstr "Data"
1326
 
 
1327
  #: includes/loop-settings.php:29
1328
- #@ fl-builder
1329
  msgid "Date Last Modified"
1330
  msgstr "Data da Última Alteração"
1331
 
1332
- #: includes/loop-settings.php:30
1333
- #: modules/pricing-table/pricing-table.php:90
1334
  #: modules/pricing-table/pricing-table.php:94
1335
- #@ fl-builder
1336
  msgid "Title"
1337
  msgstr "Título"
1338
 
1339
- #: includes/loop-settings.php:31
1340
- #: modules/post-grid/post-grid.php:146
1341
- #@ fl-builder
1342
  msgid "Author"
1343
  msgstr "Autor"
1344
 
 
1345
  #: includes/loop-settings.php:32
1346
- #@ fl-builder
1347
  msgid "Comment Count"
1348
  msgstr "Número de Comentários"
1349
 
 
1350
  #: includes/loop-settings.php:33
1351
- #@ fl-builder
1352
  msgid "Menu Order"
1353
  msgstr "Ordem do Menu"
1354
 
 
1355
  #: includes/loop-settings.php:34
1356
- #@ fl-builder
1357
  msgid "Random"
1358
  msgstr "Aleatório"
1359
 
 
1360
  #: includes/loop-settings.php:41
1361
- #@ fl-builder
1362
  msgid "Order"
1363
  msgstr "Ordenar"
1364
 
 
1365
  #: includes/loop-settings.php:43
1366
- #@ fl-builder
1367
  msgid "Descending"
1368
  msgstr "Decrescente"
1369
 
 
1370
  #: includes/loop-settings.php:44
1371
- #@ fl-builder
1372
  msgid "Ascending"
1373
  msgstr "Crescente"
1374
 
 
1375
  #: includes/loop-settings.php:52
1376
- #@ fl-builder
1377
  msgid "Filter"
1378
  msgstr "Filtrar"
1379
 
 
1380
  #: includes/loop-settings.php:63
1381
  #, php-format
1382
- #@ fl-builder
1383
  msgid "Enter a comma separated list of %s. Only these %s will be shown."
1384
- msgstr "Insira uma lista de %s separados(as) por vírgulas. Apenas estes / estas %s serão mostrados(as)."
 
 
1385
 
 
1386
  #: includes/loop-settings.php:76
1387
  #, php-format
1388
- #@ fl-builder
1389
- msgid "Enter a comma separated list of %s. Only posts with these %s will be shown."
1390
- msgstr "Insira uma lista de %s separados(as) por vírgulas. Apenas posts com estes / estas %s serão mostrados(as)."
 
 
1391
 
 
1392
  #: includes/loop-settings.php:90
1393
- #@ fl-builder
1394
  msgid "Authors"
1395
  msgstr "Autores"
1396
 
 
1397
  #: includes/loop-settings.php:91
1398
- #@ fl-builder
1399
- msgid "Enter a comma separated list of authors usernames. Only posts with these authors will be shown."
1400
- msgstr "Insira uma lista de nomes de usuários de autores, separadas por vírgulas. Apenas posts destes autores serão mostrados."
 
 
 
1401
 
 
1402
  #: includes/module-settings.php:14
1403
- #@ fl-builder
1404
- msgid "A custom CSS class that will be applied to this module. Spaces only, no dots."
1405
- msgstr "Uma classe CSS personalidada que será aplicada a este módulo. Somente espaços, sem pontos."
 
 
1406
 
 
1407
  #: includes/module-settings.php:30
1408
- #@ default
1409
  msgid "Choose whether to show or hide this module at different device sizes."
1410
- msgstr "Escolha entre mostrar ou esconder este módulo em diferentes tamanhos de dispositivo."
 
 
1411
 
 
1412
  #: includes/module-settings.php:91
1413
- #@ fl-builder
1414
  msgid "Animation"
1415
  msgstr "Animação"
1416
 
 
1417
  #: includes/module-settings.php:97
1418
- #@ fl-builder
1419
  msgctxt "Animation style."
1420
  msgid "None"
1421
  msgstr "Nenhuma"
1422
 
 
1423
  #: includes/module-settings.php:98
1424
- #@ fl-builder
1425
  msgctxt "Animation style."
1426
  msgid "Fade In"
1427
  msgstr ""
1428
 
 
1429
  #: includes/module-settings.php:99
1430
- #@ fl-builder
1431
  msgctxt "Animation style."
1432
  msgid "Slide Left"
1433
  msgstr "Deslizar pela Esquerda"
1434
 
 
1435
  #: includes/module-settings.php:100
1436
- #@ fl-builder
1437
  msgctxt "Animation style."
1438
  msgid "Slide Right"
1439
  msgstr "Deslizar pela Direita"
1440
 
 
1441
  #: includes/module-settings.php:101
1442
- #@ fl-builder
1443
  msgctxt "Animation style."
1444
  msgid "Slide Up"
1445
  msgstr "Deslizar para Cima"
1446
 
 
1447
  #: includes/module-settings.php:102
1448
- #@ fl-builder
1449
  msgctxt "Animation style."
1450
  msgid "Slide Down"
1451
  msgstr "Deslizar para Baixo"
1452
 
 
1453
  #: includes/module-settings.php:110
1454
  #: modules/content-slider/content-slider.php:223
1455
  #: modules/testimonials/testimonials.php:91
1456
- #@ fl-builder
1457
  msgid "Delay"
1458
  msgstr "Atraso"
1459
 
1460
- #: includes/module-settings.php:114
1461
- #: includes/row-settings.php:266
1462
- #: includes/row-settings.php:297
1463
- #: modules/content-slider/content-slider.php:227
1464
  #: modules/content-slider/content-slider.php:244
1465
- #: modules/slideshow/slideshow.php:385
1466
- #: modules/slideshow/slideshow.php:410
1467
  #: modules/slideshow/slideshow.php:581
1468
  #: modules/testimonials/testimonials.php:95
1469
  #: modules/testimonials/testimonials.php:112
1470
- #@ fl-builder
1471
  msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
1472
  msgid "seconds"
1473
  msgstr "segundos"
1474
 
 
1475
  #: includes/module-settings.php:115
1476
- #@ fl-builder
1477
  msgid "The amount of time in seconds before this animation starts."
1478
  msgstr "A quantidade de segundos antes desta animação iniciar."
1479
 
1480
- #: includes/row-settings.php:16
1481
- #: modules/button/button.php:146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1482
  #: modules/content-slider/content-slider.php:477
1483
- #@ fl-builder
1484
  msgid "Width"
1485
  msgstr "Largura"
1486
 
1487
- #: includes/row-settings.php:19
1488
- #: includes/row-settings.php:37
1489
  #: includes/row-settings.php:179
1490
- #@ fl-builder
1491
  msgid "Fixed"
1492
  msgstr "Fixa"
1493
 
1494
- #: includes/row-settings.php:20
1495
- #: includes/row-settings.php:38
1496
- #: modules/button/button.php:150
1497
- #: modules/callout/callout.php:554
1498
- #@ fl-builder
1499
  msgid "Full Width"
1500
  msgstr "Largura Completa"
1501
 
 
1502
  #: includes/row-settings.php:27
1503
- #@ fl-builder
1504
- msgid "Full width rows span the width of the page from edge to edge. Fixed rows are no wider than the Row Max Width set in the Global Settings."
1505
- msgstr "Linhas com largura completa envolvem a página de ponta a ponta. Linhas fixas não serão mais largas que a Largura Máxima de Linha ajustada nas Configurações Globais."
 
 
 
 
1506
 
 
1507
  #: includes/row-settings.php:34
1508
- #@ fl-builder
1509
  msgid "Content Width"
1510
  msgstr "Largura do Conteúdo"
1511
 
 
1512
  #: includes/row-settings.php:40
1513
- #@ fl-builder
1514
- msgid "Full width content spans the width of the page from edge to edge. Fixed content is no wider than the Row Max Width set in the Global Settings."
1515
- msgstr "Conteúdos com largura completa envolvem a página de ponta a ponta. Conteúdos com larguras fixas não serão mais largos que a Largura Máxima de Linha ajustada nas Configurações Globais."
 
 
 
 
1516
 
 
1517
  #: includes/row-settings.php:61
1518
- #@ fl-builder
1519
  msgid "Background"
1520
  msgstr "Fundo"
1521
 
1522
- #: includes/row-settings.php:68
1523
- #: modules/content-slider/content-slider.php:332
1524
- #@ fl-builder
1525
  msgctxt "Background type."
1526
  msgid "None"
1527
  msgstr "Nenhum"
1528
 
 
1529
  #: includes/row-settings.php:69
1530
- #@ fl-builder
1531
  msgctxt "Background type."
1532
  msgid "Color"
1533
  msgstr "Cor"
1534
 
 
1535
  #: includes/row-settings.php:70
1536
- #@ fl-builder
1537
  msgctxt "Background type."
1538
  msgid "Photo"
1539
  msgstr "Foto"
1540
 
 
1541
  #: includes/row-settings.php:71
1542
- #@ fl-builder
1543
  msgctxt "Background type."
1544
  msgid "Video"
1545
  msgstr "Vídeo"
1546
 
 
1547
  #: includes/row-settings.php:73
1548
- #@ fl-builder
1549
  msgctxt "Background type."
1550
  msgid "Slideshow"
1551
  msgstr "Slideshow"
1552
 
 
1553
  #: includes/row-settings.php:77
1554
- #@ fl-builder
1555
  msgctxt "Background type."
1556
  msgid "Parallax"
1557
  msgstr ""
1558
 
1559
- #: includes/row-settings.php:129
1560
- #: modules/content-slider/content-slider.php:353
1561
- #@ fl-builder
1562
  msgid "Background Photo"
1563
  msgstr "Foto de Fundo"
1564
 
1565
- #: includes/row-settings.php:133
1566
- #: includes/row-settings.php:321
1567
- #: modules/callout/callout.php:314
1568
- #: modules/callout/callout.php:330
1569
  #: modules/callout/callout.php:334
1570
  #: modules/content-slider/content-slider.php:329
1571
  #: modules/content-slider/content-slider.php:398
1572
- #: modules/content-slider/content-slider.php:710
1573
- #: modules/photo/photo.php:25
1574
  #: modules/photo/photo.php:392
1575
- #@ fl-builder
1576
  msgid "Photo"
1577
  msgstr "Foto"
1578
 
 
1579
  #: includes/row-settings.php:140
1580
- #@ fl-builder
1581
  msgid "Repeat"
1582
  msgstr "Repetir"
1583
 
 
1584
  #: includes/row-settings.php:143
1585
- #@ fl-builder
1586
  msgctxt "Background repeat."
1587
  msgid "None"
1588
  msgstr "Nenhum"
1589
 
 
1590
  #: includes/row-settings.php:144
1591
- #@ fl-builder
1592
  msgctxt "Background repeat."
1593
  msgid "Tile"
1594
  msgstr "Ladrilhos"
1595
 
 
1596
  #: includes/row-settings.php:145
1597
- #@ fl-builder
1598
  msgctxt "Background repeat."
1599
  msgid "Horizontal"
1600
  msgstr "Horizontal"
1601
 
 
1602
  #: includes/row-settings.php:146
1603
- #@ fl-builder
1604
  msgctxt "Background repeat."
1605
  msgid "Vertical"
1606
  msgstr "Vertical"
1607
 
 
1608
  #: includes/row-settings.php:148
1609
- #@ fl-builder
1610
- msgid "Repeat applies to how the image should display in the row background. Choosing none will display the image as uploaded. Tile will repeat the image as many times as needed to fill the row horizontally and vertically. You can also specify the image to only repeat horizontally or vertically."
1611
- msgstr "\"Repetir\" aplica-se a como a imagem deve ser mostrada no fundo da linha. Escolher \"nenhum\" irá mostrar a imagem da maneira como foi enviada. \"Ladrilhos\" irá repetir a imagem quantas vezes for necessário para preencher a linha horizontalmente e verticalmente. Você pode também especificar que a imagem repita-se apenas na horizontal ou na vertical."
1612
-
1613
- #: includes/row-settings.php:155
1614
- #: modules/callout/callout.php:351
1615
- #: modules/callout/callout.php:371
1616
- #: modules/content-slider/content-slider.php:466
1617
- #: modules/post-grid/post-grid.php:127
1618
- #@ fl-builder
1619
- msgid "Position"
1620
- msgstr "Posição"
1621
 
 
1622
  #: includes/row-settings.php:158
1623
- #@ fl-builder
1624
  msgid "Left Top"
1625
  msgstr "Canto Superior Esquerdo"
1626
 
 
1627
  #: includes/row-settings.php:159
1628
- #@ fl-builder
1629
  msgid "Left Center"
1630
  msgstr "Canto Esquerdo Central"
1631
 
 
1632
  #: includes/row-settings.php:160
1633
- #@ fl-builder
1634
  msgid "Left Bottom"
1635
  msgstr "Canto Inferior Esquerdo"
1636
 
 
1637
  #: includes/row-settings.php:161
1638
- #@ fl-builder
1639
  msgid "Right Top"
1640
  msgstr "Canto Superior Direito"
1641
 
 
1642
  #: includes/row-settings.php:162
1643
- #@ fl-builder
1644
  msgid "Right Center"
1645
  msgstr "Canto Direito Central"
1646
 
 
1647
  #: includes/row-settings.php:163
1648
- #@ fl-builder
1649
  msgid "Right Bottom"
1650
  msgstr "Canto Inferior Direito"
1651
 
 
1652
  #: includes/row-settings.php:164
1653
- #@ fl-builder
1654
  msgid "Center Top"
1655
  msgstr "Centro do Topo"
1656
 
1657
- #: includes/row-settings.php:165
1658
- #: modules/button/button.php:176
1659
  #: modules/callout/callout.php:249
1660
- #: modules/content-slider/content-slider.php:471
1661
- #: modules/cta/cta.php:124
1662
- #: modules/heading/heading.php:90
1663
- #: modules/heading/heading.php:162
1664
- #: modules/icon/icon.php:133
1665
- #: modules/icon-group/icon-group.php:110
1666
- #: modules/photo/photo.php:418
1667
- #: modules/social-buttons/social-buttons.php:100
1668
- #@ fl-builder
1669
  msgid "Center"
1670
  msgstr "Centralizado"
1671
 
 
1672
  #: includes/row-settings.php:166
1673
- #@ fl-builder
1674
  msgid "Center Bottom"
1675
  msgstr "Centro da Base"
1676
 
 
1677
  #: includes/row-settings.php:168
1678
- #@ fl-builder
1679
  msgid "Position will tell the image where it should sit in the row background."
1680
- msgstr "\"Posição\" irá dizer à imagem onde ela deve se posicionar no fundo da linha."
 
1681
 
 
1682
  #: includes/row-settings.php:175
1683
- #@ fl-builder
1684
  msgid "Attachment"
1685
  msgstr "Anexação ao Fundo"
1686
 
1687
- #: includes/row-settings.php:178
1688
- #: modules/post-grid/post-grid.php:75
1689
- #@ fl-builder
1690
  msgid "Scroll"
1691
  msgstr "Deslizar"
1692
 
 
1693
  #: includes/row-settings.php:181
1694
- #@ fl-builder
1695
- msgid "Attachment will specify how the image reacts when scrolling a page. When scrolling is selected, the image will scroll with page scrolling. This is the default setting. Fixed will allow the image to scroll within the row background if fill is selected in the scale setting."
1696
- msgstr "\"Anexação ao Fundo\" irá especificar como a imagem deve reagir quando há a rolagem de páginal. Quando \"deslizar\" é selecionado, a imagem irá deslizar em conjunto com a rolagem da página. Esta é a configuração padrão. \\\"\\Fixo\" irá permitir que a imagem permaneça na mesma posição no fundo da linha, se \"preencher\" estiver selecionado na configuração de escala."
 
 
 
 
 
 
 
 
1697
 
 
1698
  #: includes/row-settings.php:188
1699
- #@ fl-builder
1700
  msgid "Scale"
1701
  msgstr "Escaça"
1702
 
 
1703
  #: includes/row-settings.php:191
1704
- #@ fl-builder
1705
  msgctxt "Background scale."
1706
  msgid "None"
1707
  msgstr "Nenhum"
1708
 
 
1709
  #: includes/row-settings.php:192
1710
- #@ fl-builder
1711
  msgid "Fit"
1712
  msgstr "Ajustar"
1713
 
 
1714
  #: includes/row-settings.php:193
1715
- #@ fl-builder
1716
  msgid "Fill"
1717
  msgstr "Preencher"
1718
 
 
1719
  #: includes/row-settings.php:195
1720
- #@ fl-builder
1721
- msgid "Scale applies to how the image should display in the row background. You can select either fill or fit to the row background."
1722
- msgstr "\"Escala\" aplica-se a como a imagem deve ser exibida no fundo da linha. Você pode selecionar entre preencher ou ajustar-se ao fundo da linha."
 
 
 
1723
 
 
1724
  #: includes/row-settings.php:203
1725
- #@ fl-builder
1726
  msgid "Background Video"
1727
  msgstr "Vídeo de Fundo"
1728
 
1729
- #: includes/row-settings.php:207
1730
- #: modules/content-slider/content-slider.php:330
1731
- #: modules/video/video.php:19
1732
- #: modules/video/video.php:100
1733
- #@ fl-builder
1734
  msgid "Video"
1735
  msgstr "Vídeo"
1736
 
 
1737
  #: includes/row-settings.php:208
1738
- #@ fl-builder
1739
- msgid "An HTML5 video to use as the background of this row. Supported types are MP4, WebM and Ogg."
1740
- msgstr "Um vídeo em formato HTML5 a ser usado como fundo desta linha. Formatos suportados são MP4, WebM e Ogg."
 
 
 
1741
 
 
1742
  #: includes/row-settings.php:215
1743
- #@ fl-builder
1744
  msgid "Fallback Photo"
1745
  msgstr "Foto de Reserva"
1746
 
 
1747
  #: includes/row-settings.php:216
1748
- #@ fl-builder
1749
  msgid "A photo that will be displayed if the video fails to load."
1750
  msgstr "Uma foto que será exibida caso o vídeo não seja carregado."
1751
 
 
1752
  #: includes/row-settings.php:224
1753
- #@ fl-builder
1754
  msgid "Background Slideshow"
1755
  msgstr "Slideshow de Fundo"
1756
 
1757
- #: includes/row-settings.php:228
1758
- #: modules/gallery/gallery.php:234
1759
  #: modules/slideshow/slideshow.php:263
1760
- #@ fl-builder
1761
  msgid "Source"
1762
  msgstr "Origem"
1763
 
1764
- #: includes/row-settings.php:231
1765
- #: modules/gallery/gallery.php:237
1766
- #: modules/photo/photo.php:378
1767
- #: modules/slideshow/slideshow.php:266
1768
  #: modules/video/video.php:86
1769
- #@ fl-builder
1770
  msgid "Media Library"
1771
  msgstr "Biblioteca de Mídia"
1772
 
1773
- #: includes/row-settings.php:234
1774
- #: modules/gallery/gallery.php:240
1775
  #: modules/slideshow/slideshow.php:269
1776
- #@ fl-builder
1777
- msgid "Pull images from the WordPress media library or a gallery on your SmugMug site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be accessed by using the get a link function in your SmugMug gallery."
1778
- msgstr "Puxa imagens da biblioteca de mídia do WordPress ou uma galeria em seu site no SmugMug inserindo a URL do feed RSS do SmugMug. A URL do feed RSS pode ser acessada usando a função \"get a link\" em sua galeria no SmugMug."
 
 
 
 
 
1779
 
1780
- #: includes/row-settings.php:249
1781
- #: modules/gallery/gallery.php:252
1782
  #: modules/slideshow/slideshow.php:281
1783
- #@ fl-builder
1784
  msgid "Photos"
1785
  msgstr "Fotos"
1786
 
1787
- #: includes/row-settings.php:256
1788
- #: modules/gallery/gallery.php:256
1789
  #: modules/slideshow/slideshow.php:285
1790
- #@ fl-builder
1791
  msgid "Feed URL"
1792
  msgstr "URL do Feed"
1793
 
1794
- #: includes/row-settings.php:263
1795
- #: includes/row-settings.php:328
1796
  #: modules/slideshow/slideshow.php:382
1797
- #@ fl-builder
1798
  msgid "Speed"
1799
  msgstr "Velocidade"
1800
 
1801
- #: includes/row-settings.php:273
1802
- #: modules/content-slider/content-slider.php:231
1803
  #: modules/slideshow/slideshow.php:389
1804
  #: modules/testimonials/testimonials.php:99
1805
- #@ fl-builder
1806
  msgid "Transition"
1807
  msgstr "Transição"
1808
 
 
1809
  #: includes/row-settings.php:276
1810
- #@ fl-builder
1811
  msgctxt "Slideshow transition type."
1812
  msgid "None"
1813
  msgstr "Nenhuma"
1814
 
1815
- #: includes/row-settings.php:277
1816
- #: modules/content-slider/content-slider.php:235
1817
  #: modules/slideshow/slideshow.php:393
1818
  #: modules/testimonials/testimonials.php:103
1819
- #@ fl-builder
1820
  msgid "Fade"
1821
  msgstr ""
1822
 
1823
- #: includes/row-settings.php:278
1824
- #: modules/slideshow/slideshow.php:394
1825
- #@ fl-builder
1826
  msgid "Ken Burns"
1827
  msgstr ""
1828
 
1829
- #: includes/row-settings.php:279
1830
- #: modules/slideshow/slideshow.php:395
1831
- #@ fl-builder
1832
  msgid "Slide Horizontal"
1833
  msgstr "Deslizar Horizontalmente"
1834
 
1835
- #: includes/row-settings.php:280
1836
- #: modules/slideshow/slideshow.php:396
1837
- #@ fl-builder
1838
  msgid "Slide Vertical"
1839
  msgstr "Deslizar Verticalmente"
1840
 
1841
- #: includes/row-settings.php:281
1842
- #: modules/slideshow/slideshow.php:397
1843
- #@ fl-builder
1844
  msgid "Blinds"
1845
  msgstr "Persianas"
1846
 
1847
- #: includes/row-settings.php:282
1848
- #: modules/slideshow/slideshow.php:398
1849
- #@ fl-builder
1850
  msgid "Bars"
1851
  msgstr "Barras"
1852
 
1853
- #: includes/row-settings.php:283
1854
- #: modules/slideshow/slideshow.php:399
1855
- #@ fl-builder
1856
  msgid "Random Bars"
1857
  msgstr "Barras Aleatórias"
1858
 
1859
- #: includes/row-settings.php:284
1860
- #: modules/slideshow/slideshow.php:400
1861
- #@ fl-builder
1862
  msgid "Boxes"
1863
  msgstr "Caixas"
1864
 
1865
- #: includes/row-settings.php:285
1866
- #: modules/slideshow/slideshow.php:401
1867
- #@ fl-builder
1868
  msgid "Random Boxes"
1869
  msgstr "Caixas Aleatórias"
1870
 
1871
- #: includes/row-settings.php:286
1872
- #: modules/slideshow/slideshow.php:402
1873
- #@ fl-builder
1874
  msgid "Boxes Grow"
1875
  msgstr "Caixas Crescentes"
1876
 
1877
- #: includes/row-settings.php:294
1878
- #: modules/content-slider/content-slider.php:240
1879
  #: modules/slideshow/slideshow.php:407
1880
  #: modules/testimonials/testimonials.php:108
1881
- #@ fl-builder
1882
  msgid "Transition Speed"
1883
  msgstr "Velocidade de Transição"
1884
 
1885
- #: includes/row-settings.php:304
1886
- #: modules/slideshow/slideshow.php:414
1887
- #@ fl-builder
1888
  msgid "Randomize Photos"
1889
  msgstr "Embaralhar Fotos"
1890
 
 
1891
  #: includes/row-settings.php:317
1892
- #@ fl-builder
1893
  msgid "Background Parallax"
1894
  msgstr "Parallax de Fundo"
1895
 
 
1896
  #: includes/row-settings.php:331
1897
- #@ fl-builder
1898
  msgid "Fast"
1899
  msgstr "Rápido"
1900
 
 
1901
  #: includes/row-settings.php:332
1902
- #@ fl-builder
1903
  msgctxt "Speed."
1904
  msgid "Medium"
1905
  msgstr "Médio"
1906
 
 
1907
  #: includes/row-settings.php:333
1908
- #@ fl-builder
1909
  msgid "Slow"
1910
  msgstr "Lento"
1911
 
1912
- #: includes/row-settings.php:457
1913
- #@ fl-builder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1914
  msgid "Add a custom CSS selector here to apply additional styling to this row."
1915
- msgstr "Adicione um seletor CSS personalizado aqui para aplicar um estilo adicional a esta linha."
 
 
1916
 
1917
- #: includes/row-settings.php:473
1918
- #@ fl-builder
1919
  msgid "Choose whether to show or hide this row at different device sizes."
1920
- msgstr "Escolha entre mostrar ou esconder esta linha em diferentes tamanhos de dispositivo."
 
 
1921
 
 
1922
  #: includes/settings.php:62
1923
- #@ fl-builder
1924
  msgid "Save"
1925
  msgstr "Salvar"
1926
 
 
1927
  #: includes/template-selector.php:3
1928
- #@ fl-builder
1929
  msgid "Layout Templates"
1930
  msgstr "Templates de Layout"
1931
 
 
1932
  #: includes/template-selector.php:8
1933
- #@ fl-builder
1934
  msgid "Home Pages"
1935
  msgstr "Páginas Iniciais"
1936
 
 
1937
  #: includes/template-selector.php:9
1938
- #@ fl-builder
1939
  msgid "Content Pages"
1940
  msgstr "Páginas de Conteúdo"
1941
 
 
1942
  #: includes/template-selector.php:13
1943
- #@ fl-builder
1944
  msgid "Your Templates"
1945
  msgstr "Seus Templates"
1946
 
1947
- #: includes/template-selector.php:47
1948
- #: includes/template-selector.php:77
1949
- #@ fl-builder
1950
  msgctxt "Template name."
1951
  msgid "Blank"
1952
  msgstr "Em Branco"
1953
 
 
1954
  #: includes/template-selector.php:72
1955
- #@ fl-builder
1956
- msgid "You haven't saved any templates yet! To do so, create a layout and save it as a template under <strong>Tools &rarr; Save Template</strong>."
1957
- msgstr "Você não salvou nenhum template ainda! Para fazer isso, crie um layout e salve-o como um template em <strong>Ferramentas &rarr; Salvar Template</strong>."
 
 
 
 
1958
 
1959
- #: includes/template-selector.php:84
1960
- #@ fl-builder
1961
- msgid "Delete"
1962
- msgstr "Deletar"
 
 
 
 
 
1963
 
 
 
 
 
 
 
 
 
 
1964
  #: includes/ui.php:7
1965
  #, php-format
1966
- #@ fl-builder
1967
  msgid "Template: %s"
1968
  msgstr ""
1969
 
 
 
 
 
 
 
1970
  #: includes/ui.php:23
1971
- #@ fl-builder
1972
  msgid "Page Builder Demo"
1973
  msgstr "Versão de Demonstração do Construtor de Páginas"
1974
 
 
1975
  #: includes/ui.php:37
1976
- #@ fl-builder
1977
  msgid "Buy Now!"
1978
  msgstr "Adquira já!"
1979
 
 
1980
  #: includes/ui.php:39
1981
- #@ fl-builder
1982
  msgid "Upgrade!"
1983
  msgstr "Atualize!"
1984
 
 
1985
  #: includes/ui.php:41
1986
- #@ fl-builder
1987
  msgid "Done"
1988
  msgstr "Feito"
1989
 
 
1990
  #: includes/ui.php:42
1991
- #@ fl-builder
1992
  msgid "Tools"
1993
  msgstr "Ferramentas"
1994
 
 
1995
  #: includes/ui.php:46
1996
- #@ fl-builder
1997
  msgid "Add Content"
1998
  msgstr "Adicionar Conteúdo"
1999
 
 
2000
  #: includes/ui.php:64
2001
- #@ fl-builder
2002
  msgid "Row Layouts"
2003
  msgstr "Layout de Linhas"
2004
 
 
2005
  #: includes/ui.php:68
2006
- #@ fl-builder
2007
  msgid "1 Column"
2008
  msgstr "1 Coluna"
2009
 
 
2010
  #: includes/ui.php:69
2011
- #@ fl-builder
2012
  msgid "2 Columns"
2013
  msgstr "2 Colunas"
2014
 
 
2015
  #: includes/ui.php:70
2016
- #@ fl-builder
2017
  msgid "3 Columns"
2018
  msgstr "3 Colunas"
2019
 
 
2020
  #: includes/ui.php:71
2021
- #@ fl-builder
2022
  msgid "4 Columns"
2023
  msgstr "4 Colunas"
2024
 
 
2025
  #: includes/ui.php:72
2026
- #@ fl-builder
2027
  msgid "5 Columns"
2028
  msgstr "5 Colunas"
2029
 
 
2030
  #: includes/ui.php:73
2031
- #@ fl-builder
2032
  msgid "6 Columns"
2033
  msgstr "6 Colunas"
2034
 
 
2035
  #: includes/ui.php:74
2036
- #@ fl-builder
2037
  msgid "Left Sidebar"
2038
  msgstr "Barra Lateral na Esquerda"
2039
 
 
2040
  #: includes/ui.php:75
2041
- #@ fl-builder
2042
  msgid "Right Sidebar"
2043
  msgstr "Barra Lateral na Direita"
2044
 
 
2045
  #: includes/ui.php:76
2046
- #@ fl-builder
2047
  msgid "Left &amp; Right Sidebar"
2048
  msgstr "Barra Lateral na Esquerda &amp; Direita"
2049
 
2050
- #: includes/ui.php:85
2051
- #: modules/widget/widget.php:16
2052
- #@ fl-builder
2053
  msgid "WordPress Widgets"
2054
  msgstr "Widgets do WordPress"
2055
 
 
2056
  #: includes/updater/classes/class-fl-updater.php:107
2057
- #@ fl-builder
2058
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
2059
  msgstr "<strong>ATUALIZAÇÃO INDISPONÍVEL!</strong>"
2060
 
 
2061
  #: includes/updater/classes/class-fl-updater.php:109
2062
- #@ fl-builder
2063
  msgid "Please subscribe to enable automatic updates for this plugin."
2064
- msgstr "Por favor, inscreva-se para receber atualizações automáticas deste plugin."
 
2065
 
 
2066
  #: includes/updater/classes/class-fl-updater.php:111
2067
  #: includes/updater/includes/form.php:6
2068
- #@ fl-builder
2069
  msgid "Subscribe Now"
2070
  msgstr "Inscrever-se Agora"
2071
 
 
2072
  #: includes/updater/includes/form.php:5
2073
- #@ fl-builder
2074
- msgid "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable automatic updates."
2075
- msgstr "ATUALIZAÇÕES INDISPONÍVEIS! Por favor, inscreva-se ou insira sua chave de licença abaixo para ativar atualizações automáticas."
 
 
 
2076
 
 
2077
  #: includes/updater/includes/form.php:11
2078
- #@ fl-builder
2079
  msgid "Updates &amp; Support Subscription"
2080
  msgstr "Inscrição para Atualizações &amp; Suporte"
2081
 
 
2082
  #: includes/updater/includes/form.php:14
2083
- #@ fl-builder
2084
  msgid "Active!"
2085
  msgstr "Ativada!"
2086
 
 
2087
  #: includes/updater/includes/form.php:16
2088
- #@ fl-builder
2089
  msgid "Not Active!"
2090
  msgstr "Desativada!"
2091
 
 
2092
  #: includes/updater/includes/form.php:22
2093
- #@ fl-builder
2094
  msgid "Email address saved!"
2095
  msgstr "Endereço de Email salvo!"
2096
 
 
2097
  #: includes/updater/includes/form.php:27
2098
  #, php-format
2099
- #@ fl-builder
2100
  msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
2101
- msgstr "Insira sua <a%s>chave de licença</a> para habilitar atualizações remotas e suporte."
2102
-
2103
- #: includes/updater/includes/form.php:39
2104
- #@ fl-builder
2105
- msgid "Save Subscription Settings"
2106
- msgstr "Salva Configurações de Inscrição"
2107
 
 
2108
  #: includes/user-template-settings.php:8
2109
- #@ fl-builder
2110
- msgid "Save the current layout as a template that can be reused under <strong>Templates &rarr; Your Templates</strong>."
2111
- msgstr "Salve o layout atual como um template que poderá ser reutilizado em <strong>Templates &rarr; Seus Templates</strong>."
2112
-
2113
- #: includes/user-template-settings.php:15
2114
- #@ fl-builder
2115
- msgctxt "Template name."
2116
- msgid "Name"
2117
- msgstr "Nome"
2118
 
 
2119
  #: modules/accordion/accordion.php:14
2120
- #@ fl-builder
2121
  msgid "Accordion"
2122
  msgstr "Sanfona"
2123
 
 
2124
  #: modules/accordion/accordion.php:15
2125
- #@ fl-builder
2126
  msgid "Display a collapsible accordion of items."
2127
  msgstr "Exibe uma sanfona de itens que se expandem."
2128
 
2129
- #: modules/accordion/accordion.php:16
2130
- #: modules/button/button.php:16
2131
- #: modules/callout/callout.php:16
2132
- #: modules/contact-form/contact-form.php:16
2133
- #: modules/content-slider/content-slider.php:16
2134
- #: modules/cta/cta.php:16
2135
- #: modules/gallery/gallery.php:16
2136
- #: modules/html/html.php:16
2137
- #: modules/icon/icon.php:16
2138
- #: modules/icon-group/icon-group.php:16
2139
- #: modules/map/map.php:16
2140
- #: modules/post-grid/post-grid.php:16
2141
- #: modules/pricing-table/pricing-table.php:16
2142
- #: modules/sidebar/sidebar.php:16
2143
  #: modules/slideshow/slideshow.php:16
2144
- #: modules/social-buttons/social-buttons.php:16
2145
- #: modules/tabs/tabs.php:16
2146
  #: modules/testimonials/testimonials.php:16
2147
  #: modules/woocommerce/woocommerce.php:18
2148
- #@ fl-builder
2149
  msgid "Advanced Modules"
2150
  msgstr "Módulos Avançados"
2151
 
2152
- #: modules/accordion/accordion.php:28
2153
- #: modules/tabs/tabs.php:28
2154
- #@ fl-builder
2155
  msgid "Items"
2156
  msgstr "Itens"
2157
 
2158
- #: modules/accordion/accordion.php:35
2159
- #: modules/tabs/tabs.php:35
2160
- #@ fl-builder
2161
  msgid "Item"
2162
  msgstr "Item"
2163
 
2164
- #: modules/accordion/accordion.php:52
2165
- #: modules/tabs/tabs.php:61
2166
- #@ fl-builder
2167
  msgid "Border Color"
2168
  msgstr "Cor da Borda"
2169
 
 
2170
  #: modules/accordion/accordion.php:62
2171
- #@ fl-builder
2172
  msgid "Label Size"
2173
  msgstr "Tamanho do Rótulo"
2174
 
 
2175
  #: modules/accordion/accordion.php:65
2176
- #@ fl-builder
2177
  msgctxt "Label size."
2178
  msgid "Small"
2179
  msgstr "Pequeno"
2180
 
 
2181
  #: modules/accordion/accordion.php:66
2182
- #@ fl-builder
2183
  msgctxt "Label size."
2184
  msgid "Medium"
2185
  msgstr "Médio"
2186
 
 
2187
  #: modules/accordion/accordion.php:67
2188
- #@ fl-builder
2189
  msgctxt "Label size."
2190
  msgid "Large"
2191
  msgstr "Grande"
2192
 
 
2193
  #: modules/accordion/accordion.php:75
2194
- #@ fl-builder
2195
  msgid "Item Spacing"
2196
  msgstr "Espaçamento do Item"
2197
 
 
2198
  #: modules/accordion/accordion.php:86
2199
- #@ fl-builder
2200
  msgid "Collapse Inactive"
2201
  msgstr "Expansão Inativa"
2202
 
 
2203
  #: modules/accordion/accordion.php:92
2204
- #@ fl-builder
2205
- msgid "Choosing yes will keep only one item open at a time. Choosing no will allow multiple items to be open at the same time."
2206
- msgstr "Escolher \"sim\" irá manter apenas um item aberto por vez. Escolher \"não\\\"\\ irá permitir que múltiplos itens permaneçam abertos ao mesmo tempo."
 
 
 
2207
 
2208
- #: modules/accordion/accordion.php:107
2209
- #: modules/tabs/tabs.php:74
2210
- #@ fl-builder
2211
  msgid "Add Item"
2212
  msgstr "Adicionar Item"
2213
 
2214
- #: modules/accordion/accordion.php:117
2215
- #: modules/tabs/tabs.php:84
2216
- #@ fl-builder
2217
  msgid "Label"
2218
  msgstr "Rótulo"
2219
 
2220
- #: modules/accordion/accordion.php:122
2221
- #: modules/post-grid/post-grid.php:195
2222
- #: modules/post-grid/post-grid.php:199
2223
- #: modules/post-grid/post-grid.php:235
2224
  #: modules/tabs/tabs.php:89
2225
- #@ fl-builder
2226
  msgid "Content"
2227
  msgstr "Conteúdo"
2228
 
2229
- #: modules/button/button.php:14
2230
- #: modules/callout/callout.php:477
2231
- #: modules/content-slider/content-slider.php:595
2232
- #: modules/cta/cta.php:212
2233
  #: modules/pricing-table/pricing-table.php:129
2234
- #@ fl-builder
2235
  msgid "Button"
2236
  msgstr "Botão"
2237
 
 
2238
  #: modules/button/button.php:15
2239
- #@ fl-builder
2240
  msgid "A simple call to action button."
2241
  msgstr "Um botão simples de chamada para ação."
2242
 
2243
- #: modules/button/button.php:54
2244
- #: modules/cta/cta.php:220
2245
- #@ fl-builder
2246
  msgid "Click Here"
2247
  msgstr "Clique Aqui"
2248
 
2249
- #: modules/button/button.php:62
2250
- #: modules/callout/callout.php:315
2251
- #: modules/callout/callout.php:363
2252
- #: modules/callout/callout.php:367
2253
- #: modules/cta/cta.php:228
2254
- #: modules/icon/icon.php:14
2255
  #: modules/icon/icon.php:34
2256
- #: modules/icon-group/icon-group.php:34
2257
- #: modules/icon-group/icon-group.php:135
2258
- #@ fl-builder
2259
  msgid "Icon"
2260
  msgstr "Ícone"
2261
 
2262
- #: modules/button/button.php:68
2263
- #: modules/button/button.php:72
2264
- #: modules/callout/callout.php:443
2265
- #: modules/callout/callout.php:447
2266
  #: modules/content-slider/content-slider.php:567
2267
  #: modules/content-slider/content-slider.php:571
2268
- #: modules/content-slider/content-slider.php:594
2269
- #: modules/cta/cta.php:238
2270
- #: modules/heading/heading.php:43
2271
- #: modules/heading/heading.php:47
2272
- #: modules/icon/icon.php:43
2273
- #: modules/icon-group/icon-group.php:139
2274
  #: modules/slideshow/slideshow.php:343
2275
- #@ fl-builder
2276
  msgid "Link"
2277
  msgstr ""
2278
 
 
2279
  #: modules/button/button.php:73
2280
- #@ fl-builder
2281
  msgid "http://www.example.com"
2282
  msgstr ""
2283
 
2284
- #: modules/button/button.php:80
2285
- #: modules/callout/callout.php:455
2286
- #: modules/content-slider/content-slider.php:576
2287
- #: modules/cta/cta.php:245
2288
- #: modules/heading/heading.php:54
2289
- #: modules/icon/icon.php:50
2290
  #: modules/photo/photo.php:478
2291
- #@ fl-builder
2292
  msgid "Link Target"
2293
  msgstr "Destino do Link"
2294
 
2295
- #: modules/button/button.php:83
2296
- #: modules/callout/callout.php:458
2297
- #: modules/content-slider/content-slider.php:579
2298
- #: modules/cta/cta.php:248
2299
- #: modules/heading/heading.php:57
2300
- #: modules/icon/icon.php:53
2301
  #: modules/photo/photo.php:481
2302
- #@ fl-builder
2303
  msgid "Same Window"
2304
  msgstr "Mesma Janela"
2305
 
2306
- #: modules/button/button.php:84
2307
- #: modules/callout/callout.php:459
2308
- #: modules/content-slider/content-slider.php:580
2309
- #: modules/cta/cta.php:249
2310
- #: modules/heading/heading.php:58
2311
- #: modules/icon/icon.php:54
2312
  #: modules/photo/photo.php:482
2313
- #@ fl-builder
2314
  msgid "New Window"
2315
  msgstr "Nova Janela"
2316
 
2317
- #: modules/button/button.php:98
2318
- #: modules/cta/cta.php:185
2319
- #: modules/heading/heading.php:72
 
2320
  #: modules/icon/icon.php:78
2321
- #: modules/icon-group/icon-group.php:47
2322
- #@ fl-builder
2323
- #@ default
2324
  msgid "Colors"
2325
  msgstr "Cores"
2326
 
2327
- #: modules/button/button.php:108
2328
- #: modules/callout/callout.php:407
2329
  #: modules/callout/callout.php:512
2330
- #: modules/content-slider/content-slider.php:630
2331
- #: modules/cta/cta.php:268
2332
- #: modules/icon/icon.php:100
2333
- #: modules/icon-group/icon-group.php:69
2334
- #@ fl-builder
2335
  msgid "Background Hover Color"
2336
  msgstr "Cor de Fundo (mouse sobrepondo o elemento)"
2337
 
2338
- #: modules/button/button.php:117
2339
- #: modules/callout/callout.php:521
2340
  #: modules/content-slider/content-slider.php:522
2341
  #: modules/content-slider/content-slider.php:635
2342
- #: modules/content-slider/content-slider.php:719
2343
- #: modules/cta/cta.php:189
2344
- #: modules/cta/cta.php:277
2345
- #: modules/heading/heading.php:77
2346
- #@ fl-builder
2347
  msgid "Text Color"
2348
  msgstr "Cor do Texto"
2349
 
2350
- #: modules/button/button.php:123
2351
- #: modules/callout/callout.php:527
2352
- #: modules/content-slider/content-slider.php:641
2353
- #: modules/cta/cta.php:283
2354
- #@ fl-builder
2355
  msgid "Text Hover Color"
2356
  msgstr "Cor do Texto (mouse sobrepondo o elemento)"
2357
 
2358
- #: modules/button/button.php:132
2359
- #: modules/callout/callout.php:415
2360
  #: modules/callout/callout.php:536
2361
- #: modules/content-slider/content-slider.php:646
2362
- #: modules/cta/cta.php:292
2363
- #: modules/icon/icon.php:108
2364
- #: modules/icon-group/icon-group.php:77
2365
- #@ fl-builder
2366
  msgid "Gradient"
2367
  msgstr "Degradê"
2368
 
2369
- #: modules/button/button.php:142
2370
- #: modules/callout/callout.php:242
2371
- #: modules/cta/cta.php:102
2372
- #: modules/heading/heading.php:82
2373
- #: modules/icon/icon.php:118
2374
- #: modules/icon-group/icon-group.php:87
2375
- #@ fl-builder
2376
  msgid "Structure"
2377
  msgstr "Estrutura"
2378
 
2379
- #: modules/button/button.php:149
2380
- #: modules/callout/callout.php:553
2381
- #@ fl-builder
2382
  msgctxt "Width."
2383
  msgid "Auto"
2384
  msgstr "Automática"
2385
 
 
2386
  #: modules/button/button.php:165
2387
- #@ fl-builder
2388
  msgid "Custom Width"
2389
  msgstr "Tamanho Personalizado"
2390
 
2391
- #: modules/button/button.php:173
2392
- #: modules/cta/cta.php:120
2393
- #: modules/heading/heading.php:86
2394
- #: modules/heading/heading.php:141
2395
- #: modules/icon/icon.php:130
2396
- #: modules/icon-group/icon-group.php:107
2397
- #: modules/photo/photo.php:414
2398
- #: modules/social-buttons/social-buttons.php:97
2399
- #@ fl-builder
2400
  msgid "Alignment"
2401
  msgstr "Alinhamento"
2402
 
2403
- #: modules/button/button.php:183
2404
- #: modules/callout/callout.php:559
2405
- #: modules/content-slider/content-slider.php:660
2406
- #: modules/cta/cta.php:306
2407
- #: modules/heading/heading.php:114
2408
- #: modules/heading/heading.php:171
2409
- #@ fl-builder
2410
  msgid "Font Size"
2411
  msgstr "Tamanho da Fonte"
2412
 
2413
- #: modules/button/button.php:199
2414
- #: modules/callout/callout.php:575
2415
  #: modules/cta/cta.php:322
2416
- #@ fl-builder
2417
  msgid "Round Corners"
2418
  msgstr "Cantos Arredondados"
2419
 
 
2420
  #: modules/callout/callout.php:14
2421
- #@ fl-builder
2422
  msgid "Callout"
2423
  msgstr "Chamada"
2424
 
 
2425
  #: modules/callout/callout.php:15
2426
- #@ fl-builder
2427
  msgid "A heading and snippet of text with an optional link, icon and image."
2428
  msgstr "Uma cabeçalho e um trecho de texto com link, ícone e imagem opcionais."
2429
 
 
2430
  #: modules/callout/callout.php:214
2431
  #: modules/content-slider/content-slider.php:407
2432
- #: modules/content-slider/content-slider.php:422
2433
- #: modules/cta/cta.php:72
2434
- #: modules/heading/heading.php:14
2435
- #: modules/heading/heading.php:33
2436
  #: modules/testimonials/testimonials.php:56
2437
  #: modules/testimonials/testimonials.php:61
2438
- #@ fl-builder
2439
  msgid "Heading"
2440
  msgstr "Cabeçalho"
2441
 
 
2442
  #: modules/callout/callout.php:246
2443
- #@ fl-builder
2444
  msgid "Overall Alignment"
2445
  msgstr "Alinhamento Geral"
2446
 
 
2447
  #: modules/callout/callout.php:253
2448
- #@ fl-builder
2449
  msgid "The alignment that will apply to all elements within the callout."
2450
- msgstr "O alinhamento que será aplicado a todos os elementos dentro do bloco de chamada."
 
 
2451
 
2452
- #: modules/callout/callout.php:261
2453
- #: modules/cta/cta.php:145
2454
- #@ fl-builder
2455
  msgid "Heading Structure"
2456
  msgstr "Estrutura do Cabeçalho"
2457
 
 
2458
  #: modules/callout/callout.php:265
2459
- #: modules/content-slider/content-slider.php:426
2460
- #: modules/cta/cta.php:149
2461
- #@ fl-builder
2462
  msgid "Heading Tag"
2463
  msgstr "Tag HTML do Cabeçalho"
2464
 
 
2465
  #: modules/callout/callout.php:278
2466
  #: modules/content-slider/content-slider.php:439
2467
- #: modules/content-slider/content-slider.php:453
2468
- #: modules/cta/cta.php:162
2469
  #: modules/testimonials/testimonials.php:69
2470
- #@ fl-builder
2471
  msgid "Heading Size"
2472
  msgstr "Tamanho do Cabeçalho"
2473
 
2474
- #: modules/callout/callout.php:292
2475
- #: modules/cta/cta.php:176
2476
- #@ fl-builder
2477
  msgid "Heading Custom Size"
2478
  msgstr "Tamanho Personalizado do Cabeçalho"
2479
 
2480
- #: modules/callout/callout.php:303
2481
- #: modules/post-grid/post-grid.php:113
2482
- #@ fl-builder
2483
- msgid "Image"
2484
- msgstr "Imagem"
2485
-
2486
  #: modules/callout/callout.php:310
2487
- #@ fl-builder
2488
  msgid "Image Type"
2489
  msgstr "Tipo de Imagem"
2490
 
 
2491
  #: modules/callout/callout.php:313
2492
- #@ fl-builder
2493
  msgctxt "Image type."
2494
  msgid "None"
2495
  msgstr "Nenhuma"
2496
 
2497
- #: modules/callout/callout.php:338
2498
- #: modules/photo/photo.php:401
2499
  #: modules/slideshow/slideshow.php:312
2500
- #@ fl-builder
2501
  msgid "Crop"
2502
  msgstr "Recorte"
2503
 
 
2504
  #: modules/callout/callout.php:341
2505
- #@ fl-builder
2506
  msgctxt "Crop"
2507
  msgid "None"
2508
  msgstr "Nenhum"
2509
 
2510
- #: modules/callout/callout.php:342
2511
- #: modules/photo/photo.php:405
2512
- #@ fl-builder
2513
  msgid "Landscape"
2514
  msgstr "Paisagem"
2515
 
2516
- #: modules/callout/callout.php:343
2517
- #: modules/photo/photo.php:406
2518
- #@ fl-builder
2519
  msgid "Panorama"
2520
  msgstr ""
2521
 
2522
- #: modules/callout/callout.php:344
2523
- #: modules/photo/photo.php:407
2524
- #@ fl-builder
2525
  msgid "Portrait"
2526
  msgstr "Retrato"
2527
 
2528
- #: modules/callout/callout.php:345
2529
- #: modules/photo/photo.php:408
2530
- #@ fl-builder
2531
  msgid "Square"
2532
  msgstr "Quadrado"
2533
 
2534
- #: modules/callout/callout.php:346
2535
- #: modules/photo/photo.php:409
2536
- #@ fl-builder
2537
  msgid "Circle"
2538
  msgstr "Círculo"
2539
 
2540
- #: modules/callout/callout.php:354
2541
- #: modules/callout/callout.php:374
2542
- #@ fl-builder
2543
  msgid "Above Heading"
2544
  msgstr "Acima do Cabeçalho"
2545
 
2546
- #: modules/callout/callout.php:355
2547
- #: modules/callout/callout.php:375
2548
- #@ fl-builder
2549
  msgid "Below Heading"
2550
  msgstr "Abaixo do Cabeçalho"
2551
 
2552
- #: modules/callout/callout.php:356
2553
- #: modules/callout/callout.php:378
2554
- #@ fl-builder
2555
  msgid "Left of Text and Heading"
2556
  msgstr "À Esquerda do Texto e Cabeçalho"
2557
 
2558
- #: modules/callout/callout.php:357
2559
- #: modules/callout/callout.php:379
2560
- #@ fl-builder
2561
  msgid "Right of Text and Heading"
2562
  msgstr "À Direita do Texto e Cabeçalho"
2563
 
 
2564
  #: modules/callout/callout.php:376
2565
- #@ fl-builder
2566
  msgid "Left of Heading"
2567
  msgstr "À Esquerda do Cabeçalho"
2568
 
 
2569
  #: modules/callout/callout.php:377
2570
- #@ fl-builder
2571
  msgid "Right of Heading"
2572
  msgstr "À Direita do Cabeçalho"
2573
 
 
2574
  #: modules/callout/callout.php:385
2575
- #@ fl-builder
2576
  msgid "Icon Colors"
2577
  msgstr "Cores do Ícone"
2578
 
2579
- #: modules/callout/callout.php:394
 
2580
  #: modules/icon/icon.php:87
2581
- #: modules/icon-group/icon-group.php:56
2582
- #@ fl-builder
2583
  msgid "Hover Color"
2584
  msgstr "Cor com mouse sobrepondo"
2585
 
 
2586
  #: modules/callout/callout.php:425
2587
- #@ fl-builder
2588
  msgid "Icon Structure"
2589
  msgstr "Estrutura do Ícone"
2590
 
2591
- #: modules/callout/callout.php:429
2592
- #: modules/icon/icon.php:122
2593
- #: modules/icon-group/icon-group.php:91
2594
- #: modules/post-grid/post-grid.php:136
2595
- #@ fl-builder
2596
  msgid "Size"
2597
  msgstr "Tamanho"
2598
 
 
2599
  #: modules/callout/callout.php:440
2600
  #: modules/content-slider/content-slider.php:564
2601
- #@ fl-builder
2602
  msgid "Call To Action"
2603
  msgstr "Chamada de Ação"
2604
 
 
2605
  #: modules/callout/callout.php:448
2606
- #@ fl-builder
2607
- msgid "The link applies to the entire module. If choosing a call to action type below, this link will also be used for the text or button."
2608
- msgstr "O link aplica-se ao módulo por inteiro. Se escolher um tipo de chamada de ação abaixo, este link também será usado para o texto ou botão."
 
 
 
2609
 
 
2610
  #: modules/callout/callout.php:468
2611
- #: modules/content-slider/content-slider.php:586
2612
- #: modules/cta/cta.php:14
2613
- #@ fl-builder
2614
  msgid "Call to Action"
2615
  msgstr "Chamada para Ação"
2616
 
 
2617
  #: modules/callout/callout.php:475
2618
  #: modules/content-slider/content-slider.php:593
2619
- #@ fl-builder
2620
  msgctxt "Call to action."
2621
  msgid "None"
2622
  msgstr "Nenhuma"
2623
 
 
2624
  #: modules/callout/callout.php:496
2625
  #: modules/content-slider/content-slider.php:614
2626
- #@ fl-builder
2627
  msgid "Button Icon"
2628
  msgstr "Ícone do Botão"
2629
 
 
2630
  #: modules/callout/callout.php:502
2631
- #: modules/content-slider/content-slider.php:620
2632
- #: modules/cta/cta.php:258
2633
- #@ fl-builder
2634
  msgid "Button Colors"
2635
  msgstr "Cores do Botão"
2636
 
 
2637
  #: modules/callout/callout.php:546
2638
- #: modules/content-slider/content-slider.php:656
2639
- #: modules/cta/cta.php:302
2640
- #@ fl-builder
2641
  msgid "Button Structure"
2642
  msgstr "Estrutura do Botão"
2643
 
 
2644
  #: modules/callout/callout.php:550
2645
- #@ fl-builder
2646
  msgid "Button Width"
2647
  msgstr "Largura do Botão"
2648
 
 
2649
  #: modules/contact-form/contact-form.php:14
2650
- #@ fl-builder
2651
  msgid "Contact Form"
2652
  msgstr "Formulário de Contato"
2653
 
 
2654
  #: modules/contact-form/contact-form.php:15
2655
- #@ fl-builder
2656
  msgid "A very simple contact form."
2657
  msgstr "Um formulário simples de contato."
2658
 
 
2659
  #: modules/contact-form/contact-form.php:36
2660
- #@ fl-builder
2661
  msgid "Contact Form Submission"
2662
  msgstr "Envio do Formulário de Contato"
2663
 
 
2664
  #: modules/contact-form/contact-form.php:64
2665
- #@ fl-builder
2666
  msgid "Send To Email"
2667
  msgstr "Enviar para Email"
2668
 
 
2669
  #: modules/contact-form/contact-form.php:66
2670
- #@ fl-builder
2671
  msgid "example@mail.com"
2672
  msgstr ""
2673
 
 
2674
  #: modules/contact-form/contact-form.php:67
2675
- #@ fl-builder
2676
  msgid "The contact form will send to this e-mail"
2677
  msgstr "O formulário de contato será enviado para este e-mail"
2678
 
 
2679
  #: modules/contact-form/includes/frontend.php:4
2680
- #@ fl-builder
2681
  msgctxt "Contact form field label."
2682
  msgid "Name"
2683
  msgstr "Nome"
2684
 
 
2685
  #: modules/contact-form/includes/frontend.php:5
2686
- #@ fl-builder
2687
  msgid "Please enter your name."
2688
  msgstr "Por favor, insira seu nome."
2689
 
2690
- #: modules/contact-form/includes/frontend.php:6
2691
- #@ fl-builder
2692
- msgid "Your name"
2693
- msgstr "Seu nome"
2694
-
2695
  #: modules/contact-form/includes/frontend.php:10
2696
- #@ fl-builder
2697
  msgid "Email"
2698
  msgstr "Email"
2699
 
 
2700
  #: modules/contact-form/includes/frontend.php:11
2701
- #@ fl-builder
2702
  msgid "Please enter a valid email."
2703
  msgstr "Por favor, insira um email válido."
2704
 
2705
- #: modules/contact-form/includes/frontend.php:12
2706
- #@ fl-builder
2707
- msgid "Your email"
2708
- msgstr "Seu email"
2709
-
2710
  #: modules/contact-form/includes/frontend.php:16
2711
- #@ fl-builder
2712
  msgid "Your Message"
2713
  msgstr "Sua Mensagem"
2714
 
 
2715
  #: modules/contact-form/includes/frontend.php:17
2716
- #@ fl-builder
2717
  msgid "Please enter a message."
2718
  msgstr "Por favor, escreva sua mensagem."
2719
 
2720
- #: modules/contact-form/includes/frontend.php:18
2721
- #@ fl-builder
2722
- msgid "Your message"
2723
- msgstr "Sua mensagem"
2724
-
2725
- #: modules/contact-form/includes/frontend.php:23
2726
- #@ fl-builder
2727
- msgid "Send"
2728
- msgstr "Enviar"
2729
-
2730
  #: modules/contact-form/includes/frontend.php:24
2731
- #@ fl-builder
2732
  msgid "Message Sent!"
2733
  msgstr "Mensagem Enviada!"
2734
 
 
2735
  #: modules/contact-form/includes/frontend.php:25
2736
- #@ fl-builder
2737
  msgid "Message failed. Please try again."
2738
  msgstr "Falha na Mensagem. Por favor, tente novamente."
2739
 
 
2740
  #: modules/content-slider/content-slider.php:14
2741
- #@ fl-builder
2742
  msgid "Content Slider"
2743
  msgstr "Slider de Conteúdo"
2744
 
 
2745
  #: modules/content-slider/content-slider.php:15
2746
- #@ fl-builder
2747
  msgid "Displays multiple slides with an optional heading and call to action."
2748
  msgstr "Exibe múltiplos slides com cabeçalho e chamada de ação opcionais."
2749
 
2750
- #: modules/content-slider/content-slider.php:191
2751
- #: modules/map/map.php:41
2752
- #: modules/separator/separator.php:58
2753
- #: modules/slideshow/slideshow.php:294
2754
- #@ fl-builder
2755
  msgid "Height"
2756
  msgstr "Altura"
2757
 
 
2758
  #: modules/content-slider/content-slider.php:196
2759
- #@ fl-builder
2760
- msgid "This setting is the minimum height of the content slider. Content will expand the height automatically."
2761
- msgstr "Esta configuração é a altura mínima para o slider de conteúdo. O conteúdo irá expandir a altura automaticamente."
 
 
 
2762
 
 
2763
  #: modules/content-slider/content-slider.php:200
2764
  #: modules/slideshow/slideshow.php:373
2765
- #: modules/testimonials/testimonials.php:82
2766
- #: modules/video/video.php:108
2767
- #@ fl-builder
2768
  msgid "Auto Play"
2769
  msgstr "Reproduzir Automaticamente"
2770
 
 
2771
  #: modules/content-slider/content-slider.php:214
2772
- #@ fl-builder
2773
  msgid "Show Play/Pause"
2774
  msgstr "Mostrar botão de Reproduzir / Pausar"
2775
 
 
2776
  #: modules/content-slider/content-slider.php:234
2777
  #: modules/testimonials/testimonials.php:102
2778
- #@ fl-builder
2779
  msgctxt "Transition type."
2780
  msgid "Slide"
2781
- msgstr ""
2782
 
 
2783
  #: modules/content-slider/content-slider.php:248
2784
  #: modules/testimonials/testimonials.php:121
2785
- #@ fl-builder
2786
  msgid "Show Arrows"
2787
  msgstr "Mostrar Setas"
2788
 
 
2789
  #: modules/content-slider/content-slider.php:257
2790
  #: modules/testimonials/testimonials.php:151
2791
- #@ fl-builder
2792
  msgid "Show Dots"
2793
  msgstr "Mostrar Pontos"
2794
 
 
2795
  #: modules/content-slider/content-slider.php:271
2796
- #@ fl-builder
2797
  msgid "Max Content Width"
2798
  msgstr "Largura Máxima do Conteúdo"
2799
 
 
2800
  #: modules/content-slider/content-slider.php:276
2801
- #@ fl-builder
2802
  msgid "The max width that the content area will be within your slides."
2803
- msgstr "A largura máxima que a área de conteúdo irá ocupar dentro de seus slides."
 
2804
 
 
2805
  #: modules/content-slider/content-slider.php:283
2806
- #@ fl-builder
2807
  msgid "Slides"
2808
  msgstr ""
2809
 
 
2810
  #: modules/content-slider/content-slider.php:290
2811
- #@ fl-builder
2812
  msgid "Slide"
2813
  msgstr ""
2814
 
 
2815
  #: modules/content-slider/content-slider.php:305
2816
- #@ fl-builder
2817
  msgid "Slide Settings"
2818
  msgstr "Configurações do Slide"
2819
 
 
2820
  #: modules/content-slider/content-slider.php:315
2821
- #@ fl-builder
2822
  msgid "Slide Label"
2823
  msgstr "Rótulo do Slide"
2824
 
 
2825
  #: modules/content-slider/content-slider.php:316
2826
- #@ fl-builder
2827
- msgid "A label to identify this slide on the Slides tab of the Content Slider settings."
2828
- msgstr "Um rótulo para identificar este slide na aba de Slides, nas configurações do Slider de Conteúdo"
 
 
 
2829
 
 
2830
  #: modules/content-slider/content-slider.php:321
2831
- #@ fl-builder
2832
  msgid "Background Layout"
2833
  msgstr "Layout do Fundo"
2834
 
 
2835
  #: modules/content-slider/content-slider.php:327
2836
- #@ fl-builder
2837
  msgid "This setting is for the entire background of your slide."
2838
  msgstr "Esta configuração corresponde ao fundo inteiro de seu slide."
2839
 
 
2840
  #: modules/content-slider/content-slider.php:362
2841
- #@ fl-builder
2842
  msgid "Background Video Code"
2843
  msgstr "Código do Vídeo de Fundo"
2844
 
 
2845
  #: modules/content-slider/content-slider.php:368
2846
- #@ fl-builder
2847
  msgid "Content Layout"
2848
  msgstr "Layout do Conteúdo"
2849
 
 
2850
  #: modules/content-slider/content-slider.php:374
2851
- #@ fl-builder
2852
- msgid "This allows you to add content over or in addition to the background selection above. The location of the content layout can be selected in the style tab."
2853
- msgstr "Isto permite que você adicione conteúdo sobre, ou em complemento à seleção do fundo acima. A localização do layout do conteúdo pode ser selecionada na aba de estilo."
 
 
 
 
 
2854
 
 
2855
  #: modules/content-slider/content-slider.php:377
2856
- #@ fl-builder
2857
  msgid "Text &amp; Photo"
2858
  msgstr "Texto &amp; Foto"
2859
 
 
2860
  #: modules/content-slider/content-slider.php:378
2861
- #@ fl-builder
2862
  msgid "Text &amp; Video"
2863
  msgstr "Texto &amp; Vídeo"
2864
 
 
2865
  #: modules/content-slider/content-slider.php:379
2866
- #@ fl-builder
2867
  msgctxt "Content type."
2868
  msgid "None"
2869
  msgstr "Nenhum"
2870
 
2871
- #: modules/content-slider/content-slider.php:402
2872
- #: modules/video/video.php:132
2873
- #@ fl-builder
2874
  msgid "Video Embed Code"
2875
  msgstr "Código de Incorporação do Vídeo"
2876
 
 
2877
  #: modules/content-slider/content-slider.php:462
2878
- #@ fl-builder
2879
  msgid "Text Position"
2880
  msgstr "Posição do Texto"
2881
 
 
2882
  #: modules/content-slider/content-slider.php:468
2883
- #@ fl-builder
2884
- msgid "The position will move the content layout selections left, right or center over the background of the slide."
2885
- msgstr "A posição irá mover o layout do conteúdo para a esquerda, direita ou no centro, sobre o fundo do slide."
 
 
 
2886
 
 
2887
  #: modules/content-slider/content-slider.php:485
2888
- #@ fl-builder
2889
  msgid "Top Margin"
2890
  msgstr "Margem Superior"
2891
 
 
2892
  #: modules/content-slider/content-slider.php:493
2893
- #@ fl-builder
2894
  msgid "Bottom Margin"
2895
  msgstr "Margem Inferior"
2896
 
 
2897
  #: modules/content-slider/content-slider.php:501
2898
- #@ fl-builder
2899
  msgid "Left Margin"
2900
  msgstr "Margem Esquerda"
2901
 
 
2902
  #: modules/content-slider/content-slider.php:509
2903
- #@ fl-builder
2904
  msgid "Right Margin"
2905
  msgstr "Margem Direita"
2906
 
 
2907
  #: modules/content-slider/content-slider.php:518
2908
- #@ fl-builder
2909
  msgid "Text Colors"
2910
  msgstr "Cores do Texto"
2911
 
 
2912
  #: modules/content-slider/content-slider.php:528
2913
- #@ fl-builder
2914
  msgid "Text Shadow"
2915
  msgstr "Sombra do Texto"
2916
 
 
2917
  #: modules/content-slider/content-slider.php:537
2918
  #: modules/content-slider/content-slider.php:725
2919
- #@ fl-builder
2920
  msgid "Text Background Color"
2921
  msgstr "Cor de Fundo do Texto"
2922
 
 
2923
  #: modules/content-slider/content-slider.php:538
2924
- #@ fl-builder
2925
- msgid "The color applies to the overlay behind text over the background selections."
2926
- msgstr "A cor aplica-se ao elemento que posiciona-se atrás do texto e acima do fundo."
 
2927
 
 
2928
  #: modules/content-slider/content-slider.php:543
2929
- #@ fl-builder
2930
  msgid "Text Background Opacity"
2931
  msgstr "Opacidade do Fundo do Texto"
2932
 
 
2933
  #: modules/content-slider/content-slider.php:551
2934
- #@ fl-builder
2935
  msgid "Text Background Height"
2936
  msgstr "Altura do Fundo do Texto"
2937
 
 
2938
  #: modules/content-slider/content-slider.php:553
2939
- #@ fl-builder
2940
- msgid "Auto will allow the overlay to fit however long the text content is. 100% will fit the overlay to the top and bottom of the slide."
2941
- msgstr "\"Automático\" irá permitir que o elemento atrás do texto ajuste-se a texto, não importa o quão grande ele seja. 100% irá ajustar o elemento atrás do texto ao topo e base do slide."
 
 
 
 
2942
 
 
2943
  #: modules/content-slider/content-slider.php:555
2944
- #@ fl-builder
2945
  msgctxt "Background height."
2946
  msgid "Auto"
2947
  msgstr "Automático"
2948
 
 
2949
  #: modules/content-slider/content-slider.php:572
2950
- #@ fl-builder
2951
- msgid "The link applies to the entire slide. If choosing a call to action type below, this link will also be used for the text or button."
2952
- msgstr "O link aplica-se ao slide por completo. Se você escolher um tipo de chamada de ação abaixo, o link também será usado para o texto ou botão."
 
 
 
2953
 
 
2954
  #: modules/content-slider/content-slider.php:676
2955
- #@ fl-builder
2956
  msgid "Border Radius"
2957
  msgstr "Arredondamento dos Cantos"
2958
 
 
2959
  #: modules/content-slider/content-slider.php:687
2960
- #@ fl-builder
2961
  msgctxt "Module settings form tab. Display on mobile devices."
2962
  msgid "Mobile"
2963
  msgstr "Dispositivos Móveis"
2964
 
 
2965
  #: modules/content-slider/content-slider.php:690
2966
- #@ fl-builder
2967
  msgid "Mobile Photo"
2968
  msgstr "Foto para Dispositivos Móveis"
2969
 
 
2970
  #: modules/content-slider/content-slider.php:696
2971
- #@ fl-builder
2972
- msgid "You can choose a different photo that the slide will change to on mobile devices or no photo if desired."
2973
- msgstr "Você pode escolher uma foto diferente para que o slide alterne em dispositivos móveis, ou também pode não selecionar nenhuma foto, se desejar."
 
 
 
2974
 
 
2975
  #: modules/content-slider/content-slider.php:698
2976
- #@ fl-builder
2977
  msgid "Use Main Photo"
2978
  msgstr "Usar Foto Principal"
2979
 
 
2980
  #: modules/content-slider/content-slider.php:699
2981
- #@ fl-builder
2982
  msgid "Choose Another Photo"
2983
  msgstr "Escolher Outra Foto"
2984
 
 
2985
  #: modules/content-slider/content-slider.php:700
2986
- #@ fl-builder
2987
  msgid "No Photo"
2988
  msgstr "Nenhuma Foto"
2989
 
 
2990
  #: modules/content-slider/content-slider.php:715
2991
- #@ fl-builder
2992
  msgid "Mobile Text Colors"
2993
  msgstr "Cores do Texto em Dispositivos Móveis"
2994
 
 
2995
  #: modules/cta/cta.php:15
2996
- #@ fl-builder
2997
  msgid "Display a heading, subheading and a button."
2998
  msgstr "Exibe um cabeçalho, um subcabeçalho e um botão."
2999
 
 
3000
  #: modules/cta/cta.php:73
3001
- #@ fl-builder
3002
  msgid "Ready to find out more?"
3003
  msgstr "Pronto para saber mais?"
3004
 
 
3005
  #: modules/cta/cta.php:88
3006
- #@ fl-builder
3007
  msgid "Drop us a line today for a free quote!"
3008
  msgstr "Envie uma mensagem hoje para nós, para receber um orçamento gratuito!"
3009
 
3010
- #: modules/cta/cta.php:106
3011
- #: modules/gallery/gallery.php:220
3012
- #: modules/post-grid/post-grid.php:44
3013
- #: modules/tabs/tabs.php:52
3014
  #: modules/testimonials/testimonials.php:37
3015
  #: modules/woocommerce/woocommerce.php:57
3016
- #@ fl-builder
3017
  msgid "Layout"
3018
  msgstr ""
3019
 
 
3020
  #: modules/cta/cta.php:109
3021
- #@ fl-builder
3022
  msgid "Inline"
3023
  msgstr "Em Linha"
3024
 
 
3025
  #: modules/cta/cta.php:110
3026
- #@ fl-builder
3027
  msgid "Stacked"
3028
  msgstr "Empilhado"
3029
 
3030
- #: modules/cta/cta.php:130
3031
- #: modules/icon-group/icon-group.php:99
3032
- #@ fl-builder
3033
  msgid "Spacing"
3034
  msgstr "Espaçamento"
3035
 
 
3036
  #: modules/cta/cta.php:201
3037
- #@ fl-builder
3038
  msgid "Background Opacity"
3039
  msgstr "Opacidade do Fundo"
3040
 
 
3041
  #: modules/cta/cta.php:234
3042
- #@ fl-builder
3043
  msgid "Button Link"
3044
  msgstr "Link do Botão"
3045
 
3046
- #: modules/gallery/gallery.php:14
3047
- #: modules/post-grid/post-grid.php:55
3048
- #@ fl-builder
3049
  msgid "Gallery"
3050
  msgstr "Galeria"
3051
 
 
3052
  #: modules/gallery/gallery.php:15
3053
- #@ fl-builder
3054
  msgid "Display multiple photos in a gallery view."
3055
  msgstr "Exibe múltiplas fotos em modo de galeria de imagens."
3056
 
 
3057
  #: modules/gallery/gallery.php:223
3058
- #@ fl-builder
3059
  msgid "Collage"
3060
  msgstr "Colagem"
3061
 
 
3062
  #: modules/gallery/gallery.php:224
3063
- #@ fl-builder
3064
  msgctxt "Gallery layout: thumbnails."
3065
  msgid "Thumbs"
3066
- msgstr ""
3067
 
 
3068
  #: modules/gallery/gallery.php:260
3069
- #@ fl-builder
3070
  msgid "Photo Size"
3071
  msgstr "Tamanho da Foto"
3072
 
 
3073
  #: modules/gallery/gallery.php:263
3074
- #@ fl-builder
3075
  msgctxt "Photo size."
3076
  msgid "Small"
3077
  msgstr "Pequena"
3078
 
 
3079
  #: modules/gallery/gallery.php:264
3080
- #@ fl-builder
3081
  msgctxt "Photo size."
3082
  msgid "Medium"
3083
  msgstr "Média"
3084
 
 
3085
  #: modules/gallery/gallery.php:265
3086
- #@ fl-builder
3087
  msgctxt "Photo size."
3088
  msgid "Large"
3089
  msgstr "Grande"
3090
 
 
3091
  #: modules/gallery/gallery.php:270
3092
- #@ fl-builder
3093
  msgid "Photo Spacing"
3094
  msgstr "Espaçamento da Foto"
3095
 
 
3096
  #: modules/gallery/gallery.php:278
3097
- #@ fl-builder
3098
  msgid "Show Captions"
3099
  msgstr "Mostrar Legendas"
3100
 
3101
- #: modules/gallery/gallery.php:281
3102
- #: modules/photo/photo.php:432
3103
- #@ fl-builder
3104
  msgid "Never"
3105
  msgstr "Nunca"
3106
 
3107
- #: modules/gallery/gallery.php:282
3108
- #: modules/photo/photo.php:433
3109
- #@ fl-builder
3110
  msgid "On Hover"
3111
  msgstr "Com o mouse sobrepondo"
3112
 
3113
- #: modules/gallery/gallery.php:283
3114
- #: modules/photo/photo.php:434
3115
- #@ fl-builder
3116
  msgid "Below Photo"
3117
  msgstr "Abaixo da Foto"
3118
 
 
3119
  #: modules/gallery/gallery.php:285
3120
- #@ fl-builder
3121
- msgid "The caption pulls from whatever text you put in the caption area in the media manager for each image. The caption is also pulled directly from SmugMug if you have captions set in your gallery."
3122
- msgstr "A legenda corresponde a qualquer texto que você tenha inserido na área de legenda, no gerenciador de mídia, para cada imagem. A legenda também pode vir também do SmugMug se você tiver legendas configuradas em sua galeria."
 
 
 
 
 
3123
 
3124
- #: modules/gallery/gallery.php:289
3125
- #: modules/slideshow/slideshow.php:335
3126
- #@ fl-builder
3127
  msgid "Click Action"
3128
  msgstr "Ação do Clique"
3129
 
 
3130
  #: modules/gallery/gallery.php:292
3131
- #@ fl-builder
3132
  msgctxt "Click action."
3133
  msgid "None"
3134
  msgstr "Nenhuma"
3135
 
3136
- #: modules/gallery/gallery.php:293
3137
- #: modules/photo/photo.php:452
3138
- #@ fl-builder
3139
  msgid "Lightbox"
3140
  msgstr ""
3141
 
 
3142
  #: modules/gallery/gallery.php:294
3143
- #@ fl-builder
3144
  msgid "Photo Link"
3145
  msgstr "Link da Foto"
3146
 
 
3147
  #: modules/heading/heading.php:15
3148
- #@ fl-builder
3149
  msgid "Display a title/page heading."
3150
  msgstr "Exibe um título / cabeçalho de página."
3151
 
3152
- #: modules/heading/heading.php:16
3153
- #: modules/photo/photo.php:27
3154
- #: modules/rich-text/rich-text.php:16
3155
- #: modules/separator/separator.php:16
3156
  #: modules/video/video.php:21
3157
- #@ fl-builder
3158
  msgid "Basic Modules"
3159
  msgstr "Módulos Básicos"
3160
 
 
3161
  #: modules/heading/heading.php:101
3162
- #@ fl-builder
3163
  msgid "HTML Tag"
3164
  msgstr "Tag HTML"
3165
 
3166
- #: modules/heading/heading.php:128
3167
- #: modules/heading/heading.php:188
3168
- #@ fl-builder
3169
  msgid "Custom Font Size"
3170
  msgstr "Tamanho Personalizado da Fonte"
3171
 
 
3172
  #: modules/heading/heading.php:137
3173
- #@ fl-builder
3174
  msgid "Mobile Structure"
3175
  msgstr "Estrutura para Dispositivos Móveis"
3176
 
 
3177
  #: modules/heading/heading.php:158
3178
- #@ fl-builder
3179
  msgid "Custom Alignment"
3180
  msgstr "Alinhamento Personalizado"
3181
 
 
3182
  #: modules/html/html.php:14
3183
- #@ fl-builder
3184
  msgid "HTML"
3185
  msgstr ""
3186
 
 
3187
  #: modules/html/html.php:15
3188
- #@ fl-builder
3189
  msgid "Display raw HTML code."
3190
  msgstr "Exibe código HTML bruto."
3191
 
3192
- #: modules/icon/icon.php:15
3193
- #@ fl-builder
3194
- msgid "Display an icon and optional title."
3195
- msgstr "Exibe um ícone com um título opcional."
3196
-
3197
  #: modules/icon-group/icon-group.php:14
3198
- #@ fl-builder
3199
  msgid "Icon Group"
3200
  msgstr "Grupo de Ícones"
3201
 
 
3202
  #: modules/icon-group/icon-group.php:15
3203
- #@ fl-builder
3204
  msgid "Display a group of linked Font Awesome icons."
3205
  msgstr "Exibe um grupo de ícones da biblioteca Fonte Awesome, com links."
3206
 
 
3207
  #: modules/icon-group/icon-group.php:27
3208
- #@ fl-builder
3209
  msgid "Icons"
3210
  msgstr "Ícones"
3211
 
 
3212
  #: modules/icon-group/icon-group.php:125
3213
- #@ fl-builder
3214
  msgid "Add Icon"
3215
  msgstr "Adicionar Ícone"
3216
 
 
 
 
 
 
 
3217
  #: modules/map/map.php:14
3218
- #@ fl-builder
3219
  msgid "Map"
3220
  msgstr "Mapa"
3221
 
 
3222
  #: modules/map/map.php:15
3223
- #@ fl-builder
3224
  msgid "Display a Google map."
3225
  msgstr "Exibe um Mapa do Google."
3226
 
 
3227
  #: modules/map/map.php:33
3228
- #@ fl-builder
3229
  msgid "Address"
3230
  msgstr "Endereço"
3231
 
 
3232
  #: modules/map/map.php:34
3233
- #@ fl-builder
3234
  msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
3235
  msgstr ""
3236
 
 
3237
  #: modules/photo/photo.php:26
3238
- #@ fl-builder
3239
  msgid "Upload a photo or display one from the media library."
3240
  msgstr "Carregar uma foto ou exibir uma da biblioteca de mídia."
3241
 
 
3242
  #: modules/photo/photo.php:375
3243
- #@ fl-builder
3244
  msgid "Photo Source"
3245
  msgstr "Origem da Foto"
3246
 
3247
- #: modules/photo/photo.php:379
3248
- #: modules/photo/photo.php:451
3249
- #@ fl-builder
3250
  msgid "URL"
3251
  msgstr ""
3252
 
 
3253
  #: modules/photo/photo.php:396
3254
- #@ fl-builder
3255
  msgid "Photo URL"
3256
  msgstr "URL da Foto"
3257
 
 
3258
  #: modules/photo/photo.php:397
3259
- #@ fl-builder
3260
  msgid "http://www.example.com/my-photo.jpg"
3261
  msgstr ""
3262
 
 
3263
  #: modules/photo/photo.php:404
3264
- #@ fl-builder
3265
  msgctxt "Crop."
3266
  msgid "None"
3267
  msgstr "Nenhuma"
3268
 
3269
- #: modules/photo/photo.php:425
3270
- #: modules/photo/photo.php:439
3271
- #@ fl-builder
3272
  msgid "Caption"
3273
  msgstr "Legenda"
3274
 
 
3275
  #: modules/photo/photo.php:429
3276
- #@ fl-builder
3277
  msgid "Show Caption"
3278
  msgstr "Mostrar Legenda"
3279
 
 
3280
  #: modules/photo/photo.php:448
3281
- #@ fl-builder
3282
  msgid "Link Type"
3283
  msgstr "Tipo de Link"
3284
 
 
3285
  #: modules/photo/photo.php:450
3286
- #@ fl-builder
3287
  msgctxt "Link type."
3288
  msgid "None"
3289
  msgstr "Nenhum"
3290
 
 
3291
  #: modules/photo/photo.php:453
3292
- #@ fl-builder
3293
  msgid "Photo File"
3294
  msgstr "Arquivo da Foto"
3295
 
 
 
 
 
 
 
3296
  #: modules/photo/photo.php:464
3297
- #@ fl-builder
3298
- msgid "Link type applies to how the image should be linked on click. You can choose a specific URL, the individual photo or a separate page with the photo."
3299
- msgstr "\"Link\" é referente a como a imagem deve ser linkada quando for clicada. Você pode escolher uma URL específica, o arquivo da foto ou uma página com a foto."
 
 
 
 
3300
 
3301
- #: modules/photo/photo.php:471
3302
- #: modules/slideshow/slideshow.php:356
3303
- #@ fl-builder
3304
  msgid "Link URL"
3305
  msgstr "URL do Link"
3306
 
 
3307
  #: modules/post-grid/includes/frontend.php:41
3308
- #@ fl-builder
3309
  msgid "No posts found."
3310
  msgstr "Nenhum post encontrado."
3311
 
 
3312
  #: modules/post-grid/includes/post-feed.php:14
3313
  #: modules/post-grid/includes/post-grid.php:24
3314
  #, php-format
3315
- #@ fl-builder
3316
  msgctxt "%s stands for author name."
3317
  msgid "By %s"
3318
  msgstr "Por %s"
3319
 
 
3320
  #: modules/post-grid/post-grid.php:14
3321
- #@ fl-builder
3322
  msgid "Posts"
3323
  msgstr ""
3324
 
 
3325
  #: modules/post-grid/post-grid.php:15
3326
- #@ fl-builder
3327
  msgid "Display a grid of your WordPress posts."
3328
  msgstr "Exibe uma grade de seus post no WordPress."
3329
 
 
3330
  #: modules/post-grid/post-grid.php:51
3331
- #@ fl-builder
3332
  msgid "Layout Style"
3333
  msgstr "Estilo de Layout"
3334
 
3335
- #: modules/post-grid/post-grid.php:54
3336
- #: modules/post-grid/post-grid.php:88
3337
- #@ fl-builder
3338
  msgid "Grid"
3339
  msgstr "Grade"
3340
 
 
3341
  #: modules/post-grid/post-grid.php:56
3342
- #@ fl-builder
3343
  msgid "Feed"
3344
  msgstr ""
3345
 
 
3346
  #: modules/post-grid/post-grid.php:71
3347
- #@ fl-builder
3348
  msgid "Pagination Style"
3349
  msgstr "Estilo de Paginação"
3350
 
 
3351
  #: modules/post-grid/post-grid.php:74
3352
- #@ fl-builder
3353
  msgid "Numbers"
3354
  msgstr "Números"
3355
 
 
3356
  #: modules/post-grid/post-grid.php:76
3357
- #@ fl-builder
3358
  msgctxt "Pagination style."
3359
  msgid "None"
3360
  msgstr "Nenhum"
3361
 
 
3362
  #: modules/post-grid/post-grid.php:81
3363
- #@ fl-builder
3364
  msgid "Posts Per Page"
3365
  msgstr "Posts Por Página"
3366
 
 
3367
  #: modules/post-grid/post-grid.php:92
3368
- #@ fl-builder
3369
  msgid "Post Width"
3370
  msgstr "Largura do Post"
3371
 
 
3372
  #: modules/post-grid/post-grid.php:100
3373
- #@ fl-builder
3374
  msgid "Post Spacing"
3375
  msgstr "Espaçamento do Post"
3376
 
 
3377
  #: modules/post-grid/post-grid.php:109
3378
- #@ fl-builder
3379
  msgid "Featured Image"
3380
  msgstr "Imagem Destacada"
3381
 
3382
- #: modules/post-grid/post-grid.php:116
3383
- #: modules/post-grid/post-grid.php:149
3384
- #: modules/post-grid/post-grid.php:158
3385
- #: modules/post-grid/post-grid.php:188
3386
- #: modules/post-grid/post-grid.php:202
3387
- #: modules/post-grid/post-grid.php:216
3388
- #@ fl-builder
3389
  msgid "Show"
3390
  msgstr "Mostrar"
3391
 
3392
- #: modules/post-grid/post-grid.php:117
3393
- #: modules/post-grid/post-grid.php:150
3394
- #: modules/post-grid/post-grid.php:159
3395
- #: modules/post-grid/post-grid.php:189
3396
- #: modules/post-grid/post-grid.php:203
3397
- #: modules/post-grid/post-grid.php:217
3398
- #@ fl-builder
3399
  msgid "Hide"
3400
  msgstr "Esconder"
3401
 
 
3402
  #: modules/post-grid/post-grid.php:130
3403
- #@ fl-builder
3404
  msgid "Above Text"
3405
  msgstr "Acima do Texto"
3406
 
 
3407
  #: modules/post-grid/post-grid.php:131
3408
- #@ fl-builder
3409
  msgid "Beside Text"
3410
  msgstr "Ao lado do Texto"
3411
 
 
3412
  #: modules/post-grid/post-grid.php:142
3413
- #@ fl-builder
3414
  msgid "Post Info"
3415
  msgstr "Informações do Post"
3416
 
 
3417
  #: modules/post-grid/post-grid.php:169
3418
- #@ fl-builder
3419
  msgid "Date Format"
3420
  msgstr "Formato da Data"
3421
 
 
3422
  #: modules/post-grid/post-grid.php:185
3423
- #@ fl-builder
3424
  msgid "Comments"
3425
  msgstr "Comentários"
3426
 
 
3427
  #: modules/post-grid/post-grid.php:213
3428
- #@ fl-builder
3429
  msgid "More Link"
3430
  msgstr "Link \"Leia Mais\""
3431
 
 
3432
  #: modules/post-grid/post-grid.php:227
3433
- #@ fl-builder
3434
  msgid "More Link Text"
3435
  msgstr "texto do Link \"Leia Mais\""
3436
 
 
3437
  #: modules/post-grid/post-grid.php:228
3438
- #@ fl-builder
3439
  msgid "Read More"
3440
  msgstr "Leia Mais"
3441
 
 
3442
  #: modules/pricing-table/pricing-table.php:14
3443
- #@ fl-builder
3444
  msgid "Pricing Table"
3445
  msgstr "Tabela de Preços"
3446
 
 
3447
  #: modules/pricing-table/pricing-table.php:15
3448
- #@ fl-builder
3449
  msgid "A simple pricing table generator."
3450
  msgstr "Um simples gerador de tabela de preços"
3451
 
 
3452
  #: modules/pricing-table/pricing-table.php:26
3453
- #@ fl-builder
3454
  msgid "Pricing Boxes"
3455
  msgstr "Caixas de Preço"
3456
 
 
3457
  #: modules/pricing-table/pricing-table.php:33
3458
- #@ fl-builder
3459
  msgid "Pricing Box"
3460
  msgstr "Caixa de Preço"
3461
 
 
3462
  #: modules/pricing-table/pricing-table.php:50
3463
- #@ fl-builder
3464
  msgid "Box Spacing"
3465
  msgstr "Espaçamento da Caixa"
3466
 
 
3467
  #: modules/pricing-table/pricing-table.php:53
3468
  #: modules/testimonials/testimonials.php:40
3469
- #@ fl-builder
3470
  msgid "Wide"
3471
  msgstr "Largo"
3472
 
 
3473
  #: modules/pricing-table/pricing-table.php:54
3474
- #@ fl-builder
3475
  msgid "Tight"
3476
  msgstr "Estreito"
3477
 
 
3478
  #: modules/pricing-table/pricing-table.php:59
3479
- #@ fl-builder
3480
  msgid "Features Min Height"
3481
  msgstr "Altura mínima das Funcionalidades"
3482
 
 
3483
  #: modules/pricing-table/pricing-table.php:63
3484
- #@ fl-builder
3485
- msgid "Use this to normalize the height of your boxes when they have different numbers of features."
3486
- msgstr "Use esta configuração para normalizar a altura das suas caixas quando elas tem diferentes números de funcionalidades."
 
 
 
3487
 
 
3488
  #: modules/pricing-table/pricing-table.php:67
3489
- #@ fl-builder
3490
  msgid "Border Size"
3491
  msgstr "Tamanho da Borda"
3492
 
 
3493
  #: modules/pricing-table/pricing-table.php:70
3494
- #@ fl-builder
3495
  msgctxt "Border size."
3496
  msgid "Wide"
3497
  msgstr "Larga"
3498
 
 
3499
  #: modules/pricing-table/pricing-table.php:71
3500
- #@ fl-builder
3501
  msgctxt "Border size."
3502
  msgid "Tight"
3503
  msgstr "Estreita"
3504
 
 
3505
  #: modules/pricing-table/pricing-table.php:84
3506
- #@ fl-builder
3507
  msgid "Add Pricing Box"
3508
  msgstr "Adicionar Caixa de Preço"
3509
 
 
3510
  #: modules/pricing-table/pricing-table.php:98
3511
- #@ fl-builder
3512
  msgid "Title Size"
3513
  msgstr "Tamanho do Título"
3514
 
 
3515
  #: modules/pricing-table/pricing-table.php:107
3516
- #@ fl-builder
3517
  msgid "Price Box"
3518
  msgstr "Caixa de Preço"
3519
 
 
3520
  #: modules/pricing-table/pricing-table.php:111
3521
- #@ fl-builder
3522
  msgid "Price"
3523
  msgstr "Preço"
3524
 
 
3525
  #: modules/pricing-table/pricing-table.php:115
3526
- #@ fl-builder
3527
  msgid "Duration"
3528
  msgstr "Duração"
3529
 
 
3530
  #: modules/pricing-table/pricing-table.php:116
3531
- #@ fl-builder
3532
  msgid "per Year"
3533
  msgstr "por Ano"
3534
 
 
3535
  #: modules/pricing-table/pricing-table.php:120
3536
- #@ fl-builder
3537
  msgid "Price Size"
3538
  msgstr "Tamanho do Preço"
3539
 
 
3540
  #: modules/pricing-table/pricing-table.php:133
3541
- #@ fl-builder
3542
  msgid "Button Text"
3543
  msgstr "Texto do Botão"
3544
 
 
3545
  #: modules/pricing-table/pricing-table.php:137
3546
- #@ fl-builder
3547
  msgid "Button URL"
3548
  msgstr "URL do Botão"
3549
 
 
3550
  #: modules/pricing-table/pricing-table.php:142
3551
- #@ fl-builder
3552
  msgctxt "Price features displayed in pricing box."
3553
  msgid "Features"
3554
  msgstr "Funcionalidades"
3555
 
 
3556
  #: modules/pricing-table/pricing-table.php:147
3557
- #@ fl-builder
3558
  msgid "One feature per line. HTML is okay."
3559
  msgstr "Uma funcionalidade por linha. HTML é permitido."
3560
 
 
3561
  #: modules/pricing-table/pricing-table.php:162
3562
- #@ fl-builder
3563
  msgid "Box Background"
3564
  msgstr "Fundo da Caixa"
3565
 
 
3566
  #: modules/pricing-table/pricing-table.php:167
3567
- #@ fl-builder
3568
  msgid "Box Foreground"
3569
  msgstr "Exterior da Caixa"
3570
 
 
3571
  #: modules/pricing-table/pricing-table.php:173
3572
- #@ fl-builder
3573
  msgid "Accent Color"
3574
  msgstr "Cor de realce"
3575
 
 
3576
  #: modules/pricing-table/pricing-table.php:178
3577
- #@ fl-builder
3578
  msgid "Accent Text Color"
3579
  msgstr "Cor do Texto com realce"
3580
 
 
3581
  #: modules/pricing-table/pricing-table.php:182
3582
- #@ fl-builder
3583
  msgid "Box Top Margin"
3584
  msgstr "Margem Superior da Caixa"
3585
 
 
3586
  #: modules/rich-text/rich-text.php:15
3587
- #@ fl-builder
3588
  msgid "A WYSIWYG text editor."
3589
  msgstr "Um editor de texto WYSIWYG."
3590
 
 
3591
  #: modules/separator/separator.php:14
3592
- #@ fl-builder
3593
  msgid "Separator"
3594
  msgstr "Separador"
3595
 
 
3596
  #: modules/separator/separator.php:15
3597
- #@ fl-builder
3598
  msgid "A divider line to separate content."
3599
  msgstr "Uma linha divisória para separar conteúdo."
3600
 
 
3601
  #: modules/separator/separator.php:85
3602
- #@ fl-builder
3603
- msgid "The type of border to use. Double borders must have a height of at least 3px to render properly."
3604
- msgstr "O tipo de borda a ser usado. Bordas duplas precisam ter uma altura de no mínimo 3px para renderizar adequadamente."
 
 
 
3605
 
 
3606
  #: modules/sidebar/includes/settings-general.php:5
3607
  #: modules/sidebar/sidebar.php:14
3608
- #@ fl-builder
3609
  msgid "Sidebar"
3610
  msgstr "Barra Lateral"
3611
 
 
3612
  #: modules/sidebar/sidebar.php:15
3613
- #@ fl-builder
3614
- msgid "Display a WordPress sidebar that has been registered by the current theme."
3615
  msgstr "Exibe uma barra lateral do WordPress que foi registrata no tema atual."
3616
 
 
3617
  #: modules/slideshow/slideshow.php:14
3618
- #@ fl-builder
3619
  msgid "Slideshow"
3620
  msgstr ""
3621
 
 
3622
  #: modules/slideshow/slideshow.php:15
3623
- #@ fl-builder
3624
  msgid "Display multiple photos in a slideshow view."
3625
  msgstr "Exibe múltiplas fotos em um slideshow."
3626
 
 
3627
  #: modules/slideshow/slideshow.php:302
3628
- #@ fl-builder
3629
  msgid "Skin Color"
3630
  msgstr "Tema de Cor"
3631
 
 
3632
  #: modules/slideshow/slideshow.php:305
3633
- #@ fl-builder
3634
  msgctxt "Color."
3635
  msgid "Light"
3636
  msgstr "Claro"
3637
 
 
3638
  #: modules/slideshow/slideshow.php:306
3639
- #@ fl-builder
3640
  msgctxt "Color."
3641
  msgid "Dark"
3642
  msgstr "Escuro"
3643
 
 
3644
  #: modules/slideshow/slideshow.php:308
3645
- #@ fl-builder
3646
- msgid "If your overall theme/images are lighter in color, light will display buttons in a darker color scheme and vice versa for dark."
3647
- msgstr "Se a maioria das imagens ou do tema forem mais claras, a opção \"claro\" irá exibir botões em um tema de cor mais escuro, e vice versa para a opção \"escuro\"."
 
 
 
 
3648
 
 
3649
  #: modules/slideshow/slideshow.php:318
3650
- #@ fl-builder
3651
- msgid "Crop set to no will fit the slideshow images to the height you specify and keep the width proportional, whereas crop set to yes will fit the slideshow images to all sides of the content area while cropping the left and right to fit the height you specify."
3652
- msgstr "Recorte configurado como \"não\" irá ajustar as imagens do slideshow à altura que você especificar e irá manter a largura proporcional, enquanto Recorte configurado como \"sim \" irá ajustar as imagens do slideshow a todos os slides da área de conteúdo, enquanto faz recortes na esquerda e na direita para ajustar-se à altura que você especificar."
 
 
 
 
 
 
 
 
3653
 
 
3654
  #: modules/slideshow/slideshow.php:322
3655
- #@ fl-builder
3656
  msgid "Disable Right-Click"
3657
  msgstr "Desabilitar Botão Direto do Mouse"
3658
 
 
3659
  #: modules/slideshow/slideshow.php:342
3660
- #@ fl-builder
3661
  msgctxt "Click action type."
3662
  msgid "None"
3663
  msgstr "Nenhum"
3664
 
 
3665
  #: modules/slideshow/slideshow.php:366
3666
- #@ fl-builder
3667
  msgid "Playback"
3668
  msgstr ""
3669
 
 
3670
  #: modules/slideshow/slideshow.php:392
3671
- #@ fl-builder
3672
  msgctxt "Slideshow transition."
3673
  msgid "None"
3674
  msgstr "Nenhum"
3675
 
 
3676
  #: modules/slideshow/slideshow.php:429
3677
- #@ fl-builder
3678
  msgid "Controls"
3679
  msgstr "Controles"
3680
 
3681
- #: modules/slideshow/slideshow.php:436
3682
- #: modules/slideshow/slideshow.php:485
3683
- #@ fl-builder
3684
  msgid "Navigation Arrows"
3685
  msgstr "Setas de Navegação"
3686
 
 
3687
  #: modules/slideshow/slideshow.php:442
3688
- #@ fl-builder
3689
- msgid "Navigational arrows allow the visitor to freely move through the images in your slideshow. These are larger arrows that overlay your slideshow images and are separate from the control bar navigational arrows."
3690
- msgstr "Setas de navegação permitem que o visitante alterne livremente entre as imagens de seu slideshow. Essas são setas maiores que sobrepõem suas imagens de slideshow e são separadas das setas de navegação da barra de controle."
 
 
 
 
 
3691
 
 
3692
  #: modules/slideshow/slideshow.php:447
3693
- #@ fl-builder
3694
  msgid "Control Bar"
3695
  msgstr "Barra de Controle"
3696
 
 
3697
  #: modules/slideshow/slideshow.php:451
3698
- #@ fl-builder
3699
  msgid "Nav Type"
3700
  msgstr "Tipo de Navegação"
3701
 
 
3702
  #: modules/slideshow/slideshow.php:454
3703
- #@ fl-builder
3704
  msgctxt "Nav type."
3705
  msgid "None"
3706
  msgstr "Nenhum"
3707
 
 
3708
  #: modules/slideshow/slideshow.php:455
3709
- #@ fl-builder
3710
  msgid "Buttons"
3711
  msgstr "Botões"
3712
 
3713
- #: modules/slideshow/slideshow.php:456
3714
- #: modules/slideshow/slideshow.php:586
3715
- #@ fl-builder
3716
  msgid "Thumbs"
3717
- msgstr ""
3718
 
 
3719
  #: modules/slideshow/slideshow.php:471
3720
- #@ fl-builder
3721
  msgid "Nav Position"
3722
  msgstr "Posição da Navegação"
3723
 
 
3724
  #: modules/slideshow/slideshow.php:481
3725
- #@ fl-builder
3726
  msgid "Control Bar Buttons"
3727
  msgstr "Botões da Barra de Controle"
3728
 
 
3729
  #: modules/slideshow/slideshow.php:494
3730
- #@ fl-builder
3731
  msgid "Play Button"
3732
  msgstr "Botão de Reprodução"
3733
 
 
3734
  #: modules/slideshow/slideshow.php:503
3735
- #@ fl-builder
3736
  msgid "Fullscreen Button"
3737
  msgstr "Botão de Tela Cheia"
3738
 
 
3739
  #: modules/slideshow/slideshow.php:512
3740
- #@ fl-builder
3741
  msgid "Photo Count"
3742
  msgstr "Contagem de Fotos"
3743
 
 
3744
  #: modules/slideshow/slideshow.php:521
3745
- #@ fl-builder
3746
  msgid "Thumbs Button"
3747
  msgstr "Botão dos Thumbs"
3748
 
 
3749
  #: modules/slideshow/slideshow.php:530
3750
- #@ fl-builder
3751
  msgid "Caption Button"
3752
  msgstr "Botão de Legenda"
3753
 
 
3754
  #: modules/slideshow/slideshow.php:539
3755
- #@ fl-builder
3756
  msgid "Social Button"
3757
  msgstr "Botão Social"
3758
 
 
3759
  #: modules/slideshow/slideshow.php:549
3760
- #@ fl-builder
3761
  msgid "Control Bar Overlay"
3762
  msgstr "Invólucro da Barra de Controle"
3763
 
 
3764
  #: modules/slideshow/slideshow.php:553
3765
- #@ fl-builder
3766
  msgid "Overlay Enabled"
3767
  msgstr "Invólucro Ativado"
3768
 
 
3769
  #: modules/slideshow/slideshow.php:564
3770
- #@ fl-builder
3771
- msgid "Control bar overlay specifies if the control bar buttons you choose overlay your slideshow images or site below the slideshow completely."
3772
- msgstr "Invólucro da barra de controle especifica se os botões da barra que você escolheu irão sobrebor as imagens do slideshow ou irão ficar completamente abaixo do slideshow."
 
 
 
 
3773
 
 
3774
  #: modules/slideshow/slideshow.php:568
3775
- #@ fl-builder
3776
  msgid "Overlay Hide"
3777
  msgstr "Esconder Invólucro"
3778
 
 
3779
  #: modules/slideshow/slideshow.php:574
3780
- #@ fl-builder
3781
- msgid "Overlay hide will hide the control bar after however many seconds you specify below. They will reappear upon mouse over."
3782
- msgstr "\"Esconder Invólucro\" irá esconder a barra de controle depois de quantos segundos você especificar abaixo. A barra irá reaparecer quando o mouse sobrepor o slideshow."
 
 
 
 
3783
 
 
3784
  #: modules/slideshow/slideshow.php:578
3785
- #@ fl-builder
3786
  msgid "Overlay Hide Delay"
3787
  msgstr "Atraso para Esconder Invólucro"
3788
 
 
3789
  #: modules/slideshow/slideshow.php:590
3790
- #@ fl-builder
3791
  msgid "Thumbs Size"
3792
  msgstr "Tamanho dos Thumbs"
3793
 
 
3794
  #: modules/slideshow/slideshow.php:599
3795
- #@ fl-builder
3796
  msgid "Social"
3797
  msgstr ""
3798
 
 
3799
  #: modules/slideshow/slideshow.php:603
3800
- #@ fl-builder
3801
  msgid "Facebook Button"
3802
  msgstr "Botão Facebook"
3803
 
 
3804
  #: modules/slideshow/slideshow.php:615
3805
- #@ fl-builder
3806
  msgid "Twitter Button"
3807
  msgstr "Botão Twitter"
3808
 
 
3809
  #: modules/slideshow/slideshow.php:627
3810
- #@ fl-builder
3811
  msgid "Google Plus Button"
3812
  msgstr "Botão Google Plus"
3813
 
 
3814
  #: modules/slideshow/slideshow.php:639
3815
- #@ fl-builder
3816
  msgid "Pinterest Button"
3817
  msgstr "Botão Pinterest"
3818
 
 
3819
  #: modules/social-buttons/social-buttons.php:14
3820
- #@ fl-builder
3821
  msgid "Social Buttons"
3822
  msgstr "Botões Sociais"
3823
 
 
3824
  #: modules/social-buttons/social-buttons.php:15
3825
- #@ fl-builder
3826
  msgid "Displays social buttons."
3827
  msgstr "Exibe botões sociais."
3828
 
 
3829
  #: modules/social-buttons/social-buttons.php:71
3830
- #@ fl-builder
3831
  msgid "Target URL"
3832
  msgstr "URL de Destino"
3833
 
 
3834
  #: modules/social-buttons/social-buttons.php:75
3835
- #@ fl-builder
3836
  msgid "Current Page"
3837
  msgstr "Página Atual"
3838
 
 
3839
  #: modules/social-buttons/social-buttons.php:82
3840
- #@ fl-builder
3841
- msgid "The Target URL field correlates to the page you would like your social icons to interface with. For example, if you show Facebook, the user will \"Like\" whatever you put in this field."
3842
- msgstr "O campo \"URL de Destino\" corresponde à página com que você quer que seus ícones de redes sociais se comuniquem. Por exemplo, se você escolher \"Exibir Facebook\", o usuário irá \"Curtir\" o que você inserir neste campo. "
 
 
 
 
 
 
3843
 
 
3844
  #: modules/social-buttons/social-buttons.php:89
3845
- #@ fl-builder
3846
  msgid "Custom URL"
3847
  msgstr "URL Personalizada"
3848
 
 
3849
  #: modules/social-buttons/social-buttons.php:107
3850
- #@ fl-builder
3851
  msgid "Show Facebook"
3852
  msgstr "Exibir Facebook"
3853
 
 
3854
  #: modules/social-buttons/social-buttons.php:116
3855
- #@ fl-builder
3856
  msgid "Show Twitter"
3857
  msgstr "Exibir Twitter"
3858
 
 
3859
  #: modules/social-buttons/social-buttons.php:125
3860
- #@ fl-builder
3861
  msgid "Show Google+"
3862
  msgstr "Exibir Google+"
3863
 
 
3864
  #: modules/tabs/tabs.php:14
3865
- #@ fl-builder
3866
  msgid "Tabs"
3867
  msgstr "Abas"
3868
 
 
3869
  #: modules/tabs/tabs.php:15
3870
- #@ fl-builder
3871
  msgid "Display a collection of tabbed content."
3872
  msgstr "Exibe uma coleção de conteúdo separado em abas."
3873
 
 
3874
  #: modules/tabs/tabs.php:55
3875
- #@ fl-builder
3876
  msgid "Horizontal"
3877
  msgstr ""
3878
 
 
3879
  #: modules/tabs/tabs.php:56
3880
- #@ fl-builder
3881
  msgid "Vertical"
3882
  msgstr ""
3883
 
 
3884
  #: modules/testimonials/testimonials.php:14
3885
  #: modules/testimonials/testimonials.php:60
3886
  #: modules/testimonials/testimonials.php:174
3887
- #@ fl-builder
3888
  msgid "Testimonials"
3889
  msgstr "Depoimentos"
3890
 
 
3891
  #: modules/testimonials/testimonials.php:15
3892
- #@ fl-builder
3893
  msgid "An animated tesimonials area."
3894
  msgstr "Uma área de depoimentos com animação."
3895
 
 
3896
  #: modules/testimonials/testimonials.php:41
3897
- #@ fl-builder
3898
  msgid "Compact"
3899
  msgstr "Compacto"
3900
 
 
3901
  #: modules/testimonials/testimonials.php:51
3902
- #@ fl-builder
3903
  msgid "Wide is for 1 column rows, compact is for multi-column rows."
3904
- msgstr "\"Largo\" é para linhas de 1 coluna, \"compacto\" é para linhas com várias colunas."
 
 
3905
 
 
3906
  #: modules/testimonials/testimonials.php:78
3907
- #@ fl-builder
3908
  msgid "Slider Settings"
3909
  msgstr "Configurações do Slider"
3910
 
 
3911
  #: modules/testimonials/testimonials.php:135
3912
- #@ fl-builder
3913
  msgid "Arrow Color"
3914
  msgstr "Cor da Seta"
3915
 
 
3916
  #: modules/testimonials/testimonials.php:165
3917
- #@ fl-builder
3918
  msgid "Dot Color"
3919
  msgstr "Cor do Ponto"
3920
 
 
3921
  #: modules/testimonials/testimonials.php:181
3922
- #@ fl-builder
3923
  msgid "Testimonial"
3924
  msgstr "Depoimento"
3925
 
 
3926
  #: modules/testimonials/testimonials.php:197
3927
- #@ fl-builder
3928
  msgid "Add Testimonial"
3929
  msgstr "Adicionar Depoimento"
3930
 
 
3931
  #: modules/video/video.php:20
3932
- #@ fl-builder
3933
  msgid "Render a WordPress or embedable video."
3934
  msgstr "Renderiza um vídeo incorporado ou do WordPress."
3935
 
 
3936
  #: modules/video/video.php:83
3937
- #@ fl-builder
3938
  msgid "Video Type"
3939
  msgstr "Tipo de Vídeo"
3940
 
 
3941
  #: modules/video/video.php:87
3942
- #@ fl-builder
3943
  msgid "Embed"
3944
  msgstr "Incorporado"
3945
 
 
3946
  #: modules/video/video.php:104
3947
- #@ fl-builder
3948
  msgctxt "Video preview/fallback image."
3949
  msgid "Poster"
3950
  msgstr ""
3951
 
 
3952
  #: modules/video/video.php:120
3953
- #@ fl-builder
3954
  msgid "Loop"
3955
  msgstr ""
3956
 
 
3957
  #: modules/widget/includes/frontend.php:35
3958
  #: modules/widget/includes/settings-general.php:44
3959
  #, php-format
3960
- #@ fl-builder
3961
  msgctxt "%s stands for widget slug."
3962
  msgid "%s no longer exists."
3963
- msgstr ""
3964
 
 
3965
  #: modules/widget/widget.php:14
3966
- #@ fl-builder
3967
  msgid "Widget"
3968
  msgstr ""
3969
 
 
3970
  #: modules/widget/widget.php:15
3971
- #@ fl-builder
3972
  msgid "Display a WordPress widget."
3973
  msgstr "Exibe um widget do WordPress."
3974
 
 
3975
  #: modules/woocommerce/woocommerce.php:16
3976
- #@ fl-builder
3977
  msgid "WooCommerce"
3978
  msgstr ""
3979
 
 
3980
  #: modules/woocommerce/woocommerce.php:17
3981
- #@ fl-builder
3982
  msgid "Display products or categories from your WooCommerce store."
3983
  msgstr "Exibe produtos ou categorias de sua loja do WooCommerce."
3984
 
 
3985
  #: modules/woocommerce/woocommerce.php:60
3986
- #@ fl-builder
3987
  msgid "Choose..."
3988
  msgstr "Escolha..."
3989
 
 
3990
  #: modules/woocommerce/woocommerce.php:61
3991
- #@ fl-builder
3992
  msgid "Single Product"
3993
  msgstr "Produto Simples"
3994
 
 
3995
  #: modules/woocommerce/woocommerce.php:62
3996
  #: modules/woocommerce/woocommerce.php:113
3997
- #@ fl-builder
3998
  msgid "Multiple Products"
3999
  msgstr "Vários Produtos"
4000
 
 
4001
  #: modules/woocommerce/woocommerce.php:63
4002
- #@ fl-builder
4003
  msgid "\"Add to Cart\" Button"
4004
  msgstr "Botão \"Adicionar ao Carrinho\""
4005
 
 
4006
  #: modules/woocommerce/woocommerce.php:64
4007
- #@ fl-builder
4008
  msgid "Categories"
4009
  msgstr "Categorias"
4010
 
 
4011
  #: modules/woocommerce/woocommerce.php:65
4012
- #@ fl-builder
4013
  msgid "Cart"
4014
  msgstr "Carrinho"
4015
 
 
4016
  #: modules/woocommerce/woocommerce.php:66
4017
- #@ fl-builder
4018
  msgid "Checkout"
4019
  msgstr ""
4020
 
 
4021
  #: modules/woocommerce/woocommerce.php:67
4022
- #@ fl-builder
4023
  msgid "Order Tracking"
4024
  msgstr "Rastreamento de Pedido"
4025
 
 
4026
  #: modules/woocommerce/woocommerce.php:68
4027
- #@ fl-builder
4028
  msgid "My Account"
4029
  msgstr "Minha Conta"
4030
 
 
4031
  #: modules/woocommerce/woocommerce.php:87
4032
- #@ fl-builder
4033
  msgid "Product ID"
4034
  msgstr "ID do Produto"
4035
 
 
4036
  #: modules/woocommerce/woocommerce.php:90
4037
- #@ fl-builder
4038
- msgid "As you add products in the WooCommerce Products area, each will be assigned a unique ID. You can find this unique product ID by visiting the Products area and rolling over the product. The unique ID will be the first attribute."
4039
- msgstr "Conforme você adiciona produtos na área de Produtos no WooCommerce, cada um será salvo com um ID único. Você pode encontrar esse ID único visitando a área de Produtos e passando o mouse sobre o produto. O ID único será o primeiro atributo."
 
 
 
 
 
 
4040
 
 
4041
  #: modules/woocommerce/woocommerce.php:94
4042
- #@ fl-builder
4043
  msgid "Parent Category ID"
4044
  msgstr "ID da Categoria Pai"
4045
 
 
4046
  #: modules/woocommerce/woocommerce.php:97
4047
- #@ fl-builder
4048
- msgid "As you add product categories in the WooCommerce Products area, each will be assigned a unique ID. This ID can be found by hovering on the category in the categories area under Products and looking in the URL that is displayed in your browser. The ID will be the only number value in the URL."
4049
- msgstr "Conforme você adiciona categorias de produtos na área de Produtos no WooCommerce, cada uma será salva com um ID único. Você pode encontrar esse ID único passando o mouse sobre a categoria na área de categorias abaixo de Produtos, e observando a URL que é exibida no seu navegador. O ID único será único valor numérico na URL."
 
 
 
 
 
 
 
 
4050
 
 
4051
  #: modules/woocommerce/woocommerce.php:101
4052
  #: modules/woocommerce/woocommerce.php:172
4053
- #@ fl-builder
4054
  msgid "Columns"
4055
  msgstr "Colunas"
4056
 
 
4057
  #: modules/woocommerce/woocommerce.php:117
4058
- #@ fl-builder
4059
  msgid "Products Source"
4060
  msgstr "Origem dos Produtos"
4061
 
 
4062
  #: modules/woocommerce/woocommerce.php:120
4063
- #@ fl-builder
4064
  msgid "Products IDs"
4065
  msgstr "IDs dos Produtos"
4066
 
 
4067
  #: modules/woocommerce/woocommerce.php:121
4068
- #@ fl-builder
4069
  msgid "Product Category"
4070
  msgstr "Categoria de Produto"
4071
 
 
4072
  #: modules/woocommerce/woocommerce.php:122
4073
- #@ fl-builder
4074
  msgid "Recent Products"
4075
  msgstr "Produtos Recentes"
4076
 
 
4077
  #: modules/woocommerce/woocommerce.php:123
4078
- #@ fl-builder
4079
  msgid "Featured Products"
4080
  msgstr "Produtos em Destaque"
4081
 
 
4082
  #: modules/woocommerce/woocommerce.php:124
4083
- #@ fl-builder
4084
  msgid "Sale Products"
4085
  msgstr "Produtos em Promoção"
4086
 
 
4087
  #: modules/woocommerce/woocommerce.php:125
4088
- #@ fl-builder
4089
  msgid "Best Selling Products"
4090
  msgstr "Produtos Mais Vendidos"
4091
 
 
4092
  #: modules/woocommerce/woocommerce.php:126
4093
- #@ fl-builder
4094
  msgid "Top Rated Products"
4095
  msgstr "Produtos mais bem votados"
4096
 
 
4097
  #: modules/woocommerce/woocommerce.php:154
4098
- #@ fl-builder
4099
  msgid "Product IDs"
4100
  msgstr "IDs de Produto"
4101
 
 
4102
  #: modules/woocommerce/woocommerce.php:156
4103
- #@ fl-builder
4104
- msgid "As you add products in the WooCommerce Products area, each will be assigned a unique ID. You can find this unique product ID by visiting the Products area and rolling over the product. The unique ID will be the first attribute and you can add several here separated by a comma."
4105
- msgstr "Conforme você adiciona produtos na área de Produtos no WooCommerce, cada um será salvo com um ID único. Você pode encontrar esse ID único de produto visitando passando o mouse sobre o produto. O ID único será o primeiro atributo, e vocë pode adicionar vários IDs aqui, separados por uma vírgula."
 
 
 
 
 
 
 
4106
 
 
4107
  #: modules/woocommerce/woocommerce.php:160
4108
- #@ fl-builder
4109
  msgid "Category Slug"
4110
  msgstr "Slug de Categoria"
4111
 
 
4112
  #: modules/woocommerce/woocommerce.php:162
4113
- #@ fl-builder
4114
- msgid "As you add product categories in the WooCommerce Products area, each will be assigned a unique slug or you can edit and add your own. These slugs can be found in the Categories area under WooCommerce Products. Several can be added here separated by a comma."
4115
- msgstr "Conforme você adiciona categorias de produtos na área de Produtos no WooCommerce, cada uma será salva com um slug único, ou você pode editar e inserir um de sua preferência. Esses slugs podem ser encontrados na área de Categorias abaixo de Produtos. Vários podem ser adicionados aqui, separados por uma vírgula."
 
 
 
 
 
 
 
 
4116
 
 
4117
  #: modules/woocommerce/woocommerce.php:166
4118
- #@ fl-builder
4119
  msgid "Number of Products"
4120
  msgstr "Número de Produtos"
4121
 
 
4122
  #: modules/woocommerce/woocommerce.php:183
4123
- #@ fl-builder
4124
  msgid "Sort By"
4125
  msgstr "Ordenar Por"
4126
 
 
4127
  #: modules/woocommerce/woocommerce.php:186
4128
- #@ fl-builder
4129
  msgctxt "Sort by."
4130
  msgid "Default"
4131
  msgstr "Padrão"
4132
 
 
4133
  #: modules/woocommerce/woocommerce.php:187
4134
- #@ fl-builder
4135
  msgid "Popularity"
4136
  msgstr "Popularidade"
4137
 
 
4138
  #: modules/woocommerce/woocommerce.php:188
4139
- #@ fl-builder
4140
  msgid "Rating"
4141
  msgstr "Votos"
4142
 
 
4143
  #: modules/woocommerce/woocommerce.php:190
4144
- #@ fl-builder
4145
  msgid "Price: Low to High"
4146
  msgstr "Preço: mais baixo ao mais alto"
4147
 
 
4148
  #: modules/woocommerce/woocommerce.php:191
4149
- #@ fl-builder
4150
  msgid "Price: High to Low"
4151
  msgstr "Preço: mais alto ao mais baixo"
4152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Beaver Builder Plugin (Developer Version) v1.4.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-02-12 19:42-0300\n"
6
+ "PO-Revision-Date: 2015-02-12 19:49-0300\n"
7
  "Last-Translator: developer <contato@favolla.com.br>\n"
8
  "Language-Team: \n"
9
+ "Language: pt_BR\n"
10
  "MIME-Version: 1.0\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.7.4\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
18
  "X-Poedit-Basepath: ../\n"
19
+ "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SearchPath-0: .\n"
 
21
 
22
+ # @ fl-builder
23
+ #: classes/class-fl-builder-admin.php:40
24
  #, php-format
25
+ msgid ""
26
+ "This version of the <strong>Page Builder</strong> plugin is not compatible "
27
+ "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
28
+ "of this plugin."
29
+ msgstr ""
30
+ "Esta versão do plugin<strong>Construtor de Páginas</strong> não é compatível "
31
+ "com o WordPress Multisite. <a%s>Por favor, atualize</a> para a versão "
32
+ "Multisite do plugin."
33
 
34
+ # @ fl-builder
35
+ #: classes/class-fl-builder-admin.php:50
36
+ msgid ""
37
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
38
+ "greater. Please update WordPress before activating the plugin."
39
+ msgstr ""
40
+ "O plugin <strong>Construtor de Páginas</strong> requer WordPress versão 3.5 "
41
+ "ou superior. Por favor, atualize seu WordPress antes de ativar o plugin."
42
 
43
+ # @ fl-builder
44
+ #: classes/class-fl-builder-admin.php:91
45
  #, php-format
 
46
  msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
47
+ msgstr ""
48
+ "Construtor de Páginas ativado! <a%s>Clique aqui</a> para habilitar "
49
+ "atualizações remotas."
50
 
51
+ # @ fl-builder
52
+ #: classes/class-fl-builder-admin.php:186
53
  msgctxt "Plugin action link label."
54
  msgid "Upgrade"
55
  msgstr "Atualizar"
56
 
57
+ # @ fl-builder
58
+ #: classes/class-fl-builder-admin.php:199
59
+ #: classes/class-fl-builder-model.php:2467
60
  msgid "Page Builder"
61
  msgstr "Construtor de Páginas"
62
 
63
+ # @ fl-builder
64
+ #: classes/class-fl-builder-model.php:1882
65
  #, php-format
 
66
  msgctxt "%s stands for post/page title."
67
  msgid "Copy of %s"
68
  msgstr "Cópia de %s"
69
 
70
+ # @ fl-builder
71
  #: classes/class-fl-builder-photo.php:75
 
72
  msgctxt "Image size."
73
  msgid "Full Size"
74
  msgstr "Tamanho Completo"
75
 
76
+ # @ fl-builder
77
  #: classes/class-fl-builder-photo.php:76
 
78
  msgctxt "Image size."
79
  msgid "Large"
80
  msgstr "Grande"
81
 
82
+ # @ fl-builder
83
  #: classes/class-fl-builder-photo.php:77
 
84
  msgctxt "Image size."
85
  msgid "Medium"
86
  msgstr "Médio"
87
 
88
+ # @ fl-builder
89
  #: classes/class-fl-builder-photo.php:78
 
90
  msgctxt "Image size."
91
  msgid "Thumbnail"
92
  msgstr "Thumbnail"
93
 
94
+ #: classes/class-fl-builder-templates.php:28
95
+ msgid "Page Builder Templates"
96
+ msgstr ""
97
+
98
+ # @ fl-builder
99
  #: classes/class-fl-builder.php:699
100
  #, php-format
 
101
  msgctxt "Field name to add."
102
  msgid "Add %s"
103
  msgstr "Adicionar %s"
104
 
105
+ # @ fl-builder
106
+ #: classes/class-fl-builder.php:762 classes/class-fl-builder.php:764
 
107
  msgctxt "Custom post type label."
108
  msgid "Layout Templates"
109
  msgstr "Templates de Layout"
110
 
111
+ # @ fl-builder
112
+ #: classes/class-fl-builder.php:763 classes/class-fl-builder.php:765
 
113
  msgctxt "Custom post type label."
114
  msgid "Layout Template"
115
  msgstr "Template de Layout"
116
 
117
+ # @ fl-builder
118
  #: classes/class-fl-builder.php:766
 
119
  msgctxt "Custom post type label."
120
  msgid "Add New"
121
  msgstr "Adicionar Novo"
122
 
123
+ # @ fl-builder
124
  #: classes/class-fl-builder.php:767
 
125
  msgctxt "Custom post type label."
126
  msgid "Add New Layout Template"
127
  msgstr "Adicionar Novo Template de Layout"
128
 
129
+ # @ fl-builder
130
  #: classes/class-fl-builder.php:768
 
131
  msgctxt "Custom post type label."
132
  msgid "New Layout Template"
133
  msgstr "Novo Template de Layout"
134
 
135
+ # @ fl-builder
136
  #: classes/class-fl-builder.php:769
 
137
  msgctxt "Custom post type label."
138
  msgid "Edit Layout Template"
139
  msgstr "Editar Template de Layout"
140
 
141
+ # @ fl-builder
142
  #: classes/class-fl-builder.php:770
 
143
  msgctxt "Custom post type label."
144
  msgid "View Layout Template"
145
  msgstr "Ver Template de Layout"
146
 
147
+ # @ fl-builder
148
  #: classes/class-fl-builder.php:771
 
149
  msgctxt "Custom post type label."
150
  msgid "All Layout Templates"
151
  msgstr "Todos os Templates de Layout"
152
 
153
+ # @ fl-builder
154
  #: classes/class-fl-builder.php:772
 
155
  msgctxt "Custom post type label."
156
  msgid "Search Layout Templates"
157
  msgstr "Pesquisar Templates de Layout"
158
 
159
+ # @ fl-builder
160
  #: classes/class-fl-builder.php:773
 
161
  msgctxt "Custom post type label."
162
  msgid "Parent Layout Templates:"
163
  msgstr "Template de Layout Pai:"
164
 
165
+ # @ fl-builder
166
  #: classes/class-fl-builder.php:774
 
167
  msgctxt "Custom post type label."
168
  msgid "No layout templates found."
169
  msgstr "Nenhum template de layout encontrado."
170
 
171
+ # @ fl-builder
172
  #: classes/class-fl-builder.php:775
 
173
  msgctxt "Custom post type label."
174
  msgid "No layout templates found in Trash."
175
  msgstr "Nenhum template de layout encontrado na Lixeira."
176
 
177
+ # @ fl-builder
178
+ #: classes/class-fl-builder.php:1113 includes/js-config.php:58
179
  #, php-format
 
180
  msgctxt "%s stands for module name."
181
  msgid "%s Settings"
182
  msgstr "%s - Configurações"
183
 
184
+ # @ fl-builder
185
+ #: includes/admin-branding.php:3 includes/admin-settings.php:36
186
+ #: includes/multisite-settings.php:23
187
  msgid "Branding"
188
  msgstr ""
189
 
190
+ # @ fl-builder
191
  #: includes/admin-branding.php:11
 
192
  msgid "White label the page builder by entering a custom name below."
193
+ msgstr ""
194
+ "Customize a marca do Construtor de Páginas inserindo um nome customizado "
195
+ "abaixo."
196
 
197
+ # @ fl-builder
198
  #: includes/admin-branding.php:14
199
+ msgid ""
200
+ "Additionally, you may also add a custom icon by entering the URL of an image "
201
+ "below. Leave the field blank if you do not wish to use an icon."
202
+ msgstr ""
203
+ "Adicionalmente, você pode também adicionar um ícone customizado inserindo a "
204
+ "url de uma imagem abaixo. Deixe o campo em branco se você não deseja usar um "
205
+ "ícone."
206
+
207
+ #: includes/admin-edit-template.php:3
208
+ msgid "Edit Template"
209
+ msgstr "Editar Template"
210
+
211
+ #: includes/admin-edit-template.php:8
212
+ msgctxt "Template edit form field label. Template name."
213
+ msgid "Name"
214
+ msgstr "Nome"
215
+
216
+ # @ fl-builder
217
+ #: includes/admin-edit-template.php:12 modules/callout/callout.php:303
218
+ #: modules/post-grid/post-grid.php:113
219
+ msgid "Image"
220
+ msgstr "Imagem"
221
+
222
+ # @ fl-builder
223
+ #: includes/admin-edit-template.php:16 includes/row-settings.php:155
224
+ #: includes/template-settings.php:23 modules/callout/callout.php:351
225
+ #: modules/callout/callout.php:371
226
+ #: modules/content-slider/content-slider.php:466
227
+ #: modules/post-grid/post-grid.php:127
228
+ msgid "Position"
229
+ msgstr "Posição"
230
+
231
+ #: includes/admin-edit-template.php:20 includes/template-settings.php:28
232
+ msgctxt "Template edit form field label. Is template premium one?"
233
+ msgid "Premium"
234
+ msgstr ""
235
+
236
+ # @ fl-builder
237
+ #: includes/admin-edit-template.php:23 includes/admin-templates.php:30
238
+ #: includes/global-settings.php:18 includes/global-settings.php:87
239
+ #: includes/row-settings.php:307 includes/row-settings.php:350
240
+ #: includes/template-settings.php:31 modules/accordion/accordion.php:90
241
+ #: modules/button/button.php:135 modules/callout/callout.php:418
242
+ #: modules/callout/callout.php:539
243
+ #: modules/content-slider/content-slider.php:203
244
+ #: modules/content-slider/content-slider.php:217
245
+ #: modules/content-slider/content-slider.php:251
246
+ #: modules/content-slider/content-slider.php:260
247
+ #: modules/content-slider/content-slider.php:531
248
+ #: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
249
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
250
+ #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
251
+ #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
252
+ #: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
253
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
254
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
255
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
256
+ #: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
257
+ #: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
258
+ #: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
259
+ #: modules/social-buttons/social-buttons.php:111
260
+ #: modules/social-buttons/social-buttons.php:120
261
+ #: modules/social-buttons/social-buttons.php:129
262
+ #: modules/testimonials/testimonials.php:85
263
+ #: modules/testimonials/testimonials.php:124
264
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
265
+ #: modules/video/video.php:123
266
+ msgid "No"
267
+ msgstr "Não"
268
+
269
+ # @ fl-builder
270
+ #: includes/admin-edit-template.php:24 includes/admin-templates.php:30
271
+ #: includes/global-settings.php:19 includes/global-settings.php:88
272
+ #: includes/row-settings.php:308 includes/row-settings.php:349
273
+ #: includes/template-settings.php:32 modules/accordion/accordion.php:89
274
+ #: modules/button/button.php:136 modules/callout/callout.php:419
275
+ #: modules/callout/callout.php:540
276
+ #: modules/content-slider/content-slider.php:204
277
+ #: modules/content-slider/content-slider.php:218
278
+ #: modules/content-slider/content-slider.php:252
279
+ #: modules/content-slider/content-slider.php:261
280
+ #: modules/content-slider/content-slider.php:532
281
+ #: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
282
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
283
+ #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
284
+ #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
285
+ #: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
286
+ #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
287
+ #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
288
+ #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
289
+ #: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
290
+ #: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
291
+ #: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
292
+ #: modules/social-buttons/social-buttons.php:110
293
+ #: modules/social-buttons/social-buttons.php:119
294
+ #: modules/social-buttons/social-buttons.php:128
295
+ #: modules/testimonials/testimonials.php:86
296
+ #: modules/testimonials/testimonials.php:125
297
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
298
+ #: modules/video/video.php:124
299
+ msgid "Yes"
300
+ msgstr "Sim"
301
+
302
+ #: includes/admin-edit-template.php:29 includes/template-settings.php:37
303
+ msgid "Category"
304
+ msgstr "Categoria"
305
+
306
+ #: includes/admin-edit-template.php:32 includes/template-settings.php:40
307
+ msgctxt "Templates category label."
308
+ msgid "Landing Pages"
309
+ msgstr ""
310
+
311
+ #: includes/admin-edit-template.php:33 includes/template-settings.php:41
312
+ msgctxt "Templates category label."
313
+ msgid "Company Info"
314
+ msgstr "Informações da Empresa"
315
+
316
+ #: includes/admin-edit-template.php:40
317
+ msgid "Update Template"
318
+ msgstr "Atualizar Template"
319
+
320
+ # @ fl-builder
321
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
322
  msgid "Text Editor"
323
  msgstr "Editor de Texto"
324
 
325
+ # @ fl-builder
326
  #: includes/admin-posts.php:7
327
  #, php-format
 
328
  msgctxt "%s stands for custom branded \"Page Builder\" name."
329
  msgid "%s is currently active for this page."
330
  msgstr "%s está atualmente ativo para esta página."
331
 
332
+ # @ fl-builder
333
  #: includes/admin-posts.php:8
334
  #, php-format
 
335
  msgctxt "%s stands for custom branded \"Page Builder\" name."
336
  msgid "Launch %s"
337
  msgstr "Iniciar %s"
338
 
339
+ # @ fl-builder
340
+ #: includes/admin-settings.php:7 includes/global-settings.php:4
341
+ #: includes/multisite-settings.php:7
342
  #, php-format
 
343
  msgctxt "%s stands for custom branded \"Page Builder\" name."
344
  msgid "%s Settings"
345
  msgstr "Configurações do %s"
346
 
347
+ # @ fl-builder
348
+ #: includes/admin-settings.php:12 includes/multisite-settings.php:12
349
  msgid "Settings updated!"
350
  msgstr "Configurações atualizadas!"
351
 
352
+ # @ fl-builder
353
+ #: includes/admin-settings.php:19 includes/multisite-settings.php:18
354
  msgid "License"
355
  msgstr "Licença"
356
 
357
+ # @ fl-builder
358
+ #: includes/admin-settings.php:23 includes/admin-settings.php:59
 
359
  msgid "Upgrade"
360
  msgstr "Atualizar"
361
 
362
+ # @ fl-builder
363
+ #: includes/admin-settings.php:26 includes/global-settings.php:67
364
+ #: includes/multisite-settings.php:19
365
  msgid "Modules"
366
  msgstr "Módulos"
367
 
368
+ # @ fl-builder
369
+ #: includes/admin-settings.php:29 includes/multisite-settings.php:20
370
  #: includes/ui.php:44
 
371
  msgid "Templates"
372
  msgstr ""
373
 
374
+ # @ fl-builder
375
+ #: includes/admin-settings.php:32 includes/admin-settings.php:163
376
+ #: includes/multisite-settings.php:21 includes/multisite-settings.php:112
377
  msgid "Post Types"
378
  msgstr "Tipos de Post"
379
 
380
+ # @ fl-builder
381
+ #: includes/admin-settings.php:33 includes/multisite-settings.php:22
382
  msgid "Editing"
383
  msgstr "Edição"
384
 
385
+ # @ fl-builder
386
+ #: includes/admin-settings.php:40 includes/admin-settings.php:250
387
+ #: includes/admin-settings.php:262 includes/multisite-settings.php:24
388
+ #: includes/multisite-settings.php:172 includes/multisite-settings.php:184
389
  msgid "Uninstall"
390
  msgstr "Desinstalar"
391
 
392
+ # @ fl-builder
393
  #: includes/admin-settings.php:61
394
+ msgid ""
395
+ "You are currently running the lite version of the Beaver Builder plugin. "
396
+ "Upgrade today for access to premium features such as advanced modules, "
397
+ "templates, support and more!"
398
+ msgstr ""
399
+ "Atualmente você está usando a versão lite do plugin Beaver Builder. Atualize "
400
+ "hoje para ter acesso a recursos premium como módulos avançados, templates, "
401
+ "suporte e muito mais!"
402
 
403
+ # @ fl-builder
404
  #: includes/admin-settings.php:63
 
405
  msgid "Upgrade Now"
406
  msgstr "Atualizar Agora"
407
 
408
+ # @ fl-builder
409
  #: includes/admin-settings.php:65
 
410
  msgid "Learn More"
411
  msgstr "Saiba Mais"
412
 
413
+ # @ fl-builder
414
+ #: includes/admin-settings.php:74 includes/multisite-settings.php:39
415
  msgid "Enabled Modules"
416
  msgstr "Módulos Ativados"
417
 
418
+ # @ fl-builder
419
+ #: includes/admin-settings.php:81 includes/admin-settings.php:132
420
+ #: includes/admin-settings.php:170 includes/admin-settings.php:222
 
 
421
  msgid "Override network settings?"
422
  msgstr "Sobrescrever configurações da rede?"
423
 
424
+ # @ fl-builder
425
+ #: includes/admin-settings.php:87 includes/multisite-settings.php:45
426
  msgid "Check or uncheck modules below to enable or disable them."
427
  msgstr "Marque ou desmarque módulos abaixo para ativá-los ou desativá-los."
428
 
429
+ # @ fl-builder
430
+ #: includes/admin-settings.php:96 includes/multisite-settings.php:54
431
  msgctxt "Plugin setup page: Modules."
432
  msgid "All"
433
  msgstr "Todos"
434
 
435
+ # @ fl-builder
436
+ #: includes/admin-settings.php:125 includes/multisite-settings.php:82
437
+ #: includes/template-settings.php:4
 
 
 
 
438
  msgid "Template Settings"
439
  msgstr "Configurações de Template"
440
 
441
+ # @ fl-builder
442
+ #: includes/admin-settings.php:138 includes/multisite-settings.php:88
443
  msgid "Enable or disable templates using the options below."
444
  msgstr "Ative ou desative templates usando as opções abaixo."
445
 
446
+ # @ fl-builder
447
+ #: includes/admin-settings.php:145 includes/multisite-settings.php:95
448
  msgid "Enable All Templates"
449
  msgstr "Ativar Todos os Templates"
450
 
451
+ # @ fl-builder
452
+ #: includes/admin-settings.php:146 includes/multisite-settings.php:96
453
  msgid "Enable Core Templates Only"
454
  msgstr "Ativar Templates Padrões Apenas"
455
 
456
+ # @ fl-builder
457
+ #: includes/admin-settings.php:147 includes/multisite-settings.php:97
458
  msgid "Enable User Templates Only"
459
  msgstr "Usar apenas Templates definidos pelo Usuário"
460
 
461
+ # @ fl-builder
462
+ #: includes/admin-settings.php:148 includes/multisite-settings.php:98
463
  msgid "Disable All Templates"
464
  msgstr "Desativar Todos os Templates"
465
 
466
+ # @ fl-builder
 
 
 
 
467
  #: includes/admin-settings.php:176
 
468
  msgid "Select the post types you would like the builder to work with."
469
+ msgstr ""
470
+ "Selecione os tipos de post em que você gostaria que o construtor de páginas "
471
+ "funcione."
472
 
473
+ # @ fl-builder
474
+ #: includes/admin-settings.php:177 includes/multisite-settings.php:117
475
  msgid "NOTE: Not all custom post types may be supported."
476
+ msgstr ""
477
+ "NOTA: Possivelmente, nem todos os tipos de post customizados podem ser "
478
+ "suportados."
 
 
 
479
 
480
+ # @ fl-builder
481
+ #: includes/admin-settings.php:215 includes/multisite-settings.php:145
482
  msgid "Editing Settings"
483
  msgstr "Configurações de Edição"
484
 
485
+ # @ fl-builder
486
+ #: includes/admin-settings.php:228 includes/multisite-settings.php:150
487
  #, php-format
488
+ msgid ""
489
+ "Set the <a%s>capability</a> required for users to access advanced builder "
490
+ "editing such as adding, deleting or moving modules."
491
+ msgstr ""
492
+ "Configure uma<a%s>capacidade</a> obrigatória de usuários para acessar o modo "
493
+ "de edição avançada do construtor de páginas, como adicionar, deleter ou "
494
+ "mover módulos."
495
+
496
+ # @ fl-builder
497
+ #: includes/admin-settings.php:252 includes/multisite-settings.php:174
498
+ msgid ""
499
+ "Clicking the button below will uninstall the page builder plugin and delete "
500
+ "all of the data associated with it. You can uninstall or deactivate the page "
501
+ "builder from the plugins page instead if you do not wish to delete the data."
502
+ msgstr ""
503
+ "Ao clicar no botão abaixo, você irá desinstalar o construtor de páginas e "
504
+ "deletará todos os dados associados a ele. Você pode, como alternativa, "
505
+ "desinstalar ou desativar o construtor de páginas na página de plugins se "
506
+ "você não deseja deletar os dados."
507
+
508
+ # @ fl-builder
509
+ #: includes/admin-settings.php:254 includes/admin-settings.php:257
510
+ #: includes/multisite-settings.php:176 includes/multisite-settings.php:179
511
  #: includes/updater/includes/form.php:31
 
512
  msgid "NOTE:"
513
  msgstr "NOTA:"
514
 
515
+ # @ fl-builder
516
+ #: includes/admin-settings.php:254 includes/multisite-settings.php:176
517
+ msgid ""
518
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
519
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
520
+ "you want to reinstall it later. If you do, the builder will rebuild all of "
521
+ "its data using those meta values."
522
+ msgstr ""
523
+ "O construtor de páginas não deleta os dados de post <code>_fl_builder_data</"
524
+ "code>, <code>_fl_builder_draft</code> e <code>_fl_builder_enabled</code> no "
525
+ "caso de você desejar reinstalar o plugin posteriormente. Se esse for o caso,"
526
+ "o construtor de páginas irá reconstruir todos os seus dados usando os "
527
+ "valores de dados preservados."
528
+
529
+ # @ fl-builder
530
+ #: includes/admin-settings.php:257 includes/multisite-settings.php:179
531
  #: includes/updater/includes/form.php:31
 
532
  msgid "This applies to all sites on the network."
533
  msgstr "Isto se aplica a todos os sites na rede."
534
 
535
+ # @ fl-builder
536
+ #: includes/admin-settings.php:276 includes/multisite-settings.php:198
537
+ msgid ""
538
+ "Please type \"uninstall\" in the box below to confirm that you really want "
539
+ "to uninstall the page builder and all of its data."
540
+ msgstr ""
541
+ "Por favor, digite \"uninstall\" na caixa abaixo para confirmar que você "
542
+ "realmente deseja desinstalar o construtor de páginas e todos os seus dados."
543
+
544
+ #: includes/admin-templates.php:3
545
+ msgid "Page Builder Template"
546
+ msgstr "Template do Construtor de Páginas"
547
+
548
+ #: includes/admin-templates.php:10
549
+ msgctxt "Templates list column label."
550
+ msgid "Name"
551
+ msgstr "Nome"
552
+
553
+ #: includes/admin-templates.php:11
554
+ msgctxt "Templates list column label."
555
+ msgid "Category"
556
+ msgstr "Categoria"
557
+
558
+ #: includes/admin-templates.php:12
559
+ msgctxt "Templates list column label. Is template premium one?"
560
+ msgid "Premium"
561
+ msgstr ""
562
+
563
+ # @ fl-builder
564
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
565
+ #: includes/template-selector.php:83
566
+ msgid "Edit"
567
+ msgstr "Editar"
568
+
569
+ # @ fl-builder
570
+ #: includes/admin-templates.php:27 includes/template-selector.php:84
571
+ msgid "Delete"
572
+ msgstr "Deletar"
573
+
574
+ # @ fl-builder
575
+ #: includes/admin-templates.php:40
576
+ msgid "Do you really want to delete this template?"
577
+ msgstr "Você realmente deseja deletar este template?"
578
 
579
+ # @ fl-builder
580
  #: includes/column-settings.php:4
 
 
581
  msgid "Column Settings"
582
  msgstr "Configurações de Coluna"
583
 
584
+ # @ fl-builder
585
+ #: includes/column-settings.php:7 includes/module-settings.php:95
586
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
587
+ #: modules/button/button.php:95 modules/callout/callout.php:239
588
+ #: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
589
+ #: modules/heading/heading.php:69 modules/icon-group/icon-group.php:44
590
+ #: modules/icon/icon.php:75 modules/pricing-table/pricing-table.php:43
 
 
 
 
 
591
  #: modules/pricing-table/pricing-table.php:155
592
+ #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
 
 
593
  msgid "Style"
594
  msgstr "Estilo"
595
 
596
+ # @ fl-builder
597
  #: includes/column-settings.php:14
 
598
  msgid "Column Width"
599
  msgstr "Largura da Coluna"
600
 
601
+ # @ fl-builder
602
+ #: includes/column-settings.php:26 includes/row-settings.php:48
603
+ #: modules/button/button.php:53 modules/callout/callout.php:223
604
+ #: modules/callout/callout.php:476 modules/callout/callout.php:492
 
 
605
  #: modules/content-slider/content-slider.php:376
606
+ #: modules/content-slider/content-slider.php:610 modules/cta/cta.php:82
 
607
  #: modules/cta/cta.php:219
 
608
  msgid "Text"
609
  msgstr "Texto"
610
 
611
+ # @ fl-builder
612
+ #: includes/column-settings.php:30 includes/column-settings.php:43
613
+ #: includes/column-settings.php:100 includes/row-settings.php:52
614
+ #: includes/row-settings.php:109 includes/row-settings.php:424
 
 
615
  #: modules/callout/callout.php:389
616
  #: modules/content-slider/content-slider.php:331
617
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
 
618
  #: modules/separator/separator.php:34
 
619
  msgid "Color"
620
  msgstr "Cor"
621
 
622
+ # @ fl-builder
623
+ #: includes/column-settings.php:39 includes/row-settings.php:105
624
+ #: modules/button/button.php:102 modules/callout/callout.php:402
 
625
  #: modules/callout/callout.php:506
626
  #: modules/content-slider/content-slider.php:357
627
+ #: modules/content-slider/content-slider.php:624 modules/cta/cta.php:195
628
+ #: modules/cta/cta.php:262 modules/icon-group/icon-group.php:64
 
629
  #: modules/icon/icon.php:95
 
 
630
  msgid "Background Color"
631
  msgstr "Cor de Fundo"
632
 
633
+ # @ fl-builder
634
+ #: includes/column-settings.php:51 includes/column-settings.php:108
635
+ #: includes/row-settings.php:117 includes/row-settings.php:432
 
636
  #: modules/separator/separator.php:44
 
637
  msgid "Opacity"
638
  msgstr "Opacidade"
639
 
640
+ # @ fl-builder
641
+ #: includes/column-settings.php:63 includes/row-settings.php:387
 
642
  msgid "Border"
643
  msgstr "Borda"
644
 
645
+ # @ fl-builder
646
+ #: includes/column-settings.php:67 includes/row-settings.php:65
647
+ #: includes/row-settings.php:391 modules/callout/callout.php:472
 
648
  #: modules/content-slider/content-slider.php:325
649
  #: modules/content-slider/content-slider.php:372
650
  #: modules/content-slider/content-slider.php:590
651
  #: modules/content-slider/content-slider.php:694
652
  #: modules/slideshow/slideshow.php:339
 
653
  msgid "Type"
654
  msgstr "Tipo"
655
 
656
+ # @ fl-builder
657
+ #: includes/column-settings.php:69 includes/row-settings.php:393
658
+ msgid ""
659
+ "The type of border to use. Double borders must have a width of at least 3px "
660
+ "to render properly."
661
+ msgstr ""
662
+ "O tipo de borda a ser usado. Bordas duplas precisam ter uma largura de ao "
663
+ "menos 3px para renderizar adequadamente."
664
 
665
+ # @ fl-builder
666
+ #: includes/column-settings.php:71 includes/row-settings.php:395
 
667
  msgctxt "Border type."
668
  msgid "None"
669
  msgstr "Nenhum"
670
 
671
+ # @ fl-builder
672
+ #: includes/column-settings.php:72 includes/row-settings.php:396
673
  #: modules/separator/separator.php:75
 
674
  msgctxt "Border type."
675
  msgid "Solid"
676
  msgstr "Sólida"
677
 
678
+ # @ fl-builder
679
+ #: includes/column-settings.php:73 includes/row-settings.php:397
680
  #: modules/separator/separator.php:76
 
681
  msgctxt "Border type."
682
  msgid "Dashed"
683
  msgstr "Tracejada"
684
 
685
+ # @ fl-builder
686
+ #: includes/column-settings.php:74 includes/row-settings.php:398
687
  #: modules/separator/separator.php:77
 
688
  msgctxt "Border type."
689
  msgid "Dotted"
690
  msgstr "Pontilhada"
691
 
692
+ # @ fl-builder
693
+ #: includes/column-settings.php:75 includes/row-settings.php:399
694
  #: modules/separator/separator.php:78
 
695
  msgctxt "Border type."
696
  msgid "Double"
697
  msgstr "Dupla"
698
 
699
+ # @ fl-builder
700
+ #: includes/column-settings.php:119 includes/row-settings.php:443
 
701
  msgid "Top Width"
702
  msgstr "Largura do topo"
703
 
704
+ # @ fl-builder
705
+ #: includes/column-settings.php:131 includes/row-settings.php:455
 
706
  msgid "Bottom Width"
707
  msgstr "Largura da Base"
708
 
709
+ # @ fl-builder
710
+ #: includes/column-settings.php:143 includes/row-settings.php:467
 
711
  msgid "Left Width"
712
  msgstr "Largura da Esquerda"
713
 
714
+ # @ fl-builder
715
+ #: includes/column-settings.php:155 includes/row-settings.php:479
 
716
  msgid "Right Width"
717
  msgstr "Largura da Direita"
718
 
719
+ # @ fl-builder
720
+ #: includes/column-settings.php:170 includes/module-settings.php:6
721
+ #: includes/row-settings.php:494 modules/content-slider/content-slider.php:267
 
 
722
  msgid "Advanced"
723
  msgstr "Avançado"
724
 
725
+ # @ fl-builder
726
+ #: includes/column-settings.php:177 includes/module-settings.php:13
727
+ #: includes/row-settings.php:501
 
728
  msgid "CSS Class"
729
  msgstr "Classe CSS"
730
 
731
+ # @ fl-builder
732
  #: includes/column-settings.php:178
733
+ msgid ""
734
+ "A custom CSS class that will be applied to this column. Spaces only, no dots."
735
+ msgstr ""
736
+ "Uma classe CSS customizada que será aplicada a esta coluna. Somente espaços, "
737
+ "sem pontos."
738
 
739
+ # @ fl-builder
740
+ #: includes/column-settings.php:186 includes/global-settings.php:80
 
741
  msgid "Responsive Layout"
742
  msgstr "Layout Responsivo"
743
 
744
+ # @ fl-builder
745
+ #: includes/column-settings.php:190 includes/module-settings.php:21
746
+ #: includes/row-settings.php:509 modules/slideshow/slideshow.php:290
 
 
747
  msgid "Display"
748
  msgstr "Mostrar"
749
 
750
+ # @ fl-builder
751
+ #: includes/column-settings.php:192 includes/module-settings.php:23
752
+ #: includes/row-settings.php:511
 
753
  msgid "Always"
754
  msgstr "Sempre"
755
 
756
+ # @ fl-builder
757
+ #: includes/column-settings.php:193 includes/module-settings.php:24
758
+ #: includes/row-settings.php:512
 
759
  msgid "Large Devices Only"
760
  msgstr "Apenas para Dispositivos Grandes"
761
 
762
+ # @ fl-builder
763
+ #: includes/column-settings.php:194 includes/module-settings.php:25
764
+ #: includes/row-settings.php:513
 
765
  msgid "Large &amp; Medium Devices Only"
766
  msgstr "Apenas Dispositivos Grandes &amp; Médios"
767
 
768
+ # @ fl-builder
769
+ #: includes/column-settings.php:195 includes/module-settings.php:26
770
+ #: includes/row-settings.php:514
 
771
  msgid "Medium Devices Only"
772
  msgstr "Apenas Dispositivos Médios"
773
 
774
+ # @ fl-builder
775
+ #: includes/column-settings.php:196 includes/module-settings.php:27
776
+ #: includes/row-settings.php:515
 
777
  msgid "Medium &amp; Small Devices Only"
778
  msgstr "Apenas Dispositivos Médios &amp; Pequenos"
779
 
780
+ # @ fl-builder
781
+ #: includes/column-settings.php:197 includes/module-settings.php:28
782
+ #: includes/row-settings.php:516
 
783
  msgid "Small Devices Only"
784
  msgstr "Apenas dispositivos Pequenos"
785
 
786
+ # @ fl-builder
787
  #: includes/column-settings.php:199
 
788
  msgid "Choose whether to show or hide this column at different device sizes."
789
+ msgstr ""
790
+ "Escolha entre mostrar ou esconder esta coluna em diferentes tamanhos de "
791
+ "dispositivo."
792
 
793
+ # @ fl-builder
794
  #: includes/column-settings.php:206
 
795
  msgid "Medium Device Width"
796
  msgstr "Largura de Dispositivo Médio"
797
 
798
+ # @ fl-builder
799
  #: includes/column-settings.php:207
 
800
  msgid "The width of this column on medium devices such as tablets."
801
  msgstr "A largura desta coluna em dispositivos médios, como tablets."
802
 
803
+ # @ fl-builder
804
+ #: includes/column-settings.php:209 includes/column-settings.php:237
805
  #: modules/callout/callout.php:281
806
+ #: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
807
+ #: modules/heading/heading.php:117 modules/heading/heading.php:144
 
 
808
  #: modules/heading/heading.php:174
 
809
  msgid "Default"
810
  msgstr "Padrão"
811
 
812
+ # @ fl-builder
813
+ #: includes/column-settings.php:210 includes/column-settings.php:238
814
+ #: modules/button/button.php:151 modules/callout/callout.php:282
815
+ #: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
816
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145
 
 
 
817
  #: modules/heading/heading.php:175
818
  #: modules/social-buttons/social-buttons.php:74
 
819
  msgid "Custom"
820
  msgstr "Customizado"
821
 
822
+ # @ fl-builder
823
  #: includes/column-settings.php:223
 
824
  msgid "Custom Medium Device Width"
825
  msgstr "Largura Customizada de Dispositivo Médio"
826
 
827
+ # @ fl-builder
828
  #: includes/column-settings.php:234
 
829
  msgid "Small Device Width"
830
  msgstr "Largura de Dispositivo Pequeno"
831
 
832
+ # @ fl-builder
833
  #: includes/column-settings.php:235
 
834
  msgid "The width of this column on small devices such as phones."
835
  msgstr "A largura desta coluna em dispositivos pequenos, como smartphones."
836
 
837
+ # @ fl-builder
838
  #: includes/column-settings.php:251
 
839
  msgid "Custom Small Device Width"
840
  msgstr "Largura Customizada de Dispositivo Pequeno"
841
 
842
+ # @ fl-builder
843
+ #: includes/column-settings.php:263 includes/global-settings.php:41
844
+ #: includes/global-settings.php:71 includes/module-settings.php:38
845
+ #: includes/row-settings.php:526
 
 
846
  msgid "Margins"
847
  msgstr "Margens"
848
 
849
+ # @ fl-builder
850
+ #: includes/column-settings.php:267 includes/column-settings.php:320
851
+ #: includes/module-settings.php:42 includes/row-settings.php:530
852
+ #: includes/row-settings.php:583 modules/slideshow/slideshow.php:475
 
 
 
853
  msgid "Top"
854
  msgstr "Topo"
855
 
856
+ # @ fl-builder
857
+ #: includes/column-settings.php:279 includes/column-settings.php:332
858
+ #: includes/module-settings.php:54 includes/row-settings.php:542
859
+ #: includes/row-settings.php:595 modules/slideshow/slideshow.php:474
 
 
 
860
  msgid "Bottom"
861
  msgstr "Base"
862
 
863
+ # @ fl-builder
864
+ #: includes/column-settings.php:291 includes/column-settings.php:344
865
+ #: includes/module-settings.php:66 includes/row-settings.php:554
866
+ #: includes/row-settings.php:607 modules/button/button.php:177
 
 
867
  #: modules/callout/callout.php:250
868
+ #: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
869
+ #: modules/heading/heading.php:89 modules/heading/heading.php:161
870
+ #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
871
+ #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
 
 
 
 
 
872
  msgid "Left"
873
  msgstr "Esquerda"
874
 
875
+ # @ fl-builder
876
+ #: includes/column-settings.php:303 includes/column-settings.php:356
877
+ #: includes/module-settings.php:78 includes/row-settings.php:566
878
+ #: includes/row-settings.php:619 modules/button/button.php:178
 
 
879
  #: modules/callout/callout.php:251
880
+ #: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
881
+ #: modules/heading/heading.php:91 modules/heading/heading.php:163
882
+ #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
883
+ #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
 
 
 
 
 
884
  msgid "Right"
885
  msgstr "Direita"
886
 
887
+ # @ fl-builder
888
+ #: includes/column-settings.php:316 includes/global-settings.php:49
889
+ #: includes/row-settings.php:579 modules/button/button.php:191
 
890
  #: modules/callout/callout.php:567
891
+ #: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
 
 
892
  msgid "Padding"
893
  msgstr ""
894
 
895
+ # @ fl-builder
896
+ #: includes/field-form.php:28
897
  #, php-format
 
898
  msgctxt "%s stands for form field label."
899
  msgid "Edit %s"
900
  msgstr "Editar %s"
901
 
902
+ # @ fl-builder
903
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
 
904
  msgid "Select Icon"
905
  msgstr "Selecionar Ícone"
906
 
907
+ # @ fl-builder
908
+ #: includes/field-icon.php:5 includes/field-photo.php:13
 
909
  msgid "Replace"
910
  msgstr "Substituir"
911
 
912
+ # @ fl-builder
913
  #: includes/field-icon.php:7
 
 
914
  msgid "Remove"
915
  msgstr "Remover"
916
 
917
+ # @ fl-builder
918
  #: includes/field-link.php:3
 
919
  msgid "Select"
920
  msgstr "Selecionar"
921
 
922
+ # @ fl-builder
923
  #: includes/field-link.php:5
 
924
  msgid "Enter a post title to search."
925
  msgstr "Digite um título de post para pesquisar."
926
 
927
+ # @ fl-builder
928
+ #: includes/field-link.php:7 includes/icon-selector.php:28
929
+ #: includes/settings.php:63 includes/template-selector.php:102
 
 
 
 
 
 
 
 
930
  #: includes/ui.php:11
 
931
  msgid "Cancel"
932
  msgstr "Cancelar"
933
 
934
+ # @ fl-builder
935
  #: includes/field-multiple-photos.php:8
936
  #, php-format
 
937
  msgid "1 Photo Selected"
938
  msgid_plural "%d Photos Selected"
939
  msgstr[0] "1 Foto Selecionada"
940
  msgstr[1] "%d Fotos Selecionadas"
941
 
942
+ # @ fl-builder
943
  #: includes/field-multiple-photos.php:13
 
944
  msgid "Create Gallery"
945
  msgstr "Criar Galeria"
946
 
947
+ # @ fl-builder
948
  #: includes/field-multiple-photos.php:14
 
949
  msgid "Edit Gallery"
950
  msgstr "Editar Galeria"
951
 
952
+ # @ fl-builder
953
  #: includes/field-multiple-photos.php:15
 
954
  msgid "Add Photos"
955
  msgstr "Adicionar Fotos"
956
 
957
+ # @ fl-builder
958
  #: includes/field-photo.php:3
 
 
959
  msgid "Select Photo"
960
  msgstr "Selecionar Foto"
961
 
962
+ # @ fl-builder
 
 
 
 
 
963
  #: includes/field-video.php:3
 
 
964
  msgid "Select Video"
965
  msgstr "Selecionar Vídeo"
966
 
967
+ # @ fl-builder
968
  #: includes/field-video.php:17
 
969
  msgid "Replace Video"
970
  msgstr "Substituir Vídeo"
971
 
972
+ # @ fl-builder
973
+ #: includes/global-settings.php:7 includes/template-settings.php:7
974
+ #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
975
+ #: modules/button/button.php:46 modules/callout/callout.php:207
 
976
  #: modules/contact-form/contact-form.php:57
977
  #: modules/content-slider/content-slider.php:184
978
+ #: modules/content-slider/content-slider.php:308 modules/cta/cta.php:65
979
+ #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
980
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
981
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
 
 
 
 
 
982
  #: modules/pricing-table/pricing-table.php:87
983
+ #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
984
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
985
+ #: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
 
 
 
986
  #: modules/testimonials/testimonials.php:30
987
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
988
+ #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
 
 
 
989
  msgid "General"
990
  msgstr "Geral"
991
 
992
+ # @ fl-builder
993
  #: includes/global-settings.php:8
 
994
  msgid "Note: These settings apply to all posts and pages."
995
  msgstr "Nota: Estas configurações são aplicadas a todos os posts e páginas."
996
 
997
+ # @ fl-builder
998
  #: includes/global-settings.php:11
 
999
  msgid "Default Page Heading"
1000
  msgstr "Cabeçalho padrão de Página"
1001
 
1002
+ # @ fl-builder
1003
  #: includes/global-settings.php:15
1004
+ msgctxt ""
1005
+ "General settings form field label. Intended meaning: \"Show page heading?\""
1006
  msgid "Show"
1007
  msgstr "Mostrar"
1008
 
1009
+ # @ fl-builder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1010
  #: includes/global-settings.php:26
1011
+ msgid ""
1012
+ "Choosing no will hide the default theme heading for the \"Page\" post type. "
1013
+ "You will also be required to enter some basic CSS for this to work if you "
1014
+ "choose no."
1015
+ msgstr ""
1016
+ "Escolher \"não\\\"\\ irá esconder o cabeçalho padrão do tema para o tipo de "
1017
+ "post \"Página\". Você também pode precisar inserir algum CSS básico para "
1018
+ "fazer isto funcionar se selecionar \"não\"."
1019
 
1020
+ # @ fl-builder
1021
  #: includes/global-settings.php:30
 
1022
  msgid "CSS Selector"
1023
  msgstr "Seletor CSS"
1024
 
1025
+ # @ fl-builder
1026
  #: includes/global-settings.php:32
 
1027
  msgid "Enter a CSS selector for the default page heading to hide it."
1028
+ msgstr ""
1029
+ "Insira um seletor CSS para o cabeçalho padrão da página para escondê-lo."
1030
 
1031
+ # @ fl-builder
1032
  #: includes/global-settings.php:37
 
1033
  msgid "Rows"
1034
  msgstr "Linhas"
1035
 
1036
+ # @ fl-builder
1037
  #: includes/global-settings.php:57
 
1038
  msgid "Max Width"
1039
  msgstr "Largura Máxima"
1040
 
1041
+ # @ fl-builder
1042
  #: includes/global-settings.php:62
1043
+ msgid ""
1044
+ "All rows will default to this width. You can override this and make a row "
1045
+ "full width in the settings for each row."
1046
+ msgstr ""
1047
+ "Todas as linhas, por padrão, terão esta largura. Você pode sobrescrever isto "
1048
+ "e fazer uma linha com largura completa nas configurações de cada linha."
1049
 
1050
+ # @ fl-builder
1051
  #: includes/global-settings.php:84
1052
+ msgctxt ""
1053
+ "General settings form field label. Intended meaning: \"Responsive layout "
1054
+ "enabled?\""
1055
  msgid "Enabled"
1056
  msgstr "Ativado"
1057
 
1058
+ # @ fl-builder
1059
  #: includes/global-settings.php:98
 
1060
  msgid "Medium Device Breakpoint"
1061
  msgstr "Ponto de Quebra de Dispositivo Médio"
1062
 
1063
+ # @ fl-builder
1064
  #: includes/global-settings.php:103
1065
+ msgid ""
1066
+ "The browser width at which the layout will adjust for medium devices such as "
1067
+ "tablets."
1068
+ msgstr ""
1069
+ "A largura do navegador em que o layout irá se ajustar para dispositivos "
1070
+ "médios, como tablets."
1071
 
1072
+ # @ fl-builder
1073
  #: includes/global-settings.php:107
 
1074
  msgid "Small Device Breakpoint"
1075
  msgstr "Ponto de Quebra para Dispositivos Pequenos"
1076
 
1077
+ # @ fl-builder
1078
  #: includes/global-settings.php:112
1079
+ msgid ""
1080
+ "The browser width at which the layout will adjust for small devices such as "
1081
+ "phones."
1082
+ msgstr ""
1083
+ "A largura do navegador em que o layout ir[a se ajustar para dispositivos "
1084
+ "pequenos, como smartphones."
1085
 
1086
+ # @ fl-builder
1087
  #: includes/icon-selector.php:5
 
1088
  msgctxt "Select option for showing all icon libraries."
1089
  msgid "All Libraries"
1090
  msgstr "Todas as bibliotecas"
1091
 
1092
+ # @ fl-builder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1093
  #: includes/js-config.php:30
 
1094
  msgctxt "Duplicate page/post action label."
1095
  msgid "Duplicate"
1096
  msgstr "Duplicar"
1097
 
1098
+ # @ fl-builder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1099
  #: includes/loop-settings.php:19
 
1100
  msgid "Post Type"
1101
  msgstr "Tipo de Post"
1102
 
1103
+ # @ fl-builder
1104
  #: includes/loop-settings.php:25
 
1105
  msgid "Order By"
1106
  msgstr "Ordenar Por"
1107
 
1108
+ # @ fl-builder
1109
  #: includes/loop-settings.php:27
 
1110
  msgid "ID"
1111
  msgstr ""
1112
 
1113
+ # @ fl-builder
1114
+ #: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
1115
  #: modules/woocommerce/woocommerce.php:189
 
1116
  msgid "Date"
1117
  msgstr "Data"
1118
 
1119
+ # @ fl-builder
1120
  #: includes/loop-settings.php:29
 
1121
  msgid "Date Last Modified"
1122
  msgstr "Data da Última Alteração"
1123
 
1124
+ # @ fl-builder
1125
+ #: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
1126
  #: modules/pricing-table/pricing-table.php:94
 
1127
  msgid "Title"
1128
  msgstr "Título"
1129
 
1130
+ # @ fl-builder
1131
+ #: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
 
1132
  msgid "Author"
1133
  msgstr "Autor"
1134
 
1135
+ # @ fl-builder
1136
  #: includes/loop-settings.php:32
 
1137
  msgid "Comment Count"
1138
  msgstr "Número de Comentários"
1139
 
1140
+ # @ fl-builder
1141
  #: includes/loop-settings.php:33
 
1142
  msgid "Menu Order"
1143
  msgstr "Ordem do Menu"
1144
 
1145
+ # @ fl-builder
1146
  #: includes/loop-settings.php:34
 
1147
  msgid "Random"
1148
  msgstr "Aleatório"
1149
 
1150
+ # @ fl-builder
1151
  #: includes/loop-settings.php:41
 
1152
  msgid "Order"
1153
  msgstr "Ordenar"
1154
 
1155
+ # @ fl-builder
1156
  #: includes/loop-settings.php:43
 
1157
  msgid "Descending"
1158
  msgstr "Decrescente"
1159
 
1160
+ # @ fl-builder
1161
  #: includes/loop-settings.php:44
 
1162
  msgid "Ascending"
1163
  msgstr "Crescente"
1164
 
1165
+ # @ fl-builder
1166
  #: includes/loop-settings.php:52
 
1167
  msgid "Filter"
1168
  msgstr "Filtrar"
1169
 
1170
+ # @ fl-builder
1171
  #: includes/loop-settings.php:63
1172
  #, php-format
 
1173
  msgid "Enter a comma separated list of %s. Only these %s will be shown."
1174
+ msgstr ""
1175
+ "Insira uma lista de %s separados(as) por vírgulas. Apenas estes / estas %s "
1176
+ "serão mostrados(as)."
1177
 
1178
+ # @ fl-builder
1179
  #: includes/loop-settings.php:76
1180
  #, php-format
1181
+ msgid ""
1182
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
1183
+ msgstr ""
1184
+ "Insira uma lista de %s separados(as) por vírgulas. Apenas posts com estes / "
1185
+ "estas %s serão mostrados(as)."
1186
 
1187
+ # @ fl-builder
1188
  #: includes/loop-settings.php:90
 
1189
  msgid "Authors"
1190
  msgstr "Autores"
1191
 
1192
+ # @ fl-builder
1193
  #: includes/loop-settings.php:91
1194
+ msgid ""
1195
+ "Enter a comma separated list of authors usernames. Only posts with these "
1196
+ "authors will be shown."
1197
+ msgstr ""
1198
+ "Insira uma lista de nomes de usuários de autores, separadas por vírgulas. "
1199
+ "Apenas posts destes autores serão mostrados."
1200
 
1201
+ # @ fl-builder
1202
  #: includes/module-settings.php:14
1203
+ msgid ""
1204
+ "A custom CSS class that will be applied to this module. Spaces only, no dots."
1205
+ msgstr ""
1206
+ "Uma classe CSS personalidada que será aplicada a este módulo. Somente "
1207
+ "espaços, sem pontos."
1208
 
1209
+ # @ default
1210
  #: includes/module-settings.php:30
 
1211
  msgid "Choose whether to show or hide this module at different device sizes."
1212
+ msgstr ""
1213
+ "Escolha entre mostrar ou esconder este módulo em diferentes tamanhos de "
1214
+ "dispositivo."
1215
 
1216
+ # @ fl-builder
1217
  #: includes/module-settings.php:91
 
1218
  msgid "Animation"
1219
  msgstr "Animação"
1220
 
1221
+ # @ fl-builder
1222
  #: includes/module-settings.php:97
 
1223
  msgctxt "Animation style."
1224
  msgid "None"
1225
  msgstr "Nenhuma"
1226
 
1227
+ # @ fl-builder
1228
  #: includes/module-settings.php:98
 
1229
  msgctxt "Animation style."
1230
  msgid "Fade In"
1231
  msgstr ""
1232
 
1233
+ # @ fl-builder
1234
  #: includes/module-settings.php:99
 
1235
  msgctxt "Animation style."
1236
  msgid "Slide Left"
1237
  msgstr "Deslizar pela Esquerda"
1238
 
1239
+ # @ fl-builder
1240
  #: includes/module-settings.php:100
 
1241
  msgctxt "Animation style."
1242
  msgid "Slide Right"
1243
  msgstr "Deslizar pela Direita"
1244
 
1245
+ # @ fl-builder
1246
  #: includes/module-settings.php:101
 
1247
  msgctxt "Animation style."
1248
  msgid "Slide Up"
1249
  msgstr "Deslizar para Cima"
1250
 
1251
+ # @ fl-builder
1252
  #: includes/module-settings.php:102
 
1253
  msgctxt "Animation style."
1254
  msgid "Slide Down"
1255
  msgstr "Deslizar para Baixo"
1256
 
1257
+ # @ fl-builder
1258
  #: includes/module-settings.php:110
1259
  #: modules/content-slider/content-slider.php:223
1260
  #: modules/testimonials/testimonials.php:91
 
1261
  msgid "Delay"
1262
  msgstr "Atraso"
1263
 
1264
+ # @ fl-builder
1265
+ #: includes/module-settings.php:114 includes/row-settings.php:266
1266
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
 
1267
  #: modules/content-slider/content-slider.php:244
1268
+ #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
 
1269
  #: modules/slideshow/slideshow.php:581
1270
  #: modules/testimonials/testimonials.php:95
1271
  #: modules/testimonials/testimonials.php:112
 
1272
  msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
1273
  msgid "seconds"
1274
  msgstr "segundos"
1275
 
1276
+ # @ fl-builder
1277
  #: includes/module-settings.php:115
 
1278
  msgid "The amount of time in seconds before this animation starts."
1279
  msgstr "A quantidade de segundos antes desta animação iniciar."
1280
 
1281
+ #: includes/multisite-settings.php:116
1282
+ msgid ""
1283
+ "Enter a comma separated list of the post types you would like the builder to "
1284
+ "work with."
1285
+ msgstr ""
1286
+ "Insira uma lista de tipos de post, separados por vírgula, com os quais você "
1287
+ "deseja que o construtor de páginas funcione."
1288
+
1289
+ #: includes/multisite-settings.php:132
1290
+ msgid "Example: page, post, product"
1291
+ msgstr "Exemplo: page, post, product"
1292
+
1293
+ # @ fl-builder
1294
+ #: includes/row-settings.php:6
1295
+ msgid "Row Settings"
1296
+ msgstr "Configurações de Linha"
1297
+
1298
+ # @ fl-builder
1299
+ #: includes/row-settings.php:16 modules/button/button.php:146
1300
  #: modules/content-slider/content-slider.php:477
 
1301
  msgid "Width"
1302
  msgstr "Largura"
1303
 
1304
+ # @ fl-builder
1305
+ #: includes/row-settings.php:19 includes/row-settings.php:37
1306
  #: includes/row-settings.php:179
 
1307
  msgid "Fixed"
1308
  msgstr "Fixa"
1309
 
1310
+ # @ fl-builder
1311
+ #: includes/row-settings.php:20 includes/row-settings.php:38
1312
+ #: modules/button/button.php:150 modules/callout/callout.php:554
 
 
1313
  msgid "Full Width"
1314
  msgstr "Largura Completa"
1315
 
1316
+ # @ fl-builder
1317
  #: includes/row-settings.php:27
1318
+ msgid ""
1319
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
1320
+ "no wider than the Row Max Width set in the Global Settings."
1321
+ msgstr ""
1322
+ "Linhas com largura completa envolvem a página de ponta a ponta. Linhas fixas "
1323
+ "não serão mais largas que a Largura Máxima de Linha ajustada nas "
1324
+ "Configurações Globais."
1325
 
1326
+ # @ fl-builder
1327
  #: includes/row-settings.php:34
 
1328
  msgid "Content Width"
1329
  msgstr "Largura do Conteúdo"
1330
 
1331
+ # @ fl-builder
1332
  #: includes/row-settings.php:40
1333
+ msgid ""
1334
+ "Full width content spans the width of the page from edge to edge. Fixed "
1335
+ "content is no wider than the Row Max Width set in the Global Settings."
1336
+ msgstr ""
1337
+ "Conteúdos com largura completa envolvem a página de ponta a ponta. Conteúdos "
1338
+ "com larguras fixas não serão mais largos que a Largura Máxima de Linha "
1339
+ "ajustada nas Configurações Globais."
1340
 
1341
+ # @ fl-builder
1342
  #: includes/row-settings.php:61
 
1343
  msgid "Background"
1344
  msgstr "Fundo"
1345
 
1346
+ # @ fl-builder
1347
+ #: includes/row-settings.php:68 modules/content-slider/content-slider.php:332
 
1348
  msgctxt "Background type."
1349
  msgid "None"
1350
  msgstr "Nenhum"
1351
 
1352
+ # @ fl-builder
1353
  #: includes/row-settings.php:69
 
1354
  msgctxt "Background type."
1355
  msgid "Color"
1356
  msgstr "Cor"
1357
 
1358
+ # @ fl-builder
1359
  #: includes/row-settings.php:70
 
1360
  msgctxt "Background type."
1361
  msgid "Photo"
1362
  msgstr "Foto"
1363
 
1364
+ # @ fl-builder
1365
  #: includes/row-settings.php:71
 
1366
  msgctxt "Background type."
1367
  msgid "Video"
1368
  msgstr "Vídeo"
1369
 
1370
+ # @ fl-builder
1371
  #: includes/row-settings.php:73
 
1372
  msgctxt "Background type."
1373
  msgid "Slideshow"
1374
  msgstr "Slideshow"
1375
 
1376
+ # @ fl-builder
1377
  #: includes/row-settings.php:77
 
1378
  msgctxt "Background type."
1379
  msgid "Parallax"
1380
  msgstr ""
1381
 
1382
+ # @ fl-builder
1383
+ #: includes/row-settings.php:129 modules/content-slider/content-slider.php:353
 
1384
  msgid "Background Photo"
1385
  msgstr "Foto de Fundo"
1386
 
1387
+ # @ fl-builder
1388
+ #: includes/row-settings.php:133 includes/row-settings.php:321
1389
+ #: modules/callout/callout.php:314 modules/callout/callout.php:330
 
1390
  #: modules/callout/callout.php:334
1391
  #: modules/content-slider/content-slider.php:329
1392
  #: modules/content-slider/content-slider.php:398
1393
+ #: modules/content-slider/content-slider.php:710 modules/photo/photo.php:25
 
1394
  #: modules/photo/photo.php:392
 
1395
  msgid "Photo"
1396
  msgstr "Foto"
1397
 
1398
+ # @ fl-builder
1399
  #: includes/row-settings.php:140
 
1400
  msgid "Repeat"
1401
  msgstr "Repetir"
1402
 
1403
+ # @ fl-builder
1404
  #: includes/row-settings.php:143
 
1405
  msgctxt "Background repeat."
1406
  msgid "None"
1407
  msgstr "Nenhum"
1408
 
1409
+ # @ fl-builder
1410
  #: includes/row-settings.php:144
 
1411
  msgctxt "Background repeat."
1412
  msgid "Tile"
1413
  msgstr "Ladrilhos"
1414
 
1415
+ # @ fl-builder
1416
  #: includes/row-settings.php:145
 
1417
  msgctxt "Background repeat."
1418
  msgid "Horizontal"
1419
  msgstr "Horizontal"
1420
 
1421
+ # @ fl-builder
1422
  #: includes/row-settings.php:146
 
1423
  msgctxt "Background repeat."
1424
  msgid "Vertical"
1425
  msgstr "Vertical"
1426
 
1427
+ # @ fl-builder
1428
  #: includes/row-settings.php:148
1429
+ msgid ""
1430
+ "Repeat applies to how the image should display in the row background. "
1431
+ "Choosing none will display the image as uploaded. Tile will repeat the image "
1432
+ "as many times as needed to fill the row horizontally and vertically. You can "
1433
+ "also specify the image to only repeat horizontally or vertically."
1434
+ msgstr ""
1435
+ "\"Repetir\" aplica-se a como a imagem deve ser mostrada no fundo da linha. "
1436
+ "Escolher \"nenhum\" irá mostrar a imagem da maneira como foi enviada. "
1437
+ "\"Ladrilhos\" irá repetir a imagem quantas vezes for necessário para "
1438
+ "preencher a linha horizontalmente e verticalmente. Você pode também "
1439
+ "especificar que a imagem repita-se apenas na horizontal ou na vertical."
 
1440
 
1441
+ # @ fl-builder
1442
  #: includes/row-settings.php:158
 
1443
  msgid "Left Top"
1444
  msgstr "Canto Superior Esquerdo"
1445
 
1446
+ # @ fl-builder
1447
  #: includes/row-settings.php:159
 
1448
  msgid "Left Center"
1449
  msgstr "Canto Esquerdo Central"
1450
 
1451
+ # @ fl-builder
1452
  #: includes/row-settings.php:160
 
1453
  msgid "Left Bottom"
1454
  msgstr "Canto Inferior Esquerdo"
1455
 
1456
+ # @ fl-builder
1457
  #: includes/row-settings.php:161
 
1458
  msgid "Right Top"
1459
  msgstr "Canto Superior Direito"
1460
 
1461
+ # @ fl-builder
1462
  #: includes/row-settings.php:162
 
1463
  msgid "Right Center"
1464
  msgstr "Canto Direito Central"
1465
 
1466
+ # @ fl-builder
1467
  #: includes/row-settings.php:163
 
1468
  msgid "Right Bottom"
1469
  msgstr "Canto Inferior Direito"
1470
 
1471
+ # @ fl-builder
1472
  #: includes/row-settings.php:164
 
1473
  msgid "Center Top"
1474
  msgstr "Centro do Topo"
1475
 
1476
+ # @ fl-builder
1477
+ #: includes/row-settings.php:165 modules/button/button.php:176
1478
  #: modules/callout/callout.php:249
1479
+ #: modules/content-slider/content-slider.php:471 modules/cta/cta.php:124
1480
+ #: modules/heading/heading.php:90 modules/heading/heading.php:162
1481
+ #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1482
+ #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
 
 
 
 
 
1483
  msgid "Center"
1484
  msgstr "Centralizado"
1485
 
1486
+ # @ fl-builder
1487
  #: includes/row-settings.php:166
 
1488
  msgid "Center Bottom"
1489
  msgstr "Centro da Base"
1490
 
1491
+ # @ fl-builder
1492
  #: includes/row-settings.php:168
 
1493
  msgid "Position will tell the image where it should sit in the row background."
1494
+ msgstr ""
1495
+ "\"Posição\" irá dizer à imagem onde ela deve se posicionar no fundo da linha."
1496
 
1497
+ # @ fl-builder
1498
  #: includes/row-settings.php:175
 
1499
  msgid "Attachment"
1500
  msgstr "Anexação ao Fundo"
1501
 
1502
+ # @ fl-builder
1503
+ #: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
 
1504
  msgid "Scroll"
1505
  msgstr "Deslizar"
1506
 
1507
+ # @ fl-builder
1508
  #: includes/row-settings.php:181
1509
+ msgid ""
1510
+ "Attachment will specify how the image reacts when scrolling a page. When "
1511
+ "scrolling is selected, the image will scroll with page scrolling. This is "
1512
+ "the default setting. Fixed will allow the image to scroll within the row "
1513
+ "background if fill is selected in the scale setting."
1514
+ msgstr ""
1515
+ "\"Anexação ao Fundo\" irá especificar como a imagem deve reagir quando há a "
1516
+ "rolagem de páginal. Quando \"deslizar\" é selecionado, a imagem irá deslizar "
1517
+ "em conjunto com a rolagem da página. Esta é a configuração padrão. \\\"\\Fixo"
1518
+ "\" irá permitir que a imagem permaneça na mesma posição no fundo da linha, "
1519
+ "se \"preencher\" estiver selecionado na configuração de escala."
1520
 
1521
+ # @ fl-builder
1522
  #: includes/row-settings.php:188
 
1523
  msgid "Scale"
1524
  msgstr "Escaça"
1525
 
1526
+ # @ fl-builder
1527
  #: includes/row-settings.php:191
 
1528
  msgctxt "Background scale."
1529
  msgid "None"
1530
  msgstr "Nenhum"
1531
 
1532
+ # @ fl-builder
1533
  #: includes/row-settings.php:192
 
1534
  msgid "Fit"
1535
  msgstr "Ajustar"
1536
 
1537
+ # @ fl-builder
1538
  #: includes/row-settings.php:193
 
1539
  msgid "Fill"
1540
  msgstr "Preencher"
1541
 
1542
+ # @ fl-builder
1543
  #: includes/row-settings.php:195
1544
+ msgid ""
1545
+ "Scale applies to how the image should display in the row background. You can "
1546
+ "select either fill or fit to the row background."
1547
+ msgstr ""
1548
+ "\"Escala\" aplica-se a como a imagem deve ser exibida no fundo da linha. "
1549
+ "Você pode selecionar entre preencher ou ajustar-se ao fundo da linha."
1550
 
1551
+ # @ fl-builder
1552
  #: includes/row-settings.php:203
 
1553
  msgid "Background Video"
1554
  msgstr "Vídeo de Fundo"
1555
 
1556
+ # @ fl-builder
1557
+ #: includes/row-settings.php:207 modules/content-slider/content-slider.php:330
1558
+ #: modules/video/video.php:19 modules/video/video.php:100
 
 
1559
  msgid "Video"
1560
  msgstr "Vídeo"
1561
 
1562
+ # @ fl-builder
1563
  #: includes/row-settings.php:208
1564
+ msgid ""
1565
+ "An HTML5 video to use as the background of this row. Supported types are "
1566
+ "MP4, WebM and Ogg."
1567
+ msgstr ""
1568
+ "Um vídeo em formato HTML5 a ser usado como fundo desta linha. Formatos "
1569
+ "suportados são MP4, WebM e Ogg."
1570
 
1571
+ # @ fl-builder
1572
  #: includes/row-settings.php:215
 
1573
  msgid "Fallback Photo"
1574
  msgstr "Foto de Reserva"
1575
 
1576
+ # @ fl-builder
1577
  #: includes/row-settings.php:216
 
1578
  msgid "A photo that will be displayed if the video fails to load."
1579
  msgstr "Uma foto que será exibida caso o vídeo não seja carregado."
1580
 
1581
+ # @ fl-builder
1582
  #: includes/row-settings.php:224
 
1583
  msgid "Background Slideshow"
1584
  msgstr "Slideshow de Fundo"
1585
 
1586
+ # @ fl-builder
1587
+ #: includes/row-settings.php:228 modules/gallery/gallery.php:234
1588
  #: modules/slideshow/slideshow.php:263
 
1589
  msgid "Source"
1590
  msgstr "Origem"
1591
 
1592
+ # @ fl-builder
1593
+ #: includes/row-settings.php:231 modules/gallery/gallery.php:237
1594
+ #: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
 
1595
  #: modules/video/video.php:86
 
1596
  msgid "Media Library"
1597
  msgstr "Biblioteca de Mídia"
1598
 
1599
+ # @ fl-builder
1600
+ #: includes/row-settings.php:234 modules/gallery/gallery.php:240
1601
  #: modules/slideshow/slideshow.php:269
1602
+ msgid ""
1603
+ "Pull images from the WordPress media library or a gallery on your SmugMug "
1604
+ "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
1605
+ "accessed by using the get a link function in your SmugMug gallery."
1606
+ msgstr ""
1607
+ "Puxa imagens da biblioteca de mídia do WordPress ou uma galeria em seu site "
1608
+ "no SmugMug inserindo a URL do feed RSS do SmugMug. A URL do feed RSS pode "
1609
+ "ser acessada usando a função \"get a link\" em sua galeria no SmugMug."
1610
 
1611
+ # @ fl-builder
1612
+ #: includes/row-settings.php:249 modules/gallery/gallery.php:252
1613
  #: modules/slideshow/slideshow.php:281
 
1614
  msgid "Photos"
1615
  msgstr "Fotos"
1616
 
1617
+ # @ fl-builder
1618
+ #: includes/row-settings.php:256 modules/gallery/gallery.php:256
1619
  #: modules/slideshow/slideshow.php:285
 
1620
  msgid "Feed URL"
1621
  msgstr "URL do Feed"
1622
 
1623
+ # @ fl-builder
1624
+ #: includes/row-settings.php:263 includes/row-settings.php:328
1625
  #: modules/slideshow/slideshow.php:382
 
1626
  msgid "Speed"
1627
  msgstr "Velocidade"
1628
 
1629
+ # @ fl-builder
1630
+ #: includes/row-settings.php:273 modules/content-slider/content-slider.php:231
1631
  #: modules/slideshow/slideshow.php:389
1632
  #: modules/testimonials/testimonials.php:99
 
1633
  msgid "Transition"
1634
  msgstr "Transição"
1635
 
1636
+ # @ fl-builder
1637
  #: includes/row-settings.php:276
 
1638
  msgctxt "Slideshow transition type."
1639
  msgid "None"
1640
  msgstr "Nenhuma"
1641
 
1642
+ # @ fl-builder
1643
+ #: includes/row-settings.php:277 modules/content-slider/content-slider.php:235
1644
  #: modules/slideshow/slideshow.php:393
1645
  #: modules/testimonials/testimonials.php:103
 
1646
  msgid "Fade"
1647
  msgstr ""
1648
 
1649
+ # @ fl-builder
1650
+ #: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
 
1651
  msgid "Ken Burns"
1652
  msgstr ""
1653
 
1654
+ # @ fl-builder
1655
+ #: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
 
1656
  msgid "Slide Horizontal"
1657
  msgstr "Deslizar Horizontalmente"
1658
 
1659
+ # @ fl-builder
1660
+ #: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
 
1661
  msgid "Slide Vertical"
1662
  msgstr "Deslizar Verticalmente"
1663
 
1664
+ # @ fl-builder
1665
+ #: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
 
1666
  msgid "Blinds"
1667
  msgstr "Persianas"
1668
 
1669
+ # @ fl-builder
1670
+ #: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
 
1671
  msgid "Bars"
1672
  msgstr "Barras"
1673
 
1674
+ # @ fl-builder
1675
+ #: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
 
1676
  msgid "Random Bars"
1677
  msgstr "Barras Aleatórias"
1678
 
1679
+ # @ fl-builder
1680
+ #: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
 
1681
  msgid "Boxes"
1682
  msgstr "Caixas"
1683
 
1684
+ # @ fl-builder
1685
+ #: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
 
1686
  msgid "Random Boxes"
1687
  msgstr "Caixas Aleatórias"
1688
 
1689
+ # @ fl-builder
1690
+ #: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
 
1691
  msgid "Boxes Grow"
1692
  msgstr "Caixas Crescentes"
1693
 
1694
+ # @ fl-builder
1695
+ #: includes/row-settings.php:294 modules/content-slider/content-slider.php:240
1696
  #: modules/slideshow/slideshow.php:407
1697
  #: modules/testimonials/testimonials.php:108
 
1698
  msgid "Transition Speed"
1699
  msgstr "Velocidade de Transição"
1700
 
1701
+ # @ fl-builder
1702
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
 
1703
  msgid "Randomize Photos"
1704
  msgstr "Embaralhar Fotos"
1705
 
1706
+ # @ fl-builder
1707
  #: includes/row-settings.php:317
 
1708
  msgid "Background Parallax"
1709
  msgstr "Parallax de Fundo"
1710
 
1711
+ # @ fl-builder
1712
  #: includes/row-settings.php:331
 
1713
  msgid "Fast"
1714
  msgstr "Rápido"
1715
 
1716
+ # @ fl-builder
1717
  #: includes/row-settings.php:332
 
1718
  msgctxt "Speed."
1719
  msgid "Medium"
1720
  msgstr "Médio"
1721
 
1722
+ # @ fl-builder
1723
  #: includes/row-settings.php:333
 
1724
  msgid "Slow"
1725
  msgstr "Lento"
1726
 
1727
+ #: includes/row-settings.php:342
1728
+ msgid "Background Overlay"
1729
+ msgstr "Sobreposição de Fundo"
1730
+
1731
+ #: includes/row-settings.php:346
1732
+ msgid "Use Color Overlay?"
1733
+ msgstr "Usar Sobreposição de Cor para o fundo?"
1734
+
1735
+ #: includes/row-settings.php:360
1736
+ msgid "Insert color layer between the background and the modules."
1737
+ msgstr "Insere uma camada de cor entre o fundo e os módulos."
1738
+
1739
+ #: includes/row-settings.php:367
1740
+ msgid "Overlay Color"
1741
+ msgstr "Cor do elemento de Sobreposição"
1742
+
1743
+ #: includes/row-settings.php:375
1744
+ msgid "Overlay Opacity"
1745
+ msgstr "Opacidade do elemento de Sobreposição"
1746
+
1747
+ # @ fl-builder
1748
+ #: includes/row-settings.php:502
1749
  msgid "Add a custom CSS selector here to apply additional styling to this row."
1750
+ msgstr ""
1751
+ "Adicione um seletor CSS personalizado aqui para aplicar um estilo adicional "
1752
+ "a esta linha."
1753
 
1754
+ # @ fl-builder
1755
+ #: includes/row-settings.php:518
1756
  msgid "Choose whether to show or hide this row at different device sizes."
1757
+ msgstr ""
1758
+ "Escolha entre mostrar ou esconder esta linha em diferentes tamanhos de "
1759
+ "dispositivo."
1760
 
1761
+ # @ fl-builder
1762
  #: includes/settings.php:62
 
1763
  msgid "Save"
1764
  msgstr "Salvar"
1765
 
1766
+ # @ fl-builder
1767
  #: includes/template-selector.php:3
 
1768
  msgid "Layout Templates"
1769
  msgstr "Templates de Layout"
1770
 
1771
+ # @ fl-builder
1772
  #: includes/template-selector.php:8
 
1773
  msgid "Home Pages"
1774
  msgstr "Páginas Iniciais"
1775
 
1776
+ # @ fl-builder
1777
  #: includes/template-selector.php:9
 
1778
  msgid "Content Pages"
1779
  msgstr "Páginas de Conteúdo"
1780
 
1781
+ # @ fl-builder
1782
  #: includes/template-selector.php:13
 
1783
  msgid "Your Templates"
1784
  msgstr "Seus Templates"
1785
 
1786
+ # @ fl-builder
1787
+ #: includes/template-selector.php:47 includes/template-selector.php:77
 
1788
  msgctxt "Template name."
1789
  msgid "Blank"
1790
  msgstr "Em Branco"
1791
 
1792
+ # @ fl-builder
1793
  #: includes/template-selector.php:72
1794
+ msgid ""
1795
+ "You haven't saved any templates yet! To do so, create a layout and save it "
1796
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
1797
+ msgstr ""
1798
+ "Você não salvou nenhum template ainda! Para fazer isso, crie um layout e "
1799
+ "salve-o como um template em <strong>Ferramentas &rarr; Salvar Template</"
1800
+ "strong>."
1801
 
1802
+ # @ fl-builder
1803
+ #: includes/template-settings.php:14 includes/user-template-settings.php:15
1804
+ msgctxt "Template name."
1805
+ msgid "Name"
1806
+ msgstr "Nome"
1807
+
1808
+ #: includes/template-settings.php:18
1809
+ msgid "Image Filename"
1810
+ msgstr "Nome do arquivo da Imagem"
1811
 
1812
+ #: includes/template-settings.php:19
1813
+ msgid ""
1814
+ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
1815
+ "templates/\" directory."
1816
+ msgstr ""
1817
+ "O nome de arquivo da imagem, tal como \"thumb.jpg\" que se encontra no "
1818
+ "diretório \"img/templates/\"."
1819
+
1820
+ # @ fl-builder
1821
  #: includes/ui.php:7
1822
  #, php-format
 
1823
  msgid "Template: %s"
1824
  msgstr ""
1825
 
1826
+ # @ fl-builder
1827
+ #: includes/ui.php:10 includes/user-template-settings.php:4
1828
+ msgid "Save Template"
1829
+ msgstr "Salvar Template"
1830
+
1831
+ # @ fl-builder
1832
  #: includes/ui.php:23
 
1833
  msgid "Page Builder Demo"
1834
  msgstr "Versão de Demonstração do Construtor de Páginas"
1835
 
1836
+ # @ fl-builder
1837
  #: includes/ui.php:37
 
1838
  msgid "Buy Now!"
1839
  msgstr "Adquira já!"
1840
 
1841
+ # @ fl-builder
1842
  #: includes/ui.php:39
 
1843
  msgid "Upgrade!"
1844
  msgstr "Atualize!"
1845
 
1846
+ # @ fl-builder
1847
  #: includes/ui.php:41
 
1848
  msgid "Done"
1849
  msgstr "Feito"
1850
 
1851
+ # @ fl-builder
1852
  #: includes/ui.php:42
 
1853
  msgid "Tools"
1854
  msgstr "Ferramentas"
1855
 
1856
+ # @ fl-builder
1857
  #: includes/ui.php:46
 
1858
  msgid "Add Content"
1859
  msgstr "Adicionar Conteúdo"
1860
 
1861
+ # @ fl-builder
1862
  #: includes/ui.php:64
 
1863
  msgid "Row Layouts"
1864
  msgstr "Layout de Linhas"
1865
 
1866
+ # @ fl-builder
1867
  #: includes/ui.php:68
 
1868
  msgid "1 Column"
1869
  msgstr "1 Coluna"
1870
 
1871
+ # @ fl-builder
1872
  #: includes/ui.php:69
 
1873
  msgid "2 Columns"
1874
  msgstr "2 Colunas"
1875
 
1876
+ # @ fl-builder
1877
  #: includes/ui.php:70
 
1878
  msgid "3 Columns"
1879
  msgstr "3 Colunas"
1880
 
1881
+ # @ fl-builder
1882
  #: includes/ui.php:71
 
1883
  msgid "4 Columns"
1884
  msgstr "4 Colunas"
1885
 
1886
+ # @ fl-builder
1887
  #: includes/ui.php:72
 
1888
  msgid "5 Columns"
1889
  msgstr "5 Colunas"
1890
 
1891
+ # @ fl-builder
1892
  #: includes/ui.php:73
 
1893
  msgid "6 Columns"
1894
  msgstr "6 Colunas"
1895
 
1896
+ # @ fl-builder
1897
  #: includes/ui.php:74
 
1898
  msgid "Left Sidebar"
1899
  msgstr "Barra Lateral na Esquerda"
1900
 
1901
+ # @ fl-builder
1902
  #: includes/ui.php:75
 
1903
  msgid "Right Sidebar"
1904
  msgstr "Barra Lateral na Direita"
1905
 
1906
+ # @ fl-builder
1907
  #: includes/ui.php:76
 
1908
  msgid "Left &amp; Right Sidebar"
1909
  msgstr "Barra Lateral na Esquerda &amp; Direita"
1910
 
1911
+ # @ fl-builder
1912
+ #: includes/ui.php:85 modules/widget/widget.php:16
 
1913
  msgid "WordPress Widgets"
1914
  msgstr "Widgets do WordPress"
1915
 
1916
+ # @ fl-builder
1917
  #: includes/updater/classes/class-fl-updater.php:107
 
1918
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
1919
  msgstr "<strong>ATUALIZAÇÃO INDISPONÍVEL!</strong>"
1920
 
1921
+ # @ fl-builder
1922
  #: includes/updater/classes/class-fl-updater.php:109
 
1923
  msgid "Please subscribe to enable automatic updates for this plugin."
1924
+ msgstr ""
1925
+ "Por favor, inscreva-se para receber atualizações automáticas deste plugin."
1926
 
1927
+ # @ fl-builder
1928
  #: includes/updater/classes/class-fl-updater.php:111
1929
  #: includes/updater/includes/form.php:6
 
1930
  msgid "Subscribe Now"
1931
  msgstr "Inscrever-se Agora"
1932
 
1933
+ # @ fl-builder
1934
  #: includes/updater/includes/form.php:5
1935
+ msgid ""
1936
+ "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
1937
+ "enable automatic updates."
1938
+ msgstr ""
1939
+ "ATUALIZAÇÕES INDISPONÍVEIS! Por favor, inscreva-se ou insira sua chave de "
1940
+ "licença abaixo para ativar atualizações automáticas."
1941
 
1942
+ # @ fl-builder
1943
  #: includes/updater/includes/form.php:11
 
1944
  msgid "Updates &amp; Support Subscription"
1945
  msgstr "Inscrição para Atualizações &amp; Suporte"
1946
 
1947
+ # @ fl-builder
1948
  #: includes/updater/includes/form.php:14
 
1949
  msgid "Active!"
1950
  msgstr "Ativada!"
1951
 
1952
+ # @ fl-builder
1953
  #: includes/updater/includes/form.php:16
 
1954
  msgid "Not Active!"
1955
  msgstr "Desativada!"
1956
 
1957
+ # @ fl-builder
1958
  #: includes/updater/includes/form.php:22
 
1959
  msgid "Email address saved!"
1960
  msgstr "Endereço de Email salvo!"
1961
 
1962
+ # @ fl-builder
1963
  #: includes/updater/includes/form.php:27
1964
  #, php-format
 
1965
  msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
1966
+ msgstr ""
1967
+ "Insira sua <a%s>chave de licença</a> para habilitar atualizações remotas e "
1968
+ "suporte."
 
 
 
1969
 
1970
+ # @ fl-builder
1971
  #: includes/user-template-settings.php:8
1972
+ msgid ""
1973
+ "Save the current layout as a template that can be reused under "
1974
+ "<strong>Templates &rarr; Your Templates</strong>."
1975
+ msgstr ""
1976
+ "Salve o layout atual como um template que poderá ser reutilizado em "
1977
+ "<strong>Templates &rarr; Seus Templates</strong>."
 
 
 
1978
 
1979
+ # @ fl-builder
1980
  #: modules/accordion/accordion.php:14
 
1981
  msgid "Accordion"
1982
  msgstr "Sanfona"
1983
 
1984
+ # @ fl-builder
1985
  #: modules/accordion/accordion.php:15
 
1986
  msgid "Display a collapsible accordion of items."
1987
  msgstr "Exibe uma sanfona de itens que se expandem."
1988
 
1989
+ # @ fl-builder
1990
+ #: modules/accordion/accordion.php:16 modules/button/button.php:16
1991
+ #: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
1992
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
1993
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
1994
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
1995
+ #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
1996
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
 
 
 
 
 
 
1997
  #: modules/slideshow/slideshow.php:16
1998
+ #: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
 
1999
  #: modules/testimonials/testimonials.php:16
2000
  #: modules/woocommerce/woocommerce.php:18
 
2001
  msgid "Advanced Modules"
2002
  msgstr "Módulos Avançados"
2003
 
2004
+ # @ fl-builder
2005
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
 
2006
  msgid "Items"
2007
  msgstr "Itens"
2008
 
2009
+ # @ fl-builder
2010
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
 
2011
  msgid "Item"
2012
  msgstr "Item"
2013
 
2014
+ # @ fl-builder
2015
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
 
2016
  msgid "Border Color"
2017
  msgstr "Cor da Borda"
2018
 
2019
+ # @ fl-builder
2020
  #: modules/accordion/accordion.php:62
 
2021
  msgid "Label Size"
2022
  msgstr "Tamanho do Rótulo"
2023
 
2024
+ # @ fl-builder
2025
  #: modules/accordion/accordion.php:65
 
2026
  msgctxt "Label size."
2027
  msgid "Small"
2028
  msgstr "Pequeno"
2029
 
2030
+ # @ fl-builder
2031
  #: modules/accordion/accordion.php:66
 
2032
  msgctxt "Label size."
2033
  msgid "Medium"
2034
  msgstr "Médio"
2035
 
2036
+ # @ fl-builder
2037
  #: modules/accordion/accordion.php:67
 
2038
  msgctxt "Label size."
2039
  msgid "Large"
2040
  msgstr "Grande"
2041
 
2042
+ # @ fl-builder
2043
  #: modules/accordion/accordion.php:75
 
2044
  msgid "Item Spacing"
2045
  msgstr "Espaçamento do Item"
2046
 
2047
+ # @ fl-builder
2048
  #: modules/accordion/accordion.php:86
 
2049
  msgid "Collapse Inactive"
2050
  msgstr "Expansão Inativa"
2051
 
2052
+ # @ fl-builder
2053
  #: modules/accordion/accordion.php:92
2054
+ msgid ""
2055
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
2056
+ "multiple items to be open at the same time."
2057
+ msgstr ""
2058
+ "Escolher \"sim\" irá manter apenas um item aberto por vez. Escolher \"não\\"
2059
+ "\"\\ irá permitir que múltiplos itens permaneçam abertos ao mesmo tempo."
2060
 
2061
+ # @ fl-builder
2062
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
 
2063
  msgid "Add Item"
2064
  msgstr "Adicionar Item"
2065
 
2066
+ # @ fl-builder
2067
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
 
2068
  msgid "Label"
2069
  msgstr "Rótulo"
2070
 
2071
+ # @ fl-builder
2072
+ #: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
2073
+ #: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
 
2074
  #: modules/tabs/tabs.php:89
 
2075
  msgid "Content"
2076
  msgstr "Conteúdo"
2077
 
2078
+ # @ fl-builder
2079
+ #: modules/button/button.php:14 modules/callout/callout.php:477
2080
+ #: modules/content-slider/content-slider.php:595 modules/cta/cta.php:212
 
2081
  #: modules/pricing-table/pricing-table.php:129
 
2082
  msgid "Button"
2083
  msgstr "Botão"
2084
 
2085
+ # @ fl-builder
2086
  #: modules/button/button.php:15
 
2087
  msgid "A simple call to action button."
2088
  msgstr "Um botão simples de chamada para ação."
2089
 
2090
+ # @ fl-builder
2091
+ #: modules/button/button.php:54 modules/cta/cta.php:220
 
2092
  msgid "Click Here"
2093
  msgstr "Clique Aqui"
2094
 
2095
+ # @ fl-builder
2096
+ #: modules/button/button.php:62 modules/callout/callout.php:315
2097
+ #: modules/callout/callout.php:363 modules/callout/callout.php:367
2098
+ #: modules/cta/cta.php:228 modules/icon-group/icon-group.php:34
2099
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
 
2100
  #: modules/icon/icon.php:34
 
 
 
2101
  msgid "Icon"
2102
  msgstr "Ícone"
2103
 
2104
+ # @ fl-builder
2105
+ #: modules/button/button.php:68 modules/button/button.php:72
2106
+ #: modules/callout/callout.php:443 modules/callout/callout.php:447
 
2107
  #: modules/content-slider/content-slider.php:567
2108
  #: modules/content-slider/content-slider.php:571
2109
+ #: modules/content-slider/content-slider.php:594 modules/cta/cta.php:238
2110
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47
2111
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
 
 
 
2112
  #: modules/slideshow/slideshow.php:343
 
2113
  msgid "Link"
2114
  msgstr ""
2115
 
2116
+ # @ fl-builder
2117
  #: modules/button/button.php:73
 
2118
  msgid "http://www.example.com"
2119
  msgstr ""
2120
 
2121
+ # @ fl-builder
2122
+ #: modules/button/button.php:80 modules/callout/callout.php:455
2123
+ #: modules/content-slider/content-slider.php:576 modules/cta/cta.php:245
2124
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
 
 
2125
  #: modules/photo/photo.php:478
 
2126
  msgid "Link Target"
2127
  msgstr "Destino do Link"
2128
 
2129
+ # @ fl-builder
2130
+ #: modules/button/button.php:83 modules/callout/callout.php:458
2131
+ #: modules/content-slider/content-slider.php:579 modules/cta/cta.php:248
2132
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
 
 
2133
  #: modules/photo/photo.php:481
 
2134
  msgid "Same Window"
2135
  msgstr "Mesma Janela"
2136
 
2137
+ # @ fl-builder
2138
+ #: modules/button/button.php:84 modules/callout/callout.php:459
2139
+ #: modules/content-slider/content-slider.php:580 modules/cta/cta.php:249
2140
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
 
 
2141
  #: modules/photo/photo.php:482
 
2142
  msgid "New Window"
2143
  msgstr "Nova Janela"
2144
 
2145
+ # @ fl-builder
2146
+ # @ default
2147
+ #: modules/button/button.php:98 modules/cta/cta.php:185
2148
+ #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
2149
  #: modules/icon/icon.php:78
 
 
 
2150
  msgid "Colors"
2151
  msgstr "Cores"
2152
 
2153
+ # @ fl-builder
2154
+ #: modules/button/button.php:108 modules/callout/callout.php:407
2155
  #: modules/callout/callout.php:512
2156
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:268
2157
+ #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
 
 
 
2158
  msgid "Background Hover Color"
2159
  msgstr "Cor de Fundo (mouse sobrepondo o elemento)"
2160
 
2161
+ # @ fl-builder
2162
+ #: modules/button/button.php:117 modules/callout/callout.php:521
2163
  #: modules/content-slider/content-slider.php:522
2164
  #: modules/content-slider/content-slider.php:635
2165
+ #: modules/content-slider/content-slider.php:719 modules/cta/cta.php:189
2166
+ #: modules/cta/cta.php:277 modules/heading/heading.php:77
 
 
 
2167
  msgid "Text Color"
2168
  msgstr "Cor do Texto"
2169
 
2170
+ # @ fl-builder
2171
+ #: modules/button/button.php:123 modules/callout/callout.php:527
2172
+ #: modules/content-slider/content-slider.php:641 modules/cta/cta.php:283
 
 
2173
  msgid "Text Hover Color"
2174
  msgstr "Cor do Texto (mouse sobrepondo o elemento)"
2175
 
2176
+ # @ fl-builder
2177
+ #: modules/button/button.php:132 modules/callout/callout.php:415
2178
  #: modules/callout/callout.php:536
2179
+ #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:292
2180
+ #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
 
 
 
2181
  msgid "Gradient"
2182
  msgstr "Degradê"
2183
 
2184
+ # @ fl-builder
2185
+ #: modules/button/button.php:142 modules/callout/callout.php:242
2186
+ #: modules/cta/cta.php:102 modules/heading/heading.php:82
2187
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
 
 
 
2188
  msgid "Structure"
2189
  msgstr "Estrutura"
2190
 
2191
+ # @ fl-builder
2192
+ #: modules/button/button.php:149 modules/callout/callout.php:553
 
2193
  msgctxt "Width."
2194
  msgid "Auto"
2195
  msgstr "Automática"
2196
 
2197
+ # @ fl-builder
2198
  #: modules/button/button.php:165
 
2199
  msgid "Custom Width"
2200
  msgstr "Tamanho Personalizado"
2201
 
2202
+ # @ fl-builder
2203
+ #: modules/button/button.php:173 modules/cta/cta.php:120
2204
+ #: modules/heading/heading.php:86 modules/heading/heading.php:141
2205
+ #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
2206
+ #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
 
 
 
 
2207
  msgid "Alignment"
2208
  msgstr "Alinhamento"
2209
 
2210
+ # @ fl-builder
2211
+ #: modules/button/button.php:183 modules/callout/callout.php:559
2212
+ #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:306
2213
+ #: modules/heading/heading.php:114 modules/heading/heading.php:171
 
 
 
2214
  msgid "Font Size"
2215
  msgstr "Tamanho da Fonte"
2216
 
2217
+ # @ fl-builder
2218
+ #: modules/button/button.php:199 modules/callout/callout.php:575
2219
  #: modules/cta/cta.php:322
 
2220
  msgid "Round Corners"
2221
  msgstr "Cantos Arredondados"
2222
 
2223
+ # @ fl-builder
2224
  #: modules/callout/callout.php:14
 
2225
  msgid "Callout"
2226
  msgstr "Chamada"
2227
 
2228
+ # @ fl-builder
2229
  #: modules/callout/callout.php:15
 
2230
  msgid "A heading and snippet of text with an optional link, icon and image."
2231
  msgstr "Uma cabeçalho e um trecho de texto com link, ícone e imagem opcionais."
2232
 
2233
+ # @ fl-builder
2234
  #: modules/callout/callout.php:214
2235
  #: modules/content-slider/content-slider.php:407
2236
+ #: modules/content-slider/content-slider.php:422 modules/cta/cta.php:72
2237
+ #: modules/heading/heading.php:14 modules/heading/heading.php:33
 
 
2238
  #: modules/testimonials/testimonials.php:56
2239
  #: modules/testimonials/testimonials.php:61
 
2240
  msgid "Heading"
2241
  msgstr "Cabeçalho"
2242
 
2243
+ # @ fl-builder
2244
  #: modules/callout/callout.php:246
 
2245
  msgid "Overall Alignment"
2246
  msgstr "Alinhamento Geral"
2247
 
2248
+ # @ fl-builder
2249
  #: modules/callout/callout.php:253
 
2250
  msgid "The alignment that will apply to all elements within the callout."
2251
+ msgstr ""
2252
+ "O alinhamento que será aplicado a todos os elementos dentro do bloco de "
2253
+ "chamada."
2254
 
2255
+ # @ fl-builder
2256
+ #: modules/callout/callout.php:261 modules/cta/cta.php:145
 
2257
  msgid "Heading Structure"
2258
  msgstr "Estrutura do Cabeçalho"
2259
 
2260
+ # @ fl-builder
2261
  #: modules/callout/callout.php:265
2262
+ #: modules/content-slider/content-slider.php:426 modules/cta/cta.php:149
 
 
2263
  msgid "Heading Tag"
2264
  msgstr "Tag HTML do Cabeçalho"
2265
 
2266
+ # @ fl-builder
2267
  #: modules/callout/callout.php:278
2268
  #: modules/content-slider/content-slider.php:439
2269
+ #: modules/content-slider/content-slider.php:453 modules/cta/cta.php:162
 
2270
  #: modules/testimonials/testimonials.php:69
 
2271
  msgid "Heading Size"
2272
  msgstr "Tamanho do Cabeçalho"
2273
 
2274
+ # @ fl-builder
2275
+ #: modules/callout/callout.php:292 modules/cta/cta.php:176
 
2276
  msgid "Heading Custom Size"
2277
  msgstr "Tamanho Personalizado do Cabeçalho"
2278
 
2279
+ # @ fl-builder
 
 
 
 
 
2280
  #: modules/callout/callout.php:310
 
2281
  msgid "Image Type"
2282
  msgstr "Tipo de Imagem"
2283
 
2284
+ # @ fl-builder
2285
  #: modules/callout/callout.php:313
 
2286
  msgctxt "Image type."
2287
  msgid "None"
2288
  msgstr "Nenhuma"
2289
 
2290
+ # @ fl-builder
2291
+ #: modules/callout/callout.php:338 modules/photo/photo.php:401
2292
  #: modules/slideshow/slideshow.php:312
 
2293
  msgid "Crop"
2294
  msgstr "Recorte"
2295
 
2296
+ # @ fl-builder
2297
  #: modules/callout/callout.php:341
 
2298
  msgctxt "Crop"
2299
  msgid "None"
2300
  msgstr "Nenhum"
2301
 
2302
+ # @ fl-builder
2303
+ #: modules/callout/callout.php:342 modules/photo/photo.php:405
 
2304
  msgid "Landscape"
2305
  msgstr "Paisagem"
2306
 
2307
+ # @ fl-builder
2308
+ #: modules/callout/callout.php:343 modules/photo/photo.php:406
 
2309
  msgid "Panorama"
2310
  msgstr ""
2311
 
2312
+ # @ fl-builder
2313
+ #: modules/callout/callout.php:344 modules/photo/photo.php:407
 
2314
  msgid "Portrait"
2315
  msgstr "Retrato"
2316
 
2317
+ # @ fl-builder
2318
+ #: modules/callout/callout.php:345 modules/photo/photo.php:408
 
2319
  msgid "Square"
2320
  msgstr "Quadrado"
2321
 
2322
+ # @ fl-builder
2323
+ #: modules/callout/callout.php:346 modules/photo/photo.php:409
 
2324
  msgid "Circle"
2325
  msgstr "Círculo"
2326
 
2327
+ # @ fl-builder
2328
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
 
2329
  msgid "Above Heading"
2330
  msgstr "Acima do Cabeçalho"
2331
 
2332
+ # @ fl-builder
2333
+ #: modules/callout/callout.php:355 modules/callout/callout.php:375
 
2334
  msgid "Below Heading"
2335
  msgstr "Abaixo do Cabeçalho"
2336
 
2337
+ # @ fl-builder
2338
+ #: modules/callout/callout.php:356 modules/callout/callout.php:378
 
2339
  msgid "Left of Text and Heading"
2340
  msgstr "À Esquerda do Texto e Cabeçalho"
2341
 
2342
+ # @ fl-builder
2343
+ #: modules/callout/callout.php:357 modules/callout/callout.php:379
 
2344
  msgid "Right of Text and Heading"
2345
  msgstr "À Direita do Texto e Cabeçalho"
2346
 
2347
+ # @ fl-builder
2348
  #: modules/callout/callout.php:376
 
2349
  msgid "Left of Heading"
2350
  msgstr "À Esquerda do Cabeçalho"
2351
 
2352
+ # @ fl-builder
2353
  #: modules/callout/callout.php:377
 
2354
  msgid "Right of Heading"
2355
  msgstr "À Direita do Cabeçalho"
2356
 
2357
+ # @ fl-builder
2358
  #: modules/callout/callout.php:385
 
2359
  msgid "Icon Colors"
2360
  msgstr "Cores do Ícone"
2361
 
2362
+ # @ fl-builder
2363
+ #: modules/callout/callout.php:394 modules/icon-group/icon-group.php:56
2364
  #: modules/icon/icon.php:87
 
 
2365
  msgid "Hover Color"
2366
  msgstr "Cor com mouse sobrepondo"
2367
 
2368
+ # @ fl-builder
2369
  #: modules/callout/callout.php:425
 
2370
  msgid "Icon Structure"
2371
  msgstr "Estrutura do Ícone"
2372
 
2373
+ # @ fl-builder
2374
+ #: modules/callout/callout.php:429 modules/icon-group/icon-group.php:91
2375
+ #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
 
 
2376
  msgid "Size"
2377
  msgstr "Tamanho"
2378
 
2379
+ # @ fl-builder
2380
  #: modules/callout/callout.php:440
2381
  #: modules/content-slider/content-slider.php:564
 
2382
  msgid "Call To Action"
2383
  msgstr "Chamada de Ação"
2384
 
2385
+ # @ fl-builder
2386
  #: modules/callout/callout.php:448
2387
+ msgid ""
2388
+ "The link applies to the entire module. If choosing a call to action type "
2389
+ "below, this link will also be used for the text or button."
2390
+ msgstr ""
2391
+ "O link aplica-se ao módulo por inteiro. Se escolher um tipo de chamada de "
2392
+ "ação abaixo, este link também será usado para o texto ou botão."
2393
 
2394
+ # @ fl-builder
2395
  #: modules/callout/callout.php:468
2396
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:14
 
 
2397
  msgid "Call to Action"
2398
  msgstr "Chamada para Ação"
2399
 
2400
+ # @ fl-builder
2401
  #: modules/callout/callout.php:475
2402
  #: modules/content-slider/content-slider.php:593
 
2403
  msgctxt "Call to action."
2404
  msgid "None"
2405
  msgstr "Nenhuma"
2406
 
2407
+ # @ fl-builder
2408
  #: modules/callout/callout.php:496
2409
  #: modules/content-slider/content-slider.php:614
 
2410
  msgid "Button Icon"
2411
  msgstr "Ícone do Botão"
2412
 
2413
+ # @ fl-builder
2414
  #: modules/callout/callout.php:502
2415
+ #: modules/content-slider/content-slider.php:620 modules/cta/cta.php:258
 
 
2416
  msgid "Button Colors"
2417
  msgstr "Cores do Botão"
2418
 
2419
+ # @ fl-builder
2420
  #: modules/callout/callout.php:546
2421
+ #: modules/content-slider/content-slider.php:656 modules/cta/cta.php:302
 
 
2422
  msgid "Button Structure"
2423
  msgstr "Estrutura do Botão"
2424
 
2425
+ # @ fl-builder
2426
  #: modules/callout/callout.php:550
 
2427
  msgid "Button Width"
2428
  msgstr "Largura do Botão"
2429
 
2430
+ # @ fl-builder
2431
  #: modules/contact-form/contact-form.php:14
 
2432
  msgid "Contact Form"
2433
  msgstr "Formulário de Contato"
2434
 
2435
+ # @ fl-builder
2436
  #: modules/contact-form/contact-form.php:15
 
2437
  msgid "A very simple contact form."
2438
  msgstr "Um formulário simples de contato."
2439
 
2440
+ # @ fl-builder
2441
  #: modules/contact-form/contact-form.php:36
 
2442
  msgid "Contact Form Submission"
2443
  msgstr "Envio do Formulário de Contato"
2444
 
2445
+ # @ fl-builder
2446
  #: modules/contact-form/contact-form.php:64
 
2447
  msgid "Send To Email"
2448
  msgstr "Enviar para Email"
2449
 
2450
+ # @ fl-builder
2451
  #: modules/contact-form/contact-form.php:66
 
2452
  msgid "example@mail.com"
2453
  msgstr ""
2454
 
2455
+ # @ fl-builder
2456
  #: modules/contact-form/contact-form.php:67
 
2457
  msgid "The contact form will send to this e-mail"
2458
  msgstr "O formulário de contato será enviado para este e-mail"
2459
 
2460
+ # @ fl-builder
2461
  #: modules/contact-form/includes/frontend.php:4
 
2462
  msgctxt "Contact form field label."
2463
  msgid "Name"
2464
  msgstr "Nome"
2465
 
2466
+ # @ fl-builder
2467
  #: modules/contact-form/includes/frontend.php:5
 
2468
  msgid "Please enter your name."
2469
  msgstr "Por favor, insira seu nome."
2470
 
2471
+ # @ fl-builder
 
 
 
 
2472
  #: modules/contact-form/includes/frontend.php:10
 
2473
  msgid "Email"
2474
  msgstr "Email"
2475
 
2476
+ # @ fl-builder
2477
  #: modules/contact-form/includes/frontend.php:11
 
2478
  msgid "Please enter a valid email."
2479
  msgstr "Por favor, insira um email válido."
2480
 
2481
+ # @ fl-builder
 
 
 
 
2482
  #: modules/contact-form/includes/frontend.php:16
 
2483
  msgid "Your Message"
2484
  msgstr "Sua Mensagem"
2485
 
2486
+ # @ fl-builder
2487
  #: modules/contact-form/includes/frontend.php:17
 
2488
  msgid "Please enter a message."
2489
  msgstr "Por favor, escreva sua mensagem."
2490
 
2491
+ # @ fl-builder
 
 
 
 
 
 
 
 
 
2492
  #: modules/contact-form/includes/frontend.php:24
 
2493
  msgid "Message Sent!"
2494
  msgstr "Mensagem Enviada!"
2495
 
2496
+ # @ fl-builder
2497
  #: modules/contact-form/includes/frontend.php:25
 
2498
  msgid "Message failed. Please try again."
2499
  msgstr "Falha na Mensagem. Por favor, tente novamente."
2500
 
2501
+ # @ fl-builder
2502
  #: modules/content-slider/content-slider.php:14
 
2503
  msgid "Content Slider"
2504
  msgstr "Slider de Conteúdo"
2505
 
2506
+ # @ fl-builder
2507
  #: modules/content-slider/content-slider.php:15
 
2508
  msgid "Displays multiple slides with an optional heading and call to action."
2509
  msgstr "Exibe múltiplos slides com cabeçalho e chamada de ação opcionais."
2510
 
2511
+ # @ fl-builder
2512
+ #: modules/content-slider/content-slider.php:191 modules/map/map.php:41
2513
+ #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
 
 
2514
  msgid "Height"
2515
  msgstr "Altura"
2516
 
2517
+ # @ fl-builder
2518
  #: modules/content-slider/content-slider.php:196
2519
+ msgid ""
2520
+ "This setting is the minimum height of the content slider. Content will "
2521
+ "expand the height automatically."
2522
+ msgstr ""
2523
+ "Esta configuração é a altura mínima para o slider de conteúdo. O conteúdo "
2524
+ "irá expandir a altura automaticamente."
2525
 
2526
+ # @ fl-builder
2527
  #: modules/content-slider/content-slider.php:200
2528
  #: modules/slideshow/slideshow.php:373
2529
+ #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
 
 
2530
  msgid "Auto Play"
2531
  msgstr "Reproduzir Automaticamente"
2532
 
2533
+ # @ fl-builder
2534
  #: modules/content-slider/content-slider.php:214
 
2535
  msgid "Show Play/Pause"
2536
  msgstr "Mostrar botão de Reproduzir / Pausar"
2537
 
2538
+ # @ fl-builder
2539
  #: modules/content-slider/content-slider.php:234
2540
  #: modules/testimonials/testimonials.php:102
 
2541
  msgctxt "Transition type."
2542
  msgid "Slide"
2543
+ msgstr "Deslizar"
2544
 
2545
+ # @ fl-builder
2546
  #: modules/content-slider/content-slider.php:248
2547
  #: modules/testimonials/testimonials.php:121
 
2548
  msgid "Show Arrows"
2549
  msgstr "Mostrar Setas"
2550
 
2551
+ # @ fl-builder
2552
  #: modules/content-slider/content-slider.php:257
2553
  #: modules/testimonials/testimonials.php:151
 
2554
  msgid "Show Dots"
2555
  msgstr "Mostrar Pontos"
2556
 
2557
+ # @ fl-builder
2558
  #: modules/content-slider/content-slider.php:271
 
2559
  msgid "Max Content Width"
2560
  msgstr "Largura Máxima do Conteúdo"
2561
 
2562
+ # @ fl-builder
2563
  #: modules/content-slider/content-slider.php:276
 
2564
  msgid "The max width that the content area will be within your slides."
2565
+ msgstr ""
2566
+ "A largura máxima que a área de conteúdo irá ocupar dentro de seus slides."
2567
 
2568
+ # @ fl-builder
2569
  #: modules/content-slider/content-slider.php:283
 
2570
  msgid "Slides"
2571
  msgstr ""
2572
 
2573
+ # @ fl-builder
2574
  #: modules/content-slider/content-slider.php:290
 
2575
  msgid "Slide"
2576
  msgstr ""
2577
 
2578
+ # @ fl-builder
2579
  #: modules/content-slider/content-slider.php:305
 
2580
  msgid "Slide Settings"
2581
  msgstr "Configurações do Slide"
2582
 
2583
+ # @ fl-builder
2584
  #: modules/content-slider/content-slider.php:315
 
2585
  msgid "Slide Label"
2586
  msgstr "Rótulo do Slide"
2587
 
2588
+ # @ fl-builder
2589
  #: modules/content-slider/content-slider.php:316
2590
+ msgid ""
2591
+ "A label to identify this slide on the Slides tab of the Content Slider "
2592
+ "settings."
2593
+ msgstr ""
2594
+ "Um rótulo para identificar este slide na aba de Slides, nas configurações do "
2595
+ "Slider de Conteúdo"
2596
 
2597
+ # @ fl-builder
2598
  #: modules/content-slider/content-slider.php:321
 
2599
  msgid "Background Layout"
2600
  msgstr "Layout do Fundo"
2601
 
2602
+ # @ fl-builder
2603
  #: modules/content-slider/content-slider.php:327
 
2604
  msgid "This setting is for the entire background of your slide."
2605
  msgstr "Esta configuração corresponde ao fundo inteiro de seu slide."
2606
 
2607
+ # @ fl-builder
2608
  #: modules/content-slider/content-slider.php:362
 
2609
  msgid "Background Video Code"
2610
  msgstr "Código do Vídeo de Fundo"
2611
 
2612
+ # @ fl-builder
2613
  #: modules/content-slider/content-slider.php:368
 
2614
  msgid "Content Layout"
2615
  msgstr "Layout do Conteúdo"
2616
 
2617
+ # @ fl-builder
2618
  #: modules/content-slider/content-slider.php:374
2619
+ msgid ""
2620
+ "This allows you to add content over or in addition to the background "
2621
+ "selection above. The location of the content layout can be selected in the "
2622
+ "style tab."
2623
+ msgstr ""
2624
+ "Isto permite que você adicione conteúdo sobre, ou em complemento à seleção "
2625
+ "do fundo acima. A localização do layout do conteúdo pode ser selecionada na "
2626
+ "aba de estilo."
2627
 
2628
+ # @ fl-builder
2629
  #: modules/content-slider/content-slider.php:377
 
2630
  msgid "Text &amp; Photo"
2631
  msgstr "Texto &amp; Foto"
2632
 
2633
+ # @ fl-builder
2634
  #: modules/content-slider/content-slider.php:378
 
2635
  msgid "Text &amp; Video"
2636
  msgstr "Texto &amp; Vídeo"
2637
 
2638
+ # @ fl-builder
2639
  #: modules/content-slider/content-slider.php:379
 
2640
  msgctxt "Content type."
2641
  msgid "None"
2642
  msgstr "Nenhum"
2643
 
2644
+ # @ fl-builder
2645
+ #: modules/content-slider/content-slider.php:402 modules/video/video.php:132
 
2646
  msgid "Video Embed Code"
2647
  msgstr "Código de Incorporação do Vídeo"
2648
 
2649
+ # @ fl-builder
2650
  #: modules/content-slider/content-slider.php:462
 
2651
  msgid "Text Position"
2652
  msgstr "Posição do Texto"
2653
 
2654
+ # @ fl-builder
2655
  #: modules/content-slider/content-slider.php:468
2656
+ msgid ""
2657
+ "The position will move the content layout selections left, right or center "
2658
+ "over the background of the slide."
2659
+ msgstr ""
2660
+ "A posição irá mover o layout do conteúdo para a esquerda, direita ou no "
2661
+ "centro, sobre o fundo do slide."
2662
 
2663
+ # @ fl-builder
2664
  #: modules/content-slider/content-slider.php:485
 
2665
  msgid "Top Margin"
2666
  msgstr "Margem Superior"
2667
 
2668
+ # @ fl-builder
2669
  #: modules/content-slider/content-slider.php:493
 
2670
  msgid "Bottom Margin"
2671
  msgstr "Margem Inferior"
2672
 
2673
+ # @ fl-builder
2674
  #: modules/content-slider/content-slider.php:501
 
2675
  msgid "Left Margin"
2676
  msgstr "Margem Esquerda"
2677
 
2678
+ # @ fl-builder
2679
  #: modules/content-slider/content-slider.php:509
 
2680
  msgid "Right Margin"
2681
  msgstr "Margem Direita"
2682
 
2683
+ # @ fl-builder
2684
  #: modules/content-slider/content-slider.php:518
 
2685
  msgid "Text Colors"
2686
  msgstr "Cores do Texto"
2687
 
2688
+ # @ fl-builder
2689
  #: modules/content-slider/content-slider.php:528
 
2690
  msgid "Text Shadow"
2691
  msgstr "Sombra do Texto"
2692
 
2693
+ # @ fl-builder
2694
  #: modules/content-slider/content-slider.php:537
2695
  #: modules/content-slider/content-slider.php:725
 
2696
  msgid "Text Background Color"
2697
  msgstr "Cor de Fundo do Texto"
2698
 
2699
+ # @ fl-builder
2700
  #: modules/content-slider/content-slider.php:538
2701
+ msgid ""
2702
+ "The color applies to the overlay behind text over the background selections."
2703
+ msgstr ""
2704
+ "A cor aplica-se ao elemento que posiciona-se atrás do texto e acima do fundo."
2705
 
2706
+ # @ fl-builder
2707
  #: modules/content-slider/content-slider.php:543
 
2708
  msgid "Text Background Opacity"
2709
  msgstr "Opacidade do Fundo do Texto"
2710
 
2711
+ # @ fl-builder
2712
  #: modules/content-slider/content-slider.php:551
 
2713
  msgid "Text Background Height"
2714
  msgstr "Altura do Fundo do Texto"
2715
 
2716
+ # @ fl-builder
2717
  #: modules/content-slider/content-slider.php:553
2718
+ msgid ""
2719
+ "Auto will allow the overlay to fit however long the text content is. 100% "
2720
+ "will fit the overlay to the top and bottom of the slide."
2721
+ msgstr ""
2722
+ "\"Automático\" irá permitir que o elemento atrás do texto ajuste-se a texto, "
2723
+ "não importa o quão grande ele seja. 100% irá ajustar o elemento atrás do "
2724
+ "texto ao topo e base do slide."
2725
 
2726
+ # @ fl-builder
2727
  #: modules/content-slider/content-slider.php:555
 
2728
  msgctxt "Background height."
2729
  msgid "Auto"
2730
  msgstr "Automático"
2731
 
2732
+ # @ fl-builder
2733
  #: modules/content-slider/content-slider.php:572
2734
+ msgid ""
2735
+ "The link applies to the entire slide. If choosing a call to action type "
2736
+ "below, this link will also be used for the text or button."
2737
+ msgstr ""
2738
+ "O link aplica-se ao slide por completo. Se você escolher um tipo de chamada "
2739
+ "de ação abaixo, o link também será usado para o texto ou botão."
2740
 
2741
+ # @ fl-builder
2742
  #: modules/content-slider/content-slider.php:676
 
2743
  msgid "Border Radius"
2744
  msgstr "Arredondamento dos Cantos"
2745
 
2746
+ # @ fl-builder
2747
  #: modules/content-slider/content-slider.php:687
 
2748
  msgctxt "Module settings form tab. Display on mobile devices."
2749
  msgid "Mobile"
2750
  msgstr "Dispositivos Móveis"
2751
 
2752
+ # @ fl-builder
2753
  #: modules/content-slider/content-slider.php:690
 
2754
  msgid "Mobile Photo"
2755
  msgstr "Foto para Dispositivos Móveis"
2756
 
2757
+ # @ fl-builder
2758
  #: modules/content-slider/content-slider.php:696
2759
+ msgid ""
2760
+ "You can choose a different photo that the slide will change to on mobile "
2761
+ "devices or no photo if desired."
2762
+ msgstr ""
2763
+ "Você pode escolher uma foto diferente para que o slide alterne em "
2764
+ "dispositivos móveis, ou também pode não selecionar nenhuma foto, se desejar."
2765
 
2766
+ # @ fl-builder
2767
  #: modules/content-slider/content-slider.php:698
 
2768
  msgid "Use Main Photo"
2769
  msgstr "Usar Foto Principal"
2770
 
2771
+ # @ fl-builder
2772
  #: modules/content-slider/content-slider.php:699
 
2773
  msgid "Choose Another Photo"
2774
  msgstr "Escolher Outra Foto"
2775
 
2776
+ # @ fl-builder
2777
  #: modules/content-slider/content-slider.php:700
 
2778
  msgid "No Photo"
2779
  msgstr "Nenhuma Foto"
2780
 
2781
+ # @ fl-builder
2782
  #: modules/content-slider/content-slider.php:715
 
2783
  msgid "Mobile Text Colors"
2784
  msgstr "Cores do Texto em Dispositivos Móveis"
2785
 
2786
+ # @ fl-builder
2787
  #: modules/cta/cta.php:15
 
2788
  msgid "Display a heading, subheading and a button."
2789
  msgstr "Exibe um cabeçalho, um subcabeçalho e um botão."
2790
 
2791
+ # @ fl-builder
2792
  #: modules/cta/cta.php:73
 
2793
  msgid "Ready to find out more?"
2794
  msgstr "Pronto para saber mais?"
2795
 
2796
+ # @ fl-builder
2797
  #: modules/cta/cta.php:88
 
2798
  msgid "Drop us a line today for a free quote!"
2799
  msgstr "Envie uma mensagem hoje para nós, para receber um orçamento gratuito!"
2800
 
2801
+ # @ fl-builder
2802
+ #: modules/cta/cta.php:106 modules/gallery/gallery.php:220
2803
+ #: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
 
2804
  #: modules/testimonials/testimonials.php:37
2805
  #: modules/woocommerce/woocommerce.php:57
 
2806
  msgid "Layout"
2807
  msgstr ""
2808
 
2809
+ # @ fl-builder
2810
  #: modules/cta/cta.php:109
 
2811
  msgid "Inline"
2812
  msgstr "Em Linha"
2813
 
2814
+ # @ fl-builder
2815
  #: modules/cta/cta.php:110
 
2816
  msgid "Stacked"
2817
  msgstr "Empilhado"
2818
 
2819
+ # @ fl-builder
2820
+ #: modules/cta/cta.php:130 modules/icon-group/icon-group.php:99
 
2821
  msgid "Spacing"
2822
  msgstr "Espaçamento"
2823
 
2824
+ # @ fl-builder
2825
  #: modules/cta/cta.php:201
 
2826
  msgid "Background Opacity"
2827
  msgstr "Opacidade do Fundo"
2828
 
2829
+ # @ fl-builder
2830
  #: modules/cta/cta.php:234
 
2831
  msgid "Button Link"
2832
  msgstr "Link do Botão"
2833
 
2834
+ # @ fl-builder
2835
+ #: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
 
2836
  msgid "Gallery"
2837
  msgstr "Galeria"
2838
 
2839
+ # @ fl-builder
2840
  #: modules/gallery/gallery.php:15
 
2841
  msgid "Display multiple photos in a gallery view."
2842
  msgstr "Exibe múltiplas fotos em modo de galeria de imagens."
2843
 
2844
+ # @ fl-builder
2845
  #: modules/gallery/gallery.php:223
 
2846
  msgid "Collage"
2847
  msgstr "Colagem"
2848
 
2849
+ # @ fl-builder
2850
  #: modules/gallery/gallery.php:224
 
2851
  msgctxt "Gallery layout: thumbnails."
2852
  msgid "Thumbs"
2853
+ msgstr "Miniaturas"
2854
 
2855
+ # @ fl-builder
2856
  #: modules/gallery/gallery.php:260
 
2857
  msgid "Photo Size"
2858
  msgstr "Tamanho da Foto"
2859
 
2860
+ # @ fl-builder
2861
  #: modules/gallery/gallery.php:263
 
2862
  msgctxt "Photo size."
2863
  msgid "Small"
2864
  msgstr "Pequena"
2865
 
2866
+ # @ fl-builder
2867
  #: modules/gallery/gallery.php:264
 
2868
  msgctxt "Photo size."
2869
  msgid "Medium"
2870
  msgstr "Média"
2871
 
2872
+ # @ fl-builder
2873
  #: modules/gallery/gallery.php:265
 
2874
  msgctxt "Photo size."
2875
  msgid "Large"
2876
  msgstr "Grande"
2877
 
2878
+ # @ fl-builder
2879
  #: modules/gallery/gallery.php:270
 
2880
  msgid "Photo Spacing"
2881
  msgstr "Espaçamento da Foto"
2882
 
2883
+ # @ fl-builder
2884
  #: modules/gallery/gallery.php:278
 
2885
  msgid "Show Captions"
2886
  msgstr "Mostrar Legendas"
2887
 
2888
+ # @ fl-builder
2889
+ #: modules/gallery/gallery.php:281 modules/photo/photo.php:432
 
2890
  msgid "Never"
2891
  msgstr "Nunca"
2892
 
2893
+ # @ fl-builder
2894
+ #: modules/gallery/gallery.php:282 modules/photo/photo.php:433
 
2895
  msgid "On Hover"
2896
  msgstr "Com o mouse sobrepondo"
2897
 
2898
+ # @ fl-builder
2899
+ #: modules/gallery/gallery.php:283 modules/photo/photo.php:434
 
2900
  msgid "Below Photo"
2901
  msgstr "Abaixo da Foto"
2902
 
2903
+ # @ fl-builder
2904
  #: modules/gallery/gallery.php:285
2905
+ msgid ""
2906
+ "The caption pulls from whatever text you put in the caption area in the "
2907
+ "media manager for each image. The caption is also pulled directly from "
2908
+ "SmugMug if you have captions set in your gallery."
2909
+ msgstr ""
2910
+ "A legenda corresponde a qualquer texto que você tenha inserido na área de "
2911
+ "legenda, no gerenciador de mídia, para cada imagem. A legenda também pode "
2912
+ "vir também do SmugMug se você tiver legendas configuradas em sua galeria."
2913
 
2914
+ # @ fl-builder
2915
+ #: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
 
2916
  msgid "Click Action"
2917
  msgstr "Ação do Clique"
2918
 
2919
+ # @ fl-builder
2920
  #: modules/gallery/gallery.php:292
 
2921
  msgctxt "Click action."
2922
  msgid "None"
2923
  msgstr "Nenhuma"
2924
 
2925
+ # @ fl-builder
2926
+ #: modules/gallery/gallery.php:293 modules/photo/photo.php:452
 
2927
  msgid "Lightbox"
2928
  msgstr ""
2929
 
2930
+ # @ fl-builder
2931
  #: modules/gallery/gallery.php:294
 
2932
  msgid "Photo Link"
2933
  msgstr "Link da Foto"
2934
 
2935
+ # @ fl-builder
2936
  #: modules/heading/heading.php:15
 
2937
  msgid "Display a title/page heading."
2938
  msgstr "Exibe um título / cabeçalho de página."
2939
 
2940
+ # @ fl-builder
2941
+ #: modules/heading/heading.php:16 modules/photo/photo.php:27
2942
+ #: modules/rich-text/rich-text.php:16 modules/separator/separator.php:16
 
2943
  #: modules/video/video.php:21
 
2944
  msgid "Basic Modules"
2945
  msgstr "Módulos Básicos"
2946
 
2947
+ # @ fl-builder
2948
  #: modules/heading/heading.php:101
 
2949
  msgid "HTML Tag"
2950
  msgstr "Tag HTML"
2951
 
2952
+ # @ fl-builder
2953
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
 
2954
  msgid "Custom Font Size"
2955
  msgstr "Tamanho Personalizado da Fonte"
2956
 
2957
+ # @ fl-builder
2958
  #: modules/heading/heading.php:137
 
2959
  msgid "Mobile Structure"
2960
  msgstr "Estrutura para Dispositivos Móveis"
2961
 
2962
+ # @ fl-builder
2963
  #: modules/heading/heading.php:158
 
2964
  msgid "Custom Alignment"
2965
  msgstr "Alinhamento Personalizado"
2966
 
2967
+ # @ fl-builder
2968
  #: modules/html/html.php:14
 
2969
  msgid "HTML"
2970
  msgstr ""
2971
 
2972
+ # @ fl-builder
2973
  #: modules/html/html.php:15
 
2974
  msgid "Display raw HTML code."
2975
  msgstr "Exibe código HTML bruto."
2976
 
2977
+ # @ fl-builder
 
 
 
 
2978
  #: modules/icon-group/icon-group.php:14
 
2979
  msgid "Icon Group"
2980
  msgstr "Grupo de Ícones"
2981
 
2982
+ # @ fl-builder
2983
  #: modules/icon-group/icon-group.php:15
 
2984
  msgid "Display a group of linked Font Awesome icons."
2985
  msgstr "Exibe um grupo de ícones da biblioteca Fonte Awesome, com links."
2986
 
2987
+ # @ fl-builder
2988
  #: modules/icon-group/icon-group.php:27
 
2989
  msgid "Icons"
2990
  msgstr "Ícones"
2991
 
2992
+ # @ fl-builder
2993
  #: modules/icon-group/icon-group.php:125
 
2994
  msgid "Add Icon"
2995
  msgstr "Adicionar Ícone"
2996
 
2997
+ # @ fl-builder
2998
+ #: modules/icon/icon.php:15
2999
+ msgid "Display an icon and optional title."
3000
+ msgstr "Exibe um ícone com um título opcional."
3001
+
3002
+ # @ fl-builder
3003
  #: modules/map/map.php:14
 
3004
  msgid "Map"
3005
  msgstr "Mapa"
3006
 
3007
+ # @ fl-builder
3008
  #: modules/map/map.php:15
 
3009
  msgid "Display a Google map."
3010
  msgstr "Exibe um Mapa do Google."
3011
 
3012
+ # @ fl-builder
3013
  #: modules/map/map.php:33
 
3014
  msgid "Address"
3015
  msgstr "Endereço"
3016
 
3017
+ # @ fl-builder
3018
  #: modules/map/map.php:34
 
3019
  msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
3020
  msgstr ""
3021
 
3022
+ # @ fl-builder
3023
  #: modules/photo/photo.php:26
 
3024
  msgid "Upload a photo or display one from the media library."
3025
  msgstr "Carregar uma foto ou exibir uma da biblioteca de mídia."
3026
 
3027
+ # @ fl-builder
3028
  #: modules/photo/photo.php:375
 
3029
  msgid "Photo Source"
3030
  msgstr "Origem da Foto"
3031
 
3032
+ # @ fl-builder
3033
+ #: modules/photo/photo.php:379 modules/photo/photo.php:451
 
3034
  msgid "URL"
3035
  msgstr ""
3036
 
3037
+ # @ fl-builder
3038
  #: modules/photo/photo.php:396
 
3039
  msgid "Photo URL"
3040
  msgstr "URL da Foto"
3041
 
3042
+ # @ fl-builder
3043
  #: modules/photo/photo.php:397
 
3044
  msgid "http://www.example.com/my-photo.jpg"
3045
  msgstr ""
3046
 
3047
+ # @ fl-builder
3048
  #: modules/photo/photo.php:404
 
3049
  msgctxt "Crop."
3050
  msgid "None"
3051
  msgstr "Nenhuma"
3052
 
3053
+ # @ fl-builder
3054
+ #: modules/photo/photo.php:425 modules/photo/photo.php:439
 
3055
  msgid "Caption"
3056
  msgstr "Legenda"
3057
 
3058
+ # @ fl-builder
3059
  #: modules/photo/photo.php:429
 
3060
  msgid "Show Caption"
3061
  msgstr "Mostrar Legenda"
3062
 
3063
+ # @ fl-builder
3064
  #: modules/photo/photo.php:448
 
3065
  msgid "Link Type"
3066
  msgstr "Tipo de Link"
3067
 
3068
+ # @ fl-builder
3069
  #: modules/photo/photo.php:450
 
3070
  msgctxt "Link type."
3071
  msgid "None"
3072
  msgstr "Nenhum"
3073
 
3074
+ # @ fl-builder
3075
  #: modules/photo/photo.php:453
 
3076
  msgid "Photo File"
3077
  msgstr "Arquivo da Foto"
3078
 
3079
+ # @ fl-builder
3080
+ #: modules/photo/photo.php:454
3081
+ msgid "Photo Page"
3082
+ msgstr "Página da Foto"
3083
+
3084
+ # @ fl-builder
3085
  #: modules/photo/photo.php:464
3086
+ msgid ""
3087
+ "Link type applies to how the image should be linked on click. You can choose "
3088
+ "a specific URL, the individual photo or a separate page with the photo."
3089
+ msgstr ""
3090
+ "\"Link\" é referente a como a imagem deve ser linkada quando for clicada. "
3091
+ "Você pode escolher uma URL específica, o arquivo da foto ou uma página com a "
3092
+ "foto."
3093
 
3094
+ # @ fl-builder
3095
+ #: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
 
3096
  msgid "Link URL"
3097
  msgstr "URL do Link"
3098
 
3099
+ # @ fl-builder
3100
  #: modules/post-grid/includes/frontend.php:41
 
3101
  msgid "No posts found."
3102
  msgstr "Nenhum post encontrado."
3103
 
3104
+ # @ fl-builder
3105
  #: modules/post-grid/includes/post-feed.php:14
3106
  #: modules/post-grid/includes/post-grid.php:24
3107
  #, php-format
 
3108
  msgctxt "%s stands for author name."
3109
  msgid "By %s"
3110
  msgstr "Por %s"
3111
 
3112
+ # @ fl-builder
3113
  #: modules/post-grid/post-grid.php:14
 
3114
  msgid "Posts"
3115
  msgstr ""
3116
 
3117
+ # @ fl-builder
3118
  #: modules/post-grid/post-grid.php:15
 
3119
  msgid "Display a grid of your WordPress posts."
3120
  msgstr "Exibe uma grade de seus post no WordPress."
3121
 
3122
+ # @ fl-builder
3123
  #: modules/post-grid/post-grid.php:51
 
3124
  msgid "Layout Style"
3125
  msgstr "Estilo de Layout"
3126
 
3127
+ # @ fl-builder
3128
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
 
3129
  msgid "Grid"
3130
  msgstr "Grade"
3131
 
3132
+ # @ fl-builder
3133
  #: modules/post-grid/post-grid.php:56
 
3134
  msgid "Feed"
3135
  msgstr ""
3136
 
3137
+ # @ fl-builder
3138
  #: modules/post-grid/post-grid.php:71
 
3139
  msgid "Pagination Style"
3140
  msgstr "Estilo de Paginação"
3141
 
3142
+ # @ fl-builder
3143
  #: modules/post-grid/post-grid.php:74
 
3144
  msgid "Numbers"
3145
  msgstr "Números"
3146
 
3147
+ # @ fl-builder
3148
  #: modules/post-grid/post-grid.php:76
 
3149
  msgctxt "Pagination style."
3150
  msgid "None"
3151
  msgstr "Nenhum"
3152
 
3153
+ # @ fl-builder
3154
  #: modules/post-grid/post-grid.php:81
 
3155
  msgid "Posts Per Page"
3156
  msgstr "Posts Por Página"
3157
 
3158
+ # @ fl-builder
3159
  #: modules/post-grid/post-grid.php:92
 
3160
  msgid "Post Width"
3161
  msgstr "Largura do Post"
3162
 
3163
+ # @ fl-builder
3164
  #: modules/post-grid/post-grid.php:100
 
3165
  msgid "Post Spacing"
3166
  msgstr "Espaçamento do Post"
3167
 
3168
+ # @ fl-builder
3169
  #: modules/post-grid/post-grid.php:109
 
3170
  msgid "Featured Image"
3171
  msgstr "Imagem Destacada"
3172
 
3173
+ # @ fl-builder
3174
+ #: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
3175
+ #: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
3176
+ #: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
 
 
 
3177
  msgid "Show"
3178
  msgstr "Mostrar"
3179
 
3180
+ # @ fl-builder
3181
+ #: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
3182
+ #: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
3183
+ #: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
 
 
 
3184
  msgid "Hide"
3185
  msgstr "Esconder"
3186
 
3187
+ # @ fl-builder
3188
  #: modules/post-grid/post-grid.php:130
 
3189
  msgid "Above Text"
3190
  msgstr "Acima do Texto"
3191
 
3192
+ # @ fl-builder
3193
  #: modules/post-grid/post-grid.php:131
 
3194
  msgid "Beside Text"
3195
  msgstr "Ao lado do Texto"
3196
 
3197
+ # @ fl-builder
3198
  #: modules/post-grid/post-grid.php:142
 
3199
  msgid "Post Info"
3200
  msgstr "Informações do Post"
3201
 
3202
+ # @ fl-builder
3203
  #: modules/post-grid/post-grid.php:169
 
3204
  msgid "Date Format"
3205
  msgstr "Formato da Data"
3206
 
3207
+ # @ fl-builder
3208
  #: modules/post-grid/post-grid.php:185
 
3209
  msgid "Comments"
3210
  msgstr "Comentários"
3211
 
3212
+ # @ fl-builder
3213
  #: modules/post-grid/post-grid.php:213
 
3214
  msgid "More Link"
3215
  msgstr "Link \"Leia Mais\""
3216
 
3217
+ # @ fl-builder
3218
  #: modules/post-grid/post-grid.php:227
 
3219
  msgid "More Link Text"
3220
  msgstr "texto do Link \"Leia Mais\""
3221
 
3222
+ # @ fl-builder
3223
  #: modules/post-grid/post-grid.php:228
 
3224
  msgid "Read More"
3225
  msgstr "Leia Mais"
3226
 
3227
+ # @ fl-builder
3228
  #: modules/pricing-table/pricing-table.php:14
 
3229
  msgid "Pricing Table"
3230
  msgstr "Tabela de Preços"
3231
 
3232
+ # @ fl-builder
3233
  #: modules/pricing-table/pricing-table.php:15
 
3234
  msgid "A simple pricing table generator."
3235
  msgstr "Um simples gerador de tabela de preços"
3236
 
3237
+ # @ fl-builder
3238
  #: modules/pricing-table/pricing-table.php:26
 
3239
  msgid "Pricing Boxes"
3240
  msgstr "Caixas de Preço"
3241
 
3242
+ # @ fl-builder
3243
  #: modules/pricing-table/pricing-table.php:33
 
3244
  msgid "Pricing Box"
3245
  msgstr "Caixa de Preço"
3246
 
3247
+ # @ fl-builder
3248
  #: modules/pricing-table/pricing-table.php:50
 
3249
  msgid "Box Spacing"
3250
  msgstr "Espaçamento da Caixa"
3251
 
3252
+ # @ fl-builder
3253
  #: modules/pricing-table/pricing-table.php:53
3254
  #: modules/testimonials/testimonials.php:40
 
3255
  msgid "Wide"
3256
  msgstr "Largo"
3257
 
3258
+ # @ fl-builder
3259
  #: modules/pricing-table/pricing-table.php:54
 
3260
  msgid "Tight"
3261
  msgstr "Estreito"
3262
 
3263
+ # @ fl-builder
3264
  #: modules/pricing-table/pricing-table.php:59
 
3265
  msgid "Features Min Height"
3266
  msgstr "Altura mínima das Funcionalidades"
3267
 
3268
+ # @ fl-builder
3269
  #: modules/pricing-table/pricing-table.php:63
3270
+ msgid ""
3271
+ "Use this to normalize the height of your boxes when they have different "
3272
+ "numbers of features."
3273
+ msgstr ""
3274
+ "Use esta configuração para normalizar a altura das suas caixas quando elas "
3275
+ "tem diferentes números de funcionalidades."
3276
 
3277
+ # @ fl-builder
3278
  #: modules/pricing-table/pricing-table.php:67
 
3279
  msgid "Border Size"
3280
  msgstr "Tamanho da Borda"
3281
 
3282
+ # @ fl-builder
3283
  #: modules/pricing-table/pricing-table.php:70
 
3284
  msgctxt "Border size."
3285
  msgid "Wide"
3286
  msgstr "Larga"
3287
 
3288
+ # @ fl-builder
3289
  #: modules/pricing-table/pricing-table.php:71
 
3290
  msgctxt "Border size."
3291
  msgid "Tight"
3292
  msgstr "Estreita"
3293
 
3294
+ # @ fl-builder
3295
  #: modules/pricing-table/pricing-table.php:84
 
3296
  msgid "Add Pricing Box"
3297
  msgstr "Adicionar Caixa de Preço"
3298
 
3299
+ # @ fl-builder
3300
  #: modules/pricing-table/pricing-table.php:98
 
3301
  msgid "Title Size"
3302
  msgstr "Tamanho do Título"
3303
 
3304
+ # @ fl-builder
3305
  #: modules/pricing-table/pricing-table.php:107
 
3306
  msgid "Price Box"
3307
  msgstr "Caixa de Preço"
3308
 
3309
+ # @ fl-builder
3310
  #: modules/pricing-table/pricing-table.php:111
 
3311
  msgid "Price"
3312
  msgstr "Preço"
3313
 
3314
+ # @ fl-builder
3315
  #: modules/pricing-table/pricing-table.php:115
 
3316
  msgid "Duration"
3317
  msgstr "Duração"
3318
 
3319
+ # @ fl-builder
3320
  #: modules/pricing-table/pricing-table.php:116
 
3321
  msgid "per Year"
3322
  msgstr "por Ano"
3323
 
3324
+ # @ fl-builder
3325
  #: modules/pricing-table/pricing-table.php:120
 
3326
  msgid "Price Size"
3327
  msgstr "Tamanho do Preço"
3328
 
3329
+ # @ fl-builder
3330
  #: modules/pricing-table/pricing-table.php:133
 
3331
  msgid "Button Text"
3332
  msgstr "Texto do Botão"
3333
 
3334
+ # @ fl-builder
3335
  #: modules/pricing-table/pricing-table.php:137
 
3336
  msgid "Button URL"
3337
  msgstr "URL do Botão"
3338
 
3339
+ # @ fl-builder
3340
  #: modules/pricing-table/pricing-table.php:142
 
3341
  msgctxt "Price features displayed in pricing box."
3342
  msgid "Features"
3343
  msgstr "Funcionalidades"
3344
 
3345
+ # @ fl-builder
3346
  #: modules/pricing-table/pricing-table.php:147
 
3347
  msgid "One feature per line. HTML is okay."
3348
  msgstr "Uma funcionalidade por linha. HTML é permitido."
3349
 
3350
+ # @ fl-builder
3351
  #: modules/pricing-table/pricing-table.php:162
 
3352
  msgid "Box Background"
3353
  msgstr "Fundo da Caixa"
3354
 
3355
+ # @ fl-builder
3356
  #: modules/pricing-table/pricing-table.php:167
 
3357
  msgid "Box Foreground"
3358
  msgstr "Exterior da Caixa"
3359
 
3360
+ # @ fl-builder
3361
  #: modules/pricing-table/pricing-table.php:173
 
3362
  msgid "Accent Color"
3363
  msgstr "Cor de realce"
3364
 
3365
+ # @ fl-builder
3366
  #: modules/pricing-table/pricing-table.php:178
 
3367
  msgid "Accent Text Color"
3368
  msgstr "Cor do Texto com realce"
3369
 
3370
+ # @ fl-builder
3371
  #: modules/pricing-table/pricing-table.php:182
 
3372
  msgid "Box Top Margin"
3373
  msgstr "Margem Superior da Caixa"
3374
 
3375
+ # @ fl-builder
3376
  #: modules/rich-text/rich-text.php:15
 
3377
  msgid "A WYSIWYG text editor."
3378
  msgstr "Um editor de texto WYSIWYG."
3379
 
3380
+ # @ fl-builder
3381
  #: modules/separator/separator.php:14
 
3382
  msgid "Separator"
3383
  msgstr "Separador"
3384
 
3385
+ # @ fl-builder
3386
  #: modules/separator/separator.php:15
 
3387
  msgid "A divider line to separate content."
3388
  msgstr "Uma linha divisória para separar conteúdo."
3389
 
3390
+ # @ fl-builder
3391
  #: modules/separator/separator.php:85
3392
+ msgid ""
3393
+ "The type of border to use. Double borders must have a height of at least 3px "
3394
+ "to render properly."
3395
+ msgstr ""
3396
+ "O tipo de borda a ser usado. Bordas duplas precisam ter uma altura de no "
3397
+ "mínimo 3px para renderizar adequadamente."
3398
 
3399
+ # @ fl-builder
3400
  #: modules/sidebar/includes/settings-general.php:5
3401
  #: modules/sidebar/sidebar.php:14
 
3402
  msgid "Sidebar"
3403
  msgstr "Barra Lateral"
3404
 
3405
+ # @ fl-builder
3406
  #: modules/sidebar/sidebar.php:15
3407
+ msgid ""
3408
+ "Display a WordPress sidebar that has been registered by the current theme."
3409
  msgstr "Exibe uma barra lateral do WordPress que foi registrata no tema atual."
3410
 
3411
+ # @ fl-builder
3412
  #: modules/slideshow/slideshow.php:14
 
3413
  msgid "Slideshow"
3414
  msgstr ""
3415
 
3416
+ # @ fl-builder
3417
  #: modules/slideshow/slideshow.php:15
 
3418
  msgid "Display multiple photos in a slideshow view."
3419
  msgstr "Exibe múltiplas fotos em um slideshow."
3420
 
3421
+ # @ fl-builder
3422
  #: modules/slideshow/slideshow.php:302
 
3423
  msgid "Skin Color"
3424
  msgstr "Tema de Cor"
3425
 
3426
+ # @ fl-builder
3427
  #: modules/slideshow/slideshow.php:305
 
3428
  msgctxt "Color."
3429
  msgid "Light"
3430
  msgstr "Claro"
3431
 
3432
+ # @ fl-builder
3433
  #: modules/slideshow/slideshow.php:306
 
3434
  msgctxt "Color."
3435
  msgid "Dark"
3436
  msgstr "Escuro"
3437
 
3438
+ # @ fl-builder
3439
  #: modules/slideshow/slideshow.php:308
3440
+ msgid ""
3441
+ "If your overall theme/images are lighter in color, light will display "
3442
+ "buttons in a darker color scheme and vice versa for dark."
3443
+ msgstr ""
3444
+ "Se a maioria das imagens ou do tema forem mais claras, a opção \"claro\" irá "
3445
+ "exibir botões em um tema de cor mais escuro, e vice versa para a opção "
3446
+ "\"escuro\"."
3447
 
3448
+ # @ fl-builder
3449
  #: modules/slideshow/slideshow.php:318
3450
+ msgid ""
3451
+ "Crop set to no will fit the slideshow images to the height you specify and "
3452
+ "keep the width proportional, whereas crop set to yes will fit the slideshow "
3453
+ "images to all sides of the content area while cropping the left and right to "
3454
+ "fit the height you specify."
3455
+ msgstr ""
3456
+ "Recorte configurado como \"não\" irá ajustar as imagens do slideshow à "
3457
+ "altura que você especificar e irá manter a largura proporcional, enquanto "
3458
+ "Recorte configurado como \"sim \" irá ajustar as imagens do slideshow a "
3459
+ "todos os slides da área de conteúdo, enquanto faz recortes na esquerda e na "
3460
+ "direita para ajustar-se à altura que você especificar."
3461
 
3462
+ # @ fl-builder
3463
  #: modules/slideshow/slideshow.php:322
 
3464
  msgid "Disable Right-Click"
3465
  msgstr "Desabilitar Botão Direto do Mouse"
3466
 
3467
+ # @ fl-builder
3468
  #: modules/slideshow/slideshow.php:342
 
3469
  msgctxt "Click action type."
3470
  msgid "None"
3471
  msgstr "Nenhum"
3472
 
3473
+ # @ fl-builder
3474
  #: modules/slideshow/slideshow.php:366
 
3475
  msgid "Playback"
3476
  msgstr ""
3477
 
3478
+ # @ fl-builder
3479
  #: modules/slideshow/slideshow.php:392
 
3480
  msgctxt "Slideshow transition."
3481
  msgid "None"
3482
  msgstr "Nenhum"
3483
 
3484
+ # @ fl-builder
3485
  #: modules/slideshow/slideshow.php:429
 
3486
  msgid "Controls"
3487
  msgstr "Controles"
3488
 
3489
+ # @ fl-builder
3490
+ #: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
 
3491
  msgid "Navigation Arrows"
3492
  msgstr "Setas de Navegação"
3493
 
3494
+ # @ fl-builder
3495
  #: modules/slideshow/slideshow.php:442
3496
+ msgid ""
3497
+ "Navigational arrows allow the visitor to freely move through the images in "
3498
+ "your slideshow. These are larger arrows that overlay your slideshow images "
3499
+ "and are separate from the control bar navigational arrows."
3500
+ msgstr ""
3501
+ "Setas de navegação permitem que o visitante alterne livremente entre as "
3502
+ "imagens de seu slideshow. Essas são setas maiores que sobrepõem suas imagens "
3503
+ "de slideshow e são separadas das setas de navegação da barra de controle."
3504
 
3505
+ # @ fl-builder
3506
  #: modules/slideshow/slideshow.php:447
 
3507
  msgid "Control Bar"
3508
  msgstr "Barra de Controle"
3509
 
3510
+ # @ fl-builder
3511
  #: modules/slideshow/slideshow.php:451
 
3512
  msgid "Nav Type"
3513
  msgstr "Tipo de Navegação"
3514
 
3515
+ # @ fl-builder
3516
  #: modules/slideshow/slideshow.php:454
 
3517
  msgctxt "Nav type."
3518
  msgid "None"
3519
  msgstr "Nenhum"
3520
 
3521
+ # @ fl-builder
3522
  #: modules/slideshow/slideshow.php:455
 
3523
  msgid "Buttons"
3524
  msgstr "Botões"
3525
 
3526
+ # @ fl-builder
3527
+ #: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
 
3528
  msgid "Thumbs"
3529
+ msgstr "Miniaturas"
3530
 
3531
+ # @ fl-builder
3532
  #: modules/slideshow/slideshow.php:471
 
3533
  msgid "Nav Position"
3534
  msgstr "Posição da Navegação"
3535
 
3536
+ # @ fl-builder
3537
  #: modules/slideshow/slideshow.php:481
 
3538
  msgid "Control Bar Buttons"
3539
  msgstr "Botões da Barra de Controle"
3540
 
3541
+ # @ fl-builder
3542
  #: modules/slideshow/slideshow.php:494
 
3543
  msgid "Play Button"
3544
  msgstr "Botão de Reprodução"
3545
 
3546
+ # @ fl-builder
3547
  #: modules/slideshow/slideshow.php:503
 
3548
  msgid "Fullscreen Button"
3549
  msgstr "Botão de Tela Cheia"
3550
 
3551
+ # @ fl-builder
3552
  #: modules/slideshow/slideshow.php:512
 
3553
  msgid "Photo Count"
3554
  msgstr "Contagem de Fotos"
3555
 
3556
+ # @ fl-builder
3557
  #: modules/slideshow/slideshow.php:521
 
3558
  msgid "Thumbs Button"
3559
  msgstr "Botão dos Thumbs"
3560
 
3561
+ # @ fl-builder
3562
  #: modules/slideshow/slideshow.php:530
 
3563
  msgid "Caption Button"
3564
  msgstr "Botão de Legenda"
3565
 
3566
+ # @ fl-builder
3567
  #: modules/slideshow/slideshow.php:539
 
3568
  msgid "Social Button"
3569
  msgstr "Botão Social"
3570
 
3571
+ # @ fl-builder
3572
  #: modules/slideshow/slideshow.php:549
 
3573
  msgid "Control Bar Overlay"
3574
  msgstr "Invólucro da Barra de Controle"
3575
 
3576
+ # @ fl-builder
3577
  #: modules/slideshow/slideshow.php:553
 
3578
  msgid "Overlay Enabled"
3579
  msgstr "Invólucro Ativado"
3580
 
3581
+ # @ fl-builder
3582
  #: modules/slideshow/slideshow.php:564
3583
+ msgid ""
3584
+ "Control bar overlay specifies if the control bar buttons you choose overlay "
3585
+ "your slideshow images or site below the slideshow completely."
3586
+ msgstr ""
3587
+ "Invólucro da barra de controle especifica se os botões da barra que você "
3588
+ "escolheu irão sobrebor as imagens do slideshow ou irão ficar completamente "
3589
+ "abaixo do slideshow."
3590
 
3591
+ # @ fl-builder
3592
  #: modules/slideshow/slideshow.php:568
 
3593
  msgid "Overlay Hide"
3594
  msgstr "Esconder Invólucro"
3595
 
3596
+ # @ fl-builder
3597
  #: modules/slideshow/slideshow.php:574
3598
+ msgid ""
3599
+ "Overlay hide will hide the control bar after however many seconds you "
3600
+ "specify below. They will reappear upon mouse over."
3601
+ msgstr ""
3602
+ "\"Esconder Invólucro\" irá esconder a barra de controle depois de quantos "
3603
+ "segundos você especificar abaixo. A barra irá reaparecer quando o mouse "
3604
+ "sobrepor o slideshow."
3605
 
3606
+ # @ fl-builder
3607
  #: modules/slideshow/slideshow.php:578
 
3608
  msgid "Overlay Hide Delay"
3609
  msgstr "Atraso para Esconder Invólucro"
3610
 
3611
+ # @ fl-builder
3612
  #: modules/slideshow/slideshow.php:590
 
3613
  msgid "Thumbs Size"
3614
  msgstr "Tamanho dos Thumbs"
3615
 
3616
+ # @ fl-builder
3617
  #: modules/slideshow/slideshow.php:599
 
3618
  msgid "Social"
3619
  msgstr ""
3620
 
3621
+ # @ fl-builder
3622
  #: modules/slideshow/slideshow.php:603
 
3623
  msgid "Facebook Button"
3624
  msgstr "Botão Facebook"
3625
 
3626
+ # @ fl-builder
3627
  #: modules/slideshow/slideshow.php:615
 
3628
  msgid "Twitter Button"
3629
  msgstr "Botão Twitter"
3630
 
3631
+ # @ fl-builder
3632
  #: modules/slideshow/slideshow.php:627
 
3633
  msgid "Google Plus Button"
3634
  msgstr "Botão Google Plus"
3635
 
3636
+ # @ fl-builder
3637
  #: modules/slideshow/slideshow.php:639
 
3638
  msgid "Pinterest Button"
3639
  msgstr "Botão Pinterest"
3640
 
3641
+ # @ fl-builder
3642
  #: modules/social-buttons/social-buttons.php:14
 
3643
  msgid "Social Buttons"
3644
  msgstr "Botões Sociais"
3645
 
3646
+ # @ fl-builder
3647
  #: modules/social-buttons/social-buttons.php:15
 
3648
  msgid "Displays social buttons."
3649
  msgstr "Exibe botões sociais."
3650
 
3651
+ # @ fl-builder
3652
  #: modules/social-buttons/social-buttons.php:71
 
3653
  msgid "Target URL"
3654
  msgstr "URL de Destino"
3655
 
3656
+ # @ fl-builder
3657
  #: modules/social-buttons/social-buttons.php:75
 
3658
  msgid "Current Page"
3659
  msgstr "Página Atual"
3660
 
3661
+ # @ fl-builder
3662
  #: modules/social-buttons/social-buttons.php:82
3663
+ msgid ""
3664
+ "The Target URL field correlates to the page you would like your social icons "
3665
+ "to interface with. For example, if you show Facebook, the user will \"Like\" "
3666
+ "whatever you put in this field."
3667
+ msgstr ""
3668
+ "O campo \"URL de Destino\" corresponde à página com que você quer que seus "
3669
+ "ícones de redes sociais se comuniquem. Por exemplo, se você escolher "
3670
+ "\"Exibir Facebook\", o usuário irá \"Curtir\" o que você inserir neste "
3671
+ "campo. "
3672
 
3673
+ # @ fl-builder
3674
  #: modules/social-buttons/social-buttons.php:89
 
3675
  msgid "Custom URL"
3676
  msgstr "URL Personalizada"
3677
 
3678
+ # @ fl-builder
3679
  #: modules/social-buttons/social-buttons.php:107
 
3680
  msgid "Show Facebook"
3681
  msgstr "Exibir Facebook"
3682
 
3683
+ # @ fl-builder
3684
  #: modules/social-buttons/social-buttons.php:116
 
3685
  msgid "Show Twitter"
3686
  msgstr "Exibir Twitter"
3687
 
3688
+ # @ fl-builder
3689
  #: modules/social-buttons/social-buttons.php:125
 
3690
  msgid "Show Google+"
3691
  msgstr "Exibir Google+"
3692
 
3693
+ # @ fl-builder
3694
  #: modules/tabs/tabs.php:14
 
3695
  msgid "Tabs"
3696
  msgstr "Abas"
3697
 
3698
+ # @ fl-builder
3699
  #: modules/tabs/tabs.php:15
 
3700
  msgid "Display a collection of tabbed content."
3701
  msgstr "Exibe uma coleção de conteúdo separado em abas."
3702
 
3703
+ # @ fl-builder
3704
  #: modules/tabs/tabs.php:55
 
3705
  msgid "Horizontal"
3706
  msgstr ""
3707
 
3708
+ # @ fl-builder
3709
  #: modules/tabs/tabs.php:56
 
3710
  msgid "Vertical"
3711
  msgstr ""
3712
 
3713
+ # @ fl-builder
3714
  #: modules/testimonials/testimonials.php:14
3715
  #: modules/testimonials/testimonials.php:60
3716
  #: modules/testimonials/testimonials.php:174
 
3717
  msgid "Testimonials"
3718
  msgstr "Depoimentos"
3719
 
3720
+ # @ fl-builder
3721
  #: modules/testimonials/testimonials.php:15
 
3722
  msgid "An animated tesimonials area."
3723
  msgstr "Uma área de depoimentos com animação."
3724
 
3725
+ # @ fl-builder
3726
  #: modules/testimonials/testimonials.php:41
 
3727
  msgid "Compact"
3728
  msgstr "Compacto"
3729
 
3730
+ # @ fl-builder
3731
  #: modules/testimonials/testimonials.php:51
 
3732
  msgid "Wide is for 1 column rows, compact is for multi-column rows."
3733
+ msgstr ""
3734
+ "\"Largo\" é para linhas de 1 coluna, \"compacto\" é para linhas com várias "
3735
+ "colunas."
3736
 
3737
+ # @ fl-builder
3738
  #: modules/testimonials/testimonials.php:78
 
3739
  msgid "Slider Settings"
3740
  msgstr "Configurações do Slider"
3741
 
3742
+ # @ fl-builder
3743
  #: modules/testimonials/testimonials.php:135
 
3744
  msgid "Arrow Color"
3745
  msgstr "Cor da Seta"
3746
 
3747
+ # @ fl-builder
3748
  #: modules/testimonials/testimonials.php:165
 
3749
  msgid "Dot Color"
3750
  msgstr "Cor do Ponto"
3751
 
3752
+ # @ fl-builder
3753
  #: modules/testimonials/testimonials.php:181
 
3754
  msgid "Testimonial"
3755
  msgstr "Depoimento"
3756
 
3757
+ # @ fl-builder
3758
  #: modules/testimonials/testimonials.php:197
 
3759
  msgid "Add Testimonial"
3760
  msgstr "Adicionar Depoimento"
3761
 
3762
+ # @ fl-builder
3763
  #: modules/video/video.php:20
 
3764
  msgid "Render a WordPress or embedable video."
3765
  msgstr "Renderiza um vídeo incorporado ou do WordPress."
3766
 
3767
+ # @ fl-builder
3768
  #: modules/video/video.php:83
 
3769
  msgid "Video Type"
3770
  msgstr "Tipo de Vídeo"
3771
 
3772
+ # @ fl-builder
3773
  #: modules/video/video.php:87
 
3774
  msgid "Embed"
3775
  msgstr "Incorporado"
3776
 
3777
+ # @ fl-builder
3778
  #: modules/video/video.php:104
 
3779
  msgctxt "Video preview/fallback image."
3780
  msgid "Poster"
3781
  msgstr ""
3782
 
3783
+ # @ fl-builder
3784
  #: modules/video/video.php:120
 
3785
  msgid "Loop"
3786
  msgstr ""
3787
 
3788
+ # @ fl-builder
3789
  #: modules/widget/includes/frontend.php:35
3790
  #: modules/widget/includes/settings-general.php:44
3791
  #, php-format
 
3792
  msgctxt "%s stands for widget slug."
3793
  msgid "%s no longer exists."
3794
+ msgstr "%s não existe mais."
3795
 
3796
+ # @ fl-builder
3797
  #: modules/widget/widget.php:14
 
3798
  msgid "Widget"
3799
  msgstr ""
3800
 
3801
+ # @ fl-builder
3802
  #: modules/widget/widget.php:15
 
3803
  msgid "Display a WordPress widget."
3804
  msgstr "Exibe um widget do WordPress."
3805
 
3806
+ # @ fl-builder
3807
  #: modules/woocommerce/woocommerce.php:16
 
3808
  msgid "WooCommerce"
3809
  msgstr ""
3810
 
3811
+ # @ fl-builder
3812
  #: modules/woocommerce/woocommerce.php:17
 
3813
  msgid "Display products or categories from your WooCommerce store."
3814
  msgstr "Exibe produtos ou categorias de sua loja do WooCommerce."
3815
 
3816
+ # @ fl-builder
3817
  #: modules/woocommerce/woocommerce.php:60
 
3818
  msgid "Choose..."
3819
  msgstr "Escolha..."
3820
 
3821
+ # @ fl-builder
3822
  #: modules/woocommerce/woocommerce.php:61
 
3823
  msgid "Single Product"
3824
  msgstr "Produto Simples"
3825
 
3826
+ # @ fl-builder
3827
  #: modules/woocommerce/woocommerce.php:62
3828
  #: modules/woocommerce/woocommerce.php:113
 
3829
  msgid "Multiple Products"
3830
  msgstr "Vários Produtos"
3831
 
3832
+ # @ fl-builder
3833
  #: modules/woocommerce/woocommerce.php:63
 
3834
  msgid "\"Add to Cart\" Button"
3835
  msgstr "Botão \"Adicionar ao Carrinho\""
3836
 
3837
+ # @ fl-builder
3838
  #: modules/woocommerce/woocommerce.php:64
 
3839
  msgid "Categories"
3840
  msgstr "Categorias"
3841
 
3842
+ # @ fl-builder
3843
  #: modules/woocommerce/woocommerce.php:65
 
3844
  msgid "Cart"
3845
  msgstr "Carrinho"
3846
 
3847
+ # @ fl-builder
3848
  #: modules/woocommerce/woocommerce.php:66
 
3849
  msgid "Checkout"
3850
  msgstr ""
3851
 
3852
+ # @ fl-builder
3853
  #: modules/woocommerce/woocommerce.php:67
 
3854
  msgid "Order Tracking"
3855
  msgstr "Rastreamento de Pedido"
3856
 
3857
+ # @ fl-builder
3858
  #: modules/woocommerce/woocommerce.php:68
 
3859
  msgid "My Account"
3860
  msgstr "Minha Conta"
3861
 
3862
+ # @ fl-builder
3863
  #: modules/woocommerce/woocommerce.php:87
 
3864
  msgid "Product ID"
3865
  msgstr "ID do Produto"
3866
 
3867
+ # @ fl-builder
3868
  #: modules/woocommerce/woocommerce.php:90
3869
+ msgid ""
3870
+ "As you add products in the WooCommerce Products area, each will be assigned "
3871
+ "a unique ID. You can find this unique product ID by visiting the Products "
3872
+ "area and rolling over the product. The unique ID will be the first attribute."
3873
+ msgstr ""
3874
+ "Conforme você adiciona produtos na área de Produtos no WooCommerce, cada um "
3875
+ "será salvo com um ID único. Você pode encontrar esse ID único visitando a "
3876
+ "área de Produtos e passando o mouse sobre o produto. O ID único será o "
3877
+ "primeiro atributo."
3878
 
3879
+ # @ fl-builder
3880
  #: modules/woocommerce/woocommerce.php:94
 
3881
  msgid "Parent Category ID"
3882
  msgstr "ID da Categoria Pai"
3883
 
3884
+ # @ fl-builder
3885
  #: modules/woocommerce/woocommerce.php:97
3886
+ msgid ""
3887
+ "As you add product categories in the WooCommerce Products area, each will be "
3888
+ "assigned a unique ID. This ID can be found by hovering on the category in "
3889
+ "the categories area under Products and looking in the URL that is displayed "
3890
+ "in your browser. The ID will be the only number value in the URL."
3891
+ msgstr ""
3892
+ "Conforme você adiciona categorias de produtos na área de Produtos no "
3893
+ "WooCommerce, cada uma será salva com um ID único. Você pode encontrar esse "
3894
+ "ID único passando o mouse sobre a categoria na área de categorias abaixo de "
3895
+ "Produtos, e observando a URL que é exibida no seu navegador. O ID único será "
3896
+ "único valor numérico na URL."
3897
 
3898
+ # @ fl-builder
3899
  #: modules/woocommerce/woocommerce.php:101
3900
  #: modules/woocommerce/woocommerce.php:172
 
3901
  msgid "Columns"
3902
  msgstr "Colunas"
3903
 
3904
+ # @ fl-builder
3905
  #: modules/woocommerce/woocommerce.php:117
 
3906
  msgid "Products Source"
3907
  msgstr "Origem dos Produtos"
3908
 
3909
+ # @ fl-builder
3910
  #: modules/woocommerce/woocommerce.php:120
 
3911
  msgid "Products IDs"
3912
  msgstr "IDs dos Produtos"
3913
 
3914
+ # @ fl-builder
3915
  #: modules/woocommerce/woocommerce.php:121
 
3916
  msgid "Product Category"
3917
  msgstr "Categoria de Produto"
3918
 
3919
+ # @ fl-builder
3920
  #: modules/woocommerce/woocommerce.php:122
 
3921
  msgid "Recent Products"
3922
  msgstr "Produtos Recentes"
3923
 
3924
+ # @ fl-builder
3925
  #: modules/woocommerce/woocommerce.php:123
 
3926
  msgid "Featured Products"
3927
  msgstr "Produtos em Destaque"
3928
 
3929
+ # @ fl-builder
3930
  #: modules/woocommerce/woocommerce.php:124
 
3931
  msgid "Sale Products"
3932
  msgstr "Produtos em Promoção"
3933
 
3934
+ # @ fl-builder
3935
  #: modules/woocommerce/woocommerce.php:125
 
3936
  msgid "Best Selling Products"
3937
  msgstr "Produtos Mais Vendidos"
3938
 
3939
+ # @ fl-builder
3940
  #: modules/woocommerce/woocommerce.php:126
 
3941
  msgid "Top Rated Products"
3942
  msgstr "Produtos mais bem votados"
3943
 
3944
+ # @ fl-builder
3945
  #: modules/woocommerce/woocommerce.php:154
 
3946
  msgid "Product IDs"
3947
  msgstr "IDs de Produto"
3948
 
3949
+ # @ fl-builder
3950
  #: modules/woocommerce/woocommerce.php:156
3951
+ msgid ""
3952
+ "As you add products in the WooCommerce Products area, each will be assigned "
3953
+ "a unique ID. You can find this unique product ID by visiting the Products "
3954
+ "area and rolling over the product. The unique ID will be the first attribute "
3955
+ "and you can add several here separated by a comma."
3956
+ msgstr ""
3957
+ "Conforme você adiciona produtos na área de Produtos no WooCommerce, cada um "
3958
+ "será salvo com um ID único. Você pode encontrar esse ID único de produto "
3959
+ "visitando passando o mouse sobre o produto. O ID único será o primeiro "
3960
+ "atributo, e vocë pode adicionar vários IDs aqui, separados por uma vírgula."
3961
 
3962
+ # @ fl-builder
3963
  #: modules/woocommerce/woocommerce.php:160
 
3964
  msgid "Category Slug"
3965
  msgstr "Slug de Categoria"
3966
 
3967
+ # @ fl-builder
3968
  #: modules/woocommerce/woocommerce.php:162
3969
+ msgid ""
3970
+ "As you add product categories in the WooCommerce Products area, each will be "
3971
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
3972
+ "found in the Categories area under WooCommerce Products. Several can be "
3973
+ "added here separated by a comma."
3974
+ msgstr ""
3975
+ "Conforme você adiciona categorias de produtos na área de Produtos no "
3976
+ "WooCommerce, cada uma será salva com um slug único, ou você pode editar e "
3977
+ "inserir um de sua preferência. Esses slugs podem ser encontrados na área de "
3978
+ "Categorias abaixo de Produtos. Vários podem ser adicionados aqui, separados "
3979
+ "por uma vírgula."
3980
 
3981
+ # @ fl-builder
3982
  #: modules/woocommerce/woocommerce.php:166
 
3983
  msgid "Number of Products"
3984
  msgstr "Número de Produtos"
3985
 
3986
+ # @ fl-builder
3987
  #: modules/woocommerce/woocommerce.php:183
 
3988
  msgid "Sort By"
3989
  msgstr "Ordenar Por"
3990
 
3991
+ # @ fl-builder
3992
  #: modules/woocommerce/woocommerce.php:186
 
3993
  msgctxt "Sort by."
3994
  msgid "Default"
3995
  msgstr "Padrão"
3996
 
3997
+ # @ fl-builder
3998
  #: modules/woocommerce/woocommerce.php:187
 
3999
  msgid "Popularity"
4000
  msgstr "Popularidade"
4001
 
4002
+ # @ fl-builder
4003
  #: modules/woocommerce/woocommerce.php:188
 
4004
  msgid "Rating"
4005
  msgstr "Votos"
4006
 
4007
+ # @ fl-builder
4008
  #: modules/woocommerce/woocommerce.php:190
 
4009
  msgid "Price: Low to High"
4010
  msgstr "Preço: mais baixo ao mais alto"
4011
 
4012
+ # @ fl-builder
4013
  #: modules/woocommerce/woocommerce.php:191
 
4014
  msgid "Price: High to Low"
4015
  msgstr "Preço: mais alto ao mais baixo"
4016
 
4017
+ #~ msgid "Error! You must have at least one icon set enabled."
4018
+ #~ msgstr "Erro! Você deve ter ao menos um conjunto de ícones habilitado."
4019
+
4020
+ #~ msgid "Error! Could not unzip file."
4021
+ #~ msgstr "Erro! Não foi possível descompactar o arquivo."
4022
+
4023
+ #~ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
4024
+ #~ msgstr ""
4025
+ #~ "Erro! Por favor, faça o upload de um conjunto de ícones vindos do Icomoon "
4026
+ #~ "ou Fontello."
4027
+
4028
+ # @ fl-builder
4029
+ #~ msgid "Save Branding"
4030
+ #~ msgstr "Salvar Branding"
4031
+
4032
+ # @ fl-builder
4033
+ #~ msgid "Save Editing Settings"
4034
+ #~ msgstr "Salvar Configurações de Edição"
4035
+
4036
+ # @ fl-builder
4037
+ #~ msgid "Save Module Settings"
4038
+ #~ msgstr "Salvar Configurações de Módulos"
4039
+
4040
+ # @ fl-builder
4041
+ #~ msgid "Save Post Types"
4042
+ #~ msgstr "Salvar Tipos de Post"
4043
+
4044
+ # @ fl-builder
4045
+ #~ msgid "Save Template Settings"
4046
+ #~ msgstr "Salvar Configurações de Templates"
4047
+
4048
+ # @ fl-builder
4049
+ #~ msgid "Start typing..."
4050
+ #~ msgstr "Comece a digitar..."
4051
+
4052
+ # @ fl-builder
4053
+ #~ msgid "What would you like to do?"
4054
+ #~ msgstr "O que vocë gostaria de fazer agora?"
4055
+
4056
+ # @ fl-builder
4057
+ #~ msgid "Change Template"
4058
+ #~ msgstr "Mudar Template"
4059
+
4060
+ # @ fl-builder
4061
+ #~ msgid ""
4062
+ #~ "Warning! Changing the template will replace your existing layout. Do you "
4063
+ #~ "really want to do this?"
4064
+ #~ msgstr ""
4065
+ #~ "Atenção! Mudar o template irá substituir seu layout existente. Você "
4066
+ #~ "realmente gostaria de fazer isso?"
4067
+
4068
+ # @ fl-builder
4069
+ #~ msgid "Column"
4070
+ #~ msgstr "Coluna"
4071
+
4072
+ # @ fl-builder
4073
+ #~ msgid ""
4074
+ #~ "Please select either a background layout or content layout before "
4075
+ #~ "submitting."
4076
+ #~ msgstr ""
4077
+ #~ "Por favor, selecione um layout de fundo ou de conteúdo antes de enviar."
4078
+
4079
+ # @ fl-builder
4080
+ #~ msgid "Do you really want to delete this item?"
4081
+ #~ msgstr "Você realmente deseja deletar este item?"
4082
+
4083
+ # @ fl-builder
4084
+ #~ msgid ""
4085
+ #~ "Do you really want to delete this module? All content data will be "
4086
+ #~ "permanently deleted."
4087
+ #~ msgstr ""
4088
+ #~ "Você realmente deseja deletar este módulo? Todo o seu conteúdo será "
4089
+ #~ "permanentemente deletado."
4090
+
4091
+ # @ fl-builder
4092
+ #~ msgid ""
4093
+ #~ "Do you really want to delete this row? All content data will be "
4094
+ #~ "permanently deleted."
4095
+ #~ msgstr ""
4096
+ #~ "Você realmente deseja deletar esta linha? Todo o seu conteúdo será "
4097
+ #~ "permanentemente deletado."
4098
+
4099
+ # @ fl-builder
4100
+ #~ msgid "Discard Draft"
4101
+ #~ msgstr "Descartar Rascunho"
4102
+
4103
+ # @ fl-builder
4104
+ #~ msgid ""
4105
+ #~ "Do you really want to discard this draft? All of your changes that are "
4106
+ #~ "not published will be lost."
4107
+ #~ msgstr ""
4108
+ #~ "Você realmente deseja descartar este rascunho? Todas as suas alterações "
4109
+ #~ "que não foram publicadas serão perdidas."
4110
+
4111
+ # @ fl-builder
4112
+ #~ msgid "Save Draft"
4113
+ #~ msgstr "Salvar Rascunho"
4114
+
4115
+ # @ fl-builder
4116
+ #~ msgid "Duplicate This Page"
4117
+ #~ msgstr "Duplicar Esta Página"
4118
+
4119
+ # @ fl-builder
4120
+ #~ msgid "Duplicate This Template"
4121
+ #~ msgstr "Duplicar Este Template"
4122
+
4123
+ # @ fl-builder
4124
+ #~ msgid "Edit Global Settings"
4125
+ #~ msgstr "Editar Configurações Globais"
4126
+
4127
+ # @ fl-builder
4128
+ #~ msgid "Drop a row layout or module to get started!"
4129
+ #~ msgstr "Arraste e solte um layout de linha ou um módulo para começar!"
4130
+
4131
+ # @ fl-builder
4132
+ #~ msgid "Full Size"
4133
+ #~ msgstr "Tamanho Completo"
4134
+
4135
+ # @ fl-builder
4136
+ #~ msgid "Insert"
4137
+ #~ msgstr "Inserir"
4138
+
4139
+ # @ fl-builder
4140
+ #~ msgid "Large"
4141
+ #~ msgstr "Grande"
4142
+
4143
+ # @ fl-builder
4144
+ #~ msgid "Manage Templates"
4145
+ #~ msgstr "Administrar Templates"
4146
+
4147
+ # @ fl-builder
4148
+ #~ msgid "Medium"
4149
+ #~ msgstr "Médio"
4150
+
4151
+ # @ fl-builder
4152
+ #~ msgid "Module"
4153
+ #~ msgstr "Módulo"
4154
+
4155
+ # @ fl-builder
4156
+ #~ msgid "Move"
4157
+ #~ msgstr "Mover"
4158
+
4159
+ # @ fl-builder
4160
+ #~ msgid "New Column"
4161
+ #~ msgstr "Nova Coluna"
4162
+
4163
+ # @ fl-builder
4164
+ #~ msgid "New Row"
4165
+ #~ msgstr "Nova Linha"
4166
+
4167
+ # @ fl-builder
4168
+ #~ msgid "No results found."
4169
+ #~ msgstr "Nenhum resultado encontrado."
4170
+
4171
+ # @ fl-builder
4172
+ #~ msgid "OK"
4173
+ #~ msgstr "OK"
4174
+
4175
+ # @ fl-builder
4176
+ #~ msgid "Photo Selected"
4177
+ #~ msgstr "Foto Selecionada"
4178
+
4179
+ # @ fl-builder
4180
+ #~ msgid "Photos Selected"
4181
+ #~ msgstr "Fotos Selecionadas"
4182
+
4183
+ # @ fl-builder
4184
+ #~ msgid "Publish Changes"
4185
+ #~ msgstr "Publicar Alterações"
4186
+
4187
+ # @ fl-builder
4188
+ #~ msgid "Row"
4189
+ #~ msgstr "Linha"
4190
+
4191
+ # @ fl-builder
4192
+ #~ msgid "Save Core Template"
4193
+ #~ msgstr "Salvar Template do Plugin"
4194
+
4195
+ # @ fl-builder
4196
+ #~ msgid "Select Photos"
4197
+ #~ msgstr "Selecionar Fotos"
4198
+
4199
+ # @ fl-builder
4200
+ #~ msgid "Append New Layout"
4201
+ #~ msgstr "Anexar Novo Layout"
4202
+
4203
+ # @ fl-builder
4204
+ #~ msgid "Replace Existing Layout"
4205
+ #~ msgstr "Substituir Layout Existente"
4206
+
4207
+ # @ fl-builder
4208
+ #~ msgid "Template Saved!"
4209
+ #~ msgstr "Template Salvo!"
4210
+
4211
+ # @ fl-builder
4212
+ #~ msgid ""
4213
+ #~ "The settings you are currently editing will not be saved if you navigate "
4214
+ #~ "away from this page."
4215
+ #~ msgstr ""
4216
+ #~ "As configurações que você está atualmente editando não serão salvas se "
4217
+ #~ "você sair desta página."
4218
+
4219
+ # @ fl-builder
4220
+ #~ msgid "Save Subscription Settings"
4221
+ #~ msgstr "Salva Configurações de Inscrição"
4222
+
4223
+ # @ fl-builder
4224
+ #~ msgid "Your name"
4225
+ #~ msgstr "Seu nome"
4226
+
4227
+ # @ fl-builder
4228
+ #~ msgid "Your email"
4229
+ #~ msgstr "Seu email"
4230
+
4231
+ # @ fl-builder
4232
+ #~ msgid "Your message"
4233
+ #~ msgstr "Sua mensagem"
4234
+
4235
+ # @ fl-builder
4236
+ #~ msgid "Send"
4237
+ #~ msgstr "Enviar"