WordPress Page Builder – Beaver Builder - Version 1.6.4.1

Version Description

Download this release

Release Info

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

Code changes from version 1.6.4 to 1.6.4.1

changelog.txt CHANGED
@@ -1,3 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <h4>1.6.4 - 10/13/2015</h4>
2
  <p>This update adds a number of new features. Be sure to check out <a href="https://www.wpbeaverbuilder.com/beaver-builder-1-6-4-featuring-a-new-color-picker-full-height-rows-the-number-counter-module-and-more/" target="_blank">the blog post</a> for detailed info on what was added.
3
  <p><strong>Enhancements</strong></p>
1
+ <h4>1.6.4.1 - 10/21/2015</h4>
2
+ <p><strong>Enhancements</strong></p>
3
+ <ul>
4
+ <li>Images in the Content Slider module now have alt tags.</li>
5
+ <li>Updated various translations.</li>
6
+ </ul>
7
+ <p><strong>Bug Fixes</strong></p>
8
+ <ul>
9
+ <li>Fixed a content rendering bug that caused pages to become unresponsive with some shortcodes.</li>
10
+ <li>Fixed an edge case multisite domain mapping issue with scripts/styles loading under the incorrect domain.</li>
11
+ <li>Fixed an issue making it so you couldn't have fixed width content in a full height row.</li>
12
+ <li>Fixed an issue with widgets such as the GeoDirectory plugin that output the widget_id as a JavaScript variable name.</li>
13
+ <li>Fixed a post date bug with the feed layout in the Posts module.</li>
14
+ <li>Fixed a bug caused by plugins that use a forward slash in the browser hash.</li>
15
+ </ul>
16
+
17
  <h4>1.6.4 - 10/13/2015</h4>
18
  <p>This update adds a number of new features. Be sure to check out <a href="https://www.wpbeaverbuilder.com/beaver-builder-1-6-4-featuring-a-new-color-picker-full-height-rows-the-number-counter-module-and-more/" target="_blank">the blog post</a> for detailed info on what was added.
19
  <p><strong>Enhancements</strong></p>
classes/class-fl-builder.php CHANGED
@@ -7,14 +7,6 @@
7
  */
