WordPress Page Builder – Beaver Builder - Version 1.6.1.1

Version Description

Download this release

Release Info

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

Code changes from version 1.6.0.1 to 1.6.1.1

changelog.txt CHANGED
@@ -1,3 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <h4>1.6.0.1 - 06/28/2015</h4>
2
  <p><strong>Enhancements</strong></p>
3
  <ul>
1
+ <h4>1.6.1.1 - 08/11/2015</h4>
2
+ <p><strong>Enhancements</strong></p>
3
+ <ul>
4
+ <li>Tested WordPress 4.3 compatibility.</li>
5
+ <li>Updated translation files.</li>
6
+ <li>The CSS class fl-scroll-link can now be added to links to have them scroll to an element on the page.</li>
7
+ </ul>
8
+ <p><strong>Bug Fixes</strong></p>
9
+ <ul>
10
+ <li>Fixed a bug with toggling settings tabs in the Posts module.</li>
11
+ <li>Fixed a bug with images in the Posts module gallery layout getting stretched on mobile.</li>
12
+ </ul>
13
+
14
+ <h4>1.6.1 - 08/03/2015</h4>
15
+ <p><strong>Enhancements</strong></p>
16
+ <ul>
17
+ <li>Added the Posts Carousel module.</li>
18
+ <li>Added the Posts Slider module.</li>
19
+ <li>Added style options to the Posts module gallery layout.</li>
20
+ <li>The builder is now compatible with scheduled posts.</li>
21
+ <li>The fullscreen slideshow button now shows at smaller sizes.</li>
22
+ </ul>
23
+ <p><strong>Bug Fixes</strong></p>
24
+ <ul>
25
+ <li>Fixed a bug with row margins not working when a slideshow or video background is present.</li>
26
+ </ul>
27
+
28
+ <h4>1.6.0.3 - 07/21/2015</h4>
29
+ <p><strong>Bug Fixes</strong></p>
30
+ <ul>
31
+ <li>Fixed a bug with the fl_builder_global_posts filter not returning all posts.</li>
32
+ <li>Fixed a bug with all checkboxes being checked in some widgets when saving.</li>
33
+ <li>Fixed a bug with floating content breaking out of tabs.</li>
34
+ <li>Fixed a bug with autosuggest fields breaking when posts have special characters in the title.</li>
35
+ </ul>
36
+
37
+ <h4>1.6.0.2 - 07/08/2015</h4>
38
+ <p><strong>Enhancements</strong></p>
39
+ <ul>
40
+ <li>Added support for comma separated selectors in CSS preview fields.</li>
41
+ <li>Added support for an array of rules in CSS preview fields.</li>
42
+ </ul>
43
+ <p><strong>Bug Fixes</strong></p>
44
+ <ul>
45
+ <li>Added exclude_from_search for the templates post type so templates don't so in searches.</li>
46
+ <li>Fixed a bug with nested modules such as buttons causing errors when they are disabled using fl_builder_register_module.</li>
47
+ <li>Fixed a bug with slideshow and gallery templates.</li>
48
+ <li>Fixed a bug with the Posts module that made it so two on the same page couldn't have different post widths.</li>
49
+ <li>Fixed a bug that prevented two accordions on the same page from having open sections at the same time.</li>
50
+ <li>Fixed a bug causing the Facebook comments popup in the Social Buttons module from showing.</li>
51
+ </ul>
52
+
53
  <h4>1.6.0.1 - 06/28/2015</h4>
54
  <p><strong>Enhancements</strong></p>
55
  <ul>
classes/class-fl-builder-auto-suggest.php CHANGED
@@ -91,7 +91,7 @@ final class FLBuilderAutoSuggest {
91
  {
92
  global $wpdb;
93
 
94
- $like = urldecode( $_REQUEST['fl_as_query'] );
95
 
96
  if ( method_exists( $wpdb, 'esc_like' ) ) {
97
  $like = esc_sql( $wpdb->esc_like( $like ) );
@@ -149,7 +149,7 @@ final class FLBuilderAutoSuggest {
149
  $posts = $wpdb->get_results("SELECT ID, post_title FROM {$wpdb->posts} WHERE ID IN ({$ids})");
150
 
151
  foreach($posts as $post) {
152
- $data[] = array('name' => $post->post_title, 'value' => $post->ID);
153
  }
154
  }
155
 
@@ -198,7 +198,7 @@ final class FLBuilderAutoSuggest {
198
  ));
199
 
200
  foreach($cats as $cat) {
201
- $data[] = array('name' => $cat->name, 'value' => $cat->term_id);
202
  }
203
  }
204
 
91
  {
92
  global $wpdb;
93
 
94
+ $like = stripslashes( urldecode( $_REQUEST['fl_as_query'] ) );
95
 
96
  if ( method_exists( $wpdb, 'esc_like' ) ) {
97
  $like = esc_sql( $wpdb->esc_like( $like ) );
149
  $posts = $wpdb->get_results("SELECT ID, post_title FROM {$wpdb->posts} WHERE ID IN ({$ids})");
150
 
151
  foreach($posts as $post) {
152
+ $data[] = array('name' => esc_attr( $post->post_title ), 'value' => $post->ID);
153
  }
154
  }
155
 
198
  ));
199
 
200
  foreach($cats as $cat) {
201
+ $data[] = array('name' => esc_attr( $cat->name ), 'value' => $cat->term_id);
202
  }
203
  }
204
 
classes/class-fl-builder-loop.php CHANGED
@@ -23,6 +23,7 @@ final class FLBuilderLoop {
23
  $order = empty($settings->order) ? 'DESC' : $settings->order;
24
  $users = empty($settings->users) ? '' : $settings->users;
25
  $paged = is_front_page() ? get_query_var('page') : get_query_var('paged');
 
26
 
27
  // Get the offset.
28
  if ( ! isset( $settings->offset ) || ! is_int( ( int )$settings->offset ) ) {
@@ -52,7 +53,8 @@ final class FLBuilderLoop {
52
  'ignore_sticky_posts' => true,
53
  'offset' => $paged_offset,
54
  'fl_original_offset' => $offset,
55
- 'fl_builder_loop' => true
 
56
  );
57
 
58
  // Build the taxonomy query.
23
  $order = empty($settings->order) ? 'DESC' : $settings->order;
24
  $users = empty($settings->users) ? '' : $settings->users;
25
  $paged = is_front_page() ? get_query_var('page') : get_query_var('paged');
26
+ $fields = empty($settings->fields) ? '' : $settings->fields;
27
 
28
  // Get the offset.
29
  if ( ! isset( $settings->offset ) || ! is_int( ( int )$settings->offset ) ) {
53
  'ignore_sticky_posts' => true,
54
  'offset' => $paged_offset,
55
  'fl_original_offset' => $offset,
56
+ 'fl_builder_loop' => true,
57
+ 'fields' => $fields
58
  );
59
 
60
  // Build the taxonomy query.
classes/class-fl-builder-model.php CHANGED
@@ -1617,19 +1617,15 @@ final class FLBuilderModel {
1617
  return;
1618
  }
1619
 
1620
- // See if the module is enabled or not.
1621
- $enabled = apply_filters( 'fl_builder_register_module', $instance->enabled, $instance );
1622
-
1623
- // Only register modules that are enabled.
1624
- if( $enabled ) {
1625
-
1626
- // Save the instance in the modules array.
1627
- self::$modules[$instance->slug] = $instance;
1628
 
1629
- // Add the form to the instance.
1630
- self::$modules[$instance->slug]->form = $form;
1631
- self::$modules[$instance->slug]->form['advanced'] = self::$settings_forms['module_advanced'];
1632
- }
1633
  }
1634
  }
1635
 
@@ -1643,9 +1639,17 @@ final class FLBuilderModel {
1643
  {
1644
  $default = array_keys( self::$modules );
1645
  $default[] = 'all';
1646
- $value = self::get_admin_settings_option( '_fl_builder_enabled_modules', true );
 
 
 
 
 
 
 
 
1647
 
1648
- return ( ! $value || in_array( 'all', $value ) ) ? $default : $value;
1649
  }
1650
 
1651
  /**
@@ -1675,7 +1679,10 @@ final class FLBuilderModel {
1675
  // Build the categories array.
1676
  foreach(self::$modules as $module) {
1677
 
1678
- if(!in_array($module->slug, $enabled_modules) && !$show_disabled) {
 
 
 
1679
  continue;
1680
  }
1681
  else if($module->slug == 'widget') {
@@ -2583,9 +2590,10 @@ final class FLBuilderModel {
2583
  * Saves layout data when a user chooses to publish.
2584
  *
2585
  * @since 1.0
 
2586
  * @return void
2587
  */
2588
- static public function save_layout()
2589
  {
2590
  $editor_content = FLBuilder::render_editor_content();
2591
  $post_id = self::get_post_id();
@@ -2605,8 +2613,12 @@ final class FLBuilderModel {
2605
 
2606
  // Get the post status.
2607
  $post_status = get_post_status($post_id);
2608
- $post_status = strstr($post_status, 'draft') ? 'publish' : $post_status;
2609
-
 
 
 
 
2610
  // Update the post with stripped down content.
2611
  wp_update_post(array(
2612
  'ID' => self::get_post_id(),
@@ -2615,6 +2627,26 @@ final class FLBuilderModel {
2615
  ));
2616
  }
2617
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2618
  /**
2619
  * Duplicates a layout for WPML when the copy from original
2620
  * button has been clicked.
1617
  return;
1618
  }
1619
 
1620
+ // Filter the enabled flag.
1621
+ $instance->enabled = apply_filters( 'fl_builder_register_module', $instance->enabled, $instance );
1622
+
1623
+ // Save the instance in the modules array.
1624
+ self::$modules[$instance->slug] = $instance;
 
 
 
1625
 
1626
+ // Add the form to the instance.
1627
+ self::$modules[$instance->slug]->form = $form;
1628
+ self::$modules[$instance->slug]->form['advanced'] = self::$settings_forms['module_advanced'];
 
1629
  }
1630
  }
1631
 
1639
  {
1640
  $default = array_keys( self::$modules );
1641
  $default[] = 'all';
1642
+ $setting = self::get_admin_settings_option( '_fl_builder_enabled_modules', true );
1643
+ $setting = ( ! $setting || in_array( 'all', $setting ) ) ? $default : $setting;
1644
+
1645
+ foreach ( self::$modules as $module_slug => $module ) {
1646
+ if ( ! $module->enabled && in_array( $module_slug, $setting ) ) {
1647
+ $key = array_search( $module_slug, $setting );
1648
+ unset( $setting[ $key ] );
1649
+ }
1650
+ }
1651
 
1652
+ return $setting;
1653
  }
1654
 
1655
  /**
1679
  // Build the categories array.
1680
  foreach(self::$modules as $module) {
1681
 
1682
+ if ( ! $module->enabled ) {
1683
+ continue;
1684
+ }
1685
+ else if(!in_array($module->slug, $enabled_modules) && !$show_disabled) {
1686
  continue;
1687
  }
1688
  else if($module->slug == 'widget') {
2590
  * Saves layout data when a user chooses to publish.
2591
  *
2592
  * @since 1.0
2593
+ * @param bool $publish Whether to publish the parent post or not.
2594
  * @return void
2595
  */
2596
+ static public function save_layout( $publish = true )
2597
  {
2598
  $editor_content = FLBuilder::render_editor_content();
2599
  $post_id = self::get_post_id();
2613
 
2614
  // Get the post status.
2615
  $post_status = get_post_status($post_id);
2616
+
2617
+ // Publish the post?
2618
+ if ( $publish ) {
2619
+ $post_status = strstr($post_status, 'draft') ? 'publish' : $post_status;
2620
+ }
2621
+
2622
  // Update the post with stripped down content.
2623
  wp_update_post(array(
2624
  'ID' => self::get_post_id(),
2627
  ));
2628
  }
2629
 
2630
+ /**
2631
+ * Publishes the current builder layout only if the parent post
2632
+ * is still a draft. The layout will be published but the parent
2633
+ * post will remain a draft so the post can be scheduled and the
2634
+ * layout can be viewed while the builder is not active. If the
2635
+ * parent post is already published, nothing happens.
2636
+ *
2637
+ * @since 1.6.1
2638
+ * @return void
2639
+ */
2640
+ static public function save_draft()
2641
+ {
2642
+ $post_id = self::get_post_id();
2643
+ $post_status = get_post_status( $post_id );
2644
+
2645
+ if ( strstr( $post_status, 'draft' ) ) {
2646
+ self::save_layout( false );
2647
+ }
2648
+ }
2649
+
2650
  /**
2651
  * Duplicates a layout for WPML when the copy from original
2652
  * button has been clicked.
classes/class-fl-builder.php CHANGED
@@ -321,7 +321,11 @@ final class FLBuilder {
321
 
322
  if(count($post_ids) > 0) {
323
 
324
- $posts = get_posts(array('post__in' => $post_ids, 'post_type' => 'any'));
 
 
 
 
325
 
326
  foreach($posts as $post) {
327
  self::enqueue_layout_styles_scripts($post->ID);
@@ -935,7 +939,8 @@ final class FLBuilder {
935
  'taxonomies' => array(
936
  'fl-builder-template-category'
937
  ),
938
- 'publicly_queryable' => true
 
939
  ) );
940
 
941
  // Register the template taxonomy.
@@ -1578,13 +1583,6 @@ final class FLBuilder {
1578
 
1579
  // Instance row padding
1580
  $css .= self::render_row_padding($row);
1581
-
1582
- // Instance row bg positions
1583
- $css .= self::render_row_bg_positions($row);
1584
-
1585
- if ( ! isset( $global_settings->auto_spacing ) || $global_settings->auto_spacing ) {
1586
- $css .= self::render_responsive_row_bg_positions($row);
1587
- }
1588
  }
1589
 
1590
  // Column instances
@@ -1727,108 +1725,6 @@ final class FLBuilder {
1727
  return $css;
1728
  }
1729
 
1730
- /**
1731
- * Renders the CSS positions for a row's backgrounds.
1732
- *
1733
- * @since 1.0
1734
- * @param object $row A row node object.
1735
- * @return string The row CSS positions string.
1736
- */
1737
- static public function render_row_bg_positions($row)
1738
- {
1739
- $settings = $row->settings;
1740
- $positions = '';
1741
- $css = '';
1742
- $top = 0;
1743
- $bottom = 0;
1744
- $left = 0;
1745
- $right = 0;
1746
-
1747
- // Margins
1748
- if($settings->margin_top != '') {
1749
- $top += (int)$settings->margin_top;
1750
- }
1751
- if($settings->margin_bottom != '') {
1752
- $bottom += (int)$settings->margin_bottom;
1753
- }
1754
- if($settings->margin_left != '') {
1755
- $left += (int)$settings->margin_left;
1756
- }
1757
- if($settings->margin_right != '') {
1758
- $right += (int)$settings->margin_right;
1759
- }
1760
-
1761
- // Borders
1762
- if($settings->border_type != '') {
1763
-
1764
- if($settings->border_top != '') {
1765
- $top += (int)$settings->border_top;
1766
- }
1767
- if($settings->border_bottom != '') {
1768
- $bottom += (int)$settings->border_bottom;
1769
- }
1770
- if($settings->border_left != '') {
1771
- $left += (int)$settings->border_left;
1772
- }
1773
- if($settings->border_right != '') {
1774
- $right += (int)$settings->border_right;
1775
- }
1776
- }
1777
-
1778
- // CSS
1779
- if($top > 0) {
1780
- $positions .= 'top:' . $top . 'px;';
1781
- }
1782
- if($bottom > 0) {
1783
- $positions .= 'bottom:' . $bottom . 'px;';
1784
- }
1785
- if($left > 0) {
1786
- $positions .= 'left:' . $left . 'px;';
1787
- }
1788
- if($right > 0) {
1789
- $positions .= 'right:' . $right . 'px;';
1790
- }
1791
- if($positions != '') {
1792
- $css .= '.fl-node-' . $row->node . ' .fl-bg-video {' . $positions . '}';
1793
- $css .= '.fl-node-' . $row->node . ' .fl-bg-slideshow {' . $positions . '}';
1794
- }
1795
-
1796
- return $css;
1797
- }
1798
-
1799
- /**
1800
- * Renders the responsive CSS positions for a row's backgrounds.
1801
- *
1802
- * @since 1.0
1803
- * @param object $row A row node object.
1804
- * @return string The row CSS positions string.
1805
- */
1806
- static public function render_responsive_row_bg_positions($row)
1807
- {
1808
- $global_settings = FLBuilderModel::get_global_settings();
1809
- $settings = $row->settings;
1810
- $positions = '';
1811
- $css = '';
1812
-
1813
- if ($settings->border_type != '') {
1814
-
1815
- if($settings->border_top != '') {
1816
- $positions .= 'top:' . $settings->border_top . 'px;';
1817
- }
1818
- if($settings->border_bottom != '') {
1819
- $positions .= 'bottom:' . $settings->border_bottom . 'px;';
1820
- }
1821
- if($positions != '') {
1822
- $css .= '@media (max-width: '. $global_settings->responsive_breakpoint .'px) { ';
1823
- $css .= '.fl-node-' . $row->node . ' .fl-bg-video {' . $positions . '}';
1824
- $css .= '.fl-node-' . $row->node . ' .fl-bg-slideshow {' . $positions . '}';
1825
- $css .= ' }';
1826
- }
1827
- }
1828
-
1829
- return $css;
1830
- }
1831
-
1832
  /**
1833
  * Renders the CSS margins for a column.
1834
  *
321
 
322
  if(count($post_ids) > 0) {
323
 
324
+ $posts = get_posts(array(
325
+ 'post__in' => $post_ids,
326
+ 'post_type' => 'any',
327
+ 'posts_per_page' => -1
328
+ ));
329
 
330
  foreach($posts as $post) {
331
  self::enqueue_layout_styles_scripts($post->ID);
939
  'taxonomies' => array(
940
  'fl-builder-template-category'
941
  ),
942
+ 'publicly_queryable' => true,
943
+ 'exclude_from_search' => true
944
  ) );
945
 
946
  // Register the template taxonomy.
1583
 
1584
  // Instance row padding
1585
  $css .= self::render_row_padding($row);
 
 
 
 
 
 
 
1586
  }
1587
 
1588
  // Column instances
1725
  return $css;
1726
  }
1727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1728
  /**
1729
  * Renders the CSS margins for a column.
1730
  *
css/fl-builder-layout.css CHANGED
@@ -75,6 +75,9 @@
75
  margin-left: auto;
76
  margin-right: auto;
77
  }
 
 
 
78
 
79
  /* Photo Bg */
80
  .fl-builder-touch .fl-row-bg-photo .fl-row-content-wrap {
@@ -136,9 +139,6 @@
136
  }
137
 
138
  /* Row Bg Overlay */
139
- .fl-row-bg-overlay .fl-row-content-wrap {
140
- position: relative;
141
- }
142
  .fl-row-bg-overlay .fl-row-content-wrap:after {
143
  content: '';
144
  display: block;
75
  margin-left: auto;
76
  margin-right: auto;
77
  }
78
+ .fl-row-content-wrap {
79
+ position: relative;
80
+ }
81
 
82
  /* Photo Bg */
83
  .fl-builder-touch .fl-row-bg-photo .fl-row-content-wrap {
139
  }
140
 
141
  /* Row Bg Overlay */
 
 
 
142
  .fl-row-bg-overlay .fl-row-content-wrap:after {
143
  content: '';
144
  display: block;
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.6.0.1
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.6.0.1');
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.6.1.1
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.6.1.1');
15
  define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
16
  define('FL_BUILDER_URL', plugins_url('/', __FILE__));
17
  define('FL_BUILDER_LITE', true);
img/svg/arrow-left.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
2
+ <path d="M398.572,104.287L246.857,256.001l151.715,151.714c3.617,3.618,5.428,7.904,5.428,12.856c0,4.953-1.811,9.238-5.428,12.857 l-47.428,47.428c-3.619,3.619-7.904,5.428-12.857,5.428s-9.238-1.809-12.857-5.428l-212-212c-3.619-3.618-5.428-7.904-5.428-12.856 c0-4.953,1.81-9.238,5.428-12.857l212-212c3.619-3.618,7.904-5.428,12.857-5.428s9.238,1.81,12.857,5.428l47.428,47.429 C402.189,82.19,404,86.476,404,91.428c0,4.953-1.811,9.238-5.428,12.857V104.287z"/>
3
+ </svg>
img/svg/arrow-right.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
2
+ <path d="M113.428,407.713l151.715-151.714L113.428,104.285c-3.617-3.618-5.428-7.904-5.428-12.856c0-4.953,1.811-9.238,5.428-12.857 l47.428-47.428c3.619-3.619,7.904-5.428,12.857-5.428s9.238,1.809,12.857,5.428l212,212c3.619,3.618,5.429,7.904,5.429,12.856 c0,4.953-1.81,9.238-5.429,12.857l-212,212c-3.619,3.618-7.904,5.428-12.857,5.428s-9.238-1.81-12.857-5.428l-47.428-47.429 c-3.617-3.618-5.428-7.904-5.428-12.856c0-4.953,1.811-9.238,5.428-12.857V407.713z"/>
3
+ </svg>
img/svg/pause.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" viewBox="0 0 512 512" class="pause">
2
+ <path fill="#000000" d="M438.857 54.857v402.286q0 7.428-5.428 12.857t-12.857 5.428h-146.286q-7.428 0-12.857-5.428t-5.428-12.857v-402.286q0-7.428 5.428-12.857t12.857-5.428h146.286q7.428 0 12.857 5.428t5.428 12.857zM182.857 54.857v402.286q0 7.428-5.429 12.857t-12.857 5.428h-146.286q-7.428 0-12.857-5.428t-5.428-12.857v-402.286q0-7.428 5.428-12.857t12.857-5.428h146.286q7.429 0 12.857 5.428t5.428 12.857z"></path>
3
+ </svg>
img/svg/play.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="403" height="512" viewBox="0 0 403 512" class="play">
2
+ <path d="M395.428 264.857l-379.428 210.857q-6.572 3.714-11.286 0.857t-4.715-10.286v-420.572q0-7.428 4.715-10.285t11.286 0.857l379.428 210.857q6.572 3.714 6.572 8.857t-6.572 8.857z"></path>
3
+ </svg>
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.6.0.1',
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.6.1.1',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
includes/updater/includes/form.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  <?php if(!$status) : ?>
4
  <p style="padding:10px 20px; background: #d54e21; color: #fff;">
5
- <?php _e('UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable automatic updates.', 'fl-builder'); ?>
6
  &nbsp;<a style="color: #fff;" href="<?php echo FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => 'settings-page' ) ); ?>" target="_blank"><?php _e('Subscribe Now', 'fl-builder'); ?> &raquo;</a>
7
  </p>
8
  <?php endif; ?>
@@ -24,7 +24,7 @@
24
  <?php endif; ?>
25
 
26
  <p>
27
- <?php echo sprintf( __( 'Enter your <a%s>licence key</a> to enable remote updates and support.', 'fl-builder' ), ' href="https://www.wpbeaverbuilder.com/my-account/?utm_source=external&utm_medium=builder&utm_campaign=settings-page" target="_blank"' ) ?>
28
  </p>
29
  <?php if(is_multisite()) : ?>
30
  <p>
2
 
3
  <?php if(!$status) : ?>
4
  <p style="padding:10px 20px; background: #d54e21; color: #fff;">
5
+ <?php _e('UPDATES UNAVAILABLE! Please subscribe or enter your license key below to enable automatic updates.', 'fl-builder'); ?>
6
  &nbsp;<a style="color: #fff;" href="<?php echo FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => 'settings-page' ) ); ?>" target="_blank"><?php _e('Subscribe Now', 'fl-builder'); ?> &raquo;</a>
7
  </p>
8
  <?php endif; ?>
24
  <?php endif; ?>
25
 
26
  <p>
27
+ <?php echo sprintf( __( 'Enter your <a%s>license key</a> to enable remote updates and support.', 'fl-builder' ), ' href="https://www.wpbeaverbuilder.com/my-account/?utm_source=external&utm_medium=builder&utm_campaign=settings-page" target="_blank"' ) ?>
28
  </p>
29
  <?php if(is_multisite()) : ?>
30
  <p>
js/fl-builder-layout.js CHANGED
@@ -376,7 +376,7 @@
376
  element = $( '#' + id );
377
 
378
  if ( element.length > 0 ) {
379
- if ( element.hasClass( 'fl-row' ) || element.hasClass( 'fl-col' ) || element.hasClass( 'fl-module' ) ) {
380
  $( link ).on( 'click', FLBuilderLayout._scrollToElementOnLinkClick );
381
  }
382
  if ( element.hasClass( 'fl-accordion-item' ) ) {
376
  element = $( '#' + id );
377
 
378
  if ( element.length > 0 ) {
379
+ if ( link.hasClass( 'fl-scroll-link' ) || element.hasClass( 'fl-row' ) || element.hasClass( 'fl-col' ) || element.hasClass( 'fl-module' ) ) {
380
  $( link ).on( 'click', FLBuilderLayout._scrollToElementOnLinkClick );
381
  }
382
  if ( element.hasClass( 'fl-accordion-item' ) ) {
js/fl-builder-preview.js CHANGED
@@ -1650,28 +1650,49 @@
1650
  * Initializes CSS previews for a node.
1651
  *
1652
  * @since 1.3.3
 
1653
  * @access private
1654
  * @method _initFieldCSSPreview
1655
  * @param {Object} field A field object.
1656
  */
1657
- _initFieldCSSPreview: function(field)
1658
  {
1659
- var fieldType = field.data('type'),
1660
- preview = field.data('preview'),
1661
- callback = $.proxy(this._previewCSS, this, preview);
1662
-
1663
- switch(fieldType) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1664
 
1665
  case 'text':
1666
- field.find('input[type=text]').on('keyup', callback);
1667
  break;
1668
 
1669
  case 'select':
1670
- field.find('select').on('change', callback);
1671
  break;
1672
 
1673
  case 'color':
1674
- field.find('.fl-color-picker-value').on('change', $.proxy(this._previewColor, this, preview));
1675
  break;
1676
  }
1677
  },
@@ -1687,7 +1708,7 @@
1687
  */
1688
  _previewCSS: function(preview, e)
1689
  {
1690
- var selector = this.classes.node + ' ' + preview.selector,
1691
  property = preview.property,
1692
  unit = typeof preview.unit == 'undefined' ? '' : preview.unit,
1693
  value = $(e.target).val();
@@ -1713,7 +1734,7 @@
1713
  */
1714
  _previewColor: function(preview, e)
1715
  {
1716
- var selector = this.classes.node + ' ' + preview.selector,
1717
  val = $(e.target).val(),
1718
  color = val == '' ? 'inherit' : '#' + val;
1719
 
@@ -1736,6 +1757,33 @@
1736
  field.find('input[type=checkbox]').on('click', callback);
1737
  field.find('textarea').on('keyup', callback);
1738
  field.find('select').on('change', callback);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1739
  }
1740
  };
1741
 
1650
  * Initializes CSS previews for a node.
1651
  *
1652
  * @since 1.3.3
1653
+ * @since 1.6.1 Reworked to accept a preview.rules array.
1654
  * @access private
1655
  * @method _initFieldCSSPreview
1656
  * @param {Object} field A field object.
1657
  */
1658
+ _initFieldCSSPreview: function( field )
1659
  {
1660
+ var preview = field.data( 'preview' ),
1661
+ i = null;
1662
+
1663
+ if ( 'undefined' != typeof preview.rules ) {
1664
+ for ( i in preview.rules ) {
1665
+ this._initFieldCSSPreviewCallback( field, preview.rules[ i ] );
1666
+ }
1667
+ }
1668
+ else {
1669
+ this._initFieldCSSPreviewCallback( field, preview );
1670
+ }
1671
+ },
1672
+
1673
+ /**
1674
+ * Initializes CSS preview callbacks for a field.
1675
+ *
1676
+ * @since 1.6.1
1677
+ * @access private
1678
+ * @method _initFieldCSSPreviewCallback
1679
+ * @param {Object} field A field object.
1680
+ * @param {Object} preview The preview data object.
1681
+ */
1682
+ _initFieldCSSPreviewCallback: function( field, preview )
1683
+ {
1684
+ switch( field.data( 'type' ) ) {
1685
 
1686
  case 'text':
1687
+ field.find( 'input[type=text]' ).on( 'keyup', $.proxy( this._previewCSS, this, preview ) );
1688
  break;
1689
 
1690
  case 'select':
1691
+ field.find( 'select' ).on( 'change', $.proxy( this._previewCSS, this, preview ) );
1692
  break;
1693
 
1694
  case 'color':
1695
+ field.find( '.fl-color-picker-value' ).on( 'change', $.proxy( this._previewColor, this, preview ) );
1696
  break;
1697
  }
1698
  },
1708
  */
1709
  _previewCSS: function(preview, e)
1710
  {
1711
+ var selector = this._getPreviewSelector( this.classes.node, preview.selector ),
1712
  property = preview.property,
1713
  unit = typeof preview.unit == 'undefined' ? '' : preview.unit,
1714
  value = $(e.target).val();
1734
  */
1735
  _previewColor: function(preview, e)
1736
  {
1737
+ var selector = this._getPreviewSelector( this.classes.node, preview.selector ),
1738
  val = $(e.target).val(),
1739
  color = val == '' ? 'inherit' : '#' + val;
1740
 
1757
  field.find('input[type=checkbox]').on('click', callback);
1758
  field.find('textarea').on('keyup', callback);
1759
  field.find('select').on('change', callback);
1760
+ },
1761
+
1762
+ /**
1763
+ * Returns a formatted selector string for a preview.
1764
+ *
1765
+ * @since 1.6.1
1766
+ * @access private
1767
+ * @method _getPreviewSelector
1768
+ * @param {String} selector A CSS selector string.
1769
+ * @return {String}
1770
+ */
1771
+ _getPreviewSelector: function( prefix, selector )
1772
+ {
1773
+ var formatted = '',
1774
+ parts = selector.split( ',' ),
1775
+ i = 0;
1776
+
1777
+ for ( ; i < parts.length; i++ ) {
1778
+
1779
+ formatted += prefix + ' ' + parts[ i ];
1780
+
1781
+ if ( i != parts.length - 1 ) {
1782
+ formatted += ', ';
1783
+ }
1784
+ }
1785
+
1786
+ return formatted;
1787
  }
1788
  };
1789
 
js/fl-builder.js CHANGED
@@ -936,8 +936,14 @@
936
  _draftButtonClicked: function()
937
  {
938
  FLBuilder.showAjaxLoader();
 
 
 
 
 
 
 
939
  FLBuilder._actionsLightbox.close();
940
- FLBuilder._exit();
941
  },
942
 
943
  /**
@@ -3354,20 +3360,6 @@
3354
  key = '',
3355
  matches = [],
3356
  settings = {};
3357
-
3358
- // Add unchecked checkboxes to the form data.
3359
- for ( ; i < checkboxes.length; i++ ) {
3360
-
3361
- name = checkboxes.eq( i ).attr( 'name' );
3362
-
3363
- if ( 'undefined' != name ) {
3364
-
3365
- data.push( {
3366
- name : name,
3367
- value : ''
3368
- } );
3369
- }
3370
- }
3371
 
3372
  // Loop through the form data.
3373
  for ( i = 0; i < data.length; i++ ) {
@@ -3784,13 +3776,13 @@
3784
  for(i in toggle) {
3785
  FLBuilder._settingsSelectToggle(toggle[i].fields, 'hide', '#fl-field-');
3786
  FLBuilder._settingsSelectToggle(toggle[i].sections, 'hide', '#fl-builder-settings-section-');
3787
- FLBuilder._settingsSelectToggle(toggle[i].tabs, 'hide', 'a[href*=fl-builder-settings-tab-');
3788
  }
3789
 
3790
  if(typeof toggle[val] !== 'undefined') {
3791
  FLBuilder._settingsSelectToggle(toggle[val].fields, 'show', '#fl-field-');
3792
  FLBuilder._settingsSelectToggle(toggle[val].sections, 'show', '#fl-builder-settings-section-');
3793
- FLBuilder._settingsSelectToggle(toggle[val].tabs, 'show', 'a[href*=fl-builder-settings-tab-');
3794
  }
3795
  }
3796
 
@@ -3802,7 +3794,7 @@
3802
  if(typeof hide[val] !== 'undefined') {
3803
  FLBuilder._settingsSelectToggle(hide[val].fields, 'hide', '#fl-field-');
3804
  FLBuilder._settingsSelectToggle(hide[val].sections, 'hide', '#fl-builder-settings-section-');
3805
- FLBuilder._settingsSelectToggle(hide[val].tabs, 'hide', 'a[href*=fl-builder-settings-tab-');
3806
  }
3807
  }
3808
 
@@ -3828,14 +3820,16 @@
3828
  * @param {Array} inputArray
3829
  * @param {Function} func
3830
  * @param {String} prefix
 
3831
  */
3832
- _settingsSelectToggle: function(inputArray, func, prefix)
3833
  {
3834
- var i = 0;
 
3835
 
3836
  if(typeof inputArray !== 'undefined') {
3837
  for( ; i < inputArray.length; i++) {
3838
- $(prefix + inputArray[i])[func]();
3839
  }
3840
  }
3841
  },
936
  _draftButtonClicked: function()
937
  {
938
  FLBuilder.showAjaxLoader();
939
+
940
+ FLBuilder.ajax({
941
+ action: 'fl_builder_save',
942
+ method: 'save_draft',
943
+ render_assets: 0
944
+ }, FLBuilder._exit);
945
+
946
  FLBuilder._actionsLightbox.close();
 
947
  },
948
 
949
  /**
3360
  key = '',
3361
  matches = [],
3362
  settings = {};
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3363
 
3364
  // Loop through the form data.
3365
  for ( i = 0; i < data.length; i++ ) {
3776
  for(i in toggle) {
3777
  FLBuilder._settingsSelectToggle(toggle[i].fields, 'hide', '#fl-field-');
3778
  FLBuilder._settingsSelectToggle(toggle[i].sections, 'hide', '#fl-builder-settings-section-');
3779
+ FLBuilder._settingsSelectToggle(toggle[i].tabs, 'hide', 'a[href*=fl-builder-settings-tab-', ']');
3780
  }
3781
 
3782
  if(typeof toggle[val] !== 'undefined') {
3783
  FLBuilder._settingsSelectToggle(toggle[val].fields, 'show', '#fl-field-');
3784
  FLBuilder._settingsSelectToggle(toggle[val].sections, 'show', '#fl-builder-settings-section-');
3785
+ FLBuilder._settingsSelectToggle(toggle[val].tabs, 'show', 'a[href*=fl-builder-settings-tab-', ']');
3786
  }
3787
  }
3788
 
3794
  if(typeof hide[val] !== 'undefined') {
3795
  FLBuilder._settingsSelectToggle(hide[val].fields, 'hide', '#fl-field-');
3796
  FLBuilder._settingsSelectToggle(hide[val].sections, 'hide', '#fl-builder-settings-section-');
3797
+ FLBuilder._settingsSelectToggle(hide[val].tabs, 'hide', 'a[href*=fl-builder-settings-tab-', ']');
3798
  }
3799
  }
3800
 
3820
  * @param {Array} inputArray
3821
  * @param {Function} func
3822
  * @param {String} prefix
3823
+ * @param {String} suffix
3824
  */
3825
+ _settingsSelectToggle: function(inputArray, func, prefix, suffix)
3826
  {
3827
+ var i = 0,
3828
+ suffix = 'undefined' == typeof suffix ? '' : suffix;
3829
 
3830
  if(typeof inputArray !== 'undefined') {
3831
  for( ; i < inputArray.length; i++) {
3832
+ $(prefix + inputArray[i] + suffix)[func]();
3833
  }
3834
  }
3835
  },
js/fl-gallery-grid.js CHANGED
@@ -73,7 +73,13 @@
73
  items = wrap.find(this.itemSelector),
74
  itemWidth = wrapWidth/numCols,
75
  itemHeight = itemWidth * this.itemHeight;
 
 
 
 
 
76
 
 
77
  items.css({
78
  'float' : 'left',
79
  'height' : itemHeight + 'px',
73
  items = wrap.find(this.itemSelector),
74
  itemWidth = wrapWidth/numCols,
75
  itemHeight = itemWidth * this.itemHeight;
76
+
77
+ // Browser bug fix. One column images are streched otherwise.
78
+ if ( 1 === numCols ) {
79
+ itemWidth -= .5;
80
+ }
81
 
82
+ // Set the item width and height.
83
  items.css({
84
  'float' : 'left',
85
  'height' : itemHeight + 'px',
js/fl-slideshow.js CHANGED
@@ -1,3 +1,4 @@
 
1
  /**
2
  * Slideshow JS Bundle
3
  *
@@ -14,10 +15,10 @@ this._updateCaption();}if(this._buttons.social){this._buttons.social.on("click",
14
  }C.insert(B);},_closeButtonClick:function(){var B=this.get("host").get("boundingBox");B.transition(this._hideProps,A.bind(this._hideComplete,this));},_setFocusOnMouseenter:function(){this._focus=true;},_setFocusOnMouseleave:function(){this._focus=false;},disable:function(){this._disabled=true;},enable:function(){this._disabled=false;},show:function(){var C=this.get("host").get("boundingBox"),B=this.get("hideStyle");if(this._disabled){return;}if(B=="display"){C.setStyle("display","block");}else{if(B=="left"){C.setStyle("left","auto");}}C.transition(this._showProps,A.bind(this._showComplete,this));this.fire("showStart");},_showComplete:function(){this._visible=true;this.hideWithTimer();this.fire("showComplete");},hide:function(){if(this._focus||this._disabled){return;}var B=this.get("host").get("boundingBox");B.transition(this._hideProps,A.bind(this._hideComplete,this));this.fire("hideStart");},hideWithTimer:function(){this._hideTimerCancel();this._hideTimer=A.later(this.get("hideDelay"),this,this.hide);},_hideTimerCancel:function(){if(this._hideTimer){this._hideTimer.cancel();this._hideTimer=null;}},_hideComplete:function(){var C=this.get("host").get("boundingBox"),B=this.get("hideStyle");if(B=="display"){C.setStyle("display","none");}else{if(B=="left"){C.setStyle("left","-99999px");}}this._visible=false;this.fire("hideComplete");}},{NS:"slideshowOverlay",ATTRS:{closeButton:{value:false,writeOnce:true},hideDelay:{value:3000,writeOnce:true},hideStyle:{value:"display",writeOnce:true},visible:{value:true,writeOnce:true}}});A.namespace("FL").SlideshowSocial=A.Base.create("fl-slideshow-social",A.Widget,[A.WidgetChild],{_buttons:null,renderUI:function(){this._buttons={};if(this.get("root").get("googlePlusButtonEnabled")){this._renderGooglePlusButton();}},bindUI:function(){var B=this.get("root");if(B.get("likeButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateLikeButton,this));}if(B.get("tweetButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateTweetButton,this));}if(B.get("googlePlusButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateGooglePlusButton,this));}if(B.get("pinterestButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updatePinterestButton,this));}},_updateLikeButton:function(){var G=null,C=this.get("contentBox"),E=this.get("root"),F=E.albumIndex,D=E.get("source")[F],B=E.imageInfo;if(this._buttons.like){this._buttons.like.remove();this._buttons.like=null;}if(D.type=="smugmug"){G="http://www.facebook.com/plugins/like.php?";G+="href="+"http://www.smugmug.com/services/graph/gallery/";G+=D.id+"_"+D.key+"/"+B.id+"_"+B.key;}else{G="http://www.facebook.com/plugins/like.php?";G+="href="+encodeURIComponent(B.largeURL);}G+="&send=false";G+="&layout=button_count";G+="&width=90";G+="&show_faces=false";G+="&action=like";G+="&colorscheme=light";G+="&height=21";this._buttons.like=A.Node.create('<iframe src="'+G+'" scrolling="no" frameborder="0" allowTransparency="true"></iframe>');this._buttons.like.setStyles({overflow:"hidden",width:"90px",height:"21px"});C.appendChild(this._buttons.like);},_updateTweetButton:function(){var D=null,C=this.get("root").imageInfo,B=this.get("contentBox");if(this._buttons.tweet){this._buttons.tweet.remove();this._buttons.tweet=null;}D="https://platform.twitter.com/widgets/tweet_button.html?";D+="url="+encodeURIComponent(C.largeURL);D+="&count=none";this._buttons.tweet=A.Node.create('<iframe src="'+D+'" scrolling="no" frameborder="0" allowTransparency="true"></iframe>');this._buttons.tweet.setStyles({overflow:"hidden",width:"90px",height:"21px"});B.appendChild(this._buttons.tweet);},_renderGooglePlusButton:function(){var B,C;B=document.createElement("script");B.type="text/javascript";B.src="https://apis.google.com/js/plusone.js";C=document.getElementsByTagName("head")[0];C.parentNode.appendChild(B);},_updateGooglePlusButton:function(){var C=this.get("root").imageInfo,B=this.get("contentBox"),D=typeof D=="undefined"?null:D;if(this._buttons.plus){this._buttons.plus.remove();this._buttons.plus=null;}if(D!==null){this._buttons.plus=A.Node.create("<div></div>");B.appendChild(this._buttons.plus);D.plusone.render(this._buttons.plus._node,{href:encodeURIComponent(C.largeURL),annotation:"bubble",size:"medium"});}},_updatePinterestButton:function(){var D="http://pinterest.com/pin/create/button/",C=this.get("root").imageInfo,B=this.get("contentBox");if(this._buttons.pin){this._buttons.pin.remove();this._buttons.pin=null;}D+="?url="+encodeURIComponent(window.location.href);D+="&media="+encodeURIComponent(C.mediumURL);D+="&description="+encodeURIComponent(C.caption);this._buttons.pin=A.Node.create("<a></a>");this._buttons.pin.setAttribute("data-pin-config","none");this._buttons.pin.setAttribute("data-pin-do","buttonPin");this._buttons.pin.setAttribute("href",D);this._buttons.pin.setAttribute("target","_blank");this._buttons.pin.set("innerHTML",'<img src="http://assets.pinterest.com/images/pidgets/pin_it_button.png" border="0" />');B.appendChild(this._buttons.pin);}},{CSS_PREFIX:"fl-slideshow-social",ATTRS:{}});A.namespace("FL").SlideshowThumbs=A.Base.create("fl-slideshow-thumbs",A.Widget,[A.WidgetParent,A.WidgetChild],{_clipBox:null,_pagesBox:null,_activePageBox:null,_activePageIndex:0,_nextPageBox:null,_activeImages:null,_nextImages:null,_prevImages:null,_leftNav:null,_rightNav:null,_topNav:null,_bottomNav:null,_bbHeight:0,_bbWidth:0,_cbWidth:0,_clipBoxMarginLeft:0,_clipBoxTop:0,_colsPerPage:0,_rowsPerPage:0,_imagesPerPage:0,_numPages:0,_pageHeight:0,_pageWidth:0,_horizontalSpacing:0,_verticalSpacing:0,_leftNavWidth:0,_rightNavWidth:0,_transition:null,_transitioning:false,_transitionDirection:"next",_gestures:null,initializer:function(){this._activeImages=[];this._nextImages=[];this._prevImages=[];},renderUI:function(){this._renderBoxes();this._renderNavs();},bindUI:function(){var B=this.get("root"),D=this.get("id"),C=this.get("transition");B.on(D+"|albumLoadComplete",this._albumLoadComplete,this);if("ontouchstart" in window&&this.get("touchSupport")){this._gestures=new A.FL.SlideshowGestures({direction:C=="slideVertical"?"vertical":"horizontal",activeItem:this._activePageBox,nextItem:this._nextPageBox});
15
  this._gestures.on("moveStart",this._gesturesMoveStart,this);this._gestures.on("endComplete",this._gesturesEndComplete,this);}},syncUI:function(){this._syncBoxes();this._syncNavs();},destructor:function(){var B=this.get("root"),C=this.get("id");B.detach(C+"|*");A.FL.SlideshowImageLoader.removeGroup("thumbs");},unload:function(){var B=this.get("root"),D=this.get("id"),C=0;B.detach(D+"|imageLoadComplete");A.FL.SlideshowImageLoader.removeGroup("thumbs");for(;C<this._activeImages.length;C++){this._activeImages[C].unload();}},resize:function(){this._setSizeInfo();this._togglePageButtons();this._resizeBoxes();this._resizeNavs();if(this.get("root").albumInfo){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._renderActivePage();this._preloadNextPage();this._preloadPrevPage();}if(this._gestures&&this._numPages<2){this._gestures.disable();}else{if(this._gestures){this._gestures.enable();}}},prevPage:function(){if(this._transitioning){return;}this._transitionStart("prev");},nextPage:function(){if(this._transitioning){return;}this._transitionStart("next");},_albumLoadComplete:function(){var B=this.get("root"),C=this.get("id");B.once(C+"|imageLoadComplete",this.resize,this);B.on(C+"|imageLoadComplete",this._imageLoadComplete,this);},_imageLoadComplete:function(){var B=this.get("root").albumInfo,E=A.one(".fl-slideshow-image-active"),F=E?E._imageInfo:null,D=null,C=this.get("root").imageInfo;this._setActiveImage(this._activeImages);D=A.one(".fl-slideshow-image-active");if(E&&!D){if(C.index===0&&F.index===B.images.length-1){this.nextPage();}else{if(F.index===0&&C.index===B.images.length-1){this.prevPage();}else{if(F.index<C.index){this.nextPage();}else{if(F.index>C.index){this.prevPage();}}}}}},_renderBoxes:function(){this._clipBox=A.Node.create("<div></div>");this._clipBox.addClass("fl-slideshow-thumbs-clip");this.get("contentBox").insert(this._clipBox);this._pagesBox=A.Node.create("<div></div>");this._pagesBox.addClass("fl-slideshow-thumbs-pages");this._clipBox.insert(this._pagesBox);this._activePageBox=A.Node.create("<div></div>");this._activePageBox.addClass("fl-slideshow-thumbs-page");this._pagesBox.insert(this._activePageBox);this._nextPageBox=A.Node.create("<div></div>");this._nextPageBox.addClass("fl-slideshow-thumbs-page");this._pagesBox.insert(this._nextPageBox);},_syncBoxes:function(){this._activePageBox.setStyle("left","0");this._nextPageBox.setStyle("left","-9999px");},_resizeBoxes:function(){this.set("width",this._bbWidth);this.set("height",this._bbHeight);this.get("contentBox").setStyle("width",this._cbWidth+"px");this._clipBox.setStyle("width",this._pageWidth+"px");this._clipBox.setStyle("height",this._pageHeight+"px");this._clipBox.setStyle("padding",this._verticalSpacing+"px 0 0 "+this._horizontalSpacing+"px ");this._clipBox.setStyle("margin","0 0 0 "+this._clipBoxMarginLeft+"px");this._clipBox.setStyle("top",this._clipBoxTop);this._pagesBox.setStyle("width",this._pageWidth+"px");this._pagesBox.setStyle("height",this._pageHeight+"px");this._activePageBox.setStyle("width",this._pageWidth+"px");this._activePageBox.setStyle("height",this._pageHeight+"px");this._nextPageBox.setStyle("width",this._pageWidth+"px");this._nextPageBox.setStyle("height",this._pageHeight+"px");},_renderActivePage:function(){var E=0,D=this.get("root"),C=this._imagesPerPage*this._activePageIndex,F=C+this._imagesPerPage,B=D.albumInfo.images;this._clearActiveImage();for(;E<this._activeImages.length;E++){this._activeImages[E].remove();this._activeImages[E].unload();this._activeImages[E].get("boundingBox")._imageInfo=null;this._activeImages[E].get("boundingBox").remove();}for(E=0;C<F;C++){if(!B[C]){break;}this._renderImage(this._activeImages,E,this._activePageBox,B[C]);E++;}this._setActiveImage(this._activeImages);},_renderNextPage:function(){var B=0,C=this._transitionDirection=="next"?this._nextImages:this._prevImages;this._nextPageBox.get("children").remove();for(;B<C.length;B++){if(C[B]._imageInfo){this._renderImage(C,B,this._nextPageBox,C[B]._imageInfo);}else{break;}}this._setActiveImage(C);},_preloadNextPage:function(){var B=this._activePageIndex+1>=this._numPages?0:this._activePageIndex+1;this._preloadPage(B,this._nextImages);},_preloadPrevPage:function(){var B=this._activePageIndex-1<0?this._numPages-1:this._activePageIndex-1;this._preloadPage(B,this._prevImages);},_preloadPage:function(E,D){var F=0,I=this.get("root"),H=I.albumInfo.images,C=E*this._imagesPerPage,G=C+this._imagesPerPage,J=this.get("imageConfig"),B=J.width,K=J.height;if(this._numPages>1){for(;F<D.length;F++){D[F].remove();D[F].unload();}for(F=0;C<G;C++){if(!H[C]){continue;}this._renderImage(D,F);D[F].preload(H[C],B,K);F++;}}},_renderImage:function(G,E,F,B){var C=null,D=this.get("imageConfig");if(typeof G[E]=="undefined"){D.loadGroup="thumbs";D.useThumbSizes=true;D.loadVideos=false;G[E]=new A.FL.SlideshowImage(D);C=G[E].get("boundingBox");C.on("click",this._imageClick,this);C.on("mouseover",this._imageMouseover,this);C.on("mouseout",this._imageMouseout,this);}C=G[E].get("boundingBox");C.setStyle("margin","0 "+this._horizontalSpacing+"px "+this._verticalSpacing+"px 0");if(F){this._childrenContainer=F;this.add(G[E]);G[E].resize(D.width,D.height);}if(B){G[E].load(B);C._imageInfo=B;}},_uiAddChild:function(C,B){C.render(B);B.appendChild(C.get("boundingBox"));},_imageClick:function(C){var B=this.get("root");if(this.get("pauseOnClick")){B.pause();}B.loadImage(C.currentTarget._imageInfo.index);this.fire("imageClick");},_setActiveImage:function(C){var B=0;this._clearActiveImage();for(;B<C.length;B++){if(C[B]._imageInfo){if(C[B]._imageInfo.index==this.get("root").imageInfo.index){C[B].get("boundingBox").addClass("fl-slideshow-image-active");break;}}}},_clearActiveImage:function(){var B=A.one(".fl-slideshow-image-active");if(B){B.removeClass("fl-slideshow-image-active");}},_getTransition:function(){var B=this.get("transition");if(B=="slideHorizontal"&&this._transitionDirection=="next"){return"slideLeft";}else{if(B=="slideHorizontal"&&this._transitionDirection=="prev"){return"slideRight";
16
  }else{if(B=="slideVertical"&&this._transitionDirection=="next"){return"slideUp";}else{if(B=="slideVertical"&&this._transitionDirection=="prev"){return"slideDown";}}}}return B;},_transitionStart:function(B){if(this._numPages>1){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._transitionDirection=B;this._transitioning=true;this._nextPageBox.setStyle("left","0px");this._renderNextPage();this._transition=new A.FL.SlideshowTransition({itemIn:this._nextPageBox,itemOut:this._activePageBox,type:this._getTransition(),duration:this.get("transitionDuration"),easing:this.get("transitionEasing")});this._transition.once("complete",this._transitionComplete,this);this._transition.run();if(this._gestures){this._gestures.disable();}}},_transitionComplete:function(){this._swapPageRefs();this._transitioning=false;this._transitionDirection="";this._transition=null;if(this._gestures){this._gestures.enable();}this.fire("transitionComplete");},_gesturesMoveStart:function(B){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._transitionDirection=B.direction;this._renderNextPage();},_gesturesEndComplete:function(){this._swapPageRefs();this._transitionDirection="";this.fire("transitionComplete");},_swapPageRefs:function(){var B=this._activePageBox,C=this._activeImages;this._activePageBox=this._nextPageBox;this._nextPageBox=B;this._nextPageBox.setStyle("left","-9999px");if(this._transitionDirection=="next"){this._activeImages=this._nextImages;this._nextImages=C;}else{this._activeImages=this._prevImages;this._prevImages=C;}if(this._transitionDirection=="next"&&this._activePageIndex+1<this._numPages){this._activePageIndex++;}else{if(this._transitionDirection=="next"){this._activePageIndex=0;}else{if(this._transitionDirection=="prev"&&this._activePageIndex-1>-1){this._activePageIndex--;}else{if(this._transitionDirection=="prev"){this._activePageIndex=this._numPages-1;}}}}if(this._gestures){this._gestures.set("activeItem",this._activePageBox);this._gestures.set("nextItem",this._nextPageBox);}this._preloadNextPage();this._preloadPrevPage();},_renderNavs:function(){var D=this.get("topNavButtons"),C=this.get("rightNavButtons"),B=this.get("bottomNavButtons"),E=this.get("leftNavButtons");if(this.get("topNavEnabled")&&D.length>0){this._topNav=new A.FL.SlideshowNav({buttons:D});this._topNav.get("boundingBox").addClass("fl-slideshow-thumbs-top-nav");this.add(this._topNav);this._topNav.render(this.get("contentBox"));this._clipBox.insert(this._topNav.get("boundingBox"),"before");this._bindNavEvents(this._topNav);}if(this.get("rightNavEnabled")&&C.length>0){this._rightNav=new A.FL.SlideshowNav({buttons:C});this._rightNav.get("boundingBox").addClass("fl-slideshow-thumbs-right-nav");this.add(this._rightNav);this._rightNav.render(this.get("contentBox"));this._bindNavEvents(this._rightNav);}if(this.get("bottomNavEnabled")&&B.length>0){this._bottomNav=new A.FL.SlideshowNav({buttons:B});this._bottomNav.get("boundingBox").addClass("fl-slideshow-thumbs-bottom-nav");this.add(this._bottomNav);this._bottomNav.render(this.get("contentBox"));this._bindNavEvents(this._bottomNav);}if(this.get("leftNavEnabled")&&E.length>0){this._leftNav=new A.FL.SlideshowNav({buttons:E});this._leftNav.get("boundingBox").addClass("fl-slideshow-thumbs-left-nav");this.add(this._leftNav);this._leftNav.render(this.get("contentBox"));this._bindNavEvents(this._leftNav);}},_syncNavs:function(){var D,B,C;if(this._rightNav){D=this._rightNav.get("boundingBox");D.setStyle("position","absolute");D.setStyle("top","0px");D.setStyle("right","0px");}if(this._bottomNav){B=this._bottomNav.get("boundingBox");B.setStyle("position","absolute");B.setStyle("bottom","0px");B.setStyle("width","100%");}if(this._leftNav){C=this._leftNav.get("boundingBox");C.setStyle("position","absolute");C.setStyle("top","0px");C.setStyle("left","0px");}},_resizeNavs:function(){var D,C,B;if(this._rightNav){D=this._rightNav.get("boundingBox");B=this._bbHeight/2-parseInt(D.getComputedStyle("height"),10)/2;D.setStyle("marginTop",B+"px");}if(this._leftNav){C=this._leftNav.get("boundingBox");B=this._bbHeight/2-parseInt(C.getComputedStyle("height"),10)/2;C.setStyle("marginTop",B+"px");}},_bindNavEvents:function(B){if(B._buttons.prevPage){B._buttons.prevPage.on("click",this.prevPage,this);}if(B._buttons.nextPage){B._buttons.nextPage.on("click",this.nextPage,this);}B.on("resize",this.resize,this);},_togglePageButtons:function(){var B=A.all(".fl-slideshow-nav-prevPage, .fl-slideshow-nav-nextPage"),C=B.getStyle("display")[0];if(this._numPages==1&&C=="inline-block"){B.setStyle("display","none");this._setSizeInfo();}else{if(this._numPages>1&&C=="none"){B.setStyle("display","inline-block");this._setSizeInfo();}}},_setSizeInfo:function(){var V=this.get("root"),k=this.get("boundingBox"),L=k.getStyle("position"),J=parseInt(k.getStyle("marginLeft"),10),B=parseInt(k.getStyle("marginRight"),10),X=parseInt(k.getStyle("marginTop"),10),I=parseInt(k.getStyle("marginBottom"),10),m=parseInt(k.getStyle("paddingLeft"),10),c=parseInt(k.getStyle("paddingRight"),10),i=parseInt(k.getStyle("paddingTop"),10),f=parseInt(k.getStyle("paddingBottom"),10),F=k.get("parentNode"),Q=parseInt(F.getComputedStyle("width"),10),d=parseInt(F.getComputedStyle("height"),10),Y=Q-m-c-J-B,T=d-i-f-X-I,Z=Y,R=Y,P=T,G=this.get("columns"),h=this.get("rows"),K=this.get("imageConfig"),C=this.get("horizontalSpacing"),O=this.get("verticalSpacing"),H=this.get("spaceEvenly"),W=this.get("centerSinglePage"),j=0,U=0,e=0,S=0,M=G,a=h,D=0,l=1,b=0,g=0,E=0,N=0;k.setStyle("position","relative");if(!isNaN(G)){Y=R=G*(K.width+C)+C;}if(!isNaN(h)){T=P=h*(K.height+O)+O;}if(this._leftNav){j=parseInt(this._leftNav.get("boundingBox").getComputedStyle("width"),10);if(isNaN(G)){R-=j;}else{Y+=j;}}if(this._rightNav){U=parseInt(this._rightNav.get("boundingBox").getComputedStyle("width"),10);if(isNaN(G)){R-=U;}else{Y+=U;}}if(this._topNav){e=parseInt(this._topNav.get("boundingBox").getComputedStyle("height"),10);if(isNaN(h)){P-=e;}else{T+=e;}}if(this._bottomNav){S=parseInt(this._bottomNav.get("boundingBox").getComputedStyle("height"),10);
17
- if(isNaN(h)){P-=S;}else{T+=S;}}if(isNaN(G)){M=Math.floor(R/(K.width+C));M=M<1?1:M;}if(isNaN(h)){a=Math.floor(P/(K.height+O));a=a<1?1:a;}D=M*a;if(V.albumInfo){l=Math.ceil(V.albumInfo.images.length/D);}if(isNaN(G)&&H){C=Math.floor((R-(K.width*M))/(M+1));}if(isNaN(h)&&H){O=Math.floor((P-(K.height*a))/(a+1));}if(V.albumInfo&&W&&l==1&&a==1){Z=V.albumInfo.images.length*K.width;Z+=C*(V.albumInfo.images.length+1);if(this._leftNav){Z+=j;}if(this._rightNav){Z+=U;}}else{Z=Y;}if(V.albumInfo&&W&&l==1&&a==1){R=V.albumInfo.images.length*K.width;R+=C*V.albumInfo.images.length;}else{R=M*(K.width+C);}P=a*(K.height+O);if(l<2){b=j;}else{E=Y;if(this._rightNav){E-=U;}if(this._leftNav){E-=j;b=j+(E-R-C)/2;}else{b=(E-R-C)/2;}}if(l>1&&!H){N=T;if(this._topNav){N-=e;}if(this._bottomNav){N-=S;}g=(N-(O+P))/2;}this._bbHeight=T;this._bbWidth=Y;this._cbWidth=Z;this._clipBoxMarginLeft=b;this._clipBoxTop=g;this._colsPerPage=M;this._rowsPerPage=a;this._imagesPerPage=D;this._numPages=l;this._pageHeight=P;this._pageWidth=R;this._leftNavWidth=j;this._rightNavWidth=U;this._horizontalSpacing=C;this._verticalSpacing=O;this._activePageIndex=Math.floor(V.imageIndex/this._imagesPerPage);k.setStyle("position",L);}},{CSS_PREFIX:"fl-slideshow-thumbs",ATTRS:{columns:{value:"auto"},rows:{value:"auto"},horizontalSpacing:{value:15},verticalSpacing:{value:15},spaceEvenly:{value:true},centerSinglePage:{value:true},pauseOnClick:{value:false},transition:{value:"slideHorizontal"},transitionDuration:{value:0.8},transitionEasing:{value:"ease-out"},imageConfig:{value:{crop:true,width:50,height:50}},topNavEnabled:{value:false},topNavButtons:{value:["prevPage","nextPage"]},rightNavEnabled:{value:true},rightNavButtons:{value:["nextPage"]},bottomNavEnabled:{value:false},bottomNavButtons:{value:["prevPage","nextPage"]},leftNavEnabled:{value:true},leftNavButtons:{value:["prevPage"]},touchSupport:{value:false}}});A.namespace("FL").SlideshowTransition=A.Base.create("fl-slideshow-transition",A.Base,[],{_transitionFunction:"_transitionFade",_type:"fade",initializer:function(){var D=this.get("type"),I=[],C=A.FL.SlideshowTransition.TYPES,E=A.FL.SlideshowTransition.SLIDESHOW_IMAGE_TYPES,H=A.Array.indexOf(E,D)>-1,B=this._isSlideshowImage(),G=this.get("itemIn"),F=this.get("itemOut");if(D.indexOf(",")>-1){I=D.split(",");I.sort(function(){return 0.5-Math.random();});D=I[0];}if(!B&&H){D="fade";}else{if(B){if((G&&G.one("img")===null)||(F&&F.one("img")===null)){D="none";}else{if(H){if((A.UA.gecko&&A.UA.gecko<5)||A.UA.opera>0||(A.UA.ie>0&&A.UA.ie<9)){D="fade";}}}}}if(A.FL.SlideshowTransition.TYPES[D]){this._transitionFunction=C[D];this._type=D;}this._setupItems();},run:function(){this.fire("start");this[this._transitionFunction].call(this);},_setupItems:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C){C.setStyle("zIndex",2);C.setStyle("opacity",1);if(A.FL.Utils.cssSupport("transform")){C.setStyle("transform","translate(0, 0)");}else{C.setStyle("top","0");C.setStyle("left","0");}}if(B){B.setStyle("zIndex",1);}},_isSlideshowImage:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C&&C.hasClass("fl-slideshow-image")){return true;}else{if(B&&B.hasClass("fl-slideshow-image")){return true;}}return false;},_transitionStart:function(I,B){var H=this.get("itemIn"),F=this.get("itemOut"),E=A.bind(this._transitionComplete,this),D=!H?E:null,C=this.get("duration"),G=this.get("easing");if(H){I.duration=I.duration||C;I.easing=I.easing||G;H.transition(I);}if(F){B.duration=B.duration||C;B.easing=B.easing||G;F.transition(B);}if(E){A.later(I.duration*1000+100,null,E);}else{if(D){A.later(B.duration*1000+100,null,D);}}},_transitionComplete:function(){this._set("itemIn",null);this._set("itemOut",null);this.fire("complete");},_transitionNone:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C){C.setStyle("opacity",1);}if(B){B.setStyle("opacity",0);}this._transitionComplete();},_transitionFade:function(){var B=this.get("itemIn");if(B){B.setStyle("opacity",0);}this._transitionStart({opacity:1},{opacity:0});},_transitionSlideLeft:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(100%, 0)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(-100%, 0)"});}else{this._jsTransitionSlide("left");}},_transitionSlideRight:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(-100%, 0)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(100%, 0)"});}else{this._jsTransitionSlide("right");}},_transitionSlideUp:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(0, 100%)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(0, -100%)"});}else{this._jsTransitionSlide("up");}},_transitionSlideDown:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(0, -100%)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(0, 100%)"});}else{this._jsTransitionSlide("down");}},_jsTransitionSlide:function(B){var E=this.get("itemIn"),C=this.get("itemOut"),D=0;if(C&&B=="left"){D=-parseInt(C.getStyle("width"),10);}if(C&&B=="right"){D=parseInt(C.getStyle("width"),10);}if(C&&B=="up"){D=-parseInt(C.getStyle("height"),10);}if(C&&B=="down"){D=parseInt(C.getStyle("height"),10);}if(E){E.setStyle("opacity",1);}if(E&&B=="left"){E.setStyle("left",E.getStyle("width"));}if(E&&B=="right"){E.setStyle("left","-"+E.getStyle("width"));}if(E&&B=="up"){E.setStyle("top",E.getStyle("height"));}if(E&&B=="down"){E.setStyle("top","-"+E.getStyle("height"));}if(B=="left"||B=="right"){this._transitionStart({left:0},{left:D});}else{this._transitionStart({top:0},{top:D});}},_cssTransitionSlide:function(B){var D=this.get("itemIn"),C=this.get("itemOut");if(D){D.setStyle("transition","");D.setStyle("opacity",1);D.setStyle("transform",B.inStart);}if(C){C.setStyle("transition","");C.setStyle("transform",B.outStart);}this._transitionStart({"transform":B.inEnd},{"transform":B.outEnd});},_transitionBars:function(){this.get("itemIn").one(".fl-slideshow-image-img").setStyle("opacity",0);
18
- var D=this.get("bars"),I=this._renderSlices(1,D),B=this.get("duration"),E=0,H=100,J=false,C=0,G=null,F={duration:B,opacity:1};if(this._type=="barsRandom"){I=this._randomizeSlices(I);}for(;C<I.length;C++){G=A.clone(F);if(this._type=="blinds"){G.width=parseFloat(I[C].getComputedStyle("width"),10)+"px";I[C].setStyle("width","0px");H=50;}J=C==I.length-1?true:false;A.later(E,this,this._transitionSlice,[I[C],G,J]);E+=H;}this._transitionSlicesFadeLast(E);},_transitionBoxes:function(){this.get("itemIn").one(".fl-slideshow-image-img").setStyle("opacity",0);var D=this.get("boxCols"),H=this.get("boxRows"),L=D*H,I=this._type!="boxesRandom",O=this._renderSlices(H,D,I),E=this.get("duration"),G=0,M=150,N=false,F=0,P=0,C=0,B=-1,K=null,J={duration:E,opacity:1};if(!I){O=this._randomizeSlices(O);M=30;for(;F<O.length;F++){K=A.clone(J);N=F==O.length-1?true:false;A.later(G,this,this._transitionSlice,[O[F],K,N]);G+=M;}}else{while(F<L){for(P=0;P<H;P++){if(P===0){B++;C=B;}if(C>-1&&C<D){F++;K=A.clone(J);if(this._type=="boxesGrow"){K.height=parseFloat(O[P][C].getComputedStyle("height"),10)+"px";K.width=parseFloat(O[P][C].getComputedStyle("width"),10)+"px";O[P][C].setStyle("height","0px");O[P][C].setStyle("width","0px");M=50;}N=F==L-1?true:false;A.later(G,this,this._transitionSlice,[O[P][C],K,N]);}C--;}G+=M;}}this._transitionSlicesFadeLast(G);},_renderSlices:function(F,H,P){var L=this.get("itemIn"),R=parseFloat(L.getComputedStyle("height"),10),G=parseFloat(L.getComputedStyle("width"),10),T=L.one("img"),B=T.get("src"),S=parseFloat(T.getComputedStyle("height"),10),O=parseFloat(T.getComputedStyle("width"),10),D=parseFloat(T.getComputedStyle("left"),10),N=parseFloat(T.getComputedStyle("top"),10),J=0,M=0,E=Math.round(R/F),K=Math.round(G/H),Q=null,I=null,C=[];for(;M<F;M++){if(typeof P!=="undefined"&&P){C[M]=[];}for(J=0;J<H;J++){Q=A.Node.create('<div class="fl-slideshow-transition-slice"></div>');I=A.Node.create('<img src="'+B+'" />');Q.setStyles({left:(K*J)+"px",top:(E*M)+"px",width:J==H-1?(G-(K*J))+"px":K+"px",height:M==F-1?(R-(E*M))+"px":E+"px",opacity:0});I.setStyles({height:S+"px",width:O+"px",top:N-((E+(M*E))-E)+"px",left:D-((K+(J*K))-K)+"px"});Q.append(I);L.append(Q);if(typeof P!=="undefined"&&P){C[M].push(Q);}else{C.push(Q);}}}return C;},_transitionSlicesFadeLast:function(B){var C=this.get("itemOut");if(C&&!C.hasClass("fl-slideshow-image-cropped")){C.transition({duration:B/1000+this.get("duration"),opacity:0});}},_transitionSlice:function(D,B,C){var E=C?A.bind(this._transitionSlicesComplete,this):null;D.transition(B,E);},_transitionSlicesComplete:function(){var B=this.get("itemIn");B.all(".fl-slideshow-transition-slice").remove();B.one(".fl-slideshow-image-img").setStyle("opacity",1);this._transitionComplete();},_randomizeSlices:function(E){var D=E.length,C,B;if(D===0){return;}while(--D){C=Math.floor(Math.random()*(D+1));B=E[D];E[D]=E[C];E[C]=B;}return E;},_transitionKenBurns:function(){var C=this.get("kenBurnsDuration"),D=this.get("duration"),E=this.get("itemIn"),B=this.get("kenBurnsZoom");this._transitionFade();(new A.FL.SlideshowKenBurns({duration:C+D+4,image:E,zoom:B})).run();}},{ATTRS:{itemIn:{value:null},itemOut:{value:null},duration:{value:0.5},easing:{value:"ease-out"},type:{value:"fade"},bars:{value:15},boxCols:{value:8},boxRows:{value:4},kenBurnsDuration:{value:4},kenBurnsZoom:{value:1.2}},TYPES:{fade:"_transitionFade",none:"_transitionNone",slideLeft:"_transitionSlideLeft",slideRight:"_transitionSlideRight",slideUp:"_transitionSlideUp",slideDown:"_transitionSlideDown",blinds:"_transitionBars",bars:"_transitionBars",barsRandom:"_transitionBars",boxes:"_transitionBoxes",boxesRandom:"_transitionBoxes",boxesGrow:"_transitionBoxes",kenBurns:"_transitionKenBurns"},SLIDESHOW_IMAGE_TYPES:["blinds","bars","barsRandom","boxes","boxesRandom","boxesGrow","kenBurns"]});A.namespace("FL").Slideshow=A.Base.create("fl-slideshow",A.FL.SlideshowBase,[],{frame:null,nav:null,imageNavLeft:null,imageNavRight:null,thumbs:null,verticalThumbs:null,caption:null,social:null,_nextImagePreloader:null,_initialNavSettings:null,initializer:function(){var B={loadGroup:"main-preload",crop:this.get("crop"),position:this.get("position"),protect:this.get("protect"),upsize:this.get("upsize")};this._nextImagePreloader=new A.FL.SlideshowImage(B);if("ontouchstart" in window){this._removeNavButton("prev");this._removeNavButton("prevPage");this._removeNavButton("next");this._removeNavButton("nextPage");this._removeNavButton("fullscreen");}if(this._hasNavButton("fullscreen")){if(A.FL.SlideshowFullscreen.OS_SUPPORT){this.plug(A.FL.SlideshowFullscreen);}else{this._removeNavButton("fullscreen");}}},renderUI:function(){A.FL.Slideshow.superclass.renderUI.apply(this,arguments);this._renderFrame();this._renderVerticalThumbs();this._renderNavAndThumbs();this._renderImageNav();this._renderMouseNav();this._renderCaption();this._renderSocial();},bindUI:function(){var F=this.get("boundingBox"),E=this.frame.get("boundingBox"),D=this.get("navOverlay"),C=this.get("navType"),G=this._getNav(),B=this.get("clickAction");A.FL.Slideshow.superclass.bindUI.apply(this,arguments);A.Do.after(this._resizeChildWidgets,this,"resize");this.on("albumLoadStart",this._albumLoadStart,this);this.on("albumLoadComplete",this._albumLoadComplete,this);this.on("imageLoadComplete",this._loadFrame,this);if(this.get("loadingImageAlwaysEnabled")){this.frame.on("transitionInit",A.bind(this._showLoadingImageWithDelay,this));this.frame.on("transitionStart",A.bind(this._hideLoadingImage,this));}if(this.get("overlayHideOnMousemove")){if(G&&D){this.frame.once("transitionComplete",G.slideshowOverlay.hideWithTimer,G.slideshowOverlay);F.on("mousemove",A.bind(this._toggleNav,this));}if(C=="buttons"||C=="thumbs"||C=="custom"){F.on("mouseenter",A.bind(this._checkOverlaysOnMouseenter,this));F.on("mouseleave",A.bind(this._hideAllOverlays,this));}}F.delegate("click",A.bind(this._overlayCloseClick,this),".fl-slideshow-overlay-close");if(B=="gallery"||B=="url"){E.delegate("click",A.bind(this._frameClick,this),".fl-slideshow-image-img");
19
- }},syncUI:function(){var B=this.get("boundingBox");A.FL.Slideshow.superclass.syncUI.apply(this,arguments);B._node.onselectstart=function(){return false;};B._node.unselectable="on";B._node.style.MozUserSelect="none";if(this.get("clickAction")!="none"){this.frame.get("boundingBox").addClass("fl-click-action-enabled");}},unload:function(){this.pause();this.frame.unload();if(this.thumbs!==null){this.thumbs.unload();}},_albumLoadStart:function(){this._showLoadingImage();},_albumLoadComplete:function(){this.frame.once("transitionStart",A.bind(this._hideLoadingImage,this));},_resizeChildWidgets:function(){var D=this.get("boundingBox"),B=this.get("contentBox"),C=this.get("imageNavEnabled");this._renderNavAndThumbs();if(this.get("verticalThumbsOverlay")){this._resizeFrame(B.get("offsetWidth"),D.get("offsetHeight"));this._resizeVerticalThumbs();}else{this._resizeVerticalThumbs();this._resizeFrame(B.get("offsetWidth"),D.get("offsetHeight"));}if(C){this._positionImageNav();}this._positionLoadingImage();},_renderVerticalThumbs:function(){var B=this.get("responsiveThreshold"),E=this.get("boundingBox"),C=E.get("offsetWidth"),D;if(this.get("verticalThumbsEnabled")&&C>B){this.verticalThumbs=new A.FL.SlideshowThumbs(this._getVerticalThumbsConfig());this.add(this.verticalThumbs);this.verticalThumbs.render(E);D=this.verticalThumbs.get("boundingBox");D.addClass("fl-slideshow-vertical-thumbs");D.setStyle(this.get("verticalThumbsPosition"),0);E.append(D);if(this.get("verticalThumbsOverlay")){this.verticalThumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left"});this.frame.get("boundingBox").append(D);this.verticalThumbs.resize();}else{this.verticalThumbs.resize();this._adjustContentForVerticalThumbs();}this._bindVerticalThumbs();}},_getVerticalThumbsConfig:function(){var C=this.getAttrs(),B={columns:C.verticalThumbsColumns,rows:"auto",centerSinglePage:false,horizontalSpacing:C.verticalThumbsHorizontalSpacing,verticalSpacing:C.verticalThumbsVerticalSpacing,spaceEvenly:C.verticalThumbsSpaceEvenly,rightNavEnabled:false,leftNavEnabled:false,topNavEnabled:C.verticalThumbsTopNavEnabled,topNavButtons:C.verticalThumbsTopNavButtons,bottomNavEnabled:C.verticalThumbsBottomNavEnabled,bottomNavButtons:C.verticalThumbsBottomNavButtons,pauseOnClick:C.verticalThumbsPauseOnClick,transition:C.verticalThumbsTransition,transitionDirection:C.verticalThumbsTransitionDirection,transitionEasing:C.verticalThumbsTransitionEasing,touchSupport:true,imageConfig:{crop:C.verticalThumbsImageCrop,width:C.verticalThumbsImageWidth,height:C.verticalThumbsImageHeight}};return B;},_bindVerticalThumbs:function(){var B=this.get("boundingBox"),E=this.get("overlayHideOnMousemove"),D=this.get("verticalThumbsOverlay"),C=this.verticalThumbs;if(C&&E&&D){this.frame.once("transitionComplete",C.slideshowOverlay.hideWithTimer,C.slideshowOverlay);B.on("mousemove",A.bind(this._toggleVerticalThumbs,this));B.on("mouseenter",A.bind(this._toggleVerticalThumbs,this));}},_resizeVerticalThumbs:function(){var G=this.get("verticalThumbsEnabled"),H,I,F,C,D,E,B,J;if(G){H=this.get("verticalThumbsOverlay");I=this.get("responsiveThreshold");F=this.get("boundingBox");C=F.get("offsetWidth");D=this.get("navOverlay");E=this.get("navType");B=this._getNav();if(this.verticalThumbs&&C>I){this.verticalThumbs.get("boundingBox").setStyle("display","block");this.verticalThumbs.resize();if(!H){this._adjustContentForVerticalThumbs();}else{if(B&&D){J=B.get("boundingBox");if(E=="thumbs"){this._adjustOverlayForVerticalThumbs(J,true);this.thumbs.resize();}else{this._adjustOverlayForVerticalThumbs(J);}}}}else{if(!this.verticalThumbs&&C>I){this._renderVerticalThumbs();}else{if(this.verticalThumbs&&C<=I){this.verticalThumbs.get("boundingBox").setStyle("display","none");if(!H){this.get("contentBox").setStyles({left:"auto",position:"relative",right:"auto",width:"auto"});}}}}}},_toggleVerticalThumbs:function(){if(this.verticalThumbs){if(this.verticalThumbs.slideshowOverlay._visible){this.verticalThumbs.slideshowOverlay.hideWithTimer();}else{this.verticalThumbs.slideshowOverlay.show();}}},_adjustContentForVerticalThumbs:function(){var E=this.get("boundingBox"),C=this.verticalThumbs.get("boundingBox"),B=this.get("verticalThumbsPosition"),G=this.get("contentBox"),F=B=="left"?"right":"left",D=E.get("offsetWidth")-C.get("offsetWidth");G.setStyle("position","absolute");G.setStyle(F,0);G.setStyle("width",D);},_adjustOverlayForVerticalThumbs:function(F,C){var H=this.get("verticalThumbsEnabled"),I=this.get("verticalThumbsOverlay"),E=null,D=null,G=typeof C==="undefined"?"":"margin-",B=0;if(this.verticalThumbs&&H&&I){E=this.verticalThumbs.get("boundingBox");B=E.get("offsetWidth");D=this.get("verticalThumbsPosition");if(D=="left"){F.setStyle(G+"left",B+"px");}else{F.setStyle(G+"right",B+"px");}}},_renderFrame:function(){this.frame=new A.FL.SlideshowFrame({imageConfig:{loadGroup:"main",loadPriority:true,crop:this.get("crop"),cropHorizontalsOnly:this.get("cropHorizontalsOnly"),position:this.get("position"),protect:this.get("protect"),upsize:this.get("upsize"),showVideoButton:this.get("navOverlay")},touchSupport:true});this.add(this.frame);this.frame.render(this.get("contentBox"));this.frame.get("boundingBox").addClass("fl-slideshow-main-image");this._setPlayingTimerEvent(this.frame,"transitionComplete");this._loadingImageContainer=this.frame.get("contentBox");},_resizeFrame:function(D,B){var C=this.get("navOverlay"),E=this._getNav();if(E&&!C){B-=parseInt(E.get("boundingBox").getComputedStyle("height"),10);}this.frame.resize(D,B);},_loadFrame:function(G){var E=this.imageInfo.index,D=this.albumInfo.images,C=E+1>=D.length?0:E+1,F=this.frame.get("width"),B=this.frame.get("height");this.frame.load(G.imageInfo);A.FL.SlideshowImageLoader.removeGroup("main-preload");this._nextImagePreloader.preload(D[C],F,B);},_frameClick:function(){var B=this.get("clickAction"),C=this.get("clickActionUrl");if(B=="url"){window.location.href=C;}else{if(B=="gallery"){window.location.href=this.imageInfo.link;
20
- }}},_initMiniNav:function(){var B=[];if(!("ontouchstart" in window)){B.push("prev");}if(this._hasNavButton("thumbs")||this.get("navType")=="thumbs"){B.push("thumbs");}if(this._hasNavButton("caption")){B.push("caption");}if(this._hasNavButton("social")){B.push("social");}if(this._hasNavButton("buy")){B.push("buy");}if(this._hasNavButton("play")){B.push("play");}if(!("ontouchstart" in window)){B.push("next");}this._initialNavSettings={buttons:this.get("navButtons"),buttonsLeft:this.get("navButtonsLeft"),buttonsRight:this.get("navButtonsRight"),type:this.get("navType")};this._set("navButtons",B);this._set("navButtonsLeft",[]);this._set("navButtonsRight",[]);this._set("navType","buttons");},_renderNavAndThumbs:function(){var C=this.get("navType"),D=false,E,B;if(C=="buttons"||C=="thumbs"){E=this.get("boundingBox").get("offsetWidth");B=this.get("responsiveThreshold");if(E<=B&&this._initialNavSettings===null){this._initMiniNav();D=true;}else{if(E>B&&this._initialNavSettings!==null){this._set("navButtons",this._initialNavSettings.buttons);this._set("navButtonsLeft",this._initialNavSettings.buttonsLeft);this._set("navButtonsRight",this._initialNavSettings.buttonsRight);this._set("navType",this._initialNavSettings.type);this._initialNavSettings=null;D=true;}}if(D||this.nav===null){this._renderNav();}if(D||this.thumbs===null){this._renderThumbs();}else{if(this._thumbsEnabled()){this._resizeThumbs();}}if(D&&this.caption!==null){this._syncCaption();}if(D&&this.social!==null){this._syncSocial();}}},_renderNav:function(){var D=this.frame.get("boundingBox"),E=null,B=this.get("navOverlay"),C=this.get("navPosition");this._destroyNav();if(this.get("navType")=="buttons"){this.nav=new A.FL.SlideshowNav({buttons:this.get("navButtons"),buttonsLeft:this.get("navButtonsLeft"),buttonsRight:this.get("navButtonsRight")});this.add(this.nav);this.nav.render(this.get("contentBox"));E=this.nav.get("boundingBox");if(B){this.nav.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});E.setStyle("position","absolute");E.setStyle(C,"0px");}if(C=="top"){D.insert(E,"before");}else{D.insert(E,"after");}E.addClass("fl-slideshow-main-nav");}},_destroyNav:function(){if(this.nav!==null){if(this.nav.slideshowOverlay){this.nav.slideshowOverlay.destroy();}this.nav.get("boundingBox").remove();this.remove(this.nav);try{this.nav.destroy(true);}catch(B){}this.nav=null;}},_getNav:function(){var B=this.get("navType");if(B=="buttons"){return this.nav;}else{if(B=="thumbs"){return this.thumbs;}else{return null;}}},_toggleNav:function(){var B=this._getNav();if(B.slideshowOverlay){if(B.slideshowOverlay._visible){B.slideshowOverlay.hideWithTimer();}else{B.slideshowOverlay.show();}}},_renderImageNav:function(){var B;if(this.get("imageNavEnabled")){if("ontouchstart" in window){this._set("imageNavEnabled",false);}else{B=this.get("boundingBox");this.imageNavLeft=new A.FL.SlideshowNav({buttons:["prev"],useFontIcons:false});this.imageNavRight=new A.FL.SlideshowNav({buttons:["next"],useFontIcons:false});this.add(this.imageNavLeft);this.add(this.imageNavRight);this.imageNavLeft.render(this.frame.get("boundingBox"));this.imageNavRight.render(this.frame.get("boundingBox"));this.imageNavLeft.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});this.imageNavRight.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});if(this.get("overlayHideOnMousemove")){this.frame.once("transitionComplete",this.imageNavLeft.slideshowOverlay.hideWithTimer,this.imageNavLeft.slideshowOverlay);this.frame.once("transitionComplete",this.imageNavRight.slideshowOverlay.hideWithTimer,this.imageNavRight.slideshowOverlay);B.on("mousemove",A.bind(this._toggleImageNav,this));B.on("mouseenter",A.bind(this._toggleImageNav,this));}this.imageNavLeft.get("boundingBox").addClass("fl-slideshow-image-nav-left");this.imageNavRight.get("boundingBox").addClass("fl-slideshow-image-nav-right");}}},_positionImageNav:function(){var D=this.imageNavLeft.get("boundingBox"),E=this.imageNavRight.get("boundingBox"),B=D.get("offsetHeight"),C=this.frame.get("boundingBox").get("offsetHeight"),G=C/2-B/2,F={top:G+"px",display:"block"};D.setStyles(F);E.setStyles(F);this._adjustOverlayForVerticalThumbs(D);this._adjustOverlayForVerticalThumbs(E);},_toggleImageNav:function(){if(this.imageNavLeft.slideshowOverlay._visible){this.imageNavLeft.slideshowOverlay.hideWithTimer();}else{this.imageNavLeft.slideshowOverlay.show();}if(this.imageNavRight.slideshowOverlay._visible){this.imageNavRight.slideshowOverlay.hideWithTimer();}else{this.imageNavRight.slideshowOverlay.show();}},_renderMouseNav:function(){if(this.get("mouseNavEnabled")&&!("ontouchstart" in window)&&!window.navigator.msPointerEnabled){this.plug(A.FL.SlideshowMouseNav,{trigger:this.frame.get("boundingBox")});}},_thumbsEnabled:function(){var B=this.get("navType");if(B=="thumbs"){return true;}if((B=="buttons"||B=="custom")&&this._hasNavButton("thumbs")){return true;}else{return false;}},_renderThumbs:function(){var E,C,D,B;this._destroyThumbs();if(this._thumbsEnabled()){E=this.frame.get("boundingBox");C=this.get("navOverlay");D=this.get("navPosition");B=this.get("navType");this.thumbs=new A.FL.SlideshowThumbs(this._getThumbsConfig());try{this.add(this.thumbs);}catch(F){}if(B=="buttons"||B=="custom"){this.thumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left",visible:false});}else{if(B=="thumbs"&&C){this.thumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left"});}}this.thumbs.render(this.get("contentBox"));if(D=="top"){E.insert(this.thumbs.get("boundingBox"),"before");}else{E.insert(this.thumbs.get("boundingBox"),"after");}if(this.get("thumbsHideOnClick")&&B!="thumbs"){this.thumbs.on("imageClick",A.bind(this._hideThumbsOnImageClick,this));}this._syncThumbs();}},_destroyThumbs:function(){if(this.thumbs!==null){if(this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay.destroy();}this.thumbs.get("boundingBox").remove();this.remove(this.thumbs);try{this.thumbs.destroy(true);
21
- }catch(B){}this.thumbs=null;}},_syncThumbs:function(){var D=this.thumbs.get("boundingBox"),E=this.get("navOverlay"),F=this.get("navPosition"),C=this.get("navType"),B="padding"+F.charAt(0).toUpperCase()+F.slice(1),G=0;if(C=="buttons"){G=parseInt(this.nav.get("boundingBox").getComputedStyle("height"),10);D.setStyle("position","absolute");if(E){D.setStyle(B,G+"px");D.setStyle(F,"0px");}else{D.setStyle(F,G+"px");}}if(C=="custom"||(C=="thumbs"&&E)){D.setStyle("position","absolute");D.setStyle(F,"0px");}this.thumbs.resize();},_getThumbsConfig:function(){var E=this.getAttrs(),B=this.get("navType"),D={crop:E.thumbsImageCrop,width:E.thumbsImageWidth,height:E.thumbsImageHeight},C={columns:"auto",rows:1,horizontalSpacing:E.thumbsHorizontalSpacing,verticalSpacing:E.thumbsVerticalSpacing,spaceEvenly:E.thumbsSpaceEvenly,centerSinglePage:E.thumbsCenterSinglePage,pauseOnClick:E.thumbsPauseOnClick,transition:E.thumbsTransition,transitionDirection:E.thumbsTransitionDirection,transitionEasing:E.thumbsTransitionEasing,leftNavButtons:E.navButtonsLeft,rightNavButtons:E.navButtonsRight,imageConfig:D,touchSupport:true};if(B=="buttons"||B=="custom"){if("ontouchstart" in window){C.leftNavEnabled=false;C.rightNavEnabled=false;}else{C.centerSinglePage=false;C.leftNavButtons=["prevPage"];C.rightNavButtons=["nextPage"];}}return C;},_resizeThumbs:function(){if(this.thumbs){this.thumbs.resize();}},_toggleThumbs:function(){this._toggleOverlay(this.thumbs.slideshowOverlay);},_hideThumbsOnImageClick:function(){if(this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay._focus=false;this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hide();if(this.nav&&this.nav.slideshowOverlay){this.nav.slideshowOverlay.enable();}}},_renderCaption:function(){if(this._hasNavButton("caption")){this.caption=new A.FL.SlideshowCaption({lessLinkText:this.get("captionLessLinkText"),moreLinkText:this.get("captionMoreLinkText"),textLength:this.get("captionTextLength"),stripTags:this.get("captionStripTags")});this.add(this.caption);this.caption.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),visible:false,closeButton:true});this._syncCaption();}},_syncCaption:function(){var G=this.caption.get("boundingBox"),C=this.get("navOverlay"),D=this.get("navPosition"),E=this._getNav(),B="padding"+D.charAt(0).toUpperCase()+D.slice(1),F=0;G.setStyle("position","absolute");if(E){F=parseInt(E.get("boundingBox").getComputedStyle("height"),10);}if(E&&C){G.setStyle(B,F+"px");G.setStyle(D,"0px");}else{G.setStyle(D,F+"px");}},_toggleCaption:function(){this._toggleOverlay(this.caption.slideshowOverlay);},_renderSocial:function(){if(this._hasNavButton("social")){this.social=new A.FL.SlideshowSocial();this.add(this.social);this.social.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),visible:false,closeButton:true});this._syncSocial();}},_syncSocial:function(){var D=this.social.get("boundingBox"),C=this.get("navOverlay"),E=this.get("navPosition"),F=this._getNav(),B="padding"+E.charAt(0).toUpperCase()+E.slice(1),G=0;D.setStyle("position","absolute");if(F){G=parseInt(F.get("boundingBox").getComputedStyle("height"),10);}if(F&&C){D.setStyle(B,G+"px");D.setStyle(E,"0px");}else{D.setStyle(E,G+"px");}},_toggleSocial:function(){this._toggleOverlay(this.social.slideshowOverlay);},_toggleOverlay:function(C){var B=this.get("navType"),D=this._getNav();if(C._visible){if(D&&D.slideshowOverlay){D.slideshowOverlay.enable();}C.enable();C.hide();}else{if(D&&D.slideshowOverlay){D.slideshowOverlay.disable();}C.show();C.disable();}if(this.thumbs&&B!="thumbs"&&this.thumbs.slideshowOverlay!==C){this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hide();}if(this.caption&&this.caption.slideshowOverlay!==C){this.caption.slideshowOverlay.enable();this.caption.slideshowOverlay.hide();}if(this.social&&this.social.slideshowOverlay!==C){this.social.slideshowOverlay.enable();this.social.slideshowOverlay.hide();}},_overlayCloseClick:function(){if(this.nav&&this.nav.slideshowOverlay){this.nav.slideshowOverlay.enable();}if(this.thumbs&&this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay.enable();}if(this.caption){this.caption.slideshowOverlay.enable();}if(this.social){this.social.slideshowOverlay.enable();}if(this.imageNavLeft){this.imageNavLeft.slideshowOverlay.enable();this.imageNavRight.slideshowOverlay.enable();}},_hideAllOverlays:function(){if(this.nav&&this.nav.slideshowOverlay&&this.nav.slideshowOverlay._visible){this.nav.slideshowOverlay.enable();this.nav.slideshowOverlay.hideWithTimer();}if(this.thumbs&&this.thumbs.slideshowOverlay&&this.thumbs.slideshowOverlay._visible){this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hideWithTimer();}if(this.caption&&this.caption.slideshowOverlay._visible){this.caption.slideshowOverlay.enable();this.caption.slideshowOverlay.hideWithTimer();}if(this.social&&this.social.slideshowOverlay._visible){this.social.slideshowOverlay.enable();this.social.slideshowOverlay.hideWithTimer();}if(this.imageNavLeft){this.imageNavLeft.slideshowOverlay.enable();this.imageNavLeft.slideshowOverlay.hideWithTimer();this.imageNavRight.slideshowOverlay.enable();this.imageNavRight.slideshowOverlay.hideWithTimer();}},_checkOverlaysOnMouseenter:function(){var B=this.get("navType"),D=this.get("navOverlay"),E=this._getNav(),C=false;if(this.thumbs&&B!="thumbs"&&this.thumbs.slideshowOverlay._visible){C=true;this.thumbs.slideshowOverlay.disable();}else{if(this.caption&&this.caption.slideshowOverlay._visible){C=true;this.caption.slideshowOverlay.disable();}else{if(this.social&&this.social.slideshowOverlay._visible){C=true;this.social.slideshowOverlay.disable();}}}if(E&&C&&D){E.slideshowOverlay.disable();}},_hasNavButton:function(C){var B=this.get("navType");if(B=="buttons"||B=="thumbs"||B=="custom"){if(A.Array.indexOf(this.get("navButtons"),C)>-1){return true;}else{if(A.Array.indexOf(this.get("navButtonsLeft"),C)>-1){return true;}else{if(A.Array.indexOf(this.get("navButtonsRight"),C)>-1){return true;}else{return false;
22
- }}}}else{return false;}},_removeNavButton:function(D){var G=this.get("navButtons"),B=this.get("navButtonsLeft"),F=this.get("navButtonsRight"),C=this.get("verticalThumbsTopNavButtons"),E=this.get("verticalThumbsBottomNavButtons");if(A.Array.indexOf(G,D)>-1){G.splice(A.Array.indexOf(G,D),1);}if(A.Array.indexOf(B,D)>-1){B.splice(A.Array.indexOf(B,D),1);}if(A.Array.indexOf(F,D)>-1){F.splice(A.Array.indexOf(F,D),1);}if(A.Array.indexOf(C,D)>-1){C.splice(A.Array.indexOf(C,D),1);}if(A.Array.indexOf(E,D)>-1){E.splice(A.Array.indexOf(E,D),1);}this._set("navButtons",G);this._set("navButtonsLeft",B);this._set("navButtonsRight",F);this._set("verticalThumbsTopNavButtons",C);this._set("verticalThumbsBottomNavButtons",E);}},{CSS_PREFIX:"fl-slideshow",ATTRS:{clickAction:{value:"none"},clickActionUrl:{value:""},crop:{value:false},cropHorizontalsOnly:{value:false},loadingImageAlwaysEnabled:{value:true},position:{value:"center center"},protect:{value:true},upsize:{value:true},transition:{value:"fade"},transitionDuration:{value:1},transitionEasing:{value:"ease-out"},kenBurnsZoom:{value:1.2},navType:{value:"none"},navPosition:{value:"bottom"},navOverlay:{value:false},navButtons:{value:[]},navButtonsLeft:{value:[]},navButtonsRight:{value:[]},overlayHideOnMousemove:{value:true},overlayHideDelay:{value:3000},imageNavEnabled:{value:false},mouseNavEnabled:{value:false},thumbsHideOnClick:{value:true},thumbsHorizontalSpacing:{value:15},thumbsVerticalSpacing:{value:15},thumbsSpaceEvenly:{value:true},thumbsCenterSinglePage:{value:true},thumbsPauseOnClick:{value:false},thumbsTransition:{value:"slideHorizontal"},thumbsTransitionDuration:{value:0.8},thumbsTransitionEasing:{value:"ease-out"},thumbsImageCrop:{value:true},thumbsImageWidth:{value:50},thumbsImageHeight:{value:50},captionLessLinkText:{value:"Read Less"},captionMoreLinkText:{value:"Read More"},captionTextLength:{value:200},captionStripTags:{value:false},verticalThumbsEnabled:{value:false},verticalThumbsPosition:{value:"left"},verticalThumbsOverlay:{value:false},verticalThumbsColumns:{value:1},verticalThumbsTopNavEnabled:{value:false},verticalThumbsTopNavButtons:{value:["prevPage","nextPage"]},verticalThumbsBottomNavEnabled:{value:true},verticalThumbsBottomNavButtons:{value:["prevPage","nextPage"]},verticalThumbsHorizontalSpacing:{value:15},verticalThumbsVerticalSpacing:{value:15},verticalThumbsSpaceEvenly:{value:false},verticalThumbsPauseOnClick:{value:false},verticalThumbsImageCrop:{value:true},verticalThumbsImageWidth:{value:75},verticalThumbsImageHeight:{value:75},verticalThumbsTransition:{value:"slideVertical"},verticalThumbsTransitionDuration:{value:0.8},verticalThumbsTransitionEasing:{value:"ease-out"},googlePlusButtonEnabled:{value:true},likeButtonEnabled:{value:true},pinterestButtonEnabled:{value:true},tweetButtonEnabled:{value:true}}});},"2.0.0",{requires:["anim","event-mouseenter","plugin","transition","fl-event-move","fl-slideshow-css","fl-slideshow-base","fl-utils","sm-fonticon"]});YUI.add("fl-slideshow-album-loader",function(A){A.namespace("FL").SlideshowAlbumLoader=A.Base.create("fl-slideshow-album-loader",A.Base,[],{_source:null,load:function(B){this._source=B;this.fire("start");this[A.FL.SlideshowAlbumLoader.TYPES[B.type]].call(this);},_loadComplete:function(B){B=this._randomize(B);this.fire("complete",B);},_randomize:function(C){var B;if(this.get("randomize")){C.albumInfo.images.sort(function(){return 0.5-Math.random();});for(B=0;B<C.albumInfo.images.length;B++){C.albumInfo.images[B].index=B;}}return C;},_loadSmugMug:function(){var B=new A.FL.SmugMugAPI();B.on("complete",this._loadSmugMugSuccess,this);B.addParam("method","smugmug.images.get");B.addParam("AlbumID",this._source.id);B.addParam("AlbumKey",this._source.key);B.addParam("Extras","Caption,Format,FileName");if(this._source.password){B.addParam("Password",this._source.password);}if(this._source.sp){B.addParam("SitePassword",this._source.sp);}B.request();},_loadSmugMugSuccess:function(H){var J=H.Album.Images,E={},I=typeof this._source.proxy!=="undefined"?this._source.proxy:"",C="",B="",D="",K="",G=0,L=null,F=null;E.index=this._source.index;E.id=H.Album.id;E.key=H.Album.Key;E.link=H.Album.URL;E.title=this._source.title?this._source.title:"";E.images=[];C=E.link.replace("http://","").split("/").shift();C="http://"+C+"/buy/"+H.Album.id+"_"+H.Album.Key+"/";for(G=0;G<J.length;G++){B=I+H.Album.URL+"/"+J[G].id+"_"+J[G].Key;K=J[G].Format.toLowerCase();D=K=="mp4"?".jpg":"."+K;E.images[G]={};E.images[G].index=G;E.images[G].sourceType="smugmug";E.images[G].albumId=H.Album.id;E.images[G].albumKey=H.Album.Key;E.images[G].id=J[G].id;E.images[G].key=J[G].Key;E.images[G].filename=J[G].FileName;E.images[G].format=K;E.images[G].caption=J[G].Caption||"";E.images[G].link=H.Album.URL+"#"+J[G].id+"_"+J[G].Key;E.images[G].tinyURL=B+"-Ti"+D;E.images[G].thumbURL=B+"-Th"+D;E.images[G].smallURL=B+"-S"+D;E.images[G].mediumURL=B+"-M"+D;E.images[G].largeURL=B+"-L"+D;E.images[G].xlargeURL=B+"-XL"+D;E.images[G].x2largeURL=B+"-X2"+D;E.images[G].x3largeURL=B+"-X3"+D;E.images[G].buyURL=C+J[G].id+"_"+J[G].Key;E.images[G].iframe="";if(E.images[G].caption.indexOf("iframe")){L=A.Node.create("<div>"+E.images[G].caption+"</div>");F=L.one("iframe");if(F){E.images[G].iframe=F.getAttribute("src");E.images[G].caption=E.images[G].caption.replace(/<iframe.*>.*<\/iframe>/gi,"");}}}this._loadComplete({"albumInfo":E});},_loadUrls:function(){var B={},C=0;B.index=this._source.index;B.title=this._source.title?this._source.title:"";B.images=[];for(;C<this._source.urls.length;C++){B.images[C]={};B.images[C].index=C;B.images[C].sourceType="urls";B.images[C].filename=this._source.urls[C].largeURL.split("/").pop();B.images[C].format="";B.images[C].caption=this._source.urls[C].caption||"";B.images[C].link=this._source.urls[C].largeURL;B.images[C].thumbURL=this._source.urls[C].thumbURL||this._source.urls[C].largeURL;B.images[C].smallURL=this._source.urls[C].smallURL||this._source.urls[C].largeURL;B.images[C].mediumURL=this._source.urls[C].mediumURL||this._source.urls[C].largeURL;B.images[C].largeURL=this._source.urls[C].largeURL;B.images[C].xlargeURL=this._source.urls[C].xlargeURL||this._source.urls[C].largeURL;B.images[C].x2largeURL=this._source.urls[C].x2largeURL||this._source.urls[C].largeURL;B.images[C].x3largeURL=this._source.urls[C].x3largeURL||this._source.urls[C].largeURL;B.images[C].buyURL=this._source.urls[C].buyURL||"";B.images[C].iframe=this._source.urls[C].iframe||"";}this._loadComplete({"albumInfo":B});}},{ATTRS:{randomize:{value:false}},TYPES:{"smugmug":"_loadSmugMug","flickr":"_loadFlickr","picasa":"_loadPicasa","urls":"_loadUrls","html":"_loadHtml"}});},"2.0.0",{requires:["base","fl-smugmug-api"]});YUI.add("fl-slideshow-base",function(A){A.namespace("FL").SlideshowBase=A.Base.create("fl-slideshow-base",A.Widget,[A.WidgetParent],{_albumLoader:null,albums:[],albumInfo:null,albumIndex:null,imageInfo:null,imageIndex:null,lastImageIndex:null,_resizeTimer:null,_playing:false,_playingTimer:null,_playingTimerEvent:null,_loadingImage:null,_loadingImageWrap:null,_loadingImageVisible:false,_loadingImageTimer:null,_loadingImageContainer:null,_initialHeight:null,_initialWidth:null,initializer:function(){this._albumLoader=new A.FL.SlideshowAlbumLoader({randomize:this.get("randomize")});},renderUI:function(){this._renderLoadingImage();},bindUI:function(){this._albumLoader.on("complete",this._loadAlbumComplete,this);A.one(window).on("fl-slideshow-base|resize",this._delayResize,this);A.one(window).on("fl-slideshow-base|orientationchange",this._delayResize,this);A.Node.one("body").on("keydown",A.bind(this._onKey,this));},syncUI:function(){this.get("boundingBox").addClass("fl-slideshow-"+this.get("color"));this.resize();if(this.get("loadOnRender")){this.loadAlbum(this.get("defaultAlbum"),this.get("defaultImage"));}},addAlbum:function(D){var C=this.get("source"),B=C.length;C[B]=D;C[B].index=B;this.set("source",C);},loadAlbum:function(C,B){var E=this.get("source"),D=typeof B=="undefined"?0:B;this.imageIndex=null;this.lastImageIndex=null;this.fire("albumLoadStart");this.once("albumLoadComplete",A.bind(this.loadImage,this,D));if(E[C]&&E[C].type=="album-data"){this.albums[C]=E[C].data;this._loadAlbumComplete({albumInfo:this.albums[C]});}else{if(E[C]&&this.albums[C]){this._loadAlbumComplete({albumInfo:this.albums[C]});}else{this._albumLoader.load(E[C]||E[0]);}}},_loadAlbumComplete:function(B){this.albums[B.albumInfo.index]=B.albumInfo;this.albumInfo=B.albumInfo;this.albumIndex=B.albumInfo.index;this.fire("albumLoadComplete");if(this.get("autoPlay")){this._playingTimerStart();this.fire("played");this._playing=true;}},loadImage:function(B){if(this._playing){this._playingTimerStart();}B=B<0?this.albumInfo.images.length-1:B;B=B>=this.albumInfo.images.length?0:B;this.lastImageIndex=this.imageIndex;this.imageIndex=B;this.imageInfo=this.albumInfo.images[B];this.fire("imageLoadComplete",{"imageInfo":this.imageInfo});},prevImage:function(){if(this.get("pauseOnNextOrPrev")){this.pause();}this.loadImage(this.imageIndex-1);this.fire("prevImage");},nextImage:function(){if(this.get("pauseOnNextOrPrev")){this.pause();}this.loadImage(this.imageIndex+1);this.fire("nextImage");},_onKey:function(B){switch(B.keyCode){case 37:this.prevImage();break;case 39:this.nextImage();break;}},resize:function(){var E=this.get("stretchy"),D=this.get("stretchyType"),C=parseInt(A.one("body").get("winWidth"),10),B=this.get("responsiveThreshold");if(C>B&&E&&D=="window"){this._stretchyWindowResize();}else{if((C<=B)||(E&&D=="ratio")){this._stretchyRatioResize();}else{this._standardResize();}}this.fire("resize");},_standardResize:function(){var I=this.get("stretchy"),G=this.get("stretchyType"),H=this.get("boundingBox"),F=H.get("parentNode"),C=parseInt(F.getComputedStyle("height"),10),E=parseInt(F.getComputedStyle("width"),10),B=this.get("height"),D=this.get("width");if(H.hasClass("fl-fullscreen-active")){this._stretchyWindowResize();return;}else{if(I&&G=="contain"){H.setStyle("height",C+"px");H.setStyle("width",E+"px");}else{if(!A.Lang.isNumber(B)){this._stretchyRatioResize();return;}else{H.setStyle("height",B+"px");if(D){H.setStyle("width",D+"px");}else{H.setStyle("width",E+"px");}}}}},_stretchyWindowResize:function(){var G=this.get("boundingBox"),E=this.get("stretchyVerticalSpace"),D=parseInt(G.getStyle("paddingTop"),10),F=parseInt(G.getStyle("paddingBottom"),10),B=parseInt(A.one("body").get("winHeight"),10),C="";if(G.hasClass("fl-fullscreen-active")){E=0;C=parseInt(A.one("body").get("winWidth"),10)+"px";}B=(B-D-F-E)+"px";G.setStyle("height",B);G.setStyle("width",C);},_stretchyRatioResize:function(){var G=this.get("boundingBox"),J=G.get("parentNode"),H=0,F=this.get("stretchyRatio"),L=parseInt(G.getStyle("paddingTop"),10),C=parseInt(G.getStyle("paddingBottom"),10),I=parseInt(J.getComputedStyle("width"),10),E=parseInt(A.one("body").get("winHeight"),10),D=parseInt(A.one("body").get("winWidth"),10),K=I*F,B="";if(G.hasClass("fl-fullscreen-active")){K=E;B=D;}K=(K-L-C-H)+"px";G.setStyle("height",K);G.setStyle("width",B);},_delayResize:function(){if(this._resizeTimer){this._resizeTimer.cancel();}this._resizeTimer=A.later(300,this,this.resize);},play:function(){this._playingTimer=A.later(this.get("speed"),this,this._playingTimerComplete);this.fire("played");this._playing=true;},pause:function(){this._playingTimerCancel();this.fire("paused");this._playing=false;},_setPlayingTimerEvent:function(C,B){this._playingTimerEvent={"obj":C,"e":B};},_playingTimerStart:function(B){this._playingTimerCancel();if(!B&&this._playingTimerEvent!==null){this._playingTimerEvent.obj.once("fl-slideshow-base|"+this._playingTimerEvent.e,A.bind(this._playingTimerStart,this));}else{this._playingTimer=A.later(this.get("speed"),this,this._playingTimerComplete);}},_playingTimerComplete:function(){this.loadImage(this.imageIndex+1);this.fire("playingTimerComplete");},_playingTimerCancel:function(){if(this._playingTimer){this._playingTimer.cancel();}if(this._playingTimerEvent){this._playingTimerEvent.obj.detach("fl-slideshow-base|"+this._playingTimerEvent.e);}},_renderLoadingImage:function(){var C={lines:11,length:6,width:2,radius:7,color:"",speed:1,trail:60,shadow:false},B=A.merge(C,this.get("loadingImageSettings"));if(this.get("loadingImageEnabled")){if(B.color===""){B.color=this._colorToHex(A.one("body").getStyle("color"));}this._loadingImage=new A.FL.Spinner(B);this._loadingImageWrap=A.Node.create('<div class="fl-loading-image"></div>');this._loadingImageWrap.setStyles({position:"absolute","z-index":"1000"});}},_showLoadingImage:function(){if(this._loadingImage&&!this._loadingImageVisible){this._loadingImageVisible=true;this._loadingImage.spin();this._loadingImageWrap.insert(this._loadingImage.el);
23
  if(this._loadingImageContainer!==null){this._loadingImageContainer.insert(this._loadingImageWrap);}else{this.get("contentBox").insert(this._loadingImageWrap);}this._positionLoadingImage();}},_showLoadingImageWithDelay:function(){if(this._loadingImage){this._loadingImageTimer=A.later(1000,this,this._showLoadingImage);}},_hideLoadingImage:function(){if(this._loadingImageTimer){this._loadingImageTimer.cancel();this._loadingImageTimer=null;}if(this._loadingImage&&this._loadingImageVisible){this._loadingImageVisible=false;this._loadingImage.stop();this._loadingImageWrap.remove();}},_positionLoadingImage:function(){if(this._loadingImage&&this._loadingImageVisible){var F=this._loadingImageWrap,B=parseInt(F.getComputedStyle("height"),10),G=parseInt(F.getComputedStyle("width"),10),E=F.get("parentNode"),C=parseInt(E.getComputedStyle("height"),10),D=parseInt(E.getComputedStyle("width"),10),I=(D-G)/2,H=(C-B)/2;F.setStyles({left:I+"px",top:H+"px"});A.one(this._loadingImage.el).setStyles({left:"50%",top:"50%"});}},_colorToHex:function(C){var F,G,E,B,D;if(C.substr(0,1)==="#"){return C;}F=/(.*?)rgb\((\d+), (\d+), (\d+)\)/.exec(C);G=parseInt(F[2],10);E=parseInt(F[3],10);B=parseInt(F[4],10);D=B|(E<<8)|(G<<16);D=D.toString(16);if(D==="0"){D="000";}return F[1]+"#"+D;}},{CSS_PREFIX:"fl-slideshow-base",ATTRS:{color:{value:"dark",writeOnce:true},source:{value:[],setter:function(C){if(C.constructor==Object){C=[C];}for(var B=0;B<C.length;B++){C[B].index=B;}return C;}},defaultAlbum:{value:0},defaultImage:{value:0},loadOnRender:{value:true},autoPlay:{value:true},pauseOnNextOrPrev:{value:true},randomize:{value:false},speed:{value:4000},responsiveThreshold:{value:600},stretchy:{value:false},stretchyType:{value:"ratio"},stretchyVerticalSpace:{value:0},stretchyRatio:{value:0.7},loadingImageEnabled:{value:true},loadingImageSettings:{value:{}}}});},"2.0.0",{requires:["node","base","widget","widget-parent","widget-child","fl-slideshow-album-loader","fl-spinner"]});YUI.add("fl-smugmug-api",function(A){A.namespace("FL").SmugMugAPI=A.Base.create("fl-smugmug-api",A.Base,[],{_sessionID:null,_requestURL:null,initializer:function(){this._resetRequestURL();},addParam:function(B,C){this._requestURL=this._requestURL+"&"+B+"="+C;},loginAnon:function(){this.addParam("method","smugmug.login.anonymously");this.once("complete",this._loginAnonComplete);this.request();},_loginAnonComplete:function(B){if(B.Login){this._sessionID=B.Login.Session.id;}},request:function(){this.addParam("Callback","{callback}");A.jsonp(this._requestURL,{on:{success:this._requestComplete,timeout:function(){}},context:this,timeout:60000,args:[]});},_requestComplete:function(B){this._resetRequestURL();this.fire("complete",B);},_resetRequestURL:function(){this._requestURL=this.get("apiURL")+"?APIKey="+this.get("apiKey");if(this._sessionID){this.addParam("SessionID",this._sessionID);}}},{ATTRS:{apiURL:{value:"https://api.smugmug.com/services/api/json/1.3.0/"},apiKey:{value:"7w6kuU5Ee6KSgRRExf2KLgppdkez9JD2"}}});},"2.0.0",{requires:["base","jsonp"]});YUI.add("fl-spinner",function(A){(function(e,E,L){var B="width",Q="length",g="radius",Z="lines",S="trail",V="color",q="opacity",i="speed",a="shadow",k="style",D="height",F="left",G="top",H="px",T="childNodes",p="firstChild",I="parentNode",d="position",J="relative",b="absolute",u="animation",W="transform",N="Origin",f="Timeout",P="coord",m="#000",X=k+"Sheets",M="webkit0Moz0ms0O".split(0),t={},o;function s(w,y){var v=~~((w[Q]-1)/2);for(var x=1;x<=v;x++){y(w[x*2-1],w[x*2]);}}function n(v){var w=E.createElement(v||"div");s(arguments,function(y,x){w[y]=x;});return w;}function c(v,x,w){if(w&&!w[I]){c(v,w);}v.insertBefore(x,w||null);return v;}c(E.getElementsByTagName("head")[0],n(k));var O=E[X][E[X][Q]-1];function C(AA,v){var x=[q,v,~~(AA*100)].join("-"),w="{"+q+":"+AA+"}",y;if(!t[x]){for(y=0;y<M[Q];y++){try{O.insertRule("@"+(M[y]&&"-"+M[y].toLowerCase()+"-"||"")+"keyframes "+x+"{0%{"+q+":1}"+v+"%"+w+"to"+w+"}",O.cssRules[Q]);}catch(z){}}t[x]=1;}return x;}function R(y,z){var x=y[k],v,w;if(x[z]!==L){return z;}z=z.charAt(0).toUpperCase()+z.slice(1);for(w=0;w<M[Q];w++){v=M[w]+z;if(x[v]!==L){return v;}}}function h(v){s(arguments,function(x,w){v[k][R(v,x)||x]=w;});return v;}function Y(v){s(arguments,function(x,w){if(v[x]===L){v[x]=w;}});return v;}var U=function U(v){this.opts=Y(v||{},Z,12,S,100,Q,7,B,5,g,10,V,m,q,1/4,i,1);},K=U.prototype={spin:function(AB){var AD=this,w=AD.el=AD[Z](AD.opts);if(AB){c(AB,h(w,F,~~(AB.offsetWidth/2)+H,G,~~(AB.offsetHeight/2)+H),AB[p]);}if(!o){var v=AD.opts,y=0,z=20/v[i],AA=(1-v[q])/(z*v[S]/100),AC=z/v[Z];(function x(){y++;for(var AE=v[Z];AE;AE--){var AF=Math.max(1-(y+AE*AC)%z*AA,v[q]);AD[q](w,v[Z]-AE,AF,v);}AD[f]=AD.el&&e["set"+f](x,50);})();}return AD;},stop:function(){var v=this,w=v.el;e["clear"+f](v[f]);if(w&&w[I]){w[I].removeChild(w);}v.el=L;return v;}};K[Z]=function(AA){var y=h(n(),d,J),x=C(AA[q],AA[S]),w=0,v;function z(AB,AC){return h(n(),d,b,B,(AA[Q]+AA[B])+H,D,AA[B]+H,"background",AB,"boxShadow",AC,W+N,F,W,"rotate("+~~(360/AA[Z]*w)+"deg) translate("+AA[g]+H+",0)","borderRadius","100em");}for(;w<AA[Z];w++){v=h(n(),d,b,G,1+~(AA[B]/2)+H,W,"translate3d(0,0,0)",u,x+" "+1/AA[i]+"s linear infinite "+(1/AA[Z]/AA[i]*w-1/AA[i])+"s");if(AA[a]){c(v,h(z(m,"0 0 4px "+m),G,2+H));}c(y,c(v,z(AA[V],"0 0 1px rgba(0,0,0,.1)")));}return y;};K[q]=function(w,v,x){w[T][v][k][q]=x;};var r="behavior",l="url(#default#VML)",j="group0roundrect0fill0stroke".split(0);(function(){var w=h(n(j[0]),r,l),v;if(!R(w,W)&&w.adj){for(v=0;v<j[Q];v++){O.addRule(j[v],r+":"+l);}K[Z]=function(){var AE=this.opts,AC=AE[Q]+AE[B],AA=2*AC;function x(){return h(n(j[0],P+"size",AA+" "+AA,P+N,-AC+" "+-AC),B,AA,D,AA);}var AB=x(),AD=~(AE[Q]+AE[g]+AE[B])+H,z;function y(AG,AF,AH){c(AB,c(h(x(),"rotation",360/AE[Z]*AG+"deg",F,~~AF),c(h(n(j[1],"arcsize",1),B,AC,D,AE[B],F,AE[g],G,-AE[B]/2,"filter",AH),n(j[2],V,AE[V],q,AE[q]),n(j[3],q,0))));}if(AE[a]){for(z=1;z<=AE[Z];z++){y(z,-2,"progid:DXImage"+W+".Microsoft.Blur(pixel"+g+"=2,make"+a+"=1,"+a+q+"=.3)");}}for(z=1;z<=AE[Z];z++){y(z);}return c(h(n(),"margin",AD+" 0 0 "+AD,d,J),AB);};K[q]=function(y,x,AA,z){z=z[a]&&z[Z]||0;y[p][T][x+z][p][p][q]=AA;};}else{o=R(w,u);}})();A.namespace("FL").Spinner=U;})(window,document);},"2.0.0");YUI.add("fl-utils",function(A){A.namespace("FL").Utils={cssSupport:function(F){var B=document.body||document.documentElement,E=B.style,C=["Moz","Webkit","Khtml","O","ms","Icab"],D=0;if(F=="transform"&&A.UA.gecko&&A.UA.gecko<4){return false;}if(F=="transform"&&A.UA.opera>0){return false;}if(F=="transform"&&A.UA.ie>0&&A.UA.ie<10){return false;}if(typeof E=="undefined"){return false;}if(typeof E[F]=="string"){return true;}F=F.charAt(0).toUpperCase()+F.substr(1);for(;D<C.length;D++){if(typeof E[C[D]+F]=="string"){return true;}}}};},"2.0.0");
1
+
2
  /**
3
  * Slideshow JS Bundle
4
  *
15
  }C.insert(B);},_closeButtonClick:function(){var B=this.get("host").get("boundingBox");B.transition(this._hideProps,A.bind(this._hideComplete,this));},_setFocusOnMouseenter:function(){this._focus=true;},_setFocusOnMouseleave:function(){this._focus=false;},disable:function(){this._disabled=true;},enable:function(){this._disabled=false;},show:function(){var C=this.get("host").get("boundingBox"),B=this.get("hideStyle");if(this._disabled){return;}if(B=="display"){C.setStyle("display","block");}else{if(B=="left"){C.setStyle("left","auto");}}C.transition(this._showProps,A.bind(this._showComplete,this));this.fire("showStart");},_showComplete:function(){this._visible=true;this.hideWithTimer();this.fire("showComplete");},hide:function(){if(this._focus||this._disabled){return;}var B=this.get("host").get("boundingBox");B.transition(this._hideProps,A.bind(this._hideComplete,this));this.fire("hideStart");},hideWithTimer:function(){this._hideTimerCancel();this._hideTimer=A.later(this.get("hideDelay"),this,this.hide);},_hideTimerCancel:function(){if(this._hideTimer){this._hideTimer.cancel();this._hideTimer=null;}},_hideComplete:function(){var C=this.get("host").get("boundingBox"),B=this.get("hideStyle");if(B=="display"){C.setStyle("display","none");}else{if(B=="left"){C.setStyle("left","-99999px");}}this._visible=false;this.fire("hideComplete");}},{NS:"slideshowOverlay",ATTRS:{closeButton:{value:false,writeOnce:true},hideDelay:{value:3000,writeOnce:true},hideStyle:{value:"display",writeOnce:true},visible:{value:true,writeOnce:true}}});A.namespace("FL").SlideshowSocial=A.Base.create("fl-slideshow-social",A.Widget,[A.WidgetChild],{_buttons:null,renderUI:function(){this._buttons={};if(this.get("root").get("googlePlusButtonEnabled")){this._renderGooglePlusButton();}},bindUI:function(){var B=this.get("root");if(B.get("likeButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateLikeButton,this));}if(B.get("tweetButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateTweetButton,this));}if(B.get("googlePlusButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateGooglePlusButton,this));}if(B.get("pinterestButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updatePinterestButton,this));}},_updateLikeButton:function(){var G=null,C=this.get("contentBox"),E=this.get("root"),F=E.albumIndex,D=E.get("source")[F],B=E.imageInfo;if(this._buttons.like){this._buttons.like.remove();this._buttons.like=null;}if(D.type=="smugmug"){G="http://www.facebook.com/plugins/like.php?";G+="href="+"http://www.smugmug.com/services/graph/gallery/";G+=D.id+"_"+D.key+"/"+B.id+"_"+B.key;}else{G="http://www.facebook.com/plugins/like.php?";G+="href="+encodeURIComponent(B.largeURL);}G+="&send=false";G+="&layout=button_count";G+="&width=90";G+="&show_faces=false";G+="&action=like";G+="&colorscheme=light";G+="&height=21";this._buttons.like=A.Node.create('<iframe src="'+G+'" scrolling="no" frameborder="0" allowTransparency="true"></iframe>');this._buttons.like.setStyles({overflow:"hidden",width:"90px",height:"21px"});C.appendChild(this._buttons.like);},_updateTweetButton:function(){var D=null,C=this.get("root").imageInfo,B=this.get("contentBox");if(this._buttons.tweet){this._buttons.tweet.remove();this._buttons.tweet=null;}D="https://platform.twitter.com/widgets/tweet_button.html?";D+="url="+encodeURIComponent(C.largeURL);D+="&count=none";this._buttons.tweet=A.Node.create('<iframe src="'+D+'" scrolling="no" frameborder="0" allowTransparency="true"></iframe>');this._buttons.tweet.setStyles({overflow:"hidden",width:"90px",height:"21px"});B.appendChild(this._buttons.tweet);},_renderGooglePlusButton:function(){var B,C;B=document.createElement("script");B.type="text/javascript";B.src="https://apis.google.com/js/plusone.js";C=document.getElementsByTagName("head")[0];C.parentNode.appendChild(B);},_updateGooglePlusButton:function(){var C=this.get("root").imageInfo,B=this.get("contentBox"),D=typeof D=="undefined"?null:D;if(this._buttons.plus){this._buttons.plus.remove();this._buttons.plus=null;}if(D!==null){this._buttons.plus=A.Node.create("<div></div>");B.appendChild(this._buttons.plus);D.plusone.render(this._buttons.plus._node,{href:encodeURIComponent(C.largeURL),annotation:"bubble",size:"medium"});}},_updatePinterestButton:function(){var D="http://pinterest.com/pin/create/button/",C=this.get("root").imageInfo,B=this.get("contentBox");if(this._buttons.pin){this._buttons.pin.remove();this._buttons.pin=null;}D+="?url="+encodeURIComponent(window.location.href);D+="&media="+encodeURIComponent(C.mediumURL);D+="&description="+encodeURIComponent(C.caption);this._buttons.pin=A.Node.create("<a></a>");this._buttons.pin.setAttribute("data-pin-config","none");this._buttons.pin.setAttribute("data-pin-do","buttonPin");this._buttons.pin.setAttribute("href",D);this._buttons.pin.setAttribute("target","_blank");this._buttons.pin.set("innerHTML",'<img src="http://assets.pinterest.com/images/pidgets/pin_it_button.png" border="0" />');B.appendChild(this._buttons.pin);}},{CSS_PREFIX:"fl-slideshow-social",ATTRS:{}});A.namespace("FL").SlideshowThumbs=A.Base.create("fl-slideshow-thumbs",A.Widget,[A.WidgetParent,A.WidgetChild],{_clipBox:null,_pagesBox:null,_activePageBox:null,_activePageIndex:0,_nextPageBox:null,_activeImages:null,_nextImages:null,_prevImages:null,_leftNav:null,_rightNav:null,_topNav:null,_bottomNav:null,_bbHeight:0,_bbWidth:0,_cbWidth:0,_clipBoxMarginLeft:0,_clipBoxTop:0,_colsPerPage:0,_rowsPerPage:0,_imagesPerPage:0,_numPages:0,_pageHeight:0,_pageWidth:0,_horizontalSpacing:0,_verticalSpacing:0,_leftNavWidth:0,_rightNavWidth:0,_transition:null,_transitioning:false,_transitionDirection:"next",_gestures:null,initializer:function(){this._activeImages=[];this._nextImages=[];this._prevImages=[];},renderUI:function(){this._renderBoxes();this._renderNavs();},bindUI:function(){var B=this.get("root"),D=this.get("id"),C=this.get("transition");B.on(D+"|albumLoadComplete",this._albumLoadComplete,this);if("ontouchstart" in window&&this.get("touchSupport")){this._gestures=new A.FL.SlideshowGestures({direction:C=="slideVertical"?"vertical":"horizontal",activeItem:this._activePageBox,nextItem:this._nextPageBox});
16
  this._gestures.on("moveStart",this._gesturesMoveStart,this);this._gestures.on("endComplete",this._gesturesEndComplete,this);}},syncUI:function(){this._syncBoxes();this._syncNavs();},destructor:function(){var B=this.get("root"),C=this.get("id");B.detach(C+"|*");A.FL.SlideshowImageLoader.removeGroup("thumbs");},unload:function(){var B=this.get("root"),D=this.get("id"),C=0;B.detach(D+"|imageLoadComplete");A.FL.SlideshowImageLoader.removeGroup("thumbs");for(;C<this._activeImages.length;C++){this._activeImages[C].unload();}},resize:function(){this._setSizeInfo();this._togglePageButtons();this._resizeBoxes();this._resizeNavs();if(this.get("root").albumInfo){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._renderActivePage();this._preloadNextPage();this._preloadPrevPage();}if(this._gestures&&this._numPages<2){this._gestures.disable();}else{if(this._gestures){this._gestures.enable();}}},prevPage:function(){if(this._transitioning){return;}this._transitionStart("prev");},nextPage:function(){if(this._transitioning){return;}this._transitionStart("next");},_albumLoadComplete:function(){var B=this.get("root"),C=this.get("id");B.once(C+"|imageLoadComplete",this.resize,this);B.on(C+"|imageLoadComplete",this._imageLoadComplete,this);},_imageLoadComplete:function(){var B=this.get("root").albumInfo,E=A.one(".fl-slideshow-image-active"),F=E?E._imageInfo:null,D=null,C=this.get("root").imageInfo;this._setActiveImage(this._activeImages);D=A.one(".fl-slideshow-image-active");if(E&&!D){if(C.index===0&&F.index===B.images.length-1){this.nextPage();}else{if(F.index===0&&C.index===B.images.length-1){this.prevPage();}else{if(F.index<C.index){this.nextPage();}else{if(F.index>C.index){this.prevPage();}}}}}},_renderBoxes:function(){this._clipBox=A.Node.create("<div></div>");this._clipBox.addClass("fl-slideshow-thumbs-clip");this.get("contentBox").insert(this._clipBox);this._pagesBox=A.Node.create("<div></div>");this._pagesBox.addClass("fl-slideshow-thumbs-pages");this._clipBox.insert(this._pagesBox);this._activePageBox=A.Node.create("<div></div>");this._activePageBox.addClass("fl-slideshow-thumbs-page");this._pagesBox.insert(this._activePageBox);this._nextPageBox=A.Node.create("<div></div>");this._nextPageBox.addClass("fl-slideshow-thumbs-page");this._pagesBox.insert(this._nextPageBox);},_syncBoxes:function(){this._activePageBox.setStyle("left","0");this._nextPageBox.setStyle("left","-9999px");},_resizeBoxes:function(){this.set("width",this._bbWidth);this.set("height",this._bbHeight);this.get("contentBox").setStyle("width",this._cbWidth+"px");this._clipBox.setStyle("width",this._pageWidth+"px");this._clipBox.setStyle("height",this._pageHeight+"px");this._clipBox.setStyle("padding",this._verticalSpacing+"px 0 0 "+this._horizontalSpacing+"px ");this._clipBox.setStyle("margin","0 0 0 "+this._clipBoxMarginLeft+"px");this._clipBox.setStyle("top",this._clipBoxTop);this._pagesBox.setStyle("width",this._pageWidth+"px");this._pagesBox.setStyle("height",this._pageHeight+"px");this._activePageBox.setStyle("width",this._pageWidth+"px");this._activePageBox.setStyle("height",this._pageHeight+"px");this._nextPageBox.setStyle("width",this._pageWidth+"px");this._nextPageBox.setStyle("height",this._pageHeight+"px");},_renderActivePage:function(){var E=0,D=this.get("root"),C=this._imagesPerPage*this._activePageIndex,F=C+this._imagesPerPage,B=D.albumInfo.images;this._clearActiveImage();for(;E<this._activeImages.length;E++){this._activeImages[E].remove();this._activeImages[E].unload();this._activeImages[E].get("boundingBox")._imageInfo=null;this._activeImages[E].get("boundingBox").remove();}for(E=0;C<F;C++){if(!B[C]){break;}this._renderImage(this._activeImages,E,this._activePageBox,B[C]);E++;}this._setActiveImage(this._activeImages);},_renderNextPage:function(){var B=0,C=this._transitionDirection=="next"?this._nextImages:this._prevImages;this._nextPageBox.get("children").remove();for(;B<C.length;B++){if(C[B]._imageInfo){this._renderImage(C,B,this._nextPageBox,C[B]._imageInfo);}else{break;}}this._setActiveImage(C);},_preloadNextPage:function(){var B=this._activePageIndex+1>=this._numPages?0:this._activePageIndex+1;this._preloadPage(B,this._nextImages);},_preloadPrevPage:function(){var B=this._activePageIndex-1<0?this._numPages-1:this._activePageIndex-1;this._preloadPage(B,this._prevImages);},_preloadPage:function(E,D){var F=0,I=this.get("root"),H=I.albumInfo.images,C=E*this._imagesPerPage,G=C+this._imagesPerPage,J=this.get("imageConfig"),B=J.width,K=J.height;if(this._numPages>1){for(;F<D.length;F++){D[F].remove();D[F].unload();}for(F=0;C<G;C++){if(!H[C]){continue;}this._renderImage(D,F);D[F].preload(H[C],B,K);F++;}}},_renderImage:function(G,E,F,B){var C=null,D=this.get("imageConfig");if(typeof G[E]=="undefined"){D.loadGroup="thumbs";D.useThumbSizes=true;D.loadVideos=false;G[E]=new A.FL.SlideshowImage(D);C=G[E].get("boundingBox");C.on("click",this._imageClick,this);C.on("mouseover",this._imageMouseover,this);C.on("mouseout",this._imageMouseout,this);}C=G[E].get("boundingBox");C.setStyle("margin","0 "+this._horizontalSpacing+"px "+this._verticalSpacing+"px 0");if(F){this._childrenContainer=F;this.add(G[E]);G[E].resize(D.width,D.height);}if(B){G[E].load(B);C._imageInfo=B;}},_uiAddChild:function(C,B){C.render(B);B.appendChild(C.get("boundingBox"));},_imageClick:function(C){var B=this.get("root");if(this.get("pauseOnClick")){B.pause();}B.loadImage(C.currentTarget._imageInfo.index);this.fire("imageClick");},_setActiveImage:function(C){var B=0;this._clearActiveImage();for(;B<C.length;B++){if(C[B]._imageInfo){if(C[B]._imageInfo.index==this.get("root").imageInfo.index){C[B].get("boundingBox").addClass("fl-slideshow-image-active");break;}}}},_clearActiveImage:function(){var B=A.one(".fl-slideshow-image-active");if(B){B.removeClass("fl-slideshow-image-active");}},_getTransition:function(){var B=this.get("transition");if(B=="slideHorizontal"&&this._transitionDirection=="next"){return"slideLeft";}else{if(B=="slideHorizontal"&&this._transitionDirection=="prev"){return"slideRight";
17
  }else{if(B=="slideVertical"&&this._transitionDirection=="next"){return"slideUp";}else{if(B=="slideVertical"&&this._transitionDirection=="prev"){return"slideDown";}}}}return B;},_transitionStart:function(B){if(this._numPages>1){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._transitionDirection=B;this._transitioning=true;this._nextPageBox.setStyle("left","0px");this._renderNextPage();this._transition=new A.FL.SlideshowTransition({itemIn:this._nextPageBox,itemOut:this._activePageBox,type:this._getTransition(),duration:this.get("transitionDuration"),easing:this.get("transitionEasing")});this._transition.once("complete",this._transitionComplete,this);this._transition.run();if(this._gestures){this._gestures.disable();}}},_transitionComplete:function(){this._swapPageRefs();this._transitioning=false;this._transitionDirection="";this._transition=null;if(this._gestures){this._gestures.enable();}this.fire("transitionComplete");},_gesturesMoveStart:function(B){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._transitionDirection=B.direction;this._renderNextPage();},_gesturesEndComplete:function(){this._swapPageRefs();this._transitionDirection="";this.fire("transitionComplete");},_swapPageRefs:function(){var B=this._activePageBox,C=this._activeImages;this._activePageBox=this._nextPageBox;this._nextPageBox=B;this._nextPageBox.setStyle("left","-9999px");if(this._transitionDirection=="next"){this._activeImages=this._nextImages;this._nextImages=C;}else{this._activeImages=this._prevImages;this._prevImages=C;}if(this._transitionDirection=="next"&&this._activePageIndex+1<this._numPages){this._activePageIndex++;}else{if(this._transitionDirection=="next"){this._activePageIndex=0;}else{if(this._transitionDirection=="prev"&&this._activePageIndex-1>-1){this._activePageIndex--;}else{if(this._transitionDirection=="prev"){this._activePageIndex=this._numPages-1;}}}}if(this._gestures){this._gestures.set("activeItem",this._activePageBox);this._gestures.set("nextItem",this._nextPageBox);}this._preloadNextPage();this._preloadPrevPage();},_renderNavs:function(){var D=this.get("topNavButtons"),C=this.get("rightNavButtons"),B=this.get("bottomNavButtons"),E=this.get("leftNavButtons");if(this.get("topNavEnabled")&&D.length>0){this._topNav=new A.FL.SlideshowNav({buttons:D});this._topNav.get("boundingBox").addClass("fl-slideshow-thumbs-top-nav");this.add(this._topNav);this._topNav.render(this.get("contentBox"));this._clipBox.insert(this._topNav.get("boundingBox"),"before");this._bindNavEvents(this._topNav);}if(this.get("rightNavEnabled")&&C.length>0){this._rightNav=new A.FL.SlideshowNav({buttons:C});this._rightNav.get("boundingBox").addClass("fl-slideshow-thumbs-right-nav");this.add(this._rightNav);this._rightNav.render(this.get("contentBox"));this._bindNavEvents(this._rightNav);}if(this.get("bottomNavEnabled")&&B.length>0){this._bottomNav=new A.FL.SlideshowNav({buttons:B});this._bottomNav.get("boundingBox").addClass("fl-slideshow-thumbs-bottom-nav");this.add(this._bottomNav);this._bottomNav.render(this.get("contentBox"));this._bindNavEvents(this._bottomNav);}if(this.get("leftNavEnabled")&&E.length>0){this._leftNav=new A.FL.SlideshowNav({buttons:E});this._leftNav.get("boundingBox").addClass("fl-slideshow-thumbs-left-nav");this.add(this._leftNav);this._leftNav.render(this.get("contentBox"));this._bindNavEvents(this._leftNav);}},_syncNavs:function(){var D,B,C;if(this._rightNav){D=this._rightNav.get("boundingBox");D.setStyle("position","absolute");D.setStyle("top","0px");D.setStyle("right","0px");}if(this._bottomNav){B=this._bottomNav.get("boundingBox");B.setStyle("position","absolute");B.setStyle("bottom","0px");B.setStyle("width","100%");}if(this._leftNav){C=this._leftNav.get("boundingBox");C.setStyle("position","absolute");C.setStyle("top","0px");C.setStyle("left","0px");}},_resizeNavs:function(){var D,C,B;if(this._rightNav){D=this._rightNav.get("boundingBox");B=this._bbHeight/2-parseInt(D.getComputedStyle("height"),10)/2;D.setStyle("marginTop",B+"px");}if(this._leftNav){C=this._leftNav.get("boundingBox");B=this._bbHeight/2-parseInt(C.getComputedStyle("height"),10)/2;C.setStyle("marginTop",B+"px");}},_bindNavEvents:function(B){if(B._buttons.prevPage){B._buttons.prevPage.on("click",this.prevPage,this);}if(B._buttons.nextPage){B._buttons.nextPage.on("click",this.nextPage,this);}B.on("resize",this.resize,this);},_togglePageButtons:function(){var B=A.all(".fl-slideshow-nav-prevPage, .fl-slideshow-nav-nextPage"),C=B.getStyle("display")[0];if(this._numPages==1&&C=="inline-block"){B.setStyle("display","none");this._setSizeInfo();}else{if(this._numPages>1&&C=="none"){B.setStyle("display","inline-block");this._setSizeInfo();}}},_setSizeInfo:function(){var V=this.get("root"),k=this.get("boundingBox"),L=k.getStyle("position"),J=parseInt(k.getStyle("marginLeft"),10),B=parseInt(k.getStyle("marginRight"),10),X=parseInt(k.getStyle("marginTop"),10),I=parseInt(k.getStyle("marginBottom"),10),m=parseInt(k.getStyle("paddingLeft"),10),c=parseInt(k.getStyle("paddingRight"),10),i=parseInt(k.getStyle("paddingTop"),10),f=parseInt(k.getStyle("paddingBottom"),10),F=k.get("parentNode"),Q=parseInt(F.getComputedStyle("width"),10),d=parseInt(F.getComputedStyle("height"),10),Y=Q-m-c-J-B,T=d-i-f-X-I,Z=Y,R=Y,P=T,G=this.get("columns"),h=this.get("rows"),K=this.get("imageConfig"),C=this.get("horizontalSpacing"),O=this.get("verticalSpacing"),H=this.get("spaceEvenly"),W=this.get("centerSinglePage"),j=0,U=0,e=0,S=0,M=G,a=h,D=0,l=1,b=0,g=0,E=0,N=0;k.setStyle("position","relative");if(!isNaN(G)){Y=R=G*(K.width+C)+C;}if(!isNaN(h)){T=P=h*(K.height+O)+O;}if(this._leftNav){j=parseInt(this._leftNav.get("boundingBox").getComputedStyle("width"),10);if(isNaN(G)){R-=j;}else{Y+=j;}}if(this._rightNav){U=parseInt(this._rightNav.get("boundingBox").getComputedStyle("width"),10);if(isNaN(G)){R-=U;}else{Y+=U;}}if(this._topNav){e=parseInt(this._topNav.get("boundingBox").getComputedStyle("height"),10);if(isNaN(h)){P-=e;}else{T+=e;}}if(this._bottomNav){S=parseInt(this._bottomNav.get("boundingBox").getComputedStyle("height"),10);
18
+ if(isNaN(h)){P-=S;}else{T+=S;}}if(isNaN(G)){M=Math.floor(R/(K.width+C));M=M<1?1:M;}if(isNaN(h)){a=Math.floor(P/(K.height+O));a=a<1?1:a;}D=M*a;if(V.albumInfo){l=Math.ceil(V.albumInfo.images.length/D);}if(isNaN(G)&&H){C=Math.floor((R-(K.width*M))/(M+1));}if(isNaN(h)&&H){O=Math.floor((P-(K.height*a))/(a+1));}if(V.albumInfo&&W&&l==1&&a==1){Z=V.albumInfo.images.length*K.width;Z+=C*(V.albumInfo.images.length+1);if(this._leftNav){Z+=j;}if(this._rightNav){Z+=U;}}else{Z=Y;}if(V.albumInfo&&W&&l==1&&a==1){R=V.albumInfo.images.length*K.width;R+=C*V.albumInfo.images.length;}else{R=M*(K.width+C);}P=a*(K.height+O);if(l<2){b=j;}else{E=Y;if(this._rightNav){E-=U;}if(this._leftNav){E-=j;b=j+(E-R-C)/2;}else{b=(E-R-C)/2;}}if(l>1&&!H){N=T;if(this._topNav){N-=e;}if(this._bottomNav){N-=S;}g=(N-(O+P))/2;}this._bbHeight=T;this._bbWidth=Y;this._cbWidth=Z;this._clipBoxMarginLeft=b;this._clipBoxTop=g;this._colsPerPage=M;this._rowsPerPage=a;this._imagesPerPage=D;this._numPages=l;this._pageHeight=P;this._pageWidth=R;this._leftNavWidth=j;this._rightNavWidth=U;this._horizontalSpacing=C;this._verticalSpacing=O;this._activePageIndex=Math.floor(V.imageIndex/this._imagesPerPage);k.setStyle("position",L);}},{CSS_PREFIX:"fl-slideshow-thumbs",ATTRS:{columns:{value:"auto"},rows:{value:"auto"},horizontalSpacing:{value:15},verticalSpacing:{value:15},spaceEvenly:{value:true},centerSinglePage:{value:true},pauseOnClick:{value:false},transition:{value:"slideHorizontal"},transitionDuration:{value:0.8},transitionEasing:{value:"ease-out"},imageConfig:{value:{crop:true,width:50,height:50}},topNavEnabled:{value:false},topNavButtons:{value:["prevPage","nextPage"]},rightNavEnabled:{value:true},rightNavButtons:{value:["nextPage"]},bottomNavEnabled:{value:false},bottomNavButtons:{value:["prevPage","nextPage"]},leftNavEnabled:{value:true},leftNavButtons:{value:["prevPage"]},touchSupport:{value:false}}});A.namespace("FL").SlideshowTransition=A.Base.create("fl-slideshow-transition",A.Base,[],{_transitionFunction:"_transitionFade",_type:"fade",initializer:function(){var D=this.get("type"),I=[],C=A.FL.SlideshowTransition.TYPES,E=A.FL.SlideshowTransition.SLIDESHOW_IMAGE_TYPES,H=A.Array.indexOf(E,D)>-1,B=this._isSlideshowImage(),G=this.get("itemIn"),F=this.get("itemOut");if(D.indexOf(",")>-1){I=D.split(",");I.sort(function(){return 0.5-Math.random();});D=I[0];}if(!B&&H){D="fade";}else{if(B){if((G&&G.one("img")===null)||(F&&F.one("img")===null)){D="none";}else{if(H){if((A.UA.gecko&&A.UA.gecko<5)||A.UA.opera>0||(A.UA.ie>0&&A.UA.ie<9)){D="fade";}}}}}if(A.FL.SlideshowTransition.TYPES[D]){this._transitionFunction=C[D];this._type=D;}this._setupItems();},run:function(){this.fire("start");this[this._transitionFunction].call(this);},_setupItems:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C){C.setStyle("zIndex",2);C.setStyle("opacity",1);if(A.FL.Utils.cssSupport("transform")){C.setStyle("transform","translate(0, 0)");}else{C.setStyle("top","0");C.setStyle("left","0");}}if(B){B.setStyle("zIndex",1);}},_isSlideshowImage:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C&&C.hasClass("fl-slideshow-image")){return true;}else{if(B&&B.hasClass("fl-slideshow-image")){return true;}}return false;},_transitionStart:function(I,B){var H=this.get("itemIn"),F=this.get("itemOut"),E=A.bind(this._transitionComplete,this),D=!H?E:null,C=this.get("duration"),G=this.get("easing");if(H){I.duration=I.duration||C;I.easing=I.easing||G;H.transition(I);}if(F){B.duration=B.duration||C;B.easing=B.easing||G;F.transition(B);}if(E){A.later(I.duration*1000+100,null,E);}else{if(D){A.later(B.duration*1000+100,null,D);}}},_transitionComplete:function(){this._set("itemIn",null);this._set("itemOut",null);this.fire("complete");},_transitionNone:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C){C.setStyle("opacity",1);}if(B){B.setStyle("opacity",0);}this._transitionComplete();},_transitionFade:function(){var B=this.get("itemIn");if(B){B.setStyle("opacity",0);}this._transitionStart({opacity:1},{opacity:0});},_transitionSlideLeft:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(100%, 0)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(-100%, 0)"});}else{this._jsTransitionSlide("left");}},_transitionSlideRight:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(-100%, 0)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(100%, 0)"});}else{this._jsTransitionSlide("right");}},_transitionSlideUp:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(0, 100%)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(0, -100%)"});}else{this._jsTransitionSlide("up");}},_transitionSlideDown:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(0, -100%)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(0, 100%)"});}else{this._jsTransitionSlide("down");}},_jsTransitionSlide:function(B){var E=this.get("itemIn"),C=this.get("itemOut"),D=0;if(C&&B=="left"){D=-parseInt(C.getStyle("width"),10);}if(C&&B=="right"){D=parseInt(C.getStyle("width"),10);}if(C&&B=="up"){D=-parseInt(C.getStyle("height"),10);}if(C&&B=="down"){D=parseInt(C.getStyle("height"),10);}if(E){E.setStyle("opacity",1);}if(E&&B=="left"){E.setStyle("left",E.getStyle("width"));}if(E&&B=="right"){E.setStyle("left","-"+E.getStyle("width"));}if(E&&B=="up"){E.setStyle("top",E.getStyle("height"));}if(E&&B=="down"){E.setStyle("top","-"+E.getStyle("height"));}if(B=="left"||B=="right"){this._transitionStart({left:0},{left:D});}else{this._transitionStart({top:0},{top:D});}},_cssTransitionSlide:function(E){var G=this.get("itemIn"),F=this.get("itemOut"),C=A.UA.chrome<36?"transform":"-webkit-transform",D={},B={};D[C]=E.inEnd;B[C]=E.outEnd;if(G){G.setStyle("transition","");G.setStyle("opacity",1);G.setStyle(C,E.inStart);}if(F){F.setStyle("transition","");F.setStyle(C,E.outStart);}this._transitionStart(D,B);
19
+ },_transitionBars:function(){this.get("itemIn").one(".fl-slideshow-image-img").setStyle("opacity",0);var D=this.get("bars"),I=this._renderSlices(1,D),B=this.get("duration"),E=0,H=100,J=false,C=0,G=null,F={duration:B,opacity:1};if(this._type=="barsRandom"){I=this._randomizeSlices(I);}for(;C<I.length;C++){G=A.clone(F);if(this._type=="blinds"){G.width=parseFloat(I[C].getComputedStyle("width"),10)+"px";I[C].setStyle("width","0px");H=50;}J=C==I.length-1?true:false;A.later(E,this,this._transitionSlice,[I[C],G,J]);E+=H;}this._transitionSlicesFadeLast(E);},_transitionBoxes:function(){this.get("itemIn").one(".fl-slideshow-image-img").setStyle("opacity",0);var D=this.get("boxCols"),H=this.get("boxRows"),L=D*H,I=this._type!="boxesRandom",O=this._renderSlices(H,D,I),E=this.get("duration"),G=0,M=150,N=false,F=0,P=0,C=0,B=-1,K=null,J={duration:E,opacity:1};if(!I){O=this._randomizeSlices(O);M=30;for(;F<O.length;F++){K=A.clone(J);N=F==O.length-1?true:false;A.later(G,this,this._transitionSlice,[O[F],K,N]);G+=M;}}else{while(F<L){for(P=0;P<H;P++){if(P===0){B++;C=B;}if(C>-1&&C<D){F++;K=A.clone(J);if(this._type=="boxesGrow"){K.height=parseFloat(O[P][C].getComputedStyle("height"),10)+"px";K.width=parseFloat(O[P][C].getComputedStyle("width"),10)+"px";O[P][C].setStyle("height","0px");O[P][C].setStyle("width","0px");M=50;}N=F==L-1?true:false;A.later(G,this,this._transitionSlice,[O[P][C],K,N]);}C--;}G+=M;}}this._transitionSlicesFadeLast(G);},_renderSlices:function(F,H,P){var L=this.get("itemIn"),R=parseFloat(L.getComputedStyle("height"),10),G=parseFloat(L.getComputedStyle("width"),10),T=L.one("img"),B=T.get("src"),S=parseFloat(T.getComputedStyle("height"),10),O=parseFloat(T.getComputedStyle("width"),10),D=parseFloat(T.getComputedStyle("left"),10),N=parseFloat(T.getComputedStyle("top"),10),J=0,M=0,E=Math.round(R/F),K=Math.round(G/H),Q=null,I=null,C=[];for(;M<F;M++){if(typeof P!=="undefined"&&P){C[M]=[];}for(J=0;J<H;J++){Q=A.Node.create('<div class="fl-slideshow-transition-slice"></div>');I=A.Node.create('<img src="'+B+'" />');Q.setStyles({left:(K*J)+"px",top:(E*M)+"px",width:J==H-1?(G-(K*J))+"px":K+"px",height:M==F-1?(R-(E*M))+"px":E+"px",opacity:0});I.setStyles({height:S+"px",width:O+"px",top:N-((E+(M*E))-E)+"px",left:D-((K+(J*K))-K)+"px"});Q.append(I);L.append(Q);if(typeof P!=="undefined"&&P){C[M].push(Q);}else{C.push(Q);}}}return C;},_transitionSlicesFadeLast:function(B){var C=this.get("itemOut");if(C&&!C.hasClass("fl-slideshow-image-cropped")){C.transition({duration:B/1000+this.get("duration"),opacity:0});}},_transitionSlice:function(D,B,C){var E=C?A.bind(this._transitionSlicesComplete,this):null;D.transition(B,E);},_transitionSlicesComplete:function(){var B=this.get("itemIn");B.all(".fl-slideshow-transition-slice").remove();B.one(".fl-slideshow-image-img").setStyle("opacity",1);this._transitionComplete();},_randomizeSlices:function(E){var D=E.length,C,B;if(D===0){return;}while(--D){C=Math.floor(Math.random()*(D+1));B=E[D];E[D]=E[C];E[C]=B;}return E;},_transitionKenBurns:function(){var C=this.get("kenBurnsDuration"),D=this.get("duration"),E=this.get("itemIn"),B=this.get("kenBurnsZoom");this._transitionFade();(new A.FL.SlideshowKenBurns({duration:C+D+4,image:E,zoom:B})).run();}},{ATTRS:{itemIn:{value:null},itemOut:{value:null},duration:{value:0.5},easing:{value:"ease-out"},type:{value:"fade"},bars:{value:15},boxCols:{value:8},boxRows:{value:4},kenBurnsDuration:{value:4},kenBurnsZoom:{value:1.2}},TYPES:{fade:"_transitionFade",none:"_transitionNone",slideLeft:"_transitionSlideLeft",slideRight:"_transitionSlideRight",slideUp:"_transitionSlideUp",slideDown:"_transitionSlideDown",blinds:"_transitionBars",bars:"_transitionBars",barsRandom:"_transitionBars",boxes:"_transitionBoxes",boxesRandom:"_transitionBoxes",boxesGrow:"_transitionBoxes",kenBurns:"_transitionKenBurns"},SLIDESHOW_IMAGE_TYPES:["blinds","bars","barsRandom","boxes","boxesRandom","boxesGrow","kenBurns"]});A.namespace("FL").Slideshow=A.Base.create("fl-slideshow",A.FL.SlideshowBase,[],{frame:null,nav:null,imageNavLeft:null,imageNavRight:null,thumbs:null,verticalThumbs:null,caption:null,social:null,_nextImagePreloader:null,_initialNavSettings:null,initializer:function(){var B={loadGroup:"main-preload",crop:this.get("crop"),position:this.get("position"),protect:this.get("protect"),upsize:this.get("upsize")};this._nextImagePreloader=new A.FL.SlideshowImage(B);if("ontouchstart" in window){this._removeNavButton("prev");this._removeNavButton("prevPage");this._removeNavButton("next");this._removeNavButton("nextPage");this._removeNavButton("fullscreen");}if(this._hasNavButton("fullscreen")){if(A.FL.SlideshowFullscreen.OS_SUPPORT){this.plug(A.FL.SlideshowFullscreen);}else{this._removeNavButton("fullscreen");}}},renderUI:function(){A.FL.Slideshow.superclass.renderUI.apply(this,arguments);this._renderFrame();this._renderVerticalThumbs();this._renderNavAndThumbs();this._renderImageNav();this._renderMouseNav();this._renderCaption();this._renderSocial();},bindUI:function(){var F=this.get("boundingBox"),E=this.frame.get("boundingBox"),D=this.get("navOverlay"),C=this.get("navType"),G=this._getNav(),B=this.get("clickAction");A.FL.Slideshow.superclass.bindUI.apply(this,arguments);A.Do.after(this._resizeChildWidgets,this,"resize");this.on("albumLoadStart",this._albumLoadStart,this);this.on("albumLoadComplete",this._albumLoadComplete,this);this.on("imageLoadComplete",this._loadFrame,this);if(this.get("loadingImageAlwaysEnabled")){this.frame.on("transitionInit",A.bind(this._showLoadingImageWithDelay,this));this.frame.on("transitionStart",A.bind(this._hideLoadingImage,this));}if(this.get("overlayHideOnMousemove")){if(G&&D){this.frame.once("transitionComplete",G.slideshowOverlay.hideWithTimer,G.slideshowOverlay);F.on("mousemove",A.bind(this._toggleNav,this));}if(C=="buttons"||C=="thumbs"||C=="custom"){F.on("mouseenter",A.bind(this._checkOverlaysOnMouseenter,this));F.on("mouseleave",A.bind(this._hideAllOverlays,this));}}F.delegate("click",A.bind(this._overlayCloseClick,this),".fl-slideshow-overlay-close");
20
+ if(B=="gallery"||B=="url"){E.delegate("click",A.bind(this._frameClick,this),".fl-slideshow-image-img");}},syncUI:function(){var B=this.get("boundingBox");A.FL.Slideshow.superclass.syncUI.apply(this,arguments);B._node.onselectstart=function(){return false;};B._node.unselectable="on";B._node.style.MozUserSelect="none";if(this.get("clickAction")!="none"){this.frame.get("boundingBox").addClass("fl-click-action-enabled");}},unload:function(){this.pause();this.frame.unload();if(this.thumbs!==null){this.thumbs.unload();}},_albumLoadStart:function(){this._showLoadingImage();},_albumLoadComplete:function(){this.frame.once("transitionStart",A.bind(this._hideLoadingImage,this));},_resizeChildWidgets:function(){var D=this.get("boundingBox"),B=this.get("contentBox"),C=this.get("imageNavEnabled");this._renderNavAndThumbs();if(this.get("verticalThumbsOverlay")){this._resizeFrame(B.get("offsetWidth"),D.get("offsetHeight"));this._resizeVerticalThumbs();}else{this._resizeVerticalThumbs();this._resizeFrame(B.get("offsetWidth"),D.get("offsetHeight"));}if(C){this._positionImageNav();}this._positionLoadingImage();},_renderVerticalThumbs:function(){var B=this.get("responsiveThreshold"),E=this.get("boundingBox"),C=E.get("offsetWidth"),D;if(this.get("verticalThumbsEnabled")&&C>B){this.verticalThumbs=new A.FL.SlideshowThumbs(this._getVerticalThumbsConfig());this.add(this.verticalThumbs);this.verticalThumbs.render(E);D=this.verticalThumbs.get("boundingBox");D.addClass("fl-slideshow-vertical-thumbs");D.setStyle(this.get("verticalThumbsPosition"),0);E.append(D);if(this.get("verticalThumbsOverlay")){this.verticalThumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left"});this.frame.get("boundingBox").append(D);this.verticalThumbs.resize();}else{this.verticalThumbs.resize();this._adjustContentForVerticalThumbs();}this._bindVerticalThumbs();}},_getVerticalThumbsConfig:function(){var C=this.getAttrs(),B={columns:C.verticalThumbsColumns,rows:"auto",centerSinglePage:false,horizontalSpacing:C.verticalThumbsHorizontalSpacing,verticalSpacing:C.verticalThumbsVerticalSpacing,spaceEvenly:C.verticalThumbsSpaceEvenly,rightNavEnabled:false,leftNavEnabled:false,topNavEnabled:C.verticalThumbsTopNavEnabled,topNavButtons:C.verticalThumbsTopNavButtons,bottomNavEnabled:C.verticalThumbsBottomNavEnabled,bottomNavButtons:C.verticalThumbsBottomNavButtons,pauseOnClick:C.verticalThumbsPauseOnClick,transition:C.verticalThumbsTransition,transitionDirection:C.verticalThumbsTransitionDirection,transitionEasing:C.verticalThumbsTransitionEasing,touchSupport:true,imageConfig:{crop:C.verticalThumbsImageCrop,width:C.verticalThumbsImageWidth,height:C.verticalThumbsImageHeight}};return B;},_bindVerticalThumbs:function(){var B=this.get("boundingBox"),E=this.get("overlayHideOnMousemove"),D=this.get("verticalThumbsOverlay"),C=this.verticalThumbs;if(C&&E&&D){this.frame.once("transitionComplete",C.slideshowOverlay.hideWithTimer,C.slideshowOverlay);B.on("mousemove",A.bind(this._toggleVerticalThumbs,this));B.on("mouseenter",A.bind(this._toggleVerticalThumbs,this));}},_resizeVerticalThumbs:function(){var G=this.get("verticalThumbsEnabled"),H,I,F,C,D,E,B,J;if(G){H=this.get("verticalThumbsOverlay");I=this.get("responsiveThreshold");F=this.get("boundingBox");C=F.get("offsetWidth");D=this.get("navOverlay");E=this.get("navType");B=this._getNav();if(this.verticalThumbs&&C>I){this.verticalThumbs.get("boundingBox").setStyle("display","block");this.verticalThumbs.resize();if(!H){this._adjustContentForVerticalThumbs();}else{if(B&&D){J=B.get("boundingBox");if(E=="thumbs"){this._adjustOverlayForVerticalThumbs(J,true);this.thumbs.resize();}else{this._adjustOverlayForVerticalThumbs(J);}}}}else{if(!this.verticalThumbs&&C>I){this._renderVerticalThumbs();}else{if(this.verticalThumbs&&C<=I){this.verticalThumbs.get("boundingBox").setStyle("display","none");if(!H){this.get("contentBox").setStyles({left:"auto",position:"relative",right:"auto",width:"auto"});}}}}}},_toggleVerticalThumbs:function(){if(this.verticalThumbs){if(this.verticalThumbs.slideshowOverlay._visible){this.verticalThumbs.slideshowOverlay.hideWithTimer();}else{this.verticalThumbs.slideshowOverlay.show();}}},_adjustContentForVerticalThumbs:function(){var E=this.get("boundingBox"),C=this.verticalThumbs.get("boundingBox"),B=this.get("verticalThumbsPosition"),G=this.get("contentBox"),F=B=="left"?"right":"left",D=E.get("offsetWidth")-C.get("offsetWidth");G.setStyle("position","absolute");G.setStyle(F,0);G.setStyle("width",D);},_adjustOverlayForVerticalThumbs:function(F,C){var H=this.get("verticalThumbsEnabled"),I=this.get("verticalThumbsOverlay"),E=null,D=null,G=typeof C==="undefined"?"":"margin-",B=0;if(this.verticalThumbs&&H&&I){E=this.verticalThumbs.get("boundingBox");B=E.get("offsetWidth");D=this.get("verticalThumbsPosition");if(D=="left"){F.setStyle(G+"left",B+"px");}else{F.setStyle(G+"right",B+"px");}}},_renderFrame:function(){this.frame=new A.FL.SlideshowFrame({imageConfig:{loadGroup:"main",loadPriority:true,crop:this.get("crop"),cropHorizontalsOnly:this.get("cropHorizontalsOnly"),position:this.get("position"),protect:this.get("protect"),upsize:this.get("upsize"),showVideoButton:this.get("navOverlay")},touchSupport:true});this.add(this.frame);this.frame.render(this.get("contentBox"));this.frame.get("boundingBox").addClass("fl-slideshow-main-image");this._setPlayingTimerEvent(this.frame,"transitionComplete");this._loadingImageContainer=this.frame.get("contentBox");},_resizeFrame:function(D,B){var C=this.get("navOverlay"),E=this._getNav();if(E&&!C){B-=parseInt(E.get("boundingBox").getComputedStyle("height"),10);}this.frame.resize(D,B);},_loadFrame:function(G){var E=this.imageInfo.index,D=this.albumInfo.images,C=E+1>=D.length?0:E+1,F=this.frame.get("width"),B=this.frame.get("height");this.frame.load(G.imageInfo);A.FL.SlideshowImageLoader.removeGroup("main-preload");this._nextImagePreloader.preload(D[C],F,B);},_frameClick:function(){var B=this.get("clickAction"),C=this.get("clickActionUrl");
21
+ if(B=="url"){window.location.href=C;}else{if(B=="gallery"){window.location.href=this.imageInfo.link;}}},_initMiniNav:function(){var B=[];if(!("ontouchstart" in window)){B.push("prev");}if(this._hasNavButton("thumbs")||this.get("navType")=="thumbs"){B.push("thumbs");}if(this._hasNavButton("caption")){B.push("caption");}if(this._hasNavButton("social")){B.push("social");}if(this._hasNavButton("buy")){B.push("buy");}if(this._hasNavButton("play")){B.push("play");}if(this._hasNavButton("fullscreen")&&!("ontouchstart" in window)){B.push("fullscreen");}if(!("ontouchstart" in window)){B.push("next");}this._initialNavSettings={buttons:this.get("navButtons"),buttonsLeft:this.get("navButtonsLeft"),buttonsRight:this.get("navButtonsRight"),type:this.get("navType")};this._set("navButtons",B);this._set("navButtonsLeft",[]);this._set("navButtonsRight",[]);this._set("navType","buttons");},_renderNavAndThumbs:function(){var C=this.get("navType"),D=false,E,B;if(C=="buttons"||C=="thumbs"){E=this.get("boundingBox").get("offsetWidth");B=this.get("responsiveThreshold");if(E<=B&&this._initialNavSettings===null){this._initMiniNav();D=true;}else{if(E>B&&this._initialNavSettings!==null){this._set("navButtons",this._initialNavSettings.buttons);this._set("navButtonsLeft",this._initialNavSettings.buttonsLeft);this._set("navButtonsRight",this._initialNavSettings.buttonsRight);this._set("navType",this._initialNavSettings.type);this._initialNavSettings=null;D=true;}}if(D||this.nav===null){this._renderNav();}if(D||this.thumbs===null){this._renderThumbs();}else{if(this._thumbsEnabled()){this._resizeThumbs();}}if(D&&this.caption!==null){this._syncCaption();}if(D&&this.social!==null){this._syncSocial();}}},_renderNav:function(){var D=this.frame.get("boundingBox"),E=null,B=this.get("navOverlay"),C=this.get("navPosition");this._destroyNav();if(this.get("navType")=="buttons"){this.nav=new A.FL.SlideshowNav({buttons:this.get("navButtons"),buttonsLeft:this.get("navButtonsLeft"),buttonsRight:this.get("navButtonsRight")});this.add(this.nav);this.nav.render(this.get("contentBox"));E=this.nav.get("boundingBox");if(B){this.nav.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});E.setStyle("position","absolute");E.setStyle(C,"0px");}if(C=="top"){D.insert(E,"before");}else{D.insert(E,"after");}E.addClass("fl-slideshow-main-nav");}},_destroyNav:function(){if(this.nav!==null){if(this.nav.slideshowOverlay){this.nav.slideshowOverlay.destroy();}this.nav.get("boundingBox").remove();this.remove(this.nav);try{this.nav.destroy(true);}catch(B){}this.nav=null;}},_getNav:function(){var B=this.get("navType");if(B=="buttons"){return this.nav;}else{if(B=="thumbs"){return this.thumbs;}else{return null;}}},_toggleNav:function(){var B=this._getNav();if(B.slideshowOverlay){if(B.slideshowOverlay._visible){B.slideshowOverlay.hideWithTimer();}else{B.slideshowOverlay.show();}}},_renderImageNav:function(){var B;if(this.get("imageNavEnabled")){if("ontouchstart" in window){this._set("imageNavEnabled",false);}else{B=this.get("boundingBox");this.imageNavLeft=new A.FL.SlideshowNav({buttons:["prev"],useFontIcons:false});this.imageNavRight=new A.FL.SlideshowNav({buttons:["next"],useFontIcons:false});this.add(this.imageNavLeft);this.add(this.imageNavRight);this.imageNavLeft.render(this.frame.get("boundingBox"));this.imageNavRight.render(this.frame.get("boundingBox"));this.imageNavLeft.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});this.imageNavRight.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});if(this.get("overlayHideOnMousemove")){this.frame.once("transitionComplete",this.imageNavLeft.slideshowOverlay.hideWithTimer,this.imageNavLeft.slideshowOverlay);this.frame.once("transitionComplete",this.imageNavRight.slideshowOverlay.hideWithTimer,this.imageNavRight.slideshowOverlay);B.on("mousemove",A.bind(this._toggleImageNav,this));B.on("mouseenter",A.bind(this._toggleImageNav,this));}this.imageNavLeft.get("boundingBox").addClass("fl-slideshow-image-nav-left");this.imageNavRight.get("boundingBox").addClass("fl-slideshow-image-nav-right");}}},_positionImageNav:function(){var D=this.imageNavLeft.get("boundingBox"),E=this.imageNavRight.get("boundingBox"),B=D.get("offsetHeight"),C=this.frame.get("boundingBox").get("offsetHeight"),G=C/2-B/2,F={top:G+"px",display:"block"};D.setStyles(F);E.setStyles(F);this._adjustOverlayForVerticalThumbs(D);this._adjustOverlayForVerticalThumbs(E);},_toggleImageNav:function(){if(this.imageNavLeft.slideshowOverlay._visible){this.imageNavLeft.slideshowOverlay.hideWithTimer();}else{this.imageNavLeft.slideshowOverlay.show();}if(this.imageNavRight.slideshowOverlay._visible){this.imageNavRight.slideshowOverlay.hideWithTimer();}else{this.imageNavRight.slideshowOverlay.show();}},_renderMouseNav:function(){if(this.get("mouseNavEnabled")&&!("ontouchstart" in window)&&!window.navigator.msPointerEnabled){this.plug(A.FL.SlideshowMouseNav,{trigger:this.frame.get("boundingBox")});}},_thumbsEnabled:function(){var B=this.get("navType");if(B=="thumbs"){return true;}if((B=="buttons"||B=="custom")&&this._hasNavButton("thumbs")){return true;}else{return false;}},_renderThumbs:function(){var E,C,D,B;this._destroyThumbs();if(this._thumbsEnabled()){E=this.frame.get("boundingBox");C=this.get("navOverlay");D=this.get("navPosition");B=this.get("navType");this.thumbs=new A.FL.SlideshowThumbs(this._getThumbsConfig());try{this.add(this.thumbs);}catch(F){}if(B=="buttons"||B=="custom"){this.thumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left",visible:false});}else{if(B=="thumbs"&&C){this.thumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left"});}}this.thumbs.render(this.get("contentBox"));if(D=="top"){E.insert(this.thumbs.get("boundingBox"),"before");}else{E.insert(this.thumbs.get("boundingBox"),"after");}if(this.get("thumbsHideOnClick")&&B!="thumbs"){this.thumbs.on("imageClick",A.bind(this._hideThumbsOnImageClick,this));}this._syncThumbs();}},_destroyThumbs:function(){if(this.thumbs!==null){if(this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay.destroy();
22
+ }this.thumbs.get("boundingBox").remove();this.remove(this.thumbs);try{this.thumbs.destroy(true);}catch(B){}this.thumbs=null;}},_syncThumbs:function(){var D=this.thumbs.get("boundingBox"),E=this.get("navOverlay"),F=this.get("navPosition"),C=this.get("navType"),B="padding"+F.charAt(0).toUpperCase()+F.slice(1),G=0;if(C=="buttons"){G=parseInt(this.nav.get("boundingBox").getComputedStyle("height"),10);D.setStyle("position","absolute");if(E){D.setStyle(B,G+"px");D.setStyle(F,"0px");}else{D.setStyle(F,G+"px");}}if(C=="custom"||(C=="thumbs"&&E)){D.setStyle("position","absolute");D.setStyle(F,"0px");}this.thumbs.resize();},_getThumbsConfig:function(){var E=this.getAttrs(),B=this.get("navType"),D={crop:E.thumbsImageCrop,width:E.thumbsImageWidth,height:E.thumbsImageHeight},C={columns:"auto",rows:1,horizontalSpacing:E.thumbsHorizontalSpacing,verticalSpacing:E.thumbsVerticalSpacing,spaceEvenly:E.thumbsSpaceEvenly,centerSinglePage:E.thumbsCenterSinglePage,pauseOnClick:E.thumbsPauseOnClick,transition:E.thumbsTransition,transitionDirection:E.thumbsTransitionDirection,transitionEasing:E.thumbsTransitionEasing,leftNavButtons:E.navButtonsLeft,rightNavButtons:E.navButtonsRight,imageConfig:D,touchSupport:true};if(B=="buttons"||B=="custom"){if("ontouchstart" in window){C.leftNavEnabled=false;C.rightNavEnabled=false;}else{C.centerSinglePage=false;C.leftNavButtons=["prevPage"];C.rightNavButtons=["nextPage"];}}return C;},_resizeThumbs:function(){if(this.thumbs){this.thumbs.resize();}},_toggleThumbs:function(){this._toggleOverlay(this.thumbs.slideshowOverlay);},_hideThumbsOnImageClick:function(){if(this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay._focus=false;this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hide();if(this.nav&&this.nav.slideshowOverlay){this.nav.slideshowOverlay.enable();}}},_renderCaption:function(){if(this._hasNavButton("caption")){this.caption=new A.FL.SlideshowCaption({lessLinkText:this.get("captionLessLinkText"),moreLinkText:this.get("captionMoreLinkText"),textLength:this.get("captionTextLength"),stripTags:this.get("captionStripTags")});this.add(this.caption);this.caption.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),visible:false,closeButton:true});this._syncCaption();}},_syncCaption:function(){var G=this.caption.get("boundingBox"),C=this.get("navOverlay"),D=this.get("navPosition"),E=this._getNav(),B="padding"+D.charAt(0).toUpperCase()+D.slice(1),F=0;G.setStyle("position","absolute");if(E){F=parseInt(E.get("boundingBox").getComputedStyle("height"),10);}if(E&&C){G.setStyle(B,F+"px");G.setStyle(D,"0px");}else{G.setStyle(D,F+"px");}},_toggleCaption:function(){this._toggleOverlay(this.caption.slideshowOverlay);},_renderSocial:function(){if(this._hasNavButton("social")){this.social=new A.FL.SlideshowSocial();this.add(this.social);this.social.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),visible:false,closeButton:true});this._syncSocial();}},_syncSocial:function(){var D=this.social.get("boundingBox"),C=this.get("navOverlay"),E=this.get("navPosition"),F=this._getNav(),B="padding"+E.charAt(0).toUpperCase()+E.slice(1),G=0;D.setStyle("position","absolute");if(F){G=parseInt(F.get("boundingBox").getComputedStyle("height"),10);}if(F&&C){D.setStyle(B,G+"px");D.setStyle(E,"0px");}else{D.setStyle(E,G+"px");}},_toggleSocial:function(){this._toggleOverlay(this.social.slideshowOverlay);},_toggleOverlay:function(C){var B=this.get("navType"),D=this._getNav();if(C._visible){if(D&&D.slideshowOverlay){D.slideshowOverlay.enable();}C.enable();C.hide();}else{if(D&&D.slideshowOverlay){D.slideshowOverlay.disable();}C.show();C.disable();}if(this.thumbs&&B!="thumbs"&&this.thumbs.slideshowOverlay!==C){this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hide();}if(this.caption&&this.caption.slideshowOverlay!==C){this.caption.slideshowOverlay.enable();this.caption.slideshowOverlay.hide();}if(this.social&&this.social.slideshowOverlay!==C){this.social.slideshowOverlay.enable();this.social.slideshowOverlay.hide();}},_overlayCloseClick:function(){if(this.nav&&this.nav.slideshowOverlay){this.nav.slideshowOverlay.enable();}if(this.thumbs&&this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay.enable();}if(this.caption){this.caption.slideshowOverlay.enable();}if(this.social){this.social.slideshowOverlay.enable();}if(this.imageNavLeft){this.imageNavLeft.slideshowOverlay.enable();this.imageNavRight.slideshowOverlay.enable();}},_hideAllOverlays:function(){if(this.nav&&this.nav.slideshowOverlay&&this.nav.slideshowOverlay._visible){this.nav.slideshowOverlay.enable();this.nav.slideshowOverlay.hideWithTimer();}if(this.thumbs&&this.thumbs.slideshowOverlay&&this.thumbs.slideshowOverlay._visible){this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hideWithTimer();}if(this.caption&&this.caption.slideshowOverlay._visible){this.caption.slideshowOverlay.enable();this.caption.slideshowOverlay.hideWithTimer();}if(this.social&&this.social.slideshowOverlay._visible){this.social.slideshowOverlay.enable();this.social.slideshowOverlay.hideWithTimer();}if(this.imageNavLeft){this.imageNavLeft.slideshowOverlay.enable();this.imageNavLeft.slideshowOverlay.hideWithTimer();this.imageNavRight.slideshowOverlay.enable();this.imageNavRight.slideshowOverlay.hideWithTimer();}},_checkOverlaysOnMouseenter:function(){var B=this.get("navType"),D=this.get("navOverlay"),E=this._getNav(),C=false;if(this.thumbs&&B!="thumbs"&&this.thumbs.slideshowOverlay._visible){C=true;this.thumbs.slideshowOverlay.disable();}else{if(this.caption&&this.caption.slideshowOverlay._visible){C=true;this.caption.slideshowOverlay.disable();}else{if(this.social&&this.social.slideshowOverlay._visible){C=true;this.social.slideshowOverlay.disable();}}}if(E&&C&&D){E.slideshowOverlay.disable();}},_hasNavButton:function(C){var B=this.get("navType");if(B=="buttons"||B=="thumbs"||B=="custom"){if(A.Array.indexOf(this.get("navButtons"),C)>-1){return true;}else{if(A.Array.indexOf(this.get("navButtonsLeft"),C)>-1){return true;
23
+ }else{if(A.Array.indexOf(this.get("navButtonsRight"),C)>-1){return true;}else{return false;}}}}else{return false;}},_removeNavButton:function(D){var G=this.get("navButtons"),B=this.get("navButtonsLeft"),F=this.get("navButtonsRight"),C=this.get("verticalThumbsTopNavButtons"),E=this.get("verticalThumbsBottomNavButtons");if(A.Array.indexOf(G,D)>-1){G.splice(A.Array.indexOf(G,D),1);}if(A.Array.indexOf(B,D)>-1){B.splice(A.Array.indexOf(B,D),1);}if(A.Array.indexOf(F,D)>-1){F.splice(A.Array.indexOf(F,D),1);}if(A.Array.indexOf(C,D)>-1){C.splice(A.Array.indexOf(C,D),1);}if(A.Array.indexOf(E,D)>-1){E.splice(A.Array.indexOf(E,D),1);}this._set("navButtons",G);this._set("navButtonsLeft",B);this._set("navButtonsRight",F);this._set("verticalThumbsTopNavButtons",C);this._set("verticalThumbsBottomNavButtons",E);}},{CSS_PREFIX:"fl-slideshow",ATTRS:{clickAction:{value:"none"},clickActionUrl:{value:""},crop:{value:false},cropHorizontalsOnly:{value:false},loadingImageAlwaysEnabled:{value:true},position:{value:"center center"},protect:{value:true},upsize:{value:true},transition:{value:"fade"},transitionDuration:{value:1},transitionEasing:{value:"ease-out"},kenBurnsZoom:{value:1.2},navType:{value:"none"},navPosition:{value:"bottom"},navOverlay:{value:false},navButtons:{value:[]},navButtonsLeft:{value:[]},navButtonsRight:{value:[]},overlayHideOnMousemove:{value:true},overlayHideDelay:{value:3000},imageNavEnabled:{value:false},mouseNavEnabled:{value:false},thumbsHideOnClick:{value:true},thumbsHorizontalSpacing:{value:15},thumbsVerticalSpacing:{value:15},thumbsSpaceEvenly:{value:true},thumbsCenterSinglePage:{value:true},thumbsPauseOnClick:{value:false},thumbsTransition:{value:"slideHorizontal"},thumbsTransitionDuration:{value:0.8},thumbsTransitionEasing:{value:"ease-out"},thumbsImageCrop:{value:true},thumbsImageWidth:{value:50},thumbsImageHeight:{value:50},captionLessLinkText:{value:"Read Less"},captionMoreLinkText:{value:"Read More"},captionTextLength:{value:200},captionStripTags:{value:false},verticalThumbsEnabled:{value:false},verticalThumbsPosition:{value:"left"},verticalThumbsOverlay:{value:false},verticalThumbsColumns:{value:1},verticalThumbsTopNavEnabled:{value:false},verticalThumbsTopNavButtons:{value:["prevPage","nextPage"]},verticalThumbsBottomNavEnabled:{value:true},verticalThumbsBottomNavButtons:{value:["prevPage","nextPage"]},verticalThumbsHorizontalSpacing:{value:15},verticalThumbsVerticalSpacing:{value:15},verticalThumbsSpaceEvenly:{value:false},verticalThumbsPauseOnClick:{value:false},verticalThumbsImageCrop:{value:true},verticalThumbsImageWidth:{value:75},verticalThumbsImageHeight:{value:75},verticalThumbsTransition:{value:"slideVertical"},verticalThumbsTransitionDuration:{value:0.8},verticalThumbsTransitionEasing:{value:"ease-out"},googlePlusButtonEnabled:{value:true},likeButtonEnabled:{value:true},pinterestButtonEnabled:{value:true},tweetButtonEnabled:{value:true}}});},"2.0.0",{requires:["anim","event-mouseenter","plugin","transition","fl-event-move","fl-slideshow-css","fl-slideshow-base","fl-utils","sm-fonticon"]});YUI.add("fl-slideshow-album-loader",function(A){A.namespace("FL").SlideshowAlbumLoader=A.Base.create("fl-slideshow-album-loader",A.Base,[],{_source:null,load:function(B){this._source=B;this.fire("start");this[A.FL.SlideshowAlbumLoader.TYPES[B.type]].call(this);},_loadComplete:function(B){B=this._randomize(B);this.fire("complete",B);},_randomize:function(C){var B;if(this.get("randomize")){C.albumInfo.images.sort(function(){return 0.5-Math.random();});for(B=0;B<C.albumInfo.images.length;B++){C.albumInfo.images[B].index=B;}}return C;},_loadSmugMug:function(){var B=new A.FL.SmugMugAPI();B.on("complete",this._loadSmugMugSuccess,this);B.addParam("method","smugmug.images.get");B.addParam("AlbumID",this._source.id);B.addParam("AlbumKey",this._source.key);B.addParam("Extras","Caption,Format,FileName");if(this._source.password){B.addParam("Password",this._source.password);}if(this._source.sp){B.addParam("SitePassword",this._source.sp);}B.request();},_loadSmugMugSuccess:function(H){var J=H.Album.Images,E={},I=typeof this._source.proxy!=="undefined"?this._source.proxy:"",C="",B="",D="",K="",G=0,L=null,F=null;E.index=this._source.index;E.id=H.Album.id;E.key=H.Album.Key;E.link=H.Album.URL;E.title=this._source.title?this._source.title:"";E.images=[];C=E.link.replace("http://","").split("/").shift();C="http://"+C+"/buy/"+H.Album.id+"_"+H.Album.Key+"/";for(G=0;G<J.length;G++){B=I+H.Album.URL+"/"+J[G].id+"_"+J[G].Key;K=J[G].Format.toLowerCase();D=K=="mp4"?".jpg":"."+K;E.images[G]={};E.images[G].index=G;E.images[G].sourceType="smugmug";E.images[G].albumId=H.Album.id;E.images[G].albumKey=H.Album.Key;E.images[G].id=J[G].id;E.images[G].key=J[G].Key;E.images[G].filename=J[G].FileName;E.images[G].format=K;E.images[G].caption=J[G].Caption||"";E.images[G].link=H.Album.URL+"#"+J[G].id+"_"+J[G].Key;E.images[G].tinyURL=B+"-Ti"+D;E.images[G].thumbURL=B+"-Th"+D;E.images[G].smallURL=B+"-S"+D;E.images[G].mediumURL=B+"-M"+D;E.images[G].largeURL=B+"-L"+D;E.images[G].xlargeURL=B+"-XL"+D;E.images[G].x2largeURL=B+"-X2"+D;E.images[G].x3largeURL=B+"-X3"+D;E.images[G].buyURL=C+J[G].id+"_"+J[G].Key;E.images[G].iframe="";if(E.images[G].caption.indexOf("iframe")){L=A.Node.create("<div>"+E.images[G].caption+"</div>");F=L.one("iframe");if(F){E.images[G].iframe=F.getAttribute("src");E.images[G].caption=E.images[G].caption.replace(/<iframe.*>.*<\/iframe>/gi,"");}}}this._loadComplete({"albumInfo":E});},_loadUrls:function(){var B={},C=0;B.index=this._source.index;B.title=this._source.title?this._source.title:"";B.images=[];for(;C<this._source.urls.length;C++){B.images[C]={};B.images[C].index=C;B.images[C].sourceType="urls";B.images[C].filename=this._source.urls[C].largeURL.split("/").pop();B.images[C].format="";B.images[C].caption=this._source.urls[C].caption||"";B.images[C].link=this._source.urls[C].largeURL;B.images[C].thumbURL=this._source.urls[C].thumbURL||this._source.urls[C].largeURL;B.images[C].smallURL=this._source.urls[C].smallURL||this._source.urls[C].largeURL;B.images[C].mediumURL=this._source.urls[C].mediumURL||this._source.urls[C].largeURL;B.images[C].largeURL=this._source.urls[C].largeURL;B.images[C].xlargeURL=this._source.urls[C].xlargeURL||this._source.urls[C].largeURL;B.images[C].x2largeURL=this._source.urls[C].x2largeURL||this._source.urls[C].largeURL;B.images[C].x3largeURL=this._source.urls[C].x3largeURL||this._source.urls[C].largeURL;B.images[C].buyURL=this._source.urls[C].buyURL||"";B.images[C].iframe=this._source.urls[C].iframe||"";}this._loadComplete({"albumInfo":B});}},{ATTRS:{randomize:{value:false}},TYPES:{"smugmug":"_loadSmugMug","flickr":"_loadFlickr","picasa":"_loadPicasa","urls":"_loadUrls","html":"_loadHtml"}});},"2.0.0",{requires:["base","fl-smugmug-api"]});YUI.add("fl-slideshow-base",function(A){A.namespace("FL").SlideshowBase=A.Base.create("fl-slideshow-base",A.Widget,[A.WidgetParent],{_albumLoader:null,albums:[],albumInfo:null,albumIndex:null,imageInfo:null,imageIndex:null,lastImageIndex:null,_resizeTimer:null,_playing:false,_playingTimer:null,_playingTimerEvent:null,_loadingImage:null,_loadingImageWrap:null,_loadingImageVisible:false,_loadingImageTimer:null,_loadingImageContainer:null,_initialHeight:null,_initialWidth:null,initializer:function(){this._albumLoader=new A.FL.SlideshowAlbumLoader({randomize:this.get("randomize")});},renderUI:function(){this._renderLoadingImage();},bindUI:function(){this._albumLoader.on("complete",this._loadAlbumComplete,this);A.one(window).on("fl-slideshow-base|resize",this._delayResize,this);A.one(window).on("fl-slideshow-base|orientationchange",this._delayResize,this);A.Node.one("body").on("keydown",A.bind(this._onKey,this));},syncUI:function(){this.get("boundingBox").addClass("fl-slideshow-"+this.get("color"));this.resize();if(this.get("loadOnRender")){this.loadAlbum(this.get("defaultAlbum"),this.get("defaultImage"));}},addAlbum:function(D){var C=this.get("source"),B=C.length;C[B]=D;C[B].index=B;this.set("source",C);},loadAlbum:function(C,B){var E=this.get("source"),D=typeof B=="undefined"?0:B;this.imageIndex=null;this.lastImageIndex=null;this.fire("albumLoadStart");this.once("albumLoadComplete",A.bind(this.loadImage,this,D));if(E[C]&&E[C].type=="album-data"){this.albums[C]=E[C].data;this._loadAlbumComplete({albumInfo:this.albums[C]});}else{if(E[C]&&this.albums[C]){this._loadAlbumComplete({albumInfo:this.albums[C]});}else{this._albumLoader.load(E[C]||E[0]);}}},_loadAlbumComplete:function(B){this.albums[B.albumInfo.index]=B.albumInfo;this.albumInfo=B.albumInfo;this.albumIndex=B.albumInfo.index;this.fire("albumLoadComplete");if(this.get("autoPlay")){this._playingTimerStart();this.fire("played");this._playing=true;}},loadImage:function(B){if(this._playing){this._playingTimerStart();}B=B<0?this.albumInfo.images.length-1:B;B=B>=this.albumInfo.images.length?0:B;this.lastImageIndex=this.imageIndex;this.imageIndex=B;this.imageInfo=this.albumInfo.images[B];this.fire("imageLoadComplete",{"imageInfo":this.imageInfo});},prevImage:function(){if(this.get("pauseOnNextOrPrev")){this.pause();}this.loadImage(this.imageIndex-1);this.fire("prevImage");},nextImage:function(){if(this.get("pauseOnNextOrPrev")){this.pause();}this.loadImage(this.imageIndex+1);this.fire("nextImage");},_onKey:function(B){switch(B.keyCode){case 37:this.prevImage();break;case 39:this.nextImage();break;}},resize:function(){var E=this.get("stretchy"),D=this.get("stretchyType"),C=parseInt(A.one("body").get("winWidth"),10),B=this.get("responsiveThreshold");if(C>B&&E&&D=="window"){this._stretchyWindowResize();}else{if((C<=B)||(E&&D=="ratio")){this._stretchyRatioResize();}else{this._standardResize();}}this.fire("resize");},_standardResize:function(){var I=this.get("stretchy"),G=this.get("stretchyType"),H=this.get("boundingBox"),F=H.get("parentNode"),C=parseInt(F.getComputedStyle("height"),10),E=parseInt(F.getComputedStyle("width"),10),B=this.get("height"),D=this.get("width");if(H.hasClass("fl-fullscreen-active")){this._stretchyWindowResize();return;}else{if(I&&G=="contain"){console.log(C,E);H.setStyle("height",C+"px");H.setStyle("width",E+"px");}else{if(!A.Lang.isNumber(B)){this._stretchyRatioResize();return;}else{H.setStyle("height",B+"px");if(D){H.setStyle("width",D+"px");}else{H.setStyle("width",E+"px");}}}}},_stretchyWindowResize:function(){var G=this.get("boundingBox"),E=this.get("stretchyVerticalSpace"),D=parseInt(G.getStyle("paddingTop"),10),F=parseInt(G.getStyle("paddingBottom"),10),B=parseInt(A.one("body").get("winHeight"),10),C="";if(G.hasClass("fl-fullscreen-active")){E=0;C=parseInt(A.one("body").get("winWidth"),10)+"px";}B=(B-D-F-E)+"px";G.setStyle("height",B);G.setStyle("width",C);},_stretchyRatioResize:function(){var G=this.get("boundingBox"),J=G.get("parentNode"),H=0,F=this.get("stretchyRatio"),L=parseInt(G.getStyle("paddingTop"),10),C=parseInt(G.getStyle("paddingBottom"),10),I=parseInt(J.getComputedStyle("width"),10),E=parseInt(A.one("body").get("winHeight"),10),D=parseInt(A.one("body").get("winWidth"),10),K=I*F,B="";if(G.hasClass("fl-fullscreen-active")){K=E;B=D;}K=(K-L-C-H)+"px";G.setStyle("height",K);G.setStyle("width",B);},_delayResize:function(){if(this._resizeTimer){this._resizeTimer.cancel();}this._resizeTimer=A.later(300,this,this.resize);},play:function(){this._playingTimer=A.later(this.get("speed"),this,this._playingTimerComplete);this.fire("played");this._playing=true;},pause:function(){this._playingTimerCancel();this.fire("paused");this._playing=false;},_setPlayingTimerEvent:function(C,B){this._playingTimerEvent={"obj":C,"e":B};},_playingTimerStart:function(B){this._playingTimerCancel();if(!B&&this._playingTimerEvent!==null){this._playingTimerEvent.obj.once("fl-slideshow-base|"+this._playingTimerEvent.e,A.bind(this._playingTimerStart,this));}else{this._playingTimer=A.later(this.get("speed"),this,this._playingTimerComplete);}},_playingTimerComplete:function(){this.loadImage(this.imageIndex+1);this.fire("playingTimerComplete");},_playingTimerCancel:function(){if(this._playingTimer){this._playingTimer.cancel();}if(this._playingTimerEvent){this._playingTimerEvent.obj.detach("fl-slideshow-base|"+this._playingTimerEvent.e);}},_renderLoadingImage:function(){var C={lines:11,length:6,width:2,radius:7,color:"",speed:1,trail:60,shadow:false},B=A.merge(C,this.get("loadingImageSettings"));if(this.get("loadingImageEnabled")){if(B.color===""){B.color=this._colorToHex(A.one("body").getStyle("color"));}this._loadingImage=new A.FL.Spinner(B);this._loadingImageWrap=A.Node.create('<div class="fl-loading-image"></div>');this._loadingImageWrap.setStyles({position:"absolute","z-index":"1000"});}},_showLoadingImage:function(){if(this._loadingImage&&!this._loadingImageVisible){this._loadingImageVisible=true;this._loadingImage.spin();this._loadingImageWrap.insert(this._loadingImage.el);
24
  if(this._loadingImageContainer!==null){this._loadingImageContainer.insert(this._loadingImageWrap);}else{this.get("contentBox").insert(this._loadingImageWrap);}this._positionLoadingImage();}},_showLoadingImageWithDelay:function(){if(this._loadingImage){this._loadingImageTimer=A.later(1000,this,this._showLoadingImage);}},_hideLoadingImage:function(){if(this._loadingImageTimer){this._loadingImageTimer.cancel();this._loadingImageTimer=null;}if(this._loadingImage&&this._loadingImageVisible){this._loadingImageVisible=false;this._loadingImage.stop();this._loadingImageWrap.remove();}},_positionLoadingImage:function(){if(this._loadingImage&&this._loadingImageVisible){var F=this._loadingImageWrap,B=parseInt(F.getComputedStyle("height"),10),G=parseInt(F.getComputedStyle("width"),10),E=F.get("parentNode"),C=parseInt(E.getComputedStyle("height"),10),D=parseInt(E.getComputedStyle("width"),10),I=(D-G)/2,H=(C-B)/2;F.setStyles({left:I+"px",top:H+"px"});A.one(this._loadingImage.el).setStyles({left:"50%",top:"50%"});}},_colorToHex:function(C){var F,G,E,B,D;if(C.substr(0,1)==="#"){return C;}F=/(.*?)rgb\((\d+), (\d+), (\d+)\)/.exec(C);G=parseInt(F[2],10);E=parseInt(F[3],10);B=parseInt(F[4],10);D=B|(E<<8)|(G<<16);D=D.toString(16);if(D==="0"){D="000";}return F[1]+"#"+D;}},{CSS_PREFIX:"fl-slideshow-base",ATTRS:{color:{value:"dark",writeOnce:true},source:{value:[],setter:function(C){if(C.constructor==Object){C=[C];}for(var B=0;B<C.length;B++){C[B].index=B;}return C;}},defaultAlbum:{value:0},defaultImage:{value:0},loadOnRender:{value:true},autoPlay:{value:true},pauseOnNextOrPrev:{value:true},randomize:{value:false},speed:{value:4000},responsiveThreshold:{value:600},stretchy:{value:false},stretchyType:{value:"ratio"},stretchyVerticalSpace:{value:0},stretchyRatio:{value:0.7},loadingImageEnabled:{value:true},loadingImageSettings:{value:{}}}});},"2.0.0",{requires:["node","base","widget","widget-parent","widget-child","fl-slideshow-album-loader","fl-spinner"]});YUI.add("fl-smugmug-api",function(A){A.namespace("FL").SmugMugAPI=A.Base.create("fl-smugmug-api",A.Base,[],{_sessionID:null,_requestURL:null,initializer:function(){this._resetRequestURL();},addParam:function(B,C){this._requestURL=this._requestURL+"&"+B+"="+C;},loginAnon:function(){this.addParam("method","smugmug.login.anonymously");this.once("complete",this._loginAnonComplete);this.request();},_loginAnonComplete:function(B){if(B.Login){this._sessionID=B.Login.Session.id;}},request:function(){this.addParam("Callback","{callback}");A.jsonp(this._requestURL,{on:{success:this._requestComplete,timeout:function(){}},context:this,timeout:60000,args:[]});},_requestComplete:function(B){this._resetRequestURL();this.fire("complete",B);},_resetRequestURL:function(){this._requestURL=this.get("apiURL")+"?APIKey="+this.get("apiKey");if(this._sessionID){this.addParam("SessionID",this._sessionID);}}},{ATTRS:{apiURL:{value:"https://api.smugmug.com/services/api/json/1.3.0/"},apiKey:{value:"7w6kuU5Ee6KSgRRExf2KLgppdkez9JD2"}}});},"2.0.0",{requires:["base","jsonp"]});YUI.add("fl-spinner",function(A){(function(e,E,L){var B="width",Q="length",g="radius",Z="lines",S="trail",V="color",q="opacity",i="speed",a="shadow",k="style",D="height",F="left",G="top",H="px",T="childNodes",p="firstChild",I="parentNode",d="position",J="relative",b="absolute",u="animation",W="transform",N="Origin",f="Timeout",P="coord",m="#000",X=k+"Sheets",M="webkit0Moz0ms0O".split(0),t={},o;function s(w,y){var v=~~((w[Q]-1)/2);for(var x=1;x<=v;x++){y(w[x*2-1],w[x*2]);}}function n(v){var w=E.createElement(v||"div");s(arguments,function(y,x){w[y]=x;});return w;}function c(v,x,w){if(w&&!w[I]){c(v,w);}v.insertBefore(x,w||null);return v;}c(E.getElementsByTagName("head")[0],n(k));var O=E[X][E[X][Q]-1];function C(AA,v){var x=[q,v,~~(AA*100)].join("-"),w="{"+q+":"+AA+"}",y;if(!t[x]){for(y=0;y<M[Q];y++){try{O.insertRule("@"+(M[y]&&"-"+M[y].toLowerCase()+"-"||"")+"keyframes "+x+"{0%{"+q+":1}"+v+"%"+w+"to"+w+"}",O.cssRules[Q]);}catch(z){}}t[x]=1;}return x;}function R(y,z){var x=y[k],v,w;if(x[z]!==L){return z;}z=z.charAt(0).toUpperCase()+z.slice(1);for(w=0;w<M[Q];w++){v=M[w]+z;if(x[v]!==L){return v;}}}function h(v){s(arguments,function(x,w){v[k][R(v,x)||x]=w;});return v;}function Y(v){s(arguments,function(x,w){if(v[x]===L){v[x]=w;}});return v;}var U=function U(v){this.opts=Y(v||{},Z,12,S,100,Q,7,B,5,g,10,V,m,q,1/4,i,1);},K=U.prototype={spin:function(AB){var AD=this,w=AD.el=AD[Z](AD.opts);if(AB){c(AB,h(w,F,~~(AB.offsetWidth/2)+H,G,~~(AB.offsetHeight/2)+H),AB[p]);}if(!o){var v=AD.opts,y=0,z=20/v[i],AA=(1-v[q])/(z*v[S]/100),AC=z/v[Z];(function x(){y++;for(var AE=v[Z];AE;AE--){var AF=Math.max(1-(y+AE*AC)%z*AA,v[q]);AD[q](w,v[Z]-AE,AF,v);}AD[f]=AD.el&&e["set"+f](x,50);})();}return AD;},stop:function(){var v=this,w=v.el;e["clear"+f](v[f]);if(w&&w[I]){w[I].removeChild(w);}v.el=L;return v;}};K[Z]=function(AA){var y=h(n(),d,J),x=C(AA[q],AA[S]),w=0,v;function z(AB,AC){return h(n(),d,b,B,(AA[Q]+AA[B])+H,D,AA[B]+H,"background",AB,"boxShadow",AC,W+N,F,W,"rotate("+~~(360/AA[Z]*w)+"deg) translate("+AA[g]+H+",0)","borderRadius","100em");}for(;w<AA[Z];w++){v=h(n(),d,b,G,1+~(AA[B]/2)+H,W,"translate3d(0,0,0)",u,x+" "+1/AA[i]+"s linear infinite "+(1/AA[Z]/AA[i]*w-1/AA[i])+"s");if(AA[a]){c(v,h(z(m,"0 0 4px "+m),G,2+H));}c(y,c(v,z(AA[V],"0 0 1px rgba(0,0,0,.1)")));}return y;};K[q]=function(w,v,x){w[T][v][k][q]=x;};var r="behavior",l="url(#default#VML)",j="group0roundrect0fill0stroke".split(0);(function(){var w=h(n(j[0]),r,l),v;if(!R(w,W)&&w.adj){for(v=0;v<j[Q];v++){O.addRule(j[v],r+":"+l);}K[Z]=function(){var AE=this.opts,AC=AE[Q]+AE[B],AA=2*AC;function x(){return h(n(j[0],P+"size",AA+" "+AA,P+N,-AC+" "+-AC),B,AA,D,AA);}var AB=x(),AD=~(AE[Q]+AE[g]+AE[B])+H,z;function y(AG,AF,AH){c(AB,c(h(x(),"rotation",360/AE[Z]*AG+"deg",F,~~AF),c(h(n(j[1],"arcsize",1),B,AC,D,AE[B],F,AE[g],G,-AE[B]/2,"filter",AH),n(j[2],V,AE[V],q,AE[q]),n(j[3],q,0))));}if(AE[a]){for(z=1;z<=AE[Z];z++){y(z,-2,"progid:DXImage"+W+".Microsoft.Blur(pixel"+g+"=2,make"+a+"=1,"+a+q+"=.3)");}}for(z=1;z<=AE[Z];z++){y(z);}return c(h(n(),"margin",AD+" 0 0 "+AD,d,J),AB);};K[q]=function(y,x,AA,z){z=z[a]&&z[Z]||0;y[p][T][x+z][p][p][q]=AA;};}else{o=R(w,u);}})();A.namespace("FL").Spinner=U;})(window,document);},"2.0.0");YUI.add("fl-utils",function(A){A.namespace("FL").Utils={cssSupport:function(F){var B=document.body||document.documentElement,E=B.style,C=["Moz","Webkit","Khtml","O","ms","Icab"],D=0;if(F=="transform"&&A.UA.gecko&&A.UA.gecko<4){return false;}if(F=="transform"&&A.UA.opera>0){return false;}if(F=="transform"&&A.UA.ie>0&&A.UA.ie<10){return false;}if(typeof E=="undefined"){return false;}if(typeof E[F]=="string"){return true;}F=F.charAt(0).toUpperCase()+F.substr(1);for(;D<C.length;D++){if(typeof E[C[D]+F]=="string"){return true;}}}};},"2.0.0");
languages/de_DE.mo CHANGED
Binary file
languages/de_DE.po CHANGED
@@ -1,4053 +1,5113 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-03-03 10:40:00+0000\n"
6
- "PO-Revision-Date: 2015-03-29 20:27-0800\n"
7
- "Last-Translator: \n"
8
- "Language-Team: \n"
9
- "Language: de_DE\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.7.4\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
-
22
- #: classes/class-fl-builder-admin-settings.php:93
23
- #: includes/global-settings.php:4
24
- #, php-format
25
- msgctxt "%s stands for custom branded \"Page Builder\" name."
26
- msgid "%s Settings"
27
- msgstr "%s Einstellungen"
28
-
29
- #: classes/class-fl-builder-admin-settings.php:107
30
- msgid "Settings updated!"
31
- msgstr "Einstellungen aktualisiert!"
32
-
33
- #: classes/class-fl-builder-admin-settings.php:118
34
- msgid "License"
35
- msgstr "Lizenz"
36
-
37
- #: classes/class-fl-builder-admin-settings.php:122
38
- #: includes/admin-settings-upgrade.php:3
39
- msgid "Upgrade"
40
- msgstr "Upgrade"
41
-
42
- #: classes/class-fl-builder-admin-settings.php:126
43
- #: includes/global-settings.php:90
44
- msgid "Modules"
45
- msgstr "Module"
46
-
47
- #: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:47
48
- msgid "Templates"
49
- msgstr "Vorlagen"
50
-
51
- #: classes/class-fl-builder-admin-settings.php:134
52
- #: includes/admin-settings-post-types.php:3
53
- msgid "Post Types"
54
- msgstr "Posttypen"
55
-
56
- #: classes/class-fl-builder-admin-settings.php:138
57
- #: modules/icon-group/icon-group.php:27
58
- msgid "Icons"
59
- msgstr "Icons"
60
-
61
- #: classes/class-fl-builder-admin-settings.php:142
62
- msgid "Editing"
63
- msgstr "Bearbeitung"
64
-
65
- #: classes/class-fl-builder-admin-settings.php:146
66
- #: includes/admin-settings-branding.php:3
67
- msgid "Branding"
68
- msgstr "Branding"
69
-
70
- # @ fl-builder
71
- #: classes/class-fl-builder-admin-settings.php:150
72
- msgid "Help Button"
73
- msgstr "Hilfe Button"
74
-
75
- #: classes/class-fl-builder-admin-settings.php:154
76
- #: includes/admin-settings-uninstall.php:3
77
- #: includes/admin-settings-uninstall.php:15
78
- msgid "Uninstall"
79
- msgstr "Deinstallieren"
80
-
81
- # @ fl-builder
82
- #: classes/class-fl-builder-admin-settings.php:376
83
- msgid "Error! You must have at least one icon set enabled."
84
- msgstr "Fehler! Sie müssen mindestens einen Symbolsatz aktiviert haben."
85
-
86
- # @ fl-builder
87
- #: classes/class-fl-builder-admin-settings.php:418
88
- msgid "Error! Could not unzip file."
89
- msgstr "Fehler! Konnte Datei nicht entpacken."
90
-
91
- # @ fl-builder
92
- #: classes/class-fl-builder-admin-settings.php:452
93
- msgid "Error! Please upload an icon set from either Icomoon or Fontello."
94
- msgstr ""
95
- "Fehler! Bitte laden Sie entweder ein Iconset von Icomoon oder Fontello."
96
-
97
- # @ fl-builder
98
- #: classes/class-fl-builder-admin-settings.php:566
99
- msgid "Error! Please enter an iframe for the video embed code."
100
- msgstr "Fehler! Bitte geben Sie ein Iframe für video Embed-Code ein."
101
-
102
- # @ fl-builder
103
- #: classes/class-fl-builder-admin-settings.php:584
104
- msgid "Error! You must have at least one feature of the help button enabled."
105
- msgstr ""
106
- "Fehler! Sie müssen mindestens ein Feature des Hilfe Button aktiviert haben."
107
-
108
- #: classes/class-fl-builder-admin.php:40
109
- #, php-format
110
- msgid ""
111
- "This version of the <strong>Page Builder</strong> plugin is not compatible "
112
- "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
113
- "of this plugin."
114
- msgstr ""
115
- "Diese Version des <strong>Page Builder</strong> Plugins ist nicht kompatibel "
116
- "mit einer Multisite. <a%s>Bitte upgraden Sie.</a> zur Multisiteversion des "
117
- "Plugins."
118
-
119
- #: classes/class-fl-builder-admin.php:50
120
- msgid ""
121
- "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
122
- "greater. Please update WordPress before activating the plugin."
123
- msgstr ""
124
- "Der <strong>Page Builder</strong> benötigt WP 3.5 oder höher. Bitte "
125
- "aktualisieren Sie WP bevor sie den PageBuilder aktivieren."
126
-
127
- #: classes/class-fl-builder-admin.php:96
128
- #, php-format
129
- msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
130
- msgstr ""
131
- "Page Builder aktiviert! <a%s> Klicken Sie hier</a> um Fernupdates zu "
132
- "aktivieren."
133
-
134
- #: classes/class-fl-builder-admin.php:191
135
- msgctxt "Plugin action link label."
136
- msgid "Upgrade"
137
- msgstr "Upgrade"
138
-
139
- #: classes/class-fl-builder-admin.php:202
140
- #: classes/class-fl-builder-model.php:2594
141
- msgid "Page Builder"
142
- msgstr "Page Builder"
143
-
144
- # @ fl-builder
145
- #: classes/class-fl-builder-model.php:1385
146
- #, php-format
147
- msgctxt "%s stands for the module filename"
148
- msgid ""
149
- "A module with the filename %s.php already exists! Please namespace your "
150
- "module filenames to ensure compatibility with Beaver Builder."
151
- msgstr ""
152
- "Ein Modul mit dem Dateinamen %s.php existiert bereits! Bitte benennen Sie "
153
- "Ihre Modul-Dateinamen um die Kompatibilität mit dem Beaver-Builder sicher zu "
154
- "stellen."
155
-
156
- #: classes/class-fl-builder-model.php:1443
157
- #: classes/class-fl-builder-model.php:1497 modules/heading/heading.php:16
158
- #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
159
- #: modules/separator/separator.php:16 modules/video/video.php:21
160
- msgid "Basic Modules"
161
- msgstr "Basismodule"
162
-
163
- #: classes/class-fl-builder-model.php:1444
164
- #: classes/class-fl-builder-model.php:1498 modules/accordion/accordion.php:16
165
- #: modules/button/button.php:16 modules/callout/callout.php:16
166
- #: modules/contact-form/contact-form.php:16
167
- #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
168
- #: modules/gallery/gallery.php:16 modules/html/html.php:16
169
- #: modules/icon/icon.php:16 modules/icon-group/icon-group.php:16
170
- #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
171
- #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
172
- #: modules/slideshow/slideshow.php:16
173
- #: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
174
- #: modules/testimonials/testimonials.php:16
175
- #: modules/woocommerce/woocommerce.php:18
176
- msgid "Advanced Modules"
177
- msgstr "Erweiterte Module"
178
-
179
- # @ fl-builder
180
- #: classes/class-fl-builder-model.php:1445
181
- #: classes/class-fl-builder-model.php:1499
182
- msgid "Other Modules"
183
- msgstr "Andere Module"
184
-
185
- #: classes/class-fl-builder-model.php:1446
186
- #: classes/class-fl-builder-model.php:1500 includes/ui.php:88
187
- #: modules/widget/widget.php:16
188
- msgid "WordPress Widgets"
189
- msgstr "WP Widgets"
190
-
191
- #: classes/class-fl-builder-model.php:2009
192
- #, php-format
193
- msgctxt "%s stands for post/page title."
194
- msgid "Copy of %s"
195
- msgstr "Kopie von %s"
196
-
197
- #: classes/class-fl-builder-photo.php:75
198
- msgctxt "Image size."
199
- msgid "Full Size"
200
- msgstr "Vollgröße"
201
-
202
- #: classes/class-fl-builder-photo.php:76
203
- msgctxt "Image size."
204
- msgid "Large"
205
- msgstr "Groß"
206
-
207
- #: classes/class-fl-builder-photo.php:77
208
- msgctxt "Image size."
209
- msgid "Medium"
210
- msgstr "Mittel"
211
-
212
- #: classes/class-fl-builder-photo.php:78
213
- msgctxt "Image size."
214
- msgid "Thumbnail"
215
- msgstr "Thumbnail"
216
-
217
- #: classes/class-fl-builder.php:709
218
- #, php-format
219
- msgctxt "Field name to add."
220
- msgid "Add %s"
221
- msgstr "Hinzufügen %s"
222
-
223
- #: classes/class-fl-builder.php:772 classes/class-fl-builder.php:774
224
- msgctxt "Custom post type label."
225
- msgid "Layout Templates"
226
- msgstr "Layout-Vorlagen"
227
-
228
- #: classes/class-fl-builder.php:773 classes/class-fl-builder.php:775
229
- msgctxt "Custom post type label."
230
- msgid "Layout Template"
231
- msgstr "Layout-Vorlage"
232
-
233
- #: classes/class-fl-builder.php:776
234
- msgctxt "Custom post type label."
235
- msgid "Add New"
236
- msgstr "Neu hinzufügen"
237
-
238
- #: classes/class-fl-builder.php:777
239
- msgctxt "Custom post type label."
240
- msgid "Add New Layout Template"
241
- msgstr "Neue Layout-Vorlage hinzufügen"
242
-
243
- #: classes/class-fl-builder.php:778
244
- msgctxt "Custom post type label."
245
- msgid "New Layout Template"
246
- msgstr "Neue Layout-Vorlage"
247
-
248
- #: classes/class-fl-builder.php:779
249
- msgctxt "Custom post type label."
250
- msgid "Edit Layout Template"
251
- msgstr "Layout-Vorlage bearbeiten"
252
-
253
- #: classes/class-fl-builder.php:780
254
- msgctxt "Custom post type label."
255
- msgid "View Layout Template"
256
- msgstr "Layout-Vorlage betrachten"
257
-
258
- #: classes/class-fl-builder.php:781
259
- msgctxt "Custom post type label."
260
- msgid "All Layout Templates"
261
- msgstr "Alle Layout-Vorlagen"
262
-
263
- #: classes/class-fl-builder.php:782
264
- msgctxt "Custom post type label."
265
- msgid "Search Layout Templates"
266
- msgstr "Layout-Vorlagen durchsuchen"
267
-
268
- #: classes/class-fl-builder.php:783
269
- msgctxt "Custom post type label."
270
- msgid "Parent Layout Templates:"
271
- msgstr "Übergeordnete Layout-Vorlagen:"
272
-
273
- #: classes/class-fl-builder.php:784
274
- msgctxt "Custom post type label."
275
- msgid "No layout templates found."
276
- msgstr "Keine Layout-Vorlagen gefunden"
277
-
278
- #: classes/class-fl-builder.php:785
279
- msgctxt "Custom post type label."
280
- msgid "No layout templates found in Trash."
281
- msgstr "Keine Layout-Vorlagen im Papierkorb gefunden"
282
-
283
- #: classes/class-fl-builder.php:1150 includes/js-config.php:66
284
- #, php-format
285
- msgctxt "%s stands for module name."
286
- msgid "%s Settings"
287
- msgstr "%s Einstellungen"
288
-
289
- #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
290
- msgid "Text Editor"
291
- msgstr "Texteditor"
292
-
293
- #: includes/admin-posts.php:7
294
- #, php-format
295
- msgctxt "%s stands for custom branded \"Page Builder\" name."
296
- msgid "%s is currently active for this page."
297
- msgstr "%s ist derzeit für die Seite aktiv."
298
-
299
- #: includes/admin-posts.php:8
300
- #, php-format
301
- msgctxt "%s stands for custom branded \"Page Builder\" name."
302
- msgid "Launch %s"
303
- msgstr "Starte %s"
304
-
305
- # @ fl-builder
306
- #: includes/admin-posts.php:15
307
- #, php-format
308
- msgctxt "%s stands for custom branded \"Page Builder\" name."
309
- msgid ""
310
- "Switching to Text Editor mode will disable your %s layout until it is "
311
- "enabled again. Any edits made while in Text Editor mode will not be made on "
312
- "your %s layout. Do you want to continue?"
313
- msgstr ""
314
- "Das Umschalten auf den Text-Editor-Modus wird Ihr Layout %s deaktiviert, bis "
315
- "es wieder aktiviert wird. Alle Bearbeitungen im Text-Editor-Modus werden "
316
- "nicht auf Ihrem %s Layout gemacht werden. Möchten Sie fortfahren?"
317
-
318
- #: includes/admin-settings-branding.php:7
319
- msgid "White label the page builder by entering a custom name below."
320
- msgstr ""
321
- "White-Labeln Sie den Page Builder indem Sie unten einen eigenen Namen "
322
- "eingeben."
323
-
324
- #: includes/admin-settings-branding.php:10
325
- msgid ""
326
- "Additionally, you may also add a custom icon by entering the URL of an image "
327
- "below. Leave the field blank if you do not wish to use an icon."
328
- msgstr ""
329
- "Zusätzlich können Sie ein eigenes Icon hinzufügen indem Sie unten die URL "
330
- "eines Bildes eingeben. Lassen Sie das Feld frei wenn Sie kein Icon verwenden "
331
- "wollen."
332
-
333
- #: includes/admin-settings-branding.php:14
334
- msgid "Save Branding"
335
- msgstr "Branding speichern"
336
-
337
- #: includes/admin-settings-editing.php:3
338
- msgid "Editing Settings"
339
- msgstr "Einstellungen bearbeiten"
340
-
341
- #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
342
- #: includes/admin-settings-modules.php:10
343
- #: includes/admin-settings-post-types.php:10
344
- #: includes/admin-settings-templates.php:10
345
- msgid "Override network settings?"
346
- msgstr "Netzwerkeinstellungen überschreiben?"
347
-
348
- #: includes/admin-settings-editing.php:16
349
- #, php-format
350
- msgid ""
351
- "Set the <a%s>capability</a> required for users to access advanced builder "
352
- "editing such as adding, deleting or moving modules."
353
- msgstr ""
354
- "Setze die <a%s> Berechtigung</a> die Benutzer benötigen um fortgeschrittene "
355
- "Buildervorgänge, wie Module hinzufügen, löschen oder verschieben, "
356
- "durchzuführen."
357
-
358
- #: includes/admin-settings-editing.php:22
359
- msgid "Save Editing Settings"
360
- msgstr "Speichere Bearbeitungseinstellungen"
361
-
362
- # @ fl-builder
363
- #: includes/admin-settings-help-button.php:8
364
- msgid "Help Button Settings"
365
- msgstr "Hilfe-Button-Einstellungen"
366
-
367
- # @ fl-builder
368
- #: includes/admin-settings-help-button.php:17
369
- msgid "Enable Help Button"
370
- msgstr "Hilfe Button aktivieren"
371
-
372
- # @ fl-builder
373
- #: includes/admin-settings-help-button.php:23
374
- msgid "Help Tour"
375
- msgstr "Hilfe Tour"
376
-
377
- # @ fl-builder
378
- #: includes/admin-settings-help-button.php:27
379
- msgid "Enable Help Tour"
380
- msgstr "Hilfe Tour aktivieren"
381
-
382
- # @ fl-builder
383
- #: includes/admin-settings-help-button.php:31
384
- msgid "Help Video"
385
- msgstr "Hilfe-Video"
386
-
387
- # @ fl-builder
388
- #: includes/admin-settings-help-button.php:35
389
- msgid "Enable Help Video"
390
- msgstr "Hilfe Video aktivieren"
391
-
392
- # @ fl-builder
393
- #: includes/admin-settings-help-button.php:39
394
- msgid "Help Video Embed Code"
395
- msgstr "Hilfe Video Embed Code"
396
-
397
- # @ fl-builder
398
- #: includes/admin-settings-help-button.php:45
399
- msgid "Knowledge Base"
400
- msgstr "Wissensdatenbank"
401
-
402
- # @ fl-builder
403
- #: includes/admin-settings-help-button.php:49
404
- msgid "Enable Knowledge Base"
405
- msgstr "Wissensdatenbank aktivieren"
406
-
407
- # @ fl-builder
408
- #: includes/admin-settings-help-button.php:53
409
- msgid "Knowledge Base URL"
410
- msgstr "URL der Wissensdatenbank"
411
-
412
- # @ fl-builder
413
- #: includes/admin-settings-help-button.php:59
414
- msgid "Forums"
415
- msgstr "Foren"
416
-
417
- # @ fl-builder
418
- #: includes/admin-settings-help-button.php:63
419
- msgid "Enable Forums"
420
- msgstr "Foren aktivieren"
421
-
422
- # @ fl-builder
423
- #: includes/admin-settings-help-button.php:67
424
- msgid "Forums URL"
425
- msgstr "URL der Foren"
426
-
427
- # @ fl-builder
428
- #: includes/admin-settings-help-button.php:77
429
- msgid "Save Help Button Settings"
430
- msgstr "Hilfe-Button-Einstellungen speichern"
431
-
432
- # @ fl-builder
433
- #: includes/admin-settings-icons.php:3
434
- msgid "Icon Settings"
435
- msgstr "Symboleinstellungen"
436
-
437
- # @ fl-builder
438
- #: includes/admin-settings-icons.php:13
439
- msgid "Icons for the main site must be managed in the network admin."
440
- msgstr "Symbole für die Hauptseite müssen vom Netzwerkadmin verwaltet werden."
441
-
442
- # @ fl-builder
443
- #: includes/admin-settings-icons.php:33
444
- #, php-format
445
- msgid ""
446
- "Enable or disable icon sets using the options below or upload a custom icon "
447
- "set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
448
- msgstr ""
449
- "Aktivieren oder deaktivieren Sie die Icon-Sets durch die Optionen unten oder "
450
- "laden Sie ein benutzerdefiniertes Iconset von <a%s>Icomoon</a> oder <a"
451
- "%s>Fontello</a> hoch."
452
-
453
- # @ fl-builder
454
- #: includes/admin-settings-icons.php:48
455
- msgctxt "Plugin setup page: Delete icon set."
456
- msgid "Delete"
457
- msgstr "Löschen"
458
-
459
- # @ fl-builder
460
- #: includes/admin-settings-icons.php:59
461
- msgid "Upload Icon Set"
462
- msgstr "Icon Set hochladen"
463
-
464
- # @ fl-builder
465
- #: includes/admin-settings-icons.php:60
466
- msgid "Save Icon Settings"
467
- msgstr "Icon Einstellungen speichern"
468
-
469
- # @ fl-builder
470
- #: includes/admin-settings-js-config.php:4
471
- msgid "Select File"
472
- msgstr "Datei auswählen"
473
-
474
- #: includes/admin-settings-js-config.php:5
475
- msgid ""
476
- "Please type \"uninstall\" in the box below to confirm that you really want "
477
- "to uninstall the page builder and all of its data."
478
- msgstr ""
479
- "Bitte tippen Sie \"uninstal\" in das Feld unten um zu bestätigen, dass sie "
480
- "den Page Builder und all seine Daten löschen möchten."
481
-
482
- #: includes/admin-settings-modules.php:3
483
- msgid "Enabled Modules"
484
- msgstr "Aktivierte Module"
485
-
486
- #: includes/admin-settings-modules.php:16
487
- msgid "Check or uncheck modules below to enable or disable them."
488
- msgstr "Wählen Sie unten Module aus um sie zu aktivieren/deaktivieren."
489
-
490
- #: includes/admin-settings-modules.php:25
491
- msgctxt "Plugin setup page: Modules."
492
- msgid "All"
493
- msgstr "Alle"
494
-
495
- #: includes/admin-settings-modules.php:43
496
- msgid "Save Module Settings"
497
- msgstr "Moduleinstellungen speichern"
498
-
499
- #: includes/admin-settings-post-types.php:18
500
- msgid ""
501
- "Enter a comma separated list of the post types you would like the builder to "
502
- "work with."
503
- msgstr ""
504
- "Geben Sie eine kommagetrennte Liste von Posttypen ein, mit denen der Builder "
505
- "arbeiten soll."
506
-
507
- #: includes/admin-settings-post-types.php:19
508
- #: includes/admin-settings-post-types.php:39
509
- msgid "NOTE: Not all custom post types may be supported."
510
- msgstr ""
511
- "ANMERKUNG: Es werden eventuell nicht alle benutzerdefinierten Posttypen "
512
- "unterstützt."
513
-
514
- #: includes/admin-settings-post-types.php:34
515
- msgid "Example: page, post, product"
516
- msgstr "Beispiel: Seite, Post, Produkt"
517
-
518
- #: includes/admin-settings-post-types.php:38
519
- msgid "Select the post types you would like the builder to work with."
520
- msgstr "Wählen Sie die Posttypen aus mit denen der Builder arbeiten soll."
521
-
522
- #: includes/admin-settings-post-types.php:70
523
- msgid "Save Post Types"
524
- msgstr "Posttypen speichern"
525
-
526
- #: includes/admin-settings-templates.php:3
527
- msgid "Template Settings"
528
- msgstr "Vorlageneinstellungen"
529
-
530
- #: includes/admin-settings-templates.php:16
531
- msgid "Enable or disable templates using the options below."
532
- msgstr "Aktivieren oder deaktivieren Sie Vorlagen mit den Optionen unten."
533
-
534
- #: includes/admin-settings-templates.php:23
535
- msgid "Enable All Templates"
536
- msgstr "Alle Vorlagen aktivieren"
537
-
538
- #: includes/admin-settings-templates.php:24
539
- msgid "Enable Core Templates Only"
540
- msgstr "Nur Kernvorlagen aktivieren"
541
-
542
- #: includes/admin-settings-templates.php:25
543
- msgid "Enable User Templates Only"
544
- msgstr "Nur Benutzervorlagen aktivieren"
545
-
546
- #: includes/admin-settings-templates.php:26
547
- msgid "Disable All Templates"
548
- msgstr "Alle Vorlagen deaktivieren"
549
-
550
- #: includes/admin-settings-templates.php:30
551
- msgid "Save Template Settings"
552
- msgstr "Vorlageneinstellungen speichern"
553
-
554
- #: includes/admin-settings-uninstall.php:5
555
- msgid ""
556
- "Clicking the button below will uninstall the page builder plugin and delete "
557
- "all of the data associated with it. You can uninstall or deactivate the page "
558
- "builder from the plugins page instead if you do not wish to delete the data."
559
- msgstr ""
560
- "Der Button unten deinstalliert den Page Builder und löscht alle mit ihm "
561
- "verbundenen Daten. Sie können das Plugin stattdessen von der Pluginsite "
562
- "deinstallieren oder deaktivieren, wenn Sie die Daten nicht löschen wollen."
563
-
564
- #: includes/admin-settings-uninstall.php:7
565
- #: includes/admin-settings-uninstall.php:10
566
- #: includes/updater/includes/form.php:31
567
- msgid "NOTE:"
568
- msgstr "ANMERKUNG:"
569
-
570
- #: includes/admin-settings-uninstall.php:7
571
- msgid ""
572
- "The builder does not delete the post meta <code>_fl_builder_data</code>, "
573
- "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
574
- "you want to reinstall it later. If you do, the builder will rebuild all of "
575
- "its data using those meta values."
576
- msgstr ""
577
- "Der Builder löscht nicht das Post-Meta <code>_fl_builder_data</code>, "
578
- "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> falls "
579
- "sie es später neu installieren möchten. Wenn Sie das tun, wird der Builder "
580
- "all seine Daten mit diesen Metawerden wiederherstellen."
581
-
582
- #: includes/admin-settings-uninstall.php:10
583
- #: includes/updater/includes/form.php:31
584
- msgid "This applies to all sites on the network."
585
- msgstr "Dies bezieht sich auf alle Seiten des Netzwerks."
586
-
587
- #: includes/admin-settings-upgrade.php:5
588
- msgid ""
589
- "You are currently running the lite version of the Beaver Builder plugin. "
590
- "Upgrade today for access to premium features such as advanced modules, "
591
- "templates, support and more!"
592
- msgstr ""
593
- "Sie benutzen derzeit die Liteversion des BB. Upgraden Sie um Zugang zu "
594
- "Premium-Features zu erhalten!"
595
-
596
- #: includes/admin-settings-upgrade.php:7
597
- msgid "Upgrade Now"
598
- msgstr "Jetzt upgraden"
599
-
600
- #: includes/admin-settings-upgrade.php:9
601
- msgid "Learn More"
602
- msgstr "Mehr erfahren"
603
-
604
- #: includes/column-settings.php:4 includes/js-config.php:23
605
- msgid "Column Settings"
606
- msgstr "Spalteneinstellungen"
607
-
608
- #: includes/column-settings.php:7 includes/module-settings.php:87
609
- #: includes/row-settings.php:9 modules/accordion/accordion.php:45
610
- #: modules/button/button.php:108 modules/button/button.php:146
611
- #: modules/button/button.php:150 modules/callout/callout.php:241
612
- #: modules/callout/callout.php:543
613
- #: modules/content-slider/content-slider.php:425
614
- #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
615
- #: modules/cta/cta.php:299 modules/heading/heading.php:69
616
- #: modules/icon/icon.php:75 modules/icon-group/icon-group.php:44
617
- #: modules/pricing-table/pricing-table.php:43
618
- #: modules/pricing-table/pricing-table.php:155
619
- #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
620
- msgid "Style"
621
- msgstr "Stil"
622
-
623
- #: includes/column-settings.php:14
624
- msgid "Column Width"
625
- msgstr "Spaltenbreite"
626
-
627
- #: includes/column-settings.php:26 includes/row-settings.php:48
628
- #: modules/button/button.php:66 modules/callout/callout.php:225
629
- #: modules/callout/callout.php:478 modules/callout/callout.php:494
630
- #: modules/content-slider/content-slider.php:382
631
- #: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
632
- #: modules/cta/cta.php:221
633
- msgid "Text"
634
- msgstr "Text"
635
-
636
- #: includes/column-settings.php:30 includes/column-settings.php:43
637
- #: includes/column-settings.php:100 includes/row-settings.php:52
638
- #: includes/row-settings.php:109 includes/row-settings.php:403
639
- #: modules/callout/callout.php:391
640
- #: modules/content-slider/content-slider.php:337 modules/icon/icon.php:82
641
- #: modules/icon-group/icon-group.php:51 modules/separator/separator.php:34
642
- msgid "Color"
643
- msgstr "Farbe"
644
-
645
- #: includes/column-settings.php:39 includes/row-settings.php:105
646
- #: modules/button/button.php:115 modules/callout/callout.php:404
647
- #: modules/callout/callout.php:508
648
- #: modules/content-slider/content-slider.php:363
649
- #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
650
- #: modules/cta/cta.php:264 modules/icon/icon.php:95
651
- #: modules/icon-group/icon-group.php:64
652
- msgid "Background Color"
653
- msgstr "Hintergrundfarbe"
654
-
655
- #: includes/column-settings.php:51 includes/column-settings.php:108
656
- #: includes/row-settings.php:117 includes/row-settings.php:411
657
- #: modules/separator/separator.php:44
658
- msgid "Opacity"
659
- msgstr "Durchsichtigkeit"
660
-
661
- #: includes/column-settings.php:63 includes/row-settings.php:366
662
- msgid "Border"
663
- msgstr "Rahmen"
664
-
665
- #: includes/column-settings.php:67 includes/row-settings.php:65
666
- #: includes/row-settings.php:370 modules/callout/callout.php:474
667
- #: modules/content-slider/content-slider.php:331
668
- #: modules/content-slider/content-slider.php:378
669
- #: modules/content-slider/content-slider.php:596
670
- #: modules/content-slider/content-slider.php:729
671
- #: modules/slideshow/slideshow.php:339
672
- msgid "Type"
673
- msgstr "Typ"
674
-
675
- #: includes/column-settings.php:69 includes/row-settings.php:372
676
- msgid ""
677
- "The type of border to use. Double borders must have a width of at least 3px "
678
- "to render properly."
679
- msgstr ""
680
- "Der zu verwendende Linientyp. Doppelrahmen müssen eine Breite von mindestens "
681
- "3px haben um korrekt gerendert zu werden."
682
-
683
- #: includes/column-settings.php:71 includes/row-settings.php:374
684
- msgctxt "Border type."
685
- msgid "None"
686
- msgstr "Keiner"
687
-
688
- #: includes/column-settings.php:72 includes/row-settings.php:375
689
- #: modules/separator/separator.php:75
690
- msgctxt "Border type."
691
- msgid "Solid"
692
- msgstr "Durchgehend"
693
-
694
- #: includes/column-settings.php:73 includes/row-settings.php:376
695
- #: modules/separator/separator.php:76
696
- msgctxt "Border type."
697
- msgid "Dashed"
698
- msgstr "Gestrichelt"
699
-
700
- #: includes/column-settings.php:74 includes/row-settings.php:377
701
- #: modules/separator/separator.php:77
702
- msgctxt "Border type."
703
- msgid "Dotted"
704
- msgstr "Gepunktet"
705
-
706
- #: includes/column-settings.php:75 includes/row-settings.php:378
707
- #: modules/separator/separator.php:78
708
- msgctxt "Border type."
709
- msgid "Double"
710
- msgstr "Doppelt"
711
-
712
- #: includes/column-settings.php:119 includes/row-settings.php:422
713
- msgid "Top Width"
714
- msgstr "Breite oben"
715
-
716
- #: includes/column-settings.php:131 includes/row-settings.php:434
717
- msgid "Bottom Width"
718
- msgstr "Breite unten"
719
-
720
- #: includes/column-settings.php:143 includes/row-settings.php:446
721
- msgid "Left Width"
722
- msgstr "Breite links"
723
-
724
- #: includes/column-settings.php:155 includes/row-settings.php:458
725
- msgid "Right Width"
726
- msgstr "Breite rechts"
727
-
728
- #: includes/column-settings.php:170 includes/module-settings.php:6
729
- #: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
730
- msgid "Advanced"
731
- msgstr "Erweitert"
732
-
733
- #: includes/column-settings.php:173 includes/global-settings.php:41
734
- #: includes/global-settings.php:94 includes/module-settings.php:9
735
- #: includes/row-settings.php:476
736
- msgid "Margins"
737
- msgstr "Abstand aussen"
738
-
739
- #: includes/column-settings.php:177 includes/column-settings.php:230
740
- #: includes/module-settings.php:13 includes/row-settings.php:480
741
- #: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
742
- msgid "Top"
743
- msgstr "Oben"
744
-
745
- #: includes/column-settings.php:189 includes/column-settings.php:242
746
- #: includes/module-settings.php:25 includes/row-settings.php:492
747
- #: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
748
- msgid "Bottom"
749
- msgstr "Unten"
750
-
751
- #: includes/column-settings.php:201 includes/column-settings.php:254
752
- #: includes/module-settings.php:37 includes/row-settings.php:504
753
- #: includes/row-settings.php:557 modules/button/button.php:219
754
- #: modules/callout/callout.php:252
755
- #: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
756
- #: modules/heading/heading.php:89 modules/heading/heading.php:161
757
- #: modules/icon/icon.php:134 modules/icon-group/icon-group.php:111
758
- #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
759
- msgid "Left"
760
- msgstr "Links"
761
-
762
- #: includes/column-settings.php:213 includes/column-settings.php:266
763
- #: includes/module-settings.php:49 includes/row-settings.php:516
764
- #: includes/row-settings.php:569 modules/button/button.php:220
765
- #: modules/callout/callout.php:253
766
- #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
767
- #: modules/heading/heading.php:91 modules/heading/heading.php:163
768
- #: modules/icon/icon.php:135 modules/icon-group/icon-group.php:112
769
- #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
770
- msgid "Right"
771
- msgstr "Rechts"
772
-
773
- #: includes/column-settings.php:226 includes/global-settings.php:49
774
- #: includes/row-settings.php:529 modules/button/button.php:233
775
- #: modules/callout/callout.php:598
776
- #: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
777
- msgid "Padding"
778
- msgstr "Abstand innen"
779
-
780
- #: includes/column-settings.php:279 includes/global-settings.php:103
781
- #: includes/module-settings.php:62 includes/row-settings.php:582
782
- msgid "Responsive Layout"
783
- msgstr "Responsives Layout"
784
-
785
- #: includes/column-settings.php:283 includes/module-settings.php:66
786
- #: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
787
- msgid "Display"
788
- msgstr "Anzeigen"
789
-
790
- #: includes/column-settings.php:285 includes/module-settings.php:68
791
- #: includes/row-settings.php:588
792
- msgid "Always"
793
- msgstr "Immer"
794
-
795
- #: includes/column-settings.php:286 includes/module-settings.php:69
796
- #: includes/row-settings.php:589
797
- msgid "Large Devices Only"
798
- msgstr "Nur große Geräte"
799
-
800
- #: includes/column-settings.php:287 includes/module-settings.php:70
801
- #: includes/row-settings.php:590
802
- msgid "Large &amp; Medium Devices Only"
803
- msgstr "Nur große &amp; mittelgroße Geräte"
804
-
805
- #: includes/column-settings.php:288 includes/module-settings.php:71
806
- #: includes/row-settings.php:591
807
- msgid "Medium Devices Only"
808
- msgstr "Nur mittelgroße Geräte"
809
-
810
- #: includes/column-settings.php:289 includes/module-settings.php:72
811
- #: includes/row-settings.php:592
812
- msgid "Medium &amp; Small Devices Only"
813
- msgstr "Nur mittelgroße &amp; kleine Geräte"
814
-
815
- #: includes/column-settings.php:290 includes/module-settings.php:73
816
- #: includes/row-settings.php:593
817
- msgid "Small Devices Only"
818
- msgstr "Nur kleine Geräte"
819
-
820
- #: includes/column-settings.php:292
821
- msgid "Choose whether to show or hide this column at different device sizes."
822
- msgstr ""
823
- "Wählen Sie ob diese Spalte für verschiedene Gerätegrößen angezeigt oder "
824
- "versteckt werden soll."
825
-
826
- #: includes/column-settings.php:299
827
- msgid "Medium Device Width"
828
- msgstr "Breite für mittelgroße Geräte"
829
-
830
- #: includes/column-settings.php:300
831
- msgid "The width of this column on medium devices such as tablets."
832
- msgstr "Die Breite dieser Spalte auf mittelgroßen Geräten wie Tablets."
833
-
834
- #: includes/column-settings.php:302 includes/column-settings.php:330
835
- #: modules/callout/callout.php:283
836
- #: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
837
- #: modules/heading/heading.php:117 modules/heading/heading.php:144
838
- #: modules/heading/heading.php:174
839
- msgid "Default"
840
- msgstr "Default"
841
-
842
- #: includes/column-settings.php:303 includes/column-settings.php:331
843
- #: modules/button/button.php:193 modules/callout/callout.php:284
844
- #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
845
- #: modules/heading/heading.php:118 modules/heading/heading.php:145
846
- #: modules/heading/heading.php:175
847
- #: modules/social-buttons/social-buttons.php:74
848
- msgid "Custom"
849
- msgstr "Benutzerdefiniert"
850
-
851
- #: includes/column-settings.php:316
852
- msgid "Custom Medium Device Width"
853
- msgstr "Benutzerdefinierte Breite für mittelgroße Geräte"
854
-
855
- #: includes/column-settings.php:327
856
- msgid "Small Device Width"
857
- msgstr "Breite für kleine Geräte"
858
-
859
- #: includes/column-settings.php:328
860
- msgid "The width of this column on small devices such as phones."
861
- msgstr "Breite dieser Spalte auf kleinen Geräten wie Handys."
862
-
863
- #: includes/column-settings.php:344
864
- msgid "Custom Small Device Width"
865
- msgstr "Benutzerdefinerte Breite für kleine Geräte"
866
-
867
- # @ fl-builder
868
- #: includes/column-settings.php:356 includes/module-settings.php:115
869
- #: includes/row-settings.php:603
870
- msgid "CSS Selectors"
871
- msgstr "CSS-Selektoren"
872
-
873
- #: includes/column-settings.php:360 includes/loop-settings.php:27
874
- #: includes/module-settings.php:119 includes/row-settings.php:607
875
- msgid "ID"
876
- msgstr "ID"
877
-
878
- # @ fl-builder
879
- #: includes/column-settings.php:361
880
- msgid ""
881
- "A unique ID that will be applied to this column's HTML. Must start with a "
882
- "letter and only contain dashes, underscores, letters or numbers. No spaces."
883
- msgstr ""
884
- "Eine eindeutige ID, die auf das HTML dieser Spalte angewendet wird. Sie muss "
885
- "mit einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
886
- "oder Zahlen enthalten. Keine Leerzeichen."
887
-
888
- #: includes/column-settings.php:368
889
- msgid "CSS Class"
890
- msgstr "CSS Klasse"
891
-
892
- # @ fl-builder
893
- #: includes/column-settings.php:369
894
- msgid ""
895
- "A class that will be applied to this column's HTML. Must start with a letter "
896
- "and only contain dashes, underscores, letters or numbers. Separate multiple "
897
- "classes with spaces."
898
- msgstr ""
899
- "Eine Klasse, die auf das HTML dieser Spalte angewendet wird. Sie muss mit "
900
- "einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
901
- "oder Zahlen enthalten. Keine Leerzeichen."
902
-
903
- #: includes/field-form.php:28
904
- #, php-format
905
- msgctxt "%s stands for form field label."
906
- msgid "Edit %s"
907
- msgstr "Bearbeiten %s"
908
-
909
- #: includes/field-icon.php:2 includes/icon-selector.php:2
910
- msgid "Select Icon"
911
- msgstr "Icon auswählen"
912
-
913
- #: includes/field-icon.php:5 includes/field-photo.php:13
914
- msgid "Replace"
915
- msgstr "Ersetzen"
916
-
917
- #: includes/field-icon.php:7 includes/js-config.php:58
918
- msgid "Remove"
919
- msgstr "Löschen"
920
-
921
- #: includes/field-link.php:3
922
- msgid "Select"
923
- msgstr "Auswählen"
924
-
925
- #: includes/field-link.php:5
926
- msgid "Enter a post title to search."
927
- msgstr "Geben Sie den Posttitel ein, der gesucht werden soll."
928
-
929
- #: includes/field-link.php:6 includes/field-suggest.php:7
930
- msgid "Start typing..."
931
- msgstr "Beginnen Sie zu tippen..."
932
-
933
- #: includes/field-link.php:7 includes/icon-selector.php:28
934
- #: includes/js-config.php:19 includes/settings.php:63
935
- #: includes/template-selector.php:102 includes/ui.php:11
936
- msgid "Cancel"
937
- msgstr "Abbrechen"
938
-
939
- #: includes/field-multiple-photos.php:8
940
- #, php-format
941
- msgid "1 Photo Selected"
942
- msgid_plural "%d Photos Selected"
943
- msgstr[0] "1 Foto ausgewählt"
944
- msgstr[1] "%d Fotos ausgewählt"
945
-
946
- #: includes/field-multiple-photos.php:13
947
- msgid "Create Gallery"
948
- msgstr "Galerie erstellen"
949
-
950
- #: includes/field-multiple-photos.php:14
951
- msgid "Edit Gallery"
952
- msgstr "Galerie bearbeiten"
953
-
954
- #: includes/field-multiple-photos.php:15
955
- msgid "Add Photos"
956
- msgstr "Fotos hinzufügen"
957
-
958
- #: includes/field-photo.php:3 includes/js-config.php:63
959
- msgid "Select Photo"
960
- msgstr "Foto auswählen"
961
-
962
- #: includes/field-photo.php:12 includes/template-selector.php:83
963
- msgid "Edit"
964
- msgstr "Bearbeiten"
965
-
966
- #: includes/field-video.php:3 includes/js-config.php:65
967
- msgid "Select Video"
968
- msgstr "Video auswählen"
969
-
970
- #: includes/field-video.php:17
971
- msgid "Replace Video"
972
- msgstr "Video ersetzen"
973
-
974
- #: includes/global-settings.php:7 includes/user-template-settings.php:7
975
- #: modules/accordion/accordion.php:110 modules/button/button.php:59
976
- #: modules/callout/callout.php:209 modules/contact-form/contact-form.php:57
977
- #: modules/content-slider/content-slider.php:190
978
- #: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
979
- #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
980
- #: modules/html/html.php:26 modules/icon/icon.php:27
981
- #: modules/icon-group/icon-group.php:128 modules/map/map.php:26
982
- #: modules/photo/photo.php:368 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 "Allgemein"
991
-
992
- #: includes/global-settings.php:8
993
- msgid "Note: These settings apply to all posts and pages."
994
- msgstr "Anmerkung: Diese Einstellungen gelten für alle Beiträge und Seiten."
995
-
996
- #: includes/global-settings.php:11
997
- msgid "Default Page Heading"
998
- msgstr "Default Page Überschrift"
999
-
1000
- #: includes/global-settings.php:15
1001
- msgctxt ""
1002
- "General settings form field label. Intended meaning: \"Show page heading?\""
1003
- msgid "Show"
1004
- msgstr "Anzeigen"
1005
-
1006
- #: includes/global-settings.php:18 includes/global-settings.php:110
1007
- #: includes/row-settings.php:307 modules/accordion/accordion.php:90
1008
- #: modules/callout/callout.php:420
1009
- #: modules/content-slider/content-slider.php:209
1010
- #: modules/content-slider/content-slider.php:223
1011
- #: modules/content-slider/content-slider.php:257
1012
- #: modules/content-slider/content-slider.php:266
1013
- #: modules/content-slider/content-slider.php:537 modules/icon/icon.php:111
1014
- #: modules/icon-group/icon-group.php:80 modules/slideshow/slideshow.php:315
1015
- #: modules/slideshow/slideshow.php:325 modules/slideshow/slideshow.php:376
1016
- #: modules/slideshow/slideshow.php:417 modules/slideshow/slideshow.php:439
1017
- #: modules/slideshow/slideshow.php:488 modules/slideshow/slideshow.php:497
1018
- #: modules/slideshow/slideshow.php:506 modules/slideshow/slideshow.php:515
1019
- #: modules/slideshow/slideshow.php:524 modules/slideshow/slideshow.php:533
1020
- #: modules/slideshow/slideshow.php:542 modules/slideshow/slideshow.php:556
1021
- #: modules/slideshow/slideshow.php:571 modules/slideshow/slideshow.php:606
1022
- #: modules/slideshow/slideshow.php:618 modules/slideshow/slideshow.php:630
1023
- #: modules/slideshow/slideshow.php:642
1024
- #: modules/social-buttons/social-buttons.php:111
1025
- #: modules/social-buttons/social-buttons.php:120
1026
- #: modules/social-buttons/social-buttons.php:129
1027
- #: modules/testimonials/testimonials.php:85
1028
- #: modules/testimonials/testimonials.php:124
1029
- #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1030
- #: modules/video/video.php:123
1031
- msgid "No"
1032
- msgstr "Nein"
1033
-
1034
- #: includes/global-settings.php:19 includes/global-settings.php:111
1035
- #: includes/row-settings.php:308 modules/accordion/accordion.php:89
1036
- #: modules/callout/callout.php:421
1037
- #: modules/content-slider/content-slider.php:210
1038
- #: modules/content-slider/content-slider.php:224
1039
- #: modules/content-slider/content-slider.php:258
1040
- #: modules/content-slider/content-slider.php:267
1041
- #: modules/content-slider/content-slider.php:538 modules/icon/icon.php:112
1042
- #: modules/icon-group/icon-group.php:81 modules/slideshow/slideshow.php:316
1043
- #: modules/slideshow/slideshow.php:326 modules/slideshow/slideshow.php:377
1044
- #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:440
1045
- #: modules/slideshow/slideshow.php:489 modules/slideshow/slideshow.php:498
1046
- #: modules/slideshow/slideshow.php:507 modules/slideshow/slideshow.php:516
1047
- #: modules/slideshow/slideshow.php:525 modules/slideshow/slideshow.php:534
1048
- #: modules/slideshow/slideshow.php:543 modules/slideshow/slideshow.php:557
1049
- #: modules/slideshow/slideshow.php:572 modules/slideshow/slideshow.php:607
1050
- #: modules/slideshow/slideshow.php:619 modules/slideshow/slideshow.php:631
1051
- #: modules/slideshow/slideshow.php:643
1052
- #: modules/social-buttons/social-buttons.php:110
1053
- #: modules/social-buttons/social-buttons.php:119
1054
- #: modules/social-buttons/social-buttons.php:128
1055
- #: modules/testimonials/testimonials.php:86
1056
- #: modules/testimonials/testimonials.php:125
1057
- #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1058
- #: modules/video/video.php:124
1059
- msgid "Yes"
1060
- msgstr "Ja"
1061
-
1062
- #: includes/global-settings.php:26
1063
- msgid ""
1064
- "Choosing no will hide the default theme heading for the \"Page\" post type. "
1065
- "You will also be required to enter some basic CSS for this to work if you "
1066
- "choose no."
1067
- msgstr ""
1068
- "Wenn Sie Nein wählen, wird das Default Theme Überschrift für den \"Page\" "
1069
- "Posttyp nicht angezigt. Sie müssen grundlegendes CSS eingeben, damit die "
1070
- "Einstellung Nein funktioniert."
1071
-
1072
- #: includes/global-settings.php:30
1073
- msgid "CSS Selector"
1074
- msgstr "CSS-Selektor"
1075
-
1076
- #: includes/global-settings.php:32
1077
- msgid "Enter a CSS selector for the default page heading to hide it."
1078
- msgstr ""
1079
- "Geben Sie einen CSS-Selektor für das Default Page Überschrift ein, um es "
1080
- "nicht anzuzeigen."
1081
-
1082
- #: includes/global-settings.php:37
1083
- msgid "Rows"
1084
- msgstr "Zeilen"
1085
-
1086
- #: includes/global-settings.php:57
1087
- msgid "Max Width"
1088
- msgstr "Maximale Breite"
1089
-
1090
- #: includes/global-settings.php:62
1091
- msgid ""
1092
- "All rows will default to this width. You can override this and make a row "
1093
- "full width in the settings for each row."
1094
- msgstr ""
1095
- "Alle Zeilen werden defaultmäßig diese Breite haben. Sie können sie "
1096
- "überschreiben und für jede Reihe einzeln eine Zeilengesamtbreite angeben."
1097
-
1098
- # @ fl-builder
1099
- #: includes/global-settings.php:66
1100
- msgid "Default Row Width"
1101
- msgstr "Standard Zeilenbreite"
1102
-
1103
- #: includes/global-settings.php:69 includes/global-settings.php:83
1104
- #: includes/row-settings.php:19 includes/row-settings.php:37
1105
- #: includes/row-settings.php:179
1106
- msgid "Fixed"
1107
- msgstr "Fest"
1108
-
1109
- #: includes/global-settings.php:70 includes/global-settings.php:84
1110
- #: includes/row-settings.php:20 includes/row-settings.php:38
1111
- #: modules/button/button.php:192 modules/callout/callout.php:585
1112
- msgid "Full Width"
1113
- msgstr "Vollgröße"
1114
-
1115
- # @ fl-builder
1116
- #: includes/global-settings.php:80
1117
- msgid "Default Row Content Width"
1118
- msgstr "Standard Zeilenbreite des Contents"
1119
-
1120
- #: includes/global-settings.php:107
1121
- msgctxt ""
1122
- "General settings form field label. Intended meaning: \"Responsive layout "
1123
- "enabled?\""
1124
- msgid "Enabled"
1125
- msgstr "Aktiviert"
1126
-
1127
- #: includes/global-settings.php:121
1128
- msgid "Medium Device Breakpoint"
1129
- msgstr "Breakpoint für mittelgroße Geräte"
1130
-
1131
- #: includes/global-settings.php:126
1132
- msgid ""
1133
- "The browser width at which the layout will adjust for medium devices such as "
1134
- "tablets."
1135
- msgstr ""
1136
- "Die Browserbreite bei der sich das Layout für mittelgroße Geräte wie Tablets "
1137
- "anpasst."
1138
-
1139
- #: includes/global-settings.php:130
1140
- msgid "Small Device Breakpoint"
1141
- msgstr "Breakpoint für kleine Geräte"
1142
-
1143
- #: includes/global-settings.php:135
1144
- msgid ""
1145
- "The browser width at which the layout will adjust for small devices such as "
1146
- "phones."
1147
- msgstr ""
1148
- "Die Browserbreite bei der sich das Layout für kleine Geräte wie Handys "
1149
- "anpasst."
1150
-
1151
- # @ fl-builder
1152
- #: includes/icon-selector.php:5
1153
- msgctxt "Select option for showing all icon libraries."
1154
- msgid "All Libraries"
1155
- msgstr "Alle Bibliotheken"
1156
-
1157
- #: includes/js-config.php:18
1158
- msgid "What would you like to do?"
1159
- msgstr "Was wollen Sie tun?"
1160
-
1161
- #: includes/js-config.php:20
1162
- msgid "Change Template"
1163
- msgstr "Vorlage ändern"
1164
-
1165
- #: includes/js-config.php:21
1166
- msgid ""
1167
- "Warning! Changing the template will replace your existing layout. Do you "
1168
- "really want to do this?"
1169
- msgstr ""
1170
- "Achtung! Wenn Sie die Vorlage ändern wird ihr existierendes Layout ersetzt. "
1171
- "Wollen Sie das wirklich tun?"
1172
-
1173
- #: includes/js-config.php:22
1174
- msgid "Column"
1175
- msgstr "Spalte"
1176
-
1177
- #: includes/js-config.php:24
1178
- msgid ""
1179
- "Please select either a background layout or content layout before submitting."
1180
- msgstr ""
1181
- "Bitte wählen Sie entweder ein Hintergrundlayout oder ein Inhaltslayout bevor "
1182
- "Sie abschicken."
1183
-
1184
- #: includes/js-config.php:25
1185
- msgid "Do you really want to delete this item?"
1186
- msgstr "Wollen Sie dieses Element wirklich löschen?"
1187
-
1188
- #: includes/js-config.php:26
1189
- msgid ""
1190
- "Do you really want to delete this module? All content data will be "
1191
- "permanently deleted."
1192
- msgstr ""
1193
- "Wollen Sie dieses Modul wirklich löschen? Alle Inhaltsdaten werden permanent "
1194
- "gelöscht."
1195
-
1196
- #: includes/js-config.php:27
1197
- msgid ""
1198
- "Do you really want to delete this row? All content data will be permanently "
1199
- "deleted."
1200
- msgstr ""
1201
- "Wollen Sie diese Zeile wirklich löschen? Alle Inhaltsdaten werden permanent "
1202
- "gelöscht."
1203
-
1204
- #: includes/js-config.php:28
1205
- msgid "Do you really want to delete this template?"
1206
- msgstr "Wollen Sie diese Vorlage wirklich löschen?"
1207
-
1208
- #: includes/js-config.php:29
1209
- msgid "Discard Draft"
1210
- msgstr "Entwurf verwerfen"
1211
-
1212
- #: includes/js-config.php:30
1213
- msgid ""
1214
- "Do you really want to discard this draft? All of your changes that are not "
1215
- "published will be lost."
1216
- msgstr ""
1217
- "Wollen Sie die Vorlage wirklich verwerfen? Alle Veränderungen, die nicht "
1218
- "publiziert sind, gehen verloren."
1219
-
1220
- #: includes/js-config.php:31 includes/ui.php:44
1221
- msgid "Done"
1222
- msgstr "Fertig"
1223
-
1224
- #: includes/js-config.php:32
1225
- msgid "Save Draft"
1226
- msgstr "Entwurf speichern"
1227
-
1228
- #: includes/js-config.php:33
1229
- msgctxt "Duplicate page/post action label."
1230
- msgid "Duplicate"
1231
- msgstr "Duplizieren"
1232
-
1233
- #: includes/js-config.php:34
1234
- msgid "Duplicate This Page"
1235
- msgstr "Diese Seite duplizieren"
1236
-
1237
- #: includes/js-config.php:35
1238
- msgid "Duplicate This Template"
1239
- msgstr "Diese Vorlage duplizieren"
1240
-
1241
- #: includes/js-config.php:36
1242
- msgid "Edit Global Settings"
1243
- msgstr "Globale Einstellungen bearbeiten"
1244
-
1245
- #: includes/js-config.php:37
1246
- msgid "Drop a row layout or module to get started!"
1247
- msgstr "Wählen Sie ein Zeilenlayout oder Modul um loszulegen!"
1248
-
1249
- # @ fl-builder
1250
- #: includes/js-config.php:38
1251
- msgid ""
1252
- "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
1253
- "not functioning as expected the cause is most likely this error. Please help "
1254
- "us by disabling all plugins and testing Beaver Builder while reactivating "
1255
- "each to determine if the issue is related to a third party plugin."
1256
- msgstr ""
1257
- "Beaver Builder erhielt den folgenden JavaScript-Fehler. Wenn Beaver Builde "
1258
- "nicht wie erwartet funktioniert, ist die Ursache sehr wahrscheinlich dieser "
1259
- "Fehle. Bitte helfen Sie uns, indem Sie alle Plugins deaktivieren und nach "
1260
- "und nach wieder aktivieren um zu testen ob es an einem anderen Plugin liegt."
1261
-
1262
- #: includes/js-config.php:39
1263
- msgid "Full Size"
1264
- msgstr "Vollgröße"
1265
-
1266
- # @ fl-builder
1267
- #: includes/js-config.php:40
1268
- msgid "Get Help"
1269
- msgstr "Hilfe holen"
1270
-
1271
- # @ fl-builder
1272
- #: includes/js-config.php:41
1273
- msgid "Getting Started Video"
1274
- msgstr "Erste Schritte-Video"
1275
-
1276
- # @ fl-builder
1277
- #: includes/js-config.php:42
1278
- msgid "\"{message}\" on line {line} of {file}."
1279
- msgstr "\"{message}\" in der Zeile {line} in {file}."
1280
-
1281
- #: includes/js-config.php:43
1282
- msgid "Insert"
1283
- msgstr "Einfügen"
1284
-
1285
- #: includes/js-config.php:44
1286
- msgid "Large"
1287
- msgstr "Groß"
1288
-
1289
- #: includes/js-config.php:45
1290
- msgid "Manage Templates"
1291
- msgstr "Vorlagen verwalten"
1292
-
1293
- #: includes/js-config.php:46
1294
- msgid "Medium"
1295
- msgstr "Mittel"
1296
-
1297
- #: includes/js-config.php:47
1298
- msgid "Module"
1299
- msgstr "Modul"
1300
-
1301
- #: includes/js-config.php:48
1302
- msgid "Move"
1303
- msgstr "Verschieben"
1304
-
1305
- #: includes/js-config.php:49
1306
- msgid "New Column"
1307
- msgstr "Neue Spalte"
1308
-
1309
- #: includes/js-config.php:50
1310
- msgid "New Row"
1311
- msgstr "Neue Zeile"
1312
-
1313
- #: includes/js-config.php:51
1314
- msgid "No results found."
1315
- msgstr "Keine Ergebnisse gefunden."
1316
-
1317
- # @ fl-builder
1318
- #: includes/js-config.php:52
1319
- msgid "No Thanks"
1320
- msgstr "Nein, danke"
1321
-
1322
- #: includes/js-config.php:53
1323
- msgid "OK"
1324
- msgstr "OK"
1325
-
1326
- #: includes/js-config.php:54 modules/photo/photo.php:454
1327
- msgid "Photo Page"
1328
- msgstr "Fotoseite"
1329
-
1330
- #: includes/js-config.php:55
1331
- msgid "Photo Selected"
1332
- msgstr "Ausgewähltes Foto"
1333
-
1334
- #: includes/js-config.php:56
1335
- msgid "Photos Selected"
1336
- msgstr "Ausgewählte Fotos"
1337
-
1338
- #: includes/js-config.php:57
1339
- msgid "Publish Changes"
1340
- msgstr "Änderungen publizieren"
1341
-
1342
- #: includes/js-config.php:59
1343
- msgid "Row"
1344
- msgstr "Zeile"
1345
-
1346
- #: includes/js-config.php:60 includes/row-settings.php:6
1347
- msgid "Row Settings"
1348
- msgstr "Zeileneinstellungen"
1349
-
1350
- #: includes/js-config.php:61
1351
- msgid "Save Core Template"
1352
- msgstr "Kernvorlage speichern"
1353
-
1354
- #: includes/js-config.php:62 includes/ui.php:10
1355
- #: includes/user-template-settings.php:4
1356
- msgid "Save Template"
1357
- msgstr "Vorlage speichern"
1358
-
1359
- #: includes/js-config.php:64
1360
- msgid "Select Photos"
1361
- msgstr "Fotos auswählen"
1362
-
1363
- # @ fl-builder
1364
- #: includes/js-config.php:67
1365
- msgid "Take a Tour"
1366
- msgstr "Machen Sie einen Rundgang"
1367
-
1368
- #: includes/js-config.php:68
1369
- msgid "Append New Layout"
1370
- msgstr "Neues Layout hinzufügen"
1371
-
1372
- #: includes/js-config.php:69
1373
- msgid "Replace Existing Layout"
1374
- msgstr "Existierendes Layout ersetzen"
1375
-
1376
- #: includes/js-config.php:70
1377
- msgid "Template Saved!"
1378
- msgstr "Vorlage gespeichert!"
1379
-
1380
- #: includes/js-config.php:71
1381
- msgid "Thumbnail"
1382
- msgstr "Thumbnail"
1383
-
1384
- # @ fl-builder
1385
- #: includes/js-config.php:72
1386
- msgid "Next"
1387
- msgstr "Weiter"
1388
-
1389
- # @ fl-builder
1390
- #: includes/js-config.php:73
1391
- msgid "Get Started"
1392
- msgstr "Erste Schritte"
1393
-
1394
- # @ fl-builder
1395
- #: includes/js-config.php:74
1396
- msgid "Choose a Template"
1397
- msgstr "Wählen Sie eine Vorlage"
1398
-
1399
- # @ fl-builder
1400
- #: includes/js-config.php:75
1401
- msgid ""
1402
- "Get started by choosing a layout template to customize, or build a page from "
1403
- "scratch by selecting the blank layout template."
1404
- msgstr ""
1405
- "Beginnen Sie damit eine Layoutvorlage anzupassen oder erstellen Sie eine "
1406
- "Seite von Grund auf neu, indem Sie die leere Layout-Vorlage auswählen."
1407
-
1408
- # @ fl-builder
1409
- #: includes/js-config.php:76
1410
- msgid "Add Rows"
1411
- msgstr "Zeilen hinzufügen"
1412
-
1413
- # @ fl-builder
1414
- #: includes/js-config.php:77
1415
- msgid ""
1416
- "Add mulit-column rows, adjust spacing, add backgrounds and more by dragging "
1417
- "and dropping row layouts onto the page."
1418
- msgstr ""
1419
- "Fügen Sie mehre Spaleten und Zeilen hinzu, passen Sie des Abstands an, fügen "
1420
- "Sie per Drag & Drop Hintergründe und mehr ein."
1421
-
1422
- #: includes/js-config.php:78 includes/ui.php:49
1423
- msgid "Add Content"
1424
- msgstr "Inhalt hinzufügen"
1425
-
1426
- # @ fl-builder
1427
- #: includes/js-config.php:79
1428
- msgid ""
1429
- "Add new content by dragging and dropping modules or widgets into your row "
1430
- "layouts or to create a new row layout."
1431
- msgstr ""
1432
- "Fürgen Sie neue Inhalte per Drag & Drop ein, indem Sie Module oder Widgets "
1433
- "in die Zeilenlayouts hinzufügen oder ein neues Zeilen Layout erstellen. "
1434
-
1435
- # @ fl-builder
1436
- #: includes/js-config.php:80
1437
- msgid "Edit Content"
1438
- msgstr "Inhalt bearbeiten"
1439
-
1440
- # @ fl-builder
1441
- #: includes/js-config.php:81
1442
- msgid ""
1443
- "Move your mouse over rows, columns or modules to edit and interact with them."
1444
- msgstr ""
1445
- "Bewegen Sie Ihre Maus über die Zeilen, Spalten oder Module um sie zu "
1446
- "bearbeiten und mit ihnen zu interagieren."
1447
-
1448
- # @ fl-builder
1449
- #: includes/js-config.php:82
1450
- msgid ""
1451
- "Use the action buttons to perform actions such as moving, editing, "
1452
- "duplicating or deleting rows, columns and modules."
1453
- msgstr ""
1454
- "Verwenden Sie die Aktions-Buttons, z. B. verschieben, bearbeiten, kopieren "
1455
- "oder löschen von Zeilen, Spalten und Module."
1456
-
1457
- # @ fl-builder
1458
- #: includes/js-config.php:83
1459
- msgid "Add More Content"
1460
- msgstr "Weitere Inhalte hinzufügen"
1461
-
1462
- # @ fl-builder
1463
- #: includes/js-config.php:84
1464
- msgid ""
1465
- "Use the Add Content button to open the content panel and add new row "
1466
- "layouts, modules or widgets."
1467
- msgstr ""
1468
- "Verwenden Sie die Schaltfläche \"Inhalt hinzufügen\", um das Inhalts-"
1469
- "Bedienfeld zu öffnen und neue Zeile-Layouts, Module oder Widgets "
1470
- "hinzuzufügen."
1471
-
1472
- # @ fl-builder
1473
- #: includes/js-config.php:85
1474
- msgid "Change Templates"
1475
- msgstr "Vorlage ändern"
1476
-
1477
- # @ fl-builder
1478
- #: includes/js-config.php:86
1479
- msgid ""
1480
- "Use the Templates button to pick a new template or append one to your "
1481
- "layout. Appending will insert a new template at the end of your existing "
1482
- "page content."
1483
- msgstr ""
1484
- "Verwenden Sie die Schaltfläche \"Vorlagen\", wählen Sie eine neue Vorlage "
1485
- "oder fügen Sie sie Ihrem bestehenden Layout hinzu. Die angehängte Vorlage "
1486
- "wird am Ende des Inhalts Ihrer bestehenden Seite eingefügt."
1487
-
1488
- # @ fl-builder
1489
- #: includes/js-config.php:87
1490
- msgid "Helpful Tools"
1491
- msgstr "Hilfreiche Werkzeuge"
1492
-
1493
- # @ fl-builder
1494
- #: includes/js-config.php:88
1495
- msgid ""
1496
- "The Tools button lets you duplicate a page, save a template or edit the "
1497
- "global settings."
1498
- msgstr ""
1499
- "Mit dem Tools Button können Sie eine Seite duplizieren, ein Template "
1500
- "speichern oder die globalen Einstellungen editieren."
1501
-
1502
- # @ fl-builder
1503
- #: includes/js-config.php:89
1504
- msgid "Publish Your Changes"
1505
- msgstr "Änderungen veröffentlichen"
1506
-
1507
- # @ fl-builder
1508
- #: includes/js-config.php:90
1509
- msgid ""
1510
- "Once you're finished, click the Done button to publish your changes, save a "
1511
- "draft or revert back to the last published state."
1512
- msgstr ""
1513
- "Sobald Sie fertig sind, klicken Sie auf den \"fertig\" Button um Ihre "
1514
- "Änderungen zu veröffentlichen, den Entwurf zu speichern oder den "
1515
- "ursprünglichen Zustand wiederherzustellen. "
1516
-
1517
- # @ fl-builder
1518
- #: includes/js-config.php:91
1519
- msgid "Let's Get Building!"
1520
- msgstr "Also los geht's!"
1521
-
1522
- # @ fl-builder
1523
- #: includes/js-config.php:92
1524
- msgid ""
1525
- "Now that you know the basics, you're ready to start building! If at any time "
1526
- "you need help, click the help icon in the upper right corner to access the "
1527
- "help menu. Happy building!"
1528
- msgstr ""
1529
- "Nun, da Sie die Grundlagen kennen, können Sie loslegen! Wenn Sie zu "
1530
- "irgendeinem Zeitpunkt Hilfe benötigen, klicken Sie auf das Hilfe-Symbol in "
1531
- "der oberen rechten Ecke, um das Hilfemenü aufzurufen. Viel Spaß beim "
1532
- "Gestalter Ihrer Website!"
1533
-
1534
- #: includes/js-config.php:93
1535
- msgid ""
1536
- "The settings you are currently editing will not be saved if you navigate "
1537
- "away from this page."
1538
- msgstr ""
1539
- "Die Einstellungen die Sie gerade bearbeiten werden nicht gespeichert, wenn "
1540
- "Sie diese Seite verlassen."
1541
-
1542
- # @ fl-builder
1543
- #: includes/js-config.php:94
1544
- msgid "View the Knowledge Base"
1545
- msgstr "Wissensdatenbank anzeigen"
1546
-
1547
- # @ fl-builder
1548
- #: includes/js-config.php:95
1549
- msgid "Visit the Forums"
1550
- msgstr "Forum besuchen"
1551
-
1552
- # @ fl-builder
1553
- #: includes/js-config.php:96
1554
- msgid "Watch the Video"
1555
- msgstr "Video anschauen"
1556
-
1557
- # @ fl-builder
1558
- #: includes/js-config.php:97
1559
- msgid ""
1560
- "Welcome! It looks like this might be your first time using the builder. "
1561
- "Would you like to take a tour?"
1562
- msgstr ""
1563
- "Willkommen! Es sieht so aus, als würden Sie den Builder zum ersten Mal "
1564
- "verwenden. Wollen Sie eine kleine Tour starten?"
1565
-
1566
- # @ fl-builder
1567
- #: includes/js-config.php:98
1568
- msgid "Yes Please!"
1569
- msgstr "Ja, danke."
1570
-
1571
- #: includes/loop-settings.php:19
1572
- msgid "Post Type"
1573
- msgstr "Posttyp"
1574
-
1575
- #: includes/loop-settings.php:25
1576
- msgid "Order By"
1577
- msgstr "Ordnen nach"
1578
-
1579
- #: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
1580
- #: modules/woocommerce/woocommerce.php:189
1581
- msgid "Date"
1582
- msgstr "Datum"
1583
-
1584
- #: includes/loop-settings.php:29
1585
- msgid "Date Last Modified"
1586
- msgstr "Letztes Änderungsdatum"
1587
-
1588
- #: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
1589
- #: modules/pricing-table/pricing-table.php:94
1590
- msgid "Title"
1591
- msgstr "Titel"
1592
-
1593
- #: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
1594
- msgid "Author"
1595
- msgstr "Autor"
1596
-
1597
- #: includes/loop-settings.php:32
1598
- msgid "Comment Count"
1599
- msgstr "Kommentarzähler"
1600
-
1601
- #: includes/loop-settings.php:33
1602
- msgid "Menu Order"
1603
- msgstr "Menüreihenfolge"
1604
-
1605
- #: includes/loop-settings.php:34
1606
- msgid "Random"
1607
- msgstr "Zufällig"
1608
-
1609
- #: includes/loop-settings.php:41
1610
- msgid "Order"
1611
- msgstr "Geordnet"
1612
-
1613
- #: includes/loop-settings.php:43
1614
- msgid "Descending"
1615
- msgstr "Absteigend"
1616
-
1617
- #: includes/loop-settings.php:44
1618
- msgid "Ascending"
1619
- msgstr "Aufsteigend"
1620
-
1621
- #: includes/loop-settings.php:52
1622
- msgid "Filter"
1623
- msgstr "Filter"
1624
-
1625
- #: includes/loop-settings.php:63
1626
- #, php-format
1627
- msgid "Enter a comma separated list of %s. Only these %s will be shown."
1628
- msgstr ""
1629
- "Geben Sie eine kommagetrennte Liste von %s ein. Nur diese %s werden "
1630
- "angezeigt."
1631
-
1632
- #: includes/loop-settings.php:76
1633
- #, php-format
1634
- msgid ""
1635
- "Enter a comma separated list of %s. Only posts with these %s will be shown."
1636
- msgstr ""
1637
- "Geben Sie eine kommagetrennte Liste von %s ein. Nur Beiträge mit diesen %s "
1638
- "werden angezeigt."
1639
-
1640
- #: includes/loop-settings.php:90
1641
- msgid "Authors"
1642
- msgstr "Autoren"
1643
-
1644
- #: includes/loop-settings.php:91
1645
- msgid ""
1646
- "Enter a comma separated list of authors usernames. Only posts with these "
1647
- "authors will be shown."
1648
- msgstr ""
1649
- "Geben Sie eine kommagetrennte Liste von %s ein. Nur Beiträge mit diesen "
1650
- "Autoren werden angezeigt."
1651
-
1652
- #: includes/module-settings.php:75
1653
- msgid "Choose whether to show or hide this module at different device sizes."
1654
- msgstr ""
1655
- "Wählen Sie ob sie das Modul für verschiedene Gerätegrößen anzeigen möchten "
1656
- "oder nicht."
1657
-
1658
- #: includes/module-settings.php:83
1659
- msgid "Animation"
1660
- msgstr "Animation"
1661
-
1662
- #: includes/module-settings.php:89
1663
- msgctxt "Animation style."
1664
- msgid "None"
1665
- msgstr "Keine"
1666
-
1667
- #: includes/module-settings.php:90
1668
- msgctxt "Animation style."
1669
- msgid "Fade In"
1670
- msgstr "Fade In"
1671
-
1672
- #: includes/module-settings.php:91
1673
- msgctxt "Animation style."
1674
- msgid "Slide Left"
1675
- msgstr "Slide Left"
1676
-
1677
- #: includes/module-settings.php:92
1678
- msgctxt "Animation style."
1679
- msgid "Slide Right"
1680
- msgstr "Slide Right"
1681
-
1682
- #: includes/module-settings.php:93
1683
- msgctxt "Animation style."
1684
- msgid "Slide Up"
1685
- msgstr "Slide Up"
1686
-
1687
- #: includes/module-settings.php:94
1688
- msgctxt "Animation style."
1689
- msgid "Slide Down"
1690
- msgstr "Slide Down"
1691
-
1692
- #: includes/module-settings.php:102
1693
- #: modules/content-slider/content-slider.php:229
1694
- #: modules/testimonials/testimonials.php:91
1695
- msgid "Delay"
1696
- msgstr "Verzögerung"
1697
-
1698
- #: includes/module-settings.php:106 includes/row-settings.php:266
1699
- #: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
1700
- #: modules/content-slider/content-slider.php:250
1701
- #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
1702
- #: modules/slideshow/slideshow.php:581
1703
- #: modules/testimonials/testimonials.php:95
1704
- #: modules/testimonials/testimonials.php:112
1705
- msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
1706
- msgid "seconds"
1707
- msgstr "Sekunden"
1708
-
1709
- #: includes/module-settings.php:107
1710
- msgid "The amount of time in seconds before this animation starts."
1711
- msgstr "Die Zahl an Sekunden bevor diese Animation beginnt."
1712
-
1713
- # @ fl-builder
1714
- #: includes/module-settings.php:120
1715
- msgid ""
1716
- "A unique ID that will be applied to this module's HTML. Must start with a "
1717
- "letter and only contain dashes, underscores, letters or numbers. No spaces."
1718
- msgstr ""
1719
- "Eine eindeutige ID, die auf das HTML dieses Moduls angewendet wird. Sie muss "
1720
- "mit einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
1721
- "oder Zahlen enthalten. Keine Leerzeichen."
1722
-
1723
- # @ fl-builder
1724
- #: includes/module-settings.php:127 includes/row-settings.php:615
1725
- msgid "Class"
1726
- msgstr "Klasse"
1727
-
1728
- # @ fl-builder
1729
- #: includes/module-settings.php:128
1730
- msgid ""
1731
- "A class that will be applied to this module's HTML. Must start with a letter "
1732
- "and only contain dashes, underscores, letters or numbers. Separate multiple "
1733
- "classes with spaces."
1734
- msgstr ""
1735
- "Eine Klasse, die in HTML dieses Moduls angewendet wird. Sie muss mit einem "
1736
- "Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben oder "
1737
- "Zahlen enthalten. Keine Leerzeichen."
1738
-
1739
- #: includes/row-settings.php:16 modules/button/button.php:188
1740
- #: modules/content-slider/content-slider.php:483
1741
- msgid "Width"
1742
- msgstr "Breite"
1743
-
1744
- #: includes/row-settings.php:27
1745
- msgid ""
1746
- "Full width rows span the width of the page from edge to edge. Fixed rows are "
1747
- "no wider than the Row Max Width set in the Global Settings."
1748
- msgstr ""
1749
- "Zeilen mit voller Breite sind so breit wie die ganze Seite. Zeilen mit "
1750
- "fester Breite sind nicht breiter als die in den globalen Einstellungen "
1751
- "eingestellte maximale Zeilenbreite."
1752
-
1753
- #: includes/row-settings.php:34
1754
- msgid "Content Width"
1755
- msgstr "Inhaltsbreite"
1756
-
1757
- #: includes/row-settings.php:40
1758
- msgid ""
1759
- "Full width content spans the width of the page from edge to edge. Fixed "
1760
- "content is no wider than the Row Max Width set in the Global Settings."
1761
- msgstr ""
1762
- "Inhalt mit voller Breite ist so breit wie die ganze Seite. Inhalt mit fester "
1763
- "Breite sind nicht breiter als die in den globalen Einstellungen eingestellte "
1764
- "maximale Inhaltsbreite."
1765
-
1766
- #: includes/row-settings.php:61
1767
- msgid "Background"
1768
- msgstr "Hintergrund"
1769
-
1770
- #: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
1771
- msgctxt "Background type."
1772
- msgid "None"
1773
- msgstr "Keiner"
1774
-
1775
- #: includes/row-settings.php:69
1776
- msgctxt "Background type."
1777
- msgid "Color"
1778
- msgstr "Farbe"
1779
-
1780
- #: includes/row-settings.php:70
1781
- msgctxt "Background type."
1782
- msgid "Photo"
1783
- msgstr "Foto"
1784
-
1785
- #: includes/row-settings.php:71
1786
- msgctxt "Background type."
1787
- msgid "Video"
1788
- msgstr "Video"
1789
-
1790
- #: includes/row-settings.php:73
1791
- msgctxt "Background type."
1792
- msgid "Slideshow"
1793
- msgstr "Diashow"
1794
-
1795
- #: includes/row-settings.php:77
1796
- msgctxt "Background type."
1797
- msgid "Parallax"
1798
- msgstr "Parallax"
1799
-
1800
- #: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
1801
- msgid "Background Photo"
1802
- msgstr "Hintergrundfoto"
1803
-
1804
- #: includes/row-settings.php:133 includes/row-settings.php:321
1805
- #: modules/callout/callout.php:316 modules/callout/callout.php:332
1806
- #: modules/callout/callout.php:336
1807
- #: modules/content-slider/content-slider.php:335
1808
- #: modules/content-slider/content-slider.php:404
1809
- #: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
1810
- #: modules/photo/photo.php:392
1811
- msgid "Photo"
1812
- msgstr "Foto"
1813
-
1814
- #: includes/row-settings.php:140
1815
- msgid "Repeat"
1816
- msgstr "Wiederholen"
1817
-
1818
- #: includes/row-settings.php:143
1819
- msgctxt "Background repeat."
1820
- msgid "None"
1821
- msgstr "Nicht"
1822
-
1823
- #: includes/row-settings.php:144
1824
- msgctxt "Background repeat."
1825
- msgid "Tile"
1826
- msgstr "Tile"
1827
-
1828
- #: includes/row-settings.php:145
1829
- msgctxt "Background repeat."
1830
- msgid "Horizontal"
1831
- msgstr "Horizontal"
1832
-
1833
- #: includes/row-settings.php:146
1834
- msgctxt "Background repeat."
1835
- msgid "Vertical"
1836
- msgstr "Vertikal"
1837
-
1838
- #: includes/row-settings.php:148
1839
- msgid ""
1840
- "Repeat applies to how the image should display in the row background. "
1841
- "Choosing none will display the image as uploaded. Tile will repeat the image "
1842
- "as many times as needed to fill the row horizontally and vertically. You can "
1843
- "also specify the image to only repeat horizontally or vertically."
1844
- msgstr ""
1845
- "Wiederholen bezieht sich darauf, wie das Bild im Zeilenhintergrund angezeit "
1846
- "wird. >Nicht< zeit das Bild so an, wie es hochgeladen wurde. >Tile< "
1847
- "wiederholt das Bild sooft horizontal und vertikal, dass die gesamte Zeile "
1848
- "ausgefüllt ist. Sie können auch angeben, dass das Bild nur horizontal oder "
1849
- "vertikal wiederholt wird."
1850
-
1851
- #: includes/row-settings.php:155 modules/callout/callout.php:353
1852
- #: modules/callout/callout.php:373
1853
- #: modules/content-slider/content-slider.php:472
1854
- #: modules/post-grid/post-grid.php:127
1855
- msgid "Position"
1856
- msgstr "Position"
1857
-
1858
- #: includes/row-settings.php:158
1859
- msgid "Left Top"
1860
- msgstr "Links oben"
1861
-
1862
- #: includes/row-settings.php:159
1863
- msgid "Left Center"
1864
- msgstr "Links mitte"
1865
-
1866
- #: includes/row-settings.php:160
1867
- msgid "Left Bottom"
1868
- msgstr "Links unten"
1869
-
1870
- #: includes/row-settings.php:161
1871
- msgid "Right Top"
1872
- msgstr "Rechts oben"
1873
-
1874
- #: includes/row-settings.php:162
1875
- msgid "Right Center"
1876
- msgstr "Rechts mitte"
1877
-
1878
- #: includes/row-settings.php:163
1879
- msgid "Right Bottom"
1880
- msgstr "Rechts unten"
1881
-
1882
- #: includes/row-settings.php:164
1883
- msgid "Center Top"
1884
- msgstr "Oben mitte"
1885
-
1886
- #: includes/row-settings.php:165 modules/button/button.php:218
1887
- #: modules/callout/callout.php:251
1888
- #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1889
- #: modules/heading/heading.php:90 modules/heading/heading.php:162
1890
- #: modules/icon/icon.php:133 modules/icon-group/icon-group.php:110
1891
- #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
1892
- msgid "Center"
1893
- msgstr "Mitte"
1894
-
1895
- #: includes/row-settings.php:166
1896
- msgid "Center Bottom"
1897
- msgstr "Unten mitte"
1898
-
1899
- #: includes/row-settings.php:168
1900
- msgid "Position will tell the image where it should sit in the row background."
1901
- msgstr "Die Position gibt an, wo sich das Bild im Zeilenhintergrund befindet."
1902
-
1903
- #: includes/row-settings.php:175
1904
- msgid "Attachment"
1905
- msgstr "Attachment"
1906
-
1907
- #: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
1908
- msgid "Scroll"
1909
- msgstr "Scroll"
1910
-
1911
- #: includes/row-settings.php:181
1912
- msgid ""
1913
- "Attachment will specify how the image reacts when scrolling a page. When "
1914
- "scrolling is selected, the image will scroll with page scrolling. This is "
1915
- "the default setting. Fixed will allow the image to scroll within the row "
1916
- "background if fill is selected in the scale setting."
1917
- msgstr ""
1918
- "Attachment gibt an wie das Bild reagiert, wenn die Seite gescrollt wird. "
1919
- "Wenn >Scrolling< ausgewählt ist, scrollt das Bild mit der Seite. Dies ist "
1920
- "die Defaulteinstellung. >Fest< erlaubt, dass das Bild innerhalb des "
1921
- "Zeilenhintergrunds scrollt, wenn >gefüllt< in den Skalierungseinstellungen "
1922
- "ausgewählt wurde."
1923
-
1924
- #: includes/row-settings.php:188
1925
- msgid "Scale"
1926
- msgstr "Skalierung"
1927
-
1928
- #: includes/row-settings.php:191
1929
- msgctxt "Background scale."
1930
- msgid "None"
1931
- msgstr "Keine"
1932
-
1933
- #: includes/row-settings.php:192
1934
- msgid "Fit"
1935
- msgstr "Passend"
1936
-
1937
- #: includes/row-settings.php:193
1938
- msgid "Fill"
1939
- msgstr "Gefüllt"
1940
-
1941
- #: includes/row-settings.php:195
1942
- msgid ""
1943
- "Scale applies to how the image should display in the row background. You can "
1944
- "select either fill or fit to the row background."
1945
- msgstr ""
1946
- ">Skalierung< gibt an, wie das Bild im Zeilenhintergrund angezeigt wird. Sie "
1947
- "können entweder >Gefüllt< oder >Passend< auswählen."
1948
-
1949
- #: includes/row-settings.php:203
1950
- msgid "Background Video"
1951
- msgstr "Hintergrundvideo"
1952
-
1953
- #: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
1954
- #: modules/video/video.php:19 modules/video/video.php:100
1955
- msgid "Video"
1956
- msgstr "Video"
1957
-
1958
- #: includes/row-settings.php:208
1959
- msgid ""
1960
- "An HTML5 video to use as the background of this row. Supported types are "
1961
- "MP4, WebM and Ogg."
1962
- msgstr ""
1963
- "Ein HTML 5 - Video, das im Hintergrund dieser Zeile verwendet werden soll. "
1964
- "Unterstützte Typen sind MP4, WebM und Ogg."
1965
-
1966
- #: includes/row-settings.php:215
1967
- msgid "Fallback Photo"
1968
- msgstr "Fallback-Foto"
1969
-
1970
- #: includes/row-settings.php:216
1971
- msgid "A photo that will be displayed if the video fails to load."
1972
- msgstr ""
1973
- "Ein Foto, das angezeigt wird, wenn das Video nicht geladen werden kann."
1974
-
1975
- #: includes/row-settings.php:224
1976
- msgid "Background Slideshow"
1977
- msgstr "Hintergrund-Diashow"
1978
-
1979
- #: includes/row-settings.php:228 modules/gallery/gallery.php:234
1980
- #: modules/slideshow/slideshow.php:263
1981
- msgid "Source"
1982
- msgstr "Quelle"
1983
-
1984
- #: includes/row-settings.php:231 modules/gallery/gallery.php:237
1985
- #: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
1986
- #: modules/video/video.php:86
1987
- msgid "Media Library"
1988
- msgstr "Medienbibliothek"
1989
-
1990
- #: includes/row-settings.php:234 modules/gallery/gallery.php:240
1991
- #: modules/slideshow/slideshow.php:269
1992
- msgid ""
1993
- "Pull images from the WordPress media library or a gallery on your SmugMug "
1994
- "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
1995
- "accessed by using the get a link function in your SmugMug gallery."
1996
- msgstr ""
1997
- "Holen Sie Bilder von der WP Medienbibliothek oder ihrer SmugMug-Seite indem "
1998
- "Sie die URL des RSS-Feed von SmugMug angeben."
1999
-
2000
- #: includes/row-settings.php:249 modules/gallery/gallery.php:252
2001
- #: modules/slideshow/slideshow.php:281
2002
- msgid "Photos"
2003
- msgstr "Fotos"
2004
-
2005
- #: includes/row-settings.php:256 modules/gallery/gallery.php:256
2006
- #: modules/slideshow/slideshow.php:285
2007
- msgid "Feed URL"
2008
- msgstr "Feed URL"
2009
-
2010
- #: includes/row-settings.php:263 includes/row-settings.php:328
2011
- #: modules/slideshow/slideshow.php:382
2012
- msgid "Speed"
2013
- msgstr "Geschwindigkeit"
2014
-
2015
- #: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
2016
- #: modules/slideshow/slideshow.php:389
2017
- #: modules/testimonials/testimonials.php:99
2018
- msgid "Transition"
2019
- msgstr "Übergang"
2020
-
2021
- #: includes/row-settings.php:276
2022
- msgctxt "Slideshow transition type."
2023
- msgid "None"
2024
- msgstr "Keiner"
2025
-
2026
- #: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
2027
- #: modules/slideshow/slideshow.php:393
2028
- #: modules/testimonials/testimonials.php:103
2029
- msgid "Fade"
2030
- msgstr "Fade"
2031
-
2032
- #: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
2033
- msgid "Ken Burns"
2034
- msgstr "Ken Burns"
2035
-
2036
- #: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
2037
- msgid "Slide Horizontal"
2038
- msgstr "Slide Horizontal"
2039
-
2040
- #: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
2041
- msgid "Slide Vertical"
2042
- msgstr "Slide Vertikal"
2043
-
2044
- #: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
2045
- msgid "Blinds"
2046
- msgstr "Fensterläden"
2047
-
2048
- #: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
2049
- msgid "Bars"
2050
- msgstr "Balken"
2051
-
2052
- #: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
2053
- msgid "Random Bars"
2054
- msgstr "Zufällige Balken"
2055
-
2056
- #: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
2057
- msgid "Boxes"
2058
- msgstr "Boxen"
2059
-
2060
- #: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
2061
- msgid "Random Boxes"
2062
- msgstr "Zufällige Boxen"
2063
-
2064
- #: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
2065
- msgid "Boxes Grow"
2066
- msgstr "Wachsende Boxen"
2067
-
2068
- #: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
2069
- #: modules/slideshow/slideshow.php:407
2070
- #: modules/testimonials/testimonials.php:108
2071
- msgid "Transition Speed"
2072
- msgstr "Übergangsgeschwindigkeit"
2073
-
2074
- #: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
2075
- msgid "Randomize Photos"
2076
- msgstr "Zufällige Fotoreihenfolge"
2077
-
2078
- #: includes/row-settings.php:317
2079
- msgid "Background Parallax"
2080
- msgstr "Hintergrund Parallax"
2081
-
2082
- #: includes/row-settings.php:331
2083
- msgid "Fast"
2084
- msgstr "Schnell"
2085
-
2086
- #: includes/row-settings.php:332
2087
- msgctxt "Speed."
2088
- msgid "Medium"
2089
- msgstr "Mittel"
2090
-
2091
- #: includes/row-settings.php:333
2092
- msgid "Slow"
2093
- msgstr "Langsam"
2094
-
2095
- # @ fl-builder
2096
- #: includes/row-settings.php:342
2097
- msgid "Background Overlay"
2098
- msgstr "Hintergrund Overlay"
2099
-
2100
- # @ fl-builder
2101
- #: includes/row-settings.php:346
2102
- msgid "Overlay Color"
2103
- msgstr "Overlay Maskenfarbe"
2104
-
2105
- # @ fl-builder
2106
- #: includes/row-settings.php:354
2107
- msgid "Overlay Opacity"
2108
- msgstr "Overlay Maskendeckkraft"
2109
-
2110
- #: includes/row-settings.php:595
2111
- msgid "Choose whether to show or hide this row at different device sizes."
2112
- msgstr ""
2113
- "Wählen Sie ob diese Zeile bei verschiedenen Gerätegrößen angezeigt werden "
2114
- "soll oder nicht."
2115
-
2116
- # @ fl-builder
2117
- #: includes/row-settings.php:608
2118
- msgid ""
2119
- "A unique ID that will be applied to this row's HTML. Must start with a "
2120
- "letter and only contain dashes, underscores, letters or numbers. No spaces."
2121
- msgstr ""
2122
- "Eine eindeutige ID, die auf das HTML dieser Zeile angewendet wird. Sie muss "
2123
- "mit einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
2124
- "oder Zahlen enthalten. Keine Leerzeichen."
2125
-
2126
- # @ fl-builder
2127
- #: includes/row-settings.php:616
2128
- msgid ""
2129
- "A class that will be applied to this row's HTML. Must start with a letter "
2130
- "and only contain dashes, underscores, letters or numbers. Separate multiple "
2131
- "classes with spaces."
2132
- msgstr ""
2133
- "Eine Klasse, die auf das HTML dieser Zeile angewendet wird. Sie muss mit "
2134
- "einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
2135
- "oder Zahlen enthalten. Keine Leerzeichen."
2136
-
2137
- #: includes/settings.php:62
2138
- msgid "Save"
2139
- msgstr "Speichern"
2140
-
2141
- #: includes/template-selector.php:3
2142
- msgid "Layout Templates"
2143
- msgstr "Layout-Vorlage"
2144
-
2145
- #: includes/template-selector.php:8
2146
- msgid "Home Pages"
2147
- msgstr "Home-Seiten"
2148
-
2149
- #: includes/template-selector.php:9
2150
- msgid "Content Pages"
2151
- msgstr "Inhalts-Seiten"
2152
-
2153
- #: includes/template-selector.php:13
2154
- msgid "Your Templates"
2155
- msgstr "Ihre Vorlagen"
2156
-
2157
- #: includes/template-selector.php:47 includes/template-selector.php:77
2158
- msgctxt "Template name."
2159
- msgid "Blank"
2160
- msgstr "Leer"
2161
-
2162
- #: includes/template-selector.php:72
2163
- msgid ""
2164
- "You haven't saved any templates yet! To do so, create a layout and save it "
2165
- "as a template under <strong>Tools &rarr; Save Template</strong>."
2166
- msgstr ""
2167
- "Sie haben noch keine Vorlagen gespeichert! Um dies zu tun, erstellen Sie ein "
2168
- "Layout und speichern es als Vorlage unter <strong>Werkzeuge &rarr; Vorlage "
2169
- "speichern</strong>."
2170
-
2171
- #: includes/template-selector.php:84
2172
- msgid "Delete"
2173
- msgstr "Löschen"
2174
-
2175
- #: includes/ui.php:7
2176
- #, php-format
2177
- msgid "Template: %s"
2178
- msgstr "Vorlage: %s"
2179
-
2180
- #: includes/ui.php:23
2181
- msgid "Page Builder Demo"
2182
- msgstr "Page Builder Demo"
2183
-
2184
- #: includes/ui.php:40
2185
- msgid "Buy Now!"
2186
- msgstr "Jetzt kaufen!"
2187
-
2188
- #: includes/ui.php:42
2189
- msgid "Upgrade!"
2190
- msgstr "Upgraden!"
2191
-
2192
- #: includes/ui.php:45
2193
- msgid "Tools"
2194
- msgstr "Werkzeuge"
2195
-
2196
- #: includes/ui.php:67
2197
- msgid "Row Layouts"
2198
- msgstr "Zeilenlayouts"
2199
-
2200
- #: includes/ui.php:71
2201
- msgid "1 Column"
2202
- msgstr "1 Spalte"
2203
-
2204
- #: includes/ui.php:72
2205
- msgid "2 Columns"
2206
- msgstr "2 Spalten"
2207
-
2208
- #: includes/ui.php:73
2209
- msgid "3 Columns"
2210
- msgstr "3 Spalten"
2211
-
2212
- #: includes/ui.php:74
2213
- msgid "4 Columns"
2214
- msgstr "4 Spalten"
2215
-
2216
- #: includes/ui.php:75
2217
- msgid "5 Columns"
2218
- msgstr "5 Spalten"
2219
-
2220
- #: includes/ui.php:76
2221
- msgid "6 Columns"
2222
- msgstr "6 Spalten"
2223
-
2224
- #: includes/ui.php:77
2225
- msgid "Left Sidebar"
2226
- msgstr "Linke Seitenleiste"
2227
-
2228
- #: includes/ui.php:78
2229
- msgid "Right Sidebar"
2230
- msgstr "Rechte Seitenleiste"
2231
-
2232
- #: includes/ui.php:79
2233
- msgid "Left &amp; Right Sidebar"
2234
- msgstr "Linke &amp; Rechte Seitenleiste"
2235
-
2236
- #: includes/updater/classes/class-fl-updater.php:107
2237
- msgid "<strong>UPDATE UNAVAILABLE!</strong>"
2238
- msgstr "<strong>UPDATE NICHT VERFÜGBAR!</strong>"
2239
-
2240
- #: includes/updater/classes/class-fl-updater.php:109
2241
- msgid "Please subscribe to enable automatic updates for this plugin."
2242
- msgstr ""
2243
- "Bitte abonnieren Sie um automatische Updates für dieses Plugin zu aktivieren."
2244
-
2245
- #: includes/updater/classes/class-fl-updater.php:111
2246
- #: includes/updater/includes/form.php:6
2247
- msgid "Subscribe Now"
2248
- msgstr "Jetzt abonnieren"
2249
-
2250
- #: includes/updater/includes/form.php:5
2251
- msgid ""
2252
- "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
2253
- "enable automatic updates."
2254
- msgstr ""
2255
- "UPDATES NICHT VERFÜGBAR! Bitte abonnieren Sie oder geben unten den "
2256
- "Lizenzschlüssel ein um automatische Updates zu aktivieren."
2257
-
2258
- #: includes/updater/includes/form.php:11
2259
- msgid "Updates &amp; Support Subscription"
2260
- msgstr "Updates &amp; Support - Abonnement"
2261
-
2262
- #: includes/updater/includes/form.php:14
2263
- msgid "Active!"
2264
- msgstr "Aktiv!"
2265
-
2266
- #: includes/updater/includes/form.php:16
2267
- msgid "Not Active!"
2268
- msgstr "Nicht aktiv!"
2269
-
2270
- #: includes/updater/includes/form.php:22
2271
- msgid "Email address saved!"
2272
- msgstr "E-Mail Adresse gespeichert!"
2273
-
2274
- #: includes/updater/includes/form.php:27
2275
- #, php-format
2276
- msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
2277
- msgstr ""
2278
- "Geben Sie ihren <a%s>Lizenzschlüssel</a> ein um Fern-Updates und -Support zu "
2279
- "aktivieren."
2280
-
2281
- #: includes/updater/includes/form.php:39
2282
- msgid "Save Subscription Settings"
2283
- msgstr "Aboeinstellungen speichern"
2284
-
2285
- #: includes/user-template-settings.php:8
2286
- msgid ""
2287
- "Save the current layout as a template that can be reused under "
2288
- "<strong>Templates &rarr; Your Templates</strong>."
2289
- msgstr ""
2290
- "Das aktuelle Layout als Vorlage, die unter <strong>Vorlagen&rarr; Ihre "
2291
- "Vorlagen</strong> wiederverwendet werden kann, speichern."
2292
-
2293
- #: includes/user-template-settings.php:15
2294
- msgctxt "Template name."
2295
- msgid "Name"
2296
- msgstr "Name"
2297
-
2298
- #: modules/accordion/accordion.php:14
2299
- msgid "Accordion"
2300
- msgstr "Akkordeon"
2301
-
2302
- #: modules/accordion/accordion.php:15
2303
- msgid "Display a collapsible accordion of items."
2304
- msgstr "Ein einklappbares Akkordeon von Elements anzeigen."
2305
-
2306
- #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
2307
- msgid "Items"
2308
- msgstr "Elements"
2309
-
2310
- #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
2311
- msgid "Item"
2312
- msgstr "Element"
2313
-
2314
- #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
2315
- msgid "Border Color"
2316
- msgstr "Rahmenfarbe"
2317
-
2318
- #: modules/accordion/accordion.php:62
2319
- msgid "Label Size"
2320
- msgstr "Labelgröße"
2321
-
2322
- #: modules/accordion/accordion.php:65
2323
- msgctxt "Label size."
2324
- msgid "Small"
2325
- msgstr "Klein"
2326
-
2327
- #: modules/accordion/accordion.php:66
2328
- msgctxt "Label size."
2329
- msgid "Medium"
2330
- msgstr "Mittel"
2331
-
2332
- #: modules/accordion/accordion.php:67
2333
- msgctxt "Label size."
2334
- msgid "Large"
2335
- msgstr "Groß"
2336
-
2337
- #: modules/accordion/accordion.php:75
2338
- msgid "Item Spacing"
2339
- msgstr "Element-Abstand"
2340
-
2341
- #: modules/accordion/accordion.php:86
2342
- msgid "Collapse Inactive"
2343
- msgstr "Einklappen inaktiv"
2344
-
2345
- #: modules/accordion/accordion.php:92
2346
- msgid ""
2347
- "Choosing yes will keep only one item open at a time. Choosing no will allow "
2348
- "multiple items to be open at the same time."
2349
- msgstr ""
2350
- "Wenn Sie >Ja< wählen wird nur ein Element gleichzeitig offen gehalten. Wenn "
2351
- "Sie >Nein< wählen, können mehrere Elements gleichzeitig offen sein."
2352
-
2353
- #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
2354
- msgid "Add Item"
2355
- msgstr "Element hinzufügen"
2356
-
2357
- #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
2358
- msgid "Label"
2359
- msgstr "Label"
2360
-
2361
- #: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
2362
- #: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
2363
- #: modules/tabs/tabs.php:89
2364
- msgid "Content"
2365
- msgstr "Inhalt"
2366
-
2367
- #: modules/button/button.php:14 modules/callout/callout.php:479
2368
- #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
2369
- #: modules/pricing-table/pricing-table.php:129
2370
- msgid "Button"
2371
- msgstr "Button"
2372
-
2373
- #: modules/button/button.php:15
2374
- msgid "A simple call to action button."
2375
- msgstr "Ein einfacher Aufrufbutton."
2376
-
2377
- #: modules/button/button.php:67 modules/cta/cta.php:222
2378
- msgid "Click Here"
2379
- msgstr "Hier klicken"
2380
-
2381
- #: modules/button/button.php:75 modules/callout/callout.php:317
2382
- #: modules/callout/callout.php:365 modules/callout/callout.php:369
2383
- #: modules/cta/cta.php:230 modules/icon/icon.php:14 modules/icon/icon.php:34
2384
- #: modules/icon-group/icon-group.php:34 modules/icon-group/icon-group.php:135
2385
- msgid "Icon"
2386
- msgstr "Icon"
2387
-
2388
- #: modules/button/button.php:81 modules/button/button.php:85
2389
- #: modules/callout/callout.php:445 modules/callout/callout.php:449
2390
- #: modules/content-slider/content-slider.php:573
2391
- #: modules/content-slider/content-slider.php:577
2392
- #: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
2393
- #: modules/heading/heading.php:43 modules/heading/heading.php:47
2394
- #: modules/icon/icon.php:43 modules/icon-group/icon-group.php:139
2395
- #: modules/slideshow/slideshow.php:343
2396
- msgid "Link"
2397
- msgstr "Link"
2398
-
2399
- #: modules/button/button.php:86
2400
- msgid "http://www.example.com"
2401
- msgstr "http://www.beispiel.com"
2402
-
2403
- #: modules/button/button.php:93 modules/callout/callout.php:457
2404
- #: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
2405
- #: modules/heading/heading.php:54 modules/icon/icon.php:50
2406
- #: modules/photo/photo.php:478
2407
- msgid "Link Target"
2408
- msgstr "Linkziel"
2409
-
2410
- #: modules/button/button.php:96 modules/callout/callout.php:460
2411
- #: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
2412
- #: modules/heading/heading.php:57 modules/icon/icon.php:53
2413
- #: modules/photo/photo.php:481
2414
- msgid "Same Window"
2415
- msgstr "Selbes Fenster"
2416
-
2417
- #: modules/button/button.php:97 modules/callout/callout.php:461
2418
- #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
2419
- #: modules/heading/heading.php:58 modules/icon/icon.php:54
2420
- #: modules/photo/photo.php:482
2421
- msgid "New Window"
2422
- msgstr "Neues Fenster"
2423
-
2424
- #: modules/button/button.php:111 modules/cta/cta.php:187
2425
- #: modules/heading/heading.php:72 modules/icon/icon.php:78
2426
- #: modules/icon-group/icon-group.php:47
2427
- msgid "Colors"
2428
- msgstr "Farben"
2429
-
2430
- #: modules/button/button.php:121 modules/callout/callout.php:409
2431
- #: modules/callout/callout.php:514
2432
- #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
2433
- #: modules/icon/icon.php:100 modules/icon-group/icon-group.php:69
2434
- msgid "Background Hover Color"
2435
- msgstr "Hintergrund-Hoverfarbe"
2436
-
2437
- #: modules/button/button.php:130 modules/callout/callout.php:523
2438
- #: modules/content-slider/content-slider.php:528
2439
- #: modules/content-slider/content-slider.php:641
2440
- #: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
2441
- #: modules/cta/cta.php:279 modules/heading/heading.php:77
2442
- msgid "Text Color"
2443
- msgstr "Textfarbe"
2444
-
2445
- #: modules/button/button.php:136 modules/callout/callout.php:529
2446
- #: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
2447
- msgid "Text Hover Color"
2448
- msgstr "Text-Hoverfarbe"
2449
-
2450
- # @ fl-builder
2451
- #: modules/button/button.php:153 modules/callout/callout.php:546
2452
- #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
2453
- msgid "Flat"
2454
- msgstr "Flach"
2455
-
2456
- #: modules/button/button.php:154 modules/callout/callout.php:417
2457
- #: modules/callout/callout.php:547
2458
- #: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
2459
- #: modules/icon/icon.php:108 modules/icon-group/icon-group.php:77
2460
- msgid "Gradient"
2461
- msgstr "Gradient"
2462
-
2463
- # @ fl-builder
2464
- #: modules/button/button.php:155 modules/callout/callout.php:548
2465
- #: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
2466
- msgid "Transparent"
2467
- msgstr "Transparent"
2468
-
2469
- #: modules/button/button.php:165 modules/callout/callout.php:558
2470
- #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
2471
- #: modules/pricing-table/pricing-table.php:67
2472
- msgid "Border Size"
2473
- msgstr "Rahmengröße"
2474
-
2475
- #: modules/button/button.php:174 modules/callout/callout.php:567
2476
- #: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
2477
- #: modules/cta/cta.php:323
2478
- msgid "Background Opacity"
2479
- msgstr "Hintergrundtransparenz"
2480
-
2481
- #: modules/button/button.php:184 modules/callout/callout.php:244
2482
- #: modules/cta/cta.php:104 modules/heading/heading.php:82
2483
- #: modules/icon/icon.php:118 modules/icon-group/icon-group.php:87
2484
- msgid "Structure"
2485
- msgstr "Struktur"
2486
-
2487
- #: modules/button/button.php:191 modules/callout/callout.php:584
2488
- msgctxt "Width."
2489
- msgid "Auto"
2490
- msgstr "Auto"
2491
-
2492
- #: modules/button/button.php:207
2493
- msgid "Custom Width"
2494
- msgstr "Benutzerdefinierte Breite"
2495
-
2496
- #: modules/button/button.php:215 modules/cta/cta.php:122
2497
- #: modules/heading/heading.php:86 modules/heading/heading.php:141
2498
- #: modules/icon/icon.php:130 modules/icon-group/icon-group.php:107
2499
- #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
2500
- msgid "Alignment"
2501
- msgstr "Ausrichtung"
2502
-
2503
- #: modules/button/button.php:225 modules/callout/callout.php:590
2504
- #: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
2505
- #: modules/heading/heading.php:114 modules/heading/heading.php:171
2506
- msgid "Font Size"
2507
- msgstr "Schriftgröße"
2508
-
2509
- #: modules/button/button.php:241 modules/callout/callout.php:606
2510
- #: modules/cta/cta.php:353
2511
- msgid "Round Corners"
2512
- msgstr "Runde Ecken"
2513
-
2514
- #: modules/callout/callout.php:14
2515
- msgid "Callout"
2516
- msgstr "Textbox"
2517
-
2518
- #: modules/callout/callout.php:15
2519
- msgid "A heading and snippet of text with an optional link, icon and image."
2520
- msgstr ""
2521
- "Ein Überschrift und Textschnipsel mit einem optionalen Link, Icon und Bild."
2522
-
2523
- #: modules/callout/callout.php:216
2524
- #: modules/content-slider/content-slider.php:413
2525
- #: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
2526
- #: modules/heading/heading.php:14 modules/heading/heading.php:33
2527
- #: modules/testimonials/testimonials.php:56
2528
- #: modules/testimonials/testimonials.php:61
2529
- msgid "Heading"
2530
- msgstr "Überschrift"
2531
-
2532
- #: modules/callout/callout.php:248
2533
- msgid "Overall Alignment"
2534
- msgstr "Gesamtausrichtung"
2535
-
2536
- #: modules/callout/callout.php:255
2537
- msgid "The alignment that will apply to all elements within the callout."
2538
- msgstr "Die Ausrichtung für alle Elemente der Textbox."
2539
-
2540
- #: modules/callout/callout.php:263 modules/cta/cta.php:147
2541
- msgid "Heading Structure"
2542
- msgstr "Überschriften"
2543
-
2544
- #: modules/callout/callout.php:267
2545
- #: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
2546
- msgid "Heading Tag"
2547
- msgstr "Überschrift 1-6"
2548
-
2549
- #: modules/callout/callout.php:280
2550
- #: modules/content-slider/content-slider.php:445
2551
- #: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
2552
- #: modules/testimonials/testimonials.php:69
2553
- msgid "Heading Size"
2554
- msgstr "Überschriftgröße"
2555
-
2556
- #: modules/callout/callout.php:294 modules/cta/cta.php:178
2557
- msgid "Heading Custom Size"
2558
- msgstr "Überschrift-benutzerdefinierte Größe"
2559
-
2560
- #: modules/callout/callout.php:305 modules/post-grid/post-grid.php:113
2561
- msgid "Image"
2562
- msgstr "Bild"
2563
-
2564
- #: modules/callout/callout.php:312
2565
- msgid "Image Type"
2566
- msgstr "Bildtyp"
2567
-
2568
- #: modules/callout/callout.php:315
2569
- msgctxt "Image type."
2570
- msgid "None"
2571
- msgstr "Kein"
2572
-
2573
- #: modules/callout/callout.php:340 modules/photo/photo.php:401
2574
- #: modules/slideshow/slideshow.php:312
2575
- msgid "Crop"
2576
- msgstr "Zugeschnitten"
2577
-
2578
- #: modules/callout/callout.php:343
2579
- msgctxt "Crop"
2580
- msgid "None"
2581
- msgstr "Kein"
2582
-
2583
- #: modules/callout/callout.php:344 modules/photo/photo.php:405
2584
- msgid "Landscape"
2585
- msgstr "Landschaft"
2586
-
2587
- #: modules/callout/callout.php:345 modules/photo/photo.php:406
2588
- msgid "Panorama"
2589
- msgstr "Panorama"
2590
-
2591
- #: modules/callout/callout.php:346 modules/photo/photo.php:407
2592
- msgid "Portrait"
2593
- msgstr "Portrait"
2594
-
2595
- #: modules/callout/callout.php:347 modules/photo/photo.php:408
2596
- msgid "Square"
2597
- msgstr "Quadrat"
2598
-
2599
- #: modules/callout/callout.php:348 modules/photo/photo.php:409
2600
- msgid "Circle"
2601
- msgstr "Kreis"
2602
-
2603
- #: modules/callout/callout.php:356 modules/callout/callout.php:376
2604
- msgid "Above Heading"
2605
- msgstr "Über Überschrift"
2606
-
2607
- #: modules/callout/callout.php:357 modules/callout/callout.php:377
2608
- msgid "Below Heading"
2609
- msgstr "Unter Überschrift"
2610
-
2611
- #: modules/callout/callout.php:358 modules/callout/callout.php:380
2612
- msgid "Left of Text and Heading"
2613
- msgstr "Links von Text und Überschrift"
2614
-
2615
- #: modules/callout/callout.php:359 modules/callout/callout.php:381
2616
- msgid "Right of Text and Heading"
2617
- msgstr "Rechts von Text und Überschrift"
2618
-
2619
- #: modules/callout/callout.php:378
2620
- msgid "Left of Heading"
2621
- msgstr "Links von Überschrift"
2622
-
2623
- #: modules/callout/callout.php:379
2624
- msgid "Right of Heading"
2625
- msgstr "Rechts von Überschrift"
2626
-
2627
- #: modules/callout/callout.php:387
2628
- msgid "Icon Colors"
2629
- msgstr "Iconfarben"
2630
-
2631
- #: modules/callout/callout.php:396 modules/icon/icon.php:87
2632
- #: modules/icon-group/icon-group.php:56
2633
- msgid "Hover Color"
2634
- msgstr "Hoverfarbe"
2635
-
2636
- #: modules/callout/callout.php:427
2637
- msgid "Icon Structure"
2638
- msgstr "Iconstruktur"
2639
-
2640
- #: modules/callout/callout.php:431 modules/icon/icon.php:122
2641
- #: modules/icon-group/icon-group.php:91 modules/post-grid/post-grid.php:136
2642
- msgid "Size"
2643
- msgstr "Größe"
2644
-
2645
- #: modules/callout/callout.php:442
2646
- #: modules/content-slider/content-slider.php:570
2647
- msgid "Call To Action"
2648
- msgstr "Aufruf"
2649
-
2650
- #: modules/callout/callout.php:450
2651
- msgid ""
2652
- "The link applies to the entire module. If choosing a call to action type "
2653
- "below, this link will also be used for the text or button."
2654
- msgstr ""
2655
- "Der Link bezieht sich auf das gesamte Modul. Wenn Sie unten einen Aufruftyp "
2656
- "wählen, wird dieser Link auch für den Text oder Button benutzt."
2657
-
2658
- #: modules/callout/callout.php:470
2659
- #: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
2660
- msgid "Call to Action"
2661
- msgstr "Aufruf"
2662
-
2663
- #: modules/callout/callout.php:477
2664
- #: modules/content-slider/content-slider.php:599
2665
- msgctxt "Call to action."
2666
- msgid "None"
2667
- msgstr "Kein"
2668
-
2669
- #: modules/callout/callout.php:498
2670
- #: modules/content-slider/content-slider.php:620
2671
- msgid "Button Icon"
2672
- msgstr "Button-Icon"
2673
-
2674
- #: modules/callout/callout.php:504
2675
- #: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
2676
- msgid "Button Colors"
2677
- msgstr "Button-Farbe"
2678
-
2679
- # @ fl-builder
2680
- #: modules/callout/callout.php:539
2681
- #: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
2682
- msgid "Button Style"
2683
- msgstr "Stil des Buttons"
2684
-
2685
- #: modules/callout/callout.php:577
2686
- #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
2687
- msgid "Button Structure"
2688
- msgstr "Button-Struktur"
2689
-
2690
- #: modules/callout/callout.php:581
2691
- msgid "Button Width"
2692
- msgstr "Button-Breite"
2693
-
2694
- #: modules/contact-form/contact-form.php:14
2695
- msgid "Contact Form"
2696
- msgstr "Kontaktformular"
2697
-
2698
- #: modules/contact-form/contact-form.php:15
2699
- msgid "A very simple contact form."
2700
- msgstr "Ein einfaches Kontaktformular."
2701
-
2702
- #: modules/contact-form/contact-form.php:36
2703
- msgid "Contact Form Submission"
2704
- msgstr "Kontaktformular abschicken"
2705
-
2706
- #: modules/contact-form/contact-form.php:64
2707
- msgid "Send To Email"
2708
- msgstr "An Email schicken"
2709
-
2710
- #: modules/contact-form/contact-form.php:66
2711
- msgid "example@mail.com"
2712
- msgstr "beispiel@mail.com"
2713
-
2714
- #: modules/contact-form/contact-form.php:67
2715
- msgid "The contact form will send to this e-mail"
2716
- msgstr "Das Kontaktformular sendet an diese Emailadresse"
2717
-
2718
- #: modules/contact-form/includes/frontend.php:4
2719
- msgctxt "Contact form field label."
2720
- msgid "Name"
2721
- msgstr "Name"
2722
-
2723
- #: modules/contact-form/includes/frontend.php:5
2724
- msgid "Please enter your name."
2725
- msgstr "Bitte geben Sie ihren Namen ein."
2726
-
2727
- #: modules/contact-form/includes/frontend.php:6
2728
- msgid "Your name"
2729
- msgstr "Ihr Name"
2730
-
2731
- #: modules/contact-form/includes/frontend.php:10
2732
- msgid "Email"
2733
- msgstr "Email"
2734
-
2735
- #: modules/contact-form/includes/frontend.php:11
2736
- msgid "Please enter a valid email."
2737
- msgstr "Bitte geben Sie eine gültige Email-Adresse ein"
2738
-
2739
- #: modules/contact-form/includes/frontend.php:12
2740
- msgid "Your email"
2741
- msgstr "Ihre Email-Adresse"
2742
-
2743
- #: modules/contact-form/includes/frontend.php:16
2744
- msgid "Your Message"
2745
- msgstr "Ihre Nachricht"
2746
-
2747
- #: modules/contact-form/includes/frontend.php:17
2748
- msgid "Please enter a message."
2749
- msgstr "Bitte geben Sie eine Nachricht ein."
2750
-
2751
- #: modules/contact-form/includes/frontend.php:18
2752
- msgid "Your message"
2753
- msgstr "Ihre Nachricht"
2754
-
2755
- #: modules/contact-form/includes/frontend.php:23
2756
- msgid "Send"
2757
- msgstr "Senden"
2758
-
2759
- #: modules/contact-form/includes/frontend.php:24
2760
- msgid "Message Sent!"
2761
- msgstr "Nachricht gesendet!"
2762
-
2763
- #: modules/contact-form/includes/frontend.php:25
2764
- msgid "Message failed. Please try again."
2765
- msgstr ""
2766
- "Nachricht senden fehlgeschlagen. Bitte versuchen Sie es später noch einmal."
2767
-
2768
- #: modules/content-slider/content-slider.php:14
2769
- msgid "Content Slider"
2770
- msgstr "Inhalts-Slider"
2771
-
2772
- #: modules/content-slider/content-slider.php:15
2773
- msgid "Displays multiple slides with an optional heading and call to action."
2774
- msgstr "Zeigt mehrere Slides mit einem optionalen Überschrift und Aufruf."
2775
-
2776
- #: modules/content-slider/content-slider.php:197 modules/map/map.php:41
2777
- #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
2778
- msgid "Height"
2779
- msgstr "Höhe"
2780
-
2781
- #: modules/content-slider/content-slider.php:202
2782
- msgid ""
2783
- "This setting is the minimum height of the content slider. Content will "
2784
- "expand the height automatically."
2785
- msgstr ""
2786
- "Diese Einstellung gibt die minimale Höhe des Content Sliders an. Inhalt wird "
2787
- "die Höhe automatisch vergrößern."
2788
-
2789
- #: modules/content-slider/content-slider.php:206
2790
- #: modules/slideshow/slideshow.php:373
2791
- #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
2792
- msgid "Auto Play"
2793
- msgstr "Auto Play"
2794
-
2795
- #: modules/content-slider/content-slider.php:220
2796
- msgid "Show Play/Pause"
2797
- msgstr "Play/Pause anzeigen"
2798
-
2799
- #: modules/content-slider/content-slider.php:240
2800
- #: modules/testimonials/testimonials.php:102
2801
- msgctxt "Transition type."
2802
- msgid "Slide"
2803
- msgstr "Slide"
2804
-
2805
- #: modules/content-slider/content-slider.php:254
2806
- #: modules/testimonials/testimonials.php:121
2807
- msgid "Show Arrows"
2808
- msgstr "Pfeile anzeigen"
2809
-
2810
- #: modules/content-slider/content-slider.php:263
2811
- #: modules/testimonials/testimonials.php:151
2812
- msgid "Show Dots"
2813
- msgstr "Punkte anzeigen"
2814
-
2815
- #: modules/content-slider/content-slider.php:277
2816
- msgid "Max Content Width"
2817
- msgstr "Maximale Inhaltsbreite"
2818
-
2819
- #: modules/content-slider/content-slider.php:282
2820
- msgid "The max width that the content area will be within your slides."
2821
- msgstr ""
2822
- "Die maximale Breite, die die Fläche für den Inhalt in ihren Slides annimmt."
2823
-
2824
- #: modules/content-slider/content-slider.php:289
2825
- msgid "Slides"
2826
- msgstr "Slides"
2827
-
2828
- #: modules/content-slider/content-slider.php:296
2829
- msgid "Slide"
2830
- msgstr "Slide"
2831
-
2832
- #: modules/content-slider/content-slider.php:311
2833
- msgid "Slide Settings"
2834
- msgstr "Slideeinstellungen"
2835
-
2836
- #: modules/content-slider/content-slider.php:321
2837
- msgid "Slide Label"
2838
- msgstr "Slidelabel"
2839
-
2840
- #: modules/content-slider/content-slider.php:322
2841
- msgid ""
2842
- "A label to identify this slide on the Slides tab of the Content Slider "
2843
- "settings."
2844
- msgstr ""
2845
- "Ein Label um diese Slide im Slide Tab der Content Slider - Einstellungen zu "
2846
- "identifizieren."
2847
-
2848
- #: modules/content-slider/content-slider.php:327
2849
- msgid "Background Layout"
2850
- msgstr "Hintergrund Layout"
2851
-
2852
- #: modules/content-slider/content-slider.php:333
2853
- msgid "This setting is for the entire background of your slide."
2854
- msgstr "Diese Einstellung gilt für den gesamten Hintergrund ihrer Slide."
2855
-
2856
- #: modules/content-slider/content-slider.php:368
2857
- msgid "Background Video Code"
2858
- msgstr "Hintergrundvideocode"
2859
-
2860
- #: modules/content-slider/content-slider.php:374
2861
- msgid "Content Layout"
2862
- msgstr "Inhaltslayout"
2863
-
2864
- #: modules/content-slider/content-slider.php:380
2865
- msgid ""
2866
- "This allows you to add content over or in addition to the background "
2867
- "selection above. The location of the content layout can be selected in the "
2868
- "style tab."
2869
- msgstr ""
2870
- "Dies erlaubt es Ihnen Inhalt überhalb oder zusätzlich zur Hintergrundauswahl "
2871
- "hinzuzufügen. Die Platzierung des Inhaltslayouts kann im Stil-Tab ausgewählt "
2872
- "werden."
2873
-
2874
- #: modules/content-slider/content-slider.php:383
2875
- msgid "Text &amp; Photo"
2876
- msgstr "Text &amp; Foto"
2877
-
2878
- #: modules/content-slider/content-slider.php:384
2879
- msgid "Text &amp; Video"
2880
- msgstr "Text &amp; Video"
2881
-
2882
- #: modules/content-slider/content-slider.php:385
2883
- msgctxt "Content type."
2884
- msgid "None"
2885
- msgstr "Nichts"
2886
-
2887
- #: modules/content-slider/content-slider.php:408 modules/video/video.php:132
2888
- msgid "Video Embed Code"
2889
- msgstr "Video Embed Code"
2890
-
2891
- #: modules/content-slider/content-slider.php:468
2892
- msgid "Text Position"
2893
- msgstr "Textposition"
2894
-
2895
- #: modules/content-slider/content-slider.php:474
2896
- msgid ""
2897
- "The position will move the content layout selections left, right or center "
2898
- "over the background of the slide."
2899
- msgstr ""
2900
- "Die Position gibt an ob das Inhaltslayout links, rechts oder mittig über dem "
2901
- "Hintergrund der Slide platziert wird."
2902
-
2903
- #: modules/content-slider/content-slider.php:491
2904
- msgid "Top Margin"
2905
- msgstr "Abstand aussen oben"
2906
-
2907
- #: modules/content-slider/content-slider.php:499
2908
- msgid "Bottom Margin"
2909
- msgstr "Abstand aussen unten"
2910
-
2911
- #: modules/content-slider/content-slider.php:507
2912
- msgid "Left Margin"
2913
- msgstr "Abstand aussen links"
2914
-
2915
- #: modules/content-slider/content-slider.php:515
2916
- msgid "Right Margin"
2917
- msgstr "Abstand aussen rechts"
2918
-
2919
- #: modules/content-slider/content-slider.php:524
2920
- msgid "Text Colors"
2921
- msgstr "Textfarben"
2922
-
2923
- #: modules/content-slider/content-slider.php:534
2924
- msgid "Text Shadow"
2925
- msgstr "Textschatten"
2926
-
2927
- #: modules/content-slider/content-slider.php:543
2928
- #: modules/content-slider/content-slider.php:760
2929
- msgid "Text Background Color"
2930
- msgstr "Texthintergrundfarbe"
2931
-
2932
- #: modules/content-slider/content-slider.php:544
2933
- msgid ""
2934
- "The color applies to the overlay behind text over the background selections."
2935
- msgstr ""
2936
- "Die Farbe bezieht sich auf den Overlay hinter dem Text überhalb der "
2937
- "Hintergrundauswahl."
2938
-
2939
- #: modules/content-slider/content-slider.php:549
2940
- msgid "Text Background Opacity"
2941
- msgstr "Texthintergrunddurchsichtigkeit"
2942
-
2943
- #: modules/content-slider/content-slider.php:557
2944
- msgid "Text Background Height"
2945
- msgstr "Texthintergrundhöhe"
2946
-
2947
- #: modules/content-slider/content-slider.php:559
2948
- msgid ""
2949
- "Auto will allow the overlay to fit however long the text content is. 100% "
2950
- "will fit the overlay to the top and bottom of the slide."
2951
- msgstr ""
2952
- "Bei >Auto< passt sich der Overlay der Länge des Textes an. 100% passt den "
2953
- "Overlay oben und unten an die Slide an."
2954
-
2955
- #: modules/content-slider/content-slider.php:561
2956
- msgctxt "Background height."
2957
- msgid "Auto"
2958
- msgstr "Auto"
2959
-
2960
- #: modules/content-slider/content-slider.php:578
2961
- msgid ""
2962
- "The link applies to the entire slide. If choosing a call to action type "
2963
- "below, this link will also be used for the text or button."
2964
- msgstr ""
2965
- "Der Link bezieht sich auf die ganze Slide. Wenn Sie unten einen Aufruftyp "
2966
- "auswählen, gilt dieser Link auch für den Text oder Button."
2967
-
2968
- #: modules/content-slider/content-slider.php:711
2969
- msgid "Border Radius"
2970
- msgstr "Rahmenradius"
2971
-
2972
- #: modules/content-slider/content-slider.php:722
2973
- msgctxt "Module settings form tab. Display on mobile devices."
2974
- msgid "Mobile"
2975
- msgstr "Mobil"
2976
-
2977
- #: modules/content-slider/content-slider.php:725
2978
- msgid "Mobile Photo"
2979
- msgstr "Mobil-Foto"
2980
-
2981
- #: modules/content-slider/content-slider.php:731
2982
- msgid ""
2983
- "You can choose a different photo that the slide will change to on mobile "
2984
- "devices or no photo if desired."
2985
- msgstr ""
2986
- "Sie können auswählen, dass die Slide auf Handys ein anderes oder gar kein "
2987
- "Foto anzeigt."
2988
-
2989
- #: modules/content-slider/content-slider.php:733
2990
- msgid "Use Main Photo"
2991
- msgstr "Hauptfoto benutzen"
2992
-
2993
- #: modules/content-slider/content-slider.php:734
2994
- msgid "Choose Another Photo"
2995
- msgstr "Ein andere Foto auswählen"
2996
-
2997
- #: modules/content-slider/content-slider.php:735
2998
- msgid "No Photo"
2999
- msgstr "Kein Foto"
3000
-
3001
- #: modules/content-slider/content-slider.php:750
3002
- msgid "Mobile Text Colors"
3003
- msgstr "Mobile Textfarben"
3004
-
3005
- #: modules/cta/cta.php:15
3006
- msgid "Display a heading, subheading and a button."
3007
- msgstr "Überschrift, Subheading und Button anzeigen"
3008
-
3009
- #: modules/cta/cta.php:75
3010
- msgid "Ready to find out more?"
3011
- msgstr "Sind Sie bereit mehr herauszufinden?"
3012
-
3013
- #: modules/cta/cta.php:90
3014
- msgid "Drop us a line today for a free quote!"
3015
- msgstr "Schicken Sie uns heute eine Textzeile für ein freies Zitat!"
3016
-
3017
- #: modules/cta/cta.php:108 modules/gallery/gallery.php:220
3018
- #: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
3019
- #: modules/testimonials/testimonials.php:37
3020
- #: modules/woocommerce/woocommerce.php:57
3021
- msgid "Layout"
3022
- msgstr "Layout"
3023
-
3024
- #: modules/cta/cta.php:111
3025
- msgid "Inline"
3026
- msgstr "Inline"
3027
-
3028
- #: modules/cta/cta.php:112
3029
- msgid "Stacked"
3030
- msgstr "Gestapelt"
3031
-
3032
- #: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
3033
- msgid "Spacing"
3034
- msgstr "Abstand"
3035
-
3036
- #: modules/cta/cta.php:236
3037
- msgid "Button Link"
3038
- msgstr "Button Link"
3039
-
3040
- #: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
3041
- msgid "Gallery"
3042
- msgstr "Galerie"
3043
-
3044
- #: modules/gallery/gallery.php:15
3045
- msgid "Display multiple photos in a gallery view."
3046
- msgstr "Zeige mehrere Fotos in einer Galerieansicht."
3047
-
3048
- #: modules/gallery/gallery.php:223
3049
- msgid "Collage"
3050
- msgstr "Collage"
3051
-
3052
- #: modules/gallery/gallery.php:224
3053
- msgctxt "Gallery layout: thumbnails."
3054
- msgid "Thumbs"
3055
- msgstr "Thumbs"
3056
-
3057
- #: modules/gallery/gallery.php:260
3058
- msgid "Photo Size"
3059
- msgstr "Fotogröße"
3060
-
3061
- #: modules/gallery/gallery.php:263
3062
- msgctxt "Photo size."
3063
- msgid "Small"
3064
- msgstr "Klein"
3065
-
3066
- #: modules/gallery/gallery.php:264
3067
- msgctxt "Photo size."
3068
- msgid "Medium"
3069
- msgstr "Mittel"
3070
-
3071
- #: modules/gallery/gallery.php:265
3072
- msgctxt "Photo size."
3073
- msgid "Large"
3074
- msgstr "Groß"
3075
-
3076
- #: modules/gallery/gallery.php:270
3077
- msgid "Photo Spacing"
3078
- msgstr "Fotoabstand"
3079
-
3080
- #: modules/gallery/gallery.php:278
3081
- msgid "Show Captions"
3082
- msgstr "Zeige Bildunterschriften"
3083
-
3084
- #: modules/gallery/gallery.php:281 modules/photo/photo.php:432
3085
- msgid "Never"
3086
- msgstr "Nie"
3087
-
3088
- #: modules/gallery/gallery.php:282 modules/photo/photo.php:433
3089
- msgid "On Hover"
3090
- msgstr "Bei Hover"
3091
-
3092
- #: modules/gallery/gallery.php:283 modules/photo/photo.php:434
3093
- msgid "Below Photo"
3094
- msgstr "Unter Foto"
3095
-
3096
- #: modules/gallery/gallery.php:285
3097
- msgid ""
3098
- "The caption pulls from whatever text you put in the caption area in the "
3099
- "media manager for each image. The caption is also pulled directly from "
3100
- "SmugMug if you have captions set in your gallery."
3101
- msgstr ""
3102
- "Als Bildunterschrift wird der Text verwendet, den Sie in das "
3103
- "Bildunterschriftfeld im Media Manager eingeben."
3104
-
3105
- #: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
3106
- msgid "Click Action"
3107
- msgstr "Aktion bei Klick"
3108
-
3109
- #: modules/gallery/gallery.php:292
3110
- msgctxt "Click action."
3111
- msgid "None"
3112
- msgstr "Keine"
3113
-
3114
- #: modules/gallery/gallery.php:293 modules/photo/photo.php:452
3115
- msgid "Lightbox"
3116
- msgstr "Lightbox"
3117
-
3118
- #: modules/gallery/gallery.php:294
3119
- msgid "Photo Link"
3120
- msgstr "Fotolink"
3121
-
3122
- #: modules/heading/heading.php:15
3123
- msgid "Display a title/page heading."
3124
- msgstr "Titel/Seiten-Überschrift anzeigen"
3125
-
3126
- #: modules/heading/heading.php:101
3127
- msgid "HTML Tag"
3128
- msgstr "HTML Tag"
3129
-
3130
- #: modules/heading/heading.php:128 modules/heading/heading.php:188
3131
- msgid "Custom Font Size"
3132
- msgstr "Benutzerdefinierte Schriftgröße"
3133
-
3134
- #: modules/heading/heading.php:137
3135
- msgid "Mobile Structure"
3136
- msgstr "Mobile Struktur"
3137
-
3138
- #: modules/heading/heading.php:158
3139
- msgid "Custom Alignment"
3140
- msgstr "Benutzerdefinierte Ausrichtung"
3141
-
3142
- #: modules/html/html.php:14
3143
- msgid "HTML"
3144
- msgstr "HTML"
3145
-
3146
- #: modules/html/html.php:15
3147
- msgid "Display raw HTML code."
3148
- msgstr "Rohen HTML-Code anzeigen"
3149
-
3150
- #: modules/icon/icon.php:15
3151
- msgid "Display an icon and optional title."
3152
- msgstr "Zeige ein Icon und einen optionalen Titel an."
3153
-
3154
- #: modules/icon-group/icon-group.php:14
3155
- msgid "Icon Group"
3156
- msgstr "Icongruppe"
3157
-
3158
- #: modules/icon-group/icon-group.php:15
3159
- msgid "Display a group of linked Font Awesome icons."
3160
- msgstr "Zeige eine Gruppe von verknüpften Font Awesome Icons"
3161
-
3162
- #: modules/icon-group/icon-group.php:125
3163
- msgid "Add Icon"
3164
- msgstr "Icon hinzufügen"
3165
-
3166
- #: modules/map/map.php:14
3167
- msgid "Map"
3168
- msgstr "Karte"
3169
-
3170
- #: modules/map/map.php:15
3171
- msgid "Display a Google map."
3172
- msgstr "Zeige eine Google Map an."
3173
-
3174
- #: modules/map/map.php:33
3175
- msgid "Address"
3176
- msgstr "Adresse"
3177
-
3178
- #: modules/map/map.php:34
3179
- msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
3180
- msgstr "Beispielstraße 21, 93047 Regensburg"
3181
-
3182
- #: modules/photo/photo.php:26
3183
- msgid "Upload a photo or display one from the media library."
3184
- msgstr "Ein Foto hochladen oder eines von der Medienbibliothek anzeigen."
3185
-
3186
- #: modules/photo/photo.php:375
3187
- msgid "Photo Source"
3188
- msgstr "Fotoquelle"
3189
-
3190
- #: modules/photo/photo.php:379 modules/photo/photo.php:451
3191
- msgid "URL"
3192
- msgstr "URL"
3193
-
3194
- #: modules/photo/photo.php:396
3195
- msgid "Photo URL"
3196
- msgstr "Foto URL"
3197
-
3198
- #: modules/photo/photo.php:397
3199
- msgid "http://www.example.com/my-photo.jpg"
3200
- msgstr "http://www.beispiel.de/mein-foto.jpg"
3201
-
3202
- #: modules/photo/photo.php:404
3203
- msgctxt "Crop."
3204
- msgid "None"
3205
- msgstr "Kein"
3206
-
3207
- #: modules/photo/photo.php:425 modules/photo/photo.php:439
3208
- msgid "Caption"
3209
- msgstr "Bildunterschrift"
3210
-
3211
- #: modules/photo/photo.php:429
3212
- msgid "Show Caption"
3213
- msgstr "Bildunterschrift anzeigen"
3214
-
3215
- #: modules/photo/photo.php:448
3216
- msgid "Link Type"
3217
- msgstr "Linktyp"
3218
-
3219
- #: modules/photo/photo.php:450
3220
- msgctxt "Link type."
3221
- msgid "None"
3222
- msgstr "Keiner"
3223
-
3224
- #: modules/photo/photo.php:453
3225
- msgid "Photo File"
3226
- msgstr "Fotodatei"
3227
-
3228
- #: modules/photo/photo.php:464
3229
- msgid ""
3230
- "Link type applies to how the image should be linked on click. You can choose "
3231
- "a specific URL, the individual photo or a separate page with the photo."
3232
- msgstr ""
3233
- "Der Linktyp gibt an wie das Bild bei Klick verlinkt wird. Sie können eine "
3234
- "URL, ein individuelles Foto oder eine separate Seite mit dem Foto wählen."
3235
-
3236
- #: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
3237
- msgid "Link URL"
3238
- msgstr "Link URL"
3239
-
3240
- #: modules/post-grid/includes/frontend.php:41
3241
- msgid "No posts found."
3242
- msgstr "Keine Beiträge gefunden."
3243
-
3244
- #: modules/post-grid/includes/post-feed.php:14
3245
- #: modules/post-grid/includes/post-grid.php:24
3246
- #, php-format
3247
- msgctxt "%s stands for author name."
3248
- msgid "By %s"
3249
- msgstr "Von %s"
3250
-
3251
- #: modules/post-grid/post-grid.php:14
3252
- msgid "Posts"
3253
- msgstr "Beiträge"
3254
-
3255
- #: modules/post-grid/post-grid.php:15
3256
- msgid "Display a grid of your WordPress posts."
3257
- msgstr "Zeigt ein Raster ihrer WordPress Beiträge."
3258
-
3259
- #: modules/post-grid/post-grid.php:51
3260
- msgid "Layout Style"
3261
- msgstr "Layout Stil"
3262
-
3263
- #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
3264
- msgid "Grid"
3265
- msgstr "Raster"
3266
-
3267
- #: modules/post-grid/post-grid.php:56
3268
- msgid "Feed"
3269
- msgstr "Feed"
3270
-
3271
- #: modules/post-grid/post-grid.php:71
3272
- msgid "Pagination Style"
3273
- msgstr "Nummerierungsstil"
3274
-
3275
- #: modules/post-grid/post-grid.php:74
3276
- msgid "Numbers"
3277
- msgstr "Nummern"
3278
-
3279
- #: modules/post-grid/post-grid.php:76
3280
- msgctxt "Pagination style."
3281
- msgid "None"
3282
- msgstr "Keine"
3283
-
3284
- #: modules/post-grid/post-grid.php:81
3285
- msgid "Posts Per Page"
3286
- msgstr "Beiträge pro Seite"
3287
-
3288
- #: modules/post-grid/post-grid.php:92
3289
- msgid "Post Width"
3290
- msgstr "Postbreite"
3291
-
3292
- #: modules/post-grid/post-grid.php:100
3293
- msgid "Post Spacing"
3294
- msgstr "Postabstand"
3295
-
3296
- #: modules/post-grid/post-grid.php:109
3297
- msgid "Featured Image"
3298
- msgstr "Featured Image"
3299
-
3300
- #: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
3301
- #: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
3302
- #: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
3303
- msgid "Show"
3304
- msgstr "Zeigen"
3305
-
3306
- #: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
3307
- #: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
3308
- #: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
3309
- msgid "Hide"
3310
- msgstr "Verstecken"
3311
-
3312
- #: modules/post-grid/post-grid.php:130
3313
- msgid "Above Text"
3314
- msgstr "Über Text"
3315
-
3316
- #: modules/post-grid/post-grid.php:131
3317
- msgid "Beside Text"
3318
- msgstr "Neben Text"
3319
-
3320
- #: modules/post-grid/post-grid.php:142
3321
- msgid "Post Info"
3322
- msgstr "Postinfo"
3323
-
3324
- #: modules/post-grid/post-grid.php:169
3325
- msgid "Date Format"
3326
- msgstr "Datumsformat"
3327
-
3328
- #: modules/post-grid/post-grid.php:185
3329
- msgid "Comments"
3330
- msgstr "Kommentare"
3331
-
3332
- #: modules/post-grid/post-grid.php:213
3333
- msgid "More Link"
3334
- msgstr "Mehr Link"
3335
-
3336
- #: modules/post-grid/post-grid.php:227
3337
- msgid "More Link Text"
3338
- msgstr "Mehr Link-Text"
3339
-
3340
- #: modules/post-grid/post-grid.php:228
3341
- msgid "Read More"
3342
- msgstr "Mehr Lesen"
3343
-
3344
- #: modules/pricing-table/pricing-table.php:14
3345
- msgid "Pricing Table"
3346
- msgstr "Preisliste"
3347
-
3348
- #: modules/pricing-table/pricing-table.php:15
3349
- msgid "A simple pricing table generator."
3350
- msgstr "Ein einfacher Preislistengenerator."
3351
-
3352
- #: modules/pricing-table/pricing-table.php:26
3353
- msgid "Pricing Boxes"
3354
- msgstr "Preisboxen"
3355
-
3356
- #: modules/pricing-table/pricing-table.php:33
3357
- msgid "Pricing Box"
3358
- msgstr "Preisbox"
3359
-
3360
- #: modules/pricing-table/pricing-table.php:50
3361
- msgid "Box Spacing"
3362
- msgstr "Boxabstand"
3363
-
3364
- #: modules/pricing-table/pricing-table.php:53
3365
- #: modules/testimonials/testimonials.php:40
3366
- msgid "Wide"
3367
- msgstr "Weit"
3368
-
3369
- #: modules/pricing-table/pricing-table.php:54
3370
- msgid "Tight"
3371
- msgstr "Eng"
3372
-
3373
- #: modules/pricing-table/pricing-table.php:59
3374
- msgid "Features Min Height"
3375
- msgstr "Minimale Höhe Features"
3376
-
3377
- #: modules/pricing-table/pricing-table.php:63
3378
- msgid ""
3379
- "Use this to normalize the height of your boxes when they have different "
3380
- "numbers of features."
3381
- msgstr ""
3382
- "Benutzen Sei dies um die Höhe ihrer Boxen zu Normalisieren, wenn sie "
3383
- "unterschiedliche Anzahlen an Features haben."
3384
-
3385
- #: modules/pricing-table/pricing-table.php:70
3386
- msgctxt "Border size."
3387
- msgid "Wide"
3388
- msgstr "Weit"
3389
-
3390
- #: modules/pricing-table/pricing-table.php:71
3391
- msgctxt "Border size."
3392
- msgid "Tight"
3393
- msgstr "Eng"
3394
-
3395
- #: modules/pricing-table/pricing-table.php:84
3396
- msgid "Add Pricing Box"
3397
- msgstr "Preisbox hinzufügen"
3398
-
3399
- #: modules/pricing-table/pricing-table.php:98
3400
- msgid "Title Size"
3401
- msgstr "Titelgröße"
3402
-
3403
- #: modules/pricing-table/pricing-table.php:107
3404
- msgid "Price Box"
3405
- msgstr "Preisbox"
3406
-
3407
- #: modules/pricing-table/pricing-table.php:111
3408
- msgid "Price"
3409
- msgstr "Preis"
3410
-
3411
- #: modules/pricing-table/pricing-table.php:115
3412
- msgid "Duration"
3413
- msgstr "Dauer"
3414
-
3415
- #: modules/pricing-table/pricing-table.php:116
3416
- msgid "per Year"
3417
- msgstr "pro Jahr"
3418
-
3419
- #: modules/pricing-table/pricing-table.php:120
3420
- msgid "Price Size"
3421
- msgstr "Preishöhe"
3422
-
3423
- #: modules/pricing-table/pricing-table.php:133
3424
- msgid "Button Text"
3425
- msgstr "Buttontext"
3426
-
3427
- #: modules/pricing-table/pricing-table.php:137
3428
- msgid "Button URL"
3429
- msgstr "Button URL"
3430
-
3431
- #: modules/pricing-table/pricing-table.php:142
3432
- msgctxt "Price features displayed in pricing box."
3433
- msgid "Features"
3434
- msgstr "Features"
3435
-
3436
- #: modules/pricing-table/pricing-table.php:147
3437
- msgid "One feature per line. HTML is okay."
3438
- msgstr "Ein Feature pro Zeile. HTML ist erlaubt."
3439
-
3440
- #: modules/pricing-table/pricing-table.php:162
3441
- msgid "Box Background"
3442
- msgstr "Boxhintergrund"
3443
-
3444
- #: modules/pricing-table/pricing-table.php:167
3445
- msgid "Box Foreground"
3446
- msgstr "Boxvordergrund"
3447
-
3448
- #: modules/pricing-table/pricing-table.php:173
3449
- msgid "Accent Color"
3450
- msgstr "Akzentfarbe"
3451
-
3452
- #: modules/pricing-table/pricing-table.php:178
3453
- msgid "Accent Text Color"
3454
- msgstr "Akzenttextfarbe"
3455
-
3456
- #: modules/pricing-table/pricing-table.php:182
3457
- msgid "Box Top Margin"
3458
- msgstr "Box Abstand aussen oben"
3459
-
3460
- #: modules/rich-text/rich-text.php:15
3461
- msgid "A WYSIWYG text editor."
3462
- msgstr "Ein WYSIWYG (What you see is what you get) Texteditor."
3463
-
3464
- #: modules/separator/separator.php:14
3465
- msgid "Separator"
3466
- msgstr "Separator"
3467
-
3468
- #: modules/separator/separator.php:15
3469
- msgid "A divider line to separate content."
3470
- msgstr "Eine Trennline um Inhalt zu trennen."
3471
-
3472
- #: modules/separator/separator.php:85
3473
- msgid ""
3474
- "The type of border to use. Double borders must have a height of at least 3px "
3475
- "to render properly."
3476
- msgstr ""
3477
- "Der zu benutzende Rahmentyp. Doppelte Rahmen müssen mindestens eine Höhe von "
3478
- "3px haben um korrekt dargestellt zu werden."
3479
-
3480
- #: modules/sidebar/includes/settings-general.php:5
3481
- #: modules/sidebar/sidebar.php:14
3482
- msgid "Sidebar"
3483
- msgstr "Seitenleiste"
3484
-
3485
- #: modules/sidebar/sidebar.php:15
3486
- msgid ""
3487
- "Display a WordPress sidebar that has been registered by the current theme."
3488
- msgstr ""
3489
- "Zeige eine WordPress Seitenleiste die vom aktuellen Theme registriert wurde."
3490
-
3491
- #: modules/slideshow/slideshow.php:14
3492
- msgid "Slideshow"
3493
- msgstr "Diashow"
3494
-
3495
- #: modules/slideshow/slideshow.php:15
3496
- msgid "Display multiple photos in a slideshow view."
3497
- msgstr "Zeige mehrere Fotos in einer Diashow."
3498
-
3499
- #: modules/slideshow/slideshow.php:302
3500
- msgid "Skin Color"
3501
- msgstr "Hautfarbe"
3502
-
3503
- #: modules/slideshow/slideshow.php:305
3504
- msgctxt "Color."
3505
- msgid "Light"
3506
- msgstr "Hell"
3507
-
3508
- #: modules/slideshow/slideshow.php:306
3509
- msgctxt "Color."
3510
- msgid "Dark"
3511
- msgstr "Dunkel"
3512
-
3513
- #: modules/slideshow/slideshow.php:308
3514
- msgid ""
3515
- "If your overall theme/images are lighter in color, light will display "
3516
- "buttons in a darker color scheme and vice versa for dark."
3517
- msgstr ""
3518
- "Wenn Ihr/e Theme/Bilder insgesamt eher in einer hellen Farbe ist/sind, wird "
3519
- ">Dunkel< die Buttons in einem dunkleren Farbschema darstellen (und "
3520
- "umgekehrt)."
3521
-
3522
- #: modules/slideshow/slideshow.php:318
3523
- msgid ""
3524
- "Crop set to no will fit the slideshow images to the height you specify and "
3525
- "keep the width proportional, whereas crop set to yes will fit the slideshow "
3526
- "images to all sides of the content area while cropping the left and right to "
3527
- "fit the height you specify."
3528
- msgstr ""
3529
- "Wenn >Zugeschnitten< nicht ausgewählt wurde, passt die Diashow Bilder an die "
3530
- "angegebene Höhe an und hält die Proportionen zur Breite ein. Wenn "
3531
- ">Zugeschnitten< ausgewählt wurde werden alle Bilder des Inhaltsfeldes links "
3532
- "und rechts abgeschnitten, damit die angegebene Höhe erreicht wird."
3533
-
3534
- #: modules/slideshow/slideshow.php:322
3535
- msgid "Disable Right-Click"
3536
- msgstr "Rechtsklick deaktivieren"
3537
-
3538
- #: modules/slideshow/slideshow.php:342
3539
- msgctxt "Click action type."
3540
- msgid "None"
3541
- msgstr "Kein"
3542
-
3543
- #: modules/slideshow/slideshow.php:366
3544
- msgid "Playback"
3545
- msgstr "Playback"
3546
-
3547
- #: modules/slideshow/slideshow.php:392
3548
- msgctxt "Slideshow transition."
3549
- msgid "None"
3550
- msgstr "Kein"
3551
-
3552
- #: modules/slideshow/slideshow.php:429
3553
- msgid "Controls"
3554
- msgstr "Steuerung"
3555
-
3556
- #: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
3557
- msgid "Navigation Arrows"
3558
- msgstr "Navigationspfeile"
3559
-
3560
- #: modules/slideshow/slideshow.php:442
3561
- msgid ""
3562
- "Navigational arrows allow the visitor to freely move through the images in "
3563
- "your slideshow. These are larger arrows that overlay your slideshow images "
3564
- "and are separate from the control bar navigational arrows."
3565
- msgstr ""
3566
- "Navigationspfeile erlauben es dem Nutzer sich frei durch die Bilder der "
3567
- "Diashow zu bewegen. Es handelt sich dabei um größere Pfeile, die ihre "
3568
- "Diashow überlagern und nicht bin den Navigationspfeilen der Steuerleiste zu "
3569
- "verwechseln sind."
3570
-
3571
- #: modules/slideshow/slideshow.php:447
3572
- msgid "Control Bar"
3573
- msgstr "Steuerleiste"
3574
-
3575
- #: modules/slideshow/slideshow.php:451
3576
- msgid "Nav Type"
3577
- msgstr "Nav-Typ"
3578
-
3579
- #: modules/slideshow/slideshow.php:454
3580
- msgctxt "Nav type."
3581
- msgid "None"
3582
- msgstr "Kein"
3583
-
3584
- #: modules/slideshow/slideshow.php:455
3585
- msgid "Buttons"
3586
- msgstr "Buttons"
3587
-
3588
- #: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
3589
- msgid "Thumbs"
3590
- msgstr "Thumbs"
3591
-
3592
- #: modules/slideshow/slideshow.php:471
3593
- msgid "Nav Position"
3594
- msgstr "Nav-Position"
3595
-
3596
- #: modules/slideshow/slideshow.php:481
3597
- msgid "Control Bar Buttons"
3598
- msgstr "Steuerleisten-Buttons"
3599
-
3600
- #: modules/slideshow/slideshow.php:494
3601
- msgid "Play Button"
3602
- msgstr "Play-Button"
3603
-
3604
- #: modules/slideshow/slideshow.php:503
3605
- msgid "Fullscreen Button"
3606
- msgstr "Vollbildmodus-Button"
3607
-
3608
- #: modules/slideshow/slideshow.php:512
3609
- msgid "Photo Count"
3610
- msgstr "Fotozähler"
3611
-
3612
- #: modules/slideshow/slideshow.php:521
3613
- msgid "Thumbs Button"
3614
- msgstr "Thumbs-Button"
3615
-
3616
- #: modules/slideshow/slideshow.php:530
3617
- msgid "Caption Button"
3618
- msgstr "Bildunterschrift-Button"
3619
-
3620
- #: modules/slideshow/slideshow.php:539
3621
- msgid "Social Button"
3622
- msgstr "Social Button"
3623
-
3624
- #: modules/slideshow/slideshow.php:549
3625
- msgid "Control Bar Overlay"
3626
- msgstr "Steuerleisten-Overlay"
3627
-
3628
- #: modules/slideshow/slideshow.php:553
3629
- msgid "Overlay Enabled"
3630
- msgstr "Overlay aktiviert"
3631
-
3632
- #: modules/slideshow/slideshow.php:564
3633
- msgid ""
3634
- "Control bar overlay specifies if the control bar buttons you choose overlay "
3635
- "your slideshow images or site below the slideshow completely."
3636
- msgstr ""
3637
- "Steuerbar-Overlay gibt an, ob die gewählten Steuerleisten-Buttons unterhalb "
3638
- "der Diashow die Diashowbilder vollständig überlagern."
3639
-
3640
- #: modules/slideshow/slideshow.php:568
3641
- msgid "Overlay Hide"
3642
- msgstr "Overlay verstecken"
3643
-
3644
- #: modules/slideshow/slideshow.php:574
3645
- msgid ""
3646
- "Overlay hide will hide the control bar after however many seconds you "
3647
- "specify below. They will reappear upon mouse over."
3648
- msgstr ""
3649
- ">Overlay verstecken< versteckt die Steuerleiste nach der unten angegebenen "
3650
- "Anzahl an Sekunden. Die Leiste erscheint wieder, wenn Sie mit der Maus "
3651
- "darüber fahren."
3652
-
3653
- #: modules/slideshow/slideshow.php:578
3654
- msgid "Overlay Hide Delay"
3655
- msgstr "Overlay verstecken - Delay"
3656
-
3657
- #: modules/slideshow/slideshow.php:590
3658
- msgid "Thumbs Size"
3659
- msgstr "Thumbs-Größe"
3660
-
3661
- #: modules/slideshow/slideshow.php:599
3662
- msgid "Social"
3663
- msgstr "Social"
3664
-
3665
- #: modules/slideshow/slideshow.php:603
3666
- msgid "Facebook Button"
3667
- msgstr "Facebook-Button"
3668
-
3669
- #: modules/slideshow/slideshow.php:615
3670
- msgid "Twitter Button"
3671
- msgstr "Twitter-Button"
3672
-
3673
- #: modules/slideshow/slideshow.php:627
3674
- msgid "Google Plus Button"
3675
- msgstr "Google Plus-Button"
3676
-
3677
- #: modules/slideshow/slideshow.php:639
3678
- msgid "Pinterest Button"
3679
- msgstr "Pinterest-Button"
3680
-
3681
- #: modules/social-buttons/social-buttons.php:14
3682
- msgid "Social Buttons"
3683
- msgstr "Social Buttons"
3684
-
3685
- #: modules/social-buttons/social-buttons.php:15
3686
- msgid "Displays social buttons."
3687
- msgstr "Social Buttons anzeigen"
3688
-
3689
- #: modules/social-buttons/social-buttons.php:71
3690
- msgid "Target URL"
3691
- msgstr "Ziel-URL"
3692
-
3693
- #: modules/social-buttons/social-buttons.php:75
3694
- msgid "Current Page"
3695
- msgstr "Aktuelle Seite"
3696
-
3697
- #: modules/social-buttons/social-buttons.php:82
3698
- msgid ""
3699
- "The Target URL field correlates to the page you would like your social icons "
3700
- "to interface with. For example, if you show Facebook, the user will \"Like\" "
3701
- "whatever you put in this field."
3702
- msgstr ""
3703
- "Das Ziel-URL-Feld entspricht der Seite mit der die Social Icons "
3704
- "zusammenabeiten. Zum Beispiel, wenn Sie Facebook angeben, wird der Nutzer "
3705
- "Liken, was Sie in dieses Feld stellen."
3706
-
3707
- #: modules/social-buttons/social-buttons.php:89
3708
- msgid "Custom URL"
3709
- msgstr "Benutzerdefinierte URL"
3710
-
3711
- #: modules/social-buttons/social-buttons.php:107
3712
- msgid "Show Facebook"
3713
- msgstr "Facebook anzeigen"
3714
-
3715
- #: modules/social-buttons/social-buttons.php:116
3716
- msgid "Show Twitter"
3717
- msgstr "Twitter anzeigen"
3718
-
3719
- #: modules/social-buttons/social-buttons.php:125
3720
- msgid "Show Google+"
3721
- msgstr "Google+ anzeigen"
3722
-
3723
- #: modules/tabs/tabs.php:14
3724
- msgid "Tabs"
3725
- msgstr "Tabs"
3726
-
3727
- #: modules/tabs/tabs.php:15
3728
- msgid "Display a collection of tabbed content."
3729
- msgstr "Eine Sammlung von Inhalten mit Tabs anzeigen."
3730
-
3731
- #: modules/tabs/tabs.php:55
3732
- msgid "Horizontal"
3733
- msgstr "Horizontal"
3734
-
3735
- #: modules/tabs/tabs.php:56
3736
- msgid "Vertical"
3737
- msgstr "Vertikal"
3738
-
3739
- #: modules/testimonials/testimonials.php:14
3740
- #: modules/testimonials/testimonials.php:60
3741
- #: modules/testimonials/testimonials.php:174
3742
- msgid "Testimonials"
3743
- msgstr "Empfehlungen"
3744
-
3745
- #: modules/testimonials/testimonials.php:15
3746
- msgid "An animated tesimonials area."
3747
- msgstr "Ein animiertes Feld für Empfehlungen."
3748
-
3749
- #: modules/testimonials/testimonials.php:41
3750
- msgid "Compact"
3751
- msgstr "Kompakt"
3752
-
3753
- #: modules/testimonials/testimonials.php:51
3754
- msgid "Wide is for 1 column rows, compact is for multi-column rows."
3755
- msgstr "Weit steht für 1-spaltige Zeilen, Kompakt für mehrspaltige Zeilen."
3756
-
3757
- #: modules/testimonials/testimonials.php:78
3758
- msgid "Slider Settings"
3759
- msgstr "Slidereinstellungen"
3760
-
3761
- #: modules/testimonials/testimonials.php:135
3762
- msgid "Arrow Color"
3763
- msgstr "Pfeilfarbe"
3764
-
3765
- #: modules/testimonials/testimonials.php:165
3766
- msgid "Dot Color"
3767
- msgstr "Punktfarbe"
3768
-
3769
- #: modules/testimonials/testimonials.php:181
3770
- msgid "Testimonial"
3771
- msgstr "Empfehlung"
3772
-
3773
- #: modules/testimonials/testimonials.php:197
3774
- msgid "Add Testimonial"
3775
- msgstr "Empfehlung hinzufügen"
3776
-
3777
- #: modules/video/video.php:20
3778
- msgid "Render a WordPress or embedable video."
3779
- msgstr "Ein eingebettetes Video rendern"
3780
-
3781
- #: modules/video/video.php:83
3782
- msgid "Video Type"
3783
- msgstr "Videotyp"
3784
-
3785
- #: modules/video/video.php:87
3786
- msgid "Embed"
3787
- msgstr "Einbetten"
3788
-
3789
- #: modules/video/video.php:104
3790
- msgctxt "Video preview/fallback image."
3791
- msgid "Poster"
3792
- msgstr "Poster"
3793
-
3794
- #: modules/video/video.php:120
3795
- msgid "Loop"
3796
- msgstr "Schleife"
3797
-
3798
- #: modules/widget/includes/frontend.php:35
3799
- #: modules/widget/includes/settings-general.php:44
3800
- #, php-format
3801
- msgctxt "%s stands for widget slug."
3802
- msgid "%s no longer exists."
3803
- msgstr "%s existiert nicht mehr."
3804
-
3805
- #: modules/widget/widget.php:14
3806
- msgid "Widget"
3807
- msgstr "Widget"
3808
-
3809
- #: modules/widget/widget.php:15
3810
- msgid "Display a WordPress widget."
3811
- msgstr "Ein WP-Widget anzeigen."
3812
-
3813
- #: modules/woocommerce/woocommerce.php:16
3814
- msgid "WooCommerce"
3815
- msgstr "WooCommerce"
3816
-
3817
- #: modules/woocommerce/woocommerce.php:17
3818
- msgid "Display products or categories from your WooCommerce store."
3819
- msgstr "Produkte oder Kategorien von WooCommerce anzeigen."
3820
-
3821
- #: modules/woocommerce/woocommerce.php:60
3822
- msgid "Choose..."
3823
- msgstr "Wählen Sie..."
3824
-
3825
- #: modules/woocommerce/woocommerce.php:61
3826
- msgid "Single Product"
3827
- msgstr "Einzelprodukt"
3828
-
3829
- #: modules/woocommerce/woocommerce.php:62
3830
- #: modules/woocommerce/woocommerce.php:113
3831
- msgid "Multiple Products"
3832
- msgstr "Mehrere Produkte"
3833
-
3834
- #: modules/woocommerce/woocommerce.php:63
3835
- msgid "\"Add to Cart\" Button"
3836
- msgstr "\"Zum Einkaufswagen hinzufügen\" Button"
3837
-
3838
- #: modules/woocommerce/woocommerce.php:64
3839
- msgid "Categories"
3840
- msgstr "Kategorien"
3841
-
3842
- #: modules/woocommerce/woocommerce.php:65
3843
- msgid "Cart"
3844
- msgstr "Einkaufswagen"
3845
-
3846
- #: modules/woocommerce/woocommerce.php:66
3847
- msgid "Checkout"
3848
- msgstr "Kasse"
3849
-
3850
- #: modules/woocommerce/woocommerce.php:67
3851
- msgid "Order Tracking"
3852
- msgstr "Bestellverfolgung"
3853
-
3854
- #: modules/woocommerce/woocommerce.php:68
3855
- msgid "My Account"
3856
- msgstr "Mein Konto"
3857
-
3858
- #: modules/woocommerce/woocommerce.php:87
3859
- msgid "Product ID"
3860
- msgstr "Produkt-ID"
3861
-
3862
- #: modules/woocommerce/woocommerce.php:90
3863
- msgid ""
3864
- "As you add products in the WooCommerce Products area, each will be assigned "
3865
- "a unique ID. You can find this unique product ID by visiting the Products "
3866
- "area and rolling over the product. The unique ID will be the first attribute."
3867
- msgstr ""
3868
- "Wenn Sie WooCommerce-Produkte hinzufügen, bekommt jedes eine einzigartige "
3869
- "ID. Diese können Sie finden, wenn Sie die Produktseite besuchen."
3870
-
3871
- #: modules/woocommerce/woocommerce.php:94
3872
- msgid "Parent Category ID"
3873
- msgstr "ID der übergeordneten Kategorie"
3874
-
3875
- #: modules/woocommerce/woocommerce.php:97
3876
- msgid ""
3877
- "As you add product categories in the WooCommerce Products area, each will be "
3878
- "assigned a unique ID. This ID can be found by hovering on the category in "
3879
- "the categories area under Products and looking in the URL that is displayed "
3880
- "in your browser. The ID will be the only number value in the URL."
3881
- msgstr ""
3882
- "Wenn Sie WooCommerce-Kategorien hinzufügen, bekommt jede eine einzigartige "
3883
- "ID. Diese können Sie finden, wenn Sie die Produktseite besuchen."
3884
-
3885
- #: modules/woocommerce/woocommerce.php:101
3886
- #: modules/woocommerce/woocommerce.php:172
3887
- msgid "Columns"
3888
- msgstr "Spalten"
3889
-
3890
- #: modules/woocommerce/woocommerce.php:117
3891
- msgid "Products Source"
3892
- msgstr "Produktquellen"
3893
-
3894
- #: modules/woocommerce/woocommerce.php:120
3895
- msgid "Products IDs"
3896
- msgstr "Produkt-IDs"
3897
-
3898
- #: modules/woocommerce/woocommerce.php:121
3899
- msgid "Product Category"
3900
- msgstr "Produktkategorie"
3901
-
3902
- #: modules/woocommerce/woocommerce.php:122
3903
- msgid "Recent Products"
3904
- msgstr "Letzte Produkte"
3905
-
3906
- #: modules/woocommerce/woocommerce.php:123
3907
- msgid "Featured Products"
3908
- msgstr "Enthaltene Produkte"
3909
-
3910
- #: modules/woocommerce/woocommerce.php:124
3911
- msgid "Sale Products"
3912
- msgstr "Verkaufsprodukte"
3913
-
3914
- #: modules/woocommerce/woocommerce.php:125
3915
- msgid "Best Selling Products"
3916
- msgstr "Verkaufsschlager"
3917
-
3918
- #: modules/woocommerce/woocommerce.php:126
3919
- msgid "Top Rated Products"
3920
- msgstr "Am besten bewertete Produkte"
3921
-
3922
- #: modules/woocommerce/woocommerce.php:154
3923
- msgid "Product IDs"
3924
- msgstr "Produkt-IDs"
3925
-
3926
- #: modules/woocommerce/woocommerce.php:156
3927
- msgid ""
3928
- "As you add products in the WooCommerce Products area, each will be assigned "
3929
- "a unique ID. You can find this unique product ID by visiting the Products "
3930
- "area and rolling over the product. The unique ID will be the first attribute "
3931
- "and you can add several here separated by a comma."
3932
- msgstr ""
3933
- "Wenn Sie WooCommerce-Produkte hinzufügen, bekommt jedes eine einzigartige "
3934
- "ID. Diese können Sie finden, wenn Sie die Produktseite besuchen."
3935
-
3936
- #: modules/woocommerce/woocommerce.php:160
3937
- msgid "Category Slug"
3938
- msgstr "Kategorieschlag"
3939
-
3940
- #: modules/woocommerce/woocommerce.php:162
3941
- msgid ""
3942
- "As you add product categories in the WooCommerce Products area, each will be "
3943
- "assigned a unique slug or you can edit and add your own. These slugs can be "
3944
- "found in the Categories area under WooCommerce Products. Several can be "
3945
- "added here separated by a comma."
3946
- msgstr ""
3947
- "Wenn Sie WooCommerce-Kategorien hinzufügen, bekommt jede eine einzigartige "
3948
- "ID. Diese können Sie finden, wenn Sie die Produktseite besuchen."
3949
-
3950
- #: modules/woocommerce/woocommerce.php:166
3951
- msgid "Number of Products"
3952
- msgstr "Produktanzahl"
3953
-
3954
- #: modules/woocommerce/woocommerce.php:183
3955
- msgid "Sort By"
3956
- msgstr "Sortieren nach"
3957
-
3958
- #: modules/woocommerce/woocommerce.php:186
3959
- msgctxt "Sort by."
3960
- msgid "Default"
3961
- msgstr "Default"
3962
-
3963
- #: modules/woocommerce/woocommerce.php:187
3964
- msgid "Popularity"
3965
- msgstr "Beliebtheit"
3966
-
3967
- #: modules/woocommerce/woocommerce.php:188
3968
- msgid "Rating"
3969
- msgstr "Bewertung"
3970
-
3971
- #: modules/woocommerce/woocommerce.php:190
3972
- msgid "Price: Low to High"
3973
- msgstr "Preis: Aufsteigend"
3974
-
3975
- #: modules/woocommerce/woocommerce.php:191
3976
- msgid "Price: High to Low"
3977
- msgstr "Preis: Absteigend"
3978
-
3979
- #~ msgid "Page Builder Templates"
3980
- #~ msgstr "Page Builder-Vorlagen"
3981
-
3982
- #~ msgid "Edit Template"
3983
- #~ msgstr "Vorlage bearbeiten"
3984
-
3985
- #~ msgctxt "Template edit form field label. Template name."
3986
- #~ msgid "Name"
3987
- #~ msgstr "Name"
3988
-
3989
- #~ msgctxt "Template edit form field label. Is template premium one?"
3990
- #~ msgid "Premium"
3991
- #~ msgstr "Premium"
3992
-
3993
- #~ msgid "Category"
3994
- #~ msgstr "Kategorie"
3995
-
3996
- #~ msgctxt "Templates category label."
3997
- #~ msgid "Landing Pages"
3998
- #~ msgstr "Zielseite"
3999
-
4000
- #~ msgctxt "Templates category label."
4001
- #~ msgid "Company Info"
4002
- #~ msgstr "Firmeninfo"
4003
-
4004
- #~ msgid "Update Template"
4005
- #~ msgstr "Vorlage aktualisieren"
4006
-
4007
- #~ msgid "Page Builder Template"
4008
- #~ msgstr "Page Builder Vorlage"
4009
-
4010
- #~ msgctxt "Templates list column label."
4011
- #~ msgid "Name"
4012
- #~ msgstr "Name"
4013
-
4014
- #~ msgctxt "Templates list column label."
4015
- #~ msgid "Category"
4016
- #~ msgstr "Kategorie"
4017
-
4018
- #~ msgctxt "Templates list column label. Is template premium one?"
4019
- #~ msgid "Premium"
4020
- #~ msgstr "Premium"
4021
-
4022
- #~ msgid ""
4023
- #~ "A custom CSS class that will be applied to this column. Spaces only, no "
4024
- #~ "dots."
4025
- #~ msgstr ""
4026
- #~ "Eine benutzerdefinierte CSS-Klasse wird auf diese Spalte angewandt. Nur "
4027
- #~ "Leerzeichen, keine Punkte."
4028
-
4029
- #~ msgid "Filter: "
4030
- #~ msgstr "Filter:"
4031
-
4032
- #~ msgid ""
4033
- #~ "A custom CSS class that will be applied to this module. Spaces only, no "
4034
- #~ "dots."
4035
- #~ msgstr ""
4036
- #~ "Eine benutzerdefinierte CSS-Klasse, die für dieses Modul verwendet wird. "
4037
- #~ "Nur Leerzeichen, keine Punkte."
4038
-
4039
- #~ msgid ""
4040
- #~ "Add a custom CSS selector here to apply additional styling to this row."
4041
- #~ msgstr ""
4042
- #~ "Fügen Sie hier einen benutzerdefinierten CSS-Selektor hinzu um "
4043
- #~ "zusätzliches Styling für diese Zeile anzuwenden."
4044
-
4045
- #~ msgid "Image Filename"
4046
- #~ msgstr "Bild-Dateiname"
4047
-
4048
- #~ msgid ""
4049
- #~ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
4050
- #~ "templates/\" directory."
4051
- #~ msgstr ""
4052
- #~ "Der Dateiname des Bildes (z.B. \"thumb.jpg\") das im \"img/templates/\" "
4053
- #~ "Verzeichnis liegt."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-08-02 20:17-0800\n"
6
+ "PO-Revision-Date: Wed Aug 05 2015 17:40:55 GMT+0200 (CEST)\n"
7
+ "Last-Translator: David <info@meesites.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: German\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Loco - https://localise.biz/\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Loco-Target-Locale: de_DE"
24
+
25
+ #: classes/class-fl-builder-admin-settings.php:116
26
+ #: includes/global-settings.php:4
27
+ #, php-format
28
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
29
+ msgid "%s Settings"
30
+ msgstr "%s Einstellungen"
31
+
32
+ #: classes/class-fl-builder-admin-settings.php:133
33
+ msgid "Settings updated!"
34
+ msgstr "Einstellungen aktualisiert!"
35
+
36
+ #: classes/class-fl-builder-admin-settings.php:147
37
+ msgid "License"
38
+ msgstr "Lizenz"
39
+
40
+ #: classes/class-fl-builder-admin-settings.php:151
41
+ #: includes/admin-settings-upgrade.php:3
42
+ msgid "Upgrade"
43
+ msgstr "Upgrade"
44
+
45
+ #: classes/class-fl-builder-admin-settings.php:155
46
+ #: includes/global-settings.php:90
47
+ msgid "Modules"
48
+ msgstr "Module"
49
+
50
+ #: classes/class-fl-builder-admin-settings.php:159 includes/ui.php:58
51
+ msgid "Templates"
52
+ msgstr "Vorlagen"
53
+
54
+ #: classes/class-fl-builder-admin-settings.php:163
55
+ #: includes/admin-settings-post-types.php:3
56
+ msgid "Post Types"
57
+ msgstr "Posttypen"
58
+
59
+ #: classes/class-fl-builder-admin-settings.php:167
60
+ #: modules/icon-group/icon-group.php:27
61
+ #: modules/post-carousel/post-carousel.php:275
62
+ #: modules/post-grid/post-grid.php:257
63
+ msgid "Icons"
64
+ msgstr "Icons"
65
+
66
+ #: classes/class-fl-builder-admin-settings.php:171
67
+ msgid "Editing"
68
+ msgstr "Bearbeitung"
69
+
70
+ #: classes/class-fl-builder-admin-settings.php:175
71
+ #: includes/admin-settings-branding.php:3
72
+ msgid "Branding"
73
+ msgstr "Branding"
74
+
75
+ # @ fl-builder
76
+ #: classes/class-fl-builder-admin-settings.php:179
77
+ msgid "Help Button"
78
+ msgstr "Hilfe Button"
79
+
80
+ #: classes/class-fl-builder-admin-settings.php:183
81
+ #: includes/admin-settings-cache.php:3
82
+ msgid "Cache"
83
+ msgstr ""
84
+
85
+ #: classes/class-fl-builder-admin-settings.php:187
86
+ #: includes/admin-settings-uninstall.php:3
87
+ #: includes/admin-settings-uninstall.php:15
88
+ msgid "Uninstall"
89
+ msgstr "Deinstallieren"
90
+
91
+ # @ fl-builder
92
+ #: classes/class-fl-builder-admin-settings.php:439
93
+ msgid "Error! You must have at least one icon set enabled."
94
+ msgstr "Fehler! Sie müssen mindestens einen Symbolsatz aktiviert haben."
95
+
96
+ # @ fl-builder
97
+ #: classes/class-fl-builder-admin-settings.php:481
98
+ msgid "Error! Could not unzip file."
99
+ msgstr "Fehler! Konnte Datei nicht entpacken."
100
+
101
+ # @ fl-builder
102
+ #: classes/class-fl-builder-admin-settings.php:515
103
+ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
104
+ msgstr "Fehler! Bitte laden Sie entweder ein Iconset von Icomoon oder Fontello."
105
+
106
+ # @ fl-builder
107
+ #: classes/class-fl-builder-admin-settings.php:618
108
+ msgid "Error! Please enter an iframe for the video embed code."
109
+ msgstr "Fehler! Bitte geben Sie ein Iframe für video Embed-Code ein."
110
+
111
+ # @ fl-builder
112
+ #: classes/class-fl-builder-admin-settings.php:636
113
+ msgid "Error! You must have at least one feature of the help button enabled."
114
+ msgstr "Fehler! Sie müssen mindestens ein Feature des Hilfe Button aktiviert haben."
115
+
116
+ #: classes/class-fl-builder-admin.php:45
117
+ #, php-format
118
+ msgid ""
119
+ "This version of the <strong>Page Builder</strong> plugin is not compatible "
120
+ "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
121
+ "of this plugin."
122
+ msgstr ""
123
+ "Diese Version des <strong>Page Builder</strong> Plugins ist nicht kompatibel "
124
+ "mit einer Multisite. <a%s>Bitte upgraden Sie.</a> zur Multisiteversion des "
125
+ "Plugins."
126
+
127
+ #: classes/class-fl-builder-admin.php:55
128
+ msgid ""
129
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
130
+ "greater. Please update WordPress before activating the plugin."
131
+ msgstr ""
132
+ "Der <strong>Page Builder</strong> benötigt WP 3.5 oder höher. Bitte "
133
+ "aktualisieren Sie WP bevor sie den PageBuilder aktivieren."
134
+
135
+ #: classes/class-fl-builder-admin.php:112
136
+ #, php-format
137
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
138
+ msgstr ""
139
+ "Page Builder aktiviert! <a%s> Klicken Sie hier</a> um Fernupdates zu "
140
+ "aktivieren."
141
+
142
+ #: classes/class-fl-builder-admin.php:238
143
+ msgctxt "Plugin action link label."
144
+ msgid "Upgrade"
145
+ msgstr "Upgrade"
146
+
147
+ #: classes/class-fl-builder-admin.php:253
148
+ #: classes/class-fl-builder-model.php:3156
149
+ msgid "Page Builder"
150
+ msgstr "Page Builder"
151
+
152
+ # @ fl-builder
153
+ #: classes/class-fl-builder-model.php:1616
154
+ #, php-format
155
+ msgctxt "%s stands for the module filename"
156
+ msgid ""
157
+ "A module with the filename %s.php already exists! Please namespace your "
158
+ "module filenames to ensure compatibility with Beaver Builder."
159
+ msgstr ""
160
+ "Ein Modul mit dem Dateinamen %s.php existiert bereits! Bitte benennen Sie "
161
+ "Ihre Modul-Dateinamen um die Kompatibilität mit dem Beaver-Builder sicher zu "
162
+ "stellen."
163
+
164
+ #: classes/class-fl-builder-model.php:1667
165
+ #: classes/class-fl-builder-model.php:1728 modules/heading/heading.php:16
166
+ #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
167
+ #: modules/separator/separator.php:16 modules/video/video.php:21
168
+ msgid "Basic Modules"
169
+ msgstr "Basismodule"
170
+
171
+ #: classes/class-fl-builder-model.php:1668
172
+ #: classes/class-fl-builder-model.php:1729 modules/accordion/accordion.php:16
173
+ #: modules/button/button.php:16 modules/callout/callout.php:16
174
+ #: modules/contact-form/contact-form.php:16
175
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
176
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
177
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
178
+ #: modules/map/map.php:16 modules/post-carousel/post-carousel.php:16
179
+ #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
180
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
181
+ #: modules/slideshow/slideshow.php:16
182
+ #: modules/social-buttons/social-buttons.php:16
183
+ #: modules/subscribe-form/subscribe-form.php:20 modules/tabs/tabs.php:16
184
+ #: modules/testimonials/testimonials.php:16
185
+ #: modules/woocommerce/woocommerce.php:18
186
+ msgid "Advanced Modules"
187
+ msgstr "Erweiterte Module"
188
+
189
+ # @ fl-builder
190
+ #: classes/class-fl-builder-model.php:1669
191
+ #: classes/class-fl-builder-model.php:1730
192
+ msgid "Other Modules"
193
+ msgstr "Andere Module"
194
+
195
+ #: classes/class-fl-builder-model.php:1670
196
+ #: classes/class-fl-builder-model.php:1731
197
+ #: includes/admin-settings-modules.php:32 includes/ui.php:99
198
+ #: modules/widget/widget.php:16
199
+ msgid "WordPress Widgets"
200
+ msgstr "WP Widgets"
201
+
202
+ #: classes/class-fl-builder-model.php:2320
203
+ #, php-format
204
+ msgctxt "%s stands for post/page title."
205
+ msgid "Copy of %s"
206
+ msgstr "Kopie von %s"
207
+
208
+ #: classes/class-fl-builder-model.php:2758
209
+ msgctxt "Default user template category."
210
+ msgid "Uncategorized"
211
+ msgstr "Unkategorisiert"
212
+
213
+ #: classes/class-fl-builder-model.php:3113
214
+ msgid "Home Pages"
215
+ msgstr "Home-Seiten"
216
+
217
+ #: classes/class-fl-builder-model.php:3114
218
+ msgid "Content Pages"
219
+ msgstr "Inhalts-Seiten"
220
+
221
+ #: classes/class-fl-builder-photo.php:95
222
+ #: classes/class-fl-builder-photo.php:100
223
+ msgctxt "Image size."
224
+ msgid "Full Size"
225
+ msgstr "Vollgröße"
226
+
227
+ #: classes/class-fl-builder-photo.php:101
228
+ msgctxt "Image size."
229
+ msgid "Large"
230
+ msgstr "Groß"
231
+
232
+ #: classes/class-fl-builder-photo.php:102
233
+ msgctxt "Image size."
234
+ msgid "Medium"
235
+ msgstr "Mittel"
236
+
237
+ #: classes/class-fl-builder-photo.php:103
238
+ msgctxt "Image size."
239
+ msgid "Thumbnail"
240
+ msgstr "Thumbnail"
241
+
242
+ #: classes/class-fl-builder-service-activecampaign.php:69
243
+ msgid "Error: You must provide an API URL."
244
+ msgstr ""
245
+
246
+ #: classes/class-fl-builder-service-activecampaign.php:73
247
+ #: classes/class-fl-builder-service-campaign-monitor.php:55
248
+ #: classes/class-fl-builder-service-constant-contact.php:48
249
+ #: classes/class-fl-builder-service-getresponse.php:67
250
+ #: classes/class-fl-builder-service-hatchbuck.php:48
251
+ #: classes/class-fl-builder-service-infusionsoft.php:79
252
+ #: classes/class-fl-builder-service-madmimi.php:73
253
+ #: classes/class-fl-builder-service-mailchimp.php:67
254
+ msgid "Error: You must provide an API key."
255
+ msgstr ""
256
+
257
+ #: classes/class-fl-builder-service-activecampaign.php:81
258
+ msgid "Error: Please check your API URL and API key."
259
+ msgstr ""
260
+
261
+ #: classes/class-fl-builder-service-activecampaign.php:108
262
+ msgid "API URL"
263
+ msgstr ""
264
+
265
+ #: classes/class-fl-builder-service-activecampaign.php:109
266
+ msgid ""
267
+ "Your API url can be found in your ActiveCampaign account under My Settings > "
268
+ "API."
269
+ msgstr ""
270
+
271
+ #: classes/class-fl-builder-service-activecampaign.php:119
272
+ #: classes/class-fl-builder-service-campaign-monitor.php:88
273
+ #: classes/class-fl-builder-service-constant-contact.php:88
274
+ #: classes/class-fl-builder-service-getresponse.php:100
275
+ #: classes/class-fl-builder-service-hatchbuck.php:87
276
+ #: classes/class-fl-builder-service-infusionsoft.php:129
277
+ #: classes/class-fl-builder-service-madmimi.php:121
278
+ #: classes/class-fl-builder-service-mailchimp.php:100
279
+ msgid "API Key"
280
+ msgstr ""
281
+
282
+ #: classes/class-fl-builder-service-activecampaign.php:120
283
+ msgid ""
284
+ "Your API key can be found in your ActiveCampaign account under My Settings > "
285
+ "API."
286
+ msgstr ""
287
+
288
+ #: classes/class-fl-builder-service-activecampaign.php:169
289
+ #: classes/class-fl-builder-service-aweber.php:182
290
+ #: classes/class-fl-builder-service-campaign-monitor.php:148
291
+ #: classes/class-fl-builder-service-campaign-monitor.php:199
292
+ #: classes/class-fl-builder-service-constant-contact.php:156
293
+ #: classes/class-fl-builder-service-getresponse.php:154
294
+ #: classes/class-fl-builder-service-icontact.php:207
295
+ #: classes/class-fl-builder-service-infusionsoft.php:204
296
+ #: classes/class-fl-builder-service-madmimi.php:178
297
+ #: classes/class-fl-builder-service-mailchimp.php:177
298
+ #: classes/class-fl-builder-service-mailpoet.php:92
299
+ #: classes/class-fl-builder-service-sendinblue.php:161
300
+ #: classes/class-fl-builder-services.php:288 includes/service-settings.php:21
301
+ #: modules/woocommerce/woocommerce.php:60
302
+ msgid "Choose..."
303
+ msgstr "Wählen Sie..."
304
+
305
+ #: classes/class-fl-builder-service-activecampaign.php:181
306
+ #: classes/class-fl-builder-service-aweber.php:192
307
+ #: classes/class-fl-builder-service-campaign-monitor.php:209
308
+ #: classes/class-fl-builder-service-constant-contact.php:166
309
+ #: classes/class-fl-builder-service-getresponse.php:164
310
+ #: classes/class-fl-builder-service-icontact.php:217
311
+ #: classes/class-fl-builder-service-infusionsoft.php:214
312
+ #: classes/class-fl-builder-service-madmimi.php:188
313
+ #: classes/class-fl-builder-service-mailchimp.php:187
314
+ #: classes/class-fl-builder-service-mailpoet.php:102
315
+ #: classes/class-fl-builder-service-sendinblue.php:171
316
+ msgctxt "An email list from a third party provider."
317
+ msgid "List"
318
+ msgstr ""
319
+
320
+ #: classes/class-fl-builder-service-activecampaign.php:208
321
+ msgid ""
322
+ "There was an error subscribing to ActiveCampaign. The account is no longer "
323
+ "connected."
324
+ msgstr ""
325
+
326
+ #: classes/class-fl-builder-service-activecampaign.php:239
327
+ msgid "Error: Invalid API data."
328
+ msgstr ""
329
+
330
+ #: classes/class-fl-builder-service-aweber.php:72
331
+ msgid "Error: You must provide an Authorization Code."
332
+ msgstr ""
333
+
334
+ #: classes/class-fl-builder-service-aweber.php:76
335
+ msgid "Error: Please enter a valid Authorization Code."
336
+ msgstr ""
337
+
338
+ #: classes/class-fl-builder-service-aweber.php:127
339
+ msgid "Authorization Code"
340
+ msgstr ""
341
+
342
+ #: classes/class-fl-builder-service-aweber.php:128
343
+ #, php-format
344
+ msgid ""
345
+ "Please register this website with AWeber to get your Authorization Code. "
346
+ "<a%s>Register Now</a>"
347
+ msgstr ""
348
+
349
+ #: classes/class-fl-builder-service-aweber.php:219
350
+ msgid "There was an error subscribing to AWeber. The account is no longer connected."
351
+ msgstr ""
352
+
353
+ #: classes/class-fl-builder-service-aweber.php:242
354
+ msgid "There was an error connecting to AWeber. Please try again."
355
+ msgstr ""
356
+
357
+ #: classes/class-fl-builder-service-aweber.php:247
358
+ #, php-format
359
+ msgid "There was an error subscribing to AWeber. %s"
360
+ msgstr ""
361
+
362
+ #: classes/class-fl-builder-service-campaign-monitor.php:67
363
+ #: classes/class-fl-builder-service-campaign-monitor.php:129
364
+ #: classes/class-fl-builder-service-getresponse.php:76
365
+ #: classes/class-fl-builder-service-getresponse.php:132
366
+ #: classes/class-fl-builder-service-hatchbuck.php:63
367
+ msgid "Error: Please check your API key."
368
+ msgstr ""
369
+
370
+ #: classes/class-fl-builder-service-campaign-monitor.php:89
371
+ msgid ""
372
+ "Your API key can be found in your Campaign Monitor account under Account "
373
+ "Settings > API Key."
374
+ msgstr ""
375
+
376
+ #: classes/class-fl-builder-service-campaign-monitor.php:158
377
+ msgctxt "A client account in Campaign Monitor."
378
+ msgid "Client"
379
+ msgstr ""
380
+
381
+ #: classes/class-fl-builder-service-campaign-monitor.php:236
382
+ msgid ""
383
+ "There was an error subscribing to Campaign Monitor. The account is no longer "
384
+ "connected."
385
+ msgstr ""
386
+
387
+ #: classes/class-fl-builder-service-campaign-monitor.php:253
388
+ msgid "There was an error subscribing to Campaign Monitor."
389
+ msgstr ""
390
+
391
+ #: classes/class-fl-builder-service-constant-contact.php:52
392
+ msgid "Error: You must provide an access token."
393
+ msgstr ""
394
+
395
+ #: classes/class-fl-builder-service-constant-contact.php:61
396
+ #: classes/class-fl-builder-service-constant-contact.php:134
397
+ #, php-format
398
+ msgid "Error: Could not connect to Constant Contact. %s"
399
+ msgstr ""
400
+
401
+ #: classes/class-fl-builder-service-constant-contact.php:89
402
+ msgid "Your Constant Contact API key."
403
+ msgstr ""
404
+
405
+ #: classes/class-fl-builder-service-constant-contact.php:99
406
+ msgid "Access Token"
407
+ msgstr ""
408
+
409
+ #: classes/class-fl-builder-service-constant-contact.php:100
410
+ msgid "Your Constant Contact access token."
411
+ msgstr ""
412
+
413
+ #: classes/class-fl-builder-service-constant-contact.php:101
414
+ #, php-format
415
+ msgid ""
416
+ "You must register a <a%s>Developer Account</a> with Constant Contact to "
417
+ "obtain an API key and access token. Please see <a%s>Getting an API key</a> "
418
+ "for complete instructions."
419
+ msgstr ""
420
+
421
+ #: classes/class-fl-builder-service-constant-contact.php:193
422
+ msgid ""
423
+ "There was an error subscribing to Constant Contact. The account is no longer "
424
+ "connected."
425
+ msgstr ""
426
+
427
+ #: classes/class-fl-builder-service-constant-contact.php:245
428
+ #: classes/class-fl-builder-service-constant-contact.php:279
429
+ #, php-format
430
+ msgid "There was an error subscribing to Constant Contact. %s"
431
+ msgstr ""
432
+
433
+ #: classes/class-fl-builder-service-email-address.php:39
434
+ #: classes/class-fl-builder-service-madmimi.php:69
435
+ msgid "Error: You must provide an email address."
436
+ msgstr ""
437
+
438
+ #: classes/class-fl-builder-service-email-address.php:63
439
+ #: classes/class-fl-builder-service-madmimi.php:110
440
+ #: modules/subscribe-form/includes/frontend.php:11
441
+ msgid "Email Address"
442
+ msgstr "E-Mail Adresse"
443
+
444
+ #: classes/class-fl-builder-service-email-address.php:110
445
+ msgid "There was an error subscribing. The account is no longer connected."
446
+ msgstr ""
447
+
448
+ #: classes/class-fl-builder-service-email-address.php:114
449
+ msgid "Subscribe Form Signup"
450
+ msgstr "Abonnement-Formular Registrierung"
451
+
452
+ #: classes/class-fl-builder-service-email-address.php:115
453
+ #: modules/contact-form/includes/frontend.php:21
454
+ msgid "Email"
455
+ msgstr "Email"
456
+
457
+ #: classes/class-fl-builder-service-email-address.php:118
458
+ msgid "Name"
459
+ msgstr ""
460
+
461
+ #: classes/class-fl-builder-service-email-address.php:124
462
+ #: modules/subscribe-form/subscribe-form.php:73
463
+ msgid "There was an error subscribing. Please try again."
464
+ msgstr "Etwas ist schief gelaufen, bitte versuchen Sie es erneut."
465
+
466
+ #: classes/class-fl-builder-service-getresponse.php:101
467
+ msgid ""
468
+ "Your API key can be found in your GetResponse account under My Account > "
469
+ "GetResponse API."
470
+ msgstr ""
471
+
472
+ #: classes/class-fl-builder-service-getresponse.php:191
473
+ msgid ""
474
+ "There was an error subscribing to GetResponse. The account is no longer "
475
+ "connected."
476
+ msgstr ""
477
+
478
+ #: classes/class-fl-builder-service-getresponse.php:202
479
+ #, php-format
480
+ msgid "There was an error subscribing to GetResponse. %s"
481
+ msgstr ""
482
+
483
+ #: classes/class-fl-builder-service-hatchbuck.php:88
484
+ msgid ""
485
+ "Your API key can be found in your Hatchbuck account under Account Settings > "
486
+ "Web API."
487
+ msgstr ""
488
+
489
+ #: classes/class-fl-builder-service-hatchbuck.php:134
490
+ msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
491
+ msgid "Tag"
492
+ msgstr ""
493
+
494
+ #: classes/class-fl-builder-service-hatchbuck.php:161
495
+ msgid ""
496
+ "There was an error subscribing to Hatchbuck. The account is no longer "
497
+ "connected."
498
+ msgstr ""
499
+
500
+ #: classes/class-fl-builder-service-hatchbuck.php:190
501
+ msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
502
+ msgstr ""
503
+
504
+ #: classes/class-fl-builder-service-hatchbuck.php:200
505
+ #: classes/class-fl-builder-service-hatchbuck.php:232
506
+ msgid "There was an error subscribing to Hatchbuck."
507
+ msgstr ""
508
+
509
+ #: classes/class-fl-builder-service-icontact.php:75
510
+ msgid "Error: You must provide a username."
511
+ msgstr ""
512
+
513
+ #: classes/class-fl-builder-service-icontact.php:79
514
+ msgid "Error: You must provide a app ID."
515
+ msgstr ""
516
+
517
+ #: classes/class-fl-builder-service-icontact.php:83
518
+ msgid "Error: You must provide a app password."
519
+ msgstr ""
520
+
521
+ #: classes/class-fl-builder-service-icontact.php:104
522
+ #: classes/class-fl-builder-service-icontact.php:188
523
+ #, php-format
524
+ msgid "Error: Could not connect to iContact. %s"
525
+ msgstr ""
526
+
527
+ #: classes/class-fl-builder-service-icontact.php:125
528
+ msgid "Username"
529
+ msgstr "Benutzername"
530
+
531
+ #: classes/class-fl-builder-service-icontact.php:126
532
+ msgid "Your iContact username."
533
+ msgstr ""
534
+
535
+ #: classes/class-fl-builder-service-icontact.php:136
536
+ #: classes/class-fl-builder-service-infusionsoft.php:118
537
+ msgid "App ID"
538
+ msgstr ""
539
+
540
+ #: classes/class-fl-builder-service-icontact.php:137
541
+ msgid "Your iContact app ID."
542
+ msgstr ""
543
+
544
+ #: classes/class-fl-builder-service-icontact.php:147
545
+ msgid "App Password"
546
+ msgstr ""
547
+
548
+ #: classes/class-fl-builder-service-icontact.php:148
549
+ msgid "Your iContact app password."
550
+ msgstr ""
551
+
552
+ #: classes/class-fl-builder-service-icontact.php:149
553
+ #, php-format
554
+ msgid ""
555
+ "You must <a%s>create an app</a> in iContact to obtain an app ID and password."
556
+ " Please see <a%s>the iContact docs</a> for complete instructions."
557
+ msgstr ""
558
+
559
+ #: classes/class-fl-builder-service-icontact.php:244
560
+ msgid ""
561
+ "There was an error subscribing to iContact. The account is no longer "
562
+ "connected."
563
+ msgstr ""
564
+
565
+ #: classes/class-fl-builder-service-icontact.php:280
566
+ #, php-format
567
+ msgid "There was an error subscribing to iContact. %s"
568
+ msgstr ""
569
+
570
+ #: classes/class-fl-builder-service-infusionsoft.php:49
571
+ #, php-format
572
+ msgid "There was an error connecting to Infusionsoft. %s"
573
+ msgstr ""
574
+
575
+ #: classes/class-fl-builder-service-infusionsoft.php:83
576
+ msgid "Error: You must provide an app ID."
577
+ msgstr ""
578
+
579
+ #: classes/class-fl-builder-service-infusionsoft.php:119
580
+ msgid ""
581
+ "Your App ID can be found in the URL for your account. For example, if the "
582
+ "URL for your account is myaccount.infusionsoft.com, your App ID would be "
583
+ "<strong>myaccount</strong>."
584
+ msgstr ""
585
+
586
+ #: classes/class-fl-builder-service-infusionsoft.php:130
587
+ msgid ""
588
+ "Your API key can be found in your Infusionsoft account under Admin > "
589
+ "Settings > Application > API > Encrypted Key."
590
+ msgstr ""
591
+
592
+ #: classes/class-fl-builder-service-infusionsoft.php:242
593
+ msgid ""
594
+ "There was an error subscribing to Infusionsoft. The account is no longer "
595
+ "connected."
596
+ msgstr ""
597
+
598
+ #: classes/class-fl-builder-service-infusionsoft.php:291
599
+ #, php-format
600
+ msgid "There was an error subscribing to Infusionsoft. %s"
601
+ msgstr ""
602
+
603
+ #: classes/class-fl-builder-service-madmimi.php:83
604
+ msgid "Unable to connect to Mad Mimi. Please check your credentials."
605
+ msgstr ""
606
+
607
+ #: classes/class-fl-builder-service-madmimi.php:111
608
+ msgid "The email address associated with your Mad Mimi account."
609
+ msgstr ""
610
+
611
+ #: classes/class-fl-builder-service-madmimi.php:122
612
+ msgid ""
613
+ "Your API key can be found in your Mad Mimi account under Account > Settings "
614
+ "&amp; Billing > API."
615
+ msgstr ""
616
+
617
+ #: classes/class-fl-builder-service-madmimi.php:156
618
+ msgid "There was a problem retrieving your lists. Please check your API credentials."
619
+ msgstr ""
620
+
621
+ #: classes/class-fl-builder-service-madmimi.php:215
622
+ #: classes/class-fl-builder-service-madmimi.php:242
623
+ msgid ""
624
+ "There was an error subscribing to Mad Mimi. The account is no longer "
625
+ "connected."
626
+ msgstr ""
627
+
628
+ #: classes/class-fl-builder-service-mailchimp.php:101
629
+ msgid ""
630
+ "Your API key can be found in your MailChimp account under Account > Extras > "
631
+ "API Keys."
632
+ msgstr ""
633
+
634
+ #: classes/class-fl-builder-service-mailchimp.php:215
635
+ msgid "No Group"
636
+ msgstr "Keine Gruppe"
637
+
638
+ #: classes/class-fl-builder-service-mailchimp.php:227
639
+ msgctxt "MailChimp list group."
640
+ msgid "Groups"
641
+ msgstr "Gruppen"
642
+
643
+ #: classes/class-fl-builder-service-mailchimp.php:255
644
+ msgid ""
645
+ "There was an error subscribing to MailChimp. The account is no longer "
646
+ "connected."
647
+ msgstr ""
648
+
649
+ #: classes/class-fl-builder-service-mailchimp.php:352
650
+ #, php-format
651
+ msgid "There was an error subscribing to MailChimp. %s"
652
+ msgstr ""
653
+
654
+ #: classes/class-fl-builder-service-mailpoet.php:73
655
+ msgid "There was an error retrieveing your lists."
656
+ msgstr ""
657
+
658
+ #: classes/class-fl-builder-service-mailpoet.php:129
659
+ msgid "There was an error subscribing. MailPoet is not installed."
660
+ msgstr ""
661
+
662
+ #: classes/class-fl-builder-service-sendinblue.php:67
663
+ msgid "Error: You must provide an Access Key."
664
+ msgstr ""
665
+
666
+ #: classes/class-fl-builder-service-sendinblue.php:76
667
+ #: classes/class-fl-builder-service-sendinblue.php:136
668
+ msgid "There was an error connecting to SendinBlue. Please try again."
669
+ msgstr ""
670
+
671
+ #: classes/class-fl-builder-service-sendinblue.php:79
672
+ #: classes/class-fl-builder-service-sendinblue.php:139
673
+ #, php-format
674
+ msgid "Error: Could not connect to SendinBlue. %s"
675
+ msgstr ""
676
+
677
+ #: classes/class-fl-builder-service-sendinblue.php:103
678
+ msgid "Access Key"
679
+ msgstr "Zugangsschlüssel"
680
+
681
+ #: classes/class-fl-builder-service-sendinblue.php:104
682
+ msgid ""
683
+ "Your Access Key can be found in your SendinBlue account under API & "
684
+ "Integration > Manager Your Keys > Version 2.0 > Access Key."
685
+ msgstr ""
686
+
687
+ #: classes/class-fl-builder-service-sendinblue.php:198
688
+ msgid ""
689
+ "There was an error subscribing to SendinBlue. The account is no longer "
690
+ "connected."
691
+ msgstr ""
692
+
693
+ #: classes/class-fl-builder-service-sendinblue.php:220
694
+ msgid "There was an error subscribing to SendinBlue. Please try again."
695
+ msgstr ""
696
+
697
+ #: classes/class-fl-builder-service-sendinblue.php:223
698
+ #, php-format
699
+ msgid "Error: Could not subscribe to SendinBlue. %s"
700
+ msgstr ""
701
+
702
+ #: classes/class-fl-builder-services.php:158
703
+ msgctxt "Third party service such as MailChimp."
704
+ msgid "Error: Missing service type."
705
+ msgstr ""
706
+
707
+ #: classes/class-fl-builder-services.php:161
708
+ msgctxt "Connection data such as an API key."
709
+ msgid "Error: Missing service data."
710
+ msgstr ""
711
+
712
+ #: classes/class-fl-builder-services.php:164
713
+ msgctxt "Account name for a third party service such as MailChimp."
714
+ msgid "Error: Missing account name."
715
+ msgstr ""
716
+
717
+ #: classes/class-fl-builder-services.php:173
718
+ msgctxt "Account name for a third party service such as MailChimp."
719
+ msgid "Error: An account with that name already exists."
720
+ msgstr ""
721
+
722
+ #: classes/class-fl-builder-services.php:253
723
+ msgid "Account Name"
724
+ msgstr ""
725
+
726
+ #: classes/class-fl-builder-services.php:254
727
+ msgid ""
728
+ "Used to identify this connection within the accounts list and can be "
729
+ "anything you like."
730
+ msgstr ""
731
+
732
+ #: classes/class-fl-builder-services.php:267
733
+ msgid "Connect"
734
+ msgstr "Verbinden"
735
+
736
+ #: classes/class-fl-builder-services.php:295
737
+ msgid "Add Account..."
738
+ msgstr "Account hinzufügen..."
739
+
740
+ #: classes/class-fl-builder-services.php:302
741
+ msgid "Account"
742
+ msgstr ""
743
+
744
+ #: classes/class-fl-builder-template-settings.php:33
745
+ msgid "Page Builder Templates"
746
+ msgstr "Page Builder Vorlagen"
747
+
748
+ #: classes/class-fl-builder-templates-override.php:46
749
+ msgid "Error! Please enter a number for the site ID."
750
+ msgstr ""
751
+
752
+ #: classes/class-fl-builder-templates-override.php:50
753
+ msgid "Error! A site with that ID doesn't exist."
754
+ msgstr ""
755
+
756
+ #: classes/class-fl-builder.php:836
757
+ #, php-format
758
+ msgctxt "Field name to add."
759
+ msgid "Add %s"
760
+ msgstr "Hinzufügen %s"
761
+
762
+ #: classes/class-fl-builder.php:926 classes/class-fl-builder.php:928
763
+ msgctxt "Custom post type label."
764
+ msgid "Templates"
765
+ msgstr "Vorlagen"
766
+
767
+ #: classes/class-fl-builder.php:927 classes/class-fl-builder.php:929
768
+ msgctxt "Custom post type label."
769
+ msgid "Template"
770
+ msgstr "Vorlage"
771
+
772
+ #: classes/class-fl-builder.php:930
773
+ msgctxt "Custom post type label."
774
+ msgid "Add New"
775
+ msgstr "Neu hinzufügen"
776
+
777
+ #: classes/class-fl-builder.php:931
778
+ msgctxt "Custom post type label."
779
+ msgid "Add New Template"
780
+ msgstr "Neue Vorlage hinzufügen"
781
+
782
+ #: classes/class-fl-builder.php:932
783
+ msgctxt "Custom post type label."
784
+ msgid "New Template"
785
+ msgstr "Neue Vorlage"
786
+
787
+ #: classes/class-fl-builder.php:933
788
+ msgctxt "Custom post type label."
789
+ msgid "Edit Template"
790
+ msgstr "Vorlage ändern"
791
+
792
+ #: classes/class-fl-builder.php:934
793
+ msgctxt "Custom post type label."
794
+ msgid "View Template"
795
+ msgstr "Vorlage anzeigen"
796
+
797
+ #: classes/class-fl-builder.php:935
798
+ msgctxt "Custom post type label."
799
+ msgid "All Templates"
800
+ msgstr "Alle Vorlagen"
801
+
802
+ #: classes/class-fl-builder.php:936
803
+ msgctxt "Custom post type label."
804
+ msgid "Search Templates"
805
+ msgstr "Vorlagen suchen"
806
+
807
+ #: classes/class-fl-builder.php:937
808
+ msgctxt "Custom post type label."
809
+ msgid "Parent Templates:"
810
+ msgstr "Übergeordnete Vorlagen:"
811
+
812
+ #: classes/class-fl-builder.php:938
813
+ msgctxt "Custom post type label."
814
+ msgid "No templates found."
815
+ msgstr "Keine Vorlagen gefunden."
816
+
817
+ #: classes/class-fl-builder.php:939
818
+ msgctxt "Custom post type label."
819
+ msgid "No templates found in Trash."
820
+ msgstr "Keine Vorlagen im Papierkorb gefunden"
821
+
822
+ #: classes/class-fl-builder.php:953 classes/class-fl-builder.php:963
823
+ msgctxt "Custom taxonomy label."
824
+ msgid "Categories"
825
+ msgstr "Kategorien"
826
+
827
+ #: classes/class-fl-builder.php:954
828
+ msgctxt "Custom taxonomy label."
829
+ msgid "Category"
830
+ msgstr "Kategorie"
831
+
832
+ #: classes/class-fl-builder.php:955
833
+ msgctxt "Custom taxonomy label."
834
+ msgid "Search Categories"
835
+ msgstr "Kategorien durchsuchen"
836
+
837
+ #: classes/class-fl-builder.php:956
838
+ msgctxt "Custom taxonomy label."
839
+ msgid "All Categories"
840
+ msgstr "Alle Kategorien"
841
+
842
+ #: classes/class-fl-builder.php:957
843
+ msgctxt "Custom taxonomy label."
844
+ msgid "Parent Category"
845
+ msgstr "Übergeordnete Kategorie"
846
+
847
+ #: classes/class-fl-builder.php:958
848
+ msgctxt "Custom taxonomy label."
849
+ msgid "Parent Category:"
850
+ msgstr "Übergeordnete Kategorie:"
851
+
852
+ #: classes/class-fl-builder.php:959
853
+ msgctxt "Custom taxonomy label."
854
+ msgid "Edit Category"
855
+ msgstr "Kategorie ändern"
856
+
857
+ #: classes/class-fl-builder.php:960
858
+ msgctxt "Custom taxonomy label."
859
+ msgid "Update Category"
860
+ msgstr "Kategorie updaten"
861
+
862
+ #: classes/class-fl-builder.php:961
863
+ msgctxt "Custom taxonomy label."
864
+ msgid "Add New Category"
865
+ msgstr "Neue Kategorie hinzufügen"
866
+
867
+ #: classes/class-fl-builder.php:962
868
+ msgctxt "Custom taxonomy label."
869
+ msgid "New Category Name"
870
+ msgstr "Neuer Kategorie Name"
871
+
872
+ #: classes/class-fl-builder.php:1419 includes/js-config.php:69
873
+ #, php-format
874
+ msgctxt "%s stands for module name."
875
+ msgid "%s Settings"
876
+ msgstr "%s Einstellungen"
877
+
878
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
879
+ msgid "Text Editor"
880
+ msgstr "Texteditor"
881
+
882
+ #: includes/admin-posts.php:7
883
+ #, php-format
884
+ msgctxt ""
885
+ "The first %s stands for custom branded \"Page Builder\" name. The second %s "
886
+ "stands for the post type name."
887
+ msgid "%s is currently active for this %s."
888
+ msgstr ""
889
+
890
+ #: includes/admin-posts.php:8
891
+ #, php-format
892
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
893
+ msgid "Launch %s"
894
+ msgstr "Starte %s"
895
+
896
+ #: includes/admin-settings-branding.php:7
897
+ msgid "White label the page builder by entering a custom name below."
898
+ msgstr ""
899
+ "White-Labeln Sie den Page Builder indem Sie unten einen eigenen Namen "
900
+ "eingeben."
901
+
902
+ #: includes/admin-settings-branding.php:10
903
+ msgid ""
904
+ "Additionally, you may also add a custom icon by entering the URL of an image "
905
+ "below. Leave the field blank if you do not wish to use an icon."
906
+ msgstr ""
907
+ "Zusätzlich können Sie ein eigenes Icon hinzufügen indem Sie unten die URL "
908
+ "eines Bildes eingeben. Lassen Sie das Feld frei wenn Sie kein Icon verwenden "
909
+ "wollen."
910
+
911
+ #: includes/admin-settings-branding.php:14
912
+ msgid "Save Branding"
913
+ msgstr "Branding speichern"
914
+
915
+ #: includes/admin-settings-cache.php:9
916
+ msgid ""
917
+ "A CSS and JavaScript file is dynamically generated and cached each time you "
918
+ "create a new layout. Sometimes the cache needs to be refreshed when you "
919
+ "migrate your site to another server or update to the latest version. If you "
920
+ "are running into any issues, please try clearing the cache by clicking the "
921
+ "button below."
922
+ msgstr ""
923
+
924
+ #: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14
925
+ #: includes/admin-settings-uninstall.php:7
926
+ #: includes/admin-settings-uninstall.php:10
927
+ #: includes/updater/includes/form.php:31
928
+ msgid "NOTE:"
929
+ msgstr "ANMERKUNG:"
930
+
931
+ #: includes/admin-settings-cache.php:12
932
+ #: includes/admin-settings-uninstall.php:10
933
+ #: includes/updater/includes/form.php:31
934
+ msgid "This applies to all sites on the network."
935
+ msgstr "Dies bezieht sich auf alle Seiten des Netzwerks."
936
+
937
+ #: includes/admin-settings-cache.php:14
938
+ msgid ""
939
+ "This only applies to this site. Please visit the Network Admin Settings to "
940
+ "clear the cache for all sites on the network."
941
+ msgstr ""
942
+
943
+ #: includes/admin-settings-cache.php:19
944
+ msgid "Clear Cache"
945
+ msgstr "Cache löschen"
946
+
947
+ #: includes/admin-settings-editing.php:3
948
+ msgid "Editing Settings"
949
+ msgstr "Einstellungen bearbeiten"
950
+
951
+ #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
952
+ #: includes/admin-settings-modules.php:10
953
+ #: includes/admin-settings-post-types.php:10
954
+ #: includes/admin-settings-templates.php:16
955
+ msgid "Override network settings?"
956
+ msgstr "Netzwerkeinstellungen überschreiben?"
957
+
958
+ #: includes/admin-settings-editing.php:16
959
+ #, php-format
960
+ msgid ""
961
+ "Set the <a%s>capability</a> required for users to access advanced builder "
962
+ "editing such as adding, deleting or moving modules."
963
+ msgstr ""
964
+ "Setze die <a%s> Berechtigung</a> die Benutzer benötigen um fortgeschrittene "
965
+ "Buildervorgänge, wie Module hinzufügen, löschen oder verschieben, "
966
+ "durchzuführen."
967
+
968
+ #: includes/admin-settings-editing.php:22
969
+ msgid "Save Editing Settings"
970
+ msgstr "Speichere Bearbeitungseinstellungen"
971
+
972
+ # @ fl-builder
973
+ #: includes/admin-settings-help-button.php:8
974
+ msgid "Help Button Settings"
975
+ msgstr "Hilfe-Button-Einstellungen"
976
+
977
+ # @ fl-builder
978
+ #: includes/admin-settings-help-button.php:17
979
+ msgid "Enable Help Button"
980
+ msgstr "Hilfe Button aktivieren"
981
+
982
+ # @ fl-builder
983
+ #: includes/admin-settings-help-button.php:23
984
+ msgid "Help Tour"
985
+ msgstr "Hilfe Tour"
986
+
987
+ # @ fl-builder
988
+ #: includes/admin-settings-help-button.php:27
989
+ msgid "Enable Help Tour"
990
+ msgstr "Hilfe Tour aktivieren"
991
+
992
+ # @ fl-builder
993
+ #: includes/admin-settings-help-button.php:31
994
+ msgid "Help Video"
995
+ msgstr "Hilfe-Video"
996
+
997
+ # @ fl-builder
998
+ #: includes/admin-settings-help-button.php:35
999
+ msgid "Enable Help Video"
1000
+ msgstr "Hilfe Video aktivieren"
1001
+
1002
+ # @ fl-builder
1003
+ #: includes/admin-settings-help-button.php:39
1004
+ msgid "Help Video Embed Code"
1005
+ msgstr "Hilfe Video Embed Code"
1006
+
1007
+ # @ fl-builder
1008
+ #: includes/admin-settings-help-button.php:45
1009
+ msgid "Knowledge Base"
1010
+ msgstr "Wissensdatenbank"
1011
+
1012
+ # @ fl-builder
1013
+ #: includes/admin-settings-help-button.php:49
1014
+ msgid "Enable Knowledge Base"
1015
+ msgstr "Wissensdatenbank aktivieren"
1016
+
1017
+ # @ fl-builder
1018
+ #: includes/admin-settings-help-button.php:53
1019
+ msgid "Knowledge Base URL"
1020
+ msgstr "URL der Wissensdatenbank"
1021
+
1022
+ # @ fl-builder
1023
+ #: includes/admin-settings-help-button.php:59
1024
+ msgid "Forums"
1025
+ msgstr "Foren"
1026
+
1027
+ # @ fl-builder
1028
+ #: includes/admin-settings-help-button.php:63
1029
+ msgid "Enable Forums"
1030
+ msgstr "Foren aktivieren"
1031
+
1032
+ # @ fl-builder
1033
+ #: includes/admin-settings-help-button.php:67
1034
+ msgid "Forums URL"
1035
+ msgstr "URL der Foren"
1036
+
1037
+ # @ fl-builder
1038
+ #: includes/admin-settings-help-button.php:77
1039
+ msgid "Save Help Button Settings"
1040
+ msgstr "Hilfe-Button-Einstellungen speichern"
1041
+
1042
+ # @ fl-builder
1043
+ #: includes/admin-settings-icons.php:3
1044
+ msgid "Icon Settings"
1045
+ msgstr "Symboleinstellungen"
1046
+
1047
+ # @ fl-builder
1048
+ #: includes/admin-settings-icons.php:13
1049
+ msgid "Icons for the main site must be managed in the network admin."
1050
+ msgstr "Symbole für die Hauptseite müssen vom Netzwerkadmin verwaltet werden."
1051
+
1052
+ # @ fl-builder
1053
+ #: includes/admin-settings-icons.php:33
1054
+ #, php-format
1055
+ msgid ""
1056
+ "Enable or disable icon sets using the options below or upload a custom icon "
1057
+ "set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
1058
+ msgstr ""
1059
+ "Aktivieren oder deaktivieren Sie die Icon-Sets durch die Optionen unten oder "
1060
+ "laden Sie ein benutzerdefiniertes Iconset von <a%s>Icomoon</a> oder "
1061
+ "<a%s>Fontello</a> hoch."
1062
+
1063
+ # @ fl-builder
1064
+ #: includes/admin-settings-icons.php:48
1065
+ msgctxt "Plugin setup page: Delete icon set."
1066
+ msgid "Delete"
1067
+ msgstr "Löschen"
1068
+
1069
+ # @ fl-builder
1070
+ #: includes/admin-settings-icons.php:59
1071
+ msgid "Upload Icon Set"
1072
+ msgstr "Icon Set hochladen"
1073
+
1074
+ # @ fl-builder
1075
+ #: includes/admin-settings-icons.php:60
1076
+ msgid "Save Icon Settings"
1077
+ msgstr "Icon Einstellungen speichern"
1078
+
1079
+ # @ fl-builder
1080
+ #: includes/admin-settings-js-config.php:4
1081
+ msgid "Select File"
1082
+ msgstr "Datei auswählen"
1083
+
1084
+ #: includes/admin-settings-js-config.php:5
1085
+ msgid ""
1086
+ "Please type \"uninstall\" in the box below to confirm that you really want to "
1087
+ "uninstall the page builder and all of its data."
1088
+ msgstr ""
1089
+ "Bitte tippen Sie \"uninstal\" in das Feld unten um zu bestätigen, dass sie den "
1090
+ "Page Builder und all seine Daten löschen möchten."
1091
+
1092
+ #: includes/admin-settings-modules.php:3
1093
+ msgid "Enabled Modules"
1094
+ msgstr "Aktivierte Module"
1095
+
1096
+ #: includes/admin-settings-modules.php:16
1097
+ msgid "Check or uncheck modules below to enable or disable them."
1098
+ msgstr "Wählen Sie unten Module aus um sie zu aktivieren/deaktivieren."
1099
+
1100
+ #: includes/admin-settings-modules.php:26
1101
+ msgctxt "Plugin setup page: Modules."
1102
+ msgid "All"
1103
+ msgstr "Alle"
1104
+
1105
+ #: includes/admin-settings-modules.php:64
1106
+ msgid "Save Module Settings"
1107
+ msgstr "Moduleinstellungen speichern"
1108
+
1109
+ #: includes/admin-settings-post-types.php:18
1110
+ msgid ""
1111
+ "Enter a comma separated list of the post types you would like the builder to "
1112
+ "work with."
1113
+ msgstr ""
1114
+ "Geben Sie eine kommagetrennte Liste von Posttypen ein, mit denen der Builder "
1115
+ "arbeiten soll."
1116
+
1117
+ #: includes/admin-settings-post-types.php:19
1118
+ #: includes/admin-settings-post-types.php:39
1119
+ msgid "NOTE: Not all custom post types may be supported."
1120
+ msgstr ""
1121
+ "ANMERKUNG: Es werden eventuell nicht alle benutzerdefinierten Posttypen "
1122
+ "unterstützt."
1123
+
1124
+ #: includes/admin-settings-post-types.php:34
1125
+ msgid "Example: page, post, product"
1126
+ msgstr "Beispiel: Seite, Post, Produkt"
1127
+
1128
+ #: includes/admin-settings-post-types.php:38
1129
+ msgid "Select the post types you would like the builder to work with."
1130
+ msgstr "Wählen Sie die Posttypen aus mit denen der Builder arbeiten soll."
1131
+
1132
+ #: includes/admin-settings-post-types.php:70
1133
+ msgid "Save Post Types"
1134
+ msgstr "Posttypen speichern"
1135
+
1136
+ #: includes/admin-settings-templates-override.php:2
1137
+ #: includes/admin-settings-templates-override.php:8
1138
+ #: includes/admin-settings-templates-override.php:13
1139
+ msgid "Override Core Templates"
1140
+ msgstr ""
1141
+
1142
+ #: includes/admin-settings-templates-override.php:3
1143
+ msgid ""
1144
+ "Enter the ID of a site on the network whose templates should override core "
1145
+ "builder templates. Leave this field blank if you do not wish to override "
1146
+ "core templates."
1147
+ msgstr ""
1148
+
1149
+ #: includes/admin-settings-templates-override.php:9
1150
+ msgid "Use this setting to override core builder templates with your templates."
1151
+ msgstr ""
1152
+
1153
+ #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1154
+ msgid "Template Settings"
1155
+ msgstr "Vorlageneinstellungen"
1156
+
1157
+ #: includes/admin-settings-templates.php:22
1158
+ msgid "Enable Templates"
1159
+ msgstr "Templates aktivieren"
1160
+
1161
+ #: includes/admin-settings-templates.php:23
1162
+ msgid "Use this setting to enable or disable templates in the builder interface."
1163
+ msgstr ""
1164
+
1165
+ #: includes/admin-settings-templates.php:25
1166
+ msgid "Enable All Templates"
1167
+ msgstr "Alle Vorlagen aktivieren"
1168
+
1169
+ #: includes/admin-settings-templates.php:26
1170
+ msgid "Enable Core Templates Only"
1171
+ msgstr "Nur Kernvorlagen aktivieren"
1172
+
1173
+ #: includes/admin-settings-templates.php:27
1174
+ msgid "Enable User Templates Only"
1175
+ msgstr "Nur Benutzervorlagen aktivieren"
1176
+
1177
+ #: includes/admin-settings-templates.php:28
1178
+ msgid "Disable All Templates"
1179
+ msgstr "Alle Vorlagen deaktivieren"
1180
+
1181
+ #: includes/admin-settings-templates.php:31
1182
+ #: includes/admin-settings-templates.php:36
1183
+ msgid "Enable Templates Admin"
1184
+ msgstr "Templates Admin aktivieren"
1185
+
1186
+ #: includes/admin-settings-templates.php:32
1187
+ msgid "Use this setting to edit builder templates in the WordPress admin."
1188
+ msgstr ""
1189
+
1190
+ #: includes/admin-settings-templates.php:50
1191
+ msgid "Save Template Settings"
1192
+ msgstr "Vorlageneinstellungen speichern"
1193
+
1194
+ #: includes/admin-settings-uninstall.php:5
1195
+ msgid ""
1196
+ "Clicking the button below will uninstall the page builder plugin and delete "
1197
+ "all of the data associated with it. You can uninstall or deactivate the page "
1198
+ "builder from the plugins page instead if you do not wish to delete the data."
1199
+ msgstr ""
1200
+ "Der Button unten deinstalliert den Page Builder und löscht alle mit ihm "
1201
+ "verbundenen Daten. Sie können das Plugin stattdessen von der Pluginsite "
1202
+ "deinstallieren oder deaktivieren, wenn Sie die Daten nicht löschen wollen."
1203
+
1204
+ #: includes/admin-settings-uninstall.php:7
1205
+ msgid ""
1206
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
1207
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
1208
+ "you want to reinstall it later. If you do, the builder will rebuild all of "
1209
+ "its data using those meta values."
1210
+ msgstr ""
1211
+ "Der Builder löscht nicht das Post-Meta <code>_fl_builder_data</code>, "
1212
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> falls "
1213
+ "sie es später neu installieren möchten. Wenn Sie das tun, wird der Builder "
1214
+ "all seine Daten mit diesen Metawerden wiederherstellen."
1215
+
1216
+ #: includes/admin-settings-upgrade.php:5
1217
+ msgid ""
1218
+ "You are currently running the lite version of the Beaver Builder plugin. "
1219
+ "Upgrade today for access to premium features such as advanced modules, "
1220
+ "templates, support and more!"
1221
+ msgstr ""
1222
+ "Sie benutzen derzeit die Liteversion des BB. Upgraden Sie um Zugang zu "
1223
+ "Premium-Features zu erhalten!"
1224
+
1225
+ #: includes/admin-settings-upgrade.php:7
1226
+ msgid "Upgrade Now"
1227
+ msgstr "Jetzt upgraden"
1228
+
1229
+ #: includes/admin-settings-upgrade.php:9
1230
+ msgid "Learn More"
1231
+ msgstr "Mehr erfahren"
1232
+
1233
+ #: includes/admin-templates-edit.php:3
1234
+ msgid "Edit Template"
1235
+ msgstr "Template ändern"
1236
+
1237
+ #: includes/admin-templates-edit.php:8
1238
+ msgctxt "Template edit form field label. Template name."
1239
+ msgid "Name"
1240
+ msgstr ""
1241
+
1242
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:306
1243
+ #: modules/post-carousel/post-carousel.php:255
1244
+ #: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:459
1245
+ msgid "Image"
1246
+ msgstr "Bild"
1247
+
1248
+ #: includes/admin-templates-edit.php:16 includes/column-settings.php:139
1249
+ #: includes/row-settings.php:179 includes/template-settings.php:23
1250
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
1251
+ #: modules/content-slider/content-slider.php:473
1252
+ #: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:621
1253
+ #: modules/post-slider/post-slider.php:640
1254
+ msgid "Position"
1255
+ msgstr "Position"
1256
+
1257
+ #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1258
+ msgctxt "Template edit form field label. Is template premium one?"
1259
+ msgid "Premium"
1260
+ msgstr ""
1261
+
1262
+ #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
1263
+ #: includes/global-settings.php:18 includes/global-settings.php:110
1264
+ #: includes/global-settings.php:124 includes/row-settings.php:331
1265
+ #: includes/template-settings.php:31 modules/accordion/accordion.php:90
1266
+ #: modules/callout/callout.php:421
1267
+ #: modules/content-slider/content-slider.php:210
1268
+ #: modules/content-slider/content-slider.php:224
1269
+ #: modules/content-slider/content-slider.php:258
1270
+ #: modules/content-slider/content-slider.php:267
1271
+ #: modules/content-slider/content-slider.php:538
1272
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1273
+ #: modules/post-carousel/post-carousel.php:139
1274
+ #: modules/post-carousel/post-carousel.php:155
1275
+ #: modules/post-carousel/post-carousel.php:182
1276
+ #: modules/post-carousel/post-carousel.php:191
1277
+ #: modules/post-carousel/post-carousel.php:232
1278
+ #: modules/post-carousel/post-carousel.php:283
1279
+ #: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:356
1280
+ #: modules/post-slider/post-slider.php:381
1281
+ #: modules/post-slider/post-slider.php:408
1282
+ #: modules/post-slider/post-slider.php:417
1283
+ #: modules/post-slider/post-slider.php:734 modules/slideshow/slideshow.php:323
1284
+ #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
1285
+ #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
1286
+ #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
1287
+ #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
1288
+ #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
1289
+ #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
1290
+ #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
1291
+ #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
1292
+ #: modules/slideshow/slideshow.php:650
1293
+ #: modules/social-buttons/social-buttons.php:111
1294
+ #: modules/social-buttons/social-buttons.php:120
1295
+ #: modules/social-buttons/social-buttons.php:129
1296
+ #: modules/testimonials/testimonials.php:85
1297
+ #: modules/testimonials/testimonials.php:124
1298
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1299
+ #: modules/video/video.php:123
1300
+ msgid "No"
1301
+ msgstr "Nein"
1302
+
1303
+ #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
1304
+ #: includes/global-settings.php:19 includes/global-settings.php:111
1305
+ #: includes/global-settings.php:125 includes/row-settings.php:332
1306
+ #: includes/template-settings.php:32 modules/accordion/accordion.php:89
1307
+ #: modules/callout/callout.php:422
1308
+ #: modules/content-slider/content-slider.php:211
1309
+ #: modules/content-slider/content-slider.php:225
1310
+ #: modules/content-slider/content-slider.php:259
1311
+ #: modules/content-slider/content-slider.php:268
1312
+ #: modules/content-slider/content-slider.php:539
1313
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1314
+ #: modules/post-carousel/post-carousel.php:140
1315
+ #: modules/post-carousel/post-carousel.php:156
1316
+ #: modules/post-carousel/post-carousel.php:183
1317
+ #: modules/post-carousel/post-carousel.php:192
1318
+ #: modules/post-carousel/post-carousel.php:233
1319
+ #: modules/post-carousel/post-carousel.php:282
1320
+ #: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:357
1321
+ #: modules/post-slider/post-slider.php:382
1322
+ #: modules/post-slider/post-slider.php:409
1323
+ #: modules/post-slider/post-slider.php:418
1324
+ #: modules/post-slider/post-slider.php:735 modules/slideshow/slideshow.php:324
1325
+ #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
1326
+ #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
1327
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1328
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
1329
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
1330
+ #: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
1331
+ #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
1332
+ #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
1333
+ #: modules/slideshow/slideshow.php:651
1334
+ #: modules/social-buttons/social-buttons.php:110
1335
+ #: modules/social-buttons/social-buttons.php:119
1336
+ #: modules/social-buttons/social-buttons.php:128
1337
+ #: modules/testimonials/testimonials.php:86
1338
+ #: modules/testimonials/testimonials.php:125
1339
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1340
+ #: modules/video/video.php:124
1341
+ msgid "Yes"
1342
+ msgstr "Ja"
1343
+
1344
+ #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
1345
+ msgid "Category"
1346
+ msgstr "Kategorie"
1347
+
1348
+ #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1349
+ msgctxt "Templates category label."
1350
+ msgid "Landing Pages"
1351
+ msgstr "Landingpages"
1352
+
1353
+ #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1354
+ msgctxt "Templates category label."
1355
+ msgid "Company Info"
1356
+ msgstr "Firmeninfo"
1357
+
1358
+ #: includes/admin-templates-edit.php:40
1359
+ msgid "Update Template"
1360
+ msgstr ""
1361
+
1362
+ #: includes/admin-templates.php:3
1363
+ msgid "Page Builder Template"
1364
+ msgstr "Page Builder Vorlagen"
1365
+
1366
+ #: includes/admin-templates.php:10
1367
+ msgctxt "Templates list column label."
1368
+ msgid "Name"
1369
+ msgstr ""
1370
+
1371
+ #: includes/admin-templates.php:11
1372
+ msgctxt "Templates list column label."
1373
+ msgid "Category"
1374
+ msgstr "Kategorie"
1375
+
1376
+ #: includes/admin-templates.php:12
1377
+ msgctxt "Templates list column label. Is template premium one?"
1378
+ msgid "Premium"
1379
+ msgstr ""
1380
+
1381
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
1382
+ #: includes/template-selector.php:70
1383
+ msgid "Edit"
1384
+ msgstr "Bearbeiten"
1385
+
1386
+ #: includes/admin-templates.php:27 includes/template-selector.php:71
1387
+ msgid "Delete"
1388
+ msgstr "Löschen"
1389
+
1390
+ #: includes/admin-templates.php:40 includes/js-config.php:30
1391
+ msgid "Do you really want to delete this template?"
1392
+ msgstr "Wollen Sie diese Vorlage wirklich löschen?"
1393
+
1394
+ #: includes/column-settings.php:4 includes/js-config.php:23
1395
+ msgid "Column Settings"
1396
+ msgstr "Spalteneinstellungen"
1397
+
1398
+ #: includes/column-settings.php:7 includes/module-settings.php:87
1399
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
1400
+ #: modules/button/button.php:117 modules/button/button.php:155
1401
+ #: modules/button/button.php:159 modules/callout/callout.php:242
1402
+ #: modules/callout/callout.php:554
1403
+ #: modules/content-slider/content-slider.php:426
1404
+ #: modules/content-slider/content-slider.php:667 modules/cta/cta.php:102
1405
+ #: modules/cta/cta.php:309 modules/heading/heading.php:69
1406
+ #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1407
+ #: modules/post-carousel/post-carousel.php:389
1408
+ #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:574
1409
+ #: modules/pricing-table/pricing-table.php:43
1410
+ #: modules/pricing-table/pricing-table.php:155
1411
+ #: modules/separator/separator.php:72
1412
+ #: modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
1413
+ msgid "Style"
1414
+ msgstr "Stil"
1415
+
1416
+ #: includes/column-settings.php:14
1417
+ msgid "Column Width"
1418
+ msgstr "Spaltenbreite"
1419
+
1420
+ #: includes/column-settings.php:26 modules/button/button.php:66
1421
+ #: modules/callout/callout.php:226 modules/callout/callout.php:479
1422
+ #: modules/callout/callout.php:495
1423
+ #: modules/content-slider/content-slider.php:383
1424
+ #: modules/content-slider/content-slider.php:617 modules/cta/cta.php:85
1425
+ #: modules/cta/cta.php:222 modules/post-slider/post-slider.php:617
1426
+ msgid "Text"
1427
+ msgstr "Text"
1428
+
1429
+ #: includes/column-settings.php:30 includes/column-settings.php:93
1430
+ #: includes/column-settings.php:248 includes/row-settings.php:133
1431
+ #: includes/row-settings.php:427 modules/callout/callout.php:392
1432
+ #: modules/content-slider/content-slider.php:338
1433
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1434
+ #: modules/separator/separator.php:34
1435
+ msgid "Color"
1436
+ msgstr "Farbe"
1437
+
1438
+ #: includes/column-settings.php:38 includes/row-settings.php:60
1439
+ #: modules/post-carousel/post-carousel.php:401
1440
+ #: modules/post-slider/post-slider.php:694
1441
+ msgid "Link Color"
1442
+ msgstr "Linkfarbe"
1443
+
1444
+ #: includes/column-settings.php:46 includes/row-settings.php:68
1445
+ #: modules/post-carousel/post-carousel.php:406
1446
+ #: modules/post-slider/post-slider.php:710
1447
+ msgid "Link Hover Color"
1448
+ msgstr "Link Hover Farbe"
1449
+
1450
+ #: includes/column-settings.php:54 includes/row-settings.php:76
1451
+ msgid "Heading Color"
1452
+ msgstr "Überschrift Farbe"
1453
+
1454
+ #: includes/column-settings.php:63 includes/row-settings.php:85
1455
+ #: modules/post-slider/post-slider.php:462
1456
+ msgid "Background"
1457
+ msgstr "Hintergrund"
1458
+
1459
+ #: includes/column-settings.php:67 includes/column-settings.php:215
1460
+ #: includes/row-settings.php:89 includes/row-settings.php:394
1461
+ #: modules/callout/callout.php:475
1462
+ #: modules/content-slider/content-slider.php:332
1463
+ #: modules/content-slider/content-slider.php:379
1464
+ #: modules/content-slider/content-slider.php:597
1465
+ #: modules/content-slider/content-slider.php:739
1466
+ #: modules/slideshow/slideshow.php:347
1467
+ msgid "Type"
1468
+ msgstr "Typ"
1469
+
1470
+ #: includes/column-settings.php:70 includes/row-settings.php:92
1471
+ #: modules/content-slider/content-slider.php:339
1472
+ msgctxt "Background type."
1473
+ msgid "None"
1474
+ msgstr "Keiner"
1475
+
1476
+ #: includes/column-settings.php:71 includes/row-settings.php:93
1477
+ msgctxt "Background type."
1478
+ msgid "Color"
1479
+ msgstr "Farbe"
1480
+
1481
+ #: includes/column-settings.php:72 includes/row-settings.php:94
1482
+ msgctxt "Background type."
1483
+ msgid "Photo"
1484
+ msgstr "Foto"
1485
+
1486
+ #: includes/column-settings.php:89 includes/row-settings.php:129
1487
+ #: modules/button/button.php:124 modules/callout/callout.php:405
1488
+ #: modules/callout/callout.php:519
1489
+ #: modules/content-slider/content-slider.php:364
1490
+ #: modules/content-slider/content-slider.php:640 modules/cta/cta.php:198
1491
+ #: modules/cta/cta.php:274 modules/icon-group/icon-group.php:64
1492
+ #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
1493
+ msgid "Background Color"
1494
+ msgstr "Hintergrundfarbe"
1495
+
1496
+ #: includes/column-settings.php:101 includes/column-settings.php:256
1497
+ #: includes/row-settings.php:141 includes/row-settings.php:435
1498
+ #: modules/separator/separator.php:44
1499
+ msgid "Opacity"
1500
+ msgstr "Durchsichtigkeit"
1501
+
1502
+ #: includes/column-settings.php:113 includes/row-settings.php:153
1503
+ #: modules/content-slider/content-slider.php:360
1504
+ msgid "Background Photo"
1505
+ msgstr "Hintergrundfoto"
1506
+
1507
+ #: includes/column-settings.php:117 includes/row-settings.php:157
1508
+ #: includes/row-settings.php:345 modules/callout/callout.php:317
1509
+ #: modules/callout/callout.php:333 modules/callout/callout.php:337
1510
+ #: modules/content-slider/content-slider.php:336
1511
+ #: modules/content-slider/content-slider.php:405
1512
+ #: modules/content-slider/content-slider.php:755 modules/photo/photo.php:25
1513
+ #: modules/photo/photo.php:408
1514
+ msgid "Photo"
1515
+ msgstr "Foto"
1516
+
1517
+ #: includes/column-settings.php:124 includes/row-settings.php:164
1518
+ msgid "Repeat"
1519
+ msgstr "Wiederholen"
1520
+
1521
+ #: includes/column-settings.php:127 includes/row-settings.php:167
1522
+ msgctxt "Background repeat."
1523
+ msgid "None"
1524
+ msgstr "Nicht"
1525
+
1526
+ #: includes/column-settings.php:128 includes/row-settings.php:168
1527
+ msgctxt "Background repeat."
1528
+ msgid "Tile"
1529
+ msgstr "Tile"
1530
+
1531
+ #: includes/column-settings.php:129 includes/row-settings.php:169
1532
+ msgctxt "Background repeat."
1533
+ msgid "Horizontal"
1534
+ msgstr "Horizontal"
1535
+
1536
+ #: includes/column-settings.php:130 includes/row-settings.php:170
1537
+ msgctxt "Background repeat."
1538
+ msgid "Vertical"
1539
+ msgstr "Vertikal"
1540
+
1541
+ #: includes/column-settings.php:132 includes/row-settings.php:172
1542
+ msgid ""
1543
+ "Repeat applies to how the image should display in the background. Choosing "
1544
+ "none will display the image as uploaded. Tile will repeat the image as many "
1545
+ "times as needed to fill the background horizontally and vertically. You can "
1546
+ "also specify the image to only repeat horizontally or vertically."
1547
+ msgstr ""
1548
+
1549
+ #: includes/column-settings.php:142 includes/row-settings.php:182
1550
+ msgid "Left Top"
1551
+ msgstr "Links oben"
1552
+
1553
+ #: includes/column-settings.php:143 includes/row-settings.php:183
1554
+ msgid "Left Center"
1555
+ msgstr "Links mitte"
1556
+
1557
+ #: includes/column-settings.php:144 includes/row-settings.php:184
1558
+ msgid "Left Bottom"
1559
+ msgstr "Links unten"
1560
+
1561
+ #: includes/column-settings.php:145 includes/row-settings.php:185
1562
+ msgid "Right Top"
1563
+ msgstr "Rechts oben"
1564
+
1565
+ #: includes/column-settings.php:146 includes/row-settings.php:186
1566
+ msgid "Right Center"
1567
+ msgstr "Rechts mitte"
1568
+
1569
+ #: includes/column-settings.php:147 includes/row-settings.php:187
1570
+ msgid "Right Bottom"
1571
+ msgstr "Rechts unten"
1572
+
1573
+ #: includes/column-settings.php:148 includes/row-settings.php:188
1574
+ msgid "Center Top"
1575
+ msgstr "Oben mitte"
1576
+
1577
+ #: includes/column-settings.php:149 includes/row-settings.php:189
1578
+ #: modules/button/button.php:227 modules/callout/callout.php:252
1579
+ #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1580
+ #: modules/heading/heading.php:90 modules/heading/heading.php:162
1581
+ #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1582
+ #: modules/photo/photo.php:434 modules/social-buttons/social-buttons.php:100
1583
+ msgid "Center"
1584
+ msgstr "Mitte"
1585
+
1586
+ #: includes/column-settings.php:150 includes/row-settings.php:190
1587
+ msgid "Center Bottom"
1588
+ msgstr "Unten mitte"
1589
+
1590
+ #: includes/column-settings.php:152 includes/row-settings.php:192
1591
+ msgid "Position will tell the image where it should sit in the background."
1592
+ msgstr ""
1593
+
1594
+ #: includes/column-settings.php:159 includes/row-settings.php:199
1595
+ msgid "Attachment"
1596
+ msgstr "Attachment"
1597
+
1598
+ #: includes/column-settings.php:162 includes/row-settings.php:202
1599
+ #: modules/post-grid/post-grid.php:78
1600
+ msgid "Scroll"
1601
+ msgstr "Scroll"
1602
+
1603
+ #: includes/column-settings.php:163 includes/global-settings.php:69
1604
+ #: includes/global-settings.php:83 includes/row-settings.php:19
1605
+ #: includes/row-settings.php:37 includes/row-settings.php:203
1606
+ msgid "Fixed"
1607
+ msgstr "Fest"
1608
+
1609
+ #: includes/column-settings.php:165 includes/row-settings.php:205
1610
+ msgid ""
1611
+ "Attachment will specify how the image reacts when scrolling a page. When "
1612
+ "scrolling is selected, the image will scroll with page scrolling. This is "
1613
+ "the default setting. Fixed will allow the image to scroll within the "
1614
+ "background if fill is selected in the scale setting."
1615
+ msgstr ""
1616
+
1617
+ #: includes/column-settings.php:172 includes/row-settings.php:212
1618
+ msgid "Scale"
1619
+ msgstr "Skalierung"
1620
+
1621
+ #: includes/column-settings.php:175 includes/row-settings.php:215
1622
+ msgctxt "Background scale."
1623
+ msgid "None"
1624
+ msgstr "Keine"
1625
+
1626
+ #: includes/column-settings.php:176 includes/row-settings.php:216
1627
+ msgid "Fit"
1628
+ msgstr "Passend"
1629
+
1630
+ #: includes/column-settings.php:177 includes/row-settings.php:217
1631
+ msgid "Fill"
1632
+ msgstr "Gefüllt"
1633
+
1634
+ #: includes/column-settings.php:179 includes/row-settings.php:219
1635
+ msgid ""
1636
+ "Scale applies to how the image should display in the background. You can "
1637
+ "select either fill or fit to the background."
1638
+ msgstr ""
1639
+
1640
+ # @ fl-builder
1641
+ #: includes/column-settings.php:187 includes/row-settings.php:366
1642
+ msgid "Background Overlay"
1643
+ msgstr "Hintergrund Overlay"
1644
+
1645
+ # @ fl-builder
1646
+ #: includes/column-settings.php:191 includes/row-settings.php:370
1647
+ msgid "Overlay Color"
1648
+ msgstr "Overlay Maskenfarbe"
1649
+
1650
+ # @ fl-builder
1651
+ #: includes/column-settings.php:199 includes/row-settings.php:378
1652
+ msgid "Overlay Opacity"
1653
+ msgstr "Overlay Maskendeckkraft"
1654
+
1655
+ #: includes/column-settings.php:211 includes/row-settings.php:390
1656
+ msgid "Border"
1657
+ msgstr "Rahmen"
1658
+
1659
+ #: includes/column-settings.php:217 includes/row-settings.php:396
1660
+ msgid ""
1661
+ "The type of border to use. Double borders must have a width of at least 3px "
1662
+ "to render properly."
1663
+ msgstr ""
1664
+ "Der zu verwendende Linientyp. Doppelrahmen müssen eine Breite von mindestens "
1665
+ "3px haben um korrekt gerendert zu werden."
1666
+
1667
+ #: includes/column-settings.php:219 includes/row-settings.php:398
1668
+ msgctxt "Border type."
1669
+ msgid "None"
1670
+ msgstr "Keiner"
1671
+
1672
+ #: includes/column-settings.php:220 includes/row-settings.php:399
1673
+ #: modules/separator/separator.php:75
1674
+ msgctxt "Border type."
1675
+ msgid "Solid"
1676
+ msgstr "Durchgehend"
1677
+
1678
+ #: includes/column-settings.php:221 includes/row-settings.php:400
1679
+ #: modules/separator/separator.php:76
1680
+ msgctxt "Border type."
1681
+ msgid "Dashed"
1682
+ msgstr "Gestrichelt"
1683
+
1684
+ #: includes/column-settings.php:222 includes/row-settings.php:401
1685
+ #: modules/separator/separator.php:77
1686
+ msgctxt "Border type."
1687
+ msgid "Dotted"
1688
+ msgstr "Gepunktet"
1689
+
1690
+ #: includes/column-settings.php:223 includes/row-settings.php:402
1691
+ #: modules/separator/separator.php:78
1692
+ msgctxt "Border type."
1693
+ msgid "Double"
1694
+ msgstr "Doppelt"
1695
+
1696
+ #: includes/column-settings.php:267 includes/row-settings.php:446
1697
+ msgid "Top Width"
1698
+ msgstr "Breite oben"
1699
+
1700
+ #: includes/column-settings.php:279 includes/row-settings.php:458
1701
+ msgid "Bottom Width"
1702
+ msgstr "Breite unten"
1703
+
1704
+ #: includes/column-settings.php:291 includes/row-settings.php:470
1705
+ msgid "Left Width"
1706
+ msgstr "Breite links"
1707
+
1708
+ #: includes/column-settings.php:303 includes/row-settings.php:482
1709
+ msgid "Right Width"
1710
+ msgstr "Breite rechts"
1711
+
1712
+ #: includes/column-settings.php:318 includes/module-settings.php:6
1713
+ #: includes/row-settings.php:497 modules/content-slider/content-slider.php:274
1714
+ msgid "Advanced"
1715
+ msgstr "Erweitert"
1716
+
1717
+ #: includes/column-settings.php:321 includes/global-settings.php:41
1718
+ #: includes/global-settings.php:94 includes/module-settings.php:9
1719
+ #: includes/row-settings.php:500
1720
+ msgid "Margins"
1721
+ msgstr "Abstand aussen"
1722
+
1723
+ #: includes/column-settings.php:325 includes/column-settings.php:378
1724
+ #: includes/module-settings.php:13 includes/row-settings.php:504
1725
+ #: includes/row-settings.php:557 modules/slideshow/slideshow.php:483
1726
+ msgid "Top"
1727
+ msgstr "Oben"
1728
+
1729
+ #: includes/column-settings.php:337 includes/column-settings.php:390
1730
+ #: includes/module-settings.php:25 includes/row-settings.php:516
1731
+ #: includes/row-settings.php:569 modules/post-slider/post-slider.php:627
1732
+ #: modules/slideshow/slideshow.php:482
1733
+ msgid "Bottom"
1734
+ msgstr "Unten"
1735
+
1736
+ #: includes/column-settings.php:349 includes/column-settings.php:402
1737
+ #: includes/module-settings.php:37 includes/row-settings.php:528
1738
+ #: includes/row-settings.php:581 modules/button/button.php:228
1739
+ #: modules/callout/callout.php:253
1740
+ #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1741
+ #: modules/heading/heading.php:89 modules/heading/heading.php:161
1742
+ #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1743
+ #: modules/photo/photo.php:433 modules/post-slider/post-slider.php:625
1744
+ #: modules/post-slider/post-slider.php:644
1745
+ #: modules/social-buttons/social-buttons.php:101
1746
+ msgid "Left"
1747
+ msgstr "Links"
1748
+
1749
+ #: includes/column-settings.php:361 includes/column-settings.php:414
1750
+ #: includes/module-settings.php:49 includes/row-settings.php:540
1751
+ #: includes/row-settings.php:593 modules/button/button.php:229
1752
+ #: modules/callout/callout.php:254
1753
+ #: modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
1754
+ #: modules/heading/heading.php:91 modules/heading/heading.php:163
1755
+ #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
1756
+ #: modules/photo/photo.php:435 modules/post-slider/post-slider.php:626
1757
+ #: modules/post-slider/post-slider.php:645
1758
+ #: modules/social-buttons/social-buttons.php:102
1759
+ msgid "Right"
1760
+ msgstr "Rechts"
1761
+
1762
+ #: includes/column-settings.php:374 includes/global-settings.php:49
1763
+ #: includes/row-settings.php:553 modules/button/button.php:242
1764
+ #: modules/callout/callout.php:609
1765
+ #: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
1766
+ #: modules/subscribe-form/subscribe-form.php:273
1767
+ msgid "Padding"
1768
+ msgstr "Abstand innen"
1769
+
1770
+ #: includes/column-settings.php:427 includes/global-settings.php:103
1771
+ #: includes/module-settings.php:62 includes/row-settings.php:606
1772
+ msgid "Responsive Layout"
1773
+ msgstr "Responsives Layout"
1774
+
1775
+ #: includes/column-settings.php:431 includes/module-settings.php:66
1776
+ #: includes/row-settings.php:610 modules/slideshow/slideshow.php:298
1777
+ msgid "Display"
1778
+ msgstr "Anzeigen"
1779
+
1780
+ #: includes/column-settings.php:433 includes/module-settings.php:68
1781
+ #: includes/row-settings.php:612
1782
+ msgid "Always"
1783
+ msgstr "Immer"
1784
+
1785
+ #: includes/column-settings.php:434 includes/module-settings.php:69
1786
+ #: includes/row-settings.php:613
1787
+ msgid "Large Devices Only"
1788
+ msgstr "Nur große Geräte"
1789
+
1790
+ #: includes/column-settings.php:435 includes/module-settings.php:70
1791
+ #: includes/row-settings.php:614
1792
+ msgid "Large &amp; Medium Devices Only"
1793
+ msgstr "Nur große &amp; mittelgroße Geräte"
1794
+
1795
+ #: includes/column-settings.php:436 includes/module-settings.php:71
1796
+ #: includes/row-settings.php:615
1797
+ msgid "Medium Devices Only"
1798
+ msgstr "Nur mittelgroße Geräte"
1799
+
1800
+ #: includes/column-settings.php:437 includes/module-settings.php:72
1801
+ #: includes/row-settings.php:616
1802
+ msgid "Medium &amp; Small Devices Only"
1803
+ msgstr "Nur mittelgroße &amp; kleine Geräte"
1804
+
1805
+ #: includes/column-settings.php:438 includes/module-settings.php:73
1806
+ #: includes/row-settings.php:617
1807
+ msgid "Small Devices Only"
1808
+ msgstr "Nur kleine Geräte"
1809
+
1810
+ #: includes/column-settings.php:440
1811
+ msgid "Choose whether to show or hide this column at different device sizes."
1812
+ msgstr ""
1813
+ "Wählen Sie ob diese Spalte für verschiedene Gerätegrößen angezeigt oder "
1814
+ "versteckt werden soll."
1815
+
1816
+ #: includes/column-settings.php:447
1817
+ msgid "Medium Device Width"
1818
+ msgstr "Breite für mittelgroße Geräte"
1819
+
1820
+ #: includes/column-settings.php:448
1821
+ msgid "The width of this column on medium devices such as tablets."
1822
+ msgstr "Die Breite dieser Spalte auf mittelgroßen Geräten wie Tablets."
1823
+
1824
+ #: includes/column-settings.php:450 includes/column-settings.php:478
1825
+ #: modules/callout/callout.php:284
1826
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
1827
+ #: modules/heading/heading.php:117 modules/heading/heading.php:144
1828
+ #: modules/heading/heading.php:174 modules/post-slider/post-slider.php:597
1829
+ msgid "Default"
1830
+ msgstr "Default"
1831
+
1832
+ #: includes/column-settings.php:451 includes/column-settings.php:479
1833
+ #: modules/button/button.php:202 modules/callout/callout.php:285
1834
+ #: modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
1835
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145
1836
+ #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:598
1837
+ #: modules/social-buttons/social-buttons.php:74
1838
+ msgid "Custom"
1839
+ msgstr "Benutzerdefiniert"
1840
+
1841
+ #: includes/column-settings.php:464
1842
+ msgid "Custom Medium Device Width"
1843
+ msgstr "Benutzerdefinierte Breite für mittelgroße Geräte"
1844
+
1845
+ #: includes/column-settings.php:475
1846
+ msgid "Small Device Width"
1847
+ msgstr "Breite für kleine Geräte"
1848
+
1849
+ #: includes/column-settings.php:476
1850
+ msgid "The width of this column on small devices such as phones."
1851
+ msgstr "Breite dieser Spalte auf kleinen Geräten wie Handys."
1852
+
1853
+ #: includes/column-settings.php:492
1854
+ msgid "Custom Small Device Width"
1855
+ msgstr "Benutzerdefinerte Breite für kleine Geräte"
1856
+
1857
+ # @ fl-builder
1858
+ #: includes/column-settings.php:504 includes/module-settings.php:115
1859
+ #: includes/row-settings.php:627
1860
+ msgid "CSS Selectors"
1861
+ msgstr "CSS-Selektoren"
1862
+
1863
+ #: includes/column-settings.php:508 includes/loop-settings.php:28
1864
+ #: includes/module-settings.php:119 includes/row-settings.php:631
1865
+ msgid "ID"
1866
+ msgstr "ID"
1867
+
1868
+ # @ fl-builder
1869
+ #: includes/column-settings.php:509
1870
+ msgid ""
1871
+ "A unique ID that will be applied to this column's HTML. Must start with a "
1872
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
1873
+ msgstr ""
1874
+ "Eine eindeutige ID, die auf das HTML dieser Spalte angewendet wird. Sie muss "
1875
+ "mit einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
1876
+ "oder Zahlen enthalten. Keine Leerzeichen."
1877
+
1878
+ #: includes/column-settings.php:516
1879
+ msgid "CSS Class"
1880
+ msgstr "CSS Klasse"
1881
+
1882
+ # @ fl-builder
1883
+ #: includes/column-settings.php:517
1884
+ msgid ""
1885
+ "A class that will be applied to this column's HTML. Must start with a letter "
1886
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
1887
+ "classes with spaces."
1888
+ msgstr ""
1889
+ "Eine Klasse, die auf das HTML dieser Spalte angewendet wird. Sie muss mit "
1890
+ "einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
1891
+ "oder Zahlen enthalten. Keine Leerzeichen."
1892
+
1893
+ #: includes/field-form.php:28
1894
+ #, php-format
1895
+ msgctxt "%s stands for form field label."
1896
+ msgid "Edit %s"
1897
+ msgstr "Bearbeiten %s"
1898
+
1899
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
1900
+ msgid "Select Icon"
1901
+ msgstr "Icon auswählen"
1902
+
1903
+ #: includes/field-icon.php:5 includes/field-photo.php:13
1904
+ msgid "Replace"
1905
+ msgstr "Ersetzen"
1906
+
1907
+ #: includes/field-icon.php:7 includes/js-config.php:61
1908
+ msgid "Remove"
1909
+ msgstr "Löschen"
1910
+
1911
+ #: includes/field-link.php:3
1912
+ msgid "Select"
1913
+ msgstr "Auswählen"
1914
+
1915
+ #: includes/field-link.php:5
1916
+ msgid "Enter a post title to search."
1917
+ msgstr "Geben Sie den Posttitel ein, der gesucht werden soll."
1918
+
1919
+ #: includes/field-link.php:6 includes/field-suggest.php:7
1920
+ msgid "Start typing..."
1921
+ msgstr "Beginnen Sie zu tippen..."
1922
+
1923
+ #: includes/field-link.php:7 includes/icon-selector.php:28
1924
+ #: includes/js-config.php:19 includes/settings.php:63
1925
+ #: includes/template-selector.php:92
1926
+ msgid "Cancel"
1927
+ msgstr "Abbrechen"
1928
+
1929
+ #: includes/field-multiple-photos.php:20
1930
+ #, php-format
1931
+ msgid "1 Photo Selected"
1932
+ msgid_plural "%d Photos Selected"
1933
+ msgstr[0] "1 Foto ausgewählt"
1934
+ msgstr[1] "%d Fotos ausgewählt"
1935
+
1936
+ #: includes/field-multiple-photos.php:22
1937
+ msgid "Create Gallery"
1938
+ msgstr "Galerie erstellen"
1939
+
1940
+ #: includes/field-multiple-photos.php:23
1941
+ msgid "Edit Gallery"
1942
+ msgstr "Galerie bearbeiten"
1943
+
1944
+ #: includes/field-multiple-photos.php:24
1945
+ msgid "Add Photos"
1946
+ msgstr "Fotos hinzufügen"
1947
+
1948
+ #: includes/field-photo.php:3 includes/js-config.php:66
1949
+ msgid "Select Photo"
1950
+ msgstr "Foto auswählen"
1951
+
1952
+ #: includes/field-video.php:3 includes/js-config.php:68
1953
+ msgid "Select Video"
1954
+ msgstr "Video auswählen"
1955
+
1956
+ #: includes/field-video.php:17
1957
+ msgid "Replace Video"
1958
+ msgstr "Video ersetzen"
1959
+
1960
+ #: includes/global-settings.php:7 includes/template-settings.php:7
1961
+ #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
1962
+ #: modules/button/button.php:59 modules/callout/callout.php:210
1963
+ #: modules/contact-form/contact-form.php:58
1964
+ #: modules/content-slider/content-slider.php:191
1965
+ #: modules/content-slider/content-slider.php:315 modules/cta/cta.php:68
1966
+ #: modules/gallery/gallery.php:220 modules/heading/heading.php:26
1967
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
1968
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:384
1969
+ #: modules/pricing-table/pricing-table.php:87
1970
+ #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
1971
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
1972
+ #: modules/social-buttons/social-buttons.php:64
1973
+ #: modules/subscribe-form/subscribe-form.php:87 modules/tabs/tabs.php:77
1974
+ #: modules/testimonials/testimonials.php:30
1975
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
1976
+ #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
1977
+ msgid "General"
1978
+ msgstr "Allgemein"
1979
+
1980
+ #: includes/global-settings.php:8
1981
+ msgid "Note: These settings apply to all posts and pages."
1982
+ msgstr "Anmerkung: Diese Einstellungen gelten für alle Beiträge und Seiten."
1983
+
1984
+ #: includes/global-settings.php:11
1985
+ msgid "Default Page Heading"
1986
+ msgstr "Default Page Überschrift"
1987
+
1988
+ #: includes/global-settings.php:15
1989
+ msgctxt "General settings form field label. Intended meaning: \"Show page heading?\""
1990
+ msgid "Show"
1991
+ msgstr "Anzeigen"
1992
+
1993
+ #: includes/global-settings.php:26
1994
+ msgid ""
1995
+ "Choosing no will hide the default theme heading for the \"Page\" post type. "
1996
+ "You will also be required to enter some basic CSS for this to work if you "
1997
+ "choose no."
1998
+ msgstr ""
1999
+ "Wenn Sie Nein wählen, wird das Default Theme Überschrift für den \"Page\" "
2000
+ "Posttyp nicht angezigt. Sie müssen grundlegendes CSS eingeben, damit die "
2001
+ "Einstellung Nein funktioniert."
2002
+
2003
+ #: includes/global-settings.php:30
2004
+ msgid "CSS Selector"
2005
+ msgstr "CSS-Selektor"
2006
+
2007
+ #: includes/global-settings.php:32
2008
+ msgid "Enter a CSS selector for the default page heading to hide it."
2009
+ msgstr ""
2010
+ "Geben Sie einen CSS-Selektor für das Default Page Überschrift ein, um es "
2011
+ "nicht anzuzeigen."
2012
+
2013
+ #: includes/global-settings.php:37
2014
+ msgid "Rows"
2015
+ msgstr "Zeilen"
2016
+
2017
+ #: includes/global-settings.php:57
2018
+ msgid "Max Width"
2019
+ msgstr "Maximale Breite"
2020
+
2021
+ #: includes/global-settings.php:62
2022
+ msgid ""
2023
+ "All rows will default to this width. You can override this and make a row "
2024
+ "full width in the settings for each row."
2025
+ msgstr ""
2026
+ "Alle Zeilen werden defaultmäßig diese Breite haben. Sie können sie "
2027
+ "überschreiben und für jede Reihe einzeln eine Zeilengesamtbreite angeben."
2028
+
2029
+ # @ fl-builder
2030
+ #: includes/global-settings.php:66
2031
+ msgid "Default Row Width"
2032
+ msgstr "Standard Zeilenbreite"
2033
+
2034
+ #: includes/global-settings.php:70 includes/global-settings.php:84
2035
+ #: includes/row-settings.php:20 includes/row-settings.php:38
2036
+ #: modules/button/button.php:201 modules/callout/callout.php:596
2037
+ msgid "Full Width"
2038
+ msgstr "Vollgröße"
2039
+
2040
+ # @ fl-builder
2041
+ #: includes/global-settings.php:80
2042
+ msgid "Default Row Content Width"
2043
+ msgstr "Standard Zeilenbreite des Contents"
2044
+
2045
+ #: includes/global-settings.php:107
2046
+ msgctxt ""
2047
+ "General settings form field label. Intended meaning: \"Responsive layout "
2048
+ "enabled?\""
2049
+ msgid "Enabled"
2050
+ msgstr "Aktiviert"
2051
+
2052
+ #: includes/global-settings.php:121
2053
+ msgctxt ""
2054
+ "General settings form field label. Intended meaning: \"Enable auto spacing "
2055
+ "for responsive layouts?\""
2056
+ msgid "Enable Auto Spacing"
2057
+ msgstr ""
2058
+
2059
+ #: includes/global-settings.php:127
2060
+ msgid ""
2061
+ "When auto spacing is enabled, the builder will automatically adjust the "
2062
+ "margins and padding in your layout once the small device breakpoint is "
2063
+ "reached. Most users will want to leave this enabled."
2064
+ msgstr ""
2065
+
2066
+ #: includes/global-settings.php:131
2067
+ msgid "Medium Device Breakpoint"
2068
+ msgstr "Breakpoint für mittelgroße Geräte"
2069
+
2070
+ #: includes/global-settings.php:136
2071
+ msgid ""
2072
+ "The browser width at which the layout will adjust for medium devices such as "
2073
+ "tablets."
2074
+ msgstr ""
2075
+ "Die Browserbreite bei der sich das Layout für mittelgroße Geräte wie Tablets "
2076
+ "anpasst."
2077
+
2078
+ #: includes/global-settings.php:140
2079
+ msgid "Small Device Breakpoint"
2080
+ msgstr "Breakpoint für kleine Geräte"
2081
+
2082
+ #: includes/global-settings.php:145
2083
+ msgid ""
2084
+ "The browser width at which the layout will adjust for small devices such as "
2085
+ "phones."
2086
+ msgstr ""
2087
+ "Die Browserbreite bei der sich das Layout für kleine Geräte wie Handys "
2088
+ "anpasst."
2089
+
2090
+ # @ fl-builder
2091
+ #: includes/icon-selector.php:5
2092
+ msgctxt "Select option for showing all icon libraries."
2093
+ msgid "All Libraries"
2094
+ msgstr "Alle Bibliotheken"
2095
+
2096
+ #: includes/js-config.php:18
2097
+ msgid "What would you like to do?"
2098
+ msgstr "Was wollen Sie tun?"
2099
+
2100
+ #: includes/js-config.php:20
2101
+ msgid "Change Template"
2102
+ msgstr "Vorlage ändern"
2103
+
2104
+ #: includes/js-config.php:21
2105
+ msgid ""
2106
+ "Warning! Changing the template will replace your existing layout. Do you "
2107
+ "really want to do this?"
2108
+ msgstr ""
2109
+ "Achtung! Wenn Sie die Vorlage ändern wird ihr existierendes Layout ersetzt. "
2110
+ "Wollen Sie das wirklich tun?"
2111
+
2112
+ #: includes/js-config.php:22
2113
+ msgid "Column"
2114
+ msgstr "Spalte"
2115
+
2116
+ #: includes/js-config.php:24
2117
+ msgid "Please select either a background layout or content layout before submitting."
2118
+ msgstr ""
2119
+ "Bitte wählen Sie entweder ein Hintergrundlayout oder ein Inhaltslayout bevor "
2120
+ "Sie abschicken."
2121
+
2122
+ #: includes/js-config.php:25
2123
+ msgid "Remove Account"
2124
+ msgstr "Account entfernen"
2125
+
2126
+ #: includes/js-config.php:26
2127
+ msgid ""
2128
+ "Are you sure you want to remove this account? Other modules that are "
2129
+ "connected to it will be affected."
2130
+ msgstr ""
2131
+ "Sind Sie sicher, dass sie diesen Account entfernen möchten? Verbundene "
2132
+ "Module sind hiervon ebenfalls betroffen."
2133
+
2134
+ #: includes/js-config.php:27
2135
+ msgid "Do you really want to delete this item?"
2136
+ msgstr "Wollen Sie dieses Element wirklich löschen?"
2137
+
2138
+ #: includes/js-config.php:28
2139
+ msgid ""
2140
+ "Do you really want to delete this module? All content data will be "
2141
+ "permanently deleted."
2142
+ msgstr ""
2143
+ "Wollen Sie dieses Modul wirklich löschen? Alle Inhaltsdaten werden permanent "
2144
+ "gelöscht."
2145
+
2146
+ #: includes/js-config.php:29
2147
+ msgid ""
2148
+ "Do you really want to delete this row? All content data will be permanently "
2149
+ "deleted."
2150
+ msgstr ""
2151
+ "Wollen Sie diese Zeile wirklich löschen? Alle Inhaltsdaten werden permanent "
2152
+ "gelöscht."
2153
+
2154
+ #: includes/js-config.php:31
2155
+ msgid "Discard Changes"
2156
+ msgstr "Änderungen verwerfen"
2157
+
2158
+ #: includes/js-config.php:32
2159
+ msgid ""
2160
+ "Do you really want to discard these changes? All of your changes that are "
2161
+ "not published will be lost."
2162
+ msgstr ""
2163
+ "Möchten Sie die Änderungen wirklich verwerfen? Alle Änderungen die nicht "
2164
+ "veröffentlicht wurden gehen somit verloren."
2165
+
2166
+ #: includes/js-config.php:33 includes/ui.php:20 includes/ui.php:55
2167
+ msgid "Done"
2168
+ msgstr "Fertig"
2169
+
2170
+ #: includes/js-config.php:34
2171
+ msgid "Save Draft"
2172
+ msgstr "Entwurf speichern"
2173
+
2174
+ #: includes/js-config.php:35
2175
+ msgctxt "Duplicate page/post action label."
2176
+ msgid "Duplicate"
2177
+ msgstr "Duplizieren"
2178
+
2179
+ #: includes/js-config.php:36
2180
+ msgid "Duplicate This Page"
2181
+ msgstr "Diese Seite duplizieren"
2182
+
2183
+ #: includes/js-config.php:37
2184
+ msgid "Duplicate This Template"
2185
+ msgstr "Diese Vorlage duplizieren"
2186
+
2187
+ #: includes/js-config.php:38
2188
+ msgid "Edit Global Settings"
2189
+ msgstr "Globale Einstellungen bearbeiten"
2190
+
2191
+ #: includes/js-config.php:39
2192
+ msgid "Drop a row layout or module to get started!"
2193
+ msgstr "Wählen Sie ein Zeilenlayout oder Modul um loszulegen!"
2194
+
2195
+ # @ fl-builder
2196
+ #: includes/js-config.php:40
2197
+ msgid ""
2198
+ "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
2199
+ "not functioning as expected the cause is most likely this error. Please help "
2200
+ "us by disabling all plugins and testing Beaver Builder while reactivating "
2201
+ "each to determine if the issue is related to a third party plugin."
2202
+ msgstr ""
2203
+ "Beaver Builder erhielt den folgenden JavaScript-Fehler. Wenn Beaver Builde "
2204
+ "nicht wie erwartet funktioniert, ist die Ursache sehr wahrscheinlich dieser "
2205
+ "Fehle. Bitte helfen Sie uns, indem Sie alle Plugins deaktivieren und nach "
2206
+ "und nach wieder aktivieren um zu testen ob es an einem anderen Plugin liegt."
2207
+
2208
+ #: includes/js-config.php:41
2209
+ msgid "Full Size"
2210
+ msgstr "Vollgröße"
2211
+
2212
+ # @ fl-builder
2213
+ #: includes/js-config.php:42
2214
+ msgid "Get Help"
2215
+ msgstr "Hilfe holen"
2216
+
2217
+ # @ fl-builder
2218
+ #: includes/js-config.php:43
2219
+ msgid "Getting Started Video"
2220
+ msgstr "Erste Schritte-Video"
2221
+
2222
+ # @ fl-builder
2223
+ #: includes/js-config.php:44
2224
+ msgid "\"{message}\" on line {line} of {file}."
2225
+ msgstr "\"{message}\" in der Zeile {line} in {file}."
2226
+
2227
+ #: includes/js-config.php:45
2228
+ msgid "Insert"
2229
+ msgstr "Einfügen"
2230
+
2231
+ #: includes/js-config.php:46
2232
+ msgid "Large"
2233
+ msgstr "Groß"
2234
+
2235
+ #: includes/js-config.php:47
2236
+ msgid "Manage Templates"
2237
+ msgstr "Vorlagen verwalten"
2238
+
2239
+ #: includes/js-config.php:48
2240
+ msgid "Medium"
2241
+ msgstr "Mittel"
2242
+
2243
+ #: includes/js-config.php:49
2244
+ msgid "Module"
2245
+ msgstr "Modul"
2246
+
2247
+ #: includes/js-config.php:50
2248
+ msgid "Move"
2249
+ msgstr "Verschieben"
2250
+
2251
+ #: includes/js-config.php:51
2252
+ msgid "New Column"
2253
+ msgstr "Neue Spalte"
2254
+
2255
+ #: includes/js-config.php:52
2256
+ msgid "New Row"
2257
+ msgstr "Neue Zeile"
2258
+
2259
+ #: includes/js-config.php:53
2260
+ msgid "No results found."
2261
+ msgstr "Keine Ergebnisse gefunden."
2262
+
2263
+ # @ fl-builder
2264
+ #: includes/js-config.php:54
2265
+ msgid "No Thanks"
2266
+ msgstr "Nein, danke"
2267
+
2268
+ #: includes/js-config.php:55
2269
+ msgid "OK"
2270
+ msgstr "OK"
2271
+
2272
+ #: includes/js-config.php:56 modules/photo/photo.php:470
2273
+ msgid "Photo Page"
2274
+ msgstr "Fotoseite"
2275
+
2276
+ #: includes/js-config.php:57
2277
+ msgid "Photo Selected"
2278
+ msgstr "Ausgewähltes Foto"
2279
+
2280
+ #: includes/js-config.php:58
2281
+ msgid "Photos Selected"
2282
+ msgstr "Ausgewählte Fotos"
2283
+
2284
+ #: includes/js-config.php:59 modules/subscribe-form/includes/frontend.php:15
2285
+ msgid "Please Wait..."
2286
+ msgstr "Bitte warten"
2287
+
2288
+ #: includes/js-config.php:60
2289
+ msgid "Publish Changes"
2290
+ msgstr "Änderungen publizieren"
2291
+
2292
+ #: includes/js-config.php:62
2293
+ msgid "Row"
2294
+ msgstr "Zeile"
2295
+
2296
+ #: includes/js-config.php:63 includes/row-settings.php:6
2297
+ msgid "Row Settings"
2298
+ msgstr "Zeileneinstellungen"
2299
+
2300
+ #: includes/js-config.php:64
2301
+ msgid "Save Core Template"
2302
+ msgstr "Kernvorlage speichern"
2303
+
2304
+ #: includes/js-config.php:65 includes/user-template-settings.php:4
2305
+ msgid "Save Template"
2306
+ msgstr "Vorlage speichern"
2307
+
2308
+ #: includes/js-config.php:67
2309
+ msgid "Select Photos"
2310
+ msgstr "Fotos auswählen"
2311
+
2312
+ #: includes/js-config.php:70
2313
+ msgid "Please select an account before saving."
2314
+ msgstr "Bitte wählen Sie einen Account, bevor Sie speichern."
2315
+
2316
+ #: includes/js-config.php:71
2317
+ msgid "Please connect an account before saving."
2318
+ msgstr "Bitte verbinden SIe einen Account, bevor Sie speichern."
2319
+
2320
+ #: includes/js-config.php:72
2321
+ msgid "Please select a list before saving."
2322
+ msgstr "Bitte wählen Sie eine Liste aus, bevor Sie speichern."
2323
+
2324
+ # @ fl-builder
2325
+ #: includes/js-config.php:73
2326
+ msgid "Take a Tour"
2327
+ msgstr "Machen Sie einen Rundgang"
2328
+
2329
+ #: includes/js-config.php:74
2330
+ msgid "Append New Layout"
2331
+ msgstr "Neues Layout hinzufügen"
2332
+
2333
+ #: includes/js-config.php:75
2334
+ msgid "Replace Existing Layout"
2335
+ msgstr "Existierendes Layout ersetzen"
2336
+
2337
+ #: includes/js-config.php:76
2338
+ msgid "Template Saved!"
2339
+ msgstr "Vorlage gespeichert!"
2340
+
2341
+ #: includes/js-config.php:77 modules/post-slider/post-slider.php:463
2342
+ msgid "Thumbnail"
2343
+ msgstr "Thumbnail"
2344
+
2345
+ # @ fl-builder
2346
+ #: includes/js-config.php:78
2347
+ msgid "Next"
2348
+ msgstr "Weiter"
2349
+
2350
+ # @ fl-builder
2351
+ #: includes/js-config.php:79
2352
+ msgid "Get Started"
2353
+ msgstr "Erste Schritte"
2354
+
2355
+ # @ fl-builder
2356
+ #: includes/js-config.php:80
2357
+ msgid "Choose a Template"
2358
+ msgstr "Wählen Sie eine Vorlage"
2359
+
2360
+ # @ fl-builder
2361
+ #: includes/js-config.php:81
2362
+ msgid ""
2363
+ "Get started by choosing a layout template to customize, or build a page from "
2364
+ "scratch by selecting the blank layout template."
2365
+ msgstr ""
2366
+ "Beginnen Sie damit eine Layoutvorlage anzupassen oder erstellen Sie eine "
2367
+ "Seite von Grund auf neu, indem Sie die leere Layout-Vorlage auswählen."
2368
+
2369
+ # @ fl-builder
2370
+ #: includes/js-config.php:82
2371
+ msgid "Add Rows"
2372
+ msgstr "Zeilen hinzufügen"
2373
+
2374
+ #: includes/js-config.php:83
2375
+ msgid ""
2376
+ "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
2377
+ "and dropping row layouts onto the page."
2378
+ msgstr ""
2379
+
2380
+ #: includes/js-config.php:84 includes/ui.php:22 includes/ui.php:60
2381
+ msgid "Add Content"
2382
+ msgstr "Inhalt hinzufügen"
2383
+
2384
+ # @ fl-builder
2385
+ #: includes/js-config.php:85
2386
+ msgid ""
2387
+ "Add new content by dragging and dropping modules or widgets into your row "
2388
+ "layouts or to create a new row layout."
2389
+ msgstr ""
2390
+ "Fürgen Sie neue Inhalte per Drag & Drop ein, indem Sie Module oder Widgets "
2391
+ "in die Zeilenlayouts hinzufügen oder ein neues Zeilen Layout erstellen. "
2392
+
2393
+ # @ fl-builder
2394
+ #: includes/js-config.php:86
2395
+ msgid "Edit Content"
2396
+ msgstr "Inhalt bearbeiten"
2397
+
2398
+ # @ fl-builder
2399
+ #: includes/js-config.php:87
2400
+ msgid "Move your mouse over rows, columns or modules to edit and interact with them."
2401
+ msgstr ""
2402
+ "Bewegen Sie Ihre Maus über die Zeilen, Spalten oder Module um sie zu "
2403
+ "bearbeiten und mit ihnen zu interagieren."
2404
+
2405
+ # @ fl-builder
2406
+ #: includes/js-config.php:88
2407
+ msgid ""
2408
+ "Use the action buttons to perform actions such as moving, editing, "
2409
+ "duplicating or deleting rows, columns and modules."
2410
+ msgstr ""
2411
+ "Verwenden Sie die Aktions-Buttons, z. B. verschieben, bearbeiten, kopieren "
2412
+ "oder löschen von Zeilen, Spalten und Module."
2413
+
2414
+ # @ fl-builder
2415
+ #: includes/js-config.php:89
2416
+ msgid "Add More Content"
2417
+ msgstr "Weitere Inhalte hinzufügen"
2418
+
2419
+ # @ fl-builder
2420
+ #: includes/js-config.php:90
2421
+ msgid ""
2422
+ "Use the Add Content button to open the content panel and add new row layouts,"
2423
+ " modules or widgets."
2424
+ msgstr ""
2425
+ "Verwenden Sie die Schaltfläche \"Inhalt hinzufügen\", um das Inhalts-"
2426
+ "Bedienfeld zu öffnen und neue Zeile-Layouts, Module oder Widgets "
2427
+ "hinzuzufügen."
2428
+
2429
+ # @ fl-builder
2430
+ #: includes/js-config.php:91
2431
+ msgid "Change Templates"
2432
+ msgstr "Vorlage ändern"
2433
+
2434
+ # @ fl-builder
2435
+ #: includes/js-config.php:92
2436
+ msgid ""
2437
+ "Use the Templates button to pick a new template or append one to your layout."
2438
+ " Appending will insert a new template at the end of your existing page "
2439
+ "content."
2440
+ msgstr ""
2441
+ "Verwenden Sie die Schaltfläche \"Vorlagen\", wählen Sie eine neue Vorlage oder "
2442
+ "fügen Sie sie Ihrem bestehenden Layout hinzu. Die angehängte Vorlage wird am "
2443
+ "Ende des Inhalts Ihrer bestehenden Seite eingefügt."
2444
+
2445
+ # @ fl-builder
2446
+ #: includes/js-config.php:93
2447
+ msgid "Helpful Tools"
2448
+ msgstr "Hilfreiche Werkzeuge"
2449
+
2450
+ # @ fl-builder
2451
+ #: includes/js-config.php:94
2452
+ msgid ""
2453
+ "The Tools button lets you duplicate a page, save a template or edit the "
2454
+ "global settings."
2455
+ msgstr ""
2456
+ "Mit dem Tools Button können Sie eine Seite duplizieren, ein Template "
2457
+ "speichern oder die globalen Einstellungen editieren."
2458
+
2459
+ # @ fl-builder
2460
+ #: includes/js-config.php:95
2461
+ msgid "Publish Your Changes"
2462
+ msgstr "Änderungen veröffentlichen"
2463
+
2464
+ # @ fl-builder
2465
+ #: includes/js-config.php:96
2466
+ msgid ""
2467
+ "Once you're finished, click the Done button to publish your changes, save a "
2468
+ "draft or revert back to the last published state."
2469
+ msgstr ""
2470
+ "Sobald Sie fertig sind, klicken Sie auf den \"fertig\" Button um Ihre "
2471
+ "Änderungen zu veröffentlichen, den Entwurf zu speichern oder den "
2472
+ "ursprünglichen Zustand wiederherzustellen. "
2473
+
2474
+ # @ fl-builder
2475
+ #: includes/js-config.php:97
2476
+ msgid "Let's Get Building!"
2477
+ msgstr "Also los geht's!"
2478
+
2479
+ # @ fl-builder
2480
+ #: includes/js-config.php:98
2481
+ msgid ""
2482
+ "Now that you know the basics, you're ready to start building! If at any time "
2483
+ "you need help, click the help icon in the upper right corner to access the "
2484
+ "help menu. Happy building!"
2485
+ msgstr ""
2486
+ "Nun, da Sie die Grundlagen kennen, können Sie loslegen! Wenn Sie zu "
2487
+ "irgendeinem Zeitpunkt Hilfe benötigen, klicken Sie auf das Hilfe-Symbol in "
2488
+ "der oberen rechten Ecke, um das Hilfemenü aufzurufen. Viel Spaß beim "
2489
+ "Gestalter Ihrer Website!"
2490
+
2491
+ #: includes/js-config.php:99
2492
+ msgid ""
2493
+ "The settings you are currently editing will not be saved if you navigate "
2494
+ "away from this page."
2495
+ msgstr ""
2496
+ "Die Einstellungen die Sie gerade bearbeiten werden nicht gespeichert, wenn "
2497
+ "Sie diese Seite verlassen."
2498
+
2499
+ # @ fl-builder
2500
+ #: includes/js-config.php:100
2501
+ msgid "View the Knowledge Base"
2502
+ msgstr "Wissensdatenbank anzeigen"
2503
+
2504
+ # @ fl-builder
2505
+ #: includes/js-config.php:101
2506
+ msgid "Visit the Forums"
2507
+ msgstr "Forum besuchen"
2508
+
2509
+ # @ fl-builder
2510
+ #: includes/js-config.php:102
2511
+ msgid "Watch the Video"
2512
+ msgstr "Video anschauen"
2513
+
2514
+ # @ fl-builder
2515
+ #: includes/js-config.php:103
2516
+ msgid ""
2517
+ "Welcome! It looks like this might be your first time using the builder. "
2518
+ "Would you like to take a tour?"
2519
+ msgstr ""
2520
+ "Willkommen! Es sieht so aus, als würden Sie den Builder zum ersten Mal "
2521
+ "verwenden. Wollen Sie eine kleine Tour starten?"
2522
+
2523
+ # @ fl-builder
2524
+ #: includes/js-config.php:104
2525
+ msgid "Yes Please!"
2526
+ msgstr "Ja, danke."
2527
+
2528
+ #: includes/loop-settings.php:20
2529
+ msgid "Post Type"
2530
+ msgstr "Posttyp"
2531
+
2532
+ #: includes/loop-settings.php:26
2533
+ msgid "Order By"
2534
+ msgstr "Ordnen nach"
2535
+
2536
+ #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
2537
+ #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:503
2538
+ #: modules/woocommerce/woocommerce.php:189
2539
+ msgid "Date"
2540
+ msgstr "Datum"
2541
+
2542
+ #: includes/loop-settings.php:30
2543
+ msgid "Date Last Modified"
2544
+ msgstr "Letztes Änderungsdatum"
2545
+
2546
+ #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90
2547
+ #: modules/pricing-table/pricing-table.php:94
2548
+ msgid "Title"
2549
+ msgstr "Titel"
2550
+
2551
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
2552
+ #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:494
2553
+ msgid "Author"
2554
+ msgstr "Autor"
2555
+
2556
+ #: includes/loop-settings.php:33
2557
+ msgid "Comment Count"
2558
+ msgstr "Kommentarzähler"
2559
+
2560
+ #: includes/loop-settings.php:34
2561
+ msgid "Menu Order"
2562
+ msgstr "Menüreihenfolge"
2563
+
2564
+ #: includes/loop-settings.php:35
2565
+ msgid "Random"
2566
+ msgstr "Zufällig"
2567
+
2568
+ #: includes/loop-settings.php:42
2569
+ msgid "Order"
2570
+ msgstr "Geordnet"
2571
+
2572
+ #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
2573
+ msgid "Descending"
2574
+ msgstr "Absteigend"
2575
+
2576
+ #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
2577
+ msgid "Ascending"
2578
+ msgstr "Aufsteigend"
2579
+
2580
+ #: includes/loop-settings.php:52
2581
+ msgctxt "How many posts to skip."
2582
+ msgid "Offset"
2583
+ msgstr ""
2584
+
2585
+ #: includes/loop-settings.php:55
2586
+ msgid "Skip this many posts that match the specified criteria."
2587
+ msgstr ""
2588
+
2589
+ #: includes/loop-settings.php:62
2590
+ msgid "Filter"
2591
+ msgstr "Filter"
2592
+
2593
+ #: includes/loop-settings.php:73
2594
+ #, php-format
2595
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
2596
+ msgstr ""
2597
+ "Geben Sie eine kommagetrennte Liste von %s ein. Nur diese %s werden "
2598
+ "angezeigt."
2599
+
2600
+ #: includes/loop-settings.php:86
2601
+ #, php-format
2602
+ msgid "Enter a comma separated list of %s. Only posts with these %s will be shown."
2603
+ msgstr ""
2604
+ "Geben Sie eine kommagetrennte Liste von %s ein. Nur Beiträge mit diesen %s "
2605
+ "werden angezeigt."
2606
+
2607
+ #: includes/loop-settings.php:100
2608
+ msgid "Authors"
2609
+ msgstr "Autoren"
2610
+
2611
+ #: includes/loop-settings.php:101
2612
+ msgid ""
2613
+ "Enter a comma separated list of authors usernames. Only posts with these "
2614
+ "authors will be shown."
2615
+ msgstr ""
2616
+ "Geben Sie eine kommagetrennte Liste von %s ein. Nur Beiträge mit diesen "
2617
+ "Autoren werden angezeigt."
2618
+
2619
+ #: includes/module-settings.php:75
2620
+ msgid "Choose whether to show or hide this module at different device sizes."
2621
+ msgstr ""
2622
+ "Wählen Sie ob sie das Modul für verschiedene Gerätegrößen anzeigen möchten "
2623
+ "oder nicht."
2624
+
2625
+ #: includes/module-settings.php:83
2626
+ msgid "Animation"
2627
+ msgstr "Animation"
2628
+
2629
+ #: includes/module-settings.php:89
2630
+ msgctxt "Animation style."
2631
+ msgid "None"
2632
+ msgstr "Keine"
2633
+
2634
+ #: includes/module-settings.php:90
2635
+ msgctxt "Animation style."
2636
+ msgid "Fade In"
2637
+ msgstr "Fade In"
2638
+
2639
+ #: includes/module-settings.php:91
2640
+ msgctxt "Animation style."
2641
+ msgid "Slide Left"
2642
+ msgstr "Slide Left"
2643
+
2644
+ #: includes/module-settings.php:92
2645
+ msgctxt "Animation style."
2646
+ msgid "Slide Right"
2647
+ msgstr "Slide Right"
2648
+
2649
+ #: includes/module-settings.php:93
2650
+ msgctxt "Animation style."
2651
+ msgid "Slide Up"
2652
+ msgstr "Slide Up"
2653
+
2654
+ #: includes/module-settings.php:94
2655
+ msgctxt "Animation style."
2656
+ msgid "Slide Down"
2657
+ msgstr "Slide Down"
2658
+
2659
+ #: includes/module-settings.php:102
2660
+ #: modules/content-slider/content-slider.php:230
2661
+ #: modules/post-carousel/post-carousel.php:145
2662
+ #: modules/post-slider/post-slider.php:362
2663
+ #: modules/testimonials/testimonials.php:91
2664
+ msgid "Delay"
2665
+ msgstr "Verzögerung"
2666
+
2667
+ #: includes/module-settings.php:106 includes/row-settings.php:290
2668
+ #: includes/row-settings.php:321 modules/content-slider/content-slider.php:234
2669
+ #: modules/content-slider/content-slider.php:251
2670
+ #: modules/post-carousel/post-carousel.php:148
2671
+ #: modules/post-carousel/post-carousel.php:164
2672
+ #: modules/post-slider/post-slider.php:365
2673
+ #: modules/post-slider/post-slider.php:390 modules/slideshow/slideshow.php:393
2674
+ #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
2675
+ #: modules/testimonials/testimonials.php:95
2676
+ #: modules/testimonials/testimonials.php:112
2677
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2678
+ msgid "seconds"
2679
+ msgstr "Sekunden"
2680
+
2681
+ #: includes/module-settings.php:107
2682
+ msgid "The amount of time in seconds before this animation starts."
2683
+ msgstr "Die Zahl an Sekunden bevor diese Animation beginnt."
2684
+
2685
+ # @ fl-builder
2686
+ #: includes/module-settings.php:120
2687
+ msgid ""
2688
+ "A unique ID that will be applied to this module's HTML. Must start with a "
2689
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2690
+ msgstr ""
2691
+ "Eine eindeutige ID, die auf das HTML dieses Moduls angewendet wird. Sie muss "
2692
+ "mit einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
2693
+ "oder Zahlen enthalten. Keine Leerzeichen."
2694
+
2695
+ # @ fl-builder
2696
+ #: includes/module-settings.php:127 includes/row-settings.php:639
2697
+ msgid "Class"
2698
+ msgstr "Klasse"
2699
+
2700
+ # @ fl-builder
2701
+ #: includes/module-settings.php:128
2702
+ msgid ""
2703
+ "A class that will be applied to this module's HTML. Must start with a letter "
2704
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2705
+ "classes with spaces."
2706
+ msgstr ""
2707
+ "Eine Klasse, die in HTML dieses Moduls angewendet wird. Sie muss mit einem "
2708
+ "Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben oder "
2709
+ "Zahlen enthalten. Keine Leerzeichen."
2710
+
2711
+ #: includes/row-settings.php:16 modules/button/button.php:197
2712
+ #: modules/content-slider/content-slider.php:484
2713
+ msgid "Width"
2714
+ msgstr "Breite"
2715
+
2716
+ #: includes/row-settings.php:27
2717
+ msgid ""
2718
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
2719
+ "no wider than the Row Max Width set in the Global Settings."
2720
+ msgstr ""
2721
+ "Zeilen mit voller Breite sind so breit wie die ganze Seite. Zeilen mit "
2722
+ "fester Breite sind nicht breiter als die in den globalen Einstellungen "
2723
+ "eingestellte maximale Zeilenbreite."
2724
+
2725
+ #: includes/row-settings.php:34
2726
+ msgid "Content Width"
2727
+ msgstr "Inhaltsbreite"
2728
+
2729
+ #: includes/row-settings.php:40
2730
+ msgid ""
2731
+ "Full width content spans the width of the page from edge to edge. Fixed "
2732
+ "content is no wider than the Row Max Width set in the Global Settings."
2733
+ msgstr ""
2734
+ "Inhalt mit voller Breite ist so breit wie die ganze Seite. Inhalt mit fester "
2735
+ "Breite sind nicht breiter als die in den globalen Einstellungen eingestellte "
2736
+ "maximale Inhaltsbreite."
2737
+
2738
+ #: includes/row-settings.php:48 modules/button/button.php:120
2739
+ #: modules/cta/cta.php:188 modules/heading/heading.php:72
2740
+ #: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2741
+ #: modules/post-carousel/post-carousel.php:392
2742
+ #: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:675
2743
+ msgid "Colors"
2744
+ msgstr "Farben"
2745
+
2746
+ #: includes/row-settings.php:52 modules/button/button.php:139
2747
+ #: modules/callout/callout.php:534
2748
+ #: modules/content-slider/content-slider.php:529
2749
+ #: modules/content-slider/content-slider.php:651
2750
+ #: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192
2751
+ #: modules/cta/cta.php:289 modules/heading/heading.php:77
2752
+ #: modules/post-carousel/post-carousel.php:396
2753
+ #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:679
2754
+ #: modules/subscribe-form/subscribe-form.php:207
2755
+ msgid "Text Color"
2756
+ msgstr "Textfarbe"
2757
+
2758
+ #: includes/row-settings.php:95
2759
+ msgctxt "Background type."
2760
+ msgid "Video"
2761
+ msgstr "Video"
2762
+
2763
+ #: includes/row-settings.php:97
2764
+ msgctxt "Background type."
2765
+ msgid "Slideshow"
2766
+ msgstr "Diashow"
2767
+
2768
+ #: includes/row-settings.php:101
2769
+ msgctxt "Background type."
2770
+ msgid "Parallax"
2771
+ msgstr "Parallax"
2772
+
2773
+ #: includes/row-settings.php:227
2774
+ msgid "Background Video"
2775
+ msgstr "Hintergrundvideo"
2776
+
2777
+ #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
2778
+ #: modules/video/video.php:19 modules/video/video.php:100
2779
+ msgid "Video"
2780
+ msgstr "Video"
2781
+
2782
+ #: includes/row-settings.php:232
2783
+ msgid ""
2784
+ "An HTML5 video to use as the background of this row. Supported types are MP4,"
2785
+ " WebM and Ogg."
2786
+ msgstr ""
2787
+ "Ein HTML 5 - Video, das im Hintergrund dieser Zeile verwendet werden soll. "
2788
+ "Unterstützte Typen sind MP4, WebM und Ogg."
2789
+
2790
+ #: includes/row-settings.php:239
2791
+ msgid "Fallback Photo"
2792
+ msgstr "Fallback-Foto"
2793
+
2794
+ #: includes/row-settings.php:240
2795
+ msgid "A photo that will be displayed if the video fails to load."
2796
+ msgstr "Ein Foto, das angezeigt wird, wenn das Video nicht geladen werden kann."
2797
+
2798
+ #: includes/row-settings.php:248
2799
+ msgid "Background Slideshow"
2800
+ msgstr "Hintergrund-Diashow"
2801
+
2802
+ #: includes/row-settings.php:252 modules/gallery/gallery.php:241
2803
+ #: modules/slideshow/slideshow.php:271
2804
+ msgid "Source"
2805
+ msgstr "Quelle"
2806
+
2807
+ #: includes/row-settings.php:255 modules/gallery/gallery.php:244
2808
+ #: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
2809
+ #: modules/video/video.php:86
2810
+ msgid "Media Library"
2811
+ msgstr "Medienbibliothek"
2812
+
2813
+ #: includes/row-settings.php:258 modules/gallery/gallery.php:247
2814
+ #: modules/slideshow/slideshow.php:277
2815
+ msgid ""
2816
+ "Pull images from the WordPress media library or a gallery on your SmugMug "
2817
+ "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
2818
+ "accessed by using the get a link function in your SmugMug gallery."
2819
+ msgstr ""
2820
+ "Holen Sie Bilder von der WP Medienbibliothek oder ihrer SmugMug-Seite indem "
2821
+ "Sie die URL des RSS-Feed von SmugMug angeben."
2822
+
2823
+ #: includes/row-settings.php:273 modules/gallery/gallery.php:259
2824
+ #: modules/slideshow/slideshow.php:289
2825
+ msgid "Photos"
2826
+ msgstr "Fotos"
2827
+
2828
+ #: includes/row-settings.php:280 modules/gallery/gallery.php:263
2829
+ #: modules/slideshow/slideshow.php:293
2830
+ msgid "Feed URL"
2831
+ msgstr "Feed URL"
2832
+
2833
+ #: includes/row-settings.php:287 includes/row-settings.php:352
2834
+ #: modules/slideshow/slideshow.php:390
2835
+ msgid "Speed"
2836
+ msgstr "Geschwindigkeit"
2837
+
2838
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
2839
+ #: modules/post-slider/post-slider.php:369 modules/slideshow/slideshow.php:397
2840
+ #: modules/testimonials/testimonials.php:99
2841
+ msgid "Transition"
2842
+ msgstr "Übergang"
2843
+
2844
+ #: includes/row-settings.php:300
2845
+ msgctxt "Slideshow transition type."
2846
+ msgid "None"
2847
+ msgstr "Keiner"
2848
+
2849
+ #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
2850
+ #: modules/post-carousel/post-carousel.php:241
2851
+ #: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:372
2852
+ #: modules/slideshow/slideshow.php:401
2853
+ #: modules/testimonials/testimonials.php:103
2854
+ msgid "Fade"
2855
+ msgstr "Fade"
2856
+
2857
+ #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
2858
+ msgid "Ken Burns"
2859
+ msgstr "Ken Burns"
2860
+
2861
+ #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
2862
+ msgid "Slide Horizontal"
2863
+ msgstr "Slide Horizontal"
2864
+
2865
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
2866
+ msgid "Slide Vertical"
2867
+ msgstr "Slide Vertikal"
2868
+
2869
+ #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
2870
+ msgid "Blinds"
2871
+ msgstr "Fensterläden"
2872
+
2873
+ #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
2874
+ msgid "Bars"
2875
+ msgstr "Balken"
2876
+
2877
+ #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
2878
+ msgid "Random Bars"
2879
+ msgstr "Zufällige Balken"
2880
+
2881
+ #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
2882
+ msgid "Boxes"
2883
+ msgstr "Boxen"
2884
+
2885
+ #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
2886
+ msgid "Random Boxes"
2887
+ msgstr "Zufällige Boxen"
2888
+
2889
+ #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
2890
+ msgid "Boxes Grow"
2891
+ msgstr "Wachsende Boxen"
2892
+
2893
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
2894
+ #: modules/post-carousel/post-carousel.php:161
2895
+ #: modules/post-slider/post-slider.php:387 modules/slideshow/slideshow.php:415
2896
+ #: modules/testimonials/testimonials.php:108
2897
+ msgid "Transition Speed"
2898
+ msgstr "Übergangsgeschwindigkeit"
2899
+
2900
+ #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
2901
+ msgid "Randomize Photos"
2902
+ msgstr "Zufällige Fotoreihenfolge"
2903
+
2904
+ #: includes/row-settings.php:341
2905
+ msgid "Background Parallax"
2906
+ msgstr "Hintergrund Parallax"
2907
+
2908
+ #: includes/row-settings.php:355
2909
+ msgid "Fast"
2910
+ msgstr "Schnell"
2911
+
2912
+ #: includes/row-settings.php:356
2913
+ msgctxt "Speed."
2914
+ msgid "Medium"
2915
+ msgstr "Mittel"
2916
+
2917
+ #: includes/row-settings.php:357
2918
+ msgid "Slow"
2919
+ msgstr "Langsam"
2920
+
2921
+ #: includes/row-settings.php:619
2922
+ msgid "Choose whether to show or hide this row at different device sizes."
2923
+ msgstr ""
2924
+ "Wählen Sie ob diese Zeile bei verschiedenen Gerätegrößen angezeigt werden "
2925
+ "soll oder nicht."
2926
+
2927
+ # @ fl-builder
2928
+ #: includes/row-settings.php:632
2929
+ msgid ""
2930
+ "A unique ID that will be applied to this row's HTML. Must start with a "
2931
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2932
+ msgstr ""
2933
+ "Eine eindeutige ID, die auf das HTML dieser Zeile angewendet wird. Sie muss "
2934
+ "mit einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
2935
+ "oder Zahlen enthalten. Keine Leerzeichen."
2936
+
2937
+ # @ fl-builder
2938
+ #: includes/row-settings.php:640
2939
+ msgid ""
2940
+ "A class that will be applied to this row's HTML. Must start with a letter "
2941
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2942
+ "classes with spaces."
2943
+ msgstr ""
2944
+ "Eine Klasse, die auf das HTML dieser Zeile angewendet wird. Sie muss mit "
2945
+ "einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
2946
+ "oder Zahlen enthalten. Keine Leerzeichen."
2947
+
2948
+ #: includes/service-settings.php:32
2949
+ msgid "Service"
2950
+ msgstr ""
2951
+
2952
+ #: includes/settings.php:62
2953
+ msgid "Save"
2954
+ msgstr "Speichern"
2955
+
2956
+ #: includes/template-selector.php:4
2957
+ msgid "Layout Templates"
2958
+ msgstr "Layout-Vorlage"
2959
+
2960
+ #: includes/template-selector.php:17
2961
+ msgid "Your Templates"
2962
+ msgstr "Ihre Vorlagen"
2963
+
2964
+ #: includes/template-selector.php:53
2965
+ msgid ""
2966
+ "You haven't saved any templates yet! To do so, create a layout and save it "
2967
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
2968
+ msgstr ""
2969
+ "Sie haben noch keine Vorlagen gespeichert! Um dies zu tun, erstellen Sie ein "
2970
+ "Layout und speichern es als Vorlage unter <strong>Werkzeuge &rarr; Vorlage "
2971
+ "speichern</strong>."
2972
+
2973
+ #: includes/template-selector.php:58
2974
+ msgctxt "Template name."
2975
+ msgid "Blank"
2976
+ msgstr "Leer"
2977
+
2978
+ #: includes/template-settings.php:14 includes/user-template-settings.php:15
2979
+ msgctxt "Template name."
2980
+ msgid "Name"
2981
+ msgstr "Name"
2982
+
2983
+ #: includes/template-settings.php:18
2984
+ msgid "Image Filename"
2985
+ msgstr "Bild Feldname"
2986
+
2987
+ #: includes/template-settings.php:19
2988
+ msgid ""
2989
+ "The filename of the image such as \"thumb.jpg\" that resides in the "
2990
+ "\"img/templates/\" directory."
2991
+ msgstr ""
2992
+
2993
+ #: includes/ui.php:8 includes/ui.php:13
2994
+ #, php-format
2995
+ msgid "Template: %s"
2996
+ msgstr "Vorlage: %s"
2997
+
2998
+ #: includes/ui.php:21 includes/ui.php:56
2999
+ msgid "Tools"
3000
+ msgstr "Werkzeuge"
3001
+
3002
+ #: includes/ui.php:34
3003
+ msgid "Page Builder Demo"
3004
+ msgstr "Page Builder Demo"
3005
+
3006
+ #: includes/ui.php:51
3007
+ msgid "Buy Now!"
3008
+ msgstr "Jetzt kaufen!"
3009
+
3010
+ #: includes/ui.php:53
3011
+ msgid "Upgrade!"
3012
+ msgstr "Upgraden!"
3013
+
3014
+ #: includes/ui.php:78
3015
+ msgid "Row Layouts"
3016
+ msgstr "Zeilenlayouts"
3017
+
3018
+ #: includes/ui.php:82
3019
+ msgid "1 Column"
3020
+ msgstr "1 Spalte"
3021
+
3022
+ #: includes/ui.php:83
3023
+ msgid "2 Columns"
3024
+ msgstr "2 Spalten"
3025
+
3026
+ #: includes/ui.php:84
3027
+ msgid "3 Columns"
3028
+ msgstr "3 Spalten"
3029
+
3030
+ #: includes/ui.php:85
3031
+ msgid "4 Columns"
3032
+ msgstr "4 Spalten"
3033
+
3034
+ #: includes/ui.php:86
3035
+ msgid "5 Columns"
3036
+ msgstr "5 Spalten"
3037
+
3038
+ #: includes/ui.php:87
3039
+ msgid "6 Columns"
3040
+ msgstr "6 Spalten"
3041
+
3042
+ #: includes/ui.php:88
3043
+ msgid "Left Sidebar"
3044
+ msgstr "Linke Seitenleiste"
3045
+
3046
+ #: includes/ui.php:89
3047
+ msgid "Right Sidebar"
3048
+ msgstr "Rechte Seitenleiste"
3049
+
3050
+ #: includes/ui.php:90
3051
+ msgid "Left &amp; Right Sidebar"
3052
+ msgstr "Linke &amp; Rechte Seitenleiste"
3053
+
3054
+ #: includes/updater/classes/class-fl-updater.php:132
3055
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3056
+ msgstr "<strong>UPDATE NICHT VERFÜGBAR!</strong>"
3057
+
3058
+ #: includes/updater/classes/class-fl-updater.php:134
3059
+ msgid "Please subscribe to enable automatic updates for this plugin."
3060
+ msgstr "Bitte abonnieren Sie um automatische Updates für dieses Plugin zu aktivieren."
3061
+
3062
+ #: includes/updater/classes/class-fl-updater.php:136
3063
+ #: includes/updater/includes/form.php:6
3064
+ msgid "Subscribe Now"
3065
+ msgstr "Jetzt abonnieren"
3066
+
3067
+ #: includes/updater/includes/form.php:5
3068
+ msgid ""
3069
+ "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
3070
+ "enable automatic updates."
3071
+ msgstr ""
3072
+ "UPDATES NICHT VERFÜGBAR! Bitte abonnieren Sie oder geben unten den "
3073
+ "Lizenzschlüssel ein um automatische Updates zu aktivieren."
3074
+
3075
+ #: includes/updater/includes/form.php:11
3076
+ msgid "Updates &amp; Support Subscription"
3077
+ msgstr "Updates &amp; Support - Abonnement"
3078
+
3079
+ #: includes/updater/includes/form.php:14
3080
+ msgid "Active!"
3081
+ msgstr "Aktiv!"
3082
+
3083
+ #: includes/updater/includes/form.php:16
3084
+ msgid "Not Active!"
3085
+ msgstr "Nicht aktiv!"
3086
+
3087
+ #: includes/updater/includes/form.php:22
3088
+ msgid "Email address saved!"
3089
+ msgstr "E-Mail Adresse gespeichert!"
3090
+
3091
+ #: includes/updater/includes/form.php:27
3092
+ #, php-format
3093
+ msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
3094
+ msgstr ""
3095
+ "Geben Sie ihren <a%s>Lizenzschlüssel</a> ein um Fern-Updates und -Support zu "
3096
+ "aktivieren."
3097
+
3098
+ #: includes/updater/includes/form.php:39
3099
+ msgid "Save Subscription Settings"
3100
+ msgstr "Aboeinstellungen speichern"
3101
+
3102
+ #: includes/user-template-settings.php:8
3103
+ msgid ""
3104
+ "Save the current layout as a template that can be reused under "
3105
+ "<strong>Templates &rarr; Your Templates</strong>."
3106
+ msgstr ""
3107
+ "Das aktuelle Layout als Vorlage, die unter <strong>Vorlagen&rarr; Ihre "
3108
+ "Vorlagen</strong> wiederverwendet werden kann, speichern."
3109
+
3110
+ #: modules/accordion/accordion.php:14
3111
+ msgid "Accordion"
3112
+ msgstr "Akkordeon"
3113
+
3114
+ #: modules/accordion/accordion.php:15
3115
+ msgid "Display a collapsible accordion of items."
3116
+ msgstr "Ein einklappbares Akkordeon von Elements anzeigen."
3117
+
3118
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
3119
+ msgid "Items"
3120
+ msgstr "Elements"
3121
+
3122
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
3123
+ msgid "Item"
3124
+ msgstr "Element"
3125
+
3126
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
3127
+ msgid "Border Color"
3128
+ msgstr "Rahmenfarbe"
3129
+
3130
+ #: modules/accordion/accordion.php:62
3131
+ msgid "Label Size"
3132
+ msgstr "Labelgröße"
3133
+
3134
+ #: modules/accordion/accordion.php:65
3135
+ msgctxt "Label size."
3136
+ msgid "Small"
3137
+ msgstr "Klein"
3138
+
3139
+ #: modules/accordion/accordion.php:66
3140
+ msgctxt "Label size."
3141
+ msgid "Medium"
3142
+ msgstr "Mittel"
3143
+
3144
+ #: modules/accordion/accordion.php:67
3145
+ msgctxt "Label size."
3146
+ msgid "Large"
3147
+ msgstr "Groß"
3148
+
3149
+ #: modules/accordion/accordion.php:75
3150
+ msgid "Item Spacing"
3151
+ msgstr "Element-Abstand"
3152
+
3153
+ #: modules/accordion/accordion.php:86
3154
+ msgid "Collapse Inactive"
3155
+ msgstr "Einklappen inaktiv"
3156
+
3157
+ #: modules/accordion/accordion.php:92
3158
+ msgid ""
3159
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
3160
+ "multiple items to be open at the same time."
3161
+ msgstr ""
3162
+ "Wenn Sie >Ja< wählen wird nur ein Element gleichzeitig offen gehalten. Wenn "
3163
+ "Sie >Nein< wählen, können mehrere Elements gleichzeitig offen sein."
3164
+
3165
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
3166
+ msgid "Add Item"
3167
+ msgstr "Element hinzufügen"
3168
+
3169
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
3170
+ msgid "Label"
3171
+ msgstr "Label"
3172
+
3173
+ #: modules/accordion/accordion.php:122
3174
+ #: modules/post-carousel/post-carousel.php:359
3175
+ #: modules/post-carousel/post-carousel.php:363
3176
+ #: modules/post-carousel/post-carousel.php:435
3177
+ #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
3178
+ #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:543
3179
+ #: modules/post-slider/post-slider.php:547
3180
+ #: modules/post-slider/post-slider.php:754 modules/tabs/tabs.php:89
3181
+ msgid "Content"
3182
+ msgstr "Inhalt"
3183
+
3184
+ #: modules/button/button.php:14 modules/callout/callout.php:480
3185
+ #: modules/content-slider/content-slider.php:602 modules/cta/cta.php:215
3186
+ #: modules/pricing-table/pricing-table.php:129
3187
+ #: modules/subscribe-form/subscribe-form.php:161
3188
+ msgid "Button"
3189
+ msgstr "Button"
3190
+
3191
+ #: modules/button/button.php:15
3192
+ msgid "A simple call to action button."
3193
+ msgstr "Ein einfacher Aufrufbutton."
3194
+
3195
+ #: modules/button/button.php:67 modules/cta/cta.php:223
3196
+ msgid "Click Here"
3197
+ msgstr "Hier klicken"
3198
+
3199
+ #: modules/button/button.php:75 modules/callout/callout.php:318
3200
+ #: modules/callout/callout.php:366 modules/callout/callout.php:370
3201
+ #: modules/cta/cta.php:231 modules/icon-group/icon-group.php:34
3202
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
3203
+ #: modules/icon/icon.php:34
3204
+ msgid "Icon"
3205
+ msgstr "Icon"
3206
+
3207
+ #: modules/button/button.php:80 modules/cta/cta.php:236
3208
+ #: modules/subscribe-form/subscribe-form.php:178
3209
+ msgid "Icon Position"
3210
+ msgstr ""
3211
+
3212
+ #: modules/button/button.php:83 modules/callout/callout.php:508
3213
+ #: modules/content-slider/content-slider.php:629 modules/cta/cta.php:239
3214
+ #: modules/subscribe-form/subscribe-form.php:181
3215
+ msgid "Before Text"
3216
+ msgstr "Text davor"
3217
+
3218
+ #: modules/button/button.php:84 modules/callout/callout.php:509
3219
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:240
3220
+ #: modules/subscribe-form/subscribe-form.php:182
3221
+ msgid "After Text"
3222
+ msgstr "Text danach"
3223
+
3224
+ #: modules/button/button.php:90 modules/button/button.php:94
3225
+ #: modules/callout/callout.php:446 modules/callout/callout.php:450
3226
+ #: modules/content-slider/content-slider.php:574
3227
+ #: modules/content-slider/content-slider.php:578
3228
+ #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:250
3229
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47
3230
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
3231
+ #: modules/slideshow/slideshow.php:351
3232
+ msgid "Link"
3233
+ msgstr "Link"
3234
+
3235
+ #: modules/button/button.php:95
3236
+ msgid "http://www.example.com"
3237
+ msgstr "http://www.beispiel.com"
3238
+
3239
+ #: modules/button/button.php:102 modules/callout/callout.php:458
3240
+ #: modules/content-slider/content-slider.php:583 modules/cta/cta.php:257
3241
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
3242
+ #: modules/photo/photo.php:494
3243
+ msgid "Link Target"
3244
+ msgstr "Linkziel"
3245
+
3246
+ #: modules/button/button.php:105 modules/callout/callout.php:461
3247
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:260
3248
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
3249
+ #: modules/photo/photo.php:497
3250
+ msgid "Same Window"
3251
+ msgstr "Selbes Fenster"
3252
+
3253
+ #: modules/button/button.php:106 modules/callout/callout.php:462
3254
+ #: modules/content-slider/content-slider.php:587 modules/cta/cta.php:261
3255
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
3256
+ #: modules/photo/photo.php:498
3257
+ msgid "New Window"
3258
+ msgstr "Neues Fenster"
3259
+
3260
+ #: modules/button/button.php:130 modules/callout/callout.php:410
3261
+ #: modules/callout/callout.php:525
3262
+ #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:280
3263
+ #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
3264
+ #: modules/subscribe-form/subscribe-form.php:198
3265
+ msgid "Background Hover Color"
3266
+ msgstr "Hintergrund-Hoverfarbe"
3267
+
3268
+ #: modules/button/button.php:145 modules/callout/callout.php:540
3269
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:295
3270
+ #: modules/subscribe-form/subscribe-form.php:213
3271
+ msgid "Text Hover Color"
3272
+ msgstr "Text-Hoverfarbe"
3273
+
3274
+ # @ fl-builder
3275
+ #: modules/button/button.php:162 modules/callout/callout.php:557
3276
+ #: modules/content-slider/content-slider.php:670 modules/cta/cta.php:312
3277
+ #: modules/subscribe-form/subscribe-form.php:230
3278
+ msgid "Flat"
3279
+ msgstr "Flach"
3280
+
3281
+ #: modules/button/button.php:163 modules/callout/callout.php:418
3282
+ #: modules/callout/callout.php:558
3283
+ #: modules/content-slider/content-slider.php:671 modules/cta/cta.php:313
3284
+ #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3285
+ #: modules/subscribe-form/subscribe-form.php:231
3286
+ msgid "Gradient"
3287
+ msgstr "Gradient"
3288
+
3289
+ # @ fl-builder
3290
+ #: modules/button/button.php:164 modules/callout/callout.php:559
3291
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3292
+ #: modules/subscribe-form/subscribe-form.php:232
3293
+ msgid "Transparent"
3294
+ msgstr "Transparent"
3295
+
3296
+ #: modules/button/button.php:174 modules/callout/callout.php:569
3297
+ #: modules/content-slider/content-slider.php:682 modules/cta/cta.php:324
3298
+ #: modules/pricing-table/pricing-table.php:67
3299
+ #: modules/subscribe-form/subscribe-form.php:242
3300
+ msgid "Border Size"
3301
+ msgstr "Rahmengröße"
3302
+
3303
+ #: modules/button/button.php:183 modules/callout/callout.php:578
3304
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204
3305
+ #: modules/cta/cta.php:333 modules/subscribe-form/subscribe-form.php:251
3306
+ msgid "Background Opacity"
3307
+ msgstr "Hintergrundtransparenz"
3308
+
3309
+ #: modules/button/button.php:193 modules/callout/callout.php:245
3310
+ #: modules/cta/cta.php:105 modules/heading/heading.php:82
3311
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3312
+ #: modules/subscribe-form/subscribe-form.php:95
3313
+ msgid "Structure"
3314
+ msgstr "Struktur"
3315
+
3316
+ #: modules/button/button.php:200 modules/callout/callout.php:595
3317
+ msgctxt "Width."
3318
+ msgid "Auto"
3319
+ msgstr "Auto"
3320
+
3321
+ #: modules/button/button.php:216
3322
+ msgid "Custom Width"
3323
+ msgstr "Benutzerdefinierte Breite"
3324
+
3325
+ #: modules/button/button.php:224 modules/cta/cta.php:123
3326
+ #: modules/heading/heading.php:86 modules/heading/heading.php:141
3327
+ #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3328
+ #: modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
3329
+ msgid "Alignment"
3330
+ msgstr "Ausrichtung"
3331
+
3332
+ #: modules/button/button.php:234 modules/callout/callout.php:601
3333
+ #: modules/content-slider/content-slider.php:705 modules/cta/cta.php:347
3334
+ #: modules/heading/heading.php:114 modules/heading/heading.php:171
3335
+ #: modules/subscribe-form/subscribe-form.php:265
3336
+ msgid "Font Size"
3337
+ msgstr "Schriftgröße"
3338
+
3339
+ #: modules/button/button.php:250 modules/callout/callout.php:617
3340
+ #: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
3341
+ msgid "Round Corners"
3342
+ msgstr "Runde Ecken"
3343
+
3344
+ #: modules/callout/callout.php:14
3345
+ msgid "Callout"
3346
+ msgstr "Textbox"
3347
+
3348
+ #: modules/callout/callout.php:15
3349
+ msgid "A heading and snippet of text with an optional link, icon and image."
3350
+ msgstr "Ein Überschrift und Textschnipsel mit einem optionalen Link, Icon und Bild."
3351
+
3352
+ #: modules/callout/callout.php:217
3353
+ #: modules/content-slider/content-slider.php:414
3354
+ #: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75
3355
+ #: modules/heading/heading.php:14 modules/heading/heading.php:33
3356
+ #: modules/post-slider/post-slider.php:577
3357
+ #: modules/testimonials/testimonials.php:56
3358
+ #: modules/testimonials/testimonials.php:61
3359
+ msgid "Heading"
3360
+ msgstr "Überschrift"
3361
+
3362
+ #: modules/callout/callout.php:249
3363
+ msgid "Overall Alignment"
3364
+ msgstr "Gesamtausrichtung"
3365
+
3366
+ #: modules/callout/callout.php:256
3367
+ msgid "The alignment that will apply to all elements within the callout."
3368
+ msgstr "Die Ausrichtung für alle Elemente der Textbox."
3369
+
3370
+ #: modules/callout/callout.php:264 modules/cta/cta.php:148
3371
+ msgid "Heading Structure"
3372
+ msgstr "Überschriften"
3373
+
3374
+ #: modules/callout/callout.php:268
3375
+ #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3376
+ #: modules/post-slider/post-slider.php:581
3377
+ msgid "Heading Tag"
3378
+ msgstr "Überschrift 1-6"
3379
+
3380
+ #: modules/callout/callout.php:281
3381
+ #: modules/content-slider/content-slider.php:446
3382
+ #: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
3383
+ #: modules/post-slider/post-slider.php:594
3384
+ #: modules/post-slider/post-slider.php:608
3385
+ #: modules/testimonials/testimonials.php:69
3386
+ msgid "Heading Size"
3387
+ msgstr "Überschriftgröße"
3388
+
3389
+ #: modules/callout/callout.php:295 modules/cta/cta.php:179
3390
+ msgid "Heading Custom Size"
3391
+ msgstr "Überschrift-benutzerdefinierte Größe"
3392
+
3393
+ #: modules/callout/callout.php:313
3394
+ msgid "Image Type"
3395
+ msgstr "Bildtyp"
3396
+
3397
+ #: modules/callout/callout.php:316
3398
+ msgctxt "Image type."
3399
+ msgid "None"
3400
+ msgstr "Kein"
3401
+
3402
+ #: modules/callout/callout.php:341 modules/photo/photo.php:417
3403
+ #: modules/post-slider/post-slider.php:476 modules/slideshow/slideshow.php:320
3404
+ msgid "Crop"
3405
+ msgstr "Zugeschnitten"
3406
+
3407
+ #: modules/callout/callout.php:344
3408
+ msgctxt "Crop"
3409
+ msgid "None"
3410
+ msgstr "Kein"
3411
+
3412
+ #: modules/callout/callout.php:345 modules/photo/photo.php:421
3413
+ #: modules/post-slider/post-slider.php:480
3414
+ msgid "Landscape"
3415
+ msgstr "Landschaft"
3416
+
3417
+ #: modules/callout/callout.php:346 modules/photo/photo.php:422
3418
+ #: modules/post-slider/post-slider.php:481
3419
+ msgid "Panorama"
3420
+ msgstr "Panorama"
3421
+
3422
+ #: modules/callout/callout.php:347 modules/photo/photo.php:423
3423
+ #: modules/post-slider/post-slider.php:482
3424
+ msgid "Portrait"
3425
+ msgstr "Portrait"
3426
+
3427
+ #: modules/callout/callout.php:348 modules/photo/photo.php:424
3428
+ #: modules/post-slider/post-slider.php:483
3429
+ msgid "Square"
3430
+ msgstr "Quadrat"
3431
+
3432
+ #: modules/callout/callout.php:349 modules/photo/photo.php:425
3433
+ #: modules/post-slider/post-slider.php:484
3434
+ msgid "Circle"
3435
+ msgstr "Kreis"
3436
+
3437
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
3438
+ msgid "Above Heading"
3439
+ msgstr "Über Überschrift"
3440
+
3441
+ #: modules/callout/callout.php:358 modules/callout/callout.php:378
3442
+ msgid "Below Heading"
3443
+ msgstr "Unter Überschrift"
3444
+
3445
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
3446
+ msgid "Left of Text and Heading"
3447
+ msgstr "Links von Text und Überschrift"
3448
+
3449
+ #: modules/callout/callout.php:360 modules/callout/callout.php:382
3450
+ msgid "Right of Text and Heading"
3451
+ msgstr "Rechts von Text und Überschrift"
3452
+
3453
+ #: modules/callout/callout.php:379
3454
+ msgid "Left of Heading"
3455
+ msgstr "Links von Überschrift"
3456
+
3457
+ #: modules/callout/callout.php:380
3458
+ msgid "Right of Heading"
3459
+ msgstr "Rechts von Überschrift"
3460
+
3461
+ #: modules/callout/callout.php:388
3462
+ msgid "Icon Colors"
3463
+ msgstr "Iconfarben"
3464
+
3465
+ #: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56
3466
+ #: modules/icon/icon.php:87
3467
+ msgid "Hover Color"
3468
+ msgstr "Hoverfarbe"
3469
+
3470
+ #: modules/callout/callout.php:428
3471
+ msgid "Icon Structure"
3472
+ msgstr "Iconstruktur"
3473
+
3474
+ #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
3475
+ #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
3476
+ #: modules/post-grid/post-grid.php:139
3477
+ msgid "Size"
3478
+ msgstr "Größe"
3479
+
3480
+ #: modules/callout/callout.php:443
3481
+ #: modules/content-slider/content-slider.php:571
3482
+ msgid "Call To Action"
3483
+ msgstr "Aufruf"
3484
+
3485
+ #: modules/callout/callout.php:451
3486
+ msgid ""
3487
+ "The link applies to the entire module. If choosing a call to action type "
3488
+ "below, this link will also be used for the text or button."
3489
+ msgstr ""
3490
+ "Der Link bezieht sich auf das gesamte Modul. Wenn Sie unten einen Aufruftyp "
3491
+ "wählen, wird dieser Link auch für den Text oder Button benutzt."
3492
+
3493
+ #: modules/callout/callout.php:471
3494
+ #: modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
3495
+ msgid "Call to Action"
3496
+ msgstr "Aufruf"
3497
+
3498
+ #: modules/callout/callout.php:478
3499
+ #: modules/content-slider/content-slider.php:600
3500
+ msgctxt "Call to action."
3501
+ msgid "None"
3502
+ msgstr "Kein"
3503
+
3504
+ #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
3505
+ #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:566
3506
+ msgid "Read More"
3507
+ msgstr "Mehr Lesen"
3508
+
3509
+ #: modules/callout/callout.php:500
3510
+ #: modules/content-slider/content-slider.php:621
3511
+ #: modules/subscribe-form/subscribe-form.php:173
3512
+ msgid "Button Icon"
3513
+ msgstr "Button-Icon"
3514
+
3515
+ #: modules/callout/callout.php:505
3516
+ #: modules/content-slider/content-slider.php:626
3517
+ msgid "Button Icon Position"
3518
+ msgstr ""
3519
+
3520
+ #: modules/callout/callout.php:515
3521
+ #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
3522
+ #: modules/subscribe-form/subscribe-form.php:188
3523
+ msgid "Button Colors"
3524
+ msgstr "Button-Farbe"
3525
+
3526
+ # @ fl-builder
3527
+ #: modules/callout/callout.php:550
3528
+ #: modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
3529
+ #: modules/subscribe-form/subscribe-form.php:223
3530
+ msgid "Button Style"
3531
+ msgstr "Stil des Buttons"
3532
+
3533
+ #: modules/callout/callout.php:588
3534
+ #: modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
3535
+ #: modules/subscribe-form/subscribe-form.php:261
3536
+ msgid "Button Structure"
3537
+ msgstr "Button-Struktur"
3538
+
3539
+ #: modules/callout/callout.php:592
3540
+ msgid "Button Width"
3541
+ msgstr "Button-Breite"
3542
+
3543
+ #: modules/contact-form/contact-form.php:14
3544
+ msgid "Contact Form"
3545
+ msgstr "Kontaktformular"
3546
+
3547
+ #: modules/contact-form/contact-form.php:15
3548
+ msgid "A very simple contact form."
3549
+ msgstr "Ein einfaches Kontaktformular."
3550
+
3551
+ #: modules/contact-form/contact-form.php:31
3552
+ msgid "Contact Form Submission"
3553
+ msgstr "Kontaktformular abschicken"
3554
+
3555
+ #: modules/contact-form/contact-form.php:41
3556
+ msgid "Message"
3557
+ msgstr "Nachricht"
3558
+
3559
+ #: modules/contact-form/contact-form.php:65
3560
+ msgid "Send To Email"
3561
+ msgstr "An Email schicken"
3562
+
3563
+ #: modules/contact-form/contact-form.php:67
3564
+ msgid "example@mail.com"
3565
+ msgstr "beispiel@mail.com"
3566
+
3567
+ #: modules/contact-form/contact-form.php:68
3568
+ msgid "The contact form will send to this e-mail"
3569
+ msgstr "Das Kontaktformular sendet an diese Emailadresse"
3570
+
3571
+ #: modules/contact-form/contact-form.php:75
3572
+ #: modules/subscribe-form/subscribe-form.php:108
3573
+ msgid "Name Field"
3574
+ msgstr "Namensfeld"
3575
+
3576
+ #: modules/contact-form/contact-form.php:78
3577
+ #: modules/contact-form/contact-form.php:87
3578
+ #: modules/contact-form/contact-form.php:96
3579
+ #: modules/contact-form/contact-form.php:105
3580
+ #: modules/post-carousel/post-carousel.php:258
3581
+ #: modules/post-carousel/post-carousel.php:322
3582
+ #: modules/post-carousel/post-carousel.php:331
3583
+ #: modules/post-carousel/post-carousel.php:366
3584
+ #: modules/post-carousel/post-carousel.php:375
3585
+ #: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
3586
+ #: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
3587
+ #: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
3588
+ #: modules/post-slider/post-slider.php:442
3589
+ #: modules/post-slider/post-slider.php:497
3590
+ #: modules/post-slider/post-slider.php:506
3591
+ #: modules/post-slider/post-slider.php:536
3592
+ #: modules/post-slider/post-slider.php:550
3593
+ #: modules/post-slider/post-slider.php:559
3594
+ #: modules/subscribe-form/subscribe-form.php:111
3595
+ msgid "Show"
3596
+ msgstr "Zeigen"
3597
+
3598
+ #: modules/contact-form/contact-form.php:79
3599
+ #: modules/contact-form/contact-form.php:88
3600
+ #: modules/contact-form/contact-form.php:97
3601
+ #: modules/contact-form/contact-form.php:106
3602
+ #: modules/post-carousel/post-carousel.php:259
3603
+ #: modules/post-carousel/post-carousel.php:323
3604
+ #: modules/post-carousel/post-carousel.php:332
3605
+ #: modules/post-carousel/post-carousel.php:367
3606
+ #: modules/post-carousel/post-carousel.php:376
3607
+ #: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
3608
+ #: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
3609
+ #: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
3610
+ #: modules/post-slider/post-slider.php:443
3611
+ #: modules/post-slider/post-slider.php:498
3612
+ #: modules/post-slider/post-slider.php:507
3613
+ #: modules/post-slider/post-slider.php:537
3614
+ #: modules/post-slider/post-slider.php:551
3615
+ #: modules/post-slider/post-slider.php:560
3616
+ #: modules/subscribe-form/subscribe-form.php:112
3617
+ msgid "Hide"
3618
+ msgstr "Verstecken"
3619
+
3620
+ #: modules/contact-form/contact-form.php:84
3621
+ msgid "Subject Field"
3622
+ msgstr "Themen-Feld"
3623
+
3624
+ #: modules/contact-form/contact-form.php:93
3625
+ msgid "Email Field"
3626
+ msgstr "E-Mail Feld"
3627
+
3628
+ #: modules/contact-form/contact-form.php:102
3629
+ msgid "Phone Field"
3630
+ msgstr "Telefonfeld"
3631
+
3632
+ #: modules/contact-form/includes/frontend.php:5
3633
+ msgctxt "Contact form field label."
3634
+ msgid "Name"
3635
+ msgstr "Name"
3636
+
3637
+ #: modules/contact-form/includes/frontend.php:6
3638
+ #: modules/subscribe-form/includes/frontend.php:6
3639
+ msgid "Please enter your name."
3640
+ msgstr "Bitte geben Sie ihren Namen ein."
3641
+
3642
+ #: modules/contact-form/includes/frontend.php:7
3643
+ msgid "Your name"
3644
+ msgstr "Ihr Name"
3645
+
3646
+ #: modules/contact-form/includes/frontend.php:13
3647
+ #: modules/contact-form/includes/frontend.php:15
3648
+ msgid "Subject"
3649
+ msgstr "Thema"
3650
+
3651
+ #: modules/contact-form/includes/frontend.php:14
3652
+ msgid "Please enter a subject."
3653
+ msgstr "Bitte geben Sie ein Thema an."
3654
+
3655
+ #: modules/contact-form/includes/frontend.php:22
3656
+ msgid "Please enter a valid email."
3657
+ msgstr "Bitte geben Sie eine gültige Email-Adresse ein"
3658
+
3659
+ #: modules/contact-form/includes/frontend.php:23
3660
+ msgid "Your email"
3661
+ msgstr "Ihre Email-Adresse"
3662
+
3663
+ #: modules/contact-form/includes/frontend.php:29
3664
+ msgid "Phone"
3665
+ msgstr "Telefon"
3666
+
3667
+ #: modules/contact-form/includes/frontend.php:30
3668
+ msgid "Please enter a valid phone number."
3669
+ msgstr "Bitte geben Sie eine gültige Telefonnummer ein."
3670
+
3671
+ #: modules/contact-form/includes/frontend.php:31
3672
+ msgid "Your phone"
3673
+ msgstr "Ihre Telefonnummer"
3674
+
3675
+ #: modules/contact-form/includes/frontend.php:36
3676
+ msgid "Your Message"
3677
+ msgstr "Ihre Nachricht"
3678
+
3679
+ #: modules/contact-form/includes/frontend.php:37
3680
+ msgid "Please enter a message."
3681
+ msgstr "Bitte geben Sie eine Nachricht ein."
3682
+
3683
+ #: modules/contact-form/includes/frontend.php:38
3684
+ msgid "Your message"
3685
+ msgstr "Ihre Nachricht"
3686
+
3687
+ #: modules/contact-form/includes/frontend.php:43
3688
+ msgid "Send"
3689
+ msgstr "Senden"
3690
+
3691
+ #: modules/contact-form/includes/frontend.php:44
3692
+ msgid "Message Sent!"
3693
+ msgstr "Nachricht gesendet!"
3694
+
3695
+ #: modules/contact-form/includes/frontend.php:45
3696
+ msgid "Message failed. Please try again."
3697
+ msgstr "Nachricht senden fehlgeschlagen. Bitte versuchen Sie es später noch einmal."
3698
+
3699
+ #: modules/content-slider/content-slider.php:14
3700
+ msgid "Content Slider"
3701
+ msgstr "Inhalts-Slider"
3702
+
3703
+ #: modules/content-slider/content-slider.php:15
3704
+ msgid "Displays multiple slides with an optional heading and call to action."
3705
+ msgstr "Zeigt mehrere Slides mit einem optionalen Überschrift und Aufruf."
3706
+
3707
+ #: modules/content-slider/content-slider.php:198 modules/map/map.php:41
3708
+ #: modules/post-slider/post-slider.php:344 modules/separator/separator.php:58
3709
+ #: modules/slideshow/slideshow.php:302
3710
+ msgid "Height"
3711
+ msgstr "Höhe"
3712
+
3713
+ #: modules/content-slider/content-slider.php:203
3714
+ msgid ""
3715
+ "This setting is the minimum height of the content slider. Content will "
3716
+ "expand the height automatically."
3717
+ msgstr ""
3718
+ "Diese Einstellung gibt die minimale Höhe des Content Sliders an. Inhalt wird "
3719
+ "die Höhe automatisch vergrößern."
3720
+
3721
+ #: modules/content-slider/content-slider.php:207
3722
+ #: modules/post-carousel/post-carousel.php:136
3723
+ #: modules/post-slider/post-slider.php:353 modules/slideshow/slideshow.php:381
3724
+ #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
3725
+ msgid "Auto Play"
3726
+ msgstr "Auto Play"
3727
+
3728
+ #: modules/content-slider/content-slider.php:221
3729
+ msgid "Show Play/Pause"
3730
+ msgstr "Play/Pause anzeigen"
3731
+
3732
+ #: modules/content-slider/content-slider.php:241
3733
+ #: modules/testimonials/testimonials.php:102
3734
+ msgctxt "Transition type."
3735
+ msgid "Slide"
3736
+ msgstr "Slide"
3737
+
3738
+ #: modules/content-slider/content-slider.php:255
3739
+ #: modules/post-carousel/post-carousel.php:188
3740
+ #: modules/post-slider/post-slider.php:414
3741
+ #: modules/testimonials/testimonials.php:121
3742
+ msgid "Show Arrows"
3743
+ msgstr "Pfeile anzeigen"
3744
+
3745
+ #: modules/content-slider/content-slider.php:264
3746
+ #: modules/post-carousel/post-carousel.php:179
3747
+ #: modules/post-slider/post-slider.php:405
3748
+ #: modules/testimonials/testimonials.php:151
3749
+ msgid "Show Dots"
3750
+ msgstr "Punkte anzeigen"
3751
+
3752
+ #: modules/content-slider/content-slider.php:278
3753
+ msgid "Max Content Width"
3754
+ msgstr "Maximale Inhaltsbreite"
3755
+
3756
+ #: modules/content-slider/content-slider.php:283
3757
+ msgid "The max width that the content area will be within your slides."
3758
+ msgstr "Die maximale Breite, die die Fläche für den Inhalt in ihren Slides annimmt."
3759
+
3760
+ #: modules/content-slider/content-slider.php:290
3761
+ msgid "Slides"
3762
+ msgstr "Slides"
3763
+
3764
+ #: modules/content-slider/content-slider.php:297
3765
+ #: modules/post-slider/post-slider.php:373
3766
+ msgid "Slide"
3767
+ msgstr "Slide"
3768
+
3769
+ #: modules/content-slider/content-slider.php:312
3770
+ msgid "Slide Settings"
3771
+ msgstr "Slideeinstellungen"
3772
+
3773
+ #: modules/content-slider/content-slider.php:322
3774
+ msgid "Slide Label"
3775
+ msgstr "Slidelabel"
3776
+
3777
+ #: modules/content-slider/content-slider.php:323
3778
+ msgid ""
3779
+ "A label to identify this slide on the Slides tab of the Content Slider "
3780
+ "settings."
3781
+ msgstr ""
3782
+ "Ein Label um diese Slide im Slide Tab der Content Slider - Einstellungen zu "
3783
+ "identifizieren."
3784
+
3785
+ #: modules/content-slider/content-slider.php:328
3786
+ msgid "Background Layout"
3787
+ msgstr "Hintergrund Layout"
3788
+
3789
+ #: modules/content-slider/content-slider.php:334
3790
+ msgid "This setting is for the entire background of your slide."
3791
+ msgstr "Diese Einstellung gilt für den gesamten Hintergrund ihrer Slide."
3792
+
3793
+ #: modules/content-slider/content-slider.php:369
3794
+ msgid "Background Video Code"
3795
+ msgstr "Hintergrundvideocode"
3796
+
3797
+ #: modules/content-slider/content-slider.php:375
3798
+ msgid "Content Layout"
3799
+ msgstr "Inhaltslayout"
3800
+
3801
+ #: modules/content-slider/content-slider.php:381
3802
+ msgid ""
3803
+ "This allows you to add content over or in addition to the background "
3804
+ "selection above. The location of the content layout can be selected in the "
3805
+ "style tab."
3806
+ msgstr ""
3807
+ "Dies erlaubt es Ihnen Inhalt überhalb oder zusätzlich zur Hintergrundauswahl "
3808
+ "hinzuzufügen. Die Platzierung des Inhaltslayouts kann im Stil-Tab ausgewählt "
3809
+ "werden."
3810
+
3811
+ #: modules/content-slider/content-slider.php:384
3812
+ msgid "Text &amp; Photo"
3813
+ msgstr "Text &amp; Foto"
3814
+
3815
+ #: modules/content-slider/content-slider.php:385
3816
+ msgid "Text &amp; Video"
3817
+ msgstr "Text &amp; Video"
3818
+
3819
+ #: modules/content-slider/content-slider.php:386
3820
+ msgctxt "Content type."
3821
+ msgid "None"
3822
+ msgstr "Nichts"
3823
+
3824
+ #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
3825
+ msgid "Video Embed Code"
3826
+ msgstr "Video Embed Code"
3827
+
3828
+ #: modules/content-slider/content-slider.php:469
3829
+ msgid "Text Position"
3830
+ msgstr "Textposition"
3831
+
3832
+ #: modules/content-slider/content-slider.php:475
3833
+ msgid ""
3834
+ "The position will move the content layout selections left, right or center "
3835
+ "over the background of the slide."
3836
+ msgstr ""
3837
+ "Die Position gibt an ob das Inhaltslayout links, rechts oder mittig über dem "
3838
+ "Hintergrund der Slide platziert wird."
3839
+
3840
+ #: modules/content-slider/content-slider.php:492
3841
+ msgid "Top Margin"
3842
+ msgstr "Abstand aussen oben"
3843
+
3844
+ #: modules/content-slider/content-slider.php:500
3845
+ msgid "Bottom Margin"
3846
+ msgstr "Abstand aussen unten"
3847
+
3848
+ #: modules/content-slider/content-slider.php:508
3849
+ msgid "Left Margin"
3850
+ msgstr "Abstand aussen links"
3851
+
3852
+ #: modules/content-slider/content-slider.php:516
3853
+ msgid "Right Margin"
3854
+ msgstr "Abstand aussen rechts"
3855
+
3856
+ #: modules/content-slider/content-slider.php:525
3857
+ msgid "Text Colors"
3858
+ msgstr "Textfarben"
3859
+
3860
+ #: modules/content-slider/content-slider.php:535
3861
+ msgid "Text Shadow"
3862
+ msgstr "Textschatten"
3863
+
3864
+ #: modules/content-slider/content-slider.php:544
3865
+ #: modules/content-slider/content-slider.php:770
3866
+ #: modules/post-carousel/post-carousel.php:411
3867
+ #: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:716
3868
+ msgid "Text Background Color"
3869
+ msgstr "Texthintergrundfarbe"
3870
+
3871
+ #: modules/content-slider/content-slider.php:545
3872
+ #: modules/post-carousel/post-carousel.php:413
3873
+ #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:717
3874
+ msgid "The color applies to the overlay behind text over the background selections."
3875
+ msgstr ""
3876
+ "Die Farbe bezieht sich auf den Overlay hinter dem Text überhalb der "
3877
+ "Hintergrundauswahl."
3878
+
3879
+ #: modules/content-slider/content-slider.php:550
3880
+ #: modules/post-carousel/post-carousel.php:423
3881
+ #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:723
3882
+ msgid "Text Background Opacity"
3883
+ msgstr "Texthintergrunddurchsichtigkeit"
3884
+
3885
+ #: modules/content-slider/content-slider.php:558
3886
+ #: modules/post-slider/post-slider.php:740
3887
+ msgid "Text Background Height"
3888
+ msgstr "Texthintergrundhöhe"
3889
+
3890
+ #: modules/content-slider/content-slider.php:560
3891
+ #: modules/post-slider/post-slider.php:742
3892
+ msgid ""
3893
+ "Auto will allow the overlay to fit however long the text content is. 100% "
3894
+ "will fit the overlay to the top and bottom of the slide."
3895
+ msgstr ""
3896
+ "Bei >Auto< passt sich der Overlay der Länge des Textes an. 100% passt den "
3897
+ "Overlay oben und unten an die Slide an."
3898
+
3899
+ #: modules/content-slider/content-slider.php:562
3900
+ #: modules/post-slider/post-slider.php:744
3901
+ msgctxt "Background height."
3902
+ msgid "Auto"
3903
+ msgstr "Auto"
3904
+
3905
+ #: modules/content-slider/content-slider.php:579
3906
+ msgid ""
3907
+ "The link applies to the entire slide. If choosing a call to action type "
3908
+ "below, this link will also be used for the text or button."
3909
+ msgstr ""
3910
+ "Der Link bezieht sich auf die ganze Slide. Wenn Sie unten einen Aufruftyp "
3911
+ "auswählen, gilt dieser Link auch für den Text oder Button."
3912
+
3913
+ #: modules/content-slider/content-slider.php:721
3914
+ msgid "Border Radius"
3915
+ msgstr "Rahmenradius"
3916
+
3917
+ #: modules/content-slider/content-slider.php:732
3918
+ msgctxt "Module settings form tab. Display on mobile devices."
3919
+ msgid "Mobile"
3920
+ msgstr "Mobil"
3921
+
3922
+ #: modules/content-slider/content-slider.php:735
3923
+ msgid "Mobile Photo"
3924
+ msgstr "Mobil-Foto"
3925
+
3926
+ #: modules/content-slider/content-slider.php:741
3927
+ msgid ""
3928
+ "You can choose a different photo that the slide will change to on mobile "
3929
+ "devices or no photo if desired."
3930
+ msgstr ""
3931
+ "Sie können auswählen, dass die Slide auf Handys ein anderes oder gar kein "
3932
+ "Foto anzeigt."
3933
+
3934
+ #: modules/content-slider/content-slider.php:743
3935
+ msgid "Use Main Photo"
3936
+ msgstr "Hauptfoto benutzen"
3937
+
3938
+ #: modules/content-slider/content-slider.php:744
3939
+ msgid "Choose Another Photo"
3940
+ msgstr "Ein andere Foto auswählen"
3941
+
3942
+ #: modules/content-slider/content-slider.php:745
3943
+ msgid "No Photo"
3944
+ msgstr "Kein Foto"
3945
+
3946
+ #: modules/content-slider/content-slider.php:760
3947
+ msgid "Mobile Text Colors"
3948
+ msgstr "Mobile Textfarben"
3949
+
3950
+ #: modules/cta/cta.php:15
3951
+ msgid "Display a heading, subheading and a button."
3952
+ msgstr "Überschrift, Subheading und Button anzeigen"
3953
+
3954
+ #: modules/cta/cta.php:76
3955
+ msgid "Ready to find out more?"
3956
+ msgstr "Sind Sie bereit mehr herauszufinden?"
3957
+
3958
+ #: modules/cta/cta.php:91
3959
+ msgid "Drop us a line today for a free quote!"
3960
+ msgstr "Schicken Sie uns heute eine Textzeile für ein freies Zitat!"
3961
+
3962
+ #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
3963
+ #: modules/post-carousel/post-carousel.php:117
3964
+ #: modules/post-carousel/post-carousel.php:206
3965
+ #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:432
3966
+ #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
3967
+ #: modules/testimonials/testimonials.php:37
3968
+ #: modules/woocommerce/woocommerce.php:57
3969
+ msgid "Layout"
3970
+ msgstr "Layout"
3971
+
3972
+ #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
3973
+ msgid "Inline"
3974
+ msgstr "Inline"
3975
+
3976
+ #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
3977
+ msgid "Stacked"
3978
+ msgstr "Gestapelt"
3979
+
3980
+ #: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
3981
+ msgid "Spacing"
3982
+ msgstr "Abstand"
3983
+
3984
+ #: modules/cta/cta.php:246
3985
+ msgid "Button Link"
3986
+ msgstr "Button Link"
3987
+
3988
+ #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:121
3989
+ #: modules/post-grid/post-grid.php:55
3990
+ msgid "Gallery"
3991
+ msgstr "Galerie"
3992
+
3993
+ #: modules/gallery/gallery.php:15
3994
+ msgid "Display multiple photos in a gallery view."
3995
+ msgstr "Zeige mehrere Fotos in einer Galerieansicht."
3996
+
3997
+ #: modules/gallery/gallery.php:230
3998
+ msgid "Collage"
3999
+ msgstr "Collage"
4000
+
4001
+ #: modules/gallery/gallery.php:231
4002
+ msgctxt "Gallery layout: thumbnails."
4003
+ msgid "Thumbs"
4004
+ msgstr "Thumbs"
4005
+
4006
+ #: modules/gallery/gallery.php:267
4007
+ msgid "Photo Size"
4008
+ msgstr "Fotogröße"
4009
+
4010
+ #: modules/gallery/gallery.php:270
4011
+ msgctxt "Photo size."
4012
+ msgid "Small"
4013
+ msgstr "Klein"
4014
+
4015
+ #: modules/gallery/gallery.php:271
4016
+ msgctxt "Photo size."
4017
+ msgid "Medium"
4018
+ msgstr "Mittel"
4019
+
4020
+ #: modules/gallery/gallery.php:272
4021
+ msgctxt "Photo size."
4022
+ msgid "Large"
4023
+ msgstr "Groß"
4024
+
4025
+ #: modules/gallery/gallery.php:277
4026
+ msgid "Photo Spacing"
4027
+ msgstr "Fotoabstand"
4028
+
4029
+ #: modules/gallery/gallery.php:285
4030
+ msgid "Show Captions"
4031
+ msgstr "Zeige Bildunterschriften"
4032
+
4033
+ #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
4034
+ msgid "Never"
4035
+ msgstr "Nie"
4036
+
4037
+ #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
4038
+ msgid "On Hover"
4039
+ msgstr "Bei Hover"
4040
+
4041
+ #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
4042
+ msgid "Below Photo"
4043
+ msgstr "Unter Foto"
4044
+
4045
+ #: modules/gallery/gallery.php:292
4046
+ msgid ""
4047
+ "The caption pulls from whatever text you put in the caption area in the "
4048
+ "media manager for each image. The caption is also pulled directly from "
4049
+ "SmugMug if you have captions set in your gallery."
4050
+ msgstr ""
4051
+ "Als Bildunterschrift wird der Text verwendet, den Sie in das "
4052
+ "Bildunterschriftfeld im Media Manager eingeben."
4053
+
4054
+ #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4055
+ msgid "Click Action"
4056
+ msgstr "Aktion bei Klick"
4057
+
4058
+ #: modules/gallery/gallery.php:299
4059
+ msgctxt "Click action."
4060
+ msgid "None"
4061
+ msgstr "Keine"
4062
+
4063
+ #: modules/gallery/gallery.php:300 modules/photo/photo.php:468
4064
+ msgid "Lightbox"
4065
+ msgstr "Lightbox"
4066
+
4067
+ #: modules/gallery/gallery.php:301
4068
+ msgid "Photo Link"
4069
+ msgstr "Fotolink"
4070
+
4071
+ #: modules/heading/heading.php:15
4072
+ msgid "Display a title/page heading."
4073
+ msgstr "Titel/Seiten-Überschrift anzeigen"
4074
+
4075
+ #: modules/heading/heading.php:101
4076
+ msgid "HTML Tag"
4077
+ msgstr "HTML Tag"
4078
+
4079
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
4080
+ msgid "Custom Font Size"
4081
+ msgstr "Benutzerdefinierte Schriftgröße"
4082
+
4083
+ #: modules/heading/heading.php:137
4084
+ msgid "Mobile Structure"
4085
+ msgstr "Mobile Struktur"
4086
+
4087
+ #: modules/heading/heading.php:158
4088
+ msgid "Custom Alignment"
4089
+ msgstr "Benutzerdefinierte Ausrichtung"
4090
+
4091
+ #: modules/html/html.php:14
4092
+ msgid "HTML"
4093
+ msgstr "HTML"
4094
+
4095
+ #: modules/html/html.php:15
4096
+ msgid "Display raw HTML code."
4097
+ msgstr "Rohen HTML-Code anzeigen"
4098
+
4099
+ #: modules/icon-group/icon-group.php:14
4100
+ msgid "Icon Group"
4101
+ msgstr "Icongruppe"
4102
+
4103
+ #: modules/icon-group/icon-group.php:15
4104
+ msgid "Display a group of linked Font Awesome icons."
4105
+ msgstr "Zeige eine Gruppe von verknüpften Font Awesome Icons"
4106
+
4107
+ #: modules/icon-group/icon-group.php:125
4108
+ msgid "Add Icon"
4109
+ msgstr "Icon hinzufügen"
4110
+
4111
+ #: modules/icon/icon.php:15
4112
+ msgid "Display an icon and optional title."
4113
+ msgstr "Zeige ein Icon und einen optionalen Titel an."
4114
+
4115
+ #: modules/map/map.php:14
4116
+ msgid "Map"
4117
+ msgstr "Karte"
4118
+
4119
+ #: modules/map/map.php:15
4120
+ msgid "Display a Google map."
4121
+ msgstr "Zeige eine Google Map an."
4122
+
4123
+ #: modules/map/map.php:33
4124
+ msgid "Address"
4125
+ msgstr "Adresse"
4126
+
4127
+ #: modules/map/map.php:34
4128
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4129
+ msgstr "Beispielstraße 21, 93047 Regensburg"
4130
+
4131
+ #: modules/photo/photo.php:26
4132
+ msgid "Upload a photo or display one from the media library."
4133
+ msgstr "Ein Foto hochladen oder eines von der Medienbibliothek anzeigen."
4134
+
4135
+ #: modules/photo/photo.php:391
4136
+ msgid "Photo Source"
4137
+ msgstr "Fotoquelle"
4138
+
4139
+ #: modules/photo/photo.php:395 modules/photo/photo.php:467
4140
+ msgid "URL"
4141
+ msgstr "URL"
4142
+
4143
+ #: modules/photo/photo.php:412
4144
+ msgid "Photo URL"
4145
+ msgstr "Foto URL"
4146
+
4147
+ #: modules/photo/photo.php:413
4148
+ msgid "http://www.example.com/my-photo.jpg"
4149
+ msgstr "http://www.beispiel.de/mein-foto.jpg"
4150
+
4151
+ #: modules/photo/photo.php:420 modules/post-slider/post-slider.php:479
4152
+ msgctxt "Crop."
4153
+ msgid "None"
4154
+ msgstr "Kein"
4155
+
4156
+ #: modules/photo/photo.php:441 modules/photo/photo.php:455
4157
+ msgid "Caption"
4158
+ msgstr "Bildunterschrift"
4159
+
4160
+ #: modules/photo/photo.php:445
4161
+ msgid "Show Caption"
4162
+ msgstr "Bildunterschrift anzeigen"
4163
+
4164
+ #: modules/photo/photo.php:464
4165
+ msgid "Link Type"
4166
+ msgstr "Linktyp"
4167
+
4168
+ #: modules/photo/photo.php:466
4169
+ msgctxt "Link type."
4170
+ msgid "None"
4171
+ msgstr "Keiner"
4172
+
4173
+ #: modules/photo/photo.php:469
4174
+ msgid "Photo File"
4175
+ msgstr "Fotodatei"
4176
+
4177
+ #: modules/photo/photo.php:480
4178
+ msgid ""
4179
+ "Link type applies to how the image should be linked on click. You can choose "
4180
+ "a specific URL, the individual photo or a separate page with the photo."
4181
+ msgstr ""
4182
+ "Der Linktyp gibt an wie das Bild bei Klick verlinkt wird. Sie können eine "
4183
+ "URL, ein individuelles Foto oder eine separate Seite mit dem Foto wählen."
4184
+
4185
+ #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
4186
+ msgid "Link URL"
4187
+ msgstr "Link URL"
4188
+
4189
+ #: modules/post-carousel/includes/post-gallery-loop.php:35
4190
+ #: modules/post-carousel/includes/post-grid-loop.php:22
4191
+ #: modules/post-grid/includes/post-feed.php:14
4192
+ #: modules/post-grid/includes/post-grid.php:24
4193
+ #: modules/post-slider/includes/post-loop.php:29
4194
+ #, php-format
4195
+ msgctxt "%s stands for author name."
4196
+ msgid "By %s"
4197
+ msgstr "Von %s"
4198
+
4199
+ #: modules/post-carousel/post-carousel.php:14
4200
+ msgid "Posts Carousel"
4201
+ msgstr "Beitrags-Karussel"
4202
+
4203
+ #: modules/post-carousel/post-carousel.php:15
4204
+ msgid "Display a carousel of your WordPress posts."
4205
+ msgstr "Zeigt ein Karussel aller Beiträge"
4206
+
4207
+ #: modules/post-carousel/post-carousel.php:110
4208
+ #: modules/post-slider/post-slider.php:337
4209
+ msgid "Slider"
4210
+ msgstr ""
4211
+
4212
+ #: modules/post-carousel/post-carousel.php:120
4213
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:91
4214
+ msgid "Grid"
4215
+ msgstr "Raster"
4216
+
4217
+ #: modules/post-carousel/post-carousel.php:152
4218
+ #: modules/post-slider/post-slider.php:378 modules/video/video.php:120
4219
+ msgid "Loop"
4220
+ msgstr "Schleife"
4221
+
4222
+ #: modules/post-carousel/post-carousel.php:168
4223
+ #: modules/post-slider/post-slider.php:394
4224
+ msgid "Number of Posts"
4225
+ msgstr "Anzahl der Beiträge"
4226
+
4227
+ #: modules/post-carousel/post-carousel.php:175
4228
+ #: modules/post-slider/post-slider.php:401
4229
+ msgid "Slider Controls"
4230
+ msgstr "Slidersteuerung"
4231
+
4232
+ #: modules/post-carousel/post-carousel.php:209
4233
+ #: modules/post-grid/post-grid.php:14
4234
+ msgid "Posts"
4235
+ msgstr "Beiträge"
4236
+
4237
+ #: modules/post-carousel/post-carousel.php:213
4238
+ msgid "Post Max Width"
4239
+ msgstr "Maximale Beitragsbreite"
4240
+
4241
+ #: modules/post-carousel/post-carousel.php:221
4242
+ #: modules/post-grid/post-grid.php:103
4243
+ msgid "Post Spacing"
4244
+ msgstr "Postabstand"
4245
+
4246
+ #: modules/post-carousel/post-carousel.php:229
4247
+ msgid "Equalize Column Heights"
4248
+ msgstr "Spaltenhöhe ausgleichen"
4249
+
4250
+ #: modules/post-carousel/post-carousel.php:238
4251
+ msgid "Post Hover Transition"
4252
+ msgstr "Beitrags Hover-Übergang"
4253
+
4254
+ #: modules/post-carousel/post-carousel.php:242
4255
+ #: modules/post-grid/post-grid.php:248
4256
+ msgid "Slide Up"
4257
+ msgstr "Hochsliden"
4258
+
4259
+ #: modules/post-carousel/post-carousel.php:243
4260
+ #: modules/post-grid/post-grid.php:249
4261
+ msgid "Slide Down"
4262
+ msgstr "Heruntersliden"
4263
+
4264
+ #: modules/post-carousel/post-carousel.php:244
4265
+ #: modules/post-grid/post-grid.php:250
4266
+ msgid "Scale Up"
4267
+ msgstr "Hochskalieren"
4268
+
4269
+ #: modules/post-carousel/post-carousel.php:245
4270
+ #: modules/post-grid/post-grid.php:251
4271
+ msgid "Scale Down"
4272
+ msgstr "Herunterskalieren"
4273
+
4274
+ #: modules/post-carousel/post-carousel.php:251
4275
+ #: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:455
4276
+ msgid "Featured Image"
4277
+ msgstr "Featured Image"
4278
+
4279
+ #: modules/post-carousel/post-carousel.php:279
4280
+ #: modules/post-grid/post-grid.php:261
4281
+ msgid "Use Icon for Posts"
4282
+ msgstr "Icon für Beiträge nutzen"
4283
+
4284
+ #: modules/post-carousel/post-carousel.php:293
4285
+ #: modules/post-grid/post-grid.php:275
4286
+ msgid "Post Icon"
4287
+ msgstr "Beitrags-Icon"
4288
+
4289
+ #: modules/post-carousel/post-carousel.php:297
4290
+ #: modules/post-grid/post-grid.php:279
4291
+ msgid "Post Icon Position"
4292
+ msgstr "Position des Beitrags-Icon"
4293
+
4294
+ #: modules/post-carousel/post-carousel.php:300
4295
+ #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
4296
+ msgid "Above Text"
4297
+ msgstr "Text darüber"
4298
+
4299
+ #: modules/post-carousel/post-carousel.php:301
4300
+ #: modules/post-grid/post-grid.php:283
4301
+ msgid "Below Text"
4302
+ msgstr "Text darunter"
4303
+
4304
+ #: modules/post-carousel/post-carousel.php:306
4305
+ #: modules/post-grid/post-grid.php:288
4306
+ msgid "Post Icon Size"
4307
+ msgstr "Beitrag Icongröße"
4308
+
4309
+ #: modules/post-carousel/post-carousel.php:315
4310
+ #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:490
4311
+ msgid "Post Info"
4312
+ msgstr "Postinfo"
4313
+
4314
+ #: modules/post-carousel/post-carousel.php:342
4315
+ #: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:517
4316
+ msgid "Date Format"
4317
+ msgstr "Datumsformat"
4318
+
4319
+ #: modules/post-carousel/post-carousel.php:372
4320
+ #: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:556
4321
+ msgid "More Link"
4322
+ msgstr "Mehr Link"
4323
+
4324
+ #: modules/post-carousel/post-carousel.php:381
4325
+ #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:565
4326
+ msgid "More Link Text"
4327
+ msgstr "Mehr Link-Text"
4328
+
4329
+ #: modules/post-carousel/post-carousel.php:418
4330
+ #: modules/post-grid/post-grid.php:307
4331
+ msgid "Post Icon Color"
4332
+ msgstr "Beitrag Iconfarbe"
4333
+
4334
+ #: modules/post-grid/includes/frontend.php:41
4335
+ msgid "No posts found."
4336
+ msgstr "Keine Beiträge gefunden."
4337
+
4338
+ #: modules/post-grid/post-grid.php:15
4339
+ msgid "Display a grid of your WordPress posts."
4340
+ msgstr "Zeigt ein Raster ihrer WordPress Beiträge."
4341
+
4342
+ #: modules/post-grid/post-grid.php:51
4343
+ msgid "Layout Style"
4344
+ msgstr "Layout Stil"
4345
+
4346
+ #: modules/post-grid/post-grid.php:56
4347
+ msgid "Feed"
4348
+ msgstr "Feed"
4349
+
4350
+ #: modules/post-grid/post-grid.php:74
4351
+ msgid "Pagination Style"
4352
+ msgstr "Nummerierungsstil"
4353
+
4354
+ #: modules/post-grid/post-grid.php:77
4355
+ msgid "Numbers"
4356
+ msgstr "Nummern"
4357
+
4358
+ #: modules/post-grid/post-grid.php:79
4359
+ msgctxt "Pagination style."
4360
+ msgid "None"
4361
+ msgstr "Keine"
4362
+
4363
+ #: modules/post-grid/post-grid.php:84
4364
+ msgid "Posts Per Page"
4365
+ msgstr "Beiträge pro Seite"
4366
+
4367
+ #: modules/post-grid/post-grid.php:95
4368
+ msgid "Post Width"
4369
+ msgstr "Postbreite"
4370
+
4371
+ #: modules/post-grid/post-grid.php:134
4372
+ msgid "Beside Text"
4373
+ msgstr "Neben Text"
4374
+
4375
+ #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:533
4376
+ msgid "Comments"
4377
+ msgstr "Kommentare"
4378
+
4379
+ #: modules/post-grid/post-grid.php:211
4380
+ msgid "Content Type"
4381
+ msgstr "Inhaltstyp"
4382
+
4383
+ #: modules/post-grid/post-grid.php:214
4384
+ msgid "Excerpt"
4385
+ msgstr "Kurzbeschreibung"
4386
+
4387
+ #: modules/post-grid/post-grid.php:215
4388
+ msgid "Full Text"
4389
+ msgstr "Gesamter Text"
4390
+
4391
+ #: modules/post-grid/post-grid.php:244
4392
+ msgid "Hover Transition"
4393
+ msgstr "Hover Übergang"
4394
+
4395
+ #: modules/post-slider/post-slider.php:14
4396
+ msgid "Posts Slider"
4397
+ msgstr "Beitrag-Slider"
4398
+
4399
+ #: modules/post-slider/post-slider.php:15
4400
+ msgid "Display a slider of your WordPress posts."
4401
+ msgstr "Zeigt einen Slider mit deinen Beiträgen"
4402
+
4403
+ #: modules/post-slider/post-slider.php:349
4404
+ msgid ""
4405
+ "This setting is the minimum height of the post slider. Content will expand "
4406
+ "the height automatically."
4407
+ msgstr ""
4408
+ "Diese Einstellung legt die minimale Höhe des Beitrag-Sliders fest. Die Höhe "
4409
+ "wird vom Inhalt automatisch angepasst."
4410
+
4411
+ #: modules/post-slider/post-slider.php:439
4412
+ msgid "Show Featured Image?"
4413
+ msgstr "Beitragsbild anzeigen?"
4414
+
4415
+ #: modules/post-slider/post-slider.php:623
4416
+ msgid ""
4417
+ "The position will move the content layout selections left, right or bottom "
4418
+ "over the background of the slide."
4419
+ msgstr ""
4420
+
4421
+ #: modules/post-slider/post-slider.php:642
4422
+ msgid ""
4423
+ "The position will move the content layout selections left or right or center "
4424
+ "of the thumbnail of the slide."
4425
+ msgstr ""
4426
+
4427
+ #: modules/post-slider/post-slider.php:658
4428
+ msgid "Text Width"
4429
+ msgstr "Text Breite"
4430
+
4431
+ #: modules/post-slider/post-slider.php:666
4432
+ msgid "Text Padding"
4433
+ msgstr ""
4434
+
4435
+ #: modules/post-slider/post-slider.php:731
4436
+ msgid "Text Background Gradient"
4437
+ msgstr "Text Hintergrundverlauf"
4438
+
4439
+ #: modules/pricing-table/pricing-table.php:14
4440
+ msgid "Pricing Table"
4441
+ msgstr "Preisliste"
4442
+
4443
+ #: modules/pricing-table/pricing-table.php:15
4444
+ msgid "A simple pricing table generator."
4445
+ msgstr "Ein einfacher Preislistengenerator."
4446
+
4447
+ #: modules/pricing-table/pricing-table.php:26
4448
+ msgid "Pricing Boxes"
4449
+ msgstr "Preisboxen"
4450
+
4451
+ #: modules/pricing-table/pricing-table.php:33
4452
+ msgid "Pricing Box"
4453
+ msgstr "Preisbox"
4454
+
4455
+ #: modules/pricing-table/pricing-table.php:50
4456
+ msgid "Box Spacing"
4457
+ msgstr "Boxabstand"
4458
+
4459
+ #: modules/pricing-table/pricing-table.php:53
4460
+ #: modules/testimonials/testimonials.php:40
4461
+ msgid "Wide"
4462
+ msgstr "Weit"
4463
+
4464
+ #: modules/pricing-table/pricing-table.php:54
4465
+ msgid "Tight"
4466
+ msgstr "Eng"
4467
+
4468
+ #: modules/pricing-table/pricing-table.php:59
4469
+ msgid "Features Min Height"
4470
+ msgstr "Minimale Höhe Features"
4471
+
4472
+ #: modules/pricing-table/pricing-table.php:63
4473
+ msgid ""
4474
+ "Use this to normalize the height of your boxes when they have different "
4475
+ "numbers of features."
4476
+ msgstr ""
4477
+ "Benutzen Sei dies um die Höhe ihrer Boxen zu Normalisieren, wenn sie "
4478
+ "unterschiedliche Anzahlen an Features haben."
4479
+
4480
+ #: modules/pricing-table/pricing-table.php:70
4481
+ msgctxt "Border size."
4482
+ msgid "Wide"
4483
+ msgstr "Weit"
4484
+
4485
+ #: modules/pricing-table/pricing-table.php:71
4486
+ msgctxt "Border size."
4487
+ msgid "Tight"
4488
+ msgstr "Eng"
4489
+
4490
+ #: modules/pricing-table/pricing-table.php:84
4491
+ msgid "Add Pricing Box"
4492
+ msgstr "Preisbox hinzufügen"
4493
+
4494
+ #: modules/pricing-table/pricing-table.php:98
4495
+ msgid "Title Size"
4496
+ msgstr "Titelgröße"
4497
+
4498
+ #: modules/pricing-table/pricing-table.php:107
4499
+ msgid "Price Box"
4500
+ msgstr "Preisbox"
4501
+
4502
+ #: modules/pricing-table/pricing-table.php:111
4503
+ #: modules/woocommerce/woocommerce.php:190
4504
+ msgid "Price"
4505
+ msgstr "Preis"
4506
+
4507
+ #: modules/pricing-table/pricing-table.php:115
4508
+ msgid "Duration"
4509
+ msgstr "Dauer"
4510
+
4511
+ #: modules/pricing-table/pricing-table.php:116
4512
+ msgid "per Year"
4513
+ msgstr "pro Jahr"
4514
+
4515
+ #: modules/pricing-table/pricing-table.php:120
4516
+ msgid "Price Size"
4517
+ msgstr "Preishöhe"
4518
+
4519
+ #: modules/pricing-table/pricing-table.php:133
4520
+ #: modules/subscribe-form/subscribe-form.php:168
4521
+ msgid "Button Text"
4522
+ msgstr "Buttontext"
4523
+
4524
+ #: modules/pricing-table/pricing-table.php:137
4525
+ msgid "Button URL"
4526
+ msgstr "Button URL"
4527
+
4528
+ #: modules/pricing-table/pricing-table.php:142
4529
+ msgctxt "Price features displayed in pricing box."
4530
+ msgid "Features"
4531
+ msgstr "Features"
4532
+
4533
+ #: modules/pricing-table/pricing-table.php:147
4534
+ msgid "One feature per line. HTML is okay."
4535
+ msgstr "Ein Feature pro Zeile. HTML ist erlaubt."
4536
+
4537
+ #: modules/pricing-table/pricing-table.php:162
4538
+ msgid "Box Background"
4539
+ msgstr "Boxhintergrund"
4540
+
4541
+ #: modules/pricing-table/pricing-table.php:167
4542
+ msgid "Box Foreground"
4543
+ msgstr "Boxvordergrund"
4544
+
4545
+ #: modules/pricing-table/pricing-table.php:173
4546
+ msgid "Accent Color"
4547
+ msgstr "Akzentfarbe"
4548
+
4549
+ #: modules/pricing-table/pricing-table.php:178
4550
+ msgid "Accent Text Color"
4551
+ msgstr "Akzenttextfarbe"
4552
+
4553
+ #: modules/pricing-table/pricing-table.php:182
4554
+ msgid "Box Top Margin"
4555
+ msgstr "Box Abstand aussen oben"
4556
+
4557
+ #: modules/rich-text/rich-text.php:15
4558
+ msgid "A WYSIWYG text editor."
4559
+ msgstr "Ein WYSIWYG (What you see is what you get) Texteditor."
4560
+
4561
+ #: modules/separator/separator.php:14
4562
+ msgid "Separator"
4563
+ msgstr "Separator"
4564
+
4565
+ #: modules/separator/separator.php:15
4566
+ msgid "A divider line to separate content."
4567
+ msgstr "Eine Trennline um Inhalt zu trennen."
4568
+
4569
+ #: modules/separator/separator.php:85
4570
+ msgid ""
4571
+ "The type of border to use. Double borders must have a height of at least 3px "
4572
+ "to render properly."
4573
+ msgstr ""
4574
+ "Der zu benutzende Rahmentyp. Doppelte Rahmen müssen mindestens eine Höhe von "
4575
+ "3px haben um korrekt dargestellt zu werden."
4576
+
4577
+ #: modules/sidebar/includes/settings-general.php:5
4578
+ #: modules/sidebar/sidebar.php:14
4579
+ msgid "Sidebar"
4580
+ msgstr "Seitenleiste"
4581
+
4582
+ #: modules/sidebar/sidebar.php:15
4583
+ msgid "Display a WordPress sidebar that has been registered by the current theme."
4584
+ msgstr "Zeige eine WordPress Seitenleiste die vom aktuellen Theme registriert wurde."
4585
+
4586
+ #: modules/slideshow/slideshow.php:14
4587
+ msgid "Slideshow"
4588
+ msgstr "Diashow"
4589
+
4590
+ #: modules/slideshow/slideshow.php:15
4591
+ msgid "Display multiple photos in a slideshow view."
4592
+ msgstr "Zeige mehrere Fotos in einer Diashow."
4593
+
4594
+ #: modules/slideshow/slideshow.php:310
4595
+ msgid "Skin Color"
4596
+ msgstr "Hautfarbe"
4597
+
4598
+ #: modules/slideshow/slideshow.php:313
4599
+ msgctxt "Color."
4600
+ msgid "Light"
4601
+ msgstr "Hell"
4602
+
4603
+ #: modules/slideshow/slideshow.php:314
4604
+ msgctxt "Color."
4605
+ msgid "Dark"
4606
+ msgstr "Dunkel"
4607
+
4608
+ #: modules/slideshow/slideshow.php:316
4609
+ msgid ""
4610
+ "If your overall theme/images are lighter in color, light will display "
4611
+ "buttons in a darker color scheme and vice versa for dark."
4612
+ msgstr ""
4613
+ "Wenn Ihr/e Theme/Bilder insgesamt eher in einer hellen Farbe ist/sind, wird "
4614
+ ">Dunkel< die Buttons in einem dunkleren Farbschema darstellen (und "
4615
+ "umgekehrt)."
4616
+
4617
+ #: modules/slideshow/slideshow.php:326
4618
+ msgid ""
4619
+ "Crop set to no will fit the slideshow images to the height you specify and "
4620
+ "keep the width proportional, whereas crop set to yes will fit the slideshow "
4621
+ "images to all sides of the content area while cropping the left and right to "
4622
+ "fit the height you specify."
4623
+ msgstr ""
4624
+ "Wenn >Zugeschnitten< nicht ausgewählt wurde, passt die Diashow Bilder an die "
4625
+ "angegebene Höhe an und hält die Proportionen zur Breite ein. Wenn "
4626
+ ">Zugeschnitten< ausgewählt wurde werden alle Bilder des Inhaltsfeldes links "
4627
+ "und rechts abgeschnitten, damit die angegebene Höhe erreicht wird."
4628
+
4629
+ #: modules/slideshow/slideshow.php:330
4630
+ msgid "Disable Right-Click"
4631
+ msgstr "Rechtsklick deaktivieren"
4632
+
4633
+ #: modules/slideshow/slideshow.php:350
4634
+ msgctxt "Click action type."
4635
+ msgid "None"
4636
+ msgstr "Kein"
4637
+
4638
+ #: modules/slideshow/slideshow.php:374
4639
+ msgid "Playback"
4640
+ msgstr "Playback"
4641
+
4642
+ #: modules/slideshow/slideshow.php:400
4643
+ msgctxt "Slideshow transition."
4644
+ msgid "None"
4645
+ msgstr "Kein"
4646
+
4647
+ #: modules/slideshow/slideshow.php:437
4648
+ msgid "Controls"
4649
+ msgstr "Steuerung"
4650
+
4651
+ #: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
4652
+ msgid "Navigation Arrows"
4653
+ msgstr "Navigationspfeile"
4654
+
4655
+ #: modules/slideshow/slideshow.php:450
4656
+ msgid ""
4657
+ "Navigational arrows allow the visitor to freely move through the images in "
4658
+ "your slideshow. These are larger arrows that overlay your slideshow images "
4659
+ "and are separate from the control bar navigational arrows."
4660
+ msgstr ""
4661
+ "Navigationspfeile erlauben es dem Nutzer sich frei durch die Bilder der "
4662
+ "Diashow zu bewegen. Es handelt sich dabei um größere Pfeile, die ihre "
4663
+ "Diashow überlagern und nicht bin den Navigationspfeilen der Steuerleiste zu "
4664
+ "verwechseln sind."
4665
+
4666
+ #: modules/slideshow/slideshow.php:455
4667
+ msgid "Control Bar"
4668
+ msgstr "Steuerleiste"
4669
+
4670
+ #: modules/slideshow/slideshow.php:459
4671
+ msgid "Nav Type"
4672
+ msgstr "Nav-Typ"
4673
+
4674
+ #: modules/slideshow/slideshow.php:462
4675
+ msgctxt "Nav type."
4676
+ msgid "None"
4677
+ msgstr "Kein"
4678
+
4679
+ #: modules/slideshow/slideshow.php:463
4680
+ msgid "Buttons"
4681
+ msgstr "Buttons"
4682
+
4683
+ #: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
4684
+ msgid "Thumbs"
4685
+ msgstr "Thumbs"
4686
+
4687
+ #: modules/slideshow/slideshow.php:479
4688
+ msgid "Nav Position"
4689
+ msgstr "Nav-Position"
4690
+
4691
+ #: modules/slideshow/slideshow.php:489
4692
+ msgid "Control Bar Buttons"
4693
+ msgstr "Steuerleisten-Buttons"
4694
+
4695
+ #: modules/slideshow/slideshow.php:502
4696
+ msgid "Play Button"
4697
+ msgstr "Play-Button"
4698
+
4699
+ #: modules/slideshow/slideshow.php:511
4700
+ msgid "Fullscreen Button"
4701
+ msgstr "Vollbildmodus-Button"
4702
+
4703
+ #: modules/slideshow/slideshow.php:520
4704
+ msgid "Photo Count"
4705
+ msgstr "Fotozähler"
4706
+
4707
+ #: modules/slideshow/slideshow.php:529
4708
+ msgid "Thumbs Button"
4709
+ msgstr "Thumbs-Button"
4710
+
4711
+ #: modules/slideshow/slideshow.php:538
4712
+ msgid "Caption Button"
4713
+ msgstr "Bildunterschrift-Button"
4714
+
4715
+ #: modules/slideshow/slideshow.php:547
4716
+ msgid "Social Button"
4717
+ msgstr "Social Button"
4718
+
4719
+ #: modules/slideshow/slideshow.php:557
4720
+ msgid "Control Bar Overlay"
4721
+ msgstr "Steuerleisten-Overlay"
4722
+
4723
+ #: modules/slideshow/slideshow.php:561
4724
+ msgid "Overlay Enabled"
4725
+ msgstr "Overlay aktiviert"
4726
+
4727
+ #: modules/slideshow/slideshow.php:572
4728
+ msgid ""
4729
+ "Control bar overlay specifies if the control bar buttons you choose overlay "
4730
+ "your slideshow images or site below the slideshow completely."
4731
+ msgstr ""
4732
+ "Steuerbar-Overlay gibt an, ob die gewählten Steuerleisten-Buttons unterhalb "
4733
+ "der Diashow die Diashowbilder vollständig überlagern."
4734
+
4735
+ #: modules/slideshow/slideshow.php:576
4736
+ msgid "Overlay Hide"
4737
+ msgstr "Overlay verstecken"
4738
+
4739
+ #: modules/slideshow/slideshow.php:582
4740
+ msgid ""
4741
+ "Overlay hide will hide the control bar after however many seconds you "
4742
+ "specify below. They will reappear upon mouse over."
4743
+ msgstr ""
4744
+ ">Overlay verstecken< versteckt die Steuerleiste nach der unten angegebenen "
4745
+ "Anzahl an Sekunden. Die Leiste erscheint wieder, wenn Sie mit der Maus "
4746
+ "darüber fahren."
4747
+
4748
+ #: modules/slideshow/slideshow.php:586
4749
+ msgid "Overlay Hide Delay"
4750
+ msgstr "Overlay verstecken - Delay"
4751
+
4752
+ #: modules/slideshow/slideshow.php:598
4753
+ msgid "Thumbs Size"
4754
+ msgstr "Thumbs-Größe"
4755
+
4756
+ #: modules/slideshow/slideshow.php:607
4757
+ msgid "Social"
4758
+ msgstr "Social"
4759
+
4760
+ #: modules/slideshow/slideshow.php:611
4761
+ msgid "Facebook Button"
4762
+ msgstr "Facebook-Button"
4763
+
4764
+ #: modules/slideshow/slideshow.php:623
4765
+ msgid "Twitter Button"
4766
+ msgstr "Twitter-Button"
4767
+
4768
+ #: modules/slideshow/slideshow.php:635
4769
+ msgid "Google Plus Button"
4770
+ msgstr "Google Plus-Button"
4771
+
4772
+ #: modules/slideshow/slideshow.php:647
4773
+ msgid "Pinterest Button"
4774
+ msgstr "Pinterest-Button"
4775
+
4776
+ #: modules/social-buttons/social-buttons.php:14
4777
+ msgid "Social Buttons"
4778
+ msgstr "Social Buttons"
4779
+
4780
+ #: modules/social-buttons/social-buttons.php:15
4781
+ msgid "Displays social buttons."
4782
+ msgstr "Social Buttons anzeigen"
4783
+
4784
+ #: modules/social-buttons/social-buttons.php:71
4785
+ msgid "Target URL"
4786
+ msgstr "Ziel-URL"
4787
+
4788
+ #: modules/social-buttons/social-buttons.php:75
4789
+ msgid "Current Page"
4790
+ msgstr "Aktuelle Seite"
4791
+
4792
+ #: modules/social-buttons/social-buttons.php:82
4793
+ msgid ""
4794
+ "The Target URL field correlates to the page you would like your social icons "
4795
+ "to interface with. For example, if you show Facebook, the user will \"Like\" "
4796
+ "whatever you put in this field."
4797
+ msgstr ""
4798
+ "Das Ziel-URL-Feld entspricht der Seite mit der die Social Icons "
4799
+ "zusammenabeiten. Zum Beispiel, wenn Sie Facebook angeben, wird der Nutzer "
4800
+ "Liken, was Sie in dieses Feld stellen."
4801
+
4802
+ #: modules/social-buttons/social-buttons.php:89
4803
+ msgid "Custom URL"
4804
+ msgstr "Benutzerdefinierte URL"
4805
+
4806
+ #: modules/social-buttons/social-buttons.php:107
4807
+ msgid "Show Facebook"
4808
+ msgstr "Facebook anzeigen"
4809
+
4810
+ #: modules/social-buttons/social-buttons.php:116
4811
+ msgid "Show Twitter"
4812
+ msgstr "Twitter anzeigen"
4813
+
4814
+ #: modules/social-buttons/social-buttons.php:125
4815
+ msgid "Show Google+"
4816
+ msgstr "Google+ anzeigen"
4817
+
4818
+ #: modules/subscribe-form/includes/frontend.php:5
4819
+ msgctxt "First and last name."
4820
+ msgid "Name"
4821
+ msgstr ""
4822
+
4823
+ #: modules/subscribe-form/includes/frontend.php:12
4824
+ msgid "Please enter a valid email address."
4825
+ msgstr "Bitte geben Sie eine gültige Adresse an."
4826
+
4827
+ #: modules/subscribe-form/includes/frontend.php:41
4828
+ msgid "Something went wrong. Please check your entries and try again."
4829
+ msgstr ""
4830
+ "Etwas ist schief gelaufen. Bitte prüfen Sie Ihre Eingaben und versuchen Sie "
4831
+ "es erneut."
4832
+
4833
+ #: modules/subscribe-form/subscribe-form.php:18
4834
+ msgid "Subscribe Form"
4835
+ msgstr "Abonnement-Formular"
4836
+
4837
+ #: modules/subscribe-form/subscribe-form.php:19
4838
+ msgid "Adds a simple subscribe form to your layout."
4839
+ msgstr "Fügt ein Abonnement-Formular zu Ihrem Layout hinzu."
4840
+
4841
+ #: modules/subscribe-form/subscribe-form.php:118
4842
+ msgid "Success"
4843
+ msgstr "Erfolg"
4844
+
4845
+ #: modules/subscribe-form/subscribe-form.php:122
4846
+ msgid "Success Action"
4847
+ msgstr ""
4848
+
4849
+ #: modules/subscribe-form/subscribe-form.php:124
4850
+ msgid "Show Message"
4851
+ msgstr "Nachricht anzeigen"
4852
+
4853
+ #: modules/subscribe-form/subscribe-form.php:125
4854
+ msgid "Redirect"
4855
+ msgstr ""
4856
+
4857
+ #: modules/subscribe-form/subscribe-form.php:144
4858
+ msgid "Thanks for subscribing! Please check your email for further instructions."
4859
+ msgstr ""
4860
+ "Vielen Dank für Ihr Abonnement! Bitte prüfen Sie Ihre E-Mail für weitere "
4861
+ "Details."
4862
+
4863
+ #: modules/subscribe-form/subscribe-form.php:151
4864
+ msgid "Success URL"
4865
+ msgstr ""
4866
+
4867
+ #: modules/subscribe-form/subscribe-form.php:169
4868
+ msgid "Subscribe!"
4869
+ msgstr "Abonnieren!"
4870
+
4871
+ #: modules/tabs/tabs.php:14
4872
+ msgid "Tabs"
4873
+ msgstr "Tabs"
4874
+
4875
+ #: modules/tabs/tabs.php:15
4876
+ msgid "Display a collection of tabbed content."
4877
+ msgstr "Eine Sammlung von Inhalten mit Tabs anzeigen."
4878
+
4879
+ #: modules/tabs/tabs.php:55
4880
+ msgid "Horizontal"
4881
+ msgstr "Horizontal"
4882
+
4883
+ #: modules/tabs/tabs.php:56
4884
+ msgid "Vertical"
4885
+ msgstr "Vertikal"
4886
+
4887
+ #: modules/testimonials/testimonials.php:14
4888
+ #: modules/testimonials/testimonials.php:60
4889
+ #: modules/testimonials/testimonials.php:174
4890
+ msgid "Testimonials"
4891
+ msgstr "Empfehlungen"
4892
+
4893
+ #: modules/testimonials/testimonials.php:15
4894
+ msgid "An animated tesimonials area."
4895
+ msgstr "Ein animiertes Feld für Empfehlungen."
4896
+
4897
+ #: modules/testimonials/testimonials.php:41
4898
+ msgid "Compact"
4899
+ msgstr "Kompakt"
4900
+
4901
+ #: modules/testimonials/testimonials.php:51
4902
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
4903
+ msgstr "Weit steht für 1-spaltige Zeilen, Kompakt für mehrspaltige Zeilen."
4904
+
4905
+ #: modules/testimonials/testimonials.php:78
4906
+ msgid "Slider Settings"
4907
+ msgstr "Slidereinstellungen"
4908
+
4909
+ #: modules/testimonials/testimonials.php:135
4910
+ msgid "Arrow Color"
4911
+ msgstr "Pfeilfarbe"
4912
+
4913
+ #: modules/testimonials/testimonials.php:165
4914
+ msgid "Dot Color"
4915
+ msgstr "Punktfarbe"
4916
+
4917
+ #: modules/testimonials/testimonials.php:181
4918
+ msgid "Testimonial"
4919
+ msgstr "Empfehlung"
4920
+
4921
+ #: modules/testimonials/testimonials.php:197
4922
+ msgid "Add Testimonial"
4923
+ msgstr "Empfehlung hinzufügen"
4924
+
4925
+ #: modules/video/video.php:20
4926
+ msgid "Render a WordPress or embedable video."
4927
+ msgstr "Ein eingebettetes Video rendern"
4928
+
4929
+ #: modules/video/video.php:83
4930
+ msgid "Video Type"
4931
+ msgstr "Videotyp"
4932
+
4933
+ #: modules/video/video.php:87
4934
+ msgid "Embed"
4935
+ msgstr "Einbetten"
4936
+
4937
+ #: modules/video/video.php:104
4938
+ msgctxt "Video preview/fallback image."
4939
+ msgid "Poster"
4940
+ msgstr "Poster"
4941
+
4942
+ #: modules/widget/includes/frontend.php:35
4943
+ #: modules/widget/includes/settings-general.php:46
4944
+ #, php-format
4945
+ msgctxt "%s stands for widget slug."
4946
+ msgid "%s no longer exists."
4947
+ msgstr "%s existiert nicht mehr."
4948
+
4949
+ #: modules/widget/widget.php:14
4950
+ msgid "Widget"
4951
+ msgstr "Widget"
4952
+
4953
+ #: modules/widget/widget.php:15
4954
+ msgid "Display a WordPress widget."
4955
+ msgstr "Ein WP-Widget anzeigen."
4956
+
4957
+ #: modules/woocommerce/woocommerce.php:16
4958
+ msgid "WooCommerce"
4959
+ msgstr "WooCommerce"
4960
+
4961
+ #: modules/woocommerce/woocommerce.php:17
4962
+ msgid "Display products or categories from your WooCommerce store."
4963
+ msgstr "Produkte oder Kategorien von WooCommerce anzeigen."
4964
+
4965
+ #: modules/woocommerce/woocommerce.php:61
4966
+ msgid "Single Product"
4967
+ msgstr "Einzelprodukt"
4968
+
4969
+ #: modules/woocommerce/woocommerce.php:62
4970
+ #: modules/woocommerce/woocommerce.php:113
4971
+ msgid "Multiple Products"
4972
+ msgstr "Mehrere Produkte"
4973
+
4974
+ #: modules/woocommerce/woocommerce.php:63
4975
+ msgid "\"Add to Cart\" Button"
4976
+ msgstr "\"Zum Einkaufswagen hinzufügen\" Button"
4977
+
4978
+ #: modules/woocommerce/woocommerce.php:64
4979
+ msgid "Categories"
4980
+ msgstr "Kategorien"
4981
+
4982
+ #: modules/woocommerce/woocommerce.php:65
4983
+ msgid "Cart"
4984
+ msgstr "Einkaufswagen"
4985
+
4986
+ #: modules/woocommerce/woocommerce.php:66
4987
+ msgid "Checkout"
4988
+ msgstr "Kasse"
4989
+
4990
+ #: modules/woocommerce/woocommerce.php:67
4991
+ msgid "Order Tracking"
4992
+ msgstr "Bestellverfolgung"
4993
+
4994
+ #: modules/woocommerce/woocommerce.php:68
4995
+ msgid "My Account"
4996
+ msgstr "Mein Konto"
4997
+
4998
+ #: modules/woocommerce/woocommerce.php:87
4999
+ msgid "Product ID"
5000
+ msgstr "Produkt-ID"
5001
+
5002
+ #: modules/woocommerce/woocommerce.php:90
5003
+ msgid ""
5004
+ "As you add products in the WooCommerce Products area, each will be assigned "
5005
+ "a unique ID. You can find this unique product ID by visiting the Products "
5006
+ "area and rolling over the product. The unique ID will be the first attribute."
5007
+ msgstr ""
5008
+ "Wenn Sie WooCommerce-Produkte hinzufügen, bekommt jedes eine einzigartige ID."
5009
+ " Diese können Sie finden, wenn Sie die Produktseite besuchen."
5010
+
5011
+ #: modules/woocommerce/woocommerce.php:94
5012
+ msgid "Parent Category ID"
5013
+ msgstr "ID der übergeordneten Kategorie"
5014
+
5015
+ #: modules/woocommerce/woocommerce.php:97
5016
+ msgid ""
5017
+ "As you add product categories in the WooCommerce Products area, each will be "
5018
+ "assigned a unique ID. This ID can be found by hovering on the category in "
5019
+ "the categories area under Products and looking in the URL that is displayed "
5020
+ "in your browser. The ID will be the only number value in the URL."
5021
+ msgstr ""
5022
+ "Wenn Sie WooCommerce-Kategorien hinzufügen, bekommt jede eine einzigartige "
5023
+ "ID. Diese können Sie finden, wenn Sie die Produktseite besuchen."
5024
+
5025
+ #: modules/woocommerce/woocommerce.php:101
5026
+ #: modules/woocommerce/woocommerce.php:172
5027
+ msgid "Columns"
5028
+ msgstr "Spalten"
5029
+
5030
+ #: modules/woocommerce/woocommerce.php:117
5031
+ msgid "Products Source"
5032
+ msgstr "Produktquellen"
5033
+
5034
+ #: modules/woocommerce/woocommerce.php:120
5035
+ msgid "Products IDs"
5036
+ msgstr "Produkt-IDs"
5037
+
5038
+ #: modules/woocommerce/woocommerce.php:121
5039
+ msgid "Product Category"
5040
+ msgstr "Produktkategorie"
5041
+
5042
+ #: modules/woocommerce/woocommerce.php:122
5043
+ msgid "Recent Products"
5044
+ msgstr "Letzte Produkte"
5045
+
5046
+ #: modules/woocommerce/woocommerce.php:123
5047
+ msgid "Featured Products"
5048
+ msgstr "Enthaltene Produkte"
5049
+
5050
+ #: modules/woocommerce/woocommerce.php:124
5051
+ msgid "Sale Products"
5052
+ msgstr "Verkaufsprodukte"
5053
+
5054
+ #: modules/woocommerce/woocommerce.php:125
5055
+ msgid "Best Selling Products"
5056
+ msgstr "Verkaufsschlager"
5057
+
5058
+ #: modules/woocommerce/woocommerce.php:126
5059
+ msgid "Top Rated Products"
5060
+ msgstr "Am besten bewertete Produkte"
5061
+
5062
+ #: modules/woocommerce/woocommerce.php:154
5063
+ msgid "Product IDs"
5064
+ msgstr "Produkt-IDs"
5065
+
5066
+ #: modules/woocommerce/woocommerce.php:156
5067
+ msgid ""
5068
+ "As you add products in the WooCommerce Products area, each will be assigned "
5069
+ "a unique ID. You can find this unique product ID by visiting the Products "
5070
+ "area and rolling over the product. The unique ID will be the first attribute "
5071
+ "and you can add several here separated by a comma."
5072
+ msgstr ""
5073
+ "Wenn Sie WooCommerce-Produkte hinzufügen, bekommt jedes eine einzigartige ID."
5074
+ " Diese können Sie finden, wenn Sie die Produktseite besuchen."
5075
+
5076
+ #: modules/woocommerce/woocommerce.php:160
5077
+ msgid "Category Slug"
5078
+ msgstr "Kategorieschlag"
5079
+
5080
+ #: modules/woocommerce/woocommerce.php:162
5081
+ msgid ""
5082
+ "As you add product categories in the WooCommerce Products area, each will be "
5083
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
5084
+ "found in the Categories area under WooCommerce Products. Several can be "
5085
+ "added here separated by a comma."
5086
+ msgstr ""
5087
+ "Wenn Sie WooCommerce-Kategorien hinzufügen, bekommt jede eine einzigartige "
5088
+ "ID. Diese können Sie finden, wenn Sie die Produktseite besuchen."
5089
+
5090
+ #: modules/woocommerce/woocommerce.php:166
5091
+ msgid "Number of Products"
5092
+ msgstr "Produktanzahl"
5093
+
5094
+ #: modules/woocommerce/woocommerce.php:183
5095
+ msgid "Sort By"
5096
+ msgstr "Sortieren nach"
5097
+
5098
+ #: modules/woocommerce/woocommerce.php:186
5099
+ msgctxt "Sort by."
5100
+ msgid "Default"
5101
+ msgstr "Default"
5102
+
5103
+ #: modules/woocommerce/woocommerce.php:187
5104
+ msgid "Popularity"
5105
+ msgstr "Beliebtheit"
5106
+
5107
+ #: modules/woocommerce/woocommerce.php:188
5108
+ msgid "Rating"
5109
+ msgstr "Bewertung"
5110
+
5111
+ #: modules/woocommerce/woocommerce.php:195
5112
+ msgid "Sort Direction"
5113
+ msgstr "Sortierung"
languages/es_ES.mo CHANGED
Binary file
languages/es_ES.po CHANGED
@@ -2,15 +2,15 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-18 10:56-0800\n"
6
- "PO-Revision-Date: 2015-06-13 00:23-0600\n"
7
  "Last-Translator: Roberto Porcar <rporcar@arrakis.es>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -55,8 +55,10 @@ msgstr "Tipos de Entrada"
55
 
56
  #: classes/class-fl-builder-admin-settings.php:167
57
  #: modules/icon-group/icon-group.php:27
 
 
58
  msgid "Icons"
59
- msgstr "Íconos"
60
 
61
  #: classes/class-fl-builder-admin-settings.php:171
62
  msgid "Editing"
@@ -84,7 +86,7 @@ msgstr "Desinstalar"
84
 
85
  #: classes/class-fl-builder-admin-settings.php:439
86
  msgid "Error! You must have at least one icon set enabled."
87
- msgstr "Error! Necesitas tener al menos una colección de íconos habilitada."
88
 
89
  #: classes/class-fl-builder-admin-settings.php:481
90
  msgid "Error! Could not unzip file."
@@ -101,7 +103,8 @@ msgstr ""
101
 
102
  #: classes/class-fl-builder-admin-settings.php:636
103
  msgid "Error! You must have at least one feature of the help button enabled."
104
- msgstr "¡Error! Debes tener al menos una opción del botón ayuda habilitada."
 
105
 
106
  #: classes/class-fl-builder-admin.php:45
107
  #, php-format
@@ -135,11 +138,11 @@ msgid "Upgrade"
135
  msgstr "Actualizar"
136
 
137
  #: classes/class-fl-builder-admin.php:253
138
- #: classes/class-fl-builder-model.php:3113
139
  msgid "Page Builder"
140
  msgstr "Page Builder"
141
 
142
- #: classes/class-fl-builder-model.php:1605
143
  #, php-format
144
  msgctxt "%s stands for the module filename"
145
  msgid ""
@@ -150,21 +153,22 @@ msgstr ""
150
  "espacio de nombres de tu módulo para garantizar la compatibilidad con Beaver "
151
  "Builder."
152
 
153
- #: classes/class-fl-builder-model.php:1652
154
- #: classes/class-fl-builder-model.php:1710 modules/heading/heading.php:16
155
  #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
156
  #: modules/separator/separator.php:16 modules/video/video.php:21
157
  msgid "Basic Modules"
158
  msgstr "Módulos Básicos"
159
 
160
- #: classes/class-fl-builder-model.php:1653
161
- #: classes/class-fl-builder-model.php:1711 modules/accordion/accordion.php:16
162
  #: modules/button/button.php:16 modules/callout/callout.php:16
163
  #: modules/contact-form/contact-form.php:16
164
  #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
165
  #: modules/gallery/gallery.php:16 modules/html/html.php:16
166
  #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
167
- #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
 
168
  #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
169
  #: modules/slideshow/slideshow.php:16
170
  #: modules/social-buttons/social-buttons.php:16
@@ -174,34 +178,34 @@ msgstr "Módulos Básicos"
174
  msgid "Advanced Modules"
175
  msgstr "Módulos Avanzados"
176
 
177
- #: classes/class-fl-builder-model.php:1654
178
- #: classes/class-fl-builder-model.php:1712
179
  msgid "Other Modules"
180
  msgstr "Otros Módulos"
181
 
182
- #: classes/class-fl-builder-model.php:1655
183
- #: classes/class-fl-builder-model.php:1713
184
  #: includes/admin-settings-modules.php:32 includes/ui.php:99
185
  #: modules/widget/widget.php:16
186
  msgid "WordPress Widgets"
187
  msgstr "WordPress Widgets"
188
 
189
- #: classes/class-fl-builder-model.php:2302
190
  #, php-format
191
  msgctxt "%s stands for post/page title."
192
  msgid "Copy of %s"
193
  msgstr "Copia de %s"
194
 
195
- #: classes/class-fl-builder-model.php:2715
196
  msgctxt "Default user template category."
197
  msgid "Uncategorized"
198
  msgstr "Sin categoría"
199
 
200
- #: classes/class-fl-builder-model.php:3070
201
  msgid "Home Pages"
202
  msgstr "Páginas de Inicio"
203
 
204
- #: classes/class-fl-builder-model.php:3071
205
  msgid "Content Pages"
206
  msgstr "Páginas de Contenido"
207
 
@@ -209,7 +213,7 @@ msgstr "Páginas de Contenido"
209
  #: classes/class-fl-builder-photo.php:100
210
  msgctxt "Image size."
211
  msgid "Full Size"
212
- msgstr "Tamaño Completo"
213
 
214
  #: classes/class-fl-builder-photo.php:101
215
  msgctxt "Image size."
@@ -226,27 +230,57 @@ msgctxt "Image size."
226
  msgid "Thumbnail"
227
  msgstr "Miniatura"
228
 
229
- #: classes/class-fl-builder-service-aweber.php:72
230
- msgid "Error: You must provide an Authorization Code."
231
- msgstr "Error: Debes proporcionar un código de autorización."
232
 
233
- #: classes/class-fl-builder-service-aweber.php:76
234
- msgid "Error: Please enter a valid Authorization Code."
235
- msgstr "Error: Por favor, introduce un código de autorización válido."
 
 
 
 
 
 
 
236
 
237
- #: classes/class-fl-builder-service-aweber.php:127
238
- msgid "Authorization Code"
239
- msgstr "Código de Autorización"
240
 
241
- #: classes/class-fl-builder-service-aweber.php:128
242
- #, php-format
 
 
 
243
  msgid ""
244
- "Please register this website with AWeber to get your Authorization Code. <a"
245
- "%s>Register Now</a>"
246
  msgstr ""
247
- "Por favor registra esta web con AWeber para obtener tu código de "
248
- "autorización. <a%s>Regístrate ahora</a>"
 
 
 
 
 
 
 
 
 
 
 
249
 
 
 
 
 
 
 
 
 
 
250
  #: classes/class-fl-builder-service-aweber.php:182
251
  #: classes/class-fl-builder-service-campaign-monitor.php:148
252
  #: classes/class-fl-builder-service-campaign-monitor.php:199
@@ -255,14 +289,15 @@ msgstr ""
255
  #: classes/class-fl-builder-service-icontact.php:207
256
  #: classes/class-fl-builder-service-infusionsoft.php:204
257
  #: classes/class-fl-builder-service-madmimi.php:178
258
- #: classes/class-fl-builder-service-mailchimp.php:154
259
  #: classes/class-fl-builder-service-mailpoet.php:92
260
  #: classes/class-fl-builder-service-sendinblue.php:161
261
- #: classes/class-fl-builder-services.php:278 includes/service-settings.php:21
262
  #: modules/woocommerce/woocommerce.php:60
263
  msgid "Choose..."
264
  msgstr "Elegir..."
265
 
 
266
  #: classes/class-fl-builder-service-aweber.php:192
267
  #: classes/class-fl-builder-service-campaign-monitor.php:209
268
  #: classes/class-fl-builder-service-constant-contact.php:166
@@ -270,17 +305,50 @@ msgstr "Elegir..."
270
  #: classes/class-fl-builder-service-icontact.php:217
271
  #: classes/class-fl-builder-service-infusionsoft.php:214
272
  #: classes/class-fl-builder-service-madmimi.php:188
273
- #: classes/class-fl-builder-service-mailchimp.php:164
274
  #: classes/class-fl-builder-service-mailpoet.php:102
275
  #: classes/class-fl-builder-service-sendinblue.php:171
276
  msgctxt "An email list from a third party provider."
277
  msgid "List"
278
  msgstr "Lista"
279
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  #: classes/class-fl-builder-service-aweber.php:219
281
  msgid ""
282
  "There was an error subscribing to AWeber. The account is no longer connected."
283
- msgstr "Hubo un error al suscribirse a AWeber. La cuenta ya no está conectada."
284
 
285
  #: classes/class-fl-builder-service-aweber.php:242
286
  msgid "There was an error connecting to AWeber. Please try again."
@@ -291,16 +359,6 @@ msgstr "Hubo un error de conexión a AWeber. Por favor inténtelo de nuevo."
291
  msgid "There was an error subscribing to AWeber. %s"
292
  msgstr "Hubo un error al suscribirse a AWeber. %s"
293
 
294
- #: classes/class-fl-builder-service-campaign-monitor.php:55
295
- #: classes/class-fl-builder-service-constant-contact.php:48
296
- #: classes/class-fl-builder-service-getresponse.php:67
297
- #: classes/class-fl-builder-service-hatchbuck.php:48
298
- #: classes/class-fl-builder-service-infusionsoft.php:79
299
- #: classes/class-fl-builder-service-madmimi.php:73
300
- #: classes/class-fl-builder-service-mailchimp.php:67
301
- msgid "Error: You must provide an API key."
302
- msgstr "Error: Debes proporcionar una clave de API."
303
-
304
  #: classes/class-fl-builder-service-campaign-monitor.php:67
305
  #: classes/class-fl-builder-service-campaign-monitor.php:129
306
  #: classes/class-fl-builder-service-getresponse.php:76
@@ -309,23 +367,13 @@ msgstr "Error: Debes proporcionar una clave de API."
309
  msgid "Error: Please check your API key."
310
  msgstr "Error: Por favor comprueba tu clave de API."
311
 
312
- #: classes/class-fl-builder-service-campaign-monitor.php:88
313
- #: classes/class-fl-builder-service-constant-contact.php:88
314
- #: classes/class-fl-builder-service-getresponse.php:100
315
- #: classes/class-fl-builder-service-hatchbuck.php:87
316
- #: classes/class-fl-builder-service-infusionsoft.php:129
317
- #: classes/class-fl-builder-service-madmimi.php:121
318
- #: classes/class-fl-builder-service-mailchimp.php:100
319
- msgid "API Key"
320
- msgstr "Clave API"
321
-
322
  #: classes/class-fl-builder-service-campaign-monitor.php:89
323
  msgid ""
324
  "Your API key can be found in your Campaign Monitor account under Account "
325
  "Settings > API Key."
326
  msgstr ""
327
- "La clave API puede encontrarse en tu cuenta Campaign Monitor bajo Account "
328
- "Settings > API Key."
329
 
330
  #: classes/class-fl-builder-service-campaign-monitor.php:158
331
  msgctxt "A client account in Campaign Monitor."
@@ -337,8 +385,7 @@ msgid ""
337
  "There was an error subscribing to Campaign Monitor. The account is no longer "
338
  "connected."
339
  msgstr ""
340
- "Hubo un error al suscribirse a Campaign Monitor. La cuenta ya no está "
341
- "conectada."
342
 
343
  #: classes/class-fl-builder-service-campaign-monitor.php:253
344
  msgid "There was an error subscribing to Campaign Monitor."
@@ -356,15 +403,15 @@ msgstr "Error: No se pudo conectar a Constant Contact. %s"
356
 
357
  #: classes/class-fl-builder-service-constant-contact.php:89
358
  msgid "Your Constant Contact API key."
359
- msgstr "Tu API key de Constant Contact."
360
 
361
  #: classes/class-fl-builder-service-constant-contact.php:99
362
  msgid "Access Token"
363
- msgstr "Token de Acceso"
364
 
365
  #: classes/class-fl-builder-service-constant-contact.php:100
366
  msgid "Your Constant Contact access token."
367
- msgstr "El token de acceso de Contant Contact."
368
 
369
  #: classes/class-fl-builder-service-constant-contact.php:101
370
  #, php-format
@@ -391,6 +438,41 @@ msgstr ""
391
  msgid "There was an error subscribing to Constant Contact. %s"
392
  msgstr "Hubo un error al suscribirse a Constant Contact. %s"
393
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  #: classes/class-fl-builder-service-getresponse.php:101
395
  msgid ""
396
  "Your API key can be found in your GetResponse account under My Account > "
@@ -428,17 +510,16 @@ msgstr "Etiqueta"
428
  msgid ""
429
  "There was an error subscribing to Hatchbuck. The account is no longer "
430
  "connected."
431
- msgstr ""
432
- "Hubo un error al suscribirse a Hatchbuck. La cuenta ya no está conectada."
433
 
434
  #: classes/class-fl-builder-service-hatchbuck.php:190
435
  msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
436
- msgstr "Hubo un error al suscribirse a Hatchbuck. La API key no es válida."
437
 
438
  #: classes/class-fl-builder-service-hatchbuck.php:200
439
  #: classes/class-fl-builder-service-hatchbuck.php:232
440
  msgid "There was an error subscribing to Hatchbuck."
441
- msgstr "Hubo un error al suscribirse a Hatchbuck."
442
 
443
  #: classes/class-fl-builder-service-icontact.php:75
444
  msgid "Error: You must provide a username."
@@ -497,13 +578,12 @@ msgstr ""
497
  msgid ""
498
  "There was an error subscribing to iContact. The account is no longer "
499
  "connected."
500
- msgstr ""
501
- "Hubo un error al suscribirse a iContact. La cuenta ya no está conectada."
502
 
503
  #: classes/class-fl-builder-service-icontact.php:280
504
  #, php-format
505
  msgid "There was an error subscribing to iContact. %s"
506
- msgstr "Hubo un error al suscribirse a iContact. %s"
507
 
508
  #: classes/class-fl-builder-service-infusionsoft.php:49
509
  #, php-format
@@ -543,20 +623,11 @@ msgstr ""
543
  msgid "There was an error subscribing to Infusionsoft. %s"
544
  msgstr "Hubo un error al suscribirse a Infusionsoft. %s"
545
 
546
- #: classes/class-fl-builder-service-madmimi.php:69
547
- msgid "Error: You must provide an email address."
548
- msgstr "Error: Debes proporcionar un nombre de usuario."
549
-
550
  #: classes/class-fl-builder-service-madmimi.php:83
551
  msgid "Unable to connect to Mad Mimi. Please check your credentials."
552
  msgstr ""
553
  "No ha sido posible conectar a Mad Mimi. Por favor, verifica tus credenciales."
554
 
555
- #: classes/class-fl-builder-service-madmimi.php:110
556
- #: modules/subscribe-form/includes/frontend.php:11
557
- msgid "Email Address"
558
- msgstr "Correo Electrónico"
559
-
560
  #: classes/class-fl-builder-service-madmimi.php:111
561
  msgid "The email address associated with your Mad Mimi account."
562
  msgstr "La dirección de correo electrónico asociada con tu cuenta de Mad Mimi."
@@ -591,14 +662,23 @@ msgid ""
591
  msgstr ""
592
  "Tu clave API puede encontrarse en MailChimp en Account > Extras > API Keys."
593
 
594
- #: classes/class-fl-builder-service-mailchimp.php:191
 
 
 
 
 
 
 
 
 
595
  msgid ""
596
  "There was an error subscribing to MailChimp. The account is no longer "
597
  "connected."
598
  msgstr ""
599
  "Hubo un error al suscribirse a Mad Mimi. La cuenta ya no está conectada."
600
 
601
- #: classes/class-fl-builder-service-mailchimp.php:221
602
  #, php-format
603
  msgid "There was an error subscribing to MailChimp. %s"
604
  msgstr "Hubo un error al suscribirse a MailChimp. %s"
@@ -655,31 +735,31 @@ msgstr ""
655
  msgid "Error: Could not subscribe to SendinBlue. %s"
656
  msgstr "Error: No se ha podido realizar la suscripción a SendinBlue. %s"
657
 
658
- #: classes/class-fl-builder-services.php:148
659
  msgctxt "Third party service such as MailChimp."
660
  msgid "Error: Missing service type."
661
  msgstr "Error: Falta el tipo de servicio."
662
 
663
- #: classes/class-fl-builder-services.php:151
664
  msgctxt "Connection data such as an API key."
665
  msgid "Error: Missing service data."
666
  msgstr "Error: Falta de datos del servicio."
667
 
668
- #: classes/class-fl-builder-services.php:154
669
  msgctxt "Account name for a third party service such as MailChimp."
670
  msgid "Error: Missing account name."
671
  msgstr "Error: Falta el nombre de cuenta."
672
 
673
- #: classes/class-fl-builder-services.php:163
674
  msgctxt "Account name for a third party service such as MailChimp."
675
  msgid "Error: An account with that name already exists."
676
  msgstr "Error: Ya existe una cuenta con ese nombre."
677
 
678
- #: classes/class-fl-builder-services.php:243
679
  msgid "Account Name"
680
  msgstr "Nombre de la cuenta"
681
 
682
- #: classes/class-fl-builder-services.php:244
683
  msgid ""
684
  "Used to identify this connection within the accounts list and can be "
685
  "anything you like."
@@ -687,15 +767,15 @@ msgstr ""
687
  "Utilizado para identificar esta conexión dentro de la lista de cuentas y "
688
  "puede ser cualquier cosa que quieras."
689
 
690
- #: classes/class-fl-builder-services.php:257
691
  msgid "Connect"
692
  msgstr "Conectar"
693
 
694
- #: classes/class-fl-builder-services.php:285
695
  msgid "Add Account..."
696
  msgstr "Añadir cuenta"
697
 
698
- #: classes/class-fl-builder-services.php:292
699
  msgid "Account"
700
  msgstr "Cuenta"
701
 
@@ -711,123 +791,123 @@ msgstr "¡Error! Por favor, introduce un número la identificación del sitio."
711
  msgid "Error! A site with that ID doesn't exist."
712
  msgstr "¡Error! No existe un sitio con ese ID."
713
 
714
- #: classes/class-fl-builder.php:811
715
  #, php-format
716
  msgctxt "Field name to add."
717
  msgid "Add %s"
718
  msgstr "Añadir %s"
719
 
720
- #: classes/class-fl-builder.php:901 classes/class-fl-builder.php:903
721
  msgctxt "Custom post type label."
722
  msgid "Templates"
723
  msgstr "Plantillas"
724
 
725
- #: classes/class-fl-builder.php:902 classes/class-fl-builder.php:904
726
  msgctxt "Custom post type label."
727
  msgid "Template"
728
  msgstr "Plantilla"
729
 
730
- #: classes/class-fl-builder.php:905
731
  msgctxt "Custom post type label."
732
  msgid "Add New"
733
  msgstr "Añadir Nuevo"
734
 
735
- #: classes/class-fl-builder.php:906
736
  msgctxt "Custom post type label."
737
  msgid "Add New Template"
738
  msgstr "Añadir Nueva Plantilla"
739
 
740
- #: classes/class-fl-builder.php:907
741
  msgctxt "Custom post type label."
742
  msgid "New Template"
743
  msgstr "Nueva Plantilla"
744
 
745
- #: classes/class-fl-builder.php:908
746
  msgctxt "Custom post type label."
747
  msgid "Edit Template"
748
  msgstr "Editar Plantilla"
749
 
750
- #: classes/class-fl-builder.php:909
751
  msgctxt "Custom post type label."
752
  msgid "View Template"
753
  msgstr "Ver Plantilla"
754
 
755
- #: classes/class-fl-builder.php:910
756
  msgctxt "Custom post type label."
757
  msgid "All Templates"
758
  msgstr "Todas las Plantillas"
759
 
760
- #: classes/class-fl-builder.php:911
761
  msgctxt "Custom post type label."
762
  msgid "Search Templates"
763
  msgstr "Buscar Plantillas"
764
 
765
- #: classes/class-fl-builder.php:912
766
  msgctxt "Custom post type label."
767
  msgid "Parent Templates:"
768
  msgstr "Plantillas Maestras:"
769
 
770
- #: classes/class-fl-builder.php:913
771
  msgctxt "Custom post type label."
772
  msgid "No templates found."
773
  msgstr "No se han encontrado plantillas."
774
 
775
- #: classes/class-fl-builder.php:914
776
  msgctxt "Custom post type label."
777
  msgid "No templates found in Trash."
778
  msgstr "No se han encontrado plantillas en la Papelera."
779
 
780
- #: classes/class-fl-builder.php:927 classes/class-fl-builder.php:937
781
  msgctxt "Custom taxonomy label."
782
  msgid "Categories"
783
  msgstr "Categorías"
784
 
785
- #: classes/class-fl-builder.php:928
786
  msgctxt "Custom taxonomy label."
787
  msgid "Category"
788
  msgstr "Categoría"
789
 
790
- #: classes/class-fl-builder.php:929
791
  msgctxt "Custom taxonomy label."
792
  msgid "Search Categories"
793
  msgstr "Buscar Categorías"
794
 
795
- #: classes/class-fl-builder.php:930
796
  msgctxt "Custom taxonomy label."
797
  msgid "All Categories"
798
  msgstr "Todas las Categorías"
799
 
800
- #: classes/class-fl-builder.php:931
801
  msgctxt "Custom taxonomy label."
802
  msgid "Parent Category"
803
- msgstr "Categoría Padre"
804
 
805
- #: classes/class-fl-builder.php:932
806
  msgctxt "Custom taxonomy label."
807
  msgid "Parent Category:"
808
- msgstr "Categoría Padre:"
809
 
810
- #: classes/class-fl-builder.php:933
811
  msgctxt "Custom taxonomy label."
812
  msgid "Edit Category"
813
  msgstr "Editar Categoría"
814
 
815
- #: classes/class-fl-builder.php:934
816
  msgctxt "Custom taxonomy label."
817
  msgid "Update Category"
818
  msgstr "Actualizar Categoría"
819
 
820
- #: classes/class-fl-builder.php:935
821
  msgctxt "Custom taxonomy label."
822
  msgid "Add New Category"
823
  msgstr "Añadir Nueva Categoría"
824
 
825
- #: classes/class-fl-builder.php:936
826
  msgctxt "Custom taxonomy label."
827
  msgid "New Category Name"
828
  msgstr "Nuevo Nombre de Categoría"
829
 
830
- #: classes/class-fl-builder.php:1389 includes/js-config.php:69
831
  #, php-format
832
  msgctxt "%s stands for module name."
833
  msgid "%s Settings"
@@ -849,20 +929,21 @@ msgstr "%s está actualmente activo para este %s."
849
  #, php-format
850
  msgctxt "%s stands for custom branded \"Page Builder\" name."
851
  msgid "Launch %s"
852
- msgstr "Iniciar %s"
853
 
854
  #: includes/admin-settings-branding.php:7
855
  msgid "White label the page builder by entering a custom name below."
856
  msgstr ""
857
- "Introduce un nombre personalizado para cambiar el nombre de page builder."
 
858
 
859
  #: includes/admin-settings-branding.php:10
860
  msgid ""
861
  "Additionally, you may also add a custom icon by entering the URL of an image "
862
  "below. Leave the field blank if you do not wish to use an icon."
863
  msgstr ""
864
- "Además, también puedes añadir un ícono personalizado introduciendo la URL de "
865
- "una imagen. Deja el campo vacío si no quieres usar un ícono."
866
 
867
  #: includes/admin-settings-branding.php:14
868
  msgid "Save Branding"
@@ -957,11 +1038,11 @@ msgstr "Activar Vídeo de Ayuda"
957
 
958
  #: includes/admin-settings-help-button.php:39
959
  msgid "Help Video Embed Code"
960
- msgstr "Código de Inserción del Vídeo de Ayuda"
961
 
962
  #: includes/admin-settings-help-button.php:45
963
  msgid "Knowledge Base"
964
- msgstr "Base de Conocimiento"
965
 
966
  #: includes/admin-settings-help-button.php:49
967
  msgid "Enable Knowledge Base"
@@ -1038,7 +1119,8 @@ msgstr "Módulos habilitados"
1038
  #: includes/admin-settings-modules.php:16
1039
  msgid "Check or uncheck modules below to enable or disable them."
1040
  msgstr ""
1041
- "Selecciona las siguientes opciones para activar o desactivar los módulos."
 
1042
 
1043
  #: includes/admin-settings-modules.php:26
1044
  msgctxt "Plugin setup page: Modules."
@@ -1047,7 +1129,7 @@ msgstr "Todo"
1047
 
1048
  #: includes/admin-settings-modules.php:64
1049
  msgid "Save Module Settings"
1050
- msgstr "Guardar Ajustes de Módulos"
1051
 
1052
  #: includes/admin-settings-post-types.php:18
1053
  msgid ""
@@ -1087,15 +1169,15 @@ msgid ""
1087
  "builder templates. Leave this field blank if you do not wish to override "
1088
  "core templates."
1089
  msgstr ""
1090
- "Introduce el ID del sitio en la red cuyas plantillas deben reemplazar las "
1091
- "plantillas base. Deja este campo en blanco si no deseas sobreescribir las "
1092
  "plantillas base."
1093
 
1094
  #: includes/admin-settings-templates-override.php:9
1095
  msgid ""
1096
  "Use this setting to override core builder templates with your templates."
1097
  msgstr ""
1098
- "Usa esta opción para sobreescribir las plantillas base con tus propias "
1099
  "plantillas."
1100
 
1101
  #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
@@ -1137,8 +1219,8 @@ msgstr "Habilitar Plantillas Admin"
1137
  #: includes/admin-settings-templates.php:32
1138
  msgid "Use this setting to edit builder templates in the WordPress admin."
1139
  msgstr ""
1140
- "Usa esta opción para editar las plantillas desde el escritorio de "
1141
- "Adminitración."
1142
 
1143
  #: includes/admin-settings-templates.php:50
1144
  msgid "Save Template Settings"
@@ -1193,16 +1275,18 @@ msgctxt "Template edit form field label. Template name."
1193
  msgid "Name"
1194
  msgstr "Nombre"
1195
 
1196
- #: includes/admin-templates-edit.php:12 modules/callout/callout.php:305
1197
- #: modules/post-grid/post-grid.php:113
 
1198
  msgid "Image"
1199
  msgstr "Imagen"
1200
 
1201
- #: includes/admin-templates-edit.php:16 includes/column-settings.php:114
1202
- #: includes/row-settings.php:155 includes/template-settings.php:23
1203
- #: modules/callout/callout.php:353 modules/callout/callout.php:373
1204
- #: modules/content-slider/content-slider.php:472
1205
- #: modules/post-grid/post-grid.php:127
 
1206
  msgid "Position"
1207
  msgstr "Posición"
1208
 
@@ -1213,24 +1297,35 @@ msgstr "Premium"
1213
 
1214
  #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
1215
  #: includes/global-settings.php:18 includes/global-settings.php:110
1216
- #: includes/global-settings.php:124 includes/row-settings.php:307
1217
  #: includes/template-settings.php:31 modules/accordion/accordion.php:90
1218
- #: modules/callout/callout.php:420
1219
- #: modules/content-slider/content-slider.php:209
1220
- #: modules/content-slider/content-slider.php:223
1221
- #: modules/content-slider/content-slider.php:257
1222
- #: modules/content-slider/content-slider.php:266
1223
- #: modules/content-slider/content-slider.php:537
1224
  #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1225
- #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
1226
- #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
1227
- #: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
1228
- #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
1229
- #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
1230
- #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
1231
- #: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
1232
- #: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
1233
- #: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
 
 
 
 
 
 
 
 
 
 
 
1234
  #: modules/social-buttons/social-buttons.php:111
1235
  #: modules/social-buttons/social-buttons.php:120
1236
  #: modules/social-buttons/social-buttons.php:129
@@ -1243,24 +1338,35 @@ msgstr "No"
1243
 
1244
  #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
1245
  #: includes/global-settings.php:19 includes/global-settings.php:111
1246
- #: includes/global-settings.php:125 includes/row-settings.php:308
1247
  #: includes/template-settings.php:32 modules/accordion/accordion.php:89
1248
- #: modules/callout/callout.php:421
1249
- #: modules/content-slider/content-slider.php:210
1250
- #: modules/content-slider/content-slider.php:224
1251
- #: modules/content-slider/content-slider.php:258
1252
- #: modules/content-slider/content-slider.php:267
1253
- #: modules/content-slider/content-slider.php:538
1254
  #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1255
- #: modules/slideshow/slideshow.php:317 modules/slideshow/slideshow.php:327
1256
- #: modules/slideshow/slideshow.php:378 modules/slideshow/slideshow.php:419
1257
- #: modules/slideshow/slideshow.php:441 modules/slideshow/slideshow.php:490
1258
- #: modules/slideshow/slideshow.php:499 modules/slideshow/slideshow.php:508
1259
- #: modules/slideshow/slideshow.php:517 modules/slideshow/slideshow.php:526
1260
- #: modules/slideshow/slideshow.php:535 modules/slideshow/slideshow.php:544
1261
- #: modules/slideshow/slideshow.php:558 modules/slideshow/slideshow.php:573
1262
- #: modules/slideshow/slideshow.php:608 modules/slideshow/slideshow.php:620
1263
- #: modules/slideshow/slideshow.php:632 modules/slideshow/slideshow.php:644
 
 
 
 
 
 
 
 
 
 
 
1264
  #: modules/social-buttons/social-buttons.php:110
1265
  #: modules/social-buttons/social-buttons.php:119
1266
  #: modules/social-buttons/social-buttons.php:128
@@ -1327,17 +1433,19 @@ msgstr "Configuración de Columnas"
1327
 
1328
  #: includes/column-settings.php:7 includes/module-settings.php:87
1329
  #: includes/row-settings.php:9 modules/accordion/accordion.php:45
1330
- #: modules/button/button.php:108 modules/button/button.php:146
1331
- #: modules/button/button.php:150 modules/callout/callout.php:241
1332
- #: modules/callout/callout.php:543
1333
- #: modules/content-slider/content-slider.php:425
1334
- #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
1335
- #: modules/cta/cta.php:299 modules/heading/heading.php:69
1336
  #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
 
 
1337
  #: modules/pricing-table/pricing-table.php:43
1338
  #: modules/pricing-table/pricing-table.php:155
1339
  #: modules/separator/separator.php:72
1340
- #: modules/subscribe-form/subscribe-form.php:217 modules/tabs/tabs.php:45
1341
  msgid "Style"
1342
  msgstr "Estilo"
1343
 
@@ -1345,112 +1453,128 @@ msgstr "Estilo"
1345
  msgid "Column Width"
1346
  msgstr "Ancho de columna"
1347
 
1348
- #: includes/column-settings.php:26 includes/row-settings.php:48
1349
- #: modules/button/button.php:66 modules/callout/callout.php:225
1350
- #: modules/callout/callout.php:478 modules/callout/callout.php:494
1351
- #: modules/content-slider/content-slider.php:382
1352
- #: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
1353
- #: modules/cta/cta.php:221
1354
  msgid "Text"
1355
  msgstr "Texto"
1356
 
1357
- #: includes/column-settings.php:30 includes/column-settings.php:69
1358
- #: includes/column-settings.php:199 includes/row-settings.php:52
1359
- #: includes/row-settings.php:109 includes/row-settings.php:403
1360
- #: modules/callout/callout.php:391
1361
- #: modules/content-slider/content-slider.php:337
1362
  #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1363
  #: modules/separator/separator.php:34
1364
  msgid "Color"
1365
  msgstr "Color"
1366
 
1367
- #: includes/column-settings.php:39 includes/row-settings.php:61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1368
  msgid "Background"
1369
  msgstr "Fondo"
1370
 
1371
- #: includes/column-settings.php:43 includes/column-settings.php:166
1372
- #: includes/row-settings.php:65 includes/row-settings.php:370
1373
- #: modules/callout/callout.php:474
1374
- #: modules/content-slider/content-slider.php:331
1375
- #: modules/content-slider/content-slider.php:378
1376
- #: modules/content-slider/content-slider.php:596
1377
- #: modules/content-slider/content-slider.php:729
1378
- #: modules/slideshow/slideshow.php:340
1379
  msgid "Type"
1380
  msgstr "Tipo"
1381
 
1382
- #: includes/column-settings.php:46 includes/row-settings.php:68
1383
- #: modules/content-slider/content-slider.php:338
1384
  msgctxt "Background type."
1385
  msgid "None"
1386
  msgstr "Ninguno"
1387
 
1388
- #: includes/column-settings.php:47 includes/row-settings.php:69
1389
  msgctxt "Background type."
1390
  msgid "Color"
1391
  msgstr "Color"
1392
 
1393
- #: includes/column-settings.php:48 includes/row-settings.php:70
1394
  msgctxt "Background type."
1395
  msgid "Photo"
1396
  msgstr "Imagen"
1397
 
1398
- #: includes/column-settings.php:65 includes/row-settings.php:105
1399
- #: modules/button/button.php:115 modules/callout/callout.php:404
1400
- #: modules/callout/callout.php:508
1401
- #: modules/content-slider/content-slider.php:363
1402
- #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
1403
- #: modules/cta/cta.php:264 modules/icon-group/icon-group.php:64
1404
- #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:182
1405
  msgid "Background Color"
1406
  msgstr "Color de Fondo"
1407
 
1408
- #: includes/column-settings.php:77 includes/column-settings.php:207
1409
- #: includes/row-settings.php:117 includes/row-settings.php:411
1410
  #: modules/separator/separator.php:44
1411
  msgid "Opacity"
1412
  msgstr "Opacidad"
1413
 
1414
- #: includes/column-settings.php:88 includes/row-settings.php:129
1415
- #: modules/content-slider/content-slider.php:359
1416
  msgid "Background Photo"
1417
  msgstr "Imagen de fondo"
1418
 
1419
- #: includes/column-settings.php:92 includes/row-settings.php:133
1420
- #: includes/row-settings.php:321 modules/callout/callout.php:316
1421
- #: modules/callout/callout.php:332 modules/callout/callout.php:336
1422
- #: modules/content-slider/content-slider.php:335
1423
- #: modules/content-slider/content-slider.php:404
1424
- #: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
1425
- #: modules/photo/photo.php:392
1426
  msgid "Photo"
1427
  msgstr "Imagen"
1428
 
1429
- #: includes/column-settings.php:99 includes/row-settings.php:140
1430
  msgid "Repeat"
1431
  msgstr "Repetir"
1432
 
1433
- #: includes/column-settings.php:102 includes/row-settings.php:143
1434
  msgctxt "Background repeat."
1435
  msgid "None"
1436
  msgstr "Ninguno"
1437
 
1438
- #: includes/column-settings.php:103 includes/row-settings.php:144
1439
  msgctxt "Background repeat."
1440
  msgid "Tile"
1441
  msgstr "Mosaico"
1442
 
1443
- #: includes/column-settings.php:104 includes/row-settings.php:145
1444
  msgctxt "Background repeat."
1445
  msgid "Horizontal"
1446
  msgstr "Horizontal"
1447
 
1448
- #: includes/column-settings.php:105 includes/row-settings.php:146
1449
  msgctxt "Background repeat."
1450
  msgid "Vertical"
1451
  msgstr "Vertical"
1452
 
1453
- #: includes/column-settings.php:107 includes/row-settings.php:148
1454
  msgid ""
1455
  "Repeat applies to how the image should display in the background. Choosing "
1456
  "none will display the image as uploaded. Tile will repeat the image as many "
@@ -1463,67 +1587,67 @@ msgstr ""
1463
  "verticalmente. Puedes especificar si la imagen sólo se ha de repetir "
1464
  "horizontal o verticalmente."
1465
 
1466
- #: includes/column-settings.php:117 includes/row-settings.php:158
1467
  msgid "Left Top"
1468
  msgstr "Superior Izquierda"
1469
 
1470
- #: includes/column-settings.php:118 includes/row-settings.php:159
1471
  msgid "Left Center"
1472
  msgstr "Centro Izquierda"
1473
 
1474
- #: includes/column-settings.php:119 includes/row-settings.php:160
1475
  msgid "Left Bottom"
1476
  msgstr "Inferior Izquierda"
1477
 
1478
- #: includes/column-settings.php:120 includes/row-settings.php:161
1479
  msgid "Right Top"
1480
  msgstr "Superior Derecha"
1481
 
1482
- #: includes/column-settings.php:121 includes/row-settings.php:162
1483
  msgid "Right Center"
1484
  msgstr "Centro Derecha"
1485
 
1486
- #: includes/column-settings.php:122 includes/row-settings.php:163
1487
  msgid "Right Bottom"
1488
  msgstr "Inferior Derecha"
1489
 
1490
- #: includes/column-settings.php:123 includes/row-settings.php:164
1491
  msgid "Center Top"
1492
  msgstr "Centro Superior"
1493
 
1494
- #: includes/column-settings.php:124 includes/row-settings.php:165
1495
- #: modules/button/button.php:218 modules/callout/callout.php:251
1496
- #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1497
  #: modules/heading/heading.php:90 modules/heading/heading.php:162
1498
  #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1499
- #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
1500
  msgid "Center"
1501
  msgstr "Centro"
1502
 
1503
- #: includes/column-settings.php:125 includes/row-settings.php:166
1504
  msgid "Center Bottom"
1505
  msgstr "Centro Inferior"
1506
 
1507
- #: includes/column-settings.php:127 includes/row-settings.php:168
1508
  msgid "Position will tell the image where it should sit in the background."
1509
  msgstr "Posición establece el lugar donde debe situarse la imagen en el fondo."
1510
 
1511
- #: includes/column-settings.php:134 includes/row-settings.php:175
1512
  msgid "Attachment"
1513
  msgstr "Adjunto"
1514
 
1515
- #: includes/column-settings.php:137 includes/row-settings.php:178
1516
- #: modules/post-grid/post-grid.php:75
1517
  msgid "Scroll"
1518
  msgstr "Scroll"
1519
 
1520
- #: includes/column-settings.php:138 includes/global-settings.php:69
1521
  #: includes/global-settings.php:83 includes/row-settings.php:19
1522
- #: includes/row-settings.php:37 includes/row-settings.php:179
1523
  msgid "Fixed"
1524
  msgstr "Fija"
1525
 
1526
- #: includes/column-settings.php:140 includes/row-settings.php:181
1527
  msgid ""
1528
  "Attachment will specify how the image reacts when scrolling a page. When "
1529
  "scrolling is selected, the image will scroll with page scrolling. This is "
@@ -1535,24 +1659,24 @@ msgstr ""
1535
  "la opción por defecto. Fijo permitirá a la imagen hacer scroll con el fondo "
1536
  "si la opción Relleno se ha seleccionado en Escalar Fondo."
1537
 
1538
- #: includes/column-settings.php:147 includes/row-settings.php:188
1539
  msgid "Scale"
1540
  msgstr "Escalar"
1541
 
1542
- #: includes/column-settings.php:150 includes/row-settings.php:191
1543
  msgctxt "Background scale."
1544
  msgid "None"
1545
  msgstr "Nada"
1546
 
1547
- #: includes/column-settings.php:151 includes/row-settings.php:192
1548
  msgid "Fit"
1549
  msgstr "Ajustado"
1550
 
1551
- #: includes/column-settings.php:152 includes/row-settings.php:193
1552
  msgid "Fill"
1553
  msgstr "Relleno"
1554
 
1555
- #: includes/column-settings.php:154 includes/row-settings.php:195
1556
  msgid ""
1557
  "Scale applies to how the image should display in the background. You can "
1558
  "select either fill or fit to the background."
@@ -1560,11 +1684,23 @@ msgstr ""
1560
  "Escala se aplica a como la imagen debería visualizarse en el fondo. Puedes "
1561
  "seleccionar rellenar o ajustar al fondo."
1562
 
1563
- #: includes/column-settings.php:162 includes/row-settings.php:366
 
 
 
 
 
 
 
 
 
 
 
 
1564
  msgid "Border"
1565
  msgstr "Borde"
1566
 
1567
- #: includes/column-settings.php:168 includes/row-settings.php:372
1568
  msgid ""
1569
  "The type of border to use. Double borders must have a width of at least 3px "
1570
  "to render properly."
@@ -1572,204 +1708,209 @@ msgstr ""
1572
  "El tipo de borde a utilizar. Los bordes dobles deben tener una anchura de al "
1573
  "menos 3px para visualizarse correctamente."
1574
 
1575
- #: includes/column-settings.php:170 includes/row-settings.php:374
1576
  msgctxt "Border type."
1577
  msgid "None"
1578
  msgstr "Ninguno"
1579
 
1580
- #: includes/column-settings.php:171 includes/row-settings.php:375
1581
  #: modules/separator/separator.php:75
1582
  msgctxt "Border type."
1583
  msgid "Solid"
1584
  msgstr "Sólido"
1585
 
1586
- #: includes/column-settings.php:172 includes/row-settings.php:376
1587
  #: modules/separator/separator.php:76
1588
  msgctxt "Border type."
1589
  msgid "Dashed"
1590
  msgstr "Discontinuo"
1591
 
1592
- #: includes/column-settings.php:173 includes/row-settings.php:377
1593
  #: modules/separator/separator.php:77
1594
  msgctxt "Border type."
1595
  msgid "Dotted"
1596
  msgstr "Punteado"
1597
 
1598
- #: includes/column-settings.php:174 includes/row-settings.php:378
1599
  #: modules/separator/separator.php:78
1600
  msgctxt "Border type."
1601
  msgid "Double"
1602
  msgstr "Doble"
1603
 
1604
- #: includes/column-settings.php:218 includes/row-settings.php:422
1605
  msgid "Top Width"
1606
  msgstr "Ancho Superior"
1607
 
1608
- #: includes/column-settings.php:230 includes/row-settings.php:434
1609
  msgid "Bottom Width"
1610
  msgstr "Ancho Inferior"
1611
 
1612
- #: includes/column-settings.php:242 includes/row-settings.php:446
1613
  msgid "Left Width"
1614
  msgstr "Ancho Izquierdo"
1615
 
1616
- #: includes/column-settings.php:254 includes/row-settings.php:458
1617
  msgid "Right Width"
1618
  msgstr "Ancho Derecho"
1619
 
1620
- #: includes/column-settings.php:269 includes/module-settings.php:6
1621
- #: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
1622
  msgid "Advanced"
1623
  msgstr "Avanzado"
1624
 
1625
- #: includes/column-settings.php:272 includes/global-settings.php:41
1626
  #: includes/global-settings.php:94 includes/module-settings.php:9
1627
- #: includes/row-settings.php:476
1628
  msgid "Margins"
1629
  msgstr "Márgenes"
1630
 
1631
- #: includes/column-settings.php:276 includes/column-settings.php:329
1632
- #: includes/module-settings.php:13 includes/row-settings.php:480
1633
- #: includes/row-settings.php:533 modules/slideshow/slideshow.php:476
1634
  msgid "Top"
1635
  msgstr "Superior"
1636
 
1637
- #: includes/column-settings.php:288 includes/column-settings.php:341
1638
- #: includes/module-settings.php:25 includes/row-settings.php:492
1639
- #: includes/row-settings.php:545 modules/slideshow/slideshow.php:475
 
1640
  msgid "Bottom"
1641
  msgstr "Inferior"
1642
 
1643
- #: includes/column-settings.php:300 includes/column-settings.php:353
1644
- #: includes/module-settings.php:37 includes/row-settings.php:504
1645
- #: includes/row-settings.php:557 modules/button/button.php:219
1646
- #: modules/callout/callout.php:252
1647
- #: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
1648
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
1649
  #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1650
- #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
 
 
1651
  msgid "Left"
1652
  msgstr "Izquierda"
1653
 
1654
- #: includes/column-settings.php:312 includes/column-settings.php:365
1655
- #: includes/module-settings.php:49 includes/row-settings.php:516
1656
- #: includes/row-settings.php:569 modules/button/button.php:220
1657
- #: modules/callout/callout.php:253
1658
- #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1659
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
1660
  #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
1661
- #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
 
 
1662
  msgid "Right"
1663
  msgstr "Derecha"
1664
 
1665
- #: includes/column-settings.php:325 includes/global-settings.php:49
1666
- #: includes/row-settings.php:529 modules/button/button.php:233
1667
- #: modules/callout/callout.php:598
1668
- #: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
1669
- #: modules/subscribe-form/subscribe-form.php:263
1670
  msgid "Padding"
1671
  msgstr "Márgenes interiores / Padding"
1672
 
1673
- #: includes/column-settings.php:378 includes/global-settings.php:103
1674
- #: includes/module-settings.php:62 includes/row-settings.php:582
1675
  msgid "Responsive Layout"
1676
  msgstr "Diseño Adaptable"
1677
 
1678
- #: includes/column-settings.php:382 includes/module-settings.php:66
1679
- #: includes/row-settings.php:586 modules/slideshow/slideshow.php:291
1680
  msgid "Display"
1681
  msgstr "Pantalla"
1682
 
1683
- #: includes/column-settings.php:384 includes/module-settings.php:68
1684
- #: includes/row-settings.php:588
1685
  msgid "Always"
1686
  msgstr "Todas"
1687
 
1688
- #: includes/column-settings.php:385 includes/module-settings.php:69
1689
- #: includes/row-settings.php:589
1690
  msgid "Large Devices Only"
1691
- msgstr "Sólo dispositivos grandes"
1692
 
1693
- #: includes/column-settings.php:386 includes/module-settings.php:70
1694
- #: includes/row-settings.php:590
1695
  msgid "Large &amp; Medium Devices Only"
1696
  msgstr "Sólo dispositivos grandes y medianos"
1697
 
1698
- #: includes/column-settings.php:387 includes/module-settings.php:71
1699
- #: includes/row-settings.php:591
1700
  msgid "Medium Devices Only"
1701
  msgstr "Sólo dispositivos medianos"
1702
 
1703
- #: includes/column-settings.php:388 includes/module-settings.php:72
1704
- #: includes/row-settings.php:592
1705
  msgid "Medium &amp; Small Devices Only"
1706
  msgstr "Sólo dispositivos medianos y pequeños"
1707
 
1708
- #: includes/column-settings.php:389 includes/module-settings.php:73
1709
- #: includes/row-settings.php:593
1710
  msgid "Small Devices Only"
1711
  msgstr "Sólo dispositivos pequeños"
1712
 
1713
- #: includes/column-settings.php:391
1714
  msgid "Choose whether to show or hide this column at different device sizes."
1715
  msgstr ""
1716
  "Elegir si deseas mostrar u ocultar esta columna en dispositivos de diferente "
1717
  "tamaños."
1718
 
1719
- #: includes/column-settings.php:398
1720
  msgid "Medium Device Width"
1721
- msgstr "Anchura de dispositivo mediano"
1722
 
1723
- #: includes/column-settings.php:399
1724
  msgid "The width of this column on medium devices such as tablets."
1725
  msgstr ""
1726
  "La anchura de esta columna en dispositivos de tamaño mediano como tabletas."
1727
 
1728
- #: includes/column-settings.php:401 includes/column-settings.php:429
1729
- #: modules/callout/callout.php:283
1730
- #: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
1731
  #: modules/heading/heading.php:117 modules/heading/heading.php:144
1732
- #: modules/heading/heading.php:174
1733
  msgid "Default"
1734
  msgstr "Predeterminado"
1735
 
1736
- #: includes/column-settings.php:402 includes/column-settings.php:430
1737
- #: modules/button/button.php:193 modules/callout/callout.php:284
1738
- #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
1739
  #: modules/heading/heading.php:118 modules/heading/heading.php:145
1740
- #: modules/heading/heading.php:175
1741
  #: modules/social-buttons/social-buttons.php:74
1742
  msgid "Custom"
1743
  msgstr "Personalizada"
1744
 
1745
- #: includes/column-settings.php:415
1746
  msgid "Custom Medium Device Width"
1747
- msgstr "Personalizar anchura en dispositivo mediano"
1748
 
1749
- #: includes/column-settings.php:426
1750
  msgid "Small Device Width"
1751
- msgstr "Anchura de dispositivo pequeño"
1752
 
1753
- #: includes/column-settings.php:427
1754
  msgid "The width of this column on small devices such as phones."
1755
  msgstr ""
1756
  "La anchura de esta columna en dispositivos de tamaño pequeño como teléfonos."
1757
 
1758
- #: includes/column-settings.php:443
1759
  msgid "Custom Small Device Width"
1760
- msgstr "Personalizar anchura en dispositivo pequeño"
1761
 
1762
- #: includes/column-settings.php:455 includes/module-settings.php:115
1763
- #: includes/row-settings.php:603
1764
  msgid "CSS Selectors"
1765
  msgstr "Selectores CSS"
1766
 
1767
- #: includes/column-settings.php:459 includes/loop-settings.php:28
1768
- #: includes/module-settings.php:119 includes/row-settings.php:607
1769
  msgid "ID"
1770
  msgstr "ID"
1771
 
1772
- #: includes/column-settings.php:460
1773
  msgid ""
1774
  "A unique ID that will be applied to this column's HTML. Must start with a "
1775
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
@@ -1777,11 +1918,11 @@ msgstr ""
1777
  "Un único ID que se aplicará al HTML de esta columna. Debe empezar con una "
1778
  "letra y sólo contener guiones, subrayados, letras o números. Sin espacios."
1779
 
1780
- #: includes/column-settings.php:467
1781
  msgid "CSS Class"
1782
  msgstr "Clase CSS"
1783
 
1784
- #: includes/column-settings.php:468
1785
  msgid ""
1786
  "A class that will be applied to this column's HTML. Must start with a letter "
1787
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
@@ -1827,22 +1968,22 @@ msgstr "Empieza a escribir..."
1827
  msgid "Cancel"
1828
  msgstr "Cancelar"
1829
 
1830
- #: includes/field-multiple-photos.php:8
1831
  #, php-format
1832
  msgid "1 Photo Selected"
1833
  msgid_plural "%d Photos Selected"
1834
  msgstr[0] "1 Foto Seleccionada"
1835
  msgstr[1] "%d Fotos Seleccionadas"
1836
 
1837
- #: includes/field-multiple-photos.php:13
1838
  msgid "Create Gallery"
1839
  msgstr "Crear Galería"
1840
 
1841
- #: includes/field-multiple-photos.php:14
1842
  msgid "Edit Gallery"
1843
  msgstr "Editar Galería"
1844
 
1845
- #: includes/field-multiple-photos.php:15
1846
  msgid "Add Photos"
1847
  msgstr "Añadir Fotos"
1848
 
@@ -1860,18 +2001,18 @@ msgstr "Reemplazar Vídeo"
1860
 
1861
  #: includes/global-settings.php:7 includes/template-settings.php:7
1862
  #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
1863
- #: modules/button/button.php:59 modules/callout/callout.php:209
1864
  #: modules/contact-form/contact-form.php:58
1865
- #: modules/content-slider/content-slider.php:190
1866
- #: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
1867
- #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
1868
  #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
1869
- #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
1870
  #: modules/pricing-table/pricing-table.php:87
1871
  #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
1872
- #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:257
1873
  #: modules/social-buttons/social-buttons.php:64
1874
- #: modules/subscribe-form/subscribe-form.php:86 modules/tabs/tabs.php:77
1875
  #: modules/testimonials/testimonials.php:30
1876
  #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
1877
  #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
@@ -1898,7 +2039,7 @@ msgid ""
1898
  "You will also be required to enter some basic CSS for this to work if you "
1899
  "choose no."
1900
  msgstr ""
1901
- "Eligiendo no se ocultará el encabezado predeterminado del tema para el tipo "
1902
  "\"Página\". Necesitarás algo de CSS básico para que esto funcione si eliges "
1903
  "no."
1904
 
@@ -1933,7 +2074,7 @@ msgstr "Ancho Predeterminado de Fila"
1933
 
1934
  #: includes/global-settings.php:70 includes/global-settings.php:84
1935
  #: includes/row-settings.php:20 includes/row-settings.php:38
1936
- #: modules/button/button.php:192 modules/callout/callout.php:585
1937
  msgid "Full Width"
1938
  msgstr "Anchura Completa"
1939
 
@@ -1961,14 +2102,14 @@ msgid ""
1961
  "margins and padding in your layout once the small device breakpoint is "
1962
  "reached. Most users will want to leave this enabled."
1963
  msgstr ""
1964
- "Cuando el auto espaciado está habilitado, beaver builder ajustará "
1965
  "automáticamente los márgenes y espaciado del diseño una vez se alcance el "
1966
  "breakpoint del dispositivo. La mayoría de usuarios querrán dejar esto "
1967
  "habilitado."
1968
 
1969
  #: includes/global-settings.php:131
1970
  msgid "Medium Device Breakpoint"
1971
- msgstr "Punto de Ruptura para Dispositivo medio"
1972
 
1973
  #: includes/global-settings.php:136
1974
  msgid ""
@@ -1980,7 +2121,7 @@ msgstr ""
1980
 
1981
  #: includes/global-settings.php:140
1982
  msgid "Small Device Breakpoint"
1983
- msgstr "Punto de Ruptura para Dispositivo pequeño"
1984
 
1985
  #: includes/global-settings.php:145
1986
  msgid ""
@@ -2008,8 +2149,8 @@ msgid ""
2008
  "Warning! Changing the template will replace your existing layout. Do you "
2009
  "really want to do this?"
2010
  msgstr ""
2011
- "¡Advertencia! Cambiando la plantilla reemplazará tu diseño actual. "
2012
- "¿Realmente quieres hacer esto?"
2013
 
2014
  #: includes/js-config.php:22
2015
  msgid "Column"
@@ -2031,7 +2172,7 @@ msgid ""
2031
  "Are you sure you want to remove this account? Other modules that are "
2032
  "connected to it will be affected."
2033
  msgstr ""
2034
- "¿Estás seguro que deseas eliminar esta cuenta? Se verán afectados los demás "
2035
  "módulos que estén relacionados con este."
2036
 
2037
  #: includes/js-config.php:27
@@ -2063,8 +2204,8 @@ msgid ""
2063
  "Do you really want to discard these changes? All of your changes that are "
2064
  "not published will be lost."
2065
  msgstr ""
2066
- "¿Quieres descartar estos cambios? Todos los cambios que no están publicados "
2067
- "se perderán."
2068
 
2069
  #: includes/js-config.php:33 includes/ui.php:20 includes/ui.php:55
2070
  msgid "Done"
@@ -2118,7 +2259,7 @@ msgstr "Obtener Ayuda"
2118
 
2119
  #: includes/js-config.php:43
2120
  msgid "Getting Started Video"
2121
- msgstr "Video de Primeros Pasos"
2122
 
2123
  #: includes/js-config.php:44
2124
  msgid "\"{message}\" on line {line} of {file}."
@@ -2162,13 +2303,13 @@ msgstr "No hay resultados."
2162
 
2163
  #: includes/js-config.php:54
2164
  msgid "No Thanks"
2165
- msgstr "No, gracias"
2166
 
2167
  #: includes/js-config.php:55
2168
  msgid "OK"
2169
  msgstr "OK"
2170
 
2171
- #: includes/js-config.php:56 modules/photo/photo.php:454
2172
  msgid "Photo Page"
2173
  msgstr "Página de Foto"
2174
 
@@ -2182,7 +2323,7 @@ msgstr "Fotos Seleccionadas"
2182
 
2183
  #: includes/js-config.php:59 modules/subscribe-form/includes/frontend.php:15
2184
  msgid "Please Wait..."
2185
- msgstr "Por favor espera…"
2186
 
2187
  #: includes/js-config.php:60
2188
  msgid "Publish Changes"
@@ -2236,7 +2377,7 @@ msgstr "Reemplazar Diseño Existente"
2236
  msgid "Template Saved!"
2237
  msgstr "¡Plantilla Guardada!"
2238
 
2239
- #: includes/js-config.php:77
2240
  msgid "Thumbnail"
2241
  msgstr "Miniatura"
2242
 
@@ -2262,15 +2403,15 @@ msgstr ""
2262
 
2263
  #: includes/js-config.php:82
2264
  msgid "Add Rows"
2265
- msgstr "Añadir Filas"
2266
 
2267
  #: includes/js-config.php:83
2268
  msgid ""
2269
  "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
2270
  "and dropping row layouts onto the page."
2271
  msgstr ""
2272
- "Añade filas multi-columna, ajusta el espaciado, añade fondos y más "
2273
- "simplemente arrastrando y soltando diseños de fila en la página."
2274
 
2275
  #: includes/js-config.php:84 includes/ui.php:22 includes/ui.php:60
2276
  msgid "Add Content"
@@ -2281,8 +2422,8 @@ msgid ""
2281
  "Add new content by dragging and dropping modules or widgets into your row "
2282
  "layouts or to create a new row layout."
2283
  msgstr ""
2284
- "Añade contenido nuevo arrastrando y soltando módulos o widgets en una fila "
2285
- "existente, o bien para crear una nueva fila."
2286
 
2287
  #: includes/js-config.php:86
2288
  msgid "Edit Content"
@@ -2313,7 +2454,7 @@ msgid ""
2313
  "layouts, modules or widgets."
2314
  msgstr ""
2315
  "Utiliza el botón Añadir Contenido para abrir el panel de contenido y añadir "
2316
- "filas, módulos o widgets."
2317
 
2318
  #: includes/js-config.php:91
2319
  msgid "Change Templates"
@@ -2325,9 +2466,9 @@ msgid ""
2325
  "layout. Appending will insert a new template at the end of your existing "
2326
  "page content."
2327
  msgstr ""
2328
- "Usa el botón de Plantillas para escoger una nueva plantilla o adjuntarla a "
2329
- "tú diseño ya existente. Adjuntar insertará el contenido de la nueva "
2330
- "plantilla al final de tu diseño existente."
2331
 
2332
  #: includes/js-config.php:93
2333
  msgid "Helpful Tools"
@@ -2355,7 +2496,7 @@ msgstr ""
2355
 
2356
  #: includes/js-config.php:97
2357
  msgid "Let's Get Building!"
2358
- msgstr "¡Empieza a Diseñar!"
2359
 
2360
  #: includes/js-config.php:98
2361
  msgid ""
@@ -2363,9 +2504,9 @@ msgid ""
2363
  "you need help, click the help icon in the upper right corner to access the "
2364
  "help menu. Happy building!"
2365
  msgstr ""
2366
- "Ahora que ya sabes lo básico, estás listo para empezar a diseñar. Si "
2367
  "necesitas ayuda en cualquier momento, haz clic en el icono de ayuda en la "
2368
- "esquina superior derecha para acceder al menú de ayuda. ¡Que te diviertas!"
2369
 
2370
  #: includes/js-config.php:99
2371
  msgid ""
@@ -2392,11 +2533,11 @@ msgid ""
2392
  "Would you like to take a tour?"
2393
  msgstr ""
2394
  "¡Bienvenido! Parece que es la primera vez que utilizas este editor. ¿Te "
2395
- "gustaría realizar un tour de 2 minutos?"
2396
 
2397
  #: includes/js-config.php:104
2398
  msgid "Yes Please!"
2399
- msgstr "¡Sí por favor!"
2400
 
2401
  #: includes/loop-settings.php:20
2402
  msgid "Post Type"
@@ -2406,7 +2547,8 @@ msgstr "Tipo de Entrada"
2406
  msgid "Order By"
2407
  msgstr "Ordenar Por"
2408
 
2409
- #: includes/loop-settings.php:29 modules/post-grid/post-grid.php:155
 
2410
  #: modules/woocommerce/woocommerce.php:189
2411
  msgid "Date"
2412
  msgstr "Fecha"
@@ -2420,7 +2562,8 @@ msgstr "Fecha de Última Modificación"
2420
  msgid "Title"
2421
  msgstr "Título"
2422
 
2423
- #: includes/loop-settings.php:32 modules/post-grid/post-grid.php:146
 
2424
  msgid "Author"
2425
  msgstr "Autor"
2426
 
@@ -2455,9 +2598,7 @@ msgstr "Offset"
2455
 
2456
  #: includes/loop-settings.php:55
2457
  msgid "Skip this many posts that match the specified criteria."
2458
- msgstr ""
2459
- "Omitir esta cantidad de entradas que coincidan con los criterios "
2460
- "especificados."
2461
 
2462
  #: includes/loop-settings.php:62
2463
  msgid "Filter"
@@ -2530,16 +2671,21 @@ msgid "Slide Down"
2530
  msgstr "Deslizar desde Abajo"
2531
 
2532
  #: includes/module-settings.php:102
2533
- #: modules/content-slider/content-slider.php:229
 
 
2534
  #: modules/testimonials/testimonials.php:91
2535
  msgid "Delay"
2536
  msgstr "Retardo"
2537
 
2538
- #: includes/module-settings.php:106 includes/row-settings.php:266
2539
- #: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
2540
- #: modules/content-slider/content-slider.php:250
2541
- #: modules/slideshow/slideshow.php:386 modules/slideshow/slideshow.php:411
2542
- #: modules/slideshow/slideshow.php:582
 
 
 
2543
  #: modules/testimonials/testimonials.php:95
2544
  #: modules/testimonials/testimonials.php:112
2545
  msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
@@ -2559,7 +2705,7 @@ msgstr ""
2559
  "Un único ID que se aplicará al HTML de este módulo. Debe empezar con una "
2560
  "letra y sólo contener guiones, subrayados, letras o números. Sin espacios."
2561
 
2562
- #: includes/module-settings.php:127 includes/row-settings.php:615
2563
  msgid "Class"
2564
  msgstr "Clase"
2565
 
@@ -2573,8 +2719,8 @@ msgstr ""
2573
  "y sólo contener guiones, subrayados, letras o números. Separa varias clases "
2574
  "con espacios."
2575
 
2576
- #: includes/row-settings.php:16 modules/button/button.php:188
2577
- #: modules/content-slider/content-slider.php:483
2578
  msgid "Width"
2579
  msgstr "Anchura"
2580
 
@@ -2596,35 +2742,55 @@ msgid ""
2596
  "Full width content spans the width of the page from edge to edge. Fixed "
2597
  "content is no wider than the Row Max Width set in the Global Settings."
2598
  msgstr ""
2599
- "Los contenidos con anchura completa abarcan todo el ancho de la página de "
2600
- "lado a lado. El contenido fijo no es más ancho que la Anchura Máxima de la "
2601
- "Fila establecida en la Configuración Global."
2602
 
2603
- #: includes/row-settings.php:71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2604
  msgctxt "Background type."
2605
  msgid "Video"
2606
  msgstr "Vídeo"
2607
 
2608
- #: includes/row-settings.php:73
2609
  msgctxt "Background type."
2610
  msgid "Slideshow"
2611
  msgstr "Carrusel"
2612
 
2613
- #: includes/row-settings.php:77
2614
  msgctxt "Background type."
2615
  msgid "Parallax"
2616
  msgstr "Parallax"
2617
 
2618
- #: includes/row-settings.php:203
2619
  msgid "Background Video"
2620
- msgstr "Fondo con Video"
2621
 
2622
- #: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
2623
  #: modules/video/video.php:19 modules/video/video.php:100
2624
  msgid "Video"
2625
  msgstr "Vídeo"
2626
 
2627
- #: includes/row-settings.php:208
2628
  msgid ""
2629
  "An HTML5 video to use as the background of this row. Supported types are "
2630
  "MP4, WebM and Ogg."
@@ -2632,31 +2798,31 @@ msgstr ""
2632
  "Un vídeo HTML5 para utilizar como fondo de esta fila. Los tipos soportados "
2633
  "son MP4, WebM y Ogg."
2634
 
2635
- #: includes/row-settings.php:215
2636
  msgid "Fallback Photo"
2637
  msgstr "Foto de Suplencia"
2638
 
2639
- #: includes/row-settings.php:216
2640
  msgid "A photo that will be displayed if the video fails to load."
2641
  msgstr "La foto que se mostrará si el vídeo no se carga."
2642
 
2643
- #: includes/row-settings.php:224
2644
  msgid "Background Slideshow"
2645
  msgstr "Fondo Slideshow"
2646
 
2647
- #: includes/row-settings.php:228 modules/gallery/gallery.php:234
2648
- #: modules/slideshow/slideshow.php:264
2649
  msgid "Source"
2650
  msgstr "Fuente"
2651
 
2652
- #: includes/row-settings.php:231 modules/gallery/gallery.php:237
2653
- #: modules/photo/photo.php:378 modules/slideshow/slideshow.php:267
2654
  #: modules/video/video.php:86
2655
  msgid "Media Library"
2656
  msgstr "Librería Multimedia"
2657
 
2658
- #: includes/row-settings.php:234 modules/gallery/gallery.php:240
2659
- #: modules/slideshow/slideshow.php:270
2660
  msgid ""
2661
  "Pull images from the WordPress media library or a gallery on your SmugMug "
2662
  "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
@@ -2666,120 +2832,111 @@ msgstr ""
2666
  "SmugMug insertando la URL del feed RSS de SmugMug. A esta dirección se puede "
2667
  "acceder desde la función obtener enlace en tu galería SmugMug."
2668
 
2669
- #: includes/row-settings.php:249 modules/gallery/gallery.php:252
2670
- #: modules/slideshow/slideshow.php:282
2671
  msgid "Photos"
2672
  msgstr "Fotos"
2673
 
2674
- #: includes/row-settings.php:256 modules/gallery/gallery.php:256
2675
- #: modules/slideshow/slideshow.php:286
2676
  msgid "Feed URL"
2677
  msgstr "Feed URL"
2678
 
2679
- #: includes/row-settings.php:263 includes/row-settings.php:328
2680
- #: modules/slideshow/slideshow.php:383
2681
  msgid "Speed"
2682
  msgstr "Velocidad"
2683
 
2684
- #: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
2685
- #: modules/slideshow/slideshow.php:390
2686
  #: modules/testimonials/testimonials.php:99
2687
  msgid "Transition"
2688
  msgstr "Transición"
2689
 
2690
- #: includes/row-settings.php:276
2691
  msgctxt "Slideshow transition type."
2692
  msgid "None"
2693
  msgstr "Ninguna"
2694
 
2695
- #: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
2696
- #: modules/slideshow/slideshow.php:394
 
 
2697
  #: modules/testimonials/testimonials.php:103
2698
  msgid "Fade"
2699
- msgstr "Desvanecer"
2700
 
2701
- #: includes/row-settings.php:278 modules/slideshow/slideshow.php:395
2702
  msgid "Ken Burns"
2703
  msgstr "Ken Burns"
2704
 
2705
- #: includes/row-settings.php:279 modules/slideshow/slideshow.php:396
2706
  msgid "Slide Horizontal"
2707
  msgstr "Deslizar Horizontalmente"
2708
 
2709
- #: includes/row-settings.php:280 modules/slideshow/slideshow.php:397
2710
  msgid "Slide Vertical"
2711
  msgstr "Deslizar Verticalmente"
2712
 
2713
- #: includes/row-settings.php:281 modules/slideshow/slideshow.php:398
2714
  msgid "Blinds"
2715
  msgstr "Persianas"
2716
 
2717
- #: includes/row-settings.php:282 modules/slideshow/slideshow.php:399
2718
  msgid "Bars"
2719
  msgstr "Barras"
2720
 
2721
- #: includes/row-settings.php:283 modules/slideshow/slideshow.php:400
2722
  msgid "Random Bars"
2723
  msgstr "Barras al azar"
2724
 
2725
- #: includes/row-settings.php:284 modules/slideshow/slideshow.php:401
2726
  msgid "Boxes"
2727
  msgstr "Cajas"
2728
 
2729
- #: includes/row-settings.php:285 modules/slideshow/slideshow.php:402
2730
  msgid "Random Boxes"
2731
  msgstr "Cajas al azar"
2732
 
2733
- #: includes/row-settings.php:286 modules/slideshow/slideshow.php:403
2734
  msgid "Boxes Grow"
2735
  msgstr "Cajas Expandiéndose"
2736
 
2737
- #: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
2738
- #: modules/slideshow/slideshow.php:408
 
2739
  #: modules/testimonials/testimonials.php:108
2740
  msgid "Transition Speed"
2741
  msgstr "Velocidad de Transición"
2742
 
2743
- #: includes/row-settings.php:304 modules/slideshow/slideshow.php:415
2744
  msgid "Randomize Photos"
2745
  msgstr "Fotos Aleatorias"
2746
 
2747
- #: includes/row-settings.php:317
2748
  msgid "Background Parallax"
2749
  msgstr "Fondo Parallax"
2750
 
2751
- #: includes/row-settings.php:331
2752
  msgid "Fast"
2753
  msgstr "Rápido"
2754
 
2755
- #: includes/row-settings.php:332
2756
  msgctxt "Speed."
2757
  msgid "Medium"
2758
  msgstr "Medio"
2759
 
2760
- #: includes/row-settings.php:333
2761
  msgid "Slow"
2762
  msgstr "Lento"
2763
 
2764
- #: includes/row-settings.php:342
2765
- msgid "Background Overlay"
2766
- msgstr "Fondo de Superposición"
2767
-
2768
- #: includes/row-settings.php:346
2769
- msgid "Overlay Color"
2770
- msgstr "Color de Superposición"
2771
-
2772
- #: includes/row-settings.php:354
2773
- msgid "Overlay Opacity"
2774
- msgstr "Opacidad de la Superposición"
2775
-
2776
- #: includes/row-settings.php:595
2777
  msgid "Choose whether to show or hide this row at different device sizes."
2778
  msgstr ""
2779
  "Elegir si deseas mostrar u ocultar esta fila en dispositivos con tamaños "
2780
  "diferentes."
2781
 
2782
- #: includes/row-settings.php:608
2783
  msgid ""
2784
  "A unique ID that will be applied to this row's HTML. Must start with a "
2785
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
@@ -2787,7 +2944,7 @@ msgstr ""
2787
  "Un único ID que se aplicará al HTML de esta fila. Debe empezar con una letra "
2788
  "y sólo contener guiones, subrayados, letras o números. Sin espacios."
2789
 
2790
- #: includes/row-settings.php:616
2791
  msgid ""
2792
  "A class that will be applied to this row's HTML. Must start with a letter "
2793
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
@@ -2858,15 +3015,15 @@ msgstr "Page Builder Demo"
2858
 
2859
  #: includes/ui.php:51
2860
  msgid "Buy Now!"
2861
- msgstr "¡Comprar Ahora!"
2862
 
2863
  #: includes/ui.php:53
2864
  msgid "Upgrade!"
2865
- msgstr "¡Actualizar!"
2866
 
2867
  #: includes/ui.php:78
2868
  msgid "Row Layouts"
2869
- msgstr "Diseños de Fila"
2870
 
2871
  #: includes/ui.php:82
2872
  msgid "1 Column"
@@ -2902,7 +3059,7 @@ msgstr "Barra Lateral Derecha"
2902
 
2903
  #: includes/ui.php:90
2904
  msgid "Left &amp; Right Sidebar"
2905
- msgstr "Barra Lateral Derecha & Izquierda"
2906
 
2907
  #: includes/updater/classes/class-fl-updater.php:132
2908
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
@@ -2928,15 +3085,15 @@ msgstr ""
2928
 
2929
  #: includes/updater/includes/form.php:11
2930
  msgid "Updates &amp; Support Subscription"
2931
- msgstr "Suscripción de Actualizaciones &amp; Soporte"
2932
 
2933
  #: includes/updater/includes/form.php:14
2934
  msgid "Active!"
2935
- msgstr "¡Activado!"
2936
 
2937
  #: includes/updater/includes/form.php:16
2938
  msgid "Not Active!"
2939
- msgstr "¡No activado!"
2940
 
2941
  #: includes/updater/includes/form.php:22
2942
  msgid "Email address saved!"
@@ -2967,7 +3124,7 @@ msgstr "Acordeón"
2967
 
2968
  #: modules/accordion/accordion.php:15
2969
  msgid "Display a collapsible accordion of items."
2970
- msgstr "Mostrar un acordeón desplegable de elementos."
2971
 
2972
  #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
2973
  msgid "Items"
@@ -3024,165 +3181,172 @@ msgstr "Añadir Elemento"
3024
  msgid "Label"
3025
  msgstr "Etiqueta"
3026
 
3027
- #: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
3028
- #: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:234
3029
- #: modules/tabs/tabs.php:89
 
 
 
 
 
3030
  msgid "Content"
3031
  msgstr "Contenido"
3032
 
3033
- #: modules/button/button.php:14 modules/callout/callout.php:479
3034
- #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
3035
  #: modules/pricing-table/pricing-table.php:129
3036
- #: modules/subscribe-form/subscribe-form.php:160
3037
  msgid "Button"
3038
  msgstr "Botón"
3039
 
3040
  #: modules/button/button.php:15
3041
  msgid "A simple call to action button."
3042
- msgstr "Un simple botón de llamado de acción"
3043
 
3044
- #: modules/button/button.php:67 modules/cta/cta.php:222
3045
  msgid "Click Here"
3046
  msgstr "¡Pulsa Aquí!"
3047
 
3048
- #: modules/button/button.php:75 modules/callout/callout.php:317
3049
- #: modules/callout/callout.php:365 modules/callout/callout.php:369
3050
- #: modules/cta/cta.php:230 modules/icon-group/icon-group.php:34
3051
  #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
3052
  #: modules/icon/icon.php:34
3053
  msgid "Icon"
3054
  msgstr "Icono"
3055
 
3056
- #: modules/button/button.php:81 modules/button/button.php:85
3057
- #: modules/callout/callout.php:445 modules/callout/callout.php:449
3058
- #: modules/content-slider/content-slider.php:573
3059
- #: modules/content-slider/content-slider.php:577
3060
- #: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3061
  #: modules/heading/heading.php:43 modules/heading/heading.php:47
3062
  #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
3063
- #: modules/slideshow/slideshow.php:344
3064
  msgid "Link"
3065
  msgstr "Enlace"
3066
 
3067
- #: modules/button/button.php:86
3068
  msgid "http://www.example.com"
3069
  msgstr "http://www.ejemplo.com"
3070
 
3071
- #: modules/button/button.php:93 modules/callout/callout.php:457
3072
- #: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
3073
  #: modules/heading/heading.php:54 modules/icon/icon.php:50
3074
- #: modules/photo/photo.php:478
3075
  msgid "Link Target"
3076
  msgstr "Destino del Enlace"
3077
 
3078
- #: modules/button/button.php:96 modules/callout/callout.php:460
3079
- #: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
3080
  #: modules/heading/heading.php:57 modules/icon/icon.php:53
3081
- #: modules/photo/photo.php:481
3082
  msgid "Same Window"
3083
  msgstr "Misma Ventana"
3084
 
3085
- #: modules/button/button.php:97 modules/callout/callout.php:461
3086
- #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
3087
  #: modules/heading/heading.php:58 modules/icon/icon.php:54
3088
- #: modules/photo/photo.php:482
3089
  msgid "New Window"
3090
  msgstr "Nueva Ventana"
3091
 
3092
- #: modules/button/button.php:111 modules/cta/cta.php:187
3093
- #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
3094
- #: modules/icon/icon.php:78
3095
- msgid "Colors"
3096
- msgstr "Colores"
3097
-
3098
- #: modules/button/button.php:121 modules/callout/callout.php:409
3099
- #: modules/callout/callout.php:514
3100
- #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
3101
  #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
3102
- #: modules/subscribe-form/subscribe-form.php:188
3103
  msgid "Background Hover Color"
3104
  msgstr "Color de Fondo al pasar el puntero"
3105
 
3106
- #: modules/button/button.php:130 modules/callout/callout.php:523
3107
- #: modules/content-slider/content-slider.php:528
3108
- #: modules/content-slider/content-slider.php:641
3109
- #: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
3110
- #: modules/cta/cta.php:279 modules/heading/heading.php:77
3111
- #: modules/subscribe-form/subscribe-form.php:197
3112
- msgid "Text Color"
3113
- msgstr "Color del Texto"
3114
-
3115
- #: modules/button/button.php:136 modules/callout/callout.php:529
3116
- #: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
3117
- #: modules/subscribe-form/subscribe-form.php:203
3118
  msgid "Text Hover Color"
3119
  msgstr "Color de Texto al pasar el puntero"
3120
 
3121
- #: modules/button/button.php:153 modules/callout/callout.php:546
3122
- #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
3123
- #: modules/subscribe-form/subscribe-form.php:220
3124
  msgid "Flat"
3125
  msgstr "Plano"
3126
 
3127
- #: modules/button/button.php:154 modules/callout/callout.php:417
3128
- #: modules/callout/callout.php:547
3129
- #: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
3130
  #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3131
- #: modules/subscribe-form/subscribe-form.php:221
3132
  msgid "Gradient"
3133
  msgstr "Degradado"
3134
 
3135
- #: modules/button/button.php:155 modules/callout/callout.php:548
3136
- #: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
3137
- #: modules/subscribe-form/subscribe-form.php:222
3138
  msgid "Transparent"
3139
  msgstr "Transparente"
3140
 
3141
- #: modules/button/button.php:165 modules/callout/callout.php:558
3142
- #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3143
  #: modules/pricing-table/pricing-table.php:67
3144
- #: modules/subscribe-form/subscribe-form.php:232
3145
  msgid "Border Size"
3146
  msgstr "Tamaño de Borde"
3147
 
3148
- #: modules/button/button.php:174 modules/callout/callout.php:567
3149
- #: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
3150
- #: modules/cta/cta.php:323 modules/subscribe-form/subscribe-form.php:241
3151
  msgid "Background Opacity"
3152
  msgstr "Opacidad de Fondo"
3153
 
3154
- #: modules/button/button.php:184 modules/callout/callout.php:244
3155
- #: modules/cta/cta.php:104 modules/heading/heading.php:82
3156
  #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3157
- #: modules/subscribe-form/subscribe-form.php:94
3158
  msgid "Structure"
3159
  msgstr "Estructura"
3160
 
3161
- #: modules/button/button.php:191 modules/callout/callout.php:584
3162
  msgctxt "Width."
3163
  msgid "Auto"
3164
  msgstr "Auto"
3165
 
3166
- #: modules/button/button.php:207
3167
  msgid "Custom Width"
3168
  msgstr "Anchura Personalizada"
3169
 
3170
- #: modules/button/button.php:215 modules/cta/cta.php:122
3171
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
3172
  #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3173
- #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
3174
  msgid "Alignment"
3175
  msgstr "Alineación"
3176
 
3177
- #: modules/button/button.php:225 modules/callout/callout.php:590
3178
- #: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
3179
  #: modules/heading/heading.php:114 modules/heading/heading.php:171
3180
- #: modules/subscribe-form/subscribe-form.php:255
3181
  msgid "Font Size"
3182
  msgstr "Tamaño de Fuente"
3183
 
3184
- #: modules/button/button.php:241 modules/callout/callout.php:606
3185
- #: modules/cta/cta.php:353 modules/subscribe-form/subscribe-form.php:271
3186
  msgid "Round Corners"
3187
  msgstr "Esquinas Redondeadas"
3188
 
@@ -3196,174 +3360,194 @@ msgstr ""
3196
  "Un encabezado y fragmento de texto con un enlace opcional, un icono y una "
3197
  "imagen."
3198
 
3199
- #: modules/callout/callout.php:216
3200
- #: modules/content-slider/content-slider.php:413
3201
- #: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
3202
  #: modules/heading/heading.php:14 modules/heading/heading.php:33
 
3203
  #: modules/testimonials/testimonials.php:56
3204
  #: modules/testimonials/testimonials.php:61
3205
  msgid "Heading"
3206
  msgstr "Encabezado"
3207
 
3208
- #: modules/callout/callout.php:248
3209
  msgid "Overall Alignment"
3210
  msgstr "Alineación"
3211
 
3212
- #: modules/callout/callout.php:255
3213
  msgid "The alignment that will apply to all elements within the callout."
3214
  msgstr ""
3215
- "La alineación que se aplicará a todos los elementos dentro de la leyenda."
3216
 
3217
- #: modules/callout/callout.php:263 modules/cta/cta.php:147
3218
  msgid "Heading Structure"
3219
  msgstr "Estructura del Encabezado"
3220
 
3221
- #: modules/callout/callout.php:267
3222
- #: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
 
3223
  msgid "Heading Tag"
3224
  msgstr "Etiqueta de Encabezado"
3225
 
3226
- #: modules/callout/callout.php:280
3227
- #: modules/content-slider/content-slider.php:445
3228
- #: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
 
 
3229
  #: modules/testimonials/testimonials.php:69
3230
  msgid "Heading Size"
3231
  msgstr "Tamaño del Encabezado"
3232
 
3233
- #: modules/callout/callout.php:294 modules/cta/cta.php:178
3234
  msgid "Heading Custom Size"
3235
  msgstr "Tamaño Personalizado del Encabezado"
3236
 
3237
- #: modules/callout/callout.php:312
3238
  msgid "Image Type"
3239
  msgstr "Tipo de Imagen"
3240
 
3241
- #: modules/callout/callout.php:315
3242
  msgctxt "Image type."
3243
  msgid "None"
3244
  msgstr "Ninguna"
3245
 
3246
- #: modules/callout/callout.php:340 modules/photo/photo.php:401
3247
- #: modules/slideshow/slideshow.php:313
3248
  msgid "Crop"
3249
  msgstr "Recortar / Crop"
3250
 
3251
- #: modules/callout/callout.php:343
3252
  msgctxt "Crop"
3253
  msgid "None"
3254
  msgstr "Nada"
3255
 
3256
- #: modules/callout/callout.php:344 modules/photo/photo.php:405
 
3257
  msgid "Landscape"
3258
  msgstr "Horizontal"
3259
 
3260
- #: modules/callout/callout.php:345 modules/photo/photo.php:406
 
3261
  msgid "Panorama"
3262
  msgstr "Panorama"
3263
 
3264
- #: modules/callout/callout.php:346 modules/photo/photo.php:407
 
3265
  msgid "Portrait"
3266
- msgstr "Retrato"
3267
 
3268
- #: modules/callout/callout.php:347 modules/photo/photo.php:408
 
3269
  msgid "Square"
3270
  msgstr "Cuadrado"
3271
 
3272
- #: modules/callout/callout.php:348 modules/photo/photo.php:409
 
3273
  msgid "Circle"
3274
  msgstr "Círculo"
3275
 
3276
- #: modules/callout/callout.php:356 modules/callout/callout.php:376
3277
  msgid "Above Heading"
3278
  msgstr "Sobre el Encabezado"
3279
 
3280
- #: modules/callout/callout.php:357 modules/callout/callout.php:377
3281
  msgid "Below Heading"
3282
  msgstr "Debajo del Encabezado"
3283
 
3284
- #: modules/callout/callout.php:358 modules/callout/callout.php:380
3285
  msgid "Left of Text and Heading"
3286
  msgstr "Izquierda del Texto y Título"
3287
 
3288
- #: modules/callout/callout.php:359 modules/callout/callout.php:381
3289
  msgid "Right of Text and Heading"
3290
  msgstr "Derecha del Texto y Título"
3291
 
3292
- #: modules/callout/callout.php:378
3293
  msgid "Left of Heading"
3294
  msgstr "Izquierda del Encabezado"
3295
 
3296
- #: modules/callout/callout.php:379
3297
  msgid "Right of Heading"
3298
  msgstr "Derecha del Encabezado"
3299
 
3300
- #: modules/callout/callout.php:387
3301
  msgid "Icon Colors"
3302
- msgstr "Colores del Icono"
3303
 
3304
- #: modules/callout/callout.php:396 modules/icon-group/icon-group.php:56
3305
  #: modules/icon/icon.php:87
3306
  msgid "Hover Color"
3307
  msgstr "Color al pasar el puntero"
3308
 
3309
- #: modules/callout/callout.php:427
3310
  msgid "Icon Structure"
3311
  msgstr "Estructura del icono"
3312
 
3313
- #: modules/callout/callout.php:431 modules/icon-group/icon-group.php:91
3314
- #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
 
3315
  msgid "Size"
3316
  msgstr "Tamaño"
3317
 
3318
- #: modules/callout/callout.php:442
3319
- #: modules/content-slider/content-slider.php:570
3320
  msgid "Call To Action"
3321
- msgstr "Llamado de Acción"
3322
 
3323
- #: modules/callout/callout.php:450
3324
  msgid ""
3325
  "The link applies to the entire module. If choosing a call to action type "
3326
  "below, this link will also be used for the text or button."
3327
  msgstr ""
3328
- "El enlace se aplica para todo el módulo. Si eliges una llamada de acción "
3329
  "debajo, este enlace también se utilizará para el texto o botón."
3330
 
3331
- #: modules/callout/callout.php:470
3332
- #: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
3333
  msgid "Call to Action"
3334
- msgstr "Llamado de Acción"
3335
 
3336
- #: modules/callout/callout.php:477
3337
- #: modules/content-slider/content-slider.php:599
3338
  msgctxt "Call to action."
3339
  msgid "None"
3340
  msgstr "Ninguno"
3341
 
3342
- #: modules/callout/callout.php:498
3343
- #: modules/content-slider/content-slider.php:620
3344
- #: modules/subscribe-form/subscribe-form.php:172
 
 
 
 
 
3345
  msgid "Button Icon"
3346
  msgstr "Icono del Botón"
3347
 
3348
- #: modules/callout/callout.php:504
3349
- #: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
3350
- #: modules/subscribe-form/subscribe-form.php:178
 
 
 
 
 
3351
  msgid "Button Colors"
3352
  msgstr "Colores del Botón"
3353
 
3354
- #: modules/callout/callout.php:539
3355
- #: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
3356
- #: modules/subscribe-form/subscribe-form.php:213
3357
  msgid "Button Style"
3358
  msgstr "Estilo de Botón"
3359
 
3360
- #: modules/callout/callout.php:577
3361
- #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
3362
- #: modules/subscribe-form/subscribe-form.php:251
3363
  msgid "Button Structure"
3364
  msgstr "Estructura del Botón"
3365
 
3366
- #: modules/callout/callout.php:581
3367
  msgid "Button Width"
3368
  msgstr "Ancho del Botón"
3369
 
@@ -3373,7 +3557,7 @@ msgstr "Formulario de Contacto"
3373
 
3374
  #: modules/contact-form/contact-form.php:15
3375
  msgid "A very simple contact form."
3376
- msgstr "Un formulario de contacto simple."
3377
 
3378
  #: modules/contact-form/contact-form.php:31
3379
  msgid "Contact Form Submission"
@@ -3396,18 +3580,29 @@ msgid "The contact form will send to this e-mail"
3396
  msgstr "El formulario se enviará a este e-mail"
3397
 
3398
  #: modules/contact-form/contact-form.php:75
3399
- #: modules/subscribe-form/subscribe-form.php:107
3400
  msgid "Name Field"
3401
- msgstr "Campo de Nombre"
3402
 
3403
  #: modules/contact-form/contact-form.php:78
3404
  #: modules/contact-form/contact-form.php:87
3405
  #: modules/contact-form/contact-form.php:96
3406
  #: modules/contact-form/contact-form.php:105
3407
- #: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
3408
- #: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
3409
- #: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:220
3410
- #: modules/subscribe-form/subscribe-form.php:110
 
 
 
 
 
 
 
 
 
 
 
3411
  msgid "Show"
3412
  msgstr "Mostrar"
3413
 
@@ -3415,16 +3610,27 @@ msgstr "Mostrar"
3415
  #: modules/contact-form/contact-form.php:88
3416
  #: modules/contact-form/contact-form.php:97
3417
  #: modules/contact-form/contact-form.php:106
3418
- #: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
3419
- #: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
3420
- #: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:221
3421
- #: modules/subscribe-form/subscribe-form.php:111
 
 
 
 
 
 
 
 
 
 
 
3422
  msgid "Hide"
3423
  msgstr "Ocultar"
3424
 
3425
  #: modules/contact-form/contact-form.php:84
3426
  msgid "Subject Field"
3427
- msgstr "Campo de Asunto"
3428
 
3429
  #: modules/contact-form/contact-form.php:93
3430
  msgid "Email Field"
@@ -3432,7 +3638,7 @@ msgstr "Campo de Email"
3432
 
3433
  #: modules/contact-form/contact-form.php:102
3434
  msgid "Phone Field"
3435
- msgstr "Campo de Teléfono"
3436
 
3437
  #: modules/contact-form/includes/frontend.php:5
3438
  msgctxt "Contact form field label."
@@ -3455,15 +3661,11 @@ msgstr "Asunto"
3455
 
3456
  #: modules/contact-form/includes/frontend.php:14
3457
  msgid "Please enter a subject."
3458
- msgstr "Por favor introduzca un asunto."
3459
-
3460
- #: modules/contact-form/includes/frontend.php:21
3461
- msgid "Email"
3462
- msgstr "Email"
3463
 
3464
  #: modules/contact-form/includes/frontend.php:22
3465
  msgid "Please enter a valid email."
3466
- msgstr "Por favor introduzca un correo electrónico válido."
3467
 
3468
  #: modules/contact-form/includes/frontend.php:23
3469
  msgid "Your email"
@@ -3475,11 +3677,11 @@ msgstr "Teléfono"
3475
 
3476
  #: modules/contact-form/includes/frontend.php:30
3477
  msgid "Please enter a valid phone number."
3478
- msgstr "Por favor introduzca un teléfono válido."
3479
 
3480
  #: modules/contact-form/includes/frontend.php:31
3481
  msgid "Your phone"
3482
- msgstr "Su número de teléfono"
3483
 
3484
  #: modules/contact-form/includes/frontend.php:36
3485
  msgid "Your Message"
@@ -3499,7 +3701,7 @@ msgstr "Enviar"
3499
 
3500
  #: modules/contact-form/includes/frontend.php:44
3501
  msgid "Message Sent!"
3502
- msgstr "¡Mensaje Enviado!"
3503
 
3504
  #: modules/contact-form/includes/frontend.php:45
3505
  msgid "Message failed. Please try again."
@@ -3515,12 +3717,13 @@ msgstr ""
3515
  "Muestra varias diapositivas con un encabezado opcional y una llamada a la "
3516
  "acción."
3517
 
3518
- #: modules/content-slider/content-slider.php:197 modules/map/map.php:41
3519
- #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:295
 
3520
  msgid "Height"
3521
  msgstr "Altura"
3522
 
3523
- #: modules/content-slider/content-slider.php:202
3524
  msgid ""
3525
  "This setting is the minimum height of the content slider. Content will "
3526
  "expand the height automatically."
@@ -3528,112 +3731,118 @@ msgstr ""
3528
  "Este ajuste es la altura mínima del contenido del slider. El contenido se "
3529
  "expandirá a esta altura de forma automática."
3530
 
3531
- #: modules/content-slider/content-slider.php:206
3532
- #: modules/slideshow/slideshow.php:374
 
3533
  #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
3534
  msgid "Auto Play"
3535
  msgstr "Reproducción Automática"
3536
 
3537
- #: modules/content-slider/content-slider.php:220
3538
  msgid "Show Play/Pause"
3539
  msgstr "Mostrar Reproducir/Pausa"
3540
 
3541
- #: modules/content-slider/content-slider.php:240
3542
  #: modules/testimonials/testimonials.php:102
3543
  msgctxt "Transition type."
3544
  msgid "Slide"
3545
  msgstr "Diapositiva"
3546
 
3547
- #: modules/content-slider/content-slider.php:254
 
 
3548
  #: modules/testimonials/testimonials.php:121
3549
  msgid "Show Arrows"
3550
  msgstr "Mostrar Flechas"
3551
 
3552
- #: modules/content-slider/content-slider.php:263
 
 
3553
  #: modules/testimonials/testimonials.php:151
3554
  msgid "Show Dots"
3555
  msgstr "Mostrar Puntos"
3556
 
3557
- #: modules/content-slider/content-slider.php:277
3558
  msgid "Max Content Width"
3559
  msgstr "Anchura Máxima de Contenido"
3560
 
3561
- #: modules/content-slider/content-slider.php:282
3562
  msgid "The max width that the content area will be within your slides."
3563
  msgstr "La anchura máxima que tendrá el área de contenido en las diapositivas."
3564
 
3565
- #: modules/content-slider/content-slider.php:289
3566
  msgid "Slides"
3567
- msgstr "Diapositivas (slides)"
3568
 
3569
- #: modules/content-slider/content-slider.php:296
 
3570
  msgid "Slide"
3571
- msgstr "Diapositiva (slide)"
3572
 
3573
- #: modules/content-slider/content-slider.php:311
3574
  msgid "Slide Settings"
3575
  msgstr "Configuración de la Diapositiva"
3576
 
3577
- #: modules/content-slider/content-slider.php:321
3578
  msgid "Slide Label"
3579
- msgstr "Etiqueta de Slide"
3580
 
3581
- #: modules/content-slider/content-slider.php:322
3582
  msgid ""
3583
  "A label to identify this slide on the Slides tab of the Content Slider "
3584
  "settings."
3585
  msgstr ""
3586
- "Una etiqueta para identificar esta diapositiva en la ficha de diapositivas "
3587
- "de la configuración del contenido deslizante."
3588
 
3589
- #: modules/content-slider/content-slider.php:327
3590
  msgid "Background Layout"
3591
  msgstr "Diseño de Fondo"
3592
 
3593
- #: modules/content-slider/content-slider.php:333
3594
  msgid "This setting is for the entire background of your slide."
3595
- msgstr "Esta configuración es para todo el fondo de la diapositiva."
3596
 
3597
- #: modules/content-slider/content-slider.php:368
3598
  msgid "Background Video Code"
3599
- msgstr "Código de Video de Fondo"
3600
 
3601
- #: modules/content-slider/content-slider.php:374
3602
  msgid "Content Layout"
3603
  msgstr "Diseño de Contenido"
3604
 
3605
- #: modules/content-slider/content-slider.php:380
3606
  msgid ""
3607
  "This allows you to add content over or in addition to the background "
3608
  "selection above. The location of the content layout can be selected in the "
3609
  "style tab."
3610
  msgstr ""
3611
- "Permite añadir contenido sobre, o en adición de la selección de fondo "
3612
- "anterior. Puedes seleccionar la ubicación del diseño de contenido en la "
3613
- "pestaña estilo."
3614
 
3615
- #: modules/content-slider/content-slider.php:383
3616
  msgid "Text &amp; Photo"
3617
  msgstr "Texto &amp; Foto"
3618
 
3619
- #: modules/content-slider/content-slider.php:384
3620
  msgid "Text &amp; Video"
3621
  msgstr "Texto &amp; Video"
3622
 
3623
- #: modules/content-slider/content-slider.php:385
3624
  msgctxt "Content type."
3625
  msgid "None"
3626
  msgstr "Ninguno"
3627
 
3628
- #: modules/content-slider/content-slider.php:408 modules/video/video.php:132
3629
  msgid "Video Embed Code"
3630
- msgstr "Código de Inserción del Video"
3631
 
3632
- #: modules/content-slider/content-slider.php:468
3633
  msgid "Text Position"
3634
  msgstr "Posición del Texto"
3635
 
3636
- #: modules/content-slider/content-slider.php:474
3637
  msgid ""
3638
  "The position will move the content layout selections left, right or center "
3639
  "over the background of the slide."
@@ -3641,51 +3850,59 @@ msgstr ""
3641
  "La posición moverá las selecciones de diseño de contenido a la izquierda, "
3642
  "derecha o centrado sobre el fondo de la diapositiva."
3643
 
3644
- #: modules/content-slider/content-slider.php:491
3645
  msgid "Top Margin"
3646
  msgstr "Margen Superior"
3647
 
3648
- #: modules/content-slider/content-slider.php:499
3649
  msgid "Bottom Margin"
3650
  msgstr "Margen Inferior"
3651
 
3652
- #: modules/content-slider/content-slider.php:507
3653
  msgid "Left Margin"
3654
  msgstr "Margen Izquierdo"
3655
 
3656
- #: modules/content-slider/content-slider.php:515
3657
  msgid "Right Margin"
3658
  msgstr "Margen Derecho"
3659
 
3660
- #: modules/content-slider/content-slider.php:524
3661
  msgid "Text Colors"
3662
  msgstr "Colores de Texto"
3663
 
3664
- #: modules/content-slider/content-slider.php:534
3665
  msgid "Text Shadow"
3666
  msgstr "Sombra de Texto"
3667
 
3668
- #: modules/content-slider/content-slider.php:543
3669
- #: modules/content-slider/content-slider.php:760
 
 
3670
  msgid "Text Background Color"
3671
  msgstr "Color de Fondo del Texto"
3672
 
3673
- #: modules/content-slider/content-slider.php:544
 
 
3674
  msgid ""
3675
  "The color applies to the overlay behind text over the background selections."
3676
  msgstr ""
3677
- "El color se aplica a la superposición detrás del texto sobre las selecciones "
3678
  "de fondo."
3679
 
3680
- #: modules/content-slider/content-slider.php:549
 
 
3681
  msgid "Text Background Opacity"
3682
- msgstr "Opacidad del fondo del texto"
3683
 
3684
- #: modules/content-slider/content-slider.php:557
 
3685
  msgid "Text Background Height"
3686
- msgstr "Altura del fondo del texto"
3687
 
3688
- #: modules/content-slider/content-slider.php:559
 
3689
  msgid ""
3690
  "Auto will allow the overlay to fit however long the text content is. 100% "
3691
  "will fit the overlay to the top and bottom of the slide."
@@ -3694,12 +3911,13 @@ msgstr ""
3694
  "texto. 100% ajustará la superposición a la parte superior e inferior de la "
3695
  "diapositiva."
3696
 
3697
- #: modules/content-slider/content-slider.php:561
 
3698
  msgctxt "Background height."
3699
  msgid "Auto"
3700
  msgstr "Auto"
3701
 
3702
- #: modules/content-slider/content-slider.php:578
3703
  msgid ""
3704
  "The link applies to the entire slide. If choosing a call to action type "
3705
  "below, this link will also be used for the text or button."
@@ -3707,20 +3925,20 @@ msgstr ""
3707
  "El enlace se aplica para toda la diapositiva. Si eliges una llamada a la "
3708
  "acción debajo, este enlace también se utilizará para el texto o botón."
3709
 
3710
- #: modules/content-slider/content-slider.php:711
3711
  msgid "Border Radius"
3712
  msgstr "Radio del Borde"
3713
 
3714
- #: modules/content-slider/content-slider.php:722
3715
  msgctxt "Module settings form tab. Display on mobile devices."
3716
  msgid "Mobile"
3717
  msgstr "Móvil"
3718
 
3719
- #: modules/content-slider/content-slider.php:725
3720
  msgid "Mobile Photo"
3721
  msgstr "Foto Móvil"
3722
 
3723
- #: modules/content-slider/content-slider.php:731
3724
  msgid ""
3725
  "You can choose a different photo that the slide will change to on mobile "
3726
  "devices or no photo if desired."
@@ -3728,19 +3946,19 @@ msgstr ""
3728
  "Puedes elegir una foto diferente que cambiará al navegar desde dispositivos "
3729
  "móviles o simplemente no elegir ninguna foto."
3730
 
3731
- #: modules/content-slider/content-slider.php:733
3732
  msgid "Use Main Photo"
3733
  msgstr "Utilizar Foto Principal"
3734
 
3735
- #: modules/content-slider/content-slider.php:734
3736
  msgid "Choose Another Photo"
3737
  msgstr "Elegir Otra Foto"
3738
 
3739
- #: modules/content-slider/content-slider.php:735
3740
  msgid "No Photo"
3741
  msgstr "No hay foto"
3742
 
3743
- #: modules/content-slider/content-slider.php:750
3744
  msgid "Mobile Text Colors"
3745
  msgstr "Colores de Texto Móvil"
3746
 
@@ -3748,95 +3966,98 @@ msgstr "Colores de Texto Móvil"
3748
  msgid "Display a heading, subheading and a button."
3749
  msgstr "Mostrar un título, subtítulo y un botón."
3750
 
3751
- #: modules/cta/cta.php:75
3752
  msgid "Ready to find out more?"
3753
- msgstr "¿Listo para saber más?"
3754
 
3755
- #: modules/cta/cta.php:90
3756
  msgid "Drop us a line today for a free quote!"
3757
- msgstr "¡Contáctanos para una cotización!"
3758
 
3759
- #: modules/cta/cta.php:108 modules/gallery/gallery.php:220
3760
- #: modules/post-grid/post-grid.php:44
3761
- #: modules/subscribe-form/subscribe-form.php:98 modules/tabs/tabs.php:52
 
 
3762
  #: modules/testimonials/testimonials.php:37
3763
  #: modules/woocommerce/woocommerce.php:57
3764
  msgid "Layout"
3765
  msgstr "Diseño"
3766
 
3767
- #: modules/cta/cta.php:111 modules/subscribe-form/subscribe-form.php:102
3768
  msgid "Inline"
3769
  msgstr "En línea"
3770
 
3771
- #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:101
3772
  msgid "Stacked"
3773
  msgstr "Apilado"
3774
 
3775
- #: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
3776
  msgid "Spacing"
3777
  msgstr "Espaciado"
3778
 
3779
- #: modules/cta/cta.php:236
3780
  msgid "Button Link"
3781
  msgstr "Enlace del Botón"
3782
 
3783
- #: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
 
3784
  msgid "Gallery"
3785
- msgstr "Galería"
3786
 
3787
  #: modules/gallery/gallery.php:15
3788
  msgid "Display multiple photos in a gallery view."
3789
  msgstr "Mostrar varias fotografías en una vista de galería."
3790
 
3791
- #: modules/gallery/gallery.php:223
3792
  msgid "Collage"
3793
  msgstr "Collage"
3794
 
3795
- #: modules/gallery/gallery.php:224
3796
  msgctxt "Gallery layout: thumbnails."
3797
  msgid "Thumbs"
3798
  msgstr "Miniaturas"
3799
 
3800
- #: modules/gallery/gallery.php:260
3801
  msgid "Photo Size"
3802
  msgstr "Tamaño de la Foto"
3803
 
3804
- #: modules/gallery/gallery.php:263
3805
  msgctxt "Photo size."
3806
  msgid "Small"
3807
  msgstr "Pequeña"
3808
 
3809
- #: modules/gallery/gallery.php:264
3810
  msgctxt "Photo size."
3811
  msgid "Medium"
3812
  msgstr "Mediana"
3813
 
3814
- #: modules/gallery/gallery.php:265
3815
  msgctxt "Photo size."
3816
  msgid "Large"
3817
  msgstr "Grande"
3818
 
3819
- #: modules/gallery/gallery.php:270
3820
  msgid "Photo Spacing"
3821
  msgstr "Espaciado de Foto"
3822
 
3823
- #: modules/gallery/gallery.php:278
3824
  msgid "Show Captions"
3825
  msgstr "Mostrar Títulos"
3826
 
3827
- #: modules/gallery/gallery.php:281 modules/photo/photo.php:432
3828
  msgid "Never"
3829
  msgstr "Nunca"
3830
 
3831
- #: modules/gallery/gallery.php:282 modules/photo/photo.php:433
3832
  msgid "On Hover"
3833
  msgstr "Al pasar por encima"
3834
 
3835
- #: modules/gallery/gallery.php:283 modules/photo/photo.php:434
3836
  msgid "Below Photo"
3837
  msgstr "Debajo de la imagen"
3838
 
3839
- #: modules/gallery/gallery.php:285
3840
  msgid ""
3841
  "The caption pulls from whatever text you put in the caption area in the "
3842
  "media manager for each image. The caption is also pulled directly from "
@@ -3846,20 +4067,20 @@ msgstr ""
3846
  "biblioteca de medios para cada imagen. El titulo también se toma "
3847
  "directamente de SmugMug si tienes títulos en tu galería."
3848
 
3849
- #: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:336
3850
  msgid "Click Action"
3851
- msgstr "Acción al Clic"
3852
 
3853
- #: modules/gallery/gallery.php:292
3854
  msgctxt "Click action."
3855
  msgid "None"
3856
  msgstr "Ninguno"
3857
 
3858
- #: modules/gallery/gallery.php:293 modules/photo/photo.php:452
3859
  msgid "Lightbox"
3860
  msgstr "Lightbox"
3861
 
3862
- #: modules/gallery/gallery.php:294
3863
  msgid "Photo Link"
3864
  msgstr "Enlace de Foto"
3865
 
@@ -3893,19 +4114,19 @@ msgstr "Mostrar código HTML."
3893
 
3894
  #: modules/icon-group/icon-group.php:14
3895
  msgid "Icon Group"
3896
- msgstr "Grupo de Íconos"
3897
 
3898
  #: modules/icon-group/icon-group.php:15
3899
  msgid "Display a group of linked Font Awesome icons."
3900
- msgstr "Muestra un grupo de íconos con un enlace."
3901
 
3902
  #: modules/icon-group/icon-group.php:125
3903
  msgid "Add Icon"
3904
- msgstr "Añadir Ícono"
3905
 
3906
  #: modules/icon/icon.php:15
3907
  msgid "Display an icon and optional title."
3908
- msgstr "Mostrar un ícono y título opcional."
3909
 
3910
  #: modules/map/map.php:14
3911
  msgid "Map"
@@ -3927,164 +4148,314 @@ msgstr "Plaza del Patio, 8-A Alcora Castellon Spain"
3927
  msgid "Upload a photo or display one from the media library."
3928
  msgstr "Añadir una foto o mostrar una de la biblioteca."
3929
 
3930
- #: modules/photo/photo.php:375
3931
  msgid "Photo Source"
3932
  msgstr "Origen de la Imagen"
3933
 
3934
- #: modules/photo/photo.php:379 modules/photo/photo.php:451
3935
  msgid "URL"
3936
  msgstr "URL"
3937
 
3938
- #: modules/photo/photo.php:396
3939
  msgid "Photo URL"
3940
- msgstr "URL de la foto"
3941
 
3942
- #: modules/photo/photo.php:397
3943
  msgid "http://www.example.com/my-photo.jpg"
3944
  msgstr "http://www.ejemplo.com/mi-foto.jpg"
3945
 
3946
- #: modules/photo/photo.php:404
3947
  msgctxt "Crop."
3948
  msgid "None"
3949
  msgstr "Nada"
3950
 
3951
- #: modules/photo/photo.php:425 modules/photo/photo.php:439
3952
  msgid "Caption"
3953
  msgstr "Encabezado"
3954
 
3955
- #: modules/photo/photo.php:429
3956
  msgid "Show Caption"
3957
  msgstr "Mostrar Leyenda"
3958
 
3959
- #: modules/photo/photo.php:448
3960
  msgid "Link Type"
3961
  msgstr "Tipo de Enlace"
3962
 
3963
- #: modules/photo/photo.php:450
3964
  msgctxt "Link type."
3965
  msgid "None"
3966
  msgstr "Ninguno"
3967
 
3968
- #: modules/photo/photo.php:453
3969
  msgid "Photo File"
3970
- msgstr "Archivo de la foto"
3971
 
3972
- #: modules/photo/photo.php:464
3973
  msgid ""
3974
  "Link type applies to how the image should be linked on click. You can choose "
3975
  "a specific URL, the individual photo or a separate page with the photo."
3976
  msgstr ""
3977
  "Tipo de enlace se aplica a cómo la imagen debería estar vinculada al hacer "
3978
- "clic. Puedes elegir una dirección URL específica, la foto individual o una "
3979
  "página separada con la foto."
3980
 
3981
- #: modules/photo/photo.php:471 modules/slideshow/slideshow.php:357
3982
  msgid "Link URL"
3983
- msgstr "URL de enlace"
3984
-
3985
- #: modules/post-grid/includes/frontend.php:41
3986
- msgid "No posts found."
3987
- msgstr "No se ha encontrado ninguna entrada."
3988
 
 
 
3989
  #: modules/post-grid/includes/post-feed.php:14
3990
  #: modules/post-grid/includes/post-grid.php:24
 
3991
  #, php-format
3992
  msgctxt "%s stands for author name."
3993
  msgid "By %s"
3994
  msgstr "Por %s"
3995
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3996
  #: modules/post-grid/post-grid.php:14
3997
  msgid "Posts"
3998
  msgstr "Entradas"
3999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4000
  #: modules/post-grid/post-grid.php:15
4001
  msgid "Display a grid of your WordPress posts."
4002
- msgstr "Mostrar una cuadricula con tus entradas."
4003
 
4004
  #: modules/post-grid/post-grid.php:51
4005
  msgid "Layout Style"
4006
  msgstr "Estilos de Diseño"
4007
 
4008
- #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
4009
- msgid "Grid"
4010
- msgstr "Cuadrícula"
4011
-
4012
  #: modules/post-grid/post-grid.php:56
4013
  msgid "Feed"
4014
  msgstr "Feed"
4015
 
4016
- #: modules/post-grid/post-grid.php:71
4017
  msgid "Pagination Style"
4018
  msgstr "Estilo de Paginación"
4019
 
4020
- #: modules/post-grid/post-grid.php:74
4021
  msgid "Numbers"
4022
  msgstr "Números"
4023
 
4024
- #: modules/post-grid/post-grid.php:76
4025
  msgctxt "Pagination style."
4026
  msgid "None"
4027
  msgstr "Ninguna"
4028
 
4029
- #: modules/post-grid/post-grid.php:81
4030
  msgid "Posts Per Page"
4031
  msgstr "Entradas Por Página"
4032
 
4033
- #: modules/post-grid/post-grid.php:92
4034
  msgid "Post Width"
4035
  msgstr "Ancho de la Entrada"
4036
 
4037
- #: modules/post-grid/post-grid.php:100
4038
- msgid "Post Spacing"
4039
- msgstr "Espaciado de la Entrada"
4040
-
4041
- #: modules/post-grid/post-grid.php:109
4042
- msgid "Featured Image"
4043
- msgstr "Imagen Destacada"
4044
-
4045
- #: modules/post-grid/post-grid.php:130
4046
- msgid "Above Text"
4047
- msgstr "Encima del Texto"
4048
-
4049
- #: modules/post-grid/post-grid.php:131
4050
  msgid "Beside Text"
4051
  msgstr "Al lado del Texto"
4052
 
4053
- #: modules/post-grid/post-grid.php:142
4054
- msgid "Post Info"
4055
- msgstr "Información de la Entrada"
4056
-
4057
- #: modules/post-grid/post-grid.php:169
4058
- msgid "Date Format"
4059
- msgstr "Formato de Fecha"
4060
-
4061
- #: modules/post-grid/post-grid.php:185
4062
  msgid "Comments"
4063
  msgstr "Comentarios"
4064
 
4065
- #: modules/post-grid/post-grid.php:208
4066
  msgid "Content Type"
4067
  msgstr "Tipo de Contenido"
4068
 
4069
- #: modules/post-grid/post-grid.php:211
4070
  msgid "Excerpt"
4071
  msgstr "Extracto"
4072
 
4073
- #: modules/post-grid/post-grid.php:212
4074
  msgid "Full Text"
4075
  msgstr "Texto completo"
4076
 
4077
- #: modules/post-grid/post-grid.php:217
4078
- msgid "More Link"
4079
- msgstr "Enlace Más"
4080
 
4081
- #: modules/post-grid/post-grid.php:226
4082
- msgid "More Link Text"
4083
- msgstr "Texto Enlace Más"
4084
 
4085
- #: modules/post-grid/post-grid.php:227
4086
- msgid "Read More"
4087
- msgstr "Leer Más"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4088
 
4089
  #: modules/pricing-table/pricing-table.php:14
4090
  msgid "Pricing Table"
@@ -4117,7 +4488,7 @@ msgstr "Apretado"
4117
 
4118
  #: modules/pricing-table/pricing-table.php:59
4119
  msgid "Features Min Height"
4120
- msgstr "Altura Mínima de Características"
4121
 
4122
  #: modules/pricing-table/pricing-table.php:63
4123
  msgid ""
@@ -4147,7 +4518,7 @@ msgstr "Tamaño de Título"
4147
 
4148
  #: modules/pricing-table/pricing-table.php:107
4149
  msgid "Price Box"
4150
- msgstr "Caja de Precio"
4151
 
4152
  #: modules/pricing-table/pricing-table.php:111
4153
  #: modules/woocommerce/woocommerce.php:190
@@ -4167,7 +4538,7 @@ msgid "Price Size"
4167
  msgstr "Tamaño del Precio"
4168
 
4169
  #: modules/pricing-table/pricing-table.php:133
4170
- #: modules/subscribe-form/subscribe-form.php:167
4171
  msgid "Button Text"
4172
  msgstr "Texto del Botón"
4173
 
@@ -4198,7 +4569,7 @@ msgstr "Color Destacado"
4198
 
4199
  #: modules/pricing-table/pricing-table.php:178
4200
  msgid "Accent Text Color"
4201
- msgstr "Color del Texto Destacado"
4202
 
4203
  #: modules/pricing-table/pricing-table.php:182
4204
  msgid "Box Top Margin"
@@ -4232,7 +4603,9 @@ msgstr "Barra Lateral"
4232
  #: modules/sidebar/sidebar.php:15
4233
  msgid ""
4234
  "Display a WordPress sidebar that has been registered by the current theme."
4235
- msgstr "Muestra una barra lateral que ha sido registrada por el tema actual."
 
 
4236
 
4237
  #: modules/slideshow/slideshow.php:14
4238
  msgid "Slideshow"
@@ -4240,23 +4613,23 @@ msgstr "Slideshow"
4240
 
4241
  #: modules/slideshow/slideshow.php:15
4242
  msgid "Display multiple photos in a slideshow view."
4243
- msgstr "Mostrar varias fotos en una vista de presentación."
4244
 
4245
- #: modules/slideshow/slideshow.php:303
4246
  msgid "Skin Color"
4247
- msgstr "Color del Skin"
4248
 
4249
- #: modules/slideshow/slideshow.php:306
4250
  msgctxt "Color."
4251
  msgid "Light"
4252
  msgstr "Claro"
4253
 
4254
- #: modules/slideshow/slideshow.php:307
4255
  msgctxt "Color."
4256
  msgid "Dark"
4257
  msgstr "Oscuro"
4258
 
4259
- #: modules/slideshow/slideshow.php:309
4260
  msgid ""
4261
  "If your overall theme/images are lighter in color, light will display "
4262
  "buttons in a darker color scheme and vice versa for dark."
@@ -4264,7 +4637,7 @@ msgstr ""
4264
  "Si tu tema o imágenes tienen un color claro, la opción claro mostrará los "
4265
  "botones en un esquema de color oscuro y lo contrario con la opción oscuro."
4266
 
4267
- #: modules/slideshow/slideshow.php:319
4268
  msgid ""
4269
  "Crop set to no will fit the slideshow images to the height you specify and "
4270
  "keep the width proportional, whereas crop set to yes will fit the slideshow "
@@ -4276,33 +4649,33 @@ msgstr ""
4276
  "ajustará las imágenes a todos los lados del área de contenido, cortando a "
4277
  "izquierda y derecha para adecuarlas a la altura que has especificado."
4278
 
4279
- #: modules/slideshow/slideshow.php:323
4280
  msgid "Disable Right-Click"
4281
  msgstr "Desactivar Clic Derecho"
4282
 
4283
- #: modules/slideshow/slideshow.php:343
4284
  msgctxt "Click action type."
4285
  msgid "None"
4286
  msgstr "Ninguno"
4287
 
4288
- #: modules/slideshow/slideshow.php:367
4289
  msgid "Playback"
4290
  msgstr "Reproducción"
4291
 
4292
- #: modules/slideshow/slideshow.php:393
4293
  msgctxt "Slideshow transition."
4294
  msgid "None"
4295
  msgstr "Ninguno"
4296
 
4297
- #: modules/slideshow/slideshow.php:430
4298
  msgid "Controls"
4299
  msgstr "Controles"
4300
 
4301
- #: modules/slideshow/slideshow.php:437 modules/slideshow/slideshow.php:486
4302
  msgid "Navigation Arrows"
4303
  msgstr "Flechas de Navegación"
4304
 
4305
- #: modules/slideshow/slideshow.php:443
4306
  msgid ""
4307
  "Navigational arrows allow the visitor to freely move through the images in "
4308
  "your slideshow. These are larger arrows that overlay your slideshow images "
@@ -4313,68 +4686,68 @@ msgstr ""
4313
  "superpuestas a las imágenes y están separados de las flechas de control de "
4314
  "navegación."
4315
 
4316
- #: modules/slideshow/slideshow.php:448
4317
  msgid "Control Bar"
4318
  msgstr "Barra de Control"
4319
 
4320
- #: modules/slideshow/slideshow.php:452
4321
  msgid "Nav Type"
4322
  msgstr "Tipo de Navegación"
4323
 
4324
- #: modules/slideshow/slideshow.php:455
4325
  msgctxt "Nav type."
4326
  msgid "None"
4327
  msgstr "Ninguno"
4328
 
4329
- #: modules/slideshow/slideshow.php:456
4330
  msgid "Buttons"
4331
  msgstr "Botones"
4332
 
4333
- #: modules/slideshow/slideshow.php:457 modules/slideshow/slideshow.php:587
4334
  msgid "Thumbs"
4335
  msgstr "Miniaturas"
4336
 
4337
- #: modules/slideshow/slideshow.php:472
4338
  msgid "Nav Position"
4339
- msgstr "Posición de Navegación"
4340
 
4341
- #: modules/slideshow/slideshow.php:482
4342
  msgid "Control Bar Buttons"
4343
- msgstr "Botones de Barra de Control"
4344
 
4345
- #: modules/slideshow/slideshow.php:495
4346
  msgid "Play Button"
4347
- msgstr "Botón de Play"
4348
 
4349
- #: modules/slideshow/slideshow.php:504
4350
  msgid "Fullscreen Button"
4351
- msgstr "Botón de Pantalla Completa"
4352
 
4353
- #: modules/slideshow/slideshow.php:513
4354
  msgid "Photo Count"
4355
  msgstr "Contador de Fotos"
4356
 
4357
- #: modules/slideshow/slideshow.php:522
4358
  msgid "Thumbs Button"
4359
- msgstr "Botón de Miniaturas"
4360
 
4361
- #: modules/slideshow/slideshow.php:531
4362
  msgid "Caption Button"
4363
- msgstr "Botón de Caption"
4364
 
4365
- #: modules/slideshow/slideshow.php:540
4366
  msgid "Social Button"
4367
  msgstr "Botón Social"
4368
 
4369
- #: modules/slideshow/slideshow.php:550
4370
  msgid "Control Bar Overlay"
4371
  msgstr "Barra de Control de Superposición"
4372
 
4373
- #: modules/slideshow/slideshow.php:554
4374
  msgid "Overlay Enabled"
4375
  msgstr "Superposición Habilitada"
4376
 
4377
- #: modules/slideshow/slideshow.php:565
4378
  msgid ""
4379
  "Control bar overlay specifies if the control bar buttons you choose overlay "
4380
  "your slideshow images or site below the slideshow completely."
@@ -4383,11 +4756,11 @@ msgstr ""
4383
  "de control han de estar superpuestos a la imagen o si han de aparecer por "
4384
  "debajo de la presentación de las imágenes."
4385
 
4386
- #: modules/slideshow/slideshow.php:569
4387
  msgid "Overlay Hide"
4388
  msgstr "Ocultar Superposición"
4389
 
4390
- #: modules/slideshow/slideshow.php:575
4391
  msgid ""
4392
  "Overlay hide will hide the control bar after however many seconds you "
4393
  "specify below. They will reappear upon mouse over."
@@ -4395,33 +4768,33 @@ msgstr ""
4395
  "Superponer ocultará la barra de control tras los segundos que hayas "
4396
  "especificado aquí abajo. Volverá a aparecer el pasar el ratón por encima."
4397
 
4398
- #: modules/slideshow/slideshow.php:579
4399
  msgid "Overlay Hide Delay"
4400
- msgstr "Retardo en Ocultar Superposición"
4401
 
4402
- #: modules/slideshow/slideshow.php:591
4403
  msgid "Thumbs Size"
4404
  msgstr "Tamaño de las Miniaturas"
4405
 
4406
- #: modules/slideshow/slideshow.php:600
4407
  msgid "Social"
4408
  msgstr "Social"
4409
 
4410
- #: modules/slideshow/slideshow.php:604
4411
  msgid "Facebook Button"
4412
  msgstr "Botón de Facebook"
4413
 
4414
- #: modules/slideshow/slideshow.php:616
4415
  msgid "Twitter Button"
4416
  msgstr "Botón de Twitter"
4417
 
4418
- #: modules/slideshow/slideshow.php:628
4419
  msgid "Google Plus Button"
4420
  msgstr "Botón de Google Plus"
4421
 
4422
- #: modules/slideshow/slideshow.php:640
4423
  msgid "Pinterest Button"
4424
- msgstr "Botón de Pinterest"
4425
 
4426
  #: modules/social-buttons/social-buttons.php:14
4427
  msgid "Social Buttons"
@@ -4446,7 +4819,7 @@ msgid ""
4446
  "whatever you put in this field."
4447
  msgstr ""
4448
  "El campo de dirección URL de destino se correlaciona con la página con la "
4449
- "que deseas que tus íconos sociales interactúen. Por ejemplo, si muestras "
4450
  "Facebook, el usuario hará un \"Me gusta\" a lo que sea que hayas puesto en "
4451
  "este campo."
4452
 
@@ -4473,11 +4846,11 @@ msgstr "Nombre"
4473
 
4474
  #: modules/subscribe-form/includes/frontend.php:12
4475
  msgid "Please enter a valid email address."
4476
- msgstr "Por favor, introduzca una dirección de email válida."
4477
 
4478
- #: modules/subscribe-form/includes/frontend.php:40
4479
  msgid "Something went wrong. Please check your entries and try again."
4480
- msgstr "Algo salió mal. Por favor revise las entradas e inténtelo de nuevo."
4481
 
4482
  #: modules/subscribe-form/subscribe-form.php:18
4483
  msgid "Subscribe Form"
@@ -4487,40 +4860,34 @@ msgstr "Formulario de suscripción"
4487
  msgid "Adds a simple subscribe form to your layout."
4488
  msgstr "Añade un formulario simple de suscripción a tu diseño."
4489
 
4490
- #: modules/subscribe-form/subscribe-form.php:72
4491
- msgid "There was an error subscribing. Please try again."
4492
- msgstr ""
4493
- "Se ha producido un error al realizar la suscripción. Por favor, inténtelo de "
4494
- "nuevo."
4495
-
4496
- #: modules/subscribe-form/subscribe-form.php:117
4497
  msgid "Success"
4498
  msgstr "Éxito"
4499
 
4500
- #: modules/subscribe-form/subscribe-form.php:121
4501
  msgid "Success Action"
4502
  msgstr "Acción de éxito"
4503
 
4504
- #: modules/subscribe-form/subscribe-form.php:123
4505
  msgid "Show Message"
4506
  msgstr "Mostrar mensaje"
4507
 
4508
- #: modules/subscribe-form/subscribe-form.php:124
4509
  msgid "Redirect"
4510
  msgstr "Redirigir"
4511
 
4512
- #: modules/subscribe-form/subscribe-form.php:143
4513
  msgid ""
4514
  "Thanks for subscribing! Please check your email for further instructions."
4515
  msgstr ""
4516
  "¡Gracias por suscribirte! Por favor revisa tu correo electrónico para "
4517
  "obtener más instrucciones."
4518
 
4519
- #: modules/subscribe-form/subscribe-form.php:150
4520
  msgid "Success URL"
4521
- msgstr "URL de Éxito"
4522
 
4523
- #: modules/subscribe-form/subscribe-form.php:168
4524
  msgid "Subscribe!"
4525
  msgstr "¡Suscríbete!"
4526
 
@@ -4581,7 +4948,7 @@ msgstr "Agregar Testimonio"
4581
 
4582
  #: modules/video/video.php:20
4583
  msgid "Render a WordPress or embedable video."
4584
- msgstr "Reproducir un video o un video incrustado."
4585
 
4586
  #: modules/video/video.php:83
4587
  msgid "Video Type"
@@ -4596,10 +4963,6 @@ msgctxt "Video preview/fallback image."
4596
  msgid "Poster"
4597
  msgstr "Cartel"
4598
 
4599
- #: modules/video/video.php:120
4600
- msgid "Loop"
4601
- msgstr "Loop"
4602
-
4603
  #: modules/widget/includes/frontend.php:35
4604
  #: modules/widget/includes/settings-general.php:46
4605
  #, php-format
@@ -4741,7 +5104,7 @@ msgstr ""
4741
 
4742
  #: modules/woocommerce/woocommerce.php:160
4743
  msgid "Category Slug"
4744
- msgstr "Slug de Categoría"
4745
 
4746
  #: modules/woocommerce/woocommerce.php:162
4747
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-08-02 20:17-0800\n"
6
+ "PO-Revision-Date: 2015-08-04 14:18+0100\n"
7
  "Last-Translator: Roberto Porcar <rporcar@arrakis.es>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.7.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
55
 
56
  #: classes/class-fl-builder-admin-settings.php:167
57
  #: modules/icon-group/icon-group.php:27
58
+ #: modules/post-carousel/post-carousel.php:275
59
+ #: modules/post-grid/post-grid.php:257
60
  msgid "Icons"
61
+ msgstr "Iconos"
62
 
63
  #: classes/class-fl-builder-admin-settings.php:171
64
  msgid "Editing"
86
 
87
  #: classes/class-fl-builder-admin-settings.php:439
88
  msgid "Error! You must have at least one icon set enabled."
89
+ msgstr "Error! Necesitas tener al menos una colección de iconos habilitada."
90
 
91
  #: classes/class-fl-builder-admin-settings.php:481
92
  msgid "Error! Could not unzip file."
103
 
104
  #: classes/class-fl-builder-admin-settings.php:636
105
  msgid "Error! You must have at least one feature of the help button enabled."
106
+ msgstr ""
107
+ "¡Error! Debse tener al menos una característica del botón ayuda habilitada."
108
 
109
  #: classes/class-fl-builder-admin.php:45
110
  #, php-format
138
  msgstr "Actualizar"
139
 
140
  #: classes/class-fl-builder-admin.php:253
141
+ #: classes/class-fl-builder-model.php:3156
142
  msgid "Page Builder"
143
  msgstr "Page Builder"
144
 
145
+ #: classes/class-fl-builder-model.php:1616
146
  #, php-format
147
  msgctxt "%s stands for the module filename"
148
  msgid ""
153
  "espacio de nombres de tu módulo para garantizar la compatibilidad con Beaver "
154
  "Builder."
155
 
156
+ #: classes/class-fl-builder-model.php:1667
157
+ #: classes/class-fl-builder-model.php:1728 modules/heading/heading.php:16
158
  #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
159
  #: modules/separator/separator.php:16 modules/video/video.php:21
160
  msgid "Basic Modules"
161
  msgstr "Módulos Básicos"
162
 
163
+ #: classes/class-fl-builder-model.php:1668
164
+ #: classes/class-fl-builder-model.php:1729 modules/accordion/accordion.php:16
165
  #: modules/button/button.php:16 modules/callout/callout.php:16
166
  #: modules/contact-form/contact-form.php:16
167
  #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
168
  #: modules/gallery/gallery.php:16 modules/html/html.php:16
169
  #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
170
+ #: modules/map/map.php:16 modules/post-carousel/post-carousel.php:16
171
+ #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
172
  #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
173
  #: modules/slideshow/slideshow.php:16
174
  #: modules/social-buttons/social-buttons.php:16
178
  msgid "Advanced Modules"
179
  msgstr "Módulos Avanzados"
180
 
181
+ #: classes/class-fl-builder-model.php:1669
182
+ #: classes/class-fl-builder-model.php:1730
183
  msgid "Other Modules"
184
  msgstr "Otros Módulos"
185
 
186
+ #: classes/class-fl-builder-model.php:1670
187
+ #: classes/class-fl-builder-model.php:1731
188
  #: includes/admin-settings-modules.php:32 includes/ui.php:99
189
  #: modules/widget/widget.php:16
190
  msgid "WordPress Widgets"
191
  msgstr "WordPress Widgets"
192
 
193
+ #: classes/class-fl-builder-model.php:2320
194
  #, php-format
195
  msgctxt "%s stands for post/page title."
196
  msgid "Copy of %s"
197
  msgstr "Copia de %s"
198
 
199
+ #: classes/class-fl-builder-model.php:2758
200
  msgctxt "Default user template category."
201
  msgid "Uncategorized"
202
  msgstr "Sin categoría"
203
 
204
+ #: classes/class-fl-builder-model.php:3113
205
  msgid "Home Pages"
206
  msgstr "Páginas de Inicio"
207
 
208
+ #: classes/class-fl-builder-model.php:3114
209
  msgid "Content Pages"
210
  msgstr "Páginas de Contenido"
211
 
213
  #: classes/class-fl-builder-photo.php:100
214
  msgctxt "Image size."
215
  msgid "Full Size"
216
+ msgstr "Tamaño completo"
217
 
218
  #: classes/class-fl-builder-photo.php:101
219
  msgctxt "Image size."
230
  msgid "Thumbnail"
231
  msgstr "Miniatura"
232
 
233
+ #: classes/class-fl-builder-service-activecampaign.php:69
234
+ msgid "Error: You must provide an API URL."
235
+ msgstr "Error: Debes proporcionar una dirección URL de la API."
236
 
237
+ #: classes/class-fl-builder-service-activecampaign.php:73
238
+ #: classes/class-fl-builder-service-campaign-monitor.php:55
239
+ #: classes/class-fl-builder-service-constant-contact.php:48
240
+ #: classes/class-fl-builder-service-getresponse.php:67
241
+ #: classes/class-fl-builder-service-hatchbuck.php:48
242
+ #: classes/class-fl-builder-service-infusionsoft.php:79
243
+ #: classes/class-fl-builder-service-madmimi.php:73
244
+ #: classes/class-fl-builder-service-mailchimp.php:67
245
+ msgid "Error: You must provide an API key."
246
+ msgstr "Error: Debes proporcionar una clave de API."
247
 
248
+ #: classes/class-fl-builder-service-activecampaign.php:81
249
+ msgid "Error: Please check your API URL and API key."
250
+ msgstr "Error: Por favor, comprueba tu URL API y la API key."
251
 
252
+ #: classes/class-fl-builder-service-activecampaign.php:108
253
+ msgid "API URL"
254
+ msgstr "API URL"
255
+
256
+ #: classes/class-fl-builder-service-activecampaign.php:109
257
  msgid ""
258
+ "Your API url can be found in your ActiveCampaign account under My Settings > "
259
+ "API."
260
  msgstr ""
261
+ "La API url se encuentra en tu cuenta de ActiveCampaign bajo My Settings > "
262
+ "API."
263
+
264
+ #: classes/class-fl-builder-service-activecampaign.php:119
265
+ #: classes/class-fl-builder-service-campaign-monitor.php:88
266
+ #: classes/class-fl-builder-service-constant-contact.php:88
267
+ #: classes/class-fl-builder-service-getresponse.php:100
268
+ #: classes/class-fl-builder-service-hatchbuck.php:87
269
+ #: classes/class-fl-builder-service-infusionsoft.php:129
270
+ #: classes/class-fl-builder-service-madmimi.php:121
271
+ #: classes/class-fl-builder-service-mailchimp.php:100
272
+ msgid "API Key"
273
+ msgstr "Clave API"
274
 
275
+ #: classes/class-fl-builder-service-activecampaign.php:120
276
+ msgid ""
277
+ "Your API key can be found in your ActiveCampaign account under My Settings > "
278
+ "API."
279
+ msgstr ""
280
+ "La API key se encuentra en tu cuenta de ActiveCampaign bajo My Settings > "
281
+ "API."
282
+
283
+ #: classes/class-fl-builder-service-activecampaign.php:169
284
  #: classes/class-fl-builder-service-aweber.php:182
285
  #: classes/class-fl-builder-service-campaign-monitor.php:148
286
  #: classes/class-fl-builder-service-campaign-monitor.php:199
289
  #: classes/class-fl-builder-service-icontact.php:207
290
  #: classes/class-fl-builder-service-infusionsoft.php:204
291
  #: classes/class-fl-builder-service-madmimi.php:178
292
+ #: classes/class-fl-builder-service-mailchimp.php:177
293
  #: classes/class-fl-builder-service-mailpoet.php:92
294
  #: classes/class-fl-builder-service-sendinblue.php:161
295
+ #: classes/class-fl-builder-services.php:288 includes/service-settings.php:21
296
  #: modules/woocommerce/woocommerce.php:60
297
  msgid "Choose..."
298
  msgstr "Elegir..."
299
 
300
+ #: classes/class-fl-builder-service-activecampaign.php:181
301
  #: classes/class-fl-builder-service-aweber.php:192
302
  #: classes/class-fl-builder-service-campaign-monitor.php:209
303
  #: classes/class-fl-builder-service-constant-contact.php:166
305
  #: classes/class-fl-builder-service-icontact.php:217
306
  #: classes/class-fl-builder-service-infusionsoft.php:214
307
  #: classes/class-fl-builder-service-madmimi.php:188
308
+ #: classes/class-fl-builder-service-mailchimp.php:187
309
  #: classes/class-fl-builder-service-mailpoet.php:102
310
  #: classes/class-fl-builder-service-sendinblue.php:171
311
  msgctxt "An email list from a third party provider."
312
  msgid "List"
313
  msgstr "Lista"
314
 
315
+ #: classes/class-fl-builder-service-activecampaign.php:208
316
+ msgid ""
317
+ "There was an error subscribing to ActiveCampaign. The account is no longer "
318
+ "connected."
319
+ msgstr ""
320
+ "Hubo un error al suscribirse a ActiveCampaign. La cuenta ya no está "
321
+ "conectada."
322
+
323
+ #: classes/class-fl-builder-service-activecampaign.php:239
324
+ msgid "Error: Invalid API data."
325
+ msgstr "Error: datos API no válidos."
326
+
327
+ #: classes/class-fl-builder-service-aweber.php:72
328
+ msgid "Error: You must provide an Authorization Code."
329
+ msgstr "Error: Debse proporcionar un código de autorización."
330
+
331
+ #: classes/class-fl-builder-service-aweber.php:76
332
+ msgid "Error: Please enter a valid Authorization Code."
333
+ msgstr "Error: Por favor, introducd un código de autorización válido."
334
+
335
+ #: classes/class-fl-builder-service-aweber.php:127
336
+ msgid "Authorization Code"
337
+ msgstr "Código Autorización"
338
+
339
+ #: classes/class-fl-builder-service-aweber.php:128
340
+ #, php-format
341
+ msgid ""
342
+ "Please register this website with AWeber to get your Authorization Code. <a"
343
+ "%s>Register Now</a>"
344
+ msgstr ""
345
+ "Por favor registra esta web con AWeber para obtener tu código de "
346
+ "autorización. <a%s>Regístrate ahora</a>"
347
+
348
  #: classes/class-fl-builder-service-aweber.php:219
349
  msgid ""
350
  "There was an error subscribing to AWeber. The account is no longer connected."
351
+ msgstr "Hubo un error suscribirse a AWeber. La cuenta ya no está conectada."
352
 
353
  #: classes/class-fl-builder-service-aweber.php:242
354
  msgid "There was an error connecting to AWeber. Please try again."
359
  msgid "There was an error subscribing to AWeber. %s"
360
  msgstr "Hubo un error al suscribirse a AWeber. %s"
361
 
 
 
 
 
 
 
 
 
 
 
362
  #: classes/class-fl-builder-service-campaign-monitor.php:67
363
  #: classes/class-fl-builder-service-campaign-monitor.php:129
364
  #: classes/class-fl-builder-service-getresponse.php:76
367
  msgid "Error: Please check your API key."
368
  msgstr "Error: Por favor comprueba tu clave de API."
369
 
 
 
 
 
 
 
 
 
 
 
370
  #: classes/class-fl-builder-service-campaign-monitor.php:89
371
  msgid ""
372
  "Your API key can be found in your Campaign Monitor account under Account "
373
  "Settings > API Key."
374
  msgstr ""
375
+ "La clave API puede encontrarse en tu cuenta Campaign Monitor bajo de campaña "
376
+ "Monitor bajo Account Settings > API Key."
377
 
378
  #: classes/class-fl-builder-service-campaign-monitor.php:158
379
  msgctxt "A client account in Campaign Monitor."
385
  "There was an error subscribing to Campaign Monitor. The account is no longer "
386
  "connected."
387
  msgstr ""
388
+ "Hubo un error suscribirse a Campaign Monitor. La cuenta ya no está conectada."
 
389
 
390
  #: classes/class-fl-builder-service-campaign-monitor.php:253
391
  msgid "There was an error subscribing to Campaign Monitor."
403
 
404
  #: classes/class-fl-builder-service-constant-contact.php:89
405
  msgid "Your Constant Contact API key."
406
+ msgstr "Tu API key Constant Contact."
407
 
408
  #: classes/class-fl-builder-service-constant-contact.php:99
409
  msgid "Access Token"
410
+ msgstr "Access Token"
411
 
412
  #: classes/class-fl-builder-service-constant-contact.php:100
413
  msgid "Your Constant Contact access token."
414
+ msgstr "El token de acceso de contacto permanente."
415
 
416
  #: classes/class-fl-builder-service-constant-contact.php:101
417
  #, php-format
438
  msgid "There was an error subscribing to Constant Contact. %s"
439
  msgstr "Hubo un error al suscribirse a Constant Contact. %s"
440
 
441
+ #: classes/class-fl-builder-service-email-address.php:39
442
+ #: classes/class-fl-builder-service-madmimi.php:69
443
+ msgid "Error: You must provide an email address."
444
+ msgstr "Error: Debes proporcionar un nombre de usuario."
445
+
446
+ #: classes/class-fl-builder-service-email-address.php:63
447
+ #: classes/class-fl-builder-service-madmimi.php:110
448
+ #: modules/subscribe-form/includes/frontend.php:11
449
+ msgid "Email Address"
450
+ msgstr "Correo Electrónico"
451
+
452
+ #: classes/class-fl-builder-service-email-address.php:110
453
+ msgid "There was an error subscribing. The account is no longer connected."
454
+ msgstr "Hubo un error al suscribirse. La cuenta ya no está conectada."
455
+
456
+ #: classes/class-fl-builder-service-email-address.php:114
457
+ msgid "Subscribe Form Signup"
458
+ msgstr "Formulario de Suscripción"
459
+
460
+ #: classes/class-fl-builder-service-email-address.php:115
461
+ #: modules/contact-form/includes/frontend.php:21
462
+ msgid "Email"
463
+ msgstr "Email"
464
+
465
+ #: classes/class-fl-builder-service-email-address.php:118
466
+ msgid "Name"
467
+ msgstr "Nombre"
468
+
469
+ #: classes/class-fl-builder-service-email-address.php:124
470
+ #: modules/subscribe-form/subscribe-form.php:73
471
+ msgid "There was an error subscribing. Please try again."
472
+ msgstr ""
473
+ "Se ha producido un error al realizar la suscripción. Por favor, inténtalo de "
474
+ "nuevo."
475
+
476
  #: classes/class-fl-builder-service-getresponse.php:101
477
  msgid ""
478
  "Your API key can be found in your GetResponse account under My Account > "
510
  msgid ""
511
  "There was an error subscribing to Hatchbuck. The account is no longer "
512
  "connected."
513
+ msgstr "Hubo un error suscribirse a Hatchbuck. La cuenta ya no está conectada."
 
514
 
515
  #: classes/class-fl-builder-service-hatchbuck.php:190
516
  msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
517
+ msgstr "Hubo un error suscribirse a Hatchbuck. La API key no es válida."
518
 
519
  #: classes/class-fl-builder-service-hatchbuck.php:200
520
  #: classes/class-fl-builder-service-hatchbuck.php:232
521
  msgid "There was an error subscribing to Hatchbuck."
522
+ msgstr "Hubo un error suscribirse a Hatchbuck."
523
 
524
  #: classes/class-fl-builder-service-icontact.php:75
525
  msgid "Error: You must provide a username."
578
  msgid ""
579
  "There was an error subscribing to iContact. The account is no longer "
580
  "connected."
581
+ msgstr "Hubo un error suscribirse a iContact. La cuenta ya no está conectada."
 
582
 
583
  #: classes/class-fl-builder-service-icontact.php:280
584
  #, php-format
585
  msgid "There was an error subscribing to iContact. %s"
586
+ msgstr "Hubo un error suscribirse a iContact. %s"
587
 
588
  #: classes/class-fl-builder-service-infusionsoft.php:49
589
  #, php-format
623
  msgid "There was an error subscribing to Infusionsoft. %s"
624
  msgstr "Hubo un error al suscribirse a Infusionsoft. %s"
625
 
 
 
 
 
626
  #: classes/class-fl-builder-service-madmimi.php:83
627
  msgid "Unable to connect to Mad Mimi. Please check your credentials."
628
  msgstr ""
629
  "No ha sido posible conectar a Mad Mimi. Por favor, verifica tus credenciales."
630
 
 
 
 
 
 
631
  #: classes/class-fl-builder-service-madmimi.php:111
632
  msgid "The email address associated with your Mad Mimi account."
633
  msgstr "La dirección de correo electrónico asociada con tu cuenta de Mad Mimi."
662
  msgstr ""
663
  "Tu clave API puede encontrarse en MailChimp en Account > Extras > API Keys."
664
 
665
+ #: classes/class-fl-builder-service-mailchimp.php:215
666
+ msgid "No Group"
667
+ msgstr "Sin grupo"
668
+
669
+ #: classes/class-fl-builder-service-mailchimp.php:227
670
+ msgctxt "MailChimp list group."
671
+ msgid "Groups"
672
+ msgstr "Grupos"
673
+
674
+ #: classes/class-fl-builder-service-mailchimp.php:255
675
  msgid ""
676
  "There was an error subscribing to MailChimp. The account is no longer "
677
  "connected."
678
  msgstr ""
679
  "Hubo un error al suscribirse a Mad Mimi. La cuenta ya no está conectada."
680
 
681
+ #: classes/class-fl-builder-service-mailchimp.php:352
682
  #, php-format
683
  msgid "There was an error subscribing to MailChimp. %s"
684
  msgstr "Hubo un error al suscribirse a MailChimp. %s"
735
  msgid "Error: Could not subscribe to SendinBlue. %s"
736
  msgstr "Error: No se ha podido realizar la suscripción a SendinBlue. %s"
737
 
738
+ #: classes/class-fl-builder-services.php:158
739
  msgctxt "Third party service such as MailChimp."
740
  msgid "Error: Missing service type."
741
  msgstr "Error: Falta el tipo de servicio."
742
 
743
+ #: classes/class-fl-builder-services.php:161
744
  msgctxt "Connection data such as an API key."
745
  msgid "Error: Missing service data."
746
  msgstr "Error: Falta de datos del servicio."
747
 
748
+ #: classes/class-fl-builder-services.php:164
749
  msgctxt "Account name for a third party service such as MailChimp."
750
  msgid "Error: Missing account name."
751
  msgstr "Error: Falta el nombre de cuenta."
752
 
753
+ #: classes/class-fl-builder-services.php:173
754
  msgctxt "Account name for a third party service such as MailChimp."
755
  msgid "Error: An account with that name already exists."
756
  msgstr "Error: Ya existe una cuenta con ese nombre."
757
 
758
+ #: classes/class-fl-builder-services.php:253
759
  msgid "Account Name"
760
  msgstr "Nombre de la cuenta"
761
 
762
+ #: classes/class-fl-builder-services.php:254
763
  msgid ""
764
  "Used to identify this connection within the accounts list and can be "
765
  "anything you like."
767
  "Utilizado para identificar esta conexión dentro de la lista de cuentas y "
768
  "puede ser cualquier cosa que quieras."
769
 
770
+ #: classes/class-fl-builder-services.php:267
771
  msgid "Connect"
772
  msgstr "Conectar"
773
 
774
+ #: classes/class-fl-builder-services.php:295
775
  msgid "Add Account..."
776
  msgstr "Añadir cuenta"
777
 
778
+ #: classes/class-fl-builder-services.php:302
779
  msgid "Account"
780
  msgstr "Cuenta"
781
 
791
  msgid "Error! A site with that ID doesn't exist."
792
  msgstr "¡Error! No existe un sitio con ese ID."
793
 
794
+ #: classes/class-fl-builder.php:836
795
  #, php-format
796
  msgctxt "Field name to add."
797
  msgid "Add %s"
798
  msgstr "Añadir %s"
799
 
800
+ #: classes/class-fl-builder.php:926 classes/class-fl-builder.php:928
801
  msgctxt "Custom post type label."
802
  msgid "Templates"
803
  msgstr "Plantillas"
804
 
805
+ #: classes/class-fl-builder.php:927 classes/class-fl-builder.php:929
806
  msgctxt "Custom post type label."
807
  msgid "Template"
808
  msgstr "Plantilla"
809
 
810
+ #: classes/class-fl-builder.php:930
811
  msgctxt "Custom post type label."
812
  msgid "Add New"
813
  msgstr "Añadir Nuevo"
814
 
815
+ #: classes/class-fl-builder.php:931
816
  msgctxt "Custom post type label."
817
  msgid "Add New Template"
818
  msgstr "Añadir Nueva Plantilla"
819
 
820
+ #: classes/class-fl-builder.php:932
821
  msgctxt "Custom post type label."
822
  msgid "New Template"
823
  msgstr "Nueva Plantilla"
824
 
825
+ #: classes/class-fl-builder.php:933
826
  msgctxt "Custom post type label."
827
  msgid "Edit Template"
828
  msgstr "Editar Plantilla"
829
 
830
+ #: classes/class-fl-builder.php:934
831
  msgctxt "Custom post type label."
832
  msgid "View Template"
833
  msgstr "Ver Plantilla"
834
 
835
+ #: classes/class-fl-builder.php:935
836
  msgctxt "Custom post type label."
837
  msgid "All Templates"
838
  msgstr "Todas las Plantillas"
839
 
840
+ #: classes/class-fl-builder.php:936
841
  msgctxt "Custom post type label."
842
  msgid "Search Templates"
843
  msgstr "Buscar Plantillas"
844
 
845
+ #: classes/class-fl-builder.php:937
846
  msgctxt "Custom post type label."
847
  msgid "Parent Templates:"
848
  msgstr "Plantillas Maestras:"
849
 
850
+ #: classes/class-fl-builder.php:938
851
  msgctxt "Custom post type label."
852
  msgid "No templates found."
853
  msgstr "No se han encontrado plantillas."
854
 
855
+ #: classes/class-fl-builder.php:939
856
  msgctxt "Custom post type label."
857
  msgid "No templates found in Trash."
858
  msgstr "No se han encontrado plantillas en la Papelera."
859
 
860
+ #: classes/class-fl-builder.php:953 classes/class-fl-builder.php:963
861
  msgctxt "Custom taxonomy label."
862
  msgid "Categories"
863
  msgstr "Categorías"
864
 
865
+ #: classes/class-fl-builder.php:954
866
  msgctxt "Custom taxonomy label."
867
  msgid "Category"
868
  msgstr "Categoría"
869
 
870
+ #: classes/class-fl-builder.php:955
871
  msgctxt "Custom taxonomy label."
872
  msgid "Search Categories"
873
  msgstr "Buscar Categorías"
874
 
875
+ #: classes/class-fl-builder.php:956
876
  msgctxt "Custom taxonomy label."
877
  msgid "All Categories"
878
  msgstr "Todas las Categorías"
879
 
880
+ #: classes/class-fl-builder.php:957
881
  msgctxt "Custom taxonomy label."
882
  msgid "Parent Category"
883
+ msgstr "Categoria Padre"
884
 
885
+ #: classes/class-fl-builder.php:958
886
  msgctxt "Custom taxonomy label."
887
  msgid "Parent Category:"
888
+ msgstr "Categoria Padre:"
889
 
890
+ #: classes/class-fl-builder.php:959
891
  msgctxt "Custom taxonomy label."
892
  msgid "Edit Category"
893
  msgstr "Editar Categoría"
894
 
895
+ #: classes/class-fl-builder.php:960
896
  msgctxt "Custom taxonomy label."
897
  msgid "Update Category"
898
  msgstr "Actualizar Categoría"
899
 
900
+ #: classes/class-fl-builder.php:961
901
  msgctxt "Custom taxonomy label."
902
  msgid "Add New Category"
903
  msgstr "Añadir Nueva Categoría"
904
 
905
+ #: classes/class-fl-builder.php:962
906
  msgctxt "Custom taxonomy label."
907
  msgid "New Category Name"
908
  msgstr "Nuevo Nombre de Categoría"
909
 
910
+ #: classes/class-fl-builder.php:1419 includes/js-config.php:69
911
  #, php-format
912
  msgctxt "%s stands for module name."
913
  msgid "%s Settings"
929
  #, php-format
930
  msgctxt "%s stands for custom branded \"Page Builder\" name."
931
  msgid "Launch %s"
932
+ msgstr "Poner en marcha %s"
933
 
934
  #: includes/admin-settings-branding.php:7
935
  msgid "White label the page builder by entering a custom name below."
936
  msgstr ""
937
+ "Introduce un nombre personalizado para cambiar la marca de page builder a tu "
938
+ "propia marca."
939
 
940
  #: includes/admin-settings-branding.php:10
941
  msgid ""
942
  "Additionally, you may also add a custom icon by entering the URL of an image "
943
  "below. Leave the field blank if you do not wish to use an icon."
944
  msgstr ""
945
+ "Además, también puedes añadir un icono personalizado introduciendo la URL de "
946
+ "una imagen. Deja el campo vacío si no quieres usar un icono."
947
 
948
  #: includes/admin-settings-branding.php:14
949
  msgid "Save Branding"
1038
 
1039
  #: includes/admin-settings-help-button.php:39
1040
  msgid "Help Video Embed Code"
1041
+ msgstr "Ayuda Código Inserción de Vídeo"
1042
 
1043
  #: includes/admin-settings-help-button.php:45
1044
  msgid "Knowledge Base"
1045
+ msgstr "Base de conocimiento"
1046
 
1047
  #: includes/admin-settings-help-button.php:49
1048
  msgid "Enable Knowledge Base"
1119
  #: includes/admin-settings-modules.php:16
1120
  msgid "Check or uncheck modules below to enable or disable them."
1121
  msgstr ""
1122
+ "Selecciona o deshabilita las siguientes opciones para activar o desactivar "
1123
+ "los módulos."
1124
 
1125
  #: includes/admin-settings-modules.php:26
1126
  msgctxt "Plugin setup page: Modules."
1129
 
1130
  #: includes/admin-settings-modules.php:64
1131
  msgid "Save Module Settings"
1132
+ msgstr "Guardar Ajustes"
1133
 
1134
  #: includes/admin-settings-post-types.php:18
1135
  msgid ""
1169
  "builder templates. Leave this field blank if you do not wish to override "
1170
  "core templates."
1171
  msgstr ""
1172
+ "Introduce el ID del sitio en la red cuyas plantillas base deben "
1173
+ "reemplazarse. Deja este campo en blanco si no deseas sobrescribir las "
1174
  "plantillas base."
1175
 
1176
  #: includes/admin-settings-templates-override.php:9
1177
  msgid ""
1178
  "Use this setting to override core builder templates with your templates."
1179
  msgstr ""
1180
+ "Usa esta opción para sobrescribir las plantillas base con tus propias "
1181
  "plantillas."
1182
 
1183
  #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1219
  #: includes/admin-settings-templates.php:32
1220
  msgid "Use this setting to edit builder templates in the WordPress admin."
1221
  msgstr ""
1222
+ "Usa esta opción para editar las plantillas desde el panel de administración "
1223
+ "de WordPress."
1224
 
1225
  #: includes/admin-settings-templates.php:50
1226
  msgid "Save Template Settings"
1275
  msgid "Name"
1276
  msgstr "Nombre"
1277
 
1278
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:306
1279
+ #: modules/post-carousel/post-carousel.php:255
1280
+ #: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:459
1281
  msgid "Image"
1282
  msgstr "Imagen"
1283
 
1284
+ #: includes/admin-templates-edit.php:16 includes/column-settings.php:139
1285
+ #: includes/row-settings.php:179 includes/template-settings.php:23
1286
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
1287
+ #: modules/content-slider/content-slider.php:473
1288
+ #: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:621
1289
+ #: modules/post-slider/post-slider.php:640
1290
  msgid "Position"
1291
  msgstr "Posición"
1292
 
1297
 
1298
  #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
1299
  #: includes/global-settings.php:18 includes/global-settings.php:110
1300
+ #: includes/global-settings.php:124 includes/row-settings.php:331
1301
  #: includes/template-settings.php:31 modules/accordion/accordion.php:90
1302
+ #: modules/callout/callout.php:421
1303
+ #: modules/content-slider/content-slider.php:210
1304
+ #: modules/content-slider/content-slider.php:224
1305
+ #: modules/content-slider/content-slider.php:258
1306
+ #: modules/content-slider/content-slider.php:267
1307
+ #: modules/content-slider/content-slider.php:538
1308
  #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1309
+ #: modules/post-carousel/post-carousel.php:139
1310
+ #: modules/post-carousel/post-carousel.php:155
1311
+ #: modules/post-carousel/post-carousel.php:182
1312
+ #: modules/post-carousel/post-carousel.php:191
1313
+ #: modules/post-carousel/post-carousel.php:232
1314
+ #: modules/post-carousel/post-carousel.php:283
1315
+ #: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:356
1316
+ #: modules/post-slider/post-slider.php:381
1317
+ #: modules/post-slider/post-slider.php:408
1318
+ #: modules/post-slider/post-slider.php:417
1319
+ #: modules/post-slider/post-slider.php:734 modules/slideshow/slideshow.php:323
1320
+ #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
1321
+ #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
1322
+ #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
1323
+ #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
1324
+ #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
1325
+ #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
1326
+ #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
1327
+ #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
1328
+ #: modules/slideshow/slideshow.php:650
1329
  #: modules/social-buttons/social-buttons.php:111
1330
  #: modules/social-buttons/social-buttons.php:120
1331
  #: modules/social-buttons/social-buttons.php:129
1338
 
1339
  #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
1340
  #: includes/global-settings.php:19 includes/global-settings.php:111
1341
+ #: includes/global-settings.php:125 includes/row-settings.php:332
1342
  #: includes/template-settings.php:32 modules/accordion/accordion.php:89
1343
+ #: modules/callout/callout.php:422
1344
+ #: modules/content-slider/content-slider.php:211
1345
+ #: modules/content-slider/content-slider.php:225
1346
+ #: modules/content-slider/content-slider.php:259
1347
+ #: modules/content-slider/content-slider.php:268
1348
+ #: modules/content-slider/content-slider.php:539
1349
  #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1350
+ #: modules/post-carousel/post-carousel.php:140
1351
+ #: modules/post-carousel/post-carousel.php:156
1352
+ #: modules/post-carousel/post-carousel.php:183
1353
+ #: modules/post-carousel/post-carousel.php:192
1354
+ #: modules/post-carousel/post-carousel.php:233
1355
+ #: modules/post-carousel/post-carousel.php:282
1356
+ #: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:357
1357
+ #: modules/post-slider/post-slider.php:382
1358
+ #: modules/post-slider/post-slider.php:409
1359
+ #: modules/post-slider/post-slider.php:418
1360
+ #: modules/post-slider/post-slider.php:735 modules/slideshow/slideshow.php:324
1361
+ #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
1362
+ #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
1363
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1364
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
1365
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
1366
+ #: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
1367
+ #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
1368
+ #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
1369
+ #: modules/slideshow/slideshow.php:651
1370
  #: modules/social-buttons/social-buttons.php:110
1371
  #: modules/social-buttons/social-buttons.php:119
1372
  #: modules/social-buttons/social-buttons.php:128
1433
 
1434
  #: includes/column-settings.php:7 includes/module-settings.php:87
1435
  #: includes/row-settings.php:9 modules/accordion/accordion.php:45
1436
+ #: modules/button/button.php:117 modules/button/button.php:155
1437
+ #: modules/button/button.php:159 modules/callout/callout.php:242
1438
+ #: modules/callout/callout.php:554
1439
+ #: modules/content-slider/content-slider.php:426
1440
+ #: modules/content-slider/content-slider.php:667 modules/cta/cta.php:102
1441
+ #: modules/cta/cta.php:309 modules/heading/heading.php:69
1442
  #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1443
+ #: modules/post-carousel/post-carousel.php:389
1444
+ #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:574
1445
  #: modules/pricing-table/pricing-table.php:43
1446
  #: modules/pricing-table/pricing-table.php:155
1447
  #: modules/separator/separator.php:72
1448
+ #: modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
1449
  msgid "Style"
1450
  msgstr "Estilo"
1451
 
1453
  msgid "Column Width"
1454
  msgstr "Ancho de columna"
1455
 
1456
+ #: includes/column-settings.php:26 modules/button/button.php:66
1457
+ #: modules/callout/callout.php:226 modules/callout/callout.php:479
1458
+ #: modules/callout/callout.php:495
1459
+ #: modules/content-slider/content-slider.php:383
1460
+ #: modules/content-slider/content-slider.php:617 modules/cta/cta.php:85
1461
+ #: modules/cta/cta.php:222 modules/post-slider/post-slider.php:617
1462
  msgid "Text"
1463
  msgstr "Texto"
1464
 
1465
+ #: includes/column-settings.php:30 includes/column-settings.php:93
1466
+ #: includes/column-settings.php:248 includes/row-settings.php:133
1467
+ #: includes/row-settings.php:427 modules/callout/callout.php:392
1468
+ #: modules/content-slider/content-slider.php:338
 
1469
  #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1470
  #: modules/separator/separator.php:34
1471
  msgid "Color"
1472
  msgstr "Color"
1473
 
1474
+ #: includes/column-settings.php:38 includes/row-settings.php:60
1475
+ #: modules/post-carousel/post-carousel.php:401
1476
+ #: modules/post-slider/post-slider.php:694
1477
+ msgid "Link Color"
1478
+ msgstr "Color del Enlace"
1479
+
1480
+ #: includes/column-settings.php:46 includes/row-settings.php:68
1481
+ #: modules/post-carousel/post-carousel.php:406
1482
+ #: modules/post-slider/post-slider.php:710
1483
+ msgid "Link Hover Color"
1484
+ msgstr "Color del Enlace on Hover"
1485
+
1486
+ #: includes/column-settings.php:54 includes/row-settings.php:76
1487
+ msgid "Heading Color"
1488
+ msgstr "Color del Encabezado"
1489
+
1490
+ #: includes/column-settings.php:63 includes/row-settings.php:85
1491
+ #: modules/post-slider/post-slider.php:462
1492
  msgid "Background"
1493
  msgstr "Fondo"
1494
 
1495
+ #: includes/column-settings.php:67 includes/column-settings.php:215
1496
+ #: includes/row-settings.php:89 includes/row-settings.php:394
1497
+ #: modules/callout/callout.php:475
1498
+ #: modules/content-slider/content-slider.php:332
1499
+ #: modules/content-slider/content-slider.php:379
1500
+ #: modules/content-slider/content-slider.php:597
1501
+ #: modules/content-slider/content-slider.php:739
1502
+ #: modules/slideshow/slideshow.php:347
1503
  msgid "Type"
1504
  msgstr "Tipo"
1505
 
1506
+ #: includes/column-settings.php:70 includes/row-settings.php:92
1507
+ #: modules/content-slider/content-slider.php:339
1508
  msgctxt "Background type."
1509
  msgid "None"
1510
  msgstr "Ninguno"
1511
 
1512
+ #: includes/column-settings.php:71 includes/row-settings.php:93
1513
  msgctxt "Background type."
1514
  msgid "Color"
1515
  msgstr "Color"
1516
 
1517
+ #: includes/column-settings.php:72 includes/row-settings.php:94
1518
  msgctxt "Background type."
1519
  msgid "Photo"
1520
  msgstr "Imagen"
1521
 
1522
+ #: includes/column-settings.php:89 includes/row-settings.php:129
1523
+ #: modules/button/button.php:124 modules/callout/callout.php:405
1524
+ #: modules/callout/callout.php:519
1525
+ #: modules/content-slider/content-slider.php:364
1526
+ #: modules/content-slider/content-slider.php:640 modules/cta/cta.php:198
1527
+ #: modules/cta/cta.php:274 modules/icon-group/icon-group.php:64
1528
+ #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
1529
  msgid "Background Color"
1530
  msgstr "Color de Fondo"
1531
 
1532
+ #: includes/column-settings.php:101 includes/column-settings.php:256
1533
+ #: includes/row-settings.php:141 includes/row-settings.php:435
1534
  #: modules/separator/separator.php:44
1535
  msgid "Opacity"
1536
  msgstr "Opacidad"
1537
 
1538
+ #: includes/column-settings.php:113 includes/row-settings.php:153
1539
+ #: modules/content-slider/content-slider.php:360
1540
  msgid "Background Photo"
1541
  msgstr "Imagen de fondo"
1542
 
1543
+ #: includes/column-settings.php:117 includes/row-settings.php:157
1544
+ #: includes/row-settings.php:345 modules/callout/callout.php:317
1545
+ #: modules/callout/callout.php:333 modules/callout/callout.php:337
1546
+ #: modules/content-slider/content-slider.php:336
1547
+ #: modules/content-slider/content-slider.php:405
1548
+ #: modules/content-slider/content-slider.php:755 modules/photo/photo.php:25
1549
+ #: modules/photo/photo.php:408
1550
  msgid "Photo"
1551
  msgstr "Imagen"
1552
 
1553
+ #: includes/column-settings.php:124 includes/row-settings.php:164
1554
  msgid "Repeat"
1555
  msgstr "Repetir"
1556
 
1557
+ #: includes/column-settings.php:127 includes/row-settings.php:167
1558
  msgctxt "Background repeat."
1559
  msgid "None"
1560
  msgstr "Ninguno"
1561
 
1562
+ #: includes/column-settings.php:128 includes/row-settings.php:168
1563
  msgctxt "Background repeat."
1564
  msgid "Tile"
1565
  msgstr "Mosaico"
1566
 
1567
+ #: includes/column-settings.php:129 includes/row-settings.php:169
1568
  msgctxt "Background repeat."
1569
  msgid "Horizontal"
1570
  msgstr "Horizontal"
1571
 
1572
+ #: includes/column-settings.php:130 includes/row-settings.php:170
1573
  msgctxt "Background repeat."
1574
  msgid "Vertical"
1575
  msgstr "Vertical"
1576
 
1577
+ #: includes/column-settings.php:132 includes/row-settings.php:172
1578
  msgid ""
1579
  "Repeat applies to how the image should display in the background. Choosing "
1580
  "none will display the image as uploaded. Tile will repeat the image as many "
1587
  "verticalmente. Puedes especificar si la imagen sólo se ha de repetir "
1588
  "horizontal o verticalmente."
1589
 
1590
+ #: includes/column-settings.php:142 includes/row-settings.php:182
1591
  msgid "Left Top"
1592
  msgstr "Superior Izquierda"
1593
 
1594
+ #: includes/column-settings.php:143 includes/row-settings.php:183
1595
  msgid "Left Center"
1596
  msgstr "Centro Izquierda"
1597
 
1598
+ #: includes/column-settings.php:144 includes/row-settings.php:184
1599
  msgid "Left Bottom"
1600
  msgstr "Inferior Izquierda"
1601
 
1602
+ #: includes/column-settings.php:145 includes/row-settings.php:185
1603
  msgid "Right Top"
1604
  msgstr "Superior Derecha"
1605
 
1606
+ #: includes/column-settings.php:146 includes/row-settings.php:186
1607
  msgid "Right Center"
1608
  msgstr "Centro Derecha"
1609
 
1610
+ #: includes/column-settings.php:147 includes/row-settings.php:187
1611
  msgid "Right Bottom"
1612
  msgstr "Inferior Derecha"
1613
 
1614
+ #: includes/column-settings.php:148 includes/row-settings.php:188
1615
  msgid "Center Top"
1616
  msgstr "Centro Superior"
1617
 
1618
+ #: includes/column-settings.php:149 includes/row-settings.php:189
1619
+ #: modules/button/button.php:227 modules/callout/callout.php:252
1620
+ #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1621
  #: modules/heading/heading.php:90 modules/heading/heading.php:162
1622
  #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1623
+ #: modules/photo/photo.php:434 modules/social-buttons/social-buttons.php:100
1624
  msgid "Center"
1625
  msgstr "Centro"
1626
 
1627
+ #: includes/column-settings.php:150 includes/row-settings.php:190
1628
  msgid "Center Bottom"
1629
  msgstr "Centro Inferior"
1630
 
1631
+ #: includes/column-settings.php:152 includes/row-settings.php:192
1632
  msgid "Position will tell the image where it should sit in the background."
1633
  msgstr "Posición establece el lugar donde debe situarse la imagen en el fondo."
1634
 
1635
+ #: includes/column-settings.php:159 includes/row-settings.php:199
1636
  msgid "Attachment"
1637
  msgstr "Adjunto"
1638
 
1639
+ #: includes/column-settings.php:162 includes/row-settings.php:202
1640
+ #: modules/post-grid/post-grid.php:78
1641
  msgid "Scroll"
1642
  msgstr "Scroll"
1643
 
1644
+ #: includes/column-settings.php:163 includes/global-settings.php:69
1645
  #: includes/global-settings.php:83 includes/row-settings.php:19
1646
+ #: includes/row-settings.php:37 includes/row-settings.php:203
1647
  msgid "Fixed"
1648
  msgstr "Fija"
1649
 
1650
+ #: includes/column-settings.php:165 includes/row-settings.php:205
1651
  msgid ""
1652
  "Attachment will specify how the image reacts when scrolling a page. When "
1653
  "scrolling is selected, the image will scroll with page scrolling. This is "
1659
  "la opción por defecto. Fijo permitirá a la imagen hacer scroll con el fondo "
1660
  "si la opción Relleno se ha seleccionado en Escalar Fondo."
1661
 
1662
+ #: includes/column-settings.php:172 includes/row-settings.php:212
1663
  msgid "Scale"
1664
  msgstr "Escalar"
1665
 
1666
+ #: includes/column-settings.php:175 includes/row-settings.php:215
1667
  msgctxt "Background scale."
1668
  msgid "None"
1669
  msgstr "Nada"
1670
 
1671
+ #: includes/column-settings.php:176 includes/row-settings.php:216
1672
  msgid "Fit"
1673
  msgstr "Ajustado"
1674
 
1675
+ #: includes/column-settings.php:177 includes/row-settings.php:217
1676
  msgid "Fill"
1677
  msgstr "Relleno"
1678
 
1679
+ #: includes/column-settings.php:179 includes/row-settings.php:219
1680
  msgid ""
1681
  "Scale applies to how the image should display in the background. You can "
1682
  "select either fill or fit to the background."
1684
  "Escala se aplica a como la imagen debería visualizarse en el fondo. Puedes "
1685
  "seleccionar rellenar o ajustar al fondo."
1686
 
1687
+ #: includes/column-settings.php:187 includes/row-settings.php:366
1688
+ msgid "Background Overlay"
1689
+ msgstr "Fondo de Superposición"
1690
+
1691
+ #: includes/column-settings.php:191 includes/row-settings.php:370
1692
+ msgid "Overlay Color"
1693
+ msgstr "Color de Superposición"
1694
+
1695
+ #: includes/column-settings.php:199 includes/row-settings.php:378
1696
+ msgid "Overlay Opacity"
1697
+ msgstr "Opacidad de la Superposición"
1698
+
1699
+ #: includes/column-settings.php:211 includes/row-settings.php:390
1700
  msgid "Border"
1701
  msgstr "Borde"
1702
 
1703
+ #: includes/column-settings.php:217 includes/row-settings.php:396
1704
  msgid ""
1705
  "The type of border to use. Double borders must have a width of at least 3px "
1706
  "to render properly."
1708
  "El tipo de borde a utilizar. Los bordes dobles deben tener una anchura de al "
1709
  "menos 3px para visualizarse correctamente."
1710
 
1711
+ #: includes/column-settings.php:219 includes/row-settings.php:398
1712
  msgctxt "Border type."
1713
  msgid "None"
1714
  msgstr "Ninguno"
1715
 
1716
+ #: includes/column-settings.php:220 includes/row-settings.php:399
1717
  #: modules/separator/separator.php:75
1718
  msgctxt "Border type."
1719
  msgid "Solid"
1720
  msgstr "Sólido"
1721
 
1722
+ #: includes/column-settings.php:221 includes/row-settings.php:400
1723
  #: modules/separator/separator.php:76
1724
  msgctxt "Border type."
1725
  msgid "Dashed"
1726
  msgstr "Discontinuo"
1727
 
1728
+ #: includes/column-settings.php:222 includes/row-settings.php:401
1729
  #: modules/separator/separator.php:77
1730
  msgctxt "Border type."
1731
  msgid "Dotted"
1732
  msgstr "Punteado"
1733
 
1734
+ #: includes/column-settings.php:223 includes/row-settings.php:402
1735
  #: modules/separator/separator.php:78
1736
  msgctxt "Border type."
1737
  msgid "Double"
1738
  msgstr "Doble"
1739
 
1740
+ #: includes/column-settings.php:267 includes/row-settings.php:446
1741
  msgid "Top Width"
1742
  msgstr "Ancho Superior"
1743
 
1744
+ #: includes/column-settings.php:279 includes/row-settings.php:458
1745
  msgid "Bottom Width"
1746
  msgstr "Ancho Inferior"
1747
 
1748
+ #: includes/column-settings.php:291 includes/row-settings.php:470
1749
  msgid "Left Width"
1750
  msgstr "Ancho Izquierdo"
1751
 
1752
+ #: includes/column-settings.php:303 includes/row-settings.php:482
1753
  msgid "Right Width"
1754
  msgstr "Ancho Derecho"
1755
 
1756
+ #: includes/column-settings.php:318 includes/module-settings.php:6
1757
+ #: includes/row-settings.php:497 modules/content-slider/content-slider.php:274
1758
  msgid "Advanced"
1759
  msgstr "Avanzado"
1760
 
1761
+ #: includes/column-settings.php:321 includes/global-settings.php:41
1762
  #: includes/global-settings.php:94 includes/module-settings.php:9
1763
+ #: includes/row-settings.php:500
1764
  msgid "Margins"
1765
  msgstr "Márgenes"
1766
 
1767
+ #: includes/column-settings.php:325 includes/column-settings.php:378
1768
+ #: includes/module-settings.php:13 includes/row-settings.php:504
1769
+ #: includes/row-settings.php:557 modules/slideshow/slideshow.php:483
1770
  msgid "Top"
1771
  msgstr "Superior"
1772
 
1773
+ #: includes/column-settings.php:337 includes/column-settings.php:390
1774
+ #: includes/module-settings.php:25 includes/row-settings.php:516
1775
+ #: includes/row-settings.php:569 modules/post-slider/post-slider.php:627
1776
+ #: modules/slideshow/slideshow.php:482
1777
  msgid "Bottom"
1778
  msgstr "Inferior"
1779
 
1780
+ #: includes/column-settings.php:349 includes/column-settings.php:402
1781
+ #: includes/module-settings.php:37 includes/row-settings.php:528
1782
+ #: includes/row-settings.php:581 modules/button/button.php:228
1783
+ #: modules/callout/callout.php:253
1784
+ #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1785
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
1786
  #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1787
+ #: modules/photo/photo.php:433 modules/post-slider/post-slider.php:625
1788
+ #: modules/post-slider/post-slider.php:644
1789
+ #: modules/social-buttons/social-buttons.php:101
1790
  msgid "Left"
1791
  msgstr "Izquierda"
1792
 
1793
+ #: includes/column-settings.php:361 includes/column-settings.php:414
1794
+ #: includes/module-settings.php:49 includes/row-settings.php:540
1795
+ #: includes/row-settings.php:593 modules/button/button.php:229
1796
+ #: modules/callout/callout.php:254
1797
+ #: modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
1798
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
1799
  #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
1800
+ #: modules/photo/photo.php:435 modules/post-slider/post-slider.php:626
1801
+ #: modules/post-slider/post-slider.php:645
1802
+ #: modules/social-buttons/social-buttons.php:102
1803
  msgid "Right"
1804
  msgstr "Derecha"
1805
 
1806
+ #: includes/column-settings.php:374 includes/global-settings.php:49
1807
+ #: includes/row-settings.php:553 modules/button/button.php:242
1808
+ #: modules/callout/callout.php:609
1809
+ #: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
1810
+ #: modules/subscribe-form/subscribe-form.php:273
1811
  msgid "Padding"
1812
  msgstr "Márgenes interiores / Padding"
1813
 
1814
+ #: includes/column-settings.php:427 includes/global-settings.php:103
1815
+ #: includes/module-settings.php:62 includes/row-settings.php:606
1816
  msgid "Responsive Layout"
1817
  msgstr "Diseño Adaptable"
1818
 
1819
+ #: includes/column-settings.php:431 includes/module-settings.php:66
1820
+ #: includes/row-settings.php:610 modules/slideshow/slideshow.php:298
1821
  msgid "Display"
1822
  msgstr "Pantalla"
1823
 
1824
+ #: includes/column-settings.php:433 includes/module-settings.php:68
1825
+ #: includes/row-settings.php:612
1826
  msgid "Always"
1827
  msgstr "Todas"
1828
 
1829
+ #: includes/column-settings.php:434 includes/module-settings.php:69
1830
+ #: includes/row-settings.php:613
1831
  msgid "Large Devices Only"
1832
+ msgstr "Sólo dispositivos de tamaño grande"
1833
 
1834
+ #: includes/column-settings.php:435 includes/module-settings.php:70
1835
+ #: includes/row-settings.php:614
1836
  msgid "Large &amp; Medium Devices Only"
1837
  msgstr "Sólo dispositivos grandes y medianos"
1838
 
1839
+ #: includes/column-settings.php:436 includes/module-settings.php:71
1840
+ #: includes/row-settings.php:615
1841
  msgid "Medium Devices Only"
1842
  msgstr "Sólo dispositivos medianos"
1843
 
1844
+ #: includes/column-settings.php:437 includes/module-settings.php:72
1845
+ #: includes/row-settings.php:616
1846
  msgid "Medium &amp; Small Devices Only"
1847
  msgstr "Sólo dispositivos medianos y pequeños"
1848
 
1849
+ #: includes/column-settings.php:438 includes/module-settings.php:73
1850
+ #: includes/row-settings.php:617
1851
  msgid "Small Devices Only"
1852
  msgstr "Sólo dispositivos pequeños"
1853
 
1854
+ #: includes/column-settings.php:440
1855
  msgid "Choose whether to show or hide this column at different device sizes."
1856
  msgstr ""
1857
  "Elegir si deseas mostrar u ocultar esta columna en dispositivos de diferente "
1858
  "tamaños."
1859
 
1860
+ #: includes/column-settings.php:447
1861
  msgid "Medium Device Width"
1862
+ msgstr "Anchura de dispositivo de tamaño mediano"
1863
 
1864
+ #: includes/column-settings.php:448
1865
  msgid "The width of this column on medium devices such as tablets."
1866
  msgstr ""
1867
  "La anchura de esta columna en dispositivos de tamaño mediano como tabletas."
1868
 
1869
+ #: includes/column-settings.php:450 includes/column-settings.php:478
1870
+ #: modules/callout/callout.php:284
1871
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
1872
  #: modules/heading/heading.php:117 modules/heading/heading.php:144
1873
+ #: modules/heading/heading.php:174 modules/post-slider/post-slider.php:597
1874
  msgid "Default"
1875
  msgstr "Predeterminado"
1876
 
1877
+ #: includes/column-settings.php:451 includes/column-settings.php:479
1878
+ #: modules/button/button.php:202 modules/callout/callout.php:285
1879
+ #: modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
1880
  #: modules/heading/heading.php:118 modules/heading/heading.php:145
1881
+ #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:598
1882
  #: modules/social-buttons/social-buttons.php:74
1883
  msgid "Custom"
1884
  msgstr "Personalizada"
1885
 
1886
+ #: includes/column-settings.php:464
1887
  msgid "Custom Medium Device Width"
1888
+ msgstr "Personalizar anchura en dispositivo de tamaño mediano"
1889
 
1890
+ #: includes/column-settings.php:475
1891
  msgid "Small Device Width"
1892
+ msgstr "Anchura de dispositivo de tamaño pequeño"
1893
 
1894
+ #: includes/column-settings.php:476
1895
  msgid "The width of this column on small devices such as phones."
1896
  msgstr ""
1897
  "La anchura de esta columna en dispositivos de tamaño pequeño como teléfonos."
1898
 
1899
+ #: includes/column-settings.php:492
1900
  msgid "Custom Small Device Width"
1901
+ msgstr "Personalizar anchura en dispositivo de tamaño pequeño"
1902
 
1903
+ #: includes/column-settings.php:504 includes/module-settings.php:115
1904
+ #: includes/row-settings.php:627
1905
  msgid "CSS Selectors"
1906
  msgstr "Selectores CSS"
1907
 
1908
+ #: includes/column-settings.php:508 includes/loop-settings.php:28
1909
+ #: includes/module-settings.php:119 includes/row-settings.php:631
1910
  msgid "ID"
1911
  msgstr "ID"
1912
 
1913
+ #: includes/column-settings.php:509
1914
  msgid ""
1915
  "A unique ID that will be applied to this column's HTML. Must start with a "
1916
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
1918
  "Un único ID que se aplicará al HTML de esta columna. Debe empezar con una "
1919
  "letra y sólo contener guiones, subrayados, letras o números. Sin espacios."
1920
 
1921
+ #: includes/column-settings.php:516
1922
  msgid "CSS Class"
1923
  msgstr "Clase CSS"
1924
 
1925
+ #: includes/column-settings.php:517
1926
  msgid ""
1927
  "A class that will be applied to this column's HTML. Must start with a letter "
1928
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
1968
  msgid "Cancel"
1969
  msgstr "Cancelar"
1970
 
1971
+ #: includes/field-multiple-photos.php:20
1972
  #, php-format
1973
  msgid "1 Photo Selected"
1974
  msgid_plural "%d Photos Selected"
1975
  msgstr[0] "1 Foto Seleccionada"
1976
  msgstr[1] "%d Fotos Seleccionadas"
1977
 
1978
+ #: includes/field-multiple-photos.php:22
1979
  msgid "Create Gallery"
1980
  msgstr "Crear Galería"
1981
 
1982
+ #: includes/field-multiple-photos.php:23
1983
  msgid "Edit Gallery"
1984
  msgstr "Editar Galería"
1985
 
1986
+ #: includes/field-multiple-photos.php:24
1987
  msgid "Add Photos"
1988
  msgstr "Añadir Fotos"
1989
 
2001
 
2002
  #: includes/global-settings.php:7 includes/template-settings.php:7
2003
  #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
2004
+ #: modules/button/button.php:59 modules/callout/callout.php:210
2005
  #: modules/contact-form/contact-form.php:58
2006
+ #: modules/content-slider/content-slider.php:191
2007
+ #: modules/content-slider/content-slider.php:315 modules/cta/cta.php:68
2008
+ #: modules/gallery/gallery.php:220 modules/heading/heading.php:26
2009
  #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
2010
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:384
2011
  #: modules/pricing-table/pricing-table.php:87
2012
  #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
2013
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
2014
  #: modules/social-buttons/social-buttons.php:64
2015
+ #: modules/subscribe-form/subscribe-form.php:87 modules/tabs/tabs.php:77
2016
  #: modules/testimonials/testimonials.php:30
2017
  #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
2018
  #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
2039
  "You will also be required to enter some basic CSS for this to work if you "
2040
  "choose no."
2041
  msgstr ""
2042
+ "Eligiendo no se ocultá el encabezado por defecto del tema para el tipo "
2043
  "\"Página\". Necesitarás algo de CSS básico para que esto funcione si eliges "
2044
  "no."
2045
 
2074
 
2075
  #: includes/global-settings.php:70 includes/global-settings.php:84
2076
  #: includes/row-settings.php:20 includes/row-settings.php:38
2077
+ #: modules/button/button.php:201 modules/callout/callout.php:596
2078
  msgid "Full Width"
2079
  msgstr "Anchura Completa"
2080
 
2102
  "margins and padding in your layout once the small device breakpoint is "
2103
  "reached. Most users will want to leave this enabled."
2104
  msgstr ""
2105
+ "Cuando espaciado automático está habilitado, beaver builder ajustará "
2106
  "automáticamente los márgenes y espaciado del diseño una vez se alcance el "
2107
  "breakpoint del dispositivo. La mayoría de usuarios querrán dejar esto "
2108
  "habilitado."
2109
 
2110
  #: includes/global-settings.php:131
2111
  msgid "Medium Device Breakpoint"
2112
+ msgstr "Punto de Ruptura para Dispositivos de tamaño medio"
2113
 
2114
  #: includes/global-settings.php:136
2115
  msgid ""
2121
 
2122
  #: includes/global-settings.php:140
2123
  msgid "Small Device Breakpoint"
2124
+ msgstr "Punto de Ruptura para Dispositivos de tamaño pequeño"
2125
 
2126
  #: includes/global-settings.php:145
2127
  msgid ""
2149
  "Warning! Changing the template will replace your existing layout. Do you "
2150
  "really want to do this?"
2151
  msgstr ""
2152
+ "¡Advertencia! Cambiando la plantilla reemplazaras tu diseño actual. ¿Quieres "
2153
+ "hacer esto?"
2154
 
2155
  #: includes/js-config.php:22
2156
  msgid "Column"
2172
  "Are you sure you want to remove this account? Other modules that are "
2173
  "connected to it will be affected."
2174
  msgstr ""
2175
+ "¿Estás seguro que desesa eliminar esta cuenta? Se verán afectados los demás "
2176
  "módulos que estén relacionados con este."
2177
 
2178
  #: includes/js-config.php:27
2204
  "Do you really want to discard these changes? All of your changes that are "
2205
  "not published will be lost."
2206
  msgstr ""
2207
+ "¿Quieres descartar estos cambios? Todos los cambios que no se publiquen se "
2208
+ "perderán."
2209
 
2210
  #: includes/js-config.php:33 includes/ui.php:20 includes/ui.php:55
2211
  msgid "Done"
2259
 
2260
  #: includes/js-config.php:43
2261
  msgid "Getting Started Video"
2262
+ msgstr "Video Primeros Pasos"
2263
 
2264
  #: includes/js-config.php:44
2265
  msgid "\"{message}\" on line {line} of {file}."
2303
 
2304
  #: includes/js-config.php:54
2305
  msgid "No Thanks"
2306
+ msgstr "No, Gracias"
2307
 
2308
  #: includes/js-config.php:55
2309
  msgid "OK"
2310
  msgstr "OK"
2311
 
2312
+ #: includes/js-config.php:56 modules/photo/photo.php:470
2313
  msgid "Photo Page"
2314
  msgstr "Página de Foto"
2315
 
2323
 
2324
  #: includes/js-config.php:59 modules/subscribe-form/includes/frontend.php:15
2325
  msgid "Please Wait..."
2326
+ msgstr "Por favor espere..."
2327
 
2328
  #: includes/js-config.php:60
2329
  msgid "Publish Changes"
2377
  msgid "Template Saved!"
2378
  msgstr "¡Plantilla Guardada!"
2379
 
2380
+ #: includes/js-config.php:77 modules/post-slider/post-slider.php:463
2381
  msgid "Thumbnail"
2382
  msgstr "Miniatura"
2383
 
2403
 
2404
  #: includes/js-config.php:82
2405
  msgid "Add Rows"
2406
+ msgstr "Añadir filas"
2407
 
2408
  #: includes/js-config.php:83
2409
  msgid ""
2410
  "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
2411
  "and dropping row layouts onto the page."
2412
  msgstr ""
2413
+ "Añadir filas multi-columna, ajustar espaciado, añadir fundos y más, "
2414
+ "arrastrando y soltando diseños de fila en la página."
2415
 
2416
  #: includes/js-config.php:84 includes/ui.php:22 includes/ui.php:60
2417
  msgid "Add Content"
2422
  "Add new content by dragging and dropping modules or widgets into your row "
2423
  "layouts or to create a new row layout."
2424
  msgstr ""
2425
+ "Añade contenido nuevo arrastrando y soltando módulos o widgets en tu fila o "
2426
+ "bien para crear una nueva distribución de fila."
2427
 
2428
  #: includes/js-config.php:86
2429
  msgid "Edit Content"
2454
  "layouts, modules or widgets."
2455
  msgstr ""
2456
  "Utiliza el botón Añadir Contenido para abrir el panel de contenido y añadir "
2457
+ "diseños, módulos o widgets."
2458
 
2459
  #: includes/js-config.php:91
2460
  msgid "Change Templates"
2466
  "layout. Appending will insert a new template at the end of your existing "
2467
  "page content."
2468
  msgstr ""
2469
+ "Usa el botón de Plantillas para escoger una nueva plantilla o adjuntar una "
2470
+ "plantilla a tú diseño ya existente. Adjuntar insertará una nueva plantilla "
2471
+ "al final de tu diseño."
2472
 
2473
  #: includes/js-config.php:93
2474
  msgid "Helpful Tools"
2496
 
2497
  #: includes/js-config.php:97
2498
  msgid "Let's Get Building!"
2499
+ msgstr "Empezar a Diseñar!"
2500
 
2501
  #: includes/js-config.php:98
2502
  msgid ""
2504
  "you need help, click the help icon in the upper right corner to access the "
2505
  "help menu. Happy building!"
2506
  msgstr ""
2507
+ "Ahora que ya sabes lo básico, estás listo para empezar a diseñar! Si "
2508
  "necesitas ayuda en cualquier momento, haz clic en el icono de ayuda en la "
2509
+ "esquina superior derecha para acceder al menú de ayuda. ¡Happy building!"
2510
 
2511
  #: includes/js-config.php:99
2512
  msgid ""
2533
  "Would you like to take a tour?"
2534
  msgstr ""
2535
  "¡Bienvenido! Parece que es la primera vez que utilizas este editor. ¿Te "
2536
+ "gustaría realizar un tour?"
2537
 
2538
  #: includes/js-config.php:104
2539
  msgid "Yes Please!"
2540
+ msgstr "Sí, por favor!"
2541
 
2542
  #: includes/loop-settings.php:20
2543
  msgid "Post Type"
2547
  msgid "Order By"
2548
  msgstr "Ordenar Por"
2549
 
2550
+ #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
2551
+ #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:503
2552
  #: modules/woocommerce/woocommerce.php:189
2553
  msgid "Date"
2554
  msgstr "Fecha"
2562
  msgid "Title"
2563
  msgstr "Título"
2564
 
2565
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
2566
+ #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:494
2567
  msgid "Author"
2568
  msgstr "Autor"
2569
 
2598
 
2599
  #: includes/loop-settings.php:55
2600
  msgid "Skip this many posts that match the specified criteria."
2601
+ msgstr "Omitir entradas que coincidan con los criterios especificados."
 
 
2602
 
2603
  #: includes/loop-settings.php:62
2604
  msgid "Filter"
2671
  msgstr "Deslizar desde Abajo"
2672
 
2673
  #: includes/module-settings.php:102
2674
+ #: modules/content-slider/content-slider.php:230
2675
+ #: modules/post-carousel/post-carousel.php:145
2676
+ #: modules/post-slider/post-slider.php:362
2677
  #: modules/testimonials/testimonials.php:91
2678
  msgid "Delay"
2679
  msgstr "Retardo"
2680
 
2681
+ #: includes/module-settings.php:106 includes/row-settings.php:290
2682
+ #: includes/row-settings.php:321 modules/content-slider/content-slider.php:234
2683
+ #: modules/content-slider/content-slider.php:251
2684
+ #: modules/post-carousel/post-carousel.php:148
2685
+ #: modules/post-carousel/post-carousel.php:164
2686
+ #: modules/post-slider/post-slider.php:365
2687
+ #: modules/post-slider/post-slider.php:390 modules/slideshow/slideshow.php:393
2688
+ #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
2689
  #: modules/testimonials/testimonials.php:95
2690
  #: modules/testimonials/testimonials.php:112
2691
  msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2705
  "Un único ID que se aplicará al HTML de este módulo. Debe empezar con una "
2706
  "letra y sólo contener guiones, subrayados, letras o números. Sin espacios."
2707
 
2708
+ #: includes/module-settings.php:127 includes/row-settings.php:639
2709
  msgid "Class"
2710
  msgstr "Clase"
2711
 
2719
  "y sólo contener guiones, subrayados, letras o números. Separa varias clases "
2720
  "con espacios."
2721
 
2722
+ #: includes/row-settings.php:16 modules/button/button.php:197
2723
+ #: modules/content-slider/content-slider.php:484
2724
  msgid "Width"
2725
  msgstr "Anchura"
2726
 
2742
  "Full width content spans the width of the page from edge to edge. Fixed "
2743
  "content is no wider than the Row Max Width set in the Global Settings."
2744
  msgstr ""
2745
+ "Los contenidos a anchura completa abarcan todo el ancho de la página de lado "
2746
+ "a lado. El contenido fijo no es más ancho que la Anchura Máxima de la Fila "
2747
+ "establecida en la Configuración Global."
2748
 
2749
+ #: includes/row-settings.php:48 modules/button/button.php:120
2750
+ #: modules/cta/cta.php:188 modules/heading/heading.php:72
2751
+ #: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2752
+ #: modules/post-carousel/post-carousel.php:392
2753
+ #: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:675
2754
+ msgid "Colors"
2755
+ msgstr "Colores"
2756
+
2757
+ #: includes/row-settings.php:52 modules/button/button.php:139
2758
+ #: modules/callout/callout.php:534
2759
+ #: modules/content-slider/content-slider.php:529
2760
+ #: modules/content-slider/content-slider.php:651
2761
+ #: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192
2762
+ #: modules/cta/cta.php:289 modules/heading/heading.php:77
2763
+ #: modules/post-carousel/post-carousel.php:396
2764
+ #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:679
2765
+ #: modules/subscribe-form/subscribe-form.php:207
2766
+ msgid "Text Color"
2767
+ msgstr "Color del Texto"
2768
+
2769
+ #: includes/row-settings.php:95
2770
  msgctxt "Background type."
2771
  msgid "Video"
2772
  msgstr "Vídeo"
2773
 
2774
+ #: includes/row-settings.php:97
2775
  msgctxt "Background type."
2776
  msgid "Slideshow"
2777
  msgstr "Carrusel"
2778
 
2779
+ #: includes/row-settings.php:101
2780
  msgctxt "Background type."
2781
  msgid "Parallax"
2782
  msgstr "Parallax"
2783
 
2784
+ #: includes/row-settings.php:227
2785
  msgid "Background Video"
2786
+ msgstr "Fondo de Video"
2787
 
2788
+ #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
2789
  #: modules/video/video.php:19 modules/video/video.php:100
2790
  msgid "Video"
2791
  msgstr "Vídeo"
2792
 
2793
+ #: includes/row-settings.php:232
2794
  msgid ""
2795
  "An HTML5 video to use as the background of this row. Supported types are "
2796
  "MP4, WebM and Ogg."
2798
  "Un vídeo HTML5 para utilizar como fondo de esta fila. Los tipos soportados "
2799
  "son MP4, WebM y Ogg."
2800
 
2801
+ #: includes/row-settings.php:239
2802
  msgid "Fallback Photo"
2803
  msgstr "Foto de Suplencia"
2804
 
2805
+ #: includes/row-settings.php:240
2806
  msgid "A photo that will be displayed if the video fails to load."
2807
  msgstr "La foto que se mostrará si el vídeo no se carga."
2808
 
2809
+ #: includes/row-settings.php:248
2810
  msgid "Background Slideshow"
2811
  msgstr "Fondo Slideshow"
2812
 
2813
+ #: includes/row-settings.php:252 modules/gallery/gallery.php:241
2814
+ #: modules/slideshow/slideshow.php:271
2815
  msgid "Source"
2816
  msgstr "Fuente"
2817
 
2818
+ #: includes/row-settings.php:255 modules/gallery/gallery.php:244
2819
+ #: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
2820
  #: modules/video/video.php:86
2821
  msgid "Media Library"
2822
  msgstr "Librería Multimedia"
2823
 
2824
+ #: includes/row-settings.php:258 modules/gallery/gallery.php:247
2825
+ #: modules/slideshow/slideshow.php:277
2826
  msgid ""
2827
  "Pull images from the WordPress media library or a gallery on your SmugMug "
2828
  "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
2832
  "SmugMug insertando la URL del feed RSS de SmugMug. A esta dirección se puede "
2833
  "acceder desde la función obtener enlace en tu galería SmugMug."
2834
 
2835
+ #: includes/row-settings.php:273 modules/gallery/gallery.php:259
2836
+ #: modules/slideshow/slideshow.php:289
2837
  msgid "Photos"
2838
  msgstr "Fotos"
2839
 
2840
+ #: includes/row-settings.php:280 modules/gallery/gallery.php:263
2841
+ #: modules/slideshow/slideshow.php:293
2842
  msgid "Feed URL"
2843
  msgstr "Feed URL"
2844
 
2845
+ #: includes/row-settings.php:287 includes/row-settings.php:352
2846
+ #: modules/slideshow/slideshow.php:390
2847
  msgid "Speed"
2848
  msgstr "Velocidad"
2849
 
2850
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
2851
+ #: modules/post-slider/post-slider.php:369 modules/slideshow/slideshow.php:397
2852
  #: modules/testimonials/testimonials.php:99
2853
  msgid "Transition"
2854
  msgstr "Transición"
2855
 
2856
+ #: includes/row-settings.php:300
2857
  msgctxt "Slideshow transition type."
2858
  msgid "None"
2859
  msgstr "Ninguna"
2860
 
2861
+ #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
2862
+ #: modules/post-carousel/post-carousel.php:241
2863
+ #: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:372
2864
+ #: modules/slideshow/slideshow.php:401
2865
  #: modules/testimonials/testimonials.php:103
2866
  msgid "Fade"
2867
+ msgstr "Fundido"
2868
 
2869
+ #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
2870
  msgid "Ken Burns"
2871
  msgstr "Ken Burns"
2872
 
2873
+ #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
2874
  msgid "Slide Horizontal"
2875
  msgstr "Deslizar Horizontalmente"
2876
 
2877
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
2878
  msgid "Slide Vertical"
2879
  msgstr "Deslizar Verticalmente"
2880
 
2881
+ #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
2882
  msgid "Blinds"
2883
  msgstr "Persianas"
2884
 
2885
+ #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
2886
  msgid "Bars"
2887
  msgstr "Barras"
2888
 
2889
+ #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
2890
  msgid "Random Bars"
2891
  msgstr "Barras al azar"
2892
 
2893
+ #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
2894
  msgid "Boxes"
2895
  msgstr "Cajas"
2896
 
2897
+ #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
2898
  msgid "Random Boxes"
2899
  msgstr "Cajas al azar"
2900
 
2901
+ #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
2902
  msgid "Boxes Grow"
2903
  msgstr "Cajas Expandiéndose"
2904
 
2905
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
2906
+ #: modules/post-carousel/post-carousel.php:161
2907
+ #: modules/post-slider/post-slider.php:387 modules/slideshow/slideshow.php:415
2908
  #: modules/testimonials/testimonials.php:108
2909
  msgid "Transition Speed"
2910
  msgstr "Velocidad de Transición"
2911
 
2912
+ #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
2913
  msgid "Randomize Photos"
2914
  msgstr "Fotos Aleatorias"
2915
 
2916
+ #: includes/row-settings.php:341
2917
  msgid "Background Parallax"
2918
  msgstr "Fondo Parallax"
2919
 
2920
+ #: includes/row-settings.php:355
2921
  msgid "Fast"
2922
  msgstr "Rápido"
2923
 
2924
+ #: includes/row-settings.php:356
2925
  msgctxt "Speed."
2926
  msgid "Medium"
2927
  msgstr "Medio"
2928
 
2929
+ #: includes/row-settings.php:357
2930
  msgid "Slow"
2931
  msgstr "Lento"
2932
 
2933
+ #: includes/row-settings.php:619
 
 
 
 
 
 
 
 
 
 
 
 
2934
  msgid "Choose whether to show or hide this row at different device sizes."
2935
  msgstr ""
2936
  "Elegir si deseas mostrar u ocultar esta fila en dispositivos con tamaños "
2937
  "diferentes."
2938
 
2939
+ #: includes/row-settings.php:632
2940
  msgid ""
2941
  "A unique ID that will be applied to this row's HTML. Must start with a "
2942
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
2944
  "Un único ID que se aplicará al HTML de esta fila. Debe empezar con una letra "
2945
  "y sólo contener guiones, subrayados, letras o números. Sin espacios."
2946
 
2947
+ #: includes/row-settings.php:640
2948
  msgid ""
2949
  "A class that will be applied to this row's HTML. Must start with a letter "
2950
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
3015
 
3016
  #: includes/ui.php:51
3017
  msgid "Buy Now!"
3018
+ msgstr "Comprar Ahora!"
3019
 
3020
  #: includes/ui.php:53
3021
  msgid "Upgrade!"
3022
+ msgstr "Actualizar!"
3023
 
3024
  #: includes/ui.php:78
3025
  msgid "Row Layouts"
3026
+ msgstr "Distribución de la Fila"
3027
 
3028
  #: includes/ui.php:82
3029
  msgid "1 Column"
3059
 
3060
  #: includes/ui.php:90
3061
  msgid "Left &amp; Right Sidebar"
3062
+ msgstr "Izquierda & Barra Lateral Derecha"
3063
 
3064
  #: includes/updater/classes/class-fl-updater.php:132
3065
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3085
 
3086
  #: includes/updater/includes/form.php:11
3087
  msgid "Updates &amp; Support Subscription"
3088
+ msgstr "Suscripción Actualizaciones &amp; Soporte"
3089
 
3090
  #: includes/updater/includes/form.php:14
3091
  msgid "Active!"
3092
+ msgstr "Activado!"
3093
 
3094
  #: includes/updater/includes/form.php:16
3095
  msgid "Not Active!"
3096
+ msgstr "No activado!"
3097
 
3098
  #: includes/updater/includes/form.php:22
3099
  msgid "Email address saved!"
3124
 
3125
  #: modules/accordion/accordion.php:15
3126
  msgid "Display a collapsible accordion of items."
3127
+ msgstr "Mostrar un acordeón plegable de elementos."
3128
 
3129
  #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
3130
  msgid "Items"
3181
  msgid "Label"
3182
  msgstr "Etiqueta"
3183
 
3184
+ #: modules/accordion/accordion.php:122
3185
+ #: modules/post-carousel/post-carousel.php:359
3186
+ #: modules/post-carousel/post-carousel.php:363
3187
+ #: modules/post-carousel/post-carousel.php:435
3188
+ #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
3189
+ #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:543
3190
+ #: modules/post-slider/post-slider.php:547
3191
+ #: modules/post-slider/post-slider.php:754 modules/tabs/tabs.php:89
3192
  msgid "Content"
3193
  msgstr "Contenido"
3194
 
3195
+ #: modules/button/button.php:14 modules/callout/callout.php:480
3196
+ #: modules/content-slider/content-slider.php:602 modules/cta/cta.php:215
3197
  #: modules/pricing-table/pricing-table.php:129
3198
+ #: modules/subscribe-form/subscribe-form.php:161
3199
  msgid "Button"
3200
  msgstr "Botón"
3201
 
3202
  #: modules/button/button.php:15
3203
  msgid "A simple call to action button."
3204
+ msgstr "Un simple botón de Call to Action"
3205
 
3206
+ #: modules/button/button.php:67 modules/cta/cta.php:223
3207
  msgid "Click Here"
3208
  msgstr "¡Pulsa Aquí!"
3209
 
3210
+ #: modules/button/button.php:75 modules/callout/callout.php:318
3211
+ #: modules/callout/callout.php:366 modules/callout/callout.php:370
3212
+ #: modules/cta/cta.php:231 modules/icon-group/icon-group.php:34
3213
  #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
3214
  #: modules/icon/icon.php:34
3215
  msgid "Icon"
3216
  msgstr "Icono"
3217
 
3218
+ #: modules/button/button.php:80 modules/cta/cta.php:236
3219
+ #: modules/subscribe-form/subscribe-form.php:178
3220
+ msgid "Icon Position"
3221
+ msgstr "Posición del Icono"
3222
+
3223
+ #: modules/button/button.php:83 modules/callout/callout.php:508
3224
+ #: modules/content-slider/content-slider.php:629 modules/cta/cta.php:239
3225
+ #: modules/subscribe-form/subscribe-form.php:181
3226
+ msgid "Before Text"
3227
+ msgstr "Antes del Texto"
3228
+
3229
+ #: modules/button/button.php:84 modules/callout/callout.php:509
3230
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:240
3231
+ #: modules/subscribe-form/subscribe-form.php:182
3232
+ msgid "After Text"
3233
+ msgstr "Después del Texto"
3234
+
3235
+ #: modules/button/button.php:90 modules/button/button.php:94
3236
+ #: modules/callout/callout.php:446 modules/callout/callout.php:450
3237
+ #: modules/content-slider/content-slider.php:574
3238
+ #: modules/content-slider/content-slider.php:578
3239
+ #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:250
3240
  #: modules/heading/heading.php:43 modules/heading/heading.php:47
3241
  #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
3242
+ #: modules/slideshow/slideshow.php:351
3243
  msgid "Link"
3244
  msgstr "Enlace"
3245
 
3246
+ #: modules/button/button.php:95
3247
  msgid "http://www.example.com"
3248
  msgstr "http://www.ejemplo.com"
3249
 
3250
+ #: modules/button/button.php:102 modules/callout/callout.php:458
3251
+ #: modules/content-slider/content-slider.php:583 modules/cta/cta.php:257
3252
  #: modules/heading/heading.php:54 modules/icon/icon.php:50
3253
+ #: modules/photo/photo.php:494
3254
  msgid "Link Target"
3255
  msgstr "Destino del Enlace"
3256
 
3257
+ #: modules/button/button.php:105 modules/callout/callout.php:461
3258
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:260
3259
  #: modules/heading/heading.php:57 modules/icon/icon.php:53
3260
+ #: modules/photo/photo.php:497
3261
  msgid "Same Window"
3262
  msgstr "Misma Ventana"
3263
 
3264
+ #: modules/button/button.php:106 modules/callout/callout.php:462
3265
+ #: modules/content-slider/content-slider.php:587 modules/cta/cta.php:261
3266
  #: modules/heading/heading.php:58 modules/icon/icon.php:54
3267
+ #: modules/photo/photo.php:498
3268
  msgid "New Window"
3269
  msgstr "Nueva Ventana"
3270
 
3271
+ #: modules/button/button.php:130 modules/callout/callout.php:410
3272
+ #: modules/callout/callout.php:525
3273
+ #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:280
 
 
 
 
 
 
3274
  #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
3275
+ #: modules/subscribe-form/subscribe-form.php:198
3276
  msgid "Background Hover Color"
3277
  msgstr "Color de Fondo al pasar el puntero"
3278
 
3279
+ #: modules/button/button.php:145 modules/callout/callout.php:540
3280
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:295
3281
+ #: modules/subscribe-form/subscribe-form.php:213
 
 
 
 
 
 
 
 
 
3282
  msgid "Text Hover Color"
3283
  msgstr "Color de Texto al pasar el puntero"
3284
 
3285
+ #: modules/button/button.php:162 modules/callout/callout.php:557
3286
+ #: modules/content-slider/content-slider.php:670 modules/cta/cta.php:312
3287
+ #: modules/subscribe-form/subscribe-form.php:230
3288
  msgid "Flat"
3289
  msgstr "Plano"
3290
 
3291
+ #: modules/button/button.php:163 modules/callout/callout.php:418
3292
+ #: modules/callout/callout.php:558
3293
+ #: modules/content-slider/content-slider.php:671 modules/cta/cta.php:313
3294
  #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3295
+ #: modules/subscribe-form/subscribe-form.php:231
3296
  msgid "Gradient"
3297
  msgstr "Degradado"
3298
 
3299
+ #: modules/button/button.php:164 modules/callout/callout.php:559
3300
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3301
+ #: modules/subscribe-form/subscribe-form.php:232
3302
  msgid "Transparent"
3303
  msgstr "Transparente"
3304
 
3305
+ #: modules/button/button.php:174 modules/callout/callout.php:569
3306
+ #: modules/content-slider/content-slider.php:682 modules/cta/cta.php:324
3307
  #: modules/pricing-table/pricing-table.php:67
3308
+ #: modules/subscribe-form/subscribe-form.php:242
3309
  msgid "Border Size"
3310
  msgstr "Tamaño de Borde"
3311
 
3312
+ #: modules/button/button.php:183 modules/callout/callout.php:578
3313
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204
3314
+ #: modules/cta/cta.php:333 modules/subscribe-form/subscribe-form.php:251
3315
  msgid "Background Opacity"
3316
  msgstr "Opacidad de Fondo"
3317
 
3318
+ #: modules/button/button.php:193 modules/callout/callout.php:245
3319
+ #: modules/cta/cta.php:105 modules/heading/heading.php:82
3320
  #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3321
+ #: modules/subscribe-form/subscribe-form.php:95
3322
  msgid "Structure"
3323
  msgstr "Estructura"
3324
 
3325
+ #: modules/button/button.php:200 modules/callout/callout.php:595
3326
  msgctxt "Width."
3327
  msgid "Auto"
3328
  msgstr "Auto"
3329
 
3330
+ #: modules/button/button.php:216
3331
  msgid "Custom Width"
3332
  msgstr "Anchura Personalizada"
3333
 
3334
+ #: modules/button/button.php:224 modules/cta/cta.php:123
3335
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
3336
  #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3337
+ #: modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
3338
  msgid "Alignment"
3339
  msgstr "Alineación"
3340
 
3341
+ #: modules/button/button.php:234 modules/callout/callout.php:601
3342
+ #: modules/content-slider/content-slider.php:705 modules/cta/cta.php:347
3343
  #: modules/heading/heading.php:114 modules/heading/heading.php:171
3344
+ #: modules/subscribe-form/subscribe-form.php:265
3345
  msgid "Font Size"
3346
  msgstr "Tamaño de Fuente"
3347
 
3348
+ #: modules/button/button.php:250 modules/callout/callout.php:617
3349
+ #: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
3350
  msgid "Round Corners"
3351
  msgstr "Esquinas Redondeadas"
3352
 
3360
  "Un encabezado y fragmento de texto con un enlace opcional, un icono y una "
3361
  "imagen."
3362
 
3363
+ #: modules/callout/callout.php:217
3364
+ #: modules/content-slider/content-slider.php:414
3365
+ #: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75
3366
  #: modules/heading/heading.php:14 modules/heading/heading.php:33
3367
+ #: modules/post-slider/post-slider.php:577
3368
  #: modules/testimonials/testimonials.php:56
3369
  #: modules/testimonials/testimonials.php:61
3370
  msgid "Heading"
3371
  msgstr "Encabezado"
3372
 
3373
+ #: modules/callout/callout.php:249
3374
  msgid "Overall Alignment"
3375
  msgstr "Alineación"
3376
 
3377
+ #: modules/callout/callout.php:256
3378
  msgid "The alignment that will apply to all elements within the callout."
3379
  msgstr ""
3380
+ "La alineación que se aplicará a todos los elementos dentro del callout."
3381
 
3382
+ #: modules/callout/callout.php:264 modules/cta/cta.php:148
3383
  msgid "Heading Structure"
3384
  msgstr "Estructura del Encabezado"
3385
 
3386
+ #: modules/callout/callout.php:268
3387
+ #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3388
+ #: modules/post-slider/post-slider.php:581
3389
  msgid "Heading Tag"
3390
  msgstr "Etiqueta de Encabezado"
3391
 
3392
+ #: modules/callout/callout.php:281
3393
+ #: modules/content-slider/content-slider.php:446
3394
+ #: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
3395
+ #: modules/post-slider/post-slider.php:594
3396
+ #: modules/post-slider/post-slider.php:608
3397
  #: modules/testimonials/testimonials.php:69
3398
  msgid "Heading Size"
3399
  msgstr "Tamaño del Encabezado"
3400
 
3401
+ #: modules/callout/callout.php:295 modules/cta/cta.php:179
3402
  msgid "Heading Custom Size"
3403
  msgstr "Tamaño Personalizado del Encabezado"
3404
 
3405
+ #: modules/callout/callout.php:313
3406
  msgid "Image Type"
3407
  msgstr "Tipo de Imagen"
3408
 
3409
+ #: modules/callout/callout.php:316
3410
  msgctxt "Image type."
3411
  msgid "None"
3412
  msgstr "Ninguna"
3413
 
3414
+ #: modules/callout/callout.php:341 modules/photo/photo.php:417
3415
+ #: modules/post-slider/post-slider.php:476 modules/slideshow/slideshow.php:320
3416
  msgid "Crop"
3417
  msgstr "Recortar / Crop"
3418
 
3419
+ #: modules/callout/callout.php:344
3420
  msgctxt "Crop"
3421
  msgid "None"
3422
  msgstr "Nada"
3423
 
3424
+ #: modules/callout/callout.php:345 modules/photo/photo.php:421
3425
+ #: modules/post-slider/post-slider.php:480
3426
  msgid "Landscape"
3427
  msgstr "Horizontal"
3428
 
3429
+ #: modules/callout/callout.php:346 modules/photo/photo.php:422
3430
+ #: modules/post-slider/post-slider.php:481
3431
  msgid "Panorama"
3432
  msgstr "Panorama"
3433
 
3434
+ #: modules/callout/callout.php:347 modules/photo/photo.php:423
3435
+ #: modules/post-slider/post-slider.php:482
3436
  msgid "Portrait"
3437
+ msgstr "Vertical"
3438
 
3439
+ #: modules/callout/callout.php:348 modules/photo/photo.php:424
3440
+ #: modules/post-slider/post-slider.php:483
3441
  msgid "Square"
3442
  msgstr "Cuadrado"
3443
 
3444
+ #: modules/callout/callout.php:349 modules/photo/photo.php:425
3445
+ #: modules/post-slider/post-slider.php:484
3446
  msgid "Circle"
3447
  msgstr "Círculo"
3448
 
3449
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
3450
  msgid "Above Heading"
3451
  msgstr "Sobre el Encabezado"
3452
 
3453
+ #: modules/callout/callout.php:358 modules/callout/callout.php:378
3454
  msgid "Below Heading"
3455
  msgstr "Debajo del Encabezado"
3456
 
3457
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
3458
  msgid "Left of Text and Heading"
3459
  msgstr "Izquierda del Texto y Título"
3460
 
3461
+ #: modules/callout/callout.php:360 modules/callout/callout.php:382
3462
  msgid "Right of Text and Heading"
3463
  msgstr "Derecha del Texto y Título"
3464
 
3465
+ #: modules/callout/callout.php:379
3466
  msgid "Left of Heading"
3467
  msgstr "Izquierda del Encabezado"
3468
 
3469
+ #: modules/callout/callout.php:380
3470
  msgid "Right of Heading"
3471
  msgstr "Derecha del Encabezado"
3472
 
3473
+ #: modules/callout/callout.php:388
3474
  msgid "Icon Colors"
3475
+ msgstr "Colores de Icono"
3476
 
3477
+ #: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56
3478
  #: modules/icon/icon.php:87
3479
  msgid "Hover Color"
3480
  msgstr "Color al pasar el puntero"
3481
 
3482
+ #: modules/callout/callout.php:428
3483
  msgid "Icon Structure"
3484
  msgstr "Estructura del icono"
3485
 
3486
+ #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
3487
+ #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
3488
+ #: modules/post-grid/post-grid.php:139
3489
  msgid "Size"
3490
  msgstr "Tamaño"
3491
 
3492
+ #: modules/callout/callout.php:443
3493
+ #: modules/content-slider/content-slider.php:571
3494
  msgid "Call To Action"
3495
+ msgstr "Call To Action"
3496
 
3497
+ #: modules/callout/callout.php:451
3498
  msgid ""
3499
  "The link applies to the entire module. If choosing a call to action type "
3500
  "below, this link will also be used for the text or button."
3501
  msgstr ""
3502
+ "El enlace se aplica para todo el módulo. Si eliges una llamada a la acción "
3503
  "debajo, este enlace también se utilizará para el texto o botón."
3504
 
3505
+ #: modules/callout/callout.php:471
3506
+ #: modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
3507
  msgid "Call to Action"
3508
+ msgstr "Call to Action"
3509
 
3510
+ #: modules/callout/callout.php:478
3511
+ #: modules/content-slider/content-slider.php:600
3512
  msgctxt "Call to action."
3513
  msgid "None"
3514
  msgstr "Ninguno"
3515
 
3516
+ #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
3517
+ #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:566
3518
+ msgid "Read More"
3519
+ msgstr "Leer Más"
3520
+
3521
+ #: modules/callout/callout.php:500
3522
+ #: modules/content-slider/content-slider.php:621
3523
+ #: modules/subscribe-form/subscribe-form.php:173
3524
  msgid "Button Icon"
3525
  msgstr "Icono del Botón"
3526
 
3527
+ #: modules/callout/callout.php:505
3528
+ #: modules/content-slider/content-slider.php:626
3529
+ msgid "Button Icon Position"
3530
+ msgstr "Posición Icono del Botón"
3531
+
3532
+ #: modules/callout/callout.php:515
3533
+ #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
3534
+ #: modules/subscribe-form/subscribe-form.php:188
3535
  msgid "Button Colors"
3536
  msgstr "Colores del Botón"
3537
 
3538
+ #: modules/callout/callout.php:550
3539
+ #: modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
3540
+ #: modules/subscribe-form/subscribe-form.php:223
3541
  msgid "Button Style"
3542
  msgstr "Estilo de Botón"
3543
 
3544
+ #: modules/callout/callout.php:588
3545
+ #: modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
3546
+ #: modules/subscribe-form/subscribe-form.php:261
3547
  msgid "Button Structure"
3548
  msgstr "Estructura del Botón"
3549
 
3550
+ #: modules/callout/callout.php:592
3551
  msgid "Button Width"
3552
  msgstr "Ancho del Botón"
3553
 
3557
 
3558
  #: modules/contact-form/contact-form.php:15
3559
  msgid "A very simple contact form."
3560
+ msgstr "Un formulario de contacto sencillo."
3561
 
3562
  #: modules/contact-form/contact-form.php:31
3563
  msgid "Contact Form Submission"
3580
  msgstr "El formulario se enviará a este e-mail"
3581
 
3582
  #: modules/contact-form/contact-form.php:75
3583
+ #: modules/subscribe-form/subscribe-form.php:108
3584
  msgid "Name Field"
3585
+ msgstr "Nombre de Campo"
3586
 
3587
  #: modules/contact-form/contact-form.php:78
3588
  #: modules/contact-form/contact-form.php:87
3589
  #: modules/contact-form/contact-form.php:96
3590
  #: modules/contact-form/contact-form.php:105
3591
+ #: modules/post-carousel/post-carousel.php:258
3592
+ #: modules/post-carousel/post-carousel.php:322
3593
+ #: modules/post-carousel/post-carousel.php:331
3594
+ #: modules/post-carousel/post-carousel.php:366
3595
+ #: modules/post-carousel/post-carousel.php:375
3596
+ #: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
3597
+ #: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
3598
+ #: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
3599
+ #: modules/post-slider/post-slider.php:442
3600
+ #: modules/post-slider/post-slider.php:497
3601
+ #: modules/post-slider/post-slider.php:506
3602
+ #: modules/post-slider/post-slider.php:536
3603
+ #: modules/post-slider/post-slider.php:550
3604
+ #: modules/post-slider/post-slider.php:559
3605
+ #: modules/subscribe-form/subscribe-form.php:111
3606
  msgid "Show"
3607
  msgstr "Mostrar"
3608
 
3610
  #: modules/contact-form/contact-form.php:88
3611
  #: modules/contact-form/contact-form.php:97
3612
  #: modules/contact-form/contact-form.php:106
3613
+ #: modules/post-carousel/post-carousel.php:259
3614
+ #: modules/post-carousel/post-carousel.php:323
3615
+ #: modules/post-carousel/post-carousel.php:332
3616
+ #: modules/post-carousel/post-carousel.php:367
3617
+ #: modules/post-carousel/post-carousel.php:376
3618
+ #: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
3619
+ #: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
3620
+ #: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
3621
+ #: modules/post-slider/post-slider.php:443
3622
+ #: modules/post-slider/post-slider.php:498
3623
+ #: modules/post-slider/post-slider.php:507
3624
+ #: modules/post-slider/post-slider.php:537
3625
+ #: modules/post-slider/post-slider.php:551
3626
+ #: modules/post-slider/post-slider.php:560
3627
+ #: modules/subscribe-form/subscribe-form.php:112
3628
  msgid "Hide"
3629
  msgstr "Ocultar"
3630
 
3631
  #: modules/contact-form/contact-form.php:84
3632
  msgid "Subject Field"
3633
+ msgstr "Campo Asunto"
3634
 
3635
  #: modules/contact-form/contact-form.php:93
3636
  msgid "Email Field"
3638
 
3639
  #: modules/contact-form/contact-form.php:102
3640
  msgid "Phone Field"
3641
+ msgstr "Campo Teléfono"
3642
 
3643
  #: modules/contact-form/includes/frontend.php:5
3644
  msgctxt "Contact form field label."
3661
 
3662
  #: modules/contact-form/includes/frontend.php:14
3663
  msgid "Please enter a subject."
3664
+ msgstr "Introduce un asunto, por favor."
 
 
 
 
3665
 
3666
  #: modules/contact-form/includes/frontend.php:22
3667
  msgid "Please enter a valid email."
3668
+ msgstr "Introduzca un correo electrónico válido."
3669
 
3670
  #: modules/contact-form/includes/frontend.php:23
3671
  msgid "Your email"
3677
 
3678
  #: modules/contact-form/includes/frontend.php:30
3679
  msgid "Please enter a valid phone number."
3680
+ msgstr "Por favor, introduce un teléfono válido."
3681
 
3682
  #: modules/contact-form/includes/frontend.php:31
3683
  msgid "Your phone"
3684
+ msgstr "Teléfono"
3685
 
3686
  #: modules/contact-form/includes/frontend.php:36
3687
  msgid "Your Message"
3701
 
3702
  #: modules/contact-form/includes/frontend.php:44
3703
  msgid "Message Sent!"
3704
+ msgstr "Mensaje Enviado!"
3705
 
3706
  #: modules/contact-form/includes/frontend.php:45
3707
  msgid "Message failed. Please try again."
3717
  "Muestra varias diapositivas con un encabezado opcional y una llamada a la "
3718
  "acción."
3719
 
3720
+ #: modules/content-slider/content-slider.php:198 modules/map/map.php:41
3721
+ #: modules/post-slider/post-slider.php:344 modules/separator/separator.php:58
3722
+ #: modules/slideshow/slideshow.php:302
3723
  msgid "Height"
3724
  msgstr "Altura"
3725
 
3726
+ #: modules/content-slider/content-slider.php:203
3727
  msgid ""
3728
  "This setting is the minimum height of the content slider. Content will "
3729
  "expand the height automatically."
3731
  "Este ajuste es la altura mínima del contenido del slider. El contenido se "
3732
  "expandirá a esta altura de forma automática."
3733
 
3734
+ #: modules/content-slider/content-slider.php:207
3735
+ #: modules/post-carousel/post-carousel.php:136
3736
+ #: modules/post-slider/post-slider.php:353 modules/slideshow/slideshow.php:381
3737
  #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
3738
  msgid "Auto Play"
3739
  msgstr "Reproducción Automática"
3740
 
3741
+ #: modules/content-slider/content-slider.php:221
3742
  msgid "Show Play/Pause"
3743
  msgstr "Mostrar Reproducir/Pausa"
3744
 
3745
+ #: modules/content-slider/content-slider.php:241
3746
  #: modules/testimonials/testimonials.php:102
3747
  msgctxt "Transition type."
3748
  msgid "Slide"
3749
  msgstr "Diapositiva"
3750
 
3751
+ #: modules/content-slider/content-slider.php:255
3752
+ #: modules/post-carousel/post-carousel.php:188
3753
+ #: modules/post-slider/post-slider.php:414
3754
  #: modules/testimonials/testimonials.php:121
3755
  msgid "Show Arrows"
3756
  msgstr "Mostrar Flechas"
3757
 
3758
+ #: modules/content-slider/content-slider.php:264
3759
+ #: modules/post-carousel/post-carousel.php:179
3760
+ #: modules/post-slider/post-slider.php:405
3761
  #: modules/testimonials/testimonials.php:151
3762
  msgid "Show Dots"
3763
  msgstr "Mostrar Puntos"
3764
 
3765
+ #: modules/content-slider/content-slider.php:278
3766
  msgid "Max Content Width"
3767
  msgstr "Anchura Máxima de Contenido"
3768
 
3769
+ #: modules/content-slider/content-slider.php:283
3770
  msgid "The max width that the content area will be within your slides."
3771
  msgstr "La anchura máxima que tendrá el área de contenido en las diapositivas."
3772
 
3773
+ #: modules/content-slider/content-slider.php:290
3774
  msgid "Slides"
3775
+ msgstr "Slides (Diapositivas)"
3776
 
3777
+ #: modules/content-slider/content-slider.php:297
3778
+ #: modules/post-slider/post-slider.php:373
3779
  msgid "Slide"
3780
+ msgstr "Diapositiva"
3781
 
3782
+ #: modules/content-slider/content-slider.php:312
3783
  msgid "Slide Settings"
3784
  msgstr "Configuración de la Diapositiva"
3785
 
3786
+ #: modules/content-slider/content-slider.php:322
3787
  msgid "Slide Label"
3788
+ msgstr "Etiqueta Slide"
3789
 
3790
+ #: modules/content-slider/content-slider.php:323
3791
  msgid ""
3792
  "A label to identify this slide on the Slides tab of the Content Slider "
3793
  "settings."
3794
  msgstr ""
3795
+ "Una etiqueta para identificar esta diapositiva en la ficha diapositivas de "
3796
+ "la configuración de contenido Slider."
3797
 
3798
+ #: modules/content-slider/content-slider.php:328
3799
  msgid "Background Layout"
3800
  msgstr "Diseño de Fondo"
3801
 
3802
+ #: modules/content-slider/content-slider.php:334
3803
  msgid "This setting is for the entire background of your slide."
3804
+ msgstr "Esta configuración es todo el fondo de la diapositiva."
3805
 
3806
+ #: modules/content-slider/content-slider.php:369
3807
  msgid "Background Video Code"
3808
+ msgstr "Código Video de Fondo"
3809
 
3810
+ #: modules/content-slider/content-slider.php:375
3811
  msgid "Content Layout"
3812
  msgstr "Diseño de Contenido"
3813
 
3814
+ #: modules/content-slider/content-slider.php:381
3815
  msgid ""
3816
  "This allows you to add content over or in addition to the background "
3817
  "selection above. The location of the content layout can be selected in the "
3818
  "style tab."
3819
  msgstr ""
3820
+ "Permite añadir contenido sobre o además de la selección de fondo anterior. "
3821
+ "Puedes seleccionar la ubicación del diseño del contenido en la pestaña "
3822
+ "estilo."
3823
 
3824
+ #: modules/content-slider/content-slider.php:384
3825
  msgid "Text &amp; Photo"
3826
  msgstr "Texto &amp; Foto"
3827
 
3828
+ #: modules/content-slider/content-slider.php:385
3829
  msgid "Text &amp; Video"
3830
  msgstr "Texto &amp; Video"
3831
 
3832
+ #: modules/content-slider/content-slider.php:386
3833
  msgctxt "Content type."
3834
  msgid "None"
3835
  msgstr "Ninguno"
3836
 
3837
+ #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
3838
  msgid "Video Embed Code"
3839
+ msgstr "Código Inserción Video"
3840
 
3841
+ #: modules/content-slider/content-slider.php:469
3842
  msgid "Text Position"
3843
  msgstr "Posición del Texto"
3844
 
3845
+ #: modules/content-slider/content-slider.php:475
3846
  msgid ""
3847
  "The position will move the content layout selections left, right or center "
3848
  "over the background of the slide."
3850
  "La posición moverá las selecciones de diseño de contenido a la izquierda, "
3851
  "derecha o centrado sobre el fondo de la diapositiva."
3852
 
3853
+ #: modules/content-slider/content-slider.php:492
3854
  msgid "Top Margin"
3855
  msgstr "Margen Superior"
3856
 
3857
+ #: modules/content-slider/content-slider.php:500
3858
  msgid "Bottom Margin"
3859
  msgstr "Margen Inferior"
3860
 
3861
+ #: modules/content-slider/content-slider.php:508
3862
  msgid "Left Margin"
3863
  msgstr "Margen Izquierdo"
3864
 
3865
+ #: modules/content-slider/content-slider.php:516
3866
  msgid "Right Margin"
3867
  msgstr "Margen Derecho"
3868
 
3869
+ #: modules/content-slider/content-slider.php:525
3870
  msgid "Text Colors"
3871
  msgstr "Colores de Texto"
3872
 
3873
+ #: modules/content-slider/content-slider.php:535
3874
  msgid "Text Shadow"
3875
  msgstr "Sombra de Texto"
3876
 
3877
+ #: modules/content-slider/content-slider.php:544
3878
+ #: modules/content-slider/content-slider.php:770
3879
+ #: modules/post-carousel/post-carousel.php:411
3880
+ #: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:716
3881
  msgid "Text Background Color"
3882
  msgstr "Color de Fondo del Texto"
3883
 
3884
+ #: modules/content-slider/content-slider.php:545
3885
+ #: modules/post-carousel/post-carousel.php:413
3886
+ #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:717
3887
  msgid ""
3888
  "The color applies to the overlay behind text over the background selections."
3889
  msgstr ""
3890
+ "El color se aplica a la superposición detrás de texto sobre las selecciones "
3891
  "de fondo."
3892
 
3893
+ #: modules/content-slider/content-slider.php:550
3894
+ #: modules/post-carousel/post-carousel.php:423
3895
+ #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:723
3896
  msgid "Text Background Opacity"
3897
+ msgstr "Opacidad Texto del Fondo"
3898
 
3899
+ #: modules/content-slider/content-slider.php:558
3900
+ #: modules/post-slider/post-slider.php:740
3901
  msgid "Text Background Height"
3902
+ msgstr "Altura Texto del Fondo"
3903
 
3904
+ #: modules/content-slider/content-slider.php:560
3905
+ #: modules/post-slider/post-slider.php:742
3906
  msgid ""
3907
  "Auto will allow the overlay to fit however long the text content is. 100% "
3908
  "will fit the overlay to the top and bottom of the slide."
3911
  "texto. 100% ajustará la superposición a la parte superior e inferior de la "
3912
  "diapositiva."
3913
 
3914
+ #: modules/content-slider/content-slider.php:562
3915
+ #: modules/post-slider/post-slider.php:744
3916
  msgctxt "Background height."
3917
  msgid "Auto"
3918
  msgstr "Auto"
3919
 
3920
+ #: modules/content-slider/content-slider.php:579
3921
  msgid ""
3922
  "The link applies to the entire slide. If choosing a call to action type "
3923
  "below, this link will also be used for the text or button."
3925
  "El enlace se aplica para toda la diapositiva. Si eliges una llamada a la "
3926
  "acción debajo, este enlace también se utilizará para el texto o botón."
3927
 
3928
+ #: modules/content-slider/content-slider.php:721
3929
  msgid "Border Radius"
3930
  msgstr "Radio del Borde"
3931
 
3932
+ #: modules/content-slider/content-slider.php:732
3933
  msgctxt "Module settings form tab. Display on mobile devices."
3934
  msgid "Mobile"
3935
  msgstr "Móvil"
3936
 
3937
+ #: modules/content-slider/content-slider.php:735
3938
  msgid "Mobile Photo"
3939
  msgstr "Foto Móvil"
3940
 
3941
+ #: modules/content-slider/content-slider.php:741
3942
  msgid ""
3943
  "You can choose a different photo that the slide will change to on mobile "
3944
  "devices or no photo if desired."
3946
  "Puedes elegir una foto diferente que cambiará al navegar desde dispositivos "
3947
  "móviles o simplemente no elegir ninguna foto."
3948
 
3949
+ #: modules/content-slider/content-slider.php:743
3950
  msgid "Use Main Photo"
3951
  msgstr "Utilizar Foto Principal"
3952
 
3953
+ #: modules/content-slider/content-slider.php:744
3954
  msgid "Choose Another Photo"
3955
  msgstr "Elegir Otra Foto"
3956
 
3957
+ #: modules/content-slider/content-slider.php:745
3958
  msgid "No Photo"
3959
  msgstr "No hay foto"
3960
 
3961
+ #: modules/content-slider/content-slider.php:760
3962
  msgid "Mobile Text Colors"
3963
  msgstr "Colores de Texto Móvil"
3964
 
3966
  msgid "Display a heading, subheading and a button."
3967
  msgstr "Mostrar un título, subtítulo y un botón."
3968
 
3969
+ #: modules/cta/cta.php:76
3970
  msgid "Ready to find out more?"
3971
+ msgstr "¿Intentando convencerme?"
3972
 
3973
+ #: modules/cta/cta.php:91
3974
  msgid "Drop us a line today for a free quote!"
3975
+ msgstr "¡Lo haré con este Call to Action!"
3976
 
3977
+ #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
3978
+ #: modules/post-carousel/post-carousel.php:117
3979
+ #: modules/post-carousel/post-carousel.php:206
3980
+ #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:432
3981
+ #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
3982
  #: modules/testimonials/testimonials.php:37
3983
  #: modules/woocommerce/woocommerce.php:57
3984
  msgid "Layout"
3985
  msgstr "Diseño"
3986
 
3987
+ #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
3988
  msgid "Inline"
3989
  msgstr "En línea"
3990
 
3991
+ #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
3992
  msgid "Stacked"
3993
  msgstr "Apilado"
3994
 
3995
+ #: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
3996
  msgid "Spacing"
3997
  msgstr "Espaciado"
3998
 
3999
+ #: modules/cta/cta.php:246
4000
  msgid "Button Link"
4001
  msgstr "Enlace del Botón"
4002
 
4003
+ #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:121
4004
+ #: modules/post-grid/post-grid.php:55
4005
  msgid "Gallery"
4006
+ msgstr "Galeria"
4007
 
4008
  #: modules/gallery/gallery.php:15
4009
  msgid "Display multiple photos in a gallery view."
4010
  msgstr "Mostrar varias fotografías en una vista de galería."
4011
 
4012
+ #: modules/gallery/gallery.php:230
4013
  msgid "Collage"
4014
  msgstr "Collage"
4015
 
4016
+ #: modules/gallery/gallery.php:231
4017
  msgctxt "Gallery layout: thumbnails."
4018
  msgid "Thumbs"
4019
  msgstr "Miniaturas"
4020
 
4021
+ #: modules/gallery/gallery.php:267
4022
  msgid "Photo Size"
4023
  msgstr "Tamaño de la Foto"
4024
 
4025
+ #: modules/gallery/gallery.php:270
4026
  msgctxt "Photo size."
4027
  msgid "Small"
4028
  msgstr "Pequeña"
4029
 
4030
+ #: modules/gallery/gallery.php:271
4031
  msgctxt "Photo size."
4032
  msgid "Medium"
4033
  msgstr "Mediana"
4034
 
4035
+ #: modules/gallery/gallery.php:272
4036
  msgctxt "Photo size."
4037
  msgid "Large"
4038
  msgstr "Grande"
4039
 
4040
+ #: modules/gallery/gallery.php:277
4041
  msgid "Photo Spacing"
4042
  msgstr "Espaciado de Foto"
4043
 
4044
+ #: modules/gallery/gallery.php:285
4045
  msgid "Show Captions"
4046
  msgstr "Mostrar Títulos"
4047
 
4048
+ #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
4049
  msgid "Never"
4050
  msgstr "Nunca"
4051
 
4052
+ #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
4053
  msgid "On Hover"
4054
  msgstr "Al pasar por encima"
4055
 
4056
+ #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
4057
  msgid "Below Photo"
4058
  msgstr "Debajo de la imagen"
4059
 
4060
+ #: modules/gallery/gallery.php:292
4061
  msgid ""
4062
  "The caption pulls from whatever text you put in the caption area in the "
4063
  "media manager for each image. The caption is also pulled directly from "
4067
  "biblioteca de medios para cada imagen. El titulo también se toma "
4068
  "directamente de SmugMug si tienes títulos en tu galería."
4069
 
4070
+ #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4071
  msgid "Click Action"
4072
+ msgstr "Acción del Clic"
4073
 
4074
+ #: modules/gallery/gallery.php:299
4075
  msgctxt "Click action."
4076
  msgid "None"
4077
  msgstr "Ninguno"
4078
 
4079
+ #: modules/gallery/gallery.php:300 modules/photo/photo.php:468
4080
  msgid "Lightbox"
4081
  msgstr "Lightbox"
4082
 
4083
+ #: modules/gallery/gallery.php:301
4084
  msgid "Photo Link"
4085
  msgstr "Enlace de Foto"
4086
 
4114
 
4115
  #: modules/icon-group/icon-group.php:14
4116
  msgid "Icon Group"
4117
+ msgstr "Grupo de Iconos"
4118
 
4119
  #: modules/icon-group/icon-group.php:15
4120
  msgid "Display a group of linked Font Awesome icons."
4121
+ msgstr "Muestra un grupo de iconos Font Awesome enlazados."
4122
 
4123
  #: modules/icon-group/icon-group.php:125
4124
  msgid "Add Icon"
4125
+ msgstr "Añadir Icono"
4126
 
4127
  #: modules/icon/icon.php:15
4128
  msgid "Display an icon and optional title."
4129
+ msgstr "Mostrar un icono y título opcional."
4130
 
4131
  #: modules/map/map.php:14
4132
  msgid "Map"
4148
  msgid "Upload a photo or display one from the media library."
4149
  msgstr "Añadir una foto o mostrar una de la biblioteca."
4150
 
4151
+ #: modules/photo/photo.php:391
4152
  msgid "Photo Source"
4153
  msgstr "Origen de la Imagen"
4154
 
4155
+ #: modules/photo/photo.php:395 modules/photo/photo.php:467
4156
  msgid "URL"
4157
  msgstr "URL"
4158
 
4159
+ #: modules/photo/photo.php:412
4160
  msgid "Photo URL"
4161
+ msgstr "Foto URL"
4162
 
4163
+ #: modules/photo/photo.php:413
4164
  msgid "http://www.example.com/my-photo.jpg"
4165
  msgstr "http://www.ejemplo.com/mi-foto.jpg"
4166
 
4167
+ #: modules/photo/photo.php:420 modules/post-slider/post-slider.php:479
4168
  msgctxt "Crop."
4169
  msgid "None"
4170
  msgstr "Nada"
4171
 
4172
+ #: modules/photo/photo.php:441 modules/photo/photo.php:455
4173
  msgid "Caption"
4174
  msgstr "Encabezado"
4175
 
4176
+ #: modules/photo/photo.php:445
4177
  msgid "Show Caption"
4178
  msgstr "Mostrar Leyenda"
4179
 
4180
+ #: modules/photo/photo.php:464
4181
  msgid "Link Type"
4182
  msgstr "Tipo de Enlace"
4183
 
4184
+ #: modules/photo/photo.php:466
4185
  msgctxt "Link type."
4186
  msgid "None"
4187
  msgstr "Ninguno"
4188
 
4189
+ #: modules/photo/photo.php:469
4190
  msgid "Photo File"
4191
+ msgstr "Foto Archivo"
4192
 
4193
+ #: modules/photo/photo.php:480
4194
  msgid ""
4195
  "Link type applies to how the image should be linked on click. You can choose "
4196
  "a specific URL, the individual photo or a separate page with the photo."
4197
  msgstr ""
4198
  "Tipo de enlace se aplica a cómo la imagen debería estar vinculada al hacer "
4199
+ "clic. Puede elegir una dirección URL específica, la foto individual o una "
4200
  "página separada con la foto."
4201
 
4202
+ #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
4203
  msgid "Link URL"
4204
+ msgstr "Enlace URL"
 
 
 
 
4205
 
4206
+ #: modules/post-carousel/includes/post-gallery-loop.php:35
4207
+ #: modules/post-carousel/includes/post-grid-loop.php:22
4208
  #: modules/post-grid/includes/post-feed.php:14
4209
  #: modules/post-grid/includes/post-grid.php:24
4210
+ #: modules/post-slider/includes/post-loop.php:29
4211
  #, php-format
4212
  msgctxt "%s stands for author name."
4213
  msgid "By %s"
4214
  msgstr "Por %s"
4215
 
4216
+ #: modules/post-carousel/post-carousel.php:14
4217
+ msgid "Posts Carousel"
4218
+ msgstr "Carrusel de Entradas"
4219
+
4220
+ #: modules/post-carousel/post-carousel.php:15
4221
+ msgid "Display a carousel of your WordPress posts."
4222
+ msgstr "Mostrar un carrusel de tus entradas de WordPress."
4223
+
4224
+ #: modules/post-carousel/post-carousel.php:110
4225
+ #: modules/post-slider/post-slider.php:337
4226
+ msgid "Slider"
4227
+ msgstr "Slider (diapositivas)"
4228
+
4229
+ #: modules/post-carousel/post-carousel.php:120
4230
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:91
4231
+ msgid "Grid"
4232
+ msgstr "Cuadrícula"
4233
+
4234
+ #: modules/post-carousel/post-carousel.php:152
4235
+ #: modules/post-slider/post-slider.php:378 modules/video/video.php:120
4236
+ msgid "Loop"
4237
+ msgstr "Bucle"
4238
+
4239
+ #: modules/post-carousel/post-carousel.php:168
4240
+ #: modules/post-slider/post-slider.php:394
4241
+ msgid "Number of Posts"
4242
+ msgstr "Número de Entradas"
4243
+
4244
+ #: modules/post-carousel/post-carousel.php:175
4245
+ #: modules/post-slider/post-slider.php:401
4246
+ msgid "Slider Controls"
4247
+ msgstr "Controles del Slider"
4248
+
4249
+ #: modules/post-carousel/post-carousel.php:209
4250
  #: modules/post-grid/post-grid.php:14
4251
  msgid "Posts"
4252
  msgstr "Entradas"
4253
 
4254
+ #: modules/post-carousel/post-carousel.php:213
4255
+ msgid "Post Max Width"
4256
+ msgstr "Anchura Máxima de la Entrada"
4257
+
4258
+ #: modules/post-carousel/post-carousel.php:221
4259
+ #: modules/post-grid/post-grid.php:103
4260
+ msgid "Post Spacing"
4261
+ msgstr "Espaciado de la Entrada"
4262
+
4263
+ #: modules/post-carousel/post-carousel.php:229
4264
+ msgid "Equalize Column Heights"
4265
+ msgstr "Ajustar Altura de Columnas"
4266
+
4267
+ #: modules/post-carousel/post-carousel.php:238
4268
+ msgid "Post Hover Transition"
4269
+ msgstr "Transición Hover de la Entrada"
4270
+
4271
+ #: modules/post-carousel/post-carousel.php:242
4272
+ #: modules/post-grid/post-grid.php:248
4273
+ msgid "Slide Up"
4274
+ msgstr "Deslizar Arriba"
4275
+
4276
+ #: modules/post-carousel/post-carousel.php:243
4277
+ #: modules/post-grid/post-grid.php:249
4278
+ msgid "Slide Down"
4279
+ msgstr "Deslizar Abajo"
4280
+
4281
+ #: modules/post-carousel/post-carousel.php:244
4282
+ #: modules/post-grid/post-grid.php:250
4283
+ msgid "Scale Up"
4284
+ msgstr "Ampliar Escala"
4285
+
4286
+ #: modules/post-carousel/post-carousel.php:245
4287
+ #: modules/post-grid/post-grid.php:251
4288
+ msgid "Scale Down"
4289
+ msgstr "Reducir Escala"
4290
+
4291
+ #: modules/post-carousel/post-carousel.php:251
4292
+ #: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:455
4293
+ msgid "Featured Image"
4294
+ msgstr "Imagen Destacada"
4295
+
4296
+ #: modules/post-carousel/post-carousel.php:279
4297
+ #: modules/post-grid/post-grid.php:261
4298
+ msgid "Use Icon for Posts"
4299
+ msgstr "Usar Icono para Entradas"
4300
+
4301
+ #: modules/post-carousel/post-carousel.php:293
4302
+ #: modules/post-grid/post-grid.php:275
4303
+ msgid "Post Icon"
4304
+ msgstr "Icono de la Entrada"
4305
+
4306
+ #: modules/post-carousel/post-carousel.php:297
4307
+ #: modules/post-grid/post-grid.php:279
4308
+ msgid "Post Icon Position"
4309
+ msgstr "Posición Icono de la Entrada"
4310
+
4311
+ #: modules/post-carousel/post-carousel.php:300
4312
+ #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
4313
+ msgid "Above Text"
4314
+ msgstr "Encima del Texto"
4315
+
4316
+ #: modules/post-carousel/post-carousel.php:301
4317
+ #: modules/post-grid/post-grid.php:283
4318
+ msgid "Below Text"
4319
+ msgstr "Debajo del Texto"
4320
+
4321
+ #: modules/post-carousel/post-carousel.php:306
4322
+ #: modules/post-grid/post-grid.php:288
4323
+ msgid "Post Icon Size"
4324
+ msgstr "Tamaño Icono de la Entrada"
4325
+
4326
+ #: modules/post-carousel/post-carousel.php:315
4327
+ #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:490
4328
+ msgid "Post Info"
4329
+ msgstr "Información de la Entrada"
4330
+
4331
+ #: modules/post-carousel/post-carousel.php:342
4332
+ #: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:517
4333
+ msgid "Date Format"
4334
+ msgstr "Formato de Fecha"
4335
+
4336
+ #: modules/post-carousel/post-carousel.php:372
4337
+ #: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:556
4338
+ msgid "More Link"
4339
+ msgstr "Enlace Más"
4340
+
4341
+ #: modules/post-carousel/post-carousel.php:381
4342
+ #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:565
4343
+ msgid "More Link Text"
4344
+ msgstr "Texto Enlace Más"
4345
+
4346
+ #: modules/post-carousel/post-carousel.php:418
4347
+ #: modules/post-grid/post-grid.php:307
4348
+ msgid "Post Icon Color"
4349
+ msgstr "Color Icono de la Entrada"
4350
+
4351
+ #: modules/post-grid/includes/frontend.php:41
4352
+ msgid "No posts found."
4353
+ msgstr "No se ha encontrado ninguna entrada."
4354
+
4355
  #: modules/post-grid/post-grid.php:15
4356
  msgid "Display a grid of your WordPress posts."
4357
+ msgstr "Motrar una tabla con tus entradas de WordPress"
4358
 
4359
  #: modules/post-grid/post-grid.php:51
4360
  msgid "Layout Style"
4361
  msgstr "Estilos de Diseño"
4362
 
 
 
 
 
4363
  #: modules/post-grid/post-grid.php:56
4364
  msgid "Feed"
4365
  msgstr "Feed"
4366
 
4367
+ #: modules/post-grid/post-grid.php:74
4368
  msgid "Pagination Style"
4369
  msgstr "Estilo de Paginación"
4370
 
4371
+ #: modules/post-grid/post-grid.php:77
4372
  msgid "Numbers"
4373
  msgstr "Números"
4374
 
4375
+ #: modules/post-grid/post-grid.php:79
4376
  msgctxt "Pagination style."
4377
  msgid "None"
4378
  msgstr "Ninguna"
4379
 
4380
+ #: modules/post-grid/post-grid.php:84
4381
  msgid "Posts Per Page"
4382
  msgstr "Entradas Por Página"
4383
 
4384
+ #: modules/post-grid/post-grid.php:95
4385
  msgid "Post Width"
4386
  msgstr "Ancho de la Entrada"
4387
 
4388
+ #: modules/post-grid/post-grid.php:134
 
 
 
 
 
 
 
 
 
 
 
 
4389
  msgid "Beside Text"
4390
  msgstr "Al lado del Texto"
4391
 
4392
+ #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:533
 
 
 
 
 
 
 
 
4393
  msgid "Comments"
4394
  msgstr "Comentarios"
4395
 
4396
+ #: modules/post-grid/post-grid.php:211
4397
  msgid "Content Type"
4398
  msgstr "Tipo de Contenido"
4399
 
4400
+ #: modules/post-grid/post-grid.php:214
4401
  msgid "Excerpt"
4402
  msgstr "Extracto"
4403
 
4404
+ #: modules/post-grid/post-grid.php:215
4405
  msgid "Full Text"
4406
  msgstr "Texto completo"
4407
 
4408
+ #: modules/post-grid/post-grid.php:244
4409
+ msgid "Hover Transition"
4410
+ msgstr "Transición Hover"
4411
 
4412
+ #: modules/post-slider/post-slider.php:14
4413
+ msgid "Posts Slider"
4414
+ msgstr "Slider de Entradas"
4415
 
4416
+ #: modules/post-slider/post-slider.php:15
4417
+ msgid "Display a slider of your WordPress posts."
4418
+ msgstr "Muestra un control deslizante de tus entradas de WordPress."
4419
+
4420
+ #: modules/post-slider/post-slider.php:349
4421
+ msgid ""
4422
+ "This setting is the minimum height of the post slider. Content will expand "
4423
+ "the height automatically."
4424
+ msgstr ""
4425
+ "Este ajuste es la altura mínima del contenido del slider. El contenido se "
4426
+ "expandirá a esta altura de forma automática."
4427
+
4428
+ #: modules/post-slider/post-slider.php:439
4429
+ msgid "Show Featured Image?"
4430
+ msgstr "¿Mostrar Imagen Destacada?"
4431
+
4432
+ #: modules/post-slider/post-slider.php:623
4433
+ msgid ""
4434
+ "The position will move the content layout selections left, right or bottom "
4435
+ "over the background of the slide."
4436
+ msgstr ""
4437
+ "La posición moverá las selecciones de diseño de contenido a la izquierda, "
4438
+ "derecha o centrado sobre el fondo de la diapositiva."
4439
+
4440
+ #: modules/post-slider/post-slider.php:642
4441
+ msgid ""
4442
+ "The position will move the content layout selections left or right or center "
4443
+ "of the thumbnail of the slide."
4444
+ msgstr ""
4445
+ "La posición moverá las selecciones de diseño de contenido hacia la izquierda "
4446
+ "o derecha o centro de la miniatura de la diapositiva."
4447
+
4448
+ #: modules/post-slider/post-slider.php:658
4449
+ msgid "Text Width"
4450
+ msgstr "Anchura del Texto"
4451
+
4452
+ #: modules/post-slider/post-slider.php:666
4453
+ msgid "Text Padding"
4454
+ msgstr "Márgenes del Texto"
4455
+
4456
+ #: modules/post-slider/post-slider.php:731
4457
+ msgid "Text Background Gradient"
4458
+ msgstr "Gradiente de Fondo del Texto"
4459
 
4460
  #: modules/pricing-table/pricing-table.php:14
4461
  msgid "Pricing Table"
4488
 
4489
  #: modules/pricing-table/pricing-table.php:59
4490
  msgid "Features Min Height"
4491
+ msgstr "Altura Mínima Características"
4492
 
4493
  #: modules/pricing-table/pricing-table.php:63
4494
  msgid ""
4518
 
4519
  #: modules/pricing-table/pricing-table.php:107
4520
  msgid "Price Box"
4521
+ msgstr "Precio"
4522
 
4523
  #: modules/pricing-table/pricing-table.php:111
4524
  #: modules/woocommerce/woocommerce.php:190
4538
  msgstr "Tamaño del Precio"
4539
 
4540
  #: modules/pricing-table/pricing-table.php:133
4541
+ #: modules/subscribe-form/subscribe-form.php:168
4542
  msgid "Button Text"
4543
  msgstr "Texto del Botón"
4544
 
4569
 
4570
  #: modules/pricing-table/pricing-table.php:178
4571
  msgid "Accent Text Color"
4572
+ msgstr "Color Texto Destacado"
4573
 
4574
  #: modules/pricing-table/pricing-table.php:182
4575
  msgid "Box Top Margin"
4603
  #: modules/sidebar/sidebar.php:15
4604
  msgid ""
4605
  "Display a WordPress sidebar that has been registered by the current theme."
4606
+ msgstr ""
4607
+ "Muestra una barra lateral de WordPress que ha sido registrada por el tema "
4608
+ "actual."
4609
 
4610
  #: modules/slideshow/slideshow.php:14
4611
  msgid "Slideshow"
4613
 
4614
  #: modules/slideshow/slideshow.php:15
4615
  msgid "Display multiple photos in a slideshow view."
4616
+ msgstr "Mostrar varias fotos en una vista de presentación ."
4617
 
4618
+ #: modules/slideshow/slideshow.php:310
4619
  msgid "Skin Color"
4620
+ msgstr "Color del Diseño"
4621
 
4622
+ #: modules/slideshow/slideshow.php:313
4623
  msgctxt "Color."
4624
  msgid "Light"
4625
  msgstr "Claro"
4626
 
4627
+ #: modules/slideshow/slideshow.php:314
4628
  msgctxt "Color."
4629
  msgid "Dark"
4630
  msgstr "Oscuro"
4631
 
4632
+ #: modules/slideshow/slideshow.php:316
4633
  msgid ""
4634
  "If your overall theme/images are lighter in color, light will display "
4635
  "buttons in a darker color scheme and vice versa for dark."
4637
  "Si tu tema o imágenes tienen un color claro, la opción claro mostrará los "
4638
  "botones en un esquema de color oscuro y lo contrario con la opción oscuro."
4639
 
4640
+ #: modules/slideshow/slideshow.php:326
4641
  msgid ""
4642
  "Crop set to no will fit the slideshow images to the height you specify and "
4643
  "keep the width proportional, whereas crop set to yes will fit the slideshow "
4649
  "ajustará las imágenes a todos los lados del área de contenido, cortando a "
4650
  "izquierda y derecha para adecuarlas a la altura que has especificado."
4651
 
4652
+ #: modules/slideshow/slideshow.php:330
4653
  msgid "Disable Right-Click"
4654
  msgstr "Desactivar Clic Derecho"
4655
 
4656
+ #: modules/slideshow/slideshow.php:350
4657
  msgctxt "Click action type."
4658
  msgid "None"
4659
  msgstr "Ninguno"
4660
 
4661
+ #: modules/slideshow/slideshow.php:374
4662
  msgid "Playback"
4663
  msgstr "Reproducción"
4664
 
4665
+ #: modules/slideshow/slideshow.php:400
4666
  msgctxt "Slideshow transition."
4667
  msgid "None"
4668
  msgstr "Ninguno"
4669
 
4670
+ #: modules/slideshow/slideshow.php:437
4671
  msgid "Controls"
4672
  msgstr "Controles"
4673
 
4674
+ #: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
4675
  msgid "Navigation Arrows"
4676
  msgstr "Flechas de Navegación"
4677
 
4678
+ #: modules/slideshow/slideshow.php:450
4679
  msgid ""
4680
  "Navigational arrows allow the visitor to freely move through the images in "
4681
  "your slideshow. These are larger arrows that overlay your slideshow images "
4686
  "superpuestas a las imágenes y están separados de las flechas de control de "
4687
  "navegación."
4688
 
4689
+ #: modules/slideshow/slideshow.php:455
4690
  msgid "Control Bar"
4691
  msgstr "Barra de Control"
4692
 
4693
+ #: modules/slideshow/slideshow.php:459
4694
  msgid "Nav Type"
4695
  msgstr "Tipo de Navegación"
4696
 
4697
+ #: modules/slideshow/slideshow.php:462
4698
  msgctxt "Nav type."
4699
  msgid "None"
4700
  msgstr "Ninguno"
4701
 
4702
+ #: modules/slideshow/slideshow.php:463
4703
  msgid "Buttons"
4704
  msgstr "Botones"
4705
 
4706
+ #: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
4707
  msgid "Thumbs"
4708
  msgstr "Miniaturas"
4709
 
4710
+ #: modules/slideshow/slideshow.php:479
4711
  msgid "Nav Position"
4712
+ msgstr "Posición Navegación"
4713
 
4714
+ #: modules/slideshow/slideshow.php:489
4715
  msgid "Control Bar Buttons"
4716
+ msgstr "Botones Barra de Control"
4717
 
4718
+ #: modules/slideshow/slideshow.php:502
4719
  msgid "Play Button"
4720
+ msgstr "Botón Play"
4721
 
4722
+ #: modules/slideshow/slideshow.php:511
4723
  msgid "Fullscreen Button"
4724
+ msgstr "Botón Pantalla Completa"
4725
 
4726
+ #: modules/slideshow/slideshow.php:520
4727
  msgid "Photo Count"
4728
  msgstr "Contador de Fotos"
4729
 
4730
+ #: modules/slideshow/slideshow.php:529
4731
  msgid "Thumbs Button"
4732
+ msgstr "Botón Miniaturas"
4733
 
4734
+ #: modules/slideshow/slideshow.php:538
4735
  msgid "Caption Button"
4736
+ msgstr "Botón Caption"
4737
 
4738
+ #: modules/slideshow/slideshow.php:547
4739
  msgid "Social Button"
4740
  msgstr "Botón Social"
4741
 
4742
+ #: modules/slideshow/slideshow.php:557
4743
  msgid "Control Bar Overlay"
4744
  msgstr "Barra de Control de Superposición"
4745
 
4746
+ #: modules/slideshow/slideshow.php:561
4747
  msgid "Overlay Enabled"
4748
  msgstr "Superposición Habilitada"
4749
 
4750
+ #: modules/slideshow/slideshow.php:572
4751
  msgid ""
4752
  "Control bar overlay specifies if the control bar buttons you choose overlay "
4753
  "your slideshow images or site below the slideshow completely."
4756
  "de control han de estar superpuestos a la imagen o si han de aparecer por "
4757
  "debajo de la presentación de las imágenes."
4758
 
4759
+ #: modules/slideshow/slideshow.php:576
4760
  msgid "Overlay Hide"
4761
  msgstr "Ocultar Superposición"
4762
 
4763
+ #: modules/slideshow/slideshow.php:582
4764
  msgid ""
4765
  "Overlay hide will hide the control bar after however many seconds you "
4766
  "specify below. They will reappear upon mouse over."
4768
  "Superponer ocultará la barra de control tras los segundos que hayas "
4769
  "especificado aquí abajo. Volverá a aparecer el pasar el ratón por encima."
4770
 
4771
+ #: modules/slideshow/slideshow.php:586
4772
  msgid "Overlay Hide Delay"
4773
+ msgstr "Retardo Ocultar Superposición"
4774
 
4775
+ #: modules/slideshow/slideshow.php:598
4776
  msgid "Thumbs Size"
4777
  msgstr "Tamaño de las Miniaturas"
4778
 
4779
+ #: modules/slideshow/slideshow.php:607
4780
  msgid "Social"
4781
  msgstr "Social"
4782
 
4783
+ #: modules/slideshow/slideshow.php:611
4784
  msgid "Facebook Button"
4785
  msgstr "Botón de Facebook"
4786
 
4787
+ #: modules/slideshow/slideshow.php:623
4788
  msgid "Twitter Button"
4789
  msgstr "Botón de Twitter"
4790
 
4791
+ #: modules/slideshow/slideshow.php:635
4792
  msgid "Google Plus Button"
4793
  msgstr "Botón de Google Plus"
4794
 
4795
+ #: modules/slideshow/slideshow.php:647
4796
  msgid "Pinterest Button"
4797
+ msgstr "Botón Pinterest"
4798
 
4799
  #: modules/social-buttons/social-buttons.php:14
4800
  msgid "Social Buttons"
4819
  "whatever you put in this field."
4820
  msgstr ""
4821
  "El campo de dirección URL de destino se correlaciona con la página con la "
4822
+ "que deseas que tus iconos sociales que interactúen. Por ejemplo, si muestras "
4823
  "Facebook, el usuario hará un \"Me gusta\" a lo que sea que hayas puesto en "
4824
  "este campo."
4825
 
4846
 
4847
  #: modules/subscribe-form/includes/frontend.php:12
4848
  msgid "Please enter a valid email address."
4849
+ msgstr "Por favor, introduce una dirección de email válida."
4850
 
4851
+ #: modules/subscribe-form/includes/frontend.php:41
4852
  msgid "Something went wrong. Please check your entries and try again."
4853
+ msgstr "Algo salió mal. Por favor revisa las entradas e inténtalo de nuevo."
4854
 
4855
  #: modules/subscribe-form/subscribe-form.php:18
4856
  msgid "Subscribe Form"
4860
  msgid "Adds a simple subscribe form to your layout."
4861
  msgstr "Añade un formulario simple de suscripción a tu diseño."
4862
 
4863
+ #: modules/subscribe-form/subscribe-form.php:118
 
 
 
 
 
 
4864
  msgid "Success"
4865
  msgstr "Éxito"
4866
 
4867
+ #: modules/subscribe-form/subscribe-form.php:122
4868
  msgid "Success Action"
4869
  msgstr "Acción de éxito"
4870
 
4871
+ #: modules/subscribe-form/subscribe-form.php:124
4872
  msgid "Show Message"
4873
  msgstr "Mostrar mensaje"
4874
 
4875
+ #: modules/subscribe-form/subscribe-form.php:125
4876
  msgid "Redirect"
4877
  msgstr "Redirigir"
4878
 
4879
+ #: modules/subscribe-form/subscribe-form.php:144
4880
  msgid ""
4881
  "Thanks for subscribing! Please check your email for further instructions."
4882
  msgstr ""
4883
  "¡Gracias por suscribirte! Por favor revisa tu correo electrónico para "
4884
  "obtener más instrucciones."
4885
 
4886
+ #: modules/subscribe-form/subscribe-form.php:151
4887
  msgid "Success URL"
4888
+ msgstr "URL Éxito"
4889
 
4890
+ #: modules/subscribe-form/subscribe-form.php:169
4891
  msgid "Subscribe!"
4892
  msgstr "¡Suscríbete!"
4893
 
4948
 
4949
  #: modules/video/video.php:20
4950
  msgid "Render a WordPress or embedable video."
4951
+ msgstr "Reproducir un video WordPress o un video incrustado."
4952
 
4953
  #: modules/video/video.php:83
4954
  msgid "Video Type"
4963
  msgid "Poster"
4964
  msgstr "Cartel"
4965
 
 
 
 
 
4966
  #: modules/widget/includes/frontend.php:35
4967
  #: modules/widget/includes/settings-general.php:46
4968
  #, php-format
5104
 
5105
  #: modules/woocommerce/woocommerce.php:160
5106
  msgid "Category Slug"
5107
+ msgstr "Categoría Slug"
5108
 
5109
  #: modules/woocommerce/woocommerce.php:162
5110
  msgid ""
languages/it_IT.mo CHANGED
Binary file
languages/it_IT.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Beaver Builder Plugin (Agency Version) v1.5.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2015-05-18 13:57:36+0000\n"
7
- "Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -92,6 +92,12 @@ msgstr "Branding"
92
  msgid "Help Button"
93
  msgstr "Pulsante Aiuto"
94
 
 
 
 
 
 
 
95
  #: includes/admin-settings.php:40
96
  #: includes/admin-settings.php:250
97
  #: includes/admin-settings.php:262
@@ -214,6 +220,22 @@ msgctxt "%s stands for post/page title."
214
  msgid "Copy of %s"
215
  msgstr "Copia di %s"
216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  #: classes/class-fl-builder-photo.php:75
218
  #@ fl-builder
219
  msgctxt "Image size."
@@ -238,874 +260,1081 @@ msgctxt "Image size."
238
  msgid "Thumbnail"
239
  msgstr "Miniatura"
240
 
241
- #: classes/class-fl-builder.php:699
242
- #, php-format
243
  #@ fl-builder
244
- msgctxt "Field name to add."
245
- msgid "Add %s"
246
- msgstr "Aggiungi %s"
247
 
248
- #: classes/class-fl-builder.php:766
 
 
 
 
249
  #@ fl-builder
250
- msgctxt "Custom post type label."
251
- msgid "Add New"
252
- msgstr "Aggiungi nuovo"
253
 
254
- #: classes/class-fl-builder.php:1113
255
- #: includes/js-config.php:58
256
- #, php-format
257
  #@ fl-builder
258
- msgctxt "%s stands for module name."
259
- msgid "%s Settings"
260
- msgstr "impostazioni %s"
261
 
262
- #: includes/admin-posts.php:3
263
- #: modules/rich-text/rich-text.php:14
264
  #@ fl-builder
265
- msgid "Text Editor"
266
- msgstr "Editor di testo"
267
 
268
- #: includes/admin-posts.php:8
269
- #, php-format
270
  #@ fl-builder
271
- msgctxt "%s stands for custom branded \"Page Builder\" name."
272
- msgid "Launch %s"
273
- msgstr "Lancia %s"
274
 
275
- #: includes/admin-posts.php:15
276
- #, php-format
 
 
 
277
  #@ fl-builder
278
- msgctxt "%s stands for custom branded \"Page Builder\" name."
279
- msgid "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?"
280
- msgstr "Tornando alla modalità Text Editor i layout di %s saranno disabilitati finchè non lo riattivi. Le modifiche apportate in modalità Text Editor non saranno effettuate sul tuo layout %s. Vuoi continuare?"
281
 
282
- #: includes/admin-settings-branding.php:7
283
  #@ fl-builder
284
- msgid "White label the page builder by entering a custom name below."
285
- msgstr "Togli l'etichetta al page builder inserendo un nome personalizzato qui sotto."
286
 
287
- #: includes/admin-settings-branding.php:10
288
  #@ fl-builder
289
- 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."
290
- msgstr "Inoltre, puoi anche aggiungere un'icona personalizzata inserendo la URL di un'immagine qui sotto. Lascia il campo in bianco se non desideri usare un'icona."
291
 
292
- #: includes/admin-settings-branding.php:14
 
 
 
 
 
 
 
 
 
293
  #@ fl-builder
294
- msgid "Save Branding"
295
- msgstr "Salva Branding"
 
296
 
297
- #: includes/admin-settings.php:215
298
- #: includes/multisite-settings.php:145
299
  #@ fl-builder
300
- msgid "Editing Settings"
301
- msgstr "Impostazioni di modifica"
302
 
303
- #: includes/admin-settings.php:81
304
- #: includes/admin-settings.php:132
305
- #: includes/admin-settings.php:170
306
- #: includes/admin-settings.php:222
307
  #@ fl-builder
308
- msgid "Override network settings?"
309
- msgstr "Eseguire l'override delle impostazioni di rete?"
310
 
311
- #: includes/admin-settings.php:228
312
- #: includes/multisite-settings.php:150
313
- #, php-format
314
  #@ fl-builder
315
- msgid "Set the <a%s>capability</a> required for users to access advanced builder editing such as adding, deleting or moving modules."
316
- msgstr "Imposta la <a%s>capacità</a> necessaria degli utenti per accedere al builder avanzato e aggiungere, eliminare o spostare i moduli."
317
 
318
- #: includes/admin-settings.php:234
319
- #: includes/multisite-settings.php:156
320
  #@ fl-builder
321
- msgid "Save Editing Settings"
322
- msgstr "Salva le impostazioni di modifica"
323
 
324
- #: includes/admin-settings-help-button.php:8
325
  #@ fl-builder
326
- msgid "Help Button Settings"
327
- msgstr "Impostazioni pulsante di aiuto"
328
 
329
- #: includes/admin-settings-help-button.php:17
 
330
  #@ fl-builder
331
- msgid "Enable Help Button"
332
- msgstr "Abilita pulsante di aiuto"
333
 
334
- #: includes/admin-settings-help-button.php:23
335
  #@ fl-builder
336
- msgid "Help Tour"
337
- msgstr "Visita guidata"
338
 
339
- #: includes/admin-settings-help-button.php:27
340
  #@ fl-builder
341
- msgid "Enable Help Tour"
342
- msgstr "Abilita visita guidata"
343
 
344
- #: includes/admin-settings-help-button.php:31
 
345
  #@ fl-builder
346
- msgid "Help Video"
347
- msgstr "Video di aiuto"
348
 
349
- #: includes/admin-settings-help-button.php:35
 
 
 
350
  #@ fl-builder
351
- msgid "Enable Help Video"
352
- msgstr "Abilita "
353
 
354
- #: includes/admin-settings-help-button.php:39
355
  #@ fl-builder
356
- msgid "Help Video Embed Code"
357
- msgstr "Codice di embed del video di aiuto"
358
 
359
- #: includes/admin-settings-help-button.php:45
360
  #@ fl-builder
361
- msgid "Knowledge Base"
362
- msgstr "Documentazione"
 
363
 
364
- #: includes/admin-settings-help-button.php:49
365
  #@ fl-builder
366
- msgid "Enable Knowledge Base"
367
- msgstr "Abilita documentazione"
368
 
369
- #: includes/admin-settings-help-button.php:53
370
  #@ fl-builder
371
- msgid "Knowledge Base URL"
372
- msgstr "URL documentazione"
373
 
374
- #: includes/admin-settings-help-button.php:59
375
  #@ fl-builder
376
- msgid "Forums"
377
- msgstr "Forum"
378
 
379
- #: includes/admin-settings-help-button.php:63
 
 
380
  #@ fl-builder
381
- msgid "Enable Forums"
382
- msgstr "Abilita forum"
383
 
384
- #: includes/admin-settings-help-button.php:67
385
  #@ fl-builder
386
- msgid "Forums URL"
387
- msgstr "URL forum"
388
 
389
- #: includes/admin-settings-help-button.php:77
390
  #@ fl-builder
391
- msgid "Save Help Button Settings"
392
- msgstr "Salva impostazioni pulsante di aiuto"
393
 
394
- #: includes/admin-settings-icons.php:3
395
  #@ fl-builder
396
- msgid "Icon Settings"
397
- msgstr "Impostazioni icona"
398
 
399
- #: includes/admin-settings-icons.php:13
 
400
  #@ fl-builder
401
- msgid "Icons for the main site must be managed in the network admin."
402
- msgstr "Le icone per il sito principale devono essere gestite nell'amministrazione di rete."
403
 
404
- #: includes/admin-settings-icons.php:33
 
 
 
 
 
 
405
  #, php-format
406
  #@ fl-builder
407
- msgid "Enable or disable icon sets using the options below or upload a custom icon set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
408
- msgstr "Abilita o disabilita set di icone usando le opzioni qui sotto o carica un set di icone personalizzato da <a%s>Icomoon</a> o <a%s>Fontello</a>."
409
 
410
- #: includes/admin-settings-icons.php:48
411
  #@ fl-builder
412
- msgctxt "Plugin setup page: Delete icon set."
413
- msgid "Delete"
414
- msgstr "Elimina"
415
 
416
- #: includes/admin-settings-icons.php:59
 
417
  #@ fl-builder
418
- msgid "Upload Icon Set"
419
- msgstr "Carica set di icone"
420
 
421
- #: includes/admin-settings-icons.php:60
422
  #@ fl-builder
423
- msgid "Save Icon Settings"
424
- msgstr "Salva impostazioni icona"
425
 
426
- #: includes/admin-settings-js-config.php:4
427
  #@ fl-builder
428
- msgid "Select File"
429
- msgstr "Seleziona file"
430
 
431
- #: includes/admin-settings.php:276
432
- #: includes/multisite-settings.php:198
433
  #@ fl-builder
434
- msgid "Please type \"uninstall\" in the box below to confirm that you really want to uninstall the page builder and all of its data."
435
- msgstr "Si prega di digitare \"uninstall\" nella casella qui sotto per confermare che si desidera davvero disinstallare il page builder e tutti i relativi dati."
436
 
437
- #: includes/admin-settings.php:74
438
- #: includes/multisite-settings.php:39
439
  #@ fl-builder
440
- msgid "Enabled Modules"
441
- msgstr "Moduli abilitati"
442
 
443
- #: includes/admin-settings.php:87
444
- #: includes/multisite-settings.php:45
445
  #@ fl-builder
446
- msgid "Check or uncheck modules below to enable or disable them."
447
- msgstr "Selezionare o deselezionare i moduli sottostanti per abilitarli o disabilitarli."
448
 
449
- #: includes/admin-settings.php:96
450
- #: includes/multisite-settings.php:54
451
  #@ fl-builder
452
- msgctxt "Plugin setup page: Modules."
453
- msgid "All"
454
- msgstr "Tutti"
455
 
456
- #: includes/admin-settings.php:114
457
- #: includes/multisite-settings.php:72
458
  #@ fl-builder
459
- msgid "Save Module Settings"
460
- msgstr "Salvare le impostazioni del modulo"
461
 
462
- #: includes/admin-settings-post-types.php:18
 
463
  #@ fl-builder
464
- msgid "Enter a comma separated list of the post types you would like the builder to work with."
465
- msgstr "Inserisci una lista separata da virgole dei tipi di post su cui desideri attivare il builder."
466
 
467
- #: includes/admin-settings.php:177
468
- #: includes/multisite-settings.php:117
469
  #@ fl-builder
470
- msgid "NOTE: Not all custom post types may be supported."
471
- msgstr "Nota: Non tutti i tipi di post personalizzati potrebbero essere supportati."
472
 
473
- #: includes/admin-settings-post-types.php:34
474
  #@ fl-builder
475
- msgid "Example: page, post, product"
476
- msgstr "Esempio: pagina, articolo, prodotto"
 
477
 
478
- #: includes/admin-settings.php:176
479
  #@ fl-builder
480
- msgid "Select the post types you would like the builder to work with."
481
- msgstr "Seleziona i tipi di post su cui vuoi abilitare il builder."
482
 
483
- #: includes/admin-settings.php:205
484
- #: includes/multisite-settings.php:135
485
  #@ fl-builder
486
- msgid "Save Post Types"
487
- msgstr "Salva tipi di Post"
488
 
489
- #: includes/admin-settings.php:125
490
- #: includes/multisite-settings.php:82
491
  #@ fl-builder
492
- msgid "Template Settings"
493
- msgstr "Impostazioni dei modelli"
494
 
495
- #: includes/admin-settings.php:145
496
- #: includes/multisite-settings.php:95
497
  #@ fl-builder
498
- msgid "Enable All Templates"
499
- msgstr "Abilita tutti i modelli"
500
 
501
- #: includes/admin-settings.php:146
502
- #: includes/multisite-settings.php:96
503
  #@ fl-builder
504
- msgid "Enable Core Templates Only"
505
- msgstr "Abilita solo i modelli Core"
506
 
507
- #: includes/admin-settings.php:147
508
- #: includes/multisite-settings.php:97
509
  #@ fl-builder
510
- msgid "Enable User Templates Only"
511
- msgstr "Abilita solo i modelli utente"
512
 
513
- #: includes/admin-settings.php:148
514
- #: includes/multisite-settings.php:98
 
515
  #@ fl-builder
516
- msgid "Disable All Templates"
517
- msgstr "Disabilita tutti i modelli"
518
 
519
- #: includes/admin-settings.php:152
520
- #: includes/multisite-settings.php:102
521
  #@ fl-builder
522
- msgid "Save Template Settings"
523
- msgstr "Salva le impostazioni dei modelli"
524
 
525
- #: includes/admin-settings.php:252
526
- #: includes/multisite-settings.php:174
527
  #@ fl-builder
528
- 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."
529
- msgstr "Clicca sul pulsante qui sotto per disinstallare il page builder plugin e rimuovere tutti i dati ad esso associati. È possibile disinstallare o disattivare il page builder dalla pagina dei plugin se invece non si desidera eliminare i dati."
530
 
531
- #: includes/admin-settings.php:254
532
- #: includes/admin-settings.php:257
533
- #: includes/multisite-settings.php:176
534
- #: includes/multisite-settings.php:179
535
- #: includes/updater/includes/form.php:31
536
  #@ fl-builder
537
- msgid "NOTE:"
538
- msgstr "NOTA:"
539
 
540
- #: includes/admin-settings.php:254
541
- #: includes/multisite-settings.php:176
542
  #@ fl-builder
543
- 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."
544
- msgstr "Il builder non elimina il post meta <code>_fl_builder_data</code> , <code>_fl_builder_draft</code> e <code>_fl_builder_enabled</code> nel caso in cui si desidera reinstallarlo successivamente. Se lo fai, il builder ricostruirà tutti i suoi dati utilizzando quei valori meta."
545
 
546
- #: includes/admin-settings.php:257
547
- #: includes/multisite-settings.php:179
548
- #: includes/updater/includes/form.php:31
549
  #@ fl-builder
550
- msgid "This applies to all sites on the network."
551
- msgstr "Questo vale per tutti i siti della rete."
552
 
553
- #: includes/admin-settings.php:61
554
  #@ fl-builder
555
- 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!"
556
- msgstr "Stai usando la versione lite del plugin Beaver Builder. Aggiorna oggi per accedere a funzioni premium come moduli avanzati, modelli, supporto e altro!"
557
 
558
- #: includes/admin-settings.php:63
 
559
  #@ fl-builder
560
- msgid "Upgrade Now"
561
- msgstr "Aggiorna ora"
562
 
563
- #: includes/admin-settings.php:65
564
  #@ fl-builder
565
- msgid "Learn More"
566
- msgstr "Ulteriori informazioni"
567
 
568
- #: includes/column-settings.php:4
569
- #: includes/js-config.php:21
570
  #@ fl-builder
571
- msgid "Column Settings"
572
- msgstr "Impostazioni colonna"
573
 
574
- #: includes/column-settings.php:7
575
- #: includes/module-settings.php:95
576
- #: includes/row-settings.php:9
577
- #: modules/accordion/accordion.php:45
578
- #: modules/button/button.php:95
579
- #: modules/callout/callout.php:239
580
- #: modules/content-slider/content-slider.php:419
581
- #: modules/cta/cta.php:99
582
- #: modules/heading/heading.php:69
583
- #: modules/icon/icon.php:75
584
- #: modules/icon-group/icon-group.php:44
585
- #: modules/pricing-table/pricing-table.php:43
586
- #: modules/pricing-table/pricing-table.php:155
587
- #: modules/separator/separator.php:72
588
- #: modules/tabs/tabs.php:45
589
  #@ fl-builder
590
- msgid "Style"
591
- msgstr "Stile"
592
 
593
- #: includes/column-settings.php:14
594
  #@ fl-builder
595
- msgid "Column Width"
596
- msgstr "Larghezza colonna"
597
 
598
- #: includes/column-settings.php:26
599
- #: includes/row-settings.php:48
600
- #: modules/button/button.php:53
601
- #: modules/callout/callout.php:223
602
- #: modules/callout/callout.php:476
603
- #: modules/callout/callout.php:492
604
- #: modules/content-slider/content-slider.php:376
605
- #: modules/content-slider/content-slider.php:610
606
- #: modules/cta/cta.php:82
607
- #: modules/cta/cta.php:219
608
  #@ fl-builder
609
- msgid "Text"
610
- msgstr "Testo"
611
 
612
- #: includes/column-settings.php:30
613
- #: includes/column-settings.php:43
614
- #: includes/column-settings.php:100
615
- #: includes/row-settings.php:52
616
- #: includes/row-settings.php:109
617
- #: includes/row-settings.php:379
618
- #: modules/callout/callout.php:389
619
- #: modules/content-slider/content-slider.php:331
620
- #: modules/icon/icon.php:82
621
- #: modules/icon-group/icon-group.php:51
622
- #: modules/separator/separator.php:34
623
  #@ fl-builder
624
- msgid "Color"
625
- msgstr "Colore"
626
 
627
- #: includes/column-settings.php:39
628
- #: includes/row-settings.php:105
629
- #: modules/button/button.php:102
630
- #: modules/callout/callout.php:402
631
- #: modules/callout/callout.php:506
632
- #: modules/content-slider/content-slider.php:357
633
- #: modules/content-slider/content-slider.php:624
634
- #: modules/cta/cta.php:195
635
- #: modules/cta/cta.php:262
636
- #: modules/icon/icon.php:95
637
- #: modules/icon-group/icon-group.php:64
638
  #@ fl-builder
639
- msgid "Background Color"
640
- msgstr "Colore di sfondo"
641
 
642
- #: includes/column-settings.php:51
643
- #: includes/column-settings.php:108
644
- #: includes/row-settings.php:117
645
- #: includes/row-settings.php:387
646
- #: modules/separator/separator.php:44
647
  #@ fl-builder
648
- msgid "Opacity"
649
- msgstr "Opacità"
650
 
651
- #: includes/column-settings.php:63
652
- #: includes/row-settings.php:342
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
653
  #@ fl-builder
654
- msgid "Border"
655
- msgstr "Bordo"
 
656
 
657
- #: includes/column-settings.php:67
658
- #: includes/row-settings.php:65
659
- #: includes/row-settings.php:346
660
- #: modules/callout/callout.php:472
661
- #: modules/content-slider/content-slider.php:325
662
- #: modules/content-slider/content-slider.php:372
663
- #: modules/content-slider/content-slider.php:590
664
- #: modules/content-slider/content-slider.php:694
665
- #: modules/slideshow/slideshow.php:339
666
  #@ fl-builder
667
- msgid "Type"
668
- msgstr "Tipo"
 
669
 
670
- #: includes/column-settings.php:69
671
- #: includes/row-settings.php:348
 
672
  #@ fl-builder
673
- msgid "The type of border to use. Double borders must have a width of at least 3px to render properly."
674
- msgstr "Il tipo di bordo da utilizzare. I bordi doppi devono avere una larghezza di almeno 3px per essere visualizzati correttamente."
 
675
 
676
- #: includes/column-settings.php:71
677
- #: includes/row-settings.php:350
678
  #@ fl-builder
679
- msgctxt "Border type."
680
- msgid "None"
681
- msgstr "Nessuno"
682
 
683
- #: includes/column-settings.php:72
684
- #: includes/row-settings.php:351
685
- #: modules/separator/separator.php:75
686
  #@ fl-builder
687
- msgctxt "Border type."
688
- msgid "Solid"
689
- msgstr "Solido"
690
 
691
- #: includes/column-settings.php:73
692
- #: includes/row-settings.php:352
693
- #: modules/separator/separator.php:76
694
  #@ fl-builder
695
- msgctxt "Border type."
696
- msgid "Dashed"
697
- msgstr "Tratteggiato"
698
 
699
- #: includes/column-settings.php:74
700
- #: includes/row-settings.php:353
701
- #: modules/separator/separator.php:77
702
  #@ fl-builder
703
- msgctxt "Border type."
704
- msgid "Dotted"
705
- msgstr "Punteggiato"
706
 
707
- #: includes/column-settings.php:75
708
- #: includes/row-settings.php:354
709
- #: modules/separator/separator.php:78
710
  #@ fl-builder
711
- msgctxt "Border type."
712
- msgid "Double"
713
- msgstr "Doppio"
714
 
715
- #: includes/column-settings.php:119
716
- #: includes/row-settings.php:398
717
  #@ fl-builder
718
- msgid "Top Width"
719
- msgstr "Larghezza superiore"
720
 
721
- #: includes/column-settings.php:131
722
- #: includes/row-settings.php:410
723
  #@ fl-builder
724
- msgid "Bottom Width"
725
- msgstr "Larghezza inferiore"
726
 
727
- #: includes/column-settings.php:143
728
- #: includes/row-settings.php:422
 
 
 
729
  #@ fl-builder
730
- msgid "Left Width"
731
- msgstr "Larghezza sinistra"
732
 
733
- #: includes/column-settings.php:155
734
- #: includes/row-settings.php:434
 
735
  #@ fl-builder
736
- msgid "Right Width"
737
- msgstr "Larghezza destra"
738
 
739
- #: includes/column-settings.php:170
740
- #: includes/module-settings.php:6
741
- #: includes/row-settings.php:449
742
- #: modules/content-slider/content-slider.php:267
743
  #@ fl-builder
744
- msgid "Advanced"
745
- msgstr "Avanzato"
746
 
747
- #: includes/column-settings.php:263
748
- #: includes/global-settings.php:41
749
- #: includes/global-settings.php:71
750
- #: includes/module-settings.php:38
751
- #: includes/row-settings.php:481
752
  #@ fl-builder
753
- msgid "Margins"
754
- msgstr "Margini"
755
 
756
- #: includes/column-settings.php:267
757
- #: includes/column-settings.php:320
758
- #: includes/module-settings.php:42
759
- #: includes/row-settings.php:485
760
- #: includes/row-settings.php:538
761
- #: modules/slideshow/slideshow.php:475
762
  #@ fl-builder
763
- msgid "Top"
764
- msgstr "Alto"
765
 
766
- #: includes/column-settings.php:279
767
- #: includes/column-settings.php:332
768
- #: includes/module-settings.php:54
769
- #: includes/row-settings.php:497
770
- #: includes/row-settings.php:550
771
- #: modules/slideshow/slideshow.php:474
772
  #@ fl-builder
773
- msgid "Bottom"
774
- msgstr "Basso"
775
 
776
- #: includes/column-settings.php:291
777
- #: includes/column-settings.php:344
778
- #: includes/module-settings.php:66
779
- #: includes/row-settings.php:509
780
- #: includes/row-settings.php:562
781
- #: modules/button/button.php:177
782
- #: modules/callout/callout.php:250
783
- #: modules/content-slider/content-slider.php:470
784
- #: modules/cta/cta.php:123
785
- #: modules/heading/heading.php:89
786
- #: modules/heading/heading.php:161
787
- #: modules/icon/icon.php:134
788
- #: modules/icon-group/icon-group.php:111
789
- #: modules/photo/photo.php:417
790
- #: modules/social-buttons/social-buttons.php:101
791
  #@ fl-builder
792
- msgid "Left"
793
- msgstr "Sinistra"
794
 
795
- #: includes/column-settings.php:303
796
- #: includes/column-settings.php:356
797
- #: includes/module-settings.php:78
798
- #: includes/row-settings.php:521
799
- #: includes/row-settings.php:574
800
- #: modules/button/button.php:178
801
- #: modules/callout/callout.php:251
802
- #: modules/content-slider/content-slider.php:472
803
- #: modules/cta/cta.php:125
804
- #: modules/heading/heading.php:91
805
- #: modules/heading/heading.php:163
806
- #: modules/icon/icon.php:135
807
- #: modules/icon-group/icon-group.php:112
808
- #: modules/photo/photo.php:419
809
- #: modules/social-buttons/social-buttons.php:102
810
  #@ fl-builder
811
- msgid "Right"
812
- msgstr "Destra"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
813
 
814
- #: includes/column-settings.php:316
815
- #: includes/global-settings.php:49
816
- #: includes/row-settings.php:534
817
- #: modules/button/button.php:191
818
- #: modules/callout/callout.php:567
819
- #: modules/content-slider/content-slider.php:668
820
- #: modules/cta/cta.php:314
821
  #@ fl-builder
822
- msgid "Padding"
823
- msgstr "Padding"
824
 
825
- #: includes/column-settings.php:186
826
- #: includes/global-settings.php:80
827
  #@ fl-builder
828
- msgid "Responsive Layout"
829
- msgstr "Layout reattivo"
830
 
831
- #: includes/column-settings.php:190
832
- #: includes/module-settings.php:21
833
- #: includes/row-settings.php:464
834
- #: modules/slideshow/slideshow.php:290
835
  #@ fl-builder
836
- msgid "Display"
837
- msgstr "Visualizza"
838
 
839
- #: includes/column-settings.php:192
840
- #: includes/module-settings.php:23
841
- #: includes/row-settings.php:466
842
  #@ fl-builder
843
- msgid "Always"
844
- msgstr "Sempre"
845
 
846
- #: includes/column-settings.php:193
847
- #: includes/module-settings.php:24
848
- #: includes/row-settings.php:467
849
  #@ fl-builder
850
- msgid "Large Devices Only"
851
- msgstr "Solo dispositivi grandi"
852
 
853
- #: includes/column-settings.php:194
854
- #: includes/module-settings.php:25
855
- #: includes/row-settings.php:468
856
  #@ fl-builder
857
- msgid "Large &amp; Medium Devices Only"
858
- msgstr "Solo dispositivi grandi e medi"
859
 
860
- #: includes/column-settings.php:195
861
- #: includes/module-settings.php:26
862
- #: includes/row-settings.php:469
863
  #@ fl-builder
864
- msgid "Medium Devices Only"
865
- msgstr "Solo dispositivi medi"
 
866
 
867
- #: includes/column-settings.php:196
868
- #: includes/module-settings.php:27
869
- #: includes/row-settings.php:470
870
  #@ fl-builder
871
- msgid "Medium &amp; Small Devices Only"
872
- msgstr "Solo dispositivi medi e piccoli"
873
 
874
- #: includes/column-settings.php:197
875
- #: includes/module-settings.php:28
876
- #: includes/row-settings.php:471
877
  #@ fl-builder
878
- msgid "Small Devices Only"
879
- msgstr "Solo dispositivi piccoli"
880
 
881
- #: includes/column-settings.php:199
882
  #@ fl-builder
883
- msgid "Choose whether to show or hide this column at different device sizes."
884
- msgstr "Scegli se visualizzare o nascondere questa colonna a diverse dimensioni dei dispositivi."
885
 
886
- #: includes/column-settings.php:206
 
887
  #@ fl-builder
888
- msgid "Medium Device Width"
889
- msgstr "Larghezza dispositivi medi"
890
 
891
- #: includes/column-settings.php:207
 
892
  #@ fl-builder
893
- msgid "The width of this column on medium devices such as tablets."
894
- msgstr "La larghezza della colonna su dispositivi medi come i tablet."
895
 
896
- #: includes/column-settings.php:209
897
- #: includes/column-settings.php:237
898
- #: modules/callout/callout.php:281
899
- #: modules/content-slider/content-slider.php:442
900
- #: modules/cta/cta.php:165
901
- #: modules/heading/heading.php:117
902
- #: modules/heading/heading.php:144
903
- #: modules/heading/heading.php:174
904
  #@ fl-builder
905
- msgid "Default"
906
- msgstr "Predefinita"
907
 
908
- #: includes/column-settings.php:210
909
- #: includes/column-settings.php:238
910
- #: modules/button/button.php:151
911
- #: modules/callout/callout.php:282
912
- #: modules/content-slider/content-slider.php:443
913
- #: modules/cta/cta.php:166
914
- #: modules/heading/heading.php:118
915
- #: modules/heading/heading.php:145
916
- #: modules/heading/heading.php:175
917
- #: modules/social-buttons/social-buttons.php:74
918
  #@ fl-builder
919
- msgid "Custom"
920
- msgstr "Personalizzata"
 
921
 
922
- #: includes/column-settings.php:223
 
923
  #@ fl-builder
924
- msgid "Custom Medium Device Width"
925
- msgstr "Larghezza personalizzata dispositivi medi"
926
 
927
- #: includes/column-settings.php:234
928
  #@ fl-builder
929
- msgid "Small Device Width"
930
- msgstr "Larghezza dispositivi piccoli"
931
 
932
- #: includes/column-settings.php:235
 
933
  #@ fl-builder
934
- msgid "The width of this column on small devices such as phones."
935
- msgstr "La larghezza della colonna su dispositivi piccoli come i telefoni."
936
 
937
- #: includes/column-settings.php:251
938
  #@ fl-builder
939
- msgid "Custom Small Device Width"
940
- msgstr "Larghezza personalizzata dispositivi piccoli"
941
 
942
- #: includes/column-settings.php:356
943
- #: includes/module-settings.php:115
944
- #: includes/row-settings.php:603
945
  #@ fl-builder
946
- msgid "CSS Selectors"
947
- msgstr "Selettore CSS"
948
 
949
- #: includes/loop-settings.php:27
 
950
  #@ fl-builder
951
- msgid "ID"
952
- msgstr "ID"
953
 
954
- #: includes/column-settings.php:361
 
 
955
  #@ fl-builder
956
- msgid "A unique ID that will be applied to this column's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
957
- msgstr "Un ID univoco che sarà applicato al codice HTML della colonna. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Niente spazi."
958
 
959
- #: includes/column-settings.php:177
960
- #: includes/module-settings.php:13
961
- #: includes/row-settings.php:456
962
  #@ fl-builder
963
- msgid "CSS Class"
964
- msgstr "Classe CSS"
965
 
966
- #: includes/column-settings.php:369
967
  #@ fl-builder
968
- msgid "A class that will be applied to this column's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
969
- msgstr "Una classe che sarà applicata al codice HTML di questa colonna. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Separa classi multiple con spazio."
970
 
971
- #: includes/field-form.php:17
972
- #, php-format
973
  #@ fl-builder
974
- msgctxt "%s stands for form field label."
975
- msgid "Edit %s"
976
- msgstr "Modifica %s"
977
 
978
- #: includes/field-icon.php:2
979
- #: includes/icon-selector.php:2
980
  #@ fl-builder
981
- msgid "Select Icon"
982
- msgstr "Seleziona icona"
983
 
984
- #: includes/field-icon.php:5
985
- #: includes/field-photo.php:13
986
  #@ fl-builder
987
- msgid "Replace"
988
- msgstr "Sostituisci"
989
 
990
- #: includes/field-icon.php:7
991
- #: includes/js-config.php:50
992
  #@ fl-builder
993
- msgid "Remove"
994
- msgstr "Rimuovi"
995
 
996
- #: includes/field-link.php:3
 
997
  #@ fl-builder
998
- msgid "Select"
999
- msgstr "Seleziona"
1000
 
1001
- #: includes/field-link.php:5
 
1002
  #@ fl-builder
1003
- msgid "Enter a post title to search."
1004
- msgstr "Inserisci un titolo del post per la ricerca."
1005
 
1006
- #: includes/field-link.php:6
1007
- #: includes/field-suggest.php:7
1008
  #@ fl-builder
1009
- msgid "Start typing..."
1010
- msgstr "Inizia a digitare..."
1011
 
1012
- #: includes/field-link.php:7
1013
- #: includes/icon-selector.php:28
1014
- #: includes/js-config.php:17
1015
- #: includes/settings.php:63
1016
- #: includes/template-selector.php:102
1017
- #: includes/ui.php:11
 
1018
  #@ fl-builder
1019
- msgid "Cancel"
1020
- msgstr "Annulla"
1021
 
1022
- #: includes/field-multiple-photos.php:8
1023
- #, php-format
1024
  #@ fl-builder
1025
- msgid "1 Photo Selected"
1026
- msgid_plural "%d Photos Selected"
1027
- msgstr[0] "Una foto selezionata"
1028
- msgstr[1] "%d foto selezionate"
1029
 
1030
- #: includes/field-multiple-photos.php:13
 
1031
  #@ fl-builder
1032
- msgid "Create Gallery"
1033
- msgstr "Crea galleria"
1034
 
1035
- #: includes/field-multiple-photos.php:14
 
1036
  #@ fl-builder
1037
- msgid "Edit Gallery"
1038
- msgstr "Modifica galleria"
1039
 
1040
- #: includes/field-multiple-photos.php:15
1041
  #@ fl-builder
1042
- msgid "Add Photos"
1043
- msgstr "Aggiungi foto"
1044
 
1045
- #: includes/field-photo.php:3
1046
- #: includes/js-config.php:55
1047
  #@ fl-builder
1048
- msgid "Select Photo"
1049
- msgstr "Seleziona foto"
1050
 
1051
- #: includes/field-photo.php:12
1052
- #: includes/template-selector.php:83
1053
  #@ fl-builder
1054
- msgid "Edit"
1055
- msgstr "Modifica"
1056
 
1057
- #: includes/field-video.php:3
1058
- #: includes/js-config.php:57
1059
  #@ fl-builder
1060
- msgid "Select Video"
1061
- msgstr "Seleziona video"
1062
 
1063
- #: includes/field-video.php:17
1064
  #@ fl-builder
1065
- msgid "Replace Video"
1066
- msgstr "Sostituisci video"
 
1067
 
1068
- #: includes/global-settings.php:7
1069
- #: includes/user-template-settings.php:7
1070
- #: modules/accordion/accordion.php:110
1071
- #: modules/button/button.php:46
1072
- #: modules/callout/callout.php:207
1073
- #: modules/contact-form/contact-form.php:57
1074
- #: modules/content-slider/content-slider.php:184
1075
- #: modules/content-slider/content-slider.php:308
1076
- #: modules/cta/cta.php:65
1077
- #: modules/gallery/gallery.php:213
1078
- #: modules/heading/heading.php:26
1079
- #: modules/html/html.php:26
1080
- #: modules/icon/icon.php:27
1081
- #: modules/icon-group/icon-group.php:128
1082
- #: modules/map/map.php:26
1083
- #: modules/photo/photo.php:368
1084
- #: modules/pricing-table/pricing-table.php:87
1085
- #: modules/rich-text/rich-text.php:26
1086
- #: modules/separator/separator.php:27
1087
- #: modules/sidebar/sidebar.php:27
1088
- #: modules/slideshow/slideshow.php:256
1089
- #: modules/social-buttons/social-buttons.php:64
1090
- #: modules/tabs/tabs.php:77
1091
- #: modules/testimonials/testimonials.php:30
1092
- #: modules/testimonials/testimonials.php:200
1093
- #: modules/video/video.php:76
1094
- #: modules/widget/widget.php:64
1095
- #: modules/woocommerce/woocommerce.php:50
1096
  #@ fl-builder
1097
- msgid "General"
1098
- msgstr "Generale"
1099
 
1100
- #: includes/global-settings.php:8
 
 
 
 
1101
  #@ fl-builder
1102
- msgid "Note: These settings apply to all posts and pages."
1103
- msgstr "Nota: Queste impostazioni si applicano a tutti i post e pagine."
1104
 
1105
- #: includes/global-settings.php:11
1106
  #@ fl-builder
1107
- msgid "Default Page Heading"
1108
- msgstr "Intestazione di pagina predefinita"
 
1109
 
1110
  #: includes/global-settings.php:18
1111
  #: includes/global-settings.php:87
@@ -1199,1420 +1428,1543 @@ msgstr "No"
1199
  msgid "Yes"
1200
  msgstr "Sì"
1201
 
1202
- #: includes/global-settings.php:26
1203
- #@ fl-builder
1204
- 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."
1205
- msgstr "Scegliendo no, si nasconderà il titolo predefinito del tema per il tipo di post \"Pagina\". Se scegli no, sarà richiesto anche di inserire alcuni CSS base per fare in modo che questo funzioni."
1206
-
1207
- #: includes/global-settings.php:30
1208
- #@ fl-builder
1209
- msgid "CSS Selector"
1210
- msgstr "Selettore CSS"
1211
-
1212
- #: includes/global-settings.php:32
1213
- #@ fl-builder
1214
- msgid "Enter a CSS selector for the default page heading to hide it."
1215
- msgstr "Inserire il selettore CSS per nascondere l'intestazione predefinita della pagina."
1216
-
1217
- #: includes/global-settings.php:37
1218
  #@ fl-builder
1219
- msgid "Rows"
1220
- msgstr "Righe"
1221
 
1222
- #: includes/global-settings.php:57
1223
  #@ fl-builder
1224
- msgid "Max Width"
1225
- msgstr "Larghezza max"
 
1226
 
1227
- #: includes/global-settings.php:62
1228
  #@ fl-builder
1229
- msgid "All rows will default to this width. You can override this and make a row full width in the settings for each row."
1230
- msgstr "Tutte le righe avranno questa larghezza per impostazione predefinita. Potete ignorarla e creare una riga a piena larghezza nelle impostazioni di ciascuna riga."
 
1231
 
1232
- #: includes/global-settings.php:66
1233
  #@ fl-builder
1234
- msgid "Default Row Width"
1235
- msgstr "Larghezza predefinita riga"
1236
 
1237
- #: includes/row-settings.php:19
1238
- #: includes/row-settings.php:37
1239
- #: includes/row-settings.php:179
1240
  #@ fl-builder
1241
- msgid "Fixed"
1242
- msgstr "Fissa"
1243
 
1244
- #: includes/row-settings.php:20
1245
- #: includes/row-settings.php:38
1246
- #: modules/button/button.php:150
1247
- #: modules/callout/callout.php:554
1248
  #@ fl-builder
1249
- msgid "Full Width"
1250
- msgstr "Larghezza piena"
 
1251
 
1252
- #: includes/global-settings.php:80
1253
  #@ fl-builder
1254
- msgid "Default Row Content Width"
1255
- msgstr "Larghezza predefinita riga di contenuto"
 
1256
 
1257
- #: includes/global-settings.php:98
1258
  #@ fl-builder
1259
- msgid "Medium Device Breakpoint"
1260
- msgstr "Breakpoint dispositivi medi"
 
1261
 
1262
- #: includes/global-settings.php:103
 
1263
  #@ fl-builder
1264
- msgid "The browser width at which the layout will adjust for medium devices such as tablets."
1265
- msgstr "La larghezza del browser a cui il layout si adatterà per dispositivi medi come i tablet."
1266
 
1267
- #: includes/global-settings.php:107
1268
  #@ fl-builder
1269
- msgid "Small Device Breakpoint"
1270
- msgstr "Breakpoint dispositivi piccoli"
1271
 
1272
- #: includes/global-settings.php:112
1273
  #@ fl-builder
1274
- msgid "The browser width at which the layout will adjust for small devices such as phones."
1275
- msgstr "La larghezza del browser a cui il layout si adatterà per dispositivi piccoli come i telefoni."
1276
 
1277
- #: includes/icon-selector.php:5
 
1278
  #@ fl-builder
1279
- msgctxt "Select option for showing all icon libraries."
1280
- msgid "All Libraries"
1281
- msgstr "Tutte le librerie"
1282
 
1283
- #: includes/js-config.php:16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1284
  #@ fl-builder
1285
- msgid "What would you like to do?"
1286
- msgstr "Che cosa vorresti fare?"
1287
 
1288
- #: includes/js-config.php:18
1289
  #@ fl-builder
1290
- msgid "Change Template"
1291
- msgstr "Cambiare modello"
1292
 
1293
- #: includes/js-config.php:19
 
 
 
 
 
 
 
 
 
1294
  #@ fl-builder
1295
- msgid "Warning! Changing the template will replace your existing layout. Do you really want to do this?"
1296
- msgstr "ATTENZIONE! Cambiare il modello sostituirà il layout esistente. Vuoi davvero fare questo?"
1297
 
1298
- #: includes/js-config.php:20
 
 
 
 
 
 
 
 
 
 
1299
  #@ fl-builder
1300
- msgid "Column"
1301
- msgstr "Colonna"
1302
 
1303
- #: includes/js-config.php:22
 
1304
  #@ fl-builder
1305
- msgid "Please select either a background layout or content layout before submitting."
1306
- msgstr "Si prega di selezionare un layout di sfondo o un layout contenuto prima di inviare."
1307
 
1308
- #: includes/js-config.php:23
 
1309
  #@ fl-builder
1310
- msgid "Do you really want to delete this item?"
1311
- msgstr "Vuoi davvero eliminare questo elemento?"
1312
 
1313
- #: includes/js-config.php:24
 
1314
  #@ fl-builder
1315
- msgid "Do you really want to delete this module? All content data will be permanently deleted."
1316
- msgstr "Vuoi davvero eliminare questo modulo? Tutti i dati contenuti verranno eliminati definitivamente."
1317
 
1318
- #: includes/js-config.php:25
1319
  #@ fl-builder
1320
- msgid "Do you really want to delete this row? All content data will be permanently deleted."
1321
- msgstr "Vuoi davvero eliminare questa riga? Tutti i dati contenuti verranno eliminati definitivamente."
1322
 
1323
- #: includes/js-config.php:26
 
 
 
 
 
 
 
 
1324
  #@ fl-builder
1325
- msgid "Do you really want to delete this template?"
1326
- msgstr "Vuoi davvero eliminare questo modello?"
1327
 
1328
- #: includes/ui.php:41
 
1329
  #@ fl-builder
1330
- msgid "Done"
1331
- msgstr "Fatto"
 
1332
 
1333
- #: includes/js-config.php:29
1334
  #@ fl-builder
1335
- msgid "Save Draft"
1336
- msgstr "Salva bozza"
 
1337
 
1338
- #: includes/js-config.php:30
1339
  #@ fl-builder
1340
- msgctxt "Duplicate page/post action label."
1341
- msgid "Duplicate"
1342
- msgstr "Duplica"
1343
 
1344
- #: includes/js-config.php:31
 
 
 
 
 
 
 
 
 
 
1345
  #@ fl-builder
1346
- msgid "Duplicate This Page"
1347
- msgstr "Duplica questa pagina"
1348
 
1349
- #: includes/js-config.php:32
 
 
 
 
1350
  #@ fl-builder
1351
- msgid "Duplicate This Template"
1352
- msgstr "Duplica questo modello"
1353
 
1354
- #: includes/js-config.php:33
 
1355
  #@ fl-builder
1356
- msgid "Edit Global Settings"
1357
- msgstr "Modifica impostazioni globali"
1358
 
1359
- #: includes/js-config.php:34
 
 
 
 
 
 
 
 
 
1360
  #@ fl-builder
1361
- msgid "Drop a row layout or module to get started!"
1362
- msgstr "Trascina un layout di riga o un modulo per iniziare!"
1363
 
1364
- #: includes/js-config.php:40
1365
  #@ fl-builder
1366
- msgid "Beaver Builder caught the following JavaScript error. If Beaver Builder is not functioning as expected the cause is most likely this error. Please help us by disabling all plugins and testing Beaver Builder while reactivating each to determine if the issue is related to a third party plugin."
1367
- msgstr "Beaver Builder ha intercettato il seguente errore JavaScript. Se Beaver Builder non funziona come previsto la causa è probabilmente questo errore. Vi preghiamo di aiutarci disabilitando tutti i plugin e provando Beaver Builder dopo averli riattivati uno ad uno per determinare se il problema è legato a un plugin di terze parti."
1368
 
1369
- #: includes/js-config.php:35
1370
  #@ fl-builder
1371
- msgid "Full Size"
1372
- msgstr "Tutta larghezza"
 
1373
 
1374
- #: includes/js-config.php:42
1375
  #@ fl-builder
1376
- msgid "Get Help"
1377
- msgstr "Richiedi assistenza"
 
1378
 
1379
- #: includes/js-config.php:43
1380
  #@ fl-builder
1381
- msgid "Getting Started Video"
1382
- msgstr "Video per iniziare"
 
1383
 
1384
- #: includes/js-config.php:44
1385
  #@ fl-builder
1386
- msgid "\"{message}\" on line {line} of {file}."
1387
- msgstr "\"{message}\" nella riga {line} di {file}."
 
1388
 
1389
- #: includes/js-config.php:36
 
1390
  #@ fl-builder
1391
- msgid "Insert"
1392
- msgstr "Inserisci"
1393
 
1394
- #: includes/js-config.php:37
1395
  #@ fl-builder
1396
- msgid "Large"
1397
- msgstr "Grande"
1398
 
1399
- #: includes/js-config.php:38
1400
  #@ fl-builder
1401
- msgid "Manage Templates"
1402
- msgstr "Gestione modelli"
1403
 
1404
- #: includes/js-config.php:39
1405
  #@ fl-builder
1406
- msgid "Medium"
1407
- msgstr "Medio"
1408
 
1409
- #: includes/js-config.php:40
1410
  #@ fl-builder
1411
- msgid "Module"
1412
- msgstr "Modulo"
1413
 
1414
- #: includes/js-config.php:41
1415
  #@ fl-builder
1416
- msgid "Move"
1417
- msgstr "Sposta"
1418
 
1419
- #: includes/js-config.php:42
1420
  #@ fl-builder
1421
- msgid "New Column"
1422
- msgstr "Nuova colonna"
1423
 
1424
- #: includes/js-config.php:43
1425
  #@ fl-builder
1426
- msgid "New Row"
1427
- msgstr "Nuova riga"
1428
 
1429
- #: includes/js-config.php:44
 
 
 
 
 
 
 
 
 
 
1430
  #@ fl-builder
1431
- msgid "No results found."
1432
- msgstr "Nessun risultato trovato."
1433
 
1434
- #: includes/js-config.php:54
1435
  #@ fl-builder
1436
- msgid "No Thanks"
1437
- msgstr "No grazie"
1438
 
1439
- #: includes/js-config.php:45
 
1440
  #@ fl-builder
1441
- msgid "OK"
1442
- msgstr "OK"
1443
 
1444
- #: includes/js-config.php:46
1445
- #: modules/photo/photo.php:454
1446
  #@ fl-builder
1447
- msgid "Photo Page"
1448
- msgstr "Pagina di foto"
1449
 
1450
- #: includes/js-config.php:47
 
1451
  #@ fl-builder
1452
- msgid "Photo Selected"
1453
- msgstr "Foto selezionata"
1454
 
1455
- #: includes/js-config.php:48
 
 
1456
  #@ fl-builder
1457
- msgid "Photos Selected"
1458
- msgstr "Foto selezionate"
1459
 
1460
- #: includes/js-config.php:49
 
1461
  #@ fl-builder
1462
- msgid "Publish Changes"
1463
- msgstr "Pubblica le modifiche"
1464
 
1465
- #: includes/js-config.php:51
1466
  #@ fl-builder
1467
- msgid "Row"
1468
- msgstr "Riga"
1469
 
1470
- #: includes/js-config.php:52
1471
- #: includes/row-settings.php:6
1472
  #@ fl-builder
1473
- msgid "Row Settings"
1474
- msgstr "Impostazioni di riga"
 
1475
 
1476
- #: includes/js-config.php:53
1477
  #@ fl-builder
1478
- msgid "Save Core Template"
1479
- msgstr "Salva il modello Core"
1480
 
1481
- #: includes/js-config.php:54
1482
- #: includes/ui.php:10
1483
- #: includes/user-template-settings.php:4
 
 
 
 
1484
  #@ fl-builder
1485
- msgid "Save Template"
1486
- msgstr "Salva modello"
1487
 
1488
- #: includes/js-config.php:56
1489
  #@ fl-builder
1490
- msgid "Select Photos"
1491
- msgstr "Seleziona foto"
1492
 
1493
- #: includes/js-config.php:73
1494
  #@ fl-builder
1495
- msgid "Take a Tour"
1496
- msgstr "Inizia visita guidata"
1497
 
1498
- #: includes/js-config.php:59
1499
  #@ fl-builder
1500
- msgid "Append New Layout"
1501
- msgstr "Aggiungi nuovo Layout"
1502
 
1503
- #: includes/js-config.php:60
 
1504
  #@ fl-builder
1505
- msgid "Replace Existing Layout"
1506
- msgstr "Sostituisci Layout esistente"
1507
 
1508
- #: includes/js-config.php:61
 
1509
  #@ fl-builder
1510
- msgid "Template Saved!"
1511
- msgstr "Modello salvato!"
1512
 
1513
- #: includes/js-config.php:62
 
1514
  #@ fl-builder
1515
- msgid "Thumbnail"
1516
- msgstr "Miniatura"
 
1517
 
1518
- #: includes/js-config.php:78
 
 
1519
  #@ fl-builder
1520
- msgid "Next"
1521
- msgstr "Avanti"
 
1522
 
1523
- #: includes/js-config.php:79
 
 
1524
  #@ fl-builder
1525
- msgid "Get Started"
1526
- msgstr "Inizia"
 
1527
 
1528
- #: includes/js-config.php:80
 
 
1529
  #@ fl-builder
1530
- msgid "Choose a Template"
1531
- msgstr "Scegli un modello"
 
1532
 
1533
- #: includes/js-config.php:81
 
 
1534
  #@ fl-builder
1535
- msgid "Get started by choosing a layout template to customize, or build a page from scratch by selecting the blank layout template."
1536
- msgstr "Inizia scegliendo un modello di layout da personalizzare, o costruisci una pagina da zero selezionando il modello di layout vuoto."
 
1537
 
1538
- #: includes/js-config.php:82
 
1539
  #@ fl-builder
1540
- msgid "Add Rows"
1541
- msgstr "Aggiungi righe"
1542
 
1543
- #: includes/js-config.php:83
 
1544
  #@ fl-builder
1545
- msgid "Add multi-column rows, adjust spacing, add backgrounds and more by dragging and dropping row layouts onto the page."
1546
- msgstr "Aggiungi righe multi-colonna, aggiusta gli spazi, aggiungi sfondi e altro trascinando e rilasciando layout di riga nella pagina."
1547
 
1548
- #: includes/ui.php:46
 
1549
  #@ fl-builder
1550
- msgid "Add Content"
1551
- msgstr "Aggiungi contenuto"
1552
 
1553
- #: includes/js-config.php:85
 
1554
  #@ fl-builder
1555
- msgid "Add new content by dragging and dropping modules or widgets into your row layouts or to create a new row layout."
1556
- msgstr "Aggiungi nuovo contenuto trascinando e rilasciando moduli o widget nei tuoi layout di riga o crea un nuovo layout di riga."
1557
 
1558
- #: includes/js-config.php:86
 
 
 
1559
  #@ fl-builder
1560
- msgid "Edit Content"
1561
- msgstr "Modifica contenuto"
1562
 
1563
- #: includes/js-config.php:87
 
 
 
 
1564
  #@ fl-builder
1565
- msgid "Move your mouse over rows, columns or modules to edit and interact with them."
1566
- msgstr "Muovi il mouse su righe, colonne o moduli per modificare e interagire con esse."
1567
 
1568
- #: includes/js-config.php:88
 
 
 
 
 
1569
  #@ fl-builder
1570
- msgid "Use the action buttons to perform actions such as moving, editing, duplicating or deleting rows, columns and modules."
1571
- msgstr "Usa i bottoni di azione per compiere azioni come muovere, modificare, duplicare, o cancellare righe, colonne e moduli."
1572
 
1573
- #: includes/js-config.php:89
 
 
 
 
 
1574
  #@ fl-builder
1575
- msgid "Add More Content"
1576
- msgstr "Aggiungi contenuto"
1577
 
1578
- #: includes/js-config.php:90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1579
  #@ fl-builder
1580
- msgid "Use the Add Content button to open the content panel and add new row layouts, modules or widgets."
1581
- msgstr "Usa il pulsante Aggiungi contenuto per aprire il pannello contenuti e aggiungere nuove righe di layout, moduli o widgets."
1582
 
1583
- #: includes/js-config.php:91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1584
  #@ fl-builder
1585
- msgid "Change Templates"
1586
- msgstr "Cambia modello"
1587
 
1588
- #: includes/js-config.php:92
 
 
 
 
 
 
1589
  #@ fl-builder
1590
- msgid "Use the Templates button to pick a new template or append one to your layout. Appending will insert a new template at the end of your existing page content."
1591
- msgstr "Usa il pulsante Modelli per scegliere un nuovo modello o appenderne uno al tuo layout. Appendi inserirà il nuovo modello alla fine del contenuto di pagina esistente."
1592
 
1593
- #: includes/js-config.php:93
 
1594
  #@ fl-builder
1595
- msgid "Helpful Tools"
1596
- msgstr "Strumenti utili"
1597
 
1598
- #: includes/js-config.php:94
 
 
 
1599
  #@ fl-builder
1600
- msgid "The Tools button lets you duplicate a page, save a template or edit the global settings."
1601
- msgstr "Il pulsante Strumenti ti permette di duplicare una pagina, salvare un modello o modificare le impostazioni globali."
1602
 
1603
- #: includes/js-config.php:95
 
 
1604
  #@ fl-builder
1605
- msgid "Publish Your Changes"
1606
- msgstr "Pubblica le modifiche"
1607
 
1608
- #: includes/js-config.php:96
 
 
1609
  #@ fl-builder
1610
- msgid "Once you're finished, click the Done button to publish your changes, save a draft or revert back to the last published state."
1611
- msgstr "Quando hai finito, clicca sul pulsante Fatto per pubblicare le tue modifiche, salvare una bozza o ritornare all'ultima versione pubblicata."
1612
 
1613
- #: includes/js-config.php:97
 
 
1614
  #@ fl-builder
1615
- msgid "Let's Get Building!"
1616
- msgstr "Andiamo a costruire!"
1617
 
1618
- #: includes/js-config.php:98
 
 
1619
  #@ fl-builder
1620
- msgid "Now that you know the basics, you're ready to start building! If at any time you need help, click the help icon in the upper right corner to access the help menu. Happy building!"
1621
- msgstr "Ora che conosci le basi, sei pronto per iniziare a costruire! Se in qualsiasi momento hai bisogno di aiuto, clicca l'icona aiuto nell'angolo in alto a destra per accedere al menu di aiuto. Buona costruzione!"
1622
 
1623
- #: includes/js-config.php:63
 
 
1624
  #@ fl-builder
1625
- msgid "The settings you are currently editing will not be saved if you navigate away from this page."
1626
- msgstr "Le impostazioni che stai modificando attualmente non verranno salvate se navighi via da questa pagina."
1627
 
1628
- #: includes/js-config.php:100
 
 
1629
  #@ fl-builder
1630
- msgid "View the Knowledge Base"
1631
- msgstr "Leggi la documentazione"
1632
 
1633
- #: includes/js-config.php:101
1634
  #@ fl-builder
1635
- msgid "Visit the Forums"
1636
- msgstr "Visita i forum"
1637
 
1638
- #: includes/js-config.php:102
1639
  #@ fl-builder
1640
- msgid "Watch the Video"
1641
- msgstr "Visualizza il video"
1642
 
1643
- #: includes/js-config.php:103
1644
  #@ fl-builder
1645
- msgid "Welcome! It looks like this might be your first time using the builder. Would you like to take a tour?"
1646
- msgstr "Benvenuto! Sembra che questa potrebbe essere la prima volta che utilizzi il builder. Vuoi fare un giro?"
1647
 
1648
- #: includes/js-config.php:104
 
 
 
 
 
 
 
1649
  #@ fl-builder
1650
- msgid "Yes Please!"
1651
- msgstr "Si grazie!"
1652
 
1653
- #: includes/loop-settings.php:19
 
 
 
 
 
 
 
 
 
1654
  #@ fl-builder
1655
- msgid "Post Type"
1656
- msgstr "Tipo di post"
1657
 
1658
- #: includes/loop-settings.php:25
1659
  #@ fl-builder
1660
- msgid "Order By"
1661
- msgstr "Ordina per"
1662
 
1663
- #: includes/loop-settings.php:28
1664
- #: modules/post-grid/post-grid.php:155
1665
- #: modules/woocommerce/woocommerce.php:189
1666
  #@ fl-builder
1667
- msgid "Date"
1668
- msgstr "Data"
1669
 
1670
- #: includes/loop-settings.php:29
1671
  #@ fl-builder
1672
- msgid "Date Last Modified"
1673
- msgstr "Data ultima modifica"
1674
 
1675
- #: includes/loop-settings.php:30
1676
- #: modules/pricing-table/pricing-table.php:90
1677
- #: modules/pricing-table/pricing-table.php:94
1678
  #@ fl-builder
1679
- msgid "Title"
1680
- msgstr "Titolo"
1681
 
1682
- #: includes/loop-settings.php:31
1683
- #: modules/post-grid/post-grid.php:146
 
1684
  #@ fl-builder
1685
- msgid "Author"
1686
- msgstr "Autore"
1687
 
1688
- #: includes/loop-settings.php:32
1689
  #@ fl-builder
1690
- msgid "Comment Count"
1691
- msgstr "Conteggio commenti"
1692
 
1693
- #: includes/loop-settings.php:33
1694
  #@ fl-builder
1695
- msgid "Menu Order"
1696
- msgstr "Ordine del menu"
1697
 
1698
- #: includes/loop-settings.php:34
 
 
1699
  #@ fl-builder
1700
- msgid "Random"
1701
- msgstr "Casuale"
1702
 
1703
- #: includes/loop-settings.php:41
1704
  #@ fl-builder
1705
- msgid "Order"
1706
- msgstr "Ordine"
1707
 
1708
- #: includes/loop-settings.php:43
 
1709
  #@ fl-builder
1710
- msgid "Descending"
1711
- msgstr "Decrescente"
 
1712
 
1713
- #: includes/loop-settings.php:44
 
1714
  #@ fl-builder
1715
- msgid "Ascending"
1716
- msgstr "Ascendente"
1717
 
1718
- #: includes/loop-settings.php:52
 
1719
  #@ fl-builder
1720
- msgid "Filter"
1721
- msgstr "Filtro"
1722
 
1723
- #: includes/loop-settings.php:63
1724
- #, php-format
1725
  #@ fl-builder
1726
- msgid "Enter a comma separated list of %s. Only these %s will be shown."
1727
- msgstr "Immettere un elenco delimitato da virgole di %s. Verranno mostrati solo questi %s."
1728
 
1729
- #: includes/loop-settings.php:76
1730
- #, php-format
1731
  #@ fl-builder
1732
- msgid "Enter a comma separated list of %s. Only posts with these %s will be shown."
1733
- msgstr "Immettere un elenco delimitato da virgole di %s. Verranno mostrati soli gli articoli con queste %s."
1734
 
1735
- #: includes/loop-settings.php:90
1736
  #@ fl-builder
1737
- msgid "Authors"
1738
- msgstr "Autori"
1739
 
1740
- #: includes/loop-settings.php:91
 
1741
  #@ fl-builder
1742
- msgid "Enter a comma separated list of authors usernames. Only posts with these authors will be shown."
1743
- msgstr "Immettere un elenco delimitato da virgole di nomi di autori. Verranno visualizzati solo i post di questi autori."
1744
 
1745
- #: includes/module-settings.php:30
1746
- #@ default
1747
- msgid "Choose whether to show or hide this module at different device sizes."
1748
- msgstr "Scegli se visualizzare o nascondere questo modulo a diverse dimensioni dei dispositivi."
 
 
 
 
 
1749
 
1750
- #: includes/module-settings.php:91
 
1751
  #@ fl-builder
1752
- msgid "Animation"
1753
- msgstr "Animazione"
 
 
1754
 
1755
- #: includes/module-settings.php:97
1756
  #@ fl-builder
1757
- msgctxt "Animation style."
1758
- msgid "None"
1759
- msgstr "Nessuno"
1760
 
1761
- #: includes/module-settings.php:98
1762
  #@ fl-builder
1763
- msgctxt "Animation style."
1764
- msgid "Fade In"
1765
- msgstr "Dissolvenza in entrata"
1766
 
1767
- #: includes/module-settings.php:99
1768
  #@ fl-builder
1769
- msgctxt "Animation style."
1770
- msgid "Slide Left"
1771
- msgstr "Scorri sinistra"
1772
 
1773
- #: includes/module-settings.php:100
 
1774
  #@ fl-builder
1775
- msgctxt "Animation style."
1776
- msgid "Slide Right"
1777
- msgstr "Scorri destra"
1778
 
1779
- #: includes/module-settings.php:101
 
1780
  #@ fl-builder
1781
- msgctxt "Animation style."
1782
- msgid "Slide Up"
1783
- msgstr "Scorri alto"
1784
 
1785
- #: includes/module-settings.php:102
1786
  #@ fl-builder
1787
- msgctxt "Animation style."
1788
- msgid "Slide Down"
1789
- msgstr "Scorri basso"
1790
 
1791
- #: includes/module-settings.php:110
1792
- #: modules/content-slider/content-slider.php:223
1793
- #: modules/testimonials/testimonials.php:91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1794
  #@ fl-builder
1795
- msgid "Delay"
1796
- msgstr "Ritardo"
1797
 
1798
- #: includes/module-settings.php:114
1799
- #: includes/row-settings.php:266
1800
- #: includes/row-settings.php:297
1801
- #: modules/content-slider/content-slider.php:227
1802
- #: modules/content-slider/content-slider.php:244
1803
- #: modules/slideshow/slideshow.php:385
1804
- #: modules/slideshow/slideshow.php:410
1805
- #: modules/slideshow/slideshow.php:581
1806
- #: modules/testimonials/testimonials.php:95
1807
- #: modules/testimonials/testimonials.php:112
1808
  #@ fl-builder
1809
- msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
1810
- msgid "seconds"
1811
- msgstr "secondi"
1812
 
1813
- #: includes/module-settings.php:115
1814
  #@ fl-builder
1815
- msgid "The amount of time in seconds before this animation starts."
1816
- msgstr "Periodo di tempo in secondi prima dell'inizio di questa animazione."
1817
 
1818
- #: includes/module-settings.php:120
1819
  #@ fl-builder
1820
- msgid "A unique ID that will be applied to this module's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
1821
- msgstr "Un ID univoco che sarà applicato al codice HTML del modulo. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Niente spazi."
 
1822
 
1823
- #: includes/module-settings.php:127
1824
- #: includes/row-settings.php:615
1825
  #@ fl-builder
1826
- msgid "Class"
1827
- msgstr "Classe"
1828
 
1829
- #: includes/module-settings.php:128
1830
  #@ fl-builder
1831
- msgid "A class that will be applied to this module's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
1832
- msgstr "Una classe che sarà applicata al codice HTML di questo modulo. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Separa classi multiple con spazio."
1833
 
1834
- #: includes/row-settings.php:16
1835
- #: modules/button/button.php:146
1836
- #: modules/content-slider/content-slider.php:477
1837
  #@ fl-builder
1838
- msgid "Width"
1839
- msgstr "Larghezza"
1840
 
1841
- #: includes/row-settings.php:27
1842
  #@ fl-builder
1843
- 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."
1844
- msgstr "Le righe a larghezza piena si estendono per la larghezza di pagina da bordo a bordo. Le righe fisse non sono più ampie rispetto alla larghezza massima scelta nelle impostazioni globali."
1845
 
1846
- #: includes/row-settings.php:34
1847
  #@ fl-builder
1848
- msgid "Content Width"
1849
- msgstr "Larghezza contenuto"
1850
 
1851
- #: includes/row-settings.php:40
1852
  #@ fl-builder
1853
- 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."
1854
- msgstr "Il contenuto a larghezza piena si estende per la larghezza di pagina da bordo a bordo. Il contenuto fisso non è più ampio rispetto alla larghezza massima scelta nelle impostazioni globali."
1855
 
1856
- #: includes/row-settings.php:61
1857
  #@ fl-builder
1858
- msgid "Background"
1859
- msgstr "Sfondo"
1860
 
1861
- #: includes/row-settings.php:68
1862
- #: modules/content-slider/content-slider.php:332
 
 
1863
  #@ fl-builder
1864
- msgctxt "Background type."
1865
- msgid "None"
1866
- msgstr "Nessuno"
1867
 
1868
- #: includes/row-settings.php:69
1869
  #@ fl-builder
1870
- msgctxt "Background type."
1871
- msgid "Color"
1872
- msgstr "Colore"
1873
 
1874
- #: includes/row-settings.php:70
1875
  #@ fl-builder
1876
- msgctxt "Background type."
1877
- msgid "Photo"
1878
- msgstr "Foto"
1879
 
1880
- #: includes/row-settings.php:71
1881
  #@ fl-builder
1882
- msgctxt "Background type."
1883
- msgid "Video"
1884
- msgstr "Video"
1885
 
1886
- #: includes/row-settings.php:73
1887
  #@ fl-builder
1888
- msgctxt "Background type."
1889
- msgid "Slideshow"
1890
- msgstr "Slideshow"
1891
 
1892
- #: includes/row-settings.php:77
1893
  #@ fl-builder
1894
- msgctxt "Background type."
1895
- msgid "Parallax"
1896
- msgstr "Parallasse"
1897
 
1898
- #: includes/row-settings.php:129
1899
- #: modules/content-slider/content-slider.php:353
1900
  #@ fl-builder
1901
- msgid "Background Photo"
1902
- msgstr "Foto di sfondo"
1903
 
1904
- #: includes/row-settings.php:133
1905
- #: includes/row-settings.php:321
1906
- #: modules/callout/callout.php:314
1907
- #: modules/callout/callout.php:330
1908
- #: modules/callout/callout.php:334
1909
- #: modules/content-slider/content-slider.php:329
1910
- #: modules/content-slider/content-slider.php:398
1911
- #: modules/content-slider/content-slider.php:710
1912
- #: modules/photo/photo.php:25
1913
- #: modules/photo/photo.php:392
1914
  #@ fl-builder
1915
- msgid "Photo"
1916
- msgstr "Foto"
1917
 
1918
- #: includes/row-settings.php:140
1919
  #@ fl-builder
1920
- msgid "Repeat"
1921
- msgstr "Ripetizione"
1922
 
1923
- #: includes/row-settings.php:143
1924
  #@ fl-builder
1925
- msgctxt "Background repeat."
1926
- msgid "None"
1927
- msgstr "Nessuna"
1928
 
1929
- #: includes/row-settings.php:144
1930
  #@ fl-builder
1931
- msgctxt "Background repeat."
1932
- msgid "Tile"
1933
- msgstr "Tassello"
1934
 
1935
- #: includes/row-settings.php:145
1936
  #@ fl-builder
1937
- msgctxt "Background repeat."
1938
- msgid "Horizontal"
1939
- msgstr "Orizzontale"
1940
 
1941
- #: includes/row-settings.php:146
1942
  #@ fl-builder
1943
- msgctxt "Background repeat."
1944
- msgid "Vertical"
1945
- msgstr "Verticale"
1946
 
1947
- #: includes/row-settings.php:155
1948
- #: modules/callout/callout.php:351
1949
- #: modules/callout/callout.php:371
1950
- #: modules/content-slider/content-slider.php:466
1951
- #: modules/post-grid/post-grid.php:127
1952
  #@ fl-builder
1953
- msgid "Position"
1954
- msgstr "Posizione"
1955
 
1956
- #: includes/row-settings.php:158
1957
  #@ fl-builder
1958
- msgid "Left Top"
1959
- msgstr "Sinistra Alto"
1960
 
1961
- #: includes/row-settings.php:159
1962
  #@ fl-builder
1963
- msgid "Left Center"
1964
- msgstr "Sinistra Centro"
1965
 
1966
- #: includes/row-settings.php:160
1967
  #@ fl-builder
1968
- msgid "Left Bottom"
1969
- msgstr "Sinistra Basso"
1970
 
1971
- #: includes/row-settings.php:161
1972
  #@ fl-builder
1973
- msgid "Right Top"
1974
- msgstr "Destra Alto"
1975
 
1976
- #: includes/row-settings.php:162
1977
  #@ fl-builder
1978
- msgid "Right Center"
1979
- msgstr "Destra Centro"
1980
 
1981
- #: includes/row-settings.php:163
1982
  #@ fl-builder
1983
- msgid "Right Bottom"
1984
- msgstr "Destra Basso"
1985
 
1986
- #: includes/row-settings.php:164
1987
  #@ fl-builder
1988
- msgid "Center Top"
1989
- msgstr "Centro Alto"
1990
 
1991
- #: includes/row-settings.php:165
1992
- #: modules/button/button.php:176
1993
- #: modules/callout/callout.php:249
1994
- #: modules/content-slider/content-slider.php:471
1995
- #: modules/cta/cta.php:124
1996
- #: modules/heading/heading.php:90
1997
- #: modules/heading/heading.php:162
1998
- #: modules/icon/icon.php:133
1999
- #: modules/icon-group/icon-group.php:110
2000
- #: modules/photo/photo.php:418
2001
- #: modules/social-buttons/social-buttons.php:100
2002
  #@ fl-builder
2003
- msgid "Center"
2004
- msgstr "Centro"
2005
 
2006
- #: includes/row-settings.php:166
2007
  #@ fl-builder
2008
- msgid "Center Bottom"
2009
- msgstr "Centro Basso"
2010
 
2011
- #: includes/row-settings.php:175
2012
  #@ fl-builder
2013
- msgid "Attachment"
2014
- msgstr "Attaccatura"
2015
 
2016
- #: includes/row-settings.php:178
2017
- #: modules/post-grid/post-grid.php:75
2018
  #@ fl-builder
2019
- msgid "Scroll"
2020
- msgstr "Scorrimento"
 
2021
 
2022
- #: includes/row-settings.php:188
2023
  #@ fl-builder
2024
- msgid "Scale"
2025
- msgstr "Scala"
2026
 
2027
- #: includes/row-settings.php:191
2028
  #@ fl-builder
2029
- msgctxt "Background scale."
2030
- msgid "None"
2031
- msgstr "Nessuno"
2032
 
2033
- #: includes/row-settings.php:192
2034
  #@ fl-builder
2035
- msgid "Fit"
2036
- msgstr "Adatta"
2037
 
2038
- #: includes/row-settings.php:193
2039
  #@ fl-builder
2040
- msgid "Fill"
2041
- msgstr "Riempi"
2042
 
2043
- #: includes/row-settings.php:203
2044
  #@ fl-builder
2045
- msgid "Background Video"
2046
- msgstr "Video di sfondo"
2047
 
2048
- #: includes/row-settings.php:207
2049
- #: modules/content-slider/content-slider.php:330
2050
- #: modules/video/video.php:19
2051
- #: modules/video/video.php:100
2052
  #@ fl-builder
2053
- msgid "Video"
2054
- msgstr "Video"
2055
 
2056
- #: includes/row-settings.php:208
2057
  #@ fl-builder
2058
- msgid "An HTML5 video to use as the background of this row. Supported types are MP4, WebM and Ogg."
2059
- msgstr "Un video HTML5 da usare come sfondo di questa riga. I tipi supportati sono MP4, WebM e Ogg."
2060
 
2061
- #: includes/row-settings.php:215
2062
  #@ fl-builder
2063
- msgid "Fallback Photo"
2064
- msgstr "Foto di fallback"
2065
 
2066
- #: includes/row-settings.php:216
2067
  #@ fl-builder
2068
- msgid "A photo that will be displayed if the video fails to load."
2069
- msgstr "Una foto che verrà visualizzata se non è possibile caricare il video."
2070
 
2071
- #: includes/row-settings.php:224
2072
  #@ fl-builder
2073
- msgid "Background Slideshow"
2074
- msgstr "Sfondo Slideshow"
2075
 
2076
- #: includes/row-settings.php:228
2077
- #: modules/gallery/gallery.php:234
2078
- #: modules/slideshow/slideshow.php:263
2079
  #@ fl-builder
2080
- msgid "Source"
2081
- msgstr "Sorgente"
2082
 
2083
- #: includes/row-settings.php:231
2084
- #: modules/gallery/gallery.php:237
2085
- #: modules/photo/photo.php:378
2086
- #: modules/slideshow/slideshow.php:266
2087
- #: modules/video/video.php:86
2088
  #@ fl-builder
2089
- msgid "Media Library"
2090
- msgstr "Libreria multimediale"
2091
 
2092
- #: includes/row-settings.php:234
2093
- #: modules/gallery/gallery.php:240
2094
- #: modules/slideshow/slideshow.php:269
2095
  #@ fl-builder
2096
- 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."
2097
- msgstr "Estrae immagini dalla libreria multimedia di WordPress o una galleria sul tuo sito SmugMug inserendo la URL del feed RSS di SmugMug. L'URL del feed RSS è accessibile tramite un collegamento nella tua galleria SmugMug."
2098
 
2099
- #: includes/row-settings.php:249
2100
- #: modules/gallery/gallery.php:252
2101
- #: modules/slideshow/slideshow.php:281
2102
  #@ fl-builder
2103
- msgid "Photos"
2104
- msgstr "Foto"
2105
 
2106
- #: includes/row-settings.php:256
2107
- #: modules/gallery/gallery.php:256
2108
- #: modules/slideshow/slideshow.php:285
2109
  #@ fl-builder
2110
- msgid "Feed URL"
2111
- msgstr "URL del feed"
2112
 
2113
- #: includes/row-settings.php:263
2114
- #: includes/row-settings.php:328
2115
- #: modules/slideshow/slideshow.php:382
2116
  #@ fl-builder
2117
- msgid "Speed"
2118
- msgstr "Velocità"
2119
 
2120
- #: includes/row-settings.php:273
2121
- #: modules/content-slider/content-slider.php:231
2122
- #: modules/slideshow/slideshow.php:389
2123
- #: modules/testimonials/testimonials.php:99
2124
  #@ fl-builder
2125
- msgid "Transition"
2126
- msgstr "Transizione"
2127
 
2128
- #: includes/row-settings.php:276
2129
  #@ fl-builder
2130
- msgctxt "Slideshow transition type."
2131
- msgid "None"
2132
- msgstr "Nessuna"
2133
 
2134
- #: includes/row-settings.php:277
2135
- #: modules/content-slider/content-slider.php:235
2136
- #: modules/slideshow/slideshow.php:393
2137
- #: modules/testimonials/testimonials.php:103
2138
  #@ fl-builder
2139
- msgid "Fade"
2140
- msgstr "Dissolvenza"
2141
 
2142
- #: includes/row-settings.php:278
2143
- #: modules/slideshow/slideshow.php:394
2144
  #@ fl-builder
2145
- msgid "Ken Burns"
2146
- msgstr "Ken Burns"
2147
 
2148
- #: includes/row-settings.php:279
2149
- #: modules/slideshow/slideshow.php:395
2150
  #@ fl-builder
2151
- msgid "Slide Horizontal"
2152
- msgstr "Scorri orizontale"
2153
 
2154
- #: includes/row-settings.php:280
2155
- #: modules/slideshow/slideshow.php:396
2156
  #@ fl-builder
2157
- msgid "Slide Vertical"
2158
- msgstr "Scorri verticale"
2159
 
2160
- #: includes/row-settings.php:281
2161
- #: modules/slideshow/slideshow.php:397
2162
  #@ fl-builder
2163
- msgid "Blinds"
2164
- msgstr "Tendina"
2165
 
2166
- #: includes/row-settings.php:282
2167
- #: modules/slideshow/slideshow.php:398
2168
  #@ fl-builder
2169
- msgid "Bars"
2170
- msgstr "Barre"
2171
 
2172
- #: includes/row-settings.php:283
2173
- #: modules/slideshow/slideshow.php:399
2174
  #@ fl-builder
2175
- msgid "Random Bars"
2176
- msgstr "Barre casuali"
2177
 
2178
- #: includes/row-settings.php:284
2179
- #: modules/slideshow/slideshow.php:400
2180
  #@ fl-builder
2181
- msgid "Boxes"
2182
- msgstr "Quadrati"
2183
 
2184
- #: includes/row-settings.php:285
2185
- #: modules/slideshow/slideshow.php:401
2186
  #@ fl-builder
2187
- msgid "Random Boxes"
2188
- msgstr "Quadrati casuali"
2189
 
2190
- #: includes/row-settings.php:286
2191
- #: modules/slideshow/slideshow.php:402
2192
  #@ fl-builder
2193
- msgid "Boxes Grow"
2194
- msgstr "Quadrati ingrandimento"
2195
 
2196
- #: includes/row-settings.php:294
2197
- #: modules/content-slider/content-slider.php:240
2198
- #: modules/slideshow/slideshow.php:407
2199
- #: modules/testimonials/testimonials.php:108
2200
  #@ fl-builder
2201
- msgid "Transition Speed"
2202
- msgstr "Velocità di transizione"
2203
 
2204
- #: includes/row-settings.php:304
2205
- #: modules/slideshow/slideshow.php:414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2206
  #@ fl-builder
2207
- msgid "Randomize Photos"
2208
- msgstr "Foto casuali"
2209
 
2210
- #: includes/row-settings.php:317
2211
  #@ fl-builder
2212
- msgid "Background Parallax"
2213
- msgstr "Sfondo parallasse"
2214
 
2215
- #: includes/row-settings.php:331
2216
  #@ fl-builder
2217
- msgid "Fast"
2218
- msgstr "Veloce"
2219
 
2220
- #: includes/row-settings.php:332
2221
  #@ fl-builder
2222
- msgctxt "Speed."
2223
- msgid "Medium"
2224
- msgstr "Media"
2225
 
2226
- #: includes/row-settings.php:333
2227
  #@ fl-builder
2228
- msgid "Slow"
2229
- msgstr "Lenta"
2230
 
2231
- #: includes/row-settings.php:342
2232
  #@ fl-builder
2233
- msgid "Background Overlay"
2234
- msgstr "Sfondo overlay"
2235
 
2236
- #: includes/row-settings.php:346
2237
  #@ fl-builder
2238
- msgid "Overlay Color"
2239
- msgstr "Colore overlay"
2240
 
2241
- #: includes/row-settings.php:354
2242
  #@ fl-builder
2243
- msgid "Overlay Opacity"
2244
- msgstr "Opacità overlay"
2245
 
2246
- #: includes/row-settings.php:473
2247
  #@ fl-builder
2248
- msgid "Choose whether to show or hide this row at different device sizes."
2249
- msgstr "Scegli se mostrare o nascondere questa riga per diverse dimensioni dei dispositivi."
2250
 
2251
- #: includes/row-settings.php:608
2252
  #@ fl-builder
2253
- msgid "A unique ID that will be applied to this row's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
2254
- msgstr "Un ID univoco che sarà applicato al codice HTML di questa riga. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Niente spazi."
2255
 
2256
- #: includes/row-settings.php:616
2257
  #@ fl-builder
2258
- msgid "A class that will be applied to this row's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
2259
- msgstr "Una classe che sarà applicata al codice HTML di questa riga. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Separa classi multiple con spazio."
2260
 
2261
- #: includes/settings.php:62
2262
  #@ fl-builder
2263
- msgid "Save"
2264
- msgstr "Salva"
2265
 
2266
- #: includes/template-selector.php:3
2267
  #@ fl-builder
2268
- msgid "Layout Templates"
2269
- msgstr "Modelli di layout"
2270
 
2271
- #: includes/template-selector.php:8
2272
  #@ fl-builder
2273
- msgid "Home Pages"
2274
- msgstr "Pagine home"
2275
 
2276
- #: includes/template-selector.php:9
2277
  #@ fl-builder
2278
- msgid "Content Pages"
2279
- msgstr "Pagine di contenuto"
2280
 
2281
- #: includes/template-selector.php:13
2282
  #@ fl-builder
2283
- msgid "Your Templates"
2284
- msgstr "I tuoi modelli"
2285
 
2286
- #: includes/template-selector.php:47
2287
- #: includes/template-selector.php:77
2288
  #@ fl-builder
2289
- msgctxt "Template name."
2290
- msgid "Blank"
2291
- msgstr "Vuoto"
2292
 
2293
- #: includes/template-selector.php:72
2294
  #@ fl-builder
2295
- 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>."
2296
- msgstr "Non hai ancora salvato nessun modello! Per farlo, crea un layout e salvalo come modello in <strong>Strumenti &rarr; Salva modello</strong>."
2297
 
2298
- #: includes/template-selector.php:84
2299
  #@ fl-builder
2300
- msgid "Delete"
2301
- msgstr "Elimina"
2302
 
2303
- #: includes/ui.php:7
2304
- #, php-format
2305
  #@ fl-builder
2306
- msgid "Template: %s"
2307
- msgstr "Modello: %s"
2308
 
2309
- #: includes/ui.php:23
2310
  #@ fl-builder
2311
- msgid "Page Builder Demo"
2312
- msgstr "Dimostrazione del Page Builder"
2313
 
2314
- #: includes/ui.php:37
2315
  #@ fl-builder
2316
- msgid "Buy Now!"
2317
- msgstr "Acquista ora!"
2318
 
2319
- #: includes/ui.php:39
2320
  #@ fl-builder
2321
- msgid "Upgrade!"
2322
- msgstr "Aggiorna!"
2323
 
2324
- #: includes/ui.php:42
2325
  #@ fl-builder
2326
- msgid "Tools"
2327
- msgstr "Strumenti"
2328
 
2329
- #: includes/ui.php:64
2330
  #@ fl-builder
2331
- msgid "Row Layouts"
2332
- msgstr "Layout di riga"
2333
 
2334
- #: includes/ui.php:68
2335
  #@ fl-builder
2336
- msgid "1 Column"
2337
- msgstr "1 colonna"
2338
 
2339
- #: includes/ui.php:69
2340
  #@ fl-builder
2341
- msgid "2 Columns"
2342
- msgstr "2 colonne"
2343
 
2344
- #: includes/ui.php:70
2345
  #@ fl-builder
2346
- msgid "3 Columns"
2347
- msgstr "3 colonne"
2348
 
2349
- #: includes/ui.php:71
2350
  #@ fl-builder
2351
- msgid "4 Columns"
2352
- msgstr "4 colonne"
2353
 
2354
- #: includes/ui.php:72
2355
  #@ fl-builder
2356
- msgid "5 Columns"
2357
- msgstr "5 colonne"
2358
 
2359
- #: includes/ui.php:73
2360
  #@ fl-builder
2361
- msgid "6 Columns"
2362
- msgstr "6 colonne"
2363
 
2364
- #: includes/ui.php:74
2365
  #@ fl-builder
2366
- msgid "Left Sidebar"
2367
- msgstr "Barra laterale sinistra"
2368
 
2369
- #: includes/ui.php:75
2370
  #@ fl-builder
2371
- msgid "Right Sidebar"
2372
- msgstr "Barra laterale destra"
2373
 
2374
- #: includes/ui.php:76
2375
  #@ fl-builder
2376
- msgid "Left &amp; Right Sidebar"
2377
- msgstr "Barra laterale sinistra e destra"
2378
 
2379
- #: includes/updater/classes/class-fl-updater.php:107
2380
  #@ fl-builder
2381
- msgid "<strong>UPDATE UNAVAILABLE!</strong>"
2382
- msgstr "<strong>AGGIORNAMENTO NON DISPONIBILE!</strong>"
2383
 
2384
- #: includes/updater/classes/class-fl-updater.php:109
 
 
2385
  #@ fl-builder
2386
- msgid "Please subscribe to enable automatic updates for this plugin."
2387
- msgstr "Si prega di abbonarsi per abilitare gli aggiornamenti automatici per questo plugin."
2388
 
2389
- #: includes/updater/classes/class-fl-updater.php:111
2390
- #: includes/updater/includes/form.php:6
2391
  #@ fl-builder
2392
- msgid "Subscribe Now"
2393
- msgstr "Abbonati ora"
2394
 
2395
- #: includes/updater/includes/form.php:5
 
 
2396
  #@ fl-builder
2397
- msgid "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable automatic updates."
2398
- msgstr "AGGIORNAMENTI NON DISPONIBILI! Abbonati o inserisci la tua chiave di licenza per abilitare gli aggiornamenti automatici."
2399
 
2400
- #: includes/updater/includes/form.php:11
 
2401
  #@ fl-builder
2402
- msgid "Updates &amp; Support Subscription"
2403
- msgstr "Abbonamento supporto e aggiornamenti"
2404
 
2405
- #: includes/updater/includes/form.php:14
2406
  #@ fl-builder
2407
- msgid "Active!"
2408
- msgstr "Attivo!"
2409
 
2410
- #: includes/updater/includes/form.php:16
2411
  #@ fl-builder
2412
- msgid "Not Active!"
2413
- msgstr "Non attivo!"
2414
 
2415
- #: includes/updater/includes/form.php:22
2416
  #@ fl-builder
2417
- msgid "Email address saved!"
2418
- msgstr "Indirizzo email salvato!"
2419
 
2420
- #: includes/updater/includes/form.php:27
2421
- #, php-format
2422
  #@ fl-builder
2423
- msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
2424
- msgstr "Inserisci la tua <a%s>chiave di licenza</a> per abilitare gli aggiornamenti remoti e il supporto."
2425
 
2426
- #: includes/updater/includes/form.php:39
2427
  #@ fl-builder
2428
- msgid "Save Subscription Settings"
2429
- msgstr "Salva le impostazioni di abbonamento"
2430
 
2431
- #: includes/user-template-settings.php:8
2432
  #@ fl-builder
2433
- msgid "Save the current layout as a template that can be reused under <strong>Templates &rarr; Your Templates</strong>."
2434
- msgstr "Salva il layout attuale come modello che può essere riutilizzato in <strong>Modelli &rarr; I tuoi modelli</strong>."
2435
 
2436
- #: includes/user-template-settings.php:15
2437
  #@ fl-builder
2438
- msgctxt "Template name."
2439
- msgid "Name"
2440
- msgstr "Nome"
2441
 
2442
- #: modules/accordion/accordion.php:14
2443
  #@ fl-builder
2444
- msgid "Accordion"
2445
- msgstr "Accordion"
2446
 
2447
- #: modules/accordion/accordion.php:15
2448
  #@ fl-builder
2449
- msgid "Display a collapsible accordion of items."
2450
- msgstr "Visualizza una lista comprimibile di elementi."
2451
 
2452
- #: modules/accordion/accordion.php:28
2453
- #: modules/tabs/tabs.php:28
2454
  #@ fl-builder
2455
- msgid "Items"
2456
- msgstr "Elementi"
2457
 
2458
- #: modules/accordion/accordion.php:35
2459
- #: modules/tabs/tabs.php:35
2460
  #@ fl-builder
2461
- msgid "Item"
2462
- msgstr "Elemento"
2463
 
2464
- #: modules/accordion/accordion.php:52
2465
- #: modules/tabs/tabs.php:61
2466
  #@ fl-builder
2467
- msgid "Border Color"
2468
- msgstr "Colore bordo"
2469
 
2470
- #: modules/accordion/accordion.php:62
2471
  #@ fl-builder
2472
- msgid "Label Size"
2473
- msgstr "Dimensione etichetta"
2474
 
2475
- #: modules/accordion/accordion.php:65
2476
- #@ fl-builder
2477
- msgctxt "Label size."
2478
- msgid "Small"
2479
- msgstr "Piccola"
2480
 
2481
- #: modules/accordion/accordion.php:66
2482
  #@ fl-builder
2483
- msgctxt "Label size."
2484
- msgid "Medium"
2485
- msgstr "Media"
2486
 
2487
- #: modules/accordion/accordion.php:67
2488
  #@ fl-builder
2489
- msgctxt "Label size."
2490
- msgid "Large"
2491
- msgstr "Grande"
2492
 
2493
- #: modules/accordion/accordion.php:75
2494
  #@ fl-builder
2495
- msgid "Item Spacing"
2496
- msgstr "Spaziatura elemento"
 
2497
 
2498
- #: modules/accordion/accordion.php:86
2499
  #@ fl-builder
2500
- msgid "Collapse Inactive"
2501
- msgstr "Chiudi inattivo"
 
2502
 
2503
- #: modules/accordion/accordion.php:92
2504
  #@ fl-builder
2505
- 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."
2506
- msgstr "Scegliendo Sì manterrà soltanto un elemento aperto alla volta. Scegliendo No permetterà a più elementi di essere aperti contemporaneamente."
 
2507
 
2508
- #: modules/accordion/accordion.php:107
2509
- #: modules/tabs/tabs.php:74
2510
  #@ fl-builder
2511
- msgid "Add Item"
2512
- msgstr "Aggiungi elemento"
 
2513
 
2514
- #: modules/accordion/accordion.php:117
2515
- #: modules/tabs/tabs.php:84
2516
  #@ fl-builder
2517
- msgid "Label"
2518
- msgstr "Etichetta"
 
2519
 
2520
- #: modules/accordion/accordion.php:122
2521
- #: modules/post-grid/post-grid.php:195
2522
- #: modules/post-grid/post-grid.php:199
2523
- #: modules/post-grid/post-grid.php:235
2524
- #: modules/tabs/tabs.php:89
2525
  #@ fl-builder
2526
- msgid "Content"
2527
- msgstr "Contenuto"
2528
 
2529
- #: modules/button/button.php:14
2530
- #: modules/callout/callout.php:477
2531
- #: modules/content-slider/content-slider.php:595
2532
- #: modules/cta/cta.php:212
2533
- #: modules/pricing-table/pricing-table.php:129
 
 
 
 
 
2534
  #@ fl-builder
2535
- msgid "Button"
2536
- msgstr "Pulsante"
 
2537
 
2538
- #: modules/button/button.php:15
2539
  #@ fl-builder
2540
- msgid "A simple call to action button."
2541
- msgstr "Un semplice pulsante Call to action."
2542
 
2543
- #: modules/button/button.php:54
2544
- #: modules/cta/cta.php:220
2545
  #@ fl-builder
2546
- msgid "Click Here"
2547
- msgstr "Clicca qui"
2548
 
2549
- #: modules/button/button.php:62
2550
- #: modules/callout/callout.php:315
2551
- #: modules/callout/callout.php:363
2552
- #: modules/callout/callout.php:367
2553
- #: modules/cta/cta.php:228
2554
- #: modules/icon/icon.php:14
2555
- #: modules/icon/icon.php:34
2556
- #: modules/icon-group/icon-group.php:34
2557
- #: modules/icon-group/icon-group.php:135
2558
  #@ fl-builder
2559
- msgid "Icon"
2560
- msgstr "Icona"
2561
 
2562
- #: modules/button/button.php:68
2563
- #: modules/button/button.php:72
2564
- #: modules/callout/callout.php:443
2565
- #: modules/callout/callout.php:447
2566
- #: modules/content-slider/content-slider.php:567
2567
- #: modules/content-slider/content-slider.php:571
2568
- #: modules/content-slider/content-slider.php:594
2569
- #: modules/cta/cta.php:238
2570
- #: modules/heading/heading.php:43
2571
- #: modules/heading/heading.php:47
2572
- #: modules/icon/icon.php:43
2573
- #: modules/icon-group/icon-group.php:139
2574
- #: modules/slideshow/slideshow.php:343
2575
  #@ fl-builder
2576
- msgid "Link"
2577
- msgstr "Collegamento"
2578
 
2579
- #: modules/button/button.php:73
 
 
2580
  #@ fl-builder
2581
- msgid "http://www.example.com"
2582
- msgstr "http://www.example.com"
2583
 
2584
- #: modules/button/button.php:80
2585
- #: modules/callout/callout.php:455
2586
- #: modules/content-slider/content-slider.php:576
2587
- #: modules/cta/cta.php:245
2588
- #: modules/heading/heading.php:54
2589
- #: modules/icon/icon.php:50
2590
- #: modules/photo/photo.php:478
2591
  #@ fl-builder
2592
- msgid "Link Target"
2593
- msgstr "Destinazione del collegamento"
2594
 
2595
- #: modules/button/button.php:83
2596
- #: modules/callout/callout.php:458
2597
- #: modules/content-slider/content-slider.php:579
2598
- #: modules/cta/cta.php:248
2599
- #: modules/heading/heading.php:57
2600
- #: modules/icon/icon.php:53
2601
- #: modules/photo/photo.php:481
2602
  #@ fl-builder
2603
- msgid "Same Window"
2604
- msgstr "Stessa finestra"
2605
 
2606
- #: modules/button/button.php:84
2607
- #: modules/callout/callout.php:459
2608
- #: modules/content-slider/content-slider.php:580
2609
- #: modules/cta/cta.php:249
2610
- #: modules/heading/heading.php:58
2611
- #: modules/icon/icon.php:54
2612
- #: modules/photo/photo.php:482
2613
  #@ fl-builder
2614
- msgid "New Window"
2615
- msgstr "Nuova finestra"
2616
 
2617
  #: modules/button/button.php:98
2618
  #: modules/cta/cta.php:185
@@ -2624,17 +2976,6 @@ msgstr "Nuova finestra"
2624
  msgid "Colors"
2625
  msgstr "Colori"
2626
 
2627
- #: modules/button/button.php:108
2628
- #: modules/callout/callout.php:407
2629
- #: modules/callout/callout.php:512
2630
- #: modules/content-slider/content-slider.php:630
2631
- #: modules/cta/cta.php:268
2632
- #: modules/icon/icon.php:100
2633
- #: modules/icon-group/icon-group.php:69
2634
- #@ fl-builder
2635
- msgid "Background Hover Color"
2636
- msgstr "Colore di sfondo al passaggio del mouse"
2637
-
2638
  #: modules/button/button.php:117
2639
  #: modules/callout/callout.php:521
2640
  #: modules/content-slider/content-slider.php:522
@@ -2647,2264 +2988,2364 @@ msgstr "Colore di sfondo al passaggio del mouse"
2647
  msgid "Text Color"
2648
  msgstr "Colore del testo"
2649
 
2650
- #: modules/button/button.php:123
2651
- #: modules/callout/callout.php:527
2652
- #: modules/content-slider/content-slider.php:641
2653
- #: modules/cta/cta.php:283
2654
  #@ fl-builder
2655
- msgid "Text Hover Color"
2656
- msgstr "Colore del testo al passaggio del mouse"
 
2657
 
2658
- #: modules/button/button.php:153
2659
- #: modules/callout/callout.php:546
2660
- #: modules/content-slider/content-slider.php:660
2661
- #: modules/cta/cta.php:302
2662
- #: modules/subscribe-form/subscribe-form.php:220
2663
  #@ fl-builder
2664
- msgid "Flat"
2665
- msgstr "Solido"
 
2666
 
2667
- #: modules/button/button.php:132
2668
- #: modules/callout/callout.php:415
2669
- #: modules/callout/callout.php:536
2670
- #: modules/content-slider/content-slider.php:646
2671
- #: modules/cta/cta.php:292
2672
- #: modules/icon/icon.php:108
2673
- #: modules/icon-group/icon-group.php:77
2674
  #@ fl-builder
2675
- msgid "Gradient"
2676
- msgstr "Gradiente"
 
2677
 
2678
- #: modules/button/button.php:155
2679
- #: modules/callout/callout.php:548
2680
- #: modules/content-slider/content-slider.php:662
2681
- #: modules/cta/cta.php:304
2682
- #: modules/subscribe-form/subscribe-form.php:222
2683
  #@ fl-builder
2684
- msgid "Transparent"
2685
- msgstr "Trasparente"
2686
 
2687
- #: modules/pricing-table/pricing-table.php:67
 
 
 
2688
  #@ fl-builder
2689
- msgid "Border Size"
2690
- msgstr "Dimensione bordo"
2691
 
2692
- #: modules/cta/cta.php:201
2693
  #@ fl-builder
2694
- msgid "Background Opacity"
2695
- msgstr "Opacità sfondo"
2696
 
2697
- #: modules/button/button.php:142
2698
- #: modules/callout/callout.php:242
2699
- #: modules/cta/cta.php:102
2700
- #: modules/heading/heading.php:82
2701
- #: modules/icon/icon.php:118
2702
- #: modules/icon-group/icon-group.php:87
2703
  #@ fl-builder
2704
- msgid "Structure"
2705
- msgstr "Struttura"
2706
 
2707
- #: modules/button/button.php:149
2708
- #: modules/callout/callout.php:553
2709
  #@ fl-builder
2710
- msgctxt "Width."
2711
- msgid "Auto"
2712
- msgstr "Automatica"
2713
 
2714
- #: modules/button/button.php:165
2715
  #@ fl-builder
2716
- msgid "Custom Width"
2717
- msgstr "Larghezza personalizzata"
2718
 
2719
- #: modules/button/button.php:173
2720
- #: modules/cta/cta.php:120
2721
- #: modules/heading/heading.php:86
2722
- #: modules/heading/heading.php:141
2723
- #: modules/icon/icon.php:130
2724
- #: modules/icon-group/icon-group.php:107
2725
- #: modules/photo/photo.php:414
2726
- #: modules/social-buttons/social-buttons.php:97
2727
  #@ fl-builder
2728
- msgid "Alignment"
2729
- msgstr "Allineamento"
2730
 
2731
- #: modules/button/button.php:183
2732
- #: modules/callout/callout.php:559
2733
- #: modules/content-slider/content-slider.php:660
2734
- #: modules/cta/cta.php:306
2735
- #: modules/heading/heading.php:114
2736
- #: modules/heading/heading.php:171
2737
  #@ fl-builder
2738
- msgid "Font Size"
2739
- msgstr "Dimensione carattere"
2740
 
2741
- #: modules/button/button.php:199
2742
- #: modules/callout/callout.php:575
2743
- #: modules/cta/cta.php:322
2744
  #@ fl-builder
2745
- msgid "Round Corners"
2746
- msgstr "Angoli arrotondati"
2747
 
2748
- #: modules/callout/callout.php:14
 
 
2749
  #@ fl-builder
2750
- msgid "Callout"
2751
- msgstr "Callout"
2752
 
2753
- #: modules/callout/callout.php:15
 
 
2754
  #@ fl-builder
2755
- msgid "A heading and snippet of text with an optional link, icon and image."
2756
- msgstr "Un titolo e un frammento di testo con collegamento, icona e immagine facoltativi."
2757
 
2758
- #: modules/callout/callout.php:214
2759
- #: modules/content-slider/content-slider.php:407
2760
- #: modules/content-slider/content-slider.php:422
2761
- #: modules/cta/cta.php:72
2762
- #: modules/heading/heading.php:14
2763
- #: modules/heading/heading.php:33
2764
- #: modules/testimonials/testimonials.php:56
2765
- #: modules/testimonials/testimonials.php:61
2766
  #@ fl-builder
2767
- msgid "Heading"
2768
- msgstr "Titolo"
2769
 
2770
- #: modules/callout/callout.php:246
 
 
 
2771
  #@ fl-builder
2772
- msgid "Overall Alignment"
2773
- msgstr "Allineamento globale"
2774
 
2775
- #: modules/callout/callout.php:253
2776
  #@ fl-builder
2777
- msgid "The alignment that will apply to all elements within the callout."
2778
- msgstr "L'allineamento che si applicherà a tutti gli elementi all'interno del callout."
 
2779
 
2780
- #: modules/callout/callout.php:261
2781
- #: modules/cta/cta.php:145
 
 
2782
  #@ fl-builder
2783
- msgid "Heading Structure"
2784
- msgstr "Struttura titolo"
2785
 
2786
- #: modules/callout/callout.php:265
2787
- #: modules/content-slider/content-slider.php:426
2788
- #: modules/cta/cta.php:149
2789
  #@ fl-builder
2790
- msgid "Heading Tag"
2791
- msgstr "Tag titolo"
2792
 
2793
- #: modules/callout/callout.php:278
2794
- #: modules/content-slider/content-slider.php:439
2795
- #: modules/content-slider/content-slider.php:453
2796
- #: modules/cta/cta.php:162
2797
- #: modules/testimonials/testimonials.php:69
2798
  #@ fl-builder
2799
- msgid "Heading Size"
2800
- msgstr "Dimensione titolo"
2801
 
2802
- #: modules/callout/callout.php:292
2803
- #: modules/cta/cta.php:176
2804
  #@ fl-builder
2805
- msgid "Heading Custom Size"
2806
- msgstr "Dimensione personalizzata titolo"
2807
 
2808
- #: modules/callout/callout.php:303
2809
- #: modules/post-grid/post-grid.php:113
2810
  #@ fl-builder
2811
- msgid "Image"
2812
- msgstr "Immagine"
2813
 
2814
- #: modules/callout/callout.php:310
 
2815
  #@ fl-builder
2816
- msgid "Image Type"
2817
- msgstr "Tipo di immagine"
2818
 
2819
- #: modules/callout/callout.php:313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2820
  #@ fl-builder
2821
- msgctxt "Image type."
2822
- msgid "None"
2823
- msgstr "Nessuna"
2824
 
2825
- #: modules/callout/callout.php:338
2826
- #: modules/photo/photo.php:401
2827
- #: modules/slideshow/slideshow.php:312
 
2828
  #@ fl-builder
2829
- msgid "Crop"
2830
- msgstr "Ritaglio"
2831
 
2832
- #: modules/callout/callout.php:341
 
2833
  #@ fl-builder
2834
- msgctxt "Crop"
2835
- msgid "None"
2836
- msgstr "Nessuno"
2837
 
2838
- #: modules/callout/callout.php:342
2839
- #: modules/photo/photo.php:405
2840
  #@ fl-builder
2841
- msgid "Landscape"
2842
- msgstr "Paesaggio"
2843
 
2844
- #: modules/callout/callout.php:343
2845
- #: modules/photo/photo.php:406
2846
  #@ fl-builder
2847
- msgid "Panorama"
2848
- msgstr "Panorama"
2849
 
2850
- #: modules/callout/callout.php:344
2851
- #: modules/photo/photo.php:407
2852
  #@ fl-builder
2853
- msgid "Portrait"
2854
- msgstr "Ritratto"
 
2855
 
2856
- #: modules/callout/callout.php:345
2857
- #: modules/photo/photo.php:408
2858
  #@ fl-builder
2859
- msgid "Square"
2860
- msgstr "Quadrato"
2861
 
2862
- #: modules/callout/callout.php:346
2863
- #: modules/photo/photo.php:409
2864
  #@ fl-builder
2865
- msgid "Circle"
2866
- msgstr "Cerchio"
2867
 
2868
- #: modules/callout/callout.php:354
2869
- #: modules/callout/callout.php:374
2870
  #@ fl-builder
2871
- msgid "Above Heading"
2872
- msgstr "Sopra intestazione"
2873
 
2874
- #: modules/callout/callout.php:355
2875
- #: modules/callout/callout.php:375
2876
  #@ fl-builder
2877
- msgid "Below Heading"
2878
- msgstr "Sotto intestazione"
2879
 
2880
- #: modules/callout/callout.php:356
2881
- #: modules/callout/callout.php:378
2882
  #@ fl-builder
2883
- msgid "Left of Text and Heading"
2884
- msgstr "Sinistra del testo e intestazione"
2885
 
2886
- #: modules/callout/callout.php:357
2887
- #: modules/callout/callout.php:379
2888
  #@ fl-builder
2889
- msgid "Right of Text and Heading"
2890
- msgstr "Destra del testo e intestazione"
2891
 
2892
- #: modules/callout/callout.php:376
2893
  #@ fl-builder
2894
- msgid "Left of Heading"
2895
- msgstr "Sinistra dell'intestazione"
2896
 
2897
- #: modules/callout/callout.php:377
2898
  #@ fl-builder
2899
- msgid "Right of Heading"
2900
- msgstr "Destra dell'intestazione"
2901
 
2902
- #: modules/callout/callout.php:385
2903
  #@ fl-builder
2904
- msgid "Icon Colors"
2905
- msgstr "Colori icona"
2906
 
2907
- #: modules/callout/callout.php:394
2908
- #: modules/icon/icon.php:87
2909
- #: modules/icon-group/icon-group.php:56
2910
  #@ fl-builder
2911
- msgid "Hover Color"
2912
- msgstr "Colore al passaggio del mouse"
 
2913
 
2914
- #: modules/callout/callout.php:425
2915
  #@ fl-builder
2916
- msgid "Icon Structure"
2917
- msgstr "Struttura icona"
 
2918
 
2919
- #: modules/callout/callout.php:429
2920
- #: modules/icon/icon.php:122
2921
- #: modules/icon-group/icon-group.php:91
2922
- #: modules/post-grid/post-grid.php:136
2923
  #@ fl-builder
2924
- msgid "Size"
2925
- msgstr "Dimensione"
2926
 
2927
- #: modules/callout/callout.php:440
2928
- #: modules/content-slider/content-slider.php:564
2929
  #@ fl-builder
2930
- msgid "Call To Action"
2931
- msgstr "Call To Action"
2932
 
2933
- #: modules/callout/callout.php:448
 
2934
  #@ fl-builder
2935
- 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."
2936
- msgstr "Il collegamento si applica a tutto il modulo. Se si seglie un tipo di azione call to action qui sotto, questo collegamento verrà utilizzato anche per il testo o pulsante."
2937
 
2938
- #: modules/callout/callout.php:468
2939
- #: modules/content-slider/content-slider.php:586
2940
- #: modules/cta/cta.php:14
2941
  #@ fl-builder
2942
- msgid "Call to Action"
2943
- msgstr "Call to Action"
2944
 
2945
- #: modules/callout/callout.php:475
2946
- #: modules/content-slider/content-slider.php:593
2947
  #@ fl-builder
2948
- msgctxt "Call to action."
2949
- msgid "None"
2950
- msgstr "Nessuna"
2951
 
2952
- #: modules/callout/callout.php:496
2953
- #: modules/content-slider/content-slider.php:614
2954
  #@ fl-builder
2955
- msgid "Button Icon"
2956
- msgstr "Icona del pulsante"
2957
 
2958
- #: modules/callout/callout.php:502
2959
- #: modules/content-slider/content-slider.php:620
2960
- #: modules/cta/cta.php:258
2961
  #@ fl-builder
2962
- msgid "Button Colors"
2963
- msgstr "Colori pulsante"
2964
 
2965
- #: modules/callout/callout.php:539
2966
- #: modules/content-slider/content-slider.php:653
2967
- #: modules/cta/cta.php:295
2968
- #: modules/subscribe-form/subscribe-form.php:213
2969
  #@ fl-builder
2970
- msgid "Button Style"
2971
- msgstr "Stile pulsante"
2972
 
2973
- #: modules/callout/callout.php:546
2974
- #: modules/content-slider/content-slider.php:656
2975
- #: modules/cta/cta.php:302
2976
  #@ fl-builder
2977
- msgid "Button Structure"
2978
- msgstr "Struttura pulsante"
2979
 
2980
- #: modules/callout/callout.php:550
2981
  #@ fl-builder
2982
- msgid "Button Width"
2983
- msgstr "Larghezza del pulsante"
2984
 
2985
- #: modules/contact-form/contact-form.php:14
2986
  #@ fl-builder
2987
- msgid "Contact Form"
2988
- msgstr "Modulo di contatto"
2989
 
2990
- #: modules/contact-form/contact-form.php:15
2991
  #@ fl-builder
2992
- msgid "A very simple contact form."
2993
- msgstr "Un semplice modulo di contatto."
2994
 
2995
- #: modules/contact-form/contact-form.php:36
2996
  #@ fl-builder
2997
- msgid "Contact Form Submission"
2998
- msgstr "Invio modulo di contatto"
2999
 
3000
- #: modules/contact-form/contact-form.php:64
3001
  #@ fl-builder
3002
- msgid "Send To Email"
3003
- msgstr "Invia per Email"
3004
 
3005
- #: modules/contact-form/contact-form.php:66
3006
  #@ fl-builder
3007
- msgid "example@mail.com"
3008
- msgstr "example@mail.com"
3009
 
3010
- #: modules/contact-form/contact-form.php:67
3011
  #@ fl-builder
3012
- msgid "The contact form will send to this e-mail"
3013
- msgstr "Il modulo di contatto sarà inviato a questa e-mail"
3014
 
3015
- #: modules/contact-form/includes/frontend.php:4
3016
  #@ fl-builder
3017
- msgctxt "Contact form field label."
3018
- msgid "Name"
3019
- msgstr "Nome"
3020
 
3021
- #: modules/contact-form/includes/frontend.php:5
3022
  #@ fl-builder
3023
- msgid "Please enter your name."
3024
- msgstr "Inserisci il tuo nome."
3025
 
3026
- #: modules/contact-form/includes/frontend.php:6
3027
  #@ fl-builder
3028
- msgid "Your name"
3029
- msgstr "Il tuo nome"
3030
 
3031
- #: modules/contact-form/includes/frontend.php:10
 
3032
  #@ fl-builder
3033
- msgid "Email"
3034
- msgstr "Email"
3035
 
3036
- #: modules/contact-form/includes/frontend.php:11
3037
  #@ fl-builder
3038
- msgid "Please enter a valid email."
3039
- msgstr "Inserisci un indirizzo email valido."
3040
 
3041
- #: modules/contact-form/includes/frontend.php:12
3042
  #@ fl-builder
3043
- msgid "Your email"
3044
- msgstr "La tua email"
3045
 
3046
- #: modules/contact-form/includes/frontend.php:16
3047
  #@ fl-builder
3048
- msgid "Your Message"
3049
- msgstr "Il tuo messaggio"
3050
 
3051
- #: modules/contact-form/includes/frontend.php:17
3052
  #@ fl-builder
3053
- msgid "Please enter a message."
3054
- msgstr "Inserisci un messaggio."
3055
 
3056
- #: modules/contact-form/includes/frontend.php:18
3057
  #@ fl-builder
3058
- msgid "Your message"
3059
- msgstr "Il tuo messaggio"
3060
 
3061
- #: modules/contact-form/includes/frontend.php:23
 
3062
  #@ fl-builder
3063
- msgid "Send"
3064
- msgstr "Invia"
3065
 
3066
- #: modules/contact-form/includes/frontend.php:24
3067
  #@ fl-builder
3068
- msgid "Message Sent!"
3069
- msgstr "Messaggio inviato!"
3070
 
3071
- #: modules/contact-form/includes/frontend.php:25
3072
  #@ fl-builder
3073
- msgid "Message failed. Please try again."
3074
- msgstr "Invio non riuscito. Per favore riprova."
3075
 
3076
- #: modules/content-slider/content-slider.php:14
3077
  #@ fl-builder
3078
- msgid "Content Slider"
3079
- msgstr "Slider contenuto"
3080
 
3081
- #: modules/content-slider/content-slider.php:15
3082
  #@ fl-builder
3083
- msgid "Displays multiple slides with an optional heading and call to action."
3084
- msgstr "Visualizza slide multiple con un titolo e una call to action opzionali."
3085
 
3086
- #: modules/content-slider/content-slider.php:191
3087
- #: modules/map/map.php:41
3088
- #: modules/separator/separator.php:58
3089
- #: modules/slideshow/slideshow.php:294
3090
  #@ fl-builder
3091
- msgid "Height"
3092
- msgstr "Altezza"
3093
 
3094
- #: modules/content-slider/content-slider.php:196
 
3095
  #@ fl-builder
3096
- msgid "This setting is the minimum height of the content slider. Content will expand the height automatically."
3097
- msgstr "Questa impostazione è l'altezza minima dello slider di contenuto. Il contenuto espanderà automaticamente l'altezza."
3098
 
3099
- #: modules/content-slider/content-slider.php:200
3100
- #: modules/slideshow/slideshow.php:373
3101
- #: modules/testimonials/testimonials.php:82
3102
- #: modules/video/video.php:108
3103
  #@ fl-builder
3104
- msgid "Auto Play"
3105
- msgstr "Avvio automatico"
3106
 
3107
- #: modules/content-slider/content-slider.php:214
3108
  #@ fl-builder
3109
- msgid "Show Play/Pause"
3110
- msgstr "Mostra Play/Pausa"
3111
 
3112
- #: modules/content-slider/content-slider.php:234
3113
- #: modules/testimonials/testimonials.php:102
3114
  #@ fl-builder
3115
- msgctxt "Transition type."
3116
- msgid "Slide"
3117
- msgstr "Slide"
3118
 
3119
- #: modules/content-slider/content-slider.php:248
3120
- #: modules/testimonials/testimonials.php:121
3121
  #@ fl-builder
3122
- msgid "Show Arrows"
3123
- msgstr "Mostra frecce"
 
3124
 
3125
- #: modules/content-slider/content-slider.php:257
3126
- #: modules/testimonials/testimonials.php:151
3127
  #@ fl-builder
3128
- msgid "Show Dots"
3129
- msgstr "Mostra navigazione"
 
3130
 
3131
- #: modules/content-slider/content-slider.php:271
3132
  #@ fl-builder
3133
- msgid "Max Content Width"
3134
- msgstr "Larghezza max contenuto"
3135
 
3136
- #: modules/content-slider/content-slider.php:276
3137
  #@ fl-builder
3138
- msgid "The max width that the content area will be within your slides."
3139
- msgstr "La larghezza massima dell'area di contenuto nelle tue slides."
3140
 
3141
- #: modules/content-slider/content-slider.php:283
3142
  #@ fl-builder
3143
- msgid "Slides"
3144
- msgstr "Slides"
3145
 
3146
- #: modules/content-slider/content-slider.php:290
 
3147
  #@ fl-builder
3148
- msgid "Slide"
3149
- msgstr "Slide"
3150
 
3151
- #: modules/content-slider/content-slider.php:305
 
3152
  #@ fl-builder
3153
- msgid "Slide Settings"
3154
- msgstr "Impostazioni slide"
3155
 
3156
- #: modules/content-slider/content-slider.php:315
 
 
 
 
3157
  #@ fl-builder
3158
- msgid "Slide Label"
3159
- msgstr "Etichetta slide"
3160
 
3161
- #: modules/content-slider/content-slider.php:316
 
 
 
 
3162
  #@ fl-builder
3163
- msgid "A label to identify this slide on the Slides tab of the Content Slider settings."
3164
- msgstr "Un'etichetta per identificare questa slide nelle impostazioni dello Slider Contenuti, tra le schede delle slide."
3165
 
3166
- #: modules/content-slider/content-slider.php:321
3167
  #@ fl-builder
3168
- msgid "Background Layout"
3169
- msgstr "Layout sfondo"
3170
 
3171
- #: modules/content-slider/content-slider.php:327
 
3172
  #@ fl-builder
3173
- msgid "This setting is for the entire background of your slide."
3174
- msgstr "Questa impostazione è per l'intero sfondo della tua slide."
3175
 
3176
- #: modules/content-slider/content-slider.php:362
 
 
 
 
 
 
 
 
3177
  #@ fl-builder
3178
- msgid "Background Video Code"
3179
- msgstr "Codice sfondo video"
3180
 
3181
- #: modules/content-slider/content-slider.php:368
 
 
3182
  #@ fl-builder
3183
- msgid "Content Layout"
3184
- msgstr "Layout contenuto"
3185
 
3186
- #: modules/content-slider/content-slider.php:374
 
 
 
 
3187
  #@ fl-builder
3188
- 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."
3189
- msgstr "Questo permette di aggiungere contenuto sopra o in aggiunta alla selezione sfondo sopra. La posizione del layout contenuti può essere selezionata nella scheda stile."
3190
 
3191
- #: modules/content-slider/content-slider.php:377
 
 
 
 
3192
  #@ fl-builder
3193
- msgid "Text &amp; Photo"
3194
- msgstr "Testo e foto"
3195
 
3196
- #: modules/content-slider/content-slider.php:378
 
 
 
 
 
 
 
 
 
 
 
 
3197
  #@ fl-builder
3198
- msgid "Text &amp; Video"
3199
- msgstr "Testo e Video"
3200
 
3201
- #: modules/content-slider/content-slider.php:379
3202
  #@ fl-builder
3203
- msgctxt "Content type."
3204
- msgid "None"
3205
- msgstr "Nessuno"
3206
 
3207
- #: modules/content-slider/content-slider.php:402
3208
- #: modules/video/video.php:132
 
 
 
 
 
3209
  #@ fl-builder
3210
- msgid "Video Embed Code"
3211
- msgstr "Codice di embed del video"
3212
 
3213
- #: modules/content-slider/content-slider.php:462
 
 
 
 
 
 
3214
  #@ fl-builder
3215
- msgid "Text Position"
3216
- msgstr "Posizione testo"
3217
 
3218
- #: modules/content-slider/content-slider.php:468
 
 
 
 
 
 
3219
  #@ fl-builder
3220
- msgid "The position will move the content layout selections left, right or center over the background of the slide."
3221
- msgstr "La posizione sposterà le selezioni di layout contenuto a sinistra, destra o centrato sullo sfondo della slide."
3222
 
3223
- #: modules/content-slider/content-slider.php:485
 
 
 
 
 
 
3224
  #@ fl-builder
3225
- msgid "Top Margin"
3226
- msgstr "Margine alto"
3227
 
3228
- #: modules/content-slider/content-slider.php:493
 
 
 
3229
  #@ fl-builder
3230
- msgid "Bottom Margin"
3231
- msgstr "Margine basso"
3232
 
3233
- #: modules/content-slider/content-slider.php:501
 
 
 
 
3234
  #@ fl-builder
3235
- msgid "Left Margin"
3236
- msgstr "Margine sinistro"
3237
 
3238
- #: modules/content-slider/content-slider.php:509
 
 
 
 
 
 
3239
  #@ fl-builder
3240
- msgid "Right Margin"
3241
- msgstr "Margine destro"
3242
 
3243
- #: modules/content-slider/content-slider.php:518
 
 
 
 
3244
  #@ fl-builder
3245
- msgid "Text Colors"
3246
- msgstr "Colori del testo"
3247
 
3248
- #: modules/content-slider/content-slider.php:528
3249
  #@ fl-builder
3250
- msgid "Text Shadow"
3251
- msgstr "Ombra del testo"
3252
 
3253
- #: modules/content-slider/content-slider.php:537
3254
- #: modules/content-slider/content-slider.php:725
3255
  #@ fl-builder
3256
- msgid "Text Background Color"
3257
- msgstr "Colore di sfondo del testo"
3258
 
3259
- #: modules/content-slider/content-slider.php:538
 
 
 
 
 
3260
  #@ fl-builder
3261
- msgid "The color applies to the overlay behind text over the background selections."
3262
- msgstr "Il colore si applica all'overlay dietro il testo sopra lo sfondo selezionato."
3263
 
3264
- #: modules/content-slider/content-slider.php:543
 
3265
  #@ fl-builder
3266
- msgid "Text Background Opacity"
3267
- msgstr "Opacità sfondo del testo"
 
3268
 
3269
- #: modules/content-slider/content-slider.php:551
3270
  #@ fl-builder
3271
- msgid "Text Background Height"
3272
- msgstr "Altezza sfondo del testo"
3273
 
3274
- #: modules/content-slider/content-slider.php:553
 
 
 
 
 
 
 
3275
  #@ fl-builder
3276
- 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."
3277
- msgstr "Auto permetterà all'overlay di adattarsi a qualunque lunghezza del contenuto di testo. 100% adatta l'overlay alla parte superiore e inferiore della slide."
3278
 
3279
- #: modules/content-slider/content-slider.php:555
 
 
 
 
 
3280
  #@ fl-builder
3281
- msgctxt "Background height."
3282
- msgid "Auto"
3283
- msgstr "Auto"
3284
 
3285
- #: modules/content-slider/content-slider.php:572
 
 
3286
  #@ fl-builder
3287
- 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."
3288
- msgstr "Il collegamento si applica all'intera slide. Se si sceglie un tipo di call to action qui sotto, questo collegamento verrà utilizzato anche per il testo o pulsante."
3289
 
3290
- #: modules/content-slider/content-slider.php:676
3291
  #@ fl-builder
3292
- msgid "Border Radius"
3293
- msgstr "Raggio del bordo"
3294
 
3295
- #: modules/content-slider/content-slider.php:687
3296
  #@ fl-builder
3297
- msgctxt "Module settings form tab. Display on mobile devices."
3298
- msgid "Mobile"
3299
- msgstr "Mobile"
3300
 
3301
- #: modules/content-slider/content-slider.php:690
 
 
 
 
 
 
 
3302
  #@ fl-builder
3303
- msgid "Mobile Photo"
3304
- msgstr "Foto mobile"
3305
 
3306
- #: modules/content-slider/content-slider.php:696
3307
  #@ fl-builder
3308
- msgid "You can choose a different photo that the slide will change to on mobile devices or no photo if desired."
3309
- msgstr "È possibile scegliere una foto diversa da visualizzare nella slide per i dispositivi mobili, o nessuna foto se lo si desidera."
3310
 
3311
- #: modules/content-slider/content-slider.php:698
3312
  #@ fl-builder
3313
- msgid "Use Main Photo"
3314
- msgstr "Utilizza foto principale"
3315
 
3316
- #: modules/content-slider/content-slider.php:699
 
3317
  #@ fl-builder
3318
- msgid "Choose Another Photo"
3319
- msgstr "Scegli un'altra foto"
3320
 
3321
- #: modules/content-slider/content-slider.php:700
 
 
3322
  #@ fl-builder
3323
- msgid "No Photo"
3324
- msgstr "Nessuna foto"
3325
 
3326
- #: modules/content-slider/content-slider.php:715
 
 
 
 
3327
  #@ fl-builder
3328
- msgid "Mobile Text Colors"
3329
- msgstr "Colori testo mobile"
3330
 
3331
- #: modules/cta/cta.php:15
 
3332
  #@ fl-builder
3333
- msgid "Display a heading, subheading and a button."
3334
- msgstr "Mostra un titolo, sottotitolo e un pulsante."
3335
 
3336
- #: modules/cta/cta.php:73
3337
  #@ fl-builder
3338
- msgid "Ready to find out more?"
3339
- msgstr "Pronti a saperne di più?"
3340
 
3341
- #: modules/cta/cta.php:88
3342
  #@ fl-builder
3343
- msgid "Drop us a line today for a free quote!"
3344
- msgstr "Mandaci oggi due righe per un preventivo gratuito!"
 
3345
 
3346
- #: modules/cta/cta.php:106
3347
- #: modules/gallery/gallery.php:220
3348
- #: modules/post-grid/post-grid.php:44
3349
- #: modules/tabs/tabs.php:52
3350
- #: modules/testimonials/testimonials.php:37
3351
- #: modules/woocommerce/woocommerce.php:57
3352
  #@ fl-builder
3353
- msgid "Layout"
3354
- msgstr "Layout"
3355
 
3356
- #: modules/cta/cta.php:109
3357
  #@ fl-builder
3358
- msgid "Inline"
3359
- msgstr "In linea"
 
3360
 
3361
- #: modules/cta/cta.php:110
 
3362
  #@ fl-builder
3363
- msgid "Stacked"
3364
- msgstr "Impilati"
3365
 
3366
- #: modules/cta/cta.php:130
3367
- #: modules/icon-group/icon-group.php:99
3368
  #@ fl-builder
3369
- msgid "Spacing"
3370
- msgstr "Spaziatura"
3371
 
3372
- #: modules/cta/cta.php:234
 
3373
  #@ fl-builder
3374
- msgid "Button Link"
3375
- msgstr "Collegamento pulsante"
3376
 
3377
- #: modules/gallery/gallery.php:14
3378
- #: modules/post-grid/post-grid.php:55
3379
  #@ fl-builder
3380
- msgid "Gallery"
3381
- msgstr "Galleria"
3382
 
3383
- #: modules/gallery/gallery.php:15
 
3384
  #@ fl-builder
3385
- msgid "Display multiple photos in a gallery view."
3386
- msgstr "Visualizzare più foto in una galleria."
3387
 
3388
- #: modules/gallery/gallery.php:223
 
3389
  #@ fl-builder
3390
- msgid "Collage"
3391
- msgstr "Collage"
3392
 
3393
- #: modules/gallery/gallery.php:224
 
3394
  #@ fl-builder
3395
- msgctxt "Gallery layout: thumbnails."
3396
- msgid "Thumbs"
3397
- msgstr "Miniature"
3398
 
3399
- #: modules/gallery/gallery.php:260
 
3400
  #@ fl-builder
3401
- msgid "Photo Size"
3402
- msgstr "Dimensione foto"
3403
 
3404
- #: modules/gallery/gallery.php:263
 
3405
  #@ fl-builder
3406
- msgctxt "Photo size."
3407
- msgid "Small"
3408
- msgstr "Piccola"
3409
 
3410
- #: modules/gallery/gallery.php:264
3411
  #@ fl-builder
3412
- msgctxt "Photo size."
3413
- msgid "Medium"
3414
- msgstr "Media"
3415
 
3416
- #: modules/gallery/gallery.php:265
3417
  #@ fl-builder
3418
- msgctxt "Photo size."
3419
- msgid "Large"
3420
- msgstr "Grande"
3421
 
3422
- #: modules/gallery/gallery.php:270
3423
  #@ fl-builder
3424
- msgid "Photo Spacing"
3425
- msgstr "Spaziatura foto"
3426
 
3427
- #: modules/gallery/gallery.php:278
 
 
3428
  #@ fl-builder
3429
- msgid "Show Captions"
3430
- msgstr "Visualizza didascalie"
3431
 
3432
- #: modules/gallery/gallery.php:281
3433
- #: modules/photo/photo.php:432
3434
  #@ fl-builder
3435
- msgid "Never"
3436
- msgstr "Mai"
3437
 
3438
- #: modules/gallery/gallery.php:282
3439
- #: modules/photo/photo.php:433
 
 
3440
  #@ fl-builder
3441
- msgid "On Hover"
3442
- msgstr "Al passaggio del mouse"
3443
 
3444
- #: modules/gallery/gallery.php:283
3445
- #: modules/photo/photo.php:434
3446
  #@ fl-builder
3447
- msgid "Below Photo"
3448
- msgstr "Sotto la foto"
3449
 
3450
- #: modules/gallery/gallery.php:285
3451
  #@ fl-builder
3452
- 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."
3453
- msgstr "La didascalia utilizza qualunque testo si inserisca per ciascuna immagine nell'area didascalia del media manager. Vengono direttamente utilizzate anche le didascalie di SmugMug se le hai impostate nella tua galleria."
3454
 
3455
- #: modules/gallery/gallery.php:289
3456
- #: modules/slideshow/slideshow.php:335
 
3457
  #@ fl-builder
3458
- msgid "Click Action"
3459
- msgstr "Azione click"
3460
 
3461
- #: modules/gallery/gallery.php:292
 
3462
  #@ fl-builder
3463
- msgctxt "Click action."
3464
  msgid "None"
3465
  msgstr "Nessuna"
3466
 
3467
- #: modules/gallery/gallery.php:293
3468
- #: modules/photo/photo.php:452
3469
- #@ fl-builder
3470
- msgid "Lightbox"
3471
- msgstr "Lightbox"
3472
-
3473
- #: modules/gallery/gallery.php:294
3474
  #@ fl-builder
3475
- msgid "Photo Link"
3476
- msgstr "Collegamento foto"
3477
 
3478
- #: modules/heading/heading.php:15
 
3479
  #@ fl-builder
3480
- msgid "Display a title/page heading."
3481
- msgstr "Mostra titolo di pagina."
3482
 
3483
- #: modules/heading/heading.php:101
 
3484
  #@ fl-builder
3485
- msgid "HTML Tag"
3486
- msgstr "Tag HTML"
3487
 
3488
- #: modules/heading/heading.php:128
3489
- #: modules/heading/heading.php:188
 
3490
  #@ fl-builder
3491
- msgid "Custom Font Size"
3492
- msgstr "Dimensione carattere personalizzata"
3493
 
3494
- #: modules/heading/heading.php:137
 
 
 
3495
  #@ fl-builder
3496
- msgid "Mobile Structure"
3497
- msgstr "Struttura mobile"
3498
 
3499
- #: modules/heading/heading.php:158
 
 
3500
  #@ fl-builder
3501
- msgid "Custom Alignment"
3502
- msgstr "Allineamento personalizzato"
3503
 
3504
- #: modules/html/html.php:14
3505
  #@ fl-builder
3506
- msgid "HTML"
3507
- msgstr "HTML"
3508
 
3509
- #: modules/html/html.php:15
3510
  #@ fl-builder
3511
- msgid "Display raw HTML code."
3512
- msgstr "Mostra codice HTML."
3513
 
3514
- #: modules/icon/icon.php:15
3515
  #@ fl-builder
3516
- msgid "Display an icon and optional title."
3517
- msgstr "Mostra un'icona e un titolo opzionale."
3518
 
3519
- #: modules/icon-group/icon-group.php:14
3520
  #@ fl-builder
3521
- msgid "Icon Group"
3522
- msgstr "Gruppo di icone"
3523
 
3524
- #: modules/icon-group/icon-group.php:15
3525
  #@ fl-builder
3526
- msgid "Display a group of linked Font Awesome icons."
3527
- msgstr "Mostra un gruppo di icone Font Awesome."
3528
 
3529
- #: modules/icon-group/icon-group.php:125
3530
  #@ fl-builder
3531
- msgid "Add Icon"
3532
- msgstr "Aggiungi icona"
3533
 
3534
- #: modules/map/map.php:14
3535
  #@ fl-builder
3536
- msgid "Map"
3537
- msgstr "Mappa"
3538
 
3539
- #: modules/map/map.php:15
3540
  #@ fl-builder
3541
- msgid "Display a Google map."
3542
- msgstr "Mostra una mappa di Google."
3543
 
3544
- #: modules/map/map.php:33
 
3545
  #@ fl-builder
3546
- msgid "Address"
3547
- msgstr "Indirizzo"
3548
 
3549
- #: modules/map/map.php:34
 
 
 
 
 
3550
  #@ fl-builder
3551
- msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
3552
- msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
3553
 
3554
- #: modules/photo/photo.php:26
 
 
 
 
 
3555
  #@ fl-builder
3556
- msgid "Upload a photo or display one from the media library."
3557
- msgstr "Carica una foto o mostrane una dalla libreria multimediale."
3558
 
3559
- #: modules/photo/photo.php:375
3560
  #@ fl-builder
3561
- msgid "Photo Source"
3562
- msgstr "Sorgente foto"
3563
 
3564
- #: modules/photo/photo.php:379
3565
- #: modules/photo/photo.php:451
3566
  #@ fl-builder
3567
- msgid "URL"
3568
- msgstr "URL"
3569
 
3570
- #: modules/photo/photo.php:396
3571
  #@ fl-builder
3572
- msgid "Photo URL"
3573
- msgstr "URL foto"
3574
 
3575
- #: modules/photo/photo.php:397
3576
  #@ fl-builder
3577
- msgid "http://www.example.com/my-photo.jpg"
3578
- msgstr "http://www.example.com/my-photo.jpg"
 
3579
 
3580
- #: modules/photo/photo.php:404
3581
  #@ fl-builder
3582
- msgctxt "Crop."
3583
- msgid "None"
3584
- msgstr "Nessuno"
3585
 
3586
- #: modules/photo/photo.php:425
3587
- #: modules/photo/photo.php:439
3588
  #@ fl-builder
3589
- msgid "Caption"
3590
- msgstr "Didascalia"
3591
 
3592
- #: modules/photo/photo.php:429
 
3593
  #@ fl-builder
3594
- msgid "Show Caption"
3595
- msgstr "Mostra didascalia"
3596
 
3597
- #: modules/photo/photo.php:448
3598
  #@ fl-builder
3599
- msgid "Link Type"
3600
- msgstr "Tipo di collegamento"
3601
 
3602
- #: modules/photo/photo.php:450
3603
  #@ fl-builder
3604
- msgctxt "Link type."
3605
- msgid "None"
3606
- msgstr "Nessuno"
3607
 
3608
- #: modules/photo/photo.php:453
3609
  #@ fl-builder
3610
- msgid "Photo File"
3611
- msgstr "File foto"
3612
 
3613
- #: modules/photo/photo.php:464
3614
  #@ fl-builder
3615
- 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."
3616
- msgstr "Il tipo di collegamento si applica a cosa dovrebbe essere collegato al clic. È possibile scegliere un URL specifico, la singola foto o una pagina separata per la foto."
3617
 
3618
- #: modules/photo/photo.php:471
3619
- #: modules/slideshow/slideshow.php:356
3620
  #@ fl-builder
3621
- msgid "Link URL"
3622
- msgstr "URL collegamento"
3623
 
3624
- #: modules/post-grid/includes/frontend.php:41
3625
  #@ fl-builder
3626
- msgid "No posts found."
3627
- msgstr "Nessun post trovato."
3628
 
3629
- #: modules/post-grid/includes/post-feed.php:14
3630
- #: modules/post-grid/includes/post-grid.php:24
3631
- #, php-format
3632
  #@ fl-builder
3633
- msgctxt "%s stands for author name."
3634
- msgid "By %s"
3635
- msgstr "Di %s"
3636
 
3637
- #: modules/post-grid/post-grid.php:14
3638
  #@ fl-builder
3639
- msgid "Posts"
3640
- msgstr "Posts"
3641
 
3642
- #: modules/post-grid/post-grid.php:15
3643
  #@ fl-builder
3644
- msgid "Display a grid of your WordPress posts."
3645
- msgstr "Mostra una griglia con i tuoi post WordPress."
3646
 
3647
- #: modules/post-grid/post-grid.php:51
3648
  #@ fl-builder
3649
- msgid "Layout Style"
3650
- msgstr "Stile di layout"
3651
 
3652
- #: modules/post-grid/post-grid.php:54
3653
- #: modules/post-grid/post-grid.php:88
3654
  #@ fl-builder
3655
- msgid "Grid"
3656
- msgstr "Griglia"
3657
 
3658
- #: modules/post-grid/post-grid.php:56
3659
  #@ fl-builder
3660
- msgid "Feed"
3661
- msgstr "Feed"
3662
 
3663
- #: modules/post-grid/post-grid.php:71
3664
  #@ fl-builder
3665
- msgid "Pagination Style"
3666
- msgstr "Stile paginazione"
3667
 
3668
- #: modules/post-grid/post-grid.php:74
3669
  #@ fl-builder
3670
- msgid "Numbers"
3671
- msgstr "Numeri"
3672
 
3673
- #: modules/post-grid/post-grid.php:76
 
 
 
3674
  #@ fl-builder
3675
- msgctxt "Pagination style."
3676
- msgid "None"
3677
- msgstr "Nessuna"
3678
 
3679
- #: modules/post-grid/post-grid.php:81
3680
  #@ fl-builder
3681
- msgid "Posts Per Page"
3682
- msgstr "Post per pagina"
3683
 
3684
- #: modules/post-grid/post-grid.php:92
 
 
 
3685
  #@ fl-builder
3686
- msgid "Post Width"
3687
- msgstr "Larghezza post"
3688
 
3689
- #: modules/post-grid/post-grid.php:100
3690
  #@ fl-builder
3691
- msgid "Post Spacing"
3692
- msgstr "Spaziatura post"
3693
 
3694
- #: modules/post-grid/post-grid.php:109
 
3695
  #@ fl-builder
3696
- msgid "Featured Image"
3697
- msgstr "Immagine in evidenza"
 
3698
 
3699
- #: modules/post-grid/post-grid.php:116
3700
- #: modules/post-grid/post-grid.php:149
3701
- #: modules/post-grid/post-grid.php:158
3702
- #: modules/post-grid/post-grid.php:188
3703
- #: modules/post-grid/post-grid.php:202
3704
- #: modules/post-grid/post-grid.php:216
3705
  #@ fl-builder
3706
- msgid "Show"
3707
- msgstr "Mostra"
3708
 
3709
- #: modules/post-grid/post-grid.php:117
3710
- #: modules/post-grid/post-grid.php:150
3711
- #: modules/post-grid/post-grid.php:159
3712
- #: modules/post-grid/post-grid.php:189
3713
- #: modules/post-grid/post-grid.php:203
3714
- #: modules/post-grid/post-grid.php:217
3715
  #@ fl-builder
3716
- msgid "Hide"
3717
- msgstr "Nascondi"
3718
 
3719
- #: modules/post-grid/post-grid.php:130
3720
  #@ fl-builder
3721
- msgid "Above Text"
3722
- msgstr "Sopra il testo"
3723
 
3724
- #: modules/post-grid/post-grid.php:131
3725
  #@ fl-builder
3726
- msgid "Beside Text"
3727
- msgstr "Accanto al testo"
3728
 
3729
- #: modules/post-grid/post-grid.php:142
3730
  #@ fl-builder
3731
- msgid "Post Info"
3732
- msgstr "Informazioni post"
3733
 
3734
- #: modules/post-grid/post-grid.php:169
3735
  #@ fl-builder
3736
- msgid "Date Format"
3737
- msgstr "Formato data"
3738
 
3739
- #: modules/post-grid/post-grid.php:185
3740
  #@ fl-builder
3741
- msgid "Comments"
3742
- msgstr "Commenti"
3743
 
3744
- #: modules/post-grid/post-grid.php:213
3745
  #@ fl-builder
3746
- msgid "More Link"
3747
- msgstr "Collegamento \"Leggi tutto\""
3748
 
3749
- #: modules/post-grid/post-grid.php:227
3750
  #@ fl-builder
3751
- msgid "More Link Text"
3752
- msgstr "Testo \"Leggi tutto\""
3753
 
3754
- #: modules/post-grid/post-grid.php:228
3755
  #@ fl-builder
3756
- msgid "Read More"
3757
- msgstr "Leggi tutto"
3758
 
3759
- #: modules/pricing-table/pricing-table.php:14
3760
  #@ fl-builder
3761
- msgid "Pricing Table"
3762
- msgstr "Tabella dei prezzi"
3763
 
3764
- #: modules/pricing-table/pricing-table.php:15
3765
  #@ fl-builder
3766
- msgid "A simple pricing table generator."
3767
- msgstr "Un semplice generatore di tabelle dei prezzi."
3768
 
3769
- #: modules/pricing-table/pricing-table.php:26
3770
  #@ fl-builder
3771
- msgid "Pricing Boxes"
3772
- msgstr "Riquadri dei prezzi"
3773
 
3774
- #: modules/pricing-table/pricing-table.php:33
3775
  #@ fl-builder
3776
- msgid "Pricing Box"
3777
- msgstr "Riquadro prezzo"
3778
 
3779
- #: modules/pricing-table/pricing-table.php:50
3780
  #@ fl-builder
3781
- msgid "Box Spacing"
3782
- msgstr "Spaziatura riquadro"
3783
 
3784
- #: modules/pricing-table/pricing-table.php:53
3785
- #: modules/testimonials/testimonials.php:40
3786
  #@ fl-builder
3787
- msgid "Wide"
3788
- msgstr "Ampia"
3789
 
3790
- #: modules/pricing-table/pricing-table.php:54
3791
  #@ fl-builder
3792
- msgid "Tight"
3793
- msgstr "Stretta"
 
3794
 
3795
- #: modules/pricing-table/pricing-table.php:59
 
3796
  #@ fl-builder
3797
- msgid "Features Min Height"
3798
- msgstr "Min altezza caratteristiche"
3799
 
3800
- #: modules/pricing-table/pricing-table.php:63
3801
  #@ fl-builder
3802
- msgid "Use this to normalize the height of your boxes when they have different numbers of features."
3803
- msgstr "Usatelo per normalizzare l'altezza dei vostri riquadri quando hanno un diverso numero di funzionalità."
3804
 
3805
- #: modules/pricing-table/pricing-table.php:70
3806
  #@ fl-builder
3807
- msgctxt "Border size."
3808
- msgid "Wide"
3809
- msgstr "Ampio"
3810
 
3811
- #: modules/pricing-table/pricing-table.php:71
3812
  #@ fl-builder
3813
- msgctxt "Border size."
3814
- msgid "Tight"
3815
- msgstr "Stretto"
3816
 
3817
- #: modules/pricing-table/pricing-table.php:84
3818
  #@ fl-builder
3819
- msgid "Add Pricing Box"
3820
- msgstr "Aggiungi riquadro prezzo"
3821
 
3822
- #: modules/pricing-table/pricing-table.php:98
3823
  #@ fl-builder
3824
- msgid "Title Size"
3825
- msgstr "Dimensione del titolo"
3826
 
3827
- #: modules/pricing-table/pricing-table.php:107
3828
  #@ fl-builder
3829
- msgid "Price Box"
3830
- msgstr "Riquadro prezzo"
3831
 
3832
- #: modules/pricing-table/pricing-table.php:111
3833
  #@ fl-builder
3834
- msgid "Price"
3835
- msgstr "Prezzo"
3836
 
3837
- #: modules/pricing-table/pricing-table.php:115
3838
  #@ fl-builder
3839
- msgid "Duration"
3840
- msgstr "Durata"
3841
 
3842
- #: modules/pricing-table/pricing-table.php:116
 
3843
  #@ fl-builder
3844
- msgid "per Year"
3845
- msgstr "per anno"
3846
 
3847
- #: modules/pricing-table/pricing-table.php:120
3848
  #@ fl-builder
3849
- msgid "Price Size"
3850
- msgstr "Dimensione prezzo"
3851
 
3852
- #: modules/pricing-table/pricing-table.php:133
3853
  #@ fl-builder
3854
- msgid "Button Text"
3855
- msgstr "Testo del pulsante "
3856
 
3857
- #: modules/pricing-table/pricing-table.php:137
3858
  #@ fl-builder
3859
- msgid "Button URL"
3860
- msgstr "URL pulsante"
3861
 
3862
- #: modules/pricing-table/pricing-table.php:142
3863
  #@ fl-builder
3864
- msgctxt "Price features displayed in pricing box."
3865
- msgid "Features"
3866
- msgstr "Caratteristiche"
3867
 
3868
- #: modules/pricing-table/pricing-table.php:147
3869
  #@ fl-builder
3870
- msgid "One feature per line. HTML is okay."
3871
- msgstr "Una caratteristica per ogni riga. HTML va bene."
 
3872
 
3873
- #: modules/pricing-table/pricing-table.php:162
3874
  #@ fl-builder
3875
- msgid "Box Background"
3876
- msgstr "Sfondo del box"
3877
 
3878
- #: modules/pricing-table/pricing-table.php:167
3879
  #@ fl-builder
3880
- msgid "Box Foreground"
3881
- msgstr "Riempimento riquadro"
3882
 
3883
- #: modules/pricing-table/pricing-table.php:173
3884
  #@ fl-builder
3885
- msgid "Accent Color"
3886
- msgstr "Colore di accento"
 
3887
 
3888
- #: modules/pricing-table/pricing-table.php:178
3889
  #@ fl-builder
3890
- msgid "Accent Text Color"
3891
- msgstr "Colore accento del testo"
3892
 
3893
- #: modules/pricing-table/pricing-table.php:182
3894
  #@ fl-builder
3895
- msgid "Box Top Margin"
3896
- msgstr "Margine superiore del box"
3897
 
3898
- #: modules/rich-text/rich-text.php:15
3899
  #@ fl-builder
3900
- msgid "A WYSIWYG text editor."
3901
- msgstr "Un editor di testo WYSIWYG."
3902
 
3903
- #: modules/separator/separator.php:14
3904
  #@ fl-builder
3905
- msgid "Separator"
3906
- msgstr "Separatore"
3907
 
3908
- #: modules/separator/separator.php:15
3909
  #@ fl-builder
3910
- msgid "A divider line to separate content."
3911
- msgstr "Una linea divisore per separare il contenuto."
3912
 
3913
- #: modules/separator/separator.php:85
3914
  #@ fl-builder
3915
- msgid "The type of border to use. Double borders must have a height of at least 3px to render properly."
3916
- msgstr "Il tipo di bordo da utilizzare. I bordi doppi devono avere un'altezza di almeno 3px per essere visualizzati correttamente."
3917
 
3918
- #: modules/sidebar/includes/settings-general.php:5
3919
- #: modules/sidebar/sidebar.php:14
3920
  #@ fl-builder
3921
- msgid "Sidebar"
3922
- msgstr "Sidebar"
3923
 
3924
- #: modules/sidebar/sidebar.php:15
3925
  #@ fl-builder
3926
- msgid "Display a WordPress sidebar that has been registered by the current theme."
3927
- msgstr "Mostra una sidebar di WordPress che è stata registrata dal tema corrente."
3928
 
3929
- #: modules/slideshow/slideshow.php:14
3930
  #@ fl-builder
3931
- msgid "Slideshow"
3932
- msgstr "Slideshow"
3933
 
3934
- #: modules/slideshow/slideshow.php:15
 
 
 
 
 
3935
  #@ fl-builder
3936
- msgid "Display multiple photos in a slideshow view."
3937
- msgstr "Mostra più foto in uno slideshow."
3938
 
3939
- #: modules/slideshow/slideshow.php:302
3940
  #@ fl-builder
3941
- msgid "Skin Color"
3942
- msgstr "Colore skin"
3943
 
3944
- #: modules/slideshow/slideshow.php:305
3945
  #@ fl-builder
3946
- msgctxt "Color."
3947
- msgid "Light"
3948
- msgstr "Chiaro"
3949
 
3950
- #: modules/slideshow/slideshow.php:306
 
3951
  #@ fl-builder
3952
- msgctxt "Color."
3953
- msgid "Dark"
3954
- msgstr "Scuro"
3955
 
3956
- #: modules/slideshow/slideshow.php:308
3957
  #@ fl-builder
3958
- msgid "If your overall theme/images are lighter in color, light will display buttons in a darker color scheme and vice versa for dark."
3959
- msgstr "Se complessivamente il tuo tema/immagini sono di colore chiaro, l'impostazione Chiaro mostrerà i pulsanti con uno schema di colore più scuro e viceversa per l'impostazione Scuro."
3960
 
3961
- #: modules/slideshow/slideshow.php:318
 
3962
  #@ fl-builder
3963
- 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."
3964
- msgstr "Ritaglia impostatato su No adatterà le immagini dello slideshow all'altezza che specifichi mantenendo la larghezza in proporzione, mentre Ritaglia impostato su Si adatterà le immagini dello slideshow su tutti i lati dell'area di contenuto tagliando a destra e sinistra per adattarsi all'altezza che specifichi."
3965
 
3966
- #: modules/slideshow/slideshow.php:322
3967
  #@ fl-builder
3968
- msgid "Disable Right-Click"
3969
- msgstr "Disabilitare il tasto destro del mouse"
3970
 
3971
- #: modules/slideshow/slideshow.php:342
3972
  #@ fl-builder
3973
- msgctxt "Click action type."
3974
- msgid "None"
3975
- msgstr "Nessuna"
3976
 
3977
- #: modules/slideshow/slideshow.php:366
3978
  #@ fl-builder
3979
- msgid "Playback"
3980
- msgstr "Riproduzione"
 
3981
 
3982
- #: modules/slideshow/slideshow.php:392
3983
  #@ fl-builder
3984
- msgctxt "Slideshow transition."
3985
- msgid "None"
3986
- msgstr "Nessuna"
3987
 
3988
- #: modules/slideshow/slideshow.php:429
3989
  #@ fl-builder
3990
- msgid "Controls"
3991
- msgstr "Controlli"
 
3992
 
3993
- #: modules/slideshow/slideshow.php:436
3994
- #: modules/slideshow/slideshow.php:485
3995
  #@ fl-builder
3996
- msgid "Navigation Arrows"
3997
- msgstr "Frecce di navigazione"
 
3998
 
3999
- #: modules/slideshow/slideshow.php:442
4000
  #@ fl-builder
4001
- 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."
4002
- msgstr "Le frecce di navigazione permettono al visitatore di muoversi liberamente tra le immagini nella presentazione. Queste sono grandi frecce sovrapposte alle immagini dello slideshow che sono separate dalle frecce di navigazione nella barra di controllo."
 
4003
 
4004
- #: modules/slideshow/slideshow.php:447
4005
  #@ fl-builder
4006
- msgid "Control Bar"
4007
- msgstr "Barra di controllo"
4008
 
4009
- #: modules/slideshow/slideshow.php:451
4010
  #@ fl-builder
4011
- msgid "Nav Type"
4012
- msgstr "Tipo di navigazione"
4013
 
4014
- #: modules/slideshow/slideshow.php:454
 
4015
  #@ fl-builder
4016
- msgctxt "Nav type."
4017
- msgid "None"
4018
- msgstr "Nessuna"
4019
 
4020
- #: modules/slideshow/slideshow.php:455
 
4021
  #@ fl-builder
4022
- msgid "Buttons"
4023
- msgstr "Pulsanti"
4024
 
4025
- #: modules/slideshow/slideshow.php:456
4026
- #: modules/slideshow/slideshow.php:586
4027
  #@ fl-builder
4028
- msgid "Thumbs"
4029
- msgstr "Miniature"
4030
 
4031
- #: modules/slideshow/slideshow.php:471
4032
  #@ fl-builder
4033
- msgid "Nav Position"
4034
- msgstr "Posizione della navigazione"
4035
 
4036
- #: modules/slideshow/slideshow.php:481
 
4037
  #@ fl-builder
4038
- msgid "Control Bar Buttons"
4039
- msgstr "Pulsanti in barra di controllo"
4040
 
4041
- #: modules/slideshow/slideshow.php:494
4042
  #@ fl-builder
4043
- msgid "Play Button"
4044
- msgstr "Pulsante Play"
 
4045
 
4046
- #: modules/slideshow/slideshow.php:503
 
4047
  #@ fl-builder
4048
- msgid "Fullscreen Button"
4049
- msgstr "Pulsante FullScreen"
4050
 
4051
- #: modules/slideshow/slideshow.php:512
4052
  #@ fl-builder
4053
- msgid "Photo Count"
4054
- msgstr "Contatore foto"
4055
 
4056
- #: modules/slideshow/slideshow.php:521
4057
  #@ fl-builder
4058
- msgid "Thumbs Button"
4059
- msgstr "Pulsante miniatura"
4060
 
4061
- #: modules/slideshow/slideshow.php:530
4062
  #@ fl-builder
4063
- msgid "Caption Button"
4064
- msgstr "Pulsante didascalia"
4065
 
4066
- #: modules/slideshow/slideshow.php:539
 
4067
  #@ fl-builder
4068
- msgid "Social Button"
4069
- msgstr "Pulsante sociale"
4070
 
4071
- #: modules/slideshow/slideshow.php:549
4072
  #@ fl-builder
4073
- msgid "Control Bar Overlay"
4074
- msgstr "Sovrapposizione della barra di controllo"
4075
 
4076
- #: modules/slideshow/slideshow.php:553
4077
  #@ fl-builder
4078
- msgid "Overlay Enabled"
4079
- msgstr "Sovrapposizione abilitata"
4080
 
4081
- #: modules/slideshow/slideshow.php:564
4082
  #@ fl-builder
4083
- msgid "Control bar overlay specifies if the control bar buttons you choose overlay your slideshow images or site below the slideshow completely."
4084
- msgstr "La sovrapposizione della barra di controllo specifica se i pulsanti della barra controllo che scegliete saranno sovrapposti alle immagini dello slideshow o se saranno collocati sotto lo slideshow."
4085
 
4086
- #: modules/slideshow/slideshow.php:568
4087
  #@ fl-builder
4088
- msgid "Overlay Hide"
4089
- msgstr "Nascondi overlay"
4090
 
4091
- #: modules/slideshow/slideshow.php:574
4092
  #@ fl-builder
4093
- msgid "Overlay hide will hide the control bar after however many seconds you specify below. They will reappear upon mouse over."
4094
- msgstr "Nascondi overlay nasconde la barra di controllo dopo un certo numero di secondi specificato qui sotto. Essa riapparirà passando sopra con il mouse."
4095
 
4096
- #: modules/slideshow/slideshow.php:578
4097
  #@ fl-builder
4098
- msgid "Overlay Hide Delay"
4099
- msgstr "Ritardo nascondi overlay"
4100
 
4101
- #: modules/slideshow/slideshow.php:590
4102
  #@ fl-builder
4103
- msgid "Thumbs Size"
4104
- msgstr "Dimensione miniature"
4105
 
4106
- #: modules/slideshow/slideshow.php:599
4107
  #@ fl-builder
4108
- msgid "Social"
4109
- msgstr "Social"
4110
 
4111
- #: modules/slideshow/slideshow.php:603
4112
  #@ fl-builder
4113
- msgid "Facebook Button"
4114
- msgstr "Pulsante Facebook"
4115
 
4116
- #: modules/slideshow/slideshow.php:615
4117
  #@ fl-builder
4118
- msgid "Twitter Button"
4119
- msgstr "Pulsante Twitter"
4120
 
4121
- #: modules/slideshow/slideshow.php:627
4122
  #@ fl-builder
4123
- msgid "Google Plus Button"
4124
- msgstr "Pulsante Google Plus"
4125
 
4126
- #: modules/slideshow/slideshow.php:639
4127
  #@ fl-builder
4128
- msgid "Pinterest Button"
4129
- msgstr "Pulsante Pinterest"
4130
 
4131
- #: modules/social-buttons/social-buttons.php:14
4132
  #@ fl-builder
4133
- msgid "Social Buttons"
4134
- msgstr "Pulsanti Social"
4135
 
4136
- #: modules/social-buttons/social-buttons.php:15
4137
  #@ fl-builder
4138
- msgid "Displays social buttons."
4139
- msgstr "Mostra i pulsanti sociali."
4140
 
4141
- #: modules/social-buttons/social-buttons.php:71
 
4142
  #@ fl-builder
4143
- msgid "Target URL"
4144
- msgstr "URL di destinazione"
4145
 
4146
- #: modules/social-buttons/social-buttons.php:75
4147
  #@ fl-builder
4148
- msgid "Current Page"
4149
- msgstr "Pagina corrente"
4150
 
4151
- #: modules/social-buttons/social-buttons.php:82
4152
  #@ fl-builder
4153
- 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."
4154
- msgstr "Il campo URL di destinazione è correlato alla pagina con cui vuoi interfacciare le tue icone social. Ad esempio, se si visualizza Facebook, l'utente farà \"Like\" su ciò che hai inserito in questo campo."
4155
 
4156
- #: modules/social-buttons/social-buttons.php:89
4157
  #@ fl-builder
4158
- msgid "Custom URL"
4159
- msgstr "URL personalizzato"
 
4160
 
4161
- #: modules/social-buttons/social-buttons.php:107
 
4162
  #@ fl-builder
4163
- msgid "Show Facebook"
4164
- msgstr "Mostra Facebook"
4165
 
4166
- #: modules/social-buttons/social-buttons.php:116
4167
  #@ fl-builder
4168
- msgid "Show Twitter"
4169
- msgstr "Mostra Twitter"
4170
 
4171
- #: modules/social-buttons/social-buttons.php:125
4172
  #@ fl-builder
4173
- msgid "Show Google+"
4174
- msgstr "Mostra Google+"
4175
 
4176
- #: modules/tabs/tabs.php:14
4177
  #@ fl-builder
4178
- msgid "Tabs"
4179
- msgstr "Schede"
 
4180
 
4181
- #: modules/tabs/tabs.php:15
4182
  #@ fl-builder
4183
- msgid "Display a collection of tabbed content."
4184
- msgstr "Mostra una raccolta di contenuti a schede."
4185
 
4186
- #: modules/tabs/tabs.php:55
4187
  #@ fl-builder
4188
- msgid "Horizontal"
4189
- msgstr "Orizzontale"
4190
 
4191
- #: modules/tabs/tabs.php:56
 
4192
  #@ fl-builder
4193
- msgid "Vertical"
4194
- msgstr "Verticale"
4195
 
4196
- #: modules/testimonials/testimonials.php:14
4197
- #: modules/testimonials/testimonials.php:60
4198
- #: modules/testimonials/testimonials.php:174
4199
  #@ fl-builder
4200
- msgid "Testimonials"
4201
- msgstr "Testimonianze"
 
4202
 
4203
- #: modules/testimonials/testimonials.php:15
4204
  #@ fl-builder
4205
- msgid "An animated tesimonials area."
4206
- msgstr "Un'area animata per i testimonials."
4207
 
4208
- #: modules/testimonials/testimonials.php:41
4209
  #@ fl-builder
4210
- msgid "Compact"
4211
- msgstr "Compatto"
4212
 
4213
- #: modules/testimonials/testimonials.php:51
 
4214
  #@ fl-builder
4215
- msgid "Wide is for 1 column rows, compact is for multi-column rows."
4216
- msgstr "Ampia è per righe con 1 colonna, compatta è per righe multi-colonna."
4217
 
4218
- #: modules/testimonials/testimonials.php:78
 
4219
  #@ fl-builder
4220
- msgid "Slider Settings"
4221
- msgstr "Impostazioni Slider"
4222
 
4223
- #: modules/testimonials/testimonials.php:135
4224
  #@ fl-builder
4225
- msgid "Arrow Color"
4226
- msgstr "Colore freccia "
4227
 
4228
- #: modules/testimonials/testimonials.php:165
 
4229
  #@ fl-builder
4230
- msgid "Dot Color"
4231
- msgstr "Colore punto"
4232
 
4233
- #: modules/testimonials/testimonials.php:181
 
4234
  #@ fl-builder
4235
- msgid "Testimonial"
4236
- msgstr "Testimonial"
4237
 
4238
- #: modules/testimonials/testimonials.php:197
4239
  #@ fl-builder
4240
- msgid "Add Testimonial"
4241
- msgstr "Aggiungi Testimonial"
4242
 
4243
- #: modules/video/video.php:20
4244
  #@ fl-builder
4245
- msgid "Render a WordPress or embedable video."
4246
- msgstr "Visualizza un video caricato in WordPress o embed."
4247
 
4248
- #: modules/video/video.php:83
4249
  #@ fl-builder
4250
- msgid "Video Type"
4251
- msgstr "Tipo di video"
4252
 
4253
- #: modules/video/video.php:87
4254
  #@ fl-builder
4255
- msgid "Embed"
4256
- msgstr "Embed"
4257
 
4258
- #: modules/video/video.php:104
4259
  #@ fl-builder
4260
- msgctxt "Video preview/fallback image."
4261
- msgid "Poster"
4262
- msgstr "Poster"
4263
 
4264
- #: modules/video/video.php:120
 
4265
  #@ fl-builder
4266
- msgid "Loop"
4267
- msgstr "Ripeti"
4268
 
4269
- #: modules/widget/includes/frontend.php:35
4270
- #: modules/widget/includes/settings-general.php:44
4271
- #, php-format
4272
  #@ fl-builder
4273
- msgctxt "%s stands for widget slug."
4274
- msgid "%s no longer exists."
4275
- msgstr "%s non esiste più."
4276
 
4277
- #: modules/widget/widget.php:14
 
4278
  #@ fl-builder
4279
- msgid "Widget"
4280
- msgstr "Widget"
4281
 
4282
- #: modules/widget/widget.php:15
 
4283
  #@ fl-builder
4284
- msgid "Display a WordPress widget."
4285
- msgstr "Mostra un widget di WordPress."
4286
 
4287
- #: modules/woocommerce/woocommerce.php:16
4288
  #@ fl-builder
4289
- msgid "WooCommerce"
4290
- msgstr "WooCommerce"
4291
 
4292
- #: modules/woocommerce/woocommerce.php:17
 
4293
  #@ fl-builder
4294
- msgid "Display products or categories from your WooCommerce store."
4295
- msgstr "Mostra prodotti o categorie dal tuo negozio WooCommerce."
4296
 
4297
- #: modules/woocommerce/woocommerce.php:60
 
4298
  #@ fl-builder
4299
- msgid "Choose..."
4300
- msgstr "Scegli..."
4301
 
4302
- #: modules/woocommerce/woocommerce.php:61
 
4303
  #@ fl-builder
4304
- msgid "Single Product"
4305
- msgstr "Singolo prodotto"
4306
 
4307
- #: modules/woocommerce/woocommerce.php:62
4308
- #: modules/woocommerce/woocommerce.php:113
4309
  #@ fl-builder
4310
- msgid "Multiple Products"
4311
- msgstr "Prodotti multipli"
4312
 
4313
- #: modules/woocommerce/woocommerce.php:63
 
4314
  #@ fl-builder
4315
- msgid "\"Add to Cart\" Button"
4316
- msgstr "Pulsante \"Aggiungi al carrello\""
4317
 
4318
- #: modules/woocommerce/woocommerce.php:64
 
4319
  #@ fl-builder
4320
- msgid "Categories"
4321
- msgstr "Categorie"
4322
 
4323
- #: modules/woocommerce/woocommerce.php:65
4324
  #@ fl-builder
4325
- msgid "Cart"
4326
- msgstr "Carrello"
4327
 
4328
- #: modules/woocommerce/woocommerce.php:66
4329
  #@ fl-builder
4330
- msgid "Checkout"
4331
- msgstr "Checkout"
4332
 
4333
- #: modules/woocommerce/woocommerce.php:67
4334
  #@ fl-builder
4335
- msgid "Order Tracking"
4336
- msgstr "Tracciabilità ordine"
4337
 
4338
- #: modules/woocommerce/woocommerce.php:68
4339
  #@ fl-builder
4340
- msgid "My Account"
4341
- msgstr "Il mio Account"
4342
 
4343
- #: modules/woocommerce/woocommerce.php:87
 
4344
  #@ fl-builder
4345
- msgid "Product ID"
4346
- msgstr "ID prodotto"
4347
 
4348
- #: modules/woocommerce/woocommerce.php:90
4349
  #@ fl-builder
4350
- 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."
4351
- msgstr "Quando si aggiungono prodotti nell'area prodotti WooCommerce, ad ognuno verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico visitando l'area prodotti e passando il mouse sopra al prodotto. L'ID univoco sarà il primo attributo."
4352
 
4353
- #: modules/woocommerce/woocommerce.php:94
4354
  #@ fl-builder
4355
- msgid "Parent Category ID"
4356
- msgstr "ID categoria genitore"
4357
 
4358
- #: modules/woocommerce/woocommerce.php:97
4359
  #@ fl-builder
4360
- 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."
4361
- msgstr "Quando si aggiungono categorie di prodotto nell'area prodotti WooCommerce, a ciascuna verrà assegnato un ID univoco. Questo ID è reperibile passando il mouse sulla categoria nell'area categorie sotto Prodotti e guardando l'URL visualizzato nel browser. L'ID sarà l'unico valore numerico nell'URL."
4362
 
4363
- #: modules/woocommerce/woocommerce.php:101
4364
- #: modules/woocommerce/woocommerce.php:172
4365
  #@ fl-builder
4366
- msgid "Columns"
4367
- msgstr "Colonne"
4368
 
4369
- #: modules/woocommerce/woocommerce.php:117
4370
  #@ fl-builder
4371
- msgid "Products Source"
4372
- msgstr "Sorgente prodotti"
4373
 
4374
- #: modules/woocommerce/woocommerce.php:120
4375
  #@ fl-builder
4376
- msgid "Products IDs"
4377
- msgstr "ID prodotti "
4378
 
4379
- #: modules/woocommerce/woocommerce.php:121
4380
  #@ fl-builder
4381
- msgid "Product Category"
4382
- msgstr "Categoria prodotto"
 
4383
 
4384
- #: modules/woocommerce/woocommerce.php:122
4385
  #@ fl-builder
4386
- msgid "Recent Products"
4387
- msgstr "Prodotti recenti"
4388
 
4389
- #: modules/woocommerce/woocommerce.php:123
4390
  #@ fl-builder
4391
- msgid "Featured Products"
4392
- msgstr "Prodotti in vetrina"
4393
 
4394
- #: modules/woocommerce/woocommerce.php:124
4395
  #@ fl-builder
4396
- msgid "Sale Products"
4397
- msgstr "Prodotti in offerta"
4398
 
4399
- #: modules/woocommerce/woocommerce.php:125
4400
  #@ fl-builder
4401
- msgid "Best Selling Products"
4402
- msgstr "Prodotti più venduti"
4403
 
4404
- #: modules/woocommerce/woocommerce.php:126
4405
  #@ fl-builder
4406
- msgid "Top Rated Products"
4407
- msgstr "Prodotti più votati"
4408
 
4409
- #: modules/woocommerce/woocommerce.php:154
4410
  #@ fl-builder
4411
- msgid "Product IDs"
4412
- msgstr "ID prodotti"
4413
 
4414
- #: modules/woocommerce/woocommerce.php:156
4415
  #@ fl-builder
4416
- 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."
4417
- msgstr "Quando si aggiungono prodotti nell'area prodotti WooCommerce, a ciascuno verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico visitando l'area prodotti e toccando con il mouse il prodotto. L'ID univoco sarà il primo attributo, qui è possibile aggiungere diversi ID separati da una virgola."
4418
 
4419
- #: modules/woocommerce/woocommerce.php:160
4420
  #@ fl-builder
4421
- msgid "Category Slug"
4422
- msgstr "Slug della categoria "
4423
 
4424
- #: modules/woocommerce/woocommerce.php:162
4425
  #@ fl-builder
4426
- 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."
4427
- msgstr "Quando si aggiungono le categorie di prodotto nell'area prodotti WooCommerce, a ciasuna verrà assegnato uno slug univoco o è possibile modificare e aggiungere il proprio. Questi slug si possono trovare nell'area categorie sotto prodotti WooCommerce. Qui puoi aggiungerne diversi separati da una virgola."
4428
 
4429
- #: modules/woocommerce/woocommerce.php:166
4430
  #@ fl-builder
4431
- msgid "Number of Products"
4432
- msgstr "Numero di prodotti"
4433
 
4434
- #: modules/woocommerce/woocommerce.php:183
4435
  #@ fl-builder
4436
- msgid "Sort By"
4437
- msgstr "Ordina per"
4438
 
4439
- #: modules/woocommerce/woocommerce.php:186
4440
  #@ fl-builder
4441
- msgctxt "Sort by."
4442
- msgid "Default"
4443
- msgstr "Predefinito"
4444
 
4445
- #: modules/woocommerce/woocommerce.php:187
4446
  #@ fl-builder
4447
- msgid "Popularity"
4448
- msgstr "Popolarità"
4449
 
4450
- #: modules/woocommerce/woocommerce.php:188
4451
  #@ fl-builder
4452
- msgid "Rating"
4453
- msgstr "Valutazione"
4454
 
4455
- #: classes/class-fl-builder-admin-settings.php:183
4456
- #: includes/admin-settings-cache.php:3
4457
  #@ fl-builder
4458
- msgid "Cache"
4459
- msgstr "Cache"
4460
 
4461
- #: classes/class-fl-builder-service-aweber.php:72
4462
  #@ fl-builder
4463
- msgid "Error: You must provide an Authorization Code."
4464
- msgstr "Errore: devi fornire un codice di autorizzazione."
4465
 
4466
- #: classes/class-fl-builder-service-aweber.php:76
4467
  #@ fl-builder
4468
- msgid "Error: Please enter a valid Authorization Code."
4469
- msgstr "Errore: si prega di inserire un codice di autorizzazione valido."
4470
 
4471
- #: classes/class-fl-builder-service-aweber.php:127
4472
  #@ fl-builder
4473
- msgid "Authorization Code"
4474
- msgstr "Codice di autorizzazione"
4475
 
4476
- #: classes/class-fl-builder-service-aweber.php:128
4477
- #, php-format
4478
  #@ fl-builder
4479
- msgid "Please register this website with AWeber to get your Authorization Code. <a%s>Register Now</a>"
4480
- msgstr "Si prega di registrare questo sito su AWeber per ottenere il tuo codice di autorizzazione. <a%s>Registra ora</a>"
4481
 
4482
- #: classes/class-fl-builder-service-aweber.php:219
4483
  #@ fl-builder
4484
- msgid "There was an error subscribing to AWeber. The account is no longer connected."
4485
- msgstr "Si è verificato un errore nell'iscrizione ad Aweber. L'account non è più connesso. "
4486
 
4487
- #: classes/class-fl-builder-service-aweber.php:242
4488
  #@ fl-builder
4489
- msgid "There was an error connecting to AWeber. Please try again."
4490
- msgstr "Si è verificato un errore nella connessione ad AWeber. Si prega di riprovare."
4491
 
4492
- #: classes/class-fl-builder-service-aweber.php:247
4493
- #, php-format
4494
  #@ fl-builder
4495
- msgid "There was an error subscribing to AWeber. %s"
4496
- msgstr "Si è verificato un'errore nell'iscrizione ad AWeber. %s"
4497
 
4498
- #: classes/class-fl-builder-service-campaign-monitor.php:55
4499
- #: classes/class-fl-builder-service-constant-contact.php:48
4500
- #: classes/class-fl-builder-service-getresponse.php:67
4501
- #: classes/class-fl-builder-service-madmimi.php:73
4502
- #: classes/class-fl-builder-service-mailchimp.php:67
4503
  #@ fl-builder
4504
- msgid "Error: You must provide an API key."
4505
- msgstr "Errore: devi fornire una chiave API."
4506
 
4507
- #: classes/class-fl-builder-service-campaign-monitor.php:67
4508
- #: classes/class-fl-builder-service-campaign-monitor.php:129
4509
- #: classes/class-fl-builder-service-getresponse.php:76
4510
- #: classes/class-fl-builder-service-getresponse.php:132
4511
  #@ fl-builder
4512
- msgid "Error: Please check your API key."
4513
- msgstr "Errore: si prega di verificare la chiave API."
4514
 
4515
- #: classes/class-fl-builder-service-campaign-monitor.php:88
4516
- #: classes/class-fl-builder-service-constant-contact.php:88
4517
- #: classes/class-fl-builder-service-getresponse.php:100
4518
- #: classes/class-fl-builder-service-madmimi.php:121
4519
- #: classes/class-fl-builder-service-mailchimp.php:100
4520
  #@ fl-builder
4521
- msgid "API Key"
4522
- msgstr "Chiave API"
4523
 
4524
- #: classes/class-fl-builder-service-campaign-monitor.php:89
4525
  #@ fl-builder
4526
- msgid "Your API key can be found in your Campaign Monitor account under Account Settings > API Key."
4527
- msgstr "Puoi trovare la tua chiave API nell'account Campaign Monitor sotto Impostazioni Account > Chiave API."
4528
 
4529
- #: classes/class-fl-builder-service-campaign-monitor.php:236
4530
  #@ fl-builder
4531
- msgid "There was an error subscribing to Campaign Monitor. The account is no longer connected."
4532
- msgstr "Si è verificato un errore nell'iscrizione a Campaign Monitor. L'account non è più connesso."
 
4533
 
4534
- #: classes/class-fl-builder-service-campaign-monitor.php:253
4535
  #@ fl-builder
4536
- msgid "There was an error subscribing to Campaign Monitor."
4537
- msgstr "Si è verificato un'errore nell'iscrizione a Campaign Monitor."
 
4538
 
4539
- #: classes/class-fl-builder-service-constant-contact.php:52
4540
  #@ fl-builder
4541
- msgid "Error: You must provide an access token."
4542
- msgstr "Errore: devi fornire un token di accesso."
4543
 
4544
- #: classes/class-fl-builder-service-constant-contact.php:61
4545
- #: classes/class-fl-builder-service-constant-contact.php:134
4546
- #, php-format
4547
  #@ fl-builder
4548
- msgid "Error: Could not connect to Constant Contact. %s"
4549
- msgstr "Errore: impossibile connettersi a Constant Contact. %s "
4550
 
4551
- #: classes/class-fl-builder-service-constant-contact.php:89
4552
  #@ fl-builder
4553
- msgid "Your Constant Contact API key."
4554
- msgstr "La tua chiave API Constant Contact."
4555
 
4556
- #: classes/class-fl-builder-service-constant-contact.php:99
4557
  #@ fl-builder
4558
- msgid "Access Token"
4559
- msgstr "Token di accesso"
4560
 
4561
- #: classes/class-fl-builder-service-constant-contact.php:100
4562
  #@ fl-builder
4563
- msgid "Your Constant Contact access token."
4564
- msgstr "Il tuo token di accesso a Constant Contact"
4565
 
4566
- #: classes/class-fl-builder-service-constant-contact.php:101
4567
- #, php-format
4568
  #@ fl-builder
4569
- msgid "You must register a <a%s>Developer Account</a> with Constant Contact to obtain an API key and access token. Please see <a%s>Getting an API key</a> for complete instructions."
4570
- msgstr "Devi registrare un <a%s>Account sviluppatore</a> su Constant Contact per ottenere una chiave API e un token di accesso, Si prega di consultare <a%s>Prendere una chiave API</a> per istruzioni complete."
4571
 
4572
- #: classes/class-fl-builder-service-constant-contact.php:193
4573
  #@ fl-builder
4574
- msgid "There was an error subscribing to Constant Contact. The account is no longer connected."
4575
- msgstr "Si è verificato un errore nell'iscrizione a Constant Contact. L'account non è più connesso."
4576
 
4577
- #: classes/class-fl-builder-service-constant-contact.php:245
4578
- #: classes/class-fl-builder-service-constant-contact.php:279
4579
- #, php-format
4580
  #@ fl-builder
4581
- msgid "There was an error subscribing to Constant Contact. %s"
4582
- msgstr "Si è verificato un errore nell'iscrizione a Constant Contact. %s"
4583
 
4584
- #: classes/class-fl-builder-service-getresponse.php:101
4585
  #@ fl-builder
4586
- msgid "Your API key can be found in your GetResponse account under My Account > GetResponse API."
4587
- msgstr "Puoi trovare la tua chiave API nel tuo account su GetResponse sotto Il mio account > GetResponse API."
4588
 
4589
- #: classes/class-fl-builder-service-getresponse.php:191
4590
  #@ fl-builder
4591
- msgid "There was an error subscribing to GetResponse. The account is no longer connected."
4592
- msgstr "Si è verificato un errore nell'iscrizione a GetResponse. L'account non è più connesso."
 
4593
 
4594
- #: classes/class-fl-builder-service-getresponse.php:202
4595
- #, php-format
4596
  #@ fl-builder
4597
- msgid "There was an error subscribing to GetResponse. %s"
4598
- msgstr "Si è verificato un errore nell'iscrizione a GetResponse. %s"
4599
 
4600
- #: classes/class-fl-builder-service-icontact.php:75
4601
  #@ fl-builder
4602
- msgid "Error: You must provide a username."
4603
- msgstr "Errore: devi fornire un nome utente."
4604
 
4605
- #: classes/class-fl-builder-service-icontact.php:79
4606
  #@ fl-builder
4607
- msgid "Error: You must provide a app ID."
4608
- msgstr "Errore: devi fornire un ID applicazione."
4609
 
4610
- #: classes/class-fl-builder-service-icontact.php:83
4611
  #@ fl-builder
4612
- msgid "Error: You must provide a app password."
4613
- msgstr "Errore: devi fornire una password applicazione."
4614
 
4615
- #: classes/class-fl-builder-service-icontact.php:104
4616
- #: classes/class-fl-builder-service-icontact.php:188
4617
- #, php-format
4618
  #@ fl-builder
4619
- msgid "Error: Could not connect to iContact. %s"
4620
- msgstr "Errore: non è possibile connettersi ad iContact. %s"
4621
 
4622
- #: classes/class-fl-builder-service-icontact.php:125
4623
  #@ fl-builder
4624
- msgid "Username"
4625
- msgstr "Nome utente"
4626
 
4627
- #: classes/class-fl-builder-service-icontact.php:126
4628
  #@ fl-builder
4629
- msgid "Your iContact username."
4630
- msgstr "Il tuo nome utente iContact."
4631
 
4632
- #: classes/class-fl-builder-service-icontact.php:136
4633
  #@ fl-builder
4634
- msgid "App ID"
4635
- msgstr "ID applicazione"
4636
 
4637
- #: classes/class-fl-builder-service-icontact.php:137
4638
  #@ fl-builder
4639
- msgid "Your iContact app ID."
4640
- msgstr "Il tuo ID applicazione iContact."
4641
 
4642
- #: classes/class-fl-builder-service-icontact.php:147
4643
  #@ fl-builder
4644
- msgid "App Password"
4645
- msgstr "Password applicazione"
4646
 
4647
- #: classes/class-fl-builder-service-icontact.php:148
 
4648
  #@ fl-builder
4649
- msgid "Your iContact app password."
4650
- msgstr "La tua password applicazione iContact."
4651
 
4652
- #: classes/class-fl-builder-service-icontact.php:149
4653
- #, php-format
4654
  #@ fl-builder
4655
- msgid "You must <a%s>create an app</a> in iContact to obtain an app ID and password. Please see <a%s>the iContact docs</a> for complete instructions."
4656
- msgstr "Devi <a%s>creare un'applicazione</a> in iContact per ottenere un ID applicazione e password. Si prega di consultare <a%s>la documentazione di iContact</a> per le istruzioni complete."
4657
 
4658
- #: classes/class-fl-builder-service-icontact.php:244
4659
  #@ fl-builder
4660
- msgid "There was an error subscribing to iContact. The account is no longer connected."
4661
- msgstr "Si è verificato un errore nell'iscrizione ad iContact. L'account non è più connesso."
4662
 
4663
- #: classes/class-fl-builder-service-icontact.php:280
4664
- #, php-format
4665
  #@ fl-builder
4666
- msgid "There was an error subscribing to iContact. %s"
4667
- msgstr "Si è verificato un errore nell'iscrizione a iContact. %s"
4668
 
4669
- #: classes/class-fl-builder-service-madmimi.php:69
4670
  #@ fl-builder
4671
- msgid "Error: You must provide an email address."
4672
- msgstr "Errore: devi fornire un indirizzo email."
4673
 
4674
- #: classes/class-fl-builder-service-madmimi.php:83
4675
  #@ fl-builder
4676
- msgid "Unable to connect to Mad Mimi. Please check your credentials."
4677
- msgstr "Impossibile connettersi a Mad Mimi. Si prega di verificare le credenziali."
 
4678
 
4679
- #: classes/class-fl-builder-service-madmimi.php:110
4680
- #: modules/subscribe-form/includes/frontend.php:11
4681
  #@ fl-builder
4682
- msgid "Email Address"
4683
- msgstr "Indirizzo email"
 
4684
 
4685
- #: classes/class-fl-builder-service-madmimi.php:111
4686
  #@ fl-builder
4687
- msgid "The email address associated with your Mad Mimi account."
4688
- msgstr "L'indirizzo email associato al tuo account Mad Mimi."
4689
 
4690
- #: classes/class-fl-builder-service-madmimi.php:122
4691
  #@ fl-builder
4692
- msgid "Your API key can be found in your Mad Mimi account under Account > Settings &amp; Billing > API."
4693
- msgstr "Puoi trovare la tua chiave API nell'account Mad Mimi sotto Account > Settings &amp; Billing > API."
4694
 
4695
- #: classes/class-fl-builder-service-madmimi.php:156
4696
  #@ fl-builder
4697
- msgid "There was a problem retrieving your lists. Please check your API credentials."
4698
- msgstr "Si è verificato un problema nell'ottenere le tue liste. Si prega di verificare le credenziali API."
4699
 
4700
- #: classes/class-fl-builder-service-madmimi.php:215
4701
- #: classes/class-fl-builder-service-madmimi.php:242
4702
  #@ fl-builder
4703
- msgid "There was an error subscribing to Mad Mimi. The account is no longer connected."
4704
- msgstr "Si è verificato un'errore nell'iscrizione a Mad Mimi. L'account non è più connesso."
 
4705
 
4706
- #: classes/class-fl-builder-service-mailchimp.php:101
4707
  #@ fl-builder
4708
- msgid "Your API key can be found in your MailChimp account under Account > Extras > API Keys."
4709
- msgstr "Puoi trovare la tua chiave API nel tuo account MailChimp sotto Account > Extras > API Keys."
4710
 
4711
- #: classes/class-fl-builder-service-mailchimp.php:191
4712
  #@ fl-builder
4713
- msgid "There was an error subscribing to MailChimp. The account is no longer connected."
4714
- msgstr "Si è verificato un errore nell'iscrizione a MailChimp. L'account non è più connesso."
 
4715
 
4716
- #: classes/class-fl-builder-service-mailchimp.php:219
4717
- #, php-format
4718
  #@ fl-builder
4719
- msgid "There was an error subscribing to MailChimp. %s"
4720
- msgstr "Si è verificato un errore nell'iscrizione a MailChimp. %s"
4721
 
4722
- #: classes/class-fl-builder-service-mailpoet.php:73
 
4723
  #@ fl-builder
4724
- msgid "There was an error retrieveing your lists."
4725
- msgstr "Si è verificato un'errore nell'ottenere le tue liste."
4726
 
4727
- #: classes/class-fl-builder-service-mailpoet.php:129
4728
  #@ fl-builder
4729
- msgid "There was an error subscribing. MailPoet is not installed."
4730
- msgstr "Si è verificato un'errore nell'iscrizione. MailPoet non è installato."
4731
 
4732
- #: classes/class-fl-builder-services.php:133
4733
  #@ fl-builder
4734
- msgctxt "Third party service such as MailChimp."
4735
- msgid "Error: Missing service type."
4736
- msgstr "Errore: tipo di servizio mancante."
4737
 
4738
- #: classes/class-fl-builder-services.php:136
4739
  #@ fl-builder
4740
- msgctxt "Connection data such as an API key."
4741
- msgid "Error: Missing service data."
4742
- msgstr "Errore: dati di servizio mancanti."
4743
 
4744
- #: classes/class-fl-builder-services.php:139
4745
  #@ fl-builder
4746
- msgctxt "Account name for a third party service such as MailChimp."
4747
- msgid "Error: Missing account name."
4748
- msgstr "Errore: nome account mancante."
4749
 
4750
- #: classes/class-fl-builder-services.php:148
4751
  #@ fl-builder
4752
- msgctxt "Account name for a third party service such as MailChimp."
4753
- msgid "Error: An account with that name already exists."
4754
- msgstr "Errore: esiste già un account con quel nome."
4755
 
4756
- #: classes/class-fl-builder-services.php:228
 
4757
  #@ fl-builder
4758
- msgid "Account Name"
4759
- msgstr "Nome account"
4760
 
4761
- #: classes/class-fl-builder-services.php:229
4762
  #@ fl-builder
4763
- msgid "Used to identify this connection within the accounts list and can be anything you like."
4764
- msgstr "Usato per identificare questo collegamento nella lista degli account e può essere ciò che preferisci."
4765
 
4766
- #: classes/class-fl-builder-services.php:242
4767
  #@ fl-builder
4768
- msgid "Connect"
4769
- msgstr "Connetti"
4770
 
4771
- #: classes/class-fl-builder-services.php:270
4772
  #@ fl-builder
4773
- msgid "Add Account..."
4774
- msgstr "Aggiungi account..."
4775
 
4776
- #: classes/class-fl-builder-services.php:277
4777
  #@ fl-builder
4778
- msgid "Account"
4779
- msgstr "Account"
4780
 
4781
- #: includes/admin-settings-cache.php:9
4782
  #@ fl-builder
4783
- msgid "A CSS and JavaScript file is dynamically generated and cached each time you create a new layout. Sometimes the cache needs to be refreshed when you migrate your site to another server or update to the latest version. If you are running into any issues, please try clearing the cache by clicking the button below."
4784
- msgstr "Ogni volta che crei un layout vengono generati dinamicamente un file CSS e Javascript. Qualche volta la cache deve essere rigenerata quando migri il tuo sito ad un'altro server o aggiorni all'ultima versione. Se stai avendo qualche problema, si prega di provare a svuotare la cache cliccando il bottone di sotto."
4785
 
4786
- #: includes/admin-settings-cache.php:14
4787
  #@ fl-builder
4788
- msgid "This only applies to this site. Please visit the Network Admin Settings to clear the cache for all sites on the network."
4789
- msgstr "Ciò si applica solo a questo sito. Si prega di visitare le impostazioni amministrative di rete per svuotare la cache di tutti i siti della rete."
4790
 
4791
- #: includes/admin-settings-cache.php:19
4792
  #@ fl-builder
4793
- msgid "Clear Cache"
4794
- msgstr "Svuota cache"
4795
 
4796
- #: includes/global-settings.php:127
4797
  #@ fl-builder
4798
- msgid "When auto spacing is enabled, the builder will automatically adjust the margins and padding in your layout once the small device breakpoint is reached. Most users will want to leave this enabled."
4799
- msgstr "Quando la spaziatura automatica è abilitata, il builder aggiusterà automaticamente i margini e il padding nel tuo layout non appena viene raggiunto il breakpoint per dispositivi piccoli. La maggior parte degli utenti vorrà lasciare questo abilitato."
4800
 
4801
- #: includes/js-config.php:25
4802
  #@ fl-builder
4803
- msgid "Remove Account"
4804
- msgstr "Rimuovi account"
4805
 
4806
- #: includes/js-config.php:26
4807
  #@ fl-builder
4808
- msgid "Are you sure you want to remove this account? Other modules that are connected to it will be affected."
4809
- msgstr "Sei sicuro di voler rimuovere questo account? I moduli che gli sono connessi saranno influenzati."
4810
 
4811
- #: includes/js-config.php:59
4812
- #: modules/subscribe-form/includes/frontend.php:15
4813
  #@ fl-builder
4814
- msgid "Please Wait..."
4815
- msgstr "Si prega di attendere..."
4816
 
4817
- #: includes/js-config.php:70
4818
  #@ fl-builder
4819
- msgid "Please select an account before saving."
4820
- msgstr "Si prega di selezionare un'account prima di salvare."
4821
 
4822
- #: includes/js-config.php:71
4823
  #@ fl-builder
4824
- msgid "Please connect an account before saving."
4825
- msgstr "Si prega di connettere un account prima di salvare."
4826
 
4827
- #: includes/js-config.php:72
4828
  #@ fl-builder
4829
- msgid "Please select a list before saving."
4830
- msgstr "Si prega di selezionare una lista prima di salvare."
4831
 
4832
- #: includes/loop-settings.php:55
4833
  #@ fl-builder
4834
- msgid "Skip this many posts that match the specified criteria."
4835
- msgstr "Salta questo numero di post che corrispondono ai criteri specificati."
4836
 
4837
- #: includes/service-settings.php:32
4838
  #@ fl-builder
4839
- msgid "Service"
4840
- msgstr "Servizio"
4841
 
4842
- #: modules/contact-form/contact-form.php:41
4843
  #@ fl-builder
4844
- msgid "Message"
4845
- msgstr "Messaggio"
4846
 
4847
- #: modules/contact-form/contact-form.php:75
4848
- #: modules/subscribe-form/subscribe-form.php:107
4849
  #@ fl-builder
4850
- msgid "Name Field"
4851
- msgstr "Campo nome"
4852
 
4853
- #: modules/contact-form/contact-form.php:84
4854
  #@ fl-builder
4855
- msgid "Subject Field"
4856
- msgstr "Campo oggetto"
4857
 
4858
- #: modules/contact-form/contact-form.php:93
4859
  #@ fl-builder
4860
- msgid "Email Field"
4861
- msgstr "Campo email"
4862
 
4863
- #: modules/contact-form/contact-form.php:102
4864
  #@ fl-builder
4865
- msgid "Phone Field"
4866
- msgstr "Campo telefono"
4867
 
4868
- #: modules/contact-form/includes/frontend.php:13
4869
- #: modules/contact-form/includes/frontend.php:15
4870
  #@ fl-builder
4871
- msgid "Subject"
4872
- msgstr "Oggetto"
4873
 
4874
- #: modules/contact-form/includes/frontend.php:14
4875
  #@ fl-builder
4876
- msgid "Please enter a subject."
4877
- msgstr "Si prega di inserire un oggetto."
4878
 
4879
- #: modules/contact-form/includes/frontend.php:29
4880
  #@ fl-builder
4881
- msgid "Phone"
4882
- msgstr "Telefono"
4883
 
4884
- #: modules/contact-form/includes/frontend.php:30
4885
  #@ fl-builder
4886
- msgid "Please enter a valid phone number."
4887
- msgstr "Si prega di inserire un numero di telefono valido."
4888
 
4889
- #: modules/contact-form/includes/frontend.php:31
4890
  #@ fl-builder
4891
- msgid "Your phone"
4892
- msgstr "Il tuo telefono"
4893
 
4894
- #: modules/post-grid/post-grid.php:208
4895
  #@ fl-builder
4896
- msgid "Content Type"
4897
- msgstr "Tipo di contenuto"
4898
 
4899
- #: modules/post-grid/post-grid.php:211
4900
  #@ fl-builder
4901
- msgid "Excerpt"
4902
- msgstr "Riassunto"
4903
 
4904
- #: modules/post-grid/post-grid.php:212
4905
  #@ fl-builder
4906
- msgid "Full Text"
4907
- msgstr "Testo completo"
4908
 
4909
  #: modules/subscribe-form/includes/frontend.php:5
4910
  #@ fl-builder
@@ -4932,11 +5373,6 @@ msgstr "Modulo di iscrizione"
4932
  msgid "Adds a simple subscribe form to your layout."
4933
  msgstr "Aggiunge un semplice modulo di iscrizione al tuo layout."
4934
 
4935
- #: modules/subscribe-form/subscribe-form.php:72
4936
- #@ fl-builder
4937
- msgid "There was an error subscribing. Please try again."
4938
- msgstr "Si è verificato un errore nell'iscrizione. Riprova, per favore."
4939
-
4940
  #: modules/subscribe-form/subscribe-form.php:117
4941
  #@ fl-builder
4942
  msgid "Success"
@@ -4972,382 +5408,279 @@ msgstr "URL successo"
4972
  msgid "Subscribe!"
4973
  msgstr "Iscriviti!"
4974
 
4975
- #: modules/woocommerce/woocommerce.php:195
4976
- #@ fl-builder
4977
- msgid "Sort Direction"
4978
- msgstr "Direzione ordinamento"
4979
-
4980
- #: classes/class-fl-builder-model.php:2715
4981
- #@ fl-builder
4982
- msgctxt "Default user template category."
4983
- msgid "Uncategorized"
4984
- msgstr "Senza categoria"
4985
-
4986
- #: classes/class-fl-builder-service-aweber.php:192
4987
- #: classes/class-fl-builder-service-campaign-monitor.php:209
4988
- #: classes/class-fl-builder-service-constant-contact.php:166
4989
- #: classes/class-fl-builder-service-getresponse.php:164
4990
- #: classes/class-fl-builder-service-icontact.php:217
4991
- #: classes/class-fl-builder-service-infusionsoft.php:214
4992
- #: classes/class-fl-builder-service-madmimi.php:188
4993
- #: classes/class-fl-builder-service-mailchimp.php:164
4994
- #: classes/class-fl-builder-service-mailpoet.php:102
4995
- #: classes/class-fl-builder-service-sendinblue.php:171
4996
- #@ fl-builder
4997
- msgctxt "An email list from a third party provider."
4998
- msgid "List"
4999
- msgstr "Lista"
5000
-
5001
- #: classes/class-fl-builder-service-campaign-monitor.php:158
5002
  #@ fl-builder
5003
- msgctxt "A client account in Campaign Monitor."
5004
- msgid "Client"
5005
- msgstr "Client"
5006
 
5007
- #: classes/class-fl-builder-service-hatchbuck.php:88
5008
  #@ fl-builder
5009
- msgid "Your API key can be found in your Hatchbuck account under Account Settings > Web API."
5010
- msgstr "La tua chiave API può essere trovata nel tuo account Hatchbuck in Account Settings > Web API."
5011
 
5012
- #: classes/class-fl-builder-service-hatchbuck.php:134
5013
  #@ fl-builder
5014
- msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
5015
- msgid "Tag"
5016
- msgstr "Tag"
5017
 
5018
- #: classes/class-fl-builder-service-hatchbuck.php:161
5019
  #@ fl-builder
5020
- msgid "There was an error subscribing to Hatchbuck. The account is no longer connected."
5021
- msgstr "Si è verificato un errore nell'iscrizione a Hatchbuck. L'account non è più connesso."
5022
 
5023
- #: classes/class-fl-builder-service-hatchbuck.php:190
 
 
5024
  #@ fl-builder
5025
- msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
5026
- msgstr "Si è verificato un errore nell'iscrizione a Hatchbuck. La chiave API non è valida."
5027
 
5028
- #: classes/class-fl-builder-service-hatchbuck.php:200
5029
- #: classes/class-fl-builder-service-hatchbuck.php:232
5030
  #@ fl-builder
5031
- msgid "There was an error subscribing to Hatchbuck."
5032
- msgstr "Si è verificato un'errore nell'iscrizione a Hatchbuck."
5033
 
5034
- #: classes/class-fl-builder-service-infusionsoft.php:49
5035
- #, php-format
5036
  #@ fl-builder
5037
- msgid "There was an error connecting to Infusionsoft. %s"
5038
- msgstr "Si è verificato un errore nella connessione a Infusionsoft. %s"
5039
 
5040
- #: classes/class-fl-builder-service-infusionsoft.php:83
5041
  #@ fl-builder
5042
- msgid "Error: You must provide an app ID."
5043
- msgstr "Errore: devi fornire una app ID."
5044
 
5045
- #: classes/class-fl-builder-service-infusionsoft.php:119
5046
  #@ fl-builder
5047
- msgid "Your App ID can be found in the URL for your account. For example, if the URL for your account is myaccount.infusionsoft.com, your App ID would be <strong>myaccount</strong>."
5048
- msgstr "Il tuo App ID si può trovare nella URL del tuo account. Per esempio, se la URL del tuo account è myaccount.infusionsoft.com, la tua App ID sarà <strong>myaccount</strong>."
5049
 
5050
- #: classes/class-fl-builder-service-infusionsoft.php:130
5051
  #@ fl-builder
5052
- msgid "Your API key can be found in your Infusionsoft account under Admin > Settings > Application > API > Encrypted Key."
5053
- msgstr "Puoi trovare la tua chiave API nel tuo account Infusionsoft sotto Admin > Settings > Application > API > Encrypted Key."
5054
 
5055
- #: classes/class-fl-builder-service-infusionsoft.php:242
5056
  #@ fl-builder
5057
- msgid "There was an error subscribing to Infusionsoft. The account is no longer connected."
5058
- msgstr "Si è verificato un errore nell'iscrizione a Infusionsoft. L'account non è più connesso."
5059
 
5060
- #: classes/class-fl-builder-service-infusionsoft.php:291
5061
- #, php-format
5062
  #@ fl-builder
5063
- msgid "There was an error subscribing to Infusionsoft. %s"
5064
- msgstr "Si è verificato un errore nell'iscrizione a Infusionsoft. %s"
5065
 
5066
- #: classes/class-fl-builder-service-sendinblue.php:67
5067
  #@ fl-builder
5068
- msgid "Error: You must provide an Access Key."
5069
- msgstr "Errore: devi fornire una chiave di accesso."
5070
-
5071
- #: classes/class-fl-builder-service-sendinblue.php:76
5072
- #: classes/class-fl-builder-service-sendinblue.php:136
5073
- #@ default
5074
- msgid "There was an error connecting to SendinBlue. Please try again."
5075
- msgstr "Si è verificato un errore nella connessione a SendinBlue. Si prega di riprovare."
5076
 
5077
- #: classes/class-fl-builder-service-sendinblue.php:79
5078
- #: classes/class-fl-builder-service-sendinblue.php:139
5079
- #, php-format
5080
  #@ fl-builder
5081
- msgid "Error: Could not connect to SendinBlue. %s"
5082
- msgstr "Errore: Impossibile connettersi a SendinBlue. %s"
5083
 
5084
- #: classes/class-fl-builder-service-sendinblue.php:103
5085
  #@ fl-builder
5086
- msgid "Access Key"
5087
- msgstr "Chiave di accesso"
5088
 
5089
- #: classes/class-fl-builder-service-sendinblue.php:104
5090
  #@ fl-builder
5091
- msgid "Your Access Key can be found in your SendinBlue account under API & Integration > Manager Your Keys > Version 2.0 > Access Key."
5092
- msgstr "Puoi trovare la tua chiave API nel tuo account SendinBlue sotto API & Integration > Manager Your Keys > Version 2.0 > Access Key."
5093
 
5094
- #: classes/class-fl-builder-service-sendinblue.php:198
5095
  #@ fl-builder
5096
- msgid "There was an error subscribing to SendinBlue. The account is no longer connected."
5097
- msgstr "Si è verificato un errore nell'iscrizione a SendinBlue. L'account non è più connesso."
5098
-
5099
- #: classes/class-fl-builder-service-sendinblue.php:220
5100
- #@ default
5101
- msgid "There was an error subscribing to SendinBlue. Please try again."
5102
- msgstr "Si è verificato un errore nell'iscrizione a SendinBlue. Si prega di riprovare."
5103
 
5104
- #: classes/class-fl-builder-service-sendinblue.php:223
 
5105
  #, php-format
5106
  #@ fl-builder
5107
- msgid "Error: Could not subscribe to SendinBlue. %s"
5108
- msgstr "Errore: Impossibile sottoscrivere SendinBlue . %s"
5109
-
5110
- #: classes/class-fl-builder-templates-override.php:46
5111
- #@ fl-builder
5112
- msgid "Error! Please enter a number for the site ID."
5113
- msgstr "Errore! Si prega di inserire un numero di ID del sito."
5114
-
5115
- #: classes/class-fl-builder-templates-override.php:50
5116
- #@ fl-builder
5117
- msgid "Error! A site with that ID doesn't exist."
5118
- msgstr "Errore! Non esiste un sito con quell'ID."
5119
-
5120
- #: classes/class-fl-builder.php:901
5121
- #: classes/class-fl-builder.php:903
5122
- #@ fl-builder
5123
- msgctxt "Custom post type label."
5124
- msgid "Templates"
5125
- msgstr "Modelli"
5126
-
5127
- #: classes/class-fl-builder.php:902
5128
- #: classes/class-fl-builder.php:904
5129
- #@ fl-builder
5130
- msgctxt "Custom post type label."
5131
- msgid "Template"
5132
- msgstr "Modello"
5133
-
5134
- #: classes/class-fl-builder.php:906
5135
- #@ fl-builder
5136
- msgctxt "Custom post type label."
5137
- msgid "Add New Template"
5138
- msgstr "Aggiungi nuovo modello"
5139
-
5140
- #: classes/class-fl-builder.php:907
5141
- #@ fl-builder
5142
- msgctxt "Custom post type label."
5143
- msgid "New Template"
5144
- msgstr "Nuovo modello"
5145
 
5146
- #: classes/class-fl-builder.php:908
5147
  #@ fl-builder
5148
- msgctxt "Custom post type label."
5149
- msgid "Edit Template"
5150
- msgstr "Modifica modello"
5151
 
5152
- #: classes/class-fl-builder.php:909
5153
  #@ fl-builder
5154
- msgctxt "Custom post type label."
5155
- msgid "View Template"
5156
- msgstr "Visualizza modello"
5157
 
5158
- #: classes/class-fl-builder.php:910
5159
  #@ fl-builder
5160
- msgctxt "Custom post type label."
5161
- msgid "All Templates"
5162
- msgstr "Tutti i modelli"
5163
 
5164
- #: classes/class-fl-builder.php:911
5165
  #@ fl-builder
5166
- msgctxt "Custom post type label."
5167
- msgid "Search Templates"
5168
- msgstr "Cerca modelli"
5169
 
5170
- #: classes/class-fl-builder.php:912
5171
  #@ fl-builder
5172
- msgctxt "Custom post type label."
5173
- msgid "Parent Templates:"
5174
- msgstr "Modelli genitore:"
5175
 
5176
- #: classes/class-fl-builder.php:913
 
5177
  #@ fl-builder
5178
- msgctxt "Custom post type label."
5179
- msgid "No templates found."
5180
- msgstr "Nessun modello trovato."
5181
 
5182
- #: classes/class-fl-builder.php:914
5183
  #@ fl-builder
5184
- msgctxt "Custom post type label."
5185
- msgid "No templates found in Trash."
5186
- msgstr "Nessun modello trovato nel cestino."
5187
 
5188
- #: classes/class-fl-builder.php:927
5189
- #: classes/class-fl-builder.php:937
5190
  #@ fl-builder
5191
- msgctxt "Custom taxonomy label."
5192
  msgid "Categories"
5193
  msgstr "Categorie"
5194
 
5195
- #: classes/class-fl-builder.php:928
5196
  #@ fl-builder
5197
- msgctxt "Custom taxonomy label."
5198
- msgid "Category"
5199
- msgstr "Categoria"
5200
 
5201
- #: classes/class-fl-builder.php:929
5202
  #@ fl-builder
5203
- msgctxt "Custom taxonomy label."
5204
- msgid "Search Categories"
5205
- msgstr "Cerca categorie"
5206
 
5207
- #: classes/class-fl-builder.php:930
5208
  #@ fl-builder
5209
- msgctxt "Custom taxonomy label."
5210
- msgid "All Categories"
5211
- msgstr "Tutte le categorie"
5212
 
5213
- #: classes/class-fl-builder.php:931
5214
  #@ fl-builder
5215
- msgctxt "Custom taxonomy label."
5216
- msgid "Parent Category"
5217
- msgstr "Categoria genitore"
5218
 
5219
- #: classes/class-fl-builder.php:932
5220
  #@ fl-builder
5221
- msgctxt "Custom taxonomy label."
5222
- msgid "Parent Category:"
5223
- msgstr "Categoria genitore:"
5224
 
5225
- #: classes/class-fl-builder.php:933
5226
  #@ fl-builder
5227
- msgctxt "Custom taxonomy label."
5228
- msgid "Edit Category"
5229
- msgstr "Modifica categoria"
5230
 
5231
- #: classes/class-fl-builder.php:934
5232
  #@ fl-builder
5233
- msgctxt "Custom taxonomy label."
5234
- msgid "Update Category"
5235
- msgstr "Aggiorna categoria"
5236
 
5237
- #: classes/class-fl-builder.php:935
5238
  #@ fl-builder
5239
- msgctxt "Custom taxonomy label."
5240
- msgid "Add New Category"
5241
- msgstr "Aggiungi nuova categoria"
5242
 
5243
- #: classes/class-fl-builder.php:936
 
5244
  #@ fl-builder
5245
- msgctxt "Custom taxonomy label."
5246
- msgid "New Category Name"
5247
- msgstr "Nome nuova categoria"
5248
 
5249
- #: includes/admin-posts.php:7
5250
- #, php-format
5251
  #@ fl-builder
5252
- msgctxt "The first %s stands for custom branded \"Page Builder\" name. The second %s stands for the post type name."
5253
- msgid "%s is currently active for this %s."
5254
- msgstr "%s è attualmente attivo per questo %s."
5255
 
5256
- #: includes/admin-settings-templates-override.php:2
5257
- #: includes/admin-settings-templates-override.php:8
5258
- #: includes/admin-settings-templates-override.php:13
5259
  #@ fl-builder
5260
- msgid "Override Core Templates"
5261
- msgstr "Override modelli core"
5262
 
5263
- #: includes/admin-settings-templates-override.php:3
5264
  #@ fl-builder
5265
- msgid "Enter the ID of a site on the network whose templates should override core builder templates. Leave this field blank if you do not wish to override core templates."
5266
- msgstr "Inserisci l'ID di un sito nella rete i cui templates dovrebbero prevalere sui modelli core del builder. Lascia questo campo in bianco se non vuoi prevalere sui modelli core."
5267
 
5268
- #: includes/admin-settings-templates-override.php:9
5269
  #@ fl-builder
5270
- msgid "Use this setting to override core builder templates with your templates."
5271
- msgstr "Usa questa impostazione per prevalere sui modelli core del builder con i tuoi modelli. "
5272
 
5273
- #: includes/admin-settings-templates.php:22
5274
  #@ fl-builder
5275
- msgid "Enable Templates"
5276
- msgstr "Abilita modelli"
5277
 
5278
- #: includes/admin-settings-templates.php:23
5279
  #@ fl-builder
5280
- msgid "Use this setting to enable or disable templates in the builder interface."
5281
- msgstr "Usa questa impostazione per abilitare o disabilitare modelli nell'interfaccia del builder."
5282
 
5283
- #: includes/admin-settings-templates.php:31
5284
- #: includes/admin-settings-templates.php:36
5285
  #@ fl-builder
5286
- msgid "Enable Templates Admin"
5287
- msgstr "Abilita amministrazione modelli"
5288
 
5289
- #: includes/admin-settings-templates.php:32
5290
  #@ fl-builder
5291
- msgid "Use this setting to edit builder templates in the WordPress admin."
5292
- msgstr "Usa questa impostazione per modificare i modelli del builder nell'amministrazione di Wordpress."
5293
 
5294
- #: includes/column-settings.php:107
5295
- #: includes/row-settings.php:148
5296
  #@ fl-builder
5297
- msgid "Repeat applies to how the image should display in the background. Choosing none will display the image as uploaded. Tile will repeat the image as many times as needed to fill the background horizontally and vertically. You can also specify the image to only repeat horizontally or vertically."
5298
- msgstr "Ripeti si applica a come mostrare l'immagine nello sfondo. Scegliendo nessuno mostrerà l'immagine così come caricata. Tassello ripeterà l'immagine tante volte quanto necessario per riempire lo sfondo in orizontale e verticale. Puoi anche specificare di ripetere l'immagine solo in orizontale o verticale."
5299
 
5300
- #: includes/column-settings.php:127
5301
- #: includes/row-settings.php:168
5302
  #@ fl-builder
5303
- msgid "Position will tell the image where it should sit in the background."
5304
- msgstr "La posizione sistemerà l'immagine sullo sfondo."
5305
 
5306
- #: includes/column-settings.php:140
5307
- #: includes/row-settings.php:181
5308
  #@ fl-builder
5309
- 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 background if fill is selected in the scale setting."
5310
- msgstr "L'attaccatura specificherà come reagisce l'immagine durante lo scorrimento di pagina. Quando lo scorrimento è selezionato, l'immagine scorre con lo scorrimento della pagina. Questa è l'impostazione predefinita. Fisso permette all'immagine di scorrere all'interno dello sfondo se nelle impostazioni di scala è selezionato riempimento."
5311
 
5312
- #: includes/column-settings.php:154
5313
- #: includes/row-settings.php:195
5314
  #@ fl-builder
5315
- msgid "Scale applies to how the image should display in the background. You can select either fill or fit to the background."
5316
- msgstr "La scala si applica a come si dovrebbe visualizzare l'immagine sullo sfondo. È possibile selezionare o riempimento o adatta allo sfondo della riga."
5317
 
5318
- #: includes/global-settings.php:15
5319
  #@ fl-builder
5320
- msgctxt "General settings form field label. Intended meaning: \"Show page heading?\""
5321
- msgid "Show"
5322
- msgstr "Visualizza"
5323
 
5324
- #: includes/global-settings.php:84
5325
  #@ fl-builder
5326
- msgctxt "General settings form field label. Intended meaning: \"Responsive layout enabled?\""
5327
- msgid "Enabled"
5328
- msgstr "Abilitato"
5329
 
5330
- #: includes/global-settings.php:121
5331
  #@ fl-builder
5332
- msgctxt "General settings form field label. Intended meaning: \"Enable auto spacing for responsive layouts?\""
5333
- msgid "Enable Auto Spacing"
5334
- msgstr "Abilita spaziatura automatica"
5335
 
5336
- #: includes/js-config.php:31
5337
  #@ fl-builder
5338
- msgid "Discard Changes"
5339
- msgstr "Scarta modifiche"
5340
 
5341
- #: includes/js-config.php:32
5342
  #@ fl-builder
5343
- msgid "Do you really want to discard these changes? All of your changes that are not published will be lost."
5344
- msgstr "Vuoi veramente scartare queste modifiche? Tutti i cambiamenti che non sono pubblicati saranno persi."
5345
 
5346
- #: includes/loop-settings.php:52
5347
  #@ fl-builder
5348
- msgctxt "How many posts to skip."
5349
- msgid "Offset"
5350
- msgstr "Offset"
5351
 
5352
  #: includes/admin-posts.php:7
5353
  #, php-format
@@ -5356,6 +5689,13 @@ msgctxt "%s stands for custom branded \"Page Builder\" name."
5356
  msgid "%s is currently active for this page."
5357
  msgstr "%s è attualmente attivo per questa pagina."
5358
 
 
 
 
 
 
 
 
5359
  #: includes/column-settings.php:178
5360
  #@ fl-builder
5361
  msgid "A custom CSS class that will be applied to this column. Spaces only, no dots."
@@ -5465,6 +5805,24 @@ msgstr "Vuoi davvero eliminare questa bozza? Tutte le modifiche che non sono pub
5465
  msgid "Enable or disable templates using the options below."
5466
  msgstr "Abilitare o disabilitare i modelli utilizzando le opzioni qui sotto."
5467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5468
  #: classes/class-fl-builder-service-aweber.php:192
5469
  #: classes/class-fl-builder-service-campaign-monitor.php:209
5470
  #: classes/class-fl-builder-service-constant-contact.php:166
@@ -5507,3 +5865,10 @@ msgstr "La ripetizione si applica a come dovrebbe visualizzarsi l'immagine sullo
5507
  msgid "Scale applies to how the image should display in the row background. You can select either fill or fit to the row background."
5508
  msgstr "La scala si applica a come si dovrebbe visualizzare l'immagine sullo sfondo della riga. È possibile selezionare o riempimento o adatta allo sfondo della riga."
5509
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Beaver Builder Plugin (Agency Version) v1.4.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2015-08-03 15:34:12+0000\n"
7
+ "Last-Translator: admin <hantarex@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
92
  msgid "Help Button"
93
  msgstr "Pulsante Aiuto"
94
 
95
+ #: classes/class-fl-builder-admin-settings.php:183
96
+ #: includes/admin-settings-cache.php:3
97
+ #@ fl-builder
98
+ msgid "Cache"
99
+ msgstr "Cache"
100
+
101
  #: includes/admin-settings.php:40
102
  #: includes/admin-settings.php:250
103
  #: includes/admin-settings.php:262
220
  msgid "Copy of %s"
221
  msgstr "Copia di %s"
222
 
223
+ #: classes/class-fl-builder-model.php:2715
224
+ #@ fl-builder
225
+ msgctxt "Default user template category."
226
+ msgid "Uncategorized"
227
+ msgstr "Senza categoria"
228
+
229
+ #: includes/template-selector.php:8
230
+ #@ fl-builder
231
+ msgid "Home Pages"
232
+ msgstr "Pagine home"
233
+
234
+ #: includes/template-selector.php:9
235
+ #@ fl-builder
236
+ msgid "Content Pages"
237
+ msgstr "Pagine di contenuto"
238
+
239
  #: classes/class-fl-builder-photo.php:75
240
  #@ fl-builder
241
  msgctxt "Image size."
260
  msgid "Thumbnail"
261
  msgstr "Miniatura"
262
 
263
+ #: classes/class-fl-builder-service-activecampaign.php:69
 
264
  #@ fl-builder
265
+ msgid "Error: You must provide an API URL."
266
+ msgstr "Errore: devi fornire una API URL."
 
267
 
268
+ #: classes/class-fl-builder-service-campaign-monitor.php:55
269
+ #: classes/class-fl-builder-service-constant-contact.php:48
270
+ #: classes/class-fl-builder-service-getresponse.php:67
271
+ #: classes/class-fl-builder-service-madmimi.php:73
272
+ #: classes/class-fl-builder-service-mailchimp.php:67
273
  #@ fl-builder
274
+ msgid "Error: You must provide an API key."
275
+ msgstr "Errore: devi fornire una chiave API."
 
276
 
277
+ #: classes/class-fl-builder-service-activecampaign.php:81
 
 
278
  #@ fl-builder
279
+ msgid "Error: Please check your API URL and API key."
280
+ msgstr "Errore: si prega di verificare la API URL e la chiave API."
 
281
 
282
+ #: classes/class-fl-builder-service-activecampaign.php:108
 
283
  #@ fl-builder
284
+ msgid "API URL"
285
+ msgstr "API URL"
286
 
287
+ #: classes/class-fl-builder-service-activecampaign.php:109
 
288
  #@ fl-builder
289
+ msgid "Your API url can be found in your ActiveCampaign account under My Settings > API."
290
+ msgstr "Puoi trovare la tua API URL nell'account di ActiveCampaign sotto My Settings > API."
 
291
 
292
+ #: classes/class-fl-builder-service-campaign-monitor.php:88
293
+ #: classes/class-fl-builder-service-constant-contact.php:88
294
+ #: classes/class-fl-builder-service-getresponse.php:100
295
+ #: classes/class-fl-builder-service-madmimi.php:121
296
+ #: classes/class-fl-builder-service-mailchimp.php:100
297
  #@ fl-builder
298
+ msgid "API Key"
299
+ msgstr "Chiave API"
 
300
 
301
+ #: classes/class-fl-builder-service-activecampaign.php:120
302
  #@ fl-builder
303
+ msgid "Your API key can be found in your ActiveCampaign account under My Settings > API."
304
+ msgstr "Puoi trovare la tua chiave API nell'account di ActiveCampaign sotto My Settings > API."
305
 
306
+ #: modules/woocommerce/woocommerce.php:60
307
  #@ fl-builder
308
+ msgid "Choose..."
309
+ msgstr "Scegli..."
310
 
311
+ #: classes/class-fl-builder-service-aweber.php:192
312
+ #: classes/class-fl-builder-service-campaign-monitor.php:209
313
+ #: classes/class-fl-builder-service-constant-contact.php:166
314
+ #: classes/class-fl-builder-service-getresponse.php:164
315
+ #: classes/class-fl-builder-service-icontact.php:217
316
+ #: classes/class-fl-builder-service-infusionsoft.php:214
317
+ #: classes/class-fl-builder-service-madmimi.php:188
318
+ #: classes/class-fl-builder-service-mailchimp.php:164
319
+ #: classes/class-fl-builder-service-mailpoet.php:102
320
+ #: classes/class-fl-builder-service-sendinblue.php:171
321
  #@ fl-builder
322
+ msgctxt "An email list from a third party provider."
323
+ msgid "List"
324
+ msgstr "Lista"
325
 
326
+ #: classes/class-fl-builder-service-activecampaign.php:208
 
327
  #@ fl-builder
328
+ msgid "There was an error subscribing to ActiveCampaign. The account is no longer connected."
329
+ msgstr "Si è verificato un errore nell'iscrizione ad ActiveCampaign. L'account non è più connesso. "
330
 
331
+ #: classes/class-fl-builder-service-activecampaign.php:239
 
 
 
332
  #@ fl-builder
333
+ msgid "Error: Invalid API data."
334
+ msgstr "Errore: dati API non validi."
335
 
336
+ #: classes/class-fl-builder-service-aweber.php:72
 
 
337
  #@ fl-builder
338
+ msgid "Error: You must provide an Authorization Code."
339
+ msgstr "Errore: devi fornire un codice di autorizzazione."
340
 
341
+ #: classes/class-fl-builder-service-aweber.php:76
 
342
  #@ fl-builder
343
+ msgid "Error: Please enter a valid Authorization Code."
344
+ msgstr "Errore: si prega di inserire un codice di autorizzazione valido."
345
 
346
+ #: classes/class-fl-builder-service-aweber.php:127
347
  #@ fl-builder
348
+ msgid "Authorization Code"
349
+ msgstr "Codice di autorizzazione"
350
 
351
+ #: classes/class-fl-builder-service-aweber.php:128
352
+ #, php-format
353
  #@ fl-builder
354
+ msgid "Please register this website with AWeber to get your Authorization Code. <a%s>Register Now</a>"
355
+ msgstr "Si prega di registrare questo sito su AWeber per ottenere il tuo codice di autorizzazione. <a%s>Registra ora</a>"
356
 
357
+ #: classes/class-fl-builder-service-aweber.php:219
358
  #@ fl-builder
359
+ msgid "There was an error subscribing to AWeber. The account is no longer connected."
360
+ msgstr "Si è verificato un errore nell'iscrizione ad Aweber. L'account non è più connesso. "
361
 
362
+ #: classes/class-fl-builder-service-aweber.php:242
363
  #@ fl-builder
364
+ msgid "There was an error connecting to AWeber. Please try again."
365
+ msgstr "Si è verificato un errore nella connessione ad AWeber. Si prega di riprovare."
366
 
367
+ #: classes/class-fl-builder-service-aweber.php:247
368
+ #, php-format
369
  #@ fl-builder
370
+ msgid "There was an error subscribing to AWeber. %s"
371
+ msgstr "Si è verificato un'errore nell'iscrizione ad AWeber. %s"
372
 
373
+ #: classes/class-fl-builder-service-campaign-monitor.php:67
374
+ #: classes/class-fl-builder-service-campaign-monitor.php:129
375
+ #: classes/class-fl-builder-service-getresponse.php:76
376
+ #: classes/class-fl-builder-service-getresponse.php:132
377
  #@ fl-builder
378
+ msgid "Error: Please check your API key."
379
+ msgstr "Errore: si prega di verificare la chiave API."
380
 
381
+ #: classes/class-fl-builder-service-campaign-monitor.php:89
382
  #@ fl-builder
383
+ msgid "Your API key can be found in your Campaign Monitor account under Account Settings > API Key."
384
+ msgstr "Puoi trovare la tua chiave API nell'account Campaign Monitor sotto Impostazioni Account > Chiave API."
385
 
386
+ #: classes/class-fl-builder-service-campaign-monitor.php:158
387
  #@ fl-builder
388
+ msgctxt "A client account in Campaign Monitor."
389
+ msgid "Client"
390
+ msgstr "Client"
391
 
392
+ #: classes/class-fl-builder-service-campaign-monitor.php:236
393
  #@ fl-builder
394
+ msgid "There was an error subscribing to Campaign Monitor. The account is no longer connected."
395
+ msgstr "Si è verificato un errore nell'iscrizione a Campaign Monitor. L'account non è più connesso."
396
 
397
+ #: classes/class-fl-builder-service-campaign-monitor.php:253
398
  #@ fl-builder
399
+ msgid "There was an error subscribing to Campaign Monitor."
400
+ msgstr "Si è verificato un'errore nell'iscrizione a Campaign Monitor."
401
 
402
+ #: classes/class-fl-builder-service-constant-contact.php:52
403
  #@ fl-builder
404
+ msgid "Error: You must provide an access token."
405
+ msgstr "Errore: devi fornire un token di accesso."
406
 
407
+ #: classes/class-fl-builder-service-constant-contact.php:61
408
+ #: classes/class-fl-builder-service-constant-contact.php:134
409
+ #, php-format
410
  #@ fl-builder
411
+ msgid "Error: Could not connect to Constant Contact. %s"
412
+ msgstr "Errore: impossibile connettersi a Constant Contact. %s "
413
 
414
+ #: classes/class-fl-builder-service-constant-contact.php:89
415
  #@ fl-builder
416
+ msgid "Your Constant Contact API key."
417
+ msgstr "La tua chiave API Constant Contact."
418
 
419
+ #: classes/class-fl-builder-service-constant-contact.php:99
420
  #@ fl-builder
421
+ msgid "Access Token"
422
+ msgstr "Token di accesso"
423
 
424
+ #: classes/class-fl-builder-service-constant-contact.php:100
425
  #@ fl-builder
426
+ msgid "Your Constant Contact access token."
427
+ msgstr "Il tuo token di accesso a Constant Contact"
428
 
429
+ #: classes/class-fl-builder-service-constant-contact.php:101
430
+ #, php-format
431
  #@ fl-builder
432
+ msgid "You must register a <a%s>Developer Account</a> with Constant Contact to obtain an API key and access token. Please see <a%s>Getting an API key</a> for complete instructions."
433
+ msgstr "Devi registrare un <a%s>Account sviluppatore</a> su Constant Contact per ottenere una chiave API e un token di accesso, Si prega di consultare <a%s>Prendere una chiave API</a> per istruzioni complete."
434
 
435
+ #: classes/class-fl-builder-service-constant-contact.php:193
436
+ #@ fl-builder
437
+ msgid "There was an error subscribing to Constant Contact. The account is no longer connected."
438
+ msgstr "Si è verificato un errore nell'iscrizione a Constant Contact. L'account non è più connesso."
439
+
440
+ #: classes/class-fl-builder-service-constant-contact.php:245
441
+ #: classes/class-fl-builder-service-constant-contact.php:279
442
  #, php-format
443
  #@ fl-builder
444
+ msgid "There was an error subscribing to Constant Contact. %s"
445
+ msgstr "Si è verificato un errore nell'iscrizione a Constant Contact. %s"
446
 
447
+ #: classes/class-fl-builder-service-madmimi.php:69
448
  #@ fl-builder
449
+ msgid "Error: You must provide an email address."
450
+ msgstr "Errore: devi fornire un indirizzo email."
 
451
 
452
+ #: classes/class-fl-builder-service-madmimi.php:110
453
+ #: modules/subscribe-form/includes/frontend.php:11
454
  #@ fl-builder
455
+ msgid "Email Address"
456
+ msgstr "Indirizzo email"
457
 
458
+ #: classes/class-fl-builder-service-email-address.php:110
459
  #@ fl-builder
460
+ msgid "There was an error subscribing. The account is no longer connected."
461
+ msgstr "Si è verificato un errore nell'iscrizione. L'account non è più connesso. "
462
 
463
+ #: classes/class-fl-builder-service-email-address.php:114
464
  #@ fl-builder
465
+ msgid "Subscribe Form Signup"
466
+ msgstr "Modulo di iscrizione"
467
 
468
+ #: modules/contact-form/includes/frontend.php:10
 
469
  #@ fl-builder
470
+ msgid "Email"
471
+ msgstr "Email"
472
 
473
+ #: classes/class-fl-builder-service-email-address.php:118
 
474
  #@ fl-builder
475
+ msgid "Name"
476
+ msgstr "Nome"
477
 
478
+ #: modules/subscribe-form/subscribe-form.php:72
 
479
  #@ fl-builder
480
+ msgid "There was an error subscribing. Please try again."
481
+ msgstr "Si è verificato un errore nell'iscrizione. Riprova, per favore."
482
 
483
+ #: classes/class-fl-builder-service-getresponse.php:101
 
484
  #@ fl-builder
485
+ msgid "Your API key can be found in your GetResponse account under My Account > GetResponse API."
486
+ msgstr "Puoi trovare la tua chiave API nel tuo account su GetResponse sotto Il mio account > GetResponse API."
 
487
 
488
+ #: classes/class-fl-builder-service-getresponse.php:191
 
489
  #@ fl-builder
490
+ msgid "There was an error subscribing to GetResponse. The account is no longer connected."
491
+ msgstr "Si è verificato un errore nell'iscrizione a GetResponse. L'account non è più connesso."
492
 
493
+ #: classes/class-fl-builder-service-getresponse.php:202
494
+ #, php-format
495
  #@ fl-builder
496
+ msgid "There was an error subscribing to GetResponse. %s"
497
+ msgstr "Si è verificato un errore nell'iscrizione a GetResponse. %s"
498
 
499
+ #: classes/class-fl-builder-service-hatchbuck.php:88
 
500
  #@ fl-builder
501
+ msgid "Your API key can be found in your Hatchbuck account under Account Settings > Web API."
502
+ msgstr "La tua chiave API può essere trovata nel tuo account Hatchbuck in Account Settings > Web API."
503
 
504
+ #: classes/class-fl-builder-service-hatchbuck.php:134
505
  #@ fl-builder
506
+ msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
507
+ msgid "Tag"
508
+ msgstr "Tag"
509
 
510
+ #: classes/class-fl-builder-service-hatchbuck.php:161
511
  #@ fl-builder
512
+ msgid "There was an error subscribing to Hatchbuck. The account is no longer connected."
513
+ msgstr "Si è verificato un errore nell'iscrizione a Hatchbuck. L'account non è più connesso."
514
 
515
+ #: classes/class-fl-builder-service-hatchbuck.php:190
 
516
  #@ fl-builder
517
+ msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
518
+ msgstr "Si è verificato un errore nell'iscrizione a Hatchbuck. La chiave API non è valida."
519
 
520
+ #: classes/class-fl-builder-service-hatchbuck.php:200
521
+ #: classes/class-fl-builder-service-hatchbuck.php:232
522
  #@ fl-builder
523
+ msgid "There was an error subscribing to Hatchbuck."
524
+ msgstr "Si è verificato un'errore nell'iscrizione a Hatchbuck."
525
 
526
+ #: classes/class-fl-builder-service-icontact.php:75
 
527
  #@ fl-builder
528
+ msgid "Error: You must provide a username."
529
+ msgstr "Errore: devi fornire un nome utente."
530
 
531
+ #: classes/class-fl-builder-service-icontact.php:79
 
532
  #@ fl-builder
533
+ msgid "Error: You must provide a app ID."
534
+ msgstr "Errore: devi fornire un ID applicazione."
535
 
536
+ #: classes/class-fl-builder-service-icontact.php:83
 
537
  #@ fl-builder
538
+ msgid "Error: You must provide a app password."
539
+ msgstr "Errore: devi fornire una password applicazione."
540
 
541
+ #: classes/class-fl-builder-service-icontact.php:104
542
+ #: classes/class-fl-builder-service-icontact.php:188
543
+ #, php-format
544
  #@ fl-builder
545
+ msgid "Error: Could not connect to iContact. %s"
546
+ msgstr "Errore: non è possibile connettersi ad iContact. %s"
547
 
548
+ #: classes/class-fl-builder-service-icontact.php:125
 
549
  #@ fl-builder
550
+ msgid "Username"
551
+ msgstr "Nome utente"
552
 
553
+ #: classes/class-fl-builder-service-icontact.php:126
 
554
  #@ fl-builder
555
+ msgid "Your iContact username."
556
+ msgstr "Il tuo nome utente iContact."
557
 
558
+ #: classes/class-fl-builder-service-icontact.php:136
 
 
 
 
559
  #@ fl-builder
560
+ msgid "App ID"
561
+ msgstr "ID applicazione"
562
 
563
+ #: classes/class-fl-builder-service-icontact.php:137
 
564
  #@ fl-builder
565
+ msgid "Your iContact app ID."
566
+ msgstr "Il tuo ID applicazione iContact."
567
 
568
+ #: classes/class-fl-builder-service-icontact.php:147
 
 
569
  #@ fl-builder
570
+ msgid "App Password"
571
+ msgstr "Password applicazione"
572
 
573
+ #: classes/class-fl-builder-service-icontact.php:148
574
  #@ fl-builder
575
+ msgid "Your iContact app password."
576
+ msgstr "La tua password applicazione iContact."
577
 
578
+ #: classes/class-fl-builder-service-icontact.php:149
579
+ #, php-format
580
  #@ fl-builder
581
+ msgid "You must <a%s>create an app</a> in iContact to obtain an app ID and password. Please see <a%s>the iContact docs</a> for complete instructions."
582
+ msgstr "Devi <a%s>creare un'applicazione</a> in iContact per ottenere un ID applicazione e password. Si prega di consultare <a%s>la documentazione di iContact</a> per le istruzioni complete."
583
 
584
+ #: classes/class-fl-builder-service-icontact.php:244
585
  #@ fl-builder
586
+ msgid "There was an error subscribing to iContact. The account is no longer connected."
587
+ msgstr "Si è verificato un errore nell'iscrizione ad iContact. L'account non è più connesso."
588
 
589
+ #: classes/class-fl-builder-service-icontact.php:280
590
+ #, php-format
591
  #@ fl-builder
592
+ msgid "There was an error subscribing to iContact. %s"
593
+ msgstr "Si è verificato un errore nell'iscrizione a iContact. %s"
594
 
595
+ #: classes/class-fl-builder-service-infusionsoft.php:49
596
+ #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
597
  #@ fl-builder
598
+ msgid "There was an error connecting to Infusionsoft. %s"
599
+ msgstr "Si è verificato un errore nella connessione a Infusionsoft. %s"
600
 
601
+ #: classes/class-fl-builder-service-infusionsoft.php:83
602
  #@ fl-builder
603
+ msgid "Error: You must provide an app ID."
604
+ msgstr "Errore: devi fornire una app ID."
605
 
606
+ #: classes/class-fl-builder-service-infusionsoft.php:119
 
 
 
 
 
 
 
 
 
607
  #@ fl-builder
608
+ msgid "Your App ID can be found in the URL for your account. For example, if the URL for your account is myaccount.infusionsoft.com, your App ID would be <strong>myaccount</strong>."
609
+ msgstr "Il tuo App ID si può trovare nella URL del tuo account. Per esempio, se la URL del tuo account è myaccount.infusionsoft.com, la tua App ID sarà <strong>myaccount</strong>."
610
 
611
+ #: classes/class-fl-builder-service-infusionsoft.php:130
 
 
 
 
 
 
 
 
 
 
612
  #@ fl-builder
613
+ msgid "Your API key can be found in your Infusionsoft account under Admin > Settings > Application > API > Encrypted Key."
614
+ msgstr "Puoi trovare la tua chiave API nel tuo account Infusionsoft sotto Admin > Settings > Application > API > Encrypted Key."
615
 
616
+ #: classes/class-fl-builder-service-infusionsoft.php:242
 
 
 
 
 
 
 
 
 
 
617
  #@ fl-builder
618
+ msgid "There was an error subscribing to Infusionsoft. The account is no longer connected."
619
+ msgstr "Si è verificato un errore nell'iscrizione a Infusionsoft. L'account non è più connesso."
620
 
621
+ #: classes/class-fl-builder-service-infusionsoft.php:291
622
+ #, php-format
 
 
 
623
  #@ fl-builder
624
+ msgid "There was an error subscribing to Infusionsoft. %s"
625
+ msgstr "Si è verificato un errore nell'iscrizione a Infusionsoft. %s"
626
 
627
+ #: classes/class-fl-builder-service-madmimi.php:83
628
+ #@ fl-builder
629
+ msgid "Unable to connect to Mad Mimi. Please check your credentials."
630
+ msgstr "Impossibile connettersi a Mad Mimi. Si prega di verificare le credenziali."
631
+
632
+ #: classes/class-fl-builder-service-madmimi.php:111
633
+ #@ fl-builder
634
+ msgid "The email address associated with your Mad Mimi account."
635
+ msgstr "L'indirizzo email associato al tuo account Mad Mimi."
636
+
637
+ #: classes/class-fl-builder-service-madmimi.php:122
638
+ #@ fl-builder
639
+ msgid "Your API key can be found in your Mad Mimi account under Account > Settings &amp; Billing > API."
640
+ msgstr "Puoi trovare la tua chiave API nell'account Mad Mimi sotto Account > Settings &amp; Billing > API."
641
+
642
+ #: classes/class-fl-builder-service-madmimi.php:156
643
+ #@ fl-builder
644
+ msgid "There was a problem retrieving your lists. Please check your API credentials."
645
+ msgstr "Si è verificato un problema nell'ottenere le tue liste. Si prega di verificare le credenziali API."
646
+
647
+ #: classes/class-fl-builder-service-madmimi.php:215
648
+ #: classes/class-fl-builder-service-madmimi.php:242
649
+ #@ fl-builder
650
+ msgid "There was an error subscribing to Mad Mimi. The account is no longer connected."
651
+ msgstr "Si è verificato un'errore nell'iscrizione a Mad Mimi. L'account non è più connesso."
652
+
653
+ #: classes/class-fl-builder-service-mailchimp.php:101
654
+ #@ fl-builder
655
+ msgid "Your API key can be found in your MailChimp account under Account > Extras > API Keys."
656
+ msgstr "Puoi trovare la tua chiave API nel tuo account MailChimp sotto Account > Extras > API Keys."
657
+
658
+ #: classes/class-fl-builder-service-mailchimp.php:215
659
+ #@ fl-builder
660
+ msgid "No Group"
661
+ msgstr "Nessun gruppo"
662
+
663
+ #: classes/class-fl-builder-service-mailchimp.php:227
664
+ #@ fl-builder
665
+ msgctxt "MailChimp list group."
666
+ msgid "Groups"
667
+ msgstr "Gruppi"
668
+
669
+ #: classes/class-fl-builder-service-mailchimp.php:191
670
+ #@ fl-builder
671
+ msgid "There was an error subscribing to MailChimp. The account is no longer connected."
672
+ msgstr "Si è verificato un errore nell'iscrizione a MailChimp. L'account non è più connesso."
673
+
674
+ #: classes/class-fl-builder-service-mailchimp.php:219
675
+ #, php-format
676
+ #@ fl-builder
677
+ msgid "There was an error subscribing to MailChimp. %s"
678
+ msgstr "Si è verificato un errore nell'iscrizione a MailChimp. %s"
679
+
680
+ #: classes/class-fl-builder-service-mailpoet.php:73
681
+ #@ fl-builder
682
+ msgid "There was an error retrieveing your lists."
683
+ msgstr "Si è verificato un'errore nell'ottenere le tue liste."
684
+
685
+ #: classes/class-fl-builder-service-mailpoet.php:129
686
+ #@ fl-builder
687
+ msgid "There was an error subscribing. MailPoet is not installed."
688
+ msgstr "Si è verificato un'errore nell'iscrizione. MailPoet non è installato."
689
+
690
+ #: classes/class-fl-builder-service-sendinblue.php:67
691
+ #@ fl-builder
692
+ msgid "Error: You must provide an Access Key."
693
+ msgstr "Errore: devi fornire una chiave di accesso."
694
+
695
+ #: classes/class-fl-builder-service-sendinblue.php:76
696
+ #: classes/class-fl-builder-service-sendinblue.php:136
697
+ #@ default
698
+ msgid "There was an error connecting to SendinBlue. Please try again."
699
+ msgstr "Si è verificato un errore nella connessione a SendinBlue. Si prega di riprovare."
700
+
701
+ #: classes/class-fl-builder-service-sendinblue.php:79
702
+ #: classes/class-fl-builder-service-sendinblue.php:139
703
+ #, php-format
704
+ #@ fl-builder
705
+ msgid "Error: Could not connect to SendinBlue. %s"
706
+ msgstr "Errore: Impossibile connettersi a SendinBlue. %s"
707
+
708
+ #: classes/class-fl-builder-service-sendinblue.php:103
709
+ #@ fl-builder
710
+ msgid "Access Key"
711
+ msgstr "Chiave di accesso"
712
+
713
+ #: classes/class-fl-builder-service-sendinblue.php:104
714
+ #@ fl-builder
715
+ msgid "Your Access Key can be found in your SendinBlue account under API & Integration > Manager Your Keys > Version 2.0 > Access Key."
716
+ msgstr "Puoi trovare la tua chiave API nel tuo account SendinBlue sotto API & Integration > Manager Your Keys > Version 2.0 > Access Key."
717
+
718
+ #: classes/class-fl-builder-service-sendinblue.php:198
719
+ #@ fl-builder
720
+ msgid "There was an error subscribing to SendinBlue. The account is no longer connected."
721
+ msgstr "Si è verificato un errore nell'iscrizione a SendinBlue. L'account non è più connesso."
722
+
723
+ #: classes/class-fl-builder-service-sendinblue.php:220
724
+ #@ default
725
+ msgid "There was an error subscribing to SendinBlue. Please try again."
726
+ msgstr "Si è verificato un errore nell'iscrizione a SendinBlue. Si prega di riprovare."
727
+
728
+ #: classes/class-fl-builder-service-sendinblue.php:223
729
+ #, php-format
730
+ #@ fl-builder
731
+ msgid "Error: Could not subscribe to SendinBlue. %s"
732
+ msgstr "Errore: Impossibile sottoscrivere SendinBlue . %s"
733
+
734
+ #: classes/class-fl-builder-services.php:133
735
+ #@ fl-builder
736
+ msgctxt "Third party service such as MailChimp."
737
+ msgid "Error: Missing service type."
738
+ msgstr "Errore: tipo di servizio mancante."
739
+
740
+ #: classes/class-fl-builder-services.php:136
741
+ #@ fl-builder
742
+ msgctxt "Connection data such as an API key."
743
+ msgid "Error: Missing service data."
744
+ msgstr "Errore: dati di servizio mancanti."
745
+
746
+ #: classes/class-fl-builder-services.php:139
747
+ #@ fl-builder
748
+ msgctxt "Account name for a third party service such as MailChimp."
749
+ msgid "Error: Missing account name."
750
+ msgstr "Errore: nome account mancante."
751
+
752
+ #: classes/class-fl-builder-services.php:148
753
+ #@ fl-builder
754
+ msgctxt "Account name for a third party service such as MailChimp."
755
+ msgid "Error: An account with that name already exists."
756
+ msgstr "Errore: esiste già un account con quel nome."
757
+
758
+ #: classes/class-fl-builder-services.php:228
759
+ #@ fl-builder
760
+ msgid "Account Name"
761
+ msgstr "Nome account"
762
+
763
+ #: classes/class-fl-builder-services.php:229
764
+ #@ fl-builder
765
+ msgid "Used to identify this connection within the accounts list and can be anything you like."
766
+ msgstr "Usato per identificare questo collegamento nella lista degli account e può essere ciò che preferisci."
767
+
768
+ #: classes/class-fl-builder-services.php:242
769
+ #@ fl-builder
770
+ msgid "Connect"
771
+ msgstr "Connetti"
772
+
773
+ #: classes/class-fl-builder-services.php:270
774
+ #@ fl-builder
775
+ msgid "Add Account..."
776
+ msgstr "Aggiungi account..."
777
+
778
+ #: classes/class-fl-builder-services.php:277
779
+ #@ fl-builder
780
+ msgid "Account"
781
+ msgstr "Account"
782
+
783
+ #: classes/class-fl-builder-template-settings.php:33
784
+ #@ fl-builder
785
+ msgid "Page Builder Templates"
786
+ msgstr "Modelli di Page Builder"
787
+
788
+ #: classes/class-fl-builder-templates-override.php:46
789
+ #@ fl-builder
790
+ msgid "Error! Please enter a number for the site ID."
791
+ msgstr "Errore! Si prega di inserire un numero di ID del sito."
792
+
793
+ #: classes/class-fl-builder-templates-override.php:50
794
+ #@ fl-builder
795
+ msgid "Error! A site with that ID doesn't exist."
796
+ msgstr "Errore! Non esiste un sito con quell'ID."
797
+
798
+ #: classes/class-fl-builder.php:699
799
+ #, php-format
800
+ #@ fl-builder
801
+ msgctxt "Field name to add."
802
+ msgid "Add %s"
803
+ msgstr "Aggiungi %s"
804
+
805
+ #: classes/class-fl-builder.php:901
806
+ #: classes/class-fl-builder.php:903
807
+ #@ fl-builder
808
+ msgctxt "Custom post type label."
809
+ msgid "Templates"
810
+ msgstr "Modelli"
811
+
812
+ #: classes/class-fl-builder.php:902
813
+ #: classes/class-fl-builder.php:904
814
+ #@ fl-builder
815
+ msgctxt "Custom post type label."
816
+ msgid "Template"
817
+ msgstr "Modello"
818
+
819
+ #: classes/class-fl-builder.php:766
820
+ #@ fl-builder
821
+ msgctxt "Custom post type label."
822
+ msgid "Add New"
823
+ msgstr "Aggiungi nuovo"
824
+
825
+ #: classes/class-fl-builder.php:906
826
+ #@ fl-builder
827
+ msgctxt "Custom post type label."
828
+ msgid "Add New Template"
829
+ msgstr "Aggiungi nuovo modello"
830
+
831
+ #: classes/class-fl-builder.php:907
832
+ #@ fl-builder
833
+ msgctxt "Custom post type label."
834
+ msgid "New Template"
835
+ msgstr "Nuovo modello"
836
+
837
+ #: classes/class-fl-builder.php:908
838
+ #@ fl-builder
839
+ msgctxt "Custom post type label."
840
+ msgid "Edit Template"
841
+ msgstr "Modifica modello"
842
+
843
+ #: classes/class-fl-builder.php:909
844
+ #@ fl-builder
845
+ msgctxt "Custom post type label."
846
+ msgid "View Template"
847
+ msgstr "Visualizza modello"
848
+
849
+ #: classes/class-fl-builder.php:910
850
+ #@ fl-builder
851
+ msgctxt "Custom post type label."
852
+ msgid "All Templates"
853
+ msgstr "Tutti i modelli"
854
+
855
+ #: classes/class-fl-builder.php:911
856
+ #@ fl-builder
857
+ msgctxt "Custom post type label."
858
+ msgid "Search Templates"
859
+ msgstr "Cerca modelli"
860
+
861
+ #: classes/class-fl-builder.php:912
862
+ #@ fl-builder
863
+ msgctxt "Custom post type label."
864
+ msgid "Parent Templates:"
865
+ msgstr "Modelli genitore:"
866
+
867
+ #: classes/class-fl-builder.php:913
868
+ #@ fl-builder
869
+ msgctxt "Custom post type label."
870
+ msgid "No templates found."
871
+ msgstr "Nessun modello trovato."
872
+
873
+ #: classes/class-fl-builder.php:914
874
+ #@ fl-builder
875
+ msgctxt "Custom post type label."
876
+ msgid "No templates found in Trash."
877
+ msgstr "Nessun modello trovato nel cestino."
878
+
879
+ #: classes/class-fl-builder.php:927
880
+ #: classes/class-fl-builder.php:937
881
+ #@ fl-builder
882
+ msgctxt "Custom taxonomy label."
883
+ msgid "Categories"
884
+ msgstr "Categorie"
885
+
886
+ #: classes/class-fl-builder.php:928
887
+ #@ fl-builder
888
+ msgctxt "Custom taxonomy label."
889
+ msgid "Category"
890
+ msgstr "Categoria"
891
+
892
+ #: classes/class-fl-builder.php:929
893
+ #@ fl-builder
894
+ msgctxt "Custom taxonomy label."
895
+ msgid "Search Categories"
896
+ msgstr "Cerca categorie"
897
+
898
+ #: classes/class-fl-builder.php:930
899
+ #@ fl-builder
900
+ msgctxt "Custom taxonomy label."
901
+ msgid "All Categories"
902
+ msgstr "Tutte le categorie"
903
+
904
+ #: classes/class-fl-builder.php:931
905
+ #@ fl-builder
906
+ msgctxt "Custom taxonomy label."
907
+ msgid "Parent Category"
908
+ msgstr "Categoria genitore"
909
+
910
+ #: classes/class-fl-builder.php:932
911
+ #@ fl-builder
912
+ msgctxt "Custom taxonomy label."
913
+ msgid "Parent Category:"
914
+ msgstr "Categoria genitore:"
915
+
916
+ #: classes/class-fl-builder.php:933
917
+ #@ fl-builder
918
+ msgctxt "Custom taxonomy label."
919
+ msgid "Edit Category"
920
+ msgstr "Modifica categoria"
921
+
922
+ #: classes/class-fl-builder.php:934
923
+ #@ fl-builder
924
+ msgctxt "Custom taxonomy label."
925
+ msgid "Update Category"
926
+ msgstr "Aggiorna categoria"
927
+
928
+ #: classes/class-fl-builder.php:935
929
  #@ fl-builder
930
+ msgctxt "Custom taxonomy label."
931
+ msgid "Add New Category"
932
+ msgstr "Aggiungi nuova categoria"
933
 
934
+ #: classes/class-fl-builder.php:936
 
 
 
 
 
 
 
 
935
  #@ fl-builder
936
+ msgctxt "Custom taxonomy label."
937
+ msgid "New Category Name"
938
+ msgstr "Nome nuova categoria"
939
 
940
+ #: classes/class-fl-builder.php:1113
941
+ #: includes/js-config.php:58
942
+ #, php-format
943
  #@ fl-builder
944
+ msgctxt "%s stands for module name."
945
+ msgid "%s Settings"
946
+ msgstr "impostazioni %s"
947
 
948
+ #: includes/admin-posts.php:3
949
+ #: modules/rich-text/rich-text.php:14
950
  #@ fl-builder
951
+ msgid "Text Editor"
952
+ msgstr "Editor di testo"
 
953
 
954
+ #: includes/admin-posts.php:7
955
+ #, php-format
 
956
  #@ fl-builder
957
+ msgctxt ""
958
+ msgid "%s is currently active for this %s."
959
+ msgstr "%s è attivo per questo %s."
960
 
961
+ #: includes/admin-posts.php:8
962
+ #, php-format
 
963
  #@ fl-builder
964
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
965
+ msgid "Launch %s"
966
+ msgstr "Lancia %s"
967
 
968
+ #: includes/admin-settings-branding.php:7
 
 
969
  #@ fl-builder
970
+ msgid "White label the page builder by entering a custom name below."
971
+ msgstr "Togli l'etichetta al page builder inserendo un nome personalizzato qui sotto."
 
972
 
973
+ #: includes/admin-settings-branding.php:10
 
 
974
  #@ fl-builder
975
+ 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."
976
+ msgstr "Inoltre, puoi anche aggiungere un'icona personalizzata inserendo la URL di un'immagine qui sotto. Lascia il campo in bianco se non desideri usare un'icona."
 
977
 
978
+ #: includes/admin-settings-branding.php:14
 
979
  #@ fl-builder
980
+ msgid "Save Branding"
981
+ msgstr "Salva Branding"
982
 
983
+ #: includes/admin-settings-cache.php:9
 
984
  #@ fl-builder
985
+ msgid "A CSS and JavaScript file is dynamically generated and cached each time you create a new layout. Sometimes the cache needs to be refreshed when you migrate your site to another server or update to the latest version. If you are running into any issues, please try clearing the cache by clicking the button below."
986
+ msgstr "Ogni volta che crei un layout vengono generati dinamicamente un file CSS e Javascript. Qualche volta la cache deve essere rigenerata quando migri il tuo sito ad un'altro server o aggiorni all'ultima versione. Se stai avendo qualche problema, si prega di provare a svuotare la cache cliccando il bottone di sotto."
987
 
988
+ #: includes/admin-settings.php:254
989
+ #: includes/admin-settings.php:257
990
+ #: includes/multisite-settings.php:176
991
+ #: includes/multisite-settings.php:179
992
+ #: includes/updater/includes/form.php:31
993
  #@ fl-builder
994
+ msgid "NOTE:"
995
+ msgstr "NOTA:"
996
 
997
+ #: includes/admin-settings.php:257
998
+ #: includes/multisite-settings.php:179
999
+ #: includes/updater/includes/form.php:31
1000
  #@ fl-builder
1001
+ msgid "This applies to all sites on the network."
1002
+ msgstr "Questo vale per tutti i siti della rete."
1003
 
1004
+ #: includes/admin-settings-cache.php:14
 
 
 
1005
  #@ fl-builder
1006
+ msgid "This only applies to this site. Please visit the Network Admin Settings to clear the cache for all sites on the network."
1007
+ msgstr "Ciò si applica solo a questo sito. Si prega di visitare le impostazioni amministrative di rete per svuotare la cache di tutti i siti della rete."
1008
 
1009
+ #: includes/admin-settings-cache.php:19
 
 
 
 
1010
  #@ fl-builder
1011
+ msgid "Clear Cache"
1012
+ msgstr "Svuota cache"
1013
 
1014
+ #: includes/admin-settings.php:215
1015
+ #: includes/multisite-settings.php:145
 
 
 
 
1016
  #@ fl-builder
1017
+ msgid "Editing Settings"
1018
+ msgstr "Impostazioni di modifica"
1019
 
1020
+ #: includes/admin-settings.php:81
1021
+ #: includes/admin-settings.php:132
1022
+ #: includes/admin-settings.php:170
1023
+ #: includes/admin-settings.php:222
 
 
1024
  #@ fl-builder
1025
+ msgid "Override network settings?"
1026
+ msgstr "Eseguire l'override delle impostazioni di rete?"
1027
 
1028
+ #: includes/admin-settings.php:228
1029
+ #: includes/multisite-settings.php:150
1030
+ #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
1031
  #@ fl-builder
1032
+ msgid "Set the <a%s>capability</a> required for users to access advanced builder editing such as adding, deleting or moving modules."
1033
+ msgstr "Imposta la <a%s>capacità</a> necessaria degli utenti per accedere al builder avanzato e aggiungere, eliminare o spostare i moduli."
1034
 
1035
+ #: includes/admin-settings.php:234
1036
+ #: includes/multisite-settings.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
1037
  #@ fl-builder
1038
+ msgid "Save Editing Settings"
1039
+ msgstr "Salva le impostazioni di modifica"
1040
+
1041
+ #: includes/admin-settings-help-button.php:8
1042
+ #@ fl-builder
1043
+ msgid "Help Button Settings"
1044
+ msgstr "Impostazioni pulsante di aiuto"
1045
+
1046
+ #: includes/admin-settings-help-button.php:17
1047
+ #@ fl-builder
1048
+ msgid "Enable Help Button"
1049
+ msgstr "Abilita pulsante di aiuto"
1050
+
1051
+ #: includes/admin-settings-help-button.php:23
1052
+ #@ fl-builder
1053
+ msgid "Help Tour"
1054
+ msgstr "Visita guidata"
1055
+
1056
+ #: includes/admin-settings-help-button.php:27
1057
+ #@ fl-builder
1058
+ msgid "Enable Help Tour"
1059
+ msgstr "Abilita visita guidata"
1060
+
1061
+ #: includes/admin-settings-help-button.php:31
1062
+ #@ fl-builder
1063
+ msgid "Help Video"
1064
+ msgstr "Video di aiuto"
1065
+
1066
+ #: includes/admin-settings-help-button.php:35
1067
+ #@ fl-builder
1068
+ msgid "Enable Help Video"
1069
+ msgstr "Abilita "
1070
+
1071
+ #: includes/admin-settings-help-button.php:39
1072
+ #@ fl-builder
1073
+ msgid "Help Video Embed Code"
1074
+ msgstr "Codice di embed del video di aiuto"
1075
+
1076
+ #: includes/admin-settings-help-button.php:45
1077
+ #@ fl-builder
1078
+ msgid "Knowledge Base"
1079
+ msgstr "Documentazione"
1080
+
1081
+ #: includes/admin-settings-help-button.php:49
1082
+ #@ fl-builder
1083
+ msgid "Enable Knowledge Base"
1084
+ msgstr "Abilita documentazione"
1085
+
1086
+ #: includes/admin-settings-help-button.php:53
1087
+ #@ fl-builder
1088
+ msgid "Knowledge Base URL"
1089
+ msgstr "URL documentazione"
1090
+
1091
+ #: includes/admin-settings-help-button.php:59
1092
+ #@ fl-builder
1093
+ msgid "Forums"
1094
+ msgstr "Forum"
1095
 
1096
+ #: includes/admin-settings-help-button.php:63
 
 
 
 
 
 
1097
  #@ fl-builder
1098
+ msgid "Enable Forums"
1099
+ msgstr "Abilita forum"
1100
 
1101
+ #: includes/admin-settings-help-button.php:67
 
1102
  #@ fl-builder
1103
+ msgid "Forums URL"
1104
+ msgstr "URL forum"
1105
 
1106
+ #: includes/admin-settings-help-button.php:77
 
 
 
1107
  #@ fl-builder
1108
+ msgid "Save Help Button Settings"
1109
+ msgstr "Salva impostazioni pulsante di aiuto"
1110
 
1111
+ #: includes/admin-settings-icons.php:3
 
 
1112
  #@ fl-builder
1113
+ msgid "Icon Settings"
1114
+ msgstr "Impostazioni icona"
1115
 
1116
+ #: includes/admin-settings-icons.php:13
 
 
1117
  #@ fl-builder
1118
+ msgid "Icons for the main site must be managed in the network admin."
1119
+ msgstr "Le icone per il sito principale devono essere gestite nell'amministrazione di rete."
1120
 
1121
+ #: includes/admin-settings-icons.php:33
1122
+ #, php-format
 
1123
  #@ fl-builder
1124
+ msgid "Enable or disable icon sets using the options below or upload a custom icon set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
1125
+ msgstr "Abilita o disabilita set di icone usando le opzioni qui sotto o carica un set di icone personalizzato da <a%s>Icomoon</a> o <a%s>Fontello</a>."
1126
 
1127
+ #: includes/admin-settings-icons.php:48
 
 
1128
  #@ fl-builder
1129
+ msgctxt "Plugin setup page: Delete icon set."
1130
+ msgid "Delete"
1131
+ msgstr "Elimina"
1132
 
1133
+ #: includes/admin-settings-icons.php:59
 
 
1134
  #@ fl-builder
1135
+ msgid "Upload Icon Set"
1136
+ msgstr "Carica set di icone"
1137
 
1138
+ #: includes/admin-settings-icons.php:60
 
 
1139
  #@ fl-builder
1140
+ msgid "Save Icon Settings"
1141
+ msgstr "Salva impostazioni icona"
1142
 
1143
+ #: includes/admin-settings-js-config.php:4
1144
  #@ fl-builder
1145
+ msgid "Select File"
1146
+ msgstr "Seleziona file"
1147
 
1148
+ #: includes/admin-settings.php:276
1149
+ #: includes/multisite-settings.php:198
1150
  #@ fl-builder
1151
+ msgid "Please type \"uninstall\" in the box below to confirm that you really want to uninstall the page builder and all of its data."
1152
+ msgstr "Si prega di digitare \"uninstall\" nella casella qui sotto per confermare che si desidera davvero disinstallare il page builder e tutti i relativi dati."
1153
 
1154
+ #: includes/admin-settings.php:74
1155
+ #: includes/multisite-settings.php:39
1156
  #@ fl-builder
1157
+ msgid "Enabled Modules"
1158
+ msgstr "Moduli abilitati"
1159
 
1160
+ #: includes/admin-settings.php:87
1161
+ #: includes/multisite-settings.php:45
 
 
 
 
 
 
1162
  #@ fl-builder
1163
+ msgid "Check or uncheck modules below to enable or disable them."
1164
+ msgstr "Selezionare o deselezionare i moduli sottostanti per abilitarli o disabilitarli."
1165
 
1166
+ #: includes/admin-settings.php:96
1167
+ #: includes/multisite-settings.php:54
 
 
 
 
 
 
 
 
1168
  #@ fl-builder
1169
+ msgctxt "Plugin setup page: Modules."
1170
+ msgid "All"
1171
+ msgstr "Tutti"
1172
 
1173
+ #: includes/admin-settings.php:114
1174
+ #: includes/multisite-settings.php:72
1175
  #@ fl-builder
1176
+ msgid "Save Module Settings"
1177
+ msgstr "Salvare le impostazioni del modulo"
1178
 
1179
+ #: includes/admin-settings-post-types.php:18
1180
  #@ fl-builder
1181
+ msgid "Enter a comma separated list of the post types you would like the builder to work with."
1182
+ msgstr "Inserisci una lista separata da virgole dei tipi di post su cui desideri attivare il builder."
1183
 
1184
+ #: includes/admin-settings.php:177
1185
+ #: includes/multisite-settings.php:117
1186
  #@ fl-builder
1187
+ msgid "NOTE: Not all custom post types may be supported."
1188
+ msgstr "Nota: Non tutti i tipi di post personalizzati potrebbero essere supportati."
1189
 
1190
+ #: includes/admin-settings-post-types.php:34
1191
  #@ fl-builder
1192
+ msgid "Example: page, post, product"
1193
+ msgstr "Esempio: pagina, articolo, prodotto"
1194
 
1195
+ #: includes/admin-settings.php:176
 
 
1196
  #@ fl-builder
1197
+ msgid "Select the post types you would like the builder to work with."
1198
+ msgstr "Seleziona i tipi di post su cui vuoi abilitare il builder."
1199
 
1200
+ #: includes/admin-settings.php:205
1201
+ #: includes/multisite-settings.php:135
1202
  #@ fl-builder
1203
+ msgid "Save Post Types"
1204
+ msgstr "Salva tipi di Post"
1205
 
1206
+ #: includes/admin-settings-templates-override.php:2
1207
+ #: includes/admin-settings-templates-override.php:8
1208
+ #: includes/admin-settings-templates-override.php:13
1209
  #@ fl-builder
1210
+ msgid "Override Core Templates"
1211
+ msgstr "Override modelli core"
1212
 
1213
+ #: includes/admin-settings-templates-override.php:3
 
 
1214
  #@ fl-builder
1215
+ msgid "Enter the ID of a site on the network whose templates should override core builder templates. Leave this field blank if you do not wish to override core templates."
1216
+ msgstr "Inserisci l'ID di un sito nella rete i cui templates dovrebbero prevalere sui modelli core del builder. Lascia questo campo in bianco se non vuoi prevalere sui modelli core."
1217
 
1218
+ #: includes/admin-settings-templates-override.php:9
1219
  #@ fl-builder
1220
+ msgid "Use this setting to override core builder templates with your templates."
1221
+ msgstr "Usa questa impostazione per prevalere sui modelli core del builder con i tuoi modelli. "
1222
 
1223
+ #: includes/admin-settings.php:125
1224
+ #: includes/multisite-settings.php:82
1225
  #@ fl-builder
1226
+ msgid "Template Settings"
1227
+ msgstr "Impostazioni dei modelli"
 
1228
 
1229
+ #: includes/admin-settings-templates.php:22
 
1230
  #@ fl-builder
1231
+ msgid "Enable Templates"
1232
+ msgstr "Abilita modelli"
1233
 
1234
+ #: includes/admin-settings-templates.php:23
 
1235
  #@ fl-builder
1236
+ msgid "Use this setting to enable or disable templates in the builder interface."
1237
+ msgstr "Usa questa impostazione per abilitare o disabilitare modelli nell'interfaccia del builder."
1238
 
1239
+ #: includes/admin-settings.php:145
1240
+ #: includes/multisite-settings.php:95
1241
  #@ fl-builder
1242
+ msgid "Enable All Templates"
1243
+ msgstr "Abilita tutti i modelli"
1244
 
1245
+ #: includes/admin-settings.php:146
1246
+ #: includes/multisite-settings.php:96
1247
  #@ fl-builder
1248
+ msgid "Enable Core Templates Only"
1249
+ msgstr "Abilita solo i modelli Core"
1250
 
1251
+ #: includes/admin-settings.php:147
1252
+ #: includes/multisite-settings.php:97
1253
  #@ fl-builder
1254
+ msgid "Enable User Templates Only"
1255
+ msgstr "Abilita solo i modelli utente"
1256
 
1257
+ #: includes/admin-settings.php:148
1258
+ #: includes/multisite-settings.php:98
1259
  #@ fl-builder
1260
+ msgid "Disable All Templates"
1261
+ msgstr "Disabilita tutti i modelli"
1262
 
1263
+ #: includes/admin-settings-templates.php:31
1264
+ #: includes/admin-settings-templates.php:36
1265
+ #@ fl-builder
1266
+ msgid "Enable Templates Admin"
1267
+ msgstr "Abilita amministrazione modelli"
1268
+
1269
+ #: includes/admin-settings-templates.php:32
1270
  #@ fl-builder
1271
+ msgid "Use this setting to edit builder templates in the WordPress admin."
1272
+ msgstr "Usa questa impostazione per modificare i modelli del builder nell'amministrazione di Wordpress."
1273
 
1274
+ #: includes/admin-settings.php:152
1275
+ #: includes/multisite-settings.php:102
1276
  #@ fl-builder
1277
+ msgid "Save Template Settings"
1278
+ msgstr "Salva le impostazioni dei modelli"
 
 
1279
 
1280
+ #: includes/admin-settings.php:252
1281
+ #: includes/multisite-settings.php:174
1282
  #@ fl-builder
1283
+ 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."
1284
+ msgstr "Clicca sul pulsante qui sotto per disinstallare il page builder plugin e rimuovere tutti i dati ad esso associati. È possibile disinstallare o disattivare il page builder dalla pagina dei plugin se invece non si desidera eliminare i dati."
1285
 
1286
+ #: includes/admin-settings.php:254
1287
+ #: includes/multisite-settings.php:176
1288
  #@ fl-builder
1289
+ 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."
1290
+ msgstr "Il builder non elimina il post meta <code>_fl_builder_data</code> , <code>_fl_builder_draft</code> e <code>_fl_builder_enabled</code> nel caso in cui si desidera reinstallarlo successivamente. Se lo fai, il builder ricostruirà tutti i suoi dati utilizzando quei valori meta."
1291
 
1292
+ #: includes/admin-settings.php:61
1293
  #@ fl-builder
1294
+ 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!"
1295
+ msgstr "Stai usando la versione lite del plugin Beaver Builder. Aggiorna oggi per accedere a funzioni premium come moduli avanzati, modelli, supporto e altro!"
1296
 
1297
+ #: includes/admin-settings.php:63
 
1298
  #@ fl-builder
1299
+ msgid "Upgrade Now"
1300
+ msgstr "Aggiorna ora"
1301
 
1302
+ #: includes/admin-settings.php:65
 
1303
  #@ fl-builder
1304
+ msgid "Learn More"
1305
+ msgstr "Ulteriori informazioni"
1306
 
1307
+ #: includes/admin-templates-edit.php:3
 
1308
  #@ fl-builder
1309
+ msgid "Edit Template"
1310
+ msgstr "Modifica modello"
1311
 
1312
+ #: includes/admin-templates-edit.php:8
1313
  #@ fl-builder
1314
+ msgctxt "Template edit form field label. Template name."
1315
+ msgid "Name"
1316
+ msgstr "Nome"
1317
 
1318
+ #: modules/callout/callout.php:303
1319
+ #: modules/post-grid/post-grid.php:113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1320
  #@ fl-builder
1321
+ msgid "Image"
1322
+ msgstr "Immagine"
1323
 
1324
+ #: includes/row-settings.php:155
1325
+ #: modules/callout/callout.php:351
1326
+ #: modules/callout/callout.php:371
1327
+ #: modules/content-slider/content-slider.php:466
1328
+ #: modules/post-grid/post-grid.php:127
1329
  #@ fl-builder
1330
+ msgid "Position"
1331
+ msgstr "Posizione"
1332
 
1333
+ #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1334
  #@ fl-builder
1335
+ msgctxt "Template edit form field label. Is template premium one?"
1336
+ msgid "Premium"
1337
+ msgstr "Premium"
1338
 
1339
  #: includes/global-settings.php:18
1340
  #: includes/global-settings.php:87
1428
  msgid "Yes"
1429
  msgstr "Sì"
1430
 
1431
+ #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1432
  #@ fl-builder
1433
+ msgid "Category"
1434
+ msgstr "Categoria"
1435
 
1436
+ #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1437
  #@ fl-builder
1438
+ msgctxt "Templates category label."
1439
+ msgid "Landing Pages"
1440
+ msgstr "Landing Pages"
1441
 
1442
+ #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1443
  #@ fl-builder
1444
+ msgctxt "Templates category label."
1445
+ msgid "Company Info"
1446
+ msgstr "Informazioni organizzazione"
1447
 
1448
+ #: includes/admin-templates-edit.php:40
1449
  #@ fl-builder
1450
+ msgid "Update Template"
1451
+ msgstr "Aggiorna modello"
1452
 
1453
+ #: includes/admin-templates.php:3
 
 
1454
  #@ fl-builder
1455
+ msgid "Page Builder Template"
1456
+ msgstr "Modello di Page Builder"
1457
 
1458
+ #: includes/admin-templates.php:10
 
 
 
1459
  #@ fl-builder
1460
+ msgctxt "Templates list column label."
1461
+ msgid "Name"
1462
+ msgstr "Nome"
1463
 
1464
+ #: includes/admin-templates.php:11
1465
  #@ fl-builder
1466
+ msgctxt "Templates list column label."
1467
+ msgid "Category"
1468
+ msgstr "Categoria"
1469
 
1470
+ #: includes/admin-templates.php:12
1471
  #@ fl-builder
1472
+ msgctxt "Templates list column label. Is template premium one?"
1473
+ msgid "Premium"
1474
+ msgstr "Premium"
1475
 
1476
+ #: includes/field-photo.php:12
1477
+ #: includes/template-selector.php:83
1478
  #@ fl-builder
1479
+ msgid "Edit"
1480
+ msgstr "Modifica"
1481
 
1482
+ #: includes/template-selector.php:84
1483
  #@ fl-builder
1484
+ msgid "Delete"
1485
+ msgstr "Elimina"
1486
 
1487
+ #: includes/js-config.php:26
1488
  #@ fl-builder
1489
+ msgid "Do you really want to delete this template?"
1490
+ msgstr "Vuoi davvero eliminare questo modello?"
1491
 
1492
+ #: includes/column-settings.php:4
1493
+ #: includes/js-config.php:21
1494
  #@ fl-builder
1495
+ msgid "Column Settings"
1496
+ msgstr "Impostazioni colonna"
 
1497
 
1498
+ #: includes/column-settings.php:7
1499
+ #: includes/module-settings.php:95
1500
+ #: includes/row-settings.php:9
1501
+ #: modules/accordion/accordion.php:45
1502
+ #: modules/button/button.php:95
1503
+ #: modules/callout/callout.php:239
1504
+ #: modules/content-slider/content-slider.php:419
1505
+ #: modules/cta/cta.php:99
1506
+ #: modules/heading/heading.php:69
1507
+ #: modules/icon/icon.php:75
1508
+ #: modules/icon-group/icon-group.php:44
1509
+ #: modules/pricing-table/pricing-table.php:43
1510
+ #: modules/pricing-table/pricing-table.php:155
1511
+ #: modules/separator/separator.php:72
1512
+ #: modules/tabs/tabs.php:45
1513
  #@ fl-builder
1514
+ msgid "Style"
1515
+ msgstr "Stile"
1516
 
1517
+ #: includes/column-settings.php:14
1518
  #@ fl-builder
1519
+ msgid "Column Width"
1520
+ msgstr "Larghezza colonna"
1521
 
1522
+ #: includes/column-settings.php:26
1523
+ #: includes/row-settings.php:48
1524
+ #: modules/button/button.php:53
1525
+ #: modules/callout/callout.php:223
1526
+ #: modules/callout/callout.php:476
1527
+ #: modules/callout/callout.php:492
1528
+ #: modules/content-slider/content-slider.php:376
1529
+ #: modules/content-slider/content-slider.php:610
1530
+ #: modules/cta/cta.php:82
1531
+ #: modules/cta/cta.php:219
1532
  #@ fl-builder
1533
+ msgid "Text"
1534
+ msgstr "Testo"
1535
 
1536
+ #: includes/column-settings.php:30
1537
+ #: includes/column-settings.php:43
1538
+ #: includes/column-settings.php:100
1539
+ #: includes/row-settings.php:52
1540
+ #: includes/row-settings.php:109
1541
+ #: includes/row-settings.php:379
1542
+ #: modules/callout/callout.php:389
1543
+ #: modules/content-slider/content-slider.php:331
1544
+ #: modules/icon/icon.php:82
1545
+ #: modules/icon-group/icon-group.php:51
1546
+ #: modules/separator/separator.php:34
1547
  #@ fl-builder
1548
+ msgid "Color"
1549
+ msgstr "Colore"
1550
 
1551
+ #: includes/column-settings.php:38
1552
+ #: includes/row-settings.php:60
1553
  #@ fl-builder
1554
+ msgid "Link Color"
1555
+ msgstr "Colore collegamento"
1556
 
1557
+ #: includes/column-settings.php:46
1558
+ #: includes/row-settings.php:68
1559
  #@ fl-builder
1560
+ msgid "Link Hover Color"
1561
+ msgstr "Colore collegamento al passaggio del mouse"
1562
 
1563
+ #: includes/column-settings.php:54
1564
+ #: includes/row-settings.php:76
1565
  #@ fl-builder
1566
+ msgid "Heading Color"
1567
+ msgstr "Colore intestazione"
1568
 
1569
+ #: includes/row-settings.php:61
1570
  #@ fl-builder
1571
+ msgid "Background"
1572
+ msgstr "Sfondo"
1573
 
1574
+ #: includes/column-settings.php:67
1575
+ #: includes/row-settings.php:65
1576
+ #: includes/row-settings.php:346
1577
+ #: modules/callout/callout.php:472
1578
+ #: modules/content-slider/content-slider.php:325
1579
+ #: modules/content-slider/content-slider.php:372
1580
+ #: modules/content-slider/content-slider.php:590
1581
+ #: modules/content-slider/content-slider.php:694
1582
+ #: modules/slideshow/slideshow.php:339
1583
  #@ fl-builder
1584
+ msgid "Type"
1585
+ msgstr "Tipo"
1586
 
1587
+ #: includes/row-settings.php:68
1588
+ #: modules/content-slider/content-slider.php:332
1589
  #@ fl-builder
1590
+ msgctxt "Background type."
1591
+ msgid "None"
1592
+ msgstr "Nessuno"
1593
 
1594
+ #: includes/row-settings.php:69
1595
  #@ fl-builder
1596
+ msgctxt "Background type."
1597
+ msgid "Color"
1598
+ msgstr "Colore"
1599
 
1600
+ #: includes/row-settings.php:70
1601
  #@ fl-builder
1602
+ msgctxt "Background type."
1603
+ msgid "Photo"
1604
+ msgstr "Foto"
1605
 
1606
+ #: includes/column-settings.php:39
1607
+ #: includes/row-settings.php:105
1608
+ #: modules/button/button.php:102
1609
+ #: modules/callout/callout.php:402
1610
+ #: modules/callout/callout.php:506
1611
+ #: modules/content-slider/content-slider.php:357
1612
+ #: modules/content-slider/content-slider.php:624
1613
+ #: modules/cta/cta.php:195
1614
+ #: modules/cta/cta.php:262
1615
+ #: modules/icon/icon.php:95
1616
+ #: modules/icon-group/icon-group.php:64
1617
  #@ fl-builder
1618
+ msgid "Background Color"
1619
+ msgstr "Colore di sfondo"
1620
 
1621
+ #: includes/column-settings.php:51
1622
+ #: includes/column-settings.php:108
1623
+ #: includes/row-settings.php:117
1624
+ #: includes/row-settings.php:387
1625
+ #: modules/separator/separator.php:44
1626
  #@ fl-builder
1627
+ msgid "Opacity"
1628
+ msgstr "Opacità"
1629
 
1630
+ #: includes/row-settings.php:129
1631
+ #: modules/content-slider/content-slider.php:353
1632
  #@ fl-builder
1633
+ msgid "Background Photo"
1634
+ msgstr "Foto di sfondo"
1635
 
1636
+ #: includes/row-settings.php:133
1637
+ #: includes/row-settings.php:321
1638
+ #: modules/callout/callout.php:314
1639
+ #: modules/callout/callout.php:330
1640
+ #: modules/callout/callout.php:334
1641
+ #: modules/content-slider/content-slider.php:329
1642
+ #: modules/content-slider/content-slider.php:398
1643
+ #: modules/content-slider/content-slider.php:710
1644
+ #: modules/photo/photo.php:25
1645
+ #: modules/photo/photo.php:392
1646
  #@ fl-builder
1647
+ msgid "Photo"
1648
+ msgstr "Foto"
1649
 
1650
+ #: includes/row-settings.php:140
1651
  #@ fl-builder
1652
+ msgid "Repeat"
1653
+ msgstr "Ripetizione"
1654
 
1655
+ #: includes/row-settings.php:143
1656
  #@ fl-builder
1657
+ msgctxt "Background repeat."
1658
+ msgid "None"
1659
+ msgstr "Nessuna"
1660
 
1661
+ #: includes/row-settings.php:144
1662
  #@ fl-builder
1663
+ msgctxt "Background repeat."
1664
+ msgid "Tile"
1665
+ msgstr "Tassello"
1666
 
1667
+ #: includes/row-settings.php:145
1668
  #@ fl-builder
1669
+ msgctxt "Background repeat."
1670
+ msgid "Horizontal"
1671
+ msgstr "Orizzontale"
1672
 
1673
+ #: includes/row-settings.php:146
1674
  #@ fl-builder
1675
+ msgctxt "Background repeat."
1676
+ msgid "Vertical"
1677
+ msgstr "Verticale"
1678
 
1679
+ #: includes/column-settings.php:107
1680
+ #: includes/row-settings.php:148
1681
  #@ fl-builder
1682
+ msgid "Repeat applies to how the image should display in the background. Choosing none will display the image as uploaded. Tile will repeat the image as many times as needed to fill the background horizontally and vertically. You can also specify the image to only repeat horizontally or vertically."
1683
+ msgstr "Ripeti si applica a come mostrare l'immagine nello sfondo. Scegliendo nessuno mostrerà l'immagine così come caricata. Tassello ripeterà l'immagine tante volte quanto necessario per riempire lo sfondo in orizontale e verticale. Puoi anche specificare di ripetere l'immagine solo in orizontale o verticale."
1684
 
1685
+ #: includes/row-settings.php:158
1686
  #@ fl-builder
1687
+ msgid "Left Top"
1688
+ msgstr "Sinistra Alto"
1689
 
1690
+ #: includes/row-settings.php:159
1691
  #@ fl-builder
1692
+ msgid "Left Center"
1693
+ msgstr "Sinistra Centro"
1694
 
1695
+ #: includes/row-settings.php:160
1696
  #@ fl-builder
1697
+ msgid "Left Bottom"
1698
+ msgstr "Sinistra Basso"
1699
 
1700
+ #: includes/row-settings.php:161
1701
  #@ fl-builder
1702
+ msgid "Right Top"
1703
+ msgstr "Destra Alto"
1704
 
1705
+ #: includes/row-settings.php:162
1706
  #@ fl-builder
1707
+ msgid "Right Center"
1708
+ msgstr "Destra Centro"
1709
 
1710
+ #: includes/row-settings.php:163
1711
  #@ fl-builder
1712
+ msgid "Right Bottom"
1713
+ msgstr "Destra Basso"
1714
 
1715
+ #: includes/row-settings.php:164
1716
  #@ fl-builder
1717
+ msgid "Center Top"
1718
+ msgstr "Centro Alto"
1719
 
1720
+ #: includes/row-settings.php:165
1721
+ #: modules/button/button.php:176
1722
+ #: modules/callout/callout.php:249
1723
+ #: modules/content-slider/content-slider.php:471
1724
+ #: modules/cta/cta.php:124
1725
+ #: modules/heading/heading.php:90
1726
+ #: modules/heading/heading.php:162
1727
+ #: modules/icon/icon.php:133
1728
+ #: modules/icon-group/icon-group.php:110
1729
+ #: modules/photo/photo.php:418
1730
+ #: modules/social-buttons/social-buttons.php:100
1731
  #@ fl-builder
1732
+ msgid "Center"
1733
+ msgstr "Centro"
1734
 
1735
+ #: includes/row-settings.php:166
1736
  #@ fl-builder
1737
+ msgid "Center Bottom"
1738
+ msgstr "Centro Basso"
1739
 
1740
+ #: includes/column-settings.php:127
1741
+ #: includes/row-settings.php:168
1742
  #@ fl-builder
1743
+ msgid "Position will tell the image where it should sit in the background."
1744
+ msgstr "La posizione sistemerà l'immagine sullo sfondo."
1745
 
1746
+ #: includes/row-settings.php:175
 
1747
  #@ fl-builder
1748
+ msgid "Attachment"
1749
+ msgstr "Attaccatura"
1750
 
1751
+ #: includes/row-settings.php:178
1752
+ #: modules/post-grid/post-grid.php:75
1753
  #@ fl-builder
1754
+ msgid "Scroll"
1755
+ msgstr "Scorrimento"
1756
 
1757
+ #: includes/row-settings.php:19
1758
+ #: includes/row-settings.php:37
1759
+ #: includes/row-settings.php:179
1760
  #@ fl-builder
1761
+ msgid "Fixed"
1762
+ msgstr "Fissa"
1763
 
1764
+ #: includes/column-settings.php:140
1765
+ #: includes/row-settings.php:181
1766
  #@ fl-builder
1767
+ 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 background if fill is selected in the scale setting."
1768
+ msgstr "L'attaccatura specificherà come reagisce l'immagine durante lo scorrimento di pagina. Quando lo scorrimento è selezionato, l'immagine scorre con lo scorrimento della pagina. Questa è l'impostazione predefinita. Fisso permette all'immagine di scorrere all'interno dello sfondo se nelle impostazioni di scala è selezionato riempimento."
1769
 
1770
+ #: includes/row-settings.php:188
1771
  #@ fl-builder
1772
+ msgid "Scale"
1773
+ msgstr "Scala"
1774
 
1775
+ #: includes/row-settings.php:191
 
1776
  #@ fl-builder
1777
+ msgctxt "Background scale."
1778
+ msgid "None"
1779
+ msgstr "Nessuno"
1780
 
1781
+ #: includes/row-settings.php:192
1782
  #@ fl-builder
1783
+ msgid "Fit"
1784
+ msgstr "Adatta"
1785
 
1786
+ #: includes/row-settings.php:193
1787
+ #@ fl-builder
1788
+ msgid "Fill"
1789
+ msgstr "Riempi"
1790
+
1791
+ #: includes/column-settings.php:154
1792
+ #: includes/row-settings.php:195
1793
  #@ fl-builder
1794
+ msgid "Scale applies to how the image should display in the background. You can select either fill or fit to the background."
1795
+ msgstr "La scala si applica a come si dovrebbe visualizzare l'immagine sullo sfondo. È possibile selezionare o riempimento o adatta allo sfondo della riga."
1796
 
1797
+ #: includes/row-settings.php:342
1798
  #@ fl-builder
1799
+ msgid "Background Overlay"
1800
+ msgstr "Sfondo overlay"
1801
 
1802
+ #: includes/row-settings.php:346
1803
  #@ fl-builder
1804
+ msgid "Overlay Color"
1805
+ msgstr "Colore overlay"
1806
 
1807
+ #: includes/row-settings.php:354
1808
  #@ fl-builder
1809
+ msgid "Overlay Opacity"
1810
+ msgstr "Opacità overlay"
1811
 
1812
+ #: includes/column-settings.php:63
1813
+ #: includes/row-settings.php:342
1814
  #@ fl-builder
1815
+ msgid "Border"
1816
+ msgstr "Bordo"
1817
 
1818
+ #: includes/column-settings.php:69
1819
+ #: includes/row-settings.php:348
1820
  #@ fl-builder
1821
+ msgid "The type of border to use. Double borders must have a width of at least 3px to render properly."
1822
+ msgstr "Il tipo di bordo da utilizzare. I bordi doppi devono avere una larghezza di almeno 3px per essere visualizzati correttamente."
1823
 
1824
+ #: includes/column-settings.php:71
1825
+ #: includes/row-settings.php:350
1826
  #@ fl-builder
1827
+ msgctxt "Border type."
1828
+ msgid "None"
1829
+ msgstr "Nessuno"
1830
 
1831
+ #: includes/column-settings.php:72
1832
+ #: includes/row-settings.php:351
1833
+ #: modules/separator/separator.php:75
1834
  #@ fl-builder
1835
+ msgctxt "Border type."
1836
+ msgid "Solid"
1837
+ msgstr "Solido"
1838
 
1839
+ #: includes/column-settings.php:73
1840
+ #: includes/row-settings.php:352
1841
+ #: modules/separator/separator.php:76
1842
  #@ fl-builder
1843
+ msgctxt "Border type."
1844
+ msgid "Dashed"
1845
+ msgstr "Tratteggiato"
1846
 
1847
+ #: includes/column-settings.php:74
1848
+ #: includes/row-settings.php:353
1849
+ #: modules/separator/separator.php:77
1850
  #@ fl-builder
1851
+ msgctxt "Border type."
1852
+ msgid "Dotted"
1853
+ msgstr "Punteggiato"
1854
 
1855
+ #: includes/column-settings.php:75
1856
+ #: includes/row-settings.php:354
1857
+ #: modules/separator/separator.php:78
1858
  #@ fl-builder
1859
+ msgctxt "Border type."
1860
+ msgid "Double"
1861
+ msgstr "Doppio"
1862
 
1863
+ #: includes/column-settings.php:119
1864
+ #: includes/row-settings.php:398
1865
  #@ fl-builder
1866
+ msgid "Top Width"
1867
+ msgstr "Larghezza superiore"
1868
 
1869
+ #: includes/column-settings.php:131
1870
+ #: includes/row-settings.php:410
1871
  #@ fl-builder
1872
+ msgid "Bottom Width"
1873
+ msgstr "Larghezza inferiore"
1874
 
1875
+ #: includes/column-settings.php:143
1876
+ #: includes/row-settings.php:422
1877
  #@ fl-builder
1878
+ msgid "Left Width"
1879
+ msgstr "Larghezza sinistra"
1880
 
1881
+ #: includes/column-settings.php:155
1882
+ #: includes/row-settings.php:434
1883
  #@ fl-builder
1884
+ msgid "Right Width"
1885
+ msgstr "Larghezza destra"
1886
 
1887
+ #: includes/column-settings.php:170
1888
+ #: includes/module-settings.php:6
1889
+ #: includes/row-settings.php:449
1890
+ #: modules/content-slider/content-slider.php:267
1891
  #@ fl-builder
1892
+ msgid "Advanced"
1893
+ msgstr "Avanzato"
1894
 
1895
+ #: includes/column-settings.php:263
1896
+ #: includes/global-settings.php:41
1897
+ #: includes/global-settings.php:71
1898
+ #: includes/module-settings.php:38
1899
+ #: includes/row-settings.php:481
1900
  #@ fl-builder
1901
+ msgid "Margins"
1902
+ msgstr "Margini"
1903
 
1904
+ #: includes/column-settings.php:267
1905
+ #: includes/column-settings.php:320
1906
+ #: includes/module-settings.php:42
1907
+ #: includes/row-settings.php:485
1908
+ #: includes/row-settings.php:538
1909
+ #: modules/slideshow/slideshow.php:475
1910
  #@ fl-builder
1911
+ msgid "Top"
1912
+ msgstr "Alto"
1913
 
1914
+ #: includes/column-settings.php:279
1915
+ #: includes/column-settings.php:332
1916
+ #: includes/module-settings.php:54
1917
+ #: includes/row-settings.php:497
1918
+ #: includes/row-settings.php:550
1919
+ #: modules/slideshow/slideshow.php:474
1920
  #@ fl-builder
1921
+ msgid "Bottom"
1922
+ msgstr "Basso"
1923
 
1924
+ #: includes/column-settings.php:291
1925
+ #: includes/column-settings.php:344
1926
+ #: includes/module-settings.php:66
1927
+ #: includes/row-settings.php:509
1928
+ #: includes/row-settings.php:562
1929
+ #: modules/button/button.php:177
1930
+ #: modules/callout/callout.php:250
1931
+ #: modules/content-slider/content-slider.php:470
1932
+ #: modules/cta/cta.php:123
1933
+ #: modules/heading/heading.php:89
1934
+ #: modules/heading/heading.php:161
1935
+ #: modules/icon/icon.php:134
1936
+ #: modules/icon-group/icon-group.php:111
1937
+ #: modules/photo/photo.php:417
1938
+ #: modules/social-buttons/social-buttons.php:101
1939
  #@ fl-builder
1940
+ msgid "Left"
1941
+ msgstr "Sinistra"
1942
 
1943
+ #: includes/column-settings.php:303
1944
+ #: includes/column-settings.php:356
1945
+ #: includes/module-settings.php:78
1946
+ #: includes/row-settings.php:521
1947
+ #: includes/row-settings.php:574
1948
+ #: modules/button/button.php:178
1949
+ #: modules/callout/callout.php:251
1950
+ #: modules/content-slider/content-slider.php:472
1951
+ #: modules/cta/cta.php:125
1952
+ #: modules/heading/heading.php:91
1953
+ #: modules/heading/heading.php:163
1954
+ #: modules/icon/icon.php:135
1955
+ #: modules/icon-group/icon-group.php:112
1956
+ #: modules/photo/photo.php:419
1957
+ #: modules/social-buttons/social-buttons.php:102
1958
  #@ fl-builder
1959
+ msgid "Right"
1960
+ msgstr "Destra"
1961
 
1962
+ #: includes/column-settings.php:316
1963
+ #: includes/global-settings.php:49
1964
+ #: includes/row-settings.php:534
1965
+ #: modules/button/button.php:191
1966
+ #: modules/callout/callout.php:567
1967
+ #: modules/content-slider/content-slider.php:668
1968
+ #: modules/cta/cta.php:314
1969
  #@ fl-builder
1970
+ msgid "Padding"
1971
+ msgstr "Padding"
1972
 
1973
+ #: includes/column-settings.php:186
1974
+ #: includes/global-settings.php:80
1975
  #@ fl-builder
1976
+ msgid "Responsive Layout"
1977
+ msgstr "Layout reattivo"
1978
 
1979
+ #: includes/column-settings.php:190
1980
+ #: includes/module-settings.php:21
1981
+ #: includes/row-settings.php:464
1982
+ #: modules/slideshow/slideshow.php:290
1983
  #@ fl-builder
1984
+ msgid "Display"
1985
+ msgstr "Visualizza"
1986
 
1987
+ #: includes/column-settings.php:192
1988
+ #: includes/module-settings.php:23
1989
+ #: includes/row-settings.php:466
1990
  #@ fl-builder
1991
+ msgid "Always"
1992
+ msgstr "Sempre"
1993
 
1994
+ #: includes/column-settings.php:193
1995
+ #: includes/module-settings.php:24
1996
+ #: includes/row-settings.php:467
1997
  #@ fl-builder
1998
+ msgid "Large Devices Only"
1999
+ msgstr "Solo dispositivi grandi"
2000
 
2001
+ #: includes/column-settings.php:194
2002
+ #: includes/module-settings.php:25
2003
+ #: includes/row-settings.php:468
2004
  #@ fl-builder
2005
+ msgid "Large &amp; Medium Devices Only"
2006
+ msgstr "Solo dispositivi grandi e medi"
2007
 
2008
+ #: includes/column-settings.php:195
2009
+ #: includes/module-settings.php:26
2010
+ #: includes/row-settings.php:469
2011
  #@ fl-builder
2012
+ msgid "Medium Devices Only"
2013
+ msgstr "Solo dispositivi medi"
2014
 
2015
+ #: includes/column-settings.php:196
2016
+ #: includes/module-settings.php:27
2017
+ #: includes/row-settings.php:470
2018
  #@ fl-builder
2019
+ msgid "Medium &amp; Small Devices Only"
2020
+ msgstr "Solo dispositivi medi e piccoli"
2021
 
2022
+ #: includes/column-settings.php:197
2023
+ #: includes/module-settings.php:28
2024
+ #: includes/row-settings.php:471
2025
  #@ fl-builder
2026
+ msgid "Small Devices Only"
2027
+ msgstr "Solo dispositivi piccoli"
2028
 
2029
+ #: includes/column-settings.php:199
2030
  #@ fl-builder
2031
+ msgid "Choose whether to show or hide this column at different device sizes."
2032
+ msgstr "Scegli se visualizzare o nascondere questa colonna a diverse dimensioni dei dispositivi."
2033
 
2034
+ #: includes/column-settings.php:206
2035
  #@ fl-builder
2036
+ msgid "Medium Device Width"
2037
+ msgstr "Larghezza dispositivi medi"
2038
 
2039
+ #: includes/column-settings.php:207
2040
  #@ fl-builder
2041
+ msgid "The width of this column on medium devices such as tablets."
2042
+ msgstr "La larghezza della colonna su dispositivi medi come i tablet."
2043
 
2044
+ #: includes/column-settings.php:209
2045
+ #: includes/column-settings.php:237
2046
+ #: modules/callout/callout.php:281
2047
+ #: modules/content-slider/content-slider.php:442
2048
+ #: modules/cta/cta.php:165
2049
+ #: modules/heading/heading.php:117
2050
+ #: modules/heading/heading.php:144
2051
+ #: modules/heading/heading.php:174
2052
  #@ fl-builder
2053
+ msgid "Default"
2054
+ msgstr "Predefinita"
2055
 
2056
+ #: includes/column-settings.php:210
2057
+ #: includes/column-settings.php:238
2058
+ #: modules/button/button.php:151
2059
+ #: modules/callout/callout.php:282
2060
+ #: modules/content-slider/content-slider.php:443
2061
+ #: modules/cta/cta.php:166
2062
+ #: modules/heading/heading.php:118
2063
+ #: modules/heading/heading.php:145
2064
+ #: modules/heading/heading.php:175
2065
+ #: modules/social-buttons/social-buttons.php:74
2066
  #@ fl-builder
2067
+ msgid "Custom"
2068
+ msgstr "Personalizzata"
2069
 
2070
+ #: includes/column-settings.php:223
2071
  #@ fl-builder
2072
+ msgid "Custom Medium Device Width"
2073
+ msgstr "Larghezza personalizzata dispositivi medi"
2074
 
2075
+ #: includes/column-settings.php:234
 
 
2076
  #@ fl-builder
2077
+ msgid "Small Device Width"
2078
+ msgstr "Larghezza dispositivi piccoli"
2079
 
2080
+ #: includes/column-settings.php:235
2081
  #@ fl-builder
2082
+ msgid "The width of this column on small devices such as phones."
2083
+ msgstr "La larghezza della colonna su dispositivi piccoli come i telefoni."
2084
 
2085
+ #: includes/column-settings.php:251
 
 
2086
  #@ fl-builder
2087
+ msgid "Custom Small Device Width"
2088
+ msgstr "Larghezza personalizzata dispositivi piccoli"
2089
 
2090
+ #: includes/column-settings.php:356
2091
+ #: includes/module-settings.php:115
2092
+ #: includes/row-settings.php:603
2093
  #@ fl-builder
2094
+ msgid "CSS Selectors"
2095
+ msgstr "Selettore CSS"
2096
 
2097
+ #: includes/loop-settings.php:27
2098
  #@ fl-builder
2099
+ msgid "ID"
2100
+ msgstr "ID"
2101
 
2102
+ #: includes/column-settings.php:361
2103
  #@ fl-builder
2104
+ msgid "A unique ID that will be applied to this column's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
2105
+ msgstr "Un ID univoco che sarà applicato al codice HTML della colonna. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Niente spazi."
2106
 
2107
+ #: includes/column-settings.php:177
2108
+ #: includes/module-settings.php:13
2109
+ #: includes/row-settings.php:456
2110
  #@ fl-builder
2111
+ msgid "CSS Class"
2112
+ msgstr "Classe CSS"
2113
 
2114
+ #: includes/column-settings.php:369
2115
  #@ fl-builder
2116
+ msgid "A class that will be applied to this column's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
2117
+ msgstr "Una classe che sarà applicata al codice HTML di questa colonna. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Separa classi multiple con spazio."
2118
 
2119
+ #: includes/field-form.php:17
2120
+ #, php-format
2121
  #@ fl-builder
2122
+ msgctxt "%s stands for form field label."
2123
+ msgid "Edit %s"
2124
+ msgstr "Modifica %s"
2125
 
2126
+ #: includes/field-icon.php:2
2127
+ #: includes/icon-selector.php:2
2128
  #@ fl-builder
2129
+ msgid "Select Icon"
2130
+ msgstr "Seleziona icona"
2131
 
2132
+ #: includes/field-icon.php:5
2133
+ #: includes/field-photo.php:13
2134
  #@ fl-builder
2135
+ msgid "Replace"
2136
+ msgstr "Sostituisci"
2137
 
2138
+ #: includes/field-icon.php:7
2139
+ #: includes/js-config.php:50
2140
  #@ fl-builder
2141
+ msgid "Remove"
2142
+ msgstr "Rimuovi"
2143
 
2144
+ #: includes/field-link.php:3
 
2145
  #@ fl-builder
2146
+ msgid "Select"
2147
+ msgstr "Seleziona"
2148
 
2149
+ #: includes/field-link.php:5
2150
  #@ fl-builder
2151
+ msgid "Enter a post title to search."
2152
+ msgstr "Inserisci un titolo del post per la ricerca."
2153
 
2154
+ #: includes/field-link.php:6
2155
+ #: includes/field-suggest.php:7
2156
  #@ fl-builder
2157
+ msgid "Start typing..."
2158
+ msgstr "Inizia a digitare..."
2159
 
2160
+ #: includes/field-link.php:7
2161
+ #: includes/icon-selector.php:28
2162
+ #: includes/js-config.php:17
2163
+ #: includes/settings.php:63
2164
+ #: includes/template-selector.php:102
2165
+ #: includes/ui.php:11
2166
+ #@ fl-builder
2167
+ msgid "Cancel"
2168
+ msgstr "Annulla"
2169
 
2170
+ #: includes/field-multiple-photos.php:8
2171
+ #, php-format
2172
  #@ fl-builder
2173
+ msgid "1 Photo Selected"
2174
+ msgid_plural "%d Photos Selected"
2175
+ msgstr[0] "Una foto selezionata"
2176
+ msgstr[1] "%d foto selezionate"
2177
 
2178
+ #: includes/field-multiple-photos.php:13
2179
  #@ fl-builder
2180
+ msgid "Create Gallery"
2181
+ msgstr "Crea galleria"
 
2182
 
2183
+ #: includes/field-multiple-photos.php:14
2184
  #@ fl-builder
2185
+ msgid "Edit Gallery"
2186
+ msgstr "Modifica galleria"
 
2187
 
2188
+ #: includes/field-multiple-photos.php:15
2189
  #@ fl-builder
2190
+ msgid "Add Photos"
2191
+ msgstr "Aggiungi foto"
 
2192
 
2193
+ #: includes/field-photo.php:3
2194
+ #: includes/js-config.php:55
2195
  #@ fl-builder
2196
+ msgid "Select Photo"
2197
+ msgstr "Seleziona foto"
 
2198
 
2199
+ #: includes/field-video.php:3
2200
+ #: includes/js-config.php:57
2201
  #@ fl-builder
2202
+ msgid "Select Video"
2203
+ msgstr "Seleziona video"
 
2204
 
2205
+ #: includes/field-video.php:17
2206
  #@ fl-builder
2207
+ msgid "Replace Video"
2208
+ msgstr "Sostituisci video"
 
2209
 
2210
+ #: includes/global-settings.php:7
2211
+ #: includes/user-template-settings.php:7
2212
+ #: modules/accordion/accordion.php:110
2213
+ #: modules/button/button.php:46
2214
+ #: modules/callout/callout.php:207
2215
+ #: modules/contact-form/contact-form.php:57
2216
+ #: modules/content-slider/content-slider.php:184
2217
+ #: modules/content-slider/content-slider.php:308
2218
+ #: modules/cta/cta.php:65
2219
+ #: modules/gallery/gallery.php:213
2220
+ #: modules/heading/heading.php:26
2221
+ #: modules/html/html.php:26
2222
+ #: modules/icon/icon.php:27
2223
+ #: modules/icon-group/icon-group.php:128
2224
+ #: modules/map/map.php:26
2225
+ #: modules/photo/photo.php:368
2226
+ #: modules/pricing-table/pricing-table.php:87
2227
+ #: modules/rich-text/rich-text.php:26
2228
+ #: modules/separator/separator.php:27
2229
+ #: modules/sidebar/sidebar.php:27
2230
+ #: modules/slideshow/slideshow.php:256
2231
+ #: modules/social-buttons/social-buttons.php:64
2232
+ #: modules/tabs/tabs.php:77
2233
+ #: modules/testimonials/testimonials.php:30
2234
+ #: modules/testimonials/testimonials.php:200
2235
+ #: modules/video/video.php:76
2236
+ #: modules/widget/widget.php:64
2237
+ #: modules/woocommerce/woocommerce.php:50
2238
  #@ fl-builder
2239
+ msgid "General"
2240
+ msgstr "Generale"
2241
 
2242
+ #: includes/global-settings.php:8
 
 
 
 
 
 
 
 
 
2243
  #@ fl-builder
2244
+ msgid "Note: These settings apply to all posts and pages."
2245
+ msgstr "Nota: Queste impostazioni si applicano a tutti i post e pagine."
 
2246
 
2247
+ #: includes/global-settings.php:11
2248
  #@ fl-builder
2249
+ msgid "Default Page Heading"
2250
+ msgstr "Intestazione di pagina predefinita"
2251
 
2252
+ #: includes/global-settings.php:15
2253
  #@ fl-builder
2254
+ msgctxt ""
2255
+ msgid "Show"
2256
+ msgstr "Visualizza"
2257
 
2258
+ #: includes/global-settings.php:26
 
2259
  #@ fl-builder
2260
+ 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."
2261
+ msgstr "Scegliendo no, si nasconderà il titolo predefinito del tema per il tipo di post \"Pagina\". Se scegli no, sarà richiesto anche di inserire alcuni CSS base per fare in modo che questo funzioni."
2262
 
2263
+ #: includes/global-settings.php:30
2264
  #@ fl-builder
2265
+ msgid "CSS Selector"
2266
+ msgstr "Selettore CSS"
2267
 
2268
+ #: includes/global-settings.php:32
 
 
2269
  #@ fl-builder
2270
+ msgid "Enter a CSS selector for the default page heading to hide it."
2271
+ msgstr "Inserire il selettore CSS per nascondere l'intestazione predefinita della pagina."
2272
 
2273
+ #: includes/global-settings.php:37
2274
  #@ fl-builder
2275
+ msgid "Rows"
2276
+ msgstr "Righe"
2277
 
2278
+ #: includes/global-settings.php:57
2279
  #@ fl-builder
2280
+ msgid "Max Width"
2281
+ msgstr "Larghezza max"
2282
 
2283
+ #: includes/global-settings.php:62
2284
  #@ fl-builder
2285
+ msgid "All rows will default to this width. You can override this and make a row full width in the settings for each row."
2286
+ msgstr "Tutte le righe avranno questa larghezza per impostazione predefinita. Potete ignorarla e creare una riga a piena larghezza nelle impostazioni di ciascuna riga."
2287
 
2288
+ #: includes/global-settings.php:66
2289
  #@ fl-builder
2290
+ msgid "Default Row Width"
2291
+ msgstr "Larghezza predefinita riga"
2292
 
2293
+ #: includes/row-settings.php:20
2294
+ #: includes/row-settings.php:38
2295
+ #: modules/button/button.php:150
2296
+ #: modules/callout/callout.php:554
2297
  #@ fl-builder
2298
+ msgid "Full Width"
2299
+ msgstr "Larghezza piena"
 
2300
 
2301
+ #: includes/global-settings.php:80
2302
  #@ fl-builder
2303
+ msgid "Default Row Content Width"
2304
+ msgstr "Larghezza predefinita riga di contenuto"
 
2305
 
2306
+ #: includes/global-settings.php:107
2307
  #@ fl-builder
2308
+ msgctxt ""
2309
+ msgid "Enabled"
2310
+ msgstr "Abilitato"
2311
 
2312
+ #: includes/global-settings.php:121
2313
  #@ fl-builder
2314
+ msgctxt ""
2315
+ msgid "Enable Auto Spacing"
2316
+ msgstr "Attiva spaziatura automatica"
2317
 
2318
+ #: includes/global-settings.php:127
2319
  #@ fl-builder
2320
+ msgid "When auto spacing is enabled, the builder will automatically adjust the margins and padding in your layout once the small device breakpoint is reached. Most users will want to leave this enabled."
2321
+ msgstr "Quando la spaziatura automatica è abilitata, il builder aggiusterà automaticamente i margini e il padding nel tuo layout non appena viene raggiunto il breakpoint per dispositivi piccoli. La maggior parte degli utenti vorrà lasciare questo abilitato."
 
2322
 
2323
+ #: includes/global-settings.php:98
2324
  #@ fl-builder
2325
+ msgid "Medium Device Breakpoint"
2326
+ msgstr "Breakpoint dispositivi medi"
 
2327
 
2328
+ #: includes/global-settings.php:103
 
2329
  #@ fl-builder
2330
+ msgid "The browser width at which the layout will adjust for medium devices such as tablets."
2331
+ msgstr "La larghezza del browser a cui il layout si adatterà per dispositivi medi come i tablet."
2332
 
2333
+ #: includes/global-settings.php:107
 
 
 
 
 
 
 
 
 
2334
  #@ fl-builder
2335
+ msgid "Small Device Breakpoint"
2336
+ msgstr "Breakpoint dispositivi piccoli"
2337
 
2338
+ #: includes/global-settings.php:112
2339
  #@ fl-builder
2340
+ msgid "The browser width at which the layout will adjust for small devices such as phones."
2341
+ msgstr "La larghezza del browser a cui il layout si adatterà per dispositivi piccoli come i telefoni."
2342
 
2343
+ #: includes/icon-selector.php:5
2344
  #@ fl-builder
2345
+ msgctxt "Select option for showing all icon libraries."
2346
+ msgid "All Libraries"
2347
+ msgstr "Tutte le librerie"
2348
 
2349
+ #: includes/js-config.php:16
2350
  #@ fl-builder
2351
+ msgid "What would you like to do?"
2352
+ msgstr "Che cosa vorresti fare?"
 
2353
 
2354
+ #: includes/js-config.php:18
2355
  #@ fl-builder
2356
+ msgid "Change Template"
2357
+ msgstr "Cambiare modello"
 
2358
 
2359
+ #: includes/js-config.php:19
2360
  #@ fl-builder
2361
+ msgid "Warning! Changing the template will replace your existing layout. Do you really want to do this?"
2362
+ msgstr "ATTENZIONE! Cambiare il modello sostituirà il layout esistente. Vuoi davvero fare questo?"
 
2363
 
2364
+ #: includes/js-config.php:20
 
 
 
 
2365
  #@ fl-builder
2366
+ msgid "Column"
2367
+ msgstr "Colonna"
2368
 
2369
+ #: includes/js-config.php:22
2370
  #@ fl-builder
2371
+ msgid "Please select either a background layout or content layout before submitting."
2372
+ msgstr "Si prega di selezionare un layout di sfondo o un layout contenuto prima di inviare."
2373
 
2374
+ #: includes/js-config.php:25
2375
  #@ fl-builder
2376
+ msgid "Remove Account"
2377
+ msgstr "Rimuovi account"
2378
 
2379
+ #: includes/js-config.php:26
2380
  #@ fl-builder
2381
+ msgid "Are you sure you want to remove this account? Other modules that are connected to it will be affected."
2382
+ msgstr "Sei sicuro di voler rimuovere questo account? I moduli che gli sono connessi saranno influenzati."
2383
 
2384
+ #: includes/js-config.php:23
2385
  #@ fl-builder
2386
+ msgid "Do you really want to delete this item?"
2387
+ msgstr "Vuoi davvero eliminare questo elemento?"
2388
 
2389
+ #: includes/js-config.php:24
2390
  #@ fl-builder
2391
+ msgid "Do you really want to delete this module? All content data will be permanently deleted."
2392
+ msgstr "Vuoi davvero eliminare questo modulo? Tutti i dati contenuti verranno eliminati definitivamente."
2393
 
2394
+ #: includes/js-config.php:25
2395
  #@ fl-builder
2396
+ msgid "Do you really want to delete this row? All content data will be permanently deleted."
2397
+ msgstr "Vuoi davvero eliminare questa riga? Tutti i dati contenuti verranno eliminati definitivamente."
2398
 
2399
+ #: includes/js-config.php:31
2400
  #@ fl-builder
2401
+ msgid "Discard Changes"
2402
+ msgstr "Scarta modifiche"
2403
 
2404
+ #: includes/js-config.php:32
 
 
 
 
 
 
 
 
 
 
2405
  #@ fl-builder
2406
+ msgid "Do you really want to discard these changes? All of your changes that are not published will be lost."
2407
+ msgstr "Vuoi veramente scartare queste modifiche? Tutti i cambiamenti che non sono pubblicati saranno persi."
2408
 
2409
+ #: includes/ui.php:41
2410
  #@ fl-builder
2411
+ msgid "Done"
2412
+ msgstr "Fatto"
2413
 
2414
+ #: includes/js-config.php:29
2415
  #@ fl-builder
2416
+ msgid "Save Draft"
2417
+ msgstr "Salva bozza"
2418
 
2419
+ #: includes/js-config.php:30
 
2420
  #@ fl-builder
2421
+ msgctxt "Duplicate page/post action label."
2422
+ msgid "Duplicate"
2423
+ msgstr "Duplica"
2424
 
2425
+ #: includes/js-config.php:31
2426
  #@ fl-builder
2427
+ msgid "Duplicate This Page"
2428
+ msgstr "Duplica questa pagina"
2429
 
2430
+ #: includes/js-config.php:32
2431
  #@ fl-builder
2432
+ msgid "Duplicate This Template"
2433
+ msgstr "Duplica questo modello"
 
2434
 
2435
+ #: includes/js-config.php:33
2436
  #@ fl-builder
2437
+ msgid "Edit Global Settings"
2438
+ msgstr "Modifica impostazioni globali"
2439
 
2440
+ #: includes/js-config.php:34
2441
  #@ fl-builder
2442
+ msgid "Drop a row layout or module to get started!"
2443
+ msgstr "Trascina un layout di riga o un modulo per iniziare!"
2444
 
2445
+ #: includes/js-config.php:40
2446
  #@ fl-builder
2447
+ msgid "Beaver Builder caught the following JavaScript error. If Beaver Builder is not functioning as expected the cause is most likely this error. Please help us by disabling all plugins and testing Beaver Builder while reactivating each to determine if the issue is related to a third party plugin."
2448
+ msgstr "Beaver Builder ha intercettato il seguente errore JavaScript. Se Beaver Builder non funziona come previsto la causa è probabilmente questo errore. Vi preghiamo di aiutarci disabilitando tutti i plugin e provando Beaver Builder dopo averli riattivati uno ad uno per determinare se il problema è legato a un plugin di terze parti."
2449
 
2450
+ #: includes/js-config.php:35
 
 
 
2451
  #@ fl-builder
2452
+ msgid "Full Size"
2453
+ msgstr "Tutta larghezza"
2454
 
2455
+ #: includes/js-config.php:42
2456
  #@ fl-builder
2457
+ msgid "Get Help"
2458
+ msgstr "Richiedi assistenza"
2459
 
2460
+ #: includes/js-config.php:43
2461
  #@ fl-builder
2462
+ msgid "Getting Started Video"
2463
+ msgstr "Video per iniziare"
2464
 
2465
+ #: includes/js-config.php:44
2466
  #@ fl-builder
2467
+ msgid "\"{message}\" on line {line} of {file}."
2468
+ msgstr "\"{message}\" nella riga {line} di {file}."
2469
 
2470
+ #: includes/js-config.php:36
2471
  #@ fl-builder
2472
+ msgid "Insert"
2473
+ msgstr "Inserisci"
2474
 
2475
+ #: includes/js-config.php:37
 
 
2476
  #@ fl-builder
2477
+ msgid "Large"
2478
+ msgstr "Grande"
2479
 
2480
+ #: includes/js-config.php:38
 
 
 
 
2481
  #@ fl-builder
2482
+ msgid "Manage Templates"
2483
+ msgstr "Gestione modelli"
2484
 
2485
+ #: includes/js-config.php:39
 
 
2486
  #@ fl-builder
2487
+ msgid "Medium"
2488
+ msgstr "Medio"
2489
 
2490
+ #: includes/js-config.php:40
 
 
2491
  #@ fl-builder
2492
+ msgid "Module"
2493
+ msgstr "Modulo"
2494
 
2495
+ #: includes/js-config.php:41
 
 
2496
  #@ fl-builder
2497
+ msgid "Move"
2498
+ msgstr "Sposta"
2499
 
2500
+ #: includes/js-config.php:42
 
 
2501
  #@ fl-builder
2502
+ msgid "New Column"
2503
+ msgstr "Nuova colonna"
2504
 
2505
+ #: includes/js-config.php:43
 
 
 
2506
  #@ fl-builder
2507
+ msgid "New Row"
2508
+ msgstr "Nuova riga"
2509
 
2510
+ #: includes/js-config.php:44
2511
  #@ fl-builder
2512
+ msgid "No results found."
2513
+ msgstr "Nessun risultato trovato."
 
2514
 
2515
+ #: includes/js-config.php:54
 
 
 
2516
  #@ fl-builder
2517
+ msgid "No Thanks"
2518
+ msgstr "No grazie"
2519
 
2520
+ #: includes/js-config.php:45
 
2521
  #@ fl-builder
2522
+ msgid "OK"
2523
+ msgstr "OK"
2524
 
2525
+ #: includes/js-config.php:46
2526
+ #: modules/photo/photo.php:454
2527
  #@ fl-builder
2528
+ msgid "Photo Page"
2529
+ msgstr "Pagina di foto"
2530
 
2531
+ #: includes/js-config.php:47
 
2532
  #@ fl-builder
2533
+ msgid "Photo Selected"
2534
+ msgstr "Foto selezionata"
2535
 
2536
+ #: includes/js-config.php:48
 
2537
  #@ fl-builder
2538
+ msgid "Photos Selected"
2539
+ msgstr "Foto selezionate"
2540
 
2541
+ #: includes/js-config.php:59
2542
+ #: modules/subscribe-form/includes/frontend.php:15
2543
  #@ fl-builder
2544
+ msgid "Please Wait..."
2545
+ msgstr "Si prega di attendere..."
2546
 
2547
+ #: includes/js-config.php:49
 
2548
  #@ fl-builder
2549
+ msgid "Publish Changes"
2550
+ msgstr "Pubblica le modifiche"
2551
 
2552
+ #: includes/js-config.php:51
 
2553
  #@ fl-builder
2554
+ msgid "Row"
2555
+ msgstr "Riga"
2556
 
2557
+ #: includes/js-config.php:52
2558
+ #: includes/row-settings.php:6
2559
  #@ fl-builder
2560
+ msgid "Row Settings"
2561
+ msgstr "Impostazioni di riga"
2562
 
2563
+ #: includes/js-config.php:53
 
2564
  #@ fl-builder
2565
+ msgid "Save Core Template"
2566
+ msgstr "Salva il modello Core"
2567
 
2568
+ #: includes/js-config.php:54
2569
+ #: includes/ui.php:10
2570
+ #: includes/user-template-settings.php:4
 
2571
  #@ fl-builder
2572
+ msgid "Save Template"
2573
+ msgstr "Salva modello"
2574
 
2575
+ #: includes/js-config.php:56
2576
+ #@ fl-builder
2577
+ msgid "Select Photos"
2578
+ msgstr "Seleziona foto"
2579
+
2580
+ #: includes/js-config.php:70
2581
+ #@ fl-builder
2582
+ msgid "Please select an account before saving."
2583
+ msgstr "Si prega di selezionare un'account prima di salvare."
2584
+
2585
+ #: includes/js-config.php:71
2586
+ #@ fl-builder
2587
+ msgid "Please connect an account before saving."
2588
+ msgstr "Si prega di connettere un account prima di salvare."
2589
+
2590
+ #: includes/js-config.php:72
2591
  #@ fl-builder
2592
+ msgid "Please select a list before saving."
2593
+ msgstr "Si prega di selezionare una lista prima di salvare."
2594
 
2595
+ #: includes/js-config.php:73
2596
  #@ fl-builder
2597
+ msgid "Take a Tour"
2598
+ msgstr "Inizia visita guidata"
2599
 
2600
+ #: includes/js-config.php:59
2601
  #@ fl-builder
2602
+ msgid "Append New Layout"
2603
+ msgstr "Aggiungi nuovo Layout"
2604
 
2605
+ #: includes/js-config.php:60
2606
  #@ fl-builder
2607
+ msgid "Replace Existing Layout"
2608
+ msgstr "Sostituisci Layout esistente"
 
2609
 
2610
+ #: includes/js-config.php:61
2611
  #@ fl-builder
2612
+ msgid "Template Saved!"
2613
+ msgstr "Modello salvato!"
2614
 
2615
+ #: includes/js-config.php:62
2616
  #@ fl-builder
2617
+ msgid "Thumbnail"
2618
+ msgstr "Miniatura"
2619
 
2620
+ #: includes/js-config.php:78
2621
  #@ fl-builder
2622
+ msgid "Next"
2623
+ msgstr "Avanti"
2624
 
2625
+ #: includes/js-config.php:79
2626
  #@ fl-builder
2627
+ msgid "Get Started"
2628
+ msgstr "Inizia"
2629
 
2630
+ #: includes/js-config.php:80
2631
  #@ fl-builder
2632
+ msgid "Choose a Template"
2633
+ msgstr "Scegli un modello"
2634
 
2635
+ #: includes/js-config.php:81
2636
  #@ fl-builder
2637
+ msgid "Get started by choosing a layout template to customize, or build a page from scratch by selecting the blank layout template."
2638
+ msgstr "Inizia scegliendo un modello di layout da personalizzare, o costruisci una pagina da zero selezionando il modello di layout vuoto."
2639
 
2640
+ #: includes/js-config.php:82
2641
  #@ fl-builder
2642
+ msgid "Add Rows"
2643
+ msgstr "Aggiungi righe"
2644
 
2645
+ #: includes/js-config.php:83
2646
  #@ fl-builder
2647
+ msgid "Add multi-column rows, adjust spacing, add backgrounds and more by dragging and dropping row layouts onto the page."
2648
+ msgstr "Aggiungi righe multi-colonna, aggiusta gli spazi, aggiungi sfondi e altro trascinando e rilasciando layout di riga nella pagina."
2649
 
2650
+ #: includes/ui.php:46
2651
  #@ fl-builder
2652
+ msgid "Add Content"
2653
+ msgstr "Aggiungi contenuto"
2654
 
2655
+ #: includes/js-config.php:85
2656
  #@ fl-builder
2657
+ msgid "Add new content by dragging and dropping modules or widgets into your row layouts or to create a new row layout."
2658
+ msgstr "Aggiungi nuovo contenuto trascinando e rilasciando moduli o widget nei tuoi layout di riga o crea un nuovo layout di riga."
2659
 
2660
+ #: includes/js-config.php:86
2661
  #@ fl-builder
2662
+ msgid "Edit Content"
2663
+ msgstr "Modifica contenuto"
2664
 
2665
+ #: includes/js-config.php:87
2666
  #@ fl-builder
2667
+ msgid "Move your mouse over rows, columns or modules to edit and interact with them."
2668
+ msgstr "Muovi il mouse su righe, colonne o moduli per modificare e interagire con esse."
2669
 
2670
+ #: includes/js-config.php:88
 
2671
  #@ fl-builder
2672
+ msgid "Use the action buttons to perform actions such as moving, editing, duplicating or deleting rows, columns and modules."
2673
+ msgstr "Usa i bottoni di azione per compiere azioni come muovere, modificare, duplicare, o cancellare righe, colonne e moduli."
 
2674
 
2675
+ #: includes/js-config.php:89
2676
  #@ fl-builder
2677
+ msgid "Add More Content"
2678
+ msgstr "Aggiungi contenuto"
2679
 
2680
+ #: includes/js-config.php:90
2681
  #@ fl-builder
2682
+ msgid "Use the Add Content button to open the content panel and add new row layouts, modules or widgets."
2683
+ msgstr "Usa il pulsante Aggiungi contenuto per aprire il pannello contenuti e aggiungere nuove righe di layout, moduli o widgets."
2684
 
2685
+ #: includes/js-config.php:91
 
2686
  #@ fl-builder
2687
+ msgid "Change Templates"
2688
+ msgstr "Cambia modello"
2689
 
2690
+ #: includes/js-config.php:92
2691
  #@ fl-builder
2692
+ msgid "Use the Templates button to pick a new template or append one to your layout. Appending will insert a new template at the end of your existing page content."
2693
+ msgstr "Usa il pulsante Modelli per scegliere un nuovo modello o appenderne uno al tuo layout. Appendi inserirà il nuovo modello alla fine del contenuto di pagina esistente."
2694
 
2695
+ #: includes/js-config.php:93
2696
  #@ fl-builder
2697
+ msgid "Helpful Tools"
2698
+ msgstr "Strumenti utili"
2699
 
2700
+ #: includes/js-config.php:94
2701
  #@ fl-builder
2702
+ msgid "The Tools button lets you duplicate a page, save a template or edit the global settings."
2703
+ msgstr "Il pulsante Strumenti ti permette di duplicare una pagina, salvare un modello o modificare le impostazioni globali."
2704
 
2705
+ #: includes/js-config.php:95
2706
  #@ fl-builder
2707
+ msgid "Publish Your Changes"
2708
+ msgstr "Pubblica le modifiche"
2709
 
2710
+ #: includes/js-config.php:96
2711
  #@ fl-builder
2712
+ msgid "Once you're finished, click the Done button to publish your changes, save a draft or revert back to the last published state."
2713
+ msgstr "Quando hai finito, clicca sul pulsante Fatto per pubblicare le tue modifiche, salvare una bozza o ritornare all'ultima versione pubblicata."
2714
 
2715
+ #: includes/js-config.php:97
2716
  #@ fl-builder
2717
+ msgid "Let's Get Building!"
2718
+ msgstr "Andiamo a costruire!"
2719
 
2720
+ #: includes/js-config.php:98
2721
  #@ fl-builder
2722
+ msgid "Now that you know the basics, you're ready to start building! If at any time you need help, click the help icon in the upper right corner to access the help menu. Happy building!"
2723
+ msgstr "Ora che conosci le basi, sei pronto per iniziare a costruire! Se in qualsiasi momento hai bisogno di aiuto, clicca l'icona aiuto nell'angolo in alto a destra per accedere al menu di aiuto. Buona costruzione!"
2724
 
2725
+ #: includes/js-config.php:63
2726
  #@ fl-builder
2727
+ msgid "The settings you are currently editing will not be saved if you navigate away from this page."
2728
+ msgstr "Le impostazioni che stai modificando attualmente non verranno salvate se navighi via da questa pagina."
2729
 
2730
+ #: includes/js-config.php:100
2731
  #@ fl-builder
2732
+ msgid "View the Knowledge Base"
2733
+ msgstr "Leggi la documentazione"
2734
 
2735
+ #: includes/js-config.php:101
2736
  #@ fl-builder
2737
+ msgid "Visit the Forums"
2738
+ msgstr "Visita i forum"
2739
 
2740
+ #: includes/js-config.php:102
2741
  #@ fl-builder
2742
+ msgid "Watch the Video"
2743
+ msgstr "Visualizza il video"
2744
 
2745
+ #: includes/js-config.php:103
2746
  #@ fl-builder
2747
+ msgid "Welcome! It looks like this might be your first time using the builder. Would you like to take a tour?"
2748
+ msgstr "Benvenuto! Sembra che questa potrebbe essere la prima volta che utilizzi il builder. Vuoi fare un giro?"
2749
 
2750
+ #: includes/js-config.php:104
2751
  #@ fl-builder
2752
+ msgid "Yes Please!"
2753
+ msgstr "Si grazie!"
2754
 
2755
+ #: includes/loop-settings.php:19
2756
  #@ fl-builder
2757
+ msgid "Post Type"
2758
+ msgstr "Tipo di post"
2759
 
2760
+ #: includes/loop-settings.php:25
2761
  #@ fl-builder
2762
+ msgid "Order By"
2763
+ msgstr "Ordina per"
2764
 
2765
+ #: includes/loop-settings.php:28
2766
+ #: modules/post-grid/post-grid.php:155
2767
+ #: modules/woocommerce/woocommerce.php:189
2768
  #@ fl-builder
2769
+ msgid "Date"
2770
+ msgstr "Data"
2771
 
2772
+ #: includes/loop-settings.php:29
 
2773
  #@ fl-builder
2774
+ msgid "Date Last Modified"
2775
+ msgstr "Data ultima modifica"
2776
 
2777
+ #: includes/loop-settings.php:30
2778
+ #: modules/pricing-table/pricing-table.php:90
2779
+ #: modules/pricing-table/pricing-table.php:94
2780
  #@ fl-builder
2781
+ msgid "Title"
2782
+ msgstr "Titolo"
2783
 
2784
+ #: includes/loop-settings.php:31
2785
+ #: modules/post-grid/post-grid.php:146
2786
  #@ fl-builder
2787
+ msgid "Author"
2788
+ msgstr "Autore"
2789
 
2790
+ #: includes/loop-settings.php:32
2791
  #@ fl-builder
2792
+ msgid "Comment Count"
2793
+ msgstr "Conteggio commenti"
2794
 
2795
+ #: includes/loop-settings.php:33
2796
  #@ fl-builder
2797
+ msgid "Menu Order"
2798
+ msgstr "Ordine del menu"
2799
 
2800
+ #: includes/loop-settings.php:34
2801
  #@ fl-builder
2802
+ msgid "Random"
2803
+ msgstr "Casuale"
2804
 
2805
+ #: includes/loop-settings.php:41
 
2806
  #@ fl-builder
2807
+ msgid "Order"
2808
+ msgstr "Ordine"
2809
 
2810
+ #: includes/loop-settings.php:43
2811
  #@ fl-builder
2812
+ msgid "Descending"
2813
+ msgstr "Decrescente"
2814
 
2815
+ #: includes/loop-settings.php:44
2816
  #@ fl-builder
2817
+ msgid "Ascending"
2818
+ msgstr "Ascendente"
2819
 
2820
+ #: includes/loop-settings.php:52
2821
  #@ fl-builder
2822
+ msgctxt "How many posts to skip."
2823
+ msgid "Offset"
2824
+ msgstr "Offset"
2825
 
2826
+ #: includes/loop-settings.php:55
2827
  #@ fl-builder
2828
+ msgid "Skip this many posts that match the specified criteria."
2829
+ msgstr "Salta questo numero di post che corrispondono ai criteri specificati."
2830
 
2831
+ #: includes/loop-settings.php:52
2832
  #@ fl-builder
2833
+ msgid "Filter"
2834
+ msgstr "Filtro"
2835
 
2836
+ #: includes/loop-settings.php:63
2837
+ #, php-format
2838
  #@ fl-builder
2839
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
2840
+ msgstr "Immettere un elenco delimitato da virgole di %s. Verranno mostrati solo questi %s."
2841
 
2842
+ #: includes/loop-settings.php:76
2843
+ #, php-format
2844
  #@ fl-builder
2845
+ msgid "Enter a comma separated list of %s. Only posts with these %s will be shown."
2846
+ msgstr "Immettere un elenco delimitato da virgole di %s. Verranno mostrati soli gli articoli con queste %s."
2847
 
2848
+ #: includes/loop-settings.php:90
 
2849
  #@ fl-builder
2850
+ msgid "Authors"
2851
+ msgstr "Autori"
2852
 
2853
+ #: includes/loop-settings.php:91
2854
  #@ fl-builder
2855
+ msgid "Enter a comma separated list of authors usernames. Only posts with these authors will be shown."
2856
+ msgstr "Immettere un elenco delimitato da virgole di nomi di autori. Verranno visualizzati solo i post di questi autori."
2857
 
2858
+ #: includes/module-settings.php:30
2859
+ #@ default
2860
+ msgid "Choose whether to show or hide this module at different device sizes."
2861
+ msgstr "Scegli se visualizzare o nascondere questo modulo a diverse dimensioni dei dispositivi."
 
2862
 
2863
+ #: includes/module-settings.php:91
2864
  #@ fl-builder
2865
+ msgid "Animation"
2866
+ msgstr "Animazione"
 
2867
 
2868
+ #: includes/module-settings.php:97
2869
  #@ fl-builder
2870
+ msgctxt "Animation style."
2871
+ msgid "None"
2872
+ msgstr "Nessuno"
2873
 
2874
+ #: includes/module-settings.php:98
2875
  #@ fl-builder
2876
+ msgctxt "Animation style."
2877
+ msgid "Fade In"
2878
+ msgstr "Dissolvenza in entrata"
2879
 
2880
+ #: includes/module-settings.php:99
2881
  #@ fl-builder
2882
+ msgctxt "Animation style."
2883
+ msgid "Slide Left"
2884
+ msgstr "Scorri sinistra"
2885
 
2886
+ #: includes/module-settings.php:100
2887
  #@ fl-builder
2888
+ msgctxt "Animation style."
2889
+ msgid "Slide Right"
2890
+ msgstr "Scorri destra"
2891
 
2892
+ #: includes/module-settings.php:101
 
2893
  #@ fl-builder
2894
+ msgctxt "Animation style."
2895
+ msgid "Slide Up"
2896
+ msgstr "Scorri alto"
2897
 
2898
+ #: includes/module-settings.php:102
 
2899
  #@ fl-builder
2900
+ msgctxt "Animation style."
2901
+ msgid "Slide Down"
2902
+ msgstr "Scorri basso"
2903
 
2904
+ #: includes/module-settings.php:110
2905
+ #: modules/content-slider/content-slider.php:223
2906
+ #: modules/testimonials/testimonials.php:91
 
 
2907
  #@ fl-builder
2908
+ msgid "Delay"
2909
+ msgstr "Ritardo"
2910
 
2911
+ #: includes/module-settings.php:114
2912
+ #: includes/row-settings.php:266
2913
+ #: includes/row-settings.php:297
2914
+ #: modules/content-slider/content-slider.php:227
2915
+ #: modules/content-slider/content-slider.php:244
2916
+ #: modules/slideshow/slideshow.php:385
2917
+ #: modules/slideshow/slideshow.php:410
2918
+ #: modules/slideshow/slideshow.php:581
2919
+ #: modules/testimonials/testimonials.php:95
2920
+ #: modules/testimonials/testimonials.php:112
2921
  #@ fl-builder
2922
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2923
+ msgid "seconds"
2924
+ msgstr "secondi"
2925
 
2926
+ #: includes/module-settings.php:115
2927
  #@ fl-builder
2928
+ msgid "The amount of time in seconds before this animation starts."
2929
+ msgstr "Periodo di tempo in secondi prima dell'inizio di questa animazione."
2930
 
2931
+ #: includes/module-settings.php:120
 
2932
  #@ fl-builder
2933
+ msgid "A unique ID that will be applied to this module's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
2934
+ msgstr "Un ID univoco che sarà applicato al codice HTML del modulo. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Niente spazi."
2935
 
2936
+ #: includes/module-settings.php:127
2937
+ #: includes/row-settings.php:615
 
 
 
 
 
 
 
2938
  #@ fl-builder
2939
+ msgid "Class"
2940
+ msgstr "Classe"
2941
 
2942
+ #: includes/module-settings.php:128
 
 
 
 
 
 
 
 
 
 
 
 
2943
  #@ fl-builder
2944
+ msgid "A class that will be applied to this module's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
2945
+ msgstr "Una classe che sarà applicata al codice HTML di questo modulo. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Separa classi multiple con spazio."
2946
 
2947
+ #: includes/row-settings.php:16
2948
+ #: modules/button/button.php:146
2949
+ #: modules/content-slider/content-slider.php:477
2950
  #@ fl-builder
2951
+ msgid "Width"
2952
+ msgstr "Larghezza"
2953
 
2954
+ #: includes/row-settings.php:27
 
 
 
 
 
 
2955
  #@ fl-builder
2956
+ 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."
2957
+ msgstr "Le righe a larghezza piena si estendono per la larghezza di pagina da bordo a bordo. Le righe fisse non sono più ampie rispetto alla larghezza massima scelta nelle impostazioni globali."
2958
 
2959
+ #: includes/row-settings.php:34
 
 
 
 
 
 
2960
  #@ fl-builder
2961
+ msgid "Content Width"
2962
+ msgstr "Larghezza contenuto"
2963
 
2964
+ #: includes/row-settings.php:40
 
 
 
 
 
 
2965
  #@ fl-builder
2966
+ 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."
2967
+ msgstr "Il contenuto a larghezza piena si estende per la larghezza di pagina da bordo a bordo. Il contenuto fisso non è più ampio rispetto alla larghezza massima scelta nelle impostazioni globali."
2968
 
2969
  #: modules/button/button.php:98
2970
  #: modules/cta/cta.php:185
2976
  msgid "Colors"
2977
  msgstr "Colori"
2978
 
 
 
 
 
 
 
 
 
 
 
 
2979
  #: modules/button/button.php:117
2980
  #: modules/callout/callout.php:521
2981
  #: modules/content-slider/content-slider.php:522
2988
  msgid "Text Color"
2989
  msgstr "Colore del testo"
2990
 
2991
+ #: includes/row-settings.php:71
 
 
 
2992
  #@ fl-builder
2993
+ msgctxt "Background type."
2994
+ msgid "Video"
2995
+ msgstr "Video"
2996
 
2997
+ #: includes/row-settings.php:73
 
 
 
 
2998
  #@ fl-builder
2999
+ msgctxt "Background type."
3000
+ msgid "Slideshow"
3001
+ msgstr "Slideshow"
3002
 
3003
+ #: includes/row-settings.php:77
 
 
 
 
 
 
3004
  #@ fl-builder
3005
+ msgctxt "Background type."
3006
+ msgid "Parallax"
3007
+ msgstr "Parallasse"
3008
 
3009
+ #: includes/row-settings.php:203
 
 
 
 
3010
  #@ fl-builder
3011
+ msgid "Background Video"
3012
+ msgstr "Video di sfondo"
3013
 
3014
+ #: includes/row-settings.php:207
3015
+ #: modules/content-slider/content-slider.php:330
3016
+ #: modules/video/video.php:19
3017
+ #: modules/video/video.php:100
3018
  #@ fl-builder
3019
+ msgid "Video"
3020
+ msgstr "Video"
3021
 
3022
+ #: includes/row-settings.php:208
3023
  #@ fl-builder
3024
+ msgid "An HTML5 video to use as the background of this row. Supported types are MP4, WebM and Ogg."
3025
+ msgstr "Un video HTML5 da usare come sfondo di questa riga. I tipi supportati sono MP4, WebM e Ogg."
3026
 
3027
+ #: includes/row-settings.php:215
 
 
 
 
 
3028
  #@ fl-builder
3029
+ msgid "Fallback Photo"
3030
+ msgstr "Foto di fallback"
3031
 
3032
+ #: includes/row-settings.php:216
 
3033
  #@ fl-builder
3034
+ msgid "A photo that will be displayed if the video fails to load."
3035
+ msgstr "Una foto che verrà visualizzata se non è possibile caricare il video."
 
3036
 
3037
+ #: includes/row-settings.php:224
3038
  #@ fl-builder
3039
+ msgid "Background Slideshow"
3040
+ msgstr "Sfondo Slideshow"
3041
 
3042
+ #: includes/row-settings.php:228
3043
+ #: modules/gallery/gallery.php:234
3044
+ #: modules/slideshow/slideshow.php:263
 
 
 
 
 
3045
  #@ fl-builder
3046
+ msgid "Source"
3047
+ msgstr "Sorgente"
3048
 
3049
+ #: includes/row-settings.php:231
3050
+ #: modules/gallery/gallery.php:237
3051
+ #: modules/photo/photo.php:378
3052
+ #: modules/slideshow/slideshow.php:266
3053
+ #: modules/video/video.php:86
 
3054
  #@ fl-builder
3055
+ msgid "Media Library"
3056
+ msgstr "Libreria multimediale"
3057
 
3058
+ #: includes/row-settings.php:234
3059
+ #: modules/gallery/gallery.php:240
3060
+ #: modules/slideshow/slideshow.php:269
3061
  #@ fl-builder
3062
+ 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."
3063
+ msgstr "Estrae immagini dalla libreria multimedia di WordPress o una galleria sul tuo sito SmugMug inserendo la URL del feed RSS di SmugMug. L'URL del feed RSS è accessibile tramite un collegamento nella tua galleria SmugMug."
3064
 
3065
+ #: includes/row-settings.php:249
3066
+ #: modules/gallery/gallery.php:252
3067
+ #: modules/slideshow/slideshow.php:281
3068
  #@ fl-builder
3069
+ msgid "Photos"
3070
+ msgstr "Foto"
3071
 
3072
+ #: includes/row-settings.php:256
3073
+ #: modules/gallery/gallery.php:256
3074
+ #: modules/slideshow/slideshow.php:285
3075
  #@ fl-builder
3076
+ msgid "Feed URL"
3077
+ msgstr "URL del feed"
3078
 
3079
+ #: includes/row-settings.php:263
3080
+ #: includes/row-settings.php:328
3081
+ #: modules/slideshow/slideshow.php:382
 
 
 
 
 
3082
  #@ fl-builder
3083
+ msgid "Speed"
3084
+ msgstr "Velocità"
3085
 
3086
+ #: includes/row-settings.php:273
3087
+ #: modules/content-slider/content-slider.php:231
3088
+ #: modules/slideshow/slideshow.php:389
3089
+ #: modules/testimonials/testimonials.php:99
3090
  #@ fl-builder
3091
+ msgid "Transition"
3092
+ msgstr "Transizione"
3093
 
3094
+ #: includes/row-settings.php:276
3095
  #@ fl-builder
3096
+ msgctxt "Slideshow transition type."
3097
+ msgid "None"
3098
+ msgstr "Nessuna"
3099
 
3100
+ #: includes/row-settings.php:277
3101
+ #: modules/content-slider/content-slider.php:235
3102
+ #: modules/slideshow/slideshow.php:393
3103
+ #: modules/testimonials/testimonials.php:103
3104
  #@ fl-builder
3105
+ msgid "Fade"
3106
+ msgstr "Dissolvenza"
3107
 
3108
+ #: includes/row-settings.php:278
3109
+ #: modules/slideshow/slideshow.php:394
 
3110
  #@ fl-builder
3111
+ msgid "Ken Burns"
3112
+ msgstr "Ken Burns"
3113
 
3114
+ #: includes/row-settings.php:279
3115
+ #: modules/slideshow/slideshow.php:395
 
 
 
3116
  #@ fl-builder
3117
+ msgid "Slide Horizontal"
3118
+ msgstr "Scorri orizontale"
3119
 
3120
+ #: includes/row-settings.php:280
3121
+ #: modules/slideshow/slideshow.php:396
3122
  #@ fl-builder
3123
+ msgid "Slide Vertical"
3124
+ msgstr "Scorri verticale"
3125
 
3126
+ #: includes/row-settings.php:281
3127
+ #: modules/slideshow/slideshow.php:397
3128
  #@ fl-builder
3129
+ msgid "Blinds"
3130
+ msgstr "Tendina"
3131
 
3132
+ #: includes/row-settings.php:282
3133
+ #: modules/slideshow/slideshow.php:398
3134
  #@ fl-builder
3135
+ msgid "Bars"
3136
+ msgstr "Barre"
3137
 
3138
+ #: includes/row-settings.php:283
3139
+ #: modules/slideshow/slideshow.php:399
3140
+ #@ fl-builder
3141
+ msgid "Random Bars"
3142
+ msgstr "Barre casuali"
3143
+
3144
+ #: includes/row-settings.php:284
3145
+ #: modules/slideshow/slideshow.php:400
3146
+ #@ fl-builder
3147
+ msgid "Boxes"
3148
+ msgstr "Quadrati"
3149
+
3150
+ #: includes/row-settings.php:285
3151
+ #: modules/slideshow/slideshow.php:401
3152
+ #@ fl-builder
3153
+ msgid "Random Boxes"
3154
+ msgstr "Quadrati casuali"
3155
+
3156
+ #: includes/row-settings.php:286
3157
+ #: modules/slideshow/slideshow.php:402
3158
  #@ fl-builder
3159
+ msgid "Boxes Grow"
3160
+ msgstr "Quadrati ingrandimento"
 
3161
 
3162
+ #: includes/row-settings.php:294
3163
+ #: modules/content-slider/content-slider.php:240
3164
+ #: modules/slideshow/slideshow.php:407
3165
+ #: modules/testimonials/testimonials.php:108
3166
  #@ fl-builder
3167
+ msgid "Transition Speed"
3168
+ msgstr "Velocità di transizione"
3169
 
3170
+ #: includes/row-settings.php:304
3171
+ #: modules/slideshow/slideshow.php:414
3172
  #@ fl-builder
3173
+ msgid "Randomize Photos"
3174
+ msgstr "Foto casuali"
 
3175
 
3176
+ #: includes/row-settings.php:317
 
3177
  #@ fl-builder
3178
+ msgid "Background Parallax"
3179
+ msgstr "Sfondo parallasse"
3180
 
3181
+ #: includes/row-settings.php:331
 
3182
  #@ fl-builder
3183
+ msgid "Fast"
3184
+ msgstr "Veloce"
3185
 
3186
+ #: includes/row-settings.php:332
 
3187
  #@ fl-builder
3188
+ msgctxt "Speed."
3189
+ msgid "Medium"
3190
+ msgstr "Media"
3191
 
3192
+ #: includes/row-settings.php:333
 
3193
  #@ fl-builder
3194
+ msgid "Slow"
3195
+ msgstr "Lenta"
3196
 
3197
+ #: includes/row-settings.php:473
 
3198
  #@ fl-builder
3199
+ msgid "Choose whether to show or hide this row at different device sizes."
3200
+ msgstr "Scegli se mostrare o nascondere questa riga per diverse dimensioni dei dispositivi."
3201
 
3202
+ #: includes/row-settings.php:608
 
3203
  #@ fl-builder
3204
+ msgid "A unique ID that will be applied to this row's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
3205
+ msgstr "Un ID univoco che sarà applicato al codice HTML di questa riga. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Niente spazi."
3206
 
3207
+ #: includes/row-settings.php:616
 
3208
  #@ fl-builder
3209
+ msgid "A class that will be applied to this row's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
3210
+ msgstr "Una classe che sarà applicata al codice HTML di questa riga. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Separa classi multiple con spazio."
3211
 
3212
+ #: includes/service-settings.php:32
 
3213
  #@ fl-builder
3214
+ msgid "Service"
3215
+ msgstr "Servizio"
3216
 
3217
+ #: includes/settings.php:62
 
3218
  #@ fl-builder
3219
+ msgid "Save"
3220
+ msgstr "Salva"
3221
 
3222
+ #: includes/template-selector.php:3
3223
  #@ fl-builder
3224
+ msgid "Layout Templates"
3225
+ msgstr "Modelli di layout"
3226
 
3227
+ #: includes/template-selector.php:13
3228
  #@ fl-builder
3229
+ msgid "Your Templates"
3230
+ msgstr "I tuoi modelli"
3231
 
3232
+ #: includes/template-selector.php:72
3233
  #@ fl-builder
3234
+ 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>."
3235
+ msgstr "Non hai ancora salvato nessun modello! Per farlo, crea un layout e salvalo come modello in <strong>Strumenti &rarr; Salva modello</strong>."
3236
 
3237
+ #: includes/template-selector.php:47
3238
+ #: includes/template-selector.php:77
 
3239
  #@ fl-builder
3240
+ msgctxt "Template name."
3241
+ msgid "Blank"
3242
+ msgstr "Vuoto"
3243
 
3244
+ #: includes/user-template-settings.php:15
3245
  #@ fl-builder
3246
+ msgctxt "Template name."
3247
+ msgid "Name"
3248
+ msgstr "Nome"
3249
 
3250
+ #: includes/template-settings.php:18
 
 
 
3251
  #@ fl-builder
3252
+ msgid "Image Filename"
3253
+ msgstr "Nome del file immagine"
3254
 
3255
+ #: includes/template-settings.php:19
 
3256
  #@ fl-builder
3257
+ msgid "The filename of the image such as \"thumb.jpg\" that resides in the \"img/templates/\" directory."
3258
+ msgstr "Il nome del file immagine come \"thumb.jpg\" che risiede nella directory \"img/templates/\"."
3259
 
3260
+ #: includes/ui.php:7
3261
+ #, php-format
3262
  #@ fl-builder
3263
+ msgid "Template: %s"
3264
+ msgstr "Modello: %s"
3265
 
3266
+ #: includes/ui.php:42
 
 
3267
  #@ fl-builder
3268
+ msgid "Tools"
3269
+ msgstr "Strumenti"
3270
 
3271
+ #: includes/ui.php:23
 
3272
  #@ fl-builder
3273
+ msgid "Page Builder Demo"
3274
+ msgstr "Dimostrazione del Page Builder"
 
3275
 
3276
+ #: includes/ui.php:37
 
3277
  #@ fl-builder
3278
+ msgid "Buy Now!"
3279
+ msgstr "Acquista ora!"
3280
 
3281
+ #: includes/ui.php:39
 
 
3282
  #@ fl-builder
3283
+ msgid "Upgrade!"
3284
+ msgstr "Aggiorna!"
3285
 
3286
+ #: includes/ui.php:64
 
 
 
3287
  #@ fl-builder
3288
+ msgid "Row Layouts"
3289
+ msgstr "Layout di riga"
3290
 
3291
+ #: includes/ui.php:68
 
 
3292
  #@ fl-builder
3293
+ msgid "1 Column"
3294
+ msgstr "1 colonna"
3295
 
3296
+ #: includes/ui.php:69
3297
  #@ fl-builder
3298
+ msgid "2 Columns"
3299
+ msgstr "2 colonne"
3300
 
3301
+ #: includes/ui.php:70
3302
  #@ fl-builder
3303
+ msgid "3 Columns"
3304
+ msgstr "3 colonne"
3305
 
3306
+ #: includes/ui.php:71
3307
  #@ fl-builder
3308
+ msgid "4 Columns"
3309
+ msgstr "4 colonne"
3310
 
3311
+ #: includes/ui.php:72
3312
  #@ fl-builder
3313
+ msgid "5 Columns"
3314
+ msgstr "5 colonne"
3315
 
3316
+ #: includes/ui.php:73
3317
  #@ fl-builder
3318
+ msgid "6 Columns"
3319
+ msgstr "6 colonne"
3320
 
3321
+ #: includes/ui.php:74
3322
  #@ fl-builder
3323
+ msgid "Left Sidebar"
3324
+ msgstr "Barra laterale sinistra"
3325
 
3326
+ #: includes/ui.php:75
3327
  #@ fl-builder
3328
+ msgid "Right Sidebar"
3329
+ msgstr "Barra laterale destra"
3330
 
3331
+ #: includes/ui.php:76
3332
  #@ fl-builder
3333
+ msgid "Left &amp; Right Sidebar"
3334
+ msgstr "Barra laterale sinistra e destra"
 
3335
 
3336
+ #: includes/updater/classes/class-fl-updater.php:107
3337
  #@ fl-builder
3338
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3339
+ msgstr "<strong>AGGIORNAMENTO NON DISPONIBILE!</strong>"
3340
 
3341
+ #: includes/updater/classes/class-fl-updater.php:109
3342
  #@ fl-builder
3343
+ msgid "Please subscribe to enable automatic updates for this plugin."
3344
+ msgstr "Si prega di abbonarsi per abilitare gli aggiornamenti automatici per questo plugin."
3345
 
3346
+ #: includes/updater/classes/class-fl-updater.php:111
3347
+ #: includes/updater/includes/form.php:6
3348
  #@ fl-builder
3349
+ msgid "Subscribe Now"
3350
+ msgstr "Abbonati ora"
3351
 
3352
+ #: includes/updater/includes/form.php:5
3353
  #@ fl-builder
3354
+ msgid "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable automatic updates."
3355
+ msgstr "AGGIORNAMENTI NON DISPONIBILI! Abbonati o inserisci la tua chiave di licenza per abilitare gli aggiornamenti automatici."
3356
 
3357
+ #: includes/updater/includes/form.php:11
3358
  #@ fl-builder
3359
+ msgid "Updates &amp; Support Subscription"
3360
+ msgstr "Abbonamento supporto e aggiornamenti"
3361
 
3362
+ #: includes/updater/includes/form.php:14
3363
  #@ fl-builder
3364
+ msgid "Active!"
3365
+ msgstr "Attivo!"
3366
 
3367
+ #: includes/updater/includes/form.php:16
3368
  #@ fl-builder
3369
+ msgid "Not Active!"
3370
+ msgstr "Non attivo!"
3371
 
3372
+ #: includes/updater/includes/form.php:22
3373
  #@ fl-builder
3374
+ msgid "Email address saved!"
3375
+ msgstr "Indirizzo email salvato!"
3376
 
3377
+ #: includes/updater/includes/form.php:27
3378
+ #, php-format
3379
  #@ fl-builder
3380
+ msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
3381
+ msgstr "Inserisci la tua <a%s>chiave di licenza</a> per abilitare gli aggiornamenti remoti e il supporto."
3382
 
3383
+ #: includes/updater/includes/form.php:39
3384
  #@ fl-builder
3385
+ msgid "Save Subscription Settings"
3386
+ msgstr "Salva le impostazioni di abbonamento"
3387
 
3388
+ #: includes/user-template-settings.php:8
3389
  #@ fl-builder
3390
+ msgid "Save the current layout as a template that can be reused under <strong>Templates &rarr; Your Templates</strong>."
3391
+ msgstr "Salva il layout attuale come modello che può essere riutilizzato in <strong>Modelli &rarr; I tuoi modelli</strong>."
3392
 
3393
+ #: modules/accordion/accordion.php:14
3394
  #@ fl-builder
3395
+ msgid "Accordion"
3396
+ msgstr "Accordion"
3397
 
3398
+ #: modules/accordion/accordion.php:15
3399
  #@ fl-builder
3400
+ msgid "Display a collapsible accordion of items."
3401
+ msgstr "Visualizza una lista comprimibile di elementi."
3402
 
3403
+ #: modules/accordion/accordion.php:28
3404
+ #: modules/tabs/tabs.php:28
 
 
3405
  #@ fl-builder
3406
+ msgid "Items"
3407
+ msgstr "Elementi"
3408
 
3409
+ #: modules/accordion/accordion.php:35
3410
+ #: modules/tabs/tabs.php:35
3411
  #@ fl-builder
3412
+ msgid "Item"
3413
+ msgstr "Elemento"
3414
 
3415
+ #: modules/accordion/accordion.php:52
3416
+ #: modules/tabs/tabs.php:61
 
 
3417
  #@ fl-builder
3418
+ msgid "Border Color"
3419
+ msgstr "Colore bordo"
3420
 
3421
+ #: modules/accordion/accordion.php:62
3422
  #@ fl-builder
3423
+ msgid "Label Size"
3424
+ msgstr "Dimensione etichetta"
3425
 
3426
+ #: modules/accordion/accordion.php:65
 
3427
  #@ fl-builder
3428
+ msgctxt "Label size."
3429
+ msgid "Small"
3430
+ msgstr "Piccola"
3431
 
3432
+ #: modules/accordion/accordion.php:66
 
3433
  #@ fl-builder
3434
+ msgctxt "Label size."
3435
+ msgid "Medium"
3436
+ msgstr "Media"
3437
 
3438
+ #: modules/accordion/accordion.php:67
 
3439
  #@ fl-builder
3440
+ msgctxt "Label size."
3441
+ msgid "Large"
3442
+ msgstr "Grande"
3443
 
3444
+ #: modules/accordion/accordion.php:75
3445
  #@ fl-builder
3446
+ msgid "Item Spacing"
3447
+ msgstr "Spaziatura elemento"
3448
 
3449
+ #: modules/accordion/accordion.php:86
3450
  #@ fl-builder
3451
+ msgid "Collapse Inactive"
3452
+ msgstr "Chiudi inattivo"
3453
 
3454
+ #: modules/accordion/accordion.php:92
3455
  #@ fl-builder
3456
+ 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."
3457
+ msgstr "Scegliendo Sì manterrà soltanto un elemento aperto alla volta. Scegliendo No permetterà a più elementi di essere aperti contemporaneamente."
3458
 
3459
+ #: modules/accordion/accordion.php:107
3460
+ #: modules/tabs/tabs.php:74
3461
  #@ fl-builder
3462
+ msgid "Add Item"
3463
+ msgstr "Aggiungi elemento"
3464
 
3465
+ #: modules/accordion/accordion.php:117
3466
+ #: modules/tabs/tabs.php:84
3467
  #@ fl-builder
3468
+ msgid "Label"
3469
+ msgstr "Etichetta"
3470
 
3471
+ #: modules/accordion/accordion.php:122
3472
+ #: modules/post-grid/post-grid.php:195
3473
+ #: modules/post-grid/post-grid.php:199
3474
+ #: modules/post-grid/post-grid.php:235
3475
+ #: modules/tabs/tabs.php:89
3476
  #@ fl-builder
3477
+ msgid "Content"
3478
+ msgstr "Contenuto"
3479
 
3480
+ #: modules/button/button.php:14
3481
+ #: modules/callout/callout.php:477
3482
+ #: modules/content-slider/content-slider.php:595
3483
+ #: modules/cta/cta.php:212
3484
+ #: modules/pricing-table/pricing-table.php:129
3485
  #@ fl-builder
3486
+ msgid "Button"
3487
+ msgstr "Pulsante"
3488
 
3489
+ #: modules/button/button.php:15
3490
  #@ fl-builder
3491
+ msgid "A simple call to action button."
3492
+ msgstr "Un semplice pulsante Call to action."
3493
 
3494
+ #: modules/button/button.php:54
3495
+ #: modules/cta/cta.php:220
3496
  #@ fl-builder
3497
+ msgid "Click Here"
3498
+ msgstr "Clicca qui"
3499
 
3500
+ #: modules/button/button.php:62
3501
+ #: modules/callout/callout.php:315
3502
+ #: modules/callout/callout.php:363
3503
+ #: modules/callout/callout.php:367
3504
+ #: modules/cta/cta.php:228
3505
+ #: modules/icon/icon.php:14
3506
+ #: modules/icon/icon.php:34
3507
+ #: modules/icon-group/icon-group.php:34
3508
+ #: modules/icon-group/icon-group.php:135
3509
  #@ fl-builder
3510
+ msgid "Icon"
3511
+ msgstr "Icona"
3512
 
3513
+ #: modules/button/button.php:80
3514
+ #: modules/cta/cta.php:236
3515
+ #: modules/subscribe-form/subscribe-form.php:178
3516
  #@ fl-builder
3517
+ msgid "Icon Position"
3518
+ msgstr "Posizione icona"
3519
 
3520
+ #: modules/button/button.php:83
3521
+ #: modules/callout/callout.php:508
3522
+ #: modules/content-slider/content-slider.php:629
3523
+ #: modules/cta/cta.php:239
3524
+ #: modules/subscribe-form/subscribe-form.php:181
3525
  #@ fl-builder
3526
+ msgid "Before Text"
3527
+ msgstr "Prima del testo"
3528
 
3529
+ #: modules/button/button.php:84
3530
+ #: modules/callout/callout.php:509
3531
+ #: modules/content-slider/content-slider.php:630
3532
+ #: modules/cta/cta.php:240
3533
+ #: modules/subscribe-form/subscribe-form.php:182
3534
  #@ fl-builder
3535
+ msgid "After Text"
3536
+ msgstr "Dopo il testo"
3537
 
3538
+ #: modules/button/button.php:68
3539
+ #: modules/button/button.php:72
3540
+ #: modules/callout/callout.php:443
3541
+ #: modules/callout/callout.php:447
3542
+ #: modules/content-slider/content-slider.php:567
3543
+ #: modules/content-slider/content-slider.php:571
3544
+ #: modules/content-slider/content-slider.php:594
3545
+ #: modules/cta/cta.php:238
3546
+ #: modules/heading/heading.php:43
3547
+ #: modules/heading/heading.php:47
3548
+ #: modules/icon/icon.php:43
3549
+ #: modules/icon-group/icon-group.php:139
3550
+ #: modules/slideshow/slideshow.php:343
3551
  #@ fl-builder
3552
+ msgid "Link"
3553
+ msgstr "Collegamento"
3554
 
3555
+ #: modules/button/button.php:73
3556
  #@ fl-builder
3557
+ msgid "http://www.example.com"
3558
+ msgstr "http://www.example.com"
 
3559
 
3560
+ #: modules/button/button.php:80
3561
+ #: modules/callout/callout.php:455
3562
+ #: modules/content-slider/content-slider.php:576
3563
+ #: modules/cta/cta.php:245
3564
+ #: modules/heading/heading.php:54
3565
+ #: modules/icon/icon.php:50
3566
+ #: modules/photo/photo.php:478
3567
  #@ fl-builder
3568
+ msgid "Link Target"
3569
+ msgstr "Destinazione del collegamento"
3570
 
3571
+ #: modules/button/button.php:83
3572
+ #: modules/callout/callout.php:458
3573
+ #: modules/content-slider/content-slider.php:579
3574
+ #: modules/cta/cta.php:248
3575
+ #: modules/heading/heading.php:57
3576
+ #: modules/icon/icon.php:53
3577
+ #: modules/photo/photo.php:481
3578
  #@ fl-builder
3579
+ msgid "Same Window"
3580
+ msgstr "Stessa finestra"
3581
 
3582
+ #: modules/button/button.php:84
3583
+ #: modules/callout/callout.php:459
3584
+ #: modules/content-slider/content-slider.php:580
3585
+ #: modules/cta/cta.php:249
3586
+ #: modules/heading/heading.php:58
3587
+ #: modules/icon/icon.php:54
3588
+ #: modules/photo/photo.php:482
3589
  #@ fl-builder
3590
+ msgid "New Window"
3591
+ msgstr "Nuova finestra"
3592
 
3593
+ #: modules/button/button.php:108
3594
+ #: modules/callout/callout.php:407
3595
+ #: modules/callout/callout.php:512
3596
+ #: modules/content-slider/content-slider.php:630
3597
+ #: modules/cta/cta.php:268
3598
+ #: modules/icon/icon.php:100
3599
+ #: modules/icon-group/icon-group.php:69
3600
  #@ fl-builder
3601
+ msgid "Background Hover Color"
3602
+ msgstr "Colore di sfondo al passaggio del mouse"
3603
 
3604
+ #: modules/button/button.php:123
3605
+ #: modules/callout/callout.php:527
3606
+ #: modules/content-slider/content-slider.php:641
3607
+ #: modules/cta/cta.php:283
3608
  #@ fl-builder
3609
+ msgid "Text Hover Color"
3610
+ msgstr "Colore del testo al passaggio del mouse"
3611
 
3612
+ #: modules/button/button.php:153
3613
+ #: modules/callout/callout.php:546
3614
+ #: modules/content-slider/content-slider.php:660
3615
+ #: modules/cta/cta.php:302
3616
+ #: modules/subscribe-form/subscribe-form.php:220
3617
  #@ fl-builder
3618
+ msgid "Flat"
3619
+ msgstr "Solido"
3620
 
3621
+ #: modules/button/button.php:132
3622
+ #: modules/callout/callout.php:415
3623
+ #: modules/callout/callout.php:536
3624
+ #: modules/content-slider/content-slider.php:646
3625
+ #: modules/cta/cta.php:292
3626
+ #: modules/icon/icon.php:108
3627
+ #: modules/icon-group/icon-group.php:77
3628
  #@ fl-builder
3629
+ msgid "Gradient"
3630
+ msgstr "Gradiente"
3631
 
3632
+ #: modules/button/button.php:155
3633
+ #: modules/callout/callout.php:548
3634
+ #: modules/content-slider/content-slider.php:662
3635
+ #: modules/cta/cta.php:304
3636
+ #: modules/subscribe-form/subscribe-form.php:222
3637
  #@ fl-builder
3638
+ msgid "Transparent"
3639
+ msgstr "Trasparente"
3640
 
3641
+ #: modules/pricing-table/pricing-table.php:67
3642
  #@ fl-builder
3643
+ msgid "Border Size"
3644
+ msgstr "Dimensione bordo"
3645
 
3646
+ #: modules/cta/cta.php:201
 
3647
  #@ fl-builder
3648
+ msgid "Background Opacity"
3649
+ msgstr "Opacità sfondo"
3650
 
3651
+ #: modules/button/button.php:142
3652
+ #: modules/callout/callout.php:242
3653
+ #: modules/cta/cta.php:102
3654
+ #: modules/heading/heading.php:82
3655
+ #: modules/icon/icon.php:118
3656
+ #: modules/icon-group/icon-group.php:87
3657
  #@ fl-builder
3658
+ msgid "Structure"
3659
+ msgstr "Struttura"
3660
 
3661
+ #: modules/button/button.php:149
3662
+ #: modules/callout/callout.php:553
3663
  #@ fl-builder
3664
+ msgctxt "Width."
3665
+ msgid "Auto"
3666
+ msgstr "Automatica"
3667
 
3668
+ #: modules/button/button.php:165
3669
  #@ fl-builder
3670
+ msgid "Custom Width"
3671
+ msgstr "Larghezza personalizzata"
3672
 
3673
+ #: modules/button/button.php:173
3674
+ #: modules/cta/cta.php:120
3675
+ #: modules/heading/heading.php:86
3676
+ #: modules/heading/heading.php:141
3677
+ #: modules/icon/icon.php:130
3678
+ #: modules/icon-group/icon-group.php:107
3679
+ #: modules/photo/photo.php:414
3680
+ #: modules/social-buttons/social-buttons.php:97
3681
  #@ fl-builder
3682
+ msgid "Alignment"
3683
+ msgstr "Allineamento"
3684
 
3685
+ #: modules/button/button.php:183
3686
+ #: modules/callout/callout.php:559
3687
+ #: modules/content-slider/content-slider.php:660
3688
+ #: modules/cta/cta.php:306
3689
+ #: modules/heading/heading.php:114
3690
+ #: modules/heading/heading.php:171
3691
  #@ fl-builder
3692
+ msgid "Font Size"
3693
+ msgstr "Dimensione carattere"
 
3694
 
3695
+ #: modules/button/button.php:199
3696
+ #: modules/callout/callout.php:575
3697
+ #: modules/cta/cta.php:322
3698
  #@ fl-builder
3699
+ msgid "Round Corners"
3700
+ msgstr "Angoli arrotondati"
3701
 
3702
+ #: modules/callout/callout.php:14
3703
  #@ fl-builder
3704
+ msgid "Callout"
3705
+ msgstr "Callout"
3706
 
3707
+ #: modules/callout/callout.php:15
3708
  #@ fl-builder
3709
+ msgid "A heading and snippet of text with an optional link, icon and image."
3710
+ msgstr "Un titolo e un frammento di testo con collegamento, icona e immagine facoltativi."
 
3711
 
3712
+ #: modules/callout/callout.php:214
3713
+ #: modules/content-slider/content-slider.php:407
3714
+ #: modules/content-slider/content-slider.php:422
3715
+ #: modules/cta/cta.php:72
3716
+ #: modules/heading/heading.php:14
3717
+ #: modules/heading/heading.php:33
3718
+ #: modules/testimonials/testimonials.php:56
3719
+ #: modules/testimonials/testimonials.php:61
3720
  #@ fl-builder
3721
+ msgid "Heading"
3722
+ msgstr "Titolo"
3723
 
3724
+ #: modules/callout/callout.php:246
3725
  #@ fl-builder
3726
+ msgid "Overall Alignment"
3727
+ msgstr "Allineamento globale"
3728
 
3729
+ #: modules/callout/callout.php:253
3730
  #@ fl-builder
3731
+ msgid "The alignment that will apply to all elements within the callout."
3732
+ msgstr "L'allineamento che si applicherà a tutti gli elementi all'interno del callout."
3733
 
3734
+ #: modules/callout/callout.php:261
3735
+ #: modules/cta/cta.php:145
3736
  #@ fl-builder
3737
+ msgid "Heading Structure"
3738
+ msgstr "Struttura titolo"
3739
 
3740
+ #: modules/callout/callout.php:265
3741
+ #: modules/content-slider/content-slider.php:426
3742
+ #: modules/cta/cta.php:149
3743
  #@ fl-builder
3744
+ msgid "Heading Tag"
3745
+ msgstr "Tag titolo"
3746
 
3747
+ #: modules/callout/callout.php:278
3748
+ #: modules/content-slider/content-slider.php:439
3749
+ #: modules/content-slider/content-slider.php:453
3750
+ #: modules/cta/cta.php:162
3751
+ #: modules/testimonials/testimonials.php:69
3752
  #@ fl-builder
3753
+ msgid "Heading Size"
3754
+ msgstr "Dimensione titolo"
3755
 
3756
+ #: modules/callout/callout.php:292
3757
+ #: modules/cta/cta.php:176
3758
  #@ fl-builder
3759
+ msgid "Heading Custom Size"
3760
+ msgstr "Dimensione personalizzata titolo"
3761
 
3762
+ #: modules/callout/callout.php:310
3763
  #@ fl-builder
3764
+ msgid "Image Type"
3765
+ msgstr "Tipo di immagine"
3766
 
3767
+ #: modules/callout/callout.php:313
3768
  #@ fl-builder
3769
+ msgctxt "Image type."
3770
+ msgid "None"
3771
+ msgstr "Nessuna"
3772
 
3773
+ #: modules/callout/callout.php:338
3774
+ #: modules/photo/photo.php:401
3775
+ #: modules/slideshow/slideshow.php:312
 
 
 
3776
  #@ fl-builder
3777
+ msgid "Crop"
3778
+ msgstr "Ritaglio"
3779
 
3780
+ #: modules/callout/callout.php:341
3781
  #@ fl-builder
3782
+ msgctxt "Crop"
3783
+ msgid "None"
3784
+ msgstr "Nessuno"
3785
 
3786
+ #: modules/callout/callout.php:342
3787
+ #: modules/photo/photo.php:405
3788
  #@ fl-builder
3789
+ msgid "Landscape"
3790
+ msgstr "Paesaggio"
3791
 
3792
+ #: modules/callout/callout.php:343
3793
+ #: modules/photo/photo.php:406
3794
  #@ fl-builder
3795
+ msgid "Panorama"
3796
+ msgstr "Panorama"
3797
 
3798
+ #: modules/callout/callout.php:344
3799
+ #: modules/photo/photo.php:407
3800
  #@ fl-builder
3801
+ msgid "Portrait"
3802
+ msgstr "Ritratto"
3803
 
3804
+ #: modules/callout/callout.php:345
3805
+ #: modules/photo/photo.php:408
3806
  #@ fl-builder
3807
+ msgid "Square"
3808
+ msgstr "Quadrato"
3809
 
3810
+ #: modules/callout/callout.php:346
3811
+ #: modules/photo/photo.php:409
3812
  #@ fl-builder
3813
+ msgid "Circle"
3814
+ msgstr "Cerchio"
3815
 
3816
+ #: modules/callout/callout.php:354
3817
+ #: modules/callout/callout.php:374
3818
  #@ fl-builder
3819
+ msgid "Above Heading"
3820
+ msgstr "Sopra intestazione"
3821
 
3822
+ #: modules/callout/callout.php:355
3823
+ #: modules/callout/callout.php:375
3824
  #@ fl-builder
3825
+ msgid "Below Heading"
3826
+ msgstr "Sotto intestazione"
 
3827
 
3828
+ #: modules/callout/callout.php:356
3829
+ #: modules/callout/callout.php:378
3830
  #@ fl-builder
3831
+ msgid "Left of Text and Heading"
3832
+ msgstr "Sinistra del testo e intestazione"
3833
 
3834
+ #: modules/callout/callout.php:357
3835
+ #: modules/callout/callout.php:379
3836
  #@ fl-builder
3837
+ msgid "Right of Text and Heading"
3838
+ msgstr "Destra del testo e intestazione"
 
3839
 
3840
+ #: modules/callout/callout.php:376
3841
  #@ fl-builder
3842
+ msgid "Left of Heading"
3843
+ msgstr "Sinistra dell'intestazione"
 
3844
 
3845
+ #: modules/callout/callout.php:377
3846
  #@ fl-builder
3847
+ msgid "Right of Heading"
3848
+ msgstr "Destra dell'intestazione"
 
3849
 
3850
+ #: modules/callout/callout.php:385
3851
  #@ fl-builder
3852
+ msgid "Icon Colors"
3853
+ msgstr "Colori icona"
3854
 
3855
+ #: modules/callout/callout.php:394
3856
+ #: modules/icon/icon.php:87
3857
+ #: modules/icon-group/icon-group.php:56
3858
  #@ fl-builder
3859
+ msgid "Hover Color"
3860
+ msgstr "Colore al passaggio del mouse"
3861
 
3862
+ #: modules/callout/callout.php:425
 
3863
  #@ fl-builder
3864
+ msgid "Icon Structure"
3865
+ msgstr "Struttura icona"
3866
 
3867
+ #: modules/callout/callout.php:429
3868
+ #: modules/icon/icon.php:122
3869
+ #: modules/icon-group/icon-group.php:91
3870
+ #: modules/post-grid/post-grid.php:136
3871
  #@ fl-builder
3872
+ msgid "Size"
3873
+ msgstr "Dimensione"
3874
 
3875
+ #: modules/callout/callout.php:440
3876
+ #: modules/content-slider/content-slider.php:564
3877
  #@ fl-builder
3878
+ msgid "Call To Action"
3879
+ msgstr "Call To Action"
3880
 
3881
+ #: modules/callout/callout.php:448
3882
  #@ fl-builder
3883
+ 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."
3884
+ msgstr "Il collegamento si applica a tutto il modulo. Se si seglie un tipo di azione call to action qui sotto, questo collegamento verrà utilizzato anche per il testo o pulsante."
3885
 
3886
+ #: modules/callout/callout.php:468
3887
+ #: modules/content-slider/content-slider.php:586
3888
+ #: modules/cta/cta.php:14
3889
  #@ fl-builder
3890
+ msgid "Call to Action"
3891
+ msgstr "Call to Action"
3892
 
3893
+ #: modules/callout/callout.php:475
3894
+ #: modules/content-slider/content-slider.php:593
3895
  #@ fl-builder
3896
+ msgctxt "Call to action."
3897
  msgid "None"
3898
  msgstr "Nessuna"
3899
 
3900
+ #: modules/post-grid/post-grid.php:228
 
 
 
 
 
 
3901
  #@ fl-builder
3902
+ msgid "Read More"
3903
+ msgstr "Leggi tutto"
3904
 
3905
+ #: modules/callout/callout.php:496
3906
+ #: modules/content-slider/content-slider.php:614
3907
  #@ fl-builder
3908
+ msgid "Button Icon"
3909
+ msgstr "Icona del pulsante"
3910
 
3911
+ #: modules/callout/callout.php:505
3912
+ #: modules/content-slider/content-slider.php:626
3913
  #@ fl-builder
3914
+ msgid "Button Icon Position"
3915
+ msgstr "Posizione icona bottone"
3916
 
3917
+ #: modules/callout/callout.php:502
3918
+ #: modules/content-slider/content-slider.php:620
3919
+ #: modules/cta/cta.php:258
3920
  #@ fl-builder
3921
+ msgid "Button Colors"
3922
+ msgstr "Colori pulsante"
3923
 
3924
+ #: modules/callout/callout.php:539
3925
+ #: modules/content-slider/content-slider.php:653
3926
+ #: modules/cta/cta.php:295
3927
+ #: modules/subscribe-form/subscribe-form.php:213
3928
  #@ fl-builder
3929
+ msgid "Button Style"
3930
+ msgstr "Stile pulsante"
3931
 
3932
+ #: modules/callout/callout.php:546
3933
+ #: modules/content-slider/content-slider.php:656
3934
+ #: modules/cta/cta.php:302
3935
  #@ fl-builder
3936
+ msgid "Button Structure"
3937
+ msgstr "Struttura pulsante"
3938
 
3939
+ #: modules/callout/callout.php:550
3940
  #@ fl-builder
3941
+ msgid "Button Width"
3942
+ msgstr "Larghezza del pulsante"
3943
 
3944
+ #: modules/contact-form/contact-form.php:14
3945
  #@ fl-builder
3946
+ msgid "Contact Form"
3947
+ msgstr "Modulo di contatto"
3948
 
3949
+ #: modules/contact-form/contact-form.php:15
3950
  #@ fl-builder
3951
+ msgid "A very simple contact form."
3952
+ msgstr "Un semplice modulo di contatto."
3953
 
3954
+ #: modules/contact-form/contact-form.php:36
3955
  #@ fl-builder
3956
+ msgid "Contact Form Submission"
3957
+ msgstr "Invio modulo di contatto"
3958
 
3959
+ #: modules/contact-form/contact-form.php:41
3960
  #@ fl-builder
3961
+ msgid "Message"
3962
+ msgstr "Messaggio"
3963
 
3964
+ #: modules/contact-form/contact-form.php:64
3965
  #@ fl-builder
3966
+ msgid "Send To Email"
3967
+ msgstr "Invia per Email"
3968
 
3969
+ #: modules/contact-form/contact-form.php:66
3970
  #@ fl-builder
3971
+ msgid "example@mail.com"
3972
+ msgstr "example@mail.com"
3973
 
3974
+ #: modules/contact-form/contact-form.php:67
3975
  #@ fl-builder
3976
+ msgid "The contact form will send to this e-mail"
3977
+ msgstr "Il modulo di contatto sarà inviato a questa e-mail"
3978
 
3979
+ #: modules/contact-form/contact-form.php:75
3980
+ #: modules/subscribe-form/subscribe-form.php:107
3981
  #@ fl-builder
3982
+ msgid "Name Field"
3983
+ msgstr "Campo nome"
3984
 
3985
+ #: modules/post-grid/post-grid.php:116
3986
+ #: modules/post-grid/post-grid.php:149
3987
+ #: modules/post-grid/post-grid.php:158
3988
+ #: modules/post-grid/post-grid.php:188
3989
+ #: modules/post-grid/post-grid.php:202
3990
+ #: modules/post-grid/post-grid.php:216
3991
  #@ fl-builder
3992
+ msgid "Show"
3993
+ msgstr "Mostra"
3994
 
3995
+ #: modules/post-grid/post-grid.php:117
3996
+ #: modules/post-grid/post-grid.php:150
3997
+ #: modules/post-grid/post-grid.php:159
3998
+ #: modules/post-grid/post-grid.php:189
3999
+ #: modules/post-grid/post-grid.php:203
4000
+ #: modules/post-grid/post-grid.php:217
4001
  #@ fl-builder
4002
+ msgid "Hide"
4003
+ msgstr "Nascondi"
4004
 
4005
+ #: modules/contact-form/contact-form.php:84
4006
  #@ fl-builder
4007
+ msgid "Subject Field"
4008
+ msgstr "Campo oggetto"
4009
 
4010
+ #: modules/contact-form/contact-form.php:93
 
4011
  #@ fl-builder
4012
+ msgid "Email Field"
4013
+ msgstr "Campo email"
4014
 
4015
+ #: modules/contact-form/contact-form.php:102
4016
  #@ fl-builder
4017
+ msgid "Phone Field"
4018
+ msgstr "Campo telefono"
4019
 
4020
+ #: modules/contact-form/includes/frontend.php:4
4021
  #@ fl-builder
4022
+ msgctxt "Contact form field label."
4023
+ msgid "Name"
4024
+ msgstr "Nome"
4025
 
4026
+ #: modules/contact-form/includes/frontend.php:5
4027
  #@ fl-builder
4028
+ msgid "Please enter your name."
4029
+ msgstr "Inserisci il tuo nome."
 
4030
 
4031
+ #: modules/contact-form/includes/frontend.php:6
 
4032
  #@ fl-builder
4033
+ msgid "Your name"
4034
+ msgstr "Il tuo nome"
4035
 
4036
+ #: modules/contact-form/includes/frontend.php:13
4037
+ #: modules/contact-form/includes/frontend.php:15
4038
  #@ fl-builder
4039
+ msgid "Subject"
4040
+ msgstr "Oggetto"
4041
 
4042
+ #: modules/contact-form/includes/frontend.php:14
4043
  #@ fl-builder
4044
+ msgid "Please enter a subject."
4045
+ msgstr "Si prega di inserire un oggetto."
4046
 
4047
+ #: modules/contact-form/includes/frontend.php:11
4048
  #@ fl-builder
4049
+ msgid "Please enter a valid email."
4050
+ msgstr "Inserisci un indirizzo email valido."
 
4051
 
4052
+ #: modules/contact-form/includes/frontend.php:12
4053
  #@ fl-builder
4054
+ msgid "Your email"
4055
+ msgstr "La tua email"
4056
 
4057
+ #: modules/contact-form/includes/frontend.php:29
4058
  #@ fl-builder
4059
+ msgid "Phone"
4060
+ msgstr "Telefono"
4061
 
4062
+ #: modules/contact-form/includes/frontend.php:30
 
4063
  #@ fl-builder
4064
+ msgid "Please enter a valid phone number."
4065
+ msgstr "Si prega di inserire un numero di telefono valido."
4066
 
4067
+ #: modules/contact-form/includes/frontend.php:31
4068
  #@ fl-builder
4069
+ msgid "Your phone"
4070
+ msgstr "Il tuo telefono"
4071
 
4072
+ #: modules/contact-form/includes/frontend.php:16
 
 
4073
  #@ fl-builder
4074
+ msgid "Your Message"
4075
+ msgstr "Il tuo messaggio"
 
4076
 
4077
+ #: modules/contact-form/includes/frontend.php:17
4078
  #@ fl-builder
4079
+ msgid "Please enter a message."
4080
+ msgstr "Inserisci un messaggio."
4081
 
4082
+ #: modules/contact-form/includes/frontend.php:18
4083
  #@ fl-builder
4084
+ msgid "Your message"
4085
+ msgstr "Il tuo messaggio"
4086
 
4087
+ #: modules/contact-form/includes/frontend.php:23
4088
  #@ fl-builder
4089
+ msgid "Send"
4090
+ msgstr "Invia"
4091
 
4092
+ #: modules/contact-form/includes/frontend.php:24
 
4093
  #@ fl-builder
4094
+ msgid "Message Sent!"
4095
+ msgstr "Messaggio inviato!"
4096
 
4097
+ #: modules/contact-form/includes/frontend.php:25
4098
  #@ fl-builder
4099
+ msgid "Message failed. Please try again."
4100
+ msgstr "Invio non riuscito. Per favore riprova."
4101
 
4102
+ #: modules/content-slider/content-slider.php:14
4103
  #@ fl-builder
4104
+ msgid "Content Slider"
4105
+ msgstr "Slider contenuto"
4106
 
4107
+ #: modules/content-slider/content-slider.php:15
4108
  #@ fl-builder
4109
+ msgid "Displays multiple slides with an optional heading and call to action."
4110
+ msgstr "Visualizza slide multiple con un titolo e una call to action opzionali."
4111
 
4112
+ #: modules/content-slider/content-slider.php:191
4113
+ #: modules/map/map.php:41
4114
+ #: modules/separator/separator.php:58
4115
+ #: modules/slideshow/slideshow.php:294
4116
  #@ fl-builder
4117
+ msgid "Height"
4118
+ msgstr "Altezza"
 
4119
 
4120
+ #: modules/content-slider/content-slider.php:196
4121
  #@ fl-builder
4122
+ msgid "This setting is the minimum height of the content slider. Content will expand the height automatically."
4123
+ msgstr "Questa impostazione è l'altezza minima dello slider di contenuto. Il contenuto espanderà automaticamente l'altezza."
4124
 
4125
+ #: modules/content-slider/content-slider.php:200
4126
+ #: modules/slideshow/slideshow.php:373
4127
+ #: modules/testimonials/testimonials.php:82
4128
+ #: modules/video/video.php:108
4129
  #@ fl-builder
4130
+ msgid "Auto Play"
4131
+ msgstr "Avvio automatico"
4132
 
4133
+ #: modules/content-slider/content-slider.php:214
4134
  #@ fl-builder
4135
+ msgid "Show Play/Pause"
4136
+ msgstr "Mostra Play/Pausa"
4137
 
4138
+ #: modules/content-slider/content-slider.php:234
4139
+ #: modules/testimonials/testimonials.php:102
4140
  #@ fl-builder
4141
+ msgctxt "Transition type."
4142
+ msgid "Slide"
4143
+ msgstr "Slide"
4144
 
4145
+ #: modules/content-slider/content-slider.php:248
4146
+ #: modules/testimonials/testimonials.php:121
 
 
 
 
4147
  #@ fl-builder
4148
+ msgid "Show Arrows"
4149
+ msgstr "Mostra frecce"
4150
 
4151
+ #: modules/content-slider/content-slider.php:257
4152
+ #: modules/testimonials/testimonials.php:151
 
 
 
 
4153
  #@ fl-builder
4154
+ msgid "Show Dots"
4155
+ msgstr "Mostra navigazione"
4156
 
4157
+ #: modules/content-slider/content-slider.php:271
4158
  #@ fl-builder
4159
+ msgid "Max Content Width"
4160
+ msgstr "Larghezza max contenuto"
4161
 
4162
+ #: modules/content-slider/content-slider.php:276
4163
  #@ fl-builder
4164
+ msgid "The max width that the content area will be within your slides."
4165
+ msgstr "La larghezza massima dell'area di contenuto nelle tue slides."
4166
 
4167
+ #: modules/content-slider/content-slider.php:283
4168
  #@ fl-builder
4169
+ msgid "Slides"
4170
+ msgstr "Slides"
4171
 
4172
+ #: modules/content-slider/content-slider.php:290
4173
  #@ fl-builder
4174
+ msgid "Slide"
4175
+ msgstr "Slide"
4176
 
4177
+ #: modules/content-slider/content-slider.php:305
4178
  #@ fl-builder
4179
+ msgid "Slide Settings"
4180
+ msgstr "Impostazioni slide"
4181
 
4182
+ #: modules/content-slider/content-slider.php:315
4183
  #@ fl-builder
4184
+ msgid "Slide Label"
4185
+ msgstr "Etichetta slide"
4186
 
4187
+ #: modules/content-slider/content-slider.php:316
4188
  #@ fl-builder
4189
+ msgid "A label to identify this slide on the Slides tab of the Content Slider settings."
4190
+ msgstr "Un'etichetta per identificare questa slide nelle impostazioni dello Slider Contenuti, tra le schede delle slide."
4191
 
4192
+ #: modules/content-slider/content-slider.php:321
4193
  #@ fl-builder
4194
+ msgid "Background Layout"
4195
+ msgstr "Layout sfondo"
4196
 
4197
+ #: modules/content-slider/content-slider.php:327
4198
  #@ fl-builder
4199
+ msgid "This setting is for the entire background of your slide."
4200
+ msgstr "Questa impostazione è per l'intero sfondo della tua slide."
4201
 
4202
+ #: modules/content-slider/content-slider.php:362
4203
  #@ fl-builder
4204
+ msgid "Background Video Code"
4205
+ msgstr "Codice sfondo video"
4206
 
4207
+ #: modules/content-slider/content-slider.php:368
4208
  #@ fl-builder
4209
+ msgid "Content Layout"
4210
+ msgstr "Layout contenuto"
4211
 
4212
+ #: modules/content-slider/content-slider.php:374
4213
  #@ fl-builder
4214
+ 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."
4215
+ msgstr "Questo permette di aggiungere contenuto sopra o in aggiunta alla selezione sfondo sopra. La posizione del layout contenuti può essere selezionata nella scheda stile."
4216
 
4217
+ #: modules/content-slider/content-slider.php:377
4218
  #@ fl-builder
4219
+ msgid "Text &amp; Photo"
4220
+ msgstr "Testo e foto"
4221
 
4222
+ #: modules/content-slider/content-slider.php:378
 
4223
  #@ fl-builder
4224
+ msgid "Text &amp; Video"
4225
+ msgstr "Testo e Video"
4226
 
4227
+ #: modules/content-slider/content-slider.php:379
4228
  #@ fl-builder
4229
+ msgctxt "Content type."
4230
+ msgid "None"
4231
+ msgstr "Nessuno"
4232
 
4233
+ #: modules/content-slider/content-slider.php:402
4234
+ #: modules/video/video.php:132
4235
  #@ fl-builder
4236
+ msgid "Video Embed Code"
4237
+ msgstr "Codice di embed del video"
4238
 
4239
+ #: modules/content-slider/content-slider.php:462
4240
  #@ fl-builder
4241
+ msgid "Text Position"
4242
+ msgstr "Posizione testo"
4243
 
4244
+ #: modules/content-slider/content-slider.php:468
4245
  #@ fl-builder
4246
+ msgid "The position will move the content layout selections left, right or center over the background of the slide."
4247
+ msgstr "La posizione sposterà le selezioni di layout contenuto a sinistra, destra o centrato sullo sfondo della slide."
 
4248
 
4249
+ #: modules/content-slider/content-slider.php:485
4250
  #@ fl-builder
4251
+ msgid "Top Margin"
4252
+ msgstr "Margine alto"
 
4253
 
4254
+ #: modules/content-slider/content-slider.php:493
4255
  #@ fl-builder
4256
+ msgid "Bottom Margin"
4257
+ msgstr "Margine basso"
4258
 
4259
+ #: modules/content-slider/content-slider.php:501
4260
  #@ fl-builder
4261
+ msgid "Left Margin"
4262
+ msgstr "Margine sinistro"
4263
 
4264
+ #: modules/content-slider/content-slider.php:509
4265
  #@ fl-builder
4266
+ msgid "Right Margin"
4267
+ msgstr "Margine destro"
4268
 
4269
+ #: modules/content-slider/content-slider.php:518
4270
  #@ fl-builder
4271
+ msgid "Text Colors"
4272
+ msgstr "Colori del testo"
4273
 
4274
+ #: modules/content-slider/content-slider.php:528
4275
  #@ fl-builder
4276
+ msgid "Text Shadow"
4277
+ msgstr "Ombra del testo"
4278
 
4279
+ #: modules/content-slider/content-slider.php:537
4280
+ #: modules/content-slider/content-slider.php:725
4281
  #@ fl-builder
4282
+ msgid "Text Background Color"
4283
+ msgstr "Colore di sfondo del testo"
4284
 
4285
+ #: modules/content-slider/content-slider.php:538
4286
  #@ fl-builder
4287
+ msgid "The color applies to the overlay behind text over the background selections."
4288
+ msgstr "Il colore si applica all'overlay dietro il testo sopra lo sfondo selezionato."
4289
 
4290
+ #: modules/content-slider/content-slider.php:543
4291
  #@ fl-builder
4292
+ msgid "Text Background Opacity"
4293
+ msgstr "Opacità sfondo del testo"
4294
 
4295
+ #: modules/content-slider/content-slider.php:551
4296
  #@ fl-builder
4297
+ msgid "Text Background Height"
4298
+ msgstr "Altezza sfondo del testo"
4299
 
4300
+ #: modules/content-slider/content-slider.php:553
4301
  #@ fl-builder
4302
+ 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."
4303
+ msgstr "Auto permetterà all'overlay di adattarsi a qualunque lunghezza del contenuto di testo. 100% adatta l'overlay alla parte superiore e inferiore della slide."
 
4304
 
4305
+ #: modules/content-slider/content-slider.php:555
4306
  #@ fl-builder
4307
+ msgctxt "Background height."
4308
+ msgid "Auto"
4309
+ msgstr "Auto"
4310
 
4311
+ #: modules/content-slider/content-slider.php:572
4312
  #@ fl-builder
4313
+ 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."
4314
+ msgstr "Il collegamento si applica all'intera slide. Se si sceglie un tipo di call to action qui sotto, questo collegamento verrà utilizzato anche per il testo o pulsante."
4315
 
4316
+ #: modules/content-slider/content-slider.php:676
4317
  #@ fl-builder
4318
+ msgid "Border Radius"
4319
+ msgstr "Raggio del bordo"
4320
 
4321
+ #: modules/content-slider/content-slider.php:687
4322
  #@ fl-builder
4323
+ msgctxt "Module settings form tab. Display on mobile devices."
4324
+ msgid "Mobile"
4325
+ msgstr "Mobile"
4326
 
4327
+ #: modules/content-slider/content-slider.php:690
4328
  #@ fl-builder
4329
+ msgid "Mobile Photo"
4330
+ msgstr "Foto mobile"
4331
 
4332
+ #: modules/content-slider/content-slider.php:696
4333
  #@ fl-builder
4334
+ msgid "You can choose a different photo that the slide will change to on mobile devices or no photo if desired."
4335
+ msgstr "È possibile scegliere una foto diversa da visualizzare nella slide per i dispositivi mobili, o nessuna foto se lo si desidera."
4336
 
4337
+ #: modules/content-slider/content-slider.php:698
4338
  #@ fl-builder
4339
+ msgid "Use Main Photo"
4340
+ msgstr "Utilizza foto principale"
4341
 
4342
+ #: modules/content-slider/content-slider.php:699
4343
  #@ fl-builder
4344
+ msgid "Choose Another Photo"
4345
+ msgstr "Scegli un'altra foto"
4346
 
4347
+ #: modules/content-slider/content-slider.php:700
4348
  #@ fl-builder
4349
+ msgid "No Photo"
4350
+ msgstr "Nessuna foto"
4351
 
4352
+ #: modules/content-slider/content-slider.php:715
4353
  #@ fl-builder
4354
+ msgid "Mobile Text Colors"
4355
+ msgstr "Colori testo mobile"
4356
 
4357
+ #: modules/cta/cta.php:15
 
4358
  #@ fl-builder
4359
+ msgid "Display a heading, subheading and a button."
4360
+ msgstr "Mostra un titolo, sottotitolo e un pulsante."
4361
 
4362
+ #: modules/cta/cta.php:73
4363
  #@ fl-builder
4364
+ msgid "Ready to find out more?"
4365
+ msgstr "Pronti a saperne di più?"
4366
 
4367
+ #: modules/cta/cta.php:88
4368
  #@ fl-builder
4369
+ msgid "Drop us a line today for a free quote!"
4370
+ msgstr "Mandaci oggi due righe per un preventivo gratuito!"
4371
 
4372
+ #: modules/cta/cta.php:106
4373
+ #: modules/gallery/gallery.php:220
4374
+ #: modules/post-grid/post-grid.php:44
4375
+ #: modules/tabs/tabs.php:52
4376
+ #: modules/testimonials/testimonials.php:37
4377
+ #: modules/woocommerce/woocommerce.php:57
4378
  #@ fl-builder
4379
+ msgid "Layout"
4380
+ msgstr "Layout"
4381
 
4382
+ #: modules/cta/cta.php:109
4383
  #@ fl-builder
4384
+ msgid "Inline"
4385
+ msgstr "In linea"
4386
 
4387
+ #: modules/cta/cta.php:110
4388
  #@ fl-builder
4389
+ msgid "Stacked"
4390
+ msgstr "Impilati"
 
4391
 
4392
+ #: modules/cta/cta.php:130
4393
+ #: modules/icon-group/icon-group.php:99
4394
  #@ fl-builder
4395
+ msgid "Spacing"
4396
+ msgstr "Spaziatura"
 
4397
 
4398
+ #: modules/cta/cta.php:234
4399
  #@ fl-builder
4400
+ msgid "Button Link"
4401
+ msgstr "Collegamento pulsante"
4402
 
4403
+ #: modules/gallery/gallery.php:14
4404
+ #: modules/post-grid/post-grid.php:55
4405
  #@ fl-builder
4406
+ msgid "Gallery"
4407
+ msgstr "Galleria"
4408
 
4409
+ #: modules/gallery/gallery.php:15
4410
  #@ fl-builder
4411
+ msgid "Display multiple photos in a gallery view."
4412
+ msgstr "Visualizzare più foto in una galleria."
4413
 
4414
+ #: modules/gallery/gallery.php:223
4415
  #@ fl-builder
4416
+ msgid "Collage"
4417
+ msgstr "Collage"
 
4418
 
4419
+ #: modules/gallery/gallery.php:224
4420
  #@ fl-builder
4421
+ msgctxt "Gallery layout: thumbnails."
4422
+ msgid "Thumbs"
4423
+ msgstr "Miniature"
4424
 
4425
+ #: modules/gallery/gallery.php:260
4426
  #@ fl-builder
4427
+ msgid "Photo Size"
4428
+ msgstr "Dimensione foto"
 
4429
 
4430
+ #: modules/gallery/gallery.php:263
4431
  #@ fl-builder
4432
+ msgctxt "Photo size."
4433
+ msgid "Small"
4434
+ msgstr "Piccola"
4435
 
4436
+ #: modules/gallery/gallery.php:264
 
4437
  #@ fl-builder
4438
+ msgctxt "Photo size."
4439
+ msgid "Medium"
4440
+ msgstr "Media"
4441
 
4442
+ #: modules/gallery/gallery.php:265
4443
  #@ fl-builder
4444
+ msgctxt "Photo size."
4445
+ msgid "Large"
4446
+ msgstr "Grande"
4447
 
4448
+ #: modules/gallery/gallery.php:270
4449
  #@ fl-builder
4450
+ msgid "Photo Spacing"
4451
+ msgstr "Spaziatura foto"
4452
 
4453
+ #: modules/gallery/gallery.php:278
4454
  #@ fl-builder
4455
+ msgid "Show Captions"
4456
+ msgstr "Visualizza didascalie"
4457
 
4458
+ #: modules/gallery/gallery.php:281
4459
+ #: modules/photo/photo.php:432
4460
  #@ fl-builder
4461
+ msgid "Never"
4462
+ msgstr "Mai"
 
4463
 
4464
+ #: modules/gallery/gallery.php:282
4465
+ #: modules/photo/photo.php:433
4466
  #@ fl-builder
4467
+ msgid "On Hover"
4468
+ msgstr "Al passaggio del mouse"
4469
 
4470
+ #: modules/gallery/gallery.php:283
4471
+ #: modules/photo/photo.php:434
4472
  #@ fl-builder
4473
+ msgid "Below Photo"
4474
+ msgstr "Sotto la foto"
4475
 
4476
+ #: modules/gallery/gallery.php:285
4477
  #@ fl-builder
4478
+ 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."
4479
+ msgstr "La didascalia utilizza qualunque testo si inserisca per ciascuna immagine nell'area didascalia del media manager. Vengono direttamente utilizzate anche le didascalie di SmugMug se le hai impostate nella tua galleria."
4480
 
4481
+ #: modules/gallery/gallery.php:289
4482
+ #: modules/slideshow/slideshow.php:335
4483
  #@ fl-builder
4484
+ msgid "Click Action"
4485
+ msgstr "Azione click"
4486
 
4487
+ #: modules/gallery/gallery.php:292
4488
  #@ fl-builder
4489
+ msgctxt "Click action."
4490
+ msgid "None"
4491
+ msgstr "Nessuna"
4492
 
4493
+ #: modules/gallery/gallery.php:293
4494
+ #: modules/photo/photo.php:452
4495
  #@ fl-builder
4496
+ msgid "Lightbox"
4497
+ msgstr "Lightbox"
4498
 
4499
+ #: modules/gallery/gallery.php:294
4500
  #@ fl-builder
4501
+ msgid "Photo Link"
4502
+ msgstr "Collegamento foto"
4503
 
4504
+ #: modules/heading/heading.php:15
4505
  #@ fl-builder
4506
+ msgid "Display a title/page heading."
4507
+ msgstr "Mostra titolo di pagina."
4508
 
4509
+ #: modules/heading/heading.php:101
4510
  #@ fl-builder
4511
+ msgid "HTML Tag"
4512
+ msgstr "Tag HTML"
4513
 
4514
+ #: modules/heading/heading.php:128
4515
+ #: modules/heading/heading.php:188
4516
  #@ fl-builder
4517
+ msgid "Custom Font Size"
4518
+ msgstr "Dimensione carattere personalizzata"
4519
 
4520
+ #: modules/heading/heading.php:137
4521
  #@ fl-builder
4522
+ msgid "Mobile Structure"
4523
+ msgstr "Struttura mobile"
4524
 
4525
+ #: modules/heading/heading.php:158
4526
  #@ fl-builder
4527
+ msgid "Custom Alignment"
4528
+ msgstr "Allineamento personalizzato"
4529
 
4530
+ #: modules/html/html.php:14
4531
  #@ fl-builder
4532
+ msgid "HTML"
4533
+ msgstr "HTML"
4534
 
4535
+ #: modules/html/html.php:15
4536
  #@ fl-builder
4537
+ msgid "Display raw HTML code."
4538
+ msgstr "Mostra codice HTML."
4539
 
4540
+ #: modules/icon-group/icon-group.php:14
4541
  #@ fl-builder
4542
+ msgid "Icon Group"
4543
+ msgstr "Gruppo di icone"
4544
 
4545
+ #: modules/icon-group/icon-group.php:15
4546
  #@ fl-builder
4547
+ msgid "Display a group of linked Font Awesome icons."
4548
+ msgstr "Mostra un gruppo di icone Font Awesome."
4549
 
4550
+ #: modules/icon-group/icon-group.php:125
4551
  #@ fl-builder
4552
+ msgid "Add Icon"
4553
+ msgstr "Aggiungi icona"
4554
 
4555
+ #: modules/icon/icon.php:15
4556
  #@ fl-builder
4557
+ msgid "Display an icon and optional title."
4558
+ msgstr "Mostra un'icona e un titolo opzionale."
4559
 
4560
+ #: modules/map/map.php:14
4561
  #@ fl-builder
4562
+ msgid "Map"
4563
+ msgstr "Mappa"
4564
 
4565
+ #: modules/map/map.php:15
4566
  #@ fl-builder
4567
+ msgid "Display a Google map."
4568
+ msgstr "Mostra una mappa di Google."
4569
 
4570
+ #: modules/map/map.php:33
4571
  #@ fl-builder
4572
+ msgid "Address"
4573
+ msgstr "Indirizzo"
4574
 
4575
+ #: modules/map/map.php:34
4576
  #@ fl-builder
4577
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4578
+ msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
4579
 
4580
+ #: modules/photo/photo.php:26
4581
  #@ fl-builder
4582
+ msgid "Upload a photo or display one from the media library."
4583
+ msgstr "Carica una foto o mostrane una dalla libreria multimediale."
4584
 
4585
+ #: modules/photo/photo.php:375
4586
  #@ fl-builder
4587
+ msgid "Photo Source"
4588
+ msgstr "Sorgente foto"
4589
 
4590
+ #: modules/photo/photo.php:379
4591
+ #: modules/photo/photo.php:451
4592
  #@ fl-builder
4593
+ msgid "URL"
4594
+ msgstr "URL"
4595
 
4596
+ #: modules/photo/photo.php:396
4597
  #@ fl-builder
4598
+ msgid "Photo URL"
4599
+ msgstr "URL foto"
4600
 
4601
+ #: modules/photo/photo.php:397
4602
  #@ fl-builder
4603
+ msgid "http://www.example.com/my-photo.jpg"
4604
+ msgstr "http://www.example.com/my-photo.jpg"
4605
 
4606
+ #: modules/photo/photo.php:404
4607
  #@ fl-builder
4608
+ msgctxt "Crop."
4609
+ msgid "None"
4610
+ msgstr "Nessuno"
4611
 
4612
+ #: modules/photo/photo.php:425
4613
+ #: modules/photo/photo.php:439
4614
  #@ fl-builder
4615
+ msgid "Caption"
4616
+ msgstr "Didascalia"
4617
 
4618
+ #: modules/photo/photo.php:429
4619
  #@ fl-builder
4620
+ msgid "Show Caption"
4621
+ msgstr "Mostra didascalia"
4622
 
4623
+ #: modules/photo/photo.php:448
4624
  #@ fl-builder
4625
+ msgid "Link Type"
4626
+ msgstr "Tipo di collegamento"
4627
 
4628
+ #: modules/photo/photo.php:450
4629
  #@ fl-builder
4630
+ msgctxt "Link type."
4631
+ msgid "None"
4632
+ msgstr "Nessuno"
4633
 
4634
+ #: modules/photo/photo.php:453
4635
  #@ fl-builder
4636
+ msgid "Photo File"
4637
+ msgstr "File foto"
4638
 
4639
+ #: modules/photo/photo.php:464
4640
  #@ fl-builder
4641
+ 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."
4642
+ msgstr "Il tipo di collegamento si applica a cosa dovrebbe essere collegato al clic. È possibile scegliere un URL specifico, la singola foto o una pagina separata per la foto."
4643
 
4644
+ #: modules/photo/photo.php:471
4645
+ #: modules/slideshow/slideshow.php:356
4646
  #@ fl-builder
4647
+ msgid "Link URL"
4648
+ msgstr "URL collegamento"
4649
 
4650
+ #: modules/post-grid/includes/post-feed.php:14
4651
+ #: modules/post-grid/includes/post-grid.php:24
4652
+ #, php-format
4653
  #@ fl-builder
4654
+ msgctxt "%s stands for author name."
4655
+ msgid "By %s"
4656
+ msgstr "Di %s"
4657
 
4658
+ #: modules/post-carousel/post-carousel.php:14
4659
  #@ fl-builder
4660
+ msgid "Posts Carousel"
4661
+ msgstr "Carosello Articoli"
4662
 
4663
+ #: modules/post-carousel/post-carousel.php:15
4664
  #@ fl-builder
4665
+ msgid "Display a carousel of your WordPress posts."
4666
+ msgstr "Mostra un carosello dei tuoi articoli WordPress."
4667
 
4668
+ #: modules/post-carousel/post-carousel.php:110
4669
+ #: modules/post-slider/post-slider.php:337
4670
  #@ fl-builder
4671
+ msgid "Slider"
4672
+ msgstr "Slider"
4673
 
4674
+ #: modules/post-grid/post-grid.php:54
4675
+ #: modules/post-grid/post-grid.php:88
4676
  #@ fl-builder
4677
+ msgid "Grid"
4678
+ msgstr "Griglia"
4679
 
4680
+ #: modules/video/video.php:120
4681
  #@ fl-builder
4682
+ msgid "Loop"
4683
+ msgstr "Ripeti"
4684
 
4685
+ #: modules/post-carousel/post-carousel.php:168
4686
+ #: modules/post-slider/post-slider.php:394
4687
  #@ fl-builder
4688
+ msgid "Number of Posts"
4689
+ msgstr "Numero di articoli"
4690
 
4691
+ #: modules/post-carousel/post-carousel.php:175
4692
+ #: modules/post-slider/post-slider.php:401
4693
  #@ fl-builder
4694
+ msgid "Slider Controls"
4695
+ msgstr "Controlli slider"
4696
 
4697
+ #: modules/post-grid/post-grid.php:14
4698
  #@ fl-builder
4699
+ msgid "Posts"
4700
+ msgstr "Posts"
4701
 
4702
+ #: modules/post-carousel/post-carousel.php:213
4703
  #@ fl-builder
4704
+ msgid "Post Max Width"
4705
+ msgstr "Massima larghezza articoli"
4706
 
4707
+ #: modules/post-grid/post-grid.php:100
4708
  #@ fl-builder
4709
+ msgid "Post Spacing"
4710
+ msgstr "Spaziatura post"
4711
 
4712
+ #: modules/post-carousel/post-carousel.php:229
4713
  #@ fl-builder
4714
+ msgid "Equalize Column Heights"
4715
+ msgstr "Uniforma l'altezza delle colonne"
4716
 
4717
+ #: modules/post-carousel/post-carousel.php:238
4718
  #@ fl-builder
4719
+ msgid "Post Hover Transition"
4720
+ msgstr "Transizione articolo al passaggio del mouse"
 
4721
 
4722
+ #: modules/post-carousel/post-carousel.php:242
4723
+ #: modules/post-grid/post-grid.php:248
4724
  #@ fl-builder
4725
+ msgid "Slide Up"
4726
+ msgstr "Slide Su"
4727
 
4728
+ #: modules/post-carousel/post-carousel.php:243
4729
+ #: modules/post-grid/post-grid.php:249
 
4730
  #@ fl-builder
4731
+ msgid "Slide Down"
4732
+ msgstr "Slide Giù"
 
4733
 
4734
+ #: modules/post-carousel/post-carousel.php:244
4735
+ #: modules/post-grid/post-grid.php:250
4736
  #@ fl-builder
4737
+ msgid "Scale Up"
4738
+ msgstr "Ingrandire"
4739
 
4740
+ #: modules/post-carousel/post-carousel.php:245
4741
+ #: modules/post-grid/post-grid.php:251
4742
  #@ fl-builder
4743
+ msgid "Scale Down"
4744
+ msgstr "Ridurre"
4745
 
4746
+ #: modules/post-grid/post-grid.php:109
4747
  #@ fl-builder
4748
+ msgid "Featured Image"
4749
+ msgstr "Immagine in evidenza"
4750
 
4751
+ #: modules/post-carousel/post-carousel.php:279
4752
+ #: modules/post-grid/post-grid.php:261
4753
  #@ fl-builder
4754
+ msgid "Use Icon for Posts"
4755
+ msgstr "Usa icona per articoli"
4756
 
4757
+ #: modules/post-carousel/post-carousel.php:293
4758
+ #: modules/post-grid/post-grid.php:275
4759
  #@ fl-builder
4760
+ msgid "Post Icon"
4761
+ msgstr "Icona articolo"
4762
 
4763
+ #: modules/post-carousel/post-carousel.php:297
4764
+ #: modules/post-grid/post-grid.php:279
4765
  #@ fl-builder
4766
+ msgid "Post Icon Position"
4767
+ msgstr "Posizione icona articolo"
4768
 
4769
+ #: modules/post-grid/post-grid.php:130
 
4770
  #@ fl-builder
4771
+ msgid "Above Text"
4772
+ msgstr "Sopra il testo"
4773
 
4774
+ #: modules/post-carousel/post-carousel.php:301
4775
+ #: modules/post-grid/post-grid.php:283
4776
  #@ fl-builder
4777
+ msgid "Below Text"
4778
+ msgstr "Sotto il testo"
4779
 
4780
+ #: modules/post-carousel/post-carousel.php:306
4781
+ #: modules/post-grid/post-grid.php:288
4782
  #@ fl-builder
4783
+ msgid "Post Icon Size"
4784
+ msgstr "Dimensione icona articolo"
4785
 
4786
+ #: modules/post-grid/post-grid.php:142
4787
  #@ fl-builder
4788
+ msgid "Post Info"
4789
+ msgstr "Informazioni post"
4790
 
4791
+ #: modules/post-grid/post-grid.php:169
4792
  #@ fl-builder
4793
+ msgid "Date Format"
4794
+ msgstr "Formato data"
4795
 
4796
+ #: modules/post-grid/post-grid.php:213
4797
  #@ fl-builder
4798
+ msgid "More Link"
4799
+ msgstr "Collegamento \"Leggi tutto\""
4800
 
4801
+ #: modules/post-grid/post-grid.php:227
4802
  #@ fl-builder
4803
+ msgid "More Link Text"
4804
+ msgstr "Testo \"Leggi tutto\""
4805
 
4806
+ #: modules/post-carousel/post-carousel.php:418
4807
+ #: modules/post-grid/post-grid.php:307
4808
  #@ fl-builder
4809
+ msgid "Post Icon Color"
4810
+ msgstr "Colore icona articolo"
4811
 
4812
+ #: modules/post-grid/includes/frontend.php:41
4813
  #@ fl-builder
4814
+ msgid "No posts found."
4815
+ msgstr "Nessun post trovato."
4816
 
4817
+ #: modules/post-grid/post-grid.php:15
4818
  #@ fl-builder
4819
+ msgid "Display a grid of your WordPress posts."
4820
+ msgstr "Mostra una griglia con i tuoi post WordPress."
4821
 
4822
+ #: modules/post-grid/post-grid.php:51
4823
  #@ fl-builder
4824
+ msgid "Layout Style"
4825
+ msgstr "Stile di layout"
4826
 
4827
+ #: modules/post-grid/post-grid.php:56
 
4828
  #@ fl-builder
4829
+ msgid "Feed"
4830
+ msgstr "Feed"
4831
 
4832
+ #: modules/post-grid/post-grid.php:71
4833
  #@ fl-builder
4834
+ msgid "Pagination Style"
4835
+ msgstr "Stile paginazione"
4836
 
4837
+ #: modules/post-grid/post-grid.php:74
4838
  #@ fl-builder
4839
+ msgid "Numbers"
4840
+ msgstr "Numeri"
4841
 
4842
+ #: modules/post-grid/post-grid.php:76
4843
  #@ fl-builder
4844
+ msgctxt "Pagination style."
4845
+ msgid "None"
4846
+ msgstr "Nessuna"
4847
 
4848
+ #: modules/post-grid/post-grid.php:81
4849
  #@ fl-builder
4850
+ msgid "Posts Per Page"
4851
+ msgstr "Post per pagina"
4852
 
4853
+ #: modules/post-grid/post-grid.php:92
4854
  #@ fl-builder
4855
+ msgid "Post Width"
4856
+ msgstr "Larghezza post"
4857
 
4858
+ #: modules/post-grid/post-grid.php:131
4859
  #@ fl-builder
4860
+ msgid "Beside Text"
4861
+ msgstr "Accanto al testo"
4862
 
4863
+ #: modules/post-grid/post-grid.php:185
4864
  #@ fl-builder
4865
+ msgid "Comments"
4866
+ msgstr "Commenti"
4867
 
4868
+ #: modules/post-grid/post-grid.php:208
4869
  #@ fl-builder
4870
+ msgid "Content Type"
4871
+ msgstr "Tipo di contenuto"
4872
 
4873
+ #: modules/post-grid/post-grid.php:211
4874
  #@ fl-builder
4875
+ msgid "Excerpt"
4876
+ msgstr "Riassunto"
4877
 
4878
+ #: modules/post-grid/post-grid.php:212
4879
  #@ fl-builder
4880
+ msgid "Full Text"
4881
+ msgstr "Testo completo"
4882
 
4883
+ #: modules/post-grid/post-grid.php:244
4884
  #@ fl-builder
4885
+ msgid "Hover Transition"
4886
+ msgstr "Transizione al passaggio del mouse"
4887
 
4888
+ #: modules/post-slider/post-slider.php:14
4889
  #@ fl-builder
4890
+ msgid "Posts Slider"
4891
+ msgstr "Slider Articoli"
4892
 
4893
+ #: modules/post-slider/post-slider.php:15
4894
  #@ fl-builder
4895
+ msgid "Display a slider of your WordPress posts."
4896
+ msgstr "Visualizza uno slider dei tuoi articoli WordPress."
4897
 
4898
+ #: modules/post-slider/post-slider.php:349
4899
  #@ fl-builder
4900
+ msgid "This setting is the minimum height of the post slider. Content will expand the height automatically."
4901
+ msgstr "Questa impostazione è l'altezza minima dello slider di articoli. Il contenuto espanderà l'altezza automaticamente."
4902
 
4903
+ #: modules/post-slider/post-slider.php:439
4904
  #@ fl-builder
4905
+ msgid "Show Featured Image?"
4906
+ msgstr "Mostra immagine in evidenza?"
 
4907
 
4908
+ #: modules/post-slider/post-slider.php:623
4909
  #@ fl-builder
4910
+ msgid "The position will move the content layout selections left, right or bottom over the background of the slide."
4911
+ msgstr "La posizione sposterà il layout del contenuto selezionato a sinistra, destra o in basso sopra lo sfondo della slide."
4912
 
4913
+ #: modules/post-slider/post-slider.php:642
4914
  #@ fl-builder
4915
+ msgid "The position will move the content layout selections left or right or center of the thumbnail of the slide."
4916
+ msgstr "La posizione sposterà il contenuto selezionato a sinistra, destra o al centro dell'immagine di anteprima della slide."
4917
 
4918
+ #: modules/post-slider/post-slider.php:658
 
4919
  #@ fl-builder
4920
+ msgid "Text Width"
4921
+ msgstr "Larghezza testo"
4922
 
4923
+ #: modules/post-slider/post-slider.php:666
4924
  #@ fl-builder
4925
+ msgid "Text Padding"
4926
+ msgstr "Padding testo"
4927
 
4928
+ #: modules/post-slider/post-slider.php:731
4929
  #@ fl-builder
4930
+ msgid "Text Background Gradient"
4931
+ msgstr "Gradiente di sfondo del testo"
4932
 
4933
+ #: modules/pricing-table/pricing-table.php:14
4934
  #@ fl-builder
4935
+ msgid "Pricing Table"
4936
+ msgstr "Tabella dei prezzi"
4937
 
4938
+ #: modules/pricing-table/pricing-table.php:15
 
4939
  #@ fl-builder
4940
+ msgid "A simple pricing table generator."
4941
+ msgstr "Un semplice generatore di tabelle dei prezzi."
4942
 
4943
+ #: modules/pricing-table/pricing-table.php:26
4944
  #@ fl-builder
4945
+ msgid "Pricing Boxes"
4946
+ msgstr "Riquadri dei prezzi"
4947
 
4948
+ #: modules/pricing-table/pricing-table.php:33
4949
  #@ fl-builder
4950
+ msgid "Pricing Box"
4951
+ msgstr "Riquadro prezzo"
4952
 
4953
+ #: modules/pricing-table/pricing-table.php:50
 
4954
  #@ fl-builder
4955
+ msgid "Box Spacing"
4956
+ msgstr "Spaziatura riquadro"
4957
 
4958
+ #: modules/pricing-table/pricing-table.php:53
4959
+ #: modules/testimonials/testimonials.php:40
 
 
 
4960
  #@ fl-builder
4961
+ msgid "Wide"
4962
+ msgstr "Ampia"
4963
 
4964
+ #: modules/pricing-table/pricing-table.php:54
 
 
 
4965
  #@ fl-builder
4966
+ msgid "Tight"
4967
+ msgstr "Stretta"
4968
 
4969
+ #: modules/pricing-table/pricing-table.php:59
 
 
 
 
4970
  #@ fl-builder
4971
+ msgid "Features Min Height"
4972
+ msgstr "Min altezza caratteristiche"
4973
 
4974
+ #: modules/pricing-table/pricing-table.php:63
4975
  #@ fl-builder
4976
+ msgid "Use this to normalize the height of your boxes when they have different numbers of features."
4977
+ msgstr "Usatelo per normalizzare l'altezza dei vostri riquadri quando hanno un diverso numero di funzionalità."
4978
 
4979
+ #: modules/pricing-table/pricing-table.php:70
4980
  #@ fl-builder
4981
+ msgctxt "Border size."
4982
+ msgid "Wide"
4983
+ msgstr "Ampio"
4984
 
4985
+ #: modules/pricing-table/pricing-table.php:71
4986
  #@ fl-builder
4987
+ msgctxt "Border size."
4988
+ msgid "Tight"
4989
+ msgstr "Stretto"
4990
 
4991
+ #: modules/pricing-table/pricing-table.php:84
4992
  #@ fl-builder
4993
+ msgid "Add Pricing Box"
4994
+ msgstr "Aggiungi riquadro prezzo"
4995
 
4996
+ #: modules/pricing-table/pricing-table.php:98
 
 
4997
  #@ fl-builder
4998
+ msgid "Title Size"
4999
+ msgstr "Dimensione del titolo"
5000
 
5001
+ #: modules/pricing-table/pricing-table.php:107
5002
  #@ fl-builder
5003
+ msgid "Price Box"
5004
+ msgstr "Riquadro prezzo"
5005
 
5006
+ #: modules/pricing-table/pricing-table.php:111
5007
  #@ fl-builder
5008
+ msgid "Price"
5009
+ msgstr "Prezzo"
5010
 
5011
+ #: modules/pricing-table/pricing-table.php:115
5012
  #@ fl-builder
5013
+ msgid "Duration"
5014
+ msgstr "Durata"
5015
 
5016
+ #: modules/pricing-table/pricing-table.php:116
 
5017
  #@ fl-builder
5018
+ msgid "per Year"
5019
+ msgstr "per anno"
5020
 
5021
+ #: modules/pricing-table/pricing-table.php:120
5022
  #@ fl-builder
5023
+ msgid "Price Size"
5024
+ msgstr "Dimensione prezzo"
5025
 
5026
+ #: modules/pricing-table/pricing-table.php:133
 
 
5027
  #@ fl-builder
5028
+ msgid "Button Text"
5029
+ msgstr "Testo del pulsante "
5030
 
5031
+ #: modules/pricing-table/pricing-table.php:137
5032
  #@ fl-builder
5033
+ msgid "Button URL"
5034
+ msgstr "URL pulsante"
5035
 
5036
+ #: modules/pricing-table/pricing-table.php:142
5037
  #@ fl-builder
5038
+ msgctxt "Price features displayed in pricing box."
5039
+ msgid "Features"
5040
+ msgstr "Caratteristiche"
5041
 
5042
+ #: modules/pricing-table/pricing-table.php:147
 
5043
  #@ fl-builder
5044
+ msgid "One feature per line. HTML is okay."
5045
+ msgstr "Una caratteristica per ogni riga. HTML va bene."
5046
 
5047
+ #: modules/pricing-table/pricing-table.php:162
5048
  #@ fl-builder
5049
+ msgid "Box Background"
5050
+ msgstr "Sfondo del box"
5051
 
5052
+ #: modules/pricing-table/pricing-table.php:167
5053
  #@ fl-builder
5054
+ msgid "Box Foreground"
5055
+ msgstr "Riempimento riquadro"
5056
 
5057
+ #: modules/pricing-table/pricing-table.php:173
5058
  #@ fl-builder
5059
+ msgid "Accent Color"
5060
+ msgstr "Colore di accento"
5061
 
5062
+ #: modules/pricing-table/pricing-table.php:178
 
 
5063
  #@ fl-builder
5064
+ msgid "Accent Text Color"
5065
+ msgstr "Colore accento del testo"
5066
 
5067
+ #: modules/pricing-table/pricing-table.php:182
5068
  #@ fl-builder
5069
+ msgid "Box Top Margin"
5070
+ msgstr "Margine superiore del box"
5071
 
5072
+ #: modules/rich-text/rich-text.php:15
5073
  #@ fl-builder
5074
+ msgid "A WYSIWYG text editor."
5075
+ msgstr "Un editor di testo WYSIWYG."
5076
 
5077
+ #: modules/separator/separator.php:14
5078
  #@ fl-builder
5079
+ msgid "Separator"
5080
+ msgstr "Separatore"
5081
 
5082
+ #: modules/separator/separator.php:15
5083
  #@ fl-builder
5084
+ msgid "A divider line to separate content."
5085
+ msgstr "Una linea divisore per separare il contenuto."
5086
 
5087
+ #: modules/separator/separator.php:85
5088
  #@ fl-builder
5089
+ msgid "The type of border to use. Double borders must have a height of at least 3px to render properly."
5090
+ msgstr "Il tipo di bordo da utilizzare. I bordi doppi devono avere un'altezza di almeno 3px per essere visualizzati correttamente."
5091
 
5092
+ #: modules/sidebar/includes/settings-general.php:5
5093
+ #: modules/sidebar/sidebar.php:14
5094
  #@ fl-builder
5095
+ msgid "Sidebar"
5096
+ msgstr "Sidebar"
5097
 
5098
+ #: modules/sidebar/sidebar.php:15
 
5099
  #@ fl-builder
5100
+ msgid "Display a WordPress sidebar that has been registered by the current theme."
5101
+ msgstr "Mostra una sidebar di WordPress che è stata registrata dal tema corrente."
5102
 
5103
+ #: modules/slideshow/slideshow.php:14
5104
  #@ fl-builder
5105
+ msgid "Slideshow"
5106
+ msgstr "Slideshow"
5107
 
5108
+ #: modules/slideshow/slideshow.php:15
 
5109
  #@ fl-builder
5110
+ msgid "Display multiple photos in a slideshow view."
5111
+ msgstr "Mostra più foto in uno slideshow."
5112
 
5113
+ #: modules/slideshow/slideshow.php:302
5114
  #@ fl-builder
5115
+ msgid "Skin Color"
5116
+ msgstr "Colore skin"
5117
 
5118
+ #: modules/slideshow/slideshow.php:305
5119
  #@ fl-builder
5120
+ msgctxt "Color."
5121
+ msgid "Light"
5122
+ msgstr "Chiaro"
5123
 
5124
+ #: modules/slideshow/slideshow.php:306
 
5125
  #@ fl-builder
5126
+ msgctxt "Color."
5127
+ msgid "Dark"
5128
+ msgstr "Scuro"
5129
 
5130
+ #: modules/slideshow/slideshow.php:308
5131
  #@ fl-builder
5132
+ msgid "If your overall theme/images are lighter in color, light will display buttons in a darker color scheme and vice versa for dark."
5133
+ msgstr "Se complessivamente il tuo tema/immagini sono di colore chiaro, l'impostazione Chiaro mostrerà i pulsanti con uno schema di colore più scuro e viceversa per l'impostazione Scuro."
5134
 
5135
+ #: modules/slideshow/slideshow.php:318
5136
  #@ fl-builder
5137
+ 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."
5138
+ msgstr "Ritaglia impostatato su No adatterà le immagini dello slideshow all'altezza che specifichi mantenendo la larghezza in proporzione, mentre Ritaglia impostato su Si adatterà le immagini dello slideshow su tutti i lati dell'area di contenuto tagliando a destra e sinistra per adattarsi all'altezza che specifichi."
5139
 
5140
+ #: modules/slideshow/slideshow.php:322
5141
  #@ fl-builder
5142
+ msgid "Disable Right-Click"
5143
+ msgstr "Disabilitare il tasto destro del mouse"
5144
 
5145
+ #: modules/slideshow/slideshow.php:342
 
5146
  #@ fl-builder
5147
+ msgctxt "Click action type."
5148
+ msgid "None"
5149
+ msgstr "Nessuna"
5150
 
5151
+ #: modules/slideshow/slideshow.php:366
5152
  #@ fl-builder
5153
+ msgid "Playback"
5154
+ msgstr "Riproduzione"
5155
 
5156
+ #: modules/slideshow/slideshow.php:392
5157
  #@ fl-builder
5158
+ msgctxt "Slideshow transition."
5159
+ msgid "None"
5160
+ msgstr "Nessuna"
5161
 
5162
+ #: modules/slideshow/slideshow.php:429
 
5163
  #@ fl-builder
5164
+ msgid "Controls"
5165
+ msgstr "Controlli"
5166
 
5167
+ #: modules/slideshow/slideshow.php:436
5168
+ #: modules/slideshow/slideshow.php:485
5169
  #@ fl-builder
5170
+ msgid "Navigation Arrows"
5171
+ msgstr "Frecce di navigazione"
5172
 
5173
+ #: modules/slideshow/slideshow.php:442
5174
  #@ fl-builder
5175
+ 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."
5176
+ msgstr "Le frecce di navigazione permettono al visitatore di muoversi liberamente tra le immagini nella presentazione. Queste sono grandi frecce sovrapposte alle immagini dello slideshow che sono separate dalle frecce di navigazione nella barra di controllo."
5177
 
5178
+ #: modules/slideshow/slideshow.php:447
5179
  #@ fl-builder
5180
+ msgid "Control Bar"
5181
+ msgstr "Barra di controllo"
 
5182
 
5183
+ #: modules/slideshow/slideshow.php:451
5184
  #@ fl-builder
5185
+ msgid "Nav Type"
5186
+ msgstr "Tipo di navigazione"
 
5187
 
5188
+ #: modules/slideshow/slideshow.php:454
5189
  #@ fl-builder
5190
+ msgctxt "Nav type."
5191
+ msgid "None"
5192
+ msgstr "Nessuna"
5193
 
5194
+ #: modules/slideshow/slideshow.php:455
5195
  #@ fl-builder
5196
+ msgid "Buttons"
5197
+ msgstr "Pulsanti"
 
5198
 
5199
+ #: modules/slideshow/slideshow.php:456
5200
+ #: modules/slideshow/slideshow.php:586
5201
  #@ fl-builder
5202
+ msgid "Thumbs"
5203
+ msgstr "Miniature"
5204
 
5205
+ #: modules/slideshow/slideshow.php:471
5206
  #@ fl-builder
5207
+ msgid "Nav Position"
5208
+ msgstr "Posizione della navigazione"
5209
 
5210
+ #: modules/slideshow/slideshow.php:481
5211
  #@ fl-builder
5212
+ msgid "Control Bar Buttons"
5213
+ msgstr "Pulsanti in barra di controllo"
5214
 
5215
+ #: modules/slideshow/slideshow.php:494
5216
  #@ fl-builder
5217
+ msgid "Play Button"
5218
+ msgstr "Pulsante Play"
5219
 
5220
+ #: modules/slideshow/slideshow.php:503
5221
  #@ fl-builder
5222
+ msgid "Fullscreen Button"
5223
+ msgstr "Pulsante FullScreen"
5224
 
5225
+ #: modules/slideshow/slideshow.php:512
5226
  #@ fl-builder
5227
+ msgid "Photo Count"
5228
+ msgstr "Contatore foto"
5229
 
5230
+ #: modules/slideshow/slideshow.php:521
5231
  #@ fl-builder
5232
+ msgid "Thumbs Button"
5233
+ msgstr "Pulsante miniatura"
5234
 
5235
+ #: modules/slideshow/slideshow.php:530
5236
  #@ fl-builder
5237
+ msgid "Caption Button"
5238
+ msgstr "Pulsante didascalia"
5239
 
5240
+ #: modules/slideshow/slideshow.php:539
5241
  #@ fl-builder
5242
+ msgid "Social Button"
5243
+ msgstr "Pulsante sociale"
5244
 
5245
+ #: modules/slideshow/slideshow.php:549
5246
  #@ fl-builder
5247
+ msgid "Control Bar Overlay"
5248
+ msgstr "Sovrapposizione della barra di controllo"
5249
 
5250
+ #: modules/slideshow/slideshow.php:553
5251
  #@ fl-builder
5252
+ msgid "Overlay Enabled"
5253
+ msgstr "Sovrapposizione abilitata"
5254
 
5255
+ #: modules/slideshow/slideshow.php:564
 
5256
  #@ fl-builder
5257
+ msgid "Control bar overlay specifies if the control bar buttons you choose overlay your slideshow images or site below the slideshow completely."
5258
+ msgstr "La sovrapposizione della barra di controllo specifica se i pulsanti della barra controllo che scegliete saranno sovrapposti alle immagini dello slideshow o se saranno collocati sotto lo slideshow."
5259
 
5260
+ #: modules/slideshow/slideshow.php:568
5261
  #@ fl-builder
5262
+ msgid "Overlay Hide"
5263
+ msgstr "Nascondi overlay"
5264
 
5265
+ #: modules/slideshow/slideshow.php:574
5266
  #@ fl-builder
5267
+ msgid "Overlay hide will hide the control bar after however many seconds you specify below. They will reappear upon mouse over."
5268
+ msgstr "Nascondi overlay nasconde la barra di controllo dopo un certo numero di secondi specificato qui sotto. Essa riapparirà passando sopra con il mouse."
5269
 
5270
+ #: modules/slideshow/slideshow.php:578
5271
  #@ fl-builder
5272
+ msgid "Overlay Hide Delay"
5273
+ msgstr "Ritardo nascondi overlay"
5274
 
5275
+ #: modules/slideshow/slideshow.php:590
5276
  #@ fl-builder
5277
+ msgid "Thumbs Size"
5278
+ msgstr "Dimensione miniature"
5279
 
5280
+ #: modules/slideshow/slideshow.php:599
5281
  #@ fl-builder
5282
+ msgid "Social"
5283
+ msgstr "Social"
5284
 
5285
+ #: modules/slideshow/slideshow.php:603
5286
  #@ fl-builder
5287
+ msgid "Facebook Button"
5288
+ msgstr "Pulsante Facebook"
5289
 
5290
+ #: modules/slideshow/slideshow.php:615
 
5291
  #@ fl-builder
5292
+ msgid "Twitter Button"
5293
+ msgstr "Pulsante Twitter"
5294
 
5295
+ #: modules/slideshow/slideshow.php:627
5296
  #@ fl-builder
5297
+ msgid "Google Plus Button"
5298
+ msgstr "Pulsante Google Plus"
5299
 
5300
+ #: modules/slideshow/slideshow.php:639
5301
  #@ fl-builder
5302
+ msgid "Pinterest Button"
5303
+ msgstr "Pulsante Pinterest"
5304
 
5305
+ #: modules/social-buttons/social-buttons.php:14
5306
  #@ fl-builder
5307
+ msgid "Social Buttons"
5308
+ msgstr "Pulsanti Social"
5309
 
5310
+ #: modules/social-buttons/social-buttons.php:15
 
5311
  #@ fl-builder
5312
+ msgid "Displays social buttons."
5313
+ msgstr "Mostra i pulsanti sociali."
5314
 
5315
+ #: modules/social-buttons/social-buttons.php:71
5316
  #@ fl-builder
5317
+ msgid "Target URL"
5318
+ msgstr "URL di destinazione"
5319
 
5320
+ #: modules/social-buttons/social-buttons.php:75
5321
  #@ fl-builder
5322
+ msgid "Current Page"
5323
+ msgstr "Pagina corrente"
5324
 
5325
+ #: modules/social-buttons/social-buttons.php:82
5326
  #@ fl-builder
5327
+ 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."
5328
+ msgstr "Il campo URL di destinazione è correlato alla pagina con cui vuoi interfacciare le tue icone social. Ad esempio, se si visualizza Facebook, l'utente farà \"Like\" su ciò che hai inserito in questo campo."
5329
 
5330
+ #: modules/social-buttons/social-buttons.php:89
5331
  #@ fl-builder
5332
+ msgid "Custom URL"
5333
+ msgstr "URL personalizzato"
5334
 
5335
+ #: modules/social-buttons/social-buttons.php:107
5336
  #@ fl-builder
5337
+ msgid "Show Facebook"
5338
+ msgstr "Mostra Facebook"
5339
 
5340
+ #: modules/social-buttons/social-buttons.php:116
5341
  #@ fl-builder
5342
+ msgid "Show Twitter"
5343
+ msgstr "Mostra Twitter"
5344
 
5345
+ #: modules/social-buttons/social-buttons.php:125
5346
  #@ fl-builder
5347
+ msgid "Show Google+"
5348
+ msgstr "Mostra Google+"
5349
 
5350
  #: modules/subscribe-form/includes/frontend.php:5
5351
  #@ fl-builder
5373
  msgid "Adds a simple subscribe form to your layout."
5374
  msgstr "Aggiunge un semplice modulo di iscrizione al tuo layout."
5375
 
 
 
 
 
 
5376
  #: modules/subscribe-form/subscribe-form.php:117
5377
  #@ fl-builder
5378
  msgid "Success"
5408
  msgid "Subscribe!"
5409
  msgstr "Iscriviti!"
5410
 
5411
+ #: modules/tabs/tabs.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5412
  #@ fl-builder
5413
+ msgid "Tabs"
5414
+ msgstr "Schede"
 
5415
 
5416
+ #: modules/tabs/tabs.php:15
5417
  #@ fl-builder
5418
+ msgid "Display a collection of tabbed content."
5419
+ msgstr "Mostra una raccolta di contenuti a schede."
5420
 
5421
+ #: modules/tabs/tabs.php:55
5422
  #@ fl-builder
5423
+ msgid "Horizontal"
5424
+ msgstr "Orizzontale"
 
5425
 
5426
+ #: modules/tabs/tabs.php:56
5427
  #@ fl-builder
5428
+ msgid "Vertical"
5429
+ msgstr "Verticale"
5430
 
5431
+ #: modules/testimonials/testimonials.php:14
5432
+ #: modules/testimonials/testimonials.php:60
5433
+ #: modules/testimonials/testimonials.php:174
5434
  #@ fl-builder
5435
+ msgid "Testimonials"
5436
+ msgstr "Testimonianze"
5437
 
5438
+ #: modules/testimonials/testimonials.php:15
 
5439
  #@ fl-builder
5440
+ msgid "An animated tesimonials area."
5441
+ msgstr "Un'area animata per i testimonials."
5442
 
5443
+ #: modules/testimonials/testimonials.php:41
 
5444
  #@ fl-builder
5445
+ msgid "Compact"
5446
+ msgstr "Compatto"
5447
 
5448
+ #: modules/testimonials/testimonials.php:51
5449
  #@ fl-builder
5450
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
5451
+ msgstr "Ampia è per righe con 1 colonna, compatta è per righe multi-colonna."
5452
 
5453
+ #: modules/testimonials/testimonials.php:78
5454
  #@ fl-builder
5455
+ msgid "Slider Settings"
5456
+ msgstr "Impostazioni Slider"
5457
 
5458
+ #: modules/testimonials/testimonials.php:135
5459
  #@ fl-builder
5460
+ msgid "Arrow Color"
5461
+ msgstr "Colore freccia "
5462
 
5463
+ #: modules/testimonials/testimonials.php:165
5464
  #@ fl-builder
5465
+ msgid "Dot Color"
5466
+ msgstr "Colore punto"
5467
 
5468
+ #: modules/testimonials/testimonials.php:181
 
5469
  #@ fl-builder
5470
+ msgid "Testimonial"
5471
+ msgstr "Testimonial"
5472
 
5473
+ #: modules/testimonials/testimonials.php:197
5474
  #@ fl-builder
5475
+ msgid "Add Testimonial"
5476
+ msgstr "Aggiungi Testimonial"
 
 
 
 
 
 
5477
 
5478
+ #: modules/video/video.php:20
 
 
5479
  #@ fl-builder
5480
+ msgid "Render a WordPress or embedable video."
5481
+ msgstr "Visualizza un video caricato in WordPress o embed."
5482
 
5483
+ #: modules/video/video.php:83
5484
  #@ fl-builder
5485
+ msgid "Video Type"
5486
+ msgstr "Tipo di video"
5487
 
5488
+ #: modules/video/video.php:87
5489
  #@ fl-builder
5490
+ msgid "Embed"
5491
+ msgstr "Embed"
5492
 
5493
+ #: modules/video/video.php:104
5494
  #@ fl-builder
5495
+ msgctxt "Video preview/fallback image."
5496
+ msgid "Poster"
5497
+ msgstr "Poster"
 
 
 
 
5498
 
5499
+ #: modules/widget/includes/frontend.php:35
5500
+ #: modules/widget/includes/settings-general.php:44
5501
  #, php-format
5502
  #@ fl-builder
5503
+ msgctxt "%s stands for widget slug."
5504
+ msgid "%s no longer exists."
5505
+ msgstr "%s non esiste più."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5506
 
5507
+ #: modules/widget/widget.php:14
5508
  #@ fl-builder
5509
+ msgid "Widget"
5510
+ msgstr "Widget"
 
5511
 
5512
+ #: modules/widget/widget.php:15
5513
  #@ fl-builder
5514
+ msgid "Display a WordPress widget."
5515
+ msgstr "Mostra un widget di WordPress."
 
5516
 
5517
+ #: modules/woocommerce/woocommerce.php:16
5518
  #@ fl-builder
5519
+ msgid "WooCommerce"
5520
+ msgstr "WooCommerce"
 
5521
 
5522
+ #: modules/woocommerce/woocommerce.php:17
5523
  #@ fl-builder
5524
+ msgid "Display products or categories from your WooCommerce store."
5525
+ msgstr "Mostra prodotti o categorie dal tuo negozio WooCommerce."
 
5526
 
5527
+ #: modules/woocommerce/woocommerce.php:61
5528
  #@ fl-builder
5529
+ msgid "Single Product"
5530
+ msgstr "Singolo prodotto"
 
5531
 
5532
+ #: modules/woocommerce/woocommerce.php:62
5533
+ #: modules/woocommerce/woocommerce.php:113
5534
  #@ fl-builder
5535
+ msgid "Multiple Products"
5536
+ msgstr "Prodotti multipli"
 
5537
 
5538
+ #: modules/woocommerce/woocommerce.php:63
5539
  #@ fl-builder
5540
+ msgid "\"Add to Cart\" Button"
5541
+ msgstr "Pulsante \"Aggiungi al carrello\""
 
5542
 
5543
+ #: modules/woocommerce/woocommerce.php:64
 
5544
  #@ fl-builder
 
5545
  msgid "Categories"
5546
  msgstr "Categorie"
5547
 
5548
+ #: modules/woocommerce/woocommerce.php:65
5549
  #@ fl-builder
5550
+ msgid "Cart"
5551
+ msgstr "Carrello"
 
5552
 
5553
+ #: modules/woocommerce/woocommerce.php:66
5554
  #@ fl-builder
5555
+ msgid "Checkout"
5556
+ msgstr "Checkout"
 
5557
 
5558
+ #: modules/woocommerce/woocommerce.php:67
5559
  #@ fl-builder
5560
+ msgid "Order Tracking"
5561
+ msgstr "Tracciabilità ordine"
 
5562
 
5563
+ #: modules/woocommerce/woocommerce.php:68
5564
  #@ fl-builder
5565
+ msgid "My Account"
5566
+ msgstr "Il mio Account"
 
5567
 
5568
+ #: modules/woocommerce/woocommerce.php:87
5569
  #@ fl-builder
5570
+ msgid "Product ID"
5571
+ msgstr "ID prodotto"
 
5572
 
5573
+ #: modules/woocommerce/woocommerce.php:90
5574
  #@ fl-builder
5575
+ 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."
5576
+ msgstr "Quando si aggiungono prodotti nell'area prodotti WooCommerce, ad ognuno verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico visitando l'area prodotti e passando il mouse sopra al prodotto. L'ID univoco sarà il primo attributo."
 
5577
 
5578
+ #: modules/woocommerce/woocommerce.php:94
5579
  #@ fl-builder
5580
+ msgid "Parent Category ID"
5581
+ msgstr "ID categoria genitore"
 
5582
 
5583
+ #: modules/woocommerce/woocommerce.php:97
5584
  #@ fl-builder
5585
+ 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."
5586
+ msgstr "Quando si aggiungono categorie di prodotto nell'area prodotti WooCommerce, a ciascuna verrà assegnato un ID univoco. Questo ID è reperibile passando il mouse sulla categoria nell'area categorie sotto Prodotti e guardando l'URL visualizzato nel browser. L'ID sarà l'unico valore numerico nell'URL."
 
5587
 
5588
+ #: modules/woocommerce/woocommerce.php:101
5589
+ #: modules/woocommerce/woocommerce.php:172
5590
  #@ fl-builder
5591
+ msgid "Columns"
5592
+ msgstr "Colonne"
 
5593
 
5594
+ #: modules/woocommerce/woocommerce.php:117
 
5595
  #@ fl-builder
5596
+ msgid "Products Source"
5597
+ msgstr "Sorgente prodotti"
 
5598
 
5599
+ #: modules/woocommerce/woocommerce.php:120
 
 
5600
  #@ fl-builder
5601
+ msgid "Products IDs"
5602
+ msgstr "ID prodotti "
5603
 
5604
+ #: modules/woocommerce/woocommerce.php:121
5605
  #@ fl-builder
5606
+ msgid "Product Category"
5607
+ msgstr "Categoria prodotto"
5608
 
5609
+ #: modules/woocommerce/woocommerce.php:122
5610
  #@ fl-builder
5611
+ msgid "Recent Products"
5612
+ msgstr "Prodotti recenti"
5613
 
5614
+ #: modules/woocommerce/woocommerce.php:123
5615
  #@ fl-builder
5616
+ msgid "Featured Products"
5617
+ msgstr "Prodotti in vetrina"
5618
 
5619
+ #: modules/woocommerce/woocommerce.php:124
5620
  #@ fl-builder
5621
+ msgid "Sale Products"
5622
+ msgstr "Prodotti in offerta"
5623
 
5624
+ #: modules/woocommerce/woocommerce.php:125
 
5625
  #@ fl-builder
5626
+ msgid "Best Selling Products"
5627
+ msgstr "Prodotti più venduti"
5628
 
5629
+ #: modules/woocommerce/woocommerce.php:126
5630
  #@ fl-builder
5631
+ msgid "Top Rated Products"
5632
+ msgstr "Prodotti più votati"
5633
 
5634
+ #: modules/woocommerce/woocommerce.php:154
 
5635
  #@ fl-builder
5636
+ msgid "Product IDs"
5637
+ msgstr "ID prodotti"
5638
 
5639
+ #: modules/woocommerce/woocommerce.php:156
 
5640
  #@ fl-builder
5641
+ 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."
5642
+ msgstr "Quando si aggiungono prodotti nell'area prodotti WooCommerce, a ciascuno verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico visitando l'area prodotti e toccando con il mouse il prodotto. L'ID univoco sarà il primo attributo, qui è possibile aggiungere diversi ID separati da una virgola."
5643
 
5644
+ #: modules/woocommerce/woocommerce.php:160
 
5645
  #@ fl-builder
5646
+ msgid "Category Slug"
5647
+ msgstr "Slug della categoria "
5648
 
5649
+ #: modules/woocommerce/woocommerce.php:162
 
5650
  #@ fl-builder
5651
+ 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."
5652
+ msgstr "Quando si aggiungono le categorie di prodotto nell'area prodotti WooCommerce, a ciasuna verrà assegnato uno slug univoco o è possibile modificare e aggiungere il proprio. Questi slug si possono trovare nell'area categorie sotto prodotti WooCommerce. Qui puoi aggiungerne diversi separati da una virgola."
5653
 
5654
+ #: modules/woocommerce/woocommerce.php:166
5655
  #@ fl-builder
5656
+ msgid "Number of Products"
5657
+ msgstr "Numero di prodotti"
 
5658
 
5659
+ #: modules/woocommerce/woocommerce.php:183
5660
  #@ fl-builder
5661
+ msgid "Sort By"
5662
+ msgstr "Ordina per"
 
5663
 
5664
+ #: modules/woocommerce/woocommerce.php:186
5665
  #@ fl-builder
5666
+ msgctxt "Sort by."
5667
+ msgid "Default"
5668
+ msgstr "Predefinito"
5669
 
5670
+ #: modules/woocommerce/woocommerce.php:187
5671
  #@ fl-builder
5672
+ msgid "Popularity"
5673
+ msgstr "Popolarità"
5674
 
5675
+ #: modules/woocommerce/woocommerce.php:188
5676
  #@ fl-builder
5677
+ msgid "Rating"
5678
+ msgstr "Valutazione"
5679
 
5680
+ #: modules/woocommerce/woocommerce.php:195
5681
  #@ fl-builder
5682
+ msgid "Sort Direction"
5683
+ msgstr "Direzione ordinamento"
 
5684
 
5685
  #: includes/admin-posts.php:7
5686
  #, php-format
5689
  msgid "%s is currently active for this page."
5690
  msgstr "%s è attualmente attivo per questa pagina."
5691
 
5692
+ #: includes/admin-posts.php:15
5693
+ #, php-format
5694
+ #@ fl-builder
5695
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
5696
+ msgid "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?"
5697
+ msgstr "Tornando alla modalità Text Editor i layout di %s saranno disabilitati finchè non lo riattivi. Le modifiche apportate in modalità Text Editor non saranno effettuate sul tuo layout %s. Vuoi continuare?"
5698
+
5699
  #: includes/column-settings.php:178
5700
  #@ fl-builder
5701
  msgid "A custom CSS class that will be applied to this column. Spaces only, no dots."
5805
  msgid "Enable or disable templates using the options below."
5806
  msgstr "Abilitare o disabilitare i modelli utilizzando le opzioni qui sotto."
5807
 
5808
+ #: includes/global-settings.php:121
5809
+ #@ fl-builder
5810
+ msgctxt "General settings form field label. Intended meaning: \"Enable auto spacing for responsive layouts?\""
5811
+ msgid "Enable Auto Spacing"
5812
+ msgstr "Abilita spaziatura automatica"
5813
+
5814
+ #: includes/global-settings.php:84
5815
+ #@ fl-builder
5816
+ msgctxt "General settings form field label. Intended meaning: \"Responsive layout enabled?\""
5817
+ msgid "Enabled"
5818
+ msgstr "Abilitato"
5819
+
5820
+ #: includes/global-settings.php:15
5821
+ #@ fl-builder
5822
+ msgctxt "General settings form field label. Intended meaning: \"Show page heading?\""
5823
+ msgid "Show"
5824
+ msgstr "Visualizza"
5825
+
5826
  #: classes/class-fl-builder-service-aweber.php:192
5827
  #: classes/class-fl-builder-service-campaign-monitor.php:209
5828
  #: classes/class-fl-builder-service-constant-contact.php:166
5865
  msgid "Scale applies to how the image should display in the row background. You can select either fill or fit to the row background."
5866
  msgstr "La scala si applica a come si dovrebbe visualizzare l'immagine sullo sfondo della riga. È possibile selezionare o riempimento o adatta allo sfondo della riga."
5867
 
5868
+ #: includes/admin-posts.php:7
5869
+ #, php-format
5870
+ #@ fl-builder
5871
+ msgctxt "The first %s stands for custom branded \"Page Builder\" name. The second %s stands for the post type name."
5872
+ msgid "%s is currently active for this %s."
5873
+ msgstr "%s è attualmente attivo per questo %s."
5874
+
languages/nl_NL.mo CHANGED
Binary file
languages/nl_NL.po CHANGED
@@ -2,16 +2,16 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-15 14:59-0800\n"
6
- "PO-Revision-Date: 2015-05-17 21:37+0100\n"
7
- "Last-Translator: Didou Schol <didou@badabing.nl>\n"
8
  "Language-Team: \n"
9
  "Language: nl_NL\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.6\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
17
  "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
@@ -51,7 +51,7 @@ msgid "Modules"
51
  msgstr "Modules"
52
 
53
  # @ fl-builder
54
- #: classes/class-fl-builder-admin-settings.php:159 includes/ui.php:47
55
  msgid "Templates"
56
  msgstr "Templates"
57
 
@@ -59,11 +59,13 @@ msgstr "Templates"
59
  #: classes/class-fl-builder-admin-settings.php:163
60
  #: includes/admin-settings-post-types.php:3
61
  msgid "Post Types"
62
- msgstr "Post Typen"
63
 
64
  # @ fl-builder
65
  #: classes/class-fl-builder-admin-settings.php:167
66
  #: modules/icon-group/icon-group.php:27
 
 
67
  msgid "Icons"
68
  msgstr "Iconen"
69
 
@@ -81,7 +83,7 @@ msgstr "Merk"
81
  # @ fl-builder
82
  #: classes/class-fl-builder-admin-settings.php:179
83
  msgid "Help Button"
84
- msgstr "Help Button"
85
 
86
  #: classes/class-fl-builder-admin-settings.php:183
87
  #: includes/admin-settings-cache.php:3
@@ -93,36 +95,36 @@ msgstr "Cache"
93
  #: includes/admin-settings-uninstall.php:3
94
  #: includes/admin-settings-uninstall.php:15
95
  msgid "Uninstall"
96
- msgstr "Deinstalleren"
97
 
98
  # @ fl-builder
99
- #: classes/class-fl-builder-admin-settings.php:450
100
  msgid "Error! You must have at least one icon set enabled."
101
- msgstr "Error! Je moet ten minste één icoon-set activeren."
102
 
103
  # @ fl-builder
104
- #: classes/class-fl-builder-admin-settings.php:492
105
  msgid "Error! Could not unzip file."
106
- msgstr "Error! Kon bestand niet uitpakken."
107
 
108
  # @ fl-builder
109
- #: classes/class-fl-builder-admin-settings.php:526
110
  msgid "Error! Please upload an icon set from either Icomoon or Fontello."
111
- msgstr "Error! Upload aub een icoon-set van Icomoon of Fontello."
112
 
113
  # @ fl-builder
114
- #: classes/class-fl-builder-admin-settings.php:648
115
  msgid "Error! Please enter an iframe for the video embed code."
116
- msgstr "Error! Geef aub een iframe voor de video embed-code."
117
 
118
  # @ fl-builder
119
- #: classes/class-fl-builder-admin-settings.php:666
120
  msgid "Error! You must have at least one feature of the help button enabled."
121
  msgstr ""
122
- "Error! Je moet minstens één optie an de help button geselecteerd hebben."
123
 
124
  # @ fl-builder
125
- #: classes/class-fl-builder-admin.php:40
126
  #, php-format
127
  msgid ""
128
  "This version of the <strong>Page Builder</strong> plugin is not compatible "
@@ -130,39 +132,39 @@ msgid ""
130
  "of this plugin."
131
  msgstr ""
132
  "Deze versie van de <strong>Page Builder</strong> plugin is niet compatible "
133
- "met Wordpress Multisite. <a %s>Upgrade</a> aub naar de Multisite versie van "
134
  "deze plugin."
135
 
136
  # @ fl-builder
137
- #: classes/class-fl-builder-admin.php:50
138
  msgid ""
139
  "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
140
  "greater. Please update WordPress before activating the plugin."
141
  msgstr ""
142
- "De <strong>Page Builder</strong> plugin vereist Wordpress versie 3.5 of "
143
- "later. Update Wordpress voordat je de plugin activeert."
144
 
145
  # @ fl-builder
146
- #: classes/class-fl-builder-admin.php:96
147
  #, php-format
148
  msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
149
  msgstr ""
150
  "Page Builder geactiveerd! <a %s>Klik hier</a> om remote updates te activeren."
151
 
152
  # @ fl-builder
153
- #: classes/class-fl-builder-admin.php:191
154
  msgctxt "Plugin action link label."
155
  msgid "Upgrade"
156
- msgstr "Update [Plugin action link label.]"
157
 
158
  # @ fl-builder
159
- #: classes/class-fl-builder-admin.php:202
160
- #: classes/class-fl-builder-model.php:2606
161
  msgid "Page Builder"
162
  msgstr "Page Builder"
163
 
164
  # @ fl-builder
165
- #: classes/class-fl-builder-model.php:1394
166
  #, php-format
167
  msgctxt "%s stands for the module filename"
168
  msgid ""
@@ -173,22 +175,23 @@ msgstr ""
173
  "bestandsnaam aan te passen voor compatibiliteit met Beaver Builder."
174
 
175
  # @ fl-builder
176
- #: classes/class-fl-builder-model.php:1452
177
- #: classes/class-fl-builder-model.php:1506 modules/heading/heading.php:16
178
  #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
179
  #: modules/separator/separator.php:16 modules/video/video.php:21
180
  msgid "Basic Modules"
181
- msgstr "Basis Modules"
182
 
183
  # @ fl-builder
184
- #: classes/class-fl-builder-model.php:1453
185
- #: classes/class-fl-builder-model.php:1507 modules/accordion/accordion.php:16
186
  #: modules/button/button.php:16 modules/callout/callout.php:16
187
  #: modules/contact-form/contact-form.php:16
188
  #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
189
  #: modules/gallery/gallery.php:16 modules/html/html.php:16
190
  #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
191
- #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
 
192
  #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
193
  #: modules/slideshow/slideshow.php:16
194
  #: modules/social-buttons/social-buttons.php:16
@@ -196,101 +199,187 @@ msgstr "Basis Modules"
196
  #: modules/testimonials/testimonials.php:16
197
  #: modules/woocommerce/woocommerce.php:18
198
  msgid "Advanced Modules"
199
- msgstr "Geavanceerde Modules"
200
 
201
  # @ fl-builder
202
- #: classes/class-fl-builder-model.php:1454
203
- #: classes/class-fl-builder-model.php:1508
204
  msgid "Other Modules"
205
- msgstr "Andere Modules"
206
 
207
  # @ fl-builder
208
- #: classes/class-fl-builder-model.php:1455
209
- #: classes/class-fl-builder-model.php:1509
210
- #: includes/admin-settings-modules.php:32 includes/ui.php:88
211
  #: modules/widget/widget.php:16
212
  msgid "WordPress Widgets"
213
- msgstr "WordPress Widgets"
214
 
215
  # @ fl-builder
216
- #: classes/class-fl-builder-model.php:2018
217
  #, php-format
218
  msgctxt "%s stands for post/page title."
219
  msgid "Copy of %s"
220
  msgstr "Kopie van %s"
221
 
222
  # @ fl-builder
223
- #: classes/class-fl-builder-photo.php:78 classes/class-fl-builder-photo.php:83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
  msgctxt "Image size."
225
  msgid "Full Size"
226
- msgstr "Volledige Grootte"
227
 
228
  # @ fl-builder
229
- #: classes/class-fl-builder-photo.php:84
230
  msgctxt "Image size."
231
  msgid "Large"
232
  msgstr "Groot"
233
 
234
  # @ fl-builder
235
- #: classes/class-fl-builder-photo.php:85
236
  msgctxt "Image size."
237
  msgid "Medium"
238
  msgstr "Medium"
239
 
240
  # @ fl-builder
241
- #: classes/class-fl-builder-photo.php:86
242
  msgctxt "Image size."
243
  msgid "Thumbnail"
244
  msgstr "Miniatuur"
245
 
246
- #: classes/class-fl-builder-service-aweber.php:72
247
- msgid "Error: You must provide an Authorization Code."
248
- msgstr "Fout: Je moet een authorisatiecode opgeven."
249
 
250
- #: classes/class-fl-builder-service-aweber.php:76
251
- msgid "Error: Please enter a valid Authorization Code."
252
- msgstr "Fout: Voer een geldige authorisatiecode in."
 
 
 
 
 
 
 
253
 
254
- #: classes/class-fl-builder-service-aweber.php:127
255
- msgid "Authorization Code"
256
- msgstr "Authorisatiecode"
257
 
258
- #: classes/class-fl-builder-service-aweber.php:128
259
- #, php-format
 
 
 
 
260
  msgid ""
261
- "Please register this website with AWeber to get your Authorization Code. <a"
262
- "%s>Register Now</a>"
263
  msgstr ""
264
- "Gelieve deze website met AWeber te registreren om je authorisatiecode te "
265
- "verkrijgen. <a%s>Registreer nu</a>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
 
267
  # @ fl-builder
 
268
  #: classes/class-fl-builder-service-aweber.php:182
269
  #: classes/class-fl-builder-service-campaign-monitor.php:148
270
  #: classes/class-fl-builder-service-campaign-monitor.php:199
271
  #: classes/class-fl-builder-service-constant-contact.php:156
272
  #: classes/class-fl-builder-service-getresponse.php:154
273
  #: classes/class-fl-builder-service-icontact.php:207
 
274
  #: classes/class-fl-builder-service-madmimi.php:178
275
- #: classes/class-fl-builder-service-mailchimp.php:154
276
  #: classes/class-fl-builder-service-mailpoet.php:92
277
- #: classes/class-fl-builder-services.php:263 includes/service-settings.php:21
 
278
  #: modules/woocommerce/woocommerce.php:60
279
  msgid "Choose..."
280
  msgstr "Kies..."
281
 
 
282
  #: classes/class-fl-builder-service-aweber.php:192
283
  #: classes/class-fl-builder-service-campaign-monitor.php:209
284
  #: classes/class-fl-builder-service-constant-contact.php:166
285
  #: classes/class-fl-builder-service-getresponse.php:164
286
  #: classes/class-fl-builder-service-icontact.php:217
 
287
  #: classes/class-fl-builder-service-madmimi.php:188
288
- #: classes/class-fl-builder-service-mailchimp.php:164
289
  #: classes/class-fl-builder-service-mailpoet.php:102
 
290
  msgctxt "An email list from a third party provider."
291
  msgid "List"
292
  msgstr "Lijst"
293
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
  #: classes/class-fl-builder-service-aweber.php:219
295
  msgid ""
296
  "There was an error subscribing to AWeber. The account is no longer connected."
@@ -309,29 +398,14 @@ msgstr ""
309
  msgid "There was an error subscribing to AWeber. %s"
310
  msgstr "Er is een fout opgetreden bij het registreren bij AWeber. %s"
311
 
312
- #: classes/class-fl-builder-service-campaign-monitor.php:55
313
- #: classes/class-fl-builder-service-constant-contact.php:48
314
- #: classes/class-fl-builder-service-getresponse.php:67
315
- #: classes/class-fl-builder-service-madmimi.php:73
316
- #: classes/class-fl-builder-service-mailchimp.php:67
317
- msgid "Error: You must provide an API key."
318
- msgstr "Fout: Je moet een API key ingeven."
319
-
320
  #: classes/class-fl-builder-service-campaign-monitor.php:67
321
  #: classes/class-fl-builder-service-campaign-monitor.php:129
322
  #: classes/class-fl-builder-service-getresponse.php:76
323
  #: classes/class-fl-builder-service-getresponse.php:132
 
324
  msgid "Error: Please check your API key."
325
  msgstr "Fout: controleer je API key."
326
 
327
- #: classes/class-fl-builder-service-campaign-monitor.php:88
328
- #: classes/class-fl-builder-service-constant-contact.php:88
329
- #: classes/class-fl-builder-service-getresponse.php:100
330
- #: classes/class-fl-builder-service-madmimi.php:121
331
- #: classes/class-fl-builder-service-mailchimp.php:100
332
- msgid "API Key"
333
- msgstr "API key"
334
-
335
  #: classes/class-fl-builder-service-campaign-monitor.php:89
336
  msgid ""
337
  "Your API key can be found in your Campaign Monitor account under Account "
@@ -360,13 +434,13 @@ msgstr ""
360
 
361
  #: classes/class-fl-builder-service-constant-contact.php:52
362
  msgid "Error: You must provide an access token."
363
- msgstr "Error: Je moet een access token verstrekken."
364
 
365
  #: classes/class-fl-builder-service-constant-contact.php:61
366
  #: classes/class-fl-builder-service-constant-contact.php:134
367
  #, php-format
368
  msgid "Error: Could not connect to Constant Contact. %s"
369
- msgstr "Erro: Kon niet verbinden met Constante Contact. %s"
370
 
371
  #: classes/class-fl-builder-service-constant-contact.php:89
372
  msgid "Your Constant Contact API key."
@@ -374,7 +448,7 @@ msgstr "Je Constant Contact API key."
374
 
375
  #: classes/class-fl-builder-service-constant-contact.php:99
376
  msgid "Access Token"
377
- msgstr "Access Token"
378
 
379
  #: classes/class-fl-builder-service-constant-contact.php:100
380
  msgid "Your Constant Contact access token."
@@ -407,6 +481,43 @@ msgstr ""
407
  "Er heeft zich een fout voorgedaan tijdens het aanmelden bij Constant "
408
  "Contact. %s"
409
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  #: classes/class-fl-builder-service-getresponse.php:101
411
  msgid ""
412
  "Your API key can be found in your GetResponse account under My Account > "
@@ -429,6 +540,38 @@ msgid "There was an error subscribing to GetResponse. %s"
429
  msgstr ""
430
  "Er heeft zich een fout voorgedaan tijdens het aanmelden bij GetResponse. %s"
431
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
432
  #: classes/class-fl-builder-service-icontact.php:75
433
  msgid "Error: You must provide a username."
434
  msgstr "Fout: Je moet een API key ingeven."
@@ -456,6 +599,7 @@ msgid "Your iContact username."
456
  msgstr "Je iContact gebruikersnaam."
457
 
458
  #: classes/class-fl-builder-service-icontact.php:136
 
459
  msgid "App ID"
460
  msgstr "App ID"
461
 
@@ -465,7 +609,7 @@ msgstr "Je iContact app ID."
465
 
466
  #: classes/class-fl-builder-service-icontact.php:147
467
  msgid "App Password"
468
- msgstr "App Wachtwoord"
469
 
470
  #: classes/class-fl-builder-service-icontact.php:148
471
  msgid "Your iContact app password."
@@ -493,20 +637,51 @@ msgstr ""
493
  msgid "There was an error subscribing to iContact. %s"
494
  msgstr "Er is een fout opgestreden tijdens het aanmelden bij iContact. %s"
495
 
496
- #: classes/class-fl-builder-service-madmimi.php:69
497
- msgid "Error: You must provide an email address."
498
- msgstr "Fout: Je moet een e-mailadres opgeven."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
499
 
500
  #: classes/class-fl-builder-service-madmimi.php:83
501
  msgid "Unable to connect to Mad Mimi. Please check your credentials."
502
  msgstr ""
503
  "Het is niet gelukt te verbinden met Mad Mimi. Controleer je inloggegevens."
504
 
505
- #: classes/class-fl-builder-service-madmimi.php:110
506
- #: modules/subscribe-form/includes/frontend.php:11
507
- msgid "Email Address"
508
- msgstr "E-mail adres"
509
-
510
  #: classes/class-fl-builder-service-madmimi.php:111
511
  msgid "The email address associated with your Mad Mimi account."
512
  msgstr "Het e-mailadres gekoppeld aan jeMad Mimi account."
@@ -543,7 +718,18 @@ msgstr ""
543
  "Je API key kun je terugvinden in je Mailchimp account onder Account > Extras "
544
  "> API Keys."
545
 
546
- #: classes/class-fl-builder-service-mailchimp.php:191
 
 
 
 
 
 
 
 
 
 
 
547
  msgid ""
548
  "There was an error subscribing to MailChimp. The account is no longer "
549
  "connected."
@@ -551,7 +737,7 @@ msgstr ""
551
  "Er is een fout opgetreden bij het registreren bij Mailchimp. Het account is "
552
  "niet langer verbonden."
553
 
554
- #: classes/class-fl-builder-service-mailchimp.php:219
555
  #, php-format
556
  msgid "There was an error subscribing to MailChimp. %s"
557
  msgstr "Er is een fout opgetreden bij het aanmelden op MailChimp. %s"
@@ -565,31 +751,79 @@ msgid "There was an error subscribing. MailPoet is not installed."
565
  msgstr ""
566
  "Er is een fout opgetreden bij het aanmelden. Mailpoet is niet geïnstalleerd."
567
 
568
- #: classes/class-fl-builder-services.php:133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
569
  msgctxt "Third party service such as MailChimp."
570
  msgid "Error: Missing service type."
571
  msgstr "Fout: Ontbrekende servicetype."
572
 
573
- #: classes/class-fl-builder-services.php:136
574
  msgctxt "Connection data such as an API key."
575
  msgid "Error: Missing service data."
576
  msgstr "Fout: Ontbrekende service data."
577
 
578
- #: classes/class-fl-builder-services.php:139
579
  msgctxt "Account name for a third party service such as MailChimp."
580
  msgid "Error: Missing account name."
581
  msgstr "Fout: Ontbrekende accountnaam."
582
 
583
- #: classes/class-fl-builder-services.php:148
584
  msgctxt "Account name for a third party service such as MailChimp."
585
  msgid "Error: An account with that name already exists."
586
  msgstr "Fout: er bestaat al een account met die naam."
587
 
588
- #: classes/class-fl-builder-services.php:228
589
  msgid "Account Name"
590
  msgstr "Accountnaam"
591
 
592
- #: classes/class-fl-builder-services.php:229
593
  msgid ""
594
  "Used to identify this connection within the accounts list and can be "
595
  "anything you like."
@@ -597,107 +831,167 @@ msgstr ""
597
  "Gebruikt om deze verbinding in de lijst met gebruikersaccounts te "
598
  "identificeren en kan alles zijn wat je wil."
599
 
600
- #: classes/class-fl-builder-services.php:242
601
  msgid "Connect"
602
  msgstr "Verbinden"
603
 
604
- #: classes/class-fl-builder-services.php:270
605
  msgid "Add Account..."
606
- msgstr "Account Toevoegen..."
607
 
608
- #: classes/class-fl-builder-services.php:277
609
  msgid "Account"
610
  msgstr "Account"
611
 
612
- #: classes/class-fl-builder-templates.php:28
613
- msgid "Page Builder Templates"
614
- msgstr "Page Builder Templates"
 
 
 
 
 
615
 
616
  # @ fl-builder
617
- #: classes/class-fl-builder.php:713
618
  #, php-format
619
  msgctxt "Field name to add."
620
  msgid "Add %s"
621
- msgstr "%s Toevoegen"
622
 
623
  # @ fl-builder
624
- #: classes/class-fl-builder.php:776 classes/class-fl-builder.php:778
625
  msgctxt "Custom post type label."
626
- msgid "Layout Templates"
627
- msgstr "Layout Templates"
628
 
629
  # @ fl-builder
630
- #: classes/class-fl-builder.php:777 classes/class-fl-builder.php:779
631
  msgctxt "Custom post type label."
632
- msgid "Layout Template"
633
- msgstr "Layout Template"
634
 
635
  # @ fl-builder
636
- #: classes/class-fl-builder.php:780
637
  msgctxt "Custom post type label."
638
  msgid "Add New"
639
  msgstr "Toevoegen"
640
 
641
  # @ fl-builder
642
- #: classes/class-fl-builder.php:781
643
  msgctxt "Custom post type label."
644
- msgid "Add New Layout Template"
645
- msgstr "Nieuwe Template toevoegen"
646
 
647
  # @ fl-builder
648
- #: classes/class-fl-builder.php:782
649
  msgctxt "Custom post type label."
650
- msgid "New Layout Template"
651
- msgstr "Nieuwe Layout Template"
652
 
653
- # @ fl-builder
654
- #: classes/class-fl-builder.php:783
655
  msgctxt "Custom post type label."
656
- msgid "Edit Layout Template"
657
- msgstr "Layout Template Bewerken"
658
 
659
  # @ fl-builder
660
- #: classes/class-fl-builder.php:784
661
  msgctxt "Custom post type label."
662
- msgid "View Layout Template"
663
- msgstr "Bekijk Layout Template"
664
 
665
  # @ fl-builder
666
- #: classes/class-fl-builder.php:785
667
  msgctxt "Custom post type label."
668
- msgid "All Layout Templates"
669
- msgstr "Alle Layout Templates"
670
 
671
  # @ fl-builder
672
- #: classes/class-fl-builder.php:786
673
  msgctxt "Custom post type label."
674
- msgid "Search Layout Templates"
675
- msgstr "Zoeken in Layout Templates"
676
 
677
  # @ fl-builder
678
- #: classes/class-fl-builder.php:787
679
  msgctxt "Custom post type label."
680
- msgid "Parent Layout Templates:"
681
- msgstr "Ouder Layout Templates:"
682
 
683
  # @ fl-builder
684
- #: classes/class-fl-builder.php:788
685
  msgctxt "Custom post type label."
686
- msgid "No layout templates found."
687
- msgstr "Geen Layout Templates gevonden."
688
 
689
  # @ fl-builder
690
- #: classes/class-fl-builder.php:789
691
  msgctxt "Custom post type label."
692
- msgid "No layout templates found in Trash."
693
- msgstr "Geen Layout Templates in prullenbak gevonden."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694
 
695
  # @ fl-builder
696
- #: classes/class-fl-builder.php:1160 includes/js-config.php:69
697
  #, php-format
698
  msgctxt "%s stands for module name."
699
  msgid "%s Settings"
700
- msgstr "%s Instellingen"
701
 
702
  # @ fl-builder
703
  #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
@@ -707,9 +1001,11 @@ msgstr "Tekstbewerker"
707
  # @ fl-builder
708
  #: includes/admin-posts.php:7
709
  #, php-format
710
- msgctxt "%s stands for custom branded \"Page Builder\" name."
711
- msgid "%s is currently active for this page."
712
- msgstr "%s is momenteel actief voor deze pagina."
 
 
713
 
714
  # @ fl-builder
715
  #: includes/admin-posts.php:8
@@ -776,7 +1072,7 @@ msgstr ""
776
 
777
  #: includes/admin-settings-cache.php:19
778
  msgid "Clear Cache"
779
- msgstr "Wis Cache"
780
 
781
  # @ fl-builder
782
  #: includes/admin-settings-editing.php:3
@@ -787,7 +1083,7 @@ msgstr "Instellingen bewerken"
787
  #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
788
  #: includes/admin-settings-modules.php:10
789
  #: includes/admin-settings-post-types.php:10
790
- #: includes/admin-settings-templates.php:10
791
  msgid "Override network settings?"
792
  msgstr "Netwerkinstellingen overschrijven?"
793
 
@@ -804,42 +1100,42 @@ msgstr ""
804
 
805
  #: includes/admin-settings-editing.php:22
806
  msgid "Save Editing Settings"
807
- msgstr "Bewaar Editing Instellingen"
808
 
809
  # @ fl-builder
810
  #: includes/admin-settings-help-button.php:8
811
  msgid "Help Button Settings"
812
- msgstr "Help Button Instellingen"
813
 
814
  # @ fl-builder
815
  #: includes/admin-settings-help-button.php:17
816
  msgid "Enable Help Button"
817
- msgstr "Activeer Help Button"
818
 
819
  # @ fl-builder
820
  #: includes/admin-settings-help-button.php:23
821
  msgid "Help Tour"
822
- msgstr "Help Rondleiding"
823
 
824
  # @ fl-builder
825
  #: includes/admin-settings-help-button.php:27
826
  msgid "Enable Help Tour"
827
- msgstr "Activeer Help Rondleiding"
828
 
829
  # @ fl-builder
830
  #: includes/admin-settings-help-button.php:31
831
  msgid "Help Video"
832
- msgstr "Help Video"
833
 
834
  # @ fl-builder
835
  #: includes/admin-settings-help-button.php:35
836
  msgid "Enable Help Video"
837
- msgstr "Activeer Help Video"
838
 
839
  # @ fl-builder
840
  #: includes/admin-settings-help-button.php:39
841
  msgid "Help Video Embed Code"
842
- msgstr "Help Video Embed Code"
843
 
844
  # @ fl-builder
845
  #: includes/admin-settings-help-button.php:45
@@ -849,7 +1145,7 @@ msgstr "Kennisbank"
849
  # @ fl-builder
850
  #: includes/admin-settings-help-button.php:49
851
  msgid "Enable Knowledge Base"
852
- msgstr "Activeer Kennisbank"
853
 
854
  # @ fl-builder
855
  #: includes/admin-settings-help-button.php:53
@@ -864,7 +1160,7 @@ msgstr "Forums"
864
  # @ fl-builder
865
  #: includes/admin-settings-help-button.php:63
866
  msgid "Enable Forums"
867
- msgstr "Activeer Forums"
868
 
869
  # @ fl-builder
870
  #: includes/admin-settings-help-button.php:67
@@ -873,12 +1169,12 @@ msgstr "Forum URL"
873
 
874
  #: includes/admin-settings-help-button.php:77
875
  msgid "Save Help Button Settings"
876
- msgstr "Help Button Instellingen Opslaan"
877
 
878
  # @ fl-builder
879
  #: includes/admin-settings-icons.php:3
880
  msgid "Icon Settings"
881
- msgstr "Icoon Instellingen"
882
 
883
  # @ fl-builder
884
  #: includes/admin-settings-icons.php:13
@@ -904,11 +1200,11 @@ msgstr "Verwijder"
904
 
905
  #: includes/admin-settings-icons.php:59
906
  msgid "Upload Icon Set"
907
- msgstr "Upload Icoon-set"
908
 
909
  #: includes/admin-settings-icons.php:60
910
  msgid "Save Icon Settings"
911
- msgstr "Icon Instellingen Opslaan"
912
 
913
  #: includes/admin-settings-js-config.php:4
914
  msgid "Select File"
@@ -973,37 +1269,79 @@ msgstr "Selecteer de post typen die je wilt waar de bouwer mee werkt."
973
  msgid "Save Post Types"
974
  msgstr "Post Type Opslaan"
975
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
976
  # @ fl-builder
977
- #: includes/admin-settings-templates.php:3 includes/template-settings.php:4
978
  msgid "Template Settings"
979
  msgstr "Template Instellingen"
980
 
981
  # @ fl-builder
982
- #: includes/admin-settings-templates.php:16
983
- msgid "Enable or disable templates using the options below."
984
- msgstr "Schakel templates in of uit door met behulp van onderstaande opties."
985
 
986
  # @ fl-builder
987
  #: includes/admin-settings-templates.php:23
 
 
 
 
 
 
 
988
  msgid "Enable All Templates"
989
  msgstr "Alle Layout Templates Activeren"
990
 
991
  # @ fl-builder
992
- #: includes/admin-settings-templates.php:24
993
  msgid "Enable Core Templates Only"
994
  msgstr "Enkel Core Templates"
995
 
996
  # @ fl-builder
997
- #: includes/admin-settings-templates.php:25
998
  msgid "Enable User Templates Only"
999
  msgstr "Enkel Gebruikers Templates"
1000
 
1001
  # @ fl-builder
1002
- #: includes/admin-settings-templates.php:26
1003
  msgid "Disable All Templates"
1004
  msgstr "Alle Templates Uitschakelen"
1005
 
1006
- #: includes/admin-settings-templates.php:30
 
 
 
 
 
 
 
 
 
 
 
 
1007
  msgid "Save Template Settings"
1008
  msgstr "Template Instellingen Opslaan"
1009
 
@@ -1053,234 +1391,339 @@ msgstr "Upgrade Nu"
1053
  msgid "Learn More"
1054
  msgstr "Leer Meer"
1055
 
1056
- #: includes/admin-templates-edit.php:3
1057
- msgid "Edit Template"
1058
- msgstr "Bewerk Template"
 
1059
 
1060
- #: includes/admin-templates-edit.php:8
1061
- msgctxt "Template edit form field label. Template name."
1062
- msgid "Name"
1063
- msgstr "Naam"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1064
 
1065
  # @ fl-builder
1066
- #: includes/admin-templates-edit.php:12 modules/callout/callout.php:305
1067
- #: modules/post-grid/post-grid.php:113
1068
- msgid "Image"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1069
  msgstr "Afbeelding"
1070
 
1071
  # @ fl-builder
1072
- #: includes/admin-templates-edit.php:16 includes/row-settings.php:155
1073
- #: includes/template-settings.php:23 modules/callout/callout.php:353
1074
- #: modules/callout/callout.php:373
1075
- #: modules/content-slider/content-slider.php:472
1076
- #: modules/post-grid/post-grid.php:127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1077
  msgid "Position"
1078
  msgstr "Positie"
1079
 
1080
- #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1081
- msgctxt "Template edit form field label. Is template premium one?"
1082
- msgid "Premium"
1083
- msgstr "Premium"
1084
 
1085
  # @ fl-builder
1086
- #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
1087
- #: includes/global-settings.php:18 includes/global-settings.php:110
1088
- #: includes/global-settings.php:124 includes/row-settings.php:307
1089
- #: includes/template-settings.php:31 modules/accordion/accordion.php:90
1090
- #: modules/callout/callout.php:420
1091
- #: modules/content-slider/content-slider.php:209
1092
- #: modules/content-slider/content-slider.php:223
1093
- #: modules/content-slider/content-slider.php:257
1094
- #: modules/content-slider/content-slider.php:266
1095
- #: modules/content-slider/content-slider.php:537
1096
- #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1097
- #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
1098
- #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
1099
- #: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
1100
- #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1101
- #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
1102
- #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
1103
- #: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
1104
- #: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
1105
- #: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
1106
- #: modules/social-buttons/social-buttons.php:111
1107
- #: modules/social-buttons/social-buttons.php:120
1108
- #: modules/social-buttons/social-buttons.php:129
1109
- #: modules/testimonials/testimonials.php:85
1110
- #: modules/testimonials/testimonials.php:124
1111
- #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1112
- #: modules/video/video.php:123
1113
- msgid "No"
1114
- msgstr "Nee"
1115
 
1116
  # @ fl-builder
1117
- #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
1118
- #: includes/global-settings.php:19 includes/global-settings.php:111
1119
- #: includes/global-settings.php:125 includes/row-settings.php:308
1120
- #: includes/template-settings.php:32 modules/accordion/accordion.php:89
1121
- #: modules/callout/callout.php:421
1122
- #: modules/content-slider/content-slider.php:210
1123
- #: modules/content-slider/content-slider.php:224
1124
- #: modules/content-slider/content-slider.php:258
1125
- #: modules/content-slider/content-slider.php:267
1126
- #: modules/content-slider/content-slider.php:538
1127
- #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1128
- #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
1129
- #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
1130
- #: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
1131
- #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
1132
- #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
1133
- #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
1134
- #: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
1135
- #: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
1136
- #: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
1137
- #: modules/social-buttons/social-buttons.php:110
1138
- #: modules/social-buttons/social-buttons.php:119
1139
- #: modules/social-buttons/social-buttons.php:128
1140
- #: modules/testimonials/testimonials.php:86
1141
- #: modules/testimonials/testimonials.php:125
1142
- #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1143
- #: modules/video/video.php:124
1144
- msgid "Yes"
1145
- msgstr "Ja"
1146
 
1147
- #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
1148
- msgid "Category"
1149
- msgstr "Categorie"
 
1150
 
1151
- #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1152
- msgctxt "Templates category label."
1153
- msgid "Landing Pages"
1154
- msgstr "Bestemmingspagina 's"
 
 
 
 
 
1155
 
1156
- #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1157
- msgctxt "Templates category label."
1158
- msgid "Company Info"
1159
- msgstr "Bedrijfsinfo"
1160
 
1161
- #: includes/admin-templates-edit.php:40
1162
- msgid "Update Template"
1163
- msgstr "Template Bijwerken"
 
 
 
 
 
 
1164
 
1165
- #: includes/admin-templates.php:3
1166
- msgid "Page Builder Template"
1167
- msgstr "Page Builder Template"
 
1168
 
1169
- #: includes/admin-templates.php:10
1170
- msgctxt "Templates list column label."
1171
- msgid "Name"
1172
- msgstr "Naam"
 
 
1173
 
1174
- #: includes/admin-templates.php:11
1175
- msgctxt "Templates list column label."
1176
- msgid "Category"
1177
- msgstr "Categorie"
1178
 
1179
- #: includes/admin-templates.php:12
1180
- msgctxt "Templates list column label. Is template premium one?"
1181
- msgid "Premium"
1182
- msgstr "Premium"
 
1183
 
1184
  # @ fl-builder
1185
- #: includes/admin-templates.php:25 includes/field-photo.php:12
1186
- #: includes/template-selector.php:83
1187
- msgid "Edit"
1188
- msgstr "Bewerk"
 
1189
 
1190
  # @ fl-builder
1191
- #: includes/admin-templates.php:27 includes/template-selector.php:84
1192
- msgid "Delete"
1193
- msgstr "Verwijder"
 
 
 
 
 
 
 
 
1194
 
1195
  # @ fl-builder
1196
- #: includes/admin-templates.php:40 includes/js-config.php:30
1197
- msgid "Do you really want to delete this template?"
1198
- msgstr "Wilt je echt dit sjabloon verwijderen?"
1199
 
1200
  # @ fl-builder
1201
- #: includes/column-settings.php:4 includes/js-config.php:23
1202
- msgid "Column Settings"
1203
- msgstr "Kolom Instellingen"
 
1204
 
1205
  # @ fl-builder
1206
- #: includes/column-settings.php:7 includes/module-settings.php:87
1207
- #: includes/row-settings.php:9 modules/accordion/accordion.php:45
1208
- #: modules/button/button.php:108 modules/button/button.php:146
1209
- #: modules/button/button.php:150 modules/callout/callout.php:241
1210
- #: modules/callout/callout.php:543
1211
- #: modules/content-slider/content-slider.php:425
1212
- #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
1213
- #: modules/cta/cta.php:299 modules/heading/heading.php:69
1214
- #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1215
- #: modules/pricing-table/pricing-table.php:43
1216
- #: modules/pricing-table/pricing-table.php:155
1217
- #: modules/separator/separator.php:72
1218
- #: modules/subscribe-form/subscribe-form.php:217 modules/tabs/tabs.php:45
1219
- msgid "Style"
1220
- msgstr "Stijl"
1221
 
1222
  # @ fl-builder
1223
- #: includes/column-settings.php:14
1224
- msgid "Column Width"
1225
- msgstr "Kolom Breedte"
1226
 
1227
  # @ fl-builder
1228
- #: includes/column-settings.php:26 includes/row-settings.php:48
1229
- #: modules/button/button.php:66 modules/callout/callout.php:225
1230
- #: modules/callout/callout.php:478 modules/callout/callout.php:494
1231
- #: modules/content-slider/content-slider.php:382
1232
- #: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
1233
- #: modules/cta/cta.php:221
1234
- msgid "Text"
1235
- msgstr "Tekst"
1236
 
1237
  # @ fl-builder
1238
- #: includes/column-settings.php:30 includes/column-settings.php:43
1239
- #: includes/column-settings.php:100 includes/row-settings.php:52
1240
- #: includes/row-settings.php:109 includes/row-settings.php:403
1241
- #: modules/callout/callout.php:391
1242
- #: modules/content-slider/content-slider.php:337
1243
- #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1244
- #: modules/separator/separator.php:34
1245
- msgid "Color"
1246
- msgstr "Kleur"
1247
 
1248
  # @ fl-builder
1249
- #: includes/column-settings.php:39 includes/row-settings.php:105
1250
- #: modules/button/button.php:115 modules/callout/callout.php:404
1251
- #: modules/callout/callout.php:508
1252
- #: modules/content-slider/content-slider.php:363
1253
- #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
1254
- #: modules/cta/cta.php:264 modules/icon-group/icon-group.php:64
1255
- #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:182
1256
- msgid "Background Color"
1257
- msgstr "Achtergrondkleur"
1258
 
1259
  # @ fl-builder
1260
- #: includes/column-settings.php:51 includes/column-settings.php:108
1261
- #: includes/row-settings.php:117 includes/row-settings.php:411
1262
- #: modules/separator/separator.php:44
1263
- msgid "Opacity"
1264
- msgstr "Dichtheid"
1265
 
1266
  # @ fl-builder
1267
- #: includes/column-settings.php:63 includes/row-settings.php:366
1268
  msgid "Border"
1269
  msgstr "Rand"
1270
 
1271
  # @ fl-builder
1272
- #: includes/column-settings.php:67 includes/row-settings.php:65
1273
- #: includes/row-settings.php:370 modules/callout/callout.php:474
1274
- #: modules/content-slider/content-slider.php:331
1275
- #: modules/content-slider/content-slider.php:378
1276
- #: modules/content-slider/content-slider.php:596
1277
- #: modules/content-slider/content-slider.php:729
1278
- #: modules/slideshow/slideshow.php:339
1279
- msgid "Type"
1280
- msgstr "Type"
1281
-
1282
- # @ fl-builder
1283
- #: includes/column-settings.php:69 includes/row-settings.php:372
1284
  msgid ""
1285
  "The type of border to use. Double borders must have a width of at least 3px "
1286
  "to render properly."
@@ -1289,237 +1732,242 @@ msgstr ""
1289
  "breedte van 3px te hebben om goed te worden weergegeven."
1290
 
1291
  # @ fl-builder
1292
- #: includes/column-settings.php:71 includes/row-settings.php:374
1293
  msgctxt "Border type."
1294
  msgid "None"
1295
  msgstr "Geen"
1296
 
1297
  # @ fl-builder
1298
- #: includes/column-settings.php:72 includes/row-settings.php:375
1299
  #: modules/separator/separator.php:75
1300
  msgctxt "Border type."
1301
  msgid "Solid"
1302
  msgstr "Vast"
1303
 
1304
  # @ fl-builder
1305
- #: includes/column-settings.php:73 includes/row-settings.php:376
1306
  #: modules/separator/separator.php:76
1307
  msgctxt "Border type."
1308
  msgid "Dashed"
1309
  msgstr "Gestreept"
1310
 
1311
  # @ fl-builder
1312
- #: includes/column-settings.php:74 includes/row-settings.php:377
1313
  #: modules/separator/separator.php:77
1314
  msgctxt "Border type."
1315
  msgid "Dotted"
1316
  msgstr "Gestippeld"
1317
 
1318
  # @ fl-builder
1319
- #: includes/column-settings.php:75 includes/row-settings.php:378
1320
  #: modules/separator/separator.php:78
1321
  msgctxt "Border type."
1322
  msgid "Double"
1323
  msgstr "Dubbel"
1324
 
1325
  # @ fl-builder
1326
- #: includes/column-settings.php:119 includes/row-settings.php:422
1327
  msgid "Top Width"
1328
  msgstr "Boven Breedte"
1329
 
1330
  # @ fl-builder
1331
- #: includes/column-settings.php:131 includes/row-settings.php:434
1332
  msgid "Bottom Width"
1333
  msgstr "Onder Breedte"
1334
 
1335
  # @ fl-builder
1336
- #: includes/column-settings.php:143 includes/row-settings.php:446
1337
  msgid "Left Width"
1338
  msgstr "Links Breedte"
1339
 
1340
  # @ fl-builder
1341
- #: includes/column-settings.php:155 includes/row-settings.php:458
1342
  msgid "Right Width"
1343
  msgstr "Rechts Breedte"
1344
 
1345
  # @ fl-builder
1346
- #: includes/column-settings.php:170 includes/module-settings.php:6
1347
- #: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
1348
  msgid "Advanced"
1349
  msgstr "Geavanceerd"
1350
 
1351
  # @ fl-builder
1352
- #: includes/column-settings.php:173 includes/global-settings.php:41
1353
  #: includes/global-settings.php:94 includes/module-settings.php:9
1354
- #: includes/row-settings.php:476
1355
  msgid "Margins"
1356
  msgstr "Marges"
1357
 
1358
  # @ fl-builder
1359
- #: includes/column-settings.php:177 includes/column-settings.php:230
1360
- #: includes/module-settings.php:13 includes/row-settings.php:480
1361
- #: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
1362
  msgid "Top"
1363
  msgstr "Boven"
1364
 
1365
  # @ fl-builder
1366
- #: includes/column-settings.php:189 includes/column-settings.php:242
1367
- #: includes/module-settings.php:25 includes/row-settings.php:492
1368
- #: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
 
1369
  msgid "Bottom"
1370
  msgstr "Onder"
1371
 
1372
  # @ fl-builder
1373
- #: includes/column-settings.php:201 includes/column-settings.php:254
1374
- #: includes/module-settings.php:37 includes/row-settings.php:504
1375
- #: includes/row-settings.php:557 modules/button/button.php:219
1376
- #: modules/callout/callout.php:252
1377
- #: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
1378
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
1379
  #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1380
- #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
 
 
1381
  msgid "Left"
1382
  msgstr "Links"
1383
 
1384
  # @ fl-builder
1385
- #: includes/column-settings.php:213 includes/column-settings.php:266
1386
- #: includes/module-settings.php:49 includes/row-settings.php:516
1387
- #: includes/row-settings.php:569 modules/button/button.php:220
1388
- #: modules/callout/callout.php:253
1389
- #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1390
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
1391
  #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
1392
- #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
 
 
1393
  msgid "Right"
1394
  msgstr "Rechts"
1395
 
1396
  # @ fl-builder
1397
- #: includes/column-settings.php:226 includes/global-settings.php:49
1398
- #: includes/row-settings.php:529 modules/button/button.php:233
1399
- #: modules/callout/callout.php:598
1400
- #: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
1401
- #: modules/subscribe-form/subscribe-form.php:263
1402
  msgid "Padding"
1403
  msgstr "Padding"
1404
 
1405
  # @ fl-builder
1406
- #: includes/column-settings.php:279 includes/global-settings.php:103
1407
- #: includes/module-settings.php:62 includes/row-settings.php:582
1408
  msgid "Responsive Layout"
1409
  msgstr "Responsive Layout"
1410
 
1411
  # @ fl-builder
1412
- #: includes/column-settings.php:283 includes/module-settings.php:66
1413
- #: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
1414
  msgid "Display"
1415
  msgstr "Weergave"
1416
 
1417
  # @ fl-builder
1418
- #: includes/column-settings.php:285 includes/module-settings.php:68
1419
- #: includes/row-settings.php:588
1420
  msgid "Always"
1421
  msgstr "Altijd"
1422
 
1423
  # @ fl-builder
1424
- #: includes/column-settings.php:286 includes/module-settings.php:69
1425
- #: includes/row-settings.php:589
1426
  msgid "Large Devices Only"
1427
  msgstr "Alleen Grote Apparaten"
1428
 
1429
  # @ fl-builder
1430
- #: includes/column-settings.php:287 includes/module-settings.php:70
1431
- #: includes/row-settings.php:590
1432
  msgid "Large &amp; Medium Devices Only"
1433
  msgstr "Alleen Grote &amp; Medium Apparaten"
1434
 
1435
  # @ fl-builder
1436
- #: includes/column-settings.php:288 includes/module-settings.php:71
1437
- #: includes/row-settings.php:591
1438
  msgid "Medium Devices Only"
1439
  msgstr "Alleen Medium Apparaten"
1440
 
1441
  # @ fl-builder
1442
- #: includes/column-settings.php:289 includes/module-settings.php:72
1443
- #: includes/row-settings.php:592
1444
  msgid "Medium &amp; Small Devices Only"
1445
  msgstr "Alleen Medium &amp; Kleine Apparaten"
1446
 
1447
  # @ fl-builder
1448
- #: includes/column-settings.php:290 includes/module-settings.php:73
1449
- #: includes/row-settings.php:593
1450
  msgid "Small Devices Only"
1451
  msgstr "Alleen Kleine Apparaten"
1452
 
1453
  # @ fl-builder
1454
- #: includes/column-settings.php:292
1455
  msgid "Choose whether to show or hide this column at different device sizes."
1456
  msgstr ""
1457
  "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
1458
  "afmetingen."
1459
 
1460
  # @ fl-builder
1461
- #: includes/column-settings.php:299
1462
  msgid "Medium Device Width"
1463
  msgstr "Medium Apparaat Breedte"
1464
 
1465
  # @ fl-builder
1466
- #: includes/column-settings.php:300
1467
  msgid "The width of this column on medium devices such as tablets."
1468
  msgstr "De breedte van deze kolom op medium apparaten zoals tablets."
1469
 
1470
  # @ fl-builder
1471
- #: includes/column-settings.php:302 includes/column-settings.php:330
1472
- #: modules/callout/callout.php:283
1473
- #: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
1474
  #: modules/heading/heading.php:117 modules/heading/heading.php:144
1475
- #: modules/heading/heading.php:174
1476
  msgid "Default"
1477
  msgstr "Standaard"
1478
 
1479
  # @ fl-builder
1480
- #: includes/column-settings.php:303 includes/column-settings.php:331
1481
- #: modules/button/button.php:193 modules/callout/callout.php:284
1482
- #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
1483
  #: modules/heading/heading.php:118 modules/heading/heading.php:145
1484
- #: modules/heading/heading.php:175
1485
  #: modules/social-buttons/social-buttons.php:74
1486
  msgid "Custom"
1487
  msgstr "Aangepast"
1488
 
1489
  # @ fl-builder
1490
- #: includes/column-settings.php:316
1491
  msgid "Custom Medium Device Width"
1492
  msgstr "Aangepaste Medium Apparaat Breedte"
1493
 
1494
  # @ fl-builder
1495
- #: includes/column-settings.php:327
1496
  msgid "Small Device Width"
1497
  msgstr "Klein Apparaat Breedte"
1498
 
1499
  # @ fl-builder
1500
- #: includes/column-settings.php:328
1501
  msgid "The width of this column on small devices such as phones."
1502
  msgstr "De breedte van deze kolom op kleine apparaten zoals telefoons."
1503
 
1504
  # @ fl-builder
1505
- #: includes/column-settings.php:344
1506
  msgid "Custom Small Device Width"
1507
  msgstr "Aangepaste Kleine Apparaat Breedte"
1508
 
1509
  # @ fl-builder
1510
- #: includes/column-settings.php:356 includes/module-settings.php:115
1511
- #: includes/row-settings.php:603
1512
  msgid "CSS Selectors"
1513
  msgstr "CSS selectors"
1514
 
1515
  # @ fl-builder
1516
- #: includes/column-settings.php:360 includes/loop-settings.php:28
1517
- #: includes/module-settings.php:119 includes/row-settings.php:607
1518
  msgid "ID"
1519
  msgstr "ID"
1520
 
1521
  # @ fl-builder
1522
- #: includes/column-settings.php:361
1523
  msgid ""
1524
  "A unique ID that will be applied to this column's HTML. Must start with a "
1525
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
@@ -1529,12 +1977,12 @@ msgstr ""
1529
  "getallen bevatten. Geen spaties."
1530
 
1531
  # @ fl-builder
1532
- #: includes/column-settings.php:368
1533
  msgid "CSS Class"
1534
  msgstr "CSS Class"
1535
 
1536
  # @ fl-builder
1537
- #: includes/column-settings.php:369
1538
  msgid ""
1539
  "A class that will be applied to this column's HTML. Must start with a letter "
1540
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
@@ -1583,12 +2031,12 @@ msgstr "Begin met typen..."
1583
  # @ fl-builder
1584
  #: includes/field-link.php:7 includes/icon-selector.php:28
1585
  #: includes/js-config.php:19 includes/settings.php:63
1586
- #: includes/template-selector.php:102 includes/ui.php:11
1587
  msgid "Cancel"
1588
  msgstr "Annuleren"
1589
 
1590
  # @ fl-builder
1591
- #: includes/field-multiple-photos.php:8
1592
  #, php-format
1593
  msgid "1 Photo Selected"
1594
  msgid_plural "%d Photos Selected"
@@ -1596,17 +2044,17 @@ msgstr[0] "1 Afbeelding Geselecteerd"
1596
  msgstr[1] "%d Afbeeldingen Geselecteerd"
1597
 
1598
  # @ fl-builder
1599
- #: includes/field-multiple-photos.php:13
1600
  msgid "Create Gallery"
1601
  msgstr "Galerij Aanmaken"
1602
 
1603
  # @ fl-builder
1604
- #: includes/field-multiple-photos.php:14
1605
  msgid "Edit Gallery"
1606
  msgstr "Bewerk Galerij"
1607
 
1608
  # @ fl-builder
1609
- #: includes/field-multiple-photos.php:15
1610
  msgid "Add Photos"
1611
  msgstr "Afbeeldingen Toevoegen"
1612
 
@@ -1615,6 +2063,11 @@ msgstr "Afbeeldingen Toevoegen"
1615
  msgid "Select Photo"
1616
  msgstr "Selecteer Afbeelding"
1617
 
 
 
 
 
 
1618
  # @ fl-builder
1619
  #: includes/field-video.php:3 includes/js-config.php:68
1620
  msgid "Select Video"
@@ -1626,20 +2079,19 @@ msgid "Replace Video"
1626
  msgstr "Vervang Video"
1627
 
1628
  # @ fl-builder
1629
- #: includes/global-settings.php:7 includes/template-settings.php:7
1630
- #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
1631
- #: modules/button/button.php:59 modules/callout/callout.php:209
1632
- #: modules/contact-form/contact-form.php:58
1633
- #: modules/content-slider/content-slider.php:190
1634
- #: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
1635
- #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
1636
  #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
1637
- #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
1638
  #: modules/pricing-table/pricing-table.php:87
1639
  #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
1640
- #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
1641
  #: modules/social-buttons/social-buttons.php:64
1642
- #: modules/subscribe-form/subscribe-form.php:86 modules/tabs/tabs.php:77
1643
  #: modules/testimonials/testimonials.php:30
1644
  #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
1645
  #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
@@ -1663,6 +2115,86 @@ msgctxt ""
1663
  msgid "Show"
1664
  msgstr "Toon"
1665
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1666
  # @ fl-builder
1667
  #: includes/global-settings.php:26
1668
  msgid ""
@@ -1709,17 +2241,10 @@ msgstr ""
1709
  msgid "Default Row Width"
1710
  msgstr "Standaard Rij Breedte"
1711
 
1712
- # @ fl-builder
1713
- #: includes/global-settings.php:69 includes/global-settings.php:83
1714
- #: includes/row-settings.php:19 includes/row-settings.php:37
1715
- #: includes/row-settings.php:179
1716
- msgid "Fixed"
1717
- msgstr "Vastgezet"
1718
-
1719
  # @ fl-builder
1720
  #: includes/global-settings.php:70 includes/global-settings.php:84
1721
  #: includes/row-settings.php:20 includes/row-settings.php:38
1722
- #: modules/button/button.php:192 modules/callout/callout.php:585
1723
  msgid "Full Width"
1724
  msgstr "Volledige Breedte"
1725
 
@@ -1847,20 +2372,25 @@ msgstr ""
1847
  "Wil je deze rij echt verwijderen? Alle inhoud gegevens zullen definitief "
1848
  "verwijderd worden."
1849
 
 
 
 
 
 
1850
  #: includes/js-config.php:31
1851
- msgid "Discard Draft"
1852
- msgstr "Concept weggooien"
1853
 
1854
  #: includes/js-config.php:32
1855
  msgid ""
1856
- "Do you really want to discard this draft? All of your changes that are not "
1857
- "published will be lost."
1858
  msgstr ""
1859
- "Wil je dit concept echt verwijderen? All je veranderingen die niet zijn "
1860
  "gepubliceerd zullen verloren gaan."
1861
 
1862
  # @ fl-builder
1863
- #: includes/js-config.php:33 includes/ui.php:44
1864
  msgid "Done"
1865
  msgstr "Klaar"
1866
 
@@ -1965,7 +2495,7 @@ msgid "OK"
1965
  msgstr "OK"
1966
 
1967
  # @ fl-builder
1968
- #: includes/js-config.php:56 modules/photo/photo.php:454
1969
  msgid "Photo Page"
1970
  msgstr "Afbeelding Pagina"
1971
 
@@ -1983,7 +2513,7 @@ msgstr "Even geduld a.u.b..."
1983
 
1984
  #: includes/js-config.php:60
1985
  msgid "Publish Changes"
1986
- msgstr "Wijzigingen Publiceren"
1987
 
1988
  #: includes/js-config.php:62
1989
  msgid "Row"
@@ -1999,8 +2529,7 @@ msgid "Save Core Template"
1999
  msgstr "Core Template Opslaan"
2000
 
2001
  # @ fl-builder
2002
- #: includes/js-config.php:65 includes/ui.php:10
2003
- #: includes/user-template-settings.php:4
2004
  msgid "Save Template"
2005
  msgstr "Template Opslaan"
2006
 
@@ -2036,7 +2565,7 @@ msgstr "Vervang Bestaande Layout"
2036
  msgid "Template Saved!"
2037
  msgstr "Template Opgeslagen!"
2038
 
2039
- #: includes/js-config.php:77
2040
  msgid "Thumbnail"
2041
  msgstr "Miniatuur"
2042
 
@@ -2073,7 +2602,7 @@ msgstr ""
2073
  "en meer door rij-layouts te slepen naar de pagina."
2074
 
2075
  # @ fl-builder
2076
- #: includes/js-config.php:84 includes/ui.php:49
2077
  msgid "Add Content"
2078
  msgstr "Inhoud Toevoegen"
2079
 
@@ -2212,7 +2741,8 @@ msgid "Order By"
2212
  msgstr "Sorteer Op"
2213
 
2214
  # @ fl-builder
2215
- #: includes/loop-settings.php:29 modules/post-grid/post-grid.php:155
 
2216
  #: modules/woocommerce/woocommerce.php:189
2217
  msgid "Date"
2218
  msgstr "Datum"
@@ -2229,7 +2759,8 @@ msgid "Title"
2229
  msgstr "Titel"
2230
 
2231
  # @ fl-builder
2232
- #: includes/loop-settings.php:32 modules/post-grid/post-grid.php:146
 
2233
  msgid "Author"
2234
  msgstr "Auteur"
2235
 
@@ -2356,17 +2887,22 @@ msgstr "Schuif Onder"
2356
 
2357
  # @ fl-builder
2358
  #: includes/module-settings.php:102
2359
- #: modules/content-slider/content-slider.php:229
 
 
2360
  #: modules/testimonials/testimonials.php:91
2361
  msgid "Delay"
2362
  msgstr "Vertraging"
2363
 
2364
  # @ fl-builder
2365
- #: includes/module-settings.php:106 includes/row-settings.php:266
2366
- #: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
2367
- #: modules/content-slider/content-slider.php:250
2368
- #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
2369
- #: modules/slideshow/slideshow.php:581
 
 
 
2370
  #: modules/testimonials/testimonials.php:95
2371
  #: modules/testimonials/testimonials.php:112
2372
  msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
@@ -2389,7 +2925,7 @@ msgstr ""
2389
  "getallen bevatten. Geen spaties."
2390
 
2391
  # @ fl-builder
2392
- #: includes/module-settings.php:127 includes/row-settings.php:615
2393
  msgid "Class"
2394
  msgstr "Class"
2395
 
@@ -2405,8 +2941,8 @@ msgstr ""
2405
  "bevatten. Meerdere klassen scheiden met een spatie."
2406
 
2407
  # @ fl-builder
2408
- #: includes/row-settings.php:16 modules/button/button.php:188
2409
- #: modules/content-slider/content-slider.php:483
2410
  msgid "Width"
2411
  msgstr "Breed"
2412
 
@@ -2436,230 +2972,58 @@ msgstr ""
2436
  "Instellingen."
2437
 
2438
  # @ fl-builder
2439
- #: includes/row-settings.php:61
2440
- msgid "Background"
2441
- msgstr "Achtergrond"
2442
-
2443
- # @ fl-builder
2444
- #: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
2445
- msgctxt "Background type."
2446
- msgid "None"
2447
- msgstr "Niet"
2448
-
2449
- # @ fl-builder
2450
- #: includes/row-settings.php:69
2451
- msgctxt "Background type."
2452
- msgid "Color"
2453
- msgstr "Kleur"
2454
 
2455
  # @ fl-builder
2456
- #: includes/row-settings.php:70
2457
- msgctxt "Background type."
2458
- msgid "Photo"
2459
- msgstr "Afbeelding"
 
 
 
 
 
 
 
2460
 
2461
  # @ fl-builder
2462
- #: includes/row-settings.php:71
2463
  msgctxt "Background type."
2464
  msgid "Video"
2465
  msgstr "Video"
2466
 
2467
  # @ fl-builder
2468
- #: includes/row-settings.php:73
2469
  msgctxt "Background type."
2470
  msgid "Slideshow"
2471
  msgstr "Diavoorstelling"
2472
 
2473
  # @ fl-builder
2474
- #: includes/row-settings.php:77
2475
  msgctxt "Background type."
2476
  msgid "Parallax"
2477
  msgstr "Parallax"
2478
 
2479
  # @ fl-builder
2480
- #: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
2481
- msgid "Background Photo"
2482
- msgstr "Achtergrond Afbeelding"
2483
-
2484
- # @ fl-builder
2485
- #: includes/row-settings.php:133 includes/row-settings.php:321
2486
- #: modules/callout/callout.php:316 modules/callout/callout.php:332
2487
- #: modules/callout/callout.php:336
2488
- #: modules/content-slider/content-slider.php:335
2489
- #: modules/content-slider/content-slider.php:404
2490
- #: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
2491
- #: modules/photo/photo.php:392
2492
- msgid "Photo"
2493
- msgstr "Afbeelding"
2494
-
2495
- # @ fl-builder
2496
- #: includes/row-settings.php:140
2497
- msgid "Repeat"
2498
- msgstr "Herhaal"
2499
-
2500
- # @ fl-builder
2501
- #: includes/row-settings.php:143
2502
- msgctxt "Background repeat."
2503
- msgid "None"
2504
- msgstr "Niet"
2505
-
2506
- # @ fl-builder
2507
- #: includes/row-settings.php:144
2508
- msgctxt "Background repeat."
2509
- msgid "Tile"
2510
- msgstr "Tegel"
2511
-
2512
- # @ fl-builder
2513
- #: includes/row-settings.php:145
2514
- msgctxt "Background repeat."
2515
- msgid "Horizontal"
2516
- msgstr "Horizontaal"
2517
-
2518
- # @ fl-builder
2519
- #: includes/row-settings.php:146
2520
- msgctxt "Background repeat."
2521
- msgid "Vertical"
2522
- msgstr "Verticaal"
2523
-
2524
- # @ fl-builder
2525
- #: includes/row-settings.php:148
2526
- msgid ""
2527
- "Repeat applies to how the image should display in the row background. "
2528
- "Choosing none will display the image as uploaded. Tile will repeat the image "
2529
- "as many times as needed to fill the row horizontally and vertically. You can "
2530
- "also specify the image to only repeat horizontally or vertically."
2531
- msgstr ""
2532
- "Herhaal geldt hoe de afbeelding in de rij achtergrond moet worden "
2533
- "weergegeven. Indien voor Niet wordt gekozen zal de afbeelding worden "
2534
- "weergegeven zoals geupload. Voor Tegel wordt het beeld zo vaak herhalen als "
2535
- "nodig is om de rij horizontaal en verticaal te vullen. Je kunt de afbeelding "
2536
- "ook alleen horizontaal of verticaal laten herhalen."
2537
-
2538
- # @ fl-builder
2539
- #: includes/row-settings.php:158
2540
- msgid "Left Top"
2541
- msgstr "Links Boven"
2542
-
2543
- # @ fl-builder
2544
- #: includes/row-settings.php:159
2545
- msgid "Left Center"
2546
- msgstr "Links Midden"
2547
-
2548
- # @ fl-builder
2549
- #: includes/row-settings.php:160
2550
- msgid "Left Bottom"
2551
- msgstr "Links Onder"
2552
-
2553
- # @ fl-builder
2554
- #: includes/row-settings.php:161
2555
- msgid "Right Top"
2556
- msgstr "Recht Boven"
2557
-
2558
- # @ fl-builder
2559
- #: includes/row-settings.php:162
2560
- msgid "Right Center"
2561
- msgstr "Rechts Midden"
2562
-
2563
- # @ fl-builder
2564
- #: includes/row-settings.php:163
2565
- msgid "Right Bottom"
2566
- msgstr "Recht Onder"
2567
-
2568
- # @ fl-builder
2569
- #: includes/row-settings.php:164
2570
- msgid "Center Top"
2571
- msgstr "Midden Boven"
2572
-
2573
- # @ fl-builder
2574
- #: includes/row-settings.php:165 modules/button/button.php:218
2575
- #: modules/callout/callout.php:251
2576
- #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
2577
- #: modules/heading/heading.php:90 modules/heading/heading.php:162
2578
- #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
2579
- #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
2580
- msgid "Center"
2581
- msgstr "Gecentreerd"
2582
-
2583
- # @ fl-builder
2584
- #: includes/row-settings.php:166
2585
- msgid "Center Bottom"
2586
- msgstr "Midden Onder"
2587
-
2588
- # @ fl-builder
2589
- #: includes/row-settings.php:168
2590
- msgid "Position will tell the image where it should sit in the row background."
2591
- msgstr ""
2592
- "Met de positie wordt bepaald waar de afbeelding in de rij-achtergrond wordt "
2593
- "geplaatst."
2594
-
2595
- # @ fl-builder
2596
- #: includes/row-settings.php:175
2597
- msgid "Attachment"
2598
- msgstr "Gehechtheid"
2599
-
2600
- # @ fl-builder
2601
- #: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
2602
- msgid "Scroll"
2603
- msgstr "Scroll"
2604
-
2605
- # @ fl-builder
2606
- #: includes/row-settings.php:181
2607
- msgid ""
2608
- "Attachment will specify how the image reacts when scrolling a page. When "
2609
- "scrolling is selected, the image will scroll with page scrolling. This is "
2610
- "the default setting. Fixed will allow the image to scroll within the row "
2611
- "background if fill is selected in the scale setting."
2612
- msgstr ""
2613
- "Gehechtheid geeft aan hoe het beeld reageert tijdens het scrollen van een "
2614
- "pagina. Indien Scrollen is geselecteerd, zal het beeld met de pagina "
2615
- "meescrollen. Dit is de standaardinstelling. Vast zal het beeld in de "
2616
- "achtergrond van de rij achtergrond doen scrollen indien Uitvullen is "
2617
- "geselecteerd in de Schaal setting.."
2618
-
2619
- # @ fl-builder
2620
- #: includes/row-settings.php:188
2621
- msgid "Scale"
2622
- msgstr "Schaal"
2623
-
2624
- # @ fl-builder
2625
- #: includes/row-settings.php:191
2626
- msgctxt "Background scale."
2627
- msgid "None"
2628
- msgstr "Geen"
2629
-
2630
- # @ fl-builder
2631
- #: includes/row-settings.php:192
2632
- msgid "Fit"
2633
- msgstr "Passend"
2634
-
2635
- # @ fl-builder
2636
- #: includes/row-settings.php:193
2637
- msgid "Fill"
2638
- msgstr "Uitvullen"
2639
-
2640
- # @ fl-builder
2641
- #: includes/row-settings.php:195
2642
- msgid ""
2643
- "Scale applies to how the image should display in the row background. You can "
2644
- "select either fill or fit to the row background."
2645
- msgstr ""
2646
- "Schaal geldt hoe de afbeelding in de rij achtergrond moet worden "
2647
- "weergegeven. Je kunt kiezen uit uitvullen of aanpassen aan de rij "
2648
- "achtergrond."
2649
-
2650
- # @ fl-builder
2651
- #: includes/row-settings.php:203
2652
  msgid "Background Video"
2653
  msgstr "Achtergrond Video"
2654
 
2655
  # @ fl-builder
2656
- #: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
2657
  #: modules/video/video.php:19 modules/video/video.php:100
2658
  msgid "Video"
2659
  msgstr "Video"
2660
 
2661
  # @ fl-builder
2662
- #: includes/row-settings.php:208
2663
  msgid ""
2664
  "An HTML5 video to use as the background of this row. Supported types are "
2665
  "MP4, WebM and Ogg."
@@ -2668,37 +3032,37 @@ msgstr ""
2668
  "Ondersteunde types zijn MP4, WebM en Ogg."
2669
 
2670
  # @ fl-builder
2671
- #: includes/row-settings.php:215
2672
  msgid "Fallback Photo"
2673
  msgstr "Terugval Afbeelding"
2674
 
2675
  # @ fl-builder
2676
- #: includes/row-settings.php:216
2677
  msgid "A photo that will be displayed if the video fails to load."
2678
  msgstr ""
2679
  "Een afbeelding die wordt weergegeven als de video niet kan worden geladen."
2680
 
2681
  # @ fl-builder
2682
- #: includes/row-settings.php:224
2683
  msgid "Background Slideshow"
2684
  msgstr "Achtergrond Diavoorstelling"
2685
 
2686
  # @ fl-builder
2687
- #: includes/row-settings.php:228 modules/gallery/gallery.php:234
2688
- #: modules/slideshow/slideshow.php:263
2689
  msgid "Source"
2690
  msgstr "Bron"
2691
 
2692
  # @ fl-builder
2693
- #: includes/row-settings.php:231 modules/gallery/gallery.php:237
2694
- #: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
2695
  #: modules/video/video.php:86
2696
  msgid "Media Library"
2697
  msgstr "Media Bibliotheek"
2698
 
2699
  # @ fl-builder
2700
- #: includes/row-settings.php:234 modules/gallery/gallery.php:240
2701
- #: modules/slideshow/slideshow.php:269
2702
  msgid ""
2703
  "Pull images from the WordPress media library or a gallery on your SmugMug "
2704
  "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
@@ -2710,145 +3074,133 @@ msgstr ""
2710
  "gallery."
2711
 
2712
  # @ fl-builder
2713
- #: includes/row-settings.php:249 modules/gallery/gallery.php:252
2714
- #: modules/slideshow/slideshow.php:281
2715
  msgid "Photos"
2716
  msgstr "Afbeeldingen"
2717
 
2718
  # @ fl-builder
2719
- #: includes/row-settings.php:256 modules/gallery/gallery.php:256
2720
- #: modules/slideshow/slideshow.php:285
2721
  msgid "Feed URL"
2722
  msgstr "Feed URL"
2723
 
2724
  # @ fl-builder
2725
- #: includes/row-settings.php:263 includes/row-settings.php:328
2726
- #: modules/slideshow/slideshow.php:382
2727
  msgid "Speed"
2728
  msgstr "Snelheid"
2729
 
2730
  # @ fl-builder
2731
- #: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
2732
- #: modules/slideshow/slideshow.php:389
2733
  #: modules/testimonials/testimonials.php:99
2734
  msgid "Transition"
2735
  msgstr "Overgang"
2736
 
2737
  # @ fl-builder
2738
- #: includes/row-settings.php:276
2739
  msgctxt "Slideshow transition type."
2740
  msgid "None"
2741
  msgstr "Geen"
2742
 
2743
  # @ fl-builder
2744
- #: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
2745
- #: modules/slideshow/slideshow.php:393
 
 
2746
  #: modules/testimonials/testimonials.php:103
2747
  msgid "Fade"
2748
  msgstr "Vervagen"
2749
 
2750
  # @ fl-builder
2751
- #: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
2752
  msgid "Ken Burns"
2753
  msgstr "Ken Burns"
2754
 
2755
  # @ fl-builder
2756
- #: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
2757
  msgid "Slide Horizontal"
2758
  msgstr "Schuif Horizontaal"
2759
 
2760
  # @ fl-builder
2761
- #: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
2762
  msgid "Slide Vertical"
2763
  msgstr "Schuif Vertikaal"
2764
 
2765
  # @ fl-builder
2766
- #: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
2767
  msgid "Blinds"
2768
  msgstr "Blinds"
2769
 
2770
  # @ fl-builder
2771
- #: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
2772
  msgid "Bars"
2773
  msgstr "Balken"
2774
 
2775
  # @ fl-builder
2776
- #: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
2777
  msgid "Random Bars"
2778
  msgstr "Willekeurige Balken"
2779
 
2780
  # @ fl-builder
2781
- #: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
2782
  msgid "Boxes"
2783
  msgstr "Vakken"
2784
 
2785
  # @ fl-builder
2786
- #: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
2787
  msgid "Random Boxes"
2788
  msgstr "Willekeurige Vakken"
2789
 
2790
  # @ fl-builder
2791
- #: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
2792
  msgid "Boxes Grow"
2793
  msgstr "Groeiende Vakken"
2794
 
2795
  # @ fl-builder
2796
- #: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
2797
- #: modules/slideshow/slideshow.php:407
 
2798
  #: modules/testimonials/testimonials.php:108
2799
  msgid "Transition Speed"
2800
  msgstr "Animatie snelheid"
2801
 
2802
  # @ fl-builder
2803
- #: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
2804
  msgid "Randomize Photos"
2805
  msgstr "Willekeurige Afbeeldingen"
2806
 
2807
  # @ fl-builder
2808
- #: includes/row-settings.php:317
2809
  msgid "Background Parallax"
2810
  msgstr "Achtergrond Parallax"
2811
 
2812
  # @ fl-builder
2813
- #: includes/row-settings.php:331
2814
  msgid "Fast"
2815
  msgstr "Snel"
2816
 
2817
  # @ fl-builder
2818
- #: includes/row-settings.php:332
2819
  msgctxt "Speed."
2820
  msgid "Medium"
2821
  msgstr "Medium"
2822
 
2823
  # @ fl-builder
2824
- #: includes/row-settings.php:333
2825
  msgid "Slow"
2826
  msgstr "Langzaam"
2827
 
2828
  # @ fl-builder
2829
- #: includes/row-settings.php:342
2830
- msgid "Background Overlay"
2831
- msgstr "Achtergrond Overlay"
2832
-
2833
- # @ fl-builder
2834
- #: includes/row-settings.php:346
2835
- msgid "Overlay Color"
2836
- msgstr "Overlay Kleur"
2837
-
2838
- # @ fl-builder
2839
- #: includes/row-settings.php:354
2840
- msgid "Overlay Opacity"
2841
- msgstr "Overlay Dekking"
2842
-
2843
- # @ fl-builder
2844
- #: includes/row-settings.php:595
2845
  msgid "Choose whether to show or hide this row at different device sizes."
2846
  msgstr ""
2847
  "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
2848
  "afmetingen."
2849
 
2850
  # @ fl-builder
2851
- #: includes/row-settings.php:608
2852
  msgid ""
2853
  "A unique ID that will be applied to this row's HTML. Must start with a "
2854
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
@@ -2858,7 +3210,7 @@ msgstr ""
2858
  "getallen bevatten. Geen spaties."
2859
 
2860
  # @ fl-builder
2861
- #: includes/row-settings.php:616
2862
  msgid ""
2863
  "A class that will be applied to this row's HTML. Must start with a letter "
2864
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
@@ -2878,33 +3230,17 @@ msgid "Save"
2878
  msgstr "Opslaan"
2879
 
2880
  # @ fl-builder
2881
- #: includes/template-selector.php:3
2882
  msgid "Layout Templates"
2883
  msgstr "Layout Templates"
2884
 
2885
  # @ fl-builder
2886
- #: includes/template-selector.php:8
2887
- msgid "Home Pages"
2888
- msgstr "Home Pagina's"
2889
-
2890
- # @ fl-builder
2891
- #: includes/template-selector.php:9
2892
- msgid "Content Pages"
2893
- msgstr "Inhoud Pagina's"
2894
-
2895
- # @ fl-builder
2896
- #: includes/template-selector.php:13
2897
  msgid "Your Templates"
2898
  msgstr "Jouw Templates"
2899
 
2900
  # @ fl-builder
2901
- #: includes/template-selector.php:47 includes/template-selector.php:77
2902
- msgctxt "Template name."
2903
- msgid "Blank"
2904
- msgstr "Blanco"
2905
-
2906
- # @ fl-builder
2907
- #: includes/template-selector.php:72
2908
  msgid ""
2909
  "You haven't saved any templates yet! To do so, create a layout and save it "
2910
  "as a template under <strong>Tools &rarr; Save Template</strong>."
@@ -2914,112 +3250,105 @@ msgstr ""
2914
  "Opslaan</strong>."
2915
 
2916
  # @ fl-builder
2917
- #: includes/template-settings.php:14 includes/user-template-settings.php:15
2918
  msgctxt "Template name."
2919
- msgid "Name"
2920
- msgstr "Naam"
2921
-
2922
- #: includes/template-settings.php:18
2923
- msgid "Image Filename"
2924
- msgstr "Afbeelding Bestandsnaam"
2925
-
2926
- #: includes/template-settings.php:19
2927
- msgid ""
2928
- "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
2929
- "templates/\" directory."
2930
- msgstr ""
2931
- "De bestandsnaam van de afbeelding zoals \"thumb.jpg\" dat zich bevind in de "
2932
- "\"img/templates/\" directory."
2933
 
2934
  # @ fl-builder
2935
- #: includes/ui.php:7
 
 
 
 
 
2936
  #, php-format
2937
  msgid "Template: %s"
2938
  msgstr "Template: %s"
2939
 
2940
  # @ fl-builder
2941
- #: includes/ui.php:23
 
 
 
 
 
2942
  msgid "Page Builder Demo"
2943
  msgstr "Pagina Builder Demo"
2944
 
2945
  # @ fl-builder
2946
- #: includes/ui.php:40
2947
  msgid "Buy Now!"
2948
  msgstr "Nu Kopen!"
2949
 
2950
  # @ fl-builder
2951
- #: includes/ui.php:42
2952
  msgid "Upgrade!"
2953
  msgstr "Upgraden!"
2954
 
2955
  # @ fl-builder
2956
- #: includes/ui.php:45
2957
- msgid "Tools"
2958
- msgstr "Gereedschappen"
2959
-
2960
- # @ fl-builder
2961
- #: includes/ui.php:67
2962
  msgid "Row Layouts"
2963
  msgstr "Rij Layouts"
2964
 
2965
  # @ fl-builder
2966
- #: includes/ui.php:71
2967
  msgid "1 Column"
2968
  msgstr "1 Kolom"
2969
 
2970
  # @ fl-builder
2971
- #: includes/ui.php:72
2972
  msgid "2 Columns"
2973
  msgstr "2 Kolommen"
2974
 
2975
  # @ fl-builder
2976
- #: includes/ui.php:73
2977
  msgid "3 Columns"
2978
  msgstr "3 Kolommen"
2979
 
2980
  # @ fl-builder
2981
- #: includes/ui.php:74
2982
  msgid "4 Columns"
2983
  msgstr "4 Kolommen"
2984
 
2985
  # @ fl-builder
2986
- #: includes/ui.php:75
2987
  msgid "5 Columns"
2988
  msgstr "5 Kolommen"
2989
 
2990
  # @ fl-builder
2991
- #: includes/ui.php:76
2992
  msgid "6 Columns"
2993
  msgstr "6 Kolommen"
2994
 
2995
  # @ fl-builder
2996
- #: includes/ui.php:77
2997
  msgid "Left Sidebar"
2998
  msgstr "Linker Zijbalk"
2999
 
3000
  # @ fl-builder
3001
- #: includes/ui.php:78
3002
  msgid "Right Sidebar"
3003
  msgstr "Rechter Zijbalk"
3004
 
3005
  # @ fl-builder
3006
- #: includes/ui.php:79
3007
  msgid "Left &amp; Right Sidebar"
3008
  msgstr "Linker &amp; Rechter Zijbalk"
3009
 
3010
  # @ fl-builder
3011
- #: includes/updater/classes/class-fl-updater.php:107
3012
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3013
  msgstr "<strong>UPDATE NIET BESCHIKBAAR!</strong>"
3014
 
3015
  # @ fl-builder
3016
- #: includes/updater/classes/class-fl-updater.php:109
3017
  msgid "Please subscribe to enable automatic updates for this plugin."
3018
  msgstr ""
3019
  "Gelieve te abonneren om de automatische updates op deze plug-in te schakelen."
3020
 
3021
  # @ fl-builder
3022
- #: includes/updater/classes/class-fl-updater.php:111
3023
  #: includes/updater/includes/form.php:6
3024
  msgid "Subscribe Now"
3025
  msgstr "Nu Abonneren"
@@ -3074,6 +3403,12 @@ msgstr ""
3074
  "Sla de huidige layout als een template op die onder <strong>Templates → Je "
3075
  "Sjablonen</strong> kan worden hergebruikt."
3076
 
 
 
 
 
 
 
3077
  # @ fl-builder
3078
  #: modules/accordion/accordion.php:14
3079
  msgid "Accordion"
@@ -3152,17 +3487,22 @@ msgid "Label"
3152
  msgstr "Label"
3153
 
3154
  # @ fl-builder
3155
- #: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
3156
- #: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:234
3157
- #: modules/tabs/tabs.php:89
 
 
 
 
 
3158
  msgid "Content"
3159
  msgstr "Inhoud"
3160
 
3161
  # @ fl-builder
3162
- #: modules/button/button.php:14 modules/callout/callout.php:479
3163
- #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
3164
  #: modules/pricing-table/pricing-table.php:129
3165
- #: modules/subscribe-form/subscribe-form.php:160
3166
  msgid "Button"
3167
  msgstr "Button"
3168
 
@@ -3172,169 +3512,172 @@ msgid "A simple call to action button."
3172
  msgstr "Een eenvoudige Call-to-Action knop."
3173
 
3174
  # @ fl-builder
3175
- #: modules/button/button.php:67 modules/cta/cta.php:222
3176
  msgid "Click Here"
3177
  msgstr "Klik Hier"
3178
 
3179
  # @ fl-builder
3180
- #: modules/button/button.php:75 modules/callout/callout.php:317
3181
- #: modules/callout/callout.php:365 modules/callout/callout.php:369
3182
- #: modules/cta/cta.php:230 modules/icon-group/icon-group.php:34
3183
  #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
3184
  #: modules/icon/icon.php:34
3185
  msgid "Icon"
3186
  msgstr "Icoon"
3187
 
3188
  # @ fl-builder
3189
- #: modules/button/button.php:81 modules/button/button.php:85
3190
- #: modules/callout/callout.php:445 modules/callout/callout.php:449
3191
- #: modules/content-slider/content-slider.php:573
3192
- #: modules/content-slider/content-slider.php:577
3193
- #: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3194
  #: modules/heading/heading.php:43 modules/heading/heading.php:47
3195
  #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
3196
- #: modules/slideshow/slideshow.php:343
3197
  msgid "Link"
3198
  msgstr "Link"
3199
 
3200
  # @ fl-builder
3201
- #: modules/button/button.php:86
3202
  msgid "http://www.example.com"
3203
  msgstr "http://www.voorbeeld.com/"
3204
 
3205
  # @ fl-builder
3206
- #: modules/button/button.php:93 modules/callout/callout.php:457
3207
- #: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
3208
  #: modules/heading/heading.php:54 modules/icon/icon.php:50
3209
- #: modules/photo/photo.php:478
3210
  msgid "Link Target"
3211
  msgstr "Link Doel"
3212
 
3213
  # @ fl-builder
3214
- #: modules/button/button.php:96 modules/callout/callout.php:460
3215
- #: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
3216
  #: modules/heading/heading.php:57 modules/icon/icon.php:53
3217
- #: modules/photo/photo.php:481
3218
  msgid "Same Window"
3219
  msgstr "Zelfde Venster"
3220
 
3221
  # @ fl-builder
3222
- #: modules/button/button.php:97 modules/callout/callout.php:461
3223
- #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
3224
  #: modules/heading/heading.php:58 modules/icon/icon.php:54
3225
- #: modules/photo/photo.php:482
3226
  msgid "New Window"
3227
  msgstr "Nieuw Venster"
3228
 
3229
  # @ fl-builder
3230
- #: modules/button/button.php:111 modules/cta/cta.php:187
3231
- #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
3232
- #: modules/icon/icon.php:78
3233
- msgid "Colors"
3234
- msgstr "Kleuren"
3235
-
3236
- # @ fl-builder
3237
- #: modules/button/button.php:121 modules/callout/callout.php:409
3238
- #: modules/callout/callout.php:514
3239
- #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
3240
  #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
3241
- #: modules/subscribe-form/subscribe-form.php:188
3242
  msgid "Background Hover Color"
3243
  msgstr "Achtergrond-hover Kleur"
3244
 
3245
  # @ fl-builder
3246
- #: modules/button/button.php:130 modules/callout/callout.php:523
3247
- #: modules/content-slider/content-slider.php:528
3248
- #: modules/content-slider/content-slider.php:641
3249
- #: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
3250
- #: modules/cta/cta.php:279 modules/heading/heading.php:77
3251
- #: modules/subscribe-form/subscribe-form.php:197
3252
- msgid "Text Color"
3253
- msgstr "Tekst kleur"
3254
-
3255
- # @ fl-builder
3256
- #: modules/button/button.php:136 modules/callout/callout.php:529
3257
- #: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
3258
- #: modules/subscribe-form/subscribe-form.php:203
3259
  msgid "Text Hover Color"
3260
  msgstr "Tekst-hover kleur"
3261
 
3262
  # @ fl-builder
3263
- #: modules/button/button.php:153 modules/callout/callout.php:546
3264
- #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
3265
- #: modules/subscribe-form/subscribe-form.php:220
3266
  msgid "Flat"
3267
  msgstr "Plat"
3268
 
3269
  # @ fl-builder
3270
- #: modules/button/button.php:154 modules/callout/callout.php:417
3271
- #: modules/callout/callout.php:547
3272
- #: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
3273
  #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3274
- #: modules/subscribe-form/subscribe-form.php:221
3275
  msgid "Gradient"
3276
  msgstr "Verlopend"
3277
 
3278
  # @ fl-builder
3279
- #: modules/button/button.php:155 modules/callout/callout.php:548
3280
- #: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
3281
- #: modules/subscribe-form/subscribe-form.php:222
3282
  msgid "Transparent"
3283
  msgstr "Transparant"
3284
 
3285
  # @ fl-builder
3286
- #: modules/button/button.php:165 modules/callout/callout.php:558
3287
- #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3288
  #: modules/pricing-table/pricing-table.php:67
3289
- #: modules/subscribe-form/subscribe-form.php:232
3290
  msgid "Border Size"
3291
  msgstr "Rand Breedte"
3292
 
3293
  # @ fl-builder
3294
- #: modules/button/button.php:174 modules/callout/callout.php:567
3295
- #: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
3296
- #: modules/cta/cta.php:323 modules/subscribe-form/subscribe-form.php:241
3297
  msgid "Background Opacity"
3298
  msgstr "Achtergrond Dichtheid"
3299
 
3300
  # @ fl-builder
3301
- #: modules/button/button.php:184 modules/callout/callout.php:244
3302
- #: modules/cta/cta.php:104 modules/heading/heading.php:82
3303
  #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3304
- #: modules/subscribe-form/subscribe-form.php:94
3305
  msgid "Structure"
3306
  msgstr "Structuur"
3307
 
3308
  # @ fl-builder
3309
- #: modules/button/button.php:191 modules/callout/callout.php:584
3310
  msgctxt "Width."
3311
  msgid "Auto"
3312
  msgstr "Auto"
3313
 
3314
  # @ fl-builder
3315
- #: modules/button/button.php:207
3316
  msgid "Custom Width"
3317
  msgstr "Aangepaste Breedte"
3318
 
3319
  # @ fl-builder
3320
- #: modules/button/button.php:215 modules/cta/cta.php:122
3321
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
3322
  #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3323
- #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
3324
  msgid "Alignment"
3325
  msgstr "Uitlijning"
3326
 
3327
  # @ fl-builder
3328
- #: modules/button/button.php:225 modules/callout/callout.php:590
3329
- #: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
3330
  #: modules/heading/heading.php:114 modules/heading/heading.php:171
3331
- #: modules/subscribe-form/subscribe-form.php:255
3332
  msgid "Font Size"
3333
  msgstr "Tekengrootte"
3334
 
3335
  # @ fl-builder
3336
- #: modules/button/button.php:241 modules/callout/callout.php:606
3337
- #: modules/cta/cta.php:353 modules/subscribe-form/subscribe-form.php:271
3338
  msgid "Round Corners"
3339
  msgstr "Afronden Hoeken"
3340
 
@@ -3349,158 +3692,174 @@ msgid "A heading and snippet of text with an optional link, icon and image."
3349
  msgstr "Een kop en tekstfragment met een optionele link, icoon en afbeelding."
3350
 
3351
  # @ fl-builder
3352
- #: modules/callout/callout.php:216
3353
- #: modules/content-slider/content-slider.php:413
3354
- #: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
3355
  #: modules/heading/heading.php:14 modules/heading/heading.php:33
 
3356
  #: modules/testimonials/testimonials.php:56
3357
  #: modules/testimonials/testimonials.php:61
3358
  msgid "Heading"
3359
  msgstr "Kopregel"
3360
 
3361
  # @ fl-builder
3362
- #: modules/callout/callout.php:248
3363
  msgid "Overall Alignment"
3364
  msgstr "Algemene Uitlijning"
3365
 
3366
  # @ fl-builder
3367
- #: modules/callout/callout.php:255
3368
  msgid "The alignment that will apply to all elements within the callout."
3369
  msgstr ""
3370
  "De uitlijning die zal gelden voor alle elementen binnen het bijschrift."
3371
 
3372
  # @ fl-builder
3373
- #: modules/callout/callout.php:263 modules/cta/cta.php:147
3374
  msgid "Heading Structure"
3375
  msgstr "Kopregel Structuur"
3376
 
3377
  # @ fl-builder
3378
- #: modules/callout/callout.php:267
3379
- #: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
 
3380
  msgid "Heading Tag"
3381
  msgstr "Kopregel Tag"
3382
 
3383
  # @ fl-builder
3384
- #: modules/callout/callout.php:280
3385
- #: modules/content-slider/content-slider.php:445
3386
- #: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
 
 
3387
  #: modules/testimonials/testimonials.php:69
3388
  msgid "Heading Size"
3389
  msgstr "Kopregel Grootte"
3390
 
3391
  # @ fl-builder
3392
- #: modules/callout/callout.php:294 modules/cta/cta.php:178
3393
  msgid "Heading Custom Size"
3394
  msgstr "Kopregel Aangepaste Grootte"
3395
 
3396
  # @ fl-builder
3397
- #: modules/callout/callout.php:312
 
 
 
 
 
 
3398
  msgid "Image Type"
3399
  msgstr "Afbeelding Type"
3400
 
3401
  # @ fl-builder
3402
- #: modules/callout/callout.php:315
3403
  msgctxt "Image type."
3404
  msgid "None"
3405
  msgstr "Geen"
3406
 
3407
  # @ fl-builder
3408
- #: modules/callout/callout.php:340 modules/photo/photo.php:401
3409
- #: modules/slideshow/slideshow.php:312
3410
  msgid "Crop"
3411
  msgstr "Pas aan"
3412
 
3413
  # @ fl-builder
3414
- #: modules/callout/callout.php:343
3415
  msgctxt "Crop"
3416
  msgid "None"
3417
  msgstr "Geen"
3418
 
3419
  # @ fl-builder
3420
- #: modules/callout/callout.php:344 modules/photo/photo.php:405
 
3421
  msgid "Landscape"
3422
  msgstr "Landschap"
3423
 
3424
  # @ fl-builder
3425
- #: modules/callout/callout.php:345 modules/photo/photo.php:406
 
3426
  msgid "Panorama"
3427
  msgstr "Panorama"
3428
 
3429
  # @ fl-builder
3430
- #: modules/callout/callout.php:346 modules/photo/photo.php:407
 
3431
  msgid "Portrait"
3432
  msgstr "Portret"
3433
 
3434
  # @ fl-builder
3435
- #: modules/callout/callout.php:347 modules/photo/photo.php:408
 
3436
  msgid "Square"
3437
  msgstr "Vierkant"
3438
 
3439
  # @ fl-builder
3440
- #: modules/callout/callout.php:348 modules/photo/photo.php:409
 
3441
  msgid "Circle"
3442
  msgstr "Cirkel"
3443
 
3444
  # @ fl-builder
3445
- #: modules/callout/callout.php:356 modules/callout/callout.php:376
3446
  msgid "Above Heading"
3447
  msgstr "Boven Kopregel"
3448
 
3449
  # @ fl-builder
3450
- #: modules/callout/callout.php:357 modules/callout/callout.php:377
3451
  msgid "Below Heading"
3452
  msgstr "Onder Kopregel"
3453
 
3454
  # @ fl-builder
3455
- #: modules/callout/callout.php:358 modules/callout/callout.php:380
3456
  msgid "Left of Text and Heading"
3457
  msgstr "Links van Tekst en Kopregel"
3458
 
3459
  # @ fl-builder
3460
- #: modules/callout/callout.php:359 modules/callout/callout.php:381
3461
  msgid "Right of Text and Heading"
3462
  msgstr "Rechts van Tekst en Kopregel"
3463
 
3464
  # @ fl-builder
3465
- #: modules/callout/callout.php:378
3466
  msgid "Left of Heading"
3467
  msgstr "Links van Kopregel"
3468
 
3469
  # @ fl-builder
3470
- #: modules/callout/callout.php:379
3471
  msgid "Right of Heading"
3472
  msgstr "Rechts van Kopregel"
3473
 
3474
  # @ fl-builder
3475
- #: modules/callout/callout.php:387
3476
  msgid "Icon Colors"
3477
  msgstr "Icoon Kleuren"
3478
 
3479
  # @ fl-builder
3480
- #: modules/callout/callout.php:396 modules/icon-group/icon-group.php:56
3481
  #: modules/icon/icon.php:87
3482
  msgid "Hover Color"
3483
  msgstr "Hover Kleur"
3484
 
3485
  # @ fl-builder
3486
- #: modules/callout/callout.php:427
3487
  msgid "Icon Structure"
3488
  msgstr "Icoon Structuur"
3489
 
3490
  # @ fl-builder
3491
- #: modules/callout/callout.php:431 modules/icon-group/icon-group.php:91
3492
- #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
 
3493
  msgid "Size"
3494
  msgstr "Grootte"
3495
 
3496
  # @ fl-builder
3497
- #: modules/callout/callout.php:442
3498
- #: modules/content-slider/content-slider.php:570
3499
  msgid "Call To Action"
3500
  msgstr "Call-to-Action"
3501
 
3502
  # @ fl-builder
3503
- #: modules/callout/callout.php:450
3504
  msgid ""
3505
  "The link applies to the entire module. If choosing a call to action type "
3506
  "below, this link will also be used for the text or button."
@@ -3510,48 +3869,60 @@ msgstr ""
3510
  "gebruikt worden."
3511
 
3512
  # @ fl-builder
3513
- #: modules/callout/callout.php:470
3514
- #: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
3515
  msgid "Call to Action"
3516
  msgstr "Call-to-Action"
3517
 
3518
  # @ fl-builder
3519
- #: modules/callout/callout.php:477
3520
- #: modules/content-slider/content-slider.php:599
3521
  msgctxt "Call to action."
3522
  msgid "None"
3523
  msgstr "Geen"
3524
 
3525
  # @ fl-builder
3526
- #: modules/callout/callout.php:498
3527
- #: modules/content-slider/content-slider.php:620
3528
- #: modules/subscribe-form/subscribe-form.php:172
 
 
 
 
 
 
3529
  msgid "Button Icon"
3530
  msgstr "Button Icoon"
3531
 
3532
  # @ fl-builder
3533
- #: modules/callout/callout.php:504
3534
- #: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
3535
- #: modules/subscribe-form/subscribe-form.php:178
 
 
 
 
 
 
3536
  msgid "Button Colors"
3537
  msgstr "Button Kleuren"
3538
 
3539
  # @ fl-builder
3540
- #: modules/callout/callout.php:539
3541
- #: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
3542
- #: modules/subscribe-form/subscribe-form.php:213
3543
  msgid "Button Style"
3544
  msgstr "Button Stijl"
3545
 
3546
  # @ fl-builder
3547
- #: modules/callout/callout.php:577
3548
- #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
3549
- #: modules/subscribe-form/subscribe-form.php:251
3550
  msgid "Button Structure"
3551
  msgstr "Button Structuur"
3552
 
3553
  # @ fl-builder
3554
- #: modules/callout/callout.php:581
3555
  msgid "Button Width"
3556
  msgstr "Button Breedte"
3557
 
@@ -3590,7 +3961,7 @@ msgid "The contact form will send to this e-mail"
3590
  msgstr "Het contactformulier zal naar dit e-mailadres sturen"
3591
 
3592
  #: modules/contact-form/contact-form.php:75
3593
- #: modules/subscribe-form/subscribe-form.php:107
3594
  msgid "Name Field"
3595
  msgstr "Naamveld"
3596
 
@@ -3599,10 +3970,21 @@ msgstr "Naamveld"
3599
  #: modules/contact-form/contact-form.php:87
3600
  #: modules/contact-form/contact-form.php:96
3601
  #: modules/contact-form/contact-form.php:105
3602
- #: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
3603
- #: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
3604
- #: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:220
3605
- #: modules/subscribe-form/subscribe-form.php:110
 
 
 
 
 
 
 
 
 
 
 
3606
  msgid "Show"
3607
  msgstr "Toon"
3608
 
@@ -3611,10 +3993,21 @@ msgstr "Toon"
3611
  #: modules/contact-form/contact-form.php:88
3612
  #: modules/contact-form/contact-form.php:97
3613
  #: modules/contact-form/contact-form.php:106
3614
- #: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
3615
- #: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
3616
- #: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:221
3617
- #: modules/subscribe-form/subscribe-form.php:111
 
 
 
 
 
 
 
 
 
 
 
3618
  msgid "Hide"
3619
  msgstr "Verberg"
3620
 
@@ -3655,11 +4048,6 @@ msgstr "Onderwerp"
3655
  msgid "Please enter a subject."
3656
  msgstr "Type hier het onderwerp"
3657
 
3658
- # @ fl-builder
3659
- #: modules/contact-form/includes/frontend.php:21
3660
- msgid "Email"
3661
- msgstr "E-mail"
3662
-
3663
  # @ fl-builder
3664
  #: modules/contact-form/includes/frontend.php:22
3665
  msgid "Please enter a valid email."
@@ -3720,13 +4108,14 @@ msgid "Displays multiple slides with an optional heading and call to action."
3720
  msgstr "Geeft meerdere dia&#39;s met een optionele kopregel en call-to-action."
3721
 
3722
  # @ fl-builder
3723
- #: modules/content-slider/content-slider.php:197 modules/map/map.php:41
3724
- #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
 
3725
  msgid "Height"
3726
  msgstr "Hoogte"
3727
 
3728
  # @ fl-builder
3729
- #: modules/content-slider/content-slider.php:202
3730
  msgid ""
3731
  "This setting is the minimum height of the content slider. Content will "
3732
  "expand the height automatically."
@@ -3735,69 +4124,75 @@ msgstr ""
3735
  "hoogte automatisch uitbreiden."
3736
 
3737
  # @ fl-builder
3738
- #: modules/content-slider/content-slider.php:206
3739
- #: modules/slideshow/slideshow.php:373
 
3740
  #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
3741
  msgid "Auto Play"
3742
  msgstr "Autostart"
3743
 
3744
  # @ fl-builder
3745
- #: modules/content-slider/content-slider.php:220
3746
  msgid "Show Play/Pause"
3747
  msgstr "Toon Play/Pause"
3748
 
3749
  # @ fl-builder
3750
- #: modules/content-slider/content-slider.php:240
3751
  #: modules/testimonials/testimonials.php:102
3752
  msgctxt "Transition type."
3753
  msgid "Slide"
3754
  msgstr "Schuif"
3755
 
3756
  # @ fl-builder
3757
- #: modules/content-slider/content-slider.php:254
 
 
3758
  #: modules/testimonials/testimonials.php:121
3759
  msgid "Show Arrows"
3760
  msgstr "Toon Pijlen:"
3761
 
3762
  # @ fl-builder
3763
- #: modules/content-slider/content-slider.php:263
 
 
3764
  #: modules/testimonials/testimonials.php:151
3765
  msgid "Show Dots"
3766
  msgstr "Toon Stippen"
3767
 
3768
  # @ fl-builder
3769
- #: modules/content-slider/content-slider.php:277
3770
  msgid "Max Content Width"
3771
  msgstr "Max Inhoud Breedte"
3772
 
3773
  # @ fl-builder
3774
- #: modules/content-slider/content-slider.php:282
3775
  msgid "The max width that the content area will be within your slides."
3776
  msgstr ""
3777
  "De maximale breedte die het inhoud gebied zal worden binnen je dia&#39;s."
3778
 
3779
  # @ fl-builder
3780
- #: modules/content-slider/content-slider.php:289
3781
  msgid "Slides"
3782
  msgstr "Dia's"
3783
 
3784
  # @ fl-builder
3785
- #: modules/content-slider/content-slider.php:296
 
3786
  msgid "Slide"
3787
  msgstr "Dia"
3788
 
3789
  # @ fl-builder
3790
- #: modules/content-slider/content-slider.php:311
3791
  msgid "Slide Settings"
3792
  msgstr "Dia Instellingen"
3793
 
3794
  # @ fl-builder
3795
- #: modules/content-slider/content-slider.php:321
3796
  msgid "Slide Label"
3797
  msgstr "Dia Label"
3798
 
3799
  # @ fl-builder
3800
- #: modules/content-slider/content-slider.php:322
3801
  msgid ""
3802
  "A label to identify this slide on the Slides tab of the Content Slider "
3803
  "settings."
@@ -3806,27 +4201,27 @@ msgstr ""
3806
  "Content Slider instellingen."
3807
 
3808
  # @ fl-builder
3809
- #: modules/content-slider/content-slider.php:327
3810
  msgid "Background Layout"
3811
  msgstr "Achtergrond Layout"
3812
 
3813
  # @ fl-builder
3814
- #: modules/content-slider/content-slider.php:333
3815
  msgid "This setting is for the entire background of your slide."
3816
  msgstr "Deze instelling is voor de volledige achtergrond van je dia."
3817
 
3818
  # @ fl-builder
3819
- #: modules/content-slider/content-slider.php:368
3820
  msgid "Background Video Code"
3821
  msgstr "Achtergrond Video Code"
3822
 
3823
  # @ fl-builder
3824
- #: modules/content-slider/content-slider.php:374
3825
  msgid "Content Layout"
3826
  msgstr "Inhoud Layout"
3827
 
3828
  # @ fl-builder
3829
- #: modules/content-slider/content-slider.php:380
3830
  msgid ""
3831
  "This allows you to add content over or in addition to the background "
3832
  "selection above. The location of the content layout can be selected in the "
@@ -3837,33 +4232,33 @@ msgstr ""
3837
  "op het stijl tabblad."
3838
 
3839
  # @ fl-builder
3840
- #: modules/content-slider/content-slider.php:383
3841
  msgid "Text &amp; Photo"
3842
  msgstr "Tekst &amp Afbeelding"
3843
 
3844
  # @ fl-builder
3845
- #: modules/content-slider/content-slider.php:384
3846
  msgid "Text &amp; Video"
3847
  msgstr "Tekst &amp; Video"
3848
 
3849
  # @ fl-builder
3850
- #: modules/content-slider/content-slider.php:385
3851
  msgctxt "Content type."
3852
  msgid "None"
3853
  msgstr "Geen"
3854
 
3855
  # @ fl-builder
3856
- #: modules/content-slider/content-slider.php:408 modules/video/video.php:132
3857
  msgid "Video Embed Code"
3858
  msgstr "Video Embed Code"
3859
 
3860
  # @ fl-builder
3861
- #: modules/content-slider/content-slider.php:468
3862
  msgid "Text Position"
3863
  msgstr "Tekst Positie"
3864
 
3865
  # @ fl-builder
3866
- #: modules/content-slider/content-slider.php:474
3867
  msgid ""
3868
  "The position will move the content layout selections left, right or center "
3869
  "over the background of the slide."
@@ -3872,43 +4267,47 @@ msgstr ""
3872
  "over de achtergrond van de dia verplaatsen."
3873
 
3874
  # @ fl-builder
3875
- #: modules/content-slider/content-slider.php:491
3876
  msgid "Top Margin"
3877
  msgstr "bovenmarge"
3878
 
3879
  # @ fl-builder
3880
- #: modules/content-slider/content-slider.php:499
3881
  msgid "Bottom Margin"
3882
  msgstr "ondermarge"
3883
 
3884
  # @ fl-builder
3885
- #: modules/content-slider/content-slider.php:507
3886
  msgid "Left Margin"
3887
- msgstr "Linker Marge"
3888
 
3889
  # @ fl-builder
3890
- #: modules/content-slider/content-slider.php:515
3891
  msgid "Right Margin"
3892
- msgstr "Rechter Marge"
3893
 
3894
  # @ fl-builder
3895
- #: modules/content-slider/content-slider.php:524
3896
  msgid "Text Colors"
3897
- msgstr "Tekst Kleuren"
3898
 
3899
  # @ fl-builder
3900
- #: modules/content-slider/content-slider.php:534
3901
  msgid "Text Shadow"
3902
- msgstr "Tekst Schaduw"
3903
 
3904
  # @ fl-builder
3905
- #: modules/content-slider/content-slider.php:543
3906
- #: modules/content-slider/content-slider.php:760
 
 
3907
  msgid "Text Background Color"
3908
- msgstr "Tekst Achtergrond Kleur"
3909
 
3910
  # @ fl-builder
3911
- #: modules/content-slider/content-slider.php:544
 
 
3912
  msgid ""
3913
  "The color applies to the overlay behind text over the background selections."
3914
  msgstr ""
@@ -3916,17 +4315,21 @@ msgstr ""
3916
  "selecties."
3917
 
3918
  # @ fl-builder
3919
- #: modules/content-slider/content-slider.php:549
 
 
3920
  msgid "Text Background Opacity"
3921
- msgstr "Tekst Achtergrond Dichtheid"
3922
 
3923
  # @ fl-builder
3924
- #: modules/content-slider/content-slider.php:557
 
3925
  msgid "Text Background Height"
3926
- msgstr "Tekst Achtergrond Hoogte"
3927
 
3928
  # @ fl-builder
3929
- #: modules/content-slider/content-slider.php:559
 
3930
  msgid ""
3931
  "Auto will allow the overlay to fit however long the text content is. 100% "
3932
  "will fit the overlay to the top and bottom of the slide."
@@ -3936,39 +4339,40 @@ msgstr ""
3936
  "dia reikt."
3937
 
3938
  # @ fl-builder
3939
- #: modules/content-slider/content-slider.php:561
 
3940
  msgctxt "Background height."
3941
  msgid "Auto"
3942
  msgstr "Auto"
3943
 
3944
  # @ fl-builder
3945
- #: modules/content-slider/content-slider.php:578
3946
  msgid ""
3947
  "The link applies to the entire slide. If choosing a call to action type "
3948
  "below, this link will also be used for the text or button."
3949
  msgstr ""
3950
  "De link heeft betrekking op de gehele dia. Indien je kiest voor een "
3951
- "hieronderstaand call-to-action type, zal de link worden gebruikt voor de "
3952
  "tekst of button."
3953
 
3954
  # @ fl-builder
3955
- #: modules/content-slider/content-slider.php:711
3956
  msgid "Border Radius"
3957
  msgstr "Rand radius"
3958
 
3959
  # @ fl-builder
3960
- #: modules/content-slider/content-slider.php:722
3961
  msgctxt "Module settings form tab. Display on mobile devices."
3962
  msgid "Mobile"
3963
  msgstr "Mobiel"
3964
 
3965
  # @ fl-builder
3966
- #: modules/content-slider/content-slider.php:725
3967
  msgid "Mobile Photo"
3968
- msgstr "Mobiele Afbeelding"
3969
 
3970
  # @ fl-builder
3971
- #: modules/content-slider/content-slider.php:731
3972
  msgid ""
3973
  "You can choose a different photo that the slide will change to on mobile "
3974
  "devices or no photo if desired."
@@ -3977,24 +4381,24 @@ msgstr ""
3977
  "apparaat of kies ervoor geen afbeelding weer te geven."
3978
 
3979
  # @ fl-builder
3980
- #: modules/content-slider/content-slider.php:733
3981
  msgid "Use Main Photo"
3982
- msgstr "Selecteer Belangrijkste Afbeelding"
3983
 
3984
  # @ fl-builder
3985
- #: modules/content-slider/content-slider.php:734
3986
  msgid "Choose Another Photo"
3987
- msgstr "Selecteer Een Andere Afbeelding"
3988
 
3989
  # @ fl-builder
3990
- #: modules/content-slider/content-slider.php:735
3991
  msgid "No Photo"
3992
- msgstr "Geen Afbeelding"
3993
 
3994
  # @ fl-builder
3995
- #: modules/content-slider/content-slider.php:750
3996
  msgid "Mobile Text Colors"
3997
- msgstr "Mobiele Tekst Kleuren"
3998
 
3999
  # @ fl-builder
4000
  #: modules/cta/cta.php:15
@@ -4002,46 +4406,49 @@ msgid "Display a heading, subheading and a button."
4002
  msgstr "Geef een kopregel, subregel en een button."
4003
 
4004
  # @ fl-builder
4005
- #: modules/cta/cta.php:75
4006
  msgid "Ready to find out more?"
4007
  msgstr "Klaar om meer te ontdekken?"
4008
 
4009
  # @ fl-builder
4010
- #: modules/cta/cta.php:90
4011
  msgid "Drop us a line today for a free quote!"
4012
  msgstr "Bel ons vandaag nog voor een vrijblijvende offerte!"
4013
 
4014
  # @ fl-builder
4015
- #: modules/cta/cta.php:108 modules/gallery/gallery.php:220
4016
- #: modules/post-grid/post-grid.php:44
4017
- #: modules/subscribe-form/subscribe-form.php:98 modules/tabs/tabs.php:52
 
 
4018
  #: modules/testimonials/testimonials.php:37
4019
  #: modules/woocommerce/woocommerce.php:57
4020
  msgid "Layout"
4021
  msgstr "Weergave"
4022
 
4023
  # @ fl-builder
4024
- #: modules/cta/cta.php:111 modules/subscribe-form/subscribe-form.php:102
4025
  msgid "Inline"
4026
  msgstr "Inline"
4027
 
4028
  # @ fl-builder
4029
- #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:101
4030
  msgid "Stacked"
4031
  msgstr "Gestapeld"
4032
 
4033
  # @ fl-builder
4034
- #: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
4035
  msgid "Spacing"
4036
  msgstr "Tussenruimte"
4037
 
4038
  # @ fl-builder
4039
- #: modules/cta/cta.php:236
4040
  msgid "Button Link"
4041
  msgstr "Knop Link"
4042
 
4043
  # @ fl-builder
4044
- #: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
 
4045
  msgid "Gallery"
4046
  msgstr "Galerij"
4047
 
@@ -4051,66 +4458,66 @@ msgid "Display multiple photos in a gallery view."
4051
  msgstr "Weergave van meerdere afbeeldingen in een fotogalerie."
4052
 
4053
  # @ fl-builder
4054
- #: modules/gallery/gallery.php:223
4055
  msgid "Collage"
4056
  msgstr "Collage"
4057
 
4058
  # @ fl-builder
4059
- #: modules/gallery/gallery.php:224
4060
  msgctxt "Gallery layout: thumbnails."
4061
  msgid "Thumbs"
4062
  msgstr "Miniaturen"
4063
 
4064
  # @ fl-builder
4065
- #: modules/gallery/gallery.php:260
4066
  msgid "Photo Size"
4067
  msgstr "Afbeelding Formaat"
4068
 
4069
  # @ fl-builder
4070
- #: modules/gallery/gallery.php:263
4071
  msgctxt "Photo size."
4072
  msgid "Small"
4073
  msgstr "Klein"
4074
 
4075
  # @ fl-builder
4076
- #: modules/gallery/gallery.php:264
4077
  msgctxt "Photo size."
4078
  msgid "Medium"
4079
  msgstr "Medium"
4080
 
4081
  # @ fl-builder
4082
- #: modules/gallery/gallery.php:265
4083
  msgctxt "Photo size."
4084
  msgid "Large"
4085
  msgstr "Groot"
4086
 
4087
  # @ fl-builder
4088
- #: modules/gallery/gallery.php:270
4089
  msgid "Photo Spacing"
4090
- msgstr "Afstand tussen Afbeeldingen"
4091
 
4092
  # @ fl-builder
4093
- #: modules/gallery/gallery.php:278
4094
  msgid "Show Captions"
4095
- msgstr "Toon Bijschriften"
4096
 
4097
  # @ fl-builder
4098
- #: modules/gallery/gallery.php:281 modules/photo/photo.php:432
4099
  msgid "Never"
4100
  msgstr "Nooit"
4101
 
4102
  # @ fl-builder
4103
- #: modules/gallery/gallery.php:282 modules/photo/photo.php:433
4104
  msgid "On Hover"
4105
- msgstr "Tijdens Hover"
4106
 
4107
  # @ fl-builder
4108
- #: modules/gallery/gallery.php:283 modules/photo/photo.php:434
4109
  msgid "Below Photo"
4110
- msgstr "Onder Afbeelding"
4111
 
4112
  # @ fl-builder
4113
- #: modules/gallery/gallery.php:285
4114
  msgid ""
4115
  "The caption pulls from whatever text you put in the caption area in the "
4116
  "media manager for each image. The caption is also pulled directly from "
@@ -4121,25 +4528,25 @@ msgstr ""
4121
  "wordt ook direct gehaald van SmugMug als je bijschriften in je galerij hebt."
4122
 
4123
  # @ fl-builder
4124
- #: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
4125
  msgid "Click Action"
4126
- msgstr "Muisklik Actie"
4127
 
4128
  # @ fl-builder
4129
- #: modules/gallery/gallery.php:292
4130
  msgctxt "Click action."
4131
  msgid "None"
4132
  msgstr "Geen"
4133
 
4134
  # @ fl-builder
4135
- #: modules/gallery/gallery.php:293 modules/photo/photo.php:452
4136
  msgid "Lightbox"
4137
  msgstr "Lightbox"
4138
 
4139
  # @ fl-builder
4140
- #: modules/gallery/gallery.php:294
4141
  msgid "Photo Link"
4142
- msgstr "Afbeelding Link"
4143
 
4144
  # @ fl-builder
4145
  #: modules/heading/heading.php:15
@@ -4149,22 +4556,22 @@ msgstr "Een titel/pagina kop weergeven"
4149
  # @ fl-builder
4150
  #: modules/heading/heading.php:101
4151
  msgid "HTML Tag"
4152
- msgstr "HTML Tag"
4153
 
4154
  # @ fl-builder
4155
  #: modules/heading/heading.php:128 modules/heading/heading.php:188
4156
  msgid "Custom Font Size"
4157
- msgstr "Aangepaste Tekengrootte"
4158
 
4159
  # @ fl-builder
4160
  #: modules/heading/heading.php:137
4161
  msgid "Mobile Structure"
4162
- msgstr "Mobiele Structuur"
4163
 
4164
  # @ fl-builder
4165
  #: modules/heading/heading.php:158
4166
  msgid "Custom Alignment"
4167
- msgstr "Aangepaste Uitlijning"
4168
 
4169
  # @ fl-builder
4170
  #: modules/html/html.php:14
@@ -4179,7 +4586,7 @@ msgstr "Ruwe HTML-code weergeven."
4179
  # @ fl-builder
4180
  #: modules/icon-group/icon-group.php:14
4181
  msgid "Icon Group"
4182
- msgstr "Icoon Groep"
4183
 
4184
  # @ fl-builder
4185
  #: modules/icon-group/icon-group.php:15
@@ -4189,7 +4596,7 @@ msgstr "Toon een groep gelinkte Font Awesome iconen."
4189
  # @ fl-builder
4190
  #: modules/icon-group/icon-group.php:125
4191
  msgid "Add Icon"
4192
- msgstr "Icoon Toevoegen"
4193
 
4194
  # @ fl-builder
4195
  #: modules/icon/icon.php:15
@@ -4204,7 +4611,7 @@ msgstr "Kaart"
4204
  # @ fl-builder
4205
  #: modules/map/map.php:15
4206
  msgid "Display a Google map."
4207
- msgstr "Toon een Google map."
4208
 
4209
  # @ fl-builder
4210
  #: modules/map/map.php:33
@@ -4214,7 +4621,7 @@ msgstr "Adres"
4214
  # @ fl-builder
4215
  #: modules/map/map.php:34
4216
  msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4217
- msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
4218
 
4219
  # @ fl-builder
4220
  #: modules/photo/photo.php:26
@@ -4222,59 +4629,59 @@ msgid "Upload a photo or display one from the media library."
4222
  msgstr "Upload een afbeelding of toon er een uit je mediabibliotheek."
4223
 
4224
  # @ fl-builder
4225
- #: modules/photo/photo.php:375
4226
  msgid "Photo Source"
4227
- msgstr "Afbeelding Bron"
4228
 
4229
  # @ fl-builder
4230
- #: modules/photo/photo.php:379 modules/photo/photo.php:451
4231
  msgid "URL"
4232
  msgstr "URL"
4233
 
4234
  # @ fl-builder
4235
- #: modules/photo/photo.php:396
4236
  msgid "Photo URL"
4237
  msgstr "Afbeelding URL"
4238
 
4239
  # @ fl-builder
4240
- #: modules/photo/photo.php:397
4241
  msgid "http://www.example.com/my-photo.jpg"
4242
- msgstr "http://www.voorbeeld.com/mijn-photo.jpg"
4243
 
4244
  # @ fl-builder
4245
- #: modules/photo/photo.php:404
4246
  msgctxt "Crop."
4247
  msgid "None"
4248
  msgstr "Geen"
4249
 
4250
  # @ fl-builder
4251
- #: modules/photo/photo.php:425 modules/photo/photo.php:439
4252
  msgid "Caption"
4253
  msgstr "Bijschrift"
4254
 
4255
  # @ fl-builder
4256
- #: modules/photo/photo.php:429
4257
  msgid "Show Caption"
4258
- msgstr "Toon Bijschrift"
4259
 
4260
  # @ fl-builder
4261
- #: modules/photo/photo.php:448
4262
  msgid "Link Type"
4263
- msgstr "Link Type"
4264
 
4265
  # @ fl-builder
4266
- #: modules/photo/photo.php:450
4267
  msgctxt "Link type."
4268
  msgid "None"
4269
  msgstr "Geen"
4270
 
4271
  # @ fl-builder
4272
- #: modules/photo/photo.php:453
4273
  msgid "Photo File"
4274
  msgstr "Afbeeldingbestand"
4275
 
4276
  # @ fl-builder
4277
- #: modules/photo/photo.php:464
4278
  msgid ""
4279
  "Link type applies to how the image should be linked on click. You can choose "
4280
  "a specific URL, the individual photo or a separate page with the photo."
@@ -4284,28 +4691,186 @@ msgstr ""
4284
  "afbeelding of een aparte pagina met de afbeelding."
4285
 
4286
  # @ fl-builder
4287
- #: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
4288
  msgid "Link URL"
4289
  msgstr "Link URL"
4290
 
4291
  # @ fl-builder
4292
- #: modules/post-grid/includes/frontend.php:41
4293
- msgid "No posts found."
4294
- msgstr "Geen berichten gevonden."
4295
-
4296
- # @ fl-builder
4297
  #: modules/post-grid/includes/post-feed.php:14
4298
  #: modules/post-grid/includes/post-grid.php:24
 
4299
  #, php-format
4300
  msgctxt "%s stands for author name."
4301
  msgid "By %s"
4302
  msgstr "Door %s"
4303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4304
  # @ fl-builder
 
 
 
 
 
 
 
4305
  #: modules/post-grid/post-grid.php:14
4306
  msgid "Posts"
4307
  msgstr "Berichten"
4308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4309
  # @ fl-builder
4310
  #: modules/post-grid/post-grid.php:15
4311
  msgid "Display a grid of your WordPress posts."
@@ -4316,103 +4881,120 @@ msgstr "Een raster van je WordPress berichten weergeven."
4316
  msgid "Layout Style"
4317
  msgstr "Opmaakstijl"
4318
 
4319
- # @ fl-builder
4320
- #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
4321
- msgid "Grid"
4322
- msgstr "Raster"
4323
-
4324
  # @ fl-builder
4325
  #: modules/post-grid/post-grid.php:56
4326
  msgid "Feed"
4327
  msgstr "Feed"
4328
 
4329
  # @ fl-builder
4330
- #: modules/post-grid/post-grid.php:71
4331
  msgid "Pagination Style"
4332
- msgstr "Paginering Stijl"
4333
 
4334
  # @ fl-builder
4335
- #: modules/post-grid/post-grid.php:74
4336
  msgid "Numbers"
4337
  msgstr "Cijfers"
4338
 
4339
  # @ fl-builder
4340
- #: modules/post-grid/post-grid.php:76
4341
  msgctxt "Pagination style."
4342
  msgid "None"
4343
  msgstr "Geen"
4344
 
4345
  # @ fl-builder
4346
- #: modules/post-grid/post-grid.php:81
4347
  msgid "Posts Per Page"
4348
  msgstr "Berichten per pagina"
4349
 
4350
  # @ fl-builder
4351
- #: modules/post-grid/post-grid.php:92
4352
  msgid "Post Width"
4353
- msgstr "Bericht Breedte"
4354
 
4355
  # @ fl-builder
4356
- #: modules/post-grid/post-grid.php:100
4357
- msgid "Post Spacing"
4358
- msgstr "Tussenruimte"
4359
 
4360
  # @ fl-builder
4361
- #: modules/post-grid/post-grid.php:109
4362
- msgid "Featured Image"
4363
- msgstr "Uitgelichte Afbeelding"
4364
 
4365
- # @ fl-builder
4366
- #: modules/post-grid/post-grid.php:130
4367
- msgid "Above Text"
4368
- msgstr "Boven Tekst"
 
 
 
 
 
 
 
4369
 
4370
  # @ fl-builder
4371
- #: modules/post-grid/post-grid.php:131
4372
- msgid "Beside Text"
4373
- msgstr "Naast Tekst"
4374
 
4375
  # @ fl-builder
4376
- #: modules/post-grid/post-grid.php:142
4377
- msgid "Post Info"
4378
- msgstr "Bericht Info"
4379
 
4380
  # @ fl-builder
4381
- #: modules/post-grid/post-grid.php:169
4382
- msgid "Date Format"
4383
- msgstr "Datumnotatie"
4384
 
4385
  # @ fl-builder
4386
- #: modules/post-grid/post-grid.php:185
4387
- msgid "Comments"
4388
- msgstr "Reacties"
 
 
 
 
4389
 
4390
- #: modules/post-grid/post-grid.php:208
4391
- msgid "Content Type"
4392
- msgstr "Inhoud Type"
 
4393
 
4394
- #: modules/post-grid/post-grid.php:211
4395
- msgid "Excerpt"
4396
- msgstr "Samenvatting"
 
 
 
 
 
4397
 
4398
- #: modules/post-grid/post-grid.php:212
4399
- msgid "Full Text"
4400
- msgstr "Volledige Tekst"
 
 
 
 
 
4401
 
4402
  # @ fl-builder
4403
- #: modules/post-grid/post-grid.php:217
4404
- msgid "More Link"
4405
- msgstr "Lees Meer Link"
4406
 
4407
  # @ fl-builder
4408
- #: modules/post-grid/post-grid.php:226
4409
- msgid "More Link Text"
4410
- msgstr "More Link Tekst"
4411
 
4412
  # @ fl-builder
4413
- #: modules/post-grid/post-grid.php:227
4414
- msgid "Read More"
4415
- msgstr "Lees verder"
4416
 
4417
  # @ fl-builder
4418
  #: modules/pricing-table/pricing-table.php:14
@@ -4427,17 +5009,17 @@ msgstr "Een eenvoudige Prijstabel generator."
4427
  # @ fl-builder
4428
  #: modules/pricing-table/pricing-table.php:26
4429
  msgid "Pricing Boxes"
4430
- msgstr "Prijs Vakken"
4431
 
4432
  # @ fl-builder
4433
  #: modules/pricing-table/pricing-table.php:33
4434
  msgid "Pricing Box"
4435
- msgstr "Prijs Vak"
4436
 
4437
  # @ fl-builder
4438
  #: modules/pricing-table/pricing-table.php:50
4439
  msgid "Box Spacing"
4440
- msgstr "Vak Tussenruimte"
4441
 
4442
  # @ fl-builder
4443
  #: modules/pricing-table/pricing-table.php:53
@@ -4453,7 +5035,7 @@ msgstr "Strak"
4453
  # @ fl-builder
4454
  #: modules/pricing-table/pricing-table.php:59
4455
  msgid "Features Min Height"
4456
- msgstr "Opties Min Hoogte"
4457
 
4458
  # @ fl-builder
4459
  #: modules/pricing-table/pricing-table.php:63
@@ -4479,17 +5061,17 @@ msgstr "Strak"
4479
  # @ fl-builder
4480
  #: modules/pricing-table/pricing-table.php:84
4481
  msgid "Add Pricing Box"
4482
- msgstr "Prijzen vak Toevoegen"
4483
 
4484
  # @ fl-builder
4485
  #: modules/pricing-table/pricing-table.php:98
4486
  msgid "Title Size"
4487
- msgstr "Titel Grootte"
4488
 
4489
  # @ fl-builder
4490
  #: modules/pricing-table/pricing-table.php:107
4491
  msgid "Price Box"
4492
- msgstr "Prijs Vak"
4493
 
4494
  # @ fl-builder
4495
  #: modules/pricing-table/pricing-table.php:111
@@ -4505,7 +5087,7 @@ msgstr "Tijdsduur"
4505
  # @ fl-builder
4506
  #: modules/pricing-table/pricing-table.php:116
4507
  msgid "per Year"
4508
- msgstr "Per Jaar"
4509
 
4510
  # @ fl-builder
4511
  #: modules/pricing-table/pricing-table.php:120
@@ -4514,9 +5096,9 @@ msgstr "Prijs grootte"
4514
 
4515
  # @ fl-builder
4516
  #: modules/pricing-table/pricing-table.php:133
4517
- #: modules/subscribe-form/subscribe-form.php:167
4518
  msgid "Button Text"
4519
- msgstr "Knop Tekst"
4520
 
4521
  # @ fl-builder
4522
  #: modules/pricing-table/pricing-table.php:137
@@ -4537,12 +5119,12 @@ msgstr "Eén optie per regel. HTML is oke."
4537
  # @ fl-builder
4538
  #: modules/pricing-table/pricing-table.php:162
4539
  msgid "Box Background"
4540
- msgstr "Vak Achtergrond"
4541
 
4542
  # @ fl-builder
4543
  #: modules/pricing-table/pricing-table.php:167
4544
  msgid "Box Foreground"
4545
- msgstr "Vak Voorgrond"
4546
 
4547
  # @ fl-builder
4548
  #: modules/pricing-table/pricing-table.php:173
@@ -4552,12 +5134,12 @@ msgstr "Accent kleur"
4552
  # @ fl-builder
4553
  #: modules/pricing-table/pricing-table.php:178
4554
  msgid "Accent Text Color"
4555
- msgstr "Tekst Accentkleur"
4556
 
4557
  # @ fl-builder
4558
  #: modules/pricing-table/pricing-table.php:182
4559
  msgid "Box Top Margin"
4560
- msgstr "Vak Bovenmarge"
4561
 
4562
  # @ fl-builder
4563
  #: modules/rich-text/rich-text.php:15
@@ -4607,24 +5189,24 @@ msgid "Display multiple photos in a slideshow view."
4607
  msgstr "Weergave van meerdere afbeeldingenin een diavoorstelling."
4608
 
4609
  # @ fl-builder
4610
- #: modules/slideshow/slideshow.php:302
4611
  msgid "Skin Color"
4612
- msgstr "Skin Kleur"
4613
 
4614
  # @ fl-builder
4615
- #: modules/slideshow/slideshow.php:305
4616
  msgctxt "Color."
4617
  msgid "Light"
4618
  msgstr "Licht"
4619
 
4620
  # @ fl-builder
4621
- #: modules/slideshow/slideshow.php:306
4622
  msgctxt "Color."
4623
  msgid "Dark"
4624
  msgstr "Donker"
4625
 
4626
  # @ fl-builder
4627
- #: modules/slideshow/slideshow.php:308
4628
  msgid ""
4629
  "If your overall theme/images are lighter in color, light will display "
4630
  "buttons in a darker color scheme and vice versa for dark."
@@ -4633,7 +5215,7 @@ msgstr ""
4633
  "in een donkere kleur schema weergeven en en omgekeerd voor donker."
4634
 
4635
  # @ fl-builder
4636
- #: modules/slideshow/slideshow.php:318
4637
  msgid ""
4638
  "Crop set to no will fit the slideshow images to the height you specify and "
4639
  "keep the width proportional, whereas crop set to yes will fit the slideshow "
@@ -4647,39 +5229,39 @@ msgstr ""
4647
  "aan de afmetingen te voldoen."
4648
 
4649
  # @ fl-builder
4650
- #: modules/slideshow/slideshow.php:322
4651
  msgid "Disable Right-Click"
4652
  msgstr "Klik met de rechtermuisknop uitschakelen"
4653
 
4654
  # @ fl-builder
4655
- #: modules/slideshow/slideshow.php:342
4656
  msgctxt "Click action type."
4657
  msgid "None"
4658
  msgstr "Geen"
4659
 
4660
  # @ fl-builder
4661
- #: modules/slideshow/slideshow.php:366
4662
  msgid "Playback"
4663
  msgstr "Afspelen"
4664
 
4665
  # @ fl-builder
4666
- #: modules/slideshow/slideshow.php:392
4667
  msgctxt "Slideshow transition."
4668
  msgid "None"
4669
  msgstr "Geen"
4670
 
4671
  # @ fl-builder
4672
- #: modules/slideshow/slideshow.php:429
4673
  msgid "Controls"
4674
  msgstr "Instellingen"
4675
 
4676
  # @ fl-builder
4677
- #: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
4678
  msgid "Navigation Arrows"
4679
  msgstr "Navigatiepijlen"
4680
 
4681
  # @ fl-builder
4682
- #: modules/slideshow/slideshow.php:442
4683
  msgid ""
4684
  "Navigational arrows allow the visitor to freely move through the images in "
4685
  "your slideshow. These are larger arrows that overlay your slideshow images "
@@ -4691,98 +5273,98 @@ msgstr ""
4691
  "de balk met besturingselementen."
4692
 
4693
  # @ fl-builder
4694
- #: modules/slideshow/slideshow.php:447
4695
  msgid "Control Bar"
4696
  msgstr "Navigatiebalk"
4697
 
4698
  # @ fl-builder
4699
- #: modules/slideshow/slideshow.php:451
4700
  msgid "Nav Type"
4701
- msgstr "Navigatie Type"
4702
 
4703
  # @ fl-builder
4704
- #: modules/slideshow/slideshow.php:454
4705
  msgctxt "Nav type."
4706
  msgid "None"
4707
  msgstr "Geen"
4708
 
4709
  # @ fl-builder
4710
- #: modules/slideshow/slideshow.php:455
4711
  msgid "Buttons"
4712
  msgstr "Knoppen"
4713
 
4714
  # @ fl-builder
4715
- #: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
4716
  msgid "Thumbs"
4717
  msgstr "Miniaturen"
4718
 
4719
  # @ fl-builder
4720
- #: modules/slideshow/slideshow.php:471
4721
  msgid "Nav Position"
4722
- msgstr "Navigatie Positie"
4723
 
4724
  # @ fl-builder
4725
- #: modules/slideshow/slideshow.php:481
4726
  msgid "Control Bar Buttons"
4727
- msgstr "Navigatiebalk Knoppen"
4728
 
4729
  # @ fl-builder
4730
- #: modules/slideshow/slideshow.php:494
4731
  msgid "Play Button"
4732
- msgstr "Play Button"
4733
 
4734
  # @ fl-builder
4735
- #: modules/slideshow/slideshow.php:503
4736
  msgid "Fullscreen Button"
4737
- msgstr "Volledig Scherm Knop"
4738
 
4739
  # @ fl-builder
4740
- #: modules/slideshow/slideshow.php:512
4741
  msgid "Photo Count"
4742
- msgstr "Aantal Afbeeldingen"
4743
 
4744
  # @ fl-builder
4745
- #: modules/slideshow/slideshow.php:521
4746
  msgid "Thumbs Button"
4747
- msgstr "Miniaturen Button"
4748
 
4749
  # @ fl-builder
4750
- #: modules/slideshow/slideshow.php:530
4751
  msgid "Caption Button"
4752
- msgstr "Bijschrift Button"
4753
 
4754
  # @ fl-builder
4755
- #: modules/slideshow/slideshow.php:539
4756
  msgid "Social Button"
4757
- msgstr "Social Media Button"
4758
 
4759
  # @ fl-builder
4760
- #: modules/slideshow/slideshow.php:549
4761
  msgid "Control Bar Overlay"
4762
- msgstr "Navigatiebalk Overlay"
4763
 
4764
  # @ fl-builder
4765
- #: modules/slideshow/slideshow.php:553
4766
  msgid "Overlay Enabled"
4767
- msgstr "Overlay Ingeschakeld"
4768
 
4769
  # @ fl-builder
4770
- #: modules/slideshow/slideshow.php:564
4771
  msgid ""
4772
  "Control bar overlay specifies if the control bar buttons you choose overlay "
4773
  "your slideshow images or site below the slideshow completely."
4774
  msgstr ""
4775
- "Navigatiebalk Overlay geeft aan of de navigatiebalk knoppen die je kiest "
4776
  "over je diavoorstelling afbeeldingen liggen of geheel onder je "
4777
  "diavoorstelling worden geplaatst."
4778
 
4779
  # @ fl-builder
4780
- #: modules/slideshow/slideshow.php:568
4781
  msgid "Overlay Hide"
4782
- msgstr "Verberg Overlay"
4783
 
4784
  # @ fl-builder
4785
- #: modules/slideshow/slideshow.php:574
4786
  msgid ""
4787
  "Overlay hide will hide the control bar after however many seconds you "
4788
  "specify below. They will reappear upon mouse over."
@@ -4791,49 +5373,49 @@ msgstr ""
4791
  "seconden. Ze verschijnen weer wanneer er met de muis overheen wordt bewogen."
4792
 
4793
  # @ fl-builder
4794
- #: modules/slideshow/slideshow.php:578
4795
  msgid "Overlay Hide Delay"
4796
- msgstr "OVerberg Overlay Vertraging"
4797
 
4798
  # @ fl-builder
4799
- #: modules/slideshow/slideshow.php:590
4800
  msgid "Thumbs Size"
4801
- msgstr "Miniatuur Afmeting"
4802
 
4803
  # @ fl-builder
4804
- #: modules/slideshow/slideshow.php:599
4805
  msgid "Social"
4806
  msgstr "Social"
4807
 
4808
  # @ fl-builder
4809
- #: modules/slideshow/slideshow.php:603
4810
  msgid "Facebook Button"
4811
- msgstr "Facebook Button"
4812
 
4813
  # @ fl-builder
4814
- #: modules/slideshow/slideshow.php:615
4815
  msgid "Twitter Button"
4816
- msgstr "Twitter Button"
4817
 
4818
  # @ fl-builder
4819
- #: modules/slideshow/slideshow.php:627
4820
  msgid "Google Plus Button"
4821
- msgstr "Google+ Button"
4822
 
4823
  # @ fl-builder
4824
- #: modules/slideshow/slideshow.php:639
4825
  msgid "Pinterest Button"
4826
- msgstr "Pinterest Button"
4827
 
4828
  # @ fl-builder
4829
  #: modules/social-buttons/social-buttons.php:14
4830
  msgid "Social Buttons"
4831
- msgstr "Social Buttons"
4832
 
4833
  # @ fl-builder
4834
  #: modules/social-buttons/social-buttons.php:15
4835
  msgid "Displays social buttons."
4836
- msgstr "Toon Social Buttons."
4837
 
4838
  # @ fl-builder
4839
  #: modules/social-buttons/social-buttons.php:71
@@ -4843,7 +5425,7 @@ msgstr "Doel URL"
4843
  # @ fl-builder
4844
  #: modules/social-buttons/social-buttons.php:75
4845
  msgid "Current Page"
4846
- msgstr "Huidige Pagina"
4847
 
4848
  # @ fl-builder
4849
  #: modules/social-buttons/social-buttons.php:82
@@ -4864,7 +5446,7 @@ msgstr "Aangepaste URL"
4864
  # @ fl-builder
4865
  #: modules/social-buttons/social-buttons.php:107
4866
  msgid "Show Facebook"
4867
- msgstr "Toon Facebook"
4868
 
4869
  # @ fl-builder
4870
  #: modules/social-buttons/social-buttons.php:116
@@ -4885,50 +5467,45 @@ msgstr "Naam"
4885
  msgid "Please enter a valid email address."
4886
  msgstr "Geef aub een geldig e-mailadres in."
4887
 
4888
- #: modules/subscribe-form/includes/frontend.php:40
4889
  msgid "Something went wrong. Please check your entries and try again."
4890
  msgstr "Er ging iets mis. Probeer het nog eens."
4891
 
4892
  #: modules/subscribe-form/subscribe-form.php:18
4893
  msgid "Subscribe Form"
4894
- msgstr "Aanmeld Formulier"
4895
 
4896
  #: modules/subscribe-form/subscribe-form.php:19
4897
  msgid "Adds a simple subscribe form to your layout."
4898
- msgstr "Voeg een eenvoudig abonneren formulier toe aan je layout."
4899
-
4900
- #: modules/subscribe-form/subscribe-form.php:72
4901
- msgid "There was an error subscribing. Please try again."
4902
- msgstr ""
4903
- "Er heeft zich een fout voorgedaan bij het abonneren. Probeer het nog eens."
4904
 
4905
- #: modules/subscribe-form/subscribe-form.php:117
4906
  msgid "Success"
4907
  msgstr "Succes"
4908
 
4909
- #: modules/subscribe-form/subscribe-form.php:121
4910
  msgid "Success Action"
4911
  msgstr "Succes actie"
4912
 
4913
- #: modules/subscribe-form/subscribe-form.php:123
4914
  msgid "Show Message"
4915
- msgstr "Toon Bericht"
4916
 
4917
- #: modules/subscribe-form/subscribe-form.php:124
4918
  msgid "Redirect"
4919
  msgstr "Omleiden"
4920
 
4921
- #: modules/subscribe-form/subscribe-form.php:143
4922
  msgid ""
4923
  "Thanks for subscribing! Please check your email for further instructions."
4924
  msgstr ""
4925
  "Bedankt voor het aanmelden! Controleer uw email voor verdere instructies."
4926
 
4927
- #: modules/subscribe-form/subscribe-form.php:150
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-08-06 14:29+0100\n"
6
+ "PO-Revision-Date: 2015-08-06 15:18+0100\n"
7
+ "Last-Translator: Marcel Bootsman <marcel@nostromo.nl>\n"
8
  "Language-Team: \n"
9
  "Language: nl_NL\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.5\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
17
  "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
51
  msgstr "Modules"
52
 
53
  # @ fl-builder
54
+ #: classes/class-fl-builder-admin-settings.php:159 includes/ui.php:58
55
  msgid "Templates"
56
  msgstr "Templates"
57
 
59
  #: classes/class-fl-builder-admin-settings.php:163
60
  #: includes/admin-settings-post-types.php:3
61
  msgid "Post Types"
62
+ msgstr "Post types"
63
 
64
  # @ fl-builder
65
  #: classes/class-fl-builder-admin-settings.php:167
66
  #: modules/icon-group/icon-group.php:27
67
+ #: modules/post-carousel/post-carousel.php:275
68
+ #: modules/post-grid/post-grid.php:257
69
  msgid "Icons"
70
  msgstr "Iconen"
71
 
83
  # @ fl-builder
84
  #: classes/class-fl-builder-admin-settings.php:179
85
  msgid "Help Button"
86
+ msgstr "Help knop"
87
 
88
  #: classes/class-fl-builder-admin-settings.php:183
89
  #: includes/admin-settings-cache.php:3
95
  #: includes/admin-settings-uninstall.php:3
96
  #: includes/admin-settings-uninstall.php:15
97
  msgid "Uninstall"
98
+ msgstr "Deïnstalleren"
99
 
100
  # @ fl-builder
101
+ #: classes/class-fl-builder-admin-settings.php:439
102
  msgid "Error! You must have at least one icon set enabled."
103
+ msgstr "Fout! Je moet ten minste één icoon-set activeren."
104
 
105
  # @ fl-builder
106
+ #: classes/class-fl-builder-admin-settings.php:481
107
  msgid "Error! Could not unzip file."
108
+ msgstr "Fout! Kon bestand niet uitpakken."
109
 
110
  # @ fl-builder
111
+ #: classes/class-fl-builder-admin-settings.php:515
112
  msgid "Error! Please upload an icon set from either Icomoon or Fontello."
113
+ msgstr "Fout! Upload aub een icoon-set van Icomoon of Fontello."
114
 
115
  # @ fl-builder
116
+ #: classes/class-fl-builder-admin-settings.php:618
117
  msgid "Error! Please enter an iframe for the video embed code."
118
+ msgstr "Fout! Geef aub een iframe voor de video embed-code."
119
 
120
  # @ fl-builder
121
+ #: classes/class-fl-builder-admin-settings.php:636
122
  msgid "Error! You must have at least one feature of the help button enabled."
123
  msgstr ""
124
+ "Fout! Je moet minstens één optie an de help button geselecteerd hebben."
125
 
126
  # @ fl-builder
127
+ #: classes/class-fl-builder-admin.php:45
128
  #, php-format
129
  msgid ""
130
  "This version of the <strong>Page Builder</strong> plugin is not compatible "
132
  "of this plugin."
133
  msgstr ""
134
  "Deze versie van de <strong>Page Builder</strong> plugin is niet compatible "
135
+ "met WordPress Multisite. <a %s>Upgrade</a> aub naar de Multisite versie van "
136
  "deze plugin."
137
 
138
  # @ fl-builder
139
+ #: classes/class-fl-builder-admin.php:55
140
  msgid ""
141
  "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
142
  "greater. Please update WordPress before activating the plugin."
143
  msgstr ""
144
+ "De <strong>Page Builder</strong> plugin vereist WordPress versie 3.5 of "
145
+ "later. Update WordPress voordat je de plugin activeert."
146
 
147
  # @ fl-builder
148
+ #: classes/class-fl-builder-admin.php:112
149
  #, php-format
150
  msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
151
  msgstr ""
152
  "Page Builder geactiveerd! <a %s>Klik hier</a> om remote updates te activeren."
153
 
154
  # @ fl-builder
155
+ #: classes/class-fl-builder-admin.php:238
156
  msgctxt "Plugin action link label."
157
  msgid "Upgrade"
158
+ msgstr "Bijwerken"
159
 
160
  # @ fl-builder
161
+ #: classes/class-fl-builder-admin.php:253
162
+ #: classes/class-fl-builder-model.php:3156
163
  msgid "Page Builder"
164
  msgstr "Page Builder"
165
 
166
  # @ fl-builder
167
+ #: classes/class-fl-builder-model.php:1616
168
  #, php-format
169
  msgctxt "%s stands for the module filename"
170
  msgid ""
175
  "bestandsnaam aan te passen voor compatibiliteit met Beaver Builder."
176
 
177
  # @ fl-builder
178
+ #: classes/class-fl-builder-model.php:1667
179
+ #: classes/class-fl-builder-model.php:1728 modules/heading/heading.php:16
180
  #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
181
  #: modules/separator/separator.php:16 modules/video/video.php:21
182
  msgid "Basic Modules"
183
+ msgstr "Basis modules"
184
 
185
  # @ fl-builder
186
+ #: classes/class-fl-builder-model.php:1668
187
+ #: classes/class-fl-builder-model.php:1729 modules/accordion/accordion.php:16
188
  #: modules/button/button.php:16 modules/callout/callout.php:16
189
  #: modules/contact-form/contact-form.php:16
190
  #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
191
  #: modules/gallery/gallery.php:16 modules/html/html.php:16
192
  #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
193
+ #: modules/map/map.php:16 modules/post-carousel/post-carousel.php:16
194
+ #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
195
  #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
196
  #: modules/slideshow/slideshow.php:16
197
  #: modules/social-buttons/social-buttons.php:16
199
  #: modules/testimonials/testimonials.php:16
200
  #: modules/woocommerce/woocommerce.php:18
201
  msgid "Advanced Modules"
202
+ msgstr "Geavanceerde modules"
203
 
204
  # @ fl-builder
205
+ #: classes/class-fl-builder-model.php:1669
206
+ #: classes/class-fl-builder-model.php:1730
207
  msgid "Other Modules"
208
+ msgstr "Andere modules"
209
 
210
  # @ fl-builder
211
+ #: classes/class-fl-builder-model.php:1670
212
+ #: classes/class-fl-builder-model.php:1731
213
+ #: includes/admin-settings-modules.php:32 includes/ui.php:99
214
  #: modules/widget/widget.php:16
215
  msgid "WordPress Widgets"
216
+ msgstr "WordPress widgets"
217
 
218
  # @ fl-builder
219
+ #: classes/class-fl-builder-model.php:2320
220
  #, php-format
221
  msgctxt "%s stands for post/page title."
222
  msgid "Copy of %s"
223
  msgstr "Kopie van %s"
224
 
225
  # @ fl-builder
226
+ #: classes/class-fl-builder-model.php:2758
227
+ msgctxt "Default user template category."
228
+ msgid "Uncategorized"
229
+ msgstr "Geen categorie"
230
+
231
+ # @ fl-builder
232
+ #: classes/class-fl-builder-model.php:3113
233
+ msgid "Home Pages"
234
+ msgstr "Home pagina's"
235
+
236
+ # @ fl-builder
237
+ #: classes/class-fl-builder-model.php:3114
238
+ msgid "Content Pages"
239
+ msgstr "Inhoud pagina's"
240
+
241
+ # @ fl-builder
242
+ #: classes/class-fl-builder-photo.php:95
243
+ #: classes/class-fl-builder-photo.php:100
244
  msgctxt "Image size."
245
  msgid "Full Size"
246
+ msgstr "Volledige grootte"
247
 
248
  # @ fl-builder
249
+ #: classes/class-fl-builder-photo.php:101
250
  msgctxt "Image size."
251
  msgid "Large"
252
  msgstr "Groot"
253
 
254
  # @ fl-builder
255
+ #: classes/class-fl-builder-photo.php:102
256
  msgctxt "Image size."
257
  msgid "Medium"
258
  msgstr "Medium"
259
 
260
  # @ fl-builder
261
+ #: classes/class-fl-builder-photo.php:103
262
  msgctxt "Image size."
263
  msgid "Thumbnail"
264
  msgstr "Miniatuur"
265
 
266
+ #: classes/class-fl-builder-service-activecampaign.php:69
267
+ msgid "Error: You must provide an API URL."
268
+ msgstr "Fout: Je moet een API key ingeven."
269
 
270
+ #: classes/class-fl-builder-service-activecampaign.php:73
271
+ #: classes/class-fl-builder-service-campaign-monitor.php:55
272
+ #: classes/class-fl-builder-service-constant-contact.php:48
273
+ #: classes/class-fl-builder-service-getresponse.php:67
274
+ #: classes/class-fl-builder-service-hatchbuck.php:48
275
+ #: classes/class-fl-builder-service-infusionsoft.php:79
276
+ #: classes/class-fl-builder-service-madmimi.php:73
277
+ #: classes/class-fl-builder-service-mailchimp.php:67
278
+ msgid "Error: You must provide an API key."
279
+ msgstr "Fout: Je moet een API key ingeven."
280
 
281
+ #: classes/class-fl-builder-service-activecampaign.php:81
282
+ msgid "Error: Please check your API URL and API key."
283
+ msgstr "Fout: controleer je API key."
284
 
285
+ # @ fl-builder
286
+ #: classes/class-fl-builder-service-activecampaign.php:108
287
+ msgid "API URL"
288
+ msgstr "API URL"
289
+
290
+ #: classes/class-fl-builder-service-activecampaign.php:109
291
  msgid ""
292
+ "Your API url can be found in your ActiveCampaign account under My Settings > "
293
+ "API."
294
  msgstr ""
295
+ "Je API key kun je terugvinden in je ActiveCampaign account onder My Settings "
296
+ "> API key."
297
+
298
+ #: classes/class-fl-builder-service-activecampaign.php:119
299
+ #: classes/class-fl-builder-service-campaign-monitor.php:88
300
+ #: classes/class-fl-builder-service-constant-contact.php:88
301
+ #: classes/class-fl-builder-service-getresponse.php:100
302
+ #: classes/class-fl-builder-service-hatchbuck.php:87
303
+ #: classes/class-fl-builder-service-infusionsoft.php:129
304
+ #: classes/class-fl-builder-service-madmimi.php:121
305
+ #: classes/class-fl-builder-service-mailchimp.php:100
306
+ msgid "API Key"
307
+ msgstr "API key"
308
+
309
+ #: classes/class-fl-builder-service-activecampaign.php:120
310
+ msgid ""
311
+ "Your API key can be found in your ActiveCampaign account under My Settings > "
312
+ "API."
313
+ msgstr ""
314
+ "Je API url kun je terugvinden in je ActiveCampaign account onder My Settings "
315
+ "> API."
316
 
317
  # @ fl-builder
318
+ #: classes/class-fl-builder-service-activecampaign.php:169
319
  #: classes/class-fl-builder-service-aweber.php:182
320
  #: classes/class-fl-builder-service-campaign-monitor.php:148
321
  #: classes/class-fl-builder-service-campaign-monitor.php:199
322
  #: classes/class-fl-builder-service-constant-contact.php:156
323
  #: classes/class-fl-builder-service-getresponse.php:154
324
  #: classes/class-fl-builder-service-icontact.php:207
325
+ #: classes/class-fl-builder-service-infusionsoft.php:204
326
  #: classes/class-fl-builder-service-madmimi.php:178
327
+ #: classes/class-fl-builder-service-mailchimp.php:177
328
  #: classes/class-fl-builder-service-mailpoet.php:92
329
+ #: classes/class-fl-builder-service-sendinblue.php:161
330
+ #: classes/class-fl-builder-services.php:288 includes/service-settings.php:21
331
  #: modules/woocommerce/woocommerce.php:60
332
  msgid "Choose..."
333
  msgstr "Kies..."
334
 
335
+ #: classes/class-fl-builder-service-activecampaign.php:181
336
  #: classes/class-fl-builder-service-aweber.php:192
337
  #: classes/class-fl-builder-service-campaign-monitor.php:209
338
  #: classes/class-fl-builder-service-constant-contact.php:166
339
  #: classes/class-fl-builder-service-getresponse.php:164
340
  #: classes/class-fl-builder-service-icontact.php:217
341
+ #: classes/class-fl-builder-service-infusionsoft.php:214
342
  #: classes/class-fl-builder-service-madmimi.php:188
343
+ #: classes/class-fl-builder-service-mailchimp.php:187
344
  #: classes/class-fl-builder-service-mailpoet.php:102
345
+ #: classes/class-fl-builder-service-sendinblue.php:171
346
  msgctxt "An email list from a third party provider."
347
  msgid "List"
348
  msgstr "Lijst"
349
 
350
+ #: classes/class-fl-builder-service-activecampaign.php:208
351
+ msgid ""
352
+ "There was an error subscribing to ActiveCampaign. The account is no longer "
353
+ "connected."
354
+ msgstr ""
355
+ "Er is een fout opgetreden tijdens het aanmelden bij de ActiveCampaign. Het "
356
+ "account is niet meer verbonden."
357
+
358
+ #: classes/class-fl-builder-service-activecampaign.php:239
359
+ msgid "Error: Invalid API data."
360
+ msgstr "Fout: Ontbrekende API data."
361
+
362
+ #: classes/class-fl-builder-service-aweber.php:72
363
+ msgid "Error: You must provide an Authorization Code."
364
+ msgstr "Fout: Je moet een authorisatiecode opgeven."
365
+
366
+ #: classes/class-fl-builder-service-aweber.php:76
367
+ msgid "Error: Please enter a valid Authorization Code."
368
+ msgstr "Fout: Voer een geldige authorisatiecode in."
369
+
370
+ #: classes/class-fl-builder-service-aweber.php:127
371
+ msgid "Authorization Code"
372
+ msgstr "Authorisatiecode"
373
+
374
+ #: classes/class-fl-builder-service-aweber.php:128
375
+ #, php-format
376
+ msgid ""
377
+ "Please register this website with AWeber to get your Authorization Code. <a"
378
+ "%s>Register Now</a>"
379
+ msgstr ""
380
+ "Gelieve deze website met AWeber te registreren om je authorisatiecode te "
381
+ "verkrijgen. <a%s>Registreer nu</a>"
382
+
383
  #: classes/class-fl-builder-service-aweber.php:219
384
  msgid ""
385
  "There was an error subscribing to AWeber. The account is no longer connected."
398
  msgid "There was an error subscribing to AWeber. %s"
399
  msgstr "Er is een fout opgetreden bij het registreren bij AWeber. %s"
400
 
 
 
 
 
 
 
 
 
401
  #: classes/class-fl-builder-service-campaign-monitor.php:67
402
  #: classes/class-fl-builder-service-campaign-monitor.php:129
403
  #: classes/class-fl-builder-service-getresponse.php:76
404
  #: classes/class-fl-builder-service-getresponse.php:132
405
+ #: classes/class-fl-builder-service-hatchbuck.php:63
406
  msgid "Error: Please check your API key."
407
  msgstr "Fout: controleer je API key."
408
 
 
 
 
 
 
 
 
 
409
  #: classes/class-fl-builder-service-campaign-monitor.php:89
410
  msgid ""
411
  "Your API key can be found in your Campaign Monitor account under Account "
434
 
435
  #: classes/class-fl-builder-service-constant-contact.php:52
436
  msgid "Error: You must provide an access token."
437
+ msgstr "Fout: Je moet een access token verstrekken."
438
 
439
  #: classes/class-fl-builder-service-constant-contact.php:61
440
  #: classes/class-fl-builder-service-constant-contact.php:134
441
  #, php-format
442
  msgid "Error: Could not connect to Constant Contact. %s"
443
+ msgstr "Fout: Kon niet verbinden met Constante Contact. %s"
444
 
445
  #: classes/class-fl-builder-service-constant-contact.php:89
446
  msgid "Your Constant Contact API key."
448
 
449
  #: classes/class-fl-builder-service-constant-contact.php:99
450
  msgid "Access Token"
451
+ msgstr "Access token"
452
 
453
  #: classes/class-fl-builder-service-constant-contact.php:100
454
  msgid "Your Constant Contact access token."
481
  "Er heeft zich een fout voorgedaan tijdens het aanmelden bij Constant "
482
  "Contact. %s"
483
 
484
+ #: classes/class-fl-builder-service-email-address.php:39
485
+ #: classes/class-fl-builder-service-madmimi.php:69
486
+ msgid "Error: You must provide an email address."
487
+ msgstr "Fout: Je moet een e-mailadres opgeven."
488
+
489
+ #: classes/class-fl-builder-service-email-address.php:63
490
+ #: classes/class-fl-builder-service-madmimi.php:110
491
+ #: modules/subscribe-form/includes/frontend.php:11
492
+ msgid "Email Address"
493
+ msgstr "E-mailadres"
494
+
495
+ #: classes/class-fl-builder-service-email-address.php:110
496
+ msgid "There was an error subscribing. The account is no longer connected."
497
+ msgstr ""
498
+ "Er is een fout opgetreden bij het registreren. Het account is niet langer "
499
+ "verbonden."
500
+
501
+ #: classes/class-fl-builder-service-email-address.php:114
502
+ msgid "Subscribe Form Signup"
503
+ msgstr "Aanmeldformulier"
504
+
505
+ # @ fl-builder
506
+ #: classes/class-fl-builder-service-email-address.php:115
507
+ #: modules/contact-form/includes/frontend.php:21
508
+ msgid "Email"
509
+ msgstr "E-mail"
510
+
511
+ #: classes/class-fl-builder-service-email-address.php:118
512
+ msgid "Name"
513
+ msgstr "Naam"
514
+
515
+ #: classes/class-fl-builder-service-email-address.php:124
516
+ #: modules/subscribe-form/subscribe-form.php:73
517
+ msgid "There was an error subscribing. Please try again."
518
+ msgstr ""
519
+ "Er heeft zich een fout voorgedaan bij het abonneren. Probeer het nog eens."
520
+
521
  #: classes/class-fl-builder-service-getresponse.php:101
522
  msgid ""
523
  "Your API key can be found in your GetResponse account under My Account > "
540
  msgstr ""
541
  "Er heeft zich een fout voorgedaan tijdens het aanmelden bij GetResponse. %s"
542
 
543
+ #: classes/class-fl-builder-service-hatchbuck.php:88
544
+ msgid ""
545
+ "Your API key can be found in your Hatchbuck account under Account Settings > "
546
+ "Web API."
547
+ msgstr ""
548
+ "Je API key kun je terugvinden in je Hatchbuck account account onder Account "
549
+ "Settings > Web API."
550
+
551
+ #: classes/class-fl-builder-service-hatchbuck.php:134
552
+ msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
553
+ msgid "Tag"
554
+ msgstr "Tag"
555
+
556
+ #: classes/class-fl-builder-service-hatchbuck.php:161
557
+ msgid ""
558
+ "There was an error subscribing to Hatchbuck. The account is no longer "
559
+ "connected."
560
+ msgstr ""
561
+ "Er is een fout opgetreden bij het registreren bij Hatchbuck. Het account is "
562
+ "niet langer verbonden."
563
+
564
+ #: classes/class-fl-builder-service-hatchbuck.php:190
565
+ msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
566
+ msgstr ""
567
+ "Er is een fout opgetreden bij het aanmelden bij Hatchbuck. De API key is "
568
+ "ongeldig."
569
+
570
+ #: classes/class-fl-builder-service-hatchbuck.php:200
571
+ #: classes/class-fl-builder-service-hatchbuck.php:232
572
+ msgid "There was an error subscribing to Hatchbuck."
573
+ msgstr "Er is een fout opgestreden tijdens het aanmelden bij Hatchbuck."
574
+
575
  #: classes/class-fl-builder-service-icontact.php:75
576
  msgid "Error: You must provide a username."
577
  msgstr "Fout: Je moet een API key ingeven."
599
  msgstr "Je iContact gebruikersnaam."
600
 
601
  #: classes/class-fl-builder-service-icontact.php:136
602
+ #: classes/class-fl-builder-service-infusionsoft.php:118
603
  msgid "App ID"
604
  msgstr "App ID"
605
 
609
 
610
  #: classes/class-fl-builder-service-icontact.php:147
611
  msgid "App Password"
612
+ msgstr "App wachtwoord"
613
 
614
  #: classes/class-fl-builder-service-icontact.php:148
615
  msgid "Your iContact app password."
637
  msgid "There was an error subscribing to iContact. %s"
638
  msgstr "Er is een fout opgestreden tijdens het aanmelden bij iContact. %s"
639
 
640
+ #: classes/class-fl-builder-service-infusionsoft.php:49
641
+ #, php-format
642
+ msgid "There was an error connecting to Infusionsoft. %s"
643
+ msgstr "Er is een fout opgestreden tijdens het aanmelden bij Infusionsoft. %s"
644
+
645
+ #: classes/class-fl-builder-service-infusionsoft.php:83
646
+ msgid "Error: You must provide an app ID."
647
+ msgstr "Fout: Je moet een app ID opgeven."
648
+
649
+ #: classes/class-fl-builder-service-infusionsoft.php:119
650
+ msgid ""
651
+ "Your App ID can be found in the URL for your account. For example, if the "
652
+ "URL for your account is myaccount.infusionsoft.com, your App ID would be "
653
+ "<strong>myaccount</strong>."
654
+ msgstr ""
655
+ "Je app ID kan gevonden worden in de URL van je account. Bijvoorbeeld, als je "
656
+ "URL naar je account myaccount.infusionsoft.com is, dan is je app ID "
657
+ "<strong>myaccount</strong>."
658
+
659
+ #: classes/class-fl-builder-service-infusionsoft.php:130
660
+ msgid ""
661
+ "Your API key can be found in your Infusionsoft account under Admin > "
662
+ "Settings > Application > API > Encrypted Key."
663
+ msgstr ""
664
+ "Je API key kun je terugvinden in je Infusionsoft account onder Admin > "
665
+ "Settings > Application > API > Encrypted Key."
666
+
667
+ #: classes/class-fl-builder-service-infusionsoft.php:242
668
+ msgid ""
669
+ "There was an error subscribing to Infusionsoft. The account is no longer "
670
+ "connected."
671
+ msgstr ""
672
+ "Er is een fout opgetreden bij het registreren bij Infusionsoft. Het account "
673
+ "is niet langer verbonden."
674
+
675
+ #: classes/class-fl-builder-service-infusionsoft.php:291
676
+ #, php-format
677
+ msgid "There was an error subscribing to Infusionsoft. %s"
678
+ msgstr "Er is een fout opgestreden tijdens het aanmelden bij Infusionsoft. %s"
679
 
680
  #: classes/class-fl-builder-service-madmimi.php:83
681
  msgid "Unable to connect to Mad Mimi. Please check your credentials."
682
  msgstr ""
683
  "Het is niet gelukt te verbinden met Mad Mimi. Controleer je inloggegevens."
684
 
 
 
 
 
 
685
  #: classes/class-fl-builder-service-madmimi.php:111
686
  msgid "The email address associated with your Mad Mimi account."
687
  msgstr "Het e-mailadres gekoppeld aan jeMad Mimi account."
718
  "Je API key kun je terugvinden in je Mailchimp account onder Account > Extras "
719
  "> API Keys."
720
 
721
+ # @ fl-builder
722
+ #: classes/class-fl-builder-service-mailchimp.php:215
723
+ msgid "No Group"
724
+ msgstr "Geen groep"
725
+
726
+ # @ fl-builder
727
+ #: classes/class-fl-builder-service-mailchimp.php:227
728
+ msgctxt "MailChimp list group."
729
+ msgid "Groups"
730
+ msgstr "Groepen"
731
+
732
+ #: classes/class-fl-builder-service-mailchimp.php:255
733
  msgid ""
734
  "There was an error subscribing to MailChimp. The account is no longer "
735
  "connected."
737
  "Er is een fout opgetreden bij het registreren bij Mailchimp. Het account is "
738
  "niet langer verbonden."
739
 
740
+ #: classes/class-fl-builder-service-mailchimp.php:352
741
  #, php-format
742
  msgid "There was an error subscribing to MailChimp. %s"
743
  msgstr "Er is een fout opgetreden bij het aanmelden op MailChimp. %s"
751
  msgstr ""
752
  "Er is een fout opgetreden bij het aanmelden. Mailpoet is niet geïnstalleerd."
753
 
754
+ #: classes/class-fl-builder-service-sendinblue.php:67
755
+ msgid "Error: You must provide an Access Key."
756
+ msgstr "Fout: Je moet een Access Key invoeren."
757
+
758
+ #: classes/class-fl-builder-service-sendinblue.php:76
759
+ #: classes/class-fl-builder-service-sendinblue.php:136
760
+ msgid "There was an error connecting to SendinBlue. Please try again."
761
+ msgstr ""
762
+ "Er is een fout opgetreden tijdens het verbinden met SendinBlue. Probeer het "
763
+ "nogmaals."
764
+
765
+ #: classes/class-fl-builder-service-sendinblue.php:79
766
+ #: classes/class-fl-builder-service-sendinblue.php:139
767
+ #, php-format
768
+ msgid "Error: Could not connect to SendinBlue. %s"
769
+ msgstr "Fout: Kon niet verbinden met SendinBlue. %s"
770
+
771
+ #: classes/class-fl-builder-service-sendinblue.php:103
772
+ msgid "Access Key"
773
+ msgstr "Access key"
774
+
775
+ #: classes/class-fl-builder-service-sendinblue.php:104
776
+ msgid ""
777
+ "Your Access Key can be found in your SendinBlue account under API & "
778
+ "Integration > Manager Your Keys > Version 2.0 > Access Key."
779
+ msgstr ""
780
+ "Je Access key kun je terugvinden in je SendinBlue account onder API & "
781
+ "Integration > Manager Your Keys > Version 2.0 > Access Key."
782
+
783
+ #: classes/class-fl-builder-service-sendinblue.php:198
784
+ msgid ""
785
+ "There was an error subscribing to SendinBlue. The account is no longer "
786
+ "connected."
787
+ msgstr ""
788
+ "Er is een fout opgetreden bij het registreren bij SendinBlue. Het account is "
789
+ "niet langer verbonden."
790
+
791
+ #: classes/class-fl-builder-service-sendinblue.php:220
792
+ msgid "There was an error subscribing to SendinBlue. Please try again."
793
+ msgstr ""
794
+ "Er is een fout opgetreden bij het aanmdelden bij SendinBlue. Probeer het nog "
795
+ "eens."
796
+
797
+ #: classes/class-fl-builder-service-sendinblue.php:223
798
+ #, php-format
799
+ msgid "Error: Could not subscribe to SendinBlue. %s"
800
+ msgstr "Fout: Kon niet verbinden met SendinBlue. %s"
801
+
802
+ #: classes/class-fl-builder-services.php:158
803
  msgctxt "Third party service such as MailChimp."
804
  msgid "Error: Missing service type."
805
  msgstr "Fout: Ontbrekende servicetype."
806
 
807
+ #: classes/class-fl-builder-services.php:161
808
  msgctxt "Connection data such as an API key."
809
  msgid "Error: Missing service data."
810
  msgstr "Fout: Ontbrekende service data."
811
 
812
+ #: classes/class-fl-builder-services.php:164
813
  msgctxt "Account name for a third party service such as MailChimp."
814
  msgid "Error: Missing account name."
815
  msgstr "Fout: Ontbrekende accountnaam."
816
 
817
+ #: classes/class-fl-builder-services.php:173
818
  msgctxt "Account name for a third party service such as MailChimp."
819
  msgid "Error: An account with that name already exists."
820
  msgstr "Fout: er bestaat al een account met die naam."
821
 
822
+ #: classes/class-fl-builder-services.php:253
823
  msgid "Account Name"
824
  msgstr "Accountnaam"
825
 
826
+ #: classes/class-fl-builder-services.php:254
827
  msgid ""
828
  "Used to identify this connection within the accounts list and can be "
829
  "anything you like."
831
  "Gebruikt om deze verbinding in de lijst met gebruikersaccounts te "
832
  "identificeren en kan alles zijn wat je wil."
833
 
834
+ #: classes/class-fl-builder-services.php:267
835
  msgid "Connect"
836
  msgstr "Verbinden"
837
 
838
+ #: classes/class-fl-builder-services.php:295
839
  msgid "Add Account..."
840
+ msgstr "Account toevoegen..."
841
 
842
+ #: classes/class-fl-builder-services.php:302
843
  msgid "Account"
844
  msgstr "Account"
845
 
846
+ # @ fl-builder
847
+ #: classes/class-fl-builder-templates-override.php:46
848
+ msgid "Error! Please enter a number for the site ID."
849
+ msgstr "Fout! Voer een nummer in voor het site ID."
850
+
851
+ #: classes/class-fl-builder-templates-override.php:50
852
+ msgid "Error! A site with that ID doesn't exist."
853
+ msgstr "Fout: Een site met dat ID bestaat niet."
854
 
855
  # @ fl-builder
856
+ #: classes/class-fl-builder.php:836
857
  #, php-format
858
  msgctxt "Field name to add."
859
  msgid "Add %s"
860
+ msgstr "%s toevoegen"
861
 
862
  # @ fl-builder
863
+ #: classes/class-fl-builder.php:926 classes/class-fl-builder.php:928
864
  msgctxt "Custom post type label."
865
+ msgid "Templates"
866
+ msgstr "Templates"
867
 
868
  # @ fl-builder
869
+ #: classes/class-fl-builder.php:927 classes/class-fl-builder.php:929
870
  msgctxt "Custom post type label."
871
+ msgid "Template"
872
+ msgstr "Template"
873
 
874
  # @ fl-builder
875
+ #: classes/class-fl-builder.php:930
876
  msgctxt "Custom post type label."
877
  msgid "Add New"
878
  msgstr "Toevoegen"
879
 
880
  # @ fl-builder
881
+ #: classes/class-fl-builder.php:931
882
  msgctxt "Custom post type label."
883
+ msgid "Add New Template"
884
+ msgstr "Nieuwe template toevoegen"
885
 
886
  # @ fl-builder
887
+ #: classes/class-fl-builder.php:932
888
  msgctxt "Custom post type label."
889
+ msgid "New Template"
890
+ msgstr "Nieuwe template"
891
 
892
+ #: classes/class-fl-builder.php:933
 
893
  msgctxt "Custom post type label."
894
+ msgid "Edit Template"
895
+ msgstr "Bewerk template"
896
 
897
  # @ fl-builder
898
+ #: classes/class-fl-builder.php:934
899
  msgctxt "Custom post type label."
900
+ msgid "View Template"
901
+ msgstr "Bekijk template"
902
 
903
  # @ fl-builder
904
+ #: classes/class-fl-builder.php:935
905
  msgctxt "Custom post type label."
906
+ msgid "All Templates"
907
+ msgstr "Alle templates"
908
 
909
  # @ fl-builder
910
+ #: classes/class-fl-builder.php:936
911
  msgctxt "Custom post type label."
912
+ msgid "Search Templates"
913
+ msgstr "Zoeken templates"
914
 
915
  # @ fl-builder
916
+ #: classes/class-fl-builder.php:937
917
  msgctxt "Custom post type label."
918
+ msgid "Parent Templates:"
919
+ msgstr "Bovenliggende templates:"
920
 
921
  # @ fl-builder
922
+ #: classes/class-fl-builder.php:938
923
  msgctxt "Custom post type label."
924
+ msgid "No templates found."
925
+ msgstr "Geen templates gevonden."
926
 
927
  # @ fl-builder
928
+ #: classes/class-fl-builder.php:939
929
  msgctxt "Custom post type label."
930
+ msgid "No templates found in Trash."
931
+ msgstr "Geen templates in prullenbak gevonden."
932
+
933
+ # @ fl-builder
934
+ #: classes/class-fl-builder.php:953 classes/class-fl-builder.php:963
935
+ msgctxt "Custom taxonomy label."
936
+ msgid "Categories"
937
+ msgstr "Categorieën"
938
+
939
+ #: classes/class-fl-builder.php:954
940
+ msgctxt "Custom taxonomy label."
941
+ msgid "Category"
942
+ msgstr "Categorie"
943
+
944
+ # @ fl-builder
945
+ #: classes/class-fl-builder.php:955
946
+ msgctxt "Custom taxonomy label."
947
+ msgid "Search Categories"
948
+ msgstr "Zoek categorie"
949
+
950
+ # @ fl-builder
951
+ #: classes/class-fl-builder.php:956
952
+ msgctxt "Custom taxonomy label."
953
+ msgid "All Categories"
954
+ msgstr "Alle categorieën"
955
+
956
+ # @ fl-builder
957
+ #: classes/class-fl-builder.php:957
958
+ msgctxt "Custom taxonomy label."
959
+ msgid "Parent Category"
960
+ msgstr "Bovenliggende categorie"
961
+
962
+ # @ fl-builder
963
+ #: classes/class-fl-builder.php:958
964
+ msgctxt "Custom taxonomy label."
965
+ msgid "Parent Category:"
966
+ msgstr "Bovenliggende categorie:"
967
+
968
+ #: classes/class-fl-builder.php:959
969
+ msgctxt "Custom taxonomy label."
970
+ msgid "Edit Category"
971
+ msgstr "Bewerk categorie"
972
+
973
+ # @ fl-builder
974
+ #: classes/class-fl-builder.php:960
975
+ msgctxt "Custom taxonomy label."
976
+ msgid "Update Category"
977
+ msgstr "Categorie bijwerken"
978
+
979
+ #: classes/class-fl-builder.php:961
980
+ msgctxt "Custom taxonomy label."
981
+ msgid "Add New Category"
982
+ msgstr "Nieuwe categorie"
983
+
984
+ #: classes/class-fl-builder.php:962
985
+ msgctxt "Custom taxonomy label."
986
+ msgid "New Category Name"
987
+ msgstr "Nieuwe categorienaam"
988
 
989
  # @ fl-builder
990
+ #: classes/class-fl-builder.php:1419 includes/js-config.php:69
991
  #, php-format
992
  msgctxt "%s stands for module name."
993
  msgid "%s Settings"
994
+ msgstr "%s instellingen"
995
 
996
  # @ fl-builder
997
  #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
1001
  # @ fl-builder
1002
  #: includes/admin-posts.php:7
1003
  #, php-format
1004
+ msgctxt ""
1005
+ "The first %s stands for custom branded \"Page Builder\" name. The second %s "
1006
+ "stands for the post type name."
1007
+ msgid "%s is currently active for this %s."
1008
+ msgstr "%s is momenteel actief voor deze %s."
1009
 
1010
  # @ fl-builder
1011
  #: includes/admin-posts.php:8
1072
 
1073
  #: includes/admin-settings-cache.php:19
1074
  msgid "Clear Cache"
1075
+ msgstr "Wis cache"
1076
 
1077
  # @ fl-builder
1078
  #: includes/admin-settings-editing.php:3
1083
  #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
1084
  #: includes/admin-settings-modules.php:10
1085
  #: includes/admin-settings-post-types.php:10
1086
+ #: includes/admin-settings-templates.php:16
1087
  msgid "Override network settings?"
1088
  msgstr "Netwerkinstellingen overschrijven?"
1089
 
1100
 
1101
  #: includes/admin-settings-editing.php:22
1102
  msgid "Save Editing Settings"
1103
+ msgstr "Bewaar bewerkinstellingen"
1104
 
1105
  # @ fl-builder
1106
  #: includes/admin-settings-help-button.php:8
1107
  msgid "Help Button Settings"
1108
+ msgstr "Help knop Instellingen"
1109
 
1110
  # @ fl-builder
1111
  #: includes/admin-settings-help-button.php:17
1112
  msgid "Enable Help Button"
1113
+ msgstr "Activeer help knop"
1114
 
1115
  # @ fl-builder
1116
  #: includes/admin-settings-help-button.php:23
1117
  msgid "Help Tour"
1118
+ msgstr "Help rondleiding"
1119
 
1120
  # @ fl-builder
1121
  #: includes/admin-settings-help-button.php:27
1122
  msgid "Enable Help Tour"
1123
+ msgstr "Activeer help rondleiding"
1124
 
1125
  # @ fl-builder
1126
  #: includes/admin-settings-help-button.php:31
1127
  msgid "Help Video"
1128
+ msgstr "Help video"
1129
 
1130
  # @ fl-builder
1131
  #: includes/admin-settings-help-button.php:35
1132
  msgid "Enable Help Video"
1133
+ msgstr "Activeer help video"
1134
 
1135
  # @ fl-builder
1136
  #: includes/admin-settings-help-button.php:39
1137
  msgid "Help Video Embed Code"
1138
+ msgstr "Help video embed Code"
1139
 
1140
  # @ fl-builder
1141
  #: includes/admin-settings-help-button.php:45
1145
  # @ fl-builder
1146
  #: includes/admin-settings-help-button.php:49
1147
  msgid "Enable Knowledge Base"
1148
+ msgstr "Activeer kennisbank"
1149
 
1150
  # @ fl-builder
1151
  #: includes/admin-settings-help-button.php:53
1160
  # @ fl-builder
1161
  #: includes/admin-settings-help-button.php:63
1162
  msgid "Enable Forums"
1163
+ msgstr "Activeer forums"
1164
 
1165
  # @ fl-builder
1166
  #: includes/admin-settings-help-button.php:67
1169
 
1170
  #: includes/admin-settings-help-button.php:77
1171
  msgid "Save Help Button Settings"
1172
+ msgstr "Help knop instellingen opslaan"
1173
 
1174
  # @ fl-builder
1175
  #: includes/admin-settings-icons.php:3
1176
  msgid "Icon Settings"
1177
+ msgstr "Icoon instellingen"
1178
 
1179
  # @ fl-builder
1180
  #: includes/admin-settings-icons.php:13
1200
 
1201
  #: includes/admin-settings-icons.php:59
1202
  msgid "Upload Icon Set"
1203
+ msgstr "Upload icoon-set"
1204
 
1205
  #: includes/admin-settings-icons.php:60
1206
  msgid "Save Icon Settings"
1207
+ msgstr "Icon instellingen opslaan"
1208
 
1209
  #: includes/admin-settings-js-config.php:4
1210
  msgid "Select File"
1269
  msgid "Save Post Types"
1270
  msgstr "Post Type Opslaan"
1271
 
1272
+ #: includes/admin-settings-templates-override.php:2
1273
+ #: includes/admin-settings-templates-override.php:8
1274
+ #: includes/admin-settings-templates-override.php:13
1275
+ msgid "Override Core Templates"
1276
+ msgstr "Core templates overschrijven"
1277
+
1278
+ #: includes/admin-settings-templates-override.php:3
1279
+ msgid ""
1280
+ "Enter the ID of a site on the network whose templates should override core "
1281
+ "builder templates. Leave this field blank if you do not wish to override "
1282
+ "core templates."
1283
+ msgstr ""
1284
+ "Voer het ID van een netwerk site in waarvan je de templates de core builder "
1285
+ "templates wilt laten overschrijven. Laat dit veld leeg als je de core "
1286
+ "templates niet wilt overschrijven."
1287
+
1288
+ #: includes/admin-settings-templates-override.php:9
1289
+ msgid ""
1290
+ "Use this setting to override core builder templates with your templates."
1291
+ msgstr ""
1292
+ "Gebruik deze optie om de core templates te overschrijven met je eigen "
1293
+ "templates."
1294
+
1295
  # @ fl-builder
1296
+ #: includes/admin-settings-templates.php:9
1297
  msgid "Template Settings"
1298
  msgstr "Template Instellingen"
1299
 
1300
  # @ fl-builder
1301
+ #: includes/admin-settings-templates.php:22
1302
+ msgid "Enable Templates"
1303
+ msgstr "Templates activeren"
1304
 
1305
  # @ fl-builder
1306
  #: includes/admin-settings-templates.php:23
1307
+ msgid ""
1308
+ "Use this setting to enable or disable templates in the builder interface."
1309
+ msgstr ""
1310
+ "Gebruik deze optie om templates in of uit te schakelen voor de builder."
1311
+
1312
+ # @ fl-builder
1313
+ #: includes/admin-settings-templates.php:25
1314
  msgid "Enable All Templates"
1315
  msgstr "Alle Layout Templates Activeren"
1316
 
1317
  # @ fl-builder
1318
+ #: includes/admin-settings-templates.php:26
1319
  msgid "Enable Core Templates Only"
1320
  msgstr "Enkel Core Templates"
1321
 
1322
  # @ fl-builder
1323
+ #: includes/admin-settings-templates.php:27
1324
  msgid "Enable User Templates Only"
1325
  msgstr "Enkel Gebruikers Templates"
1326
 
1327
  # @ fl-builder
1328
+ #: includes/admin-settings-templates.php:28
1329
  msgid "Disable All Templates"
1330
  msgstr "Alle Templates Uitschakelen"
1331
 
1332
+ # @ fl-builder
1333
+ #: includes/admin-settings-templates.php:31
1334
+ #: includes/admin-settings-templates.php:36
1335
+ msgid "Enable Templates Admin"
1336
+ msgstr "Templates admin activeren"
1337
+
1338
+ #: includes/admin-settings-templates.php:32
1339
+ msgid "Use this setting to edit builder templates in the WordPress admin."
1340
+ msgstr ""
1341
+ "Gebruik deze optie om de builder templates in de WordPress admin aan te "
1342
+ "passen."
1343
+
1344
+ #: includes/admin-settings-templates.php:50
1345
  msgid "Save Template Settings"
1346
  msgstr "Template Instellingen Opslaan"
1347
 
1391
  msgid "Learn More"
1392
  msgstr "Leer Meer"
1393
 
1394
+ # @ fl-builder
1395
+ #: includes/column-settings.php:4 includes/js-config.php:23
1396
+ msgid "Column Settings"
1397
+ msgstr "Kolom Instellingen"
1398
 
1399
+ # @ fl-builder
1400
+ #: includes/column-settings.php:7 includes/module-settings.php:87
1401
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
1402
+ #: modules/button/button.php:117 modules/button/button.php:155
1403
+ #: modules/button/button.php:159 modules/callout/callout.php:242
1404
+ #: modules/callout/callout.php:554
1405
+ #: modules/content-slider/content-slider.php:426
1406
+ #: modules/content-slider/content-slider.php:667 modules/cta/cta.php:102
1407
+ #: modules/cta/cta.php:309 modules/heading/heading.php:69
1408
+ #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1409
+ #: modules/post-carousel/post-carousel.php:389
1410
+ #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:574
1411
+ #: modules/pricing-table/pricing-table.php:43
1412
+ #: modules/pricing-table/pricing-table.php:155
1413
+ #: modules/separator/separator.php:72
1414
+ #: modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
1415
+ msgid "Style"
1416
+ msgstr "Stijl"
1417
 
1418
  # @ fl-builder
1419
+ #: includes/column-settings.php:14
1420
+ msgid "Column Width"
1421
+ msgstr "Kolom Breedte"
1422
+
1423
+ # @ fl-builder
1424
+ #: includes/column-settings.php:26 modules/button/button.php:66
1425
+ #: modules/callout/callout.php:226 modules/callout/callout.php:479
1426
+ #: modules/callout/callout.php:495
1427
+ #: modules/content-slider/content-slider.php:383
1428
+ #: modules/content-slider/content-slider.php:617 modules/cta/cta.php:85
1429
+ #: modules/cta/cta.php:222 modules/post-slider/post-slider.php:617
1430
+ msgid "Text"
1431
+ msgstr "Tekst"
1432
+
1433
+ # @ fl-builder
1434
+ #: includes/column-settings.php:30 includes/column-settings.php:93
1435
+ #: includes/column-settings.php:248 includes/row-settings.php:133
1436
+ #: includes/row-settings.php:427 modules/callout/callout.php:392
1437
+ #: modules/content-slider/content-slider.php:338
1438
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1439
+ #: modules/separator/separator.php:34
1440
+ msgid "Color"
1441
+ msgstr "Kleur"
1442
+
1443
+ # @ fl-builder
1444
+ #: includes/column-settings.php:38 includes/row-settings.php:60
1445
+ #: modules/post-carousel/post-carousel.php:401
1446
+ #: modules/post-slider/post-slider.php:694
1447
+ msgid "Link Color"
1448
+ msgstr "Link kleur"
1449
+
1450
+ # @ fl-builder
1451
+ #: includes/column-settings.php:46 includes/row-settings.php:68
1452
+ #: modules/post-carousel/post-carousel.php:406
1453
+ #: modules/post-slider/post-slider.php:710
1454
+ msgid "Link Hover Color"
1455
+ msgstr "Link hover kleur"
1456
+
1457
+ # @ fl-builder
1458
+ #: includes/column-settings.php:54 includes/row-settings.php:76
1459
+ msgid "Heading Color"
1460
+ msgstr "Koptekst kleur"
1461
+
1462
+ # @ fl-builder
1463
+ #: includes/column-settings.php:63 includes/row-settings.php:85
1464
+ #: modules/post-slider/post-slider.php:462
1465
+ msgid "Background"
1466
+ msgstr "Achtergrond"
1467
+
1468
+ # @ fl-builder
1469
+ #: includes/column-settings.php:67 includes/column-settings.php:215
1470
+ #: includes/row-settings.php:89 includes/row-settings.php:394
1471
+ #: modules/callout/callout.php:475
1472
+ #: modules/content-slider/content-slider.php:332
1473
+ #: modules/content-slider/content-slider.php:379
1474
+ #: modules/content-slider/content-slider.php:597
1475
+ #: modules/content-slider/content-slider.php:739
1476
+ #: modules/slideshow/slideshow.php:347
1477
+ msgid "Type"
1478
+ msgstr "Type"
1479
+
1480
+ # @ fl-builder
1481
+ #: includes/column-settings.php:70 includes/row-settings.php:92
1482
+ #: modules/content-slider/content-slider.php:339
1483
+ msgctxt "Background type."
1484
+ msgid "None"
1485
+ msgstr "Niet"
1486
+
1487
+ # @ fl-builder
1488
+ #: includes/column-settings.php:71 includes/row-settings.php:93
1489
+ msgctxt "Background type."
1490
+ msgid "Color"
1491
+ msgstr "Kleur"
1492
+
1493
+ # @ fl-builder
1494
+ #: includes/column-settings.php:72 includes/row-settings.php:94
1495
+ msgctxt "Background type."
1496
+ msgid "Photo"
1497
+ msgstr "Afbeelding"
1498
+
1499
+ # @ fl-builder
1500
+ #: includes/column-settings.php:89 includes/row-settings.php:129
1501
+ #: modules/button/button.php:124 modules/callout/callout.php:405
1502
+ #: modules/callout/callout.php:519
1503
+ #: modules/content-slider/content-slider.php:364
1504
+ #: modules/content-slider/content-slider.php:640 modules/cta/cta.php:198
1505
+ #: modules/cta/cta.php:274 modules/icon-group/icon-group.php:64
1506
+ #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
1507
+ msgid "Background Color"
1508
+ msgstr "Achtergrondkleur"
1509
+
1510
+ # @ fl-builder
1511
+ #: includes/column-settings.php:101 includes/column-settings.php:256
1512
+ #: includes/row-settings.php:141 includes/row-settings.php:435
1513
+ #: modules/separator/separator.php:44
1514
+ msgid "Opacity"
1515
+ msgstr "Dichtheid"
1516
+
1517
+ # @ fl-builder
1518
+ #: includes/column-settings.php:113 includes/row-settings.php:153
1519
+ #: modules/content-slider/content-slider.php:360
1520
+ msgid "Background Photo"
1521
+ msgstr "Achtergrond Afbeelding"
1522
+
1523
+ # @ fl-builder
1524
+ #: includes/column-settings.php:117 includes/row-settings.php:157
1525
+ #: includes/row-settings.php:345 modules/callout/callout.php:317
1526
+ #: modules/callout/callout.php:333 modules/callout/callout.php:337
1527
+ #: modules/content-slider/content-slider.php:336
1528
+ #: modules/content-slider/content-slider.php:405
1529
+ #: modules/content-slider/content-slider.php:755 modules/photo/photo.php:25
1530
+ #: modules/photo/photo.php:408
1531
+ msgid "Photo"
1532
  msgstr "Afbeelding"
1533
 
1534
  # @ fl-builder
1535
+ #: includes/column-settings.php:124 includes/row-settings.php:164
1536
+ msgid "Repeat"
1537
+ msgstr "Herhaal"
1538
+
1539
+ # @ fl-builder
1540
+ #: includes/column-settings.php:127 includes/row-settings.php:167
1541
+ msgctxt "Background repeat."
1542
+ msgid "None"
1543
+ msgstr "Niet"
1544
+
1545
+ # @ fl-builder
1546
+ #: includes/column-settings.php:128 includes/row-settings.php:168
1547
+ msgctxt "Background repeat."
1548
+ msgid "Tile"
1549
+ msgstr "Tegel"
1550
+
1551
+ # @ fl-builder
1552
+ #: includes/column-settings.php:129 includes/row-settings.php:169
1553
+ msgctxt "Background repeat."
1554
+ msgid "Horizontal"
1555
+ msgstr "Horizontaal"
1556
+
1557
+ # @ fl-builder
1558
+ #: includes/column-settings.php:130 includes/row-settings.php:170
1559
+ msgctxt "Background repeat."
1560
+ msgid "Vertical"
1561
+ msgstr "Verticaal"
1562
+
1563
+ # @ fl-builder
1564
+ #: includes/column-settings.php:132 includes/row-settings.php:172
1565
+ msgid ""
1566
+ "Repeat applies to how the image should display in the background. Choosing "
1567
+ "none will display the image as uploaded. Tile will repeat the image as many "
1568
+ "times as needed to fill the background horizontally and vertically. You can "
1569
+ "also specify the image to only repeat horizontally or vertically."
1570
+ msgstr ""
1571
+ "Herhaal is van toepassing op hoe de afbeelding in de achtergrond moet worden "
1572
+ "weergegeven. Indien voor niet wordt gekozen zal de afbeelding worden "
1573
+ "weergegeven zoals geüpload. Bij tegel wordt het beeld zo vaak herhaalt als "
1574
+ "nodig is om de rij horizontaal en verticaal te vullen. Je kunt de afbeelding "
1575
+ "ook alleen horizontaal of verticaal laten herhalen."
1576
+
1577
+ # @ fl-builder
1578
+ #: includes/column-settings.php:139 includes/row-settings.php:179
1579
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
1580
+ #: modules/content-slider/content-slider.php:473
1581
+ #: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:621
1582
+ #: modules/post-slider/post-slider.php:640
1583
  msgid "Position"
1584
  msgstr "Positie"
1585
 
1586
+ # @ fl-builder
1587
+ #: includes/column-settings.php:142 includes/row-settings.php:182
1588
+ msgid "Left Top"
1589
+ msgstr "Links Boven"
1590
 
1591
  # @ fl-builder
1592
+ #: includes/column-settings.php:143 includes/row-settings.php:183
1593
+ msgid "Left Center"
1594
+ msgstr "Links Midden"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1595
 
1596
  # @ fl-builder
1597
+ #: includes/column-settings.php:144 includes/row-settings.php:184
1598
+ msgid "Left Bottom"
1599
+ msgstr "Links Onder"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1600
 
1601
+ # @ fl-builder
1602
+ #: includes/column-settings.php:145 includes/row-settings.php:185
1603
+ msgid "Right Top"
1604
+ msgstr "Recht Boven"
1605
 
1606
+ # @ fl-builder
1607
+ #: includes/column-settings.php:146 includes/row-settings.php:186
1608
+ msgid "Right Center"
1609
+ msgstr "Rechts Midden"
1610
+
1611
+ # @ fl-builder
1612
+ #: includes/column-settings.php:147 includes/row-settings.php:187
1613
+ msgid "Right Bottom"
1614
+ msgstr "Recht Onder"
1615
 
1616
+ # @ fl-builder
1617
+ #: includes/column-settings.php:148 includes/row-settings.php:188
1618
+ msgid "Center Top"
1619
+ msgstr "Midden Boven"
1620
 
1621
+ # @ fl-builder
1622
+ #: includes/column-settings.php:149 includes/row-settings.php:189
1623
+ #: modules/button/button.php:227 modules/callout/callout.php:252
1624
+ #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1625
+ #: modules/heading/heading.php:90 modules/heading/heading.php:162
1626
+ #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1627
+ #: modules/photo/photo.php:434 modules/social-buttons/social-buttons.php:100
1628
+ msgid "Center"
1629
+ msgstr "Gecentreerd"
1630
 
1631
+ # @ fl-builder
1632
+ #: includes/column-settings.php:150 includes/row-settings.php:190
1633
+ msgid "Center Bottom"
1634
+ msgstr "Midden Onder"
1635
 
1636
+ # @ fl-builder
1637
+ #: includes/column-settings.php:152 includes/row-settings.php:192
1638
+ msgid "Position will tell the image where it should sit in the background."
1639
+ msgstr ""
1640
+ "Met de positie wordt bepaald waar de afbeelding in de achtergrond wordt "
1641
+ "geplaatst."
1642
 
1643
+ # @ fl-builder
1644
+ #: includes/column-settings.php:159 includes/row-settings.php:199
1645
+ msgid "Attachment"
1646
+ msgstr "Gehechtheid"
1647
 
1648
+ # @ fl-builder
1649
+ #: includes/column-settings.php:162 includes/row-settings.php:202
1650
+ #: modules/post-grid/post-grid.php:78
1651
+ msgid "Scroll"
1652
+ msgstr "Scroll"
1653
 
1654
  # @ fl-builder
1655
+ #: includes/column-settings.php:163 includes/global-settings.php:69
1656
+ #: includes/global-settings.php:83 includes/row-settings.php:19
1657
+ #: includes/row-settings.php:37 includes/row-settings.php:203
1658
+ msgid "Fixed"
1659
+ msgstr "Vastgezet"
1660
 
1661
  # @ fl-builder
1662
+ #: includes/column-settings.php:165 includes/row-settings.php:205
1663
+ msgid ""
1664
+ "Attachment will specify how the image reacts when scrolling a page. When "
1665
+ "scrolling is selected, the image will scroll with page scrolling. This is "
1666
+ "the default setting. Fixed will allow the image to scroll within the "
1667
+ "background if fill is selected in the scale setting."
1668
+ msgstr ""
1669
+ "Bijlage geeft aan hoe het beeld reageert tijdens het scrollen van een "
1670
+ "pagina. Indien scrollen is geselecteerd, zal het beeld met de pagina "
1671
+ "meescrollen. Dit is de standaardinstelling. Vast zal het beeld in de "
1672
+ "achtergrond laten scrollen als vullen is geselecteerd in de bijschalen optie."
1673
 
1674
  # @ fl-builder
1675
+ #: includes/column-settings.php:172 includes/row-settings.php:212
1676
+ msgid "Scale"
1677
+ msgstr "Schaal"
1678
 
1679
  # @ fl-builder
1680
+ #: includes/column-settings.php:175 includes/row-settings.php:215
1681
+ msgctxt "Background scale."
1682
+ msgid "None"
1683
+ msgstr "Geen"
1684
 
1685
  # @ fl-builder
1686
+ #: includes/column-settings.php:176 includes/row-settings.php:216
1687
+ msgid "Fit"
1688
+ msgstr "Passend"
 
 
 
 
 
 
 
 
 
 
 
 
1689
 
1690
  # @ fl-builder
1691
+ #: includes/column-settings.php:177 includes/row-settings.php:217
1692
+ msgid "Fill"
1693
+ msgstr "Uitvullen"
1694
 
1695
  # @ fl-builder
1696
+ #: includes/column-settings.php:179 includes/row-settings.php:219
1697
+ msgid ""
1698
+ "Scale applies to how the image should display in the background. You can "
1699
+ "select either fill or fit to the background."
1700
+ msgstr ""
1701
+ "Bijschalen is van toepassing op hoe de afbeelding in de achtergrond moet "
1702
+ "worden weergegeven. Je kunt kiezen uit uitvullen of aanpassen aan de "
1703
+ "achtergrond."
1704
 
1705
  # @ fl-builder
1706
+ #: includes/column-settings.php:187 includes/row-settings.php:366
1707
+ msgid "Background Overlay"
1708
+ msgstr "Achtergrond Overlay"
 
 
 
 
 
 
1709
 
1710
  # @ fl-builder
1711
+ #: includes/column-settings.php:191 includes/row-settings.php:370
1712
+ msgid "Overlay Color"
1713
+ msgstr "Overlay Kleur"
 
 
 
 
 
 
1714
 
1715
  # @ fl-builder
1716
+ #: includes/column-settings.php:199 includes/row-settings.php:378
1717
+ msgid "Overlay Opacity"
1718
+ msgstr "Overlay Dekking"
 
 
1719
 
1720
  # @ fl-builder
1721
+ #: includes/column-settings.php:211 includes/row-settings.php:390
1722
  msgid "Border"
1723
  msgstr "Rand"
1724
 
1725
  # @ fl-builder
1726
+ #: includes/column-settings.php:217 includes/row-settings.php:396
 
 
 
 
 
 
 
 
 
 
 
1727
  msgid ""
1728
  "The type of border to use. Double borders must have a width of at least 3px "
1729
  "to render properly."
1732
  "breedte van 3px te hebben om goed te worden weergegeven."
1733
 
1734
  # @ fl-builder
1735
+ #: includes/column-settings.php:219 includes/row-settings.php:398
1736
  msgctxt "Border type."
1737
  msgid "None"
1738
  msgstr "Geen"
1739
 
1740
  # @ fl-builder
1741
+ #: includes/column-settings.php:220 includes/row-settings.php:399
1742
  #: modules/separator/separator.php:75
1743
  msgctxt "Border type."
1744
  msgid "Solid"
1745
  msgstr "Vast"
1746
 
1747
  # @ fl-builder
1748
+ #: includes/column-settings.php:221 includes/row-settings.php:400
1749
  #: modules/separator/separator.php:76
1750
  msgctxt "Border type."
1751
  msgid "Dashed"
1752
  msgstr "Gestreept"
1753
 
1754
  # @ fl-builder
1755
+ #: includes/column-settings.php:222 includes/row-settings.php:401
1756
  #: modules/separator/separator.php:77
1757
  msgctxt "Border type."
1758
  msgid "Dotted"
1759
  msgstr "Gestippeld"
1760
 
1761
  # @ fl-builder
1762
+ #: includes/column-settings.php:223 includes/row-settings.php:402
1763
  #: modules/separator/separator.php:78
1764
  msgctxt "Border type."
1765
  msgid "Double"
1766
  msgstr "Dubbel"
1767
 
1768
  # @ fl-builder
1769
+ #: includes/column-settings.php:267 includes/row-settings.php:446
1770
  msgid "Top Width"
1771
  msgstr "Boven Breedte"
1772
 
1773
  # @ fl-builder
1774
+ #: includes/column-settings.php:279 includes/row-settings.php:458
1775
  msgid "Bottom Width"
1776
  msgstr "Onder Breedte"
1777
 
1778
  # @ fl-builder
1779
+ #: includes/column-settings.php:291 includes/row-settings.php:470
1780
  msgid "Left Width"
1781
  msgstr "Links Breedte"
1782
 
1783
  # @ fl-builder
1784
+ #: includes/column-settings.php:303 includes/row-settings.php:482
1785
  msgid "Right Width"
1786
  msgstr "Rechts Breedte"
1787
 
1788
  # @ fl-builder
1789
+ #: includes/column-settings.php:318 includes/module-settings.php:6
1790
+ #: includes/row-settings.php:497 modules/content-slider/content-slider.php:274
1791
  msgid "Advanced"
1792
  msgstr "Geavanceerd"
1793
 
1794
  # @ fl-builder
1795
+ #: includes/column-settings.php:321 includes/global-settings.php:41
1796
  #: includes/global-settings.php:94 includes/module-settings.php:9
1797
+ #: includes/row-settings.php:500
1798
  msgid "Margins"
1799
  msgstr "Marges"
1800
 
1801
  # @ fl-builder
1802
+ #: includes/column-settings.php:325 includes/column-settings.php:378
1803
+ #: includes/module-settings.php:13 includes/row-settings.php:504
1804
+ #: includes/row-settings.php:557 modules/slideshow/slideshow.php:483
1805
  msgid "Top"
1806
  msgstr "Boven"
1807
 
1808
  # @ fl-builder
1809
+ #: includes/column-settings.php:337 includes/column-settings.php:390
1810
+ #: includes/module-settings.php:25 includes/row-settings.php:516
1811
+ #: includes/row-settings.php:569 modules/post-slider/post-slider.php:627
1812
+ #: modules/slideshow/slideshow.php:482
1813
  msgid "Bottom"
1814
  msgstr "Onder"
1815
 
1816
  # @ fl-builder
1817
+ #: includes/column-settings.php:349 includes/column-settings.php:402
1818
+ #: includes/module-settings.php:37 includes/row-settings.php:528
1819
+ #: includes/row-settings.php:581 modules/button/button.php:228
1820
+ #: modules/callout/callout.php:253
1821
+ #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1822
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
1823
  #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1824
+ #: modules/photo/photo.php:433 modules/post-slider/post-slider.php:625
1825
+ #: modules/post-slider/post-slider.php:644
1826
+ #: modules/social-buttons/social-buttons.php:101
1827
  msgid "Left"
1828
  msgstr "Links"
1829
 
1830
  # @ fl-builder
1831
+ #: includes/column-settings.php:361 includes/column-settings.php:414
1832
+ #: includes/module-settings.php:49 includes/row-settings.php:540
1833
+ #: includes/row-settings.php:593 modules/button/button.php:229
1834
+ #: modules/callout/callout.php:254
1835
+ #: modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
1836
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
1837
  #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
1838
+ #: modules/photo/photo.php:435 modules/post-slider/post-slider.php:626
1839
+ #: modules/post-slider/post-slider.php:645
1840
+ #: modules/social-buttons/social-buttons.php:102
1841
  msgid "Right"
1842
  msgstr "Rechts"
1843
 
1844
  # @ fl-builder
1845
+ #: includes/column-settings.php:374 includes/global-settings.php:49
1846
+ #: includes/row-settings.php:553 modules/button/button.php:242
1847
+ #: modules/callout/callout.php:609
1848
+ #: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
1849
+ #: modules/subscribe-form/subscribe-form.php:273
1850
  msgid "Padding"
1851
  msgstr "Padding"
1852
 
1853
  # @ fl-builder
1854
+ #: includes/column-settings.php:427 includes/global-settings.php:103
1855
+ #: includes/module-settings.php:62 includes/row-settings.php:606
1856
  msgid "Responsive Layout"
1857
  msgstr "Responsive Layout"
1858
 
1859
  # @ fl-builder
1860
+ #: includes/column-settings.php:431 includes/module-settings.php:66
1861
+ #: includes/row-settings.php:610 modules/slideshow/slideshow.php:298
1862
  msgid "Display"
1863
  msgstr "Weergave"
1864
 
1865
  # @ fl-builder
1866
+ #: includes/column-settings.php:433 includes/module-settings.php:68
1867
+ #: includes/row-settings.php:612
1868
  msgid "Always"
1869
  msgstr "Altijd"
1870
 
1871
  # @ fl-builder
1872
+ #: includes/column-settings.php:434 includes/module-settings.php:69
1873
+ #: includes/row-settings.php:613
1874
  msgid "Large Devices Only"
1875
  msgstr "Alleen Grote Apparaten"
1876
 
1877
  # @ fl-builder
1878
+ #: includes/column-settings.php:435 includes/module-settings.php:70
1879
+ #: includes/row-settings.php:614
1880
  msgid "Large &amp; Medium Devices Only"
1881
  msgstr "Alleen Grote &amp; Medium Apparaten"
1882
 
1883
  # @ fl-builder
1884
+ #: includes/column-settings.php:436 includes/module-settings.php:71
1885
+ #: includes/row-settings.php:615
1886
  msgid "Medium Devices Only"
1887
  msgstr "Alleen Medium Apparaten"
1888
 
1889
  # @ fl-builder
1890
+ #: includes/column-settings.php:437 includes/module-settings.php:72
1891
+ #: includes/row-settings.php:616
1892
  msgid "Medium &amp; Small Devices Only"
1893
  msgstr "Alleen Medium &amp; Kleine Apparaten"
1894
 
1895
  # @ fl-builder
1896
+ #: includes/column-settings.php:438 includes/module-settings.php:73
1897
+ #: includes/row-settings.php:617
1898
  msgid "Small Devices Only"
1899
  msgstr "Alleen Kleine Apparaten"
1900
 
1901
  # @ fl-builder
1902
+ #: includes/column-settings.php:440
1903
  msgid "Choose whether to show or hide this column at different device sizes."
1904
  msgstr ""
1905
  "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
1906
  "afmetingen."
1907
 
1908
  # @ fl-builder
1909
+ #: includes/column-settings.php:447
1910
  msgid "Medium Device Width"
1911
  msgstr "Medium Apparaat Breedte"
1912
 
1913
  # @ fl-builder
1914
+ #: includes/column-settings.php:448
1915
  msgid "The width of this column on medium devices such as tablets."
1916
  msgstr "De breedte van deze kolom op medium apparaten zoals tablets."
1917
 
1918
  # @ fl-builder
1919
+ #: includes/column-settings.php:450 includes/column-settings.php:478
1920
+ #: modules/callout/callout.php:284
1921
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
1922
  #: modules/heading/heading.php:117 modules/heading/heading.php:144
1923
+ #: modules/heading/heading.php:174 modules/post-slider/post-slider.php:597
1924
  msgid "Default"
1925
  msgstr "Standaard"
1926
 
1927
  # @ fl-builder
1928
+ #: includes/column-settings.php:451 includes/column-settings.php:479
1929
+ #: modules/button/button.php:202 modules/callout/callout.php:285
1930
+ #: modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
1931
  #: modules/heading/heading.php:118 modules/heading/heading.php:145
1932
+ #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:598
1933
  #: modules/social-buttons/social-buttons.php:74
1934
  msgid "Custom"
1935
  msgstr "Aangepast"
1936
 
1937
  # @ fl-builder
1938
+ #: includes/column-settings.php:464
1939
  msgid "Custom Medium Device Width"
1940
  msgstr "Aangepaste Medium Apparaat Breedte"
1941
 
1942
  # @ fl-builder
1943
+ #: includes/column-settings.php:475
1944
  msgid "Small Device Width"
1945
  msgstr "Klein Apparaat Breedte"
1946
 
1947
  # @ fl-builder
1948
+ #: includes/column-settings.php:476
1949
  msgid "The width of this column on small devices such as phones."
1950
  msgstr "De breedte van deze kolom op kleine apparaten zoals telefoons."
1951
 
1952
  # @ fl-builder
1953
+ #: includes/column-settings.php:492
1954
  msgid "Custom Small Device Width"
1955
  msgstr "Aangepaste Kleine Apparaat Breedte"
1956
 
1957
  # @ fl-builder
1958
+ #: includes/column-settings.php:504 includes/module-settings.php:115
1959
+ #: includes/row-settings.php:627
1960
  msgid "CSS Selectors"
1961
  msgstr "CSS selectors"
1962
 
1963
  # @ fl-builder
1964
+ #: includes/column-settings.php:508 includes/loop-settings.php:28
1965
+ #: includes/module-settings.php:119 includes/row-settings.php:631
1966
  msgid "ID"
1967
  msgstr "ID"
1968
 
1969
  # @ fl-builder
1970
+ #: includes/column-settings.php:509
1971
  msgid ""
1972
  "A unique ID that will be applied to this column's HTML. Must start with a "
1973
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
1977
  "getallen bevatten. Geen spaties."
1978
 
1979
  # @ fl-builder
1980
+ #: includes/column-settings.php:516
1981
  msgid "CSS Class"
1982
  msgstr "CSS Class"
1983
 
1984
  # @ fl-builder
1985
+ #: includes/column-settings.php:517
1986
  msgid ""
1987
  "A class that will be applied to this column's HTML. Must start with a letter "
1988
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
2031
  # @ fl-builder
2032
  #: includes/field-link.php:7 includes/icon-selector.php:28
2033
  #: includes/js-config.php:19 includes/settings.php:63
2034
+ #: includes/template-selector.php:92
2035
  msgid "Cancel"
2036
  msgstr "Annuleren"
2037
 
2038
  # @ fl-builder
2039
+ #: includes/field-multiple-photos.php:20
2040
  #, php-format
2041
  msgid "1 Photo Selected"
2042
  msgid_plural "%d Photos Selected"
2044
  msgstr[1] "%d Afbeeldingen Geselecteerd"
2045
 
2046
  # @ fl-builder
2047
+ #: includes/field-multiple-photos.php:22
2048
  msgid "Create Gallery"
2049
  msgstr "Galerij Aanmaken"
2050
 
2051
  # @ fl-builder
2052
+ #: includes/field-multiple-photos.php:23
2053
  msgid "Edit Gallery"
2054
  msgstr "Bewerk Galerij"
2055
 
2056
  # @ fl-builder
2057
+ #: includes/field-multiple-photos.php:24
2058
  msgid "Add Photos"
2059
  msgstr "Afbeeldingen Toevoegen"
2060
 
2063
  msgid "Select Photo"
2064
  msgstr "Selecteer Afbeelding"
2065
 
2066
+ # @ fl-builder
2067
+ #: includes/field-photo.php:12 includes/template-selector.php:70
2068
+ msgid "Edit"
2069
+ msgstr "Bewerk"
2070
+
2071
  # @ fl-builder
2072
  #: includes/field-video.php:3 includes/js-config.php:68
2073
  msgid "Select Video"
2079
  msgstr "Vervang Video"
2080
 
2081
  # @ fl-builder
2082
+ #: includes/global-settings.php:7 includes/user-template-settings.php:7
2083
+ #: modules/accordion/accordion.php:110 modules/button/button.php:59
2084
+ #: modules/callout/callout.php:210 modules/contact-form/contact-form.php:58
2085
+ #: modules/content-slider/content-slider.php:191
2086
+ #: modules/content-slider/content-slider.php:315 modules/cta/cta.php:68
2087
+ #: modules/gallery/gallery.php:220 modules/heading/heading.php:26
 
2088
  #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
2089
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:384
2090
  #: modules/pricing-table/pricing-table.php:87
2091
  #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
2092
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
2093
  #: modules/social-buttons/social-buttons.php:64
2094
+ #: modules/subscribe-form/subscribe-form.php:87 modules/tabs/tabs.php:77
2095
  #: modules/testimonials/testimonials.php:30
2096
  #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
2097
  #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
2115
  msgid "Show"
2116
  msgstr "Toon"
2117
 
2118
+ # @ fl-builder
2119
+ #: includes/global-settings.php:18 includes/global-settings.php:110
2120
+ #: includes/global-settings.php:124 includes/row-settings.php:331
2121
+ #: modules/accordion/accordion.php:90 modules/callout/callout.php:421
2122
+ #: modules/content-slider/content-slider.php:210
2123
+ #: modules/content-slider/content-slider.php:224
2124
+ #: modules/content-slider/content-slider.php:258
2125
+ #: modules/content-slider/content-slider.php:267
2126
+ #: modules/content-slider/content-slider.php:538
2127
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
2128
+ #: modules/post-carousel/post-carousel.php:139
2129
+ #: modules/post-carousel/post-carousel.php:155
2130
+ #: modules/post-carousel/post-carousel.php:182
2131
+ #: modules/post-carousel/post-carousel.php:191
2132
+ #: modules/post-carousel/post-carousel.php:232
2133
+ #: modules/post-carousel/post-carousel.php:283
2134
+ #: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:356
2135
+ #: modules/post-slider/post-slider.php:381
2136
+ #: modules/post-slider/post-slider.php:408
2137
+ #: modules/post-slider/post-slider.php:417
2138
+ #: modules/post-slider/post-slider.php:734 modules/slideshow/slideshow.php:323
2139
+ #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
2140
+ #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
2141
+ #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
2142
+ #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
2143
+ #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
2144
+ #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
2145
+ #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
2146
+ #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
2147
+ #: modules/slideshow/slideshow.php:650
2148
+ #: modules/social-buttons/social-buttons.php:111
2149
+ #: modules/social-buttons/social-buttons.php:120
2150
+ #: modules/social-buttons/social-buttons.php:129
2151
+ #: modules/testimonials/testimonials.php:85
2152
+ #: modules/testimonials/testimonials.php:124
2153
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
2154
+ #: modules/video/video.php:123
2155
+ msgid "No"
2156
+ msgstr "Nee"
2157
+
2158
+ # @ fl-builder
2159
+ #: includes/global-settings.php:19 includes/global-settings.php:111
2160
+ #: includes/global-settings.php:125 includes/row-settings.php:332
2161
+ #: modules/accordion/accordion.php:89 modules/callout/callout.php:422
2162
+ #: modules/content-slider/content-slider.php:211
2163
+ #: modules/content-slider/content-slider.php:225
2164
+ #: modules/content-slider/content-slider.php:259
2165
+ #: modules/content-slider/content-slider.php:268
2166
+ #: modules/content-slider/content-slider.php:539
2167
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
2168
+ #: modules/post-carousel/post-carousel.php:140
2169
+ #: modules/post-carousel/post-carousel.php:156
2170
+ #: modules/post-carousel/post-carousel.php:183
2171
+ #: modules/post-carousel/post-carousel.php:192
2172
+ #: modules/post-carousel/post-carousel.php:233
2173
+ #: modules/post-carousel/post-carousel.php:282
2174
+ #: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:357
2175
+ #: modules/post-slider/post-slider.php:382
2176
+ #: modules/post-slider/post-slider.php:409
2177
+ #: modules/post-slider/post-slider.php:418
2178
+ #: modules/post-slider/post-slider.php:735 modules/slideshow/slideshow.php:324
2179
+ #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
2180
+ #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
2181
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
2182
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
2183
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
2184
+ #: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
2185
+ #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
2186
+ #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
2187
+ #: modules/slideshow/slideshow.php:651
2188
+ #: modules/social-buttons/social-buttons.php:110
2189
+ #: modules/social-buttons/social-buttons.php:119
2190
+ #: modules/social-buttons/social-buttons.php:128
2191
+ #: modules/testimonials/testimonials.php:86
2192
+ #: modules/testimonials/testimonials.php:125
2193
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
2194
+ #: modules/video/video.php:124
2195
+ msgid "Yes"
2196
+ msgstr "Ja"
2197
+
2198
  # @ fl-builder
2199
  #: includes/global-settings.php:26
2200
  msgid ""
2241
  msgid "Default Row Width"
2242
  msgstr "Standaard Rij Breedte"
2243
 
 
 
 
 
 
 
 
2244
  # @ fl-builder
2245
  #: includes/global-settings.php:70 includes/global-settings.php:84
2246
  #: includes/row-settings.php:20 includes/row-settings.php:38
2247
+ #: modules/button/button.php:201 modules/callout/callout.php:596
2248
  msgid "Full Width"
2249
  msgstr "Volledige Breedte"
2250
 
2372
  "Wil je deze rij echt verwijderen? Alle inhoud gegevens zullen definitief "
2373
  "verwijderd worden."
2374
 
2375
+ # @ fl-builder
2376
+ #: includes/js-config.php:30
2377
+ msgid "Do you really want to delete this template?"
2378
+ msgstr "Wilt je echt dit sjabloon verwijderen?"
2379
+
2380
  #: includes/js-config.php:31
2381
+ msgid "Discard Changes"
2382
+ msgstr "Wijzigingen weggooien"
2383
 
2384
  #: includes/js-config.php:32
2385
  msgid ""
2386
+ "Do you really want to discard these changes? All of your changes that are "
2387
+ "not published will be lost."
2388
  msgstr ""
2389
+ "Wil je de wijzigingen echt verwijderen? All je veranderingen die niet zijn "
2390
  "gepubliceerd zullen verloren gaan."
2391
 
2392
  # @ fl-builder
2393
+ #: includes/js-config.php:33 includes/ui.php:20 includes/ui.php:55
2394
  msgid "Done"
2395
  msgstr "Klaar"
2396
 
2495
  msgstr "OK"
2496
 
2497
  # @ fl-builder
2498
+ #: includes/js-config.php:56 modules/photo/photo.php:470
2499
  msgid "Photo Page"
2500
  msgstr "Afbeelding Pagina"
2501
 
2513
 
2514
  #: includes/js-config.php:60
2515
  msgid "Publish Changes"
2516
+ msgstr "Wijzigingen publiceren"
2517
 
2518
  #: includes/js-config.php:62
2519
  msgid "Row"
2529
  msgstr "Core Template Opslaan"
2530
 
2531
  # @ fl-builder
2532
+ #: includes/js-config.php:65 includes/user-template-settings.php:4
 
2533
  msgid "Save Template"
2534
  msgstr "Template Opslaan"
2535
 
2565
  msgid "Template Saved!"
2566
  msgstr "Template Opgeslagen!"
2567
 
2568
+ #: includes/js-config.php:77 modules/post-slider/post-slider.php:463
2569
  msgid "Thumbnail"
2570
  msgstr "Miniatuur"
2571
 
2602
  "en meer door rij-layouts te slepen naar de pagina."
2603
 
2604
  # @ fl-builder
2605
+ #: includes/js-config.php:84 includes/ui.php:22 includes/ui.php:60
2606
  msgid "Add Content"
2607
  msgstr "Inhoud Toevoegen"
2608
 
2741
  msgstr "Sorteer Op"
2742
 
2743
  # @ fl-builder
2744
+ #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
2745
+ #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:503
2746
  #: modules/woocommerce/woocommerce.php:189
2747
  msgid "Date"
2748
  msgstr "Datum"
2759
  msgstr "Titel"
2760
 
2761
  # @ fl-builder
2762
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
2763
+ #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:494
2764
  msgid "Author"
2765
  msgstr "Auteur"
2766
 
2887
 
2888
  # @ fl-builder
2889
  #: includes/module-settings.php:102
2890
+ #: modules/content-slider/content-slider.php:230
2891
+ #: modules/post-carousel/post-carousel.php:145
2892
+ #: modules/post-slider/post-slider.php:362
2893
  #: modules/testimonials/testimonials.php:91
2894
  msgid "Delay"
2895
  msgstr "Vertraging"
2896
 
2897
  # @ fl-builder
2898
+ #: includes/module-settings.php:106 includes/row-settings.php:290
2899
+ #: includes/row-settings.php:321 modules/content-slider/content-slider.php:234
2900
+ #: modules/content-slider/content-slider.php:251
2901
+ #: modules/post-carousel/post-carousel.php:148
2902
+ #: modules/post-carousel/post-carousel.php:164
2903
+ #: modules/post-slider/post-slider.php:365
2904
+ #: modules/post-slider/post-slider.php:390 modules/slideshow/slideshow.php:393
2905
+ #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
2906
  #: modules/testimonials/testimonials.php:95
2907
  #: modules/testimonials/testimonials.php:112
2908
  msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2925
  "getallen bevatten. Geen spaties."
2926
 
2927
  # @ fl-builder
2928
+ #: includes/module-settings.php:127 includes/row-settings.php:639
2929
  msgid "Class"
2930
  msgstr "Class"
2931
 
2941
  "bevatten. Meerdere klassen scheiden met een spatie."
2942
 
2943
  # @ fl-builder
2944
+ #: includes/row-settings.php:16 modules/button/button.php:197
2945
+ #: modules/content-slider/content-slider.php:484
2946
  msgid "Width"
2947
  msgstr "Breed"
2948
 
2972
  "Instellingen."
2973
 
2974
  # @ fl-builder
2975
+ #: includes/row-settings.php:48 modules/button/button.php:120
2976
+ #: modules/cta/cta.php:188 modules/heading/heading.php:72
2977
+ #: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2978
+ #: modules/post-carousel/post-carousel.php:392
2979
+ #: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:675
2980
+ msgid "Colors"
2981
+ msgstr "Kleuren"
 
 
 
 
 
 
 
 
2982
 
2983
  # @ fl-builder
2984
+ #: includes/row-settings.php:52 modules/button/button.php:139
2985
+ #: modules/callout/callout.php:534
2986
+ #: modules/content-slider/content-slider.php:529
2987
+ #: modules/content-slider/content-slider.php:651
2988
+ #: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192
2989
+ #: modules/cta/cta.php:289 modules/heading/heading.php:77
2990
+ #: modules/post-carousel/post-carousel.php:396
2991
+ #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:679
2992
+ #: modules/subscribe-form/subscribe-form.php:207
2993
+ msgid "Text Color"
2994
+ msgstr "Tekst kleur"
2995
 
2996
  # @ fl-builder
2997
+ #: includes/row-settings.php:95
2998
  msgctxt "Background type."
2999
  msgid "Video"
3000
  msgstr "Video"
3001
 
3002
  # @ fl-builder
3003
+ #: includes/row-settings.php:97
3004
  msgctxt "Background type."
3005
  msgid "Slideshow"
3006
  msgstr "Diavoorstelling"
3007
 
3008
  # @ fl-builder
3009
+ #: includes/row-settings.php:101
3010
  msgctxt "Background type."
3011
  msgid "Parallax"
3012
  msgstr "Parallax"
3013
 
3014
  # @ fl-builder
3015
+ #: includes/row-settings.php:227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3016
  msgid "Background Video"
3017
  msgstr "Achtergrond Video"
3018
 
3019
  # @ fl-builder
3020
+ #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
3021
  #: modules/video/video.php:19 modules/video/video.php:100
3022
  msgid "Video"
3023
  msgstr "Video"
3024
 
3025
  # @ fl-builder
3026
+ #: includes/row-settings.php:232
3027
  msgid ""
3028
  "An HTML5 video to use as the background of this row. Supported types are "
3029
  "MP4, WebM and Ogg."
3032
  "Ondersteunde types zijn MP4, WebM en Ogg."
3033
 
3034
  # @ fl-builder
3035
+ #: includes/row-settings.php:239
3036
  msgid "Fallback Photo"
3037
  msgstr "Terugval Afbeelding"
3038
 
3039
  # @ fl-builder
3040
+ #: includes/row-settings.php:240
3041
  msgid "A photo that will be displayed if the video fails to load."
3042
  msgstr ""
3043
  "Een afbeelding die wordt weergegeven als de video niet kan worden geladen."
3044
 
3045
  # @ fl-builder
3046
+ #: includes/row-settings.php:248
3047
  msgid "Background Slideshow"
3048
  msgstr "Achtergrond Diavoorstelling"
3049
 
3050
  # @ fl-builder
3051
+ #: includes/row-settings.php:252 modules/gallery/gallery.php:241
3052
+ #: modules/slideshow/slideshow.php:271
3053
  msgid "Source"
3054
  msgstr "Bron"
3055
 
3056
  # @ fl-builder
3057
+ #: includes/row-settings.php:255 modules/gallery/gallery.php:244
3058
+ #: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
3059
  #: modules/video/video.php:86
3060
  msgid "Media Library"
3061
  msgstr "Media Bibliotheek"
3062
 
3063
  # @ fl-builder
3064
+ #: includes/row-settings.php:258 modules/gallery/gallery.php:247
3065
+ #: modules/slideshow/slideshow.php:277
3066
  msgid ""
3067
  "Pull images from the WordPress media library or a gallery on your SmugMug "
3068
  "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
3074
  "gallery."
3075
 
3076
  # @ fl-builder
3077
+ #: includes/row-settings.php:273 modules/gallery/gallery.php:259
3078
+ #: modules/slideshow/slideshow.php:289
3079
  msgid "Photos"
3080
  msgstr "Afbeeldingen"
3081
 
3082
  # @ fl-builder
3083
+ #: includes/row-settings.php:280 modules/gallery/gallery.php:263
3084
+ #: modules/slideshow/slideshow.php:293
3085
  msgid "Feed URL"
3086
  msgstr "Feed URL"
3087
 
3088
  # @ fl-builder
3089
+ #: includes/row-settings.php:287 includes/row-settings.php:352
3090
+ #: modules/slideshow/slideshow.php:390
3091
  msgid "Speed"
3092
  msgstr "Snelheid"
3093
 
3094
  # @ fl-builder
3095
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
3096
+ #: modules/post-slider/post-slider.php:369 modules/slideshow/slideshow.php:397
3097
  #: modules/testimonials/testimonials.php:99
3098
  msgid "Transition"
3099
  msgstr "Overgang"
3100
 
3101
  # @ fl-builder
3102
+ #: includes/row-settings.php:300
3103
  msgctxt "Slideshow transition type."
3104
  msgid "None"
3105
  msgstr "Geen"
3106
 
3107
  # @ fl-builder
3108
+ #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
3109
+ #: modules/post-carousel/post-carousel.php:241
3110
+ #: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:372
3111
+ #: modules/slideshow/slideshow.php:401
3112
  #: modules/testimonials/testimonials.php:103
3113
  msgid "Fade"
3114
  msgstr "Vervagen"
3115
 
3116
  # @ fl-builder
3117
+ #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
3118
  msgid "Ken Burns"
3119
  msgstr "Ken Burns"
3120
 
3121
  # @ fl-builder
3122
+ #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
3123
  msgid "Slide Horizontal"
3124
  msgstr "Schuif Horizontaal"
3125
 
3126
  # @ fl-builder
3127
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
3128
  msgid "Slide Vertical"
3129
  msgstr "Schuif Vertikaal"
3130
 
3131
  # @ fl-builder
3132
+ #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
3133
  msgid "Blinds"
3134
  msgstr "Blinds"
3135
 
3136
  # @ fl-builder
3137
+ #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
3138
  msgid "Bars"
3139
  msgstr "Balken"
3140
 
3141
  # @ fl-builder
3142
+ #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
3143
  msgid "Random Bars"
3144
  msgstr "Willekeurige Balken"
3145
 
3146
  # @ fl-builder
3147
+ #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
3148
  msgid "Boxes"
3149
  msgstr "Vakken"
3150
 
3151
  # @ fl-builder
3152
+ #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
3153
  msgid "Random Boxes"
3154
  msgstr "Willekeurige Vakken"
3155
 
3156
  # @ fl-builder
3157
+ #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
3158
  msgid "Boxes Grow"
3159
  msgstr "Groeiende Vakken"
3160
 
3161
  # @ fl-builder
3162
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
3163
+ #: modules/post-carousel/post-carousel.php:161
3164
+ #: modules/post-slider/post-slider.php:387 modules/slideshow/slideshow.php:415
3165
  #: modules/testimonials/testimonials.php:108
3166
  msgid "Transition Speed"
3167
  msgstr "Animatie snelheid"
3168
 
3169
  # @ fl-builder
3170
+ #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
3171
  msgid "Randomize Photos"
3172
  msgstr "Willekeurige Afbeeldingen"
3173
 
3174
  # @ fl-builder
3175
+ #: includes/row-settings.php:341
3176
  msgid "Background Parallax"
3177
  msgstr "Achtergrond Parallax"
3178
 
3179
  # @ fl-builder
3180
+ #: includes/row-settings.php:355
3181
  msgid "Fast"
3182
  msgstr "Snel"
3183
 
3184
  # @ fl-builder
3185
+ #: includes/row-settings.php:356
3186
  msgctxt "Speed."
3187
  msgid "Medium"
3188
  msgstr "Medium"
3189
 
3190
  # @ fl-builder
3191
+ #: includes/row-settings.php:357
3192
  msgid "Slow"
3193
  msgstr "Langzaam"
3194
 
3195
  # @ fl-builder
3196
+ #: includes/row-settings.php:619
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3197
  msgid "Choose whether to show or hide this row at different device sizes."
3198
  msgstr ""
3199
  "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
3200
  "afmetingen."
3201
 
3202
  # @ fl-builder
3203
+ #: includes/row-settings.php:632
3204
  msgid ""
3205
  "A unique ID that will be applied to this row's HTML. Must start with a "
3206
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
3210
  "getallen bevatten. Geen spaties."
3211
 
3212
  # @ fl-builder
3213
+ #: includes/row-settings.php:640
3214
  msgid ""
3215
  "A class that will be applied to this row's HTML. Must start with a letter "
3216
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
3230
  msgstr "Opslaan"
3231
 
3232
  # @ fl-builder
3233
+ #: includes/template-selector.php:4
3234
  msgid "Layout Templates"
3235
  msgstr "Layout Templates"
3236
 
3237
  # @ fl-builder
3238
+ #: includes/template-selector.php:17
 
 
 
 
 
 
 
 
 
 
3239
  msgid "Your Templates"
3240
  msgstr "Jouw Templates"
3241
 
3242
  # @ fl-builder
3243
+ #: includes/template-selector.php:53
 
 
 
 
 
 
3244
  msgid ""
3245
  "You haven't saved any templates yet! To do so, create a layout and save it "
3246
  "as a template under <strong>Tools &rarr; Save Template</strong>."
3250
  "Opslaan</strong>."
3251
 
3252
  # @ fl-builder
3253
+ #: includes/template-selector.php:58
3254
  msgctxt "Template name."
3255
+ msgid "Blank"
3256
+ msgstr "Blanco"
 
 
 
 
 
 
 
 
 
 
 
 
3257
 
3258
  # @ fl-builder
3259
+ #: includes/template-selector.php:71
3260
+ msgid "Delete"
3261
+ msgstr "Verwijder"
3262
+
3263
+ # @ fl-builder
3264
+ #: includes/ui.php:8 includes/ui.php:13
3265
  #, php-format
3266
  msgid "Template: %s"
3267
  msgstr "Template: %s"
3268
 
3269
  # @ fl-builder
3270
+ #: includes/ui.php:21 includes/ui.php:56
3271
+ msgid "Tools"
3272
+ msgstr "Gereedschappen"
3273
+
3274
+ # @ fl-builder
3275
+ #: includes/ui.php:34
3276
  msgid "Page Builder Demo"
3277
  msgstr "Pagina Builder Demo"
3278
 
3279
  # @ fl-builder
3280
+ #: includes/ui.php:51
3281
  msgid "Buy Now!"
3282
  msgstr "Nu Kopen!"
3283
 
3284
  # @ fl-builder
3285
+ #: includes/ui.php:53
3286
  msgid "Upgrade!"
3287
  msgstr "Upgraden!"
3288
 
3289
  # @ fl-builder
3290
+ #: includes/ui.php:78
 
 
 
 
 
3291
  msgid "Row Layouts"
3292
  msgstr "Rij Layouts"
3293
 
3294
  # @ fl-builder
3295
+ #: includes/ui.php:82
3296
  msgid "1 Column"
3297
  msgstr "1 Kolom"
3298
 
3299
  # @ fl-builder
3300
+ #: includes/ui.php:83
3301
  msgid "2 Columns"
3302
  msgstr "2 Kolommen"
3303
 
3304
  # @ fl-builder
3305
+ #: includes/ui.php:84
3306
  msgid "3 Columns"
3307
  msgstr "3 Kolommen"
3308
 
3309
  # @ fl-builder
3310
+ #: includes/ui.php:85
3311
  msgid "4 Columns"
3312
  msgstr "4 Kolommen"
3313
 
3314
  # @ fl-builder
3315
+ #: includes/ui.php:86
3316
  msgid "5 Columns"
3317
  msgstr "5 Kolommen"
3318
 
3319
  # @ fl-builder
3320
+ #: includes/ui.php:87
3321
  msgid "6 Columns"
3322
  msgstr "6 Kolommen"
3323
 
3324
  # @ fl-builder
3325
+ #: includes/ui.php:88
3326
  msgid "Left Sidebar"
3327
  msgstr "Linker Zijbalk"
3328
 
3329
  # @ fl-builder
3330
+ #: includes/ui.php:89
3331
  msgid "Right Sidebar"
3332
  msgstr "Rechter Zijbalk"
3333
 
3334
  # @ fl-builder
3335
+ #: includes/ui.php:90
3336
  msgid "Left &amp; Right Sidebar"
3337
  msgstr "Linker &amp; Rechter Zijbalk"
3338
 
3339
  # @ fl-builder
3340
+ #: includes/updater/classes/class-fl-updater.php:132
3341
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3342
  msgstr "<strong>UPDATE NIET BESCHIKBAAR!</strong>"
3343
 
3344
  # @ fl-builder
3345
+ #: includes/updater/classes/class-fl-updater.php:134
3346
  msgid "Please subscribe to enable automatic updates for this plugin."
3347
  msgstr ""
3348
  "Gelieve te abonneren om de automatische updates op deze plug-in te schakelen."
3349
 
3350
  # @ fl-builder
3351
+ #: includes/updater/classes/class-fl-updater.php:136
3352
  #: includes/updater/includes/form.php:6
3353
  msgid "Subscribe Now"
3354
  msgstr "Nu Abonneren"
3403
  "Sla de huidige layout als een template op die onder <strong>Templates → Je "
3404
  "Sjablonen</strong> kan worden hergebruikt."
3405
 
3406
+ # @ fl-builder
3407
+ #: includes/user-template-settings.php:15
3408
+ msgctxt "Template name."
3409
+ msgid "Name"
3410
+ msgstr "Naam"
3411
+
3412
  # @ fl-builder
3413
  #: modules/accordion/accordion.php:14
3414
  msgid "Accordion"
3487
  msgstr "Label"
3488
 
3489
  # @ fl-builder
3490
+ #: modules/accordion/accordion.php:122
3491
+ #: modules/post-carousel/post-carousel.php:359
3492
+ #: modules/post-carousel/post-carousel.php:363
3493
+ #: modules/post-carousel/post-carousel.php:435
3494
+ #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
3495
+ #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:543
3496
+ #: modules/post-slider/post-slider.php:547
3497
+ #: modules/post-slider/post-slider.php:754 modules/tabs/tabs.php:89
3498
  msgid "Content"
3499
  msgstr "Inhoud"
3500
 
3501
  # @ fl-builder
3502
+ #: modules/button/button.php:14 modules/callout/callout.php:480
3503
+ #: modules/content-slider/content-slider.php:602 modules/cta/cta.php:215
3504
  #: modules/pricing-table/pricing-table.php:129
3505
+ #: modules/subscribe-form/subscribe-form.php:161
3506
  msgid "Button"
3507
  msgstr "Button"
3508
 
3512
  msgstr "Een eenvoudige Call-to-Action knop."
3513
 
3514
  # @ fl-builder
3515
+ #: modules/button/button.php:67 modules/cta/cta.php:223
3516
  msgid "Click Here"
3517
  msgstr "Klik Hier"
3518
 
3519
  # @ fl-builder
3520
+ #: modules/button/button.php:75 modules/callout/callout.php:318
3521
+ #: modules/callout/callout.php:366 modules/callout/callout.php:370
3522
+ #: modules/cta/cta.php:231 modules/icon-group/icon-group.php:34
3523
  #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
3524
  #: modules/icon/icon.php:34
3525
  msgid "Icon"
3526
  msgstr "Icoon"
3527
 
3528
  # @ fl-builder
3529
+ #: modules/button/button.php:80 modules/cta/cta.php:236
3530
+ #: modules/subscribe-form/subscribe-form.php:178
3531
+ msgid "Icon Position"
3532
+ msgstr "Icoon positie"
3533
+
3534
+ # @ fl-builder
3535
+ #: modules/button/button.php:83 modules/callout/callout.php:508
3536
+ #: modules/content-slider/content-slider.php:629 modules/cta/cta.php:239
3537
+ #: modules/subscribe-form/subscribe-form.php:181
3538
+ msgid "Before Text"
3539
+ msgstr "Voor tekst"
3540
+
3541
+ # @ fl-builder
3542
+ #: modules/button/button.php:84 modules/callout/callout.php:509
3543
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:240
3544
+ #: modules/subscribe-form/subscribe-form.php:182
3545
+ msgid "After Text"
3546
+ msgstr "Na tekst"
3547
+
3548
+ # @ fl-builder
3549
+ #: modules/button/button.php:90 modules/button/button.php:94
3550
+ #: modules/callout/callout.php:446 modules/callout/callout.php:450
3551
+ #: modules/content-slider/content-slider.php:574
3552
+ #: modules/content-slider/content-slider.php:578
3553
+ #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:250
3554
  #: modules/heading/heading.php:43 modules/heading/heading.php:47
3555
  #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
3556
+ #: modules/slideshow/slideshow.php:351
3557
  msgid "Link"
3558
  msgstr "Link"
3559
 
3560
  # @ fl-builder
3561
+ #: modules/button/button.php:95
3562
  msgid "http://www.example.com"
3563
  msgstr "http://www.voorbeeld.com/"
3564
 
3565
  # @ fl-builder
3566
+ #: modules/button/button.php:102 modules/callout/callout.php:458
3567
+ #: modules/content-slider/content-slider.php:583 modules/cta/cta.php:257
3568
  #: modules/heading/heading.php:54 modules/icon/icon.php:50
3569
+ #: modules/photo/photo.php:494
3570
  msgid "Link Target"
3571
  msgstr "Link Doel"
3572
 
3573
  # @ fl-builder
3574
+ #: modules/button/button.php:105 modules/callout/callout.php:461
3575
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:260
3576
  #: modules/heading/heading.php:57 modules/icon/icon.php:53
3577
+ #: modules/photo/photo.php:497
3578
  msgid "Same Window"
3579
  msgstr "Zelfde Venster"
3580
 
3581
  # @ fl-builder
3582
+ #: modules/button/button.php:106 modules/callout/callout.php:462
3583
+ #: modules/content-slider/content-slider.php:587 modules/cta/cta.php:261
3584
  #: modules/heading/heading.php:58 modules/icon/icon.php:54
3585
+ #: modules/photo/photo.php:498
3586
  msgid "New Window"
3587
  msgstr "Nieuw Venster"
3588
 
3589
  # @ fl-builder
3590
+ #: modules/button/button.php:130 modules/callout/callout.php:410
3591
+ #: modules/callout/callout.php:525
3592
+ #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:280
 
 
 
 
 
 
 
3593
  #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
3594
+ #: modules/subscribe-form/subscribe-form.php:198
3595
  msgid "Background Hover Color"
3596
  msgstr "Achtergrond-hover Kleur"
3597
 
3598
  # @ fl-builder
3599
+ #: modules/button/button.php:145 modules/callout/callout.php:540
3600
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:295
3601
+ #: modules/subscribe-form/subscribe-form.php:213
 
 
 
 
 
 
 
 
 
 
3602
  msgid "Text Hover Color"
3603
  msgstr "Tekst-hover kleur"
3604
 
3605
  # @ fl-builder
3606
+ #: modules/button/button.php:162 modules/callout/callout.php:557
3607
+ #: modules/content-slider/content-slider.php:670 modules/cta/cta.php:312
3608
+ #: modules/subscribe-form/subscribe-form.php:230
3609
  msgid "Flat"
3610
  msgstr "Plat"
3611
 
3612
  # @ fl-builder
3613
+ #: modules/button/button.php:163 modules/callout/callout.php:418
3614
+ #: modules/callout/callout.php:558
3615
+ #: modules/content-slider/content-slider.php:671 modules/cta/cta.php:313
3616
  #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3617
+ #: modules/subscribe-form/subscribe-form.php:231
3618
  msgid "Gradient"
3619
  msgstr "Verlopend"
3620
 
3621
  # @ fl-builder
3622
+ #: modules/button/button.php:164 modules/callout/callout.php:559
3623
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3624
+ #: modules/subscribe-form/subscribe-form.php:232
3625
  msgid "Transparent"
3626
  msgstr "Transparant"
3627
 
3628
  # @ fl-builder
3629
+ #: modules/button/button.php:174 modules/callout/callout.php:569
3630
+ #: modules/content-slider/content-slider.php:682 modules/cta/cta.php:324
3631
  #: modules/pricing-table/pricing-table.php:67
3632
+ #: modules/subscribe-form/subscribe-form.php:242
3633
  msgid "Border Size"
3634
  msgstr "Rand Breedte"
3635
 
3636
  # @ fl-builder
3637
+ #: modules/button/button.php:183 modules/callout/callout.php:578
3638
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204
3639
+ #: modules/cta/cta.php:333 modules/subscribe-form/subscribe-form.php:251
3640
  msgid "Background Opacity"
3641
  msgstr "Achtergrond Dichtheid"
3642
 
3643
  # @ fl-builder
3644
+ #: modules/button/button.php:193 modules/callout/callout.php:245
3645
+ #: modules/cta/cta.php:105 modules/heading/heading.php:82
3646
  #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3647
+ #: modules/subscribe-form/subscribe-form.php:95
3648
  msgid "Structure"
3649
  msgstr "Structuur"
3650
 
3651
  # @ fl-builder
3652
+ #: modules/button/button.php:200 modules/callout/callout.php:595
3653
  msgctxt "Width."
3654
  msgid "Auto"
3655
  msgstr "Auto"
3656
 
3657
  # @ fl-builder
3658
+ #: modules/button/button.php:216
3659
  msgid "Custom Width"
3660
  msgstr "Aangepaste Breedte"
3661
 
3662
  # @ fl-builder
3663
+ #: modules/button/button.php:224 modules/cta/cta.php:123
3664
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
3665
  #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3666
+ #: modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
3667
  msgid "Alignment"
3668
  msgstr "Uitlijning"
3669
 
3670
  # @ fl-builder
3671
+ #: modules/button/button.php:234 modules/callout/callout.php:601
3672
+ #: modules/content-slider/content-slider.php:705 modules/cta/cta.php:347
3673
  #: modules/heading/heading.php:114 modules/heading/heading.php:171
3674
+ #: modules/subscribe-form/subscribe-form.php:265
3675
  msgid "Font Size"
3676
  msgstr "Tekengrootte"
3677
 
3678
  # @ fl-builder
3679
+ #: modules/button/button.php:250 modules/callout/callout.php:617
3680
+ #: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
3681
  msgid "Round Corners"
3682
  msgstr "Afronden Hoeken"
3683
 
3692
  msgstr "Een kop en tekstfragment met een optionele link, icoon en afbeelding."
3693
 
3694
  # @ fl-builder
3695
+ #: modules/callout/callout.php:217
3696
+ #: modules/content-slider/content-slider.php:414
3697
+ #: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75
3698
  #: modules/heading/heading.php:14 modules/heading/heading.php:33
3699
+ #: modules/post-slider/post-slider.php:577
3700
  #: modules/testimonials/testimonials.php:56
3701
  #: modules/testimonials/testimonials.php:61
3702
  msgid "Heading"
3703
  msgstr "Kopregel"
3704
 
3705
  # @ fl-builder
3706
+ #: modules/callout/callout.php:249
3707
  msgid "Overall Alignment"
3708
  msgstr "Algemene Uitlijning"
3709
 
3710
  # @ fl-builder
3711
+ #: modules/callout/callout.php:256
3712
  msgid "The alignment that will apply to all elements within the callout."
3713
  msgstr ""
3714
  "De uitlijning die zal gelden voor alle elementen binnen het bijschrift."
3715
 
3716
  # @ fl-builder
3717
+ #: modules/callout/callout.php:264 modules/cta/cta.php:148
3718
  msgid "Heading Structure"
3719
  msgstr "Kopregel Structuur"
3720
 
3721
  # @ fl-builder
3722
+ #: modules/callout/callout.php:268
3723
+ #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3724
+ #: modules/post-slider/post-slider.php:581
3725
  msgid "Heading Tag"
3726
  msgstr "Kopregel Tag"
3727
 
3728
  # @ fl-builder
3729
+ #: modules/callout/callout.php:281
3730
+ #: modules/content-slider/content-slider.php:446
3731
+ #: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
3732
+ #: modules/post-slider/post-slider.php:594
3733
+ #: modules/post-slider/post-slider.php:608
3734
  #: modules/testimonials/testimonials.php:69
3735
  msgid "Heading Size"
3736
  msgstr "Kopregel Grootte"
3737
 
3738
  # @ fl-builder
3739
+ #: modules/callout/callout.php:295 modules/cta/cta.php:179
3740
  msgid "Heading Custom Size"
3741
  msgstr "Kopregel Aangepaste Grootte"
3742
 
3743
  # @ fl-builder
3744
+ #: modules/callout/callout.php:306 modules/post-carousel/post-carousel.php:255
3745
+ #: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:459
3746
+ msgid "Image"
3747
+ msgstr "Afbeelding"
3748
+
3749
+ # @ fl-builder
3750
+ #: modules/callout/callout.php:313
3751
  msgid "Image Type"
3752
  msgstr "Afbeelding Type"
3753
 
3754
  # @ fl-builder
3755
+ #: modules/callout/callout.php:316
3756
  msgctxt "Image type."
3757
  msgid "None"
3758
  msgstr "Geen"
3759
 
3760
  # @ fl-builder
3761
+ #: modules/callout/callout.php:341 modules/photo/photo.php:417
3762
+ #: modules/post-slider/post-slider.php:476 modules/slideshow/slideshow.php:320
3763
  msgid "Crop"
3764
  msgstr "Pas aan"
3765
 
3766
  # @ fl-builder
3767
+ #: modules/callout/callout.php:344
3768
  msgctxt "Crop"
3769
  msgid "None"
3770
  msgstr "Geen"
3771
 
3772
  # @ fl-builder
3773
+ #: modules/callout/callout.php:345 modules/photo/photo.php:421
3774
+ #: modules/post-slider/post-slider.php:480
3775
  msgid "Landscape"
3776
  msgstr "Landschap"
3777
 
3778
  # @ fl-builder
3779
+ #: modules/callout/callout.php:346 modules/photo/photo.php:422
3780
+ #: modules/post-slider/post-slider.php:481
3781
  msgid "Panorama"
3782
  msgstr "Panorama"
3783
 
3784
  # @ fl-builder
3785
+ #: modules/callout/callout.php:347 modules/photo/photo.php:423
3786
+ #: modules/post-slider/post-slider.php:482
3787
  msgid "Portrait"
3788
  msgstr "Portret"
3789
 
3790
  # @ fl-builder
3791
+ #: modules/callout/callout.php:348 modules/photo/photo.php:424
3792
+ #: modules/post-slider/post-slider.php:483
3793
  msgid "Square"
3794
  msgstr "Vierkant"
3795
 
3796
  # @ fl-builder
3797
+ #: modules/callout/callout.php:349 modules/photo/photo.php:425
3798
+ #: modules/post-slider/post-slider.php:484
3799
  msgid "Circle"
3800
  msgstr "Cirkel"
3801
 
3802
  # @ fl-builder
3803
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
3804
  msgid "Above Heading"
3805
  msgstr "Boven Kopregel"
3806
 
3807
  # @ fl-builder
3808
+ #: modules/callout/callout.php:358 modules/callout/callout.php:378
3809
  msgid "Below Heading"
3810
  msgstr "Onder Kopregel"
3811
 
3812
  # @ fl-builder
3813
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
3814
  msgid "Left of Text and Heading"
3815
  msgstr "Links van Tekst en Kopregel"
3816
 
3817
  # @ fl-builder
3818
+ #: modules/callout/callout.php:360 modules/callout/callout.php:382
3819
  msgid "Right of Text and Heading"
3820
  msgstr "Rechts van Tekst en Kopregel"
3821
 
3822
  # @ fl-builder
3823
+ #: modules/callout/callout.php:379
3824
  msgid "Left of Heading"
3825
  msgstr "Links van Kopregel"
3826
 
3827
  # @ fl-builder
3828
+ #: modules/callout/callout.php:380
3829
  msgid "Right of Heading"
3830
  msgstr "Rechts van Kopregel"
3831
 
3832
  # @ fl-builder
3833
+ #: modules/callout/callout.php:388
3834
  msgid "Icon Colors"
3835
  msgstr "Icoon Kleuren"
3836
 
3837
  # @ fl-builder
3838
+ #: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56
3839
  #: modules/icon/icon.php:87
3840
  msgid "Hover Color"
3841
  msgstr "Hover Kleur"
3842
 
3843
  # @ fl-builder
3844
+ #: modules/callout/callout.php:428
3845
  msgid "Icon Structure"
3846
  msgstr "Icoon Structuur"
3847
 
3848
  # @ fl-builder
3849
+ #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
3850
+ #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
3851
+ #: modules/post-grid/post-grid.php:139
3852
  msgid "Size"
3853
  msgstr "Grootte"
3854
 
3855
  # @ fl-builder
3856
+ #: modules/callout/callout.php:443
3857
+ #: modules/content-slider/content-slider.php:571
3858
  msgid "Call To Action"
3859
  msgstr "Call-to-Action"
3860
 
3861
  # @ fl-builder
3862
+ #: modules/callout/callout.php:451
3863
  msgid ""
3864
  "The link applies to the entire module. If choosing a call to action type "
3865
  "below, this link will also be used for the text or button."
3869
  "gebruikt worden."
3870
 
3871
  # @ fl-builder
3872
+ #: modules/callout/callout.php:471
3873
+ #: modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
3874
  msgid "Call to Action"
3875
  msgstr "Call-to-Action"
3876
 
3877
  # @ fl-builder
3878
+ #: modules/callout/callout.php:478
3879
+ #: modules/content-slider/content-slider.php:600
3880
  msgctxt "Call to action."
3881
  msgid "None"
3882
  msgstr "Geen"
3883
 
3884
  # @ fl-builder
3885
+ #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
3886
+ #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:566
3887
+ msgid "Read More"
3888
+ msgstr "Lees verder"
3889
+
3890
+ # @ fl-builder
3891
+ #: modules/callout/callout.php:500
3892
+ #: modules/content-slider/content-slider.php:621
3893
+ #: modules/subscribe-form/subscribe-form.php:173
3894
  msgid "Button Icon"
3895
  msgstr "Button Icoon"
3896
 
3897
  # @ fl-builder
3898
+ #: modules/callout/callout.php:505
3899
+ #: modules/content-slider/content-slider.php:626
3900
+ msgid "Button Icon Position"
3901
+ msgstr "Knop icoon positie"
3902
+
3903
+ # @ fl-builder
3904
+ #: modules/callout/callout.php:515
3905
+ #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
3906
+ #: modules/subscribe-form/subscribe-form.php:188
3907
  msgid "Button Colors"
3908
  msgstr "Button Kleuren"
3909
 
3910
  # @ fl-builder
3911
+ #: modules/callout/callout.php:550
3912
+ #: modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
3913
+ #: modules/subscribe-form/subscribe-form.php:223
3914
  msgid "Button Style"
3915
  msgstr "Button Stijl"
3916
 
3917
  # @ fl-builder
3918
+ #: modules/callout/callout.php:588
3919
+ #: modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
3920
+ #: modules/subscribe-form/subscribe-form.php:261
3921
  msgid "Button Structure"
3922
  msgstr "Button Structuur"
3923
 
3924
  # @ fl-builder
3925
+ #: modules/callout/callout.php:592
3926
  msgid "Button Width"
3927
  msgstr "Button Breedte"
3928
 
3961
  msgstr "Het contactformulier zal naar dit e-mailadres sturen"
3962
 
3963
  #: modules/contact-form/contact-form.php:75
3964
+ #: modules/subscribe-form/subscribe-form.php:108
3965
  msgid "Name Field"
3966
  msgstr "Naamveld"
3967
 
3970
  #: modules/contact-form/contact-form.php:87
3971
  #: modules/contact-form/contact-form.php:96
3972
  #: modules/contact-form/contact-form.php:105
3973
+ #: modules/post-carousel/post-carousel.php:258
3974
+ #: modules/post-carousel/post-carousel.php:322
3975
+ #: modules/post-carousel/post-carousel.php:331
3976
+ #: modules/post-carousel/post-carousel.php:366
3977
+ #: modules/post-carousel/post-carousel.php:375
3978
+ #: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
3979
+ #: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
3980
+ #: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
3981
+ #: modules/post-slider/post-slider.php:442
3982
+ #: modules/post-slider/post-slider.php:497
3983
+ #: modules/post-slider/post-slider.php:506
3984
+ #: modules/post-slider/post-slider.php:536
3985
+ #: modules/post-slider/post-slider.php:550
3986
+ #: modules/post-slider/post-slider.php:559
3987
+ #: modules/subscribe-form/subscribe-form.php:111
3988
  msgid "Show"
3989
  msgstr "Toon"
3990
 
3993
  #: modules/contact-form/contact-form.php:88
3994
  #: modules/contact-form/contact-form.php:97
3995
  #: modules/contact-form/contact-form.php:106
3996
+ #: modules/post-carousel/post-carousel.php:259
3997
+ #: modules/post-carousel/post-carousel.php:323
3998
+ #: modules/post-carousel/post-carousel.php:332
3999
+ #: modules/post-carousel/post-carousel.php:367
4000
+ #: modules/post-carousel/post-carousel.php:376
4001
+ #: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
4002
+ #: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
4003
+ #: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
4004
+ #: modules/post-slider/post-slider.php:443
4005
+ #: modules/post-slider/post-slider.php:498
4006
+ #: modules/post-slider/post-slider.php:507
4007
+ #: modules/post-slider/post-slider.php:537
4008
+ #: modules/post-slider/post-slider.php:551
4009
+ #: modules/post-slider/post-slider.php:560
4010
+ #: modules/subscribe-form/subscribe-form.php:112
4011
  msgid "Hide"
4012
  msgstr "Verberg"
4013
 
4048
  msgid "Please enter a subject."
4049
  msgstr "Type hier het onderwerp"
4050
 
 
 
 
 
 
4051
  # @ fl-builder
4052
  #: modules/contact-form/includes/frontend.php:22
4053
  msgid "Please enter a valid email."
4108
  msgstr "Geeft meerdere dia&#39;s met een optionele kopregel en call-to-action."
4109
 
4110
  # @ fl-builder
4111
+ #: modules/content-slider/content-slider.php:198 modules/map/map.php:41
4112
+ #: modules/post-slider/post-slider.php:344 modules/separator/separator.php:58
4113
+ #: modules/slideshow/slideshow.php:302
4114
  msgid "Height"
4115
  msgstr "Hoogte"
4116
 
4117
  # @ fl-builder
4118
+ #: modules/content-slider/content-slider.php:203
4119
  msgid ""
4120
  "This setting is the minimum height of the content slider. Content will "
4121
  "expand the height automatically."
4124
  "hoogte automatisch uitbreiden."
4125
 
4126
  # @ fl-builder
4127
+ #: modules/content-slider/content-slider.php:207
4128
+ #: modules/post-carousel/post-carousel.php:136
4129
+ #: modules/post-slider/post-slider.php:353 modules/slideshow/slideshow.php:381
4130
  #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
4131
  msgid "Auto Play"
4132
  msgstr "Autostart"
4133
 
4134
  # @ fl-builder
4135
+ #: modules/content-slider/content-slider.php:221
4136
  msgid "Show Play/Pause"
4137
  msgstr "Toon Play/Pause"
4138
 
4139
  # @ fl-builder
4140
+ #: modules/content-slider/content-slider.php:241
4141
  #: modules/testimonials/testimonials.php:102
4142
  msgctxt "Transition type."
4143
  msgid "Slide"
4144
  msgstr "Schuif"
4145
 
4146
  # @ fl-builder
4147
+ #: modules/content-slider/content-slider.php:255
4148
+ #: modules/post-carousel/post-carousel.php:188
4149
+ #: modules/post-slider/post-slider.php:414
4150
  #: modules/testimonials/testimonials.php:121
4151
  msgid "Show Arrows"
4152
  msgstr "Toon Pijlen:"
4153
 
4154
  # @ fl-builder
4155
+ #: modules/content-slider/content-slider.php:264
4156
+ #: modules/post-carousel/post-carousel.php:179
4157
+ #: modules/post-slider/post-slider.php:405
4158
  #: modules/testimonials/testimonials.php:151
4159
  msgid "Show Dots"
4160
  msgstr "Toon Stippen"
4161
 
4162
  # @ fl-builder
4163
+ #: modules/content-slider/content-slider.php:278
4164
  msgid "Max Content Width"
4165
  msgstr "Max Inhoud Breedte"
4166
 
4167
  # @ fl-builder
4168
+ #: modules/content-slider/content-slider.php:283
4169
  msgid "The max width that the content area will be within your slides."
4170
  msgstr ""
4171
  "De maximale breedte die het inhoud gebied zal worden binnen je dia&#39;s."
4172
 
4173
  # @ fl-builder
4174
+ #: modules/content-slider/content-slider.php:290
4175
  msgid "Slides"
4176
  msgstr "Dia's"
4177
 
4178
  # @ fl-builder
4179
+ #: modules/content-slider/content-slider.php:297
4180
+ #: modules/post-slider/post-slider.php:373
4181
  msgid "Slide"
4182
  msgstr "Dia"
4183
 
4184
  # @ fl-builder
4185
+ #: modules/content-slider/content-slider.php:312
4186
  msgid "Slide Settings"
4187
  msgstr "Dia Instellingen"
4188
 
4189
  # @ fl-builder
4190
+ #: modules/content-slider/content-slider.php:322
4191
  msgid "Slide Label"
4192
  msgstr "Dia Label"
4193
 
4194
  # @ fl-builder
4195
+ #: modules/content-slider/content-slider.php:323
4196
  msgid ""
4197
  "A label to identify this slide on the Slides tab of the Content Slider "
4198
  "settings."
4201
  "Content Slider instellingen."
4202
 
4203
  # @ fl-builder
4204
+ #: modules/content-slider/content-slider.php:328
4205
  msgid "Background Layout"
4206
  msgstr "Achtergrond Layout"
4207
 
4208
  # @ fl-builder
4209
+ #: modules/content-slider/content-slider.php:334
4210
  msgid "This setting is for the entire background of your slide."
4211
  msgstr "Deze instelling is voor de volledige achtergrond van je dia."
4212
 
4213
  # @ fl-builder
4214
+ #: modules/content-slider/content-slider.php:369
4215
  msgid "Background Video Code"
4216
  msgstr "Achtergrond Video Code"
4217
 
4218
  # @ fl-builder
4219
+ #: modules/content-slider/content-slider.php:375
4220
  msgid "Content Layout"
4221
  msgstr "Inhoud Layout"
4222
 
4223
  # @ fl-builder
4224
+ #: modules/content-slider/content-slider.php:381
4225
  msgid ""
4226
  "This allows you to add content over or in addition to the background "
4227
  "selection above. The location of the content layout can be selected in the "
4232
  "op het stijl tabblad."
4233
 
4234
  # @ fl-builder
4235
+ #: modules/content-slider/content-slider.php:384
4236
  msgid "Text &amp; Photo"
4237
  msgstr "Tekst &amp Afbeelding"
4238
 
4239
  # @ fl-builder
4240
+ #: modules/content-slider/content-slider.php:385
4241
  msgid "Text &amp; Video"
4242
  msgstr "Tekst &amp; Video"
4243
 
4244
  # @ fl-builder
4245
+ #: modules/content-slider/content-slider.php:386
4246
  msgctxt "Content type."
4247
  msgid "None"
4248
  msgstr "Geen"
4249
 
4250
  # @ fl-builder
4251
+ #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
4252
  msgid "Video Embed Code"
4253
  msgstr "Video Embed Code"
4254
 
4255
  # @ fl-builder
4256
+ #: modules/content-slider/content-slider.php:469
4257
  msgid "Text Position"
4258
  msgstr "Tekst Positie"
4259
 
4260
  # @ fl-builder
4261
+ #: modules/content-slider/content-slider.php:475
4262
  msgid ""
4263
  "The position will move the content layout selections left, right or center "
4264
  "over the background of the slide."
4267
  "over de achtergrond van de dia verplaatsen."
4268
 
4269
  # @ fl-builder
4270
+ #: modules/content-slider/content-slider.php:492
4271
  msgid "Top Margin"
4272
  msgstr "bovenmarge"
4273
 
4274
  # @ fl-builder
4275
+ #: modules/content-slider/content-slider.php:500
4276
  msgid "Bottom Margin"
4277
  msgstr "ondermarge"
4278
 
4279
  # @ fl-builder
4280
+ #: modules/content-slider/content-slider.php:508
4281
  msgid "Left Margin"
4282
+ msgstr "Linker marge"
4283
 
4284
  # @ fl-builder
4285
+ #: modules/content-slider/content-slider.php:516
4286
  msgid "Right Margin"
4287
+ msgstr "Rechter marge"
4288
 
4289
  # @ fl-builder
4290
+ #: modules/content-slider/content-slider.php:525
4291
  msgid "Text Colors"
4292
+ msgstr "Tekst kleuren"
4293
 
4294
  # @ fl-builder
4295
+ #: modules/content-slider/content-slider.php:535
4296
  msgid "Text Shadow"
4297
+ msgstr "Tekst schaduw"
4298
 
4299
  # @ fl-builder
4300
+ #: modules/content-slider/content-slider.php:544
4301
+ #: modules/content-slider/content-slider.php:770
4302
+ #: modules/post-carousel/post-carousel.php:411
4303
+ #: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:716
4304
  msgid "Text Background Color"
4305
+ msgstr "Tekst achtergrond kleur"
4306
 
4307
  # @ fl-builder
4308
+ #: modules/content-slider/content-slider.php:545
4309
+ #: modules/post-carousel/post-carousel.php:413
4310
+ #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:717
4311
  msgid ""
4312
  "The color applies to the overlay behind text over the background selections."
4313
  msgstr ""
4315
  "selecties."
4316
 
4317
  # @ fl-builder
4318
+ #: modules/content-slider/content-slider.php:550
4319
+ #: modules/post-carousel/post-carousel.php:423
4320
+ #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:723
4321
  msgid "Text Background Opacity"
4322
+ msgstr "Tekst achtergrond dichtheid"
4323
 
4324
  # @ fl-builder
4325
+ #: modules/content-slider/content-slider.php:558
4326
+ #: modules/post-slider/post-slider.php:740
4327
  msgid "Text Background Height"
4328
+ msgstr "Tekst achtergrond hoogte"
4329
 
4330
  # @ fl-builder
4331
+ #: modules/content-slider/content-slider.php:560
4332
+ #: modules/post-slider/post-slider.php:742
4333
  msgid ""
4334
  "Auto will allow the overlay to fit however long the text content is. 100% "
4335
  "will fit the overlay to the top and bottom of the slide."
4339
  "dia reikt."
4340
 
4341
  # @ fl-builder
4342
+ #: modules/content-slider/content-slider.php:562
4343
+ #: modules/post-slider/post-slider.php:744
4344
  msgctxt "Background height."
4345
  msgid "Auto"
4346
  msgstr "Auto"
4347
 
4348
  # @ fl-builder
4349
+ #: modules/content-slider/content-slider.php:579
4350
  msgid ""
4351
  "The link applies to the entire slide. If choosing a call to action type "
4352
  "below, this link will also be used for the text or button."
4353
  msgstr ""
4354
  "De link heeft betrekking op de gehele dia. Indien je kiest voor een "
4355
+ "hieronder getoond call-to-action type, zal de link worden gebruikt voor de "
4356
  "tekst of button."
4357
 
4358
  # @ fl-builder
4359
+ #: modules/content-slider/content-slider.php:721
4360
  msgid "Border Radius"
4361
  msgstr "Rand radius"
4362
 
4363
  # @ fl-builder
4364
+ #: modules/content-slider/content-slider.php:732
4365
  msgctxt "Module settings form tab. Display on mobile devices."
4366
  msgid "Mobile"
4367
  msgstr "Mobiel"
4368
 
4369
  # @ fl-builder
4370
+ #: modules/content-slider/content-slider.php:735
4371
  msgid "Mobile Photo"
4372
+ msgstr "Mobiele afbeelding"
4373
 
4374
  # @ fl-builder
4375
+ #: modules/content-slider/content-slider.php:741
4376
  msgid ""
4377
  "You can choose a different photo that the slide will change to on mobile "
4378
  "devices or no photo if desired."
4381
  "apparaat of kies ervoor geen afbeelding weer te geven."
4382
 
4383
  # @ fl-builder
4384
+ #: modules/content-slider/content-slider.php:743
4385
  msgid "Use Main Photo"
4386
+ msgstr "Selecteer belangrijkste afbeelding"
4387
 
4388
  # @ fl-builder
4389
+ #: modules/content-slider/content-slider.php:744
4390
  msgid "Choose Another Photo"
4391
+ msgstr "Selecteer andere afbeelding"
4392
 
4393
  # @ fl-builder
4394
+ #: modules/content-slider/content-slider.php:745
4395
  msgid "No Photo"
4396
+ msgstr "Geen afbeelding"
4397
 
4398
  # @ fl-builder
4399
+ #: modules/content-slider/content-slider.php:760
4400
  msgid "Mobile Text Colors"
4401
+ msgstr "Mobiele tekst kleuren"
4402
 
4403
  # @ fl-builder
4404
  #: modules/cta/cta.php:15
4406
  msgstr "Geef een kopregel, subregel en een button."
4407
 
4408
  # @ fl-builder
4409
+ #: modules/cta/cta.php:76
4410
  msgid "Ready to find out more?"
4411
  msgstr "Klaar om meer te ontdekken?"
4412
 
4413
  # @ fl-builder
4414
+ #: modules/cta/cta.php:91
4415
  msgid "Drop us a line today for a free quote!"
4416
  msgstr "Bel ons vandaag nog voor een vrijblijvende offerte!"
4417
 
4418
  # @ fl-builder
4419
+ #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
4420
+ #: modules/post-carousel/post-carousel.php:117
4421
+ #: modules/post-carousel/post-carousel.php:206
4422
+ #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:432
4423
+ #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
4424
  #: modules/testimonials/testimonials.php:37
4425
  #: modules/woocommerce/woocommerce.php:57
4426
  msgid "Layout"
4427
  msgstr "Weergave"
4428
 
4429
  # @ fl-builder
4430
+ #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
4431
  msgid "Inline"
4432
  msgstr "Inline"
4433
 
4434
  # @ fl-builder
4435
+ #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
4436
  msgid "Stacked"
4437
  msgstr "Gestapeld"
4438
 
4439
  # @ fl-builder
4440
+ #: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
4441
  msgid "Spacing"
4442
  msgstr "Tussenruimte"
4443
 
4444
  # @ fl-builder
4445
+ #: modules/cta/cta.php:246
4446
  msgid "Button Link"
4447
  msgstr "Knop Link"
4448
 
4449
  # @ fl-builder
4450
+ #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:121
4451
+ #: modules/post-grid/post-grid.php:55
4452
  msgid "Gallery"
4453
  msgstr "Galerij"
4454
 
4458
  msgstr "Weergave van meerdere afbeeldingen in een fotogalerie."
4459
 
4460
  # @ fl-builder
4461
+ #: modules/gallery/gallery.php:230
4462
  msgid "Collage"
4463
  msgstr "Collage"
4464
 
4465
  # @ fl-builder
4466
+ #: modules/gallery/gallery.php:231
4467
  msgctxt "Gallery layout: thumbnails."
4468
  msgid "Thumbs"
4469
  msgstr "Miniaturen"
4470
 
4471
  # @ fl-builder
4472
+ #: modules/gallery/gallery.php:267
4473
  msgid "Photo Size"
4474
  msgstr "Afbeelding Formaat"
4475
 
4476
  # @ fl-builder
4477
+ #: modules/gallery/gallery.php:270
4478
  msgctxt "Photo size."
4479
  msgid "Small"
4480
  msgstr "Klein"
4481
 
4482
  # @ fl-builder
4483
+ #: modules/gallery/gallery.php:271
4484
  msgctxt "Photo size."
4485
  msgid "Medium"
4486
  msgstr "Medium"
4487
 
4488
  # @ fl-builder
4489
+ #: modules/gallery/gallery.php:272
4490
  msgctxt "Photo size."
4491
  msgid "Large"
4492
  msgstr "Groot"
4493
 
4494
  # @ fl-builder
4495
+ #: modules/gallery/gallery.php:277
4496
  msgid "Photo Spacing"
4497
+ msgstr "Afstand tussen afbeeldingen"
4498
 
4499
  # @ fl-builder
4500
+ #: modules/gallery/gallery.php:285
4501
  msgid "Show Captions"
4502
+ msgstr "Toon bijschriften"
4503
 
4504
  # @ fl-builder
4505
+ #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
4506
  msgid "Never"
4507
  msgstr "Nooit"
4508
 
4509
  # @ fl-builder
4510
+ #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
4511
  msgid "On Hover"
4512
+ msgstr "Tijdens hover"
4513
 
4514
  # @ fl-builder
4515
+ #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
4516
  msgid "Below Photo"
4517
+ msgstr "Onder afbeelding"
4518
 
4519
  # @ fl-builder
4520
+ #: modules/gallery/gallery.php:292
4521
  msgid ""
4522
  "The caption pulls from whatever text you put in the caption area in the "
4523
  "media manager for each image. The caption is also pulled directly from "
4528
  "wordt ook direct gehaald van SmugMug als je bijschriften in je galerij hebt."
4529
 
4530
  # @ fl-builder
4531
+ #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4532
  msgid "Click Action"
4533
+ msgstr "Muisklik actie"
4534
 
4535
  # @ fl-builder
4536
+ #: modules/gallery/gallery.php:299
4537
  msgctxt "Click action."
4538
  msgid "None"
4539
  msgstr "Geen"
4540
 
4541
  # @ fl-builder
4542
+ #: modules/gallery/gallery.php:300 modules/photo/photo.php:468
4543
  msgid "Lightbox"
4544
  msgstr "Lightbox"
4545
 
4546
  # @ fl-builder
4547
+ #: modules/gallery/gallery.php:301
4548
  msgid "Photo Link"
4549
+ msgstr "Afbeelding link"
4550
 
4551
  # @ fl-builder
4552
  #: modules/heading/heading.php:15
4556
  # @ fl-builder
4557
  #: modules/heading/heading.php:101
4558
  msgid "HTML Tag"
4559
+ msgstr "HTML tag"
4560
 
4561
  # @ fl-builder
4562
  #: modules/heading/heading.php:128 modules/heading/heading.php:188
4563
  msgid "Custom Font Size"
4564
+ msgstr "Aangepaste tekengrootte"
4565
 
4566
  # @ fl-builder
4567
  #: modules/heading/heading.php:137
4568
  msgid "Mobile Structure"
4569
+ msgstr "Mobiele structuur"
4570
 
4571
  # @ fl-builder
4572
  #: modules/heading/heading.php:158
4573
  msgid "Custom Alignment"
4574
+ msgstr "Aangepaste uitlijning"
4575
 
4576
  # @ fl-builder
4577
  #: modules/html/html.php:14
4586
  # @ fl-builder
4587
  #: modules/icon-group/icon-group.php:14
4588
  msgid "Icon Group"
4589
+ msgstr "Icoon groep"
4590
 
4591
  # @ fl-builder
4592
  #: modules/icon-group/icon-group.php:15
4596
  # @ fl-builder
4597
  #: modules/icon-group/icon-group.php:125
4598
  msgid "Add Icon"
4599
+ msgstr "Icoon toevoegen"
4600
 
4601
  # @ fl-builder
4602
  #: modules/icon/icon.php:15
4611
  # @ fl-builder
4612
  #: modules/map/map.php:15
4613
  msgid "Display a Google map."
4614
+ msgstr "Toon een Google kaart."
4615
 
4616
  # @ fl-builder
4617
  #: modules/map/map.php:33
4621
  # @ fl-builder
4622
  #: modules/map/map.php:34
4623
  msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4624
+ msgstr "Funenkade 5 1018 AL, Amsterdam"
4625
 
4626
  # @ fl-builder
4627
  #: modules/photo/photo.php:26
4629
  msgstr "Upload een afbeelding of toon er een uit je mediabibliotheek."
4630
 
4631
  # @ fl-builder
4632
+ #: modules/photo/photo.php:391
4633
  msgid "Photo Source"
4634
+ msgstr "Afbeelding bron"
4635
 
4636
  # @ fl-builder
4637
+ #: modules/photo/photo.php:395 modules/photo/photo.php:467
4638
  msgid "URL"
4639
  msgstr "URL"
4640
 
4641
  # @ fl-builder
4642
+ #: modules/photo/photo.php:412
4643
  msgid "Photo URL"
4644
  msgstr "Afbeelding URL"
4645
 
4646
  # @ fl-builder
4647
+ #: modules/photo/photo.php:413
4648
  msgid "http://www.example.com/my-photo.jpg"
4649
+ msgstr "http://www.voorbeeld.nl/mijn-foto.jpg"
4650
 
4651
  # @ fl-builder
4652
+ #: modules/photo/photo.php:420 modules/post-slider/post-slider.php:479
4653
  msgctxt "Crop."
4654
  msgid "None"
4655
  msgstr "Geen"
4656
 
4657
  # @ fl-builder
4658
+ #: modules/photo/photo.php:441 modules/photo/photo.php:455
4659
  msgid "Caption"
4660
  msgstr "Bijschrift"
4661
 
4662
  # @ fl-builder
4663
+ #: modules/photo/photo.php:445
4664
  msgid "Show Caption"
4665
+ msgstr "Toon bijschrift"
4666
 
4667
  # @ fl-builder
4668
+ #: modules/photo/photo.php:464
4669
  msgid "Link Type"
4670
+ msgstr "Link type"
4671
 
4672
  # @ fl-builder
4673
+ #: modules/photo/photo.php:466
4674
  msgctxt "Link type."
4675
  msgid "None"
4676
  msgstr "Geen"
4677
 
4678
  # @ fl-builder
4679
+ #: modules/photo/photo.php:469
4680
  msgid "Photo File"
4681
  msgstr "Afbeeldingbestand"
4682
 
4683
  # @ fl-builder
4684
+ #: modules/photo/photo.php:480
4685
  msgid ""
4686
  "Link type applies to how the image should be linked on click. You can choose "
4687
  "a specific URL, the individual photo or a separate page with the photo."
4691
  "afbeelding of een aparte pagina met de afbeelding."
4692
 
4693
  # @ fl-builder
4694
+ #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
4695
  msgid "Link URL"
4696
  msgstr "Link URL"
4697
 
4698
  # @ fl-builder
4699
+ #: modules/post-carousel/includes/post-gallery-loop.php:35
4700
+ #: modules/post-carousel/includes/post-grid-loop.php:22
 
 
 
4701
  #: modules/post-grid/includes/post-feed.php:14
4702
  #: modules/post-grid/includes/post-grid.php:24
4703
+ #: modules/post-slider/includes/post-loop.php:29
4704
  #, php-format
4705
  msgctxt "%s stands for author name."
4706
  msgid "By %s"
4707
  msgstr "Door %s"
4708
 
4709
+ #: modules/post-carousel/post-carousel.php:14
4710
+ msgid "Posts Carousel"
4711
+ msgstr "Berichtencarousel"
4712
+
4713
+ # @ fl-builder
4714
+ #: modules/post-carousel/post-carousel.php:15
4715
+ msgid "Display a carousel of your WordPress posts."
4716
+ msgstr "Een carousel van je WordPress berichten weergeven."
4717
+
4718
+ # @ fl-builder
4719
+ #: modules/post-carousel/post-carousel.php:110
4720
+ #: modules/post-slider/post-slider.php:337
4721
+ msgid "Slider"
4722
+ msgstr "Slider"
4723
+
4724
+ # @ fl-builder
4725
+ #: modules/post-carousel/post-carousel.php:120
4726
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:91
4727
+ msgid "Grid"
4728
+ msgstr "Raster"
4729
+
4730
+ # @ fl-builder
4731
+ #: modules/post-carousel/post-carousel.php:152
4732
+ #: modules/post-slider/post-slider.php:378 modules/video/video.php:120
4733
+ msgid "Loop"
4734
+ msgstr "Herhaal"
4735
+
4736
+ # @ fl-builder
4737
+ #: modules/post-carousel/post-carousel.php:168
4738
+ #: modules/post-slider/post-slider.php:394
4739
+ msgid "Number of Posts"
4740
+ msgstr "Aantal berichten"
4741
+
4742
  # @ fl-builder
4743
+ #: modules/post-carousel/post-carousel.php:175
4744
+ #: modules/post-slider/post-slider.php:401
4745
+ msgid "Slider Controls"
4746
+ msgstr "Slider instellingen"
4747
+
4748
+ # @ fl-builder
4749
+ #: modules/post-carousel/post-carousel.php:209
4750
  #: modules/post-grid/post-grid.php:14
4751
  msgid "Posts"
4752
  msgstr "Berichten"
4753
 
4754
+ # @ fl-builder
4755
+ #: modules/post-carousel/post-carousel.php:213
4756
+ msgid "Post Max Width"
4757
+ msgstr "Maximale breedte van bericht"
4758
+
4759
+ # @ fl-builder
4760
+ #: modules/post-carousel/post-carousel.php:221
4761
+ #: modules/post-grid/post-grid.php:103
4762
+ msgid "Post Spacing"
4763
+ msgstr "Tussenruimte"
4764
+
4765
+ #: modules/post-carousel/post-carousel.php:229
4766
+ msgid "Equalize Column Heights"
4767
+ msgstr "Maak kolom hoogtes gelijk"
4768
+
4769
+ # @ fl-builder
4770
+ #: modules/post-carousel/post-carousel.php:238
4771
+ msgid "Post Hover Transition"
4772
+ msgstr "Overgang"
4773
+
4774
+ # @ fl-builder
4775
+ #: modules/post-carousel/post-carousel.php:242
4776
+ #: modules/post-grid/post-grid.php:248
4777
+ msgid "Slide Up"
4778
+ msgstr "Schuif omhoog"
4779
+
4780
+ # @ fl-builder
4781
+ #: modules/post-carousel/post-carousel.php:243
4782
+ #: modules/post-grid/post-grid.php:249
4783
+ msgid "Slide Down"
4784
+ msgstr "Schuif omlaag"
4785
+
4786
+ # @ fl-builder
4787
+ #: modules/post-carousel/post-carousel.php:244
4788
+ #: modules/post-grid/post-grid.php:250
4789
+ msgid "Scale Up"
4790
+ msgstr "Groter maken"
4791
+
4792
+ # @ fl-builder
4793
+ #: modules/post-carousel/post-carousel.php:245
4794
+ #: modules/post-grid/post-grid.php:251
4795
+ msgid "Scale Down"
4796
+ msgstr "Kleiner maken"
4797
+
4798
+ # @ fl-builder
4799
+ #: modules/post-carousel/post-carousel.php:251
4800
+ #: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:455
4801
+ msgid "Featured Image"
4802
+ msgstr "Uitgelichte afbeelding"
4803
+
4804
+ #: modules/post-carousel/post-carousel.php:279
4805
+ #: modules/post-grid/post-grid.php:261
4806
+ msgid "Use Icon for Posts"
4807
+ msgstr "Gebruik icoon voor berichten"
4808
+
4809
+ # @ fl-builder
4810
+ #: modules/post-carousel/post-carousel.php:293
4811
+ #: modules/post-grid/post-grid.php:275
4812
+ msgid "Post Icon"
4813
+ msgstr "Bericht icoon"
4814
+
4815
+ # @ fl-builder
4816
+ #: modules/post-carousel/post-carousel.php:297
4817
+ #: modules/post-grid/post-grid.php:279
4818
+ msgid "Post Icon Position"
4819
+ msgstr "Bericht icoon positie"
4820
+
4821
+ # @ fl-builder
4822
+ #: modules/post-carousel/post-carousel.php:300
4823
+ #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
4824
+ msgid "Above Text"
4825
+ msgstr "Boven tekst"
4826
+
4827
+ # @ fl-builder
4828
+ #: modules/post-carousel/post-carousel.php:301
4829
+ #: modules/post-grid/post-grid.php:283
4830
+ msgid "Below Text"
4831
+ msgstr "Onder tekst"
4832
+
4833
+ # @ fl-builder
4834
+ #: modules/post-carousel/post-carousel.php:306
4835
+ #: modules/post-grid/post-grid.php:288
4836
+ msgid "Post Icon Size"
4837
+ msgstr "Bericht icoon grootte"
4838
+
4839
+ # @ fl-builder
4840
+ #: modules/post-carousel/post-carousel.php:315
4841
+ #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:490
4842
+ msgid "Post Info"
4843
+ msgstr "Bericht Info"
4844
+
4845
+ # @ fl-builder
4846
+ #: modules/post-carousel/post-carousel.php:342
4847
+ #: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:517
4848
+ msgid "Date Format"
4849
+ msgstr "Datumnotatie"
4850
+
4851
+ # @ fl-builder
4852
+ #: modules/post-carousel/post-carousel.php:372
4853
+ #: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:556
4854
+ msgid "More Link"
4855
+ msgstr "Lees meer link"
4856
+
4857
+ # @ fl-builder
4858
+ #: modules/post-carousel/post-carousel.php:381
4859
+ #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:565
4860
+ msgid "More Link Text"
4861
+ msgstr "Lees meer tekst"
4862
+
4863
+ # @ fl-builder
4864
+ #: modules/post-carousel/post-carousel.php:418
4865
+ #: modules/post-grid/post-grid.php:307
4866
+ msgid "Post Icon Color"
4867
+ msgstr "Bericht icoon kleur"
4868
+
4869
+ # @ fl-builder
4870
+ #: modules/post-grid/includes/frontend.php:41
4871
+ msgid "No posts found."
4872
+ msgstr "Geen berichten gevonden."
4873
+
4874
  # @ fl-builder
4875
  #: modules/post-grid/post-grid.php:15
4876
  msgid "Display a grid of your WordPress posts."
4881
  msgid "Layout Style"
4882
  msgstr "Opmaakstijl"
4883
 
 
 
 
 
 
4884
  # @ fl-builder
4885
  #: modules/post-grid/post-grid.php:56
4886
  msgid "Feed"
4887
  msgstr "Feed"
4888
 
4889
  # @ fl-builder
4890
+ #: modules/post-grid/post-grid.php:74
4891
  msgid "Pagination Style"
4892
+ msgstr "Paginering stijl"
4893
 
4894
  # @ fl-builder
4895
+ #: modules/post-grid/post-grid.php:77
4896
  msgid "Numbers"
4897
  msgstr "Cijfers"
4898
 
4899
  # @ fl-builder
4900
+ #: modules/post-grid/post-grid.php:79
4901
  msgctxt "Pagination style."
4902
  msgid "None"
4903
  msgstr "Geen"
4904
 
4905
  # @ fl-builder
4906
+ #: modules/post-grid/post-grid.php:84
4907
  msgid "Posts Per Page"
4908
  msgstr "Berichten per pagina"
4909
 
4910
  # @ fl-builder
4911
+ #: modules/post-grid/post-grid.php:95
4912
  msgid "Post Width"
4913
+ msgstr "Bericht breedte"
4914
 
4915
  # @ fl-builder
4916
+ #: modules/post-grid/post-grid.php:134
4917
+ msgid "Beside Text"
4918
+ msgstr "Naast tekst"
4919
 
4920
  # @ fl-builder
4921
+ #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:533
4922
+ msgid "Comments"
4923
+ msgstr "Reacties"
4924
 
4925
+ #: modules/post-grid/post-grid.php:211
4926
+ msgid "Content Type"
4927
+ msgstr "Inhoud type"
4928
+
4929
+ #: modules/post-grid/post-grid.php:214
4930
+ msgid "Excerpt"
4931
+ msgstr "Samenvatting"
4932
+
4933
+ #: modules/post-grid/post-grid.php:215
4934
+ msgid "Full Text"
4935
+ msgstr "Volledige tekst"
4936
 
4937
  # @ fl-builder
4938
+ #: modules/post-grid/post-grid.php:244
4939
+ msgid "Hover Transition"
4940
+ msgstr "Overgang"
4941
 
4942
  # @ fl-builder
4943
+ #: modules/post-slider/post-slider.php:14
4944
+ msgid "Posts Slider"
4945
+ msgstr "Berichtenslider"
4946
 
4947
  # @ fl-builder
4948
+ #: modules/post-slider/post-slider.php:15
4949
+ msgid "Display a slider of your WordPress posts."
4950
+ msgstr "Een slider van je WordPress berichten weergeven."
4951
 
4952
  # @ fl-builder
4953
+ #: modules/post-slider/post-slider.php:349
4954
+ msgid ""
4955
+ "This setting is the minimum height of the post slider. Content will expand "
4956
+ "the height automatically."
4957
+ msgstr ""
4958
+ "Deze instelling is de minimale hoogte van de berichtenslider. Inhoud zal de "
4959
+ "hoogte automatisch vergroten."
4960
 
4961
+ # @ fl-builder
4962
+ #: modules/post-slider/post-slider.php:439
4963
+ msgid "Show Featured Image?"
4964
+ msgstr "Uitgelichte afbeelding tonen?"
4965
 
4966
+ # @ fl-builder
4967
+ #: modules/post-slider/post-slider.php:623
4968
+ msgid ""
4969
+ "The position will move the content layout selections left, right or bottom "
4970
+ "over the background of the slide."
4971
+ msgstr ""
4972
+ "De positie zal de inhoudselectie links, rechts of in het midden over de "
4973
+ "achtergrond van de dia verplaatsen."
4974
 
4975
+ # @ fl-builder
4976
+ #: modules/post-slider/post-slider.php:642
4977
+ msgid ""
4978
+ "The position will move the content layout selections left or right or center "
4979
+ "of the thumbnail of the slide."
4980
+ msgstr ""
4981
+ "De positie zal de inhoudselectie links, rechts of in het midden over de "
4982
+ "achtergrond van de dia verplaatsen."
4983
 
4984
  # @ fl-builder
4985
+ #: modules/post-slider/post-slider.php:658
4986
+ msgid "Text Width"
4987
+ msgstr "Tekstbreedte"
4988
 
4989
  # @ fl-builder
4990
+ #: modules/post-slider/post-slider.php:666
4991
+ msgid "Text Padding"
4992
+ msgstr "Tekst padding"
4993
 
4994
  # @ fl-builder
4995
+ #: modules/post-slider/post-slider.php:731
4996
+ msgid "Text Background Gradient"
4997
+ msgstr "Tekst achtergrond gradient"
4998
 
4999
  # @ fl-builder
5000
  #: modules/pricing-table/pricing-table.php:14
5009
  # @ fl-builder
5010
  #: modules/pricing-table/pricing-table.php:26
5011
  msgid "Pricing Boxes"
5012
+ msgstr "Prijs vakken"
5013
 
5014
  # @ fl-builder
5015
  #: modules/pricing-table/pricing-table.php:33
5016
  msgid "Pricing Box"
5017
+ msgstr "Prijs vak"
5018
 
5019
  # @ fl-builder
5020
  #: modules/pricing-table/pricing-table.php:50
5021
  msgid "Box Spacing"
5022
+ msgstr "Vak tussenruimte"
5023
 
5024
  # @ fl-builder
5025
  #: modules/pricing-table/pricing-table.php:53
5035
  # @ fl-builder
5036
  #: modules/pricing-table/pricing-table.php:59
5037
  msgid "Features Min Height"
5038
+ msgstr "Minimale hoogte opties"
5039
 
5040
  # @ fl-builder
5041
  #: modules/pricing-table/pricing-table.php:63
5061
  # @ fl-builder
5062
  #: modules/pricing-table/pricing-table.php:84
5063
  msgid "Add Pricing Box"
5064
+ msgstr "Prijzen vak toevoegen"
5065
 
5066
  # @ fl-builder
5067
  #: modules/pricing-table/pricing-table.php:98
5068
  msgid "Title Size"
5069
+ msgstr "Titel grootte"
5070
 
5071
  # @ fl-builder
5072
  #: modules/pricing-table/pricing-table.php:107
5073
  msgid "Price Box"
5074
+ msgstr "Prijs vak"
5075
 
5076
  # @ fl-builder
5077
  #: modules/pricing-table/pricing-table.php:111
5087
  # @ fl-builder
5088
  #: modules/pricing-table/pricing-table.php:116
5089
  msgid "per Year"
5090
+ msgstr "Per jaar"
5091
 
5092
  # @ fl-builder
5093
  #: modules/pricing-table/pricing-table.php:120
5096
 
5097
  # @ fl-builder
5098
  #: modules/pricing-table/pricing-table.php:133
5099
+ #: modules/subscribe-form/subscribe-form.php:168
5100
  msgid "Button Text"
5101
+ msgstr "Knop tekst"
5102
 
5103
  # @ fl-builder
5104
  #: modules/pricing-table/pricing-table.php:137
5119
  # @ fl-builder
5120
  #: modules/pricing-table/pricing-table.php:162
5121
  msgid "Box Background"
5122
+ msgstr "Vak achtergrond"
5123
 
5124
  # @ fl-builder
5125
  #: modules/pricing-table/pricing-table.php:167
5126
  msgid "Box Foreground"
5127
+ msgstr "Vak voorgrond"
5128
 
5129
  # @ fl-builder
5130
  #: modules/pricing-table/pricing-table.php:173
5134
  # @ fl-builder
5135
  #: modules/pricing-table/pricing-table.php:178
5136
  msgid "Accent Text Color"
5137
+ msgstr "Tekst accentkleur"
5138
 
5139
  # @ fl-builder
5140
  #: modules/pricing-table/pricing-table.php:182
5141
  msgid "Box Top Margin"
5142
+ msgstr "Vak bovenmarge"
5143
 
5144
  # @ fl-builder
5145
  #: modules/rich-text/rich-text.php:15
5189
  msgstr "Weergave van meerdere afbeeldingenin een diavoorstelling."
5190
 
5191
  # @ fl-builder
5192
+ #: modules/slideshow/slideshow.php:310
5193
  msgid "Skin Color"
5194
+ msgstr "Skin kleur"
5195
 
5196
  # @ fl-builder
5197
+ #: modules/slideshow/slideshow.php:313
5198
  msgctxt "Color."
5199
  msgid "Light"
5200
  msgstr "Licht"
5201
 
5202
  # @ fl-builder
5203
+ #: modules/slideshow/slideshow.php:314
5204
  msgctxt "Color."
5205
  msgid "Dark"
5206
  msgstr "Donker"
5207
 
5208
  # @ fl-builder
5209
+ #: modules/slideshow/slideshow.php:316
5210
  msgid ""
5211
  "If your overall theme/images are lighter in color, light will display "
5212
  "buttons in a darker color scheme and vice versa for dark."
5215
  "in een donkere kleur schema weergeven en en omgekeerd voor donker."
5216
 
5217
  # @ fl-builder
5218
+ #: modules/slideshow/slideshow.php:326
5219
  msgid ""
5220
  "Crop set to no will fit the slideshow images to the height you specify and "
5221
  "keep the width proportional, whereas crop set to yes will fit the slideshow "
5229
  "aan de afmetingen te voldoen."
5230
 
5231
  # @ fl-builder
5232
+ #: modules/slideshow/slideshow.php:330
5233
  msgid "Disable Right-Click"
5234
  msgstr "Klik met de rechtermuisknop uitschakelen"
5235
 
5236
  # @ fl-builder
5237
+ #: modules/slideshow/slideshow.php:350
5238
  msgctxt "Click action type."
5239
  msgid "None"
5240
  msgstr "Geen"
5241
 
5242
  # @ fl-builder
5243
+ #: modules/slideshow/slideshow.php:374
5244
  msgid "Playback"
5245
  msgstr "Afspelen"
5246
 
5247
  # @ fl-builder
5248
+ #: modules/slideshow/slideshow.php:400
5249
  msgctxt "Slideshow transition."
5250
  msgid "None"
5251
  msgstr "Geen"
5252
 
5253
  # @ fl-builder
5254
+ #: modules/slideshow/slideshow.php:437
5255
  msgid "Controls"
5256
  msgstr "Instellingen"
5257
 
5258
  # @ fl-builder
5259
+ #: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
5260
  msgid "Navigation Arrows"
5261
  msgstr "Navigatiepijlen"
5262
 
5263
  # @ fl-builder
5264
+ #: modules/slideshow/slideshow.php:450
5265
  msgid ""
5266
  "Navigational arrows allow the visitor to freely move through the images in "
5267
  "your slideshow. These are larger arrows that overlay your slideshow images "
5273
  "de balk met besturingselementen."
5274
 
5275
  # @ fl-builder
5276
+ #: modules/slideshow/slideshow.php:455
5277
  msgid "Control Bar"
5278
  msgstr "Navigatiebalk"
5279
 
5280
  # @ fl-builder
5281
+ #: modules/slideshow/slideshow.php:459
5282
  msgid "Nav Type"
5283
+ msgstr "Navigatie type"
5284
 
5285
  # @ fl-builder
5286
+ #: modules/slideshow/slideshow.php:462
5287
  msgctxt "Nav type."
5288
  msgid "None"
5289
  msgstr "Geen"
5290
 
5291
  # @ fl-builder
5292
+ #: modules/slideshow/slideshow.php:463
5293
  msgid "Buttons"
5294
  msgstr "Knoppen"
5295
 
5296
  # @ fl-builder
5297
+ #: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
5298
  msgid "Thumbs"
5299
  msgstr "Miniaturen"
5300
 
5301
  # @ fl-builder
5302
+ #: modules/slideshow/slideshow.php:479
5303
  msgid "Nav Position"
5304
+ msgstr "Navigatie positie"
5305
 
5306
  # @ fl-builder
5307
+ #: modules/slideshow/slideshow.php:489
5308
  msgid "Control Bar Buttons"
5309
+ msgstr "Navigatiebalk knoppen"
5310
 
5311
  # @ fl-builder
5312
+ #: modules/slideshow/slideshow.php:502
5313
  msgid "Play Button"
5314
+ msgstr "Play knop"
5315
 
5316
  # @ fl-builder
5317
+ #: modules/slideshow/slideshow.php:511
5318
  msgid "Fullscreen Button"
5319
+ msgstr "Volledig scherm knop"
5320
 
5321
  # @ fl-builder
5322
+ #: modules/slideshow/slideshow.php:520
5323
  msgid "Photo Count"
5324
+ msgstr "Aantal afbeeldingen"
5325
 
5326
  # @ fl-builder
5327
+ #: modules/slideshow/slideshow.php:529
5328
  msgid "Thumbs Button"
5329
+ msgstr "Miniaturen knop"
5330
 
5331
  # @ fl-builder
5332
+ #: modules/slideshow/slideshow.php:538
5333
  msgid "Caption Button"
5334
+ msgstr "Bijschrift knop"
5335
 
5336
  # @ fl-builder
5337
+ #: modules/slideshow/slideshow.php:547
5338
  msgid "Social Button"
5339
+ msgstr "Social media knop"
5340
 
5341
  # @ fl-builder
5342
+ #: modules/slideshow/slideshow.php:557
5343
  msgid "Control Bar Overlay"
5344
+ msgstr "Navigatiebalk overlay"
5345
 
5346
  # @ fl-builder
5347
+ #: modules/slideshow/slideshow.php:561
5348
  msgid "Overlay Enabled"
5349
+ msgstr "Overlay ingeschakeld"
5350
 
5351
  # @ fl-builder
5352
+ #: modules/slideshow/slideshow.php:572
5353
  msgid ""
5354
  "Control bar overlay specifies if the control bar buttons you choose overlay "
5355
  "your slideshow images or site below the slideshow completely."
5356
  msgstr ""
5357
+ "Navigatiebalk overlay geeft aan of de navigatiebalk knoppen die je kiest "
5358
  "over je diavoorstelling afbeeldingen liggen of geheel onder je "
5359
  "diavoorstelling worden geplaatst."
5360
 
5361
  # @ fl-builder
5362
+ #: modules/slideshow/slideshow.php:576
5363
  msgid "Overlay Hide"
5364
+ msgstr "Verberg overlay"
5365
 
5366
  # @ fl-builder
5367
+ #: modules/slideshow/slideshow.php:582
5368
  msgid ""
5369
  "Overlay hide will hide the control bar after however many seconds you "
5370
  "specify below. They will reappear upon mouse over."
5373
  "seconden. Ze verschijnen weer wanneer er met de muis overheen wordt bewogen."
5374
 
5375
  # @ fl-builder
5376
+ #: modules/slideshow/slideshow.php:586
5377
  msgid "Overlay Hide Delay"
5378
+ msgstr "Verberg overlay vertraging"
5379
 
5380
  # @ fl-builder
5381
+ #: modules/slideshow/slideshow.php:598
5382
  msgid "Thumbs Size"
5383
+ msgstr "Miniatuur afmeting"
5384
 
5385
  # @ fl-builder
5386
+ #: modules/slideshow/slideshow.php:607
5387
  msgid "Social"
5388
  msgstr "Social"
5389
 
5390
  # @ fl-builder
5391
+ #: modules/slideshow/slideshow.php:611
5392
  msgid "Facebook Button"
5393
+ msgstr "Facebook Knop"
5394
 
5395
  # @ fl-builder
5396
+ #: modules/slideshow/slideshow.php:623
5397
  msgid "Twitter Button"
5398
+ msgstr "Twitter knop"
5399
 
5400
  # @ fl-builder
5401
+ #: modules/slideshow/slideshow.php:635
5402
  msgid "Google Plus Button"
5403
+ msgstr "Google+ knop"
5404
 
5405
  # @ fl-builder
5406
+ #: modules/slideshow/slideshow.php:647
5407
  msgid "Pinterest Button"
5408
+ msgstr "Pinterest knop"
5409
 
5410
  # @ fl-builder
5411
  #: modules/social-buttons/social-buttons.php:14
5412
  msgid "Social Buttons"
5413
+ msgstr "Social knoppen"
5414
 
5415
  # @ fl-builder
5416
  #: modules/social-buttons/social-buttons.php:15
5417
  msgid "Displays social buttons."
5418
+ msgstr "Toon social knoppen."
5419
 
5420
  # @ fl-builder
5421
  #: modules/social-buttons/social-buttons.php:71
5425
  # @ fl-builder
5426
  #: modules/social-buttons/social-buttons.php:75
5427
  msgid "Current Page"
5428
+ msgstr "Huidige pagina"
5429
 
5430
  # @ fl-builder
5431
  #: modules/social-buttons/social-buttons.php:82
5446
  # @ fl-builder
5447
  #: modules/social-buttons/social-buttons.php:107
5448
  msgid "Show Facebook"
5449
+ msgstr "Toon facebook"
5450
 
5451
  # @ fl-builder
5452
  #: modules/social-buttons/social-buttons.php:116
5467
  msgid "Please enter a valid email address."
5468
  msgstr "Geef aub een geldig e-mailadres in."
5469
 
5470
+ #: modules/subscribe-form/includes/frontend.php:41
5471
  msgid "Something went wrong. Please check your entries and try again."
5472
  msgstr "Er ging iets mis. Probeer het nog eens."
5473
 
5474
  #: modules/subscribe-form/subscribe-form.php:18
5475
  msgid "Subscribe Form"
5476
+ msgstr "Aanmeldformulier"
5477
 
5478
  #: modules/subscribe-form/subscribe-form.php:19
5479
  msgid "Adds a simple subscribe form to your layout."
5480
+ msgstr "Voeg een eenvoudig inschrijfformulier toe aan je layout."
 
 
 
 
 
5481
 
5482
+ #: modules/subscribe-form/subscribe-form.php:118
5483
  msgid "Success"
5484
  msgstr "Succes"
5485
 
5486
+ #: modules/subscribe-form/subscribe-form.php:122
5487
  msgid "Success Action"
5488
  msgstr "Succes actie"
5489
 
5490
+ #: modules/subscribe-form/subscribe-form.php:124
5491
  msgid "Show Message"
5492
+ msgstr "Toon bericht"
5493
 
5494
+ #: modules/subscribe-form/subscribe-form.php:125
5495
  msgid "Redirect"
5496
  msgstr "Omleiden"
5497
 
5498
+ #: modules/subscribe-form/subscribe-form.php:144
5499
  msgid ""
5500
  "Thanks for subscribing! Please check your email for further instructions."
5501
  msgstr ""
5502
  "Bedankt voor het aanmelden! Controleer uw email voor verdere instructies."
5503
 
5504
+ #: modules/subscribe-form/subscribe-form.php