8
  final class FLBuilder {
9
 
10
- /**
11
- * Stores the ID of the post that is currently being rendered.
12
- *
13
- * @since 1.5.9
14
- * @var int $post_rendering
15
- */
16
- static private $post_rendering = null;
17
-
18
  /**
19
  * Localization
20
  *
@@ -813,26 +805,6 @@ final class FLBuilder {
813
  }
814
  }
815
 
816
- /**
817
- * Called by the_content filter with a priority of 1 to
818
- * reset the internal post_rendering flag when a new post
819
- * starts to render.
820
- *
821
- * @since 1.6.3.3
822
- * @param string $content The existing content.
823
- * @return string
824
- */
825
- static public function render_content_init( $content )
826
- {
827
- global $post;
828
-
829
- if ( $post->ID == FLBuilderModel::get_post_id() ) {
830
- self::$post_rendering = null;
831
- }
832
-
833
- return $content;
834
- }
835
-
836
  /**
837
  * Renders the content for a builder layout while in the loop.
838
  * This method should only be called by the_content filter as
@@ -845,31 +817,15 @@ final class FLBuilder {
845
  */
846
  static public function render_content( $content )
847
  {
848
- global $wp_filter;
849
-
850
  $post_id = FLBuilderModel::get_post_id();
851
  $enabled = FLBuilderModel::is_builder_enabled();
852
- $rendering = $post_id === self::$post_rendering;
853
  $ajax = defined( 'DOING_AJAX' );
854
  $in_loop = in_the_loop();
855
  $is_global = in_array( $post_id, FLBuilderModel::get_global_posts() );
856
 
857
- if( $enabled && ! $rendering && ! $ajax && ( $in_loop || $is_global ) ) {
858
-
859
- // Store this post ID so we know it is currently being rendered
860
- // in case another method or function calls apply filters on the
861
- // content after this method has run which creates an infinite loop.
862
- self::$post_rendering = $post_id;
863
-
864
- // Store a reference to the current the_content filters array since
865
- // any modules or widgets that call apply_filters on the_content cause
866
- // the array pointer to move to the end. That makes it so the builder
867
- // content doesn't receive filters after this method runs as it should.
868
- $filters = $wp_filter['the_content'];
869
-
870
- // Remove the builder's render_content filter so it's not called again
871
- // by modules or widgets that call apply_filters on the content.
872
- remove_filter( 'the_content', 'FLBuilder::render_content_init', 1 );
873
  remove_filter( 'the_content', 'FLBuilder::render_content' );
874
 
875
  // Render the content.
@@ -879,13 +835,35 @@ final class FLBuilder {
879
  echo '</div>';
880
  $content = ob_get_clean();
881
 
882
- // Restore the original the_content filters array.
883
- $wp_filter['the_content'] = $filters;
 
 
 
 
 
884
  }
885
 
886
  return $content;
887
  }
888
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
889
  /**
890
  * Renders the CSS classes for the main content div tag.
891
  *
7
  */
8
  final class FLBuilder {
9
 
 
 
 
 
 
 
 
 
10
  /**
11
  * Localization
12
  *
805
  }
806
  }
807
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
808
  /**
809
  * Renders the content for a builder layout while in the loop.
810
  * This method should only be called by the_content filter as
817
  */
818
  static public function render_content( $content )
819
  {
 
 
820
  $post_id = FLBuilderModel::get_post_id();
821
  $enabled = FLBuilderModel::is_builder_enabled();
 
822
  $ajax = defined( 'DOING_AJAX' );
823
  $in_loop = in_the_loop();
824
  $is_global = in_array( $post_id, FLBuilderModel::get_global_posts() );
825
 
826
+ if( $enabled && ! $ajax && ( $in_loop || $is_global ) ) {
827
+
828
+ // Remove the builder's render_content filter so it's not called again.
 
 
 
 
 
 
 
 
 
 
 
 
 
829
  remove_filter( 'the_content', 'FLBuilder::render_content' );
830
 
831
  // Render the content.
835
  echo '</div>';
836
  $content = ob_get_clean();
837
 
838
+ // Do shortcodes here since letting the WP filter run can cause an infinite loop.
839
+ $pattern = get_shortcode_regex();
840
+ $content = preg_replace_callback( "/$pattern/s", 'FLBuilder::double_escape_shortcodes', $content );
841
+ $content = do_shortcode( $content );
842
+
843
+ // Reapply the builder's render_content filter.
844
+ add_filter( 'the_content', 'FLBuilder::render_content' );
845
  }
846
 
847
  return $content;
848
  }
849
 
850
+ /**
851
+ * Escaped shortcodes need to be double escaped or they will
852
+ * be parsed by WP's shortcodes filter.
853
+ *
854
+ * @since 1.6.4.1
855
+ * @param array $matches The existing content.
856
+ * @return string
857
+ */
858
+ static public function double_escape_shortcodes( $matches )
859
+ {
860
+ if ( $matches[1] == '[' && $matches[6] == ']' ) {
861
+ return '[' . $matches[0] . ']';
862
+ }
863
+
864
+ return $matches[0];
865
+ }
866
+
867
  /**
868
  * Renders the CSS classes for the main content div tag.
869
  *
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.4
7
  * Author: The Beaver Builder Team
8
  * Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
9
  * Copyright: (c) 2014 Beaver Builder
@@ -11,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.4');
15
  define('FL_BUILDER_FILE', __FILE__);
16
  define('FL_BUILDER_DIR', plugin_dir_path(FL_BUILDER_FILE));
17
  define('FL_BUILDER_URL', plugins_url('/', FL_BUILDER_FILE));
@@ -115,5 +115,4 @@ add_filter('mce_css', 'FLBuilder::add_e
115
  add_filter('mce_buttons_2', 'FLBuilder::editor_buttons_2');
116
  add_filter('mce_external_plugins', 'FLBuilder::editor_external_plugins', 9999);
117
  add_filter('tiny_mce_before_init', 'FLBuilder::editor_font_sizes');
118
- add_filter('the_content', 'FLBuilder::render_content_init', 1);
119
  add_filter('the_content', 'FLBuilder::render_content');
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.4.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.4.1');
15
  define('FL_BUILDER_FILE', __FILE__);
16
  define('FL_BUILDER_DIR', plugin_dir_path(FL_BUILDER_FILE));
17
  define('FL_BUILDER_URL', plugins_url('/', FL_BUILDER_FILE));
115
  add_filter('mce_buttons_2', 'FLBuilder::editor_buttons_2');
116
  add_filter('mce_external_plugins', 'FLBuilder::editor_external_plugins', 9999);
117
  add_filter('tiny_mce_before_init', 'FLBuilder::editor_font_sizes');
 
118
  add_filter('the_content', 'FLBuilder::render_content');
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.4',
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.4.1',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
js/fl-builder-layout.js CHANGED
@@ -425,12 +425,14 @@
425
  */
426
  _initHash: function()
427
  {
428
- var hash = window.location.hash.replace( '#', '' ),
429
  element = null,
430
  tabs = null,
431
  responsiveLabel = null,
432
  tabIndex = null,
433
  label = null;
 
 
434
 
435
  if ( '' != hash ) {
436
 
425
  */
426
  _initHash: function()
427
  {
428
+ var hash = window.location.hash.replace( '#', '' ).split( '/' ).shift(),
429
  element = null,
430
  tabs = null,
431
  responsiveLabel = null,
432
  tabIndex = null,
433
  label = null;
434
+
435
+ console.log( hash );
436
 
437
  if ( '' != hash ) {
438
 
languages/fr_FR.mo CHANGED
Binary file
languages/fr_FR.po CHANGED
@@ -3,14 +3,14 @@ msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-08-31 19:54-0300\n"
6
- "PO-Revision-Date: 2015-08-31 20:38-0300\n"
7
  "Last-Translator: Gerard Godin <gerard@getgointernetcoaching.com>\n"
8
  "Language-Team: \n"
9
  "Language: fr_FR\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.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__;"
@@ -101,7 +101,8 @@ msgstr ""
101
  #: classes/class-fl-builder-admin-settings.php:620
102
  msgid "Error! Please enter an iframe for the video embed code."
103
  msgstr ""
104
- "Erreur! Entrez un &laquo; iframe &raquo; pour le code d'encastrage du vidéo"
 
105
 
106
  #: classes/class-fl-builder-admin-settings.php:638
107
  msgid "Error! You must have at least one feature of the help button enabled."
@@ -447,7 +448,7 @@ msgstr "Erreur d'abonnement à \"Constant Contact\". %s"
447
  #: classes/class-fl-builder-service-email-address.php:39
448
  #: classes/class-fl-builder-service-madmimi.php:69
449
  msgid "Error: You must provide an email address."
450
- msgstr "Erreur : Vous devez fournir un courriel."
451
 
452
  #: classes/class-fl-builder-service-email-address.php:63
453
  #: classes/class-fl-builder-service-madmimi.php:110
@@ -645,7 +646,7 @@ msgstr ""
645
 
646
  #: classes/class-fl-builder-service-madmimi.php:111
647
  msgid "The email address associated with your Mad Mimi account."
648
- msgstr "L'adresse courriel associée à votre compte \"Mad Mimi\"."
649
 
650
  #: classes/class-fl-builder-service-madmimi.php:122
651
  msgid ""
@@ -997,16 +998,16 @@ msgstr "Lancer %s"
997
 
998
  #: includes/admin-settings-branding.php:7
999
  msgid "White label the page builder by entering a custom name below."
1000
- msgstr "Personalisez la marque en entrant un autre nom à votre choix."
1001
 
1002
  #: includes/admin-settings-branding.php:10
1003
  msgid ""
1004
  "Additionally, you may also add a custom icon by entering the URL of an image "
1005
  "below. Leave the field blank if you do not wish to use an icon."
1006
  msgstr ""
1007
- "De plus, vous pouvez aussi ajouter une icône personalisée en entrant ici "
1008
- "l'adresse web (URL) son image. Laissez le champ vide si vous ne désirez pas "
1009
- "utiliser d'icône."
1010
 
1011
  #: includes/admin-settings-branding.php:14
1012
  msgid "Save Branding"
@@ -1072,8 +1073,8 @@ msgid ""
1072
  "Set the <a%s>capability</a> required for users to access advanced builder "
1073
  "editing such as adding, deleting or moving modules."
1074
  msgstr ""
1075
- "Ajuster les <a%s>permissions</a> requises afin de permettre l'accès aux "
1076
- "usagers aux fonctions avancées du constructeur, tel que l'ajout, la "
1077
  "suppression, ou le déplacement des extensions."
1078
 
1079
  #: includes/admin-settings-editing.php:21
@@ -1117,7 +1118,7 @@ msgstr "Activer les vidéos d'assistance"
1117
 
1118
  #: includes/admin-settings-help-button.php:39
1119
  msgid "Help Video Embed Code"
1120
- msgstr "Code d'encastrage du vidéo"
1121
 
1122
  #: includes/admin-settings-help-button.php:45
1123
  msgid "Knowledge Base"
@@ -1190,7 +1191,7 @@ msgid ""
1190
  "to uninstall the page builder and all of its data."
1191
  msgstr ""
1192
  "Prière de taper &laquo; uninstall &raquo; dans la boîte afin de confirmer "
1193
- "que vous voulez vraiment désinstaller Beaver Builder et toutes ces données."
1194
 
1195
  #: includes/admin-settings-modules.php:3
1196
  msgid "Enabled Modules"
@@ -1233,8 +1234,8 @@ msgstr "Exemple : page, article, produit"
1233
  #: includes/admin-settings-post-types.php:38
1234
  msgid "Select the post types you would like the builder to work with."
1235
  msgstr ""
1236
- "Choisir le &laquo; post type &raquo; que vous aimeriez utiliser avec le "
1237
- "Beaver Builder."
1238
 
1239
  #: includes/admin-settings-post-types.php:70
1240
  msgid "Save Post Types"
@@ -1355,10 +1356,10 @@ msgid ""
1355
  "Upgrade today for access to premium features such as advanced modules, "
1356
  "templates, support and more!"
1357
  msgstr ""
1358
- "Vous utilisez présentement la version allégée de l'extension Beaver Builder. "
1359
- "Mettez à niveau aujourd'hui vers la version Pro ou Agence, selon vos besoin, "
1360
- "afin d'accéder à la fonctionnalité haut de gamme tel que les extension "
1361
- "avancées, les gabarits, le soutien technique, et bien plus! "
1362
 
1363
  #: includes/admin-settings-upgrade.php:7
1364
  msgid "Upgrade Now"
@@ -1828,7 +1829,7 @@ msgstr "Aucune"
1828
  #: modules/separator/separator.php:75
1829
  msgctxt "Border type."
1830
  msgid "Solid"
1831
- msgstr "Solide"
1832
 
1833
  #: includes/column-settings.php:221 includes/row-settings.php:400
1834
  #: modules/separator/separator.php:76
@@ -1947,7 +1948,7 @@ msgstr "Grands appareils seulement"
1947
  #: includes/column-settings.php:435 includes/module-settings.php:70
1948
  #: includes/row-settings.php:614
1949
  msgid "Large &amp; Medium Devices Only"
1950
- msgstr "Grand &amp; moyens appareils seulement"
1951
 
1952
  #: includes/column-settings.php:436 includes/module-settings.php:71
1953
  #: includes/row-settings.php:615
@@ -1957,7 +1958,7 @@ msgstr "Moyens appareils seulement"
1957
  #: includes/column-settings.php:437 includes/module-settings.php:72
1958
  #: includes/row-settings.php:616
1959
  msgid "Medium &amp; Small Devices Only"
1960
- msgstr "Moyen et petit appareils seulement"
1961
 
1962
  #: includes/column-settings.php:438 includes/module-settings.php:73
1963
  #: includes/row-settings.php:617
@@ -1994,11 +1995,11 @@ msgstr "Par défaut"
1994
  #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:603
1995
  #: modules/social-buttons/social-buttons.php:74
1996
  msgid "Custom"
1997
- msgstr "Personalisé"
1998
 
1999
  #: includes/column-settings.php:464
2000
  msgid "Custom Medium Device Width"
2001
- msgstr "Largeur personalisée de petit appareil"
2002
 
2003
  #: includes/column-settings.php:475
2004
  msgid "Small Device Width"
@@ -2007,11 +2008,11 @@ msgstr "Largeur de petit appareil"
2007
  #: includes/column-settings.php:476
2008
  msgid "The width of this column on small devices such as phones."
2009
  msgstr ""
2010
- "La largeur de cette colonne sur de petits appareils tels les téléphones."
2011
 
2012
  #: includes/column-settings.php:492
2013
  msgid "Custom Small Device Width"
2014
- msgstr "largeur personalisée de petit appareil"
2015
 
2016
  #: includes/column-settings.php:504 includes/module-settings.php:115
2017
  #: includes/row-settings.php:627
@@ -2110,11 +2111,11 @@ msgstr "Sélectionner la photo"
2110
 
2111
  #: includes/field-video.php:3 includes/ui-js-config.php:73
2112
  msgid "Select Video"
2113
- msgstr "Sélectionner le vidéo"
2114
 
2115
  #: includes/field-video.php:17
2116
  msgid "Replace Video"
2117
- msgstr "Remplacer le vidéo"
2118
 
2119
  #: includes/global-settings.php:7 includes/node-template-settings.php:7
2120
  #: includes/template-settings.php:7 includes/user-template-settings.php:7
@@ -2371,12 +2372,12 @@ msgstr "Ouverture en fondu"
2371
  #: includes/module-settings.php:91
2372
  msgctxt "Animation style."
2373
  msgid "Slide Left"
2374
- msgstr "Glissement de la gauche"
2375
 
2376
  #: includes/module-settings.php:92
2377
  msgctxt "Animation style."
2378
  msgid "Slide Right"
2379
- msgstr "Glissement de la droite"
2380
 
2381
  #: includes/module-settings.php:93
2382
  msgctxt "Animation style."
@@ -2412,7 +2413,7 @@ msgstr "secondes"
2412
 
2413
  #: includes/module-settings.php:107
2414
  msgid "The amount of time in seconds before this animation starts."
2415
- msgstr "Le montant de temps en secondes avant que l'animation débute."
2416
 
2417
  #: includes/module-settings.php:120
2418
  msgid ""
@@ -2842,7 +2843,7 @@ msgstr "Dupliquer"
2842
 
2843
  #: includes/ui-js-config.php:39
2844
  msgid "Duplicate This Page"
2845
- msgstr "Reproduire cette page"
2846
 
2847
  #: includes/ui-js-config.php:40
2848
  msgid "Duplicate This Template"
@@ -2865,13 +2866,13 @@ msgid ""
2865
  "us by disabling all plugins and testing Beaver Builder while reactivating "
2866
  "each to determine if the issue is related to a third party plugin."
2867
  msgstr ""
2868
- "Beaver Builder a capturé l'erreur Javascript suivante. Si beaver Builder ne "
2869
  "fonctionne pas correctement en ce moment, cette erreur en est probablement "
2870
- "la cause. Aidez-nous en désactivant tous les extensions et en les réactivant "
2871
- "une par une tout en testant si Beaver Builder revient à son fonctionnement "
2872
- "normal. Ceci permettra de déterminer laquelle de vos extensions est "
2873
- "incompatible avec Beaver Builder et nous pourrons ainsi travailler à "
2874
- "résoudre le problème."
2875
 
2876
  #: includes/ui-js-config.php:44
2877
  msgid "Full Size"
@@ -2924,7 +2925,7 @@ msgstr "Nouvelle rangée"
2924
 
2925
  #: includes/ui-js-config.php:56
2926
  msgid "No results found."
2927
- msgstr "Aucuns résultats trouvés"
2928
 
2929
  #: includes/ui-js-config.php:57 includes/ui-panel-node-templates.php:11
2930
  msgid "No saved rows found."
@@ -3066,8 +3067,9 @@ msgid ""
3066
  "Use the action buttons to perform actions such as moving, editing, "
3067
  "duplicating or deleting rows, columns and modules."
3068
  msgstr ""
3069
- "Utiliser les boutons d'actions afin de déplacer, éditer, dupliquer ou "
3070
- "effacer des rangées, colonnes ou modules."
 
3071
 
3072
  #: includes/ui-js-config.php:93
3073
  msgid "Add More Content"
@@ -3105,7 +3107,7 @@ msgid ""
3105
  "The Tools button lets you duplicate a page, save a template or edit the "
3106
  "global settings."
3107
  msgstr ""
3108
- "Le bouton Outils permet de dupliquer une page, sauvegarder un gabarit. ou "
3109
  "d'éditer les paramètres globaux."
3110
 
3111
  #: includes/ui-js-config.php:99
@@ -3145,7 +3147,7 @@ msgstr ""
3145
 
3146
  #: includes/ui-js-config.php:104
3147
  msgid "View the Knowledge Base"
3148
- msgstr "Visualiser la base de connaissances"
3149
 
3150
  #: includes/ui-js-config.php:105
3151
  msgid "Visit the Forums"
@@ -3153,7 +3155,7 @@ msgstr "Visiter les forums"
3153
 
3154
  #: includes/ui-js-config.php:106
3155
  msgid "Watch the Video"
3156
- msgstr "Visionner le vidéo"
3157
 
3158
  #: includes/ui-js-templates.php:5 includes/ui-js-templates.php:29
3159
  #: includes/ui-js-templates.php:45
@@ -3173,7 +3175,7 @@ msgid ""
3173
  "Welcome! It looks like this might be your first time using the builder. "
3174
  "Would you like to take a tour?"
3175
  msgstr ""
3176
- "Bienvenue! Il semble que ce soit la première fois que vous utilisé Beaver "
3177
  "Builder. Aimeriez-vous une visite guidée?"
3178
 
3179
  #: includes/ui-js-templates.php:88
@@ -3273,7 +3275,7 @@ msgstr "Désactivé!"
3273
 
3274
  #: includes/updater/includes/form.php:22
3275
  msgid "Email address saved!"
3276
- msgstr "Adresse courriel sauvegardée"
3277
 
3278
  #: includes/updater/includes/form.php:27
3279
  #, php-format
@@ -3483,7 +3485,7 @@ msgstr "Transparent"
3483
  #: modules/pricing-table/pricing-table.php:67
3484
  #: modules/subscribe-form/subscribe-form.php:242
3485
  msgid "Border Size"
3486
- msgstr "Grosseur de la bordure"
3487
 
3488
  #: modules/button/button.php:183 modules/callout/callout.php:578
3489
  #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204
@@ -3505,7 +3507,7 @@ msgstr "Auto"
3505
 
3506
  #: modules/button/button.php:216
3507
  msgid "Custom Width"
3508
- msgstr "Largeur personalisé "
3509
 
3510
  #: modules/button/button.php:224 modules/cta/cta.php:123
3511
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
@@ -3519,7 +3521,7 @@ msgstr "Alignement"
3519
  #: modules/heading/heading.php:114 modules/heading/heading.php:171
3520
  #: modules/subscribe-form/subscribe-form.php:265
3521
  msgid "Font Size"
3522
- msgstr "Grosseur de la police"
3523
 
3524
  #: modules/button/button.php:250 modules/callout/callout.php:617
3525
  #: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
@@ -3573,7 +3575,7 @@ msgstr "Grandeur de l'en-tête"
3573
 
3574
  #: modules/callout/callout.php:295 modules/cta/cta.php:179
3575
  msgid "Heading Custom Size"
3576
- msgstr "Grandeur personalisée de l'en-tête"
3577
 
3578
  #: modules/callout/callout.php:313
3579
  msgid "Image Type"
@@ -3660,7 +3662,7 @@ msgstr "Structure de l'icône"
3660
  #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
3661
  #: modules/post-grid/post-grid.php:139 modules/post-slider/post-slider.php:477
3662
  msgid "Size"
3663
- msgstr "Grandeur personalisée de l'en-tête"
3664
 
3665
  #: modules/callout/callout.php:443
3666
  #: modules/content-slider/content-slider.php:571
@@ -3743,15 +3745,15 @@ msgstr "Message"
3743
 
3744
  #: modules/contact-form/contact-form.php:65
3745
  msgid "Send To Email"
3746
- msgstr "Envoyez à un courriel"
3747
 
3748
  #: modules/contact-form/contact-form.php:67
3749
  msgid "example@mail.com"
3750
- msgstr "exemple@courriel.com"
3751
 
3752
  #: modules/contact-form/contact-form.php:68
3753
  msgid "The contact form will send to this e-mail"
3754
- msgstr "Le formulaire de contact enverra à cette adresse courriel"
3755
 
3756
  #: modules/contact-form/contact-form.php:75
3757
  #: modules/subscribe-form/subscribe-form.php:108
@@ -3822,7 +3824,7 @@ msgstr "Nom"
3822
  #: modules/contact-form/includes/frontend.php:6
3823
  #: modules/subscribe-form/includes/frontend.php:6
3824
  msgid "Please enter your name."
3825
- msgstr "Prière d'entrer une adresse courriel valide"
3826
 
3827
  #: modules/contact-form/includes/frontend.php:7
3828
  msgid "Your name"
@@ -3839,11 +3841,11 @@ msgstr "Entrez un sujet."
3839
 
3840
  #: modules/contact-form/includes/frontend.php:22
3841
  msgid "Please enter a valid email."
3842
- msgstr "Prière d'entrer une adresse courriel valide"
3843
 
3844
  #: modules/contact-form/includes/frontend.php:23
3845
  msgid "Your email"
3846
- msgstr "Votre courriel"
3847
 
3848
  #: modules/contact-form/includes/frontend.php:29
3849
  msgid "Phone"
@@ -3978,7 +3980,7 @@ msgstr "Ce réglage est pour l'arrière-plan complet de votre diapositive."
3978
 
3979
  #: modules/content-slider/content-slider.php:369
3980
  msgid "Background Video Code"
3981
- msgstr "Code pour le vidéo d'arrière-plan"
3982
 
3983
  #: modules/content-slider/content-slider.php:375
3984
  msgid "Content Layout"
@@ -4009,7 +4011,7 @@ msgstr "Aucune"
4009
 
4010
  #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
4011
  msgid "Video Embed Code"
4012
- msgstr "Code d'encastrage du vidéo"
4013
 
4014
  #: modules/content-slider/content-slider.php:469
4015
  msgid "Text Position"
@@ -4020,12 +4022,12 @@ msgid ""
4020
  "The position will move the content layout selections left, right or center "
4021
  "over the background of the slide."
4022
  msgstr ""
4023
- "La position déplacera les sélections de présentation vers la gauche, droite "
4024
- "ou centrée sur l'arrière-plan de la diapositive."
4025
 
4026
  #: modules/content-slider/content-slider.php:492
4027
  msgid "Top Margin"
4028
- msgstr "Haut"
4029
 
4030
  #: modules/content-slider/content-slider.php:500
4031
  msgid "Bottom Margin"
@@ -4080,9 +4082,9 @@ msgid ""
4080
  "Auto will allow the overlay to fit however long the text content is. 100% "
4081
  "will fit the overlay to the top and bottom of the slide."
4082
  msgstr ""
4083
- "Auto permettra la superposition de s'ajuster, qu'importes la longueur du "
4084
- "contenu de texte. Un réglage à 100 % adaptera la superposition au haut et au "
4085
- "bas de la diapositive."
4086
 
4087
  #: modules/content-slider/content-slider.php:562
4088
  #: modules/post-slider/post-slider.php:749
@@ -4268,7 +4270,7 @@ msgstr "Balise HTML"
4268
 
4269
  #: modules/heading/heading.php:128 modules/heading/heading.php:188
4270
  msgid "Custom Font Size"
4271
- msgstr "Grandeur de police personalisée"
4272
 
4273
  #: modules/heading/heading.php:137
4274
  msgid "Mobile Structure"
@@ -4276,7 +4278,7 @@ msgstr "Structure pour mobile"
4276
 
4277
  #: modules/heading/heading.php:158
4278
  msgid "Custom Alignment"
4279
- msgstr "Alignement personalisé"
4280
 
4281
  #: modules/html/html.php:14
4282
  msgid "HTML"
@@ -4288,7 +4290,7 @@ msgstr "Montrer le code HTML pur"
4288
 
4289
  #: modules/icon-group/icon-group.php:14
4290
  msgid "Icon Group"
4291
- msgstr "Group d'icônes"
4292
 
4293
  #: modules/icon-group/icon-group.php:15
4294
  msgid "Display a group of linked Font Awesome icons."
@@ -4337,7 +4339,7 @@ msgstr ""
4337
 
4338
  #: modules/menu/menu.php:42
4339
  msgid "No Menus Found"
4340
- msgstr "Aucuns menus trouvés"
4341
 
4342
  #: modules/menu/menu.php:93 modules/tabs/tabs.php:55
4343
  msgid "Horizontal"
@@ -4397,7 +4399,7 @@ msgstr "Ombre du sous-menu"
4397
 
4398
  #: modules/menu/menu.php:206
4399
  msgid "Link Size"
4400
- msgstr "Grosseur de lien"
4401
 
4402
  #: modules/menu/menu.php:220
4403
  msgid "Link Format"
@@ -4676,7 +4678,7 @@ msgstr "Couleurs de l'icône de post"
4676
 
4677
  #: modules/post-grid/includes/frontend.php:41
4678
  msgid "No posts found."
4679
- msgstr "Aucuns articles trouvés"
4680
 
4681
  #: modules/post-grid/post-grid.php:15
4682
  msgid "Display a grid of your WordPress posts."
@@ -4840,7 +4842,7 @@ msgstr "Ajouter une boîte de prix"
4840
 
4841
  #: modules/pricing-table/pricing-table.php:98
4842
  msgid "Title Size"
4843
- msgstr "Grosseur du titre"
4844
 
4845
  #: modules/pricing-table/pricing-table.php:107
4846
  msgid "Price Box"
@@ -4861,7 +4863,7 @@ msgstr "par année"
4861
 
4862
  #: modules/pricing-table/pricing-table.php:120
4863
  msgid "Price Size"
4864
- msgstr "Grosseur du prix"
4865
 
4866
  #: modules/pricing-table/pricing-table.php:133
4867
  #: modules/subscribe-form/subscribe-form.php:168
@@ -4899,7 +4901,7 @@ msgstr "Couleur d'accentuation du texte"
4899
 
4900
  #: modules/pricing-table/pricing-table.php:182
4901
  msgid "Box Top Margin"
4902
- msgstr "Haut"
4903
 
4904
  #: modules/rich-text/rich-text.php:15
4905
  msgid "A WYSIWYG text editor."
@@ -5099,7 +5101,7 @@ msgstr "Différer la disparition de la superposition"
5099
 
5100
  #: modules/slideshow/slideshow.php:598
5101
  msgid "Thumbs Size"
5102
- msgstr "Grosseur de la bordure"
5103
 
5104
  #: modules/slideshow/slideshow.php:607
5105
  msgid "Social"
@@ -5149,7 +5151,7 @@ msgstr ""
5149
 
5150
  #: modules/social-buttons/social-buttons.php:89
5151
  msgid "Custom URL"
5152
- msgstr "Lien personalisé"
5153
 
5154
  #: modules/social-buttons/social-buttons.php:107
5155
  msgid "Show Facebook"
@@ -5170,7 +5172,7 @@ msgstr "Nom complet"
5170
 
5171
  #: modules/subscribe-form/includes/frontend.php:12
5172
  msgid "Please enter a valid email address."
5173
- msgstr "Entrer un courriel valide."
5174
 
5175
  #: modules/subscribe-form/includes/frontend.php:41
5176
  msgid "Something went wrong. Please check your entries and try again."
@@ -5204,7 +5206,7 @@ msgstr "Redirection"
5204
  msgid ""
5205
  "Thanks for subscribing! Please check your email for further instructions."
5206
  msgstr ""
5207
- "Merci de vous être abonné! Vérifiez votre courriel pour plus d'instructions."
5208
 
5209
  #: modules/subscribe-form/subscribe-form.php:151
5210
  msgid "Success URL"
@@ -5264,7 +5266,7 @@ msgstr "Ajouter un témoignage"
5264
 
5265
  #: modules/video/video.php:20
5266
  msgid "Render a WordPress or embedable video."
5267
- msgstr "Afficher un vidéo local ou encastré."
5268
 
5269
  #: modules/video/video.php:83
5270
  msgid "Video Type"
@@ -5386,7 +5388,7 @@ msgstr "Catégorie produit"
5386
 
5387
  #: modules/woocommerce/woocommerce.php:122
5388
  msgid "Recent Products"
5389
- msgstr "Produits récent"
5390
 
5391
  #: modules/woocommerce/woocommerce.php:123
5392
  msgid "Featured Products"
@@ -5398,7 +5400,7 @@ msgstr "Produits en vente"
5398
 
5399
  #: modules/woocommerce/woocommerce.php:125
5400
  msgid "Best Selling Products"
5401
- msgstr "Produits meilleurs vendeurs"
5402
 
5403
  #: modules/woocommerce/woocommerce.php:126
5404
  msgid "Top Rated Products"
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-08-31 19:54-0300\n"
6
+ "PO-Revision-Date: 2015-10-16 20:51-0300\n"
7
  "Last-Translator: Gerard Godin <gerard@getgointernetcoaching.com>\n"
8
  "Language-Team: \n"
9
  "Language: fr_FR\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.5\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__;"
101
  #: classes/class-fl-builder-admin-settings.php:620
102
  msgid "Error! Please enter an iframe for the video embed code."
103
  msgstr ""
104
+ "Erreur! Entrez un &laquo; iframe &raquo; pour le code d'encastrement de la "
105
+ "vidéo"
106
 
107
  #: classes/class-fl-builder-admin-settings.php:638
108
  msgid "Error! You must have at least one feature of the help button enabled."
448
  #: classes/class-fl-builder-service-email-address.php:39
449
  #: classes/class-fl-builder-service-madmimi.php:69
450
  msgid "Error: You must provide an email address."
451
+ msgstr "Erreur : Vous devez fournir une adresse email."
452
 
453
  #: classes/class-fl-builder-service-email-address.php:63
454
  #: classes/class-fl-builder-service-madmimi.php:110
646
 
647
  #: classes/class-fl-builder-service-madmimi.php:111
648
  msgid "The email address associated with your Mad Mimi account."
649
+ msgstr "L'adresse email associée à votre compte \"Mad Mimi\"."
650
 
651
  #: classes/class-fl-builder-service-madmimi.php:122
652
  msgid ""
998
 
999
  #: includes/admin-settings-branding.php:7
1000
  msgid "White label the page builder by entering a custom name below."
1001
+ msgstr "Personnalisez la marque en entrant un autre nom à votre choix."
1002
 
1003
  #: includes/admin-settings-branding.php:10
1004
  msgid ""
1005
  "Additionally, you may also add a custom icon by entering the URL of an image "
1006
  "below. Leave the field blank if you do not wish to use an icon."
1007
  msgstr ""
1008
+ "De plus, vous pouvez aussi ajouter une icône personnalisée en entrant ici "
1009
+ "l'adresse web (URL) de son image. Laissez le champ vide si vous ne désirez "
1010
+ "pas utiliser d'icône."
1011
 
1012
  #: includes/admin-settings-branding.php:14
1013
  msgid "Save Branding"
1073
  "Set the <a%s>capability</a> required for users to access advanced builder "
1074
  "editing such as adding, deleting or moving modules."
1075
  msgstr ""
1076
+ "Ajuster les <a%s>permissions</a> requises afin de permettre aux utilisateurs "
1077
+ "d’accéder aux fonctions avancées du constructeur, telles que l'ajout, la "
1078
  "suppression, ou le déplacement des extensions."
1079
 
1080
  #: includes/admin-settings-editing.php:21
1118
 
1119
  #: includes/admin-settings-help-button.php:39
1120
  msgid "Help Video Embed Code"
1121
+ msgstr "Code d’encastrement de la vidéo"
1122
 
1123
  #: includes/admin-settings-help-button.php:45
1124
  msgid "Knowledge Base"
1191
  "to uninstall the page builder and all of its data."
1192
  msgstr ""
1193
  "Prière de taper &laquo; uninstall &raquo; dans la boîte afin de confirmer "
1194
+ "que vous voulez vraiment désinstaller Beaver Builder et toutes ses données."
1195
 
1196
  #: includes/admin-settings-modules.php:3
1197
  msgid "Enabled Modules"
1234
  #: includes/admin-settings-post-types.php:38
1235
  msgid "Select the post types you would like the builder to work with."
1236
  msgstr ""
1237
+ "Choisir le &laquo; post type &raquo; que vous aimeriez utiliser avec Beaver "
1238
+ "Builder."
1239
 
1240
  #: includes/admin-settings-post-types.php:70
1241
  msgid "Save Post Types"
1356
  "Upgrade today for access to premium features such as advanced modules, "
1357
  "templates, support and more!"
1358
  msgstr ""
1359
+ "Vous utilisez actuellement la version allégée de l'extension Beaver Builder. "
1360
+ "Mettez à niveau aujourd'hui vers la version Pro ou Agence, selon vos "
1361
+ "besoins, afin d'accéder aux fonctionnalités haut de gamme telles que les "
1362
+ "extensions avancées, les gabarits, le soutien technique, et bien plus!"
1363
 
1364
  #: includes/admin-settings-upgrade.php:7
1365
  msgid "Upgrade Now"
1829
  #: modules/separator/separator.php:75
1830
  msgctxt "Border type."
1831
  msgid "Solid"
1832
+ msgstr "Continue"
1833
 
1834
  #: includes/column-settings.php:221 includes/row-settings.php:400
1835
  #: modules/separator/separator.php:76
1948
  #: includes/column-settings.php:435 includes/module-settings.php:70
1949
  #: includes/row-settings.php:614
1950
  msgid "Large &amp; Medium Devices Only"
1951
+ msgstr "Grands &amp; moyens appareils seulement"
1952
 
1953
  #: includes/column-settings.php:436 includes/module-settings.php:71
1954
  #: includes/row-settings.php:615
1958
  #: includes/column-settings.php:437 includes/module-settings.php:72
1959
  #: includes/row-settings.php:616
1960
  msgid "Medium &amp; Small Devices Only"
1961
+ msgstr "Moyens et petits appareils seulement"
1962
 
1963
  #: includes/column-settings.php:438 includes/module-settings.php:73
1964
  #: includes/row-settings.php:617
1995
  #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:603
1996
  #: modules/social-buttons/social-buttons.php:74
1997
  msgid "Custom"
1998
+ msgstr "Personnalisé"
1999
 
2000
  #: includes/column-settings.php:464
2001
  msgid "Custom Medium Device Width"
2002
+ msgstr "Largeur personnalisée pour appareils moyens"
2003
 
2004
  #: includes/column-settings.php:475
2005
  msgid "Small Device Width"
2008
  #: includes/column-settings.php:476
2009
  msgid "The width of this column on small devices such as phones."
2010
  msgstr ""
2011
+ "La largeur de cette colonne sur de petits appareils tels que les téléphones."
2012
 
2013
  #: includes/column-settings.php:492
2014
  msgid "Custom Small Device Width"
2015
+ msgstr "largeur personnalisée pour petits appareils"
2016
 
2017
  #: includes/column-settings.php:504 includes/module-settings.php:115
2018
  #: includes/row-settings.php:627
2111
 
2112
  #: includes/field-video.php:3 includes/ui-js-config.php:73
2113
  msgid "Select Video"
2114
+ msgstr "Sélectionner la vidéo"
2115
 
2116
  #: includes/field-video.php:17
2117
  msgid "Replace Video"
2118
+ msgstr "Remplacer la vidéo"
2119
 
2120
  #: includes/global-settings.php:7 includes/node-template-settings.php:7
2121
  #: includes/template-settings.php:7 includes/user-template-settings.php:7
2372
  #: includes/module-settings.php:91
2373
  msgctxt "Animation style."
2374
  msgid "Slide Left"
2375
+ msgstr "Glissement à gauche"
2376
 
2377
  #: includes/module-settings.php:92
2378
  msgctxt "Animation style."
2379
  msgid "Slide Right"
2380
+ msgstr "Glissement à droite"
2381
 
2382
  #: includes/module-settings.php:93
2383
  msgctxt "Animation style."
2413
 
2414
  #: includes/module-settings.php:107
2415
  msgid "The amount of time in seconds before this animation starts."
2416
+ msgstr "La durée en secondes avant que l'animation débute."
2417
 
2418
  #: includes/module-settings.php:120
2419
  msgid ""
2843
 
2844
  #: includes/ui-js-config.php:39
2845
  msgid "Duplicate This Page"
2846
+ msgstr "Duplicate This Page"
2847
 
2848
  #: includes/ui-js-config.php:40
2849
  msgid "Duplicate This Template"
2866
  "us by disabling all plugins and testing Beaver Builder while reactivating "
2867
  "each to determine if the issue is related to a third party plugin."
2868
  msgstr ""
2869
+ "Beaver Builder a capturé l'erreur Javascript suivante. Si Beaver Builder ne "
2870
  "fonctionne pas correctement en ce moment, cette erreur en est probablement "
2871
+ "la cause. Aidez-nous en désactivant toutes les extensions et en les "
2872
+ "réactivant une par une tout en testant si Beaver Builder revient à son "
2873
+ "fonctionnement normal. Ceci permettra de déterminer laquelle de vos "
2874
+ "extensions est incompatible avec Beaver Builder et nous pourrons ainsi "
2875
+ "travailler à résoudre le problème."
2876
 
2877
  #: includes/ui-js-config.php:44
2878
  msgid "Full Size"
2925
 
2926
  #: includes/ui-js-config.php:56
2927
  msgid "No results found."
2928
+ msgstr "Aucun résultat trouvé"
2929
 
2930
  #: includes/ui-js-config.php:57 includes/ui-panel-node-templates.php:11
2931
  msgid "No saved rows found."
3067
  "Use the action buttons to perform actions such as moving, editing, "
3068
  "duplicating or deleting rows, columns and modules."
3069
  msgstr ""
3070
+ "Utilisez les boutons d'actions afin de déplacer, éditer, dupliquer, accéder "
3071
+ "aux paramètres individuels des colonnes, ou bien effacer des rangées, "
3072
+ "colonnes ou modules."
3073
 
3074
  #: includes/ui-js-config.php:93
3075
  msgid "Add More Content"
3107
  "The Tools button lets you duplicate a page, save a template or edit the "
3108
  "global settings."
3109
  msgstr ""
3110
+ "Le bouton Outils permet de dupliquer une page, sauvegarder un gabarit ou "
3111
  "d'éditer les paramètres globaux."
3112
 
3113
  #: includes/ui-js-config.php:99
3147
 
3148
  #: includes/ui-js-config.php:104
3149
  msgid "View the Knowledge Base"
3150
+ msgstr "Visualiser la base de connaissance"
3151
 
3152
  #: includes/ui-js-config.php:105
3153
  msgid "Visit the Forums"
3155
 
3156
  #: includes/ui-js-config.php:106
3157
  msgid "Watch the Video"
3158
+ msgstr "Visionner la vidéo"
3159
 
3160
  #: includes/ui-js-templates.php:5 includes/ui-js-templates.php:29
3161
  #: includes/ui-js-templates.php:45
3175
  "Welcome! It looks like this might be your first time using the builder. "
3176
  "Would you like to take a tour?"
3177
  msgstr ""
3178
+ "Bienvenue! Il semble que ce soit la première fois que vous utilisez Beaver "
3179
  "Builder. Aimeriez-vous une visite guidée?"
3180
 
3181
  #: includes/ui-js-templates.php:88
3275
 
3276
  #: includes/updater/includes/form.php:22
3277
  msgid "Email address saved!"
3278
+ msgstr "Adresse email sauvegardée"
3279
 
3280
  #: includes/updater/includes/form.php:27
3281
  #, php-format
3485
  #: modules/pricing-table/pricing-table.php:67
3486
  #: modules/subscribe-form/subscribe-form.php:242
3487
  msgid "Border Size"
3488
+ msgstr "Taille de la bordure"
3489
 
3490
  #: modules/button/button.php:183 modules/callout/callout.php:578
3491
  #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204
3507
 
3508
  #: modules/button/button.php:216
3509
  msgid "Custom Width"
3510
+ msgstr "Largeur personnalisée "
3511
 
3512
  #: modules/button/button.php:224 modules/cta/cta.php:123
3513
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
3521
  #: modules/heading/heading.php:114 modules/heading/heading.php:171
3522
  #: modules/subscribe-form/subscribe-form.php:265
3523
  msgid "Font Size"
3524
+ msgstr "Taille de la police"
3525
 
3526
  #: modules/button/button.php:250 modules/callout/callout.php:617
3527
  #: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
3575
 
3576
  #: modules/callout/callout.php:295 modules/cta/cta.php:179
3577
  msgid "Heading Custom Size"
3578
+ msgstr "Taille personnalisée de l'en-tête"
3579
 
3580
  #: modules/callout/callout.php:313
3581
  msgid "Image Type"
3662
  #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
3663
  #: modules/post-grid/post-grid.php:139 modules/post-slider/post-slider.php:477
3664
  msgid "Size"
3665
+ msgstr "Taille personnalisée de l'en-tête"
3666
 
3667
  #: modules/callout/callout.php:443
3668
  #: modules/content-slider/content-slider.php:571
3745
 
3746
  #: modules/contact-form/contact-form.php:65
3747
  msgid "Send To Email"
3748
+ msgstr "Adresse email"
3749
 
3750
  #: modules/contact-form/contact-form.php:67
3751
  msgid "example@mail.com"
3752
+ msgstr "exemple@adresse.com"
3753
 
3754
  #: modules/contact-form/contact-form.php:68
3755
  msgid "The contact form will send to this e-mail"
3756
+ msgstr "Le formulaire de contact enverra à cette adresse email"
3757
 
3758
  #: modules/contact-form/contact-form.php:75
3759
  #: modules/subscribe-form/subscribe-form.php:108
3824
  #: modules/contact-form/includes/frontend.php:6
3825
  #: modules/subscribe-form/includes/frontend.php:6
3826
  msgid "Please enter your name."
3827
+ msgstr "Prière d'entrer une adresse email valide"
3828
 
3829
  #: modules/contact-form/includes/frontend.php:7
3830
  msgid "Your name"
3841
 
3842
  #: modules/contact-form/includes/frontend.php:22
3843
  msgid "Please enter a valid email."
3844
+ msgstr "Prière d'entrer une adresse email valide"
3845
 
3846
  #: modules/contact-form/includes/frontend.php:23
3847
  msgid "Your email"
3848
+ msgstr "Adresse email"
3849
 
3850
  #: modules/contact-form/includes/frontend.php:29
3851
  msgid "Phone"
3980
 
3981
  #: modules/content-slider/content-slider.php:369
3982
  msgid "Background Video Code"
3983
+ msgstr "Code pour la vidéo d'arrière-plan"
3984
 
3985
  #: modules/content-slider/content-slider.php:375
3986
  msgid "Content Layout"
4011
 
4012
  #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
4013
  msgid "Video Embed Code"
4014
+ msgstr "Code d'encastrement de la vidéo"
4015
 
4016
  #: modules/content-slider/content-slider.php:469
4017
  msgid "Text Position"
4022
  "The position will move the content layout selections left, right or center "
4023
  "over the background of the slide."
4024
  msgstr ""
4025
+ "La position déplacera les sélections de présentation vers la gauche, la "
4026
+ "droite ou au centre de l'arrière-plan de la diapositive."
4027
 
4028
  #: modules/content-slider/content-slider.php:492
4029
  msgid "Top Margin"
4030
+ msgstr "Marge du haut"
4031
 
4032
  #: modules/content-slider/content-slider.php:500
4033
  msgid "Bottom Margin"
4082
  "Auto will allow the overlay to fit however long the text content is. 100% "
4083
  "will fit the overlay to the top and bottom of the slide."
4084
  msgstr ""
4085
+ "Auto permettra à la superposition de s'ajuster, qu'importes la longueur du "
4086
+ "texte. Un réglage à 100 % adaptera la superposition en haut et en bas de la "
4087
+ "diapositive."
4088
 
4089
  #: modules/content-slider/content-slider.php:562
4090
  #: modules/post-slider/post-slider.php:749
4270
 
4271
  #: modules/heading/heading.php:128 modules/heading/heading.php:188
4272
  msgid "Custom Font Size"
4273
+ msgstr "Taille de police personnalisée"
4274
 
4275
  #: modules/heading/heading.php:137
4276
  msgid "Mobile Structure"
4278
 
4279
  #: modules/heading/heading.php:158
4280
  msgid "Custom Alignment"
4281
+ msgstr "Alignement personnalisé"
4282
 
4283
  #: modules/html/html.php:14
4284
  msgid "HTML"
4290
 
4291
  #: modules/icon-group/icon-group.php:14
4292
  msgid "Icon Group"
4293
+ msgstr "Groupe d'icônes"
4294
 
4295
  #: modules/icon-group/icon-group.php:15
4296
  msgid "Display a group of linked Font Awesome icons."
4339
 
4340
  #: modules/menu/menu.php:42
4341
  msgid "No Menus Found"
4342
+ msgstr "Aucun menu trouvé"
4343
 
4344
  #: modules/menu/menu.php:93 modules/tabs/tabs.php:55
4345
  msgid "Horizontal"
4399
 
4400
  #: modules/menu/menu.php:206
4401
  msgid "Link Size"
4402
+ msgstr "Taille du lien"
4403
 
4404
  #: modules/menu/menu.php:220
4405
  msgid "Link Format"
4678
 
4679
  #: modules/post-grid/includes/frontend.php:41
4680
  msgid "No posts found."
4681
+ msgstr "Aucun article trouvé"
4682
 
4683
  #: modules/post-grid/post-grid.php:15
4684
  msgid "Display a grid of your WordPress posts."
4842
 
4843
  #: modules/pricing-table/pricing-table.php:98
4844
  msgid "Title Size"
4845
+ msgstr "Taille du titre"
4846
 
4847
  #: modules/pricing-table/pricing-table.php:107
4848
  msgid "Price Box"
4863
 
4864
  #: modules/pricing-table/pricing-table.php:120
4865
  msgid "Price Size"
4866
+ msgstr "Taille du prix"
4867
 
4868
  #: modules/pricing-table/pricing-table.php:133
4869
  #: modules/subscribe-form/subscribe-form.php:168
4901
 
4902
  #: modules/pricing-table/pricing-table.php:182
4903
  msgid "Box Top Margin"
4904
+ msgstr "Marge du haut de la boîte"
4905
 
4906
  #: modules/rich-text/rich-text.php:15
4907
  msgid "A WYSIWYG text editor."
5101
 
5102
  #: modules/slideshow/slideshow.php:598
5103
  msgid "Thumbs Size"
5104
+ msgstr "Taille des vignettes"
5105
 
5106
  #: modules/slideshow/slideshow.php:607
5107
  msgid "Social"
5151
 
5152
  #: modules/social-buttons/social-buttons.php:89
5153
  msgid "Custom URL"
5154
+ msgstr "Lien personnalisé"
5155
 
5156
  #: modules/social-buttons/social-buttons.php:107
5157
  msgid "Show Facebook"
5172
 
5173
  #: modules/subscribe-form/includes/frontend.php:12
5174
  msgid "Please enter a valid email address."
5175
+ msgstr "Entrer une adresse email valide."
5176
 
5177
  #: modules/subscribe-form/includes/frontend.php:41
5178
  msgid "Something went wrong. Please check your entries and try again."
5206
  msgid ""
5207
  "Thanks for subscribing! Please check your email for further instructions."
5208
  msgstr ""
5209
+ "Merci de vous être abonné! Vérifiez vos emails pour plus d'instructions."
5210
 
5211
  #: modules/subscribe-form/subscribe-form.php:151
5212
  msgid "Success URL"
5266
 
5267
  #: modules/video/video.php:20
5268
  msgid "Render a WordPress or embedable video."
5269
+ msgstr "Afficher une vidéo locale ou encastrée."
5270
 
5271
  #: modules/video/video.php:83
5272
  msgid "Video Type"
5388
 
5389
  #: modules/woocommerce/woocommerce.php:122
5390
  msgid "Recent Products"
5391
+ msgstr "Produits récents"
5392
 
5393
  #: modules/woocommerce/woocommerce.php:123
5394
  msgid "Featured Products"
5400
 
5401
  #: modules/woocommerce/woocommerce.php:125
5402
  msgid "Best Selling Products"
5403
+ msgstr "Produits les mieux vendus"
5404
 
5405
  #: modules/woocommerce/woocommerce.php:126
5406
  msgid "Top Rated Products"
modules/widget/includes/frontend.php CHANGED
@@ -27,7 +27,7 @@ if(isset($widget_slug) && isset($wp_widget_factory->widgets[$widget_slug])) {
27
 
28
  // Render the widget
29
  wp_cache_flush($widget_slug, 'widget');
30
- the_widget($widget_slug, $widget_settings, array('widget_id' => $module->node));
31
  }
32
  else if(isset($widget_slug) && FLBuilderModel::is_builder_active()) {
33
 
27
 
28
  // Render the widget
29
  wp_cache_flush($widget_slug, 'widget');
30
+ the_widget($widget_slug, $widget_settings, array('widget_id' => 'fl_builder_widget_' . $module->node));
31
  }
32
  else if(isset($widget_slug) && FLBuilderModel::is_builder_active()) {
33
 
readme.txt CHANGED
@@ -1,5 +1,5 @@
1
  === Beaver Builder - WordPress Page Builder ===
2
- Contributors: justinbusa, RobbyMcCullough, billyyoung
3
  Tags: builder, layout builder, page builder, landing page builder, landing pages, website builder, site builder, front-end builder, drag and drop builder, editor, front-end editor, visual composer, page layout
4
  Requires at least: 3.6
5
  Tested up to: 4.3
1
  === Beaver Builder - WordPress Page Builder ===
2
+ Contributors: justinbusa, RobbyMcCullough, billyyoung, hinampaksh, diegoliv, webmandesign
3
  Tags: builder, layout builder, page builder, landing page builder, landing pages, website builder, site builder, front-end builder, drag and drop builder, editor, front-end editor, visual composer, page layout
4
  Requires at least: 3.6
5
  Tested up to: 4.3