WordPress Page Builder – Beaver Builder - Version 1.5.0

Version Description

Download this release

Release Info

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

Code changes from version 1.4.8 to 1.5.0

changelog.txt CHANGED
@@ -1,3 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <h4>1.4.8 - 02/22/2015</h4>
2
  <p><strong>Enhancements</strong></p>
3
  <ul>
1
+ <h4>1.5.0 - 03/02/2015</h4>
2
+ <p><strong>Enhancements</strong></p>
3
+ <ul>
4
+ <li>Updated Slovak translation.</li>
5
+ </ul>
6
+ <p><strong>Bug Fixes</strong></p>
7
+ <ul>
8
+ <li>Fixed a bug with the JavaScript for smooth scrolling links.</li>
9
+ <li>Fixed a spelling error in the help tour. Thanks Gerard!</li>
10
+ </ul>
11
+
12
+ <h4>1.4.9 - 03/01/2015</h4>
13
+ <p><strong>Enhancements</strong></p>
14
+ <ul>
15
+ <li>Added a help button to the builder interface that gives users access to a tour, video (coming soon), forums and documentation.</li>
16
+ <li>Added network settings for white labeling the help button. Agency members can customize or disable all help button features such as adding their own video or knowledge base links. Unfortunately, the tour is too complex to make customizable, but it can be disabled and is disabled by default while in simple editing mode.</li>
17
+ <li>Added a welcome message for the first time a user launchs the builder on a site asking if they would like to view the tour.</li>
18
+ <li>Added a new style setting to the button module for creating flat, gradient or transparent buttons.</li>
19
+ <li>Added Arabic and Spanish translations.</li>
20
+ <li>Added display:inline to builder images to prevent themes that set images to display:block from breaking alignment.</li>
21
+ <li>Added JavaScript logic for smooth scrolling of all anchor links in a builder layout.</li>
22
+ </ul>
23
+ <p><strong>Bug Fixes</strong></p>
24
+ <ul>
25
+ <li>Row overlay actions are now fixed to the bottom of the overlay if the actions are hidden by the builder header or are off the page.</li>
26
+ <li>Fixed a bug with background video fallbacks not showing on mobile.</li>
27
+ <li>Fixed a bug with custom modules on Windows servers.</li>
28
+ <li>Fixed a CSS bug with the callout module when the photo sits to the left of the text.</li>
29
+ <li>Fixed a bug that prevented the builder from working with domain masking.</li>
30
+ <li>Fixed a bug caused by W3 Total Cache's HTML minification by disabling minify while the builder is active.</li>
31
+ </ul>
32
+
33
  <h4>1.4.8 - 02/22/2015</h4>
34
  <p><strong>Enhancements</strong></p>
35
  <ul>
classes/class-fl-builder-admin-settings.php CHANGED
@@ -146,6 +146,10 @@ final class FLBuilderAdminSettings {
146
  'title' => __( 'Branding', 'fl-builder' ),
147
  'show' => self::has_support( 'branding' ) && ( is_network_admin() || ! self::multisite_support() )
148
  ),
 
 
 
 
149
  'uninstall' => array(
150
  'title' => __( 'Uninstall', 'fl-builder' ),
151
  'show' => is_network_admin() || ! self::multisite_support()
@@ -192,6 +196,9 @@ final class FLBuilderAdminSettings {
192
  // Branding
193
  self::render_form( 'branding' );
194
 
 
 
 
195
  // Uninstall
196
  self::render_form( 'uninstall' );
197
  }
@@ -272,6 +279,7 @@ final class FLBuilderAdminSettings {
272
  self::save_enabled_icons();
273
  self::save_editing_capability();
274
  self::save_branding();
 
275
  self::uninstall();
276
  }
277
 
@@ -519,6 +527,74 @@ final class FLBuilderAdminSettings {
519
  }
520
  }
521
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522
  /**
523
  * @method uninstall
524
  * @private
146
  'title' => __( 'Branding', 'fl-builder' ),
147
  'show' => self::has_support( 'branding' ) && ( is_network_admin() || ! self::multisite_support() )
148
  ),
149
+ 'help-button' => array(
150
+ 'title' => __( 'Help Button', 'fl-builder' ),
151
+ 'show' => self::has_support( 'help-button' ) && ( is_network_admin() || ! self::multisite_support() )
152
+ ),
153
  'uninstall' => array(
154
  'title' => __( 'Uninstall', 'fl-builder' ),
155
  'show' => is_network_admin() || ! self::multisite_support()
196
  // Branding
197
  self::render_form( 'branding' );
198
 
199
+ // Help Button
200
+ self::render_form( 'help-button' );
201
+
202
  // Uninstall
203
  self::render_form( 'uninstall' );
204
  }
279
  self::save_enabled_icons();
280
  self::save_editing_capability();
281
  self::save_branding();
282
+ self::save_help_button();
283
  self::uninstall();
284
  }
285
 
527
  }
528
  }
529
 
530
+ /**
531
+ * @method save_help_button
532
+ * @private
533
+ */
534
+ static private function save_help_button()
535
+ {
536
+ if ( isset( $_POST['fl-help-button-nonce'] ) && wp_verify_nonce( $_POST['fl-help-button-nonce'], 'help-button' ) ) {
537
+
538
+ $settings = FLBuilderModel::get_help_button_defaults();
539
+ $settings['enabled'] = isset( $_POST['fl-help-button-enabled'] ) ? true : false;
540
+ $settings['tour'] = isset( $_POST['fl-help-tour-enabled'] ) ? true : false;
541
+ $settings['video'] = isset( $_POST['fl-help-video-enabled'] ) ? true : false;
542
+ $settings['knowledge_base'] = isset( $_POST['fl-knowledge-base-enabled'] ) ? true : false;
543
+ $settings['forums'] = isset( $_POST['fl-forums-enabled'] ) ? true : false;
544
+
545
+ // Disable everything if the main button is disabled.
546
+ if ( ! $settings['enabled'] ) {
547
+ $settings['tour'] = false;
548
+ $settings['video'] = false;
549
+ $settings['knowledge_base'] = false;
550
+ $settings['forums'] = false;
551
+ }
552
+
553
+ // Clean the video embed.
554
+ $video_embed = wp_kses( $_POST['fl-help-video-embed'], array(
555
+ 'iframe' => array(
556
+ 'src' => array(),
557
+ 'frameborder' => array(),
558
+ 'webkitallowfullscreen' => array(),
559
+ 'mozallowfullscreen' => array(),
560
+ 'allowfullscreen' => array()
561
+ )
562
+ ));
563
+
564
+ // Save the video embed.
565
+ if ( ! empty( $video_embed ) && ! stristr( $video_embed, 'iframe' ) ) {
566
+ self::add_error( __( "Error! Please enter an iframe for the video embed code.", 'fl-builder' ) );
567
+ }
568
+ else if ( ! empty( $video_embed ) ) {
569
+ $settings['video_embed'] = $video_embed;
570
+ }
571
+
572
+ // Save the knowledge base URL.
573
+ if ( ! empty( $_POST['fl-knowledge-base-url'] ) ) {
574
+ $settings['knowledge_base_url'] = sanitize_text_field( $_POST['fl-knowledge-base-url'] );
575
+ }
576
+
577
+ // Save the forums URL.
578
+ if ( ! empty( $_POST['fl-forums-url'] ) ) {
579
+ $settings['forums_url'] = sanitize_text_field( $_POST['fl-forums-url'] );
580
+ }
581
+
582
+ // Make sure we have at least one help feature enabled.
583
+ if ( $settings['enabled'] && ! $settings['tour'] && ! $settings['video'] && ! $settings['knowledge_base'] && ! $settings['forums'] ) {
584
+ self::add_error( __( "Error! You must have at least one feature of the help button enabled.", 'fl-builder' ) );
585
+ return;
586
+ }
587
+
588
+ // Save the settings.
589
+ if ( is_network_admin() ) {
590
+ update_site_option( '_fl_builder_help_button', $settings );
591
+ }
592
+ else {
593
+ update_option( '_fl_builder_help_button', $settings );
594
+ }
595
+ }
596
+ }
597
+
598
  /**
599
  * @method uninstall
600
  * @private
classes/class-fl-builder-model.php CHANGED
@@ -361,6 +361,28 @@ final class FLBuilderModel {
361
  return false;
362
  }
363
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
364
  /**
365
  * Gets the status to use for working with nodes in
366
  * the database. Returns draft if the builder is active,
@@ -1416,12 +1438,19 @@ final class FLBuilderModel {
1416
  static public function get_categorized_modules()
1417
  {
1418
  $enabled_modules = self::get_enabled_modules();
1419
-
1420
- $categories = array(
1421
- 'Basic Modules' => array(),
1422
- 'Advanced Modules' => array(),
1423
- 'Other' => array()
1424
- );
 
 
 
 
 
 
 
1425
 
1426
  // Build the categories array.
1427
  foreach(self::$modules as $module) {
@@ -1430,7 +1459,7 @@ final class FLBuilderModel {
1430
  continue;
1431
  }
1432
  else if($module->slug == 'widget') {
1433
- $categories[$module->category] = self::get_wp_widgets();
1434
  }
1435
  else if(isset($module->category)) {
1436
 
@@ -1441,7 +1470,7 @@ final class FLBuilderModel {
1441
  $categories[$module->category][$module->name] = $module;
1442
  }
1443
  else {
1444
- $categories['Other'][$module->name] = $module;
1445
  }
1446
  }
1447
 
@@ -1459,6 +1488,33 @@ final class FLBuilderModel {
1459
  return $categories;
1460
  }
1461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1462
  /**
1463
  * @method get_module
1464
  */
@@ -2637,6 +2693,50 @@ final class FLBuilderModel {
2637
  }
2638
  }
2639
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2640
  /**
2641
  * @method plugin_basename
2642
  */
@@ -2655,7 +2755,7 @@ final class FLBuilderModel {
2655
  {
2656
  if(current_user_can('delete_plugins')) {
2657
 
2658
- // Delete builder settings.
2659
  delete_option('_fl_builder_settings');
2660
  delete_option('_fl_builder_enabled_modules');
2661
  delete_option('_fl_builder_enabled_templates');
@@ -2663,6 +2763,10 @@ final class FLBuilderModel {
2663
  delete_option('_fl_builder_enabled_icons');
2664
  delete_option('_fl_builder_branding');
2665
  delete_option('_fl_builder_editing_capability');
 
 
 
 
2666
 
2667
  // Delete uploaded files and folders.
2668
  $upload_dir = self::get_upload_dir();
361
  return false;
362
  }
363
 
364
+ /**
365
+ * Checks to see if this is the first time
366
+ * a user has launched the builder.
367
+ *
368
+ * @method is_new_user
369
+ */
370
+ static public function is_new_user()
371
+ {
372
+ if ( self::is_builder_active() ) {
373
+
374
+ $current_user = wp_get_current_user();
375
+ $launched = get_user_meta( $current_user->ID, '_fl_builder_launched', true );
376
+
377
+ if ( empty( $launched ) ) {
378
+ update_user_meta( $current_user->ID, '_fl_builder_launched', 1 );
379
+ return true;
380
+ }
381
+ }
382
+
383
+ return false;
384
+ }
385
+
386
  /**
387
  * Gets the status to use for working with nodes in
388
  * the database. Returns draft if the builder is active,
1438
  static public function get_categorized_modules()
1439
  {
1440
  $enabled_modules = self::get_enabled_modules();
1441
+
1442
+ // Get the core category keys.
1443
+ $basic_key = __('Basic Modules', 'fl-builder');
1444
+ $advanced_key = __('Advanced Modules', 'fl-builder');
1445
+ $other_key = __('Other Modules', 'fl-builder');
1446
+ $widgets_key = __('WordPress Widgets', 'fl-builder');
1447
+
1448
+ // Build the default category arrays.
1449
+ $categories = array();
1450
+ $categories[ $basic_key ] = array();
1451
+ $categories[ $advanced_key ] = array();
1452
+ $categories[ $other_key ] = array();
1453
+ $categories[ $widgets_key ] = array();
1454
 
1455
  // Build the categories array.
1456
  foreach(self::$modules as $module) {
1459
  continue;
1460
  }
1461
  else if($module->slug == 'widget') {
1462
+ $categories[$widgets_key] = self::get_wp_widgets();
1463
  }
1464
  else if(isset($module->category)) {
1465
 
1470
  $categories[$module->category][$module->name] = $module;
1471
  }
1472
  else {
1473
+ $categories[$other_key][$module->name] = $module;
1474
  }
1475
  }
1476
 
1488
  return $categories;
1489
  }
1490
 
1491
+ /**
1492
+ * @method get_module_category_slug
1493
+ */
1494
+ static public function get_module_category_slug( $name )
1495
+ {
1496
+ // Get the core category keys.
1497
+ $basic_key = __('Basic Modules', 'fl-builder');
1498
+ $advanced_key = __('Advanced Modules', 'fl-builder');
1499
+ $other_key = __('Other Modules', 'fl-builder');
1500
+ $widgets_key = __('WordPress Widgets', 'fl-builder');
1501
+
1502
+ if ( $name == $basic_key ) {
1503
+ return 'basic';
1504
+ }
1505
+ if ( $name == $advanced_key ) {
1506
+ return 'advanced';
1507
+ }
1508
+ if ( $name == $other_key ) {
1509
+ return 'other';
1510
+ }
1511
+ if ( $name == $widgets_key ) {
1512
+ return 'widgets';
1513
+ }
1514
+
1515
+ return sanitize_html_class( $name );
1516
+ }
1517
+
1518
  /**
1519
  * @method get_module
1520
  */
2693
  }
2694
  }
2695
 
2696
+ /**
2697
+ * @method get_help_button_defaults
2698
+ */
2699
+ static public function get_help_button_defaults()
2700
+ {
2701
+ $defaults = array(
2702
+ 'enabled' => true,
2703
+ 'tour' => true,
2704
+ 'video' => false,
2705
+ 'video_embed' => '<iframe width="420" height="315" src="https://www.youtube.com/embed/CNJbH2gaACo" frameborder="0" allowfullscreen></iframe>',
2706
+ 'knowledge_base' => true,
2707
+ 'knowledge_base_url' => 'https://www.wpbeaverbuilder.com/documentation/?utm_source=external&utm_medium=builder&utm_campaign=docs-button',
2708
+ 'forums' => true,
2709
+ 'forums_url' => 'https://www.wpbeaverbuilder.com/support/?utm_source=external&utm_medium=builder&utm_campaign=forums-button',
2710
+ );
2711
+
2712
+ return $defaults;
2713
+ }
2714
+
2715
+ /**
2716
+ * @method get_help_button_settings
2717
+ */
2718
+ static public function get_help_button_settings()
2719
+ {
2720
+ $key = '_fl_builder_help_button';
2721
+ $defaults = self::get_help_button_defaults();
2722
+
2723
+ // Get the value.
2724
+ if ( is_network_admin() || class_exists( 'FLBuilderMultisiteSettings' ) ) {
2725
+ $value = get_site_option( $key );
2726
+ }
2727
+ else {
2728
+ $value = get_option( $key );
2729
+ }
2730
+
2731
+ // Return the value.
2732
+ if ( false === $value ) {
2733
+ return $defaults;
2734
+ }
2735
+ else {
2736
+ return $value;
2737
+ }
2738
+ }
2739
+
2740
  /**
2741
  * @method plugin_basename
2742
  */
2755
  {
2756
  if(current_user_can('delete_plugins')) {
2757
 
2758
+ // Delete builder options.
2759
  delete_option('_fl_builder_settings');
2760
  delete_option('_fl_builder_enabled_modules');
2761
  delete_option('_fl_builder_enabled_templates');
2763
  delete_option('_fl_builder_enabled_icons');
2764
  delete_option('_fl_builder_branding');
2765
  delete_option('_fl_builder_editing_capability');
2766
+ delete_option('_fl_builder_help_button');
2767
+
2768
+ // Delete builder user meta.
2769
+ delete_metadata('user', 0, '_fl_builder_launched', 1, true);
2770
 
2771
  // Delete uploaded files and folders.
2772
  $upload_dir = self::get_upload_dir();
classes/class-fl-builder-module.php CHANGED
@@ -144,12 +144,21 @@ class FLBuilderModule {
144
  $this->enabled = isset($params['enabled']) ? $params['enabled'] : true;
145
  $this->editor_export = isset($params['editor_export']) ? $params['editor_export'] : true;
146
 
147
- if(is_child_theme() && stristr($dir_path, get_stylesheet_directory())) {
148
- $this->url = str_replace(get_stylesheet_directory(), get_stylesheet_directory_uri(), $dir_path) . '/';
 
 
 
 
 
 
 
 
 
149
  $this->dir = $dir_path . '/';
150
  }
151
- else if(stristr($dir_path, get_template_directory())) {
152
- $this->url = str_replace(get_template_directory(), get_template_directory_uri(), $dir_path) . '/';
153
  $this->dir = $dir_path . '/';
154
  }
155
  else {
144
  $this->enabled = isset($params['enabled']) ? $params['enabled'] : true;
145
  $this->editor_export = isset($params['editor_export']) ? $params['editor_export'] : true;
146
 
147
+ // We need to normalize the paths here since path comparisons
148
+ // break on Windows because they use backslashes.
149
+ $dir_path = str_replace( '\\', '/', $dir_path );
150
+ $stylesheet_directory = str_replace( '\\', '/', get_stylesheet_directory() );
151
+ $stylesheet_directory_uri = str_replace( '\\', '/', get_stylesheet_directory_uri() );
152
+ $template_directory = str_replace( '\\', '/', get_template_directory() );
153
+ $template_directory_uri = str_replace( '\\', '/', get_template_directory_uri() );
154
+
155
+ // Find the right paths.
156
+ if(is_child_theme() && stristr($dir_path, $stylesheet_directory)) {
157
+ $this->url = str_replace($stylesheet_directory, $stylesheet_directory_uri, $dir_path) . '/';
158
  $this->dir = $dir_path . '/';
159
  }
160
+ else if(stristr($dir_path, $template_directory)) {
161
+ $this->url = str_replace($template_directory, $template_directory_uri, $dir_path) . '/';
162
  $this->dir = $dir_path . '/';
163
  }
164
  else {
classes/class-fl-builder.php CHANGED
@@ -76,6 +76,9 @@ final class FLBuilder {
76
  {
77
  // Enable editing if the builder is active.
78
  if(FLBuilderModel::is_builder_active()) {
 
 
 
79
 
80
  // Remove 3rd party editor buttons.
81
  remove_all_actions('media_buttons', 999999);
@@ -348,6 +351,7 @@ final class FLBuilder {
348
  wp_enqueue_style('jquery-nanoscroller', $css_url . 'jquery.nanoscroller.css', array(), $ver);
349
  wp_enqueue_style('jquery-autosuggest', $css_url . 'jquery.autoSuggest.min.css', array(), $ver);
350
  wp_enqueue_style('jquery-tiptip', $css_url . 'jquery.tiptip.css', array(), $ver);
 
351
  wp_enqueue_style('fl-color-picker', $css_url . 'colorpicker.css', array(), $ver);
352
  wp_enqueue_style('fl-lightbox', $css_url . 'fl-lightbox.css', array(), $ver);
353
  wp_enqueue_style('fl-icon-selector', $css_url . 'fl-icon-selector.css', array(), $ver);
@@ -378,6 +382,7 @@ final class FLBuilder {
378
  wp_enqueue_script('jquery-tiptip', $js_url . 'jquery.tiptip.min.js', array(), $ver, true);
379
  wp_enqueue_script('jquery-simulate', $js_url . 'jquery.simulate.js', array(), $ver, true);
380
  wp_enqueue_script('jquery-validate', $js_url . 'jquery.validate.min.js', array(), $ver, true);
 
381
  wp_enqueue_script('ace', $js_url . 'ace/ace.js', array(), $ver, true);
382
  wp_enqueue_script('fl-color-picker', $js_url . 'colorpicker.js', array(), $ver, true);
383
  wp_enqueue_script('fl-lightbox', $js_url . 'fl-lightbox.js', array(), $ver, true);
@@ -385,6 +390,7 @@ final class FLBuilder {
385
  wp_enqueue_script('fl-stylesheet', $js_url . 'fl-stylesheet.js', array(), $ver, true);
386
  wp_enqueue_script('fl-builder', $js_url . 'fl-builder.js', array(), $ver, true);
387
  wp_enqueue_script('fl-builder-preview', $js_url . 'fl-builder-preview.js', array(), $ver, true);
 
388
 
389
  /* Core template settings */
390
  if(file_exists(FL_BUILDER_DIR . 'js/fl-template-settings.js')) {
@@ -450,6 +456,7 @@ final class FLBuilder {
450
  $post_id = $wp_the_query->post->ID;
451
  $categories = FLBuilderModel::get_categorized_modules();
452
  $enabled_templates = FLBuilderModel::get_enabled_templates();
 
453
 
454
  include FL_BUILDER_DIR . 'includes/ui.php';
455
  include FL_BUILDER_DIR . 'includes/js-config.php';
76
  {
77
  // Enable editing if the builder is active.
78
  if(FLBuilderModel::is_builder_active()) {
79
+
80
+ // Tell W3TC not to minify while the builder is active.
81
+ define( 'DONOTMINIFY', true );
82
 
83
  // Remove 3rd party editor buttons.
84
  remove_all_actions('media_buttons', 999999);
351
  wp_enqueue_style('jquery-nanoscroller', $css_url . 'jquery.nanoscroller.css', array(), $ver);
352
  wp_enqueue_style('jquery-autosuggest', $css_url . 'jquery.autoSuggest.min.css', array(), $ver);
353
  wp_enqueue_style('jquery-tiptip', $css_url . 'jquery.tiptip.css', array(), $ver);
354
+ wp_enqueue_style('bootstrap-tour', $css_url . 'bootstrap-tour-standalone.min.css', array(), $ver);
355
  wp_enqueue_style('fl-color-picker', $css_url . 'colorpicker.css', array(), $ver);
356
  wp_enqueue_style('fl-lightbox', $css_url . 'fl-lightbox.css', array(), $ver);
357
  wp_enqueue_style('fl-icon-selector', $css_url . 'fl-icon-selector.css', array(), $ver);
382
  wp_enqueue_script('jquery-tiptip', $js_url . 'jquery.tiptip.min.js', array(), $ver, true);
383
  wp_enqueue_script('jquery-simulate', $js_url . 'jquery.simulate.js', array(), $ver, true);
384
  wp_enqueue_script('jquery-validate', $js_url . 'jquery.validate.min.js', array(), $ver, true);
385
+ wp_enqueue_script('bootstrap-tour', $js_url . 'bootstrap-tour-standalone.min.js', array(), $ver, true);
386
  wp_enqueue_script('ace', $js_url . 'ace/ace.js', array(), $ver, true);
387
  wp_enqueue_script('fl-color-picker', $js_url . 'colorpicker.js', array(), $ver, true);
388
  wp_enqueue_script('fl-lightbox', $js_url . 'fl-lightbox.js', array(), $ver, true);
390
  wp_enqueue_script('fl-stylesheet', $js_url . 'fl-stylesheet.js', array(), $ver, true);
391
  wp_enqueue_script('fl-builder', $js_url . 'fl-builder.js', array(), $ver, true);
392
  wp_enqueue_script('fl-builder-preview', $js_url . 'fl-builder-preview.js', array(), $ver, true);
393
+ wp_enqueue_script('fl-builder-tour', $js_url . 'fl-builder-tour.js', array(), $ver, true);
394
 
395
  /* Core template settings */
396
  if(file_exists(FL_BUILDER_DIR . 'js/fl-template-settings.js')) {
456
  $post_id = $wp_the_query->post->ID;
457
  $categories = FLBuilderModel::get_categorized_modules();
458
  $enabled_templates = FLBuilderModel::get_enabled_templates();
459
+ $help_button = FLBuilderModel::get_help_button_settings();
460
 
461
  include FL_BUILDER_DIR . 'includes/ui.php';
462
  include FL_BUILDER_DIR . 'includes/js-config.php';
css/bootstrap-tour-standalone.min.css ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* ========================================================================
2
+ * bootstrap-tour - v0.10.1
3
+ * http://bootstraptour.com
4
+ * ========================================================================
5
+ * Copyright 2012-2013 Ulrich Sossou
6
+ *
7
+ * ========================================================================
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ * ========================================================================
20
+ */
21
+
22
+ /*!
23
+ * Bootstrap v3.1.0 (http://getbootstrap.com)
24
+ * Copyright 2011-2014 Twitter, Inc.
25
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
26
+ */.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:400;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn>input[type=radio],[data-toggle=buttons]>.btn>input[type=checkbox]{position:absolute;z-index:-1;opacity:0;filter:alpha(opacity=0)}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.tour-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1100;background-color:#000;opacity:.8;filter:alpha(opacity=80)}.tour-step-backdrop{position:relative;z-index:1101;background:inherit}.tour-step-backdrop>td{position:relative;z-index:1101}.tour-step-background{position:absolute!important;z-index:1100;background:inherit;border-radius:6px}.popover[class*=tour-]{z-index:1100}.popover[class*=tour-] .popover-navigation{padding:9px 14px}.popover[class*=tour-] .popover-navigation [data-role=end]{float:right}.popover[class*=tour-] .popover-navigation [data-role=prev],.popover[class*=tour-] .popover-navigation [data-role=next],.popover[class*=tour-] .popover-navigation [data-role=end]{cursor:pointer}.popover[class*=tour-] .popover-navigation [data-role=prev].disabled,.popover[class*=tour-] .popover-navigation [data-role=next].disabled,.popover[class*=tour-] .popover-navigation [data-role=end].disabled{cursor:default}.popover[class*=tour-].orphan{position:fixed;margin-top:0}.popover[class*=tour-].orphan .arrow{display:none}
css/fl-builder-admin-settings.css CHANGED
@@ -58,6 +58,9 @@
58
  margin-top: 15px;
59
  width: 78%;
60
  }
 
 
 
61
 
62
  /* Settings Forms
63
  ----------------------------------------------------------- */
@@ -97,6 +100,16 @@
97
  color: #d34e2a;
98
  }
99
 
 
 
 
 
 
 
 
 
 
 
100
  /* Media Query - Max Width 900px
101
  ----------------------------------------------------------- */
102
 
58
  margin-top: 15px;
59
  width: 78%;
60
  }
61
+ .fl-settings-form-content h4 {
62
+ font-size: 14px;
63
+ }
64
 
65
  /* Settings Forms
66
  ----------------------------------------------------------- */
100
  color: #d34e2a;
101
  }
102
 
103
+ /* Help Button
104
+ ----------------------------------------------------------- */
105
+
106
+ .fl-help-button-settings,
107
+ .fl-help-video-embed,
108
+ .fl-knowledge-base-url,
109
+ .fl-forums-url {
110
+ display: none;
111
+ }
112
+
113
  /* Media Query - Max Width 900px
114
  ----------------------------------------------------------- */
115
 
css/fl-builder-layout.css CHANGED
@@ -251,6 +251,7 @@
251
  line-height: 0;
252
  }
253
  .fl-photo-content img {
 
254
  height: auto !important;
255
  max-width: 100%;
256
  width: auto !important;
251
  line-height: 0;
252
  }
253
  .fl-photo-content img {
254
+ display: inline;
255
  height: auto !important;
256
  max-width: 100%;
257
  width: auto !important;
css/fl-builder.css CHANGED
@@ -39,8 +39,10 @@ html.fl-builder-edit {
39
  /* Simple UI
40
  ------------------------------------------------------ */
41
 
 
42
  .fl-builder-simple .fl-builder-tools-button,
43
  .fl-builder-simple .fl-builder-add-content-button,
 
44
  .fl-builder-simple .fl-builder-panel,
45
  .fl-builder-simple .fl-block-overlay-actions .fl-block-move,
46
  .fl-builder-simple .fl-block-overlay-actions .fl-block-copy,
@@ -118,6 +120,17 @@ html.fl-builder-edit {
118
  line-height: 11px !important;
119
  height: 24px;
120
  }
 
 
 
 
 
 
 
 
 
 
 
121
 
122
  /* Builder Bar
123
  ------------------------------------------------------ */
@@ -435,11 +448,23 @@ html.fl-builder-edit {
435
  -moz-box-sizing: border-box !important;
436
  -webkit-box-sizing: border-box !important;
437
  color: #fff;
 
438
  position: absolute;
439
  top: -30px;
440
  width: 100%;
441
  z-index: 100006;
442
  }
 
 
 
 
 
 
 
 
 
 
 
443
  .fl-block-overlay-active .fl-row-content {
444
  position: relative;
445
  z-index: 100007;
@@ -1279,4 +1304,90 @@ li.as-result-item em {
1279
  /* Loop Builder */
1280
  .fl-loop-builder-filter {
1281
  display: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1282
  }
39
  /* Simple UI
40
  ------------------------------------------------------ */
41
 
42
+ .fl-builder-simple .fl-builder-templates-button,
43
  .fl-builder-simple .fl-builder-tools-button,
44
  .fl-builder-simple .fl-builder-add-content-button,
45
+ .fl-builder-simple .fl-builder-help-button,
46
  .fl-builder-simple .fl-builder-panel,
47
  .fl-builder-simple .fl-block-overlay-actions .fl-block-move,
48
  .fl-builder-simple .fl-block-overlay-actions .fl-block-copy,
120
  line-height: 11px !important;
121
  height: 24px;
122
  }
123
+ .fl-builder-help-button {
124
+ color: #b3b3b3;
125
+ font-size: 16px !important;
126
+ }
127
+ .fl-builder-help-button i {
128
+ position: relative;
129
+ top: -1px;
130
+ }
131
+ .fl-builder-help-button:hover {
132
+ color: #666;
133
+ }
134
 
135
  /* Builder Bar
136
  ------------------------------------------------------ */
448
  -moz-box-sizing: border-box !important;
449
  -webkit-box-sizing: border-box !important;
450
  color: #fff;
451
+ left: 0;
452
  position: absolute;
453
  top: -30px;
454
  width: 100%;
455
  z-index: 100006;
456
  }
457
+ .fl-row-overlay-header-bottom {
458
+ bottom: -30px;
459
+ top: 0;
460
+ }
461
+ .fl-row-overlay-header-bottom .fl-block-overlay-header {
462
+ position: absolute;
463
+ bottom: 0;
464
+ }
465
+ .fl-block-overlay-active .fl-row-content-wrap {
466
+ position: relative;
467
+ }
468
  .fl-block-overlay-active .fl-row-content {
469
  position: relative;
470
  z-index: 100007;
1304
  /* Loop Builder */
1305
  .fl-loop-builder-filter {
1306
  display: none;
1307
+ }
1308
+
1309
+ /* Getting Started Video
1310
+ ------------------------------------------------------ */
1311
+
1312
+ .fl-builder-getting-started-video {
1313
+ line-height: 0 !important;
1314
+ padding: 10px;
1315
+ }
1316
+ .fl-builder-getting-started-video iframe {
1317
+ border: none;
1318
+ height: 326px;
1319
+ width: 100%;
1320
+ }
1321
+
1322
+ /* Help Tour
1323
+ ------------------------------------------------------ */
1324
+
1325
+ .fl-builder-tour-actions .fl-builder-actions-title {
1326
+ font-size: 14px !important;
1327
+ line-height: 19px;
1328
+ }
1329
+ .fl-builder-tour-mask {
1330
+ bottom: 0;
1331
+ left: 0;
1332
+ position: fixed;
1333
+ right: 0;
1334
+ top: 0;
1335
+ z-index: 100000000;
1336
+ }
1337
+ .fl-builder-tour-dimmed {
1338
+ background: rgba( 0, 0, 0, 0.7 );
1339
+ bottom: 0;
1340
+ left: 0;
1341
+ position: absolute;
1342
+ right: 0;
1343
+ top: 0;
1344
+ }
1345
+ body > .fl-builder-tour-dimmed {
1346
+ position: fixed;
1347
+ }
1348
+ .tour-backdrop {
1349
+ z-index: 110000;
1350
+ }
1351
+ .popover[class*=tour-] {
1352
+ border: 1px solid #ccc;
1353
+ border-radius: 0;
1354
+ -webkit-box-shadow: 0 0 30px rgba(0,0,0,.3);
1355
+ box-shadow: 0 0 40px rgba(0,0,0,.3);
1356
+ color: #666;
1357
+ font-size: 13px;
1358
+ max-width: none;
1359
+ padding: 0;
1360
+ width: 300px;
1361
+ z-index: 100000001;
1362
+ }
1363
+ .popover[class*=tour-].bottom > .arrow {
1364
+ border-bottom-color: #ccc;
1365
+ }
1366
+ .popover[class*=tour-].bottom > .arrow:after {
1367
+ border-bottom-color: #f7f7f7;
1368
+ }
1369
+ .popover[class*=tour-] .popover-title {
1370
+ border-radius: 0;
1371
+ color: #333;
1372
+ }
1373
+ .popover[class*=tour-] .fa-times {
1374
+ color: #b3b3b3;
1375
+ cursor: pointer;
1376
+ font-size: 16px;
1377
+ padding: 5px;
1378
+ position: absolute;
1379
+ right: 3px;
1380
+ top: 2px;
1381
+ }
1382
+ .popover[class*=tour-] .fa-times:hover {
1383
+ color: #666;
1384
+ }
1385
+ .popover[class*=tour-] .popover-content {
1386
+ border-bottom: 1px solid #d9d9d9;
1387
+ padding: 13px 15px;
1388
+ }
1389
+ .popover[class*=tour-] .fl-builder-tour-next {
1390
+ display: block;
1391
+ float: none;
1392
+ width: 100%;
1393
  }
fl-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Beaver Builder Plugin (Lite Version)
4
  * Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
5
  * Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
6
- * Version: 1.4.8
7
  * Author: The Beaver Builder Team
8
  * Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
9
  * Copyright: (c) 2014 Beaver Builder
@@ -11,7 +11,7 @@
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: fl-builder
13
  */
14
- define('FL_BUILDER_VERSION', '1.4.8');
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.5.0
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.5.0');
15
  define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
16
  define('FL_BUILDER_URL', plugins_url('/', __FILE__));
17
  define('FL_BUILDER_LITE', true);
includes/js-config.php CHANGED
@@ -1,12 +1,13 @@
1
  <script>
2
 
3
  var FLBuilderConfig = {
4
- ajaxUrl: '<?php echo get_permalink( $post_id ); ?>',
5
  debug: <?php if( defined( 'WP_DEBUG' ) && WP_DEBUG ) echo 'true'; else echo 'false'; ?>,
6
  enabledTemplates: '<?php echo $enabled_templates; ?>',
 
7
  homeUrl: '<?php echo home_url(); ?>',
8
  isRtl: <?php if(is_rtl()) echo 'true'; else echo 'false'; ?>,
9
  lite: <?php if(FL_BUILDER_LITE === true) echo 'true'; else echo 'false'; ?>,
 
10
  postId: <?php echo $post_id; ?>,
11
  postType: '<?php echo get_post_type(); ?>',
12
  simpleUi: <?php if(!current_user_can(FLBuilderModel::get_editing_capability())) echo 'true'; else echo 'false'; ?>,
@@ -27,6 +28,7 @@ var FLBuilderStrings = {
27
  deleteTemplate: '<?php esc_attr_e('Do you really want to delete this template?', 'fl-builder'); ?>',
28
  discard: '<?php esc_attr_e('Discard Draft', 'fl-builder'); ?>',
29
  discardMessage: '<?php esc_attr_e('Do you really want to discard this draft? All of your changes that are not published will be lost.', 'fl-builder'); ?>',
 
30
  draft: '<?php esc_attr_e('Save Draft', 'fl-builder'); ?>',
31
  duplicate: '<?php _ex( 'Duplicate', 'Duplicate page/post action label.', 'fl-builder' ); ?>',
32
  duplicatePage: '<?php esc_attr_e('Duplicate This Page', 'fl-builder'); ?>',
@@ -35,6 +37,8 @@ var FLBuilderStrings = {
35
  emptyMessage: '<?php esc_attr_e('Drop a row layout or module to get started!', 'fl-builder') ?>',
36
  errorMessage: '<?php _e('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.', 'fl-builder') ?>',
37
  fullSize: '<?php esc_attr_e('Full Size', 'fl-builder'); ?>',
 
 
38
  globalErrorMessage: '<?php _e('"{message}" on line {line} of {file}.', 'fl-builder') ?>',
39
  insert: '<?php esc_attr_e('Insert', 'fl-builder'); ?>',
40
  large: '<?php esc_attr_e('Large', 'fl-builder'); ?>',
@@ -45,6 +49,7 @@ var FLBuilderStrings = {
45
  newColumn: '<?php esc_attr_e('New Column', 'fl-builder') ?>',
46
  newRow: '<?php esc_attr_e('New Row', 'fl-builder') ?>',
47
  noResultsFound: '<?php esc_attr_e('No results found.', 'fl-builder') ?>',
 
48
  ok: '<?php esc_attr_e( 'OK', 'fl-builder' ); ?>',
49
  photoPage: '<?php esc_attr_e('Photo Page', 'fl-builder'); ?>',
50
  photoSelected: '<?php esc_attr_e('Photo Selected', 'fl-builder'); ?>',
@@ -59,11 +64,38 @@ var FLBuilderStrings = {
59
  selectPhotos: '<?php esc_attr_e('Select Photos', 'fl-builder'); ?>',
60
  selectVideo: '<?php esc_attr_e('Select Video', 'fl-builder'); ?>',
61
  settings: '<?php _ex( '%s Settings', '%s stands for module name.', 'fl-builder' ); ?>',
 
62
  templateAppend: '<?php esc_attr_e('Append New Layout', 'fl-builder'); ?>',
63
  templateReplace: '<?php esc_attr_e('Replace Existing Layout', 'fl-builder'); ?>',
64
  templateSaved: '<?php esc_attr_e('Template Saved!', 'fl-builder'); ?>',
65
  thumbnail: '<?php esc_attr_e('Thumbnail', 'fl-builder'); ?>',
66
- unloadWarning: '<?php esc_attr_e('The settings you are currently editing will not be saved if you navigate away from this page.', 'fl-builder'); ?>'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  };
68
 
69
  </script>
1
  <script>
2
 
3
  var FLBuilderConfig = {
 
4
  debug: <?php if( defined( 'WP_DEBUG' ) && WP_DEBUG ) echo 'true'; else echo 'false'; ?>,
5
  enabledTemplates: '<?php echo $enabled_templates; ?>',
6
+ help: <?php echo json_encode( $help_button ); ?>,
7
  homeUrl: '<?php echo home_url(); ?>',
8
  isRtl: <?php if(is_rtl()) echo 'true'; else echo 'false'; ?>,
9
  lite: <?php if(FL_BUILDER_LITE === true) echo 'true'; else echo 'false'; ?>,
10
+ newUser: <?php if ( FLBuilderModel::is_new_user() ) echo 'true'; else echo 'false'; ?>,
11
  postId: <?php echo $post_id; ?>,
12
  postType: '<?php echo get_post_type(); ?>',
13
  simpleUi: <?php if(!current_user_can(FLBuilderModel::get_editing_capability())) echo 'true'; else echo 'false'; ?>,
28
  deleteTemplate: '<?php esc_attr_e('Do you really want to delete this template?', 'fl-builder'); ?>',
29
  discard: '<?php esc_attr_e('Discard Draft', 'fl-builder'); ?>',
30
  discardMessage: '<?php esc_attr_e('Do you really want to discard this draft? All of your changes that are not published will be lost.', 'fl-builder'); ?>',
31
+ done: '<?php esc_attr_e('Done', 'fl-builder'); ?>',
32
  draft: '<?php esc_attr_e('Save Draft', 'fl-builder'); ?>',
33
  duplicate: '<?php _ex( 'Duplicate', 'Duplicate page/post action label.', 'fl-builder' ); ?>',
34
  duplicatePage: '<?php esc_attr_e('Duplicate This Page', 'fl-builder'); ?>',
37
  emptyMessage: '<?php esc_attr_e('Drop a row layout or module to get started!', 'fl-builder') ?>',
38
  errorMessage: '<?php _e('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.', 'fl-builder') ?>',
39
  fullSize: '<?php esc_attr_e('Full Size', 'fl-builder'); ?>',
40
+ getHelp: '<?php esc_attr_e('Get Help', 'fl-builder'); ?>',
41
+ gettingStartedVideo: '<?php esc_attr_e('Getting Started Video', 'fl-builder'); ?>',
42
  globalErrorMessage: '<?php _e('"{message}" on line {line} of {file}.', 'fl-builder') ?>',
43
  insert: '<?php esc_attr_e('Insert', 'fl-builder'); ?>',
44
  large: '<?php esc_attr_e('Large', 'fl-builder'); ?>',
49
  newColumn: '<?php esc_attr_e('New Column', 'fl-builder') ?>',
50
  newRow: '<?php esc_attr_e('New Row', 'fl-builder') ?>',
51
  noResultsFound: '<?php esc_attr_e('No results found.', 'fl-builder') ?>',
52
+ noThanks: '<?php esc_attr_e('No Thanks', 'fl-builder'); ?>',
53
  ok: '<?php esc_attr_e( 'OK', 'fl-builder' ); ?>',
54
  photoPage: '<?php esc_attr_e('Photo Page', 'fl-builder'); ?>',
55
  photoSelected: '<?php esc_attr_e('Photo Selected', 'fl-builder'); ?>',
64
  selectPhotos: '<?php esc_attr_e('Select Photos', 'fl-builder'); ?>',
65
  selectVideo: '<?php esc_attr_e('Select Video', 'fl-builder'); ?>',
66
  settings: '<?php _ex( '%s Settings', '%s stands for module name.', 'fl-builder' ); ?>',
67
+ takeHelpTour: '<?php esc_attr_e('Take a Tour', 'fl-builder'); ?>',
68
  templateAppend: '<?php esc_attr_e('Append New Layout', 'fl-builder'); ?>',
69
  templateReplace: '<?php esc_attr_e('Replace Existing Layout', 'fl-builder'); ?>',
70
  templateSaved: '<?php esc_attr_e('Template Saved!', 'fl-builder'); ?>',
71
  thumbnail: '<?php esc_attr_e('Thumbnail', 'fl-builder'); ?>',
72
+ tourNext: '<?php esc_attr_e('Next', 'fl-builder'); ?>',
73
+ tourEnd: '<?php esc_attr_e('Get Started', 'fl-builder'); ?>',
74
+ tourTemplatesTitle: '<?php esc_attr_e('Choose a Template', 'fl-builder'); ?>',
75
+ tourTemplates: '<?php esc_attr_e('Get started by choosing a layout template to customize, or build a page from scratch by selecting the blank layout template.', 'fl-builder'); ?>',
76
+ tourAddRowsTitle: '<?php esc_attr_e('Add Rows', 'fl-builder'); ?>',
77
+ tourAddRows: '<?php esc_attr_e('Add multi-column rows, adjust spacing, add backgrounds and more by dragging and dropping row layouts onto the page.', 'fl-builder'); ?>',
78
+ tourAddContentTitle: '<?php esc_attr_e('Add Content', 'fl-builder'); ?>',
79
+ tourAddContent: '<?php esc_attr_e('Add new content by dragging and dropping modules or widgets into your row layouts or to create a new row layout.', 'fl-builder'); ?>',
80
+ tourEditContentTitle: '<?php esc_attr_e('Edit Content', 'fl-builder'); ?>',
81
+ tourEditContent: '<?php esc_attr_e('Move your mouse over rows, columns or modules to edit and interact with them.', 'fl-builder'); ?>',
82
+ tourEditContent2: '<?php esc_attr_e('Use the action buttons to perform actions such as moving, editing, duplicating or deleting rows, columns and modules.', 'fl-builder'); ?>',
83
+ tourAddContentButtonTitle: '<?php esc_attr_e('Add More Content', 'fl-builder'); ?>',
84
+ tourAddContentButton: '<?php esc_attr_e('Use the Add Content button to open the content panel and add new row layouts, modules or widgets.', 'fl-builder'); ?>',
85
+ tourTemplatesButtonTitle: '<?php esc_attr_e('Change Templates', 'fl-builder'); ?>',
86
+ tourTemplatesButton: '<?php esc_attr_e('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.', 'fl-builder'); ?>',
87
+ tourToolsButtonTitle: '<?php esc_attr_e('Helpful Tools', 'fl-builder'); ?>',
88
+ tourToolsButton: '<?php esc_attr_e('The Tools button lets you duplicate a page, save a template or edit the global settings.', 'fl-builder'); ?>',
89
+ tourDoneButtonTitle: '<?php esc_attr_e('Publish Your Changes', 'fl-builder'); ?>',
90
+ tourDoneButton: '<?php esc_attr_e("Once you're finished, click the Done button to publish your changes, save a draft or revert back to the last published state.", 'fl-builder'); ?>',
91
+ tourFinishedTitle: '<?php esc_attr_e("Let's Get Building!", 'fl-builder'); ?>',
92
+ tourFinished: '<?php esc_attr_e("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!", 'fl-builder'); ?>',
93
+ unloadWarning: '<?php esc_attr_e('The settings you are currently editing will not be saved if you navigate away from this page.', 'fl-builder'); ?>',
94
+ viewKnowledgeBase: '<?php esc_attr_e('View the Knowledge Base', 'fl-builder'); ?>',
95
+ visitForums: '<?php esc_attr_e('Visit the Forums', 'fl-builder'); ?>',
96
+ watchHelpVideo: '<?php esc_attr_e('Watch the Video', 'fl-builder'); ?>',
97
+ welcomeMessage: '<?php esc_attr_e('Welcome! It looks like this might be your first time using the builder. Would you like to take a tour?', 'fl-builder'); ?>',
98
+ yesPlease: '<?php esc_attr_e('Yes Please!', 'fl-builder'); ?>'
99
  };
100
 
101
  </script>
includes/row-video.php CHANGED
@@ -1,6 +1,10 @@
1
- <div class="fl-bg-video">
 
 
 
2
  <video autoplay loop muted preload data-width="<?php echo @$vid_data->width; ?>" data-height="<?php echo @$vid_data->height; ?>">
3
  <source src="<?php echo $vid_data->url; ?>" type="video/<?php echo $vid_data->extension; ?>" onerror="var wrap = this.parentNode.parentNode, vid = this.parentNode; wrap.appendChild(document.getElementById('fl-bg-video-fallback-<?php echo $row->node; ?>')); wrap.removeChild(vid);">
4
  <div id="fl-bg-video-fallback-<?php echo $row->node; ?>" class="fl-bg-video-fallback"<?php if(!empty($vid_data->fallback)) echo ' style="background-image: url(' . $vid_data->fallback . ');"'; ?>></div>
5
  </video>
 
6
  </div>
1
+ <div class="fl-bg-video">
2
+ <?php if ( wp_is_mobile() ) : ?>
3
+ <div id="fl-bg-video-fallback-<?php echo $row->node; ?>" class="fl-bg-video-fallback"<?php if(!empty($vid_data->fallback)) echo ' style="background-image: url(' . $vid_data->fallback . ');"'; ?>></div>
4
+ <?php else : ?>
5
  <video autoplay loop muted preload data-width="<?php echo @$vid_data->width; ?>" data-height="<?php echo @$vid_data->height; ?>">
6
  <source src="<?php echo $vid_data->url; ?>" type="video/<?php echo $vid_data->extension; ?>" onerror="var wrap = this.parentNode.parentNode, vid = this.parentNode; wrap.appendChild(document.getElementById('fl-bg-video-fallback-<?php echo $row->node; ?>')); wrap.removeChild(vid);">
7
  <div id="fl-bg-video-fallback-<?php echo $row->node; ?>" class="fl-bg-video-fallback"<?php if(!empty($vid_data->fallback)) echo ' style="background-image: url(' . $vid_data->fallback . ');"'; ?>></div>
8
  </video>
9
+ <?php endif; ?>
10
  </div>
includes/ui.php CHANGED
@@ -33,6 +33,9 @@
33
  </span>
34
  <?php endif; ?>
35
  <div class="fl-builder-bar-actions">
 
 
 
36
  <?php if(stristr(home_url(), 'demo.wpbeaverbuilder.com')) : ?>
37
  <span class="fl-builder-upgrade-button fl-builder-button"><?php _e('Buy Now!', 'fl-builder'); ?></span>
38
  <?php elseif(FL_BUILDER_LITE === true) : ?>
@@ -59,7 +62,7 @@
59
  <div class="fl-builder-panel-content-wrap fl-nanoscroller">
60
  <div class="fl-builder-panel-content fl-nanoscroller-content">
61
  <div class="fl-builder-blocks">
62
- <div class="fl-builder-blocks-section">
63
  <span class="fl-builder-blocks-section-title">
64
  <?php _e('Row Layouts', 'fl-builder'); ?>
65
  <i class="fa fa-chevron-down"></i>
@@ -71,13 +74,13 @@
71
  <span class="fl-builder-block fl-builder-block-row" data-cols="4-cols"><?php _e('4 Columns', 'fl-builder'); ?></span>
72
  <span class="fl-builder-block fl-builder-block-row" data-cols="5-cols"><?php _e('5 Columns', 'fl-builder'); ?></span>
73
  <span class="fl-builder-block fl-builder-block-row" data-cols="6-cols"><?php _e('6 Columns', 'fl-builder'); ?></span>
74
- <span class="fl-builder-block fl-builder-block-row" data-cols="left-sidebar"><?php _e('Left Sidebar', 'fl-builder'); ?></span>
75
  <span class="fl-builder-block fl-builder-block-row" data-cols="right-sidebar"><?php _e('Right Sidebar', 'fl-builder'); ?></span>
76
  <span class="fl-builder-block fl-builder-block-row" data-cols="left-right-sidebar"><?php _e('Left &amp; Right Sidebar', 'fl-builder'); ?></span>
77
  </div>
78
  </div>
79
  <?php foreach($categories as $title => $modules) : ?>
80
- <div class="fl-builder-blocks-section <?php if($title == 'Builder Modules') echo ' fl-active'; ?>">
81
  <span class="fl-builder-blocks-section-title">
82
  <?php echo $title; ?>
83
  <i class="fa fa-chevron-down"></i>
33
  </span>
34
  <?php endif; ?>
35
  <div class="fl-builder-bar-actions">
36
+ <?php if ( $help_button['enabled'] ) : ?>
37
+ <span class="fl-builder-help-button fl-builder-button"><i class="fa fa-question-circle"></i></span>
38
+ <?php endif ?>
39
  <?php if(stristr(home_url(), 'demo.wpbeaverbuilder.com')) : ?>
40
  <span class="fl-builder-upgrade-button fl-builder-button"><?php _e('Buy Now!', 'fl-builder'); ?></span>
41
  <?php elseif(FL_BUILDER_LITE === true) : ?>
62
  <div class="fl-builder-panel-content-wrap fl-nanoscroller">
63
  <div class="fl-builder-panel-content fl-nanoscroller-content">
64
  <div class="fl-builder-blocks">
65
+ <div id="fl-builder-blocks-rows" class="fl-builder-blocks-section">
66
  <span class="fl-builder-blocks-section-title">
67
  <?php _e('Row Layouts', 'fl-builder'); ?>
68
  <i class="fa fa-chevron-down"></i>
74
  <span class="fl-builder-block fl-builder-block-row" data-cols="4-cols"><?php _e('4 Columns', 'fl-builder'); ?></span>
75
  <span class="fl-builder-block fl-builder-block-row" data-cols="5-cols"><?php _e('5 Columns', 'fl-builder'); ?></span>
76
  <span class="fl-builder-block fl-builder-block-row" data-cols="6-cols"><?php _e('6 Columns', 'fl-builder'); ?></span>
77
+ <span class="fl-builder-block fl-builder-block-row" data-cols="left-sidebar"><?php _e('Left Sidebar', 'fl-builder'); ?></span>
78
  <span class="fl-builder-block fl-builder-block-row" data-cols="right-sidebar"><?php _e('Right Sidebar', 'fl-builder'); ?></span>
79
  <span class="fl-builder-block fl-builder-block-row" data-cols="left-right-sidebar"><?php _e('Left &amp; Right Sidebar', 'fl-builder'); ?></span>
80
  </div>
81
  </div>
82
  <?php foreach($categories as $title => $modules) : ?>
83
+ <div id="fl-builder-blocks-<?php echo FLBuilderModel::get_module_category_slug( $title ); ?>" class="fl-builder-blocks-section">
84
  <span class="fl-builder-blocks-section-title">
85
  <?php echo $title; ?>
86
  <i class="fa fa-chevron-down"></i>
includes/updater-config.php CHANGED
@@ -3,7 +3,7 @@
3
  if(class_exists('FLUpdater')) {
4
  FLUpdater::add_product(array(
5
  'name' => 'Beaver Builder Plugin (Lite Version)',
6
- 'version' => '1.4.8',
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.5.0',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
includes/updater/classes/class-fl-updater.php CHANGED
@@ -10,7 +10,7 @@ final class FLUpdater {
10
  * @static
11
  * @private
12
  */
13
- static private $_store_api_url = 'http://www.wpbeaverbuilder.com/';
14
 
15
  /**
16
  * @property $_updates_api_url
10
  * @static
11
  * @private
12
  */
13
+ static private $_store_api_url = 'https://www.wpbeaverbuilder.com/';
14
 
15
  /**
16
  * @property $_updates_api_url
js/bootstrap-tour-standalone.min.js ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* ========================================================================
2
+ * bootstrap-tour - v0.10.1
3
+ * http://bootstraptour.com
4
+ * ========================================================================
5
+ * Copyright 2012-2013 Ulrich Sossou
6
+ *
7
+ * ========================================================================
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ * ========================================================================
20
+ */
21
+
22
+ +function(t){"use strict";function e(e){return this.each(function(){var n=t(this),i=n.data("bs.tooltip"),r="object"==typeof e&&e;(i||"destroy"!=e)&&(i||n.data("bs.tooltip",i=new o(this,r)),"string"==typeof e&&i[e]())})}var o=function(t,e){this.type=this.options=this.enabled=this.timeout=this.hoverState=this.$element=null,this.init("tooltip",t,e)};o.VERSION="3.2.0",o.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},o.prototype.init=function(e,o,n){this.enabled=!0,this.type=e,this.$element=t(o),this.options=this.getOptions(n),this.$viewport=this.options.viewport&&t(this.options.viewport.selector||this.options.viewport);for(var i=this.options.trigger.split(" "),r=i.length;r--;){var s=i[r];if("click"==s)this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this));else if("manual"!=s){var a="hover"==s?"mouseenter":"focusin",p="hover"==s?"mouseleave":"focusout";this.$element.on(a+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(p+"."+this.type,this.options.selector,t.proxy(this.leave,this))}}this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},o.prototype.getDefaults=function(){return o.DEFAULTS},o.prototype.getOptions=function(e){return e=t.extend({},this.getDefaults(),this.$element.data(),e),e.delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},o.prototype.getDelegateOptions=function(){var e={},o=this.getDefaults();return this._options&&t.each(this._options,function(t,n){o[t]!=n&&(e[t]=n)}),e},o.prototype.enter=function(e){var o=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return o||(o=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,o)),clearTimeout(o.timeout),o.hoverState="in",o.options.delay&&o.options.delay.show?(o.timeout=setTimeout(function(){"in"==o.hoverState&&o.show()},o.options.delay.show),void 0):o.show()},o.prototype.leave=function(e){var o=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return o||(o=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,o)),clearTimeout(o.timeout),o.hoverState="out",o.options.delay&&o.options.delay.hide?(o.timeout=setTimeout(function(){"out"==o.hoverState&&o.hide()},o.options.delay.hide),void 0):o.hide()},o.prototype.show=function(){var e=t.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(e);var o=t.contains(document.documentElement,this.$element[0]);if(e.isDefaultPrevented()||!o)return;var n=this,i=this.tip(),r=this.getUID(this.type);this.setContent(),i.attr("id",r),this.$element.attr("aria-describedby",r),this.options.animation&&i.addClass("fade");var s="function"==typeof this.options.placement?this.options.placement.call(this,i[0],this.$element[0]):this.options.placement,a=/\s?auto?\s?/i,p=a.test(s);p&&(s=s.replace(a,"")||"top"),i.detach().css({top:0,left:0,display:"block"}).addClass(s).data("bs."+this.type,this),this.options.container?i.appendTo(this.options.container):i.insertAfter(this.$element);var h=this.getPosition(),l=i[0].offsetWidth,u=i[0].offsetHeight;if(p){var c=s,d=this.$element.parent(),f=this.getPosition(d);s="bottom"==s&&h.top+h.height+u-f.scroll>f.height?"top":"top"==s&&h.top-f.scroll-u<0?"bottom":"right"==s&&h.right+l>f.width?"left":"left"==s&&h.left-l<f.left?"right":s,i.removeClass(c).addClass(s)}var m=this.getCalculatedOffset(s,h,l,u);this.applyPlacement(m,s);var v=function(){n.$element.trigger("shown.bs."+n.type),n.hoverState=null};t.support.transition&&this.$tip.hasClass("fade")?i.one("bsTransitionEnd",v).emulateTransitionEnd(150):v()}},o.prototype.applyPlacement=function(e,o){var n=this.tip(),i=n[0].offsetWidth,r=n[0].offsetHeight,s=parseInt(n.css("margin-top"),10),a=parseInt(n.css("margin-left"),10);isNaN(s)&&(s=0),isNaN(a)&&(a=0),e.top=e.top+s,e.left=e.left+a,t.offset.setOffset(n[0],t.extend({using:function(t){n.css({top:Math.round(t.top),left:Math.round(t.left)})}},e),0),n.addClass("in");var p=n[0].offsetWidth,h=n[0].offsetHeight;"top"==o&&h!=r&&(e.top=e.top+r-h);var l=this.getViewportAdjustedDelta(o,e,p,h);l.left?e.left+=l.left:e.top+=l.top;var u=l.left?2*l.left-i+p:2*l.top-r+h,c=l.left?"left":"top",d=l.left?"offsetWidth":"offsetHeight";n.offset(e),this.replaceArrow(u,n[0][d],c)},o.prototype.replaceArrow=function(t,e,o){this.arrow().css(o,t?50*(1-t/e)+"%":"")},o.prototype.setContent=function(){var t=this.tip(),e=this.getTitle();t.find(".tooltip-inner")[this.options.html?"html":"text"](e),t.removeClass("fade in top bottom left right")},o.prototype.hide=function(){function e(){"in"!=o.hoverState&&n.detach(),o.$element.trigger("hidden.bs."+o.type)}var o=this,n=this.tip(),i=t.Event("hide.bs."+this.type);return this.$element.removeAttr("aria-describedby"),this.$element.trigger(i),i.isDefaultPrevented()?void 0:(n.removeClass("in"),t.support.transition&&this.$tip.hasClass("fade")?n.one("bsTransitionEnd",e).emulateTransitionEnd(150):e(),this.hoverState=null,this)},o.prototype.fixTitle=function(){var t=this.$element;(t.attr("title")||"string"!=typeof t.attr("data-original-title"))&&t.attr("data-original-title",t.attr("title")||"").attr("title","")},o.prototype.hasContent=function(){return this.getTitle()},o.prototype.getPosition=function(e){e=e||this.$element;var o=e[0],n="BODY"==o.tagName;return t.extend({},"function"==typeof o.getBoundingClientRect?o.getBoundingClientRect():null,{scroll:n?document.documentElement.scrollTop||document.body.scrollTop:e.scrollTop(),width:n?t(window).width():e.outerWidth(),height:n?t(window).height():e.outerHeight()},n?{top:0,left:0}:e.offset())},o.prototype.getCalculatedOffset=function(t,e,o,n){return"bottom"==t?{top:e.top+e.height,left:e.left+e.width/2-o/2}:"top"==t?{top:e.top-n,left:e.left+e.width/2-o/2}:"left"==t?{top:e.top+e.height/2-n/2,left:e.left-o}:{top:e.top+e.height/2-n/2,left:e.left+e.width}},o.prototype.getViewportAdjustedDelta=function(t,e,o,n){var i={top:0,left:0};if(!this.$viewport)return i;var r=this.options.viewport&&this.options.viewport.padding||0,s=this.getPosition(this.$viewport);if(/right|left/.test(t)){var a=e.top-r-s.scroll,p=e.top+r-s.scroll+n;a<s.top?i.top=s.top-a:p>s.top+s.height&&(i.top=s.top+s.height-p)}else{var h=e.left-r,l=e.left+r+o;h<s.left?i.left=s.left-h:l>s.width&&(i.left=s.left+s.width-l)}return i},o.prototype.getTitle=function(){var t,e=this.$element,o=this.options;return t=e.attr("data-original-title")||("function"==typeof o.title?o.title.call(e[0]):o.title)},o.prototype.getUID=function(t){do t+=~~(1e6*Math.random());while(document.getElementById(t));return t},o.prototype.tip=function(){return this.$tip=this.$tip||t(this.options.template)},o.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},o.prototype.validate=function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},o.prototype.enable=function(){this.enabled=!0},o.prototype.disable=function(){this.enabled=!1},o.prototype.toggleEnabled=function(){this.enabled=!this.enabled},o.prototype.toggle=function(e){var o=this;e&&(o=t(e.currentTarget).data("bs."+this.type),o||(o=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,o))),o.tip().hasClass("in")?o.leave(o):o.enter(o)},o.prototype.destroy=function(){clearTimeout(this.timeout),this.hide().$element.off("."+this.type).removeData("bs."+this.type)};var n=t.fn.tooltip;t.fn.tooltip=e,t.fn.tooltip.Constructor=o,t.fn.tooltip.noConflict=function(){return t.fn.tooltip=n,this}}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var n=t(this),i=n.data("bs.popover"),r="object"==typeof e&&e;(i||"destroy"!=e)&&(i||n.data("bs.popover",i=new o(this,r)),"string"==typeof e&&i[e]())})}var o=function(t,e){this.init("popover",t,e)};if(!t.fn.tooltip)throw new Error("Popover requires tooltip.js");o.VERSION="3.2.0",o.DEFAULTS=t.extend({},t.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),o.prototype=t.extend({},t.fn.tooltip.Constructor.prototype),o.prototype.constructor=o,o.prototype.getDefaults=function(){return o.DEFAULTS},o.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),o=this.getContent();t.find(".popover-title")[this.options.html?"html":"text"](e),t.find(".popover-content").empty()[this.options.html?"string"==typeof o?"html":"append":"text"](o),t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},o.prototype.hasContent=function(){return this.getTitle()||this.getContent()},o.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},o.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},o.prototype.tip=function(){return this.$tip||(this.$tip=t(this.options.template)),this.$tip};var n=t.fn.popover;t.fn.popover=e,t.fn.popover.Constructor=o,t.fn.popover.noConflict=function(){return t.fn.popover=n,this}}(jQuery),function(t,e){var o,n;return n=e.document,o=function(){function o(o){var n;try{n=e.localStorage}catch(i){n=!1}this._options=t.extend({name:"tour",steps:[],container:"body",autoscroll:!0,keyboard:!0,storage:n,debug:!1,backdrop:!1,backdropPadding:0,redirect:!0,orphan:!1,duration:!1,delay:!1,basePath:"",template:'<div class="popover" role="tooltip"> <div class="arrow"></div> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation"> <div class="btn-group"> <button class="btn btn-sm btn-default" data-role="prev">&laquo; Prev</button> <button class="btn btn-sm btn-default" data-role="next">Next &raquo;</button> <button class="btn btn-sm btn-default" data-role="pause-resume" data-pause-text="Pause" data-resume-text="Resume">Pause</button> </div> <button class="btn btn-sm btn-default" data-role="end">End tour</button> </div> </div>',afterSetState:function(){},afterGetState:function(){},afterRemoveState:function(){},onStart:function(){},onEnd:function(){},onShow:function(){},onShown:function(){},onHide:function(){},onHidden:function(){},onNext:function(){},onPrev:function(){},onPause:function(){},onResume:function(){}},o),this._force=!1,this._inited=!1,this.backdrop={overlay:null,$element:null,$background:null,backgroundShown:!1,overlayElementShown:!1}}return o.prototype.addSteps=function(t){var e,o,n;for(o=0,n=t.length;n>o;o++)e=t[o],this.addStep(e);return this},o.prototype.addStep=function(t){return this._options.steps.push(t),this},o.prototype.getStep=function(e){return null!=this._options.steps[e]?t.extend({id:"step-"+e,path:"",placement:"right",title:"",content:"<p></p>",next:e===this._options.steps.length-1?-1:e+1,prev:e-1,animation:!0,container:this._options.container,autoscroll:this._options.autoscroll,backdrop:this._options.backdrop,backdropPadding:this._options.backdropPadding,redirect:this._options.redirect,orphan:this._options.orphan,duration:this._options.duration,delay:this._options.delay,template:this._options.template,onShow:this._options.onShow,onShown:this._options.onShown,onHide:this._options.onHide,onHidden:this._options.onHidden,onNext:this._options.onNext,onPrev:this._options.onPrev,onPause:this._options.onPause,onResume:this._options.onResume},this._options.steps[e]):void 0},o.prototype.init=function(t){return this._force=t,this.ended()?(this._debug("Tour ended, init prevented."),this):(this.setCurrentStep(),this._initMouseNavigation(),this._initKeyboardNavigation(),this._onResize(function(t){return function(){return t.showStep(t._current)}}(this)),null!==this._current&&this.showStep(this._current),this._inited=!0,this)},o.prototype.start=function(t){var e;return null==t&&(t=!1),this._inited||this.init(t),null===this._current&&(e=this._makePromise(null!=this._options.onStart?this._options.onStart(this):void 0),this._callOnPromiseDone(e,this.showStep,0)),this},o.prototype.next=function(){var t;return t=this.hideStep(this._current),this._callOnPromiseDone(t,this._showNextStep)},o.prototype.prev=function(){var t;return t=this.hideStep(this._current),this._callOnPromiseDone(t,this._showPrevStep)},o.prototype.goTo=function(t){var e;return e=this.hideStep(this._current),this._callOnPromiseDone(e,this.showStep,t)},o.prototype.end=function(){var o,i;return o=function(o){return function(){return t(n).off("click.tour-"+o._options.name),t(n).off("keyup.tour-"+o._options.name),t(e).off("resize.tour-"+o._options.name),o._setState("end","yes"),o._inited=!1,o._force=!1,o._clearTimer(),null!=o._options.onEnd?o._options.onEnd(o):void 0}}(this),i=this.hideStep(this._current),this._callOnPromiseDone(i,o)},o.prototype.ended=function(){return!this._force&&!!this._getState("end")},o.prototype.restart=function(){return this._removeState("current_step"),this._removeState("end"),this.start()},o.prototype.pause=function(){var t;return t=this.getStep(this._current),t&&t.duration?(this._paused=!0,this._duration-=(new Date).getTime()-this._start,e.clearTimeout(this._timer),this._debug("Paused/Stopped step "+(this._current+1)+" timer ("+this._duration+" remaining)."),null!=t.onPause?t.onPause(this,this._duration):void 0):this},o.prototype.resume=function(){var t;return t=this.getStep(this._current),t&&t.duration?(this._paused=!1,this._start=(new Date).getTime(),this._duration=this._duration||t.duration,this._timer=e.setTimeout(function(t){return function(){return t._isLast()?t.next():t.end()}}(this),this._duration),this._debug("Started step "+(this._current+1)+" timer with duration "+this._duration),null!=t.onResume&&this._duration!==t.duration?t.onResume(this,this._duration):void 0):this},o.prototype.hideStep=function(e){var o,n,i;return(i=this.getStep(e))?(this._clearTimer(),n=this._makePromise(null!=i.onHide?i.onHide(this,e):void 0),o=function(o){return function(){var n;return n=t(i.element),n.data("bs.popover")||n.data("popover")||(n=t("body")),n.popover("destroy").removeClass("tour-"+o._options.name+"-element tour-"+o._options.name+"-"+e+"-element"),i.reflex&&n.removeClass("tour-step-element-reflex").off(""+o._reflexEvent(i.reflex)+".tour-"+o._options.name),i.backdrop&&o._hideBackdrop(),null!=i.onHidden?i.onHidden(o):void 0}}(this),this._callOnPromiseDone(n,o),n):void 0},o.prototype.showStep=function(t){var o,i,r,s;return this.ended()?(this._debug("Tour ended, showStep prevented."),this):(s=this.getStep(t))?(r=t<this._current,o=this._makePromise(null!=s.onShow?s.onShow(this,t):void 0),i=function(e){return function(){var o,i,a;if(e.setCurrentStep(t),i=function(){switch({}.toString.call(s.path)){case"[object Function]":return s.path();case"[object String]":return this._options.basePath+s.path;default:return s.path}}.call(e),o=[n.location.pathname,n.location.hash].join(""),e._isRedirect(i,o))return e._redirect(s,i),void 0;if(e._isOrphan(s)){if(!s.orphan)return e._debug("Skip the orphan step "+(e._current+1)+".\nOrphan option is false and the element does not exist or is hidden."),r?e._showPrevStep():e._showNextStep(),void 0;e._debug("Show the orphan step "+(e._current+1)+". Orphans option is true.")}return s.backdrop&&e._showBackdrop(e._isOrphan(s)?void 0:s.element),a=function(){return e.getCurrentStep()===t?(null!=s.element&&s.backdrop&&e._showOverlayElement(s),e._showPopover(s,t),null!=s.onShown&&s.onShown(e),e._debug("Step "+(e._current+1)+" of "+e._options.steps.length)):void 0},s.autoscroll?e._scrollIntoView(s.element,a):a(),s.duration?e.resume():void 0}}(this),s.delay?(this._debug("Wait "+s.delay+" milliseconds to show the step "+(this._current+1)),e.setTimeout(function(t){return function(){return t._callOnPromiseDone(o,i)}}(this),s.delay)):this._callOnPromiseDone(o,i),o):void 0},o.prototype.getCurrentStep=function(){return this._current},o.prototype.setCurrentStep=function(t){return null!=t?(this._current=t,this._setState("current_step",t)):(this._current=this._getState("current_step"),this._current=null===this._current?null:parseInt(this._current,10)),this},o.prototype._setState=function(t,e){var o,n;if(this._options.storage){n=""+this._options.name+"_"+t;try{this._options.storage.setItem(n,e)}catch(i){o=i,o.code===DOMException.QUOTA_EXCEEDED_ERR&&this.debug("LocalStorage quota exceeded. State storage failed.")}return this._options.afterSetState(n,e)}return null==this._state&&(this._state={}),this._state[t]=e},o.prototype._removeState=function(t){var e;return this._options.storage?(e=""+this._options.name+"_"+t,this._options.storage.removeItem(e),this._options.afterRemoveState(e)):null!=this._state?delete this._state[t]:void 0},o.prototype._getState=function(t){var e,o;return this._options.storage?(e=""+this._options.name+"_"+t,o=this._options.storage.getItem(e)):null!=this._state&&(o=this._state[t]),(void 0===o||"null"===o)&&(o=null),this._options.afterGetState(t,o),o},o.prototype._showNextStep=function(){var t,e,o;return o=this.getStep(this._current),e=function(t){return function(){return t.showStep(o.next)}}(this),t=this._makePromise(null!=o.onNext?o.onNext(this):void 0),this._callOnPromiseDone(t,e)},o.prototype._showPrevStep=function(){var t,e,o;return o=this.getStep(this._current),e=function(t){return function(){return t.showStep(o.prev)}}(this),t=this._makePromise(null!=o.onPrev?o.onPrev(this):void 0),this._callOnPromiseDone(t,e)},o.prototype._debug=function(t){return this._options.debug?e.console.log("Bootstrap Tour '"+this._options.name+"' | "+t):void 0},o.prototype._isRedirect=function(t,e){return null!=t&&""!==t&&("[object RegExp]"==={}.toString.call(t)&&!t.test(e)||"[object String]"==={}.toString.call(t)&&t.replace(/\?.*$/,"").replace(/\/?$/,"")!==e.replace(/\/?$/,""))},o.prototype._redirect=function(e,o){return t.isFunction(e.redirect)?e.redirect.call(this,o):e.redirect===!0?(this._debug("Redirect to "+o),n.location.href=o):void 0},o.prototype._isOrphan=function(e){return null==e.element||!t(e.element).length||t(e.element).is(":hidden")&&"http://www.w3.org/2000/svg"!==t(e.element)[0].namespaceURI},o.prototype._isLast=function(){return this._current<this._options.steps.length-1},o.prototype._showPopover=function(e,o){var n,i,r,s;return t(".tour-"+this._options.name).remove(),s=t.extend({},this._options),r=this._isOrphan(e),e.template=this._template(e,o),r&&(e.element="body",e.placement="top"),n=t(e.element),n.addClass("tour-"+this._options.name+"-element tour-"+this._options.name+"-"+o+"-element"),e.options&&t.extend(s,e.options),e.reflex&&!r&&(n.addClass("tour-step-element-reflex"),n.off(""+this._reflexEvent(e.reflex)+".tour-"+this._options.name),n.on(""+this._reflexEvent(e.reflex)+".tour-"+this._options.name,function(t){return function(){return t._isLast()?t.next():t.end()}}(this))),n.popover({placement:e.placement,trigger:"manual",title:e.title,content:e.content,html:!0,animation:e.animation,container:e.container,template:e.template,selector:e.element}).popover("show"),i=n.data("bs.popover")?n.data("bs.popover").tip():n.data("popover").tip(),i.attr("id",e.id),this._reposition(i,e),r?this._center(i):void 0},o.prototype._template=function(e,o){var n,i,r,s;return s=t.isFunction(e.template)?t(e.template(o,e)):t(e.template),n=s.find(".popover-navigation"),r=n.find('[data-role="prev"]'),i=n.find('[data-role="next"]'),this._isOrphan(e)&&s.addClass("orphan"),s.addClass("tour-"+this._options.name+" tour-"+this._options.name+"-"+o),e.prev<0&&n.find('[data-role="prev"]').addClass("disabled"),e.next<0&&n.find('[data-role="next"]').addClass("disabled"),e.duration||n.find('[data-role="pause-resume"]').remove(),s.clone().wrap("<div>").parent().html()},o.prototype._reflexEvent=function(t){return"[object Boolean]"==={}.toString.call(t)?"click":t},o.prototype._reposition=function(e,o){var i,r,s,a,p,h,l;if(a=e[0].offsetWidth,r=e[0].offsetHeight,l=e.offset(),p=l.left,h=l.top,i=t(n).outerHeight()-l.top-e.outerHeight(),0>i&&(l.top=l.top+i),s=t("html").outerWidth()-l.left-e.outerWidth(),0>s&&(l.left=l.left+s),l.top<0&&(l.top=0),l.left<0&&(l.left=0),e.offset(l),"bottom"===o.placement||"top"===o.placement){if(p!==l.left)return this._replaceArrow(e,2*(l.left-p),a,"left")}else if(h!==l.top)return this._replaceArrow(e,2*(l.top-h),r,"top")},o.prototype._center=function(o){return o.css("top",t(e).outerHeight()/2-o.outerHeight()/2)},o.prototype._replaceArrow=function(t,e,o,n){return t.find(".arrow").css(n,e?50*(1-e/o)+"%":"")},o.prototype._scrollIntoView=function(o,n){var i,r,s,a,p,h;return i=t(o),i.length?(r=t(e),a=i.offset().top,h=r.height(),p=Math.max(0,a-h/2),this._debug("Scroll into view. ScrollTop: "+p+". Element offset: "+a+". Window height: "+h+"."),s=0,t("body, html").stop(!0,!0).animate({scrollTop:Math.ceil(p)},function(t){return function(){return 2===++s?(n(),t._debug("Scroll into view.\nAnimation end element offset: "+i.offset().top+".\nWindow height: "+r.height()+".")):void 0}}(this))):n()},o.prototype._onResize=function(o,n){return t(e).on("resize.tour-"+this._options.name,function(){return clearTimeout(n),n=setTimeout(o,100)})},o.prototype._initMouseNavigation=function(){var e;return e=this,t(n).off("click.tour-"+this._options.name,".popover.tour-"+this._options.name+" *[data-role='prev']").off("click.tour-"+this._options.name,".popover.tour-"+this._options.name+" *[data-role='next']").off("click.tour-"+this._options.name,".popover.tour-"+this._options.name+" *[data-role='end']").off("click.tour-"+this._options.name,".popover.tour-"+this._options.name+" *[data-role='pause-resume']").on("click.tour-"+this._options.name,".popover.tour-"+this._options.name+" *[data-role='next']",function(t){return function(e){return e.preventDefault(),t.next()}}(this)).on("click.tour-"+this._options.name,".popover.tour-"+this._options.name+" *[data-role='prev']",function(t){return function(e){return e.preventDefault(),t.prev()}}(this)).on("click.tour-"+this._options.name,".popover.tour-"+this._options.name+" *[data-role='end']",function(t){return function(e){return e.preventDefault(),t.end()}}(this)).on("click.tour-"+this._options.name,".popover.tour-"+this._options.name+" *[data-role='pause-resume']",function(o){var n;return o.preventDefault(),n=t(this),n.text(e._paused?n.data("pause-text"):n.data("resume-text")),e._paused?e.resume():e.pause()})},o.prototype._initKeyboardNavigation=function(){return this._options.keyboard?t(n).on("keyup.tour-"+this._options.name,function(t){return function(e){if(e.which)switch(e.which){case 39:return e.preventDefault(),t._isLast()?t.next():t.end();case 37:if(e.preventDefault(),t._current>0)return t.prev();break;case 27:return e.preventDefault(),t.end()}}}(this)):void 0},o.prototype._makePromise=function(e){return e&&t.isFunction(e.then)?e:null},o.prototype._callOnPromiseDone=function(t,e,o){return t?t.then(function(t){return function(){return e.call(t,o)}}(this)):e.call(this,o)},o.prototype._showBackdrop=function(){return this.backdrop.backgroundShown?void 0:(this.backdrop=t("<div>",{"class":"tour-backdrop"}),this.backdrop.backgroundShown=!0,t("body").append(this.backdrop))},o.prototype._hideBackdrop=function(){return this._hideOverlayElement(),this._hideBackground()},o.prototype._hideBackground=function(){return this.backdrop?(this.backdrop.remove(),this.backdrop.overlay=null,this.backdrop.backgroundShown=!1):void 0},o.prototype._showOverlayElement=function(e){var o,n;return o=t(e.element),o&&0!==o.length&&!this.backdrop.overlayElementShown?(this.backdrop.overlayElementShown=!0,this.backdrop.$element=o.addClass("tour-step-backdrop"),this.backdrop.$background=t("<div>",{"class":"tour-step-background"}),n={width:o.innerWidth(),height:o.innerHeight(),offset:o.offset()},this.backdrop.$background.appendTo("body"),e.backdropPadding&&(n=this._applyBackdropPadding(e.backdropPadding,n)),this.backdrop.$background.width(n.width).height(n.height).offset(n.offset)):void 0},o.prototype._hideOverlayElement=function(){return this.backdrop.overlayElementShown?(this.backdrop.$element.removeClass("tour-step-backdrop"),this.backdrop.$background.remove(),this.backdrop.$element=null,this.backdrop.$background=null,this.backdrop.overlayElementShown=!1):void 0},o.prototype._applyBackdropPadding=function(t,e){return"object"==typeof t?(null==t.top&&(t.top=0),null==t.right&&(t.right=0),null==t.bottom&&(t.bottom=0),null==t.left&&(t.left=0),e.offset.top=e.offset.top-t.top,e.offset.left=e.offset.left-t.left,e.width=e.width+t.left+t.right,e.height=e.height+t.top+t.bottom):(e.offset.top=e.offset.top-t,e.offset.left=e.offset.left-t,e.width=e.width+2*t,e.height=e.height+2*t),e},o.prototype._clearTimer=function(){return e.clearTimeout(this._timer),this._timer=null,this._duration=null},o}(),e.Tour=o}(jQuery,window);
js/fl-builder-admin-settings.js CHANGED
@@ -19,6 +19,7 @@
19
  this._bind();
20
  this._initNav();
21
  this._initOverrides();
 
22
  },
23
 
24
  /**
@@ -34,6 +35,10 @@
34
  $('input[name=fl-upload-icon]').on('click', FLBuilderAdminSettings._showIconUploader);
35
  $('.fl-delete-icon-set').on('click', FLBuilderAdminSettings._deleteCustomIconSet);
36
  $('#uninstall-form').on('submit', FLBuilderAdminSettings._uninstallFormSubmit);
 
 
 
 
37
  },
38
 
39
  /**
@@ -148,6 +153,28 @@
148
  }
149
  },
150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  /**
152
  * @method _showIconUploader
153
  * @private
19
  this._bind();
20
  this._initNav();
21
  this._initOverrides();
22
+ this._initHelpButtonSettings();
23
  },
24
 
25
  /**
35
  $('input[name=fl-upload-icon]').on('click', FLBuilderAdminSettings._showIconUploader);
36
  $('.fl-delete-icon-set').on('click', FLBuilderAdminSettings._deleteCustomIconSet);
37
  $('#uninstall-form').on('submit', FLBuilderAdminSettings._uninstallFormSubmit);
38
+ $('input[name=fl-help-button-enabled]').on('click', FLBuilderAdminSettings._initHelpButtonSettings);
39
+ $('input[name=fl-help-video-enabled]').on('click', FLBuilderAdminSettings._initHelpButtonSettings);
40
+ $('input[name=fl-knowledge-base-enabled]').on('click', FLBuilderAdminSettings._initHelpButtonSettings);
41
+ $('input[name=fl-forums-enabled]').on('click', FLBuilderAdminSettings._initHelpButtonSettings);
42
  },
43
 
44
  /**
153
  }
154
  },
155
 
156
+ /**
157
+ * @method _initHelpButtonSettings
158
+ * @private
159
+ */
160
+ _initHelpButtonSettings: function()
161
+ {
162
+ if ( 0 === $( '#fl-help-button-form' ).length ) {
163
+ return;
164
+ }
165
+
166
+ var enabled = $( 'input[name=fl-help-button-enabled]' )[ 0 ].checked,
167
+ tour = $('input[name=fl-help-tour-enabled]')[ 0 ].checked,
168
+ video = $('input[name=fl-help-video-enabled]')[ 0 ].checked,
169
+ kb = $('input[name=fl-knowledge-base-enabled]')[ 0 ].checked,
170
+ forums = $('input[name=fl-forums-enabled]')[ 0 ].checked;
171
+
172
+ $( '.fl-help-button-settings' ).toggle( enabled );
173
+ $( '.fl-help-video-embed' ).toggle( video );
174
+ $( '.fl-knowledge-base-url' ).toggle( kb );
175
+ $( '.fl-forums-url' ).toggle( forums );
176
+ },
177
+
178
  /**
179
  * @method _showIconUploader
180
  * @private
js/fl-builder-layout.js CHANGED
@@ -38,6 +38,11 @@
38
  if($('.fl-builder-edit').length === 0 && typeof jQuery.fn.waypoint !== 'undefined' && !FLBuilderLayout._isTouch()) {
39
  FLBuilderLayout._initModuleAnimations();
40
  }
 
 
 
 
 
41
  },
42
 
43
  _destroy: function()
@@ -103,6 +108,10 @@
103
 
104
  _resizeBgVideo: function()
105
  {
 
 
 
 
106
  var wrap = $(this),
107
  wrapHeight = wrap.outerHeight(),
108
  wrapWidth = wrap.outerWidth(),
@@ -163,6 +172,58 @@
163
  else {
164
  module.addClass('fl-animated');
165
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  }
167
  };
168
 
38
  if($('.fl-builder-edit').length === 0 && typeof jQuery.fn.waypoint !== 'undefined' && !FLBuilderLayout._isTouch()) {
39
  FLBuilderLayout._initModuleAnimations();
40
  }
41
+
42
+ // Init anchor links.
43
+ if ( $( '.fl-builder-content a' ).length > 0 ) {
44
+ FLBuilderLayout._initAnchorLinks();
45
+ }
46
  },
47
 
48
  _destroy: function()
108
 
109
  _resizeBgVideo: function()
110
  {
111
+ if ( 0 === $( this ).find( 'video' ).length ) {
112
+ return;
113
+ }
114
+
115
  var wrap = $(this),
116
  wrapHeight = wrap.outerHeight(),
117
  wrapWidth = wrap.outerWidth(),
172
  else {
173
  module.addClass('fl-animated');
174
  }
175
+ },
176
+
177
+ _initAnchorLinks: function()
178
+ {
179
+ $( '.fl-builder-content a' ).each( FLBuilderLayout._initAnchorLink );
180
+ },
181
+
182
+ _initAnchorLink: function()
183
+ {
184
+ var link = $( this ),
185
+ href = link.attr( 'href' ),
186
+ id = null,
187
+ element = null;
188
+
189
+ if ( 'undefined' != typeof href && href.indexOf( '#' ) > -1 ) {
190
+
191
+ try {
192
+
193
+ id = href.split( '#' ).pop();
194
+ element = $( '#' + id );
195
+
196
+ if ( element.length > 0 ) {
197
+ $( link ).on( 'click', FLBuilderLayout._scrollToElementOnLinkClick );
198
+ }
199
+ }
200
+ catch( e ) {}
201
+ }
202
+ },
203
+
204
+ _scrollToElementOnLinkClick: function( e )
205
+ {
206
+ var link = $( this ),
207
+ href = link.attr( 'href' ),
208
+ id = href.split( '#' ).pop(),
209
+ element = $( '#' + id ),
210
+ dest = 0,
211
+ win = $( window ),
212
+ doc = $( document );
213
+
214
+ if ( element.length > 0 ) {
215
+
216
+ if ( element.offset().top > doc.height() - win.height() ) {
217
+ dest = doc.height() - win.height();
218
+ }
219
+ else {
220
+ dest = element.offset().top - 100;
221
+ }
222
+
223
+ $( 'html, body' ).animate( { scrollTop: dest }, 1000, 'swing' );
224
+ }
225
+
226
+ e.preventDefault();
227
  }
228
  };
229
 
js/fl-builder-preview.js CHANGED
@@ -231,8 +231,7 @@ var FLBuilderPreview;
231
  this._xhr = FLBuilder.ajax({
232
  action : 'fl_builder_render_preview',
233
  node_id : nodeId,
234
- node_preview : settings,
235
- 'wp-minify-off' : '1'
236
  }, $.proxy(this._renderPreview, this));
237
  },
238
 
@@ -296,6 +295,9 @@ var FLBuilderPreview;
296
 
297
  // Remove the loading graphic.
298
  $('.fl-builder-preview-loader').remove();
 
 
 
299
  },
300
 
301
  /**
231
  this._xhr = FLBuilder.ajax({
232
  action : 'fl_builder_render_preview',
233
  node_id : nodeId,
234
+ node_preview : settings
 
235
  }, $.proxy(this._renderPreview, this));
236
  },
237
 
295
 
296
  // Remove the loading graphic.
297
  $('.fl-builder-preview-loader').remove();
298
+
299
+ // Fire the preview rendered event.
300
+ $( FLBuilder._contentClass ).trigger( 'fl-builder.preview-rendered' );
301
  },
302
 
303
  /**
js/fl-builder-tour.js ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ var FLBuilderTour;
2
+
3
+ (function( $ ) {
4
+
5
+ /**
6
+ * @class FLBuilderTour
7
+ * @static
8
+ */
9
+ FLBuilderTour = {
10
+
11
+ /**
12
+ * @property _tour
13
+ * @private
14
+ */
15
+ _tour: null,
16
+
17
+ /**
18
+ * @method start
19
+ */
20
+ start: function()
21
+ {
22
+ if ( ! FLBuilderTour._tour ) {
23
+ FLBuilderTour._tour = new Tour( FLBuilderTour._config() );
24
+ FLBuilderTour._tour.init();
25
+ }
26
+ else {
27
+ FLBuilderTour._tour.restart();
28
+ }
29
+
30
+ FLBuilderTour._tour.start();
31
+ },
32
+
33
+ /**
34
+ * @method _config
35
+ * @private
36
+ */
37
+ _config: function()
38
+ {
39
+ var config = {
40
+ storage : false,
41
+ onStart : FLBuilderTour._onStart,
42
+ onPrev : FLBuilderTour._onPrev,
43
+ onNext : FLBuilderTour._onNext,
44
+ onEnd : FLBuilderTour._onEnd,
45
+ template : '<div class="popover" role="tooltip"> <i class="fa fa-times" data-role="end"></i> <div class="arrow"></div> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation clearfix"> <button class="fl-builder-button fl-builder-button-primary fl-builder-tour-next" data-role="next">' + FLBuilderStrings.tourNext + '</button> </div> </div>',
46
+ steps : [
47
+ {
48
+ animation : false,
49
+ element : '.fl-builder-bar',
50
+ placement : 'bottom',
51
+ title : FLBuilderStrings.tourTemplatesTitle,
52
+ content : FLBuilderStrings.tourTemplates,
53
+ onShown : function() {
54
+ if ( 0 === $( '.fl-template-selector' ).length ) {
55
+ $( '.popover[class*=tour-]' ).css( 'visibility', 'hidden' );
56
+ FLBuilder._showTemplateSelector();
57
+ }
58
+ else {
59
+ FLBuilderTour._templateSelectorLoaded();
60
+ }
61
+ }
62
+ },
63
+ {
64
+ animation : false,
65
+ element : '#fl-builder-blocks-rows .fl-builder-blocks-section-title',
66
+ placement : 'left',
67
+ title : FLBuilderStrings.tourAddRowsTitle,
68
+ content : FLBuilderStrings.tourAddRows,
69
+ onShow : function() {
70
+ FLBuilderTour._dimSection( 'body' );
71
+ FLBuilderTour._dimSection( '.fl-builder-bar' );
72
+ FLBuilder._showPanel();
73
+ $( '.fl-template-selector .fl-builder-settings-cancel' ).trigger( 'click' );
74
+ $( '#fl-builder-blocks-rows .fl-builder-blocks-section-title' ).trigger( 'click' );
75
+ }
76
+ },
77
+ {
78
+ animation : false,
79
+ element : '#fl-builder-blocks-basic .fl-builder-blocks-section-title',
80
+ placement : 'left',
81
+ title : FLBuilderStrings.tourAddContentTitle,
82
+ content : FLBuilderStrings.tourAddContent,
83
+ onShow : function() {
84
+ FLBuilderTour._dimSection( 'body' );
85
+ FLBuilderTour._dimSection( '.fl-builder-bar' );
86
+ FLBuilder._showPanel();
87
+ $( '#fl-builder-blocks-basic .fl-builder-blocks-section-title' ).trigger( 'click' );
88
+ $( '.fl-row' ).eq( 0 ).trigger( 'mouseleave' );
89
+ $( '.fl-module' ).eq( 0 ).trigger( 'mouseleave' );
90
+ }
91
+ },
92
+ {
93
+ animation : false,
94
+ element : '.fl-row:first-of-type',
95
+ placement : 'top',
96
+ title : FLBuilderStrings.tourEditContentTitle,
97
+ content : FLBuilderStrings.tourEditContent,
98
+ onShow : function() {
99
+ FLBuilderTour._dimSection( '.fl-builder-bar' );
100
+ FLBuilder._closePanel();
101
+ $( '.fl-row' ).eq( 0 ).trigger( 'mouseenter' );
102
+ $( '.fl-module' ).eq( 0 ).trigger( 'mouseenter' );
103
+ }
104
+ },
105
+ {
106
+ animation : false,
107
+ element : '.fl-row:first-of-type .fl-module-overlay .fl-block-overlay-actions',
108
+ placement : 'top',
109
+ title : FLBuilderStrings.tourEditContentTitle,
110
+ content : FLBuilderStrings.tourEditContent2,
111
+ onShow : function() {
112
+ FLBuilderTour._dimSection( '.fl-builder-bar' );
113
+ FLBuilder._closePanel();
114
+ $( '.fl-row' ).eq( 0 ).trigger( 'mouseenter' );
115
+ $( '.fl-module' ).eq( 0 ).trigger( 'mouseenter' );
116
+ }
117
+ },
118
+ {
119
+ animation : false,
120
+ element : '.fl-builder-add-content-button',
121
+ placement : 'bottom',
122
+ title : FLBuilderStrings.tourAddContentButtonTitle,
123
+ content : FLBuilderStrings.tourAddContentButton,
124
+ onShow : function() {
125
+ FLBuilderTour._dimSection( 'body' );
126
+ $( '.fl-row' ).eq( 0 ).trigger( 'mouseleave' );
127
+ $( '.fl-module' ).eq( 0 ).trigger( 'mouseleave' );
128
+ }
129
+ },
130
+ {
131
+ animation : false,
132
+ element : '.fl-builder-templates-button',
133
+ placement : 'bottom',
134
+ title : FLBuilderStrings.tourTemplatesButtonTitle,
135
+ content : FLBuilderStrings.tourTemplatesButton,
136
+ onShow : function() {
137
+ FLBuilderTour._dimSection( 'body' );
138
+ }
139
+ },
140
+ {
141
+ animation : false,
142
+ element : '.fl-builder-tools-button',
143
+ placement : 'bottom',
144
+ title : FLBuilderStrings.tourToolsButtonTitle,
145
+ content : FLBuilderStrings.tourToolsButton,
146
+ onShow : function() {
147
+ FLBuilderTour._dimSection( 'body' );
148
+ }
149
+ },
150
+ {
151
+ animation : false,
152
+ element : '.fl-builder-done-button',
153
+ placement : 'bottom',
154
+ title : FLBuilderStrings.tourDoneButtonTitle,
155
+ content : FLBuilderStrings.tourDoneButton,
156
+ onShow : function() {
157
+ FLBuilderTour._dimSection( 'body' );
158
+ }
159
+ },
160
+ {
161
+ animation : false,
162
+ orphan : true,
163
+ backdrop : true,
164
+ title : FLBuilderStrings.tourFinishedTitle,
165
+ content : FLBuilderStrings.tourFinished,
166
+ template : '<div class="popover" role="tooltip"> <div class="arrow"></div> <i class="fa fa-times" data-role="end"></i> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation clearfix"> <button class="fl-builder-button fl-builder-button-primary fl-builder-tour-next" data-role="end">' + FLBuilderStrings.tourEnd + '</button> </div> </div>',
167
+ }
168
+ ]
169
+ };
170
+
171
+ // Remove the first step if no templates.
172
+ if( FLBuilderConfig.lite || 'disabled' == FLBuilderConfig.enabledTemplates ) {
173
+ config.steps.shift();
174
+ }
175
+
176
+ return config;
177
+ },
178
+
179
+ /**
180
+ * @method _onStart
181
+ * @private
182
+ */
183
+ _onStart: function()
184
+ {
185
+ var body = $( 'body' );
186
+
187
+ body.append( '<div class="fl-builder-tour-mask"></div>' );
188
+ body.on( 'fl-builder.template-selector-loaded', FLBuilderTour._templateSelectorLoaded );
189
+
190
+ if ( 0 === $( '.fl-row' ).length ) {
191
+ $( '.fl-builder-content' ).append( '<div class="fl-builder-tour-demo-content fl-row fl-row-fixed-width fl-row-bg-none"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-fixed-width fl-node-content"> <div class="fl-col-group"> <div class="fl-col" style="width:100%"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text" data-type="rich-text" data-name="Text Editor"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus pellentesque ut lorem non cursus. Sed mauris nunc, porttitor iaculis lorem a, sollicitudin lacinia sapien. Proin euismod orci lacus, et sollicitudin leo posuere ac. In hac habitasse platea dictumst. Maecenas elit magna, consequat in turpis suscipit, ultrices rhoncus arcu. Phasellus finibus sapien nec elit tempus venenatis. Maecenas tincidunt sapien non libero maximus, in aliquam felis tincidunt. Mauris mollis ultricies facilisis. Duis condimentum dignissim tortor sit amet facilisis. Aenean gravida lacus eu risus molestie egestas. Donec ut dolor dictum, fringilla metus malesuada, viverra nunc. Maecenas ut purus ac justo aliquet lacinia. Cras vestibulum elementum tincidunt. Maecenas mattis tortor neque, consectetur dignissim neque tempor nec.</p></div> </div> </div> </div> </div> </div> </div> </div> </div>' );
192
+ FLBuilder._setupEmptyLayout();
193
+ FLBuilder._highlightEmptyCols();
194
+ }
195
+ },
196
+
197
+ /**
198
+ * @method _onPrev
199
+ * @private
200
+ */
201
+ _onPrev: function()
202
+ {
203
+ $( '.fl-builder-tour-dimmed' ).remove();
204
+ },
205
+
206
+ /**
207
+ * @method _onNext
208
+ * @private
209
+ */
210
+ _onNext: function()
211
+ {
212
+ $( '.fl-builder-tour-dimmed' ).remove();
213
+ },
214
+
215
+ /**
216
+ * @method _onEnd
217
+ * @private
218
+ */
219
+ _onEnd: function()
220
+ {
221
+ $( 'body' ).off( 'fl-builder.template-selector-loaded' );
222
+ $( '.fl-builder-tour-mask' ).remove();
223
+ $( '.fl-builder-tour-dimmed' ).remove();
224
+ $( '.fl-builder-tour-demo-content' ).remove();
225
+
226
+ FLBuilder._setupEmptyLayout();
227
+ FLBuilder._highlightEmptyCols();
228
+ FLBuilder._showPanel();
229
+ FLBuilder._initTemplateSelector();
230
+ },
231
+
232
+ /**
233
+ * @method _dimSection
234
+ * @private
235
+ */
236
+ _dimSection: function( selector )
237
+ {
238
+ $( selector ).find( '.fl-builder-tour-dimmed' ).remove();
239
+ $( selector ).append( '<div class="fl-builder-tour-dimmed"></div>' );
240
+ },
241
+
242
+ /**
243
+ * @method _templateSelectorLoaded
244
+ * @private
245
+ */
246
+ _templateSelectorLoaded: function()
247
+ {
248
+ var header = $( '.fl-builder-settings-lightbox .fl-lightbox-header' ),
249
+ height = header.height(),
250
+ top = header.offset().top + 75;
251
+
252
+ $( '.popover[class*=tour-]' ).css({
253
+ top: ( top + height) + 'px',
254
+ visibility: 'visible'
255
+ });
256
+ }
257
+ };
258
+
259
+ })( jQuery );
js/fl-builder.js CHANGED
@@ -156,12 +156,12 @@ var FLBuilder;
156
  FLBuilder._initScrollbars();
157
  FLBuilder._initLightboxes();
158
  FLBuilder._initSortables();
159
- FLBuilder._initTemplateSelector();
160
- FLBuilder._initTemplateSettings();
161
  FLBuilder._bindEvents();
162
  FLBuilder._bindOverlayEvents();
163
  FLBuilder._setupEmptyLayout();
164
  FLBuilder._highlightEmptyCols();
 
165
  },
166
 
167
  /**
@@ -384,6 +384,7 @@ var FLBuilder;
384
  $('.fl-builder-add-content-button').on('click', FLBuilder._showPanel);
385
  $('.fl-builder-templates-button').on('click', FLBuilder._changeTemplateClicked);
386
  $('.fl-builder-upgrade-button').on('click', FLBuilder._upgradeClicked);
 
387
 
388
  /* Panel */
389
  $('.fl-builder-panel-actions .fl-builder-panel-close').on('click', FLBuilder._closePanel);
@@ -423,6 +424,16 @@ var FLBuilder;
423
  $('body').delegate('.fl-builder-cancel-edit-template-button', 'click', FLBuilder._cancelEditUserTemplate);
424
  $('body').delegate('.fl-builder-save-edit-template-button', 'click', FLBuilder._saveEditUserTemplate);
425
 
 
 
 
 
 
 
 
 
 
 
426
  /* Rows */
427
  $('body').delegate('.fl-row-overlay .fl-block-remove', 'click', FLBuilder._deleteRowClicked);
428
  $('body').delegate('.fl-row-overlay .fl-block-copy', 'click', FLBuilder._rowCopyClicked);
@@ -589,29 +600,9 @@ var FLBuilder;
589
  $('#tiptip_holder').stop().remove();
590
  },
591
 
592
- /* Panel
593
  ----------------------------------------------------------*/
594
 
595
- /**
596
- * @method _closePanel
597
- * @private
598
- */
599
- _closePanel: function()
600
- {
601
- $('.fl-builder-panel').stop(true, true).animate({ right: '-350px' }, 500, function(){ $(this).hide(); });
602
- $('.fl-builder-bar .fl-builder-add-content-button').stop(true, true).fadeIn();
603
- },
604
-
605
- /**
606
- * @method _showPanel
607
- * @private
608
- */
609
- _showPanel: function()
610
- {
611
- $('.fl-builder-bar .fl-builder-add-content-button').stop(true, true).fadeOut();
612
- $('.fl-builder-panel').stop(true, true).show().animate({ right: '0' }, 500);
613
- },
614
-
615
  /**
616
  * @method _toolsClicked
617
  * @private
@@ -632,7 +623,7 @@ var FLBuilder;
632
  }
633
 
634
  // Template buttons
635
- if(!lite && postType != 'fl-builder-template' && (enabledTemplates == 'user' || enabledTemplates == 'enabled')) {
636
 
637
  buttons['save-user-template'] = FLBuilderStrings.saveTemplate;
638
 
@@ -677,6 +668,57 @@ var FLBuilder;
677
  window.open(FLBuilderConfig.upgradeUrl);
678
  },
679
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
680
  /**
681
  * @method _blockSectionTitleClicked
682
  * @private
@@ -922,14 +964,24 @@ var FLBuilder;
922
  */
923
  _showTemplateSelector: function()
924
  {
925
- if(!FLBuilderConfig.lite) {
926
-
927
- FLBuilder._showLightbox(false);
 
 
 
 
 
 
 
 
 
 
 
928
 
929
- FLBuilder.ajax({
930
- action: 'fl_builder_render_template_selector'
931
- }, FLBuilder._templateSelectorLoaded);
932
- }
933
  },
934
 
935
  /**
@@ -942,7 +994,9 @@ var FLBuilder;
942
 
943
  if($('.fl-user-template').length == 0) {
944
  $('.fl-user-templates-message').show();
945
- }
 
 
946
  },
947
 
948
  /**
@@ -1229,20 +1283,113 @@ var FLBuilder;
1229
  window.close();
1230
  },
1231
 
1232
- /* Template Settings
1233
  ----------------------------------------------------------*/
1234
 
1235
  /**
1236
- * @method _initTemplateSettings
1237
  * @private
1238
  */
1239
- _initTemplateSettings: function()
1240
  {
1241
  if(FLBuilder._templateSettingsEnabled) {
1242
  FLBuilder._bindTemplateSettings();
1243
  }
1244
  },
1245
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1246
  /* Layout
1247
  ----------------------------------------------------------*/
1248
 
@@ -1273,8 +1420,7 @@ var FLBuilder;
1273
  FLBuilder.showAjaxLoader();
1274
 
1275
  FLBuilder.ajax({
1276
- action: 'fl_builder_render_layout',
1277
- 'wp-minify-off': '1'
1278
  }, FLBuilder._renderLayout);
1279
  },
1280
 
@@ -1667,12 +1813,24 @@ var FLBuilder;
1667
  */
1668
  _rowMouseenter: function()
1669
  {
1670
- var row = $(this);
 
 
 
1671
 
1672
  if(!row.hasClass('fl-block-overlay-active')) {
 
1673
  row.addClass('fl-block-overlay-active');
1674
- row.append('<div class="fl-row-overlay fl-block-overlay" data-node="'+ row.attr('data-node') +'"><div class="fl-block-overlay-header"><div class="fl-block-overlay-actions"><div class="fl-block-overlay-title">'+ FLBuilderStrings.row +'</div><i class="fl-block-move fa fa-arrows fl-tip" title="' + FLBuilderStrings.move + '"></i><i class="fl-block-settings fa fa-wrench fl-tip" title="' + FLBuilderStrings.rowSettings + '"></i><i class="fl-block-copy fa fa-copy fl-tip" title="' + FLBuilderStrings.duplicate + '"></i><i class="fl-block-remove fa fa-times fl-tip" title="' + FLBuilderStrings.remove + '"></i></div><div class="fl-clear"></div></div></div>');
1675
  FLBuilder._initTipTips();
 
 
 
 
 
 
 
 
1676
  }
1677
  },
1678
 
@@ -2692,8 +2850,7 @@ var FLBuilder;
2692
  action : 'fl_builder_save',
2693
  method : 'save_settings',
2694
  node_id : nodeId,
2695
- settings : settings,
2696
- 'wp-minify-off' : '1'
2697
  }, FLBuilder._saveSettingsComplete);
2698
 
2699
  // Close the lightbox.
@@ -3746,7 +3903,7 @@ var FLBuilder;
3746
  */
3747
  _ajaxUrl: function(params)
3748
  {
3749
- var url = FLBuilderConfig.ajaxUrl,
3750
  param = null;
3751
 
3752
  if(typeof params !== 'undefined') {
156
  FLBuilder._initScrollbars();
157
  FLBuilder._initLightboxes();
158
  FLBuilder._initSortables();
159
+ FLBuilder._initCoreTemplateSettings();
 
160
  FLBuilder._bindEvents();
161
  FLBuilder._bindOverlayEvents();
162
  FLBuilder._setupEmptyLayout();
163
  FLBuilder._highlightEmptyCols();
164
+ FLBuilder._showTourOrTemplates();
165
  },
166
 
167
  /**
384
  $('.fl-builder-add-content-button').on('click', FLBuilder._showPanel);
385
  $('.fl-builder-templates-button').on('click', FLBuilder._changeTemplateClicked);
386
  $('.fl-builder-upgrade-button').on('click', FLBuilder._upgradeClicked);
387
+ $('.fl-builder-help-button').on('click', FLBuilder._helpButtonClicked);
388
 
389
  /* Panel */
390
  $('.fl-builder-panel-actions .fl-builder-panel-close').on('click', FLBuilder._closePanel);
424
  $('body').delegate('.fl-builder-cancel-edit-template-button', 'click', FLBuilder._cancelEditUserTemplate);
425
  $('body').delegate('.fl-builder-save-edit-template-button', 'click', FLBuilder._saveEditUserTemplate);
426
 
427
+ /* Help Actions */
428
+ $('body').delegate('.fl-builder-help-tour-button', 'click', FLBuilder._startHelpTour);
429
+ $('body').delegate('.fl-builder-help-video-button', 'click', FLBuilder._watchVideoClicked);
430
+ $('body').delegate('.fl-builder-knowledge-base-button', 'click', FLBuilder._viewKnowledgeBaseClicked);
431
+ $('body').delegate('.fl-builder-forums-button', 'click', FLBuilder._visitForumsClicked);
432
+
433
+ /* Welcome Actions */
434
+ $('body').delegate('.fl-builder-no-tour-button', 'click', FLBuilder._noTourButtonClicked);
435
+ $('body').delegate('.fl-builder-yes-tour-button', 'click', FLBuilder._yesTourButtonClicked);
436
+
437
  /* Rows */
438
  $('body').delegate('.fl-row-overlay .fl-block-remove', 'click', FLBuilder._deleteRowClicked);
439
  $('body').delegate('.fl-row-overlay .fl-block-copy', 'click', FLBuilder._rowCopyClicked);
600
  $('#tiptip_holder').stop().remove();
601
  },
602
 
603
+ /* Bar
604
  ----------------------------------------------------------*/
605
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
606
  /**
607
  * @method _toolsClicked
608
  * @private
623
  }
624
 
625
  // Template buttons
626
+ if(!lite && postType != 'fl-builder-template' && enabledTemplates != 'disabled') {
627
 
628
  buttons['save-user-template'] = FLBuilderStrings.saveTemplate;
629
 
668
  window.open(FLBuilderConfig.upgradeUrl);
669
  },
670
 
671
+ /**
672
+ * @method _helpButtonClicked
673
+ * @private
674
+ */
675
+ _helpButtonClicked: function()
676
+ {
677
+ var buttons = {};
678
+
679
+ if ( FLBuilderConfig.help.tour ) {
680
+ buttons['help-tour'] = FLBuilderStrings.takeHelpTour;
681
+ }
682
+ if ( FLBuilderConfig.help.video ) {
683
+ buttons['help-video'] = FLBuilderStrings.watchHelpVideo;
684
+ }
685
+ if ( FLBuilderConfig.help.knowledge_base ) {
686
+ buttons['knowledge-base'] = FLBuilderStrings.viewKnowledgeBase;
687
+ }
688
+ if ( FLBuilderConfig.help.forums ) {
689
+ buttons['forums'] = FLBuilderStrings.visitForums;
690
+ }
691
+
692
+ FLBuilder._showActionsLightbox({
693
+ 'className': 'fl-builder-help-actions',
694
+ 'title': FLBuilderStrings.actionsLightboxTitle,
695
+ 'buttons': buttons
696
+ });
697
+ },
698
+
699
+ /* Panel
700
+ ----------------------------------------------------------*/
701
+
702
+ /**
703
+ * @method _closePanel
704
+ * @private
705
+ */
706
+ _closePanel: function()
707
+ {
708
+ $('.fl-builder-panel').stop(true, true).animate({ right: '-350px' }, 500, function(){ $(this).hide(); });
709
+ $('.fl-builder-bar .fl-builder-add-content-button').stop(true, true).fadeIn();
710
+ },
711
+
712
+ /**
713
+ * @method _showPanel
714
+ * @private
715
+ */
716
+ _showPanel: function()
717
+ {
718
+ $('.fl-builder-bar .fl-builder-add-content-button').stop(true, true).fadeOut();
719
+ $('.fl-builder-panel').stop(true, true).show().animate({ right: '0' }, 500);
720
+ },
721
+
722
  /**
723
  * @method _blockSectionTitleClicked
724
  * @private
964
  */
965
  _showTemplateSelector: function()
966
  {
967
+ if ( FLBuilderConfig.simpleUi ) {
968
+ return;
969
+ }
970
+ if ( 'fl-builder-template' == FLBuilderConfig.postType ) {
971
+ return;
972
+ }
973
+ if ( 'disabled' == FLBuilderConfig.enabledTemplates ) {
974
+ return;
975
+ }
976
+ if ( FLBuilderConfig.lite ) {
977
+ return;
978
+ }
979
+
980
+ FLBuilder._showLightbox( false );
981
 
982
+ FLBuilder.ajax({
983
+ action: 'fl_builder_render_template_selector'
984
+ }, FLBuilder._templateSelectorLoaded );
 
985
  },
986
 
987
  /**
994
 
995
  if($('.fl-user-template').length == 0) {
996
  $('.fl-user-templates-message').show();
997
+ }
998
+
999
+ $( 'body' ).trigger( 'fl-builder.template-selector-loaded' );
1000
  },
1001
 
1002
  /**
1283
  window.close();
1284
  },
1285
 
1286
+ /* Core Template Settings
1287
  ----------------------------------------------------------*/
1288
 
1289
  /**
1290
+ * @method _initCoreTemplateSettings
1291
  * @private
1292
  */
1293
+ _initCoreTemplateSettings: function()
1294
  {
1295
  if(FLBuilder._templateSettingsEnabled) {
1296
  FLBuilder._bindTemplateSettings();
1297
  }
1298
  },
1299
 
1300
+ /* Help Actions
1301
+ ----------------------------------------------------------*/
1302
+
1303
+ /**
1304
+ * @method _watchVideoClicked
1305
+ * @private
1306
+ */
1307
+ _watchVideoClicked: function()
1308
+ {
1309
+ FLBuilder._actionsLightbox.close();
1310
+ FLBuilder._lightbox.open('<div class="fl-lightbox-header"><h1>' + FLBuilderStrings.gettingStartedVideo + '</h1></div><div class="fl-builder-getting-started-video">' + FLBuilderConfig.help.video_embed + '</div><div class="fl-lightbox-footer"><span class="fl-builder-settings-cancel fl-builder-button fl-builder-button-large fl-builder-button-primary" href="javascript:void(0);">' + FLBuilderStrings.done + '</span></div>');
1311
+ },
1312
+
1313
+ /**
1314
+ * @method _viewKnowledgeBaseClicked
1315
+ * @private
1316
+ */
1317
+ _viewKnowledgeBaseClicked: function()
1318
+ {
1319
+ FLBuilder._actionsLightbox.close();
1320
+
1321
+ window.open( FLBuilderConfig.help.knowledge_base_url );
1322
+ },
1323
+
1324
+ /**
1325
+ * @method _visitForumsClicked
1326
+ * @private
1327
+ */
1328
+ _visitForumsClicked: function()
1329
+ {
1330
+ FLBuilder._actionsLightbox.close();
1331
+
1332
+ window.open( FLBuilderConfig.help.forums_url );
1333
+ },
1334
+
1335
+ /* Help Tour
1336
+ ----------------------------------------------------------*/
1337
+
1338
+ /**
1339
+ * @method _showTourOrTemplates
1340
+ * @private
1341
+ */
1342
+ _showTourOrTemplates: function()
1343
+ {
1344
+ if ( ! FLBuilderConfig.simpleUi && 'fl-builder-template' != FLBuilderConfig.postType ) {
1345
+ if ( FLBuilderConfig.help.tour && FLBuilderConfig.newUser ) {
1346
+ FLBuilder._showTourLightbox();
1347
+ }
1348
+ else {
1349
+ FLBuilder._initTemplateSelector();
1350
+ }
1351
+ }
1352
+ },
1353
+
1354
+ /**
1355
+ * @method _showTourLightbox
1356
+ * @private
1357
+ */
1358
+ _showTourLightbox: function()
1359
+ {
1360
+ FLBuilder._actionsLightbox.open('<div class="fl-builder-actions fl-builder-tour-actions"><span class="fl-builder-actions-title">'+ FLBuilderStrings.welcomeMessage +'</span><span class="fl-builder-no-tour-button fl-builder-button fl-builder-button-large">'+ FLBuilderStrings.noThanks +'</span><span class="fl-builder-yes-tour-button fl-builder-button fl-builder-button-primary fl-builder-button-large">'+ FLBuilderStrings.yesPlease +'</span></div>');
1361
+ },
1362
+
1363
+ /**
1364
+ * @method _noTourButtonClicked
1365
+ * @private
1366
+ */
1367
+ _noTourButtonClicked: function()
1368
+ {
1369
+ FLBuilder._actionsLightbox.close();
1370
+ FLBuilder._initTemplateSelector();
1371
+ },
1372
+
1373
+ /**
1374
+ * @method _yesTourButtonClicked
1375
+ * @private
1376
+ */
1377
+ _yesTourButtonClicked: function()
1378
+ {
1379
+ FLBuilder._actionsLightbox.close();
1380
+ FLBuilderTour.start();
1381
+ },
1382
+
1383
+ /**
1384
+ * @method _startHelpTour
1385
+ * @private
1386
+ */
1387
+ _startHelpTour: function()
1388
+ {
1389
+ FLBuilder._actionsLightbox.close();
1390
+ FLBuilderTour.start();
1391
+ },
1392
+
1393
  /* Layout
1394
  ----------------------------------------------------------*/
1395
 
1420
  FLBuilder.showAjaxLoader();
1421
 
1422
  FLBuilder.ajax({
1423
+ action: 'fl_builder_render_layout'
 
1424
  }, FLBuilder._renderLayout);
1425
  },
1426
 
1813
  */
1814
  _rowMouseenter: function()
1815
  {
1816
+ var row = $( this ),
1817
+ rowContent = $( this ).find( '.fl-row-content-wrap' ),
1818
+ overlay = null,
1819
+ offset = null;
1820
 
1821
  if(!row.hasClass('fl-block-overlay-active')) {
1822
+
1823
  row.addClass('fl-block-overlay-active');
1824
+ rowContent.append('<div class="fl-row-overlay fl-block-overlay" data-node="'+ row.attr('data-node') +'"><div class="fl-block-overlay-header"><div class="fl-block-overlay-actions"><div class="fl-block-overlay-title">'+ FLBuilderStrings.row +'</div><i class="fl-block-move fa fa-arrows fl-tip" title="' + FLBuilderStrings.move + '"></i><i class="fl-block-settings fa fa-wrench fl-tip" title="' + FLBuilderStrings.rowSettings + '"></i><i class="fl-block-copy fa fa-copy fl-tip" title="' + FLBuilderStrings.duplicate + '"></i><i class="fl-block-remove fa fa-times fl-tip" title="' + FLBuilderStrings.remove + '"></i></div><div class="fl-clear"></div></div></div>');
1825
  FLBuilder._initTipTips();
1826
+
1827
+ // Put the actions header on the bottom if it's hidden.
1828
+ overlay = row.find( '.fl-row-overlay' );
1829
+ offset = overlay.offset();
1830
+
1831
+ if ( offset.top < 43 ) {
1832
+ overlay.addClass( 'fl-row-overlay-header-bottom' );
1833
+ }
1834
  }
1835
  },
1836
 
2850
  action : 'fl_builder_save',
2851
  method : 'save_settings',
2852
  node_id : nodeId,
2853
+ settings : settings
 
2854
  }, FLBuilder._saveSettingsComplete);
2855
 
2856
  // Close the lightbox.
3903
  */
3904
  _ajaxUrl: function(params)
3905
  {
3906
+ var url = window.location.href.split( '#' ).shift(),
3907
  param = null;
3908
 
3909
  if(typeof params !== 'undefined') {
languages/ar.mo ADDED
Binary file
languages/ar.po ADDED
@@ -0,0 +1,3474 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "POT-Creation-Date: 2015-01-26 09:21-0800\n"
5
+ "PO-Revision-Date: 2015-03-01 16:52-0800\n"
6
+ "Last-Translator: WebMan - Oliver Juhas <webmandesigneu@gmail.com>\n"
7
+ "Language-Team: WebMan Design <webmandesigneu@gmail.com>\n"
8
+ "Language: ar\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.4\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: classes/class-fl-builder-admin.php:39
22
+ #, php-format
23
+ msgid ""
24
+ "This version of the <strong>Page Builder</strong> plugin is not compatible with "
25
+ "WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version of this "
26
+ "plugin."
27
+ msgstr ""
28
+ "هذا الإصدار من <strong>منشىء الصفحات</strong> غير متوافق مع ووردبريس متعدد "
29
+ "المواقع . <a%s>الرجاء الترقية</a> إلى إصدار متعدد المواقع من هذه الإضافة ."
30
+
31
+ #: classes/class-fl-builder-admin.php:49
32
+ msgid ""
33
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
34
+ "greater. Please update WordPress before activating the plugin."
35
+ msgstr ""
36
+ "و <strong>اضافة منشىء الصفحات </strong> تتطلب إصدار ووردبريس 3.5 أو أحدث . من "
37
+ "فضلك قم بتحديث ووردبريس قبل تفعيل الإضافة ."
38
+
39
+ #: classes/class-fl-builder-admin.php:90
40
+ #, php-format
41
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
42
+ msgstr "تم تفعيل منشىء الصحفات! <a%s>إضغط هنا</a> لتمكين التحديثات النهائية ."
43
+
44
+ #: classes/class-fl-builder-admin.php:184
45
+ msgctxt "Plugin action link label."
46
+ msgid "Upgrade"
47
+ msgstr "تحديث"
48
+
49
+ #: classes/class-fl-builder-admin.php:197 classes/class-fl-builder-model.php:2435
50
+ msgid "Page Builder"
51
+ msgstr "منشىء الصفحات"
52
+
53
+ #: classes/class-fl-builder-model.php:1852
54
+ #, php-format
55
+ msgctxt "%s stands for post/page title."
56
+ msgid "Copy of %s"
57
+ msgstr "نسخة من %s"
58
+
59
+ #: classes/class-fl-builder-photo.php:75
60
+ msgctxt "Image size."
61
+ msgid "Full Size"
62
+ msgstr "الحجم الكامل"
63
+
64
+ #: classes/class-fl-builder-photo.php:76
65
+ msgctxt "Image size."
66
+ msgid "Large"
67
+ msgstr "كبير "
68
+
69
+ #: classes/class-fl-builder-photo.php:77
70
+ msgctxt "Image size."
71
+ msgid "Medium"
72
+ msgstr "متوسط "
73
+
74
+ #: classes/class-fl-builder-photo.php:78
75
+ msgctxt "Image size."
76
+ msgid "Thumbnail"
77
+ msgstr "صورة مصغرة "
78
+
79
+ #: classes/class-fl-builder-templates.php:28
80
+ msgid "Page Builder Templates"
81
+ msgstr "قالب منشىء الصفحات "
82
+
83
+ #: classes/class-fl-builder.php:699
84
+ #, php-format
85
+ msgctxt "Field name to add."
86
+ msgid "Add %s"
87
+ msgstr "%s أضف"
88
+
89
+ #: classes/class-fl-builder.php:762 classes/class-fl-builder.php:764
90
+ msgctxt "Custom post type label."
91
+ msgid "Layout Templates"
92
+ msgstr "تخطيط القوالب "
93
+
94
+ #: classes/class-fl-builder.php:763 classes/class-fl-builder.php:765
95
+ msgctxt "Custom post type label."
96
+ msgid "Layout Template"
97
+ msgstr "تخطيط قالب "
98
+
99
+ #: classes/class-fl-builder.php:766
100
+ msgctxt "Custom post type label."
101
+ msgid "Add New"
102
+ msgstr "أضف جديد "
103
+
104
+ #: classes/class-fl-builder.php:767
105
+ msgctxt "Custom post type label."
106
+ msgid "Add New Layout Template"
107
+ msgstr "أضف تخطيط قالب جديد "
108
+
109
+ #: classes/class-fl-builder.php:768
110
+ msgctxt "Custom post type label."
111
+ msgid "New Layout Template"
112
+ msgstr "تخطيط قالب جديد "
113
+
114
+ #: classes/class-fl-builder.php:769
115
+ msgctxt "Custom post type label."
116
+ msgid "Edit Layout Template"
117
+ msgstr "تحرير تخطيط قالب "
118
+
119
+ #: classes/class-fl-builder.php:770
120
+ msgctxt "Custom post type label."
121
+ msgid "View Layout Template"
122
+ msgstr "عرض تخطيط قالب "
123
+
124
+ #: classes/class-fl-builder.php:771
125
+ msgctxt "Custom post type label."
126
+ msgid "All Layout Templates"
127
+ msgstr "جميع تخطيط القوالب "
128
+
129
+ #: classes/class-fl-builder.php:772
130
+ msgctxt "Custom post type label."
131
+ msgid "Search Layout Templates"
132
+ msgstr "بحث تخطيط القوالب "
133
+
134
+ #: classes/class-fl-builder.php:773
135
+ msgctxt "Custom post type label."
136
+ msgid "Parent Layout Templates:"
137
+ msgstr "تخطيط القوالب الأم: "
138
+
139
+ #: classes/class-fl-builder.php:774
140
+ msgctxt "Custom post type label."
141
+ msgid "No layout templates found."
142
+ msgstr "لايوجد تخطيط القوالب "
143
+
144
+ #: classes/class-fl-builder.php:775
145
+ msgctxt "Custom post type label."
146
+ msgid "No layout templates found in Trash."
147
+ msgstr "لايوجد تخطيط قوالب فى سلة المهملات "
148
+
149
+ #: classes/class-fl-builder.php:1113 includes/js-config.php:58
150
+ #, php-format
151
+ msgctxt "%s stands for module name."
152
+ msgid "%s Settings"
153
+ msgstr "%s إعدادات "
154
+
155
+ #: includes/admin-branding.php:3 includes/admin-settings.php:36
156
+ #: includes/multisite-settings.php:23
157
+ msgid "Branding"
158
+ msgstr "العلامات التجارية "
159
+
160
+ #: includes/admin-branding.php:11
161
+ msgid "White label the page builder by entering a custom name below."
162
+ msgstr "ملصق أبيض من منشىء الصفحات عن طريق ادخال إسم مخصص أدناه. "
163
+
164
+ #: includes/admin-branding.php:14
165
+ msgid ""
166
+ "Additionally, you may also add a custom icon by entering the URL of an image "
167
+ "below. Leave the field blank if you do not wish to use an icon."
168
+ msgstr ""
169
+ "بالإضافة الى ذلك ، يمكنك إضافة ايكونة خاصة بك عن طريق اضافة رابط الصورة أدناه , "
170
+ "أترك الحقل فارغ اذا كنت لاترغب بإضافة أيكونة. "
171
+
172
+ #: includes/admin-branding.php:18
173
+ msgid "Save Branding"
174
+ msgstr "حفظ العلامات التجارية "
175
+
176
+ #: includes/admin-edit-template.php:3
177
+ msgid "Edit Template"
178
+ msgstr "تحرير القالب "
179
+
180
+ #: includes/admin-edit-template.php:8
181
+ msgctxt "Template edit form field label. Template name."
182
+ msgid "Name"
183
+ msgstr "الإسم "
184
+
185
+ #: includes/admin-edit-template.php:12 modules/callout/callout.php:303
186
+ #: modules/post-grid/post-grid.php:113
187
+ msgid "Image"
188
+ msgstr "صورة "
189
+
190
+ #: includes/admin-edit-template.php:16 includes/row-settings.php:155
191
+ #: includes/template-settings.php:23 modules/callout/callout.php:351
192
+ #: modules/callout/callout.php:371 modules/content-slider/content-slider.php:466
193
+ #: modules/post-grid/post-grid.php:127
194
+ msgid "Position"
195
+ msgstr "تموضع "
196
+
197
+ #: includes/admin-edit-template.php:20 includes/template-settings.php:28
198
+ msgctxt "Template edit form field label. Is template premium one?"
199
+ msgid "Premium"
200
+ msgstr "ترقية "
201
+
202
+ #: includes/admin-edit-template.php:23 includes/admin-templates.php:30
203
+ #: includes/global-settings.php:18 includes/global-settings.php:87
204
+ #: includes/row-settings.php:307 includes/template-settings.php:31
205
+ #: modules/accordion/accordion.php:90 modules/button/button.php:135
206
+ #: modules/callout/callout.php:418 modules/callout/callout.php:539
207
+ #: modules/content-slider/content-slider.php:203
208
+ #: modules/content-slider/content-slider.php:217
209
+ #: modules/content-slider/content-slider.php:251
210
+ #: modules/content-slider/content-slider.php:260
211
+ #: modules/content-slider/content-slider.php:531
212
+ #: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
213
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
214
+ #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
215
+ #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
216
+ #: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
217
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
218
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
219
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
220
+ #: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
221
+ #: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
222
+ #: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
223
+ #: modules/social-buttons/social-buttons.php:111
224
+ #: modules/social-buttons/social-buttons.php:120
225
+ #: modules/social-buttons/social-buttons.php:129
226
+ #: modules/testimonials/testimonials.php:85
227
+ #: modules/testimonials/testimonials.php:124
228
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
229
+ #: modules/video/video.php:123
230
+ msgid "No"
231
+ msgstr "لا "
232
+
233
+ #: includes/admin-edit-template.php:24 includes/admin-templates.php:30
234
+ #: includes/global-settings.php:19 includes/global-settings.php:88
235
+ #: includes/row-settings.php:308 includes/template-settings.php:32
236
+ #: modules/accordion/accordion.php:89 modules/button/button.php:136
237
+ #: modules/callout/callout.php:419 modules/callout/callout.php:540
238
+ #: modules/content-slider/content-slider.php:204
239
+ #: modules/content-slider/content-slider.php:218
240
+ #: modules/content-slider/content-slider.php:252
241
+ #: modules/content-slider/content-slider.php:261
242
+ #: modules/content-slider/content-slider.php:532
243
+ #: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
244
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
245
+ #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
246
+ #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
247
+ #: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
248
+ #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
249
+ #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
250
+ #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
251
+ #: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
252
+ #: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
253
+ #: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
254
+ #: modules/social-buttons/social-buttons.php:110
255
+ #: modules/social-buttons/social-buttons.php:119
256
+ #: modules/social-buttons/social-buttons.php:128
257
+ #: modules/testimonials/testimonials.php:86
258
+ #: modules/testimonials/testimonials.php:125
259
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
260
+ #: modules/video/video.php:124
261
+ msgid "Yes"
262
+ msgstr "نعم "
263
+
264
+ #: includes/admin-edit-template.php:29 includes/template-settings.php:37
265
+ msgid "Category"
266
+ msgstr "تصنيف "
267
+
268
+ #: includes/admin-edit-template.php:32 includes/template-settings.php:40
269
+ msgctxt "Templates category label."
270
+ msgid "Landing Pages"
271
+ msgstr "صفحات الهبوط "
272
+
273
+ #: includes/admin-edit-template.php:33 includes/template-settings.php:41
274
+ msgctxt "Templates category label."
275
+ msgid "Company Info"
276
+ msgstr "معلومات الشركة "
277
+
278
+ #: includes/admin-edit-template.php:40
279
+ msgid "Update Template"
280
+ msgstr "تحديث القالب "
281
+
282
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
283
+ msgid "Text Editor"
284
+ msgstr "تحرير النصوص "
285
+
286
+ #: includes/admin-posts.php:7
287
+ #, php-format
288
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
289
+ msgid "%s is currently active for this page."
290
+ msgstr "تنشيط حالياً لهذه الصفحة %s."
291
+
292
+ #: includes/admin-posts.php:8
293
+ #, php-format
294
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
295
+ msgid "Launch %s"
296
+ msgstr "إطلاق %s"
297
+
298
+ #: includes/admin-settings.php:7 includes/global-settings.php:4
299
+ #: includes/multisite-settings.php:7
300
+ #, php-format
301
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
302
+ msgid "%s Settings"
303
+ msgstr "إعدادات %s"
304
+
305
+ #: includes/admin-settings.php:12 includes/multisite-settings.php:12
306
+ msgid "Settings updated!"
307
+ msgstr "تم حفظ الإعدادات! "
308
+
309
+ #: includes/admin-settings.php:19 includes/multisite-settings.php:18
310
+ msgid "License"
311
+ msgstr "رخصة "
312
+
313
+ #: includes/admin-settings.php:23 includes/admin-settings.php:59
314
+ msgid "Upgrade"
315
+ msgstr "ترقية "
316
+
317
+ #: includes/admin-settings.php:26 includes/global-settings.php:67
318
+ #: includes/multisite-settings.php:19
319
+ msgid "Modules"
320
+ msgstr "وحدات "
321
+
322
+ #: includes/admin-settings.php:29 includes/multisite-settings.php:20
323
+ #: includes/ui.php:44
324
+ msgid "Templates"
325
+ msgstr "قوالب "
326
+
327
+ #: includes/admin-settings.php:32 includes/admin-settings.php:163
328
+ #: includes/multisite-settings.php:21 includes/multisite-settings.php:112
329
+ msgid "Post Types"
330
+ msgstr "أنواع المشاركة "
331
+
332
+ #: includes/admin-settings.php:33 includes/multisite-settings.php:22
333
+ msgid "Editing"
334
+ msgstr "تحرير "
335
+
336
+ #: includes/admin-settings.php:40 includes/admin-settings.php:250
337
+ #: includes/admin-settings.php:262 includes/multisite-settings.php:24
338
+ #: includes/multisite-settings.php:172 includes/multisite-settings.php:184
339
+ msgid "Uninstall"
340
+ msgstr "إلغاء التنصيب "
341
+
342
+ #: includes/admin-settings.php:61
343
+ msgid ""
344
+ "You are currently running the lite version of the Beaver Builder plugin. "
345
+ "Upgrade today for access to premium features such as advanced modules, "
346
+ "templates, support and more!"
347
+ msgstr ""
348
+ "أنت حالياً تستخدم الإصدار العادى من إضافة إنشاء الصفحات ، قم بالترقية للوصول الى "
349
+ "مميزات أكثر من عروض وقوالب مع الدعم والمزيد ! "
350
+
351
+ #: includes/admin-settings.php:63
352
+ msgid "Upgrade Now"
353
+ msgstr "ترقية الآن "
354
+
355
+ #: includes/admin-settings.php:65
356
+ msgid "Learn More"
357
+ msgstr "معرفة المزيد "
358
+
359
+ #: includes/admin-settings.php:74 includes/multisite-settings.php:39
360
+ msgid "Enabled Modules"
361
+ msgstr "السماح بالعروض "
362
+
363
+ #: includes/admin-settings.php:81 includes/admin-settings.php:132
364
+ #: includes/admin-settings.php:170 includes/admin-settings.php:222
365
+ msgid "Override network settings?"
366
+ msgstr "تجاوز إعدادات الشبكة؟ "
367
+
368
+ #: includes/admin-settings.php:87 includes/multisite-settings.php:45
369
+ msgid "Check or uncheck modules below to enable or disable them."
370
+ msgstr "أضف أو أزل أدناه للتمكين أو التعطيل. "
371
+
372
+ #: includes/admin-settings.php:96 includes/multisite-settings.php:54
373
+ msgctxt "Plugin setup page: Modules."
374
+ msgid "All"
375
+ msgstr "الكل"
376
+
377
+ #: includes/admin-settings.php:114 includes/multisite-settings.php:72
378
+ msgid "Save Module Settings"
379
+ msgstr "حفظ إعدادات الوحدات "
380
+
381
+ #: includes/admin-settings.php:125 includes/multisite-settings.php:82
382
+ #: includes/template-settings.php:4
383
+ msgid "Template Settings"
384
+ msgstr "إعدادات القوالب "
385
+
386
+ #: includes/admin-settings.php:138 includes/multisite-settings.php:88
387
+ msgid "Enable or disable templates using the options below."
388
+ msgstr "لتمكين القوالب أو تعطيلها إستخدم الخيار أدناه . "
389
+
390
+ #: includes/admin-settings.php:145 includes/multisite-settings.php:95
391
+ msgid "Enable All Templates"
392
+ msgstr "تمكين كل القوالب "
393
+
394
+ #: includes/admin-settings.php:146 includes/multisite-settings.php:96
395
+ msgid "Enable Core Templates Only"
396
+ msgstr "تمكين القوالب الأساسية فقط "
397
+
398
+ #: includes/admin-settings.php:147 includes/multisite-settings.php:97
399
+ msgid "Enable User Templates Only"
400
+ msgstr "تمكين قوالب المستخدم فقط "
401
+
402
+ #: includes/admin-settings.php:148 includes/multisite-settings.php:98
403
+ msgid "Disable All Templates"
404
+ msgstr "تعطيل جميع القوالب "
405
+
406
+ #: includes/admin-settings.php:152 includes/multisite-settings.php:102
407
+ msgid "Save Template Settings"
408
+ msgstr "حفظ إعدادات القوالب "
409
+
410
+ #: includes/admin-settings.php:176
411
+ msgid "Select the post types you would like the builder to work with."
412
+ msgstr "حدد نوع المشاركة التى ترغب ببنائها "
413
+
414
+ #: includes/admin-settings.php:177 includes/multisite-settings.php:117
415
+ msgid "NOTE: Not all custom post types may be supported."
416
+ msgstr "ملاحظة : ليست جميع أنواع المشاركة مدعومة . "
417
+
418
+ #: includes/admin-settings.php:205 includes/multisite-settings.php:135
419
+ msgid "Save Post Types"
420
+ msgstr "حفظ نوع المشاركة "
421
+
422
+ #: includes/admin-settings.php:215 includes/multisite-settings.php:145
423
+ msgid "Editing Settings"
424
+ msgstr "تحرير الإعدادات "
425
+
426
+ #: includes/admin-settings.php:228 includes/multisite-settings.php:150
427
+ #, php-format
428
+ msgid ""
429
+ "Set the <a%s>capability</a> required for users to access advanced builder "
430
+ "editing such as adding, deleting or moving modules."
431
+ msgstr ""
432
+ "تعيين <a%s>القدرة </a> اللازمة للمستخدمين بالوصول الى إعدادات الإضافة والتعديل "
433
+ "والحذف ونقل الوحدات . "
434
+
435
+ #: includes/admin-settings.php:234 includes/multisite-settings.php:156
436
+ msgid "Save Editing Settings"
437
+ msgstr "حفظ الإعدادات "
438
+
439
+ #: includes/admin-settings.php:252 includes/multisite-settings.php:174
440
+ msgid ""
441
+ "Clicking the button below will uninstall the page builder plugin and delete all "
442
+ "of the data associated with it. You can uninstall or deactivate the page "
443
+ "builder from the plugins page instead if you do not wish to delete the data."
444
+ msgstr ""
445
+ "يمكنك الغاء تثبيت إضافة منشىء الصفحات وحذف كافة الملفات المرتبطة أويمكنك إلغاء "
446
+ "التفعيل فقط من صفحة الإضافات إذا كنت لاترغب بحذف الملفات . "
447
+
448
+ #: includes/admin-settings.php:254 includes/admin-settings.php:257
449
+ #: includes/multisite-settings.php:176 includes/multisite-settings.php:179
450
+ #: includes/updater/includes/form.php:31
451
+ msgid "NOTE:"
452
+ msgstr "ملاحظة : "
453
+
454
+ #: includes/admin-settings.php:254 includes/multisite-settings.php:176
455
+ msgid ""
456
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
457
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case you "
458
+ "want to reinstall it later. If you do, the builder will rebuild all of its data "
459
+ "using those meta values."
460
+ msgstr ""
461
+ "منشىء الصفحات لايحذف عناصر المشاركة <code>_fl_builder_data</code>, "
462
+ "<code>_fl_builder_draft</code> a <code>_fl_builder_enabled</code> فى حالة أردت "
463
+ "إعادة تثبيت منشىء الصفحات لاحقا . سيتم إعادة البناء مع بيانات هذه العناصر ."
464
+
465
+ #: includes/admin-settings.php:257 includes/multisite-settings.php:179
466
+ #: includes/updater/includes/form.php:31
467
+ msgid "This applies to all sites on the network."
468
+ msgstr "وهذا ينطبق على جميع المواقع على الشبكة. "
469
+
470
+ #: includes/admin-settings.php:276 includes/multisite-settings.php:198
471
+ msgid ""
472
+ "Please type \"uninstall\" in the box below to confirm that you really want to "
473
+ "uninstall the page builder and all of its data."
474
+ msgstr ""
475
+ "الرجاء كتابة \"إلغاء \" في المربع أدناه لتأكيد أنك تريد حقا أن إلغاء باني "
476
+ "الصفحة وجميع البيانات الخاصة به. "
477
+
478
+ #: includes/admin-templates.php:3
479
+ msgid "Page Builder Template"
480
+ msgstr "قالب منشىء الصفحة "
481
+
482
+ #: includes/admin-templates.php:10
483
+ msgctxt "Templates list column label."
484
+ msgid "Name"
485
+ msgstr "الإسم "
486
+
487
+ #: includes/admin-templates.php:11
488
+ msgctxt "Templates list column label."
489
+ msgid "Category"
490
+ msgstr "التصنيف "
491
+
492
+ #: includes/admin-templates.php:12
493
+ msgctxt "Templates list column label. Is template premium one?"
494
+ msgid "Premium"
495
+ msgstr "ترقية "
496
+
497
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
498
+ #: includes/template-selector.php:83
499
+ msgid "Edit"
500
+ msgstr "تحرير "
501
+
502
+ #: includes/admin-templates.php:27 includes/template-selector.php:84
503
+ msgid "Delete"
504
+ msgstr "حذف "
505
+
506
+ #: includes/admin-templates.php:40 includes/js-config.php:26
507
+ msgid "Do you really want to delete this template?"
508
+ msgstr "تريد فعلا حذف هذا القالب ؟ "
509
+
510
+ #: includes/column-settings.php:4 includes/js-config.php:21
511
+ msgid "Column Settings"
512
+ msgstr "إعدادات العمود "
513
+
514
+ #: includes/column-settings.php:7 includes/module-settings.php:95
515
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
516
+ #: modules/button/button.php:95 modules/callout/callout.php:239
517
+ #: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
518
+ #: modules/heading/heading.php:69 modules/icon-group/icon-group.php:44
519
+ #: modules/icon/icon.php:75 modules/pricing-table/pricing-table.php:43
520
+ #: modules/pricing-table/pricing-table.php:155 modules/separator/separator.php:72
521
+ #: modules/tabs/tabs.php:45
522
+ msgid "Style"
523
+ msgstr "أسلوب "
524
+
525
+ #: includes/column-settings.php:14
526
+ msgid "Column Width"
527
+ msgstr "عرض العمود "
528
+
529
+ #: includes/column-settings.php:26 includes/row-settings.php:48
530
+ #: modules/button/button.php:53 modules/callout/callout.php:223
531
+ #: modules/callout/callout.php:476 modules/callout/callout.php:492
532
+ #: modules/content-slider/content-slider.php:376
533
+ #: modules/content-slider/content-slider.php:610 modules/cta/cta.php:82
534
+ #: modules/cta/cta.php:219
535
+ msgid "Text"
536
+ msgstr "نص "
537
+
538
+ #: includes/column-settings.php:30 includes/column-settings.php:43
539
+ #: includes/column-settings.php:100 includes/row-settings.php:52
540
+ #: includes/row-settings.php:109 includes/row-settings.php:379
541
+ #: modules/callout/callout.php:389 modules/content-slider/content-slider.php:331
542
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
543
+ #: modules/separator/separator.php:34
544
+ msgid "Color"
545
+ msgstr "لون "
546
+
547
+ #: includes/column-settings.php:39 includes/row-settings.php:105
548
+ #: modules/button/button.php:102 modules/callout/callout.php:402
549
+ #: modules/callout/callout.php:506 modules/content-slider/content-slider.php:357
550
+ #: modules/content-slider/content-slider.php:624 modules/cta/cta.php:195
551
+ #: modules/cta/cta.php:262 modules/icon-group/icon-group.php:64
552
+ #: modules/icon/icon.php:95
553
+ msgid "Background Color"
554
+ msgstr "لون الخلفية "
555
+
556
+ #: includes/column-settings.php:51 includes/column-settings.php:108
557
+ #: includes/row-settings.php:117 includes/row-settings.php:387
558
+ #: modules/separator/separator.php:44
559
+ msgid "Opacity"
560
+ msgstr "الشفافية "
561
+
562
+ #: includes/column-settings.php:63 includes/row-settings.php:342
563
+ msgid "Border"
564
+ msgstr "إطار "
565
+
566
+ #: includes/column-settings.php:67 includes/row-settings.php:65
567
+ #: includes/row-settings.php:346 modules/callout/callout.php:472
568
+ #: modules/content-slider/content-slider.php:325
569
+ #: modules/content-slider/content-slider.php:372
570
+ #: modules/content-slider/content-slider.php:590
571
+ #: modules/content-slider/content-slider.php:694
572
+ #: modules/slideshow/slideshow.php:339
573
+ msgid "Type"
574
+ msgstr "نوع "
575
+
576
+ #: includes/column-settings.php:69 includes/row-settings.php:348
577
+ msgid ""
578
+ "The type of border to use. Double borders must have a width of at least 3px to "
579
+ "render properly."
580
+ msgstr ""
581
+ "نوع الإطار المستخدم . يجب أن يكون حدود مزدوجة بعرض 3PX على الأقل لتقديم بشكل "
582
+ "صحيح."
583
+
584
+ #: includes/column-settings.php:71 includes/row-settings.php:350
585
+ msgctxt "Border type."
586
+ msgid "None"
587
+ msgstr "لا شيء "
588
+
589
+ #: includes/column-settings.php:72 includes/row-settings.php:351
590
+ #: modules/separator/separator.php:75
591
+ msgctxt "Border type."
592
+ msgid "Solid"
593
+ msgstr "صلب "
594
+
595
+ #: includes/column-settings.php:73 includes/row-settings.php:352
596
+ #: modules/separator/separator.php:76
597
+ msgctxt "Border type."
598
+ msgid "Dashed"
599
+ msgstr "متقطع "
600
+
601
+ #: includes/column-settings.php:74 includes/row-settings.php:353
602
+ #: modules/separator/separator.php:77
603
+ msgctxt "Border type."
604
+ msgid "Dotted"
605
+ msgstr "منقط "
606
+
607
+ #: includes/column-settings.php:75 includes/row-settings.php:354
608
+ #: modules/separator/separator.php:78
609
+ msgctxt "Border type."
610
+ msgid "Double"
611
+ msgstr "مزدوج "
612
+
613
+ #: includes/column-settings.php:119 includes/row-settings.php:398
614
+ msgid "Top Width"
615
+ msgstr "عرض الأعلى "
616
+
617
+ #: includes/column-settings.php:131 includes/row-settings.php:410
618
+ msgid "Bottom Width"
619
+ msgstr "عرض الأسفل "
620
+
621
+ #: includes/column-settings.php:143 includes/row-settings.php:422
622
+ msgid "Left Width"
623
+ msgstr "عرض اليسار "
624
+
625
+ #: includes/column-settings.php:155 includes/row-settings.php:434
626
+ msgid "Right Width"
627
+ msgstr "عرض اليمين "
628
+
629
+ #: includes/column-settings.php:170 includes/module-settings.php:6
630
+ #: includes/row-settings.php:449 modules/content-slider/content-slider.php:267
631
+ msgid "Advanced"
632
+ msgstr "متقدم "
633
+
634
+ #: includes/column-settings.php:177 includes/module-settings.php:13
635
+ #: includes/row-settings.php:456
636
+ msgid "CSS Class"
637
+ msgstr "تنسيق كلاس "
638
+
639
+ #: includes/column-settings.php:178
640
+ msgid ""
641
+ "A custom CSS class that will be applied to this column. Spaces only, no dots."
642
+ msgstr "تنسيق مخصص يتم تطبيقة على هذا العمود . المساحات فقط ، بدون نقاط ."
643
+
644
+ #: includes/column-settings.php:186 includes/global-settings.php:80
645
+ msgid "Responsive Layout"
646
+ msgstr "تخطيط متجاوب"
647
+
648
+ #: includes/column-settings.php:190 includes/module-settings.php:21
649
+ #: includes/row-settings.php:464 modules/slideshow/slideshow.php:290
650
+ msgid "Display"
651
+ msgstr "عرض "
652
+
653
+ #: includes/column-settings.php:192 includes/module-settings.php:23
654
+ #: includes/row-settings.php:466
655
+ msgid "Always"
656
+ msgstr "دائماً "
657
+
658
+ #: includes/column-settings.php:193 includes/module-settings.php:24
659
+ #: includes/row-settings.php:467
660
+ msgid "Large Devices Only"
661
+ msgstr "الأجهزة الكبيرة فقط "
662
+
663
+ #: includes/column-settings.php:194 includes/module-settings.php:25
664
+ #: includes/row-settings.php:468
665
+ msgid "Large &amp; Medium Devices Only"
666
+ msgstr "الكبيرة &amp; الأجهزة المتوسطة فقط "
667
+
668
+ #: includes/column-settings.php:195 includes/module-settings.php:26
669
+ #: includes/row-settings.php:469
670
+ msgid "Medium Devices Only"
671
+ msgstr "الأجهزة المتوسطة فقط "
672
+
673
+ #: includes/column-settings.php:196 includes/module-settings.php:27
674
+ #: includes/row-settings.php:470
675
+ msgid "Medium &amp; Small Devices Only"
676
+ msgstr "المتوسطة &amp; الأجهزة الصغيرة فقط "
677
+
678
+ #: includes/column-settings.php:197 includes/module-settings.php:28
679
+ #: includes/row-settings.php:471
680
+ msgid "Small Devices Only"
681
+ msgstr "الأجهزة الصغيرة فقط "
682
+
683
+ #: includes/column-settings.php:199
684
+ msgid "Choose whether to show or hide this column at different device sizes."
685
+ msgstr "إختيار إظهار أو إخفاء العمود فى أحجام الأجهزة المختلفة . "
686
+
687
+ #: includes/column-settings.php:206
688
+ msgid "Medium Device Width"
689
+ msgstr "عرض الأجهزة المتوسطة "
690
+
691
+ #: includes/column-settings.php:207
692
+ msgid "The width of this column on medium devices such as tablets."
693
+ msgstr "عرض هذا العمود على الأجهزة المتوسطة مثل التابلت. "
694
+
695
+ #: includes/column-settings.php:209 includes/column-settings.php:237
696
+ #: modules/callout/callout.php:281 modules/content-slider/content-slider.php:442
697
+ #: modules/cta/cta.php:165 modules/heading/heading.php:117
698
+ #: modules/heading/heading.php:144 modules/heading/heading.php:174
699
+ msgid "Default"
700
+ msgstr "إفتراضى "
701
+
702
+ #: includes/column-settings.php:210 includes/column-settings.php:238
703
+ #: modules/button/button.php:151 modules/callout/callout.php:282
704
+ #: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
705
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145
706
+ #: modules/heading/heading.php:175 modules/social-buttons/social-buttons.php:74
707
+ msgid "Custom"
708
+ msgstr "مخصص "
709
+
710
+ #: includes/column-settings.php:223
711
+ msgid "Custom Medium Device Width"
712
+ msgstr "تخصيص عرض الأجهزة المتوسطة "
713
+
714
+ #: includes/column-settings.php:234
715
+ msgid "Small Device Width"
716
+ msgstr "عرض الأجهزة الصغيرة "
717
+
718
+ #: includes/column-settings.php:235
719
+ msgid "The width of this column on small devices such as phones."
720
+ msgstr "عرض هذا العمود على الأجهزة الصغيرة مثل الهواتف . "
721
+
722
+ #: includes/column-settings.php:251
723
+ msgid "Custom Small Device Width"
724
+ msgstr "عرض مخصص للأجهزة الصغيرة "
725
+
726
+ #: includes/column-settings.php:263 includes/global-settings.php:41
727
+ #: includes/global-settings.php:71 includes/module-settings.php:38
728
+ #: includes/row-settings.php:481
729
+ msgid "Margins"
730
+ msgstr "تباعد خارجى "
731
+
732
+ #: includes/column-settings.php:267 includes/column-settings.php:320
733
+ #: includes/module-settings.php:42 includes/row-settings.php:485
734
+ #: includes/row-settings.php:538 modules/slideshow/slideshow.php:475
735
+ msgid "Top"
736
+ msgstr "أعلى "
737
+
738
+ #: includes/column-settings.php:279 includes/column-settings.php:332
739
+ #: includes/module-settings.php:54 includes/row-settings.php:497
740
+ #: includes/row-settings.php:550 modules/slideshow/slideshow.php:474
741
+ msgid "Bottom"
742
+ msgstr "أسفل "
743
+
744
+ #: includes/column-settings.php:291 includes/column-settings.php:344
745
+ #: includes/module-settings.php:66 includes/row-settings.php:509
746
+ #: includes/row-settings.php:562 modules/button/button.php:177
747
+ #: modules/callout/callout.php:250 modules/content-slider/content-slider.php:470
748
+ #: modules/cta/cta.php:123 modules/heading/heading.php:89
749
+ #: modules/heading/heading.php:161 modules/icon-group/icon-group.php:111
750
+ #: modules/icon/icon.php:134 modules/photo/photo.php:417
751
+ #: modules/social-buttons/social-buttons.php:101
752
+ msgid "Left"
753
+ msgstr "يسار "
754
+
755
+ #: includes/column-settings.php:303 includes/column-settings.php:356
756
+ #: includes/module-settings.php:78 includes/row-settings.php:521
757
+ #: includes/row-settings.php:574 modules/button/button.php:178
758
+ #: modules/callout/callout.php:251 modules/content-slider/content-slider.php:472
759
+ #: modules/cta/cta.php:125 modules/heading/heading.php:91
760
+ #: modules/heading/heading.php:163 modules/icon-group/icon-group.php:112
761
+ #: modules/icon/icon.php:135 modules/photo/photo.php:419
762
+ #: modules/social-buttons/social-buttons.php:102
763
+ msgid "Right"
764
+ msgstr "يمين "
765
+
766
+ #: includes/column-settings.php:316 includes/global-settings.php:49
767
+ #: includes/row-settings.php:534 modules/button/button.php:191
768
+ #: modules/callout/callout.php:567 modules/content-slider/content-slider.php:668
769
+ #: modules/cta/cta.php:314
770
+ msgid "Padding"
771
+ msgstr "تباعد داخلى "
772
+
773
+ #: includes/field-form.php:17
774
+ #, php-format
775
+ msgctxt "%s stands for form field label."
776
+ msgid "Edit %s"
777
+ msgstr "تحرير %s"
778
+
779
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
780
+ msgid "Select Icon"
781
+ msgstr "تحديد الرمز "
782
+
783
+ #: includes/field-icon.php:5 includes/field-photo.php:13
784
+ msgid "Replace"
785
+ msgstr "تبديل "
786
+
787
+ #: includes/field-icon.php:7 includes/js-config.php:50
788
+ msgid "Remove"
789
+ msgstr "حذف "
790
+
791
+ #: includes/field-link.php:3
792
+ msgid "Select"
793
+ msgstr "تحديد "
794
+
795
+ #: includes/field-link.php:5
796
+ msgid "Enter a post title to search."
797
+ msgstr "أضف عنوان المشاركة للبحث "
798
+
799
+ #: includes/field-link.php:6 includes/field-suggest.php:7
800
+ msgid "Start typing..."
801
+ msgstr "إبدأ الكتابة "
802
+
803
+ #: includes/field-link.php:7 includes/icon-selector.php:27
804
+ #: includes/js-config.php:17 includes/settings.php:63
805
+ #: includes/template-selector.php:102 includes/ui.php:11
806
+ msgid "Cancel"
807
+ msgstr "إلغاء "
808
+
809
+ #: includes/field-multiple-photos.php:8
810
+ #, php-format
811
+ msgid "1 Photo Selected"
812
+ msgid_plural "%d Photos Selected"
813
+ msgstr[0] "تحديد صورة واحدة "
814
+ msgstr[1] "%d Photos Selected"
815
+ msgstr[2] "%d Photos Selected"
816
+
817
+ #: includes/field-multiple-photos.php:13
818
+ msgid "Create Gallery"
819
+ msgstr "إنشاء معرض "
820
+
821
+ #: includes/field-multiple-photos.php:14
822
+ msgid "Edit Gallery"
823
+ msgstr "تحرير معرض "
824
+
825
+ #: includes/field-multiple-photos.php:15
826
+ msgid "Add Photos"
827
+ msgstr "إضافة صور "
828
+
829
+ #: includes/field-photo.php:3 includes/js-config.php:55
830
+ msgid "Select Photo"
831
+ msgstr "تحديد صور "
832
+
833
+ #: includes/field-video.php:3 includes/js-config.php:57
834
+ msgid "Select Video"
835
+ msgstr "تحديد فيديو "
836
+
837
+ #: includes/field-video.php:17
838
+ msgid "Replace Video"
839
+ msgstr "تبديل فيديو "
840
+
841
+ #: includes/global-settings.php:7 includes/template-settings.php:7
842
+ #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
843
+ #: modules/button/button.php:46 modules/callout/callout.php:207
844
+ #: modules/contact-form/contact-form.php:57
845
+ #: modules/content-slider/content-slider.php:184
846
+ #: modules/content-slider/content-slider.php:308 modules/cta/cta.php:65
847
+ #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
848
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
849
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
850
+ #: modules/pricing-table/pricing-table.php:87 modules/rich-text/rich-text.php:26
851
+ #: modules/separator/separator.php:27 modules/sidebar/sidebar.php:27
852
+ #: modules/slideshow/slideshow.php:256
853
+ #: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
854
+ #: modules/testimonials/testimonials.php:30
855
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
856
+ #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
857
+ msgid "General"
858
+ msgstr "عام "
859
+
860
+ #: includes/global-settings.php:8
861
+ msgid "Note: These settings apply to all posts and pages."
862
+ msgstr "ملاحظة: يتم تطبيق هذه الإعدادات على جميع المشاركات والصفحات."
863
+
864
+ #: includes/global-settings.php:11
865
+ msgid "Default Page Heading"
866
+ msgstr "عنوان افتراضى للصفحة "
867
+
868
+ #: includes/global-settings.php:15
869
+ msgctxt ""
870
+ "General settings form field label. Intended meaning: \"Show page heading?\""
871
+ msgid "Show"
872
+ msgstr "عرض "
873
+
874
+ #: includes/global-settings.php:26
875
+ msgid ""
876
+ "Choosing no will hide the default theme heading for the \"Page\" post type. You "
877
+ "will also be required to enter some basic CSS for this to work if you choose no."
878
+ msgstr ""
879
+ "إختيار لا لإخفاء عنوان الاستايل الإفتراضى \"لصفحة \" نوع المشاركة . يجب عليك "
880
+ "ادخال تنسيق مخصص إذا إخترت لا . "
881
+
882
+ #: includes/global-settings.php:30
883
+ msgid "CSS Selector"
884
+ msgstr "عناصر تنسيق "
885
+
886
+ #: includes/global-settings.php:32
887
+ msgid "Enter a CSS selector for the default page heading to hide it."
888
+ msgstr "قم بادخال عناصر تنسيق للصفحة الإفتراضية لإخفاء العنوان . "
889
+
890
+ #: includes/global-settings.php:37
891
+ msgid "Rows"
892
+ msgstr "الصفوف "
893
+
894
+ #: includes/global-settings.php:57
895
+ msgid "Max Width"
896
+ msgstr "أكبر قيمة للعرض "
897
+
898
+ #: includes/global-settings.php:62
899
+ msgid ""
900
+ "All rows will default to this width. You can override this and make a row full "
901
+ "width in the settings for each row."
902
+ msgstr ""
903
+ "جميع الصفوف عرضها إفتراضى . يمكنك تجاوز هذا وجعل العرض لكامل الصف من إعدادات كل "
904
+ "صف . "
905
+
906
+ #: includes/global-settings.php:84
907
+ msgctxt ""
908
+ "General settings form field label. Intended meaning: \"Responsive layout "
909
+ "enabled?\""
910
+ msgid "Enabled"
911
+ msgstr "تمكين "
912
+
913
+ #: includes/global-settings.php:98
914
+ msgid "Medium Device Breakpoint"
915
+ msgstr "نقطة توقف الأجهزة المتوسطة "
916
+
917
+ #: includes/global-settings.php:103
918
+ msgid ""
919
+ "The browser width at which the layout will adjust for medium devices such as "
920
+ "tablets."
921
+ msgstr "عرض المتصفح للتخطيط سيكون مضبوط على الأجهزة المتوسطة مثل التابلت . "
922
+
923
+ #: includes/global-settings.php:107
924
+ msgid "Small Device Breakpoint"
925
+ msgstr "نقطة توقف الأجهزة الصغيرة "
926
+
927
+ #: includes/global-settings.php:112
928
+ msgid ""
929
+ "The browser width at which the layout will adjust for small devices such as "
930
+ "phones."
931
+ msgstr "عرض المتصفح للتخطيط سيكون مضبوط على الأجهزة الصغيرة مثل الهواتف . "
932
+
933
+ #: includes/icon-selector.php:4
934
+ msgid "Filter: "
935
+ msgstr "فرز : "
936
+
937
+ #: includes/js-config.php:16
938
+ msgid "What would you like to do?"
939
+ msgstr "ماذا تريد أن تفعل ؟ "
940
+
941
+ #: includes/js-config.php:18
942
+ msgid "Change Template"
943
+ msgstr "تغيير القالب "
944
+
945
+ #: includes/js-config.php:19
946
+ msgid ""
947
+ "Warning! Changing the template will replace your existing layout. Do you really "
948
+ "want to do this?"
949
+ msgstr "تحذير! تغيير القالب سيؤدى الى تغيير التخطيط الموجود لديك . هل تريد ذلك؟ "
950
+
951
+ #: includes/js-config.php:20
952
+ msgid "Column"
953
+ msgstr "عمود "
954
+
955
+ #: includes/js-config.php:22
956
+ msgid ""
957
+ "Please select either a background layout or content layout before submitting."
958
+ msgstr "يرجى تحديد تخطيط الخلفية أو تخطيط المحتوى قبل التقديم . "
959
+
960
+ #: includes/js-config.php:23
961
+ msgid "Do you really want to delete this item?"
962
+ msgstr "هل حقا تريد حذف هذا البند ؟"
963
+
964
+ #: includes/js-config.php:24
965
+ msgid ""
966
+ "Do you really want to delete this module? All content data will be permanently "
967
+ "deleted."
968
+ msgstr "هل حقا تريد حذف هذه الوحدة ؟ سيتم حذف جميع بيانات المحتوى بشكل دائم."
969
+
970
+ #: includes/js-config.php:25
971
+ msgid ""
972
+ "Do you really want to delete this row? All content data will be permanently "
973
+ "deleted."
974
+ msgstr "هل حقا تريد حذف هذا الصف ؟ سيتم حذف جميع بيانات المحتوى بشكل دائم."
975
+
976
+ #: includes/js-config.php:27
977
+ msgid "Discard Draft"
978
+ msgstr "طرح المشروع "
979
+
980
+ #: includes/js-config.php:28
981
+ msgid ""
982
+ "Do you really want to discard this draft? All of your changes that are not "
983
+ "published will be lost."
984
+ msgstr ""
985
+ "هل تريد حقا أن تتجاهل هذا المشروع ؟ ستفقد كافة التغييرات التي لم يتم نشرها ."
986
+
987
+ #: includes/js-config.php:29
988
+ msgid "Save Draft"
989
+ msgstr "حفظ المشروع "
990
+
991
+ #: includes/js-config.php:30
992
+ msgctxt "Duplicate page/post action label."
993
+ msgid "Duplicate"
994
+ msgstr "تكرار نسخة "
995
+
996
+ #: includes/js-config.php:31
997
+ msgid "Duplicate This Page"
998
+ msgstr "نسخه مكررة من الصفحة"
999
+
1000
+ #: includes/js-config.php:32
1001
+ msgid "Duplicate This Template"
1002
+ msgstr "نسخة مكررة من القالب "
1003
+
1004
+ #: includes/js-config.php:33
1005
+ msgid "Edit Global Settings"
1006
+ msgstr "تحرير الإعدادات العامة "
1007
+
1008
+ #: includes/js-config.php:34
1009
+ msgid "Drop a row layout or module to get started!"
1010
+ msgstr "إسقاط تخطيط صف واحد أو وحدة نمطية لتبدأ!"
1011
+
1012
+ #: includes/js-config.php:35
1013
+ msgid "Full Size"
1014
+ msgstr "الحجم الكامل "
1015
+
1016
+ #: includes/js-config.php:36
1017
+ msgid "Insert"
1018
+ msgstr "إدراج"
1019
+
1020
+ #: includes/js-config.php:37
1021
+ msgid "Large"
1022
+ msgstr "الحجم الكبير"
1023
+
1024
+ #: includes/js-config.php:38
1025
+ msgid "Manage Templates"
1026
+ msgstr "إدارة القالب "
1027
+
1028
+ #: includes/js-config.php:39
1029
+ msgid "Medium"
1030
+ msgstr "الحجم المتوسط "
1031
+
1032
+ #: includes/js-config.php:40
1033
+ msgid "Module"
1034
+ msgstr "وحدة "
1035
+
1036
+ #: includes/js-config.php:41
1037
+ msgid "Move"
1038
+ msgstr "نقل "
1039
+
1040
+ #: includes/js-config.php:42
1041
+ msgid "New Column"
1042
+ msgstr "عمود جديد "
1043
+
1044
+ #: includes/js-config.php:43
1045
+ msgid "New Row"
1046
+ msgstr "صف جديد "
1047
+
1048
+ #: includes/js-config.php:44
1049
+ msgid "No results found."
1050
+ msgstr "لايوجد نتائج "
1051
+
1052
+ #: includes/js-config.php:45
1053
+ msgid "OK"
1054
+ msgstr "نعم"
1055
+
1056
+ #: includes/js-config.php:46 modules/photo/photo.php:454
1057
+ msgid "Photo Page"
1058
+ msgstr "صور الصفحة"
1059
+
1060
+ #: includes/js-config.php:47
1061
+ msgid "Photo Selected"
1062
+ msgstr "تحديد الصور "
1063
+
1064
+ #: includes/js-config.php:48
1065
+ msgid "Photos Selected"
1066
+ msgstr "Obrázky boli zvolené"
1067
+
1068
+ #: includes/js-config.php:49
1069
+ msgid "Publish Changes"
1070
+ msgstr "نشر التعديلات "
1071
+
1072
+ #: includes/js-config.php:51
1073
+ msgid "Row"
1074
+ msgstr "الصف"
1075
+
1076
+ #: includes/js-config.php:52 includes/row-settings.php:6
1077
+ msgid "Row Settings"
1078
+ msgstr "إعدادات الصف "
1079
+
1080
+ #: includes/js-config.php:53
1081
+ msgid "Save Core Template"
1082
+ msgstr "حفظ القالب الأساسى "
1083
+
1084
+ #: includes/js-config.php:54 includes/ui.php:10
1085
+ #: includes/user-template-settings.php:4
1086
+ msgid "Save Template"
1087
+ msgstr "حفظ القالب "
1088
+
1089
+ #: includes/js-config.php:56
1090
+ msgid "Select Photos"
1091
+ msgstr "تحديد الصور "
1092
+
1093
+ #: includes/js-config.php:59
1094
+ msgid "Append New Layout"
1095
+ msgstr "إدراج تخطيط جديد"
1096
+
1097
+ #: includes/js-config.php:60
1098
+ msgid "Replace Existing Layout"
1099
+ msgstr "استبدال تخطيط القائمة"
1100
+
1101
+ #: includes/js-config.php:61
1102
+ msgid "Template Saved!"
1103
+ msgstr "تم حفظ القالب! "
1104
+
1105
+ #: includes/js-config.php:62
1106
+ msgid "Thumbnail"
1107
+ msgstr "صورة مصغرة "
1108
+
1109
+ #: includes/js-config.php:63
1110
+ msgid ""
1111
+ "The settings you are currently editing will not be saved if you navigate away "
1112
+ "from this page."
1113
+ msgstr ""
1114
+ "لن يتم حفظ الإعدادات التي تقوم بتحريرها حاليا إذا تم الإنتقال بعيدا عن هذه "
1115
+ "الصفحة ."
1116
+
1117
+ #: includes/loop-settings.php:19
1118
+ msgid "Post Type"
1119
+ msgstr "نوع المشاركة "
1120
+
1121
+ #: includes/loop-settings.php:25
1122
+ msgid "Order By"
1123
+ msgstr "الترتيب حسب "
1124
+
1125
+ #: includes/loop-settings.php:27
1126
+ msgid "ID"
1127
+ msgstr "المعرف "
1128
+
1129
+ #: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
1130
+ #: modules/woocommerce/woocommerce.php:189
1131
+ msgid "Date"
1132
+ msgstr "التاريخ "
1133
+
1134
+ #: includes/loop-settings.php:29
1135
+ msgid "Date Last Modified"
1136
+ msgstr "آخر تعديل "
1137
+
1138
+ #: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
1139
+ #: modules/pricing-table/pricing-table.php:94
1140
+ msgid "Title"
1141
+ msgstr "العنوان "
1142
+
1143
+ #: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
1144
+ msgid "Author"
1145
+ msgstr "الكاتب "
1146
+
1147
+ #: includes/loop-settings.php:32
1148
+ msgid "Comment Count"
1149
+ msgstr "عدد التعليقات "
1150
+
1151
+ #: includes/loop-settings.php:33
1152
+ msgid "Menu Order"
1153
+ msgstr "ترتيب القائمة "
1154
+
1155
+ #: includes/loop-settings.php:34
1156
+ msgid "Random"
1157
+ msgstr "عشوائى "
1158
+
1159
+ #: includes/loop-settings.php:41
1160
+ msgid "Order"
1161
+ msgstr "ترتيب "
1162
+
1163
+ #: includes/loop-settings.php:43
1164
+ msgid "Descending"
1165
+ msgstr "تنازلى"
1166
+
1167
+ #: includes/loop-settings.php:44
1168
+ msgid "Ascending"
1169
+ msgstr "تصاعدى "
1170
+
1171
+ #: includes/loop-settings.php:52
1172
+ msgid "Filter"
1173
+ msgstr "فرز "
1174
+
1175
+ #: includes/loop-settings.php:63
1176
+ #, php-format
1177
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
1178
+ msgstr "أدخل قائمة مفصولة بفواصل %s. فقط %s وسيتم العرض . "
1179
+
1180
+ #: includes/loop-settings.php:76
1181
+ #, php-format
1182
+ msgid ""
1183
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
1184
+ msgstr "أدخل قائمة مفصولة بفواصل من %s. المشاركات الوحيدة %s وسيتم العرض . "
1185
+
1186
+ #: includes/loop-settings.php:90
1187
+ msgid "Authors"
1188
+ msgstr "الكتاب "
1189
+
1190
+ #: includes/loop-settings.php:91
1191
+ msgid ""
1192
+ "Enter a comma separated list of authors usernames. Only posts with these "
1193
+ "authors will be shown."
1194
+ msgstr ""
1195
+ "أدخل قائمة مفصولة بفواصل من أسماء المؤلفين. وسيتم عرض المشاركات الوحيدة لهؤلاء "
1196
+ "المؤلفين ."
1197
+
1198
+ #: includes/module-settings.php:14
1199
+ msgid ""
1200
+ "A custom CSS class that will be applied to this module. Spaces only, no dots."
1201
+ msgstr "تنسيق مخصص سيتم تطبيقه فقط على هذه الوحدة . المساحات فقط ، بدون نقاط . "
1202
+
1203
+ #: includes/module-settings.php:30
1204
+ msgid "Choose whether to show or hide this module at different device sizes."
1205
+ msgstr "إختيار الإظهار أو الإخفاء على حساب أحجام الأجهزة المختلفة . "
1206
+
1207
+ #: includes/module-settings.php:91
1208
+ msgid "Animation"
1209
+ msgstr "حيوية "
1210
+
1211
+ #: includes/module-settings.php:97
1212
+ msgctxt "Animation style."
1213
+ msgid "None"
1214
+ msgstr "لاشىء "
1215
+
1216
+ #: includes/module-settings.php:98
1217
+ msgctxt "Animation style."
1218
+ msgid "Fade In"
1219
+ msgstr "تتلاشى في "
1220
+
1221
+ #: includes/module-settings.php:99
1222
+ msgctxt "Animation style."
1223
+ msgid "Slide Left"
1224
+ msgstr "تحريك لليسار "
1225
+
1226
+ #: includes/module-settings.php:100
1227
+ msgctxt "Animation style."
1228
+ msgid "Slide Right"
1229
+ msgstr "تحريك لليمين "
1230
+
1231
+ #: includes/module-settings.php:101
1232
+ msgctxt "Animation style."
1233
+ msgid "Slide Up"
1234
+ msgstr "تحريك للأعلى "
1235
+
1236
+ #: includes/module-settings.php:102
1237
+ msgctxt "Animation style."
1238
+ msgid "Slide Down"
1239
+ msgstr "تحريك للأسفل "
1240
+
1241
+ #: includes/module-settings.php:110 modules/content-slider/content-slider.php:223
1242
+ #: modules/testimonials/testimonials.php:91
1243
+ msgid "Delay"
1244
+ msgstr "تأخير "
1245
+
1246
+ #: includes/module-settings.php:114 includes/row-settings.php:266
1247
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
1248
+ #: modules/content-slider/content-slider.php:244
1249
+ #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
1250
+ #: modules/slideshow/slideshow.php:581 modules/testimonials/testimonials.php:95
1251
+ #: modules/testimonials/testimonials.php:112
1252
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
1253
+ msgid "seconds"
1254
+ msgstr "الثوانى "
1255
+
1256
+ #: includes/module-settings.php:115
1257
+ msgid "The amount of time in seconds before this animation starts."
1258
+ msgstr "مقدار الوقت بالثواني قبل البدأ بالتحريك . "
1259
+
1260
+ #: includes/multisite-settings.php:116
1261
+ msgid ""
1262
+ "Enter a comma separated list of the post types you would like the builder to "
1263
+ "work with."
1264
+ msgstr "أدخل قائمة مفصولة بفواصل من أنواع المشاركة التي ترغب بانشائها."
1265
+
1266
+ #: includes/multisite-settings.php:132
1267
+ msgid "Example: page, post, product"
1268
+ msgstr "مثال: صفحة , مشاركة , منتج "
1269
+
1270
+ #: includes/row-settings.php:16 modules/button/button.php:146
1271
+ #: modules/content-slider/content-slider.php:477
1272
+ msgid "Width"
1273
+ msgstr "عرض "
1274
+
1275
+ #: includes/row-settings.php:19 includes/row-settings.php:37
1276
+ #: includes/row-settings.php:179
1277
+ msgid "Fixed"
1278
+ msgstr "ثابت "
1279
+
1280
+ #: includes/row-settings.php:20 includes/row-settings.php:38
1281
+ #: modules/button/button.php:150 modules/callout/callout.php:554
1282
+ msgid "Full Width"
1283
+ msgstr "حجم كامل "
1284
+
1285
+ #: includes/row-settings.php:27
1286
+ msgid ""
1287
+ "Full width rows span the width of the page from edge to edge. Fixed rows are no "
1288
+ "wider than the Row Max Width set in the Global Settings."
1289
+ msgstr ""
1290
+ "عرض كامل الصفوف تمتد عرض الصفحة من الحافة إلى الحافة . الصفوف الثابتة حجمها "
1291
+ "الكامل كما هو العرض في إعدادات العامة ."
1292
+
1293
+ #: includes/row-settings.php:34
1294
+ msgid "Content Width"
1295
+ msgstr "عرض المحتوى "
1296
+
1297
+ #: includes/row-settings.php:40
1298
+ msgid ""
1299
+ "Full width content spans the width of the page from edge to edge. Fixed content "
1300
+ "is no wider than the Row Max Width set in the Global Settings."
1301
+ msgstr ""
1302
+ "عرض المحتوى الكامل يمتد عرض الصفحة من الحافة إلى الحافة . المحتوى ثابت كما هو "
1303
+ "العرض في إعدادات العامة ."
1304
+
1305
+ #: includes/row-settings.php:61
1306
+ msgid "Background"
1307
+ msgstr "الخلفية "
1308
+
1309
+ #: includes/row-settings.php:68 modules/content-slider/content-slider.php:332
1310
+ msgctxt "Background type."
1311
+ msgid "None"
1312
+ msgstr "لاشىء "
1313
+
1314
+ #: includes/row-settings.php:69
1315
+ msgctxt "Background type."
1316
+ msgid "Color"
1317
+ msgstr "لون "
1318
+
1319
+ #: includes/row-settings.php:70
1320
+ msgctxt "Background type."
1321
+ msgid "Photo"
1322
+ msgstr "صورة "
1323
+
1324
+ #: includes/row-settings.php:71
1325
+ msgctxt "Background type."
1326
+ msgid "Video"
1327
+ msgstr "فيديو "
1328
+
1329
+ #: includes/row-settings.php:73
1330
+ msgctxt "Background type."
1331
+ msgid "Slideshow"
1332
+ msgstr "معرض صور "
1333
+
1334
+ #: includes/row-settings.php:77
1335
+ msgctxt "Background type."
1336
+ msgid "Parallax"
1337
+ msgstr "إختلاف المنظر "
1338
+
1339
+ #: includes/row-settings.php:129 modules/content-slider/content-slider.php:353
1340
+ msgid "Background Photo"
1341
+ msgstr "صورة الخلفية "
1342
+
1343
+ #: includes/row-settings.php:133 includes/row-settings.php:321
1344
+ #: modules/callout/callout.php:314 modules/callout/callout.php:330
1345
+ #: modules/callout/callout.php:334 modules/content-slider/content-slider.php:329
1346
+ #: modules/content-slider/content-slider.php:398
1347
+ #: modules/content-slider/content-slider.php:710 modules/photo/photo.php:25
1348
+ #: modules/photo/photo.php:392
1349
+ msgid "Photo"
1350
+ msgstr "صورة "
1351
+
1352
+ #: includes/row-settings.php:140
1353
+ msgid "Repeat"
1354
+ msgstr "تكرار "
1355
+
1356
+ #: includes/row-settings.php:143
1357
+ msgctxt "Background repeat."
1358
+ msgid "None"
1359
+ msgstr "لاشىء "
1360
+
1361
+ #: includes/row-settings.php:144
1362
+ msgctxt "Background repeat."
1363
+ msgid "Tile"
1364
+ msgstr "قرميدة "
1365
+
1366
+ #: includes/row-settings.php:145
1367
+ msgctxt "Background repeat."
1368
+ msgid "Horizontal"
1369
+ msgstr "أفقي "
1370
+
1371
+ #: includes/row-settings.php:146
1372
+ msgctxt "Background repeat."
1373
+ msgid "Vertical"
1374
+ msgstr "رأسي "
1375
+
1376
+ #: includes/row-settings.php:148
1377
+ msgid ""
1378
+ "Repeat applies to how the image should display in the row background. Choosing "
1379
+ "none will display the image as uploaded. Tile will repeat the image as many "
1380
+ "times as needed to fill the row horizontally and vertically. You can also "
1381
+ "specify the image to only repeat horizontally or vertically."
1382
+ msgstr ""
1383
+ "يتم تكرار الصور رأسياً وأفقياً بناء على المحتوى لملء المكان . كذلك يمكنك اختيار "
1384
+ "التكرار أفقياً فقط أو رأسياً فقط . "
1385
+
1386
+ #: includes/row-settings.php:158
1387
+ msgid "Left Top"
1388
+ msgstr "أعلى اليسار "
1389
+
1390
+ #: includes/row-settings.php:159
1391
+ msgid "Left Center"
1392
+ msgstr "يسار المنتصف "
1393
+
1394
+ #: includes/row-settings.php:160
1395
+ msgid "Left Bottom"
1396
+ msgstr "أسفل اليسار "
1397
+
1398
+ #: includes/row-settings.php:161
1399
+ msgid "Right Top"
1400
+ msgstr "أعلى اليمين "
1401
+
1402
+ #: includes/row-settings.php:162
1403
+ msgid "Right Center"
1404
+ msgstr "منتصف اليمين "
1405
+
1406
+ #: includes/row-settings.php:163
1407
+ msgid "Right Bottom"
1408
+ msgstr "أسفل اليمين "
1409
+
1410
+ #: includes/row-settings.php:164
1411
+ msgid "Center Top"
1412
+ msgstr "اعلى المنتصف "
1413
+
1414
+ #: includes/row-settings.php:165 modules/button/button.php:176
1415
+ #: modules/callout/callout.php:249 modules/content-slider/content-slider.php:471
1416
+ #: modules/cta/cta.php:124 modules/heading/heading.php:90
1417
+ #: modules/heading/heading.php:162 modules/icon-group/icon-group.php:110
1418
+ #: modules/icon/icon.php:133 modules/photo/photo.php:418
1419
+ #: modules/social-buttons/social-buttons.php:100
1420
+ msgid "Center"
1421
+ msgstr "المنتصف "
1422
+
1423
+ #: includes/row-settings.php:166
1424
+ msgid "Center Bottom"
1425
+ msgstr "أسفل المنتصف "
1426
+
1427
+ #: includes/row-settings.php:168
1428
+ msgid "Position will tell the image where it should sit in the row background."
1429
+ msgstr "تحديد تموضع صورة الخلفية ."
1430
+
1431
+ #: includes/row-settings.php:175
1432
+ msgid "Attachment"
1433
+ msgstr "مرفقات "
1434
+
1435
+ #: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
1436
+ msgid "Scroll"
1437
+ msgstr "انتقل "
1438
+
1439
+ #: includes/row-settings.php:181
1440
+ msgid ""
1441
+ "Attachment will specify how the image reacts when scrolling a page. When "
1442
+ "scrolling is selected, the image will scroll with page scrolling. This is the "
1443
+ "default setting. Fixed will allow the image to scroll within the row background "
1444
+ "if fill is selected in the scale setting."
1445
+ msgstr ""
1446
+ "مرفق يفهم كيفية تفاعل الصورة عند تمرير الصفحة. عندما يتم تحديد التمرير ، فإن "
1447
+ "الصورة تنتقل مع الصفحة عند التمرير. هذا هو الإعداد الافتراضي . الصورة الثابتة "
1448
+ "تسمح للتمرير داخل الخلفية إذا تم تحديد تعبئة و إعداد مقياس ."
1449
+
1450
+ #: includes/row-settings.php:188
1451
+ msgid "Scale"
1452
+ msgstr "مقياس "
1453
+
1454
+ #: includes/row-settings.php:191
1455
+ msgctxt "Background scale."
1456
+ msgid "None"
1457
+ msgstr "لاشىء "
1458
+
1459
+ #: includes/row-settings.php:192
1460
+ msgid "Fit"
1461
+ msgstr "صالح "
1462
+
1463
+ #: includes/row-settings.php:193
1464
+ msgid "Fill"
1465
+ msgstr "تعبئة "
1466
+
1467
+ #: includes/row-settings.php:195
1468
+ msgid ""
1469
+ "Scale applies to how the image should display in the row background. You can "
1470
+ "select either fill or fit to the row background."
1471
+ msgstr ""
1472
+ "مقياس كيف يمكن عرض الصورة في الخلفية على التوالي. يمكنك تحديد إما ملء أو اختيار "
1473
+ "خلفية على التوالي."
1474
+
1475
+ #: includes/row-settings.php:203
1476
+ msgid "Background Video"
1477
+ msgstr "خلفية فيديو "
1478
+
1479
+ #: includes/row-settings.php:207 modules/content-slider/content-slider.php:330
1480
+ #: modules/video/video.php:19 modules/video/video.php:100
1481
+ msgid "Video"
1482
+ msgstr "فيديو "
1483
+
1484
+ #: includes/row-settings.php:208
1485
+ msgid ""
1486
+ "An HTML5 video to use as the background of this row. Supported types are MP4, "
1487
+ "WebM and Ogg."
1488
+ msgstr ""
1489
+ "فيديو HTML5 للإستخدام كخلفية لهذا الصف . الأنواع المعتمدة هي MP4،WebM ، Ogg"
1490
+
1491
+ #: includes/row-settings.php:215
1492
+ msgid "Fallback Photo"
1493
+ msgstr "صور مرجعية "
1494
+
1495
+ #: includes/row-settings.php:216
1496
+ msgid "A photo that will be displayed if the video fails to load."
1497
+ msgstr "الصورة التي سيتم عرضها إذا فشل الفيديو فى التحميل ."
1498
+
1499
+ #: includes/row-settings.php:224
1500
+ msgid "Background Slideshow"
1501
+ msgstr "خلفية معرض صور "
1502
+
1503
+ #: includes/row-settings.php:228 modules/gallery/gallery.php:234
1504
+ #: modules/slideshow/slideshow.php:263
1505
+ msgid "Source"
1506
+ msgstr "المصدر "
1507
+
1508
+ #: includes/row-settings.php:231 modules/gallery/gallery.php:237
1509
+ #: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
1510
+ #: modules/video/video.php:86
1511
+ msgid "Media Library"
1512
+ msgstr "مكتبة الوسائط "
1513
+
1514
+ #: includes/row-settings.php:234 modules/gallery/gallery.php:240
1515
+ #: modules/slideshow/slideshow.php:269
1516
+ msgid ""
1517
+ "Pull images from the WordPress media library or a gallery on your SmugMug site "
1518
+ "by inserting the RSS feed URL from SmugMug. The RSS feed URL can be accessed by "
1519
+ "using the get a link function in your SmugMug gallery."
1520
+ msgstr ""
1521
+ "تستطيع استخدام الصور من مكتبة الوسائط الخاصة بالووردبريس او جلب رابط خارجى او "
1522
+ "رابط تغذيات موقعك او من معرض الصور ."
1523
+
1524
+ #: includes/row-settings.php:249 modules/gallery/gallery.php:252
1525
+ #: modules/slideshow/slideshow.php:281
1526
+ msgid "Photos"
1527
+ msgstr "صور "
1528
+
1529
+ #: includes/row-settings.php:256 modules/gallery/gallery.php:256
1530
+ #: modules/slideshow/slideshow.php:285
1531
+ msgid "Feed URL"
1532
+ msgstr "رابط تغذية "
1533
+
1534
+ #: includes/row-settings.php:263 includes/row-settings.php:328
1535
+ #: modules/slideshow/slideshow.php:382
1536
+ msgid "Speed"
1537
+ msgstr "سرعة "
1538
+
1539
+ #: includes/row-settings.php:273 modules/content-slider/content-slider.php:231
1540
+ #: modules/slideshow/slideshow.php:389 modules/testimonials/testimonials.php:99
1541
+ msgid "Transition"
1542
+ msgstr "انتقال "
1543
+
1544
+ #: includes/row-settings.php:276
1545
+ msgctxt "Slideshow transition type."
1546
+ msgid "None"
1547
+ msgstr "لاشىء "
1548
+
1549
+ #: includes/row-settings.php:277 modules/content-slider/content-slider.php:235
1550
+ #: modules/slideshow/slideshow.php:393 modules/testimonials/testimonials.php:103
1551
+ msgid "Fade"
1552
+ msgstr "تلاشي "
1553
+
1554
+ #: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
1555
+ msgid "Ken Burns"
1556
+ msgstr "Ken Burns"
1557
+
1558
+ #: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
1559
+ msgid "Slide Horizontal"
1560
+ msgstr "الشرائح الأفقية "
1561
+
1562
+ #: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
1563
+ msgid "Slide Vertical"
1564
+ msgstr "الشرائح الرأسية"
1565
+
1566
+ #: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
1567
+ msgid "Blinds"
1568
+ msgstr "الستائر "
1569
+
1570
+ #: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
1571
+ msgid "Bars"
1572
+ msgstr "الأشرطة "
1573
+
1574
+ #: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
1575
+ msgid "Random Bars"
1576
+ msgstr "أشرطة عشوائية "
1577
+
1578
+ #: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
1579
+ msgid "Boxes"
1580
+ msgstr "صناديق "
1581
+
1582
+ #: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
1583
+ msgid "Random Boxes"
1584
+ msgstr "صناديق عشوائية "
1585
+
1586
+ #: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
1587
+ msgid "Boxes Grow"
1588
+ msgstr "صناديق تنمو "
1589
+
1590
+ #: includes/row-settings.php:294 modules/content-slider/content-slider.php:240
1591
+ #: modules/slideshow/slideshow.php:407 modules/testimonials/testimonials.php:108
1592
+ msgid "Transition Speed"
1593
+ msgstr "سرعة الإنتقال "
1594
+
1595
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
1596
+ msgid "Randomize Photos"
1597
+ msgstr "صور عشوائية "
1598
+
1599
+ #: includes/row-settings.php:317
1600
+ msgid "Background Parallax"
1601
+ msgstr "خلفية المنظر "
1602
+
1603
+ #: includes/row-settings.php:331
1604
+ msgid "Fast"
1605
+ msgstr "بسرعة "
1606
+
1607
+ #: includes/row-settings.php:332
1608
+ msgctxt "Speed."
1609
+ msgid "Medium"
1610
+ msgstr "متوسطة "
1611
+
1612
+ #: includes/row-settings.php:333
1613
+ msgid "Slow"
1614
+ msgstr "ببطىء "
1615
+
1616
+ #: includes/row-settings.php:457
1617
+ msgid "Add a custom CSS selector here to apply additional styling to this row."
1618
+ msgstr "أضف تنسيق مخصص ليتم تطبيقه على هذا الصف . "
1619
+
1620
+ #: includes/row-settings.php:473
1621
+ msgid "Choose whether to show or hide this row at different device sizes."
1622
+ msgstr "إختيار الظهور أو الإخفاء بناء على أحجام الأجهزة المختلفة . "
1623
+
1624
+ #: includes/settings.php:62
1625
+ msgid "Save"
1626
+ msgstr "حفظ "
1627
+
1628
+ #: includes/template-selector.php:3
1629
+ msgid "Layout Templates"
1630
+ msgstr "تخطيط القوالب "
1631
+
1632
+ #: includes/template-selector.php:8
1633
+ msgid "Home Pages"
1634
+ msgstr "الصفحة الرئيسية "
1635
+
1636
+ #: includes/template-selector.php:9
1637
+ msgid "Content Pages"
1638
+ msgstr "صفحة المحتوى "
1639
+
1640
+ #: includes/template-selector.php:13
1641
+ msgid "Your Templates"
1642
+ msgstr "قالبك "
1643
+
1644
+ #: includes/template-selector.php:47 includes/template-selector.php:77
1645
+ msgctxt "Template name."
1646
+ msgid "Blank"
1647
+ msgstr "فارغ "
1648
+
1649
+ #: includes/template-selector.php:72
1650
+ msgid ""
1651
+ "You haven't saved any templates yet! To do so, create a layout and save it as a "
1652
+ "template under <strong>Tools &rarr; Save Template</strong>."
1653
+ msgstr ""
1654
+ "لم تحفظ أى قوالب حتى الآن! للقيام بذلك, قم بإنشاء تخطيط وحفظه كقالب ضمن "
1655
+ "<strong>أدوات &rarr; حفظ القالب </strong>."
1656
+
1657
+ #: includes/template-settings.php:14 includes/user-template-settings.php:15
1658
+ msgctxt "Template name."
1659
+ msgid "Name"
1660
+ msgstr "الإسم "
1661
+
1662
+ #: includes/template-settings.php:18
1663
+ msgid "Image Filename"
1664
+ msgstr "اسم ملف الصورة "
1665
+
1666
+ #: includes/template-settings.php:19
1667
+ msgid ""
1668
+ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
1669
+ "templates/\" directory."
1670
+ msgstr ""
1671
+ "اسم الملف للصورة مثل \"thumb.jpg\" التي تتواجد في \"img/templates/\" دليل."
1672
+
1673
+ #: includes/ui.php:7
1674
+ #, php-format
1675
+ msgid "Template: %s"
1676
+ msgstr "قالب : %s"
1677
+
1678
+ #: includes/ui.php:23
1679
+ msgid "Page Builder Demo"
1680
+ msgstr "منشىء صفحات تجريبى"
1681
+
1682
+ #: includes/ui.php:37
1683
+ msgid "Buy Now!"
1684
+ msgstr "إشترى الآن! "
1685
+
1686
+ #: includes/ui.php:39
1687
+ msgid "Upgrade!"
1688
+ msgstr "ترقية! "
1689
+
1690
+ #: includes/ui.php:41
1691
+ msgid "Done"
1692
+ msgstr "انتهي "
1693
+
1694
+ #: includes/ui.php:42
1695
+ msgid "Tools"
1696
+ msgstr "أدوات "
1697
+
1698
+ #: includes/ui.php:46
1699
+ msgid "Add Content"
1700
+ msgstr "إضافة محتوى "
1701
+
1702
+ #: includes/ui.php:64
1703
+ msgid "Row Layouts"
1704
+ msgstr "تخطيط صف "
1705
+
1706
+ #: includes/ui.php:68
1707
+ msgid "1 Column"
1708
+ msgstr "عمود 1"
1709
+
1710
+ #: includes/ui.php:69
1711
+ msgid "2 Columns"
1712
+ msgstr "2 أعمدة"
1713
+
1714
+ #: includes/ui.php:70
1715
+ msgid "3 Columns"
1716
+ msgstr "3 أعمدة "
1717
+
1718
+ #: includes/ui.php:71
1719
+ msgid "4 Columns"
1720
+ msgstr "4 أعمدة "
1721
+
1722
+ #: includes/ui.php:72
1723
+ msgid "5 Columns"
1724
+ msgstr "5 أعمدة "
1725
+
1726
+ #: includes/ui.php:73
1727
+ msgid "6 Columns"
1728
+ msgstr "6 أعمدة "
1729
+
1730
+ #: includes/ui.php:74
1731
+ msgid "Left Sidebar"
1732
+ msgstr "الشريط الجانبي يساراً"
1733
+
1734
+ #: includes/ui.php:75
1735
+ msgid "Right Sidebar"
1736
+ msgstr "الشريط الجانبي يميناً "
1737
+
1738
+ #: includes/ui.php:76
1739
+ msgid "Left &amp; Right Sidebar"
1740
+ msgstr "يساراً و الشريط الجانبي يميناً"
1741
+
1742
+ #: includes/ui.php:85 modules/widget/widget.php:16
1743
+ msgid "WordPress Widgets"
1744
+ msgstr "قطع جانبية للووردبريس "
1745
+
1746
+ #: includes/updater/classes/class-fl-updater.php:107
1747
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
1748
+ msgstr "<strong>التحديث غير متاح!</strong>"
1749
+
1750
+ #: includes/updater/classes/class-fl-updater.php:109
1751
+ msgid "Please subscribe to enable automatic updates for this plugin."
1752
+ msgstr "يرجى الاشتراك لتمكين التحديثات التلقائية لهذه الإضافة."
1753
+
1754
+ #: includes/updater/classes/class-fl-updater.php:111
1755
+ #: includes/updater/includes/form.php:6
1756
+ msgid "Subscribe Now"
1757
+ msgstr "اشترك الآن "
1758
+
1759
+ #: includes/updater/includes/form.php:5
1760
+ msgid ""
1761
+ "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable "
1762
+ "automatic updates."
1763
+ msgstr ""
1764
+ "التحديث غير متاح! يرجى الإشتراك أو أدخل مفتاح الترخيص الخاص بك أدناه لتمكين "
1765
+ "التحديثات التلقائية."
1766
+
1767
+ #: includes/updater/includes/form.php:11
1768
+ msgid "Updates &amp; Support Subscription"
1769
+ msgstr "تحديثات و دعم الإشتراك "
1770
+
1771
+ #: includes/updater/includes/form.php:14
1772
+ msgid "Active!"
1773
+ msgstr "مفعل! "
1774
+
1775
+ #: includes/updater/includes/form.php:16
1776
+ msgid "Not Active!"
1777
+ msgstr "غير مفعل! "
1778
+
1779
+ #: includes/updater/includes/form.php:22
1780
+ msgid "Email address saved!"
1781
+ msgstr "تم حفظ البريد الإلكتروني! "
1782
+
1783
+ #: includes/updater/includes/form.php:27
1784
+ #, php-format
1785
+ msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
1786
+ msgstr "أدخل <a%s>مفتاح الترخيص</a> لتمكين التحديثات و الدعم."
1787
+
1788
+ #: includes/updater/includes/form.php:39
1789
+ msgid "Save Subscription Settings"
1790
+ msgstr "حفظ إعدادات الإشتراك "
1791
+
1792
+ #: includes/user-template-settings.php:8
1793
+ msgid ""
1794
+ "Save the current layout as a template that can be reused under "
1795
+ "<strong>Templates &rarr; Your Templates</strong>."
1796
+ msgstr ""
1797
+ "حفظ التخطيط الحالي كقالب يمكن إعادة استخدامه ضمن <strong>قوالب &rarr; قوالبك</"
1798
+ "strong>."
1799
+
1800
+ #: modules/accordion/accordion.php:14
1801
+ msgid "Accordion"
1802
+ msgstr "أكورديون"
1803
+
1804
+ #: modules/accordion/accordion.php:15
1805
+ msgid "Display a collapsible accordion of items."
1806
+ msgstr "عرض الأكورديون لطي البنود."
1807
+
1808
+ #: modules/accordion/accordion.php:16 modules/button/button.php:16
1809
+ #: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
1810
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
1811
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
1812
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
1813
+ #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
1814
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
1815
+ #: modules/slideshow/slideshow.php:16
1816
+ #: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
1817
+ #: modules/testimonials/testimonials.php:16
1818
+ #: modules/woocommerce/woocommerce.php:18
1819
+ msgid "Advanced Modules"
1820
+ msgstr "وحدات متقدمة "
1821
+
1822
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
1823
+ msgid "Items"
1824
+ msgstr "بنود "
1825
+
1826
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
1827
+ msgid "Item"
1828
+ msgstr "بند "
1829
+
1830
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
1831
+ msgid "Border Color"
1832
+ msgstr "لون الإطار "
1833
+
1834
+ #: modules/accordion/accordion.php:62
1835
+ msgid "Label Size"
1836
+ msgstr "حجم ا لملصق "
1837
+
1838
+ #: modules/accordion/accordion.php:65
1839
+ msgctxt "Label size."
1840
+ msgid "Small"
1841
+ msgstr "صغير "
1842
+
1843
+ #: modules/accordion/accordion.php:66
1844
+ msgctxt "Label size."
1845
+ msgid "Medium"
1846
+ msgstr "متوسط "
1847
+
1848
+ #: modules/accordion/accordion.php:67
1849
+ msgctxt "Label size."
1850
+ msgid "Large"
1851
+ msgstr "كبير "
1852
+
1853
+ #: modules/accordion/accordion.php:75
1854
+ msgid "Item Spacing"
1855
+ msgstr "تباعد البند "
1856
+
1857
+ #: modules/accordion/accordion.php:86
1858
+ msgid "Collapse Inactive"
1859
+ msgstr "طي غير فعال "
1860
+
1861
+ #: modules/accordion/accordion.php:92
1862
+ msgid ""
1863
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
1864
+ "multiple items to be open at the same time."
1865
+ msgstr ""
1866
+ "اختر نعم لتفعيل فتح بند واحد فى نفس الوقت ، اختر لا اذا كنت تريد فتح أكثر من "
1867
+ "بند فى نفس الوقت . "
1868
+
1869
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
1870
+ msgid "Add Item"
1871
+ msgstr "إضافة بند "
1872
+
1873
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
1874
+ msgid "Label"
1875
+ msgstr "ملصق "
1876
+
1877
+ #: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
1878
+ #: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
1879
+ #: modules/tabs/tabs.php:89
1880
+ msgid "Content"
1881
+ msgstr "محتوى "
1882
+
1883
+ #: modules/button/button.php:14 modules/callout/callout.php:477
1884
+ #: modules/content-slider/content-slider.php:595 modules/cta/cta.php:212
1885
+ #: modules/pricing-table/pricing-table.php:129
1886
+ msgid "Button"
1887
+ msgstr "زر "
1888
+
1889
+ #: modules/button/button.php:15
1890
+ msgid "A simple call to action button."
1891
+ msgstr "دعوة بسيطة ل عمل زر ."
1892
+
1893
+ #: modules/button/button.php:54 modules/cta/cta.php:220
1894
+ msgid "Click Here"
1895
+ msgstr "إضغط هنا "
1896
+
1897
+ #: modules/button/button.php:62 modules/callout/callout.php:315
1898
+ #: modules/callout/callout.php:363 modules/callout/callout.php:367
1899
+ #: modules/cta/cta.php:228 modules/icon-group/icon-group.php:34
1900
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
1901
+ #: modules/icon/icon.php:34
1902
+ msgid "Icon"
1903
+ msgstr "أيكون "
1904
+
1905
+ #: modules/button/button.php:68 modules/button/button.php:72
1906
+ #: modules/callout/callout.php:443 modules/callout/callout.php:447
1907
+ #: modules/content-slider/content-slider.php:567
1908
+ #: modules/content-slider/content-slider.php:571
1909
+ #: modules/content-slider/content-slider.php:594 modules/cta/cta.php:238
1910
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47
1911
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
1912
+ #: modules/slideshow/slideshow.php:343
1913
+ msgid "Link"
1914
+ msgstr "رابط "
1915
+
1916
+ #: modules/button/button.php:73
1917
+ msgid "http://www.example.com"
1918
+ msgstr "http://www.example.com"
1919
+
1920
+ #: modules/button/button.php:80 modules/callout/callout.php:455
1921
+ #: modules/content-slider/content-slider.php:576 modules/cta/cta.php:245
1922
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
1923
+ #: modules/photo/photo.php:478
1924
+ msgid "Link Target"
1925
+ msgstr "إتجاه الرابط "
1926
+
1927
+ #: modules/button/button.php:83 modules/callout/callout.php:458
1928
+ #: modules/content-slider/content-slider.php:579 modules/cta/cta.php:248
1929
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
1930
+ #: modules/photo/photo.php:481
1931
+ msgid "Same Window"
1932
+ msgstr "نفس النافذة "
1933
+
1934
+ #: modules/button/button.php:84 modules/callout/callout.php:459
1935
+ #: modules/content-slider/content-slider.php:580 modules/cta/cta.php:249
1936
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
1937
+ #: modules/photo/photo.php:482
1938
+ msgid "New Window"
1939
+ msgstr "نافذة جديدة "
1940
+
1941
+ #: modules/button/button.php:98 modules/cta/cta.php:185
1942
+ #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
1943
+ #: modules/icon/icon.php:78
1944
+ msgid "Colors"
1945
+ msgstr "الألوان "
1946
+
1947
+ #: modules/button/button.php:108 modules/callout/callout.php:407
1948
+ #: modules/callout/callout.php:512 modules/content-slider/content-slider.php:630
1949
+ #: modules/cta/cta.php:268 modules/icon-group/icon-group.php:69
1950
+ #: modules/icon/icon.php:100
1951
+ msgid "Background Hover Color"
1952
+ msgstr "لون الخلفية عند مرور الماوس "
1953
+
1954
+ #: modules/button/button.php:117 modules/callout/callout.php:521
1955
+ #: modules/content-slider/content-slider.php:522
1956
+ #: modules/content-slider/content-slider.php:635
1957
+ #: modules/content-slider/content-slider.php:719 modules/cta/cta.php:189
1958
+ #: modules/cta/cta.php:277 modules/heading/heading.php:77
1959
+ msgid "Text Color"
1960
+ msgstr "لون النص "
1961
+
1962
+ #: modules/button/button.php:123 modules/callout/callout.php:527
1963
+ #: modules/content-slider/content-slider.php:641 modules/cta/cta.php:283
1964
+ msgid "Text Hover Color"
1965
+ msgstr "لون النص عند مرور الماوس "
1966
+
1967
+ #: modules/button/button.php:132 modules/callout/callout.php:415
1968
+ #: modules/callout/callout.php:536 modules/content-slider/content-slider.php:646
1969
+ #: modules/cta/cta.php:292 modules/icon-group/icon-group.php:77
1970
+ #: modules/icon/icon.php:108
1971
+ msgid "Gradient"
1972
+ msgstr "تدرج لوني "
1973
+
1974
+ #: modules/button/button.php:142 modules/callout/callout.php:242
1975
+ #: modules/cta/cta.php:102 modules/heading/heading.php:82
1976
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
1977
+ msgid "Structure"
1978
+ msgstr "هيكل "
1979
+
1980
+ #: modules/button/button.php:149 modules/callout/callout.php:553
1981
+ msgctxt "Width."
1982
+ msgid "Auto"
1983
+ msgstr "تلقائي "
1984
+
1985
+ #: modules/button/button.php:165
1986
+ msgid "Custom Width"
1987
+ msgstr "عرض مخصص "
1988
+
1989
+ #: modules/button/button.php:173 modules/cta/cta.php:120
1990
+ #: modules/heading/heading.php:86 modules/heading/heading.php:141
1991
+ #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
1992
+ #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
1993
+ msgid "Alignment"
1994
+ msgstr "محاذاة "
1995
+
1996
+ #: modules/button/button.php:183 modules/callout/callout.php:559
1997
+ #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:306
1998
+ #: modules/heading/heading.php:114 modules/heading/heading.php:171
1999
+ msgid "Font Size"
2000
+ msgstr "حجم الخط "
2001
+
2002
+ #: modules/button/button.php:199 modules/callout/callout.php:575
2003
+ #: modules/cta/cta.php:322
2004
+ msgid "Round Corners"
2005
+ msgstr "تدوير الزوايا "
2006
+
2007
+ #: modules/callout/callout.php:14
2008
+ msgid "Callout"
2009
+ msgstr "ترويج "
2010
+
2011
+ #: modules/callout/callout.php:15
2012
+ msgid "A heading and snippet of text with an optional link, icon and image."
2013
+ msgstr "العنوان و جزء من النص مع رابط اختياري، أيقونه و الصورة."
2014
+
2015
+ #: modules/callout/callout.php:214 modules/content-slider/content-slider.php:407
2016
+ #: modules/content-slider/content-slider.php:422 modules/cta/cta.php:72
2017
+ #: modules/heading/heading.php:14 modules/heading/heading.php:33
2018
+ #: modules/testimonials/testimonials.php:56
2019
+ #: modules/testimonials/testimonials.php:61
2020
+ msgid "Heading"
2021
+ msgstr "عنوان "
2022
+
2023
+ #: modules/callout/callout.php:246
2024
+ msgid "Overall Alignment"
2025
+ msgstr "محاذاة شاملة"
2026
+
2027
+ #: modules/callout/callout.php:253
2028
+ msgid "The alignment that will apply to all elements within the callout."
2029
+ msgstr "المحاذاة التي سيتم تطبيقها على جميع العناصر داخل وسيلة الترويج ."
2030
+
2031
+ #: modules/callout/callout.php:261 modules/cta/cta.php:145
2032
+ msgid "Heading Structure"
2033
+ msgstr "هيكلة العنوان "
2034
+
2035
+ #: modules/callout/callout.php:265 modules/content-slider/content-slider.php:426
2036
+ #: modules/cta/cta.php:149
2037
+ msgid "Heading Tag"
2038
+ msgstr "الكلمات الدلالية للهيد "
2039
+
2040
+ #: modules/callout/callout.php:278 modules/content-slider/content-slider.php:439
2041
+ #: modules/content-slider/content-slider.php:453 modules/cta/cta.php:162
2042
+ #: modules/testimonials/testimonials.php:69
2043
+ msgid "Heading Size"
2044
+ msgstr "حجم العنوان "
2045
+
2046
+ #: modules/callout/callout.php:292 modules/cta/cta.php:176
2047
+ msgid "Heading Custom Size"
2048
+ msgstr "حجم مخصص للعنوان "
2049
+
2050
+ #: modules/callout/callout.php:310
2051
+ msgid "Image Type"
2052
+ msgstr "نوع الصورة "
2053
+
2054
+ #: modules/callout/callout.php:313
2055
+ msgctxt "Image type."
2056
+ msgid "None"
2057
+ msgstr "لاشىء "
2058
+
2059
+ #: modules/callout/callout.php:338 modules/photo/photo.php:401
2060
+ #: modules/slideshow/slideshow.php:312
2061
+ msgid "Crop"
2062
+ msgstr "قص "
2063
+
2064
+ #: modules/callout/callout.php:341
2065
+ msgctxt "Crop"
2066
+ msgid "None"
2067
+ msgstr "لاشىء "
2068
+
2069
+ #: modules/callout/callout.php:342 modules/photo/photo.php:405
2070
+ msgid "Landscape"
2071
+ msgstr "صور الطبيعة "
2072
+
2073
+ #: modules/callout/callout.php:343 modules/photo/photo.php:406
2074
+ msgid "Panorama"
2075
+ msgstr "بانوراما "
2076
+
2077
+ #: modules/callout/callout.php:344 modules/photo/photo.php:407
2078
+ msgid "Portrait"
2079
+ msgstr "صورة "
2080
+
2081
+ #: modules/callout/callout.php:345 modules/photo/photo.php:408
2082
+ msgid "Square"
2083
+ msgstr "مربع "
2084
+
2085
+ #: modules/callout/callout.php:346 modules/photo/photo.php:409
2086
+ msgid "Circle"
2087
+ msgstr "دائرة "
2088
+
2089
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
2090
+ msgid "Above Heading"
2091
+ msgstr "فوق العنوان "
2092
+
2093
+ #: modules/callout/callout.php:355 modules/callout/callout.php:375
2094
+ msgid "Below Heading"
2095
+ msgstr "تحت العنوان "
2096
+
2097
+ #: modules/callout/callout.php:356 modules/callout/callout.php:378
2098
+ msgid "Left of Text and Heading"
2099
+ msgstr "يسار النص والعنوان "
2100
+
2101
+ #: modules/callout/callout.php:357 modules/callout/callout.php:379
2102
+ msgid "Right of Text and Heading"
2103
+ msgstr "يمين النص والعنوان "
2104
+
2105
+ #: modules/callout/callout.php:376
2106
+ msgid "Left of Heading"
2107
+ msgstr "يسار العنوان "
2108
+
2109
+ #: modules/callout/callout.php:377
2110
+ msgid "Right of Heading"
2111
+ msgstr "يمين العنوان "
2112
+
2113
+ #: modules/callout/callout.php:385
2114
+ msgid "Icon Colors"
2115
+ msgstr "لون الأيقونة "
2116
+
2117
+ #: modules/callout/callout.php:394 modules/icon-group/icon-group.php:56
2118
+ #: modules/icon/icon.php:87
2119
+ msgid "Hover Color"
2120
+ msgstr "اللون عند مرور الماوس "
2121
+
2122
+ #: modules/callout/callout.php:425
2123
+ msgid "Icon Structure"
2124
+ msgstr "هيكلة الأيقونة "
2125
+
2126
+ #: modules/callout/callout.php:429 modules/icon-group/icon-group.php:91
2127
+ #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
2128
+ msgid "Size"
2129
+ msgstr "الحجم "
2130
+
2131
+ #: modules/callout/callout.php:440 modules/content-slider/content-slider.php:564
2132
+ msgid "Call To Action"
2133
+ msgstr "إستدعاء التحريك "
2134
+
2135
+ #: modules/callout/callout.php:448
2136
+ msgid ""
2137
+ "The link applies to the entire module. If choosing a call to action type below, "
2138
+ "this link will also be used for the text or button."
2139
+ msgstr ""
2140
+ "ينطبق الارتباط على الوحدة كاملة . اذا كان اختيارك إستدعاء التحريك أدناه، سيتم "
2141
+ "استخدام هذا الرابط للنص أو الأزرار ."
2142
+
2143
+ #: modules/callout/callout.php:468 modules/content-slider/content-slider.php:586
2144
+ #: modules/cta/cta.php:14
2145
+ msgid "Call to Action"
2146
+ msgstr "إستدعاء التحريك "
2147
+
2148
+ #: modules/callout/callout.php:475 modules/content-slider/content-slider.php:593
2149
+ msgctxt "Call to action."
2150
+ msgid "None"
2151
+ msgstr "لاشىء "
2152
+
2153
+ #: modules/callout/callout.php:496 modules/content-slider/content-slider.php:614
2154
+ msgid "Button Icon"
2155
+ msgstr "أيقونة الزر"
2156
+
2157
+ #: modules/callout/callout.php:502 modules/content-slider/content-slider.php:620
2158
+ #: modules/cta/cta.php:258
2159
+ msgid "Button Colors"
2160
+ msgstr "ألوان الزر"
2161
+
2162
+ #: modules/callout/callout.php:546 modules/content-slider/content-slider.php:656
2163
+ #: modules/cta/cta.php:302
2164
+ msgid "Button Structure"
2165
+ msgstr "هيكلة الزر "
2166
+
2167
+ #: modules/callout/callout.php:550
2168
+ msgid "Button Width"
2169
+ msgstr "عرض الزر "
2170
+
2171
+ #: modules/contact-form/contact-form.php:14
2172
+ msgid "Contact Form"
2173
+ msgstr "نموذج الإتصال "
2174
+
2175
+ #: modules/contact-form/contact-form.php:15
2176
+ msgid "A very simple contact form."
2177
+ msgstr "نموذج اتصال بسيط جداً . "
2178
+
2179
+ #: modules/contact-form/contact-form.php:36
2180
+ msgid "Contact Form Submission"
2181
+ msgstr "تقديم إستمارة الإتصال "
2182
+
2183
+ #: modules/contact-form/contact-form.php:64
2184
+ msgid "Send To Email"
2185
+ msgstr "إرسال الى البريد الإلكتروني "
2186
+
2187
+ #: modules/contact-form/contact-form.php:66
2188
+ msgid "example@mail.com"
2189
+ msgstr "example@mail.com"
2190
+
2191
+ #: modules/contact-form/contact-form.php:67
2192
+ msgid "The contact form will send to this e-mail"
2193
+ msgstr "هذه الإستمارة يتم إرسالها الى هذا البريد الإلكتروني "
2194
+
2195
+ #: modules/contact-form/includes/frontend.php:4
2196
+ msgctxt "Contact form field label."
2197
+ msgid "Name"
2198
+ msgstr "الإسم "
2199
+
2200
+ #: modules/contact-form/includes/frontend.php:5
2201
+ msgid "Please enter your name."
2202
+ msgstr "من فضلك أدخل إسمك "
2203
+
2204
+ #: modules/contact-form/includes/frontend.php:6
2205
+ msgid "Your name"
2206
+ msgstr "إسمك "
2207
+
2208
+ #: modules/contact-form/includes/frontend.php:10
2209
+ msgid "Email"
2210
+ msgstr "البريد الإلكتروني "
2211
+
2212
+ #: modules/contact-form/includes/frontend.php:11
2213
+ msgid "Please enter a valid email."
2214
+ msgstr "من فضلك أدخل البريد الإلكتروني "
2215
+
2216
+ #: modules/contact-form/includes/frontend.php:12
2217
+ msgid "Your email"
2218
+ msgstr "بريدك الإلكتروني "
2219
+
2220
+ #: modules/contact-form/includes/frontend.php:16
2221
+ msgid "Your Message"
2222
+ msgstr "رسالتك "
2223
+
2224
+ #: modules/contact-form/includes/frontend.php:17
2225
+ msgid "Please enter a message."
2226
+ msgstr "من فضلك أدخل رسالتك "
2227
+
2228
+ #: modules/contact-form/includes/frontend.php:18
2229
+ msgid "Your message"
2230
+ msgstr "رسالتك "
2231
+
2232
+ #: modules/contact-form/includes/frontend.php:23
2233
+ msgid "Send"
2234
+ msgstr "إرسال "
2235
+
2236
+ #: modules/contact-form/includes/frontend.php:24
2237
+ msgid "Message Sent!"
2238
+ msgstr "تم إرسال الرسالة "
2239
+
2240
+ #: modules/contact-form/includes/frontend.php:25
2241
+ msgid "Message failed. Please try again."
2242
+ msgstr "لم يتم الإرسال . من فضلك أعد المحاولة . "
2243
+
2244
+ #: modules/content-slider/content-slider.php:14
2245
+ msgid "Content Slider"
2246
+ msgstr "محتوي الشرائح"
2247
+
2248
+ #: modules/content-slider/content-slider.php:15
2249
+ msgid "Displays multiple slides with an optional heading and call to action."
2250
+ msgstr "يتم عرض عدة شرائح مع عنوان إختيارى ويتم إستدعاء الحركة . "
2251
+
2252
+ #: modules/content-slider/content-slider.php:191 modules/map/map.php:41
2253
+ #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
2254
+ msgid "Height"
2255
+ msgstr "إرتفاع "
2256
+
2257
+ #: modules/content-slider/content-slider.php:196
2258
+ msgid ""
2259
+ "This setting is the minimum height of the content slider. Content will expand "
2260
+ "the height automatically."
2261
+ msgstr ""
2262
+ "هذا الإعداد هو الحد الأدنى لإرتفاع محتوى عارض الشرائح ويتم تمديد الإرتفااع "
2263
+ "تلقائياً . "
2264
+
2265
+ #: modules/content-slider/content-slider.php:200
2266
+ #: modules/slideshow/slideshow.php:373 modules/testimonials/testimonials.php:82
2267
+ #: modules/video/video.php:108
2268
+ msgid "Auto Play"
2269
+ msgstr "تشغيل تلقائي "
2270
+
2271
+ #: modules/content-slider/content-slider.php:214
2272
+ msgid "Show Play/Pause"
2273
+ msgstr "عرض تشغيل/إيقاف"
2274
+
2275
+ #: modules/content-slider/content-slider.php:234
2276
+ #: modules/testimonials/testimonials.php:102
2277
+ msgctxt "Transition type."
2278
+ msgid "Slide"
2279
+ msgstr "شريحة "
2280
+
2281
+ #: modules/content-slider/content-slider.php:248
2282
+ #: modules/testimonials/testimonials.php:121
2283
+ msgid "Show Arrows"
2284
+ msgstr "عرض أزرار الإنتقال "
2285
+
2286
+ #: modules/content-slider/content-slider.php:257
2287
+ #: modules/testimonials/testimonials.php:151
2288
+ msgid "Show Dots"
2289
+ msgstr "مشاهدة النقاط "
2290
+
2291
+ #: modules/content-slider/content-slider.php:271
2292
+ msgid "Max Content Width"
2293
+ msgstr "الحد الأقصى لعرض المحتوي "
2294
+
2295
+ #: modules/content-slider/content-slider.php:276
2296
+ msgid "The max width that the content area will be within your slides."
2297
+ msgstr "الحد الأقصى لعرض منطقة محتوي الشرائح . "
2298
+
2299
+ #: modules/content-slider/content-slider.php:283
2300
+ msgid "Slides"
2301
+ msgstr "الشرائح "
2302
+
2303
+ #: modules/content-slider/content-slider.php:290
2304
+ msgid "Slide"
2305
+ msgstr "شريحة "
2306
+
2307
+ #: modules/content-slider/content-slider.php:305
2308
+ msgid "Slide Settings"
2309
+ msgstr "اعدادات الشريحة "
2310
+
2311
+ #: modules/content-slider/content-slider.php:315
2312
+ msgid "Slide Label"
2313
+ msgstr "ملصق الشريحة "
2314
+
2315
+ #: modules/content-slider/content-slider.php:316
2316
+ msgid ""
2317
+ "A label to identify this slide on the Slides tab of the Content Slider settings."
2318
+ msgstr "تسمية لتحديد هذه الشريحة في علامة التبويب من إعدادات عارض الشرائح . "
2319
+
2320
+ #: modules/content-slider/content-slider.php:321
2321
+ msgid "Background Layout"
2322
+ msgstr "تخطيط الخلفية "
2323
+
2324
+ #: modules/content-slider/content-slider.php:327
2325
+ msgid "This setting is for the entire background of your slide."
2326
+ msgstr "هذا الإعداد لإدخال صورة الشريحة . "
2327
+
2328
+ #: modules/content-slider/content-slider.php:362
2329
+ msgid "Background Video Code"
2330
+ msgstr "كود خلفية الفيديو "
2331
+
2332
+ #: modules/content-slider/content-slider.php:368
2333
+ msgid "Content Layout"
2334
+ msgstr "تخطيط المحتوي "
2335
+
2336
+ #: modules/content-slider/content-slider.php:374
2337
+ msgid ""
2338
+ "This allows you to add content over or in addition to the background selection "
2339
+ "above. The location of the content layout can be selected in the style tab."
2340
+ msgstr ""
2341
+ "هذا يسمح لك بإضافة المحتوى أو إختيار خلفية محددة للإضافة عليها. يمكن تحديد موقع "
2342
+ "تخطيط المحتوى من تنسيق علامة التبويب ."
2343
+
2344
+ #: modules/content-slider/content-slider.php:377
2345
+ msgid "Text &amp; Photo"
2346
+ msgstr "نص و صورة "
2347
+
2348
+ #: modules/content-slider/content-slider.php:378
2349
+ msgid "Text &amp; Video"
2350
+ msgstr "نص و فيديو "
2351
+
2352
+ #: modules/content-slider/content-slider.php:379
2353
+ msgctxt "Content type."
2354
+ msgid "None"
2355
+ msgstr "لاشىء "
2356
+
2357
+ #: modules/content-slider/content-slider.php:402 modules/video/video.php:132
2358
+ msgid "Video Embed Code"
2359
+ msgstr "تضمين كود الفديو "
2360
+
2361
+ #: modules/content-slider/content-slider.php:462
2362
+ msgid "Text Position"
2363
+ msgstr "موضع النص "
2364
+
2365
+ #: modules/content-slider/content-slider.php:468
2366
+ msgid ""
2367
+ "The position will move the content layout selections left, right or center over "
2368
+ "the background of the slide."
2369
+ msgstr ""
2370
+ "هذا التموضع يسمح بتحريك المحتوي المحدد يساراً ، يميناً أو فى المنتصف على خلفية "
2371
+ "الشريحة . "
2372
+
2373
+ #: modules/content-slider/content-slider.php:485
2374
+ msgid "Top Margin"
2375
+ msgstr "هامش من الأعلى "
2376
+
2377
+ #: modules/content-slider/content-slider.php:493
2378
+ msgid "Bottom Margin"
2379
+ msgstr "هامش من الأسفل "
2380
+
2381
+ #: modules/content-slider/content-slider.php:501
2382
+ msgid "Left Margin"
2383
+ msgstr "هامش من اليسار "
2384
+
2385
+ #: modules/content-slider/content-slider.php:509
2386
+ msgid "Right Margin"
2387
+ msgstr "هامش من اليمين "
2388
+
2389
+ #: modules/content-slider/content-slider.php:518
2390
+ msgid "Text Colors"
2391
+ msgstr "الوان النصوص "
2392
+
2393
+ #: modules/content-slider/content-slider.php:528
2394
+ msgid "Text Shadow"
2395
+ msgstr "ظل النص "
2396
+
2397
+ #: modules/content-slider/content-slider.php:537
2398
+ #: modules/content-slider/content-slider.php:725
2399
+ msgid "Text Background Color"
2400
+ msgstr "لون نص الخلفية "
2401
+
2402
+ #: modules/content-slider/content-slider.php:538
2403
+ msgid ""
2404
+ "The color applies to the overlay behind text over the background selections."
2405
+ msgstr "يتم تطبيق اللون وراء النص على الخلفية المحددة . "
2406
+
2407
+ #: modules/content-slider/content-slider.php:543
2408
+ msgid "Text Background Opacity"
2409
+ msgstr "شفافية نص الخلفية . "
2410
+
2411
+ #: modules/content-slider/content-slider.php:551
2412
+ msgid "Text Background Height"
2413
+ msgstr "إرتفاع نص الخلفية "
2414
+
2415
+ #: modules/content-slider/content-slider.php:553
2416
+ msgid ""
2417
+ "Auto will allow the overlay to fit however long the text content is. 100% will "
2418
+ "fit the overlay to the top and bottom of the slide."
2419
+ msgstr ""
2420
+ "الخيار التلقائي يسمح للمحتوى بالتناسق فى الإرتفاع بنسبة 100% من أعلي وأسفل "
2421
+ "الشريحة . "
2422
+
2423
+ #: modules/content-slider/content-slider.php:555
2424
+ msgctxt "Background height."
2425
+ msgid "Auto"
2426
+ msgstr "تلقائي "
2427
+
2428
+ #: modules/content-slider/content-slider.php:572
2429
+ msgid ""
2430
+ "The link applies to the entire slide. If choosing a call to action type below, "
2431
+ "this link will also be used for the text or button."
2432
+ msgstr ""
2433
+ "يتم تطبيق الرابط الذى تم إدخالة . اذا تم اختيار إستدعاء الحركة يعمل الرابط على "
2434
+ "النصوص والأزرار . "
2435
+
2436
+ #: modules/content-slider/content-slider.php:676
2437
+ msgid "Border Radius"
2438
+ msgstr "تدوير الزوايا "
2439
+
2440
+ #: modules/content-slider/content-slider.php:687
2441
+ msgctxt "Module settings form tab. Display on mobile devices."
2442
+ msgid "Mobile"
2443
+ msgstr "موبايل "
2444
+
2445
+ #: modules/content-slider/content-slider.php:690
2446
+ msgid "Mobile Photo"
2447
+ msgstr "صور الموبايل "
2448
+
2449
+ #: modules/content-slider/content-slider.php:696
2450
+ msgid ""
2451
+ "You can choose a different photo that the slide will change to on mobile "
2452
+ "devices or no photo if desired."
2453
+ msgstr ""
2454
+ "يمكنك إختيار صورة مختلفة لهذه الشريحة تظهر على مقاس شاشة الموبايل او لا لعدم "
2455
+ "الرغبة . "
2456
+
2457
+ #: modules/content-slider/content-slider.php:698
2458
+ msgid "Use Main Photo"
2459
+ msgstr "استخدم صورة رئيسية "
2460
+
2461
+ #: modules/content-slider/content-slider.php:699
2462
+ msgid "Choose Another Photo"
2463
+ msgstr "إختيار صورة أخري "
2464
+
2465
+ #: modules/content-slider/content-slider.php:700
2466
+ msgid "No Photo"
2467
+ msgstr "بدون صورة "
2468
+
2469
+ #: modules/content-slider/content-slider.php:715
2470
+ msgid "Mobile Text Colors"
2471
+ msgstr "الوان نص الموبايل "
2472
+
2473
+ #: modules/cta/cta.php:15
2474
+ msgid "Display a heading, subheading and a button."
2475
+ msgstr "ظهور العنوان ، العنوان الفرعى و الزر . "
2476
+
2477
+ #: modules/cta/cta.php:73
2478
+ msgid "Ready to find out more?"
2479
+ msgstr "مستعد لمعرفة المزيد ؟ "
2480
+
2481
+ #: modules/cta/cta.php:88
2482
+ msgid "Drop us a line today for a free quote!"
2483
+ msgstr "أترك لنا رابط اليوم لعرض الأسعار المجاني! "
2484
+
2485
+ #: modules/cta/cta.php:106 modules/gallery/gallery.php:220
2486
+ #: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
2487
+ #: modules/testimonials/testimonials.php:37
2488
+ #: modules/woocommerce/woocommerce.php:57
2489
+ msgid "Layout"
2490
+ msgstr "تخطيط "
2491
+
2492
+ #: modules/cta/cta.php:109
2493
+ msgid "Inline"
2494
+ msgstr "فى سطر "
2495
+
2496
+ #: modules/cta/cta.php:110
2497
+ msgid "Stacked"
2498
+ msgstr "مكدسة "
2499
+
2500
+ #: modules/cta/cta.php:130 modules/icon-group/icon-group.php:99
2501
+ msgid "Spacing"
2502
+ msgstr "مباعدة "
2503
+
2504
+ #: modules/cta/cta.php:201
2505
+ msgid "Background Opacity"
2506
+ msgstr "شفافية الخلفية "
2507
+
2508
+ #: modules/cta/cta.php:234
2509
+ msgid "Button Link"
2510
+ msgstr "رابط الزر "
2511
+
2512
+ #: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
2513
+ msgid "Gallery"
2514
+ msgstr "المعرض "
2515
+
2516
+ #: modules/gallery/gallery.php:15
2517
+ msgid "Display multiple photos in a gallery view."
2518
+ msgstr "عرض صور متعددة فى معرض الصور . "
2519
+
2520
+ #: modules/gallery/gallery.php:223
2521
+ msgid "Collage"
2522
+ msgstr "ملصقة "
2523
+
2524
+ #: modules/gallery/gallery.php:224
2525
+ msgctxt "Gallery layout: thumbnails."
2526
+ msgid "Thumbs"
2527
+ msgstr "قلب الصفحات "
2528
+
2529
+ #: modules/gallery/gallery.php:260
2530
+ msgid "Photo Size"
2531
+ msgstr "حجم الصورة "
2532
+
2533
+ #: modules/gallery/gallery.php:263
2534
+ msgctxt "Photo size."
2535
+ msgid "Small"
2536
+ msgstr "صغير "
2537
+
2538
+ #: modules/gallery/gallery.php:264
2539
+ msgctxt "Photo size."
2540
+ msgid "Medium"
2541
+ msgstr "متوسط "
2542
+
2543
+ #: modules/gallery/gallery.php:265
2544
+ msgctxt "Photo size."
2545
+ msgid "Large"
2546
+ msgstr "كبير "
2547
+
2548
+ #: modules/gallery/gallery.php:270
2549
+ msgid "Photo Spacing"
2550
+ msgstr "مباعدة الصورة "
2551
+
2552
+ #: modules/gallery/gallery.php:278
2553
+ msgid "Show Captions"
2554
+ msgstr "ظهور التسمية التوضيحية "
2555
+
2556
+ #: modules/gallery/gallery.php:281 modules/photo/photo.php:432
2557
+ msgid "Never"
2558
+ msgstr "أبداً "
2559
+
2560
+ #: modules/gallery/gallery.php:282 modules/photo/photo.php:433
2561
+ msgid "On Hover"
2562
+ msgstr "عند المرور بالماوس "
2563
+
2564
+ #: modules/gallery/gallery.php:283 modules/photo/photo.php:434
2565
+ msgid "Below Photo"
2566
+ msgstr "صور أدناه"
2567
+
2568
+ #: modules/gallery/gallery.php:285
2569
+ msgid ""
2570
+ "The caption pulls from whatever text you put in the caption area in the media "
2571
+ "manager for each image. The caption is also pulled directly from SmugMug if you "
2572
+ "have captions set in your gallery."
2573
+ msgstr ""
2574
+ "تظهر التسمية التوضيحية فى منطقة التوضيح لكل صورة ، يتم ظهورها إذا كان لديك "
2575
+ "تعليق على صور المعرض . "
2576
+
2577
+ #: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
2578
+ msgid "Click Action"
2579
+ msgstr "انقر فوق إجراء "
2580
+
2581
+ #: modules/gallery/gallery.php:292
2582
+ msgctxt "Click action."
2583
+ msgid "None"
2584
+ msgstr "لاشىء "
2585
+
2586
+ #: modules/gallery/gallery.php:293 modules/photo/photo.php:452
2587
+ msgid "Lightbox"
2588
+ msgstr "صندوق الصور"
2589
+
2590
+ #: modules/gallery/gallery.php:294
2591
+ msgid "Photo Link"
2592
+ msgstr "رابط الصورة "
2593
+
2594
+ #: modules/heading/heading.php:15
2595
+ msgid "Display a title/page heading."
2596
+ msgstr "ظهور رابط الصفحة / عنوان الصفحة . "
2597
+
2598
+ #: modules/heading/heading.php:16 modules/photo/photo.php:27
2599
+ #: modules/rich-text/rich-text.php:16 modules/separator/separator.php:16
2600
+ #: modules/video/video.php:21
2601
+ msgid "Basic Modules"
2602
+ msgstr "وحدات أساسية "
2603
+
2604
+ #: modules/heading/heading.php:101
2605
+ msgid "HTML Tag"
2606
+ msgstr "وسوم HTML "
2607
+
2608
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
2609
+ msgid "Custom Font Size"
2610
+ msgstr "حجم خط مخصص "
2611
+
2612
+ #: modules/heading/heading.php:137
2613
+ msgid "Mobile Structure"
2614
+ msgstr "هيكلة الموبايل "
2615
+
2616
+ #: modules/heading/heading.php:158
2617
+ msgid "Custom Alignment"
2618
+ msgstr "محاذاة مخصصة "
2619
+
2620
+ #: modules/html/html.php:14
2621
+ msgid "HTML"
2622
+ msgstr "HTML"
2623
+
2624
+ #: modules/html/html.php:15
2625
+ msgid "Display raw HTML code."
2626
+ msgstr "ظهور كود صف HTML . "
2627
+
2628
+ #: modules/icon-group/icon-group.php:14
2629
+ msgid "Icon Group"
2630
+ msgstr "رمز المجموعة "
2631
+
2632
+ #: modules/icon-group/icon-group.php:15
2633
+ msgid "Display a group of linked Font Awesome icons."
2634
+ msgstr "ظهور الخطوط من مكتبة الخطوط Awesome ."
2635
+
2636
+ #: modules/icon-group/icon-group.php:27
2637
+ msgid "Icons"
2638
+ msgstr "الأيقونات "
2639
+
2640
+ #: modules/icon-group/icon-group.php:125
2641
+ msgid "Add Icon"
2642
+ msgstr "إضافة أيقونة "
2643
+
2644
+ #: modules/icon/icon.php:15
2645
+ msgid "Display an icon and optional title."
2646
+ msgstr "عرض رمز و عنوان اختياري."
2647
+
2648
+ #: modules/map/map.php:14
2649
+ msgid "Map"
2650
+ msgstr "خريطة "
2651
+
2652
+ #: modules/map/map.php:15
2653
+ msgid "Display a Google map."
2654
+ msgstr "عرض خريطة جوجل . "
2655
+
2656
+ #: modules/map/map.php:33
2657
+ msgid "Address"
2658
+ msgstr "العنوان "
2659
+
2660
+ #: modules/map/map.php:34
2661
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
2662
+ msgstr "المنصورة / جمهورية مصر العربية"
2663
+
2664
+ #: modules/photo/photo.php:26
2665
+ msgid "Upload a photo or display one from the media library."
2666
+ msgstr "رفع صورة أو عرض الصور من مكتبة الوسائط "
2667
+
2668
+ #: modules/photo/photo.php:375
2669
+ msgid "Photo Source"
2670
+ msgstr "مصدر الصورة "
2671
+
2672
+ #: modules/photo/photo.php:379 modules/photo/photo.php:451
2673
+ msgid "URL"
2674
+ msgstr "عنوان URL "
2675
+
2676
+ #: modules/photo/photo.php:396
2677
+ msgid "Photo URL"
2678
+ msgstr "عنوان URL للصورة"
2679
+
2680
+ #: modules/photo/photo.php:397
2681
+ msgid "http://www.example.com/my-photo.jpg"
2682
+ msgstr "http://www.example.com/my-photo.jpg"
2683
+
2684
+ #: modules/photo/photo.php:404
2685
+ msgctxt "Crop."
2686
+ msgid "None"
2687
+ msgstr "لاشىء "
2688
+
2689
+ #: modules/photo/photo.php:425 modules/photo/photo.php:439
2690
+ msgid "Caption"
2691
+ msgstr "تسمية توضيحية "
2692
+
2693
+ #: modules/photo/photo.php:429
2694
+ msgid "Show Caption"
2695
+ msgstr "عرض التسمية التوضيحية "
2696
+
2697
+ #: modules/photo/photo.php:448
2698
+ msgid "Link Type"
2699
+ msgstr "نوع الرابط "
2700
+
2701
+ #: modules/photo/photo.php:450
2702
+ msgctxt "Link type."
2703
+ msgid "None"
2704
+ msgstr "لاشىء "
2705
+
2706
+ #: modules/photo/photo.php:453
2707
+ msgid "Photo File"
2708
+ msgstr "ملف الصورة "
2709
+
2710
+ #: modules/photo/photo.php:464
2711
+ msgid ""
2712
+ "Link type applies to how the image should be linked on click. You can choose a "
2713
+ "specific URL, the individual photo or a separate page with the photo."
2714
+ msgstr ""
2715
+ "ينطبق نوع الارتباط إلى الكيفية التي ينبغي أن تكون مرتبطة بها الصورة عند النقر . "
2716
+ "يمكنك اختيار موقع محدد ، والصورة الفردية أو صفحة منفصلة مع الصورة."
2717
+
2718
+ #: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
2719
+ msgid "Link URL"
2720
+ msgstr "رابط URL "
2721
+
2722
+ #: modules/post-grid/includes/frontend.php:41
2723
+ msgid "No posts found."
2724
+ msgstr "لاتوجد مشاركات "
2725
+
2726
+ #: modules/post-grid/includes/post-feed.php:14
2727
+ #: modules/post-grid/includes/post-grid.php:24
2728
+ #, php-format
2729
+ msgctxt "%s stands for author name."
2730
+ msgid "By %s"
2731
+ msgstr "الكاتب: %s"
2732
+
2733
+ #: modules/post-grid/post-grid.php:14
2734
+ msgid "Posts"
2735
+ msgstr "مشاركات"
2736
+
2737
+ #: modules/post-grid/post-grid.php:15
2738
+ msgid "Display a grid of your WordPress posts."
2739
+ msgstr "عرض شبكة من المشاركات للوردبريس الخاص بك . "
2740
+
2741
+ #: modules/post-grid/post-grid.php:51
2742
+ msgid "Layout Style"
2743
+ msgstr "أسلوب التخطيط "
2744
+
2745
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
2746
+ msgid "Grid"
2747
+ msgstr "شبكة "
2748
+
2749
+ #: modules/post-grid/post-grid.php:56
2750
+ msgid "Feed"
2751
+ msgstr "تغذية "
2752
+
2753
+ #: modules/post-grid/post-grid.php:71
2754
+ msgid "Pagination Style"
2755
+ msgstr "أسلوب الترقيم "
2756
+
2757
+ #: modules/post-grid/post-grid.php:74
2758
+ msgid "Numbers"
2759
+ msgstr "الأرقام "
2760
+
2761
+ #: modules/post-grid/post-grid.php:76
2762
+ msgctxt "Pagination style."
2763
+ msgid "None"
2764
+ msgstr "لاشىء "
2765
+
2766
+ #: modules/post-grid/post-grid.php:81
2767
+ msgid "Posts Per Page"
2768
+ msgstr "مشاركات من الصفحة"
2769
+
2770
+ #: modules/post-grid/post-grid.php:92
2771
+ msgid "Post Width"
2772
+ msgstr "حجم عرض المشاركة "
2773
+
2774
+ #: modules/post-grid/post-grid.php:100
2775
+ msgid "Post Spacing"
2776
+ msgstr "مباعدة المشاركة "
2777
+
2778
+ #: modules/post-grid/post-grid.php:109
2779
+ msgid "Featured Image"
2780
+ msgstr "صورة مميزة "
2781
+
2782
+ #: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
2783
+ #: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
2784
+ #: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
2785
+ msgid "Show"
2786
+ msgstr "عرض "
2787
+
2788
+ #: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
2789
+ #: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
2790
+ #: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
2791
+ msgid "Hide"
2792
+ msgstr "إخفاء "
2793
+
2794
+ #: modules/post-grid/post-grid.php:130
2795
+ msgid "Above Text"
2796
+ msgstr "فوق النص "
2797
+
2798
+ #: modules/post-grid/post-grid.php:131
2799
+ msgid "Beside Text"
2800
+ msgstr "بجانب النص "
2801
+
2802
+ #: modules/post-grid/post-grid.php:142
2803
+ msgid "Post Info"
2804
+ msgstr "معلومات المشاركة "
2805
+
2806
+ #: modules/post-grid/post-grid.php:169
2807
+ msgid "Date Format"
2808
+ msgstr "تنسيق التاريخ "
2809
+
2810
+ #: modules/post-grid/post-grid.php:185
2811
+ msgid "Comments"
2812
+ msgstr "التعليقات "
2813
+
2814
+ #: modules/post-grid/post-grid.php:213
2815
+ msgid "More Link"
2816
+ msgstr "رابط إقرأ المزيد "
2817
+
2818
+ #: modules/post-grid/post-grid.php:227
2819
+ msgid "More Link Text"
2820
+ msgstr "نص إقرأ المزيد "
2821
+
2822
+ #: modules/post-grid/post-grid.php:228
2823
+ msgid "Read More"
2824
+ msgstr "إقرأ المزيد "
2825
+
2826
+ #: modules/pricing-table/pricing-table.php:14
2827
+ msgid "Pricing Table"
2828
+ msgstr "جدول الأسعار "
2829
+
2830
+ #: modules/pricing-table/pricing-table.php:15
2831
+ msgid "A simple pricing table generator."
2832
+ msgstr "إنشاء جدول أشعار بسيط . "
2833
+
2834
+ #: modules/pricing-table/pricing-table.php:26
2835
+ msgid "Pricing Boxes"
2836
+ msgstr "صندوق الأسعار "
2837
+
2838
+ #: modules/pricing-table/pricing-table.php:33
2839
+ msgid "Pricing Box"
2840
+ msgstr "صندوق الأسعار "
2841
+
2842
+ #: modules/pricing-table/pricing-table.php:50
2843
+ msgid "Box Spacing"
2844
+ msgstr "مباعدة الصندوق "
2845
+
2846
+ #: modules/pricing-table/pricing-table.php:53
2847
+ #: modules/testimonials/testimonials.php:40
2848
+ msgid "Wide"
2849
+ msgstr "واسع "
2850
+
2851
+ #: modules/pricing-table/pricing-table.php:54
2852
+ msgid "Tight"
2853
+ msgstr "ضيق"
2854
+
2855
+ #: modules/pricing-table/pricing-table.php:59
2856
+ msgid "Features Min Height"
2857
+ msgstr "حد ادنى للطول مميز "
2858
+
2859
+ #: modules/pricing-table/pricing-table.php:63
2860
+ msgid ""
2861
+ "Use this to normalize the height of your boxes when they have different numbers "
2862
+ "of features."
2863
+ msgstr ""
2864
+ "استخدم هذا لتطبيق ارتفاع الصناديق الخاصة بك عندما يكون لديك أرقام مختلفة من "
2865
+ "الميزات."
2866
+
2867
+ #: modules/pricing-table/pricing-table.php:67
2868
+ msgid "Border Size"
2869
+ msgstr "حجم الإطار "
2870
+
2871
+ #: modules/pricing-table/pricing-table.php:70
2872
+ msgctxt "Border size."
2873
+ msgid "Wide"
2874
+ msgstr "واسع "
2875
+
2876
+ #: modules/pricing-table/pricing-table.php:71
2877
+ msgctxt "Border size."
2878
+ msgid "Tight"
2879
+ msgstr "ضيق "
2880
+
2881
+ #: modules/pricing-table/pricing-table.php:84
2882
+ msgid "Add Pricing Box"
2883
+ msgstr "أضف صندوق أسعار "
2884
+
2885
+ #: modules/pricing-table/pricing-table.php:98
2886
+ msgid "Title Size"
2887
+ msgstr "حجم العنوان "
2888
+
2889
+ #: modules/pricing-table/pricing-table.php:107
2890
+ msgid "Price Box"
2891
+ msgstr "صندوق أسعار "
2892
+
2893
+ #: modules/pricing-table/pricing-table.php:111
2894
+ msgid "Price"
2895
+ msgstr "سعر "
2896
+
2897
+ #: modules/pricing-table/pricing-table.php:115
2898
+ msgid "Duration"
2899
+ msgstr "مدة "
2900
+
2901
+ #: modules/pricing-table/pricing-table.php:116
2902
+ msgid "per Year"
2903
+ msgstr "سنوي "
2904
+
2905
+ #: modules/pricing-table/pricing-table.php:120
2906
+ msgid "Price Size"
2907
+ msgstr "حجم السعر "
2908
+
2909
+ #: modules/pricing-table/pricing-table.php:133
2910
+ msgid "Button Text"
2911
+ msgstr "نص الزر "
2912
+
2913
+ #: modules/pricing-table/pricing-table.php:137
2914
+ msgid "Button URL"
2915
+ msgstr "رابط الزر "
2916
+
2917
+ #: modules/pricing-table/pricing-table.php:142
2918
+ msgctxt "Price features displayed in pricing box."
2919
+ msgid "Features"
2920
+ msgstr "مميز "
2921
+
2922
+ #: modules/pricing-table/pricing-table.php:147
2923
+ msgid "One feature per line. HTML is okay."
2924
+ msgstr "ميزة واحدة في كل سطر ، مسموح استخدام HTML . "
2925
+
2926
+ #: modules/pricing-table/pricing-table.php:162
2927
+ msgid "Box Background"
2928
+ msgstr "خلفية الصندوق "
2929
+
2930
+ #: modules/pricing-table/pricing-table.php:167
2931
+ msgid "Box Foreground"
2932
+ msgstr "مقدمة الصندوق "
2933
+
2934
+ #: modules/pricing-table/pricing-table.php:173
2935
+ msgid "Accent Color"
2936
+ msgstr "لون سائد "
2937
+
2938
+ #: modules/pricing-table/pricing-table.php:178
2939
+ msgid "Accent Text Color"
2940
+ msgstr "لون نص سائد "
2941
+
2942
+ #: modules/pricing-table/pricing-table.php:182
2943
+ msgid "Box Top Margin"
2944
+ msgstr "هامش المربع من الأعلي "
2945
+
2946
+ #: modules/rich-text/rich-text.php:15
2947
+ msgid "A WYSIWYG text editor."
2948
+ msgstr "WYSIWYG لتحرير النصوص ."
2949
+
2950
+ #: modules/separator/separator.php:14
2951
+ msgid "Separator"
2952
+ msgstr "الفاصل "
2953
+
2954
+ #: modules/separator/separator.php:15
2955
+ msgid "A divider line to separate content."
2956
+ msgstr "خط فاصل لفصل المحتوى."
2957
+
2958
+ #: modules/separator/separator.php:85
2959
+ msgid ""
2960
+ "The type of border to use. Double borders must have a height of at least 3px to "
2961
+ "render properly."
2962
+ msgstr ""
2963
+ "نوع من الحدود للاستخدام. يجب أن يكون حدود مزدوجة ارتفاع 3PX على الأقل للتقديم "
2964
+ "بشكل صحيح."
2965
+
2966
+ #: modules/sidebar/includes/settings-general.php:5 modules/sidebar/sidebar.php:14
2967
+ msgid "Sidebar"
2968
+ msgstr "الشريط الجانبي "
2969
+
2970
+ #: modules/sidebar/sidebar.php:15
2971
+ msgid "Display a WordPress sidebar that has been registered by the current theme."
2972
+ msgstr "عرض الشريط الجانبي للووردبريس الخاص بالقالب الأساسي ."
2973
+
2974
+ #: modules/slideshow/slideshow.php:14
2975
+ msgid "Slideshow"
2976
+ msgstr "عارض الصور "
2977
+
2978
+ #: modules/slideshow/slideshow.php:15
2979
+ msgid "Display multiple photos in a slideshow view."
2980
+ msgstr "عرض صور متعددة لعارض الصور . "
2981
+
2982
+ #: modules/slideshow/slideshow.php:302
2983
+ msgid "Skin Color"
2984
+ msgstr "لون الجلد "
2985
+
2986
+ #: modules/slideshow/slideshow.php:305
2987
+ msgctxt "Color."
2988
+ msgid "Light"
2989
+ msgstr "فاتح "
2990
+
2991
+ #: modules/slideshow/slideshow.php:306
2992
+ msgctxt "Color."
2993
+ msgid "Dark"
2994
+ msgstr "غامق "
2995
+
2996
+ #: modules/slideshow/slideshow.php:308
2997
+ msgid ""
2998
+ "If your overall theme/images are lighter in color, light will display buttons "
2999
+ "in a darker color scheme and vice versa for dark."
3000
+ msgstr ""
3001
+ "إذا كان لديك محتوى من مشاركات أو صور يتم ظهور خفة العرض فاتح أو غامق على حسب "
3002
+ "الإختيار ."
3003
+
3004
+ #: modules/slideshow/slideshow.php:318
3005
+ msgid ""
3006
+ "Crop set to no will fit the slideshow images to the height you specify and keep "
3007
+ "the width proportional, whereas crop set to yes will fit the slideshow images "
3008
+ "to all sides of the content area while cropping the left and right to fit the "
3009
+ "height you specify."
3010
+ msgstr "يتم الإقتصاص من الصور بحيث تظهر بالشكل المناسب من ناحية العرض والإرتفاع ."
3011
+
3012
+ #: modules/slideshow/slideshow.php:322
3013
+ msgid "Disable Right-Click"
3014
+ msgstr "غلق النقر بالزر الأيمن للماوس ."
3015
+
3016
+ #: modules/slideshow/slideshow.php:342
3017
+ msgctxt "Click action type."
3018
+ msgid "None"
3019
+ msgstr "لاشىء "
3020
+
3021
+ #: modules/slideshow/slideshow.php:366
3022
+ msgid "Playback"
3023
+ msgstr "تشغيل "
3024
+
3025
+ #: modules/slideshow/slideshow.php:392
3026
+ msgctxt "Slideshow transition."
3027
+ msgid "None"
3028
+ msgstr "لاشىء "
3029
+
3030
+ #: modules/slideshow/slideshow.php:429
3031
+ msgid "Controls"
3032
+ msgstr "تحكم "
3033
+
3034
+ #: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
3035
+ msgid "Navigation Arrows"
3036
+ msgstr "أزرار الإتجاهات "
3037
+
3038
+ #: modules/slideshow/slideshow.php:442
3039
+ msgid ""
3040
+ "Navigational arrows allow the visitor to freely move through the images in your "
3041
+ "slideshow. These are larger arrows that overlay your slideshow images and are "
3042
+ "separate from the control bar navigational arrows."
3043
+ msgstr ""
3044
+ "تسمح أزرار الإتجاهات بالتنقل بين الشرائح بحرية تامة للصور التى قبل أو الصور "
3045
+ "التى بعد . "
3046
+
3047
+ #: modules/slideshow/slideshow.php:447
3048
+ msgid "Control Bar"
3049
+ msgstr "شريط التحكم "
3050
+
3051
+ #: modules/slideshow/slideshow.php:451
3052
+ msgid "Nav Type"
3053
+ msgstr "نوع النافبار "
3054
+
3055
+ #: modules/slideshow/slideshow.php:454
3056
+ msgctxt "Nav type."
3057
+ msgid "None"
3058
+ msgstr "لاشىء "
3059
+
3060
+ #: modules/slideshow/slideshow.php:455
3061
+ msgid "Buttons"
3062
+ msgstr "أزرار "
3063
+
3064
+ #: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
3065
+ msgid "Thumbs"
3066
+ msgstr "قلب الصفحات "
3067
+
3068
+ #: modules/slideshow/slideshow.php:471
3069
+ msgid "Nav Position"
3070
+ msgstr "تموضع النافبار "
3071
+
3072
+ #: modules/slideshow/slideshow.php:481
3073
+ msgid "Control Bar Buttons"
3074
+ msgstr "أزرار شريط التحكم "
3075
+
3076
+ #: modules/slideshow/slideshow.php:494
3077
+ msgid "Play Button"
3078
+ msgstr "زر التشغيل "
3079
+
3080
+ #: modules/slideshow/slideshow.php:503
3081
+ msgid "Fullscreen Button"
3082
+ msgstr "عرض الشاشة الكاملة للزر "
3083
+
3084
+ #: modules/slideshow/slideshow.php:512
3085
+ msgid "Photo Count"
3086
+ msgstr "عدد الصور "
3087
+
3088
+ #: modules/slideshow/slideshow.php:521
3089
+ msgid "Thumbs Button"
3090
+ msgstr "زر قلب الصفحات "
3091
+
3092
+ #: modules/slideshow/slideshow.php:530
3093
+ msgid "Caption Button"
3094
+ msgstr "زر التسمية التوضيحية "
3095
+
3096
+ #: modules/slideshow/slideshow.php:539
3097
+ msgid "Social Button"
3098
+ msgstr "زر التواصل الاجتماعي "
3099
+
3100
+ #: modules/slideshow/slideshow.php:549
3101
+ msgid "Control Bar Overlay"
3102
+ msgstr "غطاء شريط التحكم "
3103
+
3104
+ #: modules/slideshow/slideshow.php:553
3105
+ msgid "Overlay Enabled"
3106
+ msgstr "تمكين الغطاء "
3107
+
3108
+ #: modules/slideshow/slideshow.php:564
3109
+ msgid ""
3110
+ "Control bar overlay specifies if the control bar buttons you choose overlay "
3111
+ "your slideshow images or site below the slideshow completely."
3112
+ msgstr "يتم التحكم بغطاء أزار شريط التحكم على صور الشرائح الخاصة بك ."
3113
+
3114
+ #: modules/slideshow/slideshow.php:568
3115
+ msgid "Overlay Hide"
3116
+ msgstr "إخفاء الغطاء "
3117
+
3118
+ #: modules/slideshow/slideshow.php:574
3119
+ msgid ""
3120
+ "Overlay hide will hide the control bar after however many seconds you specify "
3121
+ "below. They will reappear upon mouse over."
3122
+ msgstr ""
3123
+ "يتم إخفاء غطاء أزرار شريط التحكم اذا كان شريط التحكم مخفي يتم الظهور مره أخرى "
3124
+ "عند المرور بالماوس على شريط التحكم . "
3125
+
3126
+ #: modules/slideshow/slideshow.php:578
3127
+ msgid "Overlay Hide Delay"
3128
+ msgstr "تأخير غطاء الإخفاء "
3129
+
3130
+ #: modules/slideshow/slideshow.php:590
3131
+ msgid "Thumbs Size"
3132
+ msgstr "حجم الصور المصغرة "
3133
+
3134
+ #: modules/slideshow/slideshow.php:599
3135
+ msgid "Social"
3136
+ msgstr "اجتماعي "
3137
+
3138
+ #: modules/slideshow/slideshow.php:603
3139
+ msgid "Facebook Button"
3140
+ msgstr "زر الفيس بوك "
3141
+
3142
+ #: modules/slideshow/slideshow.php:615
3143
+ msgid "Twitter Button"
3144
+ msgstr "زر التويتر "
3145
+
3146
+ #: modules/slideshow/slideshow.php:627
3147
+ msgid "Google Plus Button"
3148
+ msgstr "زر جوجل بلاس "
3149
+
3150
+ #: modules/slideshow/slideshow.php:639
3151
+ msgid "Pinterest Button"
3152
+ msgstr "زر Pinterest "
3153
+
3154
+ #: modules/social-buttons/social-buttons.php:14
3155
+ msgid "Social Buttons"
3156
+ msgstr "أزرار الشبكات الإجتماعية "
3157
+
3158
+ #: modules/social-buttons/social-buttons.php:15
3159
+ msgid "Displays social buttons."
3160
+ msgstr "عرض الأزرار الإجتماعية"
3161
+
3162
+ #: modules/social-buttons/social-buttons.php:71
3163
+ msgid "Target URL"
3164
+ msgstr "إتجاه الرابط "
3165
+
3166
+ #: modules/social-buttons/social-buttons.php:75
3167
+ msgid "Current Page"
3168
+ msgstr "الصفحة الحالية "
3169
+
3170
+ #: modules/social-buttons/social-buttons.php:82
3171
+ msgid ""
3172
+ "The Target URL field correlates to the page you would like your social icons to "
3173
+ "interface with. For example, if you show Facebook, the user will \"Like\" "
3174
+ "whatever you put in this field."
3175
+ msgstr ""
3176
+ "يرتبط إتجاه الصفحة بالتفاعل مع المستخدم على سبيل المثال تفاعل الزر \"Like\" "
3177
+ "طالما وضعته ."
3178
+
3179
+ #: modules/social-buttons/social-buttons.php:89
3180
+ msgid "Custom URL"
3181
+ msgstr "عنوان URL مخصص "
3182
+
3183
+ #: modules/social-buttons/social-buttons.php:107
3184
+ msgid "Show Facebook"
3185
+ msgstr "عرض الفيس بوك "
3186
+
3187
+ #: modules/social-buttons/social-buttons.php:116
3188
+ msgid "Show Twitter"
3189
+ msgstr "عرض التويتر "
3190
+
3191
+ #: modules/social-buttons/social-buttons.php:125
3192
+ msgid "Show Google+"
3193
+ msgstr "عرض جوجل بلاس "
3194
+
3195
+ #: modules/tabs/tabs.php:14
3196
+ msgid "Tabs"
3197
+ msgstr "تبويبات "
3198
+
3199
+ #: modules/tabs/tabs.php:15
3200
+ msgid "Display a collection of tabbed content."
3201
+ msgstr "عرض مجموعة من محتوى التبويبات . "
3202
+
3203
+ #: modules/tabs/tabs.php:55
3204
+ msgid "Horizontal"
3205
+ msgstr "أفقي "
3206
+
3207
+ #: modules/tabs/tabs.php:56
3208
+ msgid "Vertical"
3209
+ msgstr "رأسي "
3210
+
3211
+ #: modules/testimonials/testimonials.php:14
3212
+ #: modules/testimonials/testimonials.php:60
3213
+ #: modules/testimonials/testimonials.php:174
3214
+ msgid "Testimonials"
3215
+ msgstr "الشهادات "
3216
+
3217
+ #: modules/testimonials/testimonials.php:15
3218
+ msgid "An animated tesimonials area."
3219
+ msgstr "منطقة الشهادات المتحركة."
3220
+
3221
+ #: modules/testimonials/testimonials.php:41
3222
+ msgid "Compact"
3223
+ msgstr "ميثاق "
3224
+
3225
+ #: modules/testimonials/testimonials.php:51
3226
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
3227
+ msgstr "بشكل عام هو عمود 1 لصف 1 بالداخل مجموعة صفوف ومجموعة أعمدة ."
3228
+
3229
+ #: modules/testimonials/testimonials.php:78
3230
+ msgid "Slider Settings"
3231
+ msgstr "إعدادات عارض الصور "
3232
+
3233
+ #: modules/testimonials/testimonials.php:135
3234
+ msgid "Arrow Color"
3235
+ msgstr "لون الأسهم "
3236
+
3237
+ #: modules/testimonials/testimonials.php:165
3238
+ msgid "Dot Color"
3239
+ msgstr "لون النقاط "
3240
+
3241
+ #: modules/testimonials/testimonials.php:181
3242
+ msgid "Testimonial"
3243
+ msgstr "الشهادات "
3244
+
3245
+ #: modules/testimonials/testimonials.php:197
3246
+ msgid "Add Testimonial"
3247
+ msgstr "إضافة شهادة "
3248
+
3249
+ #: modules/video/video.php:20
3250
+ msgid "Render a WordPress or embedable video."
3251
+ msgstr "تقديم الووردبريس او فيديو "
3252
+
3253
+ #: modules/video/video.php:83
3254
+ msgid "Video Type"
3255
+ msgstr "نوع الفيديو "
3256
+
3257
+ #: modules/video/video.php:87
3258
+ msgid "Embed"
3259
+ msgstr "تضمين "
3260
+
3261
+ #: modules/video/video.php:104
3262
+ msgctxt "Video preview/fallback image."
3263
+ msgid "Poster"
3264
+ msgstr "الملصق "
3265
+
3266
+ #: modules/video/video.php:120
3267
+ msgid "Loop"
3268
+ msgstr "تدوير "
3269
+
3270
+ #: modules/widget/includes/frontend.php:35
3271
+ #: modules/widget/includes/settings-general.php:44
3272
+ #, php-format
3273
+ msgctxt "%s stands for widget slug."
3274
+ msgid "%s no longer exists."
3275
+ msgstr "%s لم يعد موجودا ."
3276
+
3277
+ #: modules/widget/widget.php:14
3278
+ msgid "Widget"
3279
+ msgstr "قطع جانبية "
3280
+
3281
+ #: modules/widget/widget.php:15
3282
+ msgid "Display a WordPress widget."
3283
+ msgstr "عرض القطع الجانبية للووردبريس"
3284
+
3285
+ #: modules/woocommerce/woocommerce.php:16
3286
+ msgid "WooCommerce"
3287
+ msgstr "التجارة الإلكترونية "
3288
+
3289
+ #: modules/woocommerce/woocommerce.php:17
3290
+ msgid "Display products or categories from your WooCommerce store."
3291
+ msgstr "ظهور المنتجات أو التصنيفات من المتجر الإلكتروني "
3292
+
3293
+ #: modules/woocommerce/woocommerce.php:60
3294
+ msgid "Choose..."
3295
+ msgstr "إختيار "
3296
+
3297
+ #: modules/woocommerce/woocommerce.php:61
3298
+ msgid "Single Product"
3299
+ msgstr "منتج منفرد "
3300
+
3301
+ #: modules/woocommerce/woocommerce.php:62 modules/woocommerce/woocommerce.php:113
3302
+ msgid "Multiple Products"
3303
+ msgstr "منتجات متعددة "
3304
+
3305
+ #: modules/woocommerce/woocommerce.php:63
3306
+ msgid "\"Add to Cart\" Button"
3307
+ msgstr "زر \"إضف للسلة \""
3308
+
3309
+ #: modules/woocommerce/woocommerce.php:64
3310
+ msgid "Categories"
3311
+ msgstr "التصنيفات "
3312
+
3313
+ #: modules/woocommerce/woocommerce.php:65
3314
+ msgid "Cart"
3315
+ msgstr "السلة "
3316
+
3317
+ #: modules/woocommerce/woocommerce.php:66
3318
+ msgid "Checkout"
3319
+ msgstr "الدفع "
3320
+
3321
+ #: modules/woocommerce/woocommerce.php:67
3322
+ msgid "Order Tracking"
3323
+ msgstr "تتبع الطلب "
3324
+
3325
+ #: modules/woocommerce/woocommerce.php:68
3326
+ msgid "My Account"
3327
+ msgstr "حسابي "
3328
+
3329
+ #: modules/woocommerce/woocommerce.php:87
3330
+ msgid "Product ID"
3331
+ msgstr "معرف المنتج "
3332
+
3333
+ #: modules/woocommerce/woocommerce.php:90
3334
+ msgid ""
3335
+ "As you add products in the WooCommerce Products area, each will be assigned a "
3336
+ "unique ID. You can find this unique product ID by visiting the Products area "
3337
+ "and rolling over the product. The unique ID will be the first attribute."
3338
+ msgstr ""
3339
+ "كما يمكنك إضافة المنتجات في منطقة WooCommerce المنتجات ، سيتم تعيين لكل منتج "
3340
+ "معرف فريد . يمكنك العثور على هذا ID منتج فريد من نوعه من خلال زيارة المنطقة "
3341
+ "للمنتجات و النزول بالاسكرول بار . سوف يكون المعرف الفريد فى العمود الأول."
3342
+
3343
+ #: modules/woocommerce/woocommerce.php:94
3344
+ msgid "Parent Category ID"
3345
+ msgstr "التصنيف الأب للمعرف "
3346
+
3347
+ #: modules/woocommerce/woocommerce.php:97
3348
+ msgid ""
3349
+ "As you add product categories in the WooCommerce Products area, each will be "
3350
+ "assigned a unique ID. This ID can be found by hovering on the category in the "
3351
+ "categories area under Products and looking in the URL that is displayed in your "
3352
+ "browser. The ID will be the only number value in the URL."
3353
+ msgstr ""
3354
+ "يمكنك إضافة المنتجات فى منطقة المنتجات ، وسيتم إضافة معرف لكل منتج ، ولمعرفة "
3355
+ "هذا المعرف يمكنك الوقوف بالماوس على رابط عرض المنتج على المتصفح بدون الضغط "
3356
+ "وستجد داخل الرابط قيمة المعرف وسيكون هو العدد الوحيد داخل الرابط ."
3357
+
3358
+ #: modules/woocommerce/woocommerce.php:101
3359
+ #: modules/woocommerce/woocommerce.php:172
3360
+ msgid "Columns"
3361
+ msgstr "الأعمدة "
3362
+
3363
+ #: modules/woocommerce/woocommerce.php:117
3364
+ msgid "Products Source"
3365
+ msgstr "مصدر المنتجات "
3366
+
3367
+ #: modules/woocommerce/woocommerce.php:120
3368
+ msgid "Products IDs"
3369
+ msgstr "معرف المنتجات "
3370
+
3371
+ #: modules/woocommerce/woocommerce.php:121
3372
+ msgid "Product Category"
3373
+ msgstr "تصنيف المنتج "
3374
+
3375
+ #: modules/woocommerce/woocommerce.php:122
3376
+ msgid "Recent Products"
3377
+ msgstr "آخر المنتجات "
3378
+
3379
+ #: modules/woocommerce/woocommerce.php:123
3380
+ msgid "Featured Products"
3381
+ msgstr "منتجات مميزة "
3382
+
3383
+ #: modules/woocommerce/woocommerce.php:124
3384
+ msgid "Sale Products"
3385
+ msgstr "المنتجات التى تم بيعها "
3386
+
3387
+ #: modules/woocommerce/woocommerce.php:125
3388
+ msgid "Best Selling Products"
3389
+ msgstr "أفضل المنتجات مبيعا "
3390
+
3391
+ #: modules/woocommerce/woocommerce.php:126
3392
+ msgid "Top Rated Products"
3393
+ msgstr "الأعلى ترتيب للمنتجات"
3394
+
3395
+ #: modules/woocommerce/woocommerce.php:154
3396
+ msgid "Product IDs"
3397
+ msgstr "معرف المنتج "
3398
+
3399
+ #: modules/woocommerce/woocommerce.php:156
3400
+ msgid ""
3401
+ "As you add products in the WooCommerce Products area, each will be assigned a "
3402
+ "unique ID. You can find this unique product ID by visiting the Products area "
3403
+ "and rolling over the product. The unique ID will be the first attribute and you "
3404
+ "can add several here separated by a comma."
3405
+ msgstr ""
3406
+ "كما يمكنك إضافة المنتجات في منطقة WooCommerce المنتجات ، سيتم تعيين لكل منتج "
3407
+ "معرف فريد . يمكنك العثور على هذا ID منتج فريد من نوعه من خلال زيارة المنطقة "
3408
+ "للمنتجات و النزول بالاسكرول بار . سوف يكون المعرف الفريد فى العمود الأول ويمكنك "
3409
+ "إضافة العديد من هنا مفصولة بفاصلة ."
3410
+
3411
+ #: modules/woocommerce/woocommerce.php:160
3412
+ msgid "Category Slug"
3413
+ msgstr "وصف التصنيف"
3414
+
3415
+ #: modules/woocommerce/woocommerce.php:162
3416
+ msgid ""
3417
+ "As you add product categories in the WooCommerce Products area, each will be "
3418
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
3419
+ "found in the Categories area under WooCommerce Products. Several can be added "
3420
+ "here separated by a comma."
3421
+ msgstr ""
3422
+ "كما يمكنك إضافة المنتجات في منطقة WooCommerce المنتجات ، سيتم تعيين لكل تصنيف "
3423
+ "وصف . يمكنك العثور على هذا الوصف خلال زيارة منطقة المنتجات و النزول بالاسكرول "
3424
+ "بار . "
3425
+
3426
+ #: modules/woocommerce/woocommerce.php:166
3427
+ msgid "Number of Products"
3428
+ msgstr "عدد المنتجات "
3429
+
3430
+ #: modules/woocommerce/woocommerce.php:183
3431
+ msgid "Sort By"
3432
+ msgstr "ترتيب حسب "
3433
+
3434
+ #: modules/woocommerce/woocommerce.php:186
3435
+ msgctxt "Sort by."
3436
+ msgid "Default"
3437
+ msgstr "افتراضي "
3438
+
3439
+ #: modules/woocommerce/woocommerce.php:187
3440
+ msgid "Popularity"
3441
+ msgstr "شعبية "
3442
+
3443
+ #: modules/woocommerce/woocommerce.php:188
3444
+ msgid "Rating"
3445
+ msgstr "ترتيب "
3446
+
3447
+ #: modules/woocommerce/woocommerce.php:190
3448
+ msgid "Price: Low to High"
3449
+ msgstr "السعر : من الأدنى للأعلي"
3450
+
3451
+ #: modules/woocommerce/woocommerce.php:191
3452
+ msgid "Price: High to Low"
3453
+ msgstr "السعر : من الأعلي للأدني"
3454
+
3455
+ #~ msgid "Upgrade Today!"
3456
+ #~ msgstr "Aktualizovať!"
3457
+
3458
+ #~ msgid "Add"
3459
+ #~ msgstr "Pridať"
3460
+
3461
+ #~ msgid " Settings"
3462
+ #~ msgstr "Nastavenia"
3463
+
3464
+ #~ msgid "Settings"
3465
+ #~ msgstr "Nastavenia"
3466
+
3467
+ #~ msgid "Mobile"
3468
+ #~ msgstr "Mobilné zobrazenia"
3469
+
3470
+ #~ msgid "Tag"
3471
+ #~ msgstr "HTML tag"
3472
+
3473
+ #~ msgid "Add Pricing Column"
3474
+ #~ msgstr "Pridať cenový box"
languages/es_ES.mo ADDED
Binary file
languages/es_ES.po ADDED
@@ -0,0 +1,3987 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "POT-Creation-Date: 2015-03-01 14:02-0800\n"
5
+ "PO-Revision-Date: 2015-03-02 00:13+0100\n"
6
+ "Last-Translator: Roberto Porcar <rporcar@arrakis.es>\n"
7
+ "Language-Team: \n"
8
+ "Language: es_ES\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.1\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: classes/class-fl-builder-admin-settings.php:93
22
+ #: includes/global-settings.php:4
23
+ #, php-format
24
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
25
+ msgid "%s Settings"
26
+ msgstr "Ajustes de %s"
27
+
28
+ #: classes/class-fl-builder-admin-settings.php:107
29
+ msgid "Settings updated!"
30
+ msgstr "¡Configuración actualizada!"
31
+
32
+ #: classes/class-fl-builder-admin-settings.php:118
33
+ msgid "License"
34
+ msgstr "Licencia"
35
+
36
+ #: classes/class-fl-builder-admin-settings.php:122
37
+ #: includes/admin-settings-upgrade.php:3
38
+ msgid "Upgrade"
39
+ msgstr "Actualizar"
40
+
41
+ #: classes/class-fl-builder-admin-settings.php:126
42
+ #: includes/global-settings.php:90
43
+ msgid "Modules"
44
+ msgstr "Módulos"
45
+
46
+ #: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:47
47
+ msgid "Templates"
48
+ msgstr "Plantillas"
49
+
50
+ #: classes/class-fl-builder-admin-settings.php:134
51
+ #: includes/admin-settings-post-types.php:3
52
+ msgid "Post Types"
53
+ msgstr "Tipos de Entrada"
54
+
55
+ #: classes/class-fl-builder-admin-settings.php:138
56
+ #: modules/icon-group/icon-group.php:27
57
+ msgid "Icons"
58
+ msgstr "Iconos"
59
+
60
+ #: classes/class-fl-builder-admin-settings.php:142
61
+ msgid "Editing"
62
+ msgstr "Edición"
63
+
64
+ #: classes/class-fl-builder-admin-settings.php:146
65
+ #: includes/admin-settings-branding.php:3
66
+ msgid "Branding"
67
+ msgstr "Marca"
68
+
69
+ #: classes/class-fl-builder-admin-settings.php:150
70
+ msgid "Help Button"
71
+ msgstr "Botón de Ayuda"
72
+
73
+ #: classes/class-fl-builder-admin-settings.php:154
74
+ #: includes/admin-settings-uninstall.php:3
75
+ #: includes/admin-settings-uninstall.php:15
76
+ msgid "Uninstall"
77
+ msgstr "Desinstalar"
78
+
79
+ #: classes/class-fl-builder-admin-settings.php:376
80
+ msgid "Error! You must have at least one icon set enabled."
81
+ msgstr "Error! Necesitas tener al menos una colección de iconos habilitada."
82
+
83
+ #: classes/class-fl-builder-admin-settings.php:418
84
+ msgid "Error! Could not unzip file."
85
+ msgstr "¡Error! No se puede descomprimir el archivo."
86
+
87
+ #: classes/class-fl-builder-admin-settings.php:452
88
+ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
89
+ msgstr "¡Error! Por favor, sube un icono de Icomoon o Fontello."
90
+
91
+ #: classes/class-fl-builder-admin-settings.php:566
92
+ msgid "Error! Please enter an iframe for the video embed code."
93
+ msgstr ""
94
+ "¡Error! Por favor, introduce un iframe para el código de inserción del vídeo."
95
+
96
+ #: classes/class-fl-builder-admin-settings.php:584
97
+ msgid "Error! You must have at least one feature of the help button enabled."
98
+ msgstr ""
99
+ "¡Error! Debse tener al menos una característica del botón ayuda habilitada."
100
+
101
+ #: classes/class-fl-builder-admin.php:40
102
+ #, php-format
103
+ msgid ""
104
+ "This version of the <strong>Page Builder</strong> plugin is not compatible "
105
+ "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
106
+ "of this plugin."
107
+ msgstr ""
108
+ "Esta versión del plugin <strong>Page Builder</strong> no es compatible con "
109
+ "WordPress Multisitio. <a%s>Por favor, actualiza</a> a la versión Multisitio "
110
+ "de este plugin."
111
+
112
+ #: classes/class-fl-builder-admin.php:50
113
+ msgid ""
114
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
115
+ "greater. Please update WordPress before activating the plugin."
116
+ msgstr ""
117
+ "El plugin <strong>Page Builder</strong> requiere WordPress versión 3.5 o "
118
+ "superior. Por favor actualiza WordPress antes de activar el plugin."
119
+
120
+ #: classes/class-fl-builder-admin.php:96
121
+ #, php-format
122
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
123
+ msgstr ""
124
+ "¡Page Builder activado! <a%s>Pulsa aquí</a> para habilitar las "
125
+ "actualizaciones remotas."
126
+
127
+ #: classes/class-fl-builder-admin.php:191
128
+ msgctxt "Plugin action link label."
129
+ msgid "Upgrade"
130
+ msgstr "Actualizar"
131
+
132
+ #: classes/class-fl-builder-admin.php:202
133
+ #: classes/class-fl-builder-model.php:2594
134
+ msgid "Page Builder"
135
+ msgstr "Page Builder"
136
+
137
+ #: classes/class-fl-builder-model.php:1385
138
+ #, php-format
139
+ msgctxt "%s stands for the module filename"
140
+ msgid ""
141
+ "A module with the filename %s.php already exists! Please namespace your "
142
+ "module filenames to ensure compatibility with Beaver Builder."
143
+ msgstr ""
144
+ "¡Un módulo con el nombre de archivo %s.php ya existe! Por favor, cambia el "
145
+ "espacio de nombres de tu módulo para garantizar la compatibilidad con Beaver "
146
+ "Builder."
147
+
148
+ #: classes/class-fl-builder-model.php:1443
149
+ #: classes/class-fl-builder-model.php:1497 modules/heading/heading.php:16
150
+ #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
151
+ #: modules/separator/separator.php:16 modules/video/video.php:21
152
+ msgid "Basic Modules"
153
+ msgstr "Módulos Básicos"
154
+
155
+ #: classes/class-fl-builder-model.php:1444
156
+ #: classes/class-fl-builder-model.php:1498 modules/accordion/accordion.php:16
157
+ #: modules/button/button.php:16 modules/callout/callout.php:16
158
+ #: modules/contact-form/contact-form.php:16
159
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
160
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
161
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
162
+ #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
163
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
164
+ #: modules/slideshow/slideshow.php:16
165
+ #: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
166
+ #: modules/testimonials/testimonials.php:16
167
+ #: modules/woocommerce/woocommerce.php:18
168
+ msgid "Advanced Modules"
169
+ msgstr "Módulos Avanzados"
170
+
171
+ #: classes/class-fl-builder-model.php:1445
172
+ #: classes/class-fl-builder-model.php:1499
173
+ msgid "Other Modules"
174
+ msgstr "Otros Módulos"
175
+
176
+ #: classes/class-fl-builder-model.php:1446
177
+ #: classes/class-fl-builder-model.php:1500 includes/ui.php:88
178
+ #: modules/widget/widget.php:16
179
+ msgid "WordPress Widgets"
180
+ msgstr "WordPress Widgets"
181
+
182
+ #: classes/class-fl-builder-model.php:2009
183
+ #, php-format
184
+ msgctxt "%s stands for post/page title."
185
+ msgid "Copy of %s"
186
+ msgstr "Copia de %s"
187
+
188
+ #: classes/class-fl-builder-photo.php:75
189
+ msgctxt "Image size."
190
+ msgid "Full Size"
191
+ msgstr "Tamaño completo"
192
+
193
+ #: classes/class-fl-builder-photo.php:76
194
+ msgctxt "Image size."
195
+ msgid "Large"
196
+ msgstr "Grande"
197
+
198
+ #: classes/class-fl-builder-photo.php:77
199
+ msgctxt "Image size."
200
+ msgid "Medium"
201
+ msgstr "Medio"
202
+
203
+ #: classes/class-fl-builder-photo.php:78
204
+ msgctxt "Image size."
205
+ msgid "Thumbnail"
206
+ msgstr "Miniatura"
207
+
208
+ #: classes/class-fl-builder-templates.php:28
209
+ msgid "Page Builder Templates"
210
+ msgstr "Plantillas de Page Builder"
211
+
212
+ #: classes/class-fl-builder.php:709
213
+ #, php-format
214
+ msgctxt "Field name to add."
215
+ msgid "Add %s"
216
+ msgstr "Añadir %s"
217
+
218
+ #: classes/class-fl-builder.php:772 classes/class-fl-builder.php:774
219
+ msgctxt "Custom post type label."
220
+ msgid "Layout Templates"
221
+ msgstr "Plantillas de diseño"
222
+
223
+ #: classes/class-fl-builder.php:773 classes/class-fl-builder.php:775
224
+ msgctxt "Custom post type label."
225
+ msgid "Layout Template"
226
+ msgstr "Plantilla de diseño"
227
+
228
+ #: classes/class-fl-builder.php:776
229
+ msgctxt "Custom post type label."
230
+ msgid "Add New"
231
+ msgstr "Añadir Nuevo"
232
+
233
+ #: classes/class-fl-builder.php:777
234
+ msgctxt "Custom post type label."
235
+ msgid "Add New Layout Template"
236
+ msgstr "Añadir Nueva Plantilla de Diseño"
237
+
238
+ #: classes/class-fl-builder.php:778
239
+ msgctxt "Custom post type label."
240
+ msgid "New Layout Template"
241
+ msgstr "Nueva Plantilla de Diseño"
242
+
243
+ #: classes/class-fl-builder.php:779
244
+ msgctxt "Custom post type label."
245
+ msgid "Edit Layout Template"
246
+ msgstr "Editar Plantilla de Diseño"
247
+
248
+ #: classes/class-fl-builder.php:780
249
+ msgctxt "Custom post type label."
250
+ msgid "View Layout Template"
251
+ msgstr "Ver Plantilla de Diseño"
252
+
253
+ #: classes/class-fl-builder.php:781
254
+ msgctxt "Custom post type label."
255
+ msgid "All Layout Templates"
256
+ msgstr "Todas las Plantillas de Diseño"
257
+
258
+ #: classes/class-fl-builder.php:782
259
+ msgctxt "Custom post type label."
260
+ msgid "Search Layout Templates"
261
+ msgstr "Buscar Plantillas de Diseño"
262
+
263
+ #: classes/class-fl-builder.php:783
264
+ msgctxt "Custom post type label."
265
+ msgid "Parent Layout Templates:"
266
+ msgstr "Plantilla de Diseño Maestra"
267
+
268
+ #: classes/class-fl-builder.php:784
269
+ msgctxt "Custom post type label."
270
+ msgid "No layout templates found."
271
+ msgstr "No se han encontrado plantillas de diseño."
272
+
273
+ #: classes/class-fl-builder.php:785
274
+ msgctxt "Custom post type label."
275
+ msgid "No layout templates found in Trash."
276
+ msgstr "No se han encontrado plantillas de diseño en la Papelera."
277
+
278
+ #: classes/class-fl-builder.php:1150 includes/js-config.php:66
279
+ #, php-format
280
+ msgctxt "%s stands for module name."
281
+ msgid "%s Settings"
282
+ msgstr "Ajustes de %s"
283
+
284
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
285
+ msgid "Text Editor"
286
+ msgstr "Editor de Texto"
287
+
288
+ #: includes/admin-posts.php:7
289
+ #, php-format
290
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
291
+ msgid "%s is currently active for this page."
292
+ msgstr "%s está activado para esta página."
293
+
294
+ #: includes/admin-posts.php:8
295
+ #, php-format
296
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
297
+ msgid "Launch %s"
298
+ msgstr "Poner en marcha %s"
299
+
300
+ #: includes/admin-posts.php:15
301
+ #, php-format
302
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
303
+ msgid ""
304
+ "Switching to Text Editor mode will disable your %s layout until it is "
305
+ "enabled again. Any edits made while in Text Editor mode will not be made on "
306
+ "your %s layout. Do you want to continue?"
307
+ msgstr ""
308
+ "Cambiar al modo de Editor de texto desactivará tú diseño de %s hasta que se "
309
+ "haya habilitado nuevamente. Cualquier modificación realizada en el Editor de "
310
+ "texto no aparecerá en el diseño de %s. ¿Quieres continuar?"
311
+
312
+ #: includes/admin-settings-branding.php:7
313
+ msgid "White label the page builder by entering a custom name below."
314
+ msgstr ""
315
+ "Introduce un nombre personalizado para cambiar la marca de page builder a tu "
316
+ "propia marca."
317
+
318
+ #: includes/admin-settings-branding.php:10
319
+ msgid ""
320
+ "Additionally, you may also add a custom icon by entering the URL of an image "
321
+ "below. Leave the field blank if you do not wish to use an icon."
322
+ msgstr ""
323
+ "Además, también puedes añadir un icono personalizado introduciendo la URL de "
324
+ "una imagen. Deja el campo vacío si no quieres usar un icono."
325
+
326
+ #: includes/admin-settings-branding.php:14
327
+ msgid "Save Branding"
328
+ msgstr "Guardar personalización de Marca"
329
+
330
+ #: includes/admin-settings-editing.php:3
331
+ msgid "Editing Settings"
332
+ msgstr "Editar configuración"
333
+
334
+ #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
335
+ #: includes/admin-settings-modules.php:10
336
+ #: includes/admin-settings-post-types.php:10
337
+ #: includes/admin-settings-templates.php:10
338
+ msgid "Override network settings?"
339
+ msgstr "¿Sobreescribir configuración de red?"
340
+
341
+ #: includes/admin-settings-editing.php:16
342
+ #, php-format
343
+ msgid ""
344
+ "Set the <a%s>capability</a> required for users to access advanced builder "
345
+ "editing such as adding, deleting or moving modules."
346
+ msgstr ""
347
+ "Establece las <a%s>competencias</a> necesarias para que los usuarios puedan "
348
+ "acceder a la edición avanzada: añadir, borrar o mover módulos."
349
+
350
+ #: includes/admin-settings-editing.php:22
351
+ msgid "Save Editing Settings"
352
+ msgstr "Guardar Ajustes de Edición"
353
+
354
+ #: includes/admin-settings-help-button.php:8
355
+ msgid "Help Button Settings"
356
+ msgstr "Ajustes del Botón de Ayuda"
357
+
358
+ #: includes/admin-settings-help-button.php:17
359
+ msgid "Enable Help Button"
360
+ msgstr "Activar Botón de Ayuda"
361
+
362
+ #: includes/admin-settings-help-button.php:23
363
+ msgid "Help Tour"
364
+ msgstr "Tour de Ayuda"
365
+
366
+ #: includes/admin-settings-help-button.php:27
367
+ msgid "Enable Help Tour"
368
+ msgstr "Activar Tour de Ayuda"
369
+
370
+ #: includes/admin-settings-help-button.php:31
371
+ msgid "Help Video"
372
+ msgstr "Vídeo de Ayuda"
373
+
374
+ #: includes/admin-settings-help-button.php:35
375
+ msgid "Enable Help Video"
376
+ msgstr "Activar Vídeo de Ayuda"
377
+
378
+ #: includes/admin-settings-help-button.php:39
379
+ msgid "Help Video Embed Code"
380
+ msgstr "Ayuda Código Inserción de Vídeo"
381
+
382
+ #: includes/admin-settings-help-button.php:45
383
+ msgid "Knowledge Base"
384
+ msgstr "Base de conocimiento"
385
+
386
+ #: includes/admin-settings-help-button.php:49
387
+ msgid "Enable Knowledge Base"
388
+ msgstr "Habilitar la Base de conocimiento"
389
+
390
+ #: includes/admin-settings-help-button.php:53
391
+ msgid "Knowledge Base URL"
392
+ msgstr "URL Base de conocimiento"
393
+
394
+ #: includes/admin-settings-help-button.php:59
395
+ msgid "Forums"
396
+ msgstr "Foros"
397
+
398
+ #: includes/admin-settings-help-button.php:63
399
+ msgid "Enable Forums"
400
+ msgstr "Habilitar Foros"
401
+
402
+ #: includes/admin-settings-help-button.php:67
403
+ msgid "Forums URL"
404
+ msgstr "URL de los foros"
405
+
406
+ #: includes/admin-settings-help-button.php:77
407
+ msgid "Save Help Button Settings"
408
+ msgstr "Guardar Ajustes del Botón de Ayuda"
409
+
410
+ #: includes/admin-settings-icons.php:3
411
+ msgid "Icon Settings"
412
+ msgstr "Configuración de Iconos"
413
+
414
+ #: includes/admin-settings-icons.php:13
415
+ msgid "Icons for the main site must be managed in the network admin."
416
+ msgstr ""
417
+ "Los iconos para el sitio principal deben ser administrados desde el admin de "
418
+ "red."
419
+
420
+ #: includes/admin-settings-icons.php:33
421
+ #, php-format
422
+ msgid ""
423
+ "Enable or disable icon sets using the options below or upload a custom icon "
424
+ "set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
425
+ msgstr ""
426
+ "Activa o desactiva colecciones de iconos desde las siguientes opciones o "
427
+ "sube un icono personalizado de <a%s>Icomoon</a> o <a%s>Fontello</a>."
428
+
429
+ #: includes/admin-settings-icons.php:48
430
+ msgctxt "Plugin setup page: Delete icon set."
431
+ msgid "Delete"
432
+ msgstr "Eliminar"
433
+
434
+ #: includes/admin-settings-icons.php:59
435
+ msgid "Upload Icon Set"
436
+ msgstr "Subir Colección de Iconos"
437
+
438
+ #: includes/admin-settings-icons.php:60
439
+ msgid "Save Icon Settings"
440
+ msgstr "Guardar Ajustes de Iconos"
441
+
442
+ #: includes/admin-settings-js-config.php:4
443
+ msgid "Select File"
444
+ msgstr "Seleccionar Archivo"
445
+
446
+ #: includes/admin-settings-js-config.php:5
447
+ msgid ""
448
+ "Please type \"uninstall\" in the box below to confirm that you really want "
449
+ "to uninstall the page builder and all of its data."
450
+ msgstr ""
451
+ "Por favor, escribe \"uninstall\" en el cuadro siguiente para confirmar que "
452
+ "realmente deseas desinstalar el page builder y todos sus datos."
453
+
454
+ #: includes/admin-settings-modules.php:3
455
+ msgid "Enabled Modules"
456
+ msgstr "Módulos habilitados"
457
+
458
+ #: includes/admin-settings-modules.php:16
459
+ msgid "Check or uncheck modules below to enable or disable them."
460
+ msgstr ""
461
+ "Selecciona o deshabilita las siguientes opciones para activar o desactivar "
462
+ "los módulos."
463
+
464
+ #: includes/admin-settings-modules.php:25
465
+ msgctxt "Plugin setup page: Modules."
466
+ msgid "All"
467
+ msgstr "Todo"
468
+
469
+ #: includes/admin-settings-modules.php:43
470
+ msgid "Save Module Settings"
471
+ msgstr "Guardar Ajustes"
472
+
473
+ #: includes/admin-settings-post-types.php:18
474
+ msgid ""
475
+ "Enter a comma separated list of the post types you would like the builder to "
476
+ "work with."
477
+ msgstr ""
478
+ "Introduce una lista separada por comas de los tipos de entrada "
479
+ "personalizados con los que quieres trabajar."
480
+
481
+ #: includes/admin-settings-post-types.php:19
482
+ #: includes/admin-settings-post-types.php:39
483
+ msgid "NOTE: Not all custom post types may be supported."
484
+ msgstr ""
485
+ "NOTA: No todos los tipos de entrada personalizados pueden ser compatibles."
486
+
487
+ #: includes/admin-settings-post-types.php:34
488
+ msgid "Example: page, post, product"
489
+ msgstr "Ejemplo: página, entrada, producto"
490
+
491
+ #: includes/admin-settings-post-types.php:38
492
+ msgid "Select the post types you would like the builder to work with."
493
+ msgstr "Selecciona los tipos de entrada con los que te gustaría trabajar."
494
+
495
+ #: includes/admin-settings-post-types.php:70
496
+ msgid "Save Post Types"
497
+ msgstr "Guardar Tipos de Entrada"
498
+
499
+ #: includes/admin-settings-templates.php:3 includes/template-settings.php:4
500
+ msgid "Template Settings"
501
+ msgstr "Ajustes de Plantilla"
502
+
503
+ #: includes/admin-settings-templates.php:16
504
+ msgid "Enable or disable templates using the options below."
505
+ msgstr ""
506
+ "Habilitar o deshabilitar las plantillas utilizando las siguientes opciones."
507
+
508
+ #: includes/admin-settings-templates.php:23
509
+ msgid "Enable All Templates"
510
+ msgstr "Habilitar Todas las Plantillas"
511
+
512
+ #: includes/admin-settings-templates.php:24
513
+ msgid "Enable Core Templates Only"
514
+ msgstr "Habilitar Sólo Plantillas Base"
515
+
516
+ #: includes/admin-settings-templates.php:25
517
+ msgid "Enable User Templates Only"
518
+ msgstr "Habilitar Sólo Plantillas de Usuario"
519
+
520
+ #: includes/admin-settings-templates.php:26
521
+ msgid "Disable All Templates"
522
+ msgstr "Deshabilitar Todas las Plantillas"
523
+
524
+ #: includes/admin-settings-templates.php:30
525
+ msgid "Save Template Settings"
526
+ msgstr "Guardar Ajustes de Plantilla"
527
+
528
+ #: includes/admin-settings-uninstall.php:5
529
+ msgid ""
530
+ "Clicking the button below will uninstall the page builder plugin and delete "
531
+ "all of the data associated with it. You can uninstall or deactivate the page "
532
+ "builder from the plugins page instead if you do not wish to delete the data."
533
+ msgstr ""
534
+ "Pulsando en el botón de abajo desinstalarás el plugin y borrarás todos los "
535
+ "datos asociados al mismo. Si no quieres borrar los datos, puedes desinstalar "
536
+ "o desactivar el page builder desde la página de plugins."
537
+
538
+ #: includes/admin-settings-uninstall.php:7
539
+ #: includes/admin-settings-uninstall.php:10
540
+ #: includes/updater/includes/form.php:31
541
+ msgid "NOTE:"
542
+ msgstr "NOTA:"
543
+
544
+ #: includes/admin-settings-uninstall.php:7
545
+ msgid ""
546
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
547
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
548
+ "you want to reinstall it later. If you do, the builder will rebuild all of "
549
+ "its data using those meta values."
550
+ msgstr ""
551
+ "No se borrarán los post meta <code>_fl_builder_data</code>, "
552
+ "<code>_fl_builder_draft</code> y <code>_fl_builder_enabled</code> por si "
553
+ "deseas reinstalar más tarde. Si lo haces, se reutilizarán todos los datos "
554
+ "usando estos valores meta."
555
+
556
+ #: includes/admin-settings-uninstall.php:10
557
+ #: includes/updater/includes/form.php:31
558
+ msgid "This applies to all sites on the network."
559
+ msgstr "Esto se aplica a todos los sitios en la red."
560
+
561
+ #: includes/admin-settings-upgrade.php:5
562
+ msgid ""
563
+ "You are currently running the lite version of the Beaver Builder plugin. "
564
+ "Upgrade today for access to premium features such as advanced modules, "
565
+ "templates, support and more!"
566
+ msgstr ""
567
+ "Estás usando la versión lite del plugin Beaver Builder. ¡Actualiza si "
568
+ "quieres acceder a todas las funciones premium como módulos avanzados, "
569
+ "plantillas, soporte y mucho más!"
570
+
571
+ #: includes/admin-settings-upgrade.php:7
572
+ msgid "Upgrade Now"
573
+ msgstr "Actualizar Ahora"
574
+
575
+ #: includes/admin-settings-upgrade.php:9
576
+ msgid "Learn More"
577
+ msgstr "Más Información"
578
+
579
+ #: includes/admin-templates-edit.php:3
580
+ msgid "Edit Template"
581
+ msgstr "Editar Plantilla"
582
+
583
+ #: includes/admin-templates-edit.php:8
584
+ msgctxt "Template edit form field label. Template name."
585
+ msgid "Name"
586
+ msgstr "Nombre"
587
+
588
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:305
589
+ #: modules/post-grid/post-grid.php:113
590
+ msgid "Image"
591
+ msgstr "Imagen"
592
+
593
+ #: includes/admin-templates-edit.php:16 includes/row-settings.php:155
594
+ #: includes/template-settings.php:23 modules/callout/callout.php:353
595
+ #: modules/callout/callout.php:373
596
+ #: modules/content-slider/content-slider.php:472
597
+ #: modules/post-grid/post-grid.php:127
598
+ msgid "Position"
599
+ msgstr "Posición"
600
+
601
+ #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
602
+ msgctxt "Template edit form field label. Is template premium one?"
603
+ msgid "Premium"
604
+ msgstr "Premium"
605
+
606
+ #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
607
+ #: includes/global-settings.php:18 includes/global-settings.php:110
608
+ #: includes/row-settings.php:307 includes/template-settings.php:31
609
+ #: modules/accordion/accordion.php:90 modules/callout/callout.php:420
610
+ #: modules/content-slider/content-slider.php:209
611
+ #: modules/content-slider/content-slider.php:223
612
+ #: modules/content-slider/content-slider.php:257
613
+ #: modules/content-slider/content-slider.php:266
614
+ #: modules/content-slider/content-slider.php:537
615
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
616
+ #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
617
+ #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
618
+ #: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
619
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
620
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
621
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
622
+ #: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
623
+ #: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
624
+ #: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
625
+ #: modules/social-buttons/social-buttons.php:111
626
+ #: modules/social-buttons/social-buttons.php:120
627
+ #: modules/social-buttons/social-buttons.php:129
628
+ #: modules/testimonials/testimonials.php:85
629
+ #: modules/testimonials/testimonials.php:124
630
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
631
+ #: modules/video/video.php:123
632
+ msgid "No"
633
+ msgstr "No"
634
+
635
+ #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
636
+ #: includes/global-settings.php:19 includes/global-settings.php:111
637
+ #: includes/row-settings.php:308 includes/template-settings.php:32
638
+ #: modules/accordion/accordion.php:89 modules/callout/callout.php:421
639
+ #: modules/content-slider/content-slider.php:210
640
+ #: modules/content-slider/content-slider.php:224
641
+ #: modules/content-slider/content-slider.php:258
642
+ #: modules/content-slider/content-slider.php:267
643
+ #: modules/content-slider/content-slider.php:538
644
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
645
+ #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
646
+ #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
647
+ #: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
648
+ #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
649
+ #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
650
+ #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
651
+ #: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
652
+ #: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
653
+ #: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
654
+ #: modules/social-buttons/social-buttons.php:110
655
+ #: modules/social-buttons/social-buttons.php:119
656
+ #: modules/social-buttons/social-buttons.php:128
657
+ #: modules/testimonials/testimonials.php:86
658
+ #: modules/testimonials/testimonials.php:125
659
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
660
+ #: modules/video/video.php:124
661
+ msgid "Yes"
662
+ msgstr "Sí"
663
+
664
+ #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
665
+ msgid "Category"
666
+ msgstr "Categoría"
667
+
668
+ #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
669
+ msgctxt "Templates category label."
670
+ msgid "Landing Pages"
671
+ msgstr "Página de Aterrizaje"
672
+
673
+ #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
674
+ msgctxt "Templates category label."
675
+ msgid "Company Info"
676
+ msgstr "Datos de la empresa"
677
+
678
+ #: includes/admin-templates-edit.php:40
679
+ msgid "Update Template"
680
+ msgstr "Actualizar plantilla"
681
+
682
+ #: includes/admin-templates.php:3
683
+ msgid "Page Builder Template"
684
+ msgstr "Plantilla de Page Builder"
685
+
686
+ #: includes/admin-templates.php:10
687
+ msgctxt "Templates list column label."
688
+ msgid "Name"
689
+ msgstr "Nombre"
690
+
691
+ #: includes/admin-templates.php:11
692
+ msgctxt "Templates list column label."
693
+ msgid "Category"
694
+ msgstr "Categoría"
695
+
696
+ #: includes/admin-templates.php:12
697
+ msgctxt "Templates list column label. Is template premium one?"
698
+ msgid "Premium"
699
+ msgstr "Premium"
700
+
701
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
702
+ #: includes/template-selector.php:83
703
+ msgid "Edit"
704
+ msgstr "Editar"
705
+
706
+ #: includes/admin-templates.php:27 includes/template-selector.php:84
707
+ msgid "Delete"
708
+ msgstr "Eliminar"
709
+
710
+ #: includes/admin-templates.php:40 includes/js-config.php:28
711
+ msgid "Do you really want to delete this template?"
712
+ msgstr "¿Quieres eliminar esta plantilla?"
713
+
714
+ #: includes/column-settings.php:4 includes/js-config.php:23
715
+ msgid "Column Settings"
716
+ msgstr "Configuración de Columnas"
717
+
718
+ #: includes/column-settings.php:7 includes/module-settings.php:87
719
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
720
+ #: modules/button/button.php:108 modules/button/button.php:146
721
+ #: modules/button/button.php:150 modules/callout/callout.php:241
722
+ #: modules/callout/callout.php:543
723
+ #: modules/content-slider/content-slider.php:425
724
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
725
+ #: modules/cta/cta.php:299 modules/heading/heading.php:69
726
+ #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
727
+ #: modules/pricing-table/pricing-table.php:43
728
+ #: modules/pricing-table/pricing-table.php:155
729
+ #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
730
+ msgid "Style"
731
+ msgstr "Estilo"
732
+
733
+ #: includes/column-settings.php:14
734
+ msgid "Column Width"
735
+ msgstr "Ancho de columna"
736
+
737
+ #: includes/column-settings.php:26 includes/row-settings.php:48
738
+ #: modules/button/button.php:66 modules/callout/callout.php:225
739
+ #: modules/callout/callout.php:478 modules/callout/callout.php:494
740
+ #: modules/content-slider/content-slider.php:382
741
+ #: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
742
+ #: modules/cta/cta.php:221
743
+ msgid "Text"
744
+ msgstr "Texto"
745
+
746
+ #: includes/column-settings.php:30 includes/column-settings.php:43
747
+ #: includes/column-settings.php:100 includes/row-settings.php:52
748
+ #: includes/row-settings.php:109 includes/row-settings.php:403
749
+ #: modules/callout/callout.php:391
750
+ #: modules/content-slider/content-slider.php:337
751
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
752
+ #: modules/separator/separator.php:34
753
+ msgid "Color"
754
+ msgstr "Color"
755
+
756
+ #: includes/column-settings.php:39 includes/row-settings.php:105
757
+ #: modules/button/button.php:115 modules/callout/callout.php:404
758
+ #: modules/callout/callout.php:508
759
+ #: modules/content-slider/content-slider.php:363
760
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
761
+ #: modules/cta/cta.php:264 modules/icon-group/icon-group.php:64
762
+ #: modules/icon/icon.php:95
763
+ msgid "Background Color"
764
+ msgstr "Color de Fondo"
765
+
766
+ #: includes/column-settings.php:51 includes/column-settings.php:108
767
+ #: includes/row-settings.php:117 includes/row-settings.php:411
768
+ #: modules/separator/separator.php:44
769
+ msgid "Opacity"
770
+ msgstr "Opacidad"
771
+
772
+ #: includes/column-settings.php:63 includes/row-settings.php:366
773
+ msgid "Border"
774
+ msgstr "Borde"
775
+
776
+ #: includes/column-settings.php:67 includes/row-settings.php:65
777
+ #: includes/row-settings.php:370 modules/callout/callout.php:474
778
+ #: modules/content-slider/content-slider.php:331
779
+ #: modules/content-slider/content-slider.php:378
780
+ #: modules/content-slider/content-slider.php:596
781
+ #: modules/content-slider/content-slider.php:729
782
+ #: modules/slideshow/slideshow.php:339
783
+ msgid "Type"
784
+ msgstr "Tipo"
785
+
786
+ #: includes/column-settings.php:69 includes/row-settings.php:372
787
+ msgid ""
788
+ "The type of border to use. Double borders must have a width of at least 3px "
789
+ "to render properly."
790
+ msgstr ""
791
+ "El tipo de borde a utilizar. Los bordes dobles deben tener una anchura de al "
792
+ "menos 3px para visualizarse correctamente."
793
+
794
+ #: includes/column-settings.php:71 includes/row-settings.php:374
795
+ msgctxt "Border type."
796
+ msgid "None"
797
+ msgstr "Ninguno"
798
+
799
+ #: includes/column-settings.php:72 includes/row-settings.php:375
800
+ #: modules/separator/separator.php:75
801
+ msgctxt "Border type."
802
+ msgid "Solid"
803
+ msgstr "Sólido"
804
+
805
+ #: includes/column-settings.php:73 includes/row-settings.php:376
806
+ #: modules/separator/separator.php:76
807
+ msgctxt "Border type."
808
+ msgid "Dashed"
809
+ msgstr "Discontinuo"
810
+
811
+ #: includes/column-settings.php:74 includes/row-settings.php:377
812
+ #: modules/separator/separator.php:77
813
+ msgctxt "Border type."
814
+ msgid "Dotted"
815
+ msgstr "Punteado"
816
+
817
+ #: includes/column-settings.php:75 includes/row-settings.php:378
818
+ #: modules/separator/separator.php:78
819
+ msgctxt "Border type."
820
+ msgid "Double"
821
+ msgstr "Doble"
822
+
823
+ #: includes/column-settings.php:119 includes/row-settings.php:422
824
+ msgid "Top Width"
825
+ msgstr "Ancho Superior"
826
+
827
+ #: includes/column-settings.php:131 includes/row-settings.php:434
828
+ msgid "Bottom Width"
829
+ msgstr "Ancho Inferior"
830
+
831
+ #: includes/column-settings.php:143 includes/row-settings.php:446
832
+ msgid "Left Width"
833
+ msgstr "Ancho Izquierdo"
834
+
835
+ #: includes/column-settings.php:155 includes/row-settings.php:458
836
+ msgid "Right Width"
837
+ msgstr "Ancho Derecho"
838
+
839
+ #: includes/column-settings.php:170 includes/module-settings.php:6
840
+ #: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
841
+ msgid "Advanced"
842
+ msgstr "Avanzado"
843
+
844
+ #: includes/column-settings.php:173 includes/global-settings.php:41
845
+ #: includes/global-settings.php:94 includes/module-settings.php:9
846
+ #: includes/row-settings.php:476
847
+ msgid "Margins"
848
+ msgstr "Márgenes"
849
+
850
+ #: includes/column-settings.php:177 includes/column-settings.php:230
851
+ #: includes/module-settings.php:13 includes/row-settings.php:480
852
+ #: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
853
+ msgid "Top"
854
+ msgstr "Superior"
855
+
856
+ #: includes/column-settings.php:189 includes/column-settings.php:242
857
+ #: includes/module-settings.php:25 includes/row-settings.php:492
858
+ #: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
859
+ msgid "Bottom"
860
+ msgstr "Inferior"
861
+
862
+ #: includes/column-settings.php:201 includes/column-settings.php:254
863
+ #: includes/module-settings.php:37 includes/row-settings.php:504
864
+ #: includes/row-settings.php:557 modules/button/button.php:219
865
+ #: modules/callout/callout.php:252
866
+ #: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
867
+ #: modules/heading/heading.php:89 modules/heading/heading.php:161
868
+ #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
869
+ #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
870
+ msgid "Left"
871
+ msgstr "Izquierda"
872
+
873
+ #: includes/column-settings.php:213 includes/column-settings.php:266
874
+ #: includes/module-settings.php:49 includes/row-settings.php:516
875
+ #: includes/row-settings.php:569 modules/button/button.php:220
876
+ #: modules/callout/callout.php:253
877
+ #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
878
+ #: modules/heading/heading.php:91 modules/heading/heading.php:163
879
+ #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
880
+ #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
881
+ msgid "Right"
882
+ msgstr "Derecha"
883
+
884
+ #: includes/column-settings.php:226 includes/global-settings.php:49
885
+ #: includes/row-settings.php:529 modules/button/button.php:233
886
+ #: modules/callout/callout.php:598
887
+ #: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
888
+ msgid "Padding"
889
+ msgstr "Márgenes interiores / Padding"
890
+
891
+ #: includes/column-settings.php:279 includes/global-settings.php:103
892
+ #: includes/module-settings.php:62 includes/row-settings.php:582
893
+ msgid "Responsive Layout"
894
+ msgstr "Diseño Adaptable"
895
+
896
+ #: includes/column-settings.php:283 includes/module-settings.php:66
897
+ #: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
898
+ msgid "Display"
899
+ msgstr "Pantalla"
900
+
901
+ #: includes/column-settings.php:285 includes/module-settings.php:68
902
+ #: includes/row-settings.php:588
903
+ msgid "Always"
904
+ msgstr "Todas"
905
+
906
+ #: includes/column-settings.php:286 includes/module-settings.php:69
907
+ #: includes/row-settings.php:589
908
+ msgid "Large Devices Only"
909
+ msgstr "Sólo dispositivos de tamaño grande"
910
+
911
+ #: includes/column-settings.php:287 includes/module-settings.php:70
912
+ #: includes/row-settings.php:590
913
+ msgid "Large &amp; Medium Devices Only"
914
+ msgstr "Sólo dispositivos grandes y medianos"
915
+
916
+ #: includes/column-settings.php:288 includes/module-settings.php:71
917
+ #: includes/row-settings.php:591
918
+ msgid "Medium Devices Only"
919
+ msgstr "Sólo dispositivos medianos"
920
+
921
+ #: includes/column-settings.php:289 includes/module-settings.php:72
922
+ #: includes/row-settings.php:592
923
+ msgid "Medium &amp; Small Devices Only"
924
+ msgstr "Sólo dispositivos medianos y pequeños"
925
+
926
+ #: includes/column-settings.php:290 includes/module-settings.php:73
927
+ #: includes/row-settings.php:593
928
+ msgid "Small Devices Only"
929
+ msgstr "Sólo dispositivos pequeños"
930
+
931
+ #: includes/column-settings.php:292
932
+ msgid "Choose whether to show or hide this column at different device sizes."
933
+ msgstr ""
934
+ "Elegir si deseas mostrar u ocultar esta columna en dispositivos de diferente "
935
+ "tamaños."
936
+
937
+ #: includes/column-settings.php:299
938
+ msgid "Medium Device Width"
939
+ msgstr "Anchura de dispositivo de tamaño mediano"
940
+
941
+ #: includes/column-settings.php:300
942
+ msgid "The width of this column on medium devices such as tablets."
943
+ msgstr ""
944
+ "La anchura de esta columna en dispositivos de tamaño mediano como tabletas."
945
+
946
+ #: includes/column-settings.php:302 includes/column-settings.php:330
947
+ #: modules/callout/callout.php:283
948
+ #: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
949
+ #: modules/heading/heading.php:117 modules/heading/heading.php:144
950
+ #: modules/heading/heading.php:174
951
+ msgid "Default"
952
+ msgstr "Predeterminado"
953
+
954
+ #: includes/column-settings.php:303 includes/column-settings.php:331
955
+ #: modules/button/button.php:193 modules/callout/callout.php:284
956
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
957
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145
958
+ #: modules/heading/heading.php:175
959
+ #: modules/social-buttons/social-buttons.php:74
960
+ msgid "Custom"
961
+ msgstr "Personalizada"
962
+
963
+ #: includes/column-settings.php:316
964
+ msgid "Custom Medium Device Width"
965
+ msgstr "Personalizar anchura en dispositivo de tamaño mediano"
966
+
967
+ #: includes/column-settings.php:327
968
+ msgid "Small Device Width"
969
+ msgstr "Anchura de dispositivo de tamaño pequeño"
970
+
971
+ #: includes/column-settings.php:328
972
+ msgid "The width of this column on small devices such as phones."
973
+ msgstr ""
974
+ "La anchura de esta columna en dispositivos de tamaño pequeño como teléfonos."
975
+
976
+ #: includes/column-settings.php:344
977
+ msgid "Custom Small Device Width"
978
+ msgstr "Personalizar anchura en dispositivo de tamaño pequeño"
979
+
980
+ #: includes/column-settings.php:356 includes/module-settings.php:115
981
+ #: includes/row-settings.php:603
982
+ msgid "CSS Selectors"
983
+ msgstr "Selectores CSS"
984
+
985
+ #: includes/column-settings.php:360 includes/loop-settings.php:27
986
+ #: includes/module-settings.php:119 includes/row-settings.php:607
987
+ msgid "ID"
988
+ msgstr "ID"
989
+
990
+ #: includes/column-settings.php:361
991
+ msgid ""
992
+ "A unique ID that will be applied to this column's HTML. Must start with a "
993
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
994
+ msgstr ""
995
+ "Un único ID que se aplicará al HTML de esta columna. Debe empezar con una "
996
+ "letra y sólo contener guiones, subrayados, letras o números. Sin espacios."
997
+
998
+ #: includes/column-settings.php:368
999
+ msgid "CSS Class"
1000
+ msgstr "Clase CSS"
1001
+
1002
+ #: includes/column-settings.php:369
1003
+ msgid ""
1004
+ "A class that will be applied to this column's HTML. Must start with a letter "
1005
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
1006
+ "classes with spaces."
1007
+ msgstr ""
1008
+ "Una clase que se aplicará al HTML de esta columna. Debe empezar con una "
1009
+ "letra y sólo contener guiones, subrayados, letras o números. Separar las "
1010
+ "diferentes clases con espacios."
1011
+
1012
+ #: includes/field-form.php:28
1013
+ #, php-format
1014
+ msgctxt "%s stands for form field label."
1015
+ msgid "Edit %s"
1016
+ msgstr "Editar %s"
1017
+
1018
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
1019
+ msgid "Select Icon"
1020
+ msgstr "Seleccionar Icono"
1021
+
1022
+ #: includes/field-icon.php:5 includes/field-photo.php:13
1023
+ msgid "Replace"
1024
+ msgstr "Reemplazar"
1025
+
1026
+ #: includes/field-icon.php:7 includes/js-config.php:58
1027
+ msgid "Remove"
1028
+ msgstr "Eliminar"
1029
+
1030
+ #: includes/field-link.php:3
1031
+ msgid "Select"
1032
+ msgstr "Seleccionar"
1033
+
1034
+ #: includes/field-link.php:5
1035
+ msgid "Enter a post title to search."
1036
+ msgstr "Introduce un título para buscar."
1037
+
1038
+ #: includes/field-link.php:6 includes/field-suggest.php:7
1039
+ msgid "Start typing..."
1040
+ msgstr "Empieza a escribir..."
1041
+
1042
+ #: includes/field-link.php:7 includes/icon-selector.php:28
1043
+ #: includes/js-config.php:19 includes/settings.php:63
1044
+ #: includes/template-selector.php:102 includes/ui.php:11
1045
+ msgid "Cancel"
1046
+ msgstr "Cancelar"
1047
+
1048
+ #: includes/field-multiple-photos.php:8
1049
+ #, php-format
1050
+ msgid "1 Photo Selected"
1051
+ msgid_plural "%d Photos Selected"
1052
+ msgstr[0] "1 Foto Seleccionada"
1053
+ msgstr[1] "%d Fotos Seleccionadas"
1054
+
1055
+ #: includes/field-multiple-photos.php:13
1056
+ msgid "Create Gallery"
1057
+ msgstr "Crear Galería"
1058
+
1059
+ #: includes/field-multiple-photos.php:14
1060
+ msgid "Edit Gallery"
1061
+ msgstr "Editar Galería"
1062
+
1063
+ #: includes/field-multiple-photos.php:15
1064
+ msgid "Add Photos"
1065
+ msgstr "Añadir Fotos"
1066
+
1067
+ #: includes/field-photo.php:3 includes/js-config.php:63
1068
+ msgid "Select Photo"
1069
+ msgstr "Seleccionar Imagen"
1070
+
1071
+ #: includes/field-video.php:3 includes/js-config.php:65
1072
+ msgid "Select Video"
1073
+ msgstr "Seleccionar Video"
1074
+
1075
+ #: includes/field-video.php:17
1076
+ msgid "Replace Video"
1077
+ msgstr "Reemplazar Vídeo"
1078
+
1079
+ #: includes/global-settings.php:7 includes/template-settings.php:7
1080
+ #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
1081
+ #: modules/button/button.php:59 modules/callout/callout.php:209
1082
+ #: modules/contact-form/contact-form.php:57
1083
+ #: modules/content-slider/content-slider.php:190
1084
+ #: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
1085
+ #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
1086
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
1087
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
1088
+ #: modules/pricing-table/pricing-table.php:87
1089
+ #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
1090
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
1091
+ #: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
1092
+ #: modules/testimonials/testimonials.php:30
1093
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
1094
+ #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
1095
+ msgid "General"
1096
+ msgstr "General"
1097
+
1098
+ #: includes/global-settings.php:8
1099
+ msgid "Note: These settings apply to all posts and pages."
1100
+ msgstr "Nota: Estos ajustes se aplican a todas las páginas y entradas."
1101
+
1102
+ #: includes/global-settings.php:11
1103
+ msgid "Default Page Heading"
1104
+ msgstr "Encabezado de Página Predeterminado"
1105
+
1106
+ #: includes/global-settings.php:15
1107
+ msgctxt ""
1108
+ "General settings form field label. Intended meaning: \"Show page heading?\""
1109
+ msgid "Show"
1110
+ msgstr "Mostrar"
1111
+
1112
+ #: includes/global-settings.php:26
1113
+ msgid ""
1114
+ "Choosing no will hide the default theme heading for the \"Page\" post type. "
1115
+ "You will also be required to enter some basic CSS for this to work if you "
1116
+ "choose no."
1117
+ msgstr ""
1118
+ "Eligiendo no se ocultá el encabezado por defecto del tema para el tipo "
1119
+ "\"Página\". Necesitarás algo de CSS básico para que esto funcione si eliges "
1120
+ "no."
1121
+
1122
+ #: includes/global-settings.php:30
1123
+ msgid "CSS Selector"
1124
+ msgstr "Selector CSS"
1125
+
1126
+ #: includes/global-settings.php:32
1127
+ msgid "Enter a CSS selector for the default page heading to hide it."
1128
+ msgstr ""
1129
+ "Escribe un selector CSS para ocultar el encabezado de página predeterminado."
1130
+
1131
+ #: includes/global-settings.php:37
1132
+ msgid "Rows"
1133
+ msgstr "Filas"
1134
+
1135
+ #: includes/global-settings.php:57
1136
+ msgid "Max Width"
1137
+ msgstr "Anchura Máxima"
1138
+
1139
+ #: includes/global-settings.php:62
1140
+ msgid ""
1141
+ "All rows will default to this width. You can override this and make a row "
1142
+ "full width in the settings for each row."
1143
+ msgstr ""
1144
+ "Todas las filas tendrán por defecto esta anchura. Puedes anular esto y hacer "
1145
+ "una fila con anchura completa desde la configuración de cada fila."
1146
+
1147
+ #: includes/global-settings.php:66
1148
+ msgid "Default Row Width"
1149
+ msgstr "Ancho Predeterminado de Fila"
1150
+
1151
+ #: includes/global-settings.php:69 includes/global-settings.php:83
1152
+ #: includes/row-settings.php:19 includes/row-settings.php:37
1153
+ #: includes/row-settings.php:179
1154
+ msgid "Fixed"
1155
+ msgstr "Fija"
1156
+
1157
+ #: includes/global-settings.php:70 includes/global-settings.php:84
1158
+ #: includes/row-settings.php:20 includes/row-settings.php:38
1159
+ #: modules/button/button.php:192 modules/callout/callout.php:585
1160
+ msgid "Full Width"
1161
+ msgstr "Anchura Completa"
1162
+
1163
+ #: includes/global-settings.php:80
1164
+ msgid "Default Row Content Width"
1165
+ msgstr "Ancho Predeterminado del Contenido de la Fila"
1166
+
1167
+ #: includes/global-settings.php:107
1168
+ msgctxt ""
1169
+ "General settings form field label. Intended meaning: \"Responsive layout "
1170
+ "enabled?\""
1171
+ msgid "Enabled"
1172
+ msgstr "Habilitado"
1173
+
1174
+ #: includes/global-settings.php:121
1175
+ msgid "Medium Device Breakpoint"
1176
+ msgstr "Punto de Ruptura para Dispositivos de tamaño medio"
1177
+
1178
+ #: includes/global-settings.php:126
1179
+ msgid ""
1180
+ "The browser width at which the layout will adjust for medium devices such as "
1181
+ "tablets."
1182
+ msgstr ""
1183
+ "El ancho del navegador en la que el diseño se ajustará para dispositivos de "
1184
+ "tamaño medio, como las tabletas."
1185
+
1186
+ #: includes/global-settings.php:130
1187
+ msgid "Small Device Breakpoint"
1188
+ msgstr "Punto de Ruptura para Dispositivos de tamaño pequeño"
1189
+
1190
+ #: includes/global-settings.php:135
1191
+ msgid ""
1192
+ "The browser width at which the layout will adjust for small devices such as "
1193
+ "phones."
1194
+ msgstr ""
1195
+ "El ancho del navegador en la que el diseño se ajustará para dispositivos de "
1196
+ "tamaño pequeño, como los teléfonos."
1197
+
1198
+ #: includes/icon-selector.php:5
1199
+ msgctxt "Select option for showing all icon libraries."
1200
+ msgid "All Libraries"
1201
+ msgstr "Todas las Bibliotecas"
1202
+
1203
+ #: includes/js-config.php:18
1204
+ msgid "What would you like to do?"
1205
+ msgstr "¿Qué te gustaría hacer?"
1206
+
1207
+ #: includes/js-config.php:20
1208
+ msgid "Change Template"
1209
+ msgstr "Cambiar Plantilla"
1210
+
1211
+ #: includes/js-config.php:21
1212
+ msgid ""
1213
+ "Warning! Changing the template will replace your existing layout. Do you "
1214
+ "really want to do this?"
1215
+ msgstr ""
1216
+ "¡Advertencia! Cambiando la plantilla reemplazaras tu diseño actual. ¿Quieres "
1217
+ "hacer esto?"
1218
+
1219
+ #: includes/js-config.php:22
1220
+ msgid "Column"
1221
+ msgstr "Columna"
1222
+
1223
+ #: includes/js-config.php:24
1224
+ msgid ""
1225
+ "Please select either a background layout or content layout before submitting."
1226
+ msgstr ""
1227
+ "Por favor, selecciona un diseño de fondo o diseño de contenido antes de "
1228
+ "guardar."
1229
+
1230
+ #: includes/js-config.php:25
1231
+ msgid "Do you really want to delete this item?"
1232
+ msgstr "¿Quieres eliminar este elemento?"
1233
+
1234
+ #: includes/js-config.php:26
1235
+ msgid ""
1236
+ "Do you really want to delete this module? All content data will be "
1237
+ "permanently deleted."
1238
+ msgstr ""
1239
+ "¿Quieres eliminar este módulo? Se eliminarán definitivamente todos los datos "
1240
+ "de contenido."
1241
+
1242
+ #: includes/js-config.php:27
1243
+ msgid ""
1244
+ "Do you really want to delete this row? All content data will be permanently "
1245
+ "deleted."
1246
+ msgstr ""
1247
+ "¿Quieres eliminar esta fila? Se eliminarán definitivamente todos los datos "
1248
+ "de contenido."
1249
+
1250
+ #: includes/js-config.php:29
1251
+ msgid "Discard Draft"
1252
+ msgstr "Descartar Borrador"
1253
+
1254
+ #: includes/js-config.php:30
1255
+ msgid ""
1256
+ "Do you really want to discard this draft? All of your changes that are not "
1257
+ "published will be lost."
1258
+ msgstr ""
1259
+ "¿Quieres descartar este boceto? Todos los cambios que se no se publiquen se "
1260
+ "perderán."
1261
+
1262
+ #: includes/js-config.php:31 includes/ui.php:44
1263
+ msgid "Done"
1264
+ msgstr "Hecho"
1265
+
1266
+ #: includes/js-config.php:32
1267
+ msgid "Save Draft"
1268
+ msgstr "Guardar Borrador"
1269
+
1270
+ #: includes/js-config.php:33
1271
+ msgctxt "Duplicate page/post action label."
1272
+ msgid "Duplicate"
1273
+ msgstr "Duplicar"
1274
+
1275
+ #: includes/js-config.php:34
1276
+ msgid "Duplicate This Page"
1277
+ msgstr "Duplicar Esta Página"
1278
+
1279
+ #: includes/js-config.php:35
1280
+ msgid "Duplicate This Template"
1281
+ msgstr "Duplicar Esta Plantilla"
1282
+
1283
+ #: includes/js-config.php:36
1284
+ msgid "Edit Global Settings"
1285
+ msgstr "Editar Configuración Global"
1286
+
1287
+ #: includes/js-config.php:37
1288
+ msgid "Drop a row layout or module to get started!"
1289
+ msgstr "¡Arrastra aquí un diseño de fila o un módulo para empezar!"
1290
+
1291
+ #: includes/js-config.php:38
1292
+ msgid ""
1293
+ "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
1294
+ "not functioning as expected the cause is most likely this error. Please help "
1295
+ "us by disabling all plugins and testing Beaver Builder while reactivating "
1296
+ "each to determine if the issue is related to a third party plugin."
1297
+ msgstr ""
1298
+ "Beaver Builder ha encontrado el siguiente error JavaScript. Si Beaver "
1299
+ "Builder no está funcionando como es debido probablemente es a causa de este "
1300
+ "error. Por favor, ayúdanos desactivando todos los plugins y probando Beaver "
1301
+ "Builder mientras vas activándolos de nuevo para saber si el problema está "
1302
+ "relacionado con un plugin de terceros."
1303
+
1304
+ #: includes/js-config.php:39
1305
+ msgid "Full Size"
1306
+ msgstr "Tamaño Completo"
1307
+
1308
+ #: includes/js-config.php:40
1309
+ msgid "Get Help"
1310
+ msgstr "Obtener Ayuda"
1311
+
1312
+ #: includes/js-config.php:41
1313
+ msgid "Getting Started Video"
1314
+ msgstr "Video Primeros Pasos"
1315
+
1316
+ #: includes/js-config.php:42
1317
+ msgid "\"{message}\" on line {line} of {file}."
1318
+ msgstr "\"{message}\" en la línea {line} de {file}."
1319
+
1320
+ #: includes/js-config.php:43
1321
+ msgid "Insert"
1322
+ msgstr "Insertar"
1323
+
1324
+ #: includes/js-config.php:44
1325
+ msgid "Large"
1326
+ msgstr "Grande"
1327
+
1328
+ #: includes/js-config.php:45
1329
+ msgid "Manage Templates"
1330
+ msgstr "Gestionar Plantillas"
1331
+
1332
+ #: includes/js-config.php:46
1333
+ msgid "Medium"
1334
+ msgstr "Medio"
1335
+
1336
+ #: includes/js-config.php:47
1337
+ msgid "Module"
1338
+ msgstr "Módulo"
1339
+
1340
+ #: includes/js-config.php:48
1341
+ msgid "Move"
1342
+ msgstr "Mover"
1343
+
1344
+ #: includes/js-config.php:49
1345
+ msgid "New Column"
1346
+ msgstr "Nueva Columna"
1347
+
1348
+ #: includes/js-config.php:50
1349
+ msgid "New Row"
1350
+ msgstr "Nueva Fila"
1351
+
1352
+ #: includes/js-config.php:51
1353
+ msgid "No results found."
1354
+ msgstr "No hay resultados."
1355
+
1356
+ #: includes/js-config.php:52
1357
+ msgid "No Thanks"
1358
+ msgstr "No, Gracias"
1359
+
1360
+ #: includes/js-config.php:53
1361
+ msgid "OK"
1362
+ msgstr "OK"
1363
+
1364
+ #: includes/js-config.php:54 modules/photo/photo.php:454
1365
+ msgid "Photo Page"
1366
+ msgstr "Página de Foto"
1367
+
1368
+ #: includes/js-config.php:55
1369
+ msgid "Photo Selected"
1370
+ msgstr "Foto Seleccionada"
1371
+
1372
+ #: includes/js-config.php:56
1373
+ msgid "Photos Selected"
1374
+ msgstr "Fotos Seleccionadas"
1375
+
1376
+ #: includes/js-config.php:57
1377
+ msgid "Publish Changes"
1378
+ msgstr "Publicar Cambios"
1379
+
1380
+ #: includes/js-config.php:59
1381
+ msgid "Row"
1382
+ msgstr "Fila"
1383
+
1384
+ #: includes/js-config.php:60 includes/row-settings.php:6
1385
+ msgid "Row Settings"
1386
+ msgstr "Configuración de Fila"
1387
+
1388
+ #: includes/js-config.php:61
1389
+ msgid "Save Core Template"
1390
+ msgstr "Guardar Plantilla Base"
1391
+
1392
+ #: includes/js-config.php:62 includes/ui.php:10
1393
+ #: includes/user-template-settings.php:4
1394
+ msgid "Save Template"
1395
+ msgstr "Guardar Plantilla"
1396
+
1397
+ #: includes/js-config.php:64
1398
+ msgid "Select Photos"
1399
+ msgstr "Seleccionar Fotos"
1400
+
1401
+ #: includes/js-config.php:67
1402
+ msgid "Take a Tour"
1403
+ msgstr "Empezar el Tour"
1404
+
1405
+ #: includes/js-config.php:68
1406
+ msgid "Append New Layout"
1407
+ msgstr "Adjuntar Diseño Nuevo"
1408
+
1409
+ #: includes/js-config.php:69
1410
+ msgid "Replace Existing Layout"
1411
+ msgstr "Reemplazar Diseño Existente"
1412
+
1413
+ #: includes/js-config.php:70
1414
+ msgid "Template Saved!"
1415
+ msgstr "¡Plantilla Guardada!"
1416
+
1417
+ #: includes/js-config.php:71
1418
+ msgid "Thumbnail"
1419
+ msgstr "Miniatura"
1420
+
1421
+ #: includes/js-config.php:72
1422
+ msgid "Next"
1423
+ msgstr "Siguiente"
1424
+
1425
+ #: includes/js-config.php:73
1426
+ msgid "Get Started"
1427
+ msgstr "Empezar"
1428
+
1429
+ #: includes/js-config.php:74
1430
+ msgid "Choose a Template"
1431
+ msgstr "Elegir una Plantilla"
1432
+
1433
+ #: includes/js-config.php:75
1434
+ msgid ""
1435
+ "Get started by choosing a layout template to customize, or build a page from "
1436
+ "scratch by selecting the blank layout template."
1437
+ msgstr ""
1438
+ "Empieza eligiendo una plantilla para personalizar, o crea desde de cero una "
1439
+ "página seleccionando la plantilla de diseño en blanco."
1440
+
1441
+ #: includes/js-config.php:76
1442
+ msgid "Add Rows"
1443
+ msgstr "Añadir filas"
1444
+
1445
+ #: includes/js-config.php:77
1446
+ msgid ""
1447
+ "Add mulit-column rows, adjust spacing, add backgrounds and more by dragging "
1448
+ "and dropping row layouts onto the page."
1449
+ msgstr ""
1450
+ "Añade filas con varias columnas, ajusta márgenes, añade fondos, etc. "
1451
+ "arrastrando y soltando elementos desde las distribuciones de fila hasta tu "
1452
+ "página."
1453
+
1454
+ #: includes/js-config.php:78 includes/ui.php:49
1455
+ msgid "Add Content"
1456
+ msgstr "Añadir Contenido"
1457
+
1458
+ #: includes/js-config.php:79
1459
+ msgid ""
1460
+ "Add new content by dragging and dropping modules or widgets into your row "
1461
+ "layouts or to create a new row layout."
1462
+ msgstr ""
1463
+ "Añade contenido nuevo arrastrando y soltando módulos o widgets en tu fila o "
1464
+ "bien para crear una nueva distribución de fila."
1465
+
1466
+ #: includes/js-config.php:80
1467
+ msgid "Edit Content"
1468
+ msgstr "Editar Contenido"
1469
+
1470
+ #: includes/js-config.php:81
1471
+ msgid ""
1472
+ "Move your mouse over rows, columns or modules to edit and interact with them."
1473
+ msgstr ""
1474
+ "Mueve el ratón sobre las filas, columnas o módulos para editar e interactuar "
1475
+ "con cada elemento."
1476
+
1477
+ #: includes/js-config.php:82
1478
+ msgid ""
1479
+ "Use the action buttons to perform actions such as moving, editing, "
1480
+ "duplicating, accessing individual column settings or deleting rows, columns "
1481
+ "and modules."
1482
+ msgstr ""
1483
+ "Utiliza los botones de acción para mover, editar, duplicar, acceder a "
1484
+ "configuración de columnas de forma individual o eliminar filas, columnas o "
1485
+ "módulos."
1486
+
1487
+ #: includes/js-config.php:83
1488
+ msgid "Add More Content"
1489
+ msgstr "Añadir Más Contenido"
1490
+
1491
+ #: includes/js-config.php:84
1492
+ msgid ""
1493
+ "Use the Add Content button to open the content panel and add new row layouts "
1494
+ "or content."
1495
+ msgstr ""
1496
+ "Usa el botón Añadir Contenido para abrir el panel contenido y agregar nuevas "
1497
+ "distribuciones de fila o contenidos."
1498
+
1499
+ #: includes/js-config.php:85
1500
+ msgid "Change Templates"
1501
+ msgstr "Cambiar Plantillas"
1502
+
1503
+ #: includes/js-config.php:86
1504
+ msgid ""
1505
+ "Use the Templates button to pick a new template or append one to your "
1506
+ "layout. Appending will insert a new template at the end of your existing "
1507
+ "page content."
1508
+ msgstr ""
1509
+ "Usa el botón de Plantillas para escoger una nueva plantilla o adjuntar una "
1510
+ "plantilla a tú diseño ya existente. Adjuntar insertará una nueva plantilla "
1511
+ "al final de tu diseño."
1512
+
1513
+ #: includes/js-config.php:87
1514
+ msgid "Helpful Tools"
1515
+ msgstr "Herramientas Útiles"
1516
+
1517
+ #: includes/js-config.php:88
1518
+ msgid ""
1519
+ "The Tools button lets you duplicate a page, save a template or edit the "
1520
+ "global settings."
1521
+ msgstr ""
1522
+ "El botón de herramientas te permite duplicar una página, guardar una "
1523
+ "plantilla o editar la configuración global."
1524
+
1525
+ #: includes/js-config.php:89
1526
+ msgid "Publish Your Changes"
1527
+ msgstr "Publicar Tus Cambios"
1528
+
1529
+ #: includes/js-config.php:90
1530
+ msgid ""
1531
+ "Once you're finished, click the Done button to publish your changes, save a "
1532
+ "draft or revert back to the last published state."
1533
+ msgstr ""
1534
+ "Una vez que hayas terminado, haz clic en el botón de publicar los cambios, "
1535
+ "guardar un borrador o revertir al último estado publicado."
1536
+
1537
+ #: includes/js-config.php:91
1538
+ msgid "Let's Get Building!"
1539
+ msgstr "Empezar a Diseñar!"
1540
+
1541
+ #: includes/js-config.php:92
1542
+ msgid ""
1543
+ "Now that you know the basics, you're ready to start building! If at any time "
1544
+ "you need help, click the help icon in the upper right corner to access the "
1545
+ "help menu. Happy building!"
1546
+ msgstr ""
1547
+ "Ahora que ya sabes lo básico, estás listo para empezar a diseñar! Si "
1548
+ "necesitas ayuda en cualquier momento, haz clic en el icono de ayuda en la "
1549
+ "esquina superior derecha para acceder al menú de ayuda. ¡Happy building!"
1550
+
1551
+ #: includes/js-config.php:93
1552
+ msgid ""
1553
+ "The settings you are currently editing will not be saved if you navigate "
1554
+ "away from this page."
1555
+ msgstr ""
1556
+ "Los cambios que has realizado se perderán si navegas fuera de esta página."
1557
+
1558
+ #: includes/js-config.php:94
1559
+ msgid "View the Knowledge Base"
1560
+ msgstr "Ver la Base de Conocimiento"
1561
+
1562
+ #: includes/js-config.php:95
1563
+ msgid "Visit the Forums"
1564
+ msgstr "Visitar los Foros"
1565
+
1566
+ #: includes/js-config.php:96
1567
+ msgid "Watch the Video"
1568
+ msgstr "Ver el Video"
1569
+
1570
+ #: includes/js-config.php:97
1571
+ msgid ""
1572
+ "Welcome! It looks like this might be your first time using the builder. "
1573
+ "Would you like to take a tour?"
1574
+ msgstr ""
1575
+ "¡Bienvenido! Parece que es la primera vez que utilizas este editor. ¿Te "
1576
+ "gustaría realizar un tour?"
1577
+
1578
+ #: includes/js-config.php:98
1579
+ msgid "Yes Please!"
1580
+ msgstr "Sí, por favor!"
1581
+
1582
+ #: includes/loop-settings.php:19
1583
+ msgid "Post Type"
1584
+ msgstr "Tipo de Entrada"
1585
+
1586
+ #: includes/loop-settings.php:25
1587
+ msgid "Order By"
1588
+ msgstr "Ordenar Por"
1589
+
1590
+ #: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
1591
+ #: modules/woocommerce/woocommerce.php:189
1592
+ msgid "Date"
1593
+ msgstr "Fecha"
1594
+
1595
+ #: includes/loop-settings.php:29
1596
+ msgid "Date Last Modified"
1597
+ msgstr "Fecha de Última Modificación"
1598
+
1599
+ #: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
1600
+ #: modules/pricing-table/pricing-table.php:94
1601
+ msgid "Title"
1602
+ msgstr "Título"
1603
+
1604
+ #: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
1605
+ msgid "Author"
1606
+ msgstr "Autor"
1607
+
1608
+ #: includes/loop-settings.php:32
1609
+ msgid "Comment Count"
1610
+ msgstr "Contador de Comentarios"
1611
+
1612
+ #: includes/loop-settings.php:33
1613
+ msgid "Menu Order"
1614
+ msgstr "Orden del Menú"
1615
+
1616
+ #: includes/loop-settings.php:34
1617
+ msgid "Random"
1618
+ msgstr "Aleatorio"
1619
+
1620
+ #: includes/loop-settings.php:41
1621
+ msgid "Order"
1622
+ msgstr "Ordenar"
1623
+
1624
+ #: includes/loop-settings.php:43
1625
+ msgid "Descending"
1626
+ msgstr "Descendente"
1627
+
1628
+ #: includes/loop-settings.php:44
1629
+ msgid "Ascending"
1630
+ msgstr "Ascendente"
1631
+
1632
+ #: includes/loop-settings.php:52
1633
+ msgid "Filter"
1634
+ msgstr "Filtro"
1635
+
1636
+ #: includes/loop-settings.php:63
1637
+ #, php-format
1638
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
1639
+ msgstr ""
1640
+ "Escribir una lista separada por comas de %s. Sólo se mostrarán estos %s."
1641
+
1642
+ #: includes/loop-settings.php:76
1643
+ #, php-format
1644
+ msgid ""
1645
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
1646
+ msgstr ""
1647
+ "Escribir una lista separada por comas de %s. Sólo se mostrarán las entradas "
1648
+ "con estos %s."
1649
+
1650
+ #: includes/loop-settings.php:90
1651
+ msgid "Authors"
1652
+ msgstr "Autores"
1653
+
1654
+ #: includes/loop-settings.php:91
1655
+ msgid ""
1656
+ "Enter a comma separated list of authors usernames. Only posts with these "
1657
+ "authors will be shown."
1658
+ msgstr ""
1659
+ "Escribir una lista separada por comas con los nombres de autores. Se "
1660
+ "mostrarán las entradas de estos autores."
1661
+
1662
+ #: includes/module-settings.php:75
1663
+ msgid "Choose whether to show or hide this module at different device sizes."
1664
+ msgstr ""
1665
+ "Elegir si deseas mostrar u ocultar esta columna en dispositivos con tamaños "
1666
+ "diferentes."
1667
+
1668
+ #: includes/module-settings.php:83
1669
+ msgid "Animation"
1670
+ msgstr "Animación"
1671
+
1672
+ #: includes/module-settings.php:89
1673
+ msgctxt "Animation style."
1674
+ msgid "None"
1675
+ msgstr "Ninguno"
1676
+
1677
+ #: includes/module-settings.php:90
1678
+ msgctxt "Animation style."
1679
+ msgid "Fade In"
1680
+ msgstr "Desvanecer"
1681
+
1682
+ #: includes/module-settings.php:91
1683
+ msgctxt "Animation style."
1684
+ msgid "Slide Left"
1685
+ msgstr "Deslizar desde la Izquierda"
1686
+
1687
+ #: includes/module-settings.php:92
1688
+ msgctxt "Animation style."
1689
+ msgid "Slide Right"
1690
+ msgstr "Deslizar desde la Derecha"
1691
+
1692
+ #: includes/module-settings.php:93
1693
+ msgctxt "Animation style."
1694
+ msgid "Slide Up"
1695
+ msgstr "Deslizar desde Arriba"
1696
+
1697
+ #: includes/module-settings.php:94
1698
+ msgctxt "Animation style."
1699
+ msgid "Slide Down"
1700
+ msgstr "Deslizar desde Abajo"
1701
+
1702
+ #: includes/module-settings.php:102
1703
+ #: modules/content-slider/content-slider.php:229
1704
+ #: modules/testimonials/testimonials.php:91
1705
+ msgid "Delay"
1706
+ msgstr "Retardo"
1707
+
1708
+ #: includes/module-settings.php:106 includes/row-settings.php:266
1709
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
1710
+ #: modules/content-slider/content-slider.php:250
1711
+ #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
1712
+ #: modules/slideshow/slideshow.php:581
1713
+ #: modules/testimonials/testimonials.php:95
1714
+ #: modules/testimonials/testimonials.php:112
1715
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
1716
+ msgid "seconds"
1717
+ msgstr "segundos"
1718
+
1719
+ #: includes/module-settings.php:107
1720
+ msgid "The amount of time in seconds before this animation starts."
1721
+ msgstr ""
1722
+ "Especifica el tiempo de espera en segundos antes de que empiece la animación."
1723
+
1724
+ #: includes/module-settings.php:120
1725
+ msgid ""
1726
+ "A unique ID that will be applied to this module's HTML. Must start with a "
1727
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
1728
+ msgstr ""
1729
+ "Un único ID que se aplicará al HTML de este módulo. Debe empezar con una "
1730
+ "letra y sólo contener guiones, subrayados, letras o números. Sin espacios."
1731
+
1732
+ #: includes/module-settings.php:127 includes/row-settings.php:615
1733
+ msgid "Class"
1734
+ msgstr "Clase"
1735
+
1736
+ #: includes/module-settings.php:128
1737
+ msgid ""
1738
+ "A class that will be applied to this module's HTML. Must start with a letter "
1739
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
1740
+ "classes with spaces."
1741
+ msgstr ""
1742
+ "Una clase que se aplicará al HTML de este módulo. Debe empezar con una letra "
1743
+ "y sólo contener guiones, subrayados, letras o números. Separa varias clases "
1744
+ "con espacios."
1745
+
1746
+ #: includes/row-settings.php:16 modules/button/button.php:188
1747
+ #: modules/content-slider/content-slider.php:483
1748
+ msgid "Width"
1749
+ msgstr "Anchura"
1750
+
1751
+ #: includes/row-settings.php:27
1752
+ msgid ""
1753
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
1754
+ "no wider than the Row Max Width set in the Global Settings."
1755
+ msgstr ""
1756
+ "Las filas de anchura completa abarcan todo el ancho de la página de lado a "
1757
+ "lado. Las filas fijas no son mas anchas que la Anchura Máxima de la Fila "
1758
+ "establecida en la Configuración Global."
1759
+
1760
+ #: includes/row-settings.php:34
1761
+ msgid "Content Width"
1762
+ msgstr "Anchura del Contenido"
1763
+
1764
+ #: includes/row-settings.php:40
1765
+ msgid ""
1766
+ "Full width content spans the width of the page from edge to edge. Fixed "
1767
+ "content is no wider than the Row Max Width set in the Global Settings."
1768
+ msgstr ""
1769
+ "Los contenidos a anchura completa abarcan todo el ancho de la página de lado "
1770
+ "a lado. El contenido fijo no es más ancho que la Anchura Máxima de la Fila "
1771
+ "establecida en la Configuración Global."
1772
+
1773
+ #: includes/row-settings.php:61
1774
+ msgid "Background"
1775
+ msgstr "Fondo"
1776
+
1777
+ #: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
1778
+ msgctxt "Background type."
1779
+ msgid "None"
1780
+ msgstr "Ninguno"
1781
+
1782
+ #: includes/row-settings.php:69
1783
+ msgctxt "Background type."
1784
+ msgid "Color"
1785
+ msgstr "Color"
1786
+
1787
+ #: includes/row-settings.php:70
1788
+ msgctxt "Background type."
1789
+ msgid "Photo"
1790
+ msgstr "Imagen"
1791
+
1792
+ #: includes/row-settings.php:71
1793
+ msgctxt "Background type."
1794
+ msgid "Video"
1795
+ msgstr "Vídeo"
1796
+
1797
+ #: includes/row-settings.php:73
1798
+ msgctxt "Background type."
1799
+ msgid "Slideshow"
1800
+ msgstr "Carrusel"
1801
+
1802
+ #: includes/row-settings.php:77
1803
+ msgctxt "Background type."
1804
+ msgid "Parallax"
1805
+ msgstr "Parallax"
1806
+
1807
+ #: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
1808
+ msgid "Background Photo"
1809
+ msgstr "Imagen de fondo"
1810
+
1811
+ #: includes/row-settings.php:133 includes/row-settings.php:321
1812
+ #: modules/callout/callout.php:316 modules/callout/callout.php:332
1813
+ #: modules/callout/callout.php:336
1814
+ #: modules/content-slider/content-slider.php:335
1815
+ #: modules/content-slider/content-slider.php:404
1816
+ #: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
1817
+ #: modules/photo/photo.php:392
1818
+ msgid "Photo"
1819
+ msgstr "Imagen"
1820
+
1821
+ #: includes/row-settings.php:140
1822
+ msgid "Repeat"
1823
+ msgstr "Repetir"
1824
+
1825
+ #: includes/row-settings.php:143
1826
+ msgctxt "Background repeat."
1827
+ msgid "None"
1828
+ msgstr "Ninguno"
1829
+
1830
+ #: includes/row-settings.php:144
1831
+ msgctxt "Background repeat."
1832
+ msgid "Tile"
1833
+ msgstr "Mosaico"
1834
+
1835
+ #: includes/row-settings.php:145
1836
+ msgctxt "Background repeat."
1837
+ msgid "Horizontal"
1838
+ msgstr "Horizontal"
1839
+
1840
+ #: includes/row-settings.php:146
1841
+ msgctxt "Background repeat."
1842
+ msgid "Vertical"
1843
+ msgstr "Vertical"
1844
+
1845
+ #: includes/row-settings.php:148
1846
+ msgid ""
1847
+ "Repeat applies to how the image should display in the row background. "
1848
+ "Choosing none will display the image as uploaded. Tile will repeat the image "
1849
+ "as many times as needed to fill the row horizontally and vertically. You can "
1850
+ "also specify the image to only repeat horizontally or vertically."
1851
+ msgstr ""
1852
+ "Repetir se aplica a cómo se debería mostrar la imagen en el fondo de la "
1853
+ "fila. Elegir ninguno mostrará la imagen tal y como se ha subido. Mosaico "
1854
+ "repetirá la imagen tantas veces como sea necesario para completar la fila "
1855
+ "horizontal y verticalmente. También puedes especificar que la imagen sólo se "
1856
+ "repita horizontalmente o verticalmente."
1857
+
1858
+ #: includes/row-settings.php:158
1859
+ msgid "Left Top"
1860
+ msgstr "Superior Izquierda"
1861
+
1862
+ #: includes/row-settings.php:159
1863
+ msgid "Left Center"
1864
+ msgstr "Centro Izquierda"
1865
+
1866
+ #: includes/row-settings.php:160
1867
+ msgid "Left Bottom"
1868
+ msgstr "Inferior Izquierda"
1869
+
1870
+ #: includes/row-settings.php:161
1871
+ msgid "Right Top"
1872
+ msgstr "Superior Derecha"
1873
+
1874
+ #: includes/row-settings.php:162
1875
+ msgid "Right Center"
1876
+ msgstr "Centro Derecha"
1877
+
1878
+ #: includes/row-settings.php:163
1879
+ msgid "Right Bottom"
1880
+ msgstr "Inferior Derecha"
1881
+
1882
+ #: includes/row-settings.php:164
1883
+ msgid "Center Top"
1884
+ msgstr "Centro Superior"
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-group/icon-group.php:110 modules/icon/icon.php:133
1891
+ #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
1892
+ msgid "Center"
1893
+ msgstr "Centro"
1894
+
1895
+ #: includes/row-settings.php:166
1896
+ msgid "Center Bottom"
1897
+ msgstr "Centro Inferior"
1898
+
1899
+ #: includes/row-settings.php:168
1900
+ msgid "Position will tell the image where it should sit in the row background."
1901
+ msgstr ""
1902
+ "Posición marca el lugar donde la imagen aparecerá en el fondo de la fila."
1903
+
1904
+ #: includes/row-settings.php:175
1905
+ msgid "Attachment"
1906
+ msgstr "Adjunto"
1907
+
1908
+ #: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
1909
+ msgid "Scroll"
1910
+ msgstr "Scroll"
1911
+
1912
+ #: includes/row-settings.php:181
1913
+ msgid ""
1914
+ "Attachment will specify how the image reacts when scrolling a page. When "
1915
+ "scrolling is selected, the image will scroll with page scrolling. This is "
1916
+ "the default setting. Fixed will allow the image to scroll within the row "
1917
+ "background if fill is selected in the scale setting."
1918
+ msgstr ""
1919
+ "Adjunto especifica como se comporta la imagen cuando se hace scroll en la "
1920
+ "página. Cuando se selecciona scroll, la imagen se desplazará con al "
1921
+ "desplazarse en la página. Esta es la opción por defecto. Fijo permitirá que "
1922
+ "la imagen se mueva con el fondo de la fila, si se ha seleccionado relleno en "
1923
+ "el ajuste de escala."
1924
+
1925
+ #: includes/row-settings.php:188
1926
+ msgid "Scale"
1927
+ msgstr "Escalar"
1928
+
1929
+ #: includes/row-settings.php:191
1930
+ msgctxt "Background scale."
1931
+ msgid "None"
1932
+ msgstr "Nada"
1933
+
1934
+ #: includes/row-settings.php:192
1935
+ msgid "Fit"
1936
+ msgstr "Ajustado"
1937
+
1938
+ #: includes/row-settings.php:193
1939
+ msgid "Fill"
1940
+ msgstr "Relleno"
1941
+
1942
+ #: includes/row-settings.php:195
1943
+ msgid ""
1944
+ "Scale applies to how the image should display in the row background. You can "
1945
+ "select either fill or fit to the row background."
1946
+ msgstr ""
1947
+ "La escala se aplica a cómo debería mostrar la imagen de fondo en la fila. "
1948
+ "Puedes seleccionar cualquier relleno o ajuste para fondo."
1949
+
1950
+ #: includes/row-settings.php:203
1951
+ msgid "Background Video"
1952
+ msgstr "Fondo de Video"
1953
+
1954
+ #: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
1955
+ #: modules/video/video.php:19 modules/video/video.php:100
1956
+ msgid "Video"
1957
+ msgstr "Vídeo"
1958
+
1959
+ #: includes/row-settings.php:208
1960
+ msgid ""
1961
+ "An HTML5 video to use as the background of this row. Supported types are "
1962
+ "MP4, WebM and Ogg."
1963
+ msgstr ""
1964
+ "Un vídeo HTML5 para utilizar como fondo de esta fila. Los tipos soportados "
1965
+ "son MP4, WebM y Ogg."
1966
+
1967
+ #: includes/row-settings.php:215
1968
+ msgid "Fallback Photo"
1969
+ msgstr "Foto de Suplencia"
1970
+
1971
+ #: includes/row-settings.php:216
1972
+ msgid "A photo that will be displayed if the video fails to load."
1973
+ msgstr "La foto que se mostrará si el vídeo no se carga."
1974
+
1975
+ #: includes/row-settings.php:224
1976
+ msgid "Background Slideshow"
1977
+ msgstr "Fondo Slideshow"
1978
+
1979
+ #: includes/row-settings.php:228 modules/gallery/gallery.php:234
1980
+ #: modules/slideshow/slideshow.php:263
1981
+ msgid "Source"
1982
+ msgstr "Fuente"
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 "Librería Multimedia"
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
+ "Sacar imágenes de la biblioteca de WordPress o de una galería en tu sitio "
1998
+ "SmugMug insertando la URL del feed RSS de SmugMug. A esta dirección se puede "
1999
+ "acceder desde la función obtener enlace en tu galería SmugMug."
2000
+
2001
+ #: includes/row-settings.php:249 modules/gallery/gallery.php:252
2002
+ #: modules/slideshow/slideshow.php:281
2003
+ msgid "Photos"
2004
+ msgstr "Fotos"
2005
+
2006
+ #: includes/row-settings.php:256 modules/gallery/gallery.php:256
2007
+ #: modules/slideshow/slideshow.php:285
2008
+ msgid "Feed URL"
2009
+ msgstr "Feed URL"
2010
+
2011
+ #: includes/row-settings.php:263 includes/row-settings.php:328
2012
+ #: modules/slideshow/slideshow.php:382
2013
+ msgid "Speed"
2014
+ msgstr "Velocidad"
2015
+
2016
+ #: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
2017
+ #: modules/slideshow/slideshow.php:389
2018
+ #: modules/testimonials/testimonials.php:99
2019
+ msgid "Transition"
2020
+ msgstr "Transición"
2021
+
2022
+ #: includes/row-settings.php:276
2023
+ msgctxt "Slideshow transition type."
2024
+ msgid "None"
2025
+ msgstr "Ninguna"
2026
+
2027
+ #: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
2028
+ #: modules/slideshow/slideshow.php:393
2029
+ #: modules/testimonials/testimonials.php:103
2030
+ msgid "Fade"
2031
+ msgstr "Fundido"
2032
+
2033
+ #: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
2034
+ msgid "Ken Burns"
2035
+ msgstr "Ken Burns"
2036
+
2037
+ #: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
2038
+ msgid "Slide Horizontal"
2039
+ msgstr "Deslizar Horizontalmente"
2040
+
2041
+ #: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
2042
+ msgid "Slide Vertical"
2043
+ msgstr "Deslizar Verticalmente"
2044
+
2045
+ #: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
2046
+ msgid "Blinds"
2047
+ msgstr "Persianas"
2048
+
2049
+ #: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
2050
+ msgid "Bars"
2051
+ msgstr "Barras"
2052
+
2053
+ #: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
2054
+ msgid "Random Bars"
2055
+ msgstr "Barras al azar"
2056
+
2057
+ #: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
2058
+ msgid "Boxes"
2059
+ msgstr "Cajas"
2060
+
2061
+ #: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
2062
+ msgid "Random Boxes"
2063
+ msgstr "Cajas al azar"
2064
+
2065
+ #: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
2066
+ msgid "Boxes Grow"
2067
+ msgstr "Cajas Expandiéndose"
2068
+
2069
+ #: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
2070
+ #: modules/slideshow/slideshow.php:407
2071
+ #: modules/testimonials/testimonials.php:108
2072
+ msgid "Transition Speed"
2073
+ msgstr "Velocidad de Transición"
2074
+
2075
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
2076
+ msgid "Randomize Photos"
2077
+ msgstr "Fotos Aleatorias"
2078
+
2079
+ #: includes/row-settings.php:317
2080
+ msgid "Background Parallax"
2081
+ msgstr "Fondo Parallax"
2082
+
2083
+ #: includes/row-settings.php:331
2084
+ msgid "Fast"
2085
+ msgstr "Rápido"
2086
+
2087
+ #: includes/row-settings.php:332
2088
+ msgctxt "Speed."
2089
+ msgid "Medium"
2090
+ msgstr "Medio"
2091
+
2092
+ #: includes/row-settings.php:333
2093
+ msgid "Slow"
2094
+ msgstr "Lento"
2095
+
2096
+ #: includes/row-settings.php:342
2097
+ msgid "Background Overlay"
2098
+ msgstr "Fondo de Superposición"
2099
+
2100
+ #: includes/row-settings.php:346
2101
+ msgid "Overlay Color"
2102
+ msgstr "Color de Superposición"
2103
+
2104
+ #: includes/row-settings.php:354
2105
+ msgid "Overlay Opacity"
2106
+ msgstr "Opacidad de la Superposición"
2107
+
2108
+ #: includes/row-settings.php:595
2109
+ msgid "Choose whether to show or hide this row at different device sizes."
2110
+ msgstr ""
2111
+ "Elegir si deseas mostrar u ocultar esta fila en dispositivos con tamaños "
2112
+ "diferentes."
2113
+
2114
+ #: includes/row-settings.php:608
2115
+ msgid ""
2116
+ "A unique ID that will be applied to this row's HTML. Must start with a "
2117
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2118
+ msgstr ""
2119
+ "Un único ID que se aplicará al HTML de esta fila. Debe empezar con una letra "
2120
+ "y sólo contener guiones, subrayados, letras o números. Sin espacios."
2121
+
2122
+ #: includes/row-settings.php:616
2123
+ msgid ""
2124
+ "A class that will be applied to this row's HTML. Must start with a letter "
2125
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2126
+ "classes with spaces."
2127
+ msgstr ""
2128
+ "Una clase que se aplicará al HTML de esta fila. Debe empezar con una letra y "
2129
+ "sólo contener guiones, subrayados, letras o números. Separar las diferentes "
2130
+ "clases con espacios."
2131
+
2132
+ #: includes/settings.php:62
2133
+ msgid "Save"
2134
+ msgstr "Guardar"
2135
+
2136
+ #: includes/template-selector.php:3
2137
+ msgid "Layout Templates"
2138
+ msgstr "Plantillas de Diseño"
2139
+
2140
+ #: includes/template-selector.php:8
2141
+ msgid "Home Pages"
2142
+ msgstr "Páginas de Inicio"
2143
+
2144
+ #: includes/template-selector.php:9
2145
+ msgid "Content Pages"
2146
+ msgstr "Páginas de Contenido"
2147
+
2148
+ #: includes/template-selector.php:13
2149
+ msgid "Your Templates"
2150
+ msgstr "Tus Plantillas"
2151
+
2152
+ #: includes/template-selector.php:47 includes/template-selector.php:77
2153
+ msgctxt "Template name."
2154
+ msgid "Blank"
2155
+ msgstr "En Blanco"
2156
+
2157
+ #: includes/template-selector.php:72
2158
+ msgid ""
2159
+ "You haven't saved any templates yet! To do so, create a layout and save it "
2160
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
2161
+ msgstr ""
2162
+ "¡No has guardado ninguna plantilla todavía! Crea un diseño y guárdalo como "
2163
+ "plantilla desde <strong>Herramientas &rarr; Guardar Plantilla</strong>."
2164
+
2165
+ #: includes/template-settings.php:14 includes/user-template-settings.php:15
2166
+ msgctxt "Template name."
2167
+ msgid "Name"
2168
+ msgstr "Nombre"
2169
+
2170
+ #: includes/template-settings.php:18
2171
+ msgid "Image Filename"
2172
+ msgstr "Nombre de archivo de imagen"
2173
+
2174
+ #: includes/template-settings.php:19
2175
+ msgid ""
2176
+ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
2177
+ "templates/\" directory."
2178
+ msgstr ""
2179
+ "El nombre del archivo de imagen \"thumb.jpg\" se encuentra en el directorio "
2180
+ "\"img/templates/\"."
2181
+
2182
+ #: includes/ui.php:7
2183
+ #, php-format
2184
+ msgid "Template: %s"
2185
+ msgstr "Plantilla: %s"
2186
+
2187
+ #: includes/ui.php:23
2188
+ msgid "Page Builder Demo"
2189
+ msgstr "Page Builder Demo"
2190
+
2191
+ #: includes/ui.php:40
2192
+ msgid "Buy Now!"
2193
+ msgstr "Comprar Ahora!"
2194
+
2195
+ #: includes/ui.php:42
2196
+ msgid "Upgrade!"
2197
+ msgstr "Actualizar!"
2198
+
2199
+ #: includes/ui.php:45
2200
+ msgid "Tools"
2201
+ msgstr "Herramientas"
2202
+
2203
+ #: includes/ui.php:67
2204
+ msgid "Row Layouts"
2205
+ msgstr "Distribución de la Fila"
2206
+
2207
+ #: includes/ui.php:71
2208
+ msgid "1 Column"
2209
+ msgstr "1 Columna"
2210
+
2211
+ #: includes/ui.php:72
2212
+ msgid "2 Columns"
2213
+ msgstr "2 Columnas"
2214
+
2215
+ #: includes/ui.php:73
2216
+ msgid "3 Columns"
2217
+ msgstr "3 Columnas"
2218
+
2219
+ #: includes/ui.php:74
2220
+ msgid "4 Columns"
2221
+ msgstr "4 Columnas"
2222
+
2223
+ #: includes/ui.php:75
2224
+ msgid "5 Columns"
2225
+ msgstr "5 Columnas"
2226
+
2227
+ #: includes/ui.php:76
2228
+ msgid "6 Columns"
2229
+ msgstr "6 Columnas"
2230
+
2231
+ #: includes/ui.php:77
2232
+ msgid "Left Sidebar"
2233
+ msgstr "Barra Lateral Izquierda"
2234
+
2235
+ #: includes/ui.php:78
2236
+ msgid "Right Sidebar"
2237
+ msgstr "Barra Lateral Derecha"
2238
+
2239
+ #: includes/ui.php:79
2240
+ msgid "Left &amp; Right Sidebar"
2241
+ msgstr "Izquierda & Barra Lateral Derecha"
2242
+
2243
+ #: includes/updater/classes/class-fl-updater.php:107
2244
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
2245
+ msgstr "<strong>¡ACTUALIZACIÓN NO DISPONIBLE!</strong>"
2246
+
2247
+ #: includes/updater/classes/class-fl-updater.php:109
2248
+ msgid "Please subscribe to enable automatic updates for this plugin."
2249
+ msgstr ""
2250
+ "Suscríbete para habilitar las actualizaciones automáticas de este plugin."
2251
+
2252
+ #: includes/updater/classes/class-fl-updater.php:111
2253
+ #: includes/updater/includes/form.php:6
2254
+ msgid "Subscribe Now"
2255
+ msgstr "Suscribirse ahora"
2256
+
2257
+ #: includes/updater/includes/form.php:5
2258
+ msgid ""
2259
+ "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
2260
+ "enable automatic updates."
2261
+ msgstr ""
2262
+ "¡ACTUALIZACIONES NO DISPONIBLES! Por favor suscríbete o introduce la clave "
2263
+ "de licencia para habilitar actualizaciones automáticas."
2264
+
2265
+ #: includes/updater/includes/form.php:11
2266
+ msgid "Updates &amp; Support Subscription"
2267
+ msgstr "Suscripción Actualizaciones &amp; Soporte"
2268
+
2269
+ #: includes/updater/includes/form.php:14
2270
+ msgid "Active!"
2271
+ msgstr "Activado!"
2272
+
2273
+ #: includes/updater/includes/form.php:16
2274
+ msgid "Not Active!"
2275
+ msgstr "No activado!"
2276
+
2277
+ #: includes/updater/includes/form.php:22
2278
+ msgid "Email address saved!"
2279
+ msgstr "¡Correo electrónico guardado!"
2280
+
2281
+ #: includes/updater/includes/form.php:27
2282
+ #, php-format
2283
+ msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
2284
+ msgstr ""
2285
+ "Introduce tu <a%s>clave de licencia</a> para activar actualizaciones remotas "
2286
+ "y soporte."
2287
+
2288
+ #: includes/updater/includes/form.php:39
2289
+ msgid "Save Subscription Settings"
2290
+ msgstr "Guardar la Configuración de Suscripción"
2291
+
2292
+ #: includes/user-template-settings.php:8
2293
+ msgid ""
2294
+ "Save the current layout as a template that can be reused under "
2295
+ "<strong>Templates &rarr; Your Templates</strong>."
2296
+ msgstr ""
2297
+ "Guarda el diseño actual como una plantilla que puede ser reutilizada desde "
2298
+ "<strong>Plantillas &rarr; Tus Plantillas</strong>."
2299
+
2300
+ #: modules/accordion/accordion.php:14
2301
+ msgid "Accordion"
2302
+ msgstr "Acordeón"
2303
+
2304
+ #: modules/accordion/accordion.php:15
2305
+ msgid "Display a collapsible accordion of items."
2306
+ msgstr "Mostrar un acordeón plegable de elementos."
2307
+
2308
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
2309
+ msgid "Items"
2310
+ msgstr "Elementos"
2311
+
2312
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
2313
+ msgid "Item"
2314
+ msgstr "Elemento"
2315
+
2316
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
2317
+ msgid "Border Color"
2318
+ msgstr "Color del Borde"
2319
+
2320
+ #: modules/accordion/accordion.php:62
2321
+ msgid "Label Size"
2322
+ msgstr "Tamaño de la Etiqueta"
2323
+
2324
+ #: modules/accordion/accordion.php:65
2325
+ msgctxt "Label size."
2326
+ msgid "Small"
2327
+ msgstr "Pequeña"
2328
+
2329
+ #: modules/accordion/accordion.php:66
2330
+ msgctxt "Label size."
2331
+ msgid "Medium"
2332
+ msgstr "Mediana"
2333
+
2334
+ #: modules/accordion/accordion.php:67
2335
+ msgctxt "Label size."
2336
+ msgid "Large"
2337
+ msgstr "Grande"
2338
+
2339
+ #: modules/accordion/accordion.php:75
2340
+ msgid "Item Spacing"
2341
+ msgstr "Espaciado del Elemento"
2342
+
2343
+ #: modules/accordion/accordion.php:86
2344
+ msgid "Collapse Inactive"
2345
+ msgstr "Contraer Inactivo"
2346
+
2347
+ #: modules/accordion/accordion.php:92
2348
+ msgid ""
2349
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
2350
+ "multiple items to be open at the same time."
2351
+ msgstr ""
2352
+ "Si eliges Sí, habrá un sólo elemento abierto en cada momento. Elegir No, "
2353
+ "permitirá que varios elementos puedan estar abiertos al mismo tiempo."
2354
+
2355
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
2356
+ msgid "Add Item"
2357
+ msgstr "Añadir Elemento"
2358
+
2359
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
2360
+ msgid "Label"
2361
+ msgstr "Etiqueta"
2362
+
2363
+ #: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
2364
+ #: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
2365
+ #: modules/tabs/tabs.php:89
2366
+ msgid "Content"
2367
+ msgstr "Contenido"
2368
+
2369
+ #: modules/button/button.php:14 modules/callout/callout.php:479
2370
+ #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
2371
+ #: modules/pricing-table/pricing-table.php:129
2372
+ msgid "Button"
2373
+ msgstr "Botón"
2374
+
2375
+ #: modules/button/button.php:15
2376
+ msgid "A simple call to action button."
2377
+ msgstr "Un simple botón de Call to Action"
2378
+
2379
+ #: modules/button/button.php:67 modules/cta/cta.php:222
2380
+ msgid "Click Here"
2381
+ msgstr "¡Pulsa Aquí!"
2382
+
2383
+ #: modules/button/button.php:75 modules/callout/callout.php:317
2384
+ #: modules/callout/callout.php:365 modules/callout/callout.php:369
2385
+ #: modules/cta/cta.php:230 modules/icon-group/icon-group.php:34
2386
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
2387
+ #: modules/icon/icon.php:34
2388
+ msgid "Icon"
2389
+ msgstr "Icono"
2390
+
2391
+ #: modules/button/button.php:81 modules/button/button.php:85
2392
+ #: modules/callout/callout.php:445 modules/callout/callout.php:449
2393
+ #: modules/content-slider/content-slider.php:573
2394
+ #: modules/content-slider/content-slider.php:577
2395
+ #: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
2396
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47
2397
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
2398
+ #: modules/slideshow/slideshow.php:343
2399
+ msgid "Link"
2400
+ msgstr "Enlace"
2401
+
2402
+ #: modules/button/button.php:86
2403
+ msgid "http://www.example.com"
2404
+ msgstr "http://www.ejemplo.com"
2405
+
2406
+ #: modules/button/button.php:93 modules/callout/callout.php:457
2407
+ #: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
2408
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
2409
+ #: modules/photo/photo.php:478
2410
+ msgid "Link Target"
2411
+ msgstr "Destino del Enlace"
2412
+
2413
+ #: modules/button/button.php:96 modules/callout/callout.php:460
2414
+ #: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
2415
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
2416
+ #: modules/photo/photo.php:481
2417
+ msgid "Same Window"
2418
+ msgstr "Misma Ventana"
2419
+
2420
+ #: modules/button/button.php:97 modules/callout/callout.php:461
2421
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
2422
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
2423
+ #: modules/photo/photo.php:482
2424
+ msgid "New Window"
2425
+ msgstr "Nueva Ventana"
2426
+
2427
+ #: modules/button/button.php:111 modules/cta/cta.php:187
2428
+ #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
2429
+ #: modules/icon/icon.php:78
2430
+ msgid "Colors"
2431
+ msgstr "Colores"
2432
+
2433
+ #: modules/button/button.php:121 modules/callout/callout.php:409
2434
+ #: modules/callout/callout.php:514
2435
+ #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
2436
+ #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
2437
+ msgid "Background Hover Color"
2438
+ msgstr "Color de Fondo al pasar el puntero"
2439
+
2440
+ #: modules/button/button.php:130 modules/callout/callout.php:523
2441
+ #: modules/content-slider/content-slider.php:528
2442
+ #: modules/content-slider/content-slider.php:641
2443
+ #: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
2444
+ #: modules/cta/cta.php:279 modules/heading/heading.php:77
2445
+ msgid "Text Color"
2446
+ msgstr "Color del Texto"
2447
+
2448
+ #: modules/button/button.php:136 modules/callout/callout.php:529
2449
+ #: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
2450
+ msgid "Text Hover Color"
2451
+ msgstr "Color de Texto al pasar el puntero"
2452
+
2453
+ #: modules/button/button.php:153 modules/callout/callout.php:546
2454
+ #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
2455
+ msgid "Flat"
2456
+ msgstr "Plano"
2457
+
2458
+ #: modules/button/button.php:154 modules/callout/callout.php:417
2459
+ #: modules/callout/callout.php:547
2460
+ #: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
2461
+ #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
2462
+ msgid "Gradient"
2463
+ msgstr "Degradado"
2464
+
2465
+ #: modules/button/button.php:155 modules/callout/callout.php:548
2466
+ #: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
2467
+ msgid "Transparent"
2468
+ msgstr "Transparente"
2469
+
2470
+ #: modules/button/button.php:165 modules/callout/callout.php:558
2471
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
2472
+ #: modules/pricing-table/pricing-table.php:67
2473
+ msgid "Border Size"
2474
+ msgstr "Tamaño de Borde"
2475
+
2476
+ #: modules/button/button.php:174 modules/callout/callout.php:567
2477
+ #: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
2478
+ #: modules/cta/cta.php:323
2479
+ msgid "Background Opacity"
2480
+ msgstr "Opacidad de Fondo"
2481
+
2482
+ #: modules/button/button.php:184 modules/callout/callout.php:244
2483
+ #: modules/cta/cta.php:104 modules/heading/heading.php:82
2484
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
2485
+ msgid "Structure"
2486
+ msgstr "Estructura"
2487
+
2488
+ #: modules/button/button.php:191 modules/callout/callout.php:584
2489
+ msgctxt "Width."
2490
+ msgid "Auto"
2491
+ msgstr "Auto"
2492
+
2493
+ #: modules/button/button.php:207
2494
+ msgid "Custom Width"
2495
+ msgstr "Anchura Personalizada"
2496
+
2497
+ #: modules/button/button.php:215 modules/cta/cta.php:122
2498
+ #: modules/heading/heading.php:86 modules/heading/heading.php:141
2499
+ #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
2500
+ #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
2501
+ msgid "Alignment"
2502
+ msgstr "Alineación"
2503
+
2504
+ #: modules/button/button.php:225 modules/callout/callout.php:590
2505
+ #: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
2506
+ #: modules/heading/heading.php:114 modules/heading/heading.php:171
2507
+ msgid "Font Size"
2508
+ msgstr "Tamaño de Fuente"
2509
+
2510
+ #: modules/button/button.php:241 modules/callout/callout.php:606
2511
+ #: modules/cta/cta.php:353
2512
+ msgid "Round Corners"
2513
+ msgstr "Esquinas Redondeadas"
2514
+
2515
+ #: modules/callout/callout.php:14
2516
+ msgid "Callout"
2517
+ msgstr "Leyenda"
2518
+
2519
+ #: modules/callout/callout.php:15
2520
+ msgid "A heading and snippet of text with an optional link, icon and image."
2521
+ msgstr ""
2522
+ "Un encabezado y fragmento de texto con un enlace opcional, un icono y una "
2523
+ "imagen."
2524
+
2525
+ #: modules/callout/callout.php:216
2526
+ #: modules/content-slider/content-slider.php:413
2527
+ #: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
2528
+ #: modules/heading/heading.php:14 modules/heading/heading.php:33
2529
+ #: modules/testimonials/testimonials.php:56
2530
+ #: modules/testimonials/testimonials.php:61
2531
+ msgid "Heading"
2532
+ msgstr "Encabezado"
2533
+
2534
+ #: modules/callout/callout.php:248
2535
+ msgid "Overall Alignment"
2536
+ msgstr "Alineación"
2537
+
2538
+ #: modules/callout/callout.php:255
2539
+ msgid "The alignment that will apply to all elements within the callout."
2540
+ msgstr ""
2541
+ "La alineación que se aplicará a todos los elementos dentro del callout."
2542
+
2543
+ #: modules/callout/callout.php:263 modules/cta/cta.php:147
2544
+ msgid "Heading Structure"
2545
+ msgstr "Estructura del Encabezado"
2546
+
2547
+ #: modules/callout/callout.php:267
2548
+ #: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
2549
+ msgid "Heading Tag"
2550
+ msgstr "Etiqueta de Encabezado"
2551
+
2552
+ #: modules/callout/callout.php:280
2553
+ #: modules/content-slider/content-slider.php:445
2554
+ #: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
2555
+ #: modules/testimonials/testimonials.php:69
2556
+ msgid "Heading Size"
2557
+ msgstr "Tamaño del Encabezado"
2558
+
2559
+ #: modules/callout/callout.php:294 modules/cta/cta.php:178
2560
+ msgid "Heading Custom Size"
2561
+ msgstr "Tamaño Personalizado del Encabezado"
2562
+
2563
+ #: modules/callout/callout.php:312
2564
+ msgid "Image Type"
2565
+ msgstr "Tipo de Imagen"
2566
+
2567
+ #: modules/callout/callout.php:315
2568
+ msgctxt "Image type."
2569
+ msgid "None"
2570
+ msgstr "Ninguna"
2571
+
2572
+ #: modules/callout/callout.php:340 modules/photo/photo.php:401
2573
+ #: modules/slideshow/slideshow.php:312
2574
+ msgid "Crop"
2575
+ msgstr "Recortar / Crop"
2576
+
2577
+ #: modules/callout/callout.php:343
2578
+ msgctxt "Crop"
2579
+ msgid "None"
2580
+ msgstr "Nada"
2581
+
2582
+ #: modules/callout/callout.php:344 modules/photo/photo.php:405
2583
+ msgid "Landscape"
2584
+ msgstr "Horizontal"
2585
+
2586
+ #: modules/callout/callout.php:345 modules/photo/photo.php:406
2587
+ msgid "Panorama"
2588
+ msgstr "Panorama"
2589
+
2590
+ #: modules/callout/callout.php:346 modules/photo/photo.php:407
2591
+ msgid "Portrait"
2592
+ msgstr "Vertical"
2593
+
2594
+ #: modules/callout/callout.php:347 modules/photo/photo.php:408
2595
+ msgid "Square"
2596
+ msgstr "Cuadrado"
2597
+
2598
+ #: modules/callout/callout.php:348 modules/photo/photo.php:409
2599
+ msgid "Circle"
2600
+ msgstr "Círculo"
2601
+
2602
+ #: modules/callout/callout.php:356 modules/callout/callout.php:376
2603
+ msgid "Above Heading"
2604
+ msgstr "Sobre el Encabezado"
2605
+
2606
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
2607
+ msgid "Below Heading"
2608
+ msgstr "Debajo del Encabezado"
2609
+
2610
+ #: modules/callout/callout.php:358 modules/callout/callout.php:380
2611
+ msgid "Left of Text and Heading"
2612
+ msgstr "Izquierda del Texto y Título"
2613
+
2614
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
2615
+ msgid "Right of Text and Heading"
2616
+ msgstr "Derecha del Texto y Título"
2617
+
2618
+ #: modules/callout/callout.php:378
2619
+ msgid "Left of Heading"
2620
+ msgstr "Izquierda del Encabezado"
2621
+
2622
+ #: modules/callout/callout.php:379
2623
+ msgid "Right of Heading"
2624
+ msgstr "Derecha del Encabezado"
2625
+
2626
+ #: modules/callout/callout.php:387
2627
+ msgid "Icon Colors"
2628
+ msgstr "Colores de Icono"
2629
+
2630
+ #: modules/callout/callout.php:396 modules/icon-group/icon-group.php:56
2631
+ #: modules/icon/icon.php:87
2632
+ msgid "Hover Color"
2633
+ msgstr "Color al pasar el puntero"
2634
+
2635
+ #: modules/callout/callout.php:427
2636
+ msgid "Icon Structure"
2637
+ msgstr "Estructura del icono"
2638
+
2639
+ #: modules/callout/callout.php:431 modules/icon-group/icon-group.php:91
2640
+ #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
2641
+ msgid "Size"
2642
+ msgstr "Tamaño"
2643
+
2644
+ #: modules/callout/callout.php:442
2645
+ #: modules/content-slider/content-slider.php:570
2646
+ msgid "Call To Action"
2647
+ msgstr "Call To Action"
2648
+
2649
+ #: modules/callout/callout.php:450
2650
+ msgid ""
2651
+ "The link applies to the entire module. If choosing a call to action type "
2652
+ "below, this link will also be used for the text or button."
2653
+ msgstr ""
2654
+ "El enlace se aplica para todo el módulo. Si eliges una llamada a la acción "
2655
+ "debajo, este enlace también se utilizará para el texto o botón."
2656
+
2657
+ #: modules/callout/callout.php:470
2658
+ #: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
2659
+ msgid "Call to Action"
2660
+ msgstr "Call to Action"
2661
+
2662
+ #: modules/callout/callout.php:477
2663
+ #: modules/content-slider/content-slider.php:599
2664
+ msgctxt "Call to action."
2665
+ msgid "None"
2666
+ msgstr "Ninguno"
2667
+
2668
+ #: modules/callout/callout.php:498
2669
+ #: modules/content-slider/content-slider.php:620
2670
+ msgid "Button Icon"
2671
+ msgstr "Icono del Botón"
2672
+
2673
+ #: modules/callout/callout.php:504
2674
+ #: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
2675
+ msgid "Button Colors"
2676
+ msgstr "Colores del Botón"
2677
+
2678
+ #: modules/callout/callout.php:539
2679
+ #: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
2680
+ msgid "Button Style"
2681
+ msgstr "Estilo de Botón"
2682
+
2683
+ #: modules/callout/callout.php:577
2684
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
2685
+ msgid "Button Structure"
2686
+ msgstr "Estructura del Botón"
2687
+
2688
+ #: modules/callout/callout.php:581
2689
+ msgid "Button Width"
2690
+ msgstr "Ancho del Botón"
2691
+
2692
+ #: modules/contact-form/contact-form.php:14
2693
+ msgid "Contact Form"
2694
+ msgstr "Formulario de Contacto"
2695
+
2696
+ #: modules/contact-form/contact-form.php:15
2697
+ msgid "A very simple contact form."
2698
+ msgstr "Un formulario de contacto sencillo."
2699
+
2700
+ #: modules/contact-form/contact-form.php:36
2701
+ msgid "Contact Form Submission"
2702
+ msgstr "Formulario de Contacto"
2703
+
2704
+ #: modules/contact-form/contact-form.php:64
2705
+ msgid "Send To Email"
2706
+ msgstr "Enviar al Correo electrónico"
2707
+
2708
+ #: modules/contact-form/contact-form.php:66
2709
+ msgid "example@mail.com"
2710
+ msgstr "ejemplo@correo.com"
2711
+
2712
+ #: modules/contact-form/contact-form.php:67
2713
+ msgid "The contact form will send to this e-mail"
2714
+ msgstr "El formulario se enviará a este e-mail"
2715
+
2716
+ #: modules/contact-form/includes/frontend.php:4
2717
+ msgctxt "Contact form field label."
2718
+ msgid "Name"
2719
+ msgstr "Nombre"
2720
+
2721
+ #: modules/contact-form/includes/frontend.php:5
2722
+ msgid "Please enter your name."
2723
+ msgstr "Por favor introduzca su nombre."
2724
+
2725
+ #: modules/contact-form/includes/frontend.php:6
2726
+ msgid "Your name"
2727
+ msgstr "Su nombre"
2728
+
2729
+ #: modules/contact-form/includes/frontend.php:10
2730
+ msgid "Email"
2731
+ msgstr "Email"
2732
+
2733
+ #: modules/contact-form/includes/frontend.php:11
2734
+ msgid "Please enter a valid email."
2735
+ msgstr "Introduzca un correo electrónico válido."
2736
+
2737
+ #: modules/contact-form/includes/frontend.php:12
2738
+ msgid "Your email"
2739
+ msgstr "Su correo electrónico"
2740
+
2741
+ #: modules/contact-form/includes/frontend.php:16
2742
+ msgid "Your Message"
2743
+ msgstr "Mensaje"
2744
+
2745
+ #: modules/contact-form/includes/frontend.php:17
2746
+ msgid "Please enter a message."
2747
+ msgstr "Por favor escriba su mensaje."
2748
+
2749
+ #: modules/contact-form/includes/frontend.php:18
2750
+ msgid "Your message"
2751
+ msgstr "Su mensaje"
2752
+
2753
+ #: modules/contact-form/includes/frontend.php:23
2754
+ msgid "Send"
2755
+ msgstr "Enviar"
2756
+
2757
+ #: modules/contact-form/includes/frontend.php:24
2758
+ msgid "Message Sent!"
2759
+ msgstr "Mensaje Enviado!"
2760
+
2761
+ #: modules/contact-form/includes/frontend.php:25
2762
+ msgid "Message failed. Please try again."
2763
+ msgstr "Error. Por favor inténtelo de nuevo."
2764
+
2765
+ #: modules/content-slider/content-slider.php:14
2766
+ msgid "Content Slider"
2767
+ msgstr "Contenido Deslizante (Slider)"
2768
+
2769
+ #: modules/content-slider/content-slider.php:15
2770
+ msgid "Displays multiple slides with an optional heading and call to action."
2771
+ msgstr ""
2772
+ "Muestra varias diapositivas con un encabezado opcional y una llamada a la "
2773
+ "acción."
2774
+
2775
+ #: modules/content-slider/content-slider.php:197 modules/map/map.php:41
2776
+ #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
2777
+ msgid "Height"
2778
+ msgstr "Altura"
2779
+
2780
+ #: modules/content-slider/content-slider.php:202
2781
+ msgid ""
2782
+ "This setting is the minimum height of the content slider. Content will "
2783
+ "expand the height automatically."
2784
+ msgstr ""
2785
+ "Este ajuste es la altura mínima del contenido del slider. El contenido se "
2786
+ "expandirá a esta altura de forma automática."
2787
+
2788
+ #: modules/content-slider/content-slider.php:206
2789
+ #: modules/slideshow/slideshow.php:373
2790
+ #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
2791
+ msgid "Auto Play"
2792
+ msgstr "Reproducción Automática"
2793
+
2794
+ #: modules/content-slider/content-slider.php:220
2795
+ msgid "Show Play/Pause"
2796
+ msgstr "Mostrar Reproducir/Pausa"
2797
+
2798
+ #: modules/content-slider/content-slider.php:240
2799
+ #: modules/testimonials/testimonials.php:102
2800
+ msgctxt "Transition type."
2801
+ msgid "Slide"
2802
+ msgstr "Diapositiva"
2803
+
2804
+ #: modules/content-slider/content-slider.php:254
2805
+ #: modules/testimonials/testimonials.php:121
2806
+ msgid "Show Arrows"
2807
+ msgstr "Mostrar Flechas"
2808
+
2809
+ #: modules/content-slider/content-slider.php:263
2810
+ #: modules/testimonials/testimonials.php:151
2811
+ msgid "Show Dots"
2812
+ msgstr "Mostrar Puntos"
2813
+
2814
+ #: modules/content-slider/content-slider.php:277
2815
+ msgid "Max Content Width"
2816
+ msgstr "Anchura Máxima de Contenido"
2817
+
2818
+ #: modules/content-slider/content-slider.php:282
2819
+ msgid "The max width that the content area will be within your slides."
2820
+ msgstr "La anchura máxima que tendrá el área de contenido en las diapositivas."
2821
+
2822
+ #: modules/content-slider/content-slider.php:289
2823
+ msgid "Slides"
2824
+ msgstr "Slides (Diapositivas)"
2825
+
2826
+ #: modules/content-slider/content-slider.php:296
2827
+ msgid "Slide"
2828
+ msgstr "Diapositiva"
2829
+
2830
+ #: modules/content-slider/content-slider.php:311
2831
+ msgid "Slide Settings"
2832
+ msgstr "Configuración de la Diapositiva"
2833
+
2834
+ #: modules/content-slider/content-slider.php:321
2835
+ msgid "Slide Label"
2836
+ msgstr "Etiqueta Slide"
2837
+
2838
+ #: modules/content-slider/content-slider.php:322
2839
+ msgid ""
2840
+ "A label to identify this slide on the Slides tab of the Content Slider "
2841
+ "settings."
2842
+ msgstr ""
2843
+ "Una etiqueta para identificar esta diapositiva en la ficha diapositivas de "
2844
+ "la configuración de contenido Slider."
2845
+
2846
+ #: modules/content-slider/content-slider.php:327
2847
+ msgid "Background Layout"
2848
+ msgstr "Diseño de Fondo"
2849
+
2850
+ #: modules/content-slider/content-slider.php:333
2851
+ msgid "This setting is for the entire background of your slide."
2852
+ msgstr "Esta configuración es todo el fondo de la diapositiva."
2853
+
2854
+ #: modules/content-slider/content-slider.php:368
2855
+ msgid "Background Video Code"
2856
+ msgstr "Código Video de Fondo"
2857
+
2858
+ #: modules/content-slider/content-slider.php:374
2859
+ msgid "Content Layout"
2860
+ msgstr "Diseño de Contenido"
2861
+
2862
+ #: modules/content-slider/content-slider.php:380
2863
+ msgid ""
2864
+ "This allows you to add content over or in addition to the background "
2865
+ "selection above. The location of the content layout can be selected in the "
2866
+ "style tab."
2867
+ msgstr ""
2868
+ "Permite añadir contenido sobre o además de la selección de fondo anterior. "
2869
+ "Puedes seleccionar la ubicación del diseño del contenido en la pestaña "
2870
+ "estilo."
2871
+
2872
+ #: modules/content-slider/content-slider.php:383
2873
+ msgid "Text &amp; Photo"
2874
+ msgstr "Texto &amp; Foto"
2875
+
2876
+ #: modules/content-slider/content-slider.php:384
2877
+ msgid "Text &amp; Video"
2878
+ msgstr "Texto &amp; Video"
2879
+
2880
+ #: modules/content-slider/content-slider.php:385
2881
+ msgctxt "Content type."
2882
+ msgid "None"
2883
+ msgstr "Ninguno"
2884
+
2885
+ #: modules/content-slider/content-slider.php:408 modules/video/video.php:132
2886
+ msgid "Video Embed Code"
2887
+ msgstr "Código Inserción Video"
2888
+
2889
+ #: modules/content-slider/content-slider.php:468
2890
+ msgid "Text Position"
2891
+ msgstr "Posición del Texto"
2892
+
2893
+ #: modules/content-slider/content-slider.php:474
2894
+ msgid ""
2895
+ "The position will move the content layout selections left, right or center "
2896
+ "over the background of the slide."
2897
+ msgstr ""
2898
+ "La posición moverá las selecciones de diseño de contenido a la izquierda, "
2899
+ "derecha o centrado sobre el fondo de la diapositiva."
2900
+
2901
+ #: modules/content-slider/content-slider.php:491
2902
+ msgid "Top Margin"
2903
+ msgstr "Margen Superior"
2904
+
2905
+ #: modules/content-slider/content-slider.php:499
2906
+ msgid "Bottom Margin"
2907
+ msgstr "Margen Inferior"
2908
+
2909
+ #: modules/content-slider/content-slider.php:507
2910
+ msgid "Left Margin"
2911
+ msgstr "Margen Izquierdo"
2912
+
2913
+ #: modules/content-slider/content-slider.php:515
2914
+ msgid "Right Margin"
2915
+ msgstr "Margen Derecho"
2916
+
2917
+ #: modules/content-slider/content-slider.php:524
2918
+ msgid "Text Colors"
2919
+ msgstr "Colores de Texto"
2920
+
2921
+ #: modules/content-slider/content-slider.php:534
2922
+ msgid "Text Shadow"
2923
+ msgstr "Sombra de Texto"
2924
+
2925
+ #: modules/content-slider/content-slider.php:543
2926
+ #: modules/content-slider/content-slider.php:760
2927
+ msgid "Text Background Color"
2928
+ msgstr "Color de Fondo del Texto"
2929
+
2930
+ #: modules/content-slider/content-slider.php:544
2931
+ msgid ""
2932
+ "The color applies to the overlay behind text over the background selections."
2933
+ msgstr ""
2934
+ "El color se aplica a la superposición detrás de texto sobre las selecciones "
2935
+ "de fondo."
2936
+
2937
+ #: modules/content-slider/content-slider.php:549
2938
+ msgid "Text Background Opacity"
2939
+ msgstr "Opacidad Texto del Fondo"
2940
+
2941
+ #: modules/content-slider/content-slider.php:557
2942
+ msgid "Text Background Height"
2943
+ msgstr "Altura Texto del Fondo"
2944
+
2945
+ #: modules/content-slider/content-slider.php:559
2946
+ msgid ""
2947
+ "Auto will allow the overlay to fit however long the text content is. 100% "
2948
+ "will fit the overlay to the top and bottom of the slide."
2949
+ msgstr ""
2950
+ "Auto permitirá a la superposición ajustarse sin importar la longitud del "
2951
+ "texto. 100% ajustará la superposición a la parte superior e inferior de la "
2952
+ "diapositiva."
2953
+
2954
+ #: modules/content-slider/content-slider.php:561
2955
+ msgctxt "Background height."
2956
+ msgid "Auto"
2957
+ msgstr "Auto"
2958
+
2959
+ #: modules/content-slider/content-slider.php:578
2960
+ msgid ""
2961
+ "The link applies to the entire slide. If choosing a call to action type "
2962
+ "below, this link will also be used for the text or button."
2963
+ msgstr ""
2964
+ "El enlace se aplica para toda la diapositiva. Si eliges una llamada a la "
2965
+ "acción debajo, este enlace también se utilizará para el texto o botón."
2966
+
2967
+ #: modules/content-slider/content-slider.php:711
2968
+ msgid "Border Radius"
2969
+ msgstr "Radio del Borde"
2970
+
2971
+ #: modules/content-slider/content-slider.php:722
2972
+ msgctxt "Module settings form tab. Display on mobile devices."
2973
+ msgid "Mobile"
2974
+ msgstr "Móvil"
2975
+
2976
+ #: modules/content-slider/content-slider.php:725
2977
+ msgid "Mobile Photo"
2978
+ msgstr "Foto Móvil"
2979
+
2980
+ #: modules/content-slider/content-slider.php:731
2981
+ msgid ""
2982
+ "You can choose a different photo that the slide will change to on mobile "
2983
+ "devices or no photo if desired."
2984
+ msgstr ""
2985
+ "Puedes elegir una foto diferente que cambiará al navegar desde dispositivos "
2986
+ "móviles o simplemente no elegir ninguna foto."
2987
+
2988
+ #: modules/content-slider/content-slider.php:733
2989
+ msgid "Use Main Photo"
2990
+ msgstr "Utilizar Foto Principal"
2991
+
2992
+ #: modules/content-slider/content-slider.php:734
2993
+ msgid "Choose Another Photo"
2994
+ msgstr "Elegir Otra Foto"
2995
+
2996
+ #: modules/content-slider/content-slider.php:735
2997
+ msgid "No Photo"
2998
+ msgstr "No hay foto"
2999
+
3000
+ #: modules/content-slider/content-slider.php:750
3001
+ msgid "Mobile Text Colors"
3002
+ msgstr "Colores de Texto Móvil"
3003
+
3004
+ #: modules/cta/cta.php:15
3005
+ msgid "Display a heading, subheading and a button."
3006
+ msgstr "Mostrar un título, subtítulo y un botón."
3007
+
3008
+ #: modules/cta/cta.php:75
3009
+ msgid "Ready to find out more?"
3010
+ msgstr "¿Intentando convencerme?"
3011
+
3012
+ #: modules/cta/cta.php:90
3013
+ msgid "Drop us a line today for a free quote!"
3014
+ msgstr "¡Lo haré con este Call to Action!"
3015
+
3016
+ #: modules/cta/cta.php:108 modules/gallery/gallery.php:220
3017
+ #: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
3018
+ #: modules/testimonials/testimonials.php:37
3019
+ #: modules/woocommerce/woocommerce.php:57
3020
+ msgid "Layout"
3021
+ msgstr "Diseño"
3022
+
3023
+ #: modules/cta/cta.php:111
3024
+ msgid "Inline"
3025
+ msgstr "En línea"
3026
+
3027
+ #: modules/cta/cta.php:112
3028
+ msgid "Stacked"
3029
+ msgstr "Apilado"
3030
+
3031
+ #: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
3032
+ msgid "Spacing"
3033
+ msgstr "Espaciado"
3034
+
3035
+ #: modules/cta/cta.php:236
3036
+ msgid "Button Link"
3037
+ msgstr "Enlace del Botón"
3038
+
3039
+ #: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
3040
+ msgid "Gallery"
3041
+ msgstr "Galeria"
3042
+
3043
+ #: modules/gallery/gallery.php:15
3044
+ msgid "Display multiple photos in a gallery view."
3045
+ msgstr "Mostrar varias fotografías en una vista de galería."
3046
+
3047
+ #: modules/gallery/gallery.php:223
3048
+ msgid "Collage"
3049
+ msgstr "Collage"
3050
+
3051
+ #: modules/gallery/gallery.php:224
3052
+ msgctxt "Gallery layout: thumbnails."
3053
+ msgid "Thumbs"
3054
+ msgstr "Miniaturas"
3055
+
3056
+ #: modules/gallery/gallery.php:260
3057
+ msgid "Photo Size"
3058
+ msgstr "Tamaño de la Foto"
3059
+
3060
+ #: modules/gallery/gallery.php:263
3061
+ msgctxt "Photo size."
3062
+ msgid "Small"
3063
+ msgstr "Pequeña"
3064
+
3065
+ #: modules/gallery/gallery.php:264
3066
+ msgctxt "Photo size."
3067
+ msgid "Medium"
3068
+ msgstr "Mediana"
3069
+
3070
+ #: modules/gallery/gallery.php:265
3071
+ msgctxt "Photo size."
3072
+ msgid "Large"
3073
+ msgstr "Grande"
3074
+
3075
+ #: modules/gallery/gallery.php:270
3076
+ msgid "Photo Spacing"
3077
+ msgstr "Espaciado de Foto"
3078
+
3079
+ #: modules/gallery/gallery.php:278
3080
+ msgid "Show Captions"
3081
+ msgstr "Mostrar Títulos"
3082
+
3083
+ #: modules/gallery/gallery.php:281 modules/photo/photo.php:432
3084
+ msgid "Never"
3085
+ msgstr "Nunca"
3086
+
3087
+ #: modules/gallery/gallery.php:282 modules/photo/photo.php:433
3088
+ msgid "On Hover"
3089
+ msgstr "Al pasar por encima"
3090
+
3091
+ #: modules/gallery/gallery.php:283 modules/photo/photo.php:434
3092
+ msgid "Below Photo"
3093
+ msgstr "Debajo de la imagen"
3094
+
3095
+ #: modules/gallery/gallery.php:285
3096
+ msgid ""
3097
+ "The caption pulls from whatever text you put in the caption area in the "
3098
+ "media manager for each image. The caption is also pulled directly from "
3099
+ "SmugMug if you have captions set in your gallery."
3100
+ msgstr ""
3101
+ "La cabecera tira de cualquier texto que haya en el área de título de la "
3102
+ "biblioteca de medios para cada imagen. El titulo también se toma "
3103
+ "directamente de SmugMug si tienes títulos en tu galería."
3104
+
3105
+ #: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
3106
+ msgid "Click Action"
3107
+ msgstr "Acción del Clic"
3108
+
3109
+ #: modules/gallery/gallery.php:292
3110
+ msgctxt "Click action."
3111
+ msgid "None"
3112
+ msgstr "Ninguno"
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 "Enlace de Foto"
3121
+
3122
+ #: modules/heading/heading.php:15
3123
+ msgid "Display a title/page heading."
3124
+ msgstr "Mostrar un título/encabezado de página."
3125
+
3126
+ #: modules/heading/heading.php:101
3127
+ msgid "HTML Tag"
3128
+ msgstr "Etiqueta HTML"
3129
+
3130
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
3131
+ msgid "Custom Font Size"
3132
+ msgstr "Tamaño Personalizado de Fuente"
3133
+
3134
+ #: modules/heading/heading.php:137
3135
+ msgid "Mobile Structure"
3136
+ msgstr "Estructura Móvil"
3137
+
3138
+ #: modules/heading/heading.php:158
3139
+ msgid "Custom Alignment"
3140
+ msgstr "Alineación Personalizada"
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 "Mostrar código HTML."
3149
+
3150
+ #: modules/icon-group/icon-group.php:14
3151
+ msgid "Icon Group"
3152
+ msgstr "Grupo de Iconos"
3153
+
3154
+ #: modules/icon-group/icon-group.php:15
3155
+ msgid "Display a group of linked Font Awesome icons."
3156
+ msgstr "Muestra un grupo de iconos Font Awesome enlazados."
3157
+
3158
+ #: modules/icon-group/icon-group.php:125
3159
+ msgid "Add Icon"
3160
+ msgstr "Añadir Icono"
3161
+
3162
+ #: modules/icon/icon.php:15
3163
+ msgid "Display an icon and optional title."
3164
+ msgstr "Mostrar un icono y título opcional."
3165
+
3166
+ #: modules/map/map.php:14
3167
+ msgid "Map"
3168
+ msgstr "Mapa"
3169
+
3170
+ #: modules/map/map.php:15
3171
+ msgid "Display a Google map."
3172
+ msgstr "Mostrar un mapa de Google."
3173
+
3174
+ #: modules/map/map.php:33
3175
+ msgid "Address"
3176
+ msgstr "Dirección"
3177
+
3178
+ #: modules/map/map.php:34
3179
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
3180
+ msgstr "Plaza del Patio, 8-A Alcora Castellon Spain"
3181
+
3182
+ #: modules/photo/photo.php:26
3183
+ msgid "Upload a photo or display one from the media library."
3184
+ msgstr "Añadir una foto o mostrar una de la biblioteca."
3185
+
3186
+ #: modules/photo/photo.php:375
3187
+ msgid "Photo Source"
3188
+ msgstr "Origen de la Imagen"
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.ejemplo.com/mi-foto.jpg"
3201
+
3202
+ #: modules/photo/photo.php:404
3203
+ msgctxt "Crop."
3204
+ msgid "None"
3205
+ msgstr "Nada"
3206
+
3207
+ #: modules/photo/photo.php:425 modules/photo/photo.php:439
3208
+ msgid "Caption"
3209
+ msgstr "Encabezado"
3210
+
3211
+ #: modules/photo/photo.php:429
3212
+ msgid "Show Caption"
3213
+ msgstr "Mostrar Leyenda"
3214
+
3215
+ #: modules/photo/photo.php:448
3216
+ msgid "Link Type"
3217
+ msgstr "Tipo de Enlace"
3218
+
3219
+ #: modules/photo/photo.php:450
3220
+ msgctxt "Link type."
3221
+ msgid "None"
3222
+ msgstr "Ninguno"
3223
+
3224
+ #: modules/photo/photo.php:453
3225
+ msgid "Photo File"
3226
+ msgstr "Foto Archivo"
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
+ "Tipo de enlace se aplica a cómo la imagen debería estar vinculada al hacer "
3234
+ "clic. Puede elegir una dirección URL específica, la foto individual o una "
3235
+ "página separada con la foto."
3236
+
3237
+ #: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
3238
+ msgid "Link URL"
3239
+ msgstr "Enlace URL"
3240
+
3241
+ #: modules/post-grid/includes/frontend.php:41
3242
+ msgid "No posts found."
3243
+ msgstr "No se ha encontrado ninguna entrada."
3244
+
3245
+ #: modules/post-grid/includes/post-feed.php:14
3246
+ #: modules/post-grid/includes/post-grid.php:24
3247
+ #, php-format
3248
+ msgctxt "%s stands for author name."
3249
+ msgid "By %s"
3250
+ msgstr "Por %s"
3251
+
3252
+ #: modules/post-grid/post-grid.php:14
3253
+ msgid "Posts"
3254
+ msgstr "Entradas"
3255
+
3256
+ #: modules/post-grid/post-grid.php:15
3257
+ msgid "Display a grid of your WordPress posts."
3258
+ msgstr "Motrar una tabla con tus entradas de WordPress"
3259
+
3260
+ #: modules/post-grid/post-grid.php:51
3261
+ msgid "Layout Style"
3262
+ msgstr "Estilos de Diseño"
3263
+
3264
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
3265
+ msgid "Grid"
3266
+ msgstr "Cuadrícula"
3267
+
3268
+ #: modules/post-grid/post-grid.php:56
3269
+ msgid "Feed"
3270
+ msgstr "Feed"
3271
+
3272
+ #: modules/post-grid/post-grid.php:71
3273
+ msgid "Pagination Style"
3274
+ msgstr "Estilo de Paginación"
3275
+
3276
+ #: modules/post-grid/post-grid.php:74
3277
+ msgid "Numbers"
3278
+ msgstr "Números"
3279
+
3280
+ #: modules/post-grid/post-grid.php:76
3281
+ msgctxt "Pagination style."
3282
+ msgid "None"
3283
+ msgstr "Ninguna"
3284
+
3285
+ #: modules/post-grid/post-grid.php:81
3286
+ msgid "Posts Per Page"
3287
+ msgstr "Entradas Por Página"
3288
+
3289
+ #: modules/post-grid/post-grid.php:92
3290
+ msgid "Post Width"
3291
+ msgstr "Ancho de la Entrada"
3292
+
3293
+ #: modules/post-grid/post-grid.php:100
3294
+ msgid "Post Spacing"
3295
+ msgstr "Espaciado de la Entrada"
3296
+
3297
+ #: modules/post-grid/post-grid.php:109
3298
+ msgid "Featured Image"
3299
+ msgstr "Imagen Destacada"
3300
+
3301
+ #: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
3302
+ #: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
3303
+ #: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
3304
+ msgid "Show"
3305
+ msgstr "Mostrar"
3306
+
3307
+ #: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
3308
+ #: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
3309
+ #: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
3310
+ msgid "Hide"
3311
+ msgstr "Ocultar"
3312
+
3313
+ #: modules/post-grid/post-grid.php:130
3314
+ msgid "Above Text"
3315
+ msgstr "Encima del Texto"
3316
+
3317
+ #: modules/post-grid/post-grid.php:131
3318
+ msgid "Beside Text"
3319
+ msgstr "Al lado del Texto"
3320
+
3321
+ #: modules/post-grid/post-grid.php:142
3322
+ msgid "Post Info"
3323
+ msgstr "Información de la Entrada"
3324
+
3325
+ #: modules/post-grid/post-grid.php:169
3326
+ msgid "Date Format"
3327
+ msgstr "Formato de Fecha"
3328
+
3329
+ #: modules/post-grid/post-grid.php:185
3330
+ msgid "Comments"
3331
+ msgstr "Comentarios"
3332
+
3333
+ #: modules/post-grid/post-grid.php:213
3334
+ msgid "More Link"
3335
+ msgstr "Enlace Más"
3336
+
3337
+ #: modules/post-grid/post-grid.php:227
3338
+ msgid "More Link Text"
3339
+ msgstr "Texto Enlace Más"
3340
+
3341
+ #: modules/post-grid/post-grid.php:228
3342
+ msgid "Read More"
3343
+ msgstr "Leer Más"
3344
+
3345
+ #: modules/pricing-table/pricing-table.php:14
3346
+ msgid "Pricing Table"
3347
+ msgstr "Tabla de Precios"
3348
+
3349
+ #: modules/pricing-table/pricing-table.php:15
3350
+ msgid "A simple pricing table generator."
3351
+ msgstr "Un generador simple de tablas de precios."
3352
+
3353
+ #: modules/pricing-table/pricing-table.php:26
3354
+ msgid "Pricing Boxes"
3355
+ msgstr "Cajas de Precios"
3356
+
3357
+ #: modules/pricing-table/pricing-table.php:33
3358
+ msgid "Pricing Box"
3359
+ msgstr "Caja de Precio"
3360
+
3361
+ #: modules/pricing-table/pricing-table.php:50
3362
+ msgid "Box Spacing"
3363
+ msgstr "Espaciado de Cajas"
3364
+
3365
+ #: modules/pricing-table/pricing-table.php:53
3366
+ #: modules/testimonials/testimonials.php:40
3367
+ msgid "Wide"
3368
+ msgstr "Ancho"
3369
+
3370
+ #: modules/pricing-table/pricing-table.php:54
3371
+ msgid "Tight"
3372
+ msgstr "Apretado"
3373
+
3374
+ #: modules/pricing-table/pricing-table.php:59
3375
+ msgid "Features Min Height"
3376
+ msgstr "Altura Mínima Características"
3377
+
3378
+ #: modules/pricing-table/pricing-table.php:63
3379
+ msgid ""
3380
+ "Use this to normalize the height of your boxes when they have different "
3381
+ "numbers of features."
3382
+ msgstr ""
3383
+ "Usa esto para normalizar la altura de las cajas cuando tienen diferente "
3384
+ "número de características."
3385
+
3386
+ #: modules/pricing-table/pricing-table.php:70
3387
+ msgctxt "Border size."
3388
+ msgid "Wide"
3389
+ msgstr "Ancho"
3390
+
3391
+ #: modules/pricing-table/pricing-table.php:71
3392
+ msgctxt "Border size."
3393
+ msgid "Tight"
3394
+ msgstr "Apretado"
3395
+
3396
+ #: modules/pricing-table/pricing-table.php:84
3397
+ msgid "Add Pricing Box"
3398
+ msgstr "Añadir Caja de Precios"
3399
+
3400
+ #: modules/pricing-table/pricing-table.php:98
3401
+ msgid "Title Size"
3402
+ msgstr "Tamaño de Título"
3403
+
3404
+ #: modules/pricing-table/pricing-table.php:107
3405
+ msgid "Price Box"
3406
+ msgstr "Precio"
3407
+
3408
+ #: modules/pricing-table/pricing-table.php:111
3409
+ msgid "Price"
3410
+ msgstr "Precio"
3411
+
3412
+ #: modules/pricing-table/pricing-table.php:115
3413
+ msgid "Duration"
3414
+ msgstr "Duración"
3415
+
3416
+ #: modules/pricing-table/pricing-table.php:116
3417
+ msgid "per Year"
3418
+ msgstr "al Año"
3419
+
3420
+ #: modules/pricing-table/pricing-table.php:120
3421
+ msgid "Price Size"
3422
+ msgstr "Tamaño del Precio"
3423
+
3424
+ #: modules/pricing-table/pricing-table.php:133
3425
+ msgid "Button Text"
3426
+ msgstr "Texto del Botón"
3427
+
3428
+ #: modules/pricing-table/pricing-table.php:137
3429
+ msgid "Button URL"
3430
+ msgstr "URL del Botón"
3431
+
3432
+ #: modules/pricing-table/pricing-table.php:142
3433
+ msgctxt "Price features displayed in pricing box."
3434
+ msgid "Features"
3435
+ msgstr "Características"
3436
+
3437
+ #: modules/pricing-table/pricing-table.php:147
3438
+ msgid "One feature per line. HTML is okay."
3439
+ msgstr "Una característica por línea. Se permite usar HTML."
3440
+
3441
+ #: modules/pricing-table/pricing-table.php:162
3442
+ msgid "Box Background"
3443
+ msgstr "Fondo de la Caja"
3444
+
3445
+ #: modules/pricing-table/pricing-table.php:167
3446
+ msgid "Box Foreground"
3447
+ msgstr "Primer Plano de la Caja"
3448
+
3449
+ #: modules/pricing-table/pricing-table.php:173
3450
+ msgid "Accent Color"
3451
+ msgstr "Color Destacado"
3452
+
3453
+ #: modules/pricing-table/pricing-table.php:178
3454
+ msgid "Accent Text Color"
3455
+ msgstr "Color Texto Destacado"
3456
+
3457
+ #: modules/pricing-table/pricing-table.php:182
3458
+ msgid "Box Top Margin"
3459
+ msgstr "Margen Superior de la Caja"
3460
+
3461
+ #: modules/rich-text/rich-text.php:15
3462
+ msgid "A WYSIWYG text editor."
3463
+ msgstr "Un editor de texto WYSIWYG."
3464
+
3465
+ #: modules/separator/separator.php:14
3466
+ msgid "Separator"
3467
+ msgstr "Separador"
3468
+
3469
+ #: modules/separator/separator.php:15
3470
+ msgid "A divider line to separate content."
3471
+ msgstr "Una línea divisora para separar el contenido."
3472
+
3473
+ #: modules/separator/separator.php:85
3474
+ msgid ""
3475
+ "The type of border to use. Double borders must have a height of at least 3px "
3476
+ "to render properly."
3477
+ msgstr ""
3478
+ "El tipo de borde a utilizar. Los bordes dobles deben tener una altura de al "
3479
+ "menos 3px para visualizarse correctamente."
3480
+
3481
+ #: modules/sidebar/includes/settings-general.php:5
3482
+ #: modules/sidebar/sidebar.php:14
3483
+ msgid "Sidebar"
3484
+ msgstr "Barra Lateral"
3485
+
3486
+ #: modules/sidebar/sidebar.php:15
3487
+ msgid ""
3488
+ "Display a WordPress sidebar that has been registered by the current theme."
3489
+ msgstr ""
3490
+ "Muestra una barra lateral de WordPress que ha sido registrada por el tema "
3491
+ "actual."
3492
+
3493
+ #: modules/slideshow/slideshow.php:14
3494
+ msgid "Slideshow"
3495
+ msgstr "Slideshow"
3496
+
3497
+ #: modules/slideshow/slideshow.php:15
3498
+ msgid "Display multiple photos in a slideshow view."
3499
+ msgstr "Mostrar varias fotos en una vista de presentación ."
3500
+
3501
+ #: modules/slideshow/slideshow.php:302
3502
+ msgid "Skin Color"
3503
+ msgstr "Color del Diseño"
3504
+
3505
+ #: modules/slideshow/slideshow.php:305
3506
+ msgctxt "Color."
3507
+ msgid "Light"
3508
+ msgstr "Claro"
3509
+
3510
+ #: modules/slideshow/slideshow.php:306
3511
+ msgctxt "Color."
3512
+ msgid "Dark"
3513
+ msgstr "Oscuro"
3514
+
3515
+ #: modules/slideshow/slideshow.php:308
3516
+ msgid ""
3517
+ "If your overall theme/images are lighter in color, light will display "
3518
+ "buttons in a darker color scheme and vice versa for dark."
3519
+ msgstr ""
3520
+ "Si tu tema o imágenes tienen un color claro, la opción claro mostrará los "
3521
+ "botones en un esquema de color oscuro y lo contrario con la opción oscuro."
3522
+
3523
+ #: modules/slideshow/slideshow.php:318
3524
+ msgid ""
3525
+ "Crop set to no will fit the slideshow images to the height you specify and "
3526
+ "keep the width proportional, whereas crop set to yes will fit the slideshow "
3527
+ "images to all sides of the content area while cropping the left and right to "
3528
+ "fit the height you specify."
3529
+ msgstr ""
3530
+ "Recortar configurado a No, ajustará las imágenes a la altura especificada y "
3531
+ "mantendrá la anchura proporcional, mientras que recortar configurado a Sí, "
3532
+ "ajustará las imágenes a todos los lados del área de contenido, cortando a "
3533
+ "izquierda y derecha para adecuarlas a la altura que has especificado."
3534
+
3535
+ #: modules/slideshow/slideshow.php:322
3536
+ msgid "Disable Right-Click"
3537
+ msgstr "Desactivar Clic Derecho"
3538
+
3539
+ #: modules/slideshow/slideshow.php:342
3540
+ msgctxt "Click action type."
3541
+ msgid "None"
3542
+ msgstr "Ninguno"
3543
+
3544
+ #: modules/slideshow/slideshow.php:366
3545
+ msgid "Playback"
3546
+ msgstr "Reproducción"
3547
+
3548
+ #: modules/slideshow/slideshow.php:392
3549
+ msgctxt "Slideshow transition."
3550
+ msgid "None"
3551
+ msgstr "Ninguno"
3552
+
3553
+ #: modules/slideshow/slideshow.php:429
3554
+ msgid "Controls"
3555
+ msgstr "Controles"
3556
+
3557
+ #: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
3558
+ msgid "Navigation Arrows"
3559
+ msgstr "Flechas de Navegación"
3560
+
3561
+ #: modules/slideshow/slideshow.php:442
3562
+ msgid ""
3563
+ "Navigational arrows allow the visitor to freely move through the images in "
3564
+ "your slideshow. These are larger arrows that overlay your slideshow images "
3565
+ "and are separate from the control bar navigational arrows."
3566
+ msgstr ""
3567
+ "Las flechas de navegación permiten al usuario moverse libremente a través de "
3568
+ "las imágenes en la presentación. Son las flechas más grandes que están "
3569
+ "superpuestas a las imágenes y están separados de las flechas de control de "
3570
+ "navegación."
3571
+
3572
+ #: modules/slideshow/slideshow.php:447
3573
+ msgid "Control Bar"
3574
+ msgstr "Barra de Control"
3575
+
3576
+ #: modules/slideshow/slideshow.php:451
3577
+ msgid "Nav Type"
3578
+ msgstr "Tipo de Navegación"
3579
+
3580
+ #: modules/slideshow/slideshow.php:454
3581
+ msgctxt "Nav type."
3582
+ msgid "None"
3583
+ msgstr "Ninguno"
3584
+
3585
+ #: modules/slideshow/slideshow.php:455
3586
+ msgid "Buttons"
3587
+ msgstr "Botones"
3588
+
3589
+ #: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
3590
+ msgid "Thumbs"
3591
+ msgstr "Miniaturas"
3592
+
3593
+ #: modules/slideshow/slideshow.php:471
3594
+ msgid "Nav Position"
3595
+ msgstr "Posición Navegación"
3596
+
3597
+ #: modules/slideshow/slideshow.php:481
3598
+ msgid "Control Bar Buttons"
3599
+ msgstr "Botones Barra de Control"
3600
+
3601
+ #: modules/slideshow/slideshow.php:494
3602
+ msgid "Play Button"
3603
+ msgstr "Botón Play"
3604
+
3605
+ #: modules/slideshow/slideshow.php:503
3606
+ msgid "Fullscreen Button"
3607
+ msgstr "Botón Pantalla Completa"
3608
+
3609
+ #: modules/slideshow/slideshow.php:512
3610
+ msgid "Photo Count"
3611
+ msgstr "Contador de Fotos"
3612
+
3613
+ #: modules/slideshow/slideshow.php:521
3614
+ msgid "Thumbs Button"
3615
+ msgstr "Botón Miniaturas"
3616
+
3617
+ #: modules/slideshow/slideshow.php:530
3618
+ msgid "Caption Button"
3619
+ msgstr "Botón Caption"
3620
+
3621
+ #: modules/slideshow/slideshow.php:539
3622
+ msgid "Social Button"
3623
+ msgstr "Botón Social"
3624
+
3625
+ #: modules/slideshow/slideshow.php:549
3626
+ msgid "Control Bar Overlay"
3627
+ msgstr "Barra de Control de Superposición"
3628
+
3629
+ #: modules/slideshow/slideshow.php:553
3630
+ msgid "Overlay Enabled"
3631
+ msgstr "Superposición Habilitada"
3632
+
3633
+ #: modules/slideshow/slideshow.php:564
3634
+ msgid ""
3635
+ "Control bar overlay specifies if the control bar buttons you choose overlay "
3636
+ "your slideshow images or site below the slideshow completely."
3637
+ msgstr ""
3638
+ "La Barra de Control de Superposición especifica si los botones de la barra "
3639
+ "de control han de estar superpuestos a la imagen o si han de aparecer por "
3640
+ "debajo de la presentación de las imágenes."
3641
+
3642
+ #: modules/slideshow/slideshow.php:568
3643
+ msgid "Overlay Hide"
3644
+ msgstr "Ocultar Superposición"
3645
+
3646
+ #: modules/slideshow/slideshow.php:574
3647
+ msgid ""
3648
+ "Overlay hide will hide the control bar after however many seconds you "
3649
+ "specify below. They will reappear upon mouse over."
3650
+ msgstr ""
3651
+ "Superponer ocultará la barra de control tras los segundos que hayas "
3652
+ "especificado aquí abajo. Volverá a aparecer el pasar el ratón por encima."
3653
+
3654
+ #: modules/slideshow/slideshow.php:578
3655
+ msgid "Overlay Hide Delay"
3656
+ msgstr "Retardo Ocultar Superposición"
3657
+
3658
+ #: modules/slideshow/slideshow.php:590
3659
+ msgid "Thumbs Size"
3660
+ msgstr "Tamaño de las Miniaturas"
3661
+
3662
+ #: modules/slideshow/slideshow.php:599
3663
+ msgid "Social"
3664
+ msgstr "Social"
3665
+
3666
+ #: modules/slideshow/slideshow.php:603
3667
+ msgid "Facebook Button"
3668
+ msgstr "Botón de Facebook"
3669
+
3670
+ #: modules/slideshow/slideshow.php:615
3671
+ msgid "Twitter Button"
3672
+ msgstr "Botón de Twitter"
3673
+
3674
+ #: modules/slideshow/slideshow.php:627
3675
+ msgid "Google Plus Button"
3676
+ msgstr "Botón de Google Plus"
3677
+
3678
+ #: modules/slideshow/slideshow.php:639
3679
+ msgid "Pinterest Button"
3680
+ msgstr "Botón Pinterest"
3681
+
3682
+ #: modules/social-buttons/social-buttons.php:14
3683
+ msgid "Social Buttons"
3684
+ msgstr "Botones Sociales"
3685
+
3686
+ #: modules/social-buttons/social-buttons.php:15
3687
+ msgid "Displays social buttons."
3688
+ msgstr "Muestra Botones Sociales."
3689
+
3690
+ #: modules/social-buttons/social-buttons.php:71
3691
+ msgid "Target URL"
3692
+ msgstr "URL de Destino"
3693
+
3694
+ #: modules/social-buttons/social-buttons.php:75
3695
+ msgid "Current Page"
3696
+ msgstr "Página Actual"
3697
+
3698
+ #: modules/social-buttons/social-buttons.php:82
3699
+ msgid ""
3700
+ "The Target URL field correlates to the page you would like your social icons "
3701
+ "to interface with. For example, if you show Facebook, the user will \"Like\" "
3702
+ "whatever you put in this field."
3703
+ msgstr ""
3704
+ "El campo de dirección URL de destino se correlaciona con la página con la "
3705
+ "que deseas que tus iconos sociales que interactúen. Por ejemplo, si muestras "
3706
+ "Facebook, el usuario hará un \"Me gusta\" a lo que sea que hayas puesto en "
3707
+ "este campo."
3708
+
3709
+ #: modules/social-buttons/social-buttons.php:89
3710
+ msgid "Custom URL"
3711
+ msgstr "URL Personalizada"
3712
+
3713
+ #: modules/social-buttons/social-buttons.php:107
3714
+ msgid "Show Facebook"
3715
+ msgstr "Mostrar Facebook"
3716
+
3717
+ #: modules/social-buttons/social-buttons.php:116
3718
+ msgid "Show Twitter"
3719
+ msgstr "Mostrar Twitter"
3720
+
3721
+ #: modules/social-buttons/social-buttons.php:125
3722
+ msgid "Show Google+"
3723
+ msgstr "Mostrar Google+"
3724
+
3725
+ #: modules/tabs/tabs.php:14
3726
+ msgid "Tabs"
3727
+ msgstr "Pestañas"
3728
+
3729
+ #: modules/tabs/tabs.php:15
3730
+ msgid "Display a collection of tabbed content."
3731
+ msgstr "Mostrar una colección de contenido con pestañas."
3732
+
3733
+ #: modules/tabs/tabs.php:55
3734
+ msgid "Horizontal"
3735
+ msgstr "Horizontal"
3736
+
3737
+ #: modules/tabs/tabs.php:56
3738
+ msgid "Vertical"
3739
+ msgstr "Vertical"
3740
+
3741
+ #: modules/testimonials/testimonials.php:14
3742
+ #: modules/testimonials/testimonials.php:60
3743
+ #: modules/testimonials/testimonials.php:174
3744
+ msgid "Testimonials"
3745
+ msgstr "Testimonios"
3746
+
3747
+ #: modules/testimonials/testimonials.php:15
3748
+ msgid "An animated tesimonials area."
3749
+ msgstr "Área de Testimonios Animada"
3750
+
3751
+ #: modules/testimonials/testimonials.php:41
3752
+ msgid "Compact"
3753
+ msgstr "Compacto"
3754
+
3755
+ #: modules/testimonials/testimonials.php:51
3756
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
3757
+ msgstr ""
3758
+ "Ancho es para filas de una columna, compacto es para filas multi-columna."
3759
+
3760
+ #: modules/testimonials/testimonials.php:78
3761
+ msgid "Slider Settings"
3762
+ msgstr "Ajustes del Slider"
3763
+
3764
+ #: modules/testimonials/testimonials.php:135
3765
+ msgid "Arrow Color"
3766
+ msgstr "Color de la Flecha"
3767
+
3768
+ #: modules/testimonials/testimonials.php:165
3769
+ msgid "Dot Color"
3770
+ msgstr "Color del Punto"
3771
+
3772
+ #: modules/testimonials/testimonials.php:181
3773
+ msgid "Testimonial"
3774
+ msgstr "Testimonio"
3775
+
3776
+ #: modules/testimonials/testimonials.php:197
3777
+ msgid "Add Testimonial"
3778
+ msgstr "Agregar Testimonio"
3779
+
3780
+ #: modules/video/video.php:20
3781
+ msgid "Render a WordPress or embedable video."
3782
+ msgstr "Reproducir un video WordPress o un video incrustado."
3783
+
3784
+ #: modules/video/video.php:83
3785
+ msgid "Video Type"
3786
+ msgstr "Tipo de Vídeo"
3787
+
3788
+ #: modules/video/video.php:87
3789
+ msgid "Embed"
3790
+ msgstr "Insertar"
3791
+
3792
+ #: modules/video/video.php:104
3793
+ msgctxt "Video preview/fallback image."
3794
+ msgid "Poster"
3795
+ msgstr "Cartel"
3796
+
3797
+ #: modules/video/video.php:120
3798
+ msgid "Loop"
3799
+ msgstr "Bucle"
3800
+
3801
+ #: modules/widget/includes/frontend.php:35
3802
+ #: modules/widget/includes/settings-general.php:44
3803
+ #, php-format
3804
+ msgctxt "%s stands for widget slug."
3805
+ msgid "%s no longer exists."
3806
+ msgstr "%s ya no existe."
3807
+
3808
+ #: modules/widget/widget.php:14
3809
+ msgid "Widget"
3810
+ msgstr "Widget"
3811
+
3812
+ #: modules/widget/widget.php:15
3813
+ msgid "Display a WordPress widget."
3814
+ msgstr "Mostrar un widget de WordPress."
3815
+
3816
+ #: modules/woocommerce/woocommerce.php:16
3817
+ msgid "WooCommerce"
3818
+ msgstr "WooCommerce"
3819
+
3820
+ #: modules/woocommerce/woocommerce.php:17
3821
+ msgid "Display products or categories from your WooCommerce store."
3822
+ msgstr "Mostrar productos o categorías de tu tienda WooCommerce."
3823
+
3824
+ #: modules/woocommerce/woocommerce.php:60
3825
+ msgid "Choose..."
3826
+ msgstr "Elegir..."
3827
+
3828
+ #: modules/woocommerce/woocommerce.php:61
3829
+ msgid "Single Product"
3830
+ msgstr "Producto Simple"
3831
+
3832
+ #: modules/woocommerce/woocommerce.php:62
3833
+ #: modules/woocommerce/woocommerce.php:113
3834
+ msgid "Multiple Products"
3835
+ msgstr "Producto Múltiple"
3836
+
3837
+ #: modules/woocommerce/woocommerce.php:63
3838
+ msgid "\"Add to Cart\" Button"
3839
+ msgstr "Botón \"Añadir al Carrito\""
3840
+
3841
+ #: modules/woocommerce/woocommerce.php:64
3842
+ msgid "Categories"
3843
+ msgstr "Categorías"
3844
+
3845
+ #: modules/woocommerce/woocommerce.php:65
3846
+ msgid "Cart"
3847
+ msgstr "Carrito"
3848
+
3849
+ #: modules/woocommerce/woocommerce.php:66
3850
+ msgid "Checkout"
3851
+ msgstr "Finalizar Compra"
3852
+
3853
+ #: modules/woocommerce/woocommerce.php:67
3854
+ msgid "Order Tracking"
3855
+ msgstr "Seguimiento de Pedido."
3856
+
3857
+ #: modules/woocommerce/woocommerce.php:68
3858
+ msgid "My Account"
3859
+ msgstr "Mi Cuenta"
3860
+
3861
+ #: modules/woocommerce/woocommerce.php:87
3862
+ msgid "Product ID"
3863
+ msgstr "ID del Producto"
3864
+
3865
+ #: modules/woocommerce/woocommerce.php:90
3866
+ msgid ""
3867
+ "As you add products in the WooCommerce Products area, each will be assigned "
3868
+ "a unique ID. You can find this unique product ID by visiting the Products "
3869
+ "area and rolling over the product. The unique ID will be the first attribute."
3870
+ msgstr ""
3871
+ "Al agregar productos en el área de productos de WooCommerce, a cada uno se "
3872
+ "le asignará un ID. Estos ID se encuentran en el área Productos situándose "
3873
+ "sobre el producto. El ID único será el primer atributo."
3874
+
3875
+ #: modules/woocommerce/woocommerce.php:94
3876
+ msgid "Parent Category ID"
3877
+ msgstr "ID de Categoría Padre"
3878
+
3879
+ #: modules/woocommerce/woocommerce.php:97
3880
+ msgid ""
3881
+ "As you add product categories in the WooCommerce Products area, each will be "
3882
+ "assigned a unique ID. This ID can be found by hovering on the category in "
3883
+ "the categories area under Products and looking in the URL that is displayed "
3884
+ "in your browser. The ID will be the only number value in the URL."
3885
+ msgstr ""
3886
+ "Al agregar categorías de productos en el área de productos de WooCommerce, a "
3887
+ "cada uno se le asignará un ID único. Este ID se encuentra al situarse sobre "
3888
+ "la categoría en el área Categorías bajo los Productos y mirando la URL que "
3889
+ "muestra el navegador. El ID es el único número que aparece en la URL."
3890
+
3891
+ #: modules/woocommerce/woocommerce.php:101
3892
+ #: modules/woocommerce/woocommerce.php:172
3893
+ msgid "Columns"
3894
+ msgstr "Columnas"
3895
+
3896
+ #: modules/woocommerce/woocommerce.php:117
3897
+ msgid "Products Source"
3898
+ msgstr "Fuente de Productos"
3899
+
3900
+ #: modules/woocommerce/woocommerce.php:120
3901
+ msgid "Products IDs"
3902
+ msgstr "IDs de Productos"
3903
+
3904
+ #: modules/woocommerce/woocommerce.php:121
3905
+ msgid "Product Category"
3906
+ msgstr "Categoría de Producto"
3907
+
3908
+ #: modules/woocommerce/woocommerce.php:122
3909
+ msgid "Recent Products"
3910
+ msgstr "Productos Más Recientes"
3911
+
3912
+ #: modules/woocommerce/woocommerce.php:123
3913
+ msgid "Featured Products"
3914
+ msgstr "Productos Destacados"
3915
+
3916
+ #: modules/woocommerce/woocommerce.php:124
3917
+ msgid "Sale Products"
3918
+ msgstr "Productos en Venta"
3919
+
3920
+ #: modules/woocommerce/woocommerce.php:125
3921
+ msgid "Best Selling Products"
3922
+ msgstr "Productos Más Vendidos"
3923
+
3924
+ #: modules/woocommerce/woocommerce.php:126
3925
+ msgid "Top Rated Products"
3926
+ msgstr "Productos Mejor Valorados"
3927
+
3928
+ #: modules/woocommerce/woocommerce.php:154
3929
+ msgid "Product IDs"
3930
+ msgstr "IDs de producto"
3931
+
3932
+ #: modules/woocommerce/woocommerce.php:156
3933
+ msgid ""
3934
+ "As you add products in the WooCommerce Products area, each will be assigned "
3935
+ "a unique ID. You can find this unique product ID by visiting the Products "
3936
+ "area and rolling over the product. The unique ID will be the first attribute "
3937
+ "and you can add several here separated by a comma."
3938
+ msgstr ""
3939
+ "Al agregar productos en el área de productos de WooCommerce, a cada uno se "
3940
+ "le asignará un ID. Estos ID se encuentran en el área Productos situándose "
3941
+ "sobre el producto. El ID único será el primer atributo y puedes añadir aquí "
3942
+ "varios, separándolos por comas."
3943
+
3944
+ #: modules/woocommerce/woocommerce.php:160
3945
+ msgid "Category Slug"
3946
+ msgstr "Categoría Slug"
3947
+
3948
+ #: modules/woocommerce/woocommerce.php:162
3949
+ msgid ""
3950
+ "As you add product categories in the WooCommerce Products area, each will be "
3951
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
3952
+ "found in the Categories area under WooCommerce Products. Several can be "
3953
+ "added here separated by a comma."
3954
+ msgstr ""
3955
+ "Al agregar categorías de productos en el área de productos de WooCommerce, a "
3956
+ "cada uno se le asignará un slug único que puedes editar. Estos slugs se "
3957
+ "encuentran en el área Categorías bajo los Productos WooCommerce. Puedes "
3958
+ "añadir aquí varios, separándolos por comas."
3959
+
3960
+ #: modules/woocommerce/woocommerce.php:166
3961
+ msgid "Number of Products"
3962
+ msgstr "Número de Productos"
3963
+
3964
+ #: modules/woocommerce/woocommerce.php:183
3965
+ msgid "Sort By"
3966
+ msgstr "Ordenar Por"
3967
+
3968
+ #: modules/woocommerce/woocommerce.php:186
3969
+ msgctxt "Sort by."
3970
+ msgid "Default"
3971
+ msgstr "Predeterminado"
3972
+
3973
+ #: modules/woocommerce/woocommerce.php:187
3974
+ msgid "Popularity"
3975
+ msgstr "Popularidad"
3976
+
3977
+ #: modules/woocommerce/woocommerce.php:188
3978
+ msgid "Rating"
3979
+ msgstr "Puntuación"
3980
+
3981
+ #: modules/woocommerce/woocommerce.php:190
3982
+ msgid "Price: Low to High"
3983
+ msgstr "Precio: de Menor a Mayor"
3984
+
3985
+ #: modules/woocommerce/woocommerce.php:191
3986
+ msgid "Price: High to Low"
3987
+ msgstr "Precio: de Mayor a Menor"
languages/it_IT.mo CHANGED
Binary file
languages/it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Beaver Builder Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-02-12 10:28-0800\n"
6
- "PO-Revision-Date: 2015-02-12 21:24+0100\n"
7
  "Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: it_IT\n"
@@ -45,7 +45,7 @@ msgstr "Aggiornamento"
45
 
46
  # @ fl-builder
47
  #: classes/class-fl-builder-admin-settings.php:126
48
- #: includes/global-settings.php:67
49
  msgid "Modules"
50
  msgstr "Moduli"
51
 
@@ -179,11 +179,6 @@ msgctxt "Image size."
179
  msgid "Thumbnail"
180
  msgstr "Miniatura"
181
 
182
- # @ fl-builder
183
- #: classes/class-fl-builder-templates.php:28
184
- msgid "Page Builder Templates"
185
- msgstr "Modelli di layout di Page Builder"
186
-
187
  # @ fl-builder
188
  #: classes/class-fl-builder.php:702
189
  #, php-format
@@ -289,6 +284,19 @@ msgctxt "%s stands for custom branded \"Page Builder\" name."
289
  msgid "Launch %s"
290
  msgstr "Lancia %s"
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  #: includes/admin-settings-branding.php:7
293
  msgid "White label the page builder by entering a custom name below."
294
  msgstr ""
@@ -440,7 +448,7 @@ msgid "Save Post Types"
440
  msgstr "Salva tipi di Post"
441
 
442
  # @ fl-builder
443
- #: includes/admin-settings-templates.php:3 includes/template-settings.php:4
444
  msgid "Template Settings"
445
  msgstr "Impostazioni dei modelli"
446
 
@@ -532,160 +540,6 @@ msgstr "Aggiorna ora"
532
  msgid "Learn More"
533
  msgstr "Ulteriori informazioni"
534
 
535
- # @ fl-builder
536
- #: includes/admin-templates-edit.php:3
537
- msgid "Edit Template"
538
- msgstr "Modifica modello di Layout"
539
-
540
- # @ fl-builder
541
- #: includes/admin-templates-edit.php:8
542
- msgctxt "Template edit form field label. Template name."
543
- msgid "Name"
544
- msgstr "Nome"
545
-
546
- # @ fl-builder
547
- #: includes/admin-templates-edit.php:12 modules/callout/callout.php:303
548
- #: modules/post-grid/post-grid.php:113
549
- msgid "Image"
550
- msgstr "Immagine"
551
-
552
- # @ fl-builder
553
- #: includes/admin-templates-edit.php:16 includes/row-settings.php:155
554
- #: includes/template-settings.php:23 modules/callout/callout.php:351
555
- #: modules/callout/callout.php:371
556
- #: modules/content-slider/content-slider.php:466
557
- #: modules/post-grid/post-grid.php:127
558
- msgid "Position"
559
- msgstr "Posizione"
560
-
561
- #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
562
- msgctxt "Template edit form field label. Is template premium one?"
563
- msgid "Premium"
564
- msgstr "Premium"
565
-
566
- # @ fl-builder
567
- #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
568
- #: includes/global-settings.php:18 includes/global-settings.php:87
569
- #: includes/row-settings.php:307 includes/template-settings.php:31
570
- #: modules/accordion/accordion.php:90 modules/button/button.php:135
571
- #: modules/callout/callout.php:418 modules/callout/callout.php:539
572
- #: modules/content-slider/content-slider.php:203
573
- #: modules/content-slider/content-slider.php:217
574
- #: modules/content-slider/content-slider.php:251
575
- #: modules/content-slider/content-slider.php:260
576
- #: modules/content-slider/content-slider.php:531
577
- #: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
578
- #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
579
- #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
580
- #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
581
- #: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
582
- #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
583
- #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
584
- #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
585
- #: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
586
- #: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
587
- #: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
588
- #: modules/social-buttons/social-buttons.php:111
589
- #: modules/social-buttons/social-buttons.php:120
590
- #: modules/social-buttons/social-buttons.php:129
591
- #: modules/testimonials/testimonials.php:85
592
- #: modules/testimonials/testimonials.php:124
593
- #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
594
- #: modules/video/video.php:123
595
- msgid "No"
596
- msgstr "No"
597
-
598
- # @ fl-builder
599
- #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
600
- #: includes/global-settings.php:19 includes/global-settings.php:88
601
- #: includes/row-settings.php:308 includes/template-settings.php:32
602
- #: modules/accordion/accordion.php:89 modules/button/button.php:136
603
- #: modules/callout/callout.php:419 modules/callout/callout.php:540
604
- #: modules/content-slider/content-slider.php:204
605
- #: modules/content-slider/content-slider.php:218
606
- #: modules/content-slider/content-slider.php:252
607
- #: modules/content-slider/content-slider.php:261
608
- #: modules/content-slider/content-slider.php:532
609
- #: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
610
- #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
611
- #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
612
- #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
613
- #: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
614
- #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
615
- #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
616
- #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
617
- #: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
618
- #: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
619
- #: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
620
- #: modules/social-buttons/social-buttons.php:110
621
- #: modules/social-buttons/social-buttons.php:119
622
- #: modules/social-buttons/social-buttons.php:128
623
- #: modules/testimonials/testimonials.php:86
624
- #: modules/testimonials/testimonials.php:125
625
- #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
626
- #: modules/video/video.php:124
627
- msgid "Yes"
628
- msgstr "Sì"
629
-
630
- # @ fl-builder
631
- #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
632
- msgid "Category"
633
- msgstr "Categoria"
634
-
635
- # @ fl-builder
636
- #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
637
- msgctxt "Templates category label."
638
- msgid "Landing Pages"
639
- msgstr "Landing Pages"
640
-
641
- #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
642
- msgctxt "Templates category label."
643
- msgid "Company Info"
644
- msgstr "Informazioni organizzazione"
645
-
646
- # @ fl-builder
647
- #: includes/admin-templates-edit.php:40
648
- msgid "Update Template"
649
- msgstr "Aggiorna modello"
650
-
651
- # @ fl-builder
652
- #: includes/admin-templates.php:3
653
- msgid "Page Builder Template"
654
- msgstr "Modello di layout di Page Builder"
655
-
656
- # @ fl-builder
657
- #: includes/admin-templates.php:10
658
- msgctxt "Templates list column label."
659
- msgid "Name"
660
- msgstr "Nome"
661
-
662
- # @ fl-builder
663
- #: includes/admin-templates.php:11
664
- msgctxt "Templates list column label."
665
- msgid "Category"
666
- msgstr "Categoria"
667
-
668
- #: includes/admin-templates.php:12
669
- msgctxt "Templates list column label. Is template premium one?"
670
- msgid "Premium"
671
- msgstr "Premium"
672
-
673
- # @ fl-builder
674
- #: includes/admin-templates.php:25 includes/field-photo.php:12
675
- #: includes/template-selector.php:83
676
- msgid "Edit"
677
- msgstr "Modifica"
678
-
679
- # @ fl-builder
680
- #: includes/admin-templates.php:27 includes/template-selector.php:84
681
- msgid "Delete"
682
- msgstr "Elimina"
683
-
684
- # @ fl-builder
685
- #: includes/admin-templates.php:40 includes/js-config.php:27
686
- msgid "Do you really want to delete this template?"
687
- msgstr "Vuoi davvero eliminare questo modello?"
688
-
689
  # @ fl-builder
690
  #: includes/column-settings.php:4 includes/js-config.php:22
691
  msgid "Column Settings"
@@ -696,8 +550,9 @@ msgstr "Impostazioni colonna"
696
  #: includes/row-settings.php:9 modules/accordion/accordion.php:45
697
  #: modules/button/button.php:95 modules/callout/callout.php:239
698
  #: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
699
- #: modules/heading/heading.php:69 modules/icon-group/icon-group.php:44
700
- #: modules/icon/icon.php:75 modules/pricing-table/pricing-table.php:43
 
701
  #: modules/pricing-table/pricing-table.php:155
702
  #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
703
  msgid "Style"
@@ -721,11 +576,10 @@ msgstr "Testo"
721
  # @ fl-builder
722
  #: includes/column-settings.php:30 includes/column-settings.php:43
723
  #: includes/column-settings.php:100 includes/row-settings.php:52
724
- #: includes/row-settings.php:109 includes/row-settings.php:379
725
  #: modules/callout/callout.php:389
726
- #: modules/content-slider/content-slider.php:331
727
- #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
728
- #: modules/separator/separator.php:34
729
  msgid "Color"
730
  msgstr "Colore"
731
 
@@ -735,26 +589,26 @@ msgstr "Colore"
735
  #: modules/callout/callout.php:506
736
  #: modules/content-slider/content-slider.php:357
737
  #: modules/content-slider/content-slider.php:624 modules/cta/cta.php:195
738
- #: modules/cta/cta.php:262 modules/icon-group/icon-group.php:64
739
- #: modules/icon/icon.php:95
740
  msgid "Background Color"
741
  msgstr "Colore di sfondo"
742
 
743
  # @ fl-builder
744
  #: includes/column-settings.php:51 includes/column-settings.php:108
745
- #: includes/row-settings.php:117 includes/row-settings.php:387
746
  #: modules/separator/separator.php:44
747
  msgid "Opacity"
748
  msgstr "Opacità"
749
 
750
  # @ fl-builder
751
- #: includes/column-settings.php:63 includes/row-settings.php:342
752
  msgid "Border"
753
  msgstr "Bordo"
754
 
755
  # @ fl-builder
756
  #: includes/column-settings.php:67 includes/row-settings.php:65
757
- #: includes/row-settings.php:346 modules/callout/callout.php:472
758
  #: modules/content-slider/content-slider.php:325
759
  #: modules/content-slider/content-slider.php:372
760
  #: modules/content-slider/content-slider.php:590
@@ -764,7 +618,7 @@ msgid "Type"
764
  msgstr "Tipo"
765
 
766
  # @ fl-builder
767
- #: includes/column-settings.php:69 includes/row-settings.php:348
768
  msgid ""
769
  "The type of border to use. Double borders must have a width of at least 3px "
770
  "to render properly."
@@ -773,163 +627,163 @@ msgstr ""
773
  "almeno 3px per essere visualizzati correttamente."
774
 
775
  # @ fl-builder
776
- #: includes/column-settings.php:71 includes/row-settings.php:350
777
  msgctxt "Border type."
778
  msgid "None"
779
  msgstr "Nessuno"
780
 
781
  # @ fl-builder
782
- #: includes/column-settings.php:72 includes/row-settings.php:351
783
  #: modules/separator/separator.php:75
784
  msgctxt "Border type."
785
  msgid "Solid"
786
  msgstr "Solido"
787
 
788
  # @ fl-builder
789
- #: includes/column-settings.php:73 includes/row-settings.php:352
790
  #: modules/separator/separator.php:76
791
  msgctxt "Border type."
792
  msgid "Dashed"
793
  msgstr "Tratteggiato"
794
 
795
  # @ fl-builder
796
- #: includes/column-settings.php:74 includes/row-settings.php:353
797
  #: modules/separator/separator.php:77
798
  msgctxt "Border type."
799
  msgid "Dotted"
800
  msgstr "Punteggiato"
801
 
802
  # @ fl-builder
803
- #: includes/column-settings.php:75 includes/row-settings.php:354
804
  #: modules/separator/separator.php:78
805
  msgctxt "Border type."
806
  msgid "Double"
807
  msgstr "Doppio"
808
 
809
  # @ fl-builder
810
- #: includes/column-settings.php:119 includes/row-settings.php:398
811
  msgid "Top Width"
812
  msgstr "Larghezza superiore"
813
 
814
  # @ fl-builder
815
- #: includes/column-settings.php:131 includes/row-settings.php:410
816
  msgid "Bottom Width"
817
  msgstr "Larghezza inferiore"
818
 
819
  # @ fl-builder
820
- #: includes/column-settings.php:143 includes/row-settings.php:422
821
  msgid "Left Width"
822
  msgstr "Larghezza sinistra"
823
 
824
  # @ fl-builder
825
- #: includes/column-settings.php:155 includes/row-settings.php:434
826
  msgid "Right Width"
827
  msgstr "Larghezza destra"
828
 
829
  # @ fl-builder
830
  #: includes/column-settings.php:170 includes/module-settings.php:6
831
- #: includes/row-settings.php:449 modules/content-slider/content-slider.php:267
832
  msgid "Advanced"
833
  msgstr "Avanzato"
834
 
835
  # @ fl-builder
836
  #: includes/column-settings.php:173 includes/global-settings.php:41
837
- #: includes/global-settings.php:71 includes/module-settings.php:9
838
- #: includes/row-settings.php:452
839
  msgid "Margins"
840
  msgstr "Margini"
841
 
842
  # @ fl-builder
843
  #: includes/column-settings.php:177 includes/column-settings.php:230
844
- #: includes/module-settings.php:13 includes/row-settings.php:456
845
- #: includes/row-settings.php:509 modules/slideshow/slideshow.php:475
846
  msgid "Top"
847
  msgstr "Alto"
848
 
849
  # @ fl-builder
850
  #: includes/column-settings.php:189 includes/column-settings.php:242
851
- #: includes/module-settings.php:25 includes/row-settings.php:468
852
- #: includes/row-settings.php:521 modules/slideshow/slideshow.php:474
853
  msgid "Bottom"
854
  msgstr "Basso"
855
 
856
  # @ fl-builder
857
  #: includes/column-settings.php:201 includes/column-settings.php:254
858
- #: includes/module-settings.php:37 includes/row-settings.php:480
859
- #: includes/row-settings.php:533 modules/button/button.php:177
860
  #: modules/callout/callout.php:250
861
  #: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
862
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
863
- #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
864
  #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
865
  msgid "Left"
866
  msgstr "Sinistra"
867
 
868
  # @ fl-builder
869
  #: includes/column-settings.php:213 includes/column-settings.php:266
870
- #: includes/module-settings.php:49 includes/row-settings.php:492
871
- #: includes/row-settings.php:545 modules/button/button.php:178
872
  #: modules/callout/callout.php:251
873
  #: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
874
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
875
- #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
876
  #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
877
  msgid "Right"
878
  msgstr "Destra"
879
 
880
  # @ fl-builder
881
  #: includes/column-settings.php:226 includes/global-settings.php:49
882
- #: includes/row-settings.php:505 modules/button/button.php:191
883
  #: modules/callout/callout.php:567
884
  #: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
885
  msgid "Padding"
886
  msgstr "Padding"
887
 
888
  # @ fl-builder
889
- #: includes/column-settings.php:279 includes/global-settings.php:80
890
- #: includes/module-settings.php:62 includes/row-settings.php:558
891
  msgid "Responsive Layout"
892
  msgstr "Layout reattivo"
893
 
894
  # @ fl-builder
895
  #: includes/column-settings.php:283 includes/module-settings.php:66
896
- #: includes/row-settings.php:562 modules/slideshow/slideshow.php:290
897
  msgid "Display"
898
  msgstr "Visualizza"
899
 
900
  # @ fl-builder
901
  #: includes/column-settings.php:285 includes/module-settings.php:68
902
- #: includes/row-settings.php:564
903
  msgid "Always"
904
  msgstr "Sempre"
905
 
906
  # @ fl-builder
907
  #: includes/column-settings.php:286 includes/module-settings.php:69
908
- #: includes/row-settings.php:565
909
  msgid "Large Devices Only"
910
  msgstr "Solo dispositivi grandi"
911
 
912
  # @ fl-builder
913
  #: includes/column-settings.php:287 includes/module-settings.php:70
914
- #: includes/row-settings.php:566
915
  msgid "Large &amp; Medium Devices Only"
916
  msgstr "Solo dispositivi grandi e medi"
917
 
918
  # @ fl-builder
919
  #: includes/column-settings.php:288 includes/module-settings.php:71
920
- #: includes/row-settings.php:567
921
  msgid "Medium Devices Only"
922
  msgstr "Solo dispositivi medi"
923
 
924
  # @ fl-builder
925
  #: includes/column-settings.php:289 includes/module-settings.php:72
926
- #: includes/row-settings.php:568
927
  msgid "Medium &amp; Small Devices Only"
928
  msgstr "Solo dispositivi medi e piccoli"
929
 
930
  # @ fl-builder
931
  #: includes/column-settings.php:290 includes/module-settings.php:73
932
- #: includes/row-settings.php:569
933
  msgid "Small Devices Only"
934
  msgstr "Solo dispositivi piccoli"
935
 
@@ -991,13 +845,13 @@ msgstr "Larghezza personalizzata dispositivi piccoli"
991
 
992
  # @ fl-builder
993
  #: includes/column-settings.php:356 includes/module-settings.php:115
994
- #: includes/row-settings.php:579
995
  msgid "CSS Selectors"
996
  msgstr "Selettore CSS"
997
 
998
  # @ fl-builder
999
  #: includes/column-settings.php:360 includes/loop-settings.php:27
1000
- #: includes/module-settings.php:119 includes/row-settings.php:583
1001
  msgid "ID"
1002
  msgstr "ID"
1003
 
@@ -1097,6 +951,11 @@ msgstr "Aggiungi foto"
1097
  msgid "Select Photo"
1098
  msgstr "Seleziona foto"
1099
 
 
 
 
 
 
1100
  # @ fl-builder
1101
  #: includes/field-video.php:3 includes/js-config.php:60
1102
  msgid "Select Video"
@@ -1108,16 +967,15 @@ msgid "Replace Video"
1108
  msgstr "Sostituisci video"
1109
 
1110
  # @ fl-builder
1111
- #: includes/global-settings.php:7 includes/template-settings.php:7
1112
- #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
1113
- #: modules/button/button.php:46 modules/callout/callout.php:207
1114
- #: modules/contact-form/contact-form.php:57
1115
  #: modules/content-slider/content-slider.php:184
1116
  #: modules/content-slider/content-slider.php:308 modules/cta/cta.php:65
1117
  #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
1118
- #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
1119
- #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
1120
- #: modules/pricing-table/pricing-table.php:87
1121
  #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
1122
  #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
1123
  #: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
@@ -1144,6 +1002,68 @@ msgctxt ""
1144
  msgid "Show"
1145
  msgstr "Visualizza"
1146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1147
  # @ fl-builder
1148
  #: includes/global-settings.php:26
1149
  msgid ""
@@ -1188,7 +1108,31 @@ msgstr ""
1188
  "riga."
1189
 
1190
  # @ fl-builder
1191
- #: includes/global-settings.php:84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1192
  msgctxt ""
1193
  "General settings form field label. Intended meaning: \"Responsive layout "
1194
  "enabled?\""
@@ -1196,12 +1140,12 @@ msgid "Enabled"
1196
  msgstr "Abilitato"
1197
 
1198
  # @ fl-builder
1199
- #: includes/global-settings.php:98
1200
  msgid "Medium Device Breakpoint"
1201
  msgstr "Breakpoint dispositivi medi"
1202
 
1203
  # @ fl-builder
1204
- #: includes/global-settings.php:103
1205
  msgid ""
1206
  "The browser width at which the layout will adjust for medium devices such as "
1207
  "tablets."
@@ -1210,12 +1154,12 @@ msgstr ""
1210
  "come i tablet."
1211
 
1212
  # @ fl-builder
1213
- #: includes/global-settings.php:107
1214
  msgid "Small Device Breakpoint"
1215
  msgstr "Breakpoint dispositivi piccoli"
1216
 
1217
  # @ fl-builder
1218
- #: includes/global-settings.php:112
1219
  msgid ""
1220
  "The browser width at which the layout will adjust for small devices such as "
1221
  "phones."
@@ -1284,6 +1228,11 @@ msgstr ""
1284
  "Vuoi davvero eliminare questa riga? Tutti i dati contenuti verranno "
1285
  "eliminati definitivamente."
1286
 
 
 
 
 
 
1287
  # @ fl-builder
1288
  #: includes/js-config.php:28
1289
  msgid "Discard Draft"
@@ -1656,7 +1605,7 @@ msgstr ""
1656
  "Niente spazi."
1657
 
1658
  # @ fl-builder
1659
- #: includes/module-settings.php:127 includes/row-settings.php:591
1660
  msgid "Class"
1661
  msgstr "Classe"
1662
 
@@ -1676,18 +1625,6 @@ msgstr ""
1676
  msgid "Width"
1677
  msgstr "Larghezza"
1678
 
1679
- # @ fl-builder
1680
- #: includes/row-settings.php:19 includes/row-settings.php:37
1681
- #: includes/row-settings.php:179
1682
- msgid "Fixed"
1683
- msgstr "Fissa"
1684
-
1685
- # @ fl-builder
1686
- #: includes/row-settings.php:20 includes/row-settings.php:38
1687
- #: modules/button/button.php:150 modules/callout/callout.php:554
1688
- msgid "Full Width"
1689
- msgstr "Larghezza piena"
1690
-
1691
  # @ fl-builder
1692
  #: includes/row-settings.php:27
1693
  msgid ""
@@ -1813,6 +1750,14 @@ msgstr ""
1813
  "riempire la riga orizzontalmente e verticalmente. È anche possibile "
1814
  "specificare di ripetere l'immagine solo orizzontalmente o verticalmente."
1815
 
 
 
 
 
 
 
 
 
1816
  # @ fl-builder
1817
  #: includes/row-settings.php:158
1818
  msgid "Left Top"
@@ -1853,7 +1798,7 @@ msgstr "Centro Alto"
1853
  #: modules/callout/callout.php:249
1854
  #: modules/content-slider/content-slider.php:471 modules/cta/cta.php:124
1855
  #: modules/heading/heading.php:90 modules/heading/heading.php:162
1856
- #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1857
  #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
1858
  msgid "Center"
1859
  msgstr "Centro"
@@ -2100,13 +2045,28 @@ msgid "Slow"
2100
  msgstr "Lenta"
2101
 
2102
  # @ fl-builder
2103
- #: includes/row-settings.php:571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2104
  msgid "Choose whether to show or hide this row at different device sizes."
2105
  msgstr ""
2106
  "Scegli se mostrare o nascondere questa riga per diverse dimensioni dei "
2107
  "dispositivi."
2108
 
2109
- #: includes/row-settings.php:584
2110
  msgid ""
2111
  "A unique ID that will be applied to this row's HTML. Must start with a "
2112
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
@@ -2115,7 +2075,7 @@ msgstr ""
2115
  "iniziare con una lettera e contenere solo trattini, underscore, lettere o "
2116
  "numeri. Niente spazi."
2117
 
2118
- #: includes/row-settings.php:592
2119
  msgid ""
2120
  "A class that will be applied to this row's HTML. Must start with a letter "
2121
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
@@ -2166,22 +2126,9 @@ msgstr ""
2166
  "come modello in <strong>Strumenti &rarr; Salva modello</strong>."
2167
 
2168
  # @ fl-builder
2169
- #: includes/template-settings.php:14 includes/user-template-settings.php:15
2170
- msgctxt "Template name."
2171
- msgid "Name"
2172
- msgstr "Nome"
2173
-
2174
- #: includes/template-settings.php:18
2175
- msgid "Image Filename"
2176
- msgstr "Nome file immagine"
2177
-
2178
- #: includes/template-settings.php:19
2179
- msgid ""
2180
- "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
2181
- "templates/\" directory."
2182
- msgstr ""
2183
- "Il nome file dell'immagine come \"thumb.jpg\" che risiede nella directory "
2184
- "\"img/templates/\"."
2185
 
2186
  # @ fl-builder
2187
  #: includes/ui.php:7
@@ -2343,6 +2290,12 @@ msgstr ""
2343
  "Salva il layout attuale come modello che può essere riutilizzato in "
2344
  "<strong>Modelli &rarr; I tuoi modelli</strong>."
2345
 
 
 
 
 
 
 
2346
  # @ fl-builder
2347
  #: modules/accordion/accordion.php:14
2348
  msgid "Accordion"
@@ -2358,7 +2311,7 @@ msgstr "Visualizza una lista comprimibile di elementi."
2358
  #: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
2359
  #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
2360
  #: modules/gallery/gallery.php:16 modules/html/html.php:16
2361
- #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
2362
  #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
2363
  #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
2364
  #: modules/slideshow/slideshow.php:16
@@ -2462,9 +2415,8 @@ msgstr "Clicca qui"
2462
  # @ fl-builder
2463
  #: modules/button/button.php:62 modules/callout/callout.php:315
2464
  #: modules/callout/callout.php:363 modules/callout/callout.php:367
2465
- #: modules/cta/cta.php:228 modules/icon-group/icon-group.php:34
2466
- #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
2467
- #: modules/icon/icon.php:34
2468
  msgid "Icon"
2469
  msgstr "Icona"
2470
 
@@ -2475,7 +2427,7 @@ msgstr "Icona"
2475
  #: modules/content-slider/content-slider.php:571
2476
  #: modules/content-slider/content-slider.php:594 modules/cta/cta.php:238
2477
  #: modules/heading/heading.php:43 modules/heading/heading.php:47
2478
- #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
2479
  #: modules/slideshow/slideshow.php:343
2480
  msgid "Link"
2481
  msgstr "Collegamento"
@@ -2511,8 +2463,8 @@ msgstr "Nuova finestra"
2511
 
2512
  # @ fl-builder
2513
  #: modules/button/button.php:98 modules/cta/cta.php:185
2514
- #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
2515
- #: modules/icon/icon.php:78
2516
  msgid "Colors"
2517
  msgstr "Colori"
2518
 
@@ -2520,7 +2472,7 @@ msgstr "Colori"
2520
  #: modules/button/button.php:108 modules/callout/callout.php:407
2521
  #: modules/callout/callout.php:512
2522
  #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:268
2523
- #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
2524
  msgid "Background Hover Color"
2525
  msgstr "Colore di sfondo al passaggio del mouse"
2526
 
@@ -2543,14 +2495,14 @@ msgstr "Colore del testo al passaggio del mouse"
2543
  #: modules/button/button.php:132 modules/callout/callout.php:415
2544
  #: modules/callout/callout.php:536
2545
  #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:292
2546
- #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
2547
  msgid "Gradient"
2548
  msgstr "Gradiente"
2549
 
2550
  # @ fl-builder
2551
  #: modules/button/button.php:142 modules/callout/callout.php:242
2552
  #: modules/cta/cta.php:102 modules/heading/heading.php:82
2553
- #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
2554
  msgid "Structure"
2555
  msgstr "Struttura"
2556
 
@@ -2568,7 +2520,7 @@ msgstr "Larghezza personalizzata"
2568
  # @ fl-builder
2569
  #: modules/button/button.php:173 modules/cta/cta.php:120
2570
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
2571
- #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
2572
  #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
2573
  msgid "Alignment"
2574
  msgstr "Allineamento"
@@ -2644,6 +2596,11 @@ msgstr "Dimensione titolo"
2644
  msgid "Heading Custom Size"
2645
  msgstr "Dimensione personalizzata titolo"
2646
 
 
 
 
 
 
2647
  # @ fl-builder
2648
  #: modules/callout/callout.php:310
2649
  msgid "Image Type"
@@ -2728,8 +2685,8 @@ msgid "Icon Colors"
2728
  msgstr "Colori icona"
2729
 
2730
  # @ fl-builder
2731
- #: modules/callout/callout.php:394 modules/icon-group/icon-group.php:56
2732
- #: modules/icon/icon.php:87
2733
  msgid "Hover Color"
2734
  msgstr "Colore al passaggio del mouse"
2735
 
@@ -2739,8 +2696,8 @@ msgid "Icon Structure"
2739
  msgstr "Struttura icona"
2740
 
2741
  # @ fl-builder
2742
- #: modules/callout/callout.php:429 modules/icon-group/icon-group.php:91
2743
- #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
2744
  msgid "Size"
2745
  msgstr "Dimensione"
2746
 
@@ -3363,6 +3320,11 @@ msgstr "HTML"
3363
  msgid "Display raw HTML code."
3364
  msgstr "Mostra codice HTML."
3365
 
 
 
 
 
 
3366
  # @ fl-builder
3367
  #: modules/icon-group/icon-group.php:14
3368
  msgid "Icon Group"
@@ -3378,11 +3340,6 @@ msgstr "Mostra un gruppo di icone Font Awesome."
3378
  msgid "Add Icon"
3379
  msgstr "Aggiungi icona"
3380
 
3381
- # @ fl-builder
3382
- #: modules/icon/icon.php:15
3383
- msgid "Display an icon and optional title."
3384
- msgstr "Mostra un'icona e un titolo opzionale."
3385
-
3386
  # @ fl-builder
3387
  #: modules/map/map.php:14
3388
  msgid "Map"
2
  msgstr ""
3
  "Project-Id-Version: Beaver Builder Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-02-23 11:24-0800\n"
6
+ "PO-Revision-Date: 2015-02-23 11:25+0100\n"
7
  "Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: it_IT\n"
45
 
46
  # @ fl-builder
47
  #: classes/class-fl-builder-admin-settings.php:126
48
+ #: includes/global-settings.php:90
49
  msgid "Modules"
50
  msgstr "Moduli"
51
 
179
  msgid "Thumbnail"
180
  msgstr "Miniatura"
181
 
 
 
 
 
 
182
  # @ fl-builder
183
  #: classes/class-fl-builder.php:702
184
  #, php-format
284
  msgid "Launch %s"
285
  msgstr "Lancia %s"
286
 
287
+ # @ fl-builder
288
+ #: includes/admin-posts.php:15
289
+ #, php-format
290
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
291
+ msgid ""
292
+ "Switching to Text Editor mode will disable your %s layout until it is "
293
+ "enabled again. Any edits made while in Text Editor mode will not be made on "
294
+ "your %s layout. Do you want to continue?"
295
+ msgstr ""
296
+ "Tornando alla modalità Text Editor i layout di %s saranno disabilitati "
297
+ "finchè non lo riattivi. Le modifiche apportate in modalità Text Editor non "
298
+ "saranno effettuate sul tuo layout %s. Vuoi continuare?"
299
+
300
  #: includes/admin-settings-branding.php:7
301
  msgid "White label the page builder by entering a custom name below."
302
  msgstr ""
448
  msgstr "Salva tipi di Post"
449
 
450
  # @ fl-builder
451
+ #: includes/admin-settings-templates.php:3
452
  msgid "Template Settings"
453
  msgstr "Impostazioni dei modelli"
454
 
540
  msgid "Learn More"
541
  msgstr "Ulteriori informazioni"
542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
543
  # @ fl-builder
544
  #: includes/column-settings.php:4 includes/js-config.php:22
545
  msgid "Column Settings"
550
  #: includes/row-settings.php:9 modules/accordion/accordion.php:45
551
  #: modules/button/button.php:95 modules/callout/callout.php:239
552
  #: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
553
+ #: modules/heading/heading.php:69 modules/icon/icon.php:75
554
+ #: modules/icon-group/icon-group.php:44
555
+ #: modules/pricing-table/pricing-table.php:43
556
  #: modules/pricing-table/pricing-table.php:155
557
  #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
558
  msgid "Style"
576
  # @ fl-builder
577
  #: includes/column-settings.php:30 includes/column-settings.php:43
578
  #: includes/column-settings.php:100 includes/row-settings.php:52
579
+ #: includes/row-settings.php:109 includes/row-settings.php:403
580
  #: modules/callout/callout.php:389
581
+ #: modules/content-slider/content-slider.php:331 modules/icon/icon.php:82
582
+ #: modules/icon-group/icon-group.php:51 modules/separator/separator.php:34
 
583
  msgid "Color"
584
  msgstr "Colore"
585
 
589
  #: modules/callout/callout.php:506
590
  #: modules/content-slider/content-slider.php:357
591
  #: modules/content-slider/content-slider.php:624 modules/cta/cta.php:195
592
+ #: modules/cta/cta.php:262 modules/icon/icon.php:95
593
+ #: modules/icon-group/icon-group.php:64
594
  msgid "Background Color"
595
  msgstr "Colore di sfondo"
596
 
597
  # @ fl-builder
598
  #: includes/column-settings.php:51 includes/column-settings.php:108
599
+ #: includes/row-settings.php:117 includes/row-settings.php:411
600
  #: modules/separator/separator.php:44
601
  msgid "Opacity"
602
  msgstr "Opacità"
603
 
604
  # @ fl-builder
605
+ #: includes/column-settings.php:63 includes/row-settings.php:366
606
  msgid "Border"
607
  msgstr "Bordo"
608
 
609
  # @ fl-builder
610
  #: includes/column-settings.php:67 includes/row-settings.php:65
611
+ #: includes/row-settings.php:370 modules/callout/callout.php:472
612
  #: modules/content-slider/content-slider.php:325
613
  #: modules/content-slider/content-slider.php:372
614
  #: modules/content-slider/content-slider.php:590
618
  msgstr "Tipo"
619
 
620
  # @ fl-builder
621
+ #: includes/column-settings.php:69 includes/row-settings.php:372
622
  msgid ""
623
  "The type of border to use. Double borders must have a width of at least 3px "
624
  "to render properly."
627
  "almeno 3px per essere visualizzati correttamente."
628
 
629
  # @ fl-builder
630
+ #: includes/column-settings.php:71 includes/row-settings.php:374
631
  msgctxt "Border type."
632
  msgid "None"
633
  msgstr "Nessuno"
634
 
635
  # @ fl-builder
636
+ #: includes/column-settings.php:72 includes/row-settings.php:375
637
  #: modules/separator/separator.php:75
638
  msgctxt "Border type."
639
  msgid "Solid"
640
  msgstr "Solido"
641
 
642
  # @ fl-builder
643
+ #: includes/column-settings.php:73 includes/row-settings.php:376
644
  #: modules/separator/separator.php:76
645
  msgctxt "Border type."
646
  msgid "Dashed"
647
  msgstr "Tratteggiato"
648
 
649
  # @ fl-builder
650
+ #: includes/column-settings.php:74 includes/row-settings.php:377
651
  #: modules/separator/separator.php:77
652
  msgctxt "Border type."
653
  msgid "Dotted"
654
  msgstr "Punteggiato"
655
 
656
  # @ fl-builder
657
+ #: includes/column-settings.php:75 includes/row-settings.php:378
658
  #: modules/separator/separator.php:78
659
  msgctxt "Border type."
660
  msgid "Double"
661
  msgstr "Doppio"
662
 
663
  # @ fl-builder
664
+ #: includes/column-settings.php:119 includes/row-settings.php:422
665
  msgid "Top Width"
666
  msgstr "Larghezza superiore"
667
 
668
  # @ fl-builder
669
+ #: includes/column-settings.php:131 includes/row-settings.php:434
670
  msgid "Bottom Width"
671
  msgstr "Larghezza inferiore"
672
 
673
  # @ fl-builder
674
+ #: includes/column-settings.php:143 includes/row-settings.php:446
675
  msgid "Left Width"
676
  msgstr "Larghezza sinistra"
677
 
678
  # @ fl-builder
679
+ #: includes/column-settings.php:155 includes/row-settings.php:458
680
  msgid "Right Width"
681
  msgstr "Larghezza destra"
682
 
683
  # @ fl-builder
684
  #: includes/column-settings.php:170 includes/module-settings.php:6
685
+ #: includes/row-settings.php:473 modules/content-slider/content-slider.php:267
686
  msgid "Advanced"
687
  msgstr "Avanzato"
688
 
689
  # @ fl-builder
690
  #: includes/column-settings.php:173 includes/global-settings.php:41
691
+ #: includes/global-settings.php:94 includes/module-settings.php:9
692
+ #: includes/row-settings.php:476
693
  msgid "Margins"
694
  msgstr "Margini"
695
 
696
  # @ fl-builder
697
  #: includes/column-settings.php:177 includes/column-settings.php:230
698
+ #: includes/module-settings.php:13 includes/row-settings.php:480
699
+ #: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
700
  msgid "Top"
701
  msgstr "Alto"
702
 
703
  # @ fl-builder
704
  #: includes/column-settings.php:189 includes/column-settings.php:242
705
+ #: includes/module-settings.php:25 includes/row-settings.php:492
706
+ #: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
707
  msgid "Bottom"
708
  msgstr "Basso"
709
 
710
  # @ fl-builder
711
  #: includes/column-settings.php:201 includes/column-settings.php:254
712
+ #: includes/module-settings.php:37 includes/row-settings.php:504
713
+ #: includes/row-settings.php:557 modules/button/button.php:177
714
  #: modules/callout/callout.php:250
715
  #: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
716
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
717
+ #: modules/icon/icon.php:134 modules/icon-group/icon-group.php:111
718
  #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
719
  msgid "Left"
720
  msgstr "Sinistra"
721
 
722
  # @ fl-builder
723
  #: includes/column-settings.php:213 includes/column-settings.php:266
724
+ #: includes/module-settings.php:49 includes/row-settings.php:516
725
+ #: includes/row-settings.php:569 modules/button/button.php:178
726
  #: modules/callout/callout.php:251
727
  #: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
728
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
729
+ #: modules/icon/icon.php:135 modules/icon-group/icon-group.php:112
730
  #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
731
  msgid "Right"
732
  msgstr "Destra"
733
 
734
  # @ fl-builder
735
  #: includes/column-settings.php:226 includes/global-settings.php:49
736
+ #: includes/row-settings.php:529 modules/button/button.php:191
737
  #: modules/callout/callout.php:567
738
  #: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
739
  msgid "Padding"
740
  msgstr "Padding"
741
 
742
  # @ fl-builder
743
+ #: includes/column-settings.php:279 includes/global-settings.php:103
744
+ #: includes/module-settings.php:62 includes/row-settings.php:582
745
  msgid "Responsive Layout"
746
  msgstr "Layout reattivo"
747
 
748
  # @ fl-builder
749
  #: includes/column-settings.php:283 includes/module-settings.php:66
750
+ #: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
751
  msgid "Display"
752
  msgstr "Visualizza"
753
 
754
  # @ fl-builder
755
  #: includes/column-settings.php:285 includes/module-settings.php:68
756
+ #: includes/row-settings.php:588
757
  msgid "Always"
758
  msgstr "Sempre"
759
 
760
  # @ fl-builder
761
  #: includes/column-settings.php:286 includes/module-settings.php:69
762
+ #: includes/row-settings.php:589
763
  msgid "Large Devices Only"
764
  msgstr "Solo dispositivi grandi"
765
 
766
  # @ fl-builder
767
  #: includes/column-settings.php:287 includes/module-settings.php:70
768
+ #: includes/row-settings.php:590
769
  msgid "Large &amp; Medium Devices Only"
770
  msgstr "Solo dispositivi grandi e medi"
771
 
772
  # @ fl-builder
773
  #: includes/column-settings.php:288 includes/module-settings.php:71
774
+ #: includes/row-settings.php:591
775
  msgid "Medium Devices Only"
776
  msgstr "Solo dispositivi medi"
777
 
778
  # @ fl-builder
779
  #: includes/column-settings.php:289 includes/module-settings.php:72
780
+ #: includes/row-settings.php:592
781
  msgid "Medium &amp; Small Devices Only"
782
  msgstr "Solo dispositivi medi e piccoli"
783
 
784
  # @ fl-builder
785
  #: includes/column-settings.php:290 includes/module-settings.php:73
786
+ #: includes/row-settings.php:593
787
  msgid "Small Devices Only"
788
  msgstr "Solo dispositivi piccoli"
789
 
845
 
846
  # @ fl-builder
847
  #: includes/column-settings.php:356 includes/module-settings.php:115
848
+ #: includes/row-settings.php:603
849
  msgid "CSS Selectors"
850
  msgstr "Selettore CSS"
851
 
852
  # @ fl-builder
853
  #: includes/column-settings.php:360 includes/loop-settings.php:27
854
+ #: includes/module-settings.php:119 includes/row-settings.php:607
855
  msgid "ID"
856
  msgstr "ID"
857
 
951
  msgid "Select Photo"
952
  msgstr "Seleziona foto"
953
 
954
+ # @ fl-builder
955
+ #: includes/field-photo.php:12 includes/template-selector.php:83
956
+ msgid "Edit"
957
+ msgstr "Modifica"
958
+
959
  # @ fl-builder
960
  #: includes/field-video.php:3 includes/js-config.php:60
961
  msgid "Select Video"
967
  msgstr "Sostituisci video"
968
 
969
  # @ fl-builder
970
+ #: includes/global-settings.php:7 includes/user-template-settings.php:7
971
+ #: modules/accordion/accordion.php:110 modules/button/button.php:46
972
+ #: modules/callout/callout.php:207 modules/contact-form/contact-form.php:57
 
973
  #: modules/content-slider/content-slider.php:184
974
  #: modules/content-slider/content-slider.php:308 modules/cta/cta.php:65
975
  #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
976
+ #: modules/html/html.php:26 modules/icon/icon.php:27
977
+ #: modules/icon-group/icon-group.php:128 modules/map/map.php:26
978
+ #: modules/photo/photo.php:368 modules/pricing-table/pricing-table.php:87
979
  #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
980
  #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
981
  #: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
1002
  msgid "Show"
1003
  msgstr "Visualizza"
1004
 
1005
+ # @ fl-builder
1006
+ #: includes/global-settings.php:18 includes/global-settings.php:110
1007
+ #: includes/row-settings.php:307 modules/accordion/accordion.php:90
1008
+ #: modules/button/button.php:135 modules/callout/callout.php:418
1009
+ #: modules/callout/callout.php:539
1010
+ #: modules/content-slider/content-slider.php:203
1011
+ #: modules/content-slider/content-slider.php:217
1012
+ #: modules/content-slider/content-slider.php:251
1013
+ #: modules/content-slider/content-slider.php:260
1014
+ #: modules/content-slider/content-slider.php:531
1015
+ #: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
1016
+ #: modules/icon/icon.php:111 modules/icon-group/icon-group.php:80
1017
+ #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
1018
+ #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
1019
+ #: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
1020
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1021
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
1022
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
1023
+ #: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
1024
+ #: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
1025
+ #: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
1026
+ #: modules/social-buttons/social-buttons.php:111
1027
+ #: modules/social-buttons/social-buttons.php:120
1028
+ #: modules/social-buttons/social-buttons.php:129
1029
+ #: modules/testimonials/testimonials.php:85
1030
+ #: modules/testimonials/testimonials.php:124
1031
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1032
+ #: modules/video/video.php:123
1033
+ msgid "No"
1034
+ msgstr "No"
1035
+
1036
+ # @ fl-builder
1037
+ #: includes/global-settings.php:19 includes/global-settings.php:111
1038
+ #: includes/row-settings.php:308 modules/accordion/accordion.php:89
1039
+ #: modules/button/button.php:136 modules/callout/callout.php:419
1040
+ #: modules/callout/callout.php:540
1041
+ #: modules/content-slider/content-slider.php:204
1042
+ #: modules/content-slider/content-slider.php:218
1043
+ #: modules/content-slider/content-slider.php:252
1044
+ #: modules/content-slider/content-slider.php:261
1045
+ #: modules/content-slider/content-slider.php:532
1046
+ #: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
1047
+ #: modules/icon/icon.php:112 modules/icon-group/icon-group.php:81
1048
+ #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
1049
+ #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
1050
+ #: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
1051
+ #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
1052
+ #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
1053
+ #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
1054
+ #: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
1055
+ #: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
1056
+ #: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
1057
+ #: modules/social-buttons/social-buttons.php:110
1058
+ #: modules/social-buttons/social-buttons.php:119
1059
+ #: modules/social-buttons/social-buttons.php:128
1060
+ #: modules/testimonials/testimonials.php:86
1061
+ #: modules/testimonials/testimonials.php:125
1062
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1063
+ #: modules/video/video.php:124
1064
+ msgid "Yes"
1065
+ msgstr "Sì"
1066
+
1067
  # @ fl-builder
1068
  #: includes/global-settings.php:26
1069
  msgid ""
1108
  "riga."
1109
 
1110
  # @ fl-builder
1111
+ #: includes/global-settings.php:66
1112
+ msgid "Default Row Width"
1113
+ msgstr "Larghezza predefinita riga"
1114
+
1115
+ # @ fl-builder
1116
+ #: includes/global-settings.php:69 includes/global-settings.php:83
1117
+ #: includes/row-settings.php:19 includes/row-settings.php:37
1118
+ #: includes/row-settings.php:179
1119
+ msgid "Fixed"
1120
+ msgstr "Fissa"
1121
+
1122
+ # @ fl-builder
1123
+ #: includes/global-settings.php:70 includes/global-settings.php:84
1124
+ #: includes/row-settings.php:20 includes/row-settings.php:38
1125
+ #: modules/button/button.php:150 modules/callout/callout.php:554
1126
+ msgid "Full Width"
1127
+ msgstr "Larghezza piena"
1128
+
1129
+ # @ fl-builder
1130
+ #: includes/global-settings.php:80
1131
+ msgid "Default Row Content Width"
1132
+ msgstr "Larghezza predefinita riga di contenuto"
1133
+
1134
+ # @ fl-builder
1135
+ #: includes/global-settings.php:107
1136
  msgctxt ""
1137
  "General settings form field label. Intended meaning: \"Responsive layout "
1138
  "enabled?\""
1140
  msgstr "Abilitato"
1141
 
1142
  # @ fl-builder
1143
+ #: includes/global-settings.php:121
1144
  msgid "Medium Device Breakpoint"
1145
  msgstr "Breakpoint dispositivi medi"
1146
 
1147
  # @ fl-builder
1148
+ #: includes/global-settings.php:126
1149
  msgid ""
1150
  "The browser width at which the layout will adjust for medium devices such as "
1151
  "tablets."
1154
  "come i tablet."
1155
 
1156
  # @ fl-builder
1157
+ #: includes/global-settings.php:130
1158
  msgid "Small Device Breakpoint"
1159
  msgstr "Breakpoint dispositivi piccoli"
1160
 
1161
  # @ fl-builder
1162
+ #: includes/global-settings.php:135
1163
  msgid ""
1164
  "The browser width at which the layout will adjust for small devices such as "
1165
  "phones."
1228
  "Vuoi davvero eliminare questa riga? Tutti i dati contenuti verranno "
1229
  "eliminati definitivamente."
1230
 
1231
+ # @ fl-builder
1232
+ #: includes/js-config.php:27
1233
+ msgid "Do you really want to delete this template?"
1234
+ msgstr "Vuoi davvero eliminare questo modello?"
1235
+
1236
  # @ fl-builder
1237
  #: includes/js-config.php:28
1238
  msgid "Discard Draft"
1605
  "Niente spazi."
1606
 
1607
  # @ fl-builder
1608
+ #: includes/module-settings.php:127 includes/row-settings.php:615
1609
  msgid "Class"
1610
  msgstr "Classe"
1611
 
1625
  msgid "Width"
1626
  msgstr "Larghezza"
1627
 
 
 
 
 
 
 
 
 
 
 
 
 
1628
  # @ fl-builder
1629
  #: includes/row-settings.php:27
1630
  msgid ""
1750
  "riempire la riga orizzontalmente e verticalmente. È anche possibile "
1751
  "specificare di ripetere l'immagine solo orizzontalmente o verticalmente."
1752
 
1753
+ # @ fl-builder
1754
+ #: includes/row-settings.php:155 modules/callout/callout.php:351
1755
+ #: modules/callout/callout.php:371
1756
+ #: modules/content-slider/content-slider.php:466
1757
+ #: modules/post-grid/post-grid.php:127
1758
+ msgid "Position"
1759
+ msgstr "Posizione"
1760
+
1761
  # @ fl-builder
1762
  #: includes/row-settings.php:158
1763
  msgid "Left Top"
1798
  #: modules/callout/callout.php:249
1799
  #: modules/content-slider/content-slider.php:471 modules/cta/cta.php:124
1800
  #: modules/heading/heading.php:90 modules/heading/heading.php:162
1801
+ #: modules/icon/icon.php:133 modules/icon-group/icon-group.php:110
1802
  #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
1803
  msgid "Center"
1804
  msgstr "Centro"
2045
  msgstr "Lenta"
2046
 
2047
  # @ fl-builder
2048
+ #: includes/row-settings.php:342
2049
+ msgid "Background Overlay"
2050
+ msgstr "Sfondo overlay"
2051
+
2052
+ # @ fl-builder
2053
+ #: includes/row-settings.php:346
2054
+ msgid "Overlay Color"
2055
+ msgstr "Colore overlay"
2056
+
2057
+ # @ fl-builder
2058
+ #: includes/row-settings.php:354
2059
+ msgid "Overlay Opacity"
2060
+ msgstr "Opacità overlay"
2061
+
2062
+ # @ fl-builder
2063
+ #: includes/row-settings.php:595
2064
  msgid "Choose whether to show or hide this row at different device sizes."
2065
  msgstr ""
2066
  "Scegli se mostrare o nascondere questa riga per diverse dimensioni dei "
2067
  "dispositivi."
2068
 
2069
+ #: includes/row-settings.php:608
2070
  msgid ""
2071
  "A unique ID that will be applied to this row's HTML. Must start with a "
2072
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
2075
  "iniziare con una lettera e contenere solo trattini, underscore, lettere o "
2076
  "numeri. Niente spazi."
2077
 
2078
+ #: includes/row-settings.php:616
2079
  msgid ""
2080
  "A class that will be applied to this row's HTML. Must start with a letter "
2081
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
2126
  "come modello in <strong>Strumenti &rarr; Salva modello</strong>."
2127
 
2128
  # @ fl-builder
2129
+ #: includes/template-selector.php:84
2130
+ msgid "Delete"
2131
+ msgstr "Elimina"
 
 
 
 
 
 
 
 
 
 
 
 
 
2132
 
2133
  # @ fl-builder
2134
  #: includes/ui.php:7
2290
  "Salva il layout attuale come modello che può essere riutilizzato in "
2291
  "<strong>Modelli &rarr; I tuoi modelli</strong>."
2292
 
2293
+ # @ fl-builder
2294
+ #: includes/user-template-settings.php:15
2295
+ msgctxt "Template name."
2296
+ msgid "Name"
2297
+ msgstr "Nome"
2298
+
2299
  # @ fl-builder
2300
  #: modules/accordion/accordion.php:14
2301
  msgid "Accordion"
2311
  #: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
2312
  #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
2313
  #: modules/gallery/gallery.php:16 modules/html/html.php:16
2314
+ #: modules/icon/icon.php:16 modules/icon-group/icon-group.php:16
2315
  #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
2316
  #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
2317
  #: modules/slideshow/slideshow.php:16
2415
  # @ fl-builder
2416
  #: modules/button/button.php:62 modules/callout/callout.php:315
2417
  #: modules/callout/callout.php:363 modules/callout/callout.php:367
2418
+ #: modules/cta/cta.php:228 modules/icon/icon.php:14 modules/icon/icon.php:34
2419
+ #: modules/icon-group/icon-group.php:34 modules/icon-group/icon-group.php:135
 
2420
  msgid "Icon"
2421
  msgstr "Icona"
2422
 
2427
  #: modules/content-slider/content-slider.php:571
2428
  #: modules/content-slider/content-slider.php:594 modules/cta/cta.php:238
2429
  #: modules/heading/heading.php:43 modules/heading/heading.php:47
2430
+ #: modules/icon/icon.php:43 modules/icon-group/icon-group.php:139
2431
  #: modules/slideshow/slideshow.php:343
2432
  msgid "Link"
2433
  msgstr "Collegamento"
2463
 
2464
  # @ fl-builder
2465
  #: modules/button/button.php:98 modules/cta/cta.php:185
2466
+ #: modules/heading/heading.php:72 modules/icon/icon.php:78
2467
+ #: modules/icon-group/icon-group.php:47
2468
  msgid "Colors"
2469
  msgstr "Colori"
2470
 
2472
  #: modules/button/button.php:108 modules/callout/callout.php:407
2473
  #: modules/callout/callout.php:512
2474
  #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:268
2475
+ #: modules/icon/icon.php:100 modules/icon-group/icon-group.php:69
2476
  msgid "Background Hover Color"
2477
  msgstr "Colore di sfondo al passaggio del mouse"
2478
 
2495
  #: modules/button/button.php:132 modules/callout/callout.php:415
2496
  #: modules/callout/callout.php:536
2497
  #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:292
2498
+ #: modules/icon/icon.php:108 modules/icon-group/icon-group.php:77
2499
  msgid "Gradient"
2500
  msgstr "Gradiente"
2501
 
2502
  # @ fl-builder
2503
  #: modules/button/button.php:142 modules/callout/callout.php:242
2504
  #: modules/cta/cta.php:102 modules/heading/heading.php:82
2505
+ #: modules/icon/icon.php:118 modules/icon-group/icon-group.php:87
2506
  msgid "Structure"
2507
  msgstr "Struttura"
2508
 
2520
  # @ fl-builder
2521
  #: modules/button/button.php:173 modules/cta/cta.php:120
2522
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
2523
+ #: modules/icon/icon.php:130 modules/icon-group/icon-group.php:107
2524
  #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
2525
  msgid "Alignment"
2526
  msgstr "Allineamento"
2596
  msgid "Heading Custom Size"
2597
  msgstr "Dimensione personalizzata titolo"
2598
 
2599
+ # @ fl-builder
2600
+ #: modules/callout/callout.php:303 modules/post-grid/post-grid.php:113
2601
+ msgid "Image"
2602
+ msgstr "Immagine"
2603
+
2604
  # @ fl-builder
2605
  #: modules/callout/callout.php:310
2606
  msgid "Image Type"
2685
  msgstr "Colori icona"
2686
 
2687
  # @ fl-builder
2688
+ #: modules/callout/callout.php:394 modules/icon/icon.php:87
2689
+ #: modules/icon-group/icon-group.php:56
2690
  msgid "Hover Color"
2691
  msgstr "Colore al passaggio del mouse"
2692
 
2696
  msgstr "Struttura icona"
2697
 
2698
  # @ fl-builder
2699
+ #: modules/callout/callout.php:429 modules/icon/icon.php:122
2700
+ #: modules/icon-group/icon-group.php:91 modules/post-grid/post-grid.php:136
2701
  msgid "Size"
2702
  msgstr "Dimensione"
2703
 
3320
  msgid "Display raw HTML code."
3321
  msgstr "Mostra codice HTML."
3322
 
3323
+ # @ fl-builder
3324
+ #: modules/icon/icon.php:15
3325
+ msgid "Display an icon and optional title."
3326
+ msgstr "Mostra un'icona e un titolo opzionale."
3327
+
3328
  # @ fl-builder
3329
  #: modules/icon-group/icon-group.php:14
3330
  msgid "Icon Group"
3340
  msgid "Add Icon"
3341
  msgstr "Aggiungi icona"
3342
 
 
 
 
 
 
3343
  # @ fl-builder
3344
  #: modules/map/map.php:14
3345
  msgid "Map"
languages/sk_SK.mo CHANGED
Binary file
languages/sk_SK.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
- "POT-Creation-Date: 2015-02-12 10:28-0800\n"
5
- "PO-Revision-Date: 2015-02-12 21:02+0100\n"
6
  "Last-Translator: WebMan - Oliver Juhas <webmandesigneu@gmail.com>\n"
7
  "Language-Team: WebMan Design <webmandesigneu@gmail.com>\n"
8
  "Language: sk_SK\n"
@@ -39,11 +39,11 @@ msgid "Upgrade"
39
  msgstr "Aktualizácia"
40
 
41
  #: classes/class-fl-builder-admin-settings.php:126
42
- #: includes/global-settings.php:67
43
  msgid "Modules"
44
  msgstr "Moduly"
45
 
46
- #: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:44
47
  msgid "Templates"
48
  msgstr "Šablóny"
49
 
@@ -67,23 +67,35 @@ msgid "Branding"
67
  msgstr "Značka"
68
 
69
  #: classes/class-fl-builder-admin-settings.php:150
 
 
 
 
70
  #: includes/admin-settings-uninstall.php:3
71
  #: includes/admin-settings-uninstall.php:15
72
  msgid "Uninstall"
73
  msgstr "Odinštalovať"
74
 
75
- #: classes/class-fl-builder-admin-settings.php:368
76
  msgid "Error! You must have at least one icon set enabled."
77
  msgstr "Chyba! Musíte povoliť aspon jednu sadu ikoniek."
78
 
79
- #: classes/class-fl-builder-admin-settings.php:410
80
  msgid "Error! Could not unzip file."
81
  msgstr "Chyba! Nepodarilo sa rozbalit súbor."
82
 
83
- #: classes/class-fl-builder-admin-settings.php:444
84
  msgid "Error! Please upload an icon set from either Icomoon or Fontello."
85
  msgstr "Chyba! Prosíme, nahrajte sadu ikoniek z Icomoon alebo Fontello."
86
 
 
 
 
 
 
 
 
 
87
  #: classes/class-fl-builder-admin.php:40
88
  #, php-format
89
  msgid ""
@@ -115,11 +127,11 @@ msgid "Upgrade"
115
  msgstr "Aktualizovať"
116
 
117
  #: classes/class-fl-builder-admin.php:202
118
- #: classes/class-fl-builder-model.php:2538
119
  msgid "Page Builder"
120
  msgstr "Editor stránok"
121
 
122
- #: classes/class-fl-builder-model.php:1363
123
  #, php-format
124
  msgctxt "%s stands for the module filename"
125
  msgid ""
@@ -129,7 +141,41 @@ msgstr ""
129
  "Súbor %s.php modulu už existuje! Prosíme, použite predponu v názvoch súborov "
130
  "vlastných modulov aby bola zachovaná kompatibilita s Beaver Builder modulom."
131
 
132
- #: classes/class-fl-builder-model.php:1953
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  #, php-format
134
  msgctxt "%s stands for post/page title."
135
  msgid "Copy of %s"
@@ -159,73 +205,73 @@ msgstr "Miniatúra"
159
  msgid "Page Builder Templates"
160
  msgstr "Šablóny Editora stránok"
161
 
162
- #: classes/class-fl-builder.php:702
163
  #, php-format
164
  msgctxt "Field name to add."
165
  msgid "Add %s"
166
  msgstr "%s &rarr; pridať"
167
 
168
- #: classes/class-fl-builder.php:765 classes/class-fl-builder.php:767
169
  msgctxt "Custom post type label."
170
  msgid "Layout Templates"
171
  msgstr "Šablóny rozloženia"
172
 
173
- #: classes/class-fl-builder.php:766 classes/class-fl-builder.php:768
174
  msgctxt "Custom post type label."
175
  msgid "Layout Template"
176
  msgstr "Šablóna rozloženia"
177
 
178
- #: classes/class-fl-builder.php:769
179
  msgctxt "Custom post type label."
180
  msgid "Add New"
181
  msgstr "Pridať novú"
182
 
183
- #: classes/class-fl-builder.php:770
184
  msgctxt "Custom post type label."
185
  msgid "Add New Layout Template"
186
  msgstr "Pridať novú šablónu rozloženia"
187
 
188
- #: classes/class-fl-builder.php:771
189
  msgctxt "Custom post type label."
190
  msgid "New Layout Template"
191
  msgstr "Nová šablóna rozloženia"
192
 
193
- #: classes/class-fl-builder.php:772
194
  msgctxt "Custom post type label."
195
  msgid "Edit Layout Template"
196
  msgstr "Upraviť šablónu rozloženia"
197
 
198
- #: classes/class-fl-builder.php:773
199
  msgctxt "Custom post type label."
200
  msgid "View Layout Template"
201
  msgstr "Zobraziť šablónu rozloženia"
202
 
203
- #: classes/class-fl-builder.php:774
204
  msgctxt "Custom post type label."
205
  msgid "All Layout Templates"
206
  msgstr "Všetky šablóny rozloženia"
207
 
208
- #: classes/class-fl-builder.php:775
209
  msgctxt "Custom post type label."
210
  msgid "Search Layout Templates"
211
  msgstr "Hľadať šablóny rozloženia"
212
 
213
- #: classes/class-fl-builder.php:776
214
  msgctxt "Custom post type label."
215
  msgid "Parent Layout Templates:"
216
  msgstr "Nadradené šablóny rozloženia:"
217
 
218
- #: classes/class-fl-builder.php:777
219
  msgctxt "Custom post type label."
220
  msgid "No layout templates found."
221
  msgstr "Nenašli sa žiadne šablóny rozloženia."
222
 
223
- #: classes/class-fl-builder.php:778
224
  msgctxt "Custom post type label."
225
  msgid "No layout templates found in Trash."
226
  msgstr "V koši sa nenašli žiadne šablóny rozloženia."
227
 
228
- #: classes/class-fl-builder.php:1143 includes/js-config.php:61
229
  #, php-format
230
  msgctxt "%s stands for module name."
231
  msgid "%s Settings"
@@ -247,6 +293,18 @@ msgctxt "%s stands for custom branded \"Page Builder\" name."
247
  msgid "Launch %s"
248
  msgstr "Spustiť %s"
249
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  #: includes/admin-settings-branding.php:7
251
  msgid "White label the page builder by entering a custom name below."
252
  msgstr "Zmeňte značku editora stránok zadaním vlastného mena, názvu editora."
@@ -287,6 +345,62 @@ msgstr ""
287
  msgid "Save Editing Settings"
288
  msgstr "Uložiť nastavenia editácie"
289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  #: includes/admin-settings-icons.php:3
291
  msgid "Icon Settings"
292
  msgstr "Nastavenia ikoniek"
@@ -462,15 +576,15 @@ msgctxt "Template edit form field label. Template name."
462
  msgid "Name"
463
  msgstr "Názov"
464
 
465
- #: includes/admin-templates-edit.php:12 modules/callout/callout.php:303
466
  #: modules/post-grid/post-grid.php:113
467
  msgid "Image"
468
  msgstr "Obrázok"
469
 
470
  #: includes/admin-templates-edit.php:16 includes/row-settings.php:155
471
- #: includes/template-settings.php:23 modules/callout/callout.php:351
472
- #: modules/callout/callout.php:371
473
- #: modules/content-slider/content-slider.php:466
474
  #: modules/post-grid/post-grid.php:127
475
  msgid "Position"
476
  msgstr "Pozícia"
@@ -481,16 +595,14 @@ msgid "Premium"
481
  msgstr "Prémiová"
482
 
483
  #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
484
- #: includes/global-settings.php:18 includes/global-settings.php:87
485
  #: includes/row-settings.php:307 includes/template-settings.php:31
486
- #: modules/accordion/accordion.php:90 modules/button/button.php:135
487
- #: modules/callout/callout.php:418 modules/callout/callout.php:539
488
- #: modules/content-slider/content-slider.php:203
489
- #: modules/content-slider/content-slider.php:217
490
- #: modules/content-slider/content-slider.php:251
491
- #: modules/content-slider/content-slider.php:260
492
- #: modules/content-slider/content-slider.php:531
493
- #: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
494
  #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
495
  #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
496
  #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
@@ -512,16 +624,14 @@ msgid "No"
512
  msgstr "Nie"
513
 
514
  #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
515
- #: includes/global-settings.php:19 includes/global-settings.php:88
516
  #: includes/row-settings.php:308 includes/template-settings.php:32
517
- #: modules/accordion/accordion.php:89 modules/button/button.php:136
518
- #: modules/callout/callout.php:419 modules/callout/callout.php:540
519
- #: modules/content-slider/content-slider.php:204
520
- #: modules/content-slider/content-slider.php:218
521
- #: modules/content-slider/content-slider.php:252
522
- #: modules/content-slider/content-slider.php:261
523
- #: modules/content-slider/content-slider.php:532
524
- #: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
525
  #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
526
  #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
527
  #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
@@ -588,20 +698,24 @@ msgstr "Upraviť"
588
  msgid "Delete"
589
  msgstr "Odstrániť"
590
 
591
- #: includes/admin-templates.php:40 includes/js-config.php:27
592
  msgid "Do you really want to delete this template?"
593
  msgstr "Naozaj chcete túto šablónu vymazať?"
594
 
595
- #: includes/column-settings.php:4 includes/js-config.php:22
596
  msgid "Column Settings"
597
  msgstr "Nastavenia stĺpca"
598
 
599
  #: includes/column-settings.php:7 includes/module-settings.php:87
600
  #: includes/row-settings.php:9 modules/accordion/accordion.php:45
601
- #: modules/button/button.php:95 modules/callout/callout.php:239
602
- #: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
603
- #: modules/heading/heading.php:69 modules/icon-group/icon-group.php:44
604
- #: modules/icon/icon.php:75 modules/pricing-table/pricing-table.php:43
 
 
 
 
605
  #: modules/pricing-table/pricing-table.php:155
606
  #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
607
  msgid "Style"
@@ -612,55 +726,55 @@ msgid "Column Width"
612
  msgstr "Šírka stĺpca"
613
 
614
  #: includes/column-settings.php:26 includes/row-settings.php:48
615
- #: modules/button/button.php:53 modules/callout/callout.php:223
616
- #: modules/callout/callout.php:476 modules/callout/callout.php:492
617
- #: modules/content-slider/content-slider.php:376
618
- #: modules/content-slider/content-slider.php:610 modules/cta/cta.php:82
619
- #: modules/cta/cta.php:219
620
  msgid "Text"
621
  msgstr "Text"
622
 
623
  #: includes/column-settings.php:30 includes/column-settings.php:43
624
  #: includes/column-settings.php:100 includes/row-settings.php:52
625
- #: includes/row-settings.php:109 includes/row-settings.php:379
626
- #: modules/callout/callout.php:389
627
- #: modules/content-slider/content-slider.php:331
628
  #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
629
  #: modules/separator/separator.php:34
630
  msgid "Color"
631
  msgstr "Farba"
632
 
633
  #: includes/column-settings.php:39 includes/row-settings.php:105
634
- #: modules/button/button.php:102 modules/callout/callout.php:402
635
- #: modules/callout/callout.php:506
636
- #: modules/content-slider/content-slider.php:357
637
- #: modules/content-slider/content-slider.php:624 modules/cta/cta.php:195
638
- #: modules/cta/cta.php:262 modules/icon-group/icon-group.php:64
639
  #: modules/icon/icon.php:95
640
  msgid "Background Color"
641
  msgstr "Farba pozadia"
642
 
643
  #: includes/column-settings.php:51 includes/column-settings.php:108
644
- #: includes/row-settings.php:117 includes/row-settings.php:387
645
  #: modules/separator/separator.php:44
646
  msgid "Opacity"
647
  msgstr "Nepriehľadnosť"
648
 
649
- #: includes/column-settings.php:63 includes/row-settings.php:342
650
  msgid "Border"
651
  msgstr "Okraj"
652
 
653
  #: includes/column-settings.php:67 includes/row-settings.php:65
654
- #: includes/row-settings.php:346 modules/callout/callout.php:472
655
- #: modules/content-slider/content-slider.php:325
656
- #: modules/content-slider/content-slider.php:372
657
- #: modules/content-slider/content-slider.php:590
658
- #: modules/content-slider/content-slider.php:694
659
  #: modules/slideshow/slideshow.php:339
660
  msgid "Type"
661
  msgstr "Typ"
662
 
663
- #: includes/column-settings.php:69 includes/row-settings.php:348
664
  msgid ""
665
  "The type of border to use. Double borders must have a width of at least 3px "
666
  "to render properly."
@@ -668,79 +782,79 @@ msgstr ""
668
  "Typ použitého okraja. Dvojitý okraj musí mať šírku aspoň 3px aby sa zobrazil "
669
  "správne."
670
 
671
- #: includes/column-settings.php:71 includes/row-settings.php:350
672
  msgctxt "Border type."
673
  msgid "None"
674
  msgstr "Žiaden"
675
 
676
- #: includes/column-settings.php:72 includes/row-settings.php:351
677
  #: modules/separator/separator.php:75
678
  msgctxt "Border type."
679
  msgid "Solid"
680
  msgstr "Plný"
681
 
682
- #: includes/column-settings.php:73 includes/row-settings.php:352
683
  #: modules/separator/separator.php:76
684
  msgctxt "Border type."
685
  msgid "Dashed"
686
  msgstr "Prerušovaný"
687
 
688
- #: includes/column-settings.php:74 includes/row-settings.php:353
689
  #: modules/separator/separator.php:77
690
  msgctxt "Border type."
691
  msgid "Dotted"
692
  msgstr "Bodkovaný"
693
 
694
- #: includes/column-settings.php:75 includes/row-settings.php:354
695
  #: modules/separator/separator.php:78
696
  msgctxt "Border type."
697
  msgid "Double"
698
  msgstr "Dvojitý"
699
 
700
- #: includes/column-settings.php:119 includes/row-settings.php:398
701
  msgid "Top Width"
702
  msgstr "Šírka hore"
703
 
704
- #: includes/column-settings.php:131 includes/row-settings.php:410
705
  msgid "Bottom Width"
706
  msgstr "Šírka dole"
707
 
708
- #: includes/column-settings.php:143 includes/row-settings.php:422
709
  msgid "Left Width"
710
  msgstr "Šírka vľavo"
711
 
712
- #: includes/column-settings.php:155 includes/row-settings.php:434
713
  msgid "Right Width"
714
  msgstr "Šírka vpravo"
715
 
716
  #: includes/column-settings.php:170 includes/module-settings.php:6
717
- #: includes/row-settings.php:449 modules/content-slider/content-slider.php:267
718
  msgid "Advanced"
719
  msgstr "Pokročilé"
720
 
721
  #: includes/column-settings.php:173 includes/global-settings.php:41
722
- #: includes/global-settings.php:71 includes/module-settings.php:9
723
- #: includes/row-settings.php:452
724
  msgid "Margins"
725
  msgstr "Odsadenie"
726
 
727
  #: includes/column-settings.php:177 includes/column-settings.php:230
728
- #: includes/module-settings.php:13 includes/row-settings.php:456
729
- #: includes/row-settings.php:509 modules/slideshow/slideshow.php:475
730
  msgid "Top"
731
  msgstr "Hore"
732
 
733
  #: includes/column-settings.php:189 includes/column-settings.php:242
734
- #: includes/module-settings.php:25 includes/row-settings.php:468
735
- #: includes/row-settings.php:521 modules/slideshow/slideshow.php:474
736
  msgid "Bottom"
737
  msgstr "Dole"
738
 
739
  #: includes/column-settings.php:201 includes/column-settings.php:254
740
- #: includes/module-settings.php:37 includes/row-settings.php:480
741
- #: includes/row-settings.php:533 modules/button/button.php:177
742
- #: modules/callout/callout.php:250
743
- #: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
744
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
745
  #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
746
  #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
@@ -748,10 +862,10 @@ msgid "Left"
748
  msgstr "Vľavo"
749
 
750
  #: includes/column-settings.php:213 includes/column-settings.php:266
751
- #: includes/module-settings.php:49 includes/row-settings.php:492
752
- #: includes/row-settings.php:545 modules/button/button.php:178
753
- #: modules/callout/callout.php:251
754
- #: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
755
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
756
  #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
757
  #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
@@ -759,49 +873,49 @@ msgid "Right"
759
  msgstr "Vpravo"
760
 
761
  #: includes/column-settings.php:226 includes/global-settings.php:49
762
- #: includes/row-settings.php:505 modules/button/button.php:191
763
- #: modules/callout/callout.php:567
764
- #: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
765
  msgid "Padding"
766
  msgstr "Vnútorné odsadenie"
767
 
768
- #: includes/column-settings.php:279 includes/global-settings.php:80
769
- #: includes/module-settings.php:62 includes/row-settings.php:558
770
  msgid "Responsive Layout"
771
  msgstr "Responzívne rozloženie"
772
 
773
  #: includes/column-settings.php:283 includes/module-settings.php:66
774
- #: includes/row-settings.php:562 modules/slideshow/slideshow.php:290
775
  msgid "Display"
776
  msgstr "Zobrazenie"
777
 
778
  #: includes/column-settings.php:285 includes/module-settings.php:68
779
- #: includes/row-settings.php:564
780
  msgid "Always"
781
  msgstr "Vždy"
782
 
783
  #: includes/column-settings.php:286 includes/module-settings.php:69
784
- #: includes/row-settings.php:565
785
  msgid "Large Devices Only"
786
  msgstr "Iba na veľkých zariadeniach"
787
 
788
  #: includes/column-settings.php:287 includes/module-settings.php:70
789
- #: includes/row-settings.php:566
790
  msgid "Large &amp; Medium Devices Only"
791
  msgstr "Iba na veľkých a stredných zariadeniach"
792
 
793
  #: includes/column-settings.php:288 includes/module-settings.php:71
794
- #: includes/row-settings.php:567
795
  msgid "Medium Devices Only"
796
  msgstr "Iba na stredných zariadeniach"
797
 
798
  #: includes/column-settings.php:289 includes/module-settings.php:72
799
- #: includes/row-settings.php:568
800
  msgid "Medium &amp; Small Devices Only"
801
  msgstr "Iba na stredných a malých zariadeniach"
802
 
803
  #: includes/column-settings.php:290 includes/module-settings.php:73
804
- #: includes/row-settings.php:569
805
  msgid "Small Devices Only"
806
  msgstr "Iba na malých zariadeniach"
807
 
@@ -819,16 +933,16 @@ msgid "The width of this column on medium devices such as tablets."
819
  msgstr "Šírka tohto stĺpca na stredne veľkých zariadeniach, ako sú tablety."
820
 
821
  #: includes/column-settings.php:302 includes/column-settings.php:330
822
- #: modules/callout/callout.php:281
823
- #: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
824
  #: modules/heading/heading.php:117 modules/heading/heading.php:144
825
  #: modules/heading/heading.php:174
826
  msgid "Default"
827
  msgstr "Prednastavené"
828
 
829
  #: includes/column-settings.php:303 includes/column-settings.php:331
830
- #: modules/button/button.php:151 modules/callout/callout.php:282
831
- #: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
832
  #: modules/heading/heading.php:118 modules/heading/heading.php:145
833
  #: modules/heading/heading.php:175
834
  #: modules/social-buttons/social-buttons.php:74
@@ -852,12 +966,12 @@ msgid "Custom Small Device Width"
852
  msgstr "Vlastná šírka na malých zariadeniach"
853
 
854
  #: includes/column-settings.php:356 includes/module-settings.php:115
855
- #: includes/row-settings.php:579
856
  msgid "CSS Selectors"
857
  msgstr "CSS selektor"
858
 
859
  #: includes/column-settings.php:360 includes/loop-settings.php:27
860
- #: includes/module-settings.php:119 includes/row-settings.php:583
861
  msgid "ID"
862
  msgstr "ID"
863
 
@@ -896,7 +1010,7 @@ msgstr "Zvoliť ikonku"
896
  msgid "Replace"
897
  msgstr "Nahradiť"
898
 
899
- #: includes/field-icon.php:7 includes/js-config.php:53
900
  msgid "Remove"
901
  msgstr "Odstrániť"
902
 
@@ -913,7 +1027,7 @@ msgid "Start typing..."
913
  msgstr "Začnite písať..."
914
 
915
  #: includes/field-link.php:7 includes/icon-selector.php:28
916
- #: includes/js-config.php:18 includes/settings.php:63
917
  #: includes/template-selector.php:102 includes/ui.php:11
918
  msgid "Cancel"
919
  msgstr "Zrušiť"
@@ -938,11 +1052,11 @@ msgstr "Upraviť galériu"
938
  msgid "Add Photos"
939
  msgstr "Pridať obrázky"
940
 
941
- #: includes/field-photo.php:3 includes/js-config.php:58
942
  msgid "Select Photo"
943
  msgstr "Zvoliť obrázok"
944
 
945
- #: includes/field-video.php:3 includes/js-config.php:60
946
  msgid "Select Video"
947
  msgstr "Zvoliť video"
948
 
@@ -952,10 +1066,10 @@ msgstr "Nahradiť video"
952
 
953
  #: includes/global-settings.php:7 includes/template-settings.php:7
954
  #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
955
- #: modules/button/button.php:46 modules/callout/callout.php:207
956
  #: modules/contact-form/contact-form.php:57
957
- #: modules/content-slider/content-slider.php:184
958
- #: modules/content-slider/content-slider.php:308 modules/cta/cta.php:65
959
  #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
960
  #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
961
  #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
@@ -1017,18 +1131,38 @@ msgstr ""
1017
  "Všetky riadky budú prednastavené na túto šírku. Toto nastavenie môžete "
1018
  "nahradiť roztiahnutím na celú šírku v nastaveniach daného riadku."
1019
 
1020
- #: includes/global-settings.php:84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1021
  msgctxt ""
1022
  "General settings form field label. Intended meaning: \"Responsive layout "
1023
  "enabled?\""
1024
  msgid "Enabled"
1025
  msgstr "Povoliť"
1026
 
1027
- #: includes/global-settings.php:98
1028
  msgid "Medium Device Breakpoint"
1029
  msgstr "Zlomový bod pre stredne veľké zariadenia"
1030
 
1031
- #: includes/global-settings.php:103
1032
  msgid ""
1033
  "The browser width at which the layout will adjust for medium devices such as "
1034
  "tablets."
@@ -1036,11 +1170,11 @@ msgstr ""
1036
  "Šírka internetového prehliadača, v ktorej sa rozloženie nastaví do režimu "
1037
  "pre stredne veľké zariadenia, ako sú tablety."
1038
 
1039
- #: includes/global-settings.php:107
1040
  msgid "Small Device Breakpoint"
1041
  msgstr "Zlomový bod pre malé zariadenia"
1042
 
1043
- #: includes/global-settings.php:112
1044
  msgid ""
1045
  "The browser width at which the layout will adjust for small devices such as "
1046
  "phones."
@@ -1053,15 +1187,15 @@ msgctxt "Select option for showing all icon libraries."
1053
  msgid "All Libraries"
1054
  msgstr "Všetky knižnice"
1055
 
1056
- #: includes/js-config.php:17
1057
  msgid "What would you like to do?"
1058
  msgstr "Čo si prajete urobiť?"
1059
 
1060
- #: includes/js-config.php:19
1061
  msgid "Change Template"
1062
  msgstr "Zmeniť šablónu"
1063
 
1064
- #: includes/js-config.php:20
1065
  msgid ""
1066
  "Warning! Changing the template will replace your existing layout. Do you "
1067
  "really want to do this?"
@@ -1069,38 +1203,38 @@ msgstr ""
1069
  "Pozor! Zmenou šablóny nahradíte existujúce rozloženie. Naozaj to chcete "
1070
  "urobiť?"
1071
 
1072
- #: includes/js-config.php:21
1073
  msgid "Column"
1074
  msgstr "Stĺpec"
1075
 
1076
- #: includes/js-config.php:23
1077
  msgid ""
1078
  "Please select either a background layout or content layout before submitting."
1079
  msgstr "Najskôr zvoľte rozloženie pozadia alebo obsahu."
1080
 
1081
- #: includes/js-config.php:24
1082
  msgid "Do you really want to delete this item?"
1083
  msgstr "Naozaj chcete túto položku odstrániť?"
1084
 
1085
- #: includes/js-config.php:25
1086
  msgid ""
1087
  "Do you really want to delete this module? All content data will be "
1088
  "permanently deleted."
1089
  msgstr ""
1090
  "Naozaj chcete tento modul odstrániť? Všetky dáta jeho obsahu budu vymazané."
1091
 
1092
- #: includes/js-config.php:26
1093
  msgid ""
1094
  "Do you really want to delete this row? All content data will be permanently "
1095
  "deleted."
1096
  msgstr ""
1097
  "Naozaj chcete odstrániť tento riadok? Všetok obsah riadku bude vymazaný."
1098
 
1099
- #: includes/js-config.php:28
1100
  msgid "Discard Draft"
1101
  msgstr "Zahodiť koncept"
1102
 
1103
- #: includes/js-config.php:29
1104
  msgid ""
1105
  "Do you really want to discard this draft? All of your changes that are not "
1106
  "published will be lost."
@@ -1108,32 +1242,36 @@ msgstr ""
1108
  "Naozaj chcete zahodiť vytvorený koncept? Stratíte všetky zmeny, ktoré nie sú "
1109
  "publikované."
1110
 
1111
- #: includes/js-config.php:30
 
 
 
 
1112
  msgid "Save Draft"
1113
  msgstr "Uložiť koncept"
1114
 
1115
- #: includes/js-config.php:31
1116
  msgctxt "Duplicate page/post action label."
1117
  msgid "Duplicate"
1118
  msgstr "Duplikovať"
1119
 
1120
- #: includes/js-config.php:32
1121
  msgid "Duplicate This Page"
1122
  msgstr "Duplikovať túto stránku"
1123
 
1124
- #: includes/js-config.php:33
1125
  msgid "Duplicate This Template"
1126
  msgstr "Duplikovať túto šablónu"
1127
 
1128
- #: includes/js-config.php:34
1129
  msgid "Edit Global Settings"
1130
  msgstr "Upraviť globálne nastavenia"
1131
 
1132
- #: includes/js-config.php:35
1133
  msgid "Drop a row layout or module to get started!"
1134
  msgstr "Začnite vložením riadku alebo modulu!"
1135
 
1136
- #: includes/js-config.php:36
1137
  msgid ""
1138
  "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
1139
  "not functioning as expected the cause is most likely this error. Please help "
@@ -1146,114 +1284,282 @@ msgstr ""
1146
  "opätovnej, postupnej aktivácie ostatných modulov pre zistenie, či je problém "
1147
  "spôsobený jedným z týchto modulov."
1148
 
1149
- #: includes/js-config.php:37
1150
  msgid "Full Size"
1151
  msgstr "Pôvodná veľkosť"
1152
 
1153
- #: includes/js-config.php:38
 
 
 
 
 
 
 
 
1154
  msgid "\"{message}\" on line {line} of {file}."
1155
  msgstr "\"{message}\" na riadku {line} súboru {file}."
1156
 
1157
- #: includes/js-config.php:39
1158
  msgid "Insert"
1159
  msgstr "Vložiť"
1160
 
1161
- #: includes/js-config.php:40
1162
  msgid "Large"
1163
  msgstr "Veľké"
1164
 
1165
- #: includes/js-config.php:41
1166
  msgid "Manage Templates"
1167
  msgstr "Správa šablón"
1168
 
1169
- #: includes/js-config.php:42
1170
  msgid "Medium"
1171
  msgstr "Stredné"
1172
 
1173
- #: includes/js-config.php:43
1174
  msgid "Module"
1175
  msgstr "Modul"
1176
 
1177
- #: includes/js-config.php:44
1178
  msgid "Move"
1179
  msgstr "Presunúť"
1180
 
1181
- #: includes/js-config.php:45
1182
  msgid "New Column"
1183
  msgstr "Nový stĺpec"
1184
 
1185
- #: includes/js-config.php:46
1186
  msgid "New Row"
1187
  msgstr "Nový riadok"
1188
 
1189
- #: includes/js-config.php:47
1190
  msgid "No results found."
1191
  msgstr "Nenašli sa žiadne záznamy."
1192
 
1193
- #: includes/js-config.php:48
 
 
 
 
1194
  msgid "OK"
1195
  msgstr "OK"
1196
 
1197
- #: includes/js-config.php:49 modules/photo/photo.php:454
1198
  msgid "Photo Page"
1199
  msgstr "Stránka obrázku"
1200
 
1201
- #: includes/js-config.php:50
1202
  msgid "Photo Selected"
1203
  msgstr "Obrázok bol zvolený"
1204
 
1205
- #: includes/js-config.php:51
1206
  msgid "Photos Selected"
1207
  msgstr "Obrázky boli zvolené"
1208
 
1209
- #: includes/js-config.php:52
1210
  msgid "Publish Changes"
1211
  msgstr "Publikovať zmeny"
1212
 
1213
- #: includes/js-config.php:54
1214
  msgid "Row"
1215
  msgstr "Riadok"
1216
 
1217
- #: includes/js-config.php:55 includes/row-settings.php:6
1218
  msgid "Row Settings"
1219
  msgstr "Nastavenia riadku"
1220
 
1221
- #: includes/js-config.php:56
1222
  msgid "Save Core Template"
1223
  msgstr "Uložiť základnú šablónu"
1224
 
1225
- #: includes/js-config.php:57 includes/ui.php:10
1226
  #: includes/user-template-settings.php:4
1227
  msgid "Save Template"
1228
  msgstr "Uložiť šablónu"
1229
 
1230
- #: includes/js-config.php:59
1231
  msgid "Select Photos"
1232
  msgstr "Zvoliť obrázky"
1233
 
1234
- #: includes/js-config.php:62
 
 
 
 
1235
  msgid "Append New Layout"
1236
  msgstr "Pridať nové rozloženie"
1237
 
1238
- #: includes/js-config.php:63
1239
  msgid "Replace Existing Layout"
1240
  msgstr "Nahradiť existujúce rozloženie"
1241
 
1242
- #: includes/js-config.php:64
1243
  msgid "Template Saved!"
1244
  msgstr "Šablóna bola uložená!"
1245
 
1246
- #: includes/js-config.php:65
1247
  msgid "Thumbnail"
1248
  msgstr "Miniatúra"
1249
 
1250
- #: includes/js-config.php:66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1251
  msgid ""
1252
  "The settings you are currently editing will not be saved if you navigate "
1253
  "away from this page."
1254
  msgstr ""
1255
  "Nastavenia, ktoré práve vykonávate, sa neuložia ak odídete z tejto stránky."
1256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1257
  #: includes/loop-settings.php:19
1258
  msgid "Post Type"
1259
  msgstr "Typ článku"
@@ -1374,14 +1680,14 @@ msgid "Slide Down"
1374
  msgstr "Vkĺznut dole"
1375
 
1376
  #: includes/module-settings.php:102
1377
- #: modules/content-slider/content-slider.php:223
1378
  #: modules/testimonials/testimonials.php:91
1379
  msgid "Delay"
1380
  msgstr "Oneskorenie"
1381
 
1382
  #: includes/module-settings.php:106 includes/row-settings.php:266
1383
- #: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
1384
- #: modules/content-slider/content-slider.php:244
1385
  #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
1386
  #: modules/slideshow/slideshow.php:581
1387
  #: modules/testimonials/testimonials.php:95
@@ -1402,7 +1708,7 @@ msgstr ""
1402
  "Unikátne ID aplikované na HTML tohto modulu. Musí začínať písmenom a "
1403
  "obsahovať iba pomlčky, podtržníky, písmená a čísla. Medzery nie sú povolené."
1404
 
1405
- #: includes/module-settings.php:127 includes/row-settings.php:591
1406
  msgid "Class"
1407
  msgstr "Trieda"
1408
 
@@ -1415,21 +1721,11 @@ msgstr ""
1415
  "Trieda aplikovaná na HTML tohto modulu. Musí začínať písmenom a obsahovať "
1416
  "iba pomlčky, podtržníky, písmená a čísla. Viaceré triedy oddeľte medzerami."
1417
 
1418
- #: includes/row-settings.php:16 modules/button/button.php:146
1419
- #: modules/content-slider/content-slider.php:477
1420
  msgid "Width"
1421
  msgstr "Šírka"
1422
 
1423
- #: includes/row-settings.php:19 includes/row-settings.php:37
1424
- #: includes/row-settings.php:179
1425
- msgid "Fixed"
1426
- msgstr "Pevná"
1427
-
1428
- #: includes/row-settings.php:20 includes/row-settings.php:38
1429
- #: modules/button/button.php:150 modules/callout/callout.php:554
1430
- msgid "Full Width"
1431
- msgstr "Celá šírka"
1432
-
1433
  #: includes/row-settings.php:27
1434
  msgid ""
1435
  "Full width rows span the width of the page from edge to edge. Fixed rows are "
@@ -1456,7 +1752,7 @@ msgstr ""
1456
  msgid "Background"
1457
  msgstr "Pozadie"
1458
 
1459
- #: includes/row-settings.php:68 modules/content-slider/content-slider.php:332
1460
  msgctxt "Background type."
1461
  msgid "None"
1462
  msgstr "Žiaden"
@@ -1486,16 +1782,16 @@ msgctxt "Background type."
1486
  msgid "Parallax"
1487
  msgstr "Paralaxa"
1488
 
1489
- #: includes/row-settings.php:129 modules/content-slider/content-slider.php:353
1490
  msgid "Background Photo"
1491
  msgstr "Obrázok pozadia"
1492
 
1493
  #: includes/row-settings.php:133 includes/row-settings.php:321
1494
- #: modules/callout/callout.php:314 modules/callout/callout.php:330
1495
- #: modules/callout/callout.php:334
1496
- #: modules/content-slider/content-slider.php:329
1497
- #: modules/content-slider/content-slider.php:398
1498
- #: modules/content-slider/content-slider.php:710 modules/photo/photo.php:25
1499
  #: modules/photo/photo.php:392
1500
  msgid "Photo"
1501
  msgstr "Obrázok"
@@ -1564,9 +1860,9 @@ msgstr "Vpravo dole"
1564
  msgid "Center Top"
1565
  msgstr "V strede hore"
1566
 
1567
- #: includes/row-settings.php:165 modules/button/button.php:176
1568
- #: modules/callout/callout.php:249
1569
- #: modules/content-slider/content-slider.php:471 modules/cta/cta.php:124
1570
  #: modules/heading/heading.php:90 modules/heading/heading.php:162
1571
  #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1572
  #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
@@ -1631,7 +1927,7 @@ msgstr ""
1631
  msgid "Background Video"
1632
  msgstr "Video na pozadí"
1633
 
1634
- #: includes/row-settings.php:207 modules/content-slider/content-slider.php:330
1635
  #: modules/video/video.php:19 modules/video/video.php:100
1636
  msgid "Video"
1637
  msgstr "Video"
@@ -1693,7 +1989,7 @@ msgstr "URL kanála"
1693
  msgid "Speed"
1694
  msgstr "Rýchlosť"
1695
 
1696
- #: includes/row-settings.php:273 modules/content-slider/content-slider.php:231
1697
  #: modules/slideshow/slideshow.php:389
1698
  #: modules/testimonials/testimonials.php:99
1699
  msgid "Transition"
@@ -1704,7 +2000,7 @@ msgctxt "Slideshow transition type."
1704
  msgid "None"
1705
  msgstr "Žiaden"
1706
 
1707
- #: includes/row-settings.php:277 modules/content-slider/content-slider.php:235
1708
  #: modules/slideshow/slideshow.php:393
1709
  #: modules/testimonials/testimonials.php:103
1710
  msgid "Fade"
@@ -1746,7 +2042,7 @@ msgstr "Náhodné štvorce"
1746
  msgid "Boxes Grow"
1747
  msgstr "Rastúce štvorce"
1748
 
1749
- #: includes/row-settings.php:294 modules/content-slider/content-slider.php:240
1750
  #: modules/slideshow/slideshow.php:407
1751
  #: modules/testimonials/testimonials.php:108
1752
  msgid "Transition Speed"
@@ -1773,12 +2069,24 @@ msgstr "Stredne"
1773
  msgid "Slow"
1774
  msgstr "Pomaly"
1775
 
1776
- #: includes/row-settings.php:571
 
 
 
 
 
 
 
 
 
 
 
 
1777
  msgid "Choose whether to show or hide this row at different device sizes."
1778
  msgstr ""
1779
  "Zvoľte, či sa má tento riadok zobraziť na zariadeniach rôznych veľkostí."
1780
 
1781
- #: includes/row-settings.php:584
1782
  msgid ""
1783
  "A unique ID that will be applied to this row's HTML. Must start with a "
1784
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
@@ -1786,7 +2094,7 @@ msgstr ""
1786
  "Unikátne ID aplikované na HTML tohto riadka. Musí začínať písmenom a "
1787
  "obsahovať iba pomlčky, podtržníky, písmená a čísla. Medzery nie sú povolené."
1788
 
1789
- #: includes/row-settings.php:592
1790
  msgid ""
1791
  "A class that will be applied to this row's HTML. Must start with a letter "
1792
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
@@ -1855,70 +2163,58 @@ msgstr "Šablóna: %s"
1855
  msgid "Page Builder Demo"
1856
  msgstr "Demo Editora stránok"
1857
 
1858
- #: includes/ui.php:37
1859
  msgid "Buy Now!"
1860
  msgstr "Zakúpiť ihneď!"
1861
 
1862
- #: includes/ui.php:39
1863
  msgid "Upgrade!"
1864
  msgstr "Aktualizovať!"
1865
 
1866
- #: includes/ui.php:41
1867
- msgid "Done"
1868
- msgstr "Hotovo"
1869
-
1870
- #: includes/ui.php:42
1871
  msgid "Tools"
1872
  msgstr "Nástroje"
1873
 
1874
- #: includes/ui.php:46
1875
- msgid "Add Content"
1876
- msgstr "Pridať obsah"
1877
-
1878
- #: includes/ui.php:64
1879
  msgid "Row Layouts"
1880
  msgstr "Stĺpce a riadky"
1881
 
1882
- #: includes/ui.php:68
1883
  msgid "1 Column"
1884
  msgstr "1 stĺpec"
1885
 
1886
- #: includes/ui.php:69
1887
  msgid "2 Columns"
1888
  msgstr "2 stĺpce"
1889
 
1890
- #: includes/ui.php:70
1891
  msgid "3 Columns"
1892
  msgstr "3 stĺpce"
1893
 
1894
- #: includes/ui.php:71
1895
  msgid "4 Columns"
1896
  msgstr "4 stĺpce"
1897
 
1898
- #: includes/ui.php:72
1899
  msgid "5 Columns"
1900
  msgstr "5 stĺpcov"
1901
 
1902
- #: includes/ui.php:73
1903
  msgid "6 Columns"
1904
  msgstr "6 stĺpcov"
1905
 
1906
- #: includes/ui.php:74
1907
  msgid "Left Sidebar"
1908
  msgstr "Bočný panel vľavo"
1909
 
1910
- #: includes/ui.php:75
1911
  msgid "Right Sidebar"
1912
  msgstr "Bočný panel vpravo"
1913
 
1914
- #: includes/ui.php:76
1915
  msgid "Left &amp; Right Sidebar"
1916
  msgstr "Bočný panel vľavo a vpravo"
1917
 
1918
- #: includes/ui.php:85 modules/widget/widget.php:16
1919
- msgid "WordPress Widgets"
1920
- msgstr "WordPress widgety"
1921
-
1922
  #: includes/updater/classes/class-fl-updater.php:107
1923
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
1924
  msgstr "<strong>AKTUALIZÁCIE NEPRÍSTUPNÉ!</strong>"
@@ -1984,20 +2280,6 @@ msgstr "Akordeón"
1984
  msgid "Display a collapsible accordion of items."
1985
  msgstr "Zobrazí rozbaľovací zoznam položiek."
1986
 
1987
- #: modules/accordion/accordion.php:16 modules/button/button.php:16
1988
- #: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
1989
- #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
1990
- #: modules/gallery/gallery.php:16 modules/html/html.php:16
1991
- #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
1992
- #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
1993
- #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
1994
- #: modules/slideshow/slideshow.php:16
1995
- #: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
1996
- #: modules/testimonials/testimonials.php:16
1997
- #: modules/woocommerce/woocommerce.php:18
1998
- msgid "Advanced Modules"
1999
- msgstr "Pokročilé moduly"
2000
-
2001
  #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
2002
  msgid "Items"
2003
  msgstr "Sekcie"
@@ -2059,8 +2341,8 @@ msgstr "Nadpis"
2059
  msgid "Content"
2060
  msgstr "Obsah"
2061
 
2062
- #: modules/button/button.php:14 modules/callout/callout.php:477
2063
- #: modules/content-slider/content-slider.php:595 modules/cta/cta.php:212
2064
  #: modules/pricing-table/pricing-table.php:129
2065
  msgid "Button"
2066
  msgstr "Tlačidlo"
@@ -2069,117 +2351,139 @@ msgstr "Tlačidlo"
2069
  msgid "A simple call to action button."
2070
  msgstr "Jednoduché tlačidlo pre vyvolanie akcie."
2071
 
2072
- #: modules/button/button.php:54 modules/cta/cta.php:220
2073
  msgid "Click Here"
2074
  msgstr "Kliknite sem"
2075
 
2076
- #: modules/button/button.php:62 modules/callout/callout.php:315
2077
- #: modules/callout/callout.php:363 modules/callout/callout.php:367
2078
- #: modules/cta/cta.php:228 modules/icon-group/icon-group.php:34
2079
  #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
2080
  #: modules/icon/icon.php:34
2081
  msgid "Icon"
2082
  msgstr "Ikonka"
2083
 
2084
- #: modules/button/button.php:68 modules/button/button.php:72
2085
- #: modules/callout/callout.php:443 modules/callout/callout.php:447
2086
- #: modules/content-slider/content-slider.php:567
2087
- #: modules/content-slider/content-slider.php:571
2088
- #: modules/content-slider/content-slider.php:594 modules/cta/cta.php:238
2089
  #: modules/heading/heading.php:43 modules/heading/heading.php:47
2090
  #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
2091
  #: modules/slideshow/slideshow.php:343
2092
  msgid "Link"
2093
  msgstr "Odkaz"
2094
 
2095
- #: modules/button/button.php:73
2096
  msgid "http://www.example.com"
2097
  msgstr "http://www.napriklad.com"
2098
 
2099
- #: modules/button/button.php:80 modules/callout/callout.php:455
2100
- #: modules/content-slider/content-slider.php:576 modules/cta/cta.php:245
2101
  #: modules/heading/heading.php:54 modules/icon/icon.php:50
2102
  #: modules/photo/photo.php:478
2103
  msgid "Link Target"
2104
  msgstr "Cieľ odkazu"
2105
 
2106
- #: modules/button/button.php:83 modules/callout/callout.php:458
2107
- #: modules/content-slider/content-slider.php:579 modules/cta/cta.php:248
2108
  #: modules/heading/heading.php:57 modules/icon/icon.php:53
2109
  #: modules/photo/photo.php:481
2110
  msgid "Same Window"
2111
  msgstr "Rovnaké okno"
2112
 
2113
- #: modules/button/button.php:84 modules/callout/callout.php:459
2114
- #: modules/content-slider/content-slider.php:580 modules/cta/cta.php:249
2115
  #: modules/heading/heading.php:58 modules/icon/icon.php:54
2116
  #: modules/photo/photo.php:482
2117
  msgid "New Window"
2118
  msgstr "Nové okno"
2119
 
2120
- #: modules/button/button.php:98 modules/cta/cta.php:185
2121
  #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
2122
  #: modules/icon/icon.php:78
2123
  msgid "Colors"
2124
  msgstr "Farby"
2125
 
2126
- #: modules/button/button.php:108 modules/callout/callout.php:407
2127
- #: modules/callout/callout.php:512
2128
- #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:268
2129
  #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
2130
  msgid "Background Hover Color"
2131
  msgstr "Farba pozadia po prechode myšou"
2132
 
2133
- #: modules/button/button.php:117 modules/callout/callout.php:521
2134
- #: modules/content-slider/content-slider.php:522
2135
- #: modules/content-slider/content-slider.php:635
2136
- #: modules/content-slider/content-slider.php:719 modules/cta/cta.php:189
2137
- #: modules/cta/cta.php:277 modules/heading/heading.php:77
2138
  msgid "Text Color"
2139
  msgstr "Farba textu"
2140
 
2141
- #: modules/button/button.php:123 modules/callout/callout.php:527
2142
- #: modules/content-slider/content-slider.php:641 modules/cta/cta.php:283
2143
  msgid "Text Hover Color"
2144
  msgstr "Farba textu po prechode myšou"
2145
 
2146
- #: modules/button/button.php:132 modules/callout/callout.php:415
2147
- #: modules/callout/callout.php:536
2148
- #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:292
 
 
 
 
 
2149
  #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
2150
  msgid "Gradient"
2151
  msgstr "Gradient"
2152
 
2153
- #: modules/button/button.php:142 modules/callout/callout.php:242
2154
- #: modules/cta/cta.php:102 modules/heading/heading.php:82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2155
  #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
2156
  msgid "Structure"
2157
  msgstr "Štruktúra"
2158
 
2159
- #: modules/button/button.php:149 modules/callout/callout.php:553
2160
  msgctxt "Width."
2161
  msgid "Auto"
2162
  msgstr "Automatická"
2163
 
2164
- #: modules/button/button.php:165
2165
  msgid "Custom Width"
2166
  msgstr "Vlastná šírka"
2167
 
2168
- #: modules/button/button.php:173 modules/cta/cta.php:120
2169
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
2170
  #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
2171
  #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
2172
  msgid "Alignment"
2173
  msgstr "Zarovnanie"
2174
 
2175
- #: modules/button/button.php:183 modules/callout/callout.php:559
2176
- #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:306
2177
  #: modules/heading/heading.php:114 modules/heading/heading.php:171
2178
  msgid "Font Size"
2179
  msgstr "Veľkosť písma"
2180
 
2181
- #: modules/button/button.php:199 modules/callout/callout.php:575
2182
- #: modules/cta/cta.php:322
2183
  msgid "Round Corners"
2184
  msgstr "Zaoblené rohy"
2185
 
@@ -2191,130 +2495,130 @@ msgstr "Promo"
2191
  msgid "A heading and snippet of text with an optional link, icon and image."
2192
  msgstr "Nadpis a text s možnosťou nastavenia ikonky, obrázku a odkazu."
2193
 
2194
- #: modules/callout/callout.php:214
2195
- #: modules/content-slider/content-slider.php:407
2196
- #: modules/content-slider/content-slider.php:422 modules/cta/cta.php:72
2197
  #: modules/heading/heading.php:14 modules/heading/heading.php:33
2198
  #: modules/testimonials/testimonials.php:56
2199
  #: modules/testimonials/testimonials.php:61
2200
  msgid "Heading"
2201
  msgstr "Nadpis"
2202
 
2203
- #: modules/callout/callout.php:246
2204
  msgid "Overall Alignment"
2205
  msgstr "Celkové zarovnanie"
2206
 
2207
- #: modules/callout/callout.php:253
2208
  msgid "The alignment that will apply to all elements within the callout."
2209
  msgstr "Zarovnanie, ktoré sa aplikuje na všetky elementy v tomto promo module."
2210
 
2211
- #: modules/callout/callout.php:261 modules/cta/cta.php:145
2212
  msgid "Heading Structure"
2213
  msgstr "Štruktúra nadpisu"
2214
 
2215
- #: modules/callout/callout.php:265
2216
- #: modules/content-slider/content-slider.php:426 modules/cta/cta.php:149
2217
  msgid "Heading Tag"
2218
  msgstr "HTML tag nadpisu"
2219
 
2220
- #: modules/callout/callout.php:278
2221
- #: modules/content-slider/content-slider.php:439
2222
- #: modules/content-slider/content-slider.php:453 modules/cta/cta.php:162
2223
  #: modules/testimonials/testimonials.php:69
2224
  msgid "Heading Size"
2225
  msgstr "Veľkosť nadpisu"
2226
 
2227
- #: modules/callout/callout.php:292 modules/cta/cta.php:176
2228
  msgid "Heading Custom Size"
2229
  msgstr "Vlastná veľkosť nadpisu"
2230
 
2231
- #: modules/callout/callout.php:310
2232
  msgid "Image Type"
2233
  msgstr "Typ obrázku"
2234
 
2235
- #: modules/callout/callout.php:313
2236
  msgctxt "Image type."
2237
  msgid "None"
2238
  msgstr "Žiadny"
2239
 
2240
- #: modules/callout/callout.php:338 modules/photo/photo.php:401
2241
  #: modules/slideshow/slideshow.php:312
2242
  msgid "Crop"
2243
  msgstr "Orezanie"
2244
 
2245
- #: modules/callout/callout.php:341
2246
  msgctxt "Crop"
2247
  msgid "None"
2248
  msgstr "Žiadne"
2249
 
2250
- #: modules/callout/callout.php:342 modules/photo/photo.php:405
2251
  msgid "Landscape"
2252
  msgstr "Krajinka"
2253
 
2254
- #: modules/callout/callout.php:343 modules/photo/photo.php:406
2255
  msgid "Panorama"
2256
  msgstr "Panoráma"
2257
 
2258
- #: modules/callout/callout.php:344 modules/photo/photo.php:407
2259
  msgid "Portrait"
2260
  msgstr "Portrét"
2261
 
2262
- #: modules/callout/callout.php:345 modules/photo/photo.php:408
2263
  msgid "Square"
2264
  msgstr "Štvorec"
2265
 
2266
- #: modules/callout/callout.php:346 modules/photo/photo.php:409
2267
  msgid "Circle"
2268
  msgstr "Kruh"
2269
 
2270
- #: modules/callout/callout.php:354 modules/callout/callout.php:374
2271
  msgid "Above Heading"
2272
  msgstr "Nad nadpisom"
2273
 
2274
- #: modules/callout/callout.php:355 modules/callout/callout.php:375
2275
  msgid "Below Heading"
2276
  msgstr "Pod nadpisom"
2277
 
2278
- #: modules/callout/callout.php:356 modules/callout/callout.php:378
2279
  msgid "Left of Text and Heading"
2280
  msgstr "Vľavo od nadpisu a textu"
2281
 
2282
- #: modules/callout/callout.php:357 modules/callout/callout.php:379
2283
  msgid "Right of Text and Heading"
2284
  msgstr "Vpravo od nadpisu a textu"
2285
 
2286
- #: modules/callout/callout.php:376
2287
  msgid "Left of Heading"
2288
  msgstr "Vľavo od nadpisu"
2289
 
2290
- #: modules/callout/callout.php:377
2291
  msgid "Right of Heading"
2292
  msgstr "Vpravo od nadpisu"
2293
 
2294
- #: modules/callout/callout.php:385
2295
  msgid "Icon Colors"
2296
  msgstr "Farba ikonky"
2297
 
2298
- #: modules/callout/callout.php:394 modules/icon-group/icon-group.php:56
2299
  #: modules/icon/icon.php:87
2300
  msgid "Hover Color"
2301
  msgstr "Farba po prechode myšou"
2302
 
2303
- #: modules/callout/callout.php:425
2304
  msgid "Icon Structure"
2305
  msgstr "Štruktúra ikonky"
2306
 
2307
- #: modules/callout/callout.php:429 modules/icon-group/icon-group.php:91
2308
  #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
2309
  msgid "Size"
2310
  msgstr "Veľkosť"
2311
 
2312
- #: modules/callout/callout.php:440
2313
- #: modules/content-slider/content-slider.php:564
2314
  msgid "Call To Action"
2315
  msgstr "Výzva k akcii"
2316
 
2317
- #: modules/callout/callout.php:448
2318
  msgid ""
2319
  "The link applies to the entire module. If choosing a call to action type "
2320
  "below, this link will also be used for the text or button."
@@ -2322,33 +2626,38 @@ msgstr ""
2322
  "Odkaz sa aplikuje na celý modul. Ak určíte typ výzvy k akcii, tento odkaz sa "
2323
  "použije aj na text alebo tlačidlo."
2324
 
2325
- #: modules/callout/callout.php:468
2326
- #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:14
2327
  msgid "Call to Action"
2328
  msgstr "Výzva k akcii"
2329
 
2330
- #: modules/callout/callout.php:475
2331
- #: modules/content-slider/content-slider.php:593
2332
  msgctxt "Call to action."
2333
  msgid "None"
2334
  msgstr "Žiadna"
2335
 
2336
- #: modules/callout/callout.php:496
2337
- #: modules/content-slider/content-slider.php:614
2338
  msgid "Button Icon"
2339
  msgstr "Ikonka tlačidla"
2340
 
2341
- #: modules/callout/callout.php:502
2342
- #: modules/content-slider/content-slider.php:620 modules/cta/cta.php:258
2343
  msgid "Button Colors"
2344
  msgstr "Farba tlačidla"
2345
 
2346
- #: modules/callout/callout.php:546
2347
- #: modules/content-slider/content-slider.php:656 modules/cta/cta.php:302
 
 
 
 
 
2348
  msgid "Button Structure"
2349
  msgstr "Štruktúra tlačidla"
2350
 
2351
- #: modules/callout/callout.php:550
2352
  msgid "Button Width"
2353
  msgstr "Šírka tlačidla"
2354
 
@@ -2433,12 +2742,12 @@ msgstr "Prezentácia obsahu"
2433
  msgid "Displays multiple slides with an optional heading and call to action."
2434
  msgstr "Zobrazí viacero snímkov s nepovinným nadpisom a výzvou k akcii."
2435
 
2436
- #: modules/content-slider/content-slider.php:191 modules/map/map.php:41
2437
  #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
2438
  msgid "Height"
2439
  msgstr "Výška"
2440
 
2441
- #: modules/content-slider/content-slider.php:196
2442
  msgid ""
2443
  "This setting is the minimum height of the content slider. Content will "
2444
  "expand the height automatically."
@@ -2446,80 +2755,80 @@ msgstr ""
2446
  "Nastavte minimálnu výšku prezentácie obsahu. Ak je obsah prezentácie vyšší, "
2447
  "automaticky sa výška zväčší."
2448
 
2449
- #: modules/content-slider/content-slider.php:200
2450
  #: modules/slideshow/slideshow.php:373
2451
  #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
2452
  msgid "Auto Play"
2453
  msgstr "Automatické prehrávanie"
2454
 
2455
- #: modules/content-slider/content-slider.php:214
2456
  msgid "Show Play/Pause"
2457
  msgstr "Zobraziť tlačidlo prehrať/pauza"
2458
 
2459
- #: modules/content-slider/content-slider.php:234
2460
  #: modules/testimonials/testimonials.php:102
2461
  msgctxt "Transition type."
2462
  msgid "Slide"
2463
  msgstr "Vkĺznutie"
2464
 
2465
- #: modules/content-slider/content-slider.php:248
2466
  #: modules/testimonials/testimonials.php:121
2467
  msgid "Show Arrows"
2468
  msgstr "Zobraziť šípky"
2469
 
2470
- #: modules/content-slider/content-slider.php:257
2471
  #: modules/testimonials/testimonials.php:151
2472
  msgid "Show Dots"
2473
  msgstr "Zobraziť bodky"
2474
 
2475
- #: modules/content-slider/content-slider.php:271
2476
  msgid "Max Content Width"
2477
  msgstr "Maximálna šírka obsahu"
2478
 
2479
- #: modules/content-slider/content-slider.php:276
2480
  msgid "The max width that the content area will be within your slides."
2481
  msgstr "Maximálna šírka obsahu v snímkoch."
2482
 
2483
- #: modules/content-slider/content-slider.php:283
2484
  msgid "Slides"
2485
  msgstr "Snímky"
2486
 
2487
- #: modules/content-slider/content-slider.php:290
2488
  msgid "Slide"
2489
  msgstr "Snímok"
2490
 
2491
- #: modules/content-slider/content-slider.php:305
2492
  msgid "Slide Settings"
2493
  msgstr "Nastavenia snímku"
2494
 
2495
- #: modules/content-slider/content-slider.php:315
2496
  msgid "Slide Label"
2497
  msgstr "Nadpis snímku"
2498
 
2499
- #: modules/content-slider/content-slider.php:316
2500
  msgid ""
2501
  "A label to identify this slide on the Slides tab of the Content Slider "
2502
  "settings."
2503
  msgstr ""
2504
  "Názov, ktorým tento snímok identifikujete v nastaveniach Prezentácie obsahu"
2505
 
2506
- #: modules/content-slider/content-slider.php:321
2507
  msgid "Background Layout"
2508
  msgstr "Rozloženie pozadia"
2509
 
2510
- #: modules/content-slider/content-slider.php:327
2511
  msgid "This setting is for the entire background of your slide."
2512
  msgstr "Toto nastavenie sa aplikuje na celkové pozadie snímku."
2513
 
2514
- #: modules/content-slider/content-slider.php:362
2515
  msgid "Background Video Code"
2516
  msgstr "Video kód pozadia"
2517
 
2518
- #: modules/content-slider/content-slider.php:368
2519
  msgid "Content Layout"
2520
  msgstr "Rozloženie obsahu"
2521
 
2522
- #: modules/content-slider/content-slider.php:374
2523
  msgid ""
2524
  "This allows you to add content over or in addition to the background "
2525
  "selection above. The location of the content layout can be selected in the "
@@ -2528,28 +2837,28 @@ msgstr ""
2528
  "Toto nastavenie umožní pridať obsah nad pozadie nastavené vyššie. Pozíciu "
2529
  "obsahu nastavíte na záložke štýlu."
2530
 
2531
- #: modules/content-slider/content-slider.php:377
2532
  msgid "Text &amp; Photo"
2533
  msgstr "Text a obrázok"
2534
 
2535
- #: modules/content-slider/content-slider.php:378
2536
  msgid "Text &amp; Video"
2537
  msgstr "Text a video"
2538
 
2539
- #: modules/content-slider/content-slider.php:379
2540
  msgctxt "Content type."
2541
  msgid "None"
2542
  msgstr "Žiadny"
2543
 
2544
- #: modules/content-slider/content-slider.php:402 modules/video/video.php:132
2545
  msgid "Video Embed Code"
2546
  msgstr "Kód vloženého videa"
2547
 
2548
- #: modules/content-slider/content-slider.php:462
2549
  msgid "Text Position"
2550
  msgstr "Pozícia textu"
2551
 
2552
- #: modules/content-slider/content-slider.php:468
2553
  msgid ""
2554
  "The position will move the content layout selections left, right or center "
2555
  "over the background of the slide."
@@ -2557,49 +2866,49 @@ msgstr ""
2557
  "Pozíciou nastavíte, či sa obsah zobrazí vľavo, vpravo alebo v strede nad "
2558
  "pozadím snímku."
2559
 
2560
- #: modules/content-slider/content-slider.php:485
2561
  msgid "Top Margin"
2562
  msgstr "Odsadenie zhora"
2563
 
2564
- #: modules/content-slider/content-slider.php:493
2565
  msgid "Bottom Margin"
2566
  msgstr "Odsadenie zdola"
2567
 
2568
- #: modules/content-slider/content-slider.php:501
2569
  msgid "Left Margin"
2570
  msgstr "Odsadenie zľava"
2571
 
2572
- #: modules/content-slider/content-slider.php:509
2573
  msgid "Right Margin"
2574
  msgstr "Odsadenie zprava"
2575
 
2576
- #: modules/content-slider/content-slider.php:518
2577
  msgid "Text Colors"
2578
  msgstr "Farby textu"
2579
 
2580
- #: modules/content-slider/content-slider.php:528
2581
  msgid "Text Shadow"
2582
  msgstr "Tieň textu"
2583
 
2584
- #: modules/content-slider/content-slider.php:537
2585
- #: modules/content-slider/content-slider.php:725
2586
  msgid "Text Background Color"
2587
  msgstr "Farba pozadia textu"
2588
 
2589
- #: modules/content-slider/content-slider.php:538
2590
  msgid ""
2591
  "The color applies to the overlay behind text over the background selections."
2592
  msgstr "Farba sa aplikuje na prekrytie snímku textom."
2593
 
2594
- #: modules/content-slider/content-slider.php:543
2595
  msgid "Text Background Opacity"
2596
  msgstr "Nepriehľadnosť pozadia textu"
2597
 
2598
- #: modules/content-slider/content-slider.php:551
2599
  msgid "Text Background Height"
2600
  msgstr "Výška pozadia textu"
2601
 
2602
- #: modules/content-slider/content-slider.php:553
2603
  msgid ""
2604
  "Auto will allow the overlay to fit however long the text content is. 100% "
2605
  "will fit the overlay to the top and bottom of the slide."
@@ -2607,12 +2916,12 @@ msgstr ""
2607
  "Automatické nastavenie prispôsobí prekrytie dĺžke textu obsahu. 100% "
2608
  "natiahne prekrytie od vrchu po spodok snímky."
2609
 
2610
- #: modules/content-slider/content-slider.php:555
2611
  msgctxt "Background height."
2612
  msgid "Auto"
2613
  msgstr "Automatická"
2614
 
2615
- #: modules/content-slider/content-slider.php:572
2616
  msgid ""
2617
  "The link applies to the entire slide. If choosing a call to action type "
2618
  "below, this link will also be used for the text or button."
@@ -2620,20 +2929,20 @@ msgstr ""
2620
  "Odkaz sa aplikuje na celý snímok. Ak zvolíte výzvu k akcii, tento odkaz sa "
2621
  "taktiež použije na text alebo tlačidlo."
2622
 
2623
- #: modules/content-slider/content-slider.php:676
2624
  msgid "Border Radius"
2625
  msgstr "Polomer okrajov"
2626
 
2627
- #: modules/content-slider/content-slider.php:687
2628
  msgctxt "Module settings form tab. Display on mobile devices."
2629
  msgid "Mobile"
2630
  msgstr "Mobilné zobrazenie"
2631
 
2632
- #: modules/content-slider/content-slider.php:690
2633
  msgid "Mobile Photo"
2634
  msgstr "Obrázok pre mobilné zariadenia"
2635
 
2636
- #: modules/content-slider/content-slider.php:696
2637
  msgid ""
2638
  "You can choose a different photo that the slide will change to on mobile "
2639
  "devices or no photo if desired."
@@ -2641,19 +2950,19 @@ msgstr ""
2641
  "Môžete zvoliť zobrazenie odlišného obrázku na mobilných zariadeniach, alebo "
2642
  "obrázok odstrániť."
2643
 
2644
- #: modules/content-slider/content-slider.php:698
2645
  msgid "Use Main Photo"
2646
  msgstr "Použiť hlavný obrázok"
2647
 
2648
- #: modules/content-slider/content-slider.php:699
2649
  msgid "Choose Another Photo"
2650
  msgstr "Zvoliť odlišný obrázok"
2651
 
2652
- #: modules/content-slider/content-slider.php:700
2653
  msgid "No Photo"
2654
  msgstr "Žiaden obrázok"
2655
 
2656
- #: modules/content-slider/content-slider.php:715
2657
  msgid "Mobile Text Colors"
2658
  msgstr "Farba textu na mobilných zariadeniach"
2659
 
@@ -2661,38 +2970,34 @@ msgstr "Farba textu na mobilných zariadeniach"
2661
  msgid "Display a heading, subheading and a button."
2662
  msgstr "Zobrazí nadpis, podnadpis a tlačidlo."
2663
 
2664
- #: modules/cta/cta.php:73
2665
  msgid "Ready to find out more?"
2666
  msgstr "Ste pripravení dozvedieť sa viac?"
2667
 
2668
- #: modules/cta/cta.php:88
2669
  msgid "Drop us a line today for a free quote!"
2670
  msgstr "Napíšte nám ešte dnes pre bezplatnú konzultáciu!"
2671
 
2672
- #: modules/cta/cta.php:106 modules/gallery/gallery.php:220
2673
  #: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
2674
  #: modules/testimonials/testimonials.php:37
2675
  #: modules/woocommerce/woocommerce.php:57
2676
  msgid "Layout"
2677
  msgstr "Rozloženie"
2678
 
2679
- #: modules/cta/cta.php:109
2680
  msgid "Inline"
2681
  msgstr "V jednom riadku"
2682
 
2683
- #: modules/cta/cta.php:110
2684
  msgid "Stacked"
2685
  msgstr "Naskladané"
2686
 
2687
- #: modules/cta/cta.php:130 modules/icon-group/icon-group.php:99
2688
  msgid "Spacing"
2689
  msgstr "Rozostupy"
2690
 
2691
- #: modules/cta/cta.php:201
2692
- msgid "Background Opacity"
2693
- msgstr "Nepriehľadnosť pozadia"
2694
-
2695
- #: modules/cta/cta.php:234
2696
  msgid "Button Link"
2697
  msgstr "Odkaz tlačidla"
2698
 
@@ -2783,12 +3088,6 @@ msgstr "Odkaz na obrázok"
2783
  msgid "Display a title/page heading."
2784
  msgstr "Zobraziť nadpis stránky"
2785
 
2786
- #: modules/heading/heading.php:16 modules/photo/photo.php:27
2787
- #: modules/rich-text/rich-text.php:16 modules/separator/separator.php:16
2788
- #: modules/video/video.php:21
2789
- msgid "Basic Modules"
2790
- msgstr "Základné moduly"
2791
-
2792
  #: modules/heading/heading.php:101
2793
  msgid "HTML Tag"
2794
  msgstr "HTML tag"
@@ -3049,10 +3348,6 @@ msgstr ""
3049
  "Použite toto nastavenie pre normalizáciu výšky boxíkov, ak obsahujú rôzny "
3050
  "počet vlastností."
3051
 
3052
- #: modules/pricing-table/pricing-table.php:67
3053
- msgid "Border Size"
3054
- msgstr "Veľkosť okraja"
3055
-
3056
  #: modules/pricing-table/pricing-table.php:70
3057
  msgctxt "Border size."
3058
  msgid "Wide"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "POT-Creation-Date: 2015-03-01 14:02-0800\n"
5
+ "PO-Revision-Date: 2015-03-02 07:49+0100\n"
6
  "Last-Translator: WebMan - Oliver Juhas <webmandesigneu@gmail.com>\n"
7
  "Language-Team: WebMan Design <webmandesigneu@gmail.com>\n"
8
  "Language: sk_SK\n"
39
  msgstr "Aktualizácia"
40
 
41
  #: classes/class-fl-builder-admin-settings.php:126
42
+ #: includes/global-settings.php:90
43
  msgid "Modules"
44
  msgstr "Moduly"
45
 
46
+ #: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:47
47
  msgid "Templates"
48
  msgstr "Šablóny"
49
 
67
  msgstr "Značka"
68
 
69
  #: classes/class-fl-builder-admin-settings.php:150
70
+ msgid "Help Button"
71
+ msgstr "Tlačidlo pomoci"
72
+
73
+ #: classes/class-fl-builder-admin-settings.php:154
74
  #: includes/admin-settings-uninstall.php:3
75
  #: includes/admin-settings-uninstall.php:15
76
  msgid "Uninstall"
77
  msgstr "Odinštalovať"
78
 
79
+ #: classes/class-fl-builder-admin-settings.php:376
80
  msgid "Error! You must have at least one icon set enabled."
81
  msgstr "Chyba! Musíte povoliť aspon jednu sadu ikoniek."
82
 
83
+ #: classes/class-fl-builder-admin-settings.php:418
84
  msgid "Error! Could not unzip file."
85
  msgstr "Chyba! Nepodarilo sa rozbalit súbor."
86
 
87
+ #: classes/class-fl-builder-admin-settings.php:452
88
  msgid "Error! Please upload an icon set from either Icomoon or Fontello."
89
  msgstr "Chyba! Prosíme, nahrajte sadu ikoniek z Icomoon alebo Fontello."
90
 
91
+ #: classes/class-fl-builder-admin-settings.php:566
92
+ msgid "Error! Please enter an iframe for the video embed code."
93
+ msgstr "Chyba! Prosíme, zadajte IFRAME pre vložené video."
94
+
95
+ #: classes/class-fl-builder-admin-settings.php:584
96
+ msgid "Error! You must have at least one feature of the help button enabled."
97
+ msgstr "Chyba! Je nutné aktivovať aspoň jednu položku tlačidla pomoci."
98
+
99
  #: classes/class-fl-builder-admin.php:40
100
  #, php-format
101
  msgid ""
127
  msgstr "Aktualizovať"
128
 
129
  #: classes/class-fl-builder-admin.php:202
130
+ #: classes/class-fl-builder-model.php:2594
131
  msgid "Page Builder"
132
  msgstr "Editor stránok"
133
 
134
+ #: classes/class-fl-builder-model.php:1385
135
  #, php-format
136
  msgctxt "%s stands for the module filename"
137
  msgid ""
141
  "Súbor %s.php modulu už existuje! Prosíme, použite predponu v názvoch súborov "
142
  "vlastných modulov aby bola zachovaná kompatibilita s Beaver Builder modulom."
143
 
144
+ #: classes/class-fl-builder-model.php:1443
145
+ #: classes/class-fl-builder-model.php:1497 modules/heading/heading.php:16
146
+ #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
147
+ #: modules/separator/separator.php:16 modules/video/video.php:21
148
+ msgid "Basic Modules"
149
+ msgstr "Základné moduly"
150
+
151
+ #: classes/class-fl-builder-model.php:1444
152
+ #: classes/class-fl-builder-model.php:1498 modules/accordion/accordion.php:16
153
+ #: modules/button/button.php:16 modules/callout/callout.php:16
154
+ #: modules/contact-form/contact-form.php:16
155
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
156
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
157
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
158
+ #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
159
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
160
+ #: modules/slideshow/slideshow.php:16
161
+ #: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
162
+ #: modules/testimonials/testimonials.php:16
163
+ #: modules/woocommerce/woocommerce.php:18
164
+ msgid "Advanced Modules"
165
+ msgstr "Pokročilé moduly"
166
+
167
+ #: classes/class-fl-builder-model.php:1445
168
+ #: classes/class-fl-builder-model.php:1499
169
+ msgid "Other Modules"
170
+ msgstr "Ostatné moduly"
171
+
172
+ #: classes/class-fl-builder-model.php:1446
173
+ #: classes/class-fl-builder-model.php:1500 includes/ui.php:88
174
+ #: modules/widget/widget.php:16
175
+ msgid "WordPress Widgets"
176
+ msgstr "WordPress widgety"
177
+
178
+ #: classes/class-fl-builder-model.php:2009
179
  #, php-format
180
  msgctxt "%s stands for post/page title."
181
  msgid "Copy of %s"
205
  msgid "Page Builder Templates"
206
  msgstr "Šablóny Editora stránok"
207
 
208
+ #: classes/class-fl-builder.php:709
209
  #, php-format
210
  msgctxt "Field name to add."
211
  msgid "Add %s"
212
  msgstr "%s &rarr; pridať"
213
 
214
+ #: classes/class-fl-builder.php:772 classes/class-fl-builder.php:774
215
  msgctxt "Custom post type label."
216
  msgid "Layout Templates"
217
  msgstr "Šablóny rozloženia"
218
 
219
+ #: classes/class-fl-builder.php:773 classes/class-fl-builder.php:775
220
  msgctxt "Custom post type label."
221
  msgid "Layout Template"
222
  msgstr "Šablóna rozloženia"
223
 
224
+ #: classes/class-fl-builder.php:776
225
  msgctxt "Custom post type label."
226
  msgid "Add New"
227
  msgstr "Pridať novú"
228
 
229
+ #: classes/class-fl-builder.php:777
230
  msgctxt "Custom post type label."
231
  msgid "Add New Layout Template"
232
  msgstr "Pridať novú šablónu rozloženia"
233
 
234
+ #: classes/class-fl-builder.php:778
235
  msgctxt "Custom post type label."
236
  msgid "New Layout Template"
237
  msgstr "Nová šablóna rozloženia"
238
 
239
+ #: classes/class-fl-builder.php:779
240
  msgctxt "Custom post type label."
241
  msgid "Edit Layout Template"
242
  msgstr "Upraviť šablónu rozloženia"
243
 
244
+ #: classes/class-fl-builder.php:780
245
  msgctxt "Custom post type label."
246
  msgid "View Layout Template"
247
  msgstr "Zobraziť šablónu rozloženia"
248
 
249
+ #: classes/class-fl-builder.php:781
250
  msgctxt "Custom post type label."
251
  msgid "All Layout Templates"
252
  msgstr "Všetky šablóny rozloženia"
253
 
254
+ #: classes/class-fl-builder.php:782
255
  msgctxt "Custom post type label."
256
  msgid "Search Layout Templates"
257
  msgstr "Hľadať šablóny rozloženia"
258
 
259
+ #: classes/class-fl-builder.php:783
260
  msgctxt "Custom post type label."
261
  msgid "Parent Layout Templates:"
262
  msgstr "Nadradené šablóny rozloženia:"
263
 
264
+ #: classes/class-fl-builder.php:784
265
  msgctxt "Custom post type label."
266
  msgid "No layout templates found."
267
  msgstr "Nenašli sa žiadne šablóny rozloženia."
268
 
269
+ #: classes/class-fl-builder.php:785
270
  msgctxt "Custom post type label."
271
  msgid "No layout templates found in Trash."
272
  msgstr "V koši sa nenašli žiadne šablóny rozloženia."
273
 
274
+ #: classes/class-fl-builder.php:1150 includes/js-config.php:66
275
  #, php-format
276
  msgctxt "%s stands for module name."
277
  msgid "%s Settings"
293
  msgid "Launch %s"
294
  msgstr "Spustiť %s"
295
 
296
+ #: includes/admin-posts.php:15
297
+ #, php-format
298
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
299
+ msgid ""
300
+ "Switching to Text Editor mode will disable your %s layout until it is "
301
+ "enabled again. Any edits made while in Text Editor mode will not be made on "
302
+ "your %s layout. Do you want to continue?"
303
+ msgstr ""
304
+ "Prepnutím do režimu textového editora vypnete rozloženie %s, pokým ho znovu "
305
+ "neaktivujete. Akékoľve zmeny vykonané v režime textového editora sa "
306
+ "neaplikujú na rozloženie %s. Prajete si pokračovať?"
307
+
308
  #: includes/admin-settings-branding.php:7
309
  msgid "White label the page builder by entering a custom name below."
310
  msgstr "Zmeňte značku editora stránok zadaním vlastného mena, názvu editora."
345
  msgid "Save Editing Settings"
346
  msgstr "Uložiť nastavenia editácie"
347
 
348
+ #: includes/admin-settings-help-button.php:8
349
+ msgid "Help Button Settings"
350
+ msgstr "Nastavenia tlačidla pomoci"
351
+
352
+ #: includes/admin-settings-help-button.php:17
353
+ msgid "Enable Help Button"
354
+ msgstr "Povoliť tlačidlo pomoci"
355
+
356
+ #: includes/admin-settings-help-button.php:23
357
+ msgid "Help Tour"
358
+ msgstr "Pomocný sprievodca"
359
+
360
+ #: includes/admin-settings-help-button.php:27
361
+ msgid "Enable Help Tour"
362
+ msgstr "Povoliť pomocného sprievodcu"
363
+
364
+ #: includes/admin-settings-help-button.php:31
365
+ msgid "Help Video"
366
+ msgstr "Pomocné video"
367
+
368
+ #: includes/admin-settings-help-button.php:35
369
+ msgid "Enable Help Video"
370
+ msgstr "Povoliť pomocné video"
371
+
372
+ #: includes/admin-settings-help-button.php:39
373
+ msgid "Help Video Embed Code"
374
+ msgstr "Kód vloženého pomocného videa"
375
+
376
+ #: includes/admin-settings-help-button.php:45
377
+ msgid "Knowledge Base"
378
+ msgstr "Databáza poznatkov"
379
+
380
+ #: includes/admin-settings-help-button.php:49
381
+ msgid "Enable Knowledge Base"
382
+ msgstr "Povoliť databázku poznatkov"
383
+
384
+ #: includes/admin-settings-help-button.php:53
385
+ msgid "Knowledge Base URL"
386
+ msgstr "URL databázy poznatkov"
387
+
388
+ #: includes/admin-settings-help-button.php:59
389
+ msgid "Forums"
390
+ msgstr "Fóra"
391
+
392
+ #: includes/admin-settings-help-button.php:63
393
+ msgid "Enable Forums"
394
+ msgstr "Povoliť fóra"
395
+
396
+ #: includes/admin-settings-help-button.php:67
397
+ msgid "Forums URL"
398
+ msgstr "URL fór"
399
+
400
+ #: includes/admin-settings-help-button.php:77
401
+ msgid "Save Help Button Settings"
402
+ msgstr "Uložiť nastavenia tlačidla pomoci"
403
+
404
  #: includes/admin-settings-icons.php:3
405
  msgid "Icon Settings"
406
  msgstr "Nastavenia ikoniek"
576
  msgid "Name"
577
  msgstr "Názov"
578
 
579
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:305
580
  #: modules/post-grid/post-grid.php:113
581
  msgid "Image"
582
  msgstr "Obrázok"
583
 
584
  #: includes/admin-templates-edit.php:16 includes/row-settings.php:155
585
+ #: includes/template-settings.php:23 modules/callout/callout.php:353
586
+ #: modules/callout/callout.php:373
587
+ #: modules/content-slider/content-slider.php:472
588
  #: modules/post-grid/post-grid.php:127
589
  msgid "Position"
590
  msgstr "Pozícia"
595
  msgstr "Prémiová"
596
 
597
  #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
598
+ #: includes/global-settings.php:18 includes/global-settings.php:110
599
  #: includes/row-settings.php:307 includes/template-settings.php:31
600
+ #: modules/accordion/accordion.php:90 modules/callout/callout.php:420
601
+ #: modules/content-slider/content-slider.php:209
602
+ #: modules/content-slider/content-slider.php:223
603
+ #: modules/content-slider/content-slider.php:257
604
+ #: modules/content-slider/content-slider.php:266
605
+ #: modules/content-slider/content-slider.php:537
 
 
606
  #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
607
  #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
608
  #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
624
  msgstr "Nie"
625
 
626
  #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
627
+ #: includes/global-settings.php:19 includes/global-settings.php:111
628
  #: includes/row-settings.php:308 includes/template-settings.php:32
629
+ #: modules/accordion/accordion.php:89 modules/callout/callout.php:421
630
+ #: modules/content-slider/content-slider.php:210
631
+ #: modules/content-slider/content-slider.php:224
632
+ #: modules/content-slider/content-slider.php:258
633
+ #: modules/content-slider/content-slider.php:267
634
+ #: modules/content-slider/content-slider.php:538
 
 
635
  #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
636
  #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
637
  #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
698
  msgid "Delete"
699
  msgstr "Odstrániť"
700
 
701
+ #: includes/admin-templates.php:40 includes/js-config.php:28
702
  msgid "Do you really want to delete this template?"
703
  msgstr "Naozaj chcete túto šablónu vymazať?"
704
 
705
+ #: includes/column-settings.php:4 includes/js-config.php:23
706
  msgid "Column Settings"
707
  msgstr "Nastavenia stĺpca"
708
 
709
  #: includes/column-settings.php:7 includes/module-settings.php:87
710
  #: includes/row-settings.php:9 modules/accordion/accordion.php:45
711
+ #: modules/button/button.php:108 modules/button/button.php:146
712
+ #: modules/button/button.php:150 modules/callout/callout.php:241
713
+ #: modules/callout/callout.php:543
714
+ #: modules/content-slider/content-slider.php:425
715
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
716
+ #: modules/cta/cta.php:299 modules/heading/heading.php:69
717
+ #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
718
+ #: modules/pricing-table/pricing-table.php:43
719
  #: modules/pricing-table/pricing-table.php:155
720
  #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
721
  msgid "Style"
726
  msgstr "Šírka stĺpca"
727
 
728
  #: includes/column-settings.php:26 includes/row-settings.php:48
729
+ #: modules/button/button.php:66 modules/callout/callout.php:225
730
+ #: modules/callout/callout.php:478 modules/callout/callout.php:494
731
+ #: modules/content-slider/content-slider.php:382
732
+ #: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
733
+ #: modules/cta/cta.php:221
734
  msgid "Text"
735
  msgstr "Text"
736
 
737
  #: includes/column-settings.php:30 includes/column-settings.php:43
738
  #: includes/column-settings.php:100 includes/row-settings.php:52
739
+ #: includes/row-settings.php:109 includes/row-settings.php:403
740
+ #: modules/callout/callout.php:391
741
+ #: modules/content-slider/content-slider.php:337
742
  #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
743
  #: modules/separator/separator.php:34
744
  msgid "Color"
745
  msgstr "Farba"
746
 
747
  #: includes/column-settings.php:39 includes/row-settings.php:105
748
+ #: modules/button/button.php:115 modules/callout/callout.php:404
749
+ #: modules/callout/callout.php:508
750
+ #: modules/content-slider/content-slider.php:363
751
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
752
+ #: modules/cta/cta.php:264 modules/icon-group/icon-group.php:64
753
  #: modules/icon/icon.php:95
754
  msgid "Background Color"
755
  msgstr "Farba pozadia"
756
 
757
  #: includes/column-settings.php:51 includes/column-settings.php:108
758
+ #: includes/row-settings.php:117 includes/row-settings.php:411
759
  #: modules/separator/separator.php:44
760
  msgid "Opacity"
761
  msgstr "Nepriehľadnosť"
762
 
763
+ #: includes/column-settings.php:63 includes/row-settings.php:366
764
  msgid "Border"
765
  msgstr "Okraj"
766
 
767
  #: includes/column-settings.php:67 includes/row-settings.php:65
768
+ #: includes/row-settings.php:370 modules/callout/callout.php:474
769
+ #: modules/content-slider/content-slider.php:331
770
+ #: modules/content-slider/content-slider.php:378
771
+ #: modules/content-slider/content-slider.php:596
772
+ #: modules/content-slider/content-slider.php:729
773
  #: modules/slideshow/slideshow.php:339
774
  msgid "Type"
775
  msgstr "Typ"
776
 
777
+ #: includes/column-settings.php:69 includes/row-settings.php:372
778
  msgid ""
779
  "The type of border to use. Double borders must have a width of at least 3px "
780
  "to render properly."
782
  "Typ použitého okraja. Dvojitý okraj musí mať šírku aspoň 3px aby sa zobrazil "
783
  "správne."
784
 
785
+ #: includes/column-settings.php:71 includes/row-settings.php:374
786
  msgctxt "Border type."
787
  msgid "None"
788
  msgstr "Žiaden"
789
 
790
+ #: includes/column-settings.php:72 includes/row-settings.php:375
791
  #: modules/separator/separator.php:75
792
  msgctxt "Border type."
793
  msgid "Solid"
794
  msgstr "Plný"
795
 
796
+ #: includes/column-settings.php:73 includes/row-settings.php:376
797
  #: modules/separator/separator.php:76
798
  msgctxt "Border type."
799
  msgid "Dashed"
800
  msgstr "Prerušovaný"
801
 
802
+ #: includes/column-settings.php:74 includes/row-settings.php:377
803
  #: modules/separator/separator.php:77
804
  msgctxt "Border type."
805
  msgid "Dotted"
806
  msgstr "Bodkovaný"
807
 
808
+ #: includes/column-settings.php:75 includes/row-settings.php:378
809
  #: modules/separator/separator.php:78
810
  msgctxt "Border type."
811
  msgid "Double"
812
  msgstr "Dvojitý"
813
 
814
+ #: includes/column-settings.php:119 includes/row-settings.php:422
815
  msgid "Top Width"
816
  msgstr "Šírka hore"
817
 
818
+ #: includes/column-settings.php:131 includes/row-settings.php:434
819
  msgid "Bottom Width"
820
  msgstr "Šírka dole"
821
 
822
+ #: includes/column-settings.php:143 includes/row-settings.php:446
823
  msgid "Left Width"
824
  msgstr "Šírka vľavo"
825
 
826
+ #: includes/column-settings.php:155 includes/row-settings.php:458
827
  msgid "Right Width"
828
  msgstr "Šírka vpravo"
829
 
830
  #: includes/column-settings.php:170 includes/module-settings.php:6
831
+ #: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
832
  msgid "Advanced"
833
  msgstr "Pokročilé"
834
 
835
  #: includes/column-settings.php:173 includes/global-settings.php:41
836
+ #: includes/global-settings.php:94 includes/module-settings.php:9
837
+ #: includes/row-settings.php:476
838
  msgid "Margins"
839
  msgstr "Odsadenie"
840
 
841
  #: includes/column-settings.php:177 includes/column-settings.php:230
842
+ #: includes/module-settings.php:13 includes/row-settings.php:480
843
+ #: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
844
  msgid "Top"
845
  msgstr "Hore"
846
 
847
  #: includes/column-settings.php:189 includes/column-settings.php:242
848
+ #: includes/module-settings.php:25 includes/row-settings.php:492
849
+ #: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
850
  msgid "Bottom"
851
  msgstr "Dole"
852
 
853
  #: includes/column-settings.php:201 includes/column-settings.php:254
854
+ #: includes/module-settings.php:37 includes/row-settings.php:504
855
+ #: includes/row-settings.php:557 modules/button/button.php:219
856
+ #: modules/callout/callout.php:252
857
+ #: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
858
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
859
  #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
860
  #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
862
  msgstr "Vľavo"
863
 
864
  #: includes/column-settings.php:213 includes/column-settings.php:266
865
+ #: includes/module-settings.php:49 includes/row-settings.php:516
866
+ #: includes/row-settings.php:569 modules/button/button.php:220
867
+ #: modules/callout/callout.php:253
868
+ #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
869
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
870
  #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
871
  #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
873
  msgstr "Vpravo"
874
 
875
  #: includes/column-settings.php:226 includes/global-settings.php:49
876
+ #: includes/row-settings.php:529 modules/button/button.php:233
877
+ #: modules/callout/callout.php:598
878
+ #: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
879
  msgid "Padding"
880
  msgstr "Vnútorné odsadenie"
881
 
882
+ #: includes/column-settings.php:279 includes/global-settings.php:103
883
+ #: includes/module-settings.php:62 includes/row-settings.php:582
884
  msgid "Responsive Layout"
885
  msgstr "Responzívne rozloženie"
886
 
887
  #: includes/column-settings.php:283 includes/module-settings.php:66
888
+ #: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
889
  msgid "Display"
890
  msgstr "Zobrazenie"
891
 
892
  #: includes/column-settings.php:285 includes/module-settings.php:68
893
+ #: includes/row-settings.php:588
894
  msgid "Always"
895
  msgstr "Vždy"
896
 
897
  #: includes/column-settings.php:286 includes/module-settings.php:69
898
+ #: includes/row-settings.php:589
899
  msgid "Large Devices Only"
900
  msgstr "Iba na veľkých zariadeniach"
901
 
902
  #: includes/column-settings.php:287 includes/module-settings.php:70
903
+ #: includes/row-settings.php:590
904
  msgid "Large &amp; Medium Devices Only"
905
  msgstr "Iba na veľkých a stredných zariadeniach"
906
 
907
  #: includes/column-settings.php:288 includes/module-settings.php:71
908
+ #: includes/row-settings.php:591
909
  msgid "Medium Devices Only"
910
  msgstr "Iba na stredných zariadeniach"
911
 
912
  #: includes/column-settings.php:289 includes/module-settings.php:72
913
+ #: includes/row-settings.php:592
914
  msgid "Medium &amp; Small Devices Only"
915
  msgstr "Iba na stredných a malých zariadeniach"
916
 
917
  #: includes/column-settings.php:290 includes/module-settings.php:73
918
+ #: includes/row-settings.php:593
919
  msgid "Small Devices Only"
920
  msgstr "Iba na malých zariadeniach"
921
 
933
  msgstr "Šírka tohto stĺpca na stredne veľkých zariadeniach, ako sú tablety."
934
 
935
  #: includes/column-settings.php:302 includes/column-settings.php:330
936
+ #: modules/callout/callout.php:283
937
+ #: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
938
  #: modules/heading/heading.php:117 modules/heading/heading.php:144
939
  #: modules/heading/heading.php:174
940
  msgid "Default"
941
  msgstr "Prednastavené"
942
 
943
  #: includes/column-settings.php:303 includes/column-settings.php:331
944
+ #: modules/button/button.php:193 modules/callout/callout.php:284
945
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
946
  #: modules/heading/heading.php:118 modules/heading/heading.php:145
947
  #: modules/heading/heading.php:175
948
  #: modules/social-buttons/social-buttons.php:74
966
  msgstr "Vlastná šírka na malých zariadeniach"
967
 
968
  #: includes/column-settings.php:356 includes/module-settings.php:115
969
+ #: includes/row-settings.php:603
970
  msgid "CSS Selectors"
971
  msgstr "CSS selektor"
972
 
973
  #: includes/column-settings.php:360 includes/loop-settings.php:27
974
+ #: includes/module-settings.php:119 includes/row-settings.php:607
975
  msgid "ID"
976
  msgstr "ID"
977
 
1010
  msgid "Replace"
1011
  msgstr "Nahradiť"
1012
 
1013
+ #: includes/field-icon.php:7 includes/js-config.php:58
1014
  msgid "Remove"
1015
  msgstr "Odstrániť"
1016
 
1027
  msgstr "Začnite písať..."
1028
 
1029
  #: includes/field-link.php:7 includes/icon-selector.php:28
1030
+ #: includes/js-config.php:19 includes/settings.php:63
1031
  #: includes/template-selector.php:102 includes/ui.php:11
1032
  msgid "Cancel"
1033
  msgstr "Zrušiť"
1052
  msgid "Add Photos"
1053
  msgstr "Pridať obrázky"
1054
 
1055
+ #: includes/field-photo.php:3 includes/js-config.php:63
1056
  msgid "Select Photo"
1057
  msgstr "Zvoliť obrázok"
1058
 
1059
+ #: includes/field-video.php:3 includes/js-config.php:65
1060
  msgid "Select Video"
1061
  msgstr "Zvoliť video"
1062
 
1066
 
1067
  #: includes/global-settings.php:7 includes/template-settings.php:7
1068
  #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
1069
+ #: modules/button/button.php:59 modules/callout/callout.php:209
1070
  #: modules/contact-form/contact-form.php:57
1071
+ #: modules/content-slider/content-slider.php:190
1072
+ #: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
1073
  #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
1074
  #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
1075
  #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
1131
  "Všetky riadky budú prednastavené na túto šírku. Toto nastavenie môžete "
1132
  "nahradiť roztiahnutím na celú šírku v nastaveniach daného riadku."
1133
 
1134
+ #: includes/global-settings.php:66
1135
+ msgid "Default Row Width"
1136
+ msgstr "Prednastavená šírka riadka"
1137
+
1138
+ #: includes/global-settings.php:69 includes/global-settings.php:83
1139
+ #: includes/row-settings.php:19 includes/row-settings.php:37
1140
+ #: includes/row-settings.php:179
1141
+ msgid "Fixed"
1142
+ msgstr "Pevná"
1143
+
1144
+ #: includes/global-settings.php:70 includes/global-settings.php:84
1145
+ #: includes/row-settings.php:20 includes/row-settings.php:38
1146
+ #: modules/button/button.php:192 modules/callout/callout.php:585
1147
+ msgid "Full Width"
1148
+ msgstr "Celá šírka"
1149
+
1150
+ #: includes/global-settings.php:80
1151
+ msgid "Default Row Content Width"
1152
+ msgstr "Prednastavená šírka obsahu riadka"
1153
+
1154
+ #: includes/global-settings.php:107
1155
  msgctxt ""
1156
  "General settings form field label. Intended meaning: \"Responsive layout "
1157
  "enabled?\""
1158
  msgid "Enabled"
1159
  msgstr "Povoliť"
1160
 
1161
+ #: includes/global-settings.php:121
1162
  msgid "Medium Device Breakpoint"
1163
  msgstr "Zlomový bod pre stredne veľké zariadenia"
1164
 
1165
+ #: includes/global-settings.php:126
1166
  msgid ""
1167
  "The browser width at which the layout will adjust for medium devices such as "
1168
  "tablets."
1170
  "Šírka internetového prehliadača, v ktorej sa rozloženie nastaví do režimu "
1171
  "pre stredne veľké zariadenia, ako sú tablety."
1172
 
1173
+ #: includes/global-settings.php:130
1174
  msgid "Small Device Breakpoint"
1175
  msgstr "Zlomový bod pre malé zariadenia"
1176
 
1177
+ #: includes/global-settings.php:135
1178
  msgid ""
1179
  "The browser width at which the layout will adjust for small devices such as "
1180
  "phones."
1187
  msgid "All Libraries"
1188
  msgstr "Všetky knižnice"
1189
 
1190
+ #: includes/js-config.php:18
1191
  msgid "What would you like to do?"
1192
  msgstr "Čo si prajete urobiť?"
1193
 
1194
+ #: includes/js-config.php:20
1195
  msgid "Change Template"
1196
  msgstr "Zmeniť šablónu"
1197
 
1198
+ #: includes/js-config.php:21
1199
  msgid ""
1200
  "Warning! Changing the template will replace your existing layout. Do you "
1201
  "really want to do this?"
1203
  "Pozor! Zmenou šablóny nahradíte existujúce rozloženie. Naozaj to chcete "
1204
  "urobiť?"
1205
 
1206
+ #: includes/js-config.php:22
1207
  msgid "Column"
1208
  msgstr "Stĺpec"
1209
 
1210
+ #: includes/js-config.php:24
1211
  msgid ""
1212
  "Please select either a background layout or content layout before submitting."
1213
  msgstr "Najskôr zvoľte rozloženie pozadia alebo obsahu."
1214
 
1215
+ #: includes/js-config.php:25
1216
  msgid "Do you really want to delete this item?"
1217
  msgstr "Naozaj chcete túto položku odstrániť?"
1218
 
1219
+ #: includes/js-config.php:26
1220
  msgid ""
1221
  "Do you really want to delete this module? All content data will be "
1222
  "permanently deleted."
1223
  msgstr ""
1224
  "Naozaj chcete tento modul odstrániť? Všetky dáta jeho obsahu budu vymazané."
1225
 
1226
+ #: includes/js-config.php:27
1227
  msgid ""
1228
  "Do you really want to delete this row? All content data will be permanently "
1229
  "deleted."
1230
  msgstr ""
1231
  "Naozaj chcete odstrániť tento riadok? Všetok obsah riadku bude vymazaný."
1232
 
1233
+ #: includes/js-config.php:29
1234
  msgid "Discard Draft"
1235
  msgstr "Zahodiť koncept"
1236
 
1237
+ #: includes/js-config.php:30
1238
  msgid ""
1239
  "Do you really want to discard this draft? All of your changes that are not "
1240
  "published will be lost."
1242
  "Naozaj chcete zahodiť vytvorený koncept? Stratíte všetky zmeny, ktoré nie sú "
1243
  "publikované."
1244
 
1245
+ #: includes/js-config.php:31 includes/ui.php:44
1246
+ msgid "Done"
1247
+ msgstr "Hotovo"
1248
+
1249
+ #: includes/js-config.php:32
1250
  msgid "Save Draft"
1251
  msgstr "Uložiť koncept"
1252
 
1253
+ #: includes/js-config.php:33
1254
  msgctxt "Duplicate page/post action label."
1255
  msgid "Duplicate"
1256
  msgstr "Duplikovať"
1257
 
1258
+ #: includes/js-config.php:34
1259
  msgid "Duplicate This Page"
1260
  msgstr "Duplikovať túto stránku"
1261
 
1262
+ #: includes/js-config.php:35
1263
  msgid "Duplicate This Template"
1264
  msgstr "Duplikovať túto šablónu"
1265
 
1266
+ #: includes/js-config.php:36
1267
  msgid "Edit Global Settings"
1268
  msgstr "Upraviť globálne nastavenia"
1269
 
1270
+ #: includes/js-config.php:37
1271
  msgid "Drop a row layout or module to get started!"
1272
  msgstr "Začnite vložením riadku alebo modulu!"
1273
 
1274
+ #: includes/js-config.php:38
1275
  msgid ""
1276
  "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
1277
  "not functioning as expected the cause is most likely this error. Please help "
1284
  "opätovnej, postupnej aktivácie ostatných modulov pre zistenie, či je problém "
1285
  "spôsobený jedným z týchto modulov."
1286
 
1287
+ #: includes/js-config.php:39
1288
  msgid "Full Size"
1289
  msgstr "Pôvodná veľkosť"
1290
 
1291
+ #: includes/js-config.php:40
1292
+ msgid "Get Help"
1293
+ msgstr "Získať pomoc"
1294
+
1295
+ #: includes/js-config.php:41
1296
+ msgid "Getting Started Video"
1297
+ msgstr "Video \"Začíname\""
1298
+
1299
+ #: includes/js-config.php:42
1300
  msgid "\"{message}\" on line {line} of {file}."
1301
  msgstr "\"{message}\" na riadku {line} súboru {file}."
1302
 
1303
+ #: includes/js-config.php:43
1304
  msgid "Insert"
1305
  msgstr "Vložiť"
1306
 
1307
+ #: includes/js-config.php:44
1308
  msgid "Large"
1309
  msgstr "Veľké"
1310
 
1311
+ #: includes/js-config.php:45
1312
  msgid "Manage Templates"
1313
  msgstr "Správa šablón"
1314
 
1315
+ #: includes/js-config.php:46
1316
  msgid "Medium"
1317
  msgstr "Stredné"
1318
 
1319
+ #: includes/js-config.php:47
1320
  msgid "Module"
1321
  msgstr "Modul"
1322
 
1323
+ #: includes/js-config.php:48
1324
  msgid "Move"
1325
  msgstr "Presunúť"
1326
 
1327
+ #: includes/js-config.php:49
1328
  msgid "New Column"
1329
  msgstr "Nový stĺpec"
1330
 
1331
+ #: includes/js-config.php:50
1332
  msgid "New Row"
1333
  msgstr "Nový riadok"
1334
 
1335
+ #: includes/js-config.php:51
1336
  msgid "No results found."
1337
  msgstr "Nenašli sa žiadne záznamy."
1338
 
1339
+ #: includes/js-config.php:52
1340
+ msgid "No Thanks"
1341
+ msgstr "Nie, vďaka"
1342
+
1343
+ #: includes/js-config.php:53
1344
  msgid "OK"
1345
  msgstr "OK"
1346
 
1347
+ #: includes/js-config.php:54 modules/photo/photo.php:454
1348
  msgid "Photo Page"
1349
  msgstr "Stránka obrázku"
1350
 
1351
+ #: includes/js-config.php:55
1352
  msgid "Photo Selected"
1353
  msgstr "Obrázok bol zvolený"
1354
 
1355
+ #: includes/js-config.php:56
1356
  msgid "Photos Selected"
1357
  msgstr "Obrázky boli zvolené"
1358
 
1359
+ #: includes/js-config.php:57
1360
  msgid "Publish Changes"
1361
  msgstr "Publikovať zmeny"
1362
 
1363
+ #: includes/js-config.php:59
1364
  msgid "Row"
1365
  msgstr "Riadok"
1366
 
1367
+ #: includes/js-config.php:60 includes/row-settings.php:6
1368
  msgid "Row Settings"
1369
  msgstr "Nastavenia riadku"
1370
 
1371
+ #: includes/js-config.php:61
1372
  msgid "Save Core Template"
1373
  msgstr "Uložiť základnú šablónu"
1374
 
1375
+ #: includes/js-config.php:62 includes/ui.php:10
1376
  #: includes/user-template-settings.php:4
1377
  msgid "Save Template"
1378
  msgstr "Uložiť šablónu"
1379
 
1380
+ #: includes/js-config.php:64
1381
  msgid "Select Photos"
1382
  msgstr "Zvoliť obrázky"
1383
 
1384
+ #: includes/js-config.php:67
1385
+ msgid "Take a Tour"
1386
+ msgstr "Spustiť sprievodcu"
1387
+
1388
+ #: includes/js-config.php:68
1389
  msgid "Append New Layout"
1390
  msgstr "Pridať nové rozloženie"
1391
 
1392
+ #: includes/js-config.php:69
1393
  msgid "Replace Existing Layout"
1394
  msgstr "Nahradiť existujúce rozloženie"
1395
 
1396
+ #: includes/js-config.php:70
1397
  msgid "Template Saved!"
1398
  msgstr "Šablóna bola uložená!"
1399
 
1400
+ #: includes/js-config.php:71
1401
  msgid "Thumbnail"
1402
  msgstr "Miniatúra"
1403
 
1404
+ #: includes/js-config.php:72
1405
+ msgid "Next"
1406
+ msgstr "Ďalej"
1407
+
1408
+ #: includes/js-config.php:73
1409
+ msgid "Get Started"
1410
+ msgstr "Začíname"
1411
+
1412
+ #: includes/js-config.php:74
1413
+ msgid "Choose a Template"
1414
+ msgstr "Voľba šablóny"
1415
+
1416
+ #: includes/js-config.php:75
1417
+ msgid ""
1418
+ "Get started by choosing a layout template to customize, or build a page from "
1419
+ "scratch by selecting the blank layout template."
1420
+ msgstr ""
1421
+ "Začnite voľbou šablóny, ktorú chcete upraviť, alebo nastavte prázdnu šablónu "
1422
+ "pre vytvorenie vlastného rozloženia stránky."
1423
+
1424
+ #: includes/js-config.php:76
1425
+ msgid "Add Rows"
1426
+ msgstr "Pridajte riadky"
1427
+
1428
+ #: includes/js-config.php:77
1429
+ msgid ""
1430
+ "Add mulit-column rows, adjust spacing, add backgrounds and more by dragging "
1431
+ "and dropping row layouts onto the page."
1432
+ msgstr ""
1433
+ "Pridajte viacstĺpcové riadky, upravte odsadenie, pozadie a iné nastavenia "
1434
+ "uchopením a pretiahnutím rozloženia riadka na stránku."
1435
+
1436
+ #: includes/js-config.php:78 includes/ui.php:49
1437
+ msgid "Add Content"
1438
+ msgstr "Pridať obsah"
1439
+
1440
+ #: includes/js-config.php:79
1441
+ msgid ""
1442
+ "Add new content by dragging and dropping modules or widgets into your row "
1443
+ "layouts or to create a new row layout."
1444
+ msgstr ""
1445
+ "Pridajte nový obsah uchopením a pretiahnutím modulov alebo widgetov do "
1446
+ "existujúcich riadkov alebo vytvorte nový riadok."
1447
+
1448
+ #: includes/js-config.php:80
1449
+ msgid "Edit Content"
1450
+ msgstr "Upravte obsah"
1451
+
1452
+ #: includes/js-config.php:81
1453
+ msgid ""
1454
+ "Move your mouse over rows, columns or modules to edit and interact with them."
1455
+ msgstr ""
1456
+ "Presunutím myši ponad riadok, stĺpec alebo modul budete môcť tieto elementy "
1457
+ "upraviť."
1458
+
1459
+ #: includes/js-config.php:82
1460
+ msgid ""
1461
+ "Use the action buttons to perform actions such as moving, editing, "
1462
+ "duplicating, accessing individual column settings or deleting rows, columns "
1463
+ "and modules."
1464
+ msgstr ""
1465
+ "Použite tlačidlá akcií pre premiestnenie, editáciu, duplikáciu, nastavenie "
1466
+ "stĺpca alebo odstránenie elementov."
1467
+
1468
+ #: includes/js-config.php:83
1469
+ msgid "Add More Content"
1470
+ msgstr "Pridajte viac obsahu"
1471
+
1472
+ #: includes/js-config.php:84
1473
+ msgid ""
1474
+ "Use the Add Content button to open the content panel and add new row layouts "
1475
+ "or content."
1476
+ msgstr ""
1477
+ "Použite tlačidlo Pridať obsah pre otvorenie panelu obsahu a pridajte nové "
1478
+ "rozloženia riadkov alebo obsah."
1479
+
1480
+ #: includes/js-config.php:85
1481
+ msgid "Change Templates"
1482
+ msgstr "Zmeňte šablóny"
1483
+
1484
+ #: includes/js-config.php:86
1485
+ msgid ""
1486
+ "Use the Templates button to pick a new template or append one to your "
1487
+ "layout. Appending will insert a new template at the end of your existing "
1488
+ "page content."
1489
+ msgstr ""
1490
+ "Pomocou tlačidla Šablóny vyberte novú šablónu alebo nejakú pridajte k "
1491
+ "existujúcemu rozloženiu stránky. Pridaním šablóny ju zobrazíte na konci "
1492
+ "existujúceho rozloženia obsahu stránky."
1493
+
1494
+ #: includes/js-config.php:87
1495
+ msgid "Helpful Tools"
1496
+ msgstr "Pomocné nástroje"
1497
+
1498
+ #: includes/js-config.php:88
1499
+ msgid ""
1500
+ "The Tools button lets you duplicate a page, save a template or edit the "
1501
+ "global settings."
1502
+ msgstr ""
1503
+ "Tlačidlo Nástroje umožní duplikovať stránky, uložiť šablóny alebo upraviť "
1504
+ "globálne nastavenia."
1505
+
1506
+ #: includes/js-config.php:89
1507
+ msgid "Publish Your Changes"
1508
+ msgstr "Publikujte zmeny"
1509
+
1510
+ #: includes/js-config.php:90
1511
+ msgid ""
1512
+ "Once you're finished, click the Done button to publish your changes, save a "
1513
+ "draft or revert back to the last published state."
1514
+ msgstr ""
1515
+ "Ak s úpravami skončíte, kliknite tlačidlo Hotovo pre publikáciu vašich "
1516
+ "zmien, uloženie alebo zahodenie konceptu."
1517
+
1518
+ #: includes/js-config.php:91
1519
+ msgid "Let's Get Building!"
1520
+ msgstr "Začnite tvoriť!"
1521
+
1522
+ #: includes/js-config.php:92
1523
+ msgid ""
1524
+ "Now that you know the basics, you're ready to start building! If at any time "
1525
+ "you need help, click the help icon in the upper right corner to access the "
1526
+ "help menu. Happy building!"
1527
+ msgstr ""
1528
+ "Teraz, keď už ovládate základy, ste pripravení tvoriť vlastné stránky! Ak "
1529
+ "budete znovu potrebovať pomoc, kliknite na ikonku pomoci v pravom hornom "
1530
+ "rohu."
1531
+
1532
+ #: includes/js-config.php:93
1533
  msgid ""
1534
  "The settings you are currently editing will not be saved if you navigate "
1535
  "away from this page."
1536
  msgstr ""
1537
  "Nastavenia, ktoré práve vykonávate, sa neuložia ak odídete z tejto stránky."
1538
 
1539
+ #: includes/js-config.php:94
1540
+ msgid "View the Knowledge Base"
1541
+ msgstr "Prezrieť databázu poznatkov"
1542
+
1543
+ #: includes/js-config.php:95
1544
+ msgid "Visit the Forums"
1545
+ msgstr "Navštíviť fóra"
1546
+
1547
+ #: includes/js-config.php:96
1548
+ msgid "Watch the Video"
1549
+ msgstr "Pozrieť video"
1550
+
1551
+ #: includes/js-config.php:97
1552
+ msgid ""
1553
+ "Welcome! It looks like this might be your first time using the builder. "
1554
+ "Would you like to take a tour?"
1555
+ msgstr ""
1556
+ "Vitajte! Stretávate sa s editorom stránok po prvýkrát? Prajete si spustiť "
1557
+ "pomocného sprievodcu?"
1558
+
1559
+ #: includes/js-config.php:98
1560
+ msgid "Yes Please!"
1561
+ msgstr "Áno prosím!"
1562
+
1563
  #: includes/loop-settings.php:19
1564
  msgid "Post Type"
1565
  msgstr "Typ článku"
1680
  msgstr "Vkĺznut dole"
1681
 
1682
  #: includes/module-settings.php:102
1683
+ #: modules/content-slider/content-slider.php:229
1684
  #: modules/testimonials/testimonials.php:91
1685
  msgid "Delay"
1686
  msgstr "Oneskorenie"
1687
 
1688
  #: includes/module-settings.php:106 includes/row-settings.php:266
1689
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
1690
+ #: modules/content-slider/content-slider.php:250
1691
  #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
1692
  #: modules/slideshow/slideshow.php:581
1693
  #: modules/testimonials/testimonials.php:95
1708
  "Unikátne ID aplikované na HTML tohto modulu. Musí začínať písmenom a "
1709
  "obsahovať iba pomlčky, podtržníky, písmená a čísla. Medzery nie sú povolené."
1710
 
1711
+ #: includes/module-settings.php:127 includes/row-settings.php:615
1712
  msgid "Class"
1713
  msgstr "Trieda"
1714
 
1721
  "Trieda aplikovaná na HTML tohto modulu. Musí začínať písmenom a obsahovať "
1722
  "iba pomlčky, podtržníky, písmená a čísla. Viaceré triedy oddeľte medzerami."
1723
 
1724
+ #: includes/row-settings.php:16 modules/button/button.php:188
1725
+ #: modules/content-slider/content-slider.php:483
1726
  msgid "Width"
1727
  msgstr "Šírka"
1728
 
 
 
 
 
 
 
 
 
 
 
1729
  #: includes/row-settings.php:27
1730
  msgid ""
1731
  "Full width rows span the width of the page from edge to edge. Fixed rows are "
1752
  msgid "Background"
1753
  msgstr "Pozadie"
1754
 
1755
+ #: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
1756
  msgctxt "Background type."
1757
  msgid "None"
1758
  msgstr "Žiaden"
1782
  msgid "Parallax"
1783
  msgstr "Paralaxa"
1784
 
1785
+ #: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
1786
  msgid "Background Photo"
1787
  msgstr "Obrázok pozadia"
1788
 
1789
  #: includes/row-settings.php:133 includes/row-settings.php:321
1790
+ #: modules/callout/callout.php:316 modules/callout/callout.php:332
1791
+ #: modules/callout/callout.php:336
1792
+ #: modules/content-slider/content-slider.php:335
1793
+ #: modules/content-slider/content-slider.php:404
1794
+ #: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
1795
  #: modules/photo/photo.php:392
1796
  msgid "Photo"
1797
  msgstr "Obrázok"
1860
  msgid "Center Top"
1861
  msgstr "V strede hore"
1862
 
1863
+ #: includes/row-settings.php:165 modules/button/button.php:218
1864
+ #: modules/callout/callout.php:251
1865
+ #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1866
  #: modules/heading/heading.php:90 modules/heading/heading.php:162
1867
  #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1868
  #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
1927
  msgid "Background Video"
1928
  msgstr "Video na pozadí"
1929
 
1930
+ #: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
1931
  #: modules/video/video.php:19 modules/video/video.php:100
1932
  msgid "Video"
1933
  msgstr "Video"
1989
  msgid "Speed"
1990
  msgstr "Rýchlosť"
1991
 
1992
+ #: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
1993
  #: modules/slideshow/slideshow.php:389
1994
  #: modules/testimonials/testimonials.php:99
1995
  msgid "Transition"
2000
  msgid "None"
2001
  msgstr "Žiaden"
2002
 
2003
+ #: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
2004
  #: modules/slideshow/slideshow.php:393
2005
  #: modules/testimonials/testimonials.php:103
2006
  msgid "Fade"
2042
  msgid "Boxes Grow"
2043
  msgstr "Rastúce štvorce"
2044
 
2045
+ #: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
2046
  #: modules/slideshow/slideshow.php:407
2047
  #: modules/testimonials/testimonials.php:108
2048
  msgid "Transition Speed"
2069
  msgid "Slow"
2070
  msgstr "Pomaly"
2071
 
2072
+ #: includes/row-settings.php:342
2073
+ msgid "Background Overlay"
2074
+ msgstr "Prekrytie pozadia"
2075
+
2076
+ #: includes/row-settings.php:346
2077
+ msgid "Overlay Color"
2078
+ msgstr "Farba prekrytia"
2079
+
2080
+ #: includes/row-settings.php:354
2081
+ msgid "Overlay Opacity"
2082
+ msgstr "Nepriehľadnosť prekrytia"
2083
+
2084
+ #: includes/row-settings.php:595
2085
  msgid "Choose whether to show or hide this row at different device sizes."
2086
  msgstr ""
2087
  "Zvoľte, či sa má tento riadok zobraziť na zariadeniach rôznych veľkostí."
2088
 
2089
+ #: includes/row-settings.php:608
2090
  msgid ""
2091
  "A unique ID that will be applied to this row's HTML. Must start with a "
2092
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
2094
  "Unikátne ID aplikované na HTML tohto riadka. Musí začínať písmenom a "
2095
  "obsahovať iba pomlčky, podtržníky, písmená a čísla. Medzery nie sú povolené."
2096
 
2097
+ #: includes/row-settings.php:616
2098
  msgid ""
2099
  "A class that will be applied to this row's HTML. Must start with a letter "
2100
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
2163
  msgid "Page Builder Demo"
2164
  msgstr "Demo Editora stránok"
2165
 
2166
+ #: includes/ui.php:40
2167
  msgid "Buy Now!"
2168
  msgstr "Zakúpiť ihneď!"
2169
 
2170
+ #: includes/ui.php:42
2171
  msgid "Upgrade!"
2172
  msgstr "Aktualizovať!"
2173
 
2174
+ #: includes/ui.php:45
 
 
 
 
2175
  msgid "Tools"
2176
  msgstr "Nástroje"
2177
 
2178
+ #: includes/ui.php:67
 
 
 
 
2179
  msgid "Row Layouts"
2180
  msgstr "Stĺpce a riadky"
2181
 
2182
+ #: includes/ui.php:71
2183
  msgid "1 Column"
2184
  msgstr "1 stĺpec"
2185
 
2186
+ #: includes/ui.php:72
2187
  msgid "2 Columns"
2188
  msgstr "2 stĺpce"
2189
 
2190
+ #: includes/ui.php:73
2191
  msgid "3 Columns"
2192
  msgstr "3 stĺpce"
2193
 
2194
+ #: includes/ui.php:74
2195
  msgid "4 Columns"
2196
  msgstr "4 stĺpce"
2197
 
2198
+ #: includes/ui.php:75
2199
  msgid "5 Columns"
2200
  msgstr "5 stĺpcov"
2201
 
2202
+ #: includes/ui.php:76
2203
  msgid "6 Columns"
2204
  msgstr "6 stĺpcov"
2205
 
2206
+ #: includes/ui.php:77
2207
  msgid "Left Sidebar"
2208
  msgstr "Bočný panel vľavo"
2209
 
2210
+ #: includes/ui.php:78
2211
  msgid "Right Sidebar"
2212
  msgstr "Bočný panel vpravo"
2213
 
2214
+ #: includes/ui.php:79
2215
  msgid "Left &amp; Right Sidebar"
2216
  msgstr "Bočný panel vľavo a vpravo"
2217
 
 
 
 
 
2218
  #: includes/updater/classes/class-fl-updater.php:107
2219
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
2220
  msgstr "<strong>AKTUALIZÁCIE NEPRÍSTUPNÉ!</strong>"
2280
  msgid "Display a collapsible accordion of items."
2281
  msgstr "Zobrazí rozbaľovací zoznam položiek."
2282
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2283
  #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
2284
  msgid "Items"
2285
  msgstr "Sekcie"
2341
  msgid "Content"
2342
  msgstr "Obsah"
2343
 
2344
+ #: modules/button/button.php:14 modules/callout/callout.php:479
2345
+ #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
2346
  #: modules/pricing-table/pricing-table.php:129
2347
  msgid "Button"
2348
  msgstr "Tlačidlo"
2351
  msgid "A simple call to action button."
2352
  msgstr "Jednoduché tlačidlo pre vyvolanie akcie."
2353
 
2354
+ #: modules/button/button.php:67 modules/cta/cta.php:222
2355
  msgid "Click Here"
2356
  msgstr "Kliknite sem"
2357
 
2358
+ #: modules/button/button.php:75 modules/callout/callout.php:317
2359
+ #: modules/callout/callout.php:365 modules/callout/callout.php:369
2360
+ #: modules/cta/cta.php:230 modules/icon-group/icon-group.php:34
2361
  #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
2362
  #: modules/icon/icon.php:34
2363
  msgid "Icon"
2364
  msgstr "Ikonka"
2365
 
2366
+ #: modules/button/button.php:81 modules/button/button.php:85
2367
+ #: modules/callout/callout.php:445 modules/callout/callout.php:449
2368
+ #: modules/content-slider/content-slider.php:573
2369
+ #: modules/content-slider/content-slider.php:577
2370
+ #: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
2371
  #: modules/heading/heading.php:43 modules/heading/heading.php:47
2372
  #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
2373
  #: modules/slideshow/slideshow.php:343
2374
  msgid "Link"
2375
  msgstr "Odkaz"
2376
 
2377
+ #: modules/button/button.php:86
2378
  msgid "http://www.example.com"
2379
  msgstr "http://www.napriklad.com"
2380
 
2381
+ #: modules/button/button.php:93 modules/callout/callout.php:457
2382
+ #: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
2383
  #: modules/heading/heading.php:54 modules/icon/icon.php:50
2384
  #: modules/photo/photo.php:478
2385
  msgid "Link Target"
2386
  msgstr "Cieľ odkazu"
2387
 
2388
+ #: modules/button/button.php:96 modules/callout/callout.php:460
2389
+ #: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
2390
  #: modules/heading/heading.php:57 modules/icon/icon.php:53
2391
  #: modules/photo/photo.php:481
2392
  msgid "Same Window"
2393
  msgstr "Rovnaké okno"
2394
 
2395
+ #: modules/button/button.php:97 modules/callout/callout.php:461
2396
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
2397
  #: modules/heading/heading.php:58 modules/icon/icon.php:54
2398
  #: modules/photo/photo.php:482
2399
  msgid "New Window"
2400
  msgstr "Nové okno"
2401
 
2402
+ #: modules/button/button.php:111 modules/cta/cta.php:187
2403
  #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
2404
  #: modules/icon/icon.php:78
2405
  msgid "Colors"
2406
  msgstr "Farby"
2407
 
2408
+ #: modules/button/button.php:121 modules/callout/callout.php:409
2409
+ #: modules/callout/callout.php:514
2410
+ #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
2411
  #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
2412
  msgid "Background Hover Color"
2413
  msgstr "Farba pozadia po prechode myšou"
2414
 
2415
+ #: modules/button/button.php:130 modules/callout/callout.php:523
2416
+ #: modules/content-slider/content-slider.php:528
2417
+ #: modules/content-slider/content-slider.php:641
2418
+ #: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
2419
+ #: modules/cta/cta.php:279 modules/heading/heading.php:77
2420
  msgid "Text Color"
2421
  msgstr "Farba textu"
2422
 
2423
+ #: modules/button/button.php:136 modules/callout/callout.php:529
2424
+ #: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
2425
  msgid "Text Hover Color"
2426
  msgstr "Farba textu po prechode myšou"
2427
 
2428
+ #: modules/button/button.php:153 modules/callout/callout.php:546
2429
+ #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
2430
+ msgid "Flat"
2431
+ msgstr "Plochý"
2432
+
2433
+ #: modules/button/button.php:154 modules/callout/callout.php:417
2434
+ #: modules/callout/callout.php:547
2435
+ #: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
2436
  #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
2437
  msgid "Gradient"
2438
  msgstr "Gradient"
2439
 
2440
+ #: modules/button/button.php:155 modules/callout/callout.php:548
2441
+ #: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
2442
+ msgid "Transparent"
2443
+ msgstr "Priehľadný"
2444
+
2445
+ #: modules/button/button.php:165 modules/callout/callout.php:558
2446
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
2447
+ #: modules/pricing-table/pricing-table.php:67
2448
+ msgid "Border Size"
2449
+ msgstr "Veľkosť okraja"
2450
+
2451
+ #: modules/button/button.php:174 modules/callout/callout.php:567
2452
+ #: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
2453
+ #: modules/cta/cta.php:323
2454
+ msgid "Background Opacity"
2455
+ msgstr "Nepriehľadnosť pozadia"
2456
+
2457
+ #: modules/button/button.php:184 modules/callout/callout.php:244
2458
+ #: modules/cta/cta.php:104 modules/heading/heading.php:82
2459
  #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
2460
  msgid "Structure"
2461
  msgstr "Štruktúra"
2462
 
2463
+ #: modules/button/button.php:191 modules/callout/callout.php:584
2464
  msgctxt "Width."
2465
  msgid "Auto"
2466
  msgstr "Automatická"
2467
 
2468
+ #: modules/button/button.php:207
2469
  msgid "Custom Width"
2470
  msgstr "Vlastná šírka"
2471
 
2472
+ #: modules/button/button.php:215 modules/cta/cta.php:122
2473
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
2474
  #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
2475
  #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
2476
  msgid "Alignment"
2477
  msgstr "Zarovnanie"
2478
 
2479
+ #: modules/button/button.php:225 modules/callout/callout.php:590
2480
+ #: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
2481
  #: modules/heading/heading.php:114 modules/heading/heading.php:171
2482
  msgid "Font Size"
2483
  msgstr "Veľkosť písma"
2484
 
2485
+ #: modules/button/button.php:241 modules/callout/callout.php:606
2486
+ #: modules/cta/cta.php:353
2487
  msgid "Round Corners"
2488
  msgstr "Zaoblené rohy"
2489
 
2495
  msgid "A heading and snippet of text with an optional link, icon and image."
2496
  msgstr "Nadpis a text s možnosťou nastavenia ikonky, obrázku a odkazu."
2497
 
2498
+ #: modules/callout/callout.php:216
2499
+ #: modules/content-slider/content-slider.php:413
2500
+ #: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
2501
  #: modules/heading/heading.php:14 modules/heading/heading.php:33
2502
  #: modules/testimonials/testimonials.php:56
2503
  #: modules/testimonials/testimonials.php:61
2504
  msgid "Heading"
2505
  msgstr "Nadpis"
2506
 
2507
+ #: modules/callout/callout.php:248
2508
  msgid "Overall Alignment"
2509
  msgstr "Celkové zarovnanie"
2510
 
2511
+ #: modules/callout/callout.php:255
2512
  msgid "The alignment that will apply to all elements within the callout."
2513
  msgstr "Zarovnanie, ktoré sa aplikuje na všetky elementy v tomto promo module."
2514
 
2515
+ #: modules/callout/callout.php:263 modules/cta/cta.php:147
2516
  msgid "Heading Structure"
2517
  msgstr "Štruktúra nadpisu"
2518
 
2519
+ #: modules/callout/callout.php:267
2520
+ #: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
2521
  msgid "Heading Tag"
2522
  msgstr "HTML tag nadpisu"
2523
 
2524
+ #: modules/callout/callout.php:280
2525
+ #: modules/content-slider/content-slider.php:445
2526
+ #: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
2527
  #: modules/testimonials/testimonials.php:69
2528
  msgid "Heading Size"
2529
  msgstr "Veľkosť nadpisu"
2530
 
2531
+ #: modules/callout/callout.php:294 modules/cta/cta.php:178
2532
  msgid "Heading Custom Size"
2533
  msgstr "Vlastná veľkosť nadpisu"
2534
 
2535
+ #: modules/callout/callout.php:312
2536
  msgid "Image Type"
2537
  msgstr "Typ obrázku"
2538
 
2539
+ #: modules/callout/callout.php:315
2540
  msgctxt "Image type."
2541
  msgid "None"
2542
  msgstr "Žiadny"
2543
 
2544
+ #: modules/callout/callout.php:340 modules/photo/photo.php:401
2545
  #: modules/slideshow/slideshow.php:312
2546
  msgid "Crop"
2547
  msgstr "Orezanie"
2548
 
2549
+ #: modules/callout/callout.php:343
2550
  msgctxt "Crop"
2551
  msgid "None"
2552
  msgstr "Žiadne"
2553
 
2554
+ #: modules/callout/callout.php:344 modules/photo/photo.php:405
2555
  msgid "Landscape"
2556
  msgstr "Krajinka"
2557
 
2558
+ #: modules/callout/callout.php:345 modules/photo/photo.php:406
2559
  msgid "Panorama"
2560
  msgstr "Panoráma"
2561
 
2562
+ #: modules/callout/callout.php:346 modules/photo/photo.php:407
2563
  msgid "Portrait"
2564
  msgstr "Portrét"
2565
 
2566
+ #: modules/callout/callout.php:347 modules/photo/photo.php:408
2567
  msgid "Square"
2568
  msgstr "Štvorec"
2569
 
2570
+ #: modules/callout/callout.php:348 modules/photo/photo.php:409
2571
  msgid "Circle"
2572
  msgstr "Kruh"
2573
 
2574
+ #: modules/callout/callout.php:356 modules/callout/callout.php:376
2575
  msgid "Above Heading"
2576
  msgstr "Nad nadpisom"
2577
 
2578
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
2579
  msgid "Below Heading"
2580
  msgstr "Pod nadpisom"
2581
 
2582
+ #: modules/callout/callout.php:358 modules/callout/callout.php:380
2583
  msgid "Left of Text and Heading"
2584
  msgstr "Vľavo od nadpisu a textu"
2585
 
2586
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
2587
  msgid "Right of Text and Heading"
2588
  msgstr "Vpravo od nadpisu a textu"
2589
 
2590
+ #: modules/callout/callout.php:378
2591
  msgid "Left of Heading"
2592
  msgstr "Vľavo od nadpisu"
2593
 
2594
+ #: modules/callout/callout.php:379
2595
  msgid "Right of Heading"
2596
  msgstr "Vpravo od nadpisu"
2597
 
2598
+ #: modules/callout/callout.php:387
2599
  msgid "Icon Colors"
2600
  msgstr "Farba ikonky"
2601
 
2602
+ #: modules/callout/callout.php:396 modules/icon-group/icon-group.php:56
2603
  #: modules/icon/icon.php:87
2604
  msgid "Hover Color"
2605
  msgstr "Farba po prechode myšou"
2606
 
2607
+ #: modules/callout/callout.php:427
2608
  msgid "Icon Structure"
2609
  msgstr "Štruktúra ikonky"
2610
 
2611
+ #: modules/callout/callout.php:431 modules/icon-group/icon-group.php:91
2612
  #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
2613
  msgid "Size"
2614
  msgstr "Veľkosť"
2615
 
2616
+ #: modules/callout/callout.php:442
2617
+ #: modules/content-slider/content-slider.php:570
2618
  msgid "Call To Action"
2619
  msgstr "Výzva k akcii"
2620
 
2621
+ #: modules/callout/callout.php:450
2622
  msgid ""
2623
  "The link applies to the entire module. If choosing a call to action type "
2624
  "below, this link will also be used for the text or button."
2626
  "Odkaz sa aplikuje na celý modul. Ak určíte typ výzvy k akcii, tento odkaz sa "
2627
  "použije aj na text alebo tlačidlo."
2628
 
2629
+ #: modules/callout/callout.php:470
2630
+ #: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
2631
  msgid "Call to Action"
2632
  msgstr "Výzva k akcii"
2633
 
2634
+ #: modules/callout/callout.php:477
2635
+ #: modules/content-slider/content-slider.php:599
2636
  msgctxt "Call to action."
2637
  msgid "None"
2638
  msgstr "Žiadna"
2639
 
2640
+ #: modules/callout/callout.php:498
2641
+ #: modules/content-slider/content-slider.php:620
2642
  msgid "Button Icon"
2643
  msgstr "Ikonka tlačidla"
2644
 
2645
+ #: modules/callout/callout.php:504
2646
+ #: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
2647
  msgid "Button Colors"
2648
  msgstr "Farba tlačidla"
2649
 
2650
+ #: modules/callout/callout.php:539
2651
+ #: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
2652
+ msgid "Button Style"
2653
+ msgstr "Štýl tlačidla"
2654
+
2655
+ #: modules/callout/callout.php:577
2656
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
2657
  msgid "Button Structure"
2658
  msgstr "Štruktúra tlačidla"
2659
 
2660
+ #: modules/callout/callout.php:581
2661
  msgid "Button Width"
2662
  msgstr "Šírka tlačidla"
2663
 
2742
  msgid "Displays multiple slides with an optional heading and call to action."
2743
  msgstr "Zobrazí viacero snímkov s nepovinným nadpisom a výzvou k akcii."
2744
 
2745
+ #: modules/content-slider/content-slider.php:197 modules/map/map.php:41
2746
  #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
2747
  msgid "Height"
2748
  msgstr "Výška"
2749
 
2750
+ #: modules/content-slider/content-slider.php:202
2751
  msgid ""
2752
  "This setting is the minimum height of the content slider. Content will "
2753
  "expand the height automatically."
2755
  "Nastavte minimálnu výšku prezentácie obsahu. Ak je obsah prezentácie vyšší, "
2756
  "automaticky sa výška zväčší."
2757
 
2758
+ #: modules/content-slider/content-slider.php:206
2759
  #: modules/slideshow/slideshow.php:373
2760
  #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
2761
  msgid "Auto Play"
2762
  msgstr "Automatické prehrávanie"
2763
 
2764
+ #: modules/content-slider/content-slider.php:220
2765
  msgid "Show Play/Pause"
2766
  msgstr "Zobraziť tlačidlo prehrať/pauza"
2767
 
2768
+ #: modules/content-slider/content-slider.php:240
2769
  #: modules/testimonials/testimonials.php:102
2770
  msgctxt "Transition type."
2771
  msgid "Slide"
2772
  msgstr "Vkĺznutie"
2773
 
2774
+ #: modules/content-slider/content-slider.php:254
2775
  #: modules/testimonials/testimonials.php:121
2776
  msgid "Show Arrows"
2777
  msgstr "Zobraziť šípky"
2778
 
2779
+ #: modules/content-slider/content-slider.php:263
2780
  #: modules/testimonials/testimonials.php:151
2781
  msgid "Show Dots"
2782
  msgstr "Zobraziť bodky"
2783
 
2784
+ #: modules/content-slider/content-slider.php:277
2785
  msgid "Max Content Width"
2786
  msgstr "Maximálna šírka obsahu"
2787
 
2788
+ #: modules/content-slider/content-slider.php:282
2789
  msgid "The max width that the content area will be within your slides."
2790
  msgstr "Maximálna šírka obsahu v snímkoch."
2791
 
2792
+ #: modules/content-slider/content-slider.php:289
2793
  msgid "Slides"
2794
  msgstr "Snímky"
2795
 
2796
+ #: modules/content-slider/content-slider.php:296
2797
  msgid "Slide"
2798
  msgstr "Snímok"
2799
 
2800
+ #: modules/content-slider/content-slider.php:311
2801
  msgid "Slide Settings"
2802
  msgstr "Nastavenia snímku"
2803
 
2804
+ #: modules/content-slider/content-slider.php:321
2805
  msgid "Slide Label"
2806
  msgstr "Nadpis snímku"
2807
 
2808
+ #: modules/content-slider/content-slider.php:322
2809
  msgid ""
2810
  "A label to identify this slide on the Slides tab of the Content Slider "
2811
  "settings."
2812
  msgstr ""
2813
  "Názov, ktorým tento snímok identifikujete v nastaveniach Prezentácie obsahu"
2814
 
2815
+ #: modules/content-slider/content-slider.php:327
2816
  msgid "Background Layout"
2817
  msgstr "Rozloženie pozadia"
2818
 
2819
+ #: modules/content-slider/content-slider.php:333
2820
  msgid "This setting is for the entire background of your slide."
2821
  msgstr "Toto nastavenie sa aplikuje na celkové pozadie snímku."
2822
 
2823
+ #: modules/content-slider/content-slider.php:368
2824
  msgid "Background Video Code"
2825
  msgstr "Video kód pozadia"
2826
 
2827
+ #: modules/content-slider/content-slider.php:374
2828
  msgid "Content Layout"
2829
  msgstr "Rozloženie obsahu"
2830
 
2831
+ #: modules/content-slider/content-slider.php:380
2832
  msgid ""
2833
  "This allows you to add content over or in addition to the background "
2834
  "selection above. The location of the content layout can be selected in the "
2837
  "Toto nastavenie umožní pridať obsah nad pozadie nastavené vyššie. Pozíciu "
2838
  "obsahu nastavíte na záložke štýlu."
2839
 
2840
+ #: modules/content-slider/content-slider.php:383
2841
  msgid "Text &amp; Photo"
2842
  msgstr "Text a obrázok"
2843
 
2844
+ #: modules/content-slider/content-slider.php:384
2845
  msgid "Text &amp; Video"
2846
  msgstr "Text a video"
2847
 
2848
+ #: modules/content-slider/content-slider.php:385
2849
  msgctxt "Content type."
2850
  msgid "None"
2851
  msgstr "Žiadny"
2852
 
2853
+ #: modules/content-slider/content-slider.php:408 modules/video/video.php:132
2854
  msgid "Video Embed Code"
2855
  msgstr "Kód vloženého videa"
2856
 
2857
+ #: modules/content-slider/content-slider.php:468
2858
  msgid "Text Position"
2859
  msgstr "Pozícia textu"
2860
 
2861
+ #: modules/content-slider/content-slider.php:474
2862
  msgid ""
2863
  "The position will move the content layout selections left, right or center "
2864
  "over the background of the slide."
2866
  "Pozíciou nastavíte, či sa obsah zobrazí vľavo, vpravo alebo v strede nad "
2867
  "pozadím snímku."
2868
 
2869
+ #: modules/content-slider/content-slider.php:491
2870
  msgid "Top Margin"
2871
  msgstr "Odsadenie zhora"
2872
 
2873
+ #: modules/content-slider/content-slider.php:499
2874
  msgid "Bottom Margin"
2875
  msgstr "Odsadenie zdola"
2876
 
2877
+ #: modules/content-slider/content-slider.php:507
2878
  msgid "Left Margin"
2879
  msgstr "Odsadenie zľava"
2880
 
2881
+ #: modules/content-slider/content-slider.php:515
2882
  msgid "Right Margin"
2883
  msgstr "Odsadenie zprava"
2884
 
2885
+ #: modules/content-slider/content-slider.php:524
2886
  msgid "Text Colors"
2887
  msgstr "Farby textu"
2888
 
2889
+ #: modules/content-slider/content-slider.php:534
2890
  msgid "Text Shadow"
2891
  msgstr "Tieň textu"
2892
 
2893
+ #: modules/content-slider/content-slider.php:543
2894
+ #: modules/content-slider/content-slider.php:760
2895
  msgid "Text Background Color"
2896
  msgstr "Farba pozadia textu"
2897
 
2898
+ #: modules/content-slider/content-slider.php:544
2899
  msgid ""
2900
  "The color applies to the overlay behind text over the background selections."
2901
  msgstr "Farba sa aplikuje na prekrytie snímku textom."
2902
 
2903
+ #: modules/content-slider/content-slider.php:549
2904
  msgid "Text Background Opacity"
2905
  msgstr "Nepriehľadnosť pozadia textu"
2906
 
2907
+ #: modules/content-slider/content-slider.php:557
2908
  msgid "Text Background Height"
2909
  msgstr "Výška pozadia textu"
2910
 
2911
+ #: modules/content-slider/content-slider.php:559
2912
  msgid ""
2913
  "Auto will allow the overlay to fit however long the text content is. 100% "
2914
  "will fit the overlay to the top and bottom of the slide."
2916
  "Automatické nastavenie prispôsobí prekrytie dĺžke textu obsahu. 100% "
2917
  "natiahne prekrytie od vrchu po spodok snímky."
2918
 
2919
+ #: modules/content-slider/content-slider.php:561
2920
  msgctxt "Background height."
2921
  msgid "Auto"
2922
  msgstr "Automatická"
2923
 
2924
+ #: modules/content-slider/content-slider.php:578
2925
  msgid ""
2926
  "The link applies to the entire slide. If choosing a call to action type "
2927
  "below, this link will also be used for the text or button."
2929
  "Odkaz sa aplikuje na celý snímok. Ak zvolíte výzvu k akcii, tento odkaz sa "
2930
  "taktiež použije na text alebo tlačidlo."
2931
 
2932
+ #: modules/content-slider/content-slider.php:711
2933
  msgid "Border Radius"
2934
  msgstr "Polomer okrajov"
2935
 
2936
+ #: modules/content-slider/content-slider.php:722
2937
  msgctxt "Module settings form tab. Display on mobile devices."
2938
  msgid "Mobile"
2939
  msgstr "Mobilné zobrazenie"
2940
 
2941
+ #: modules/content-slider/content-slider.php:725
2942
  msgid "Mobile Photo"
2943
  msgstr "Obrázok pre mobilné zariadenia"
2944
 
2945
+ #: modules/content-slider/content-slider.php:731
2946
  msgid ""
2947
  "You can choose a different photo that the slide will change to on mobile "
2948
  "devices or no photo if desired."
2950
  "Môžete zvoliť zobrazenie odlišného obrázku na mobilných zariadeniach, alebo "
2951
  "obrázok odstrániť."
2952
 
2953
+ #: modules/content-slider/content-slider.php:733
2954
  msgid "Use Main Photo"
2955
  msgstr "Použiť hlavný obrázok"
2956
 
2957
+ #: modules/content-slider/content-slider.php:734
2958
  msgid "Choose Another Photo"
2959
  msgstr "Zvoliť odlišný obrázok"
2960
 
2961
+ #: modules/content-slider/content-slider.php:735
2962
  msgid "No Photo"
2963
  msgstr "Žiaden obrázok"
2964
 
2965
+ #: modules/content-slider/content-slider.php:750
2966
  msgid "Mobile Text Colors"
2967
  msgstr "Farba textu na mobilných zariadeniach"
2968
 
2970
  msgid "Display a heading, subheading and a button."
2971
  msgstr "Zobrazí nadpis, podnadpis a tlačidlo."
2972
 
2973
+ #: modules/cta/cta.php:75
2974
  msgid "Ready to find out more?"
2975
  msgstr "Ste pripravení dozvedieť sa viac?"
2976
 
2977
+ #: modules/cta/cta.php:90
2978
  msgid "Drop us a line today for a free quote!"
2979
  msgstr "Napíšte nám ešte dnes pre bezplatnú konzultáciu!"
2980
 
2981
+ #: modules/cta/cta.php:108 modules/gallery/gallery.php:220
2982
  #: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
2983
  #: modules/testimonials/testimonials.php:37
2984
  #: modules/woocommerce/woocommerce.php:57
2985
  msgid "Layout"
2986
  msgstr "Rozloženie"
2987
 
2988
+ #: modules/cta/cta.php:111
2989
  msgid "Inline"
2990
  msgstr "V jednom riadku"
2991
 
2992
+ #: modules/cta/cta.php:112
2993
  msgid "Stacked"
2994
  msgstr "Naskladané"
2995
 
2996
+ #: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
2997
  msgid "Spacing"
2998
  msgstr "Rozostupy"
2999
 
3000
+ #: modules/cta/cta.php:236
 
 
 
 
3001
  msgid "Button Link"
3002
  msgstr "Odkaz tlačidla"
3003
 
3088
  msgid "Display a title/page heading."
3089
  msgstr "Zobraziť nadpis stránky"
3090
 
 
 
 
 
 
 
3091
  #: modules/heading/heading.php:101
3092
  msgid "HTML Tag"
3093
  msgstr "HTML tag"
3348
  "Použite toto nastavenie pre normalizáciu výšky boxíkov, ak obsahujú rôzny "
3349
  "počet vlastností."
3350
 
 
 
 
 
3351
  #: modules/pricing-table/pricing-table.php:70
3352
  msgctxt "Border size."
3353
  msgid "Wide"
languages/xx_XX.mo DELETED
Binary file
languages/xx_XX.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
- "POT-Creation-Date: 2015-02-12 10:28-0800\n"
5
- "PO-Revision-Date: 2015-02-12 10:28-0800\n"
6
  "Last-Translator: WebMan - Oliver Juhas <webmandesigneu@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -39,11 +39,11 @@ msgid "Upgrade"
39
  msgstr ""
40
 
41
  #: classes/class-fl-builder-admin-settings.php:126
42
- #: includes/global-settings.php:67
43
  msgid "Modules"
44
  msgstr ""
45
 
46
- #: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:44
47
  msgid "Templates"
48
  msgstr ""
49
 
@@ -67,23 +67,35 @@ msgid "Branding"
67
  msgstr ""
68
 
69
  #: classes/class-fl-builder-admin-settings.php:150
 
 
 
 
70
  #: includes/admin-settings-uninstall.php:3
71
  #: includes/admin-settings-uninstall.php:15
72
  msgid "Uninstall"
73
  msgstr ""
74
 
75
- #: classes/class-fl-builder-admin-settings.php:368
76
  msgid "Error! You must have at least one icon set enabled."
77
  msgstr ""
78
 
79
- #: classes/class-fl-builder-admin-settings.php:410
80
  msgid "Error! Could not unzip file."
81
  msgstr ""
82
 
83
- #: classes/class-fl-builder-admin-settings.php:444
84
  msgid "Error! Please upload an icon set from either Icomoon or Fontello."
85
  msgstr ""
86
 
 
 
 
 
 
 
 
 
87
  #: classes/class-fl-builder-admin.php:40
88
  #, php-format
89
  msgid ""
@@ -109,11 +121,11 @@ msgid "Upgrade"
109
  msgstr ""
110
 
111
  #: classes/class-fl-builder-admin.php:202
112
- #: classes/class-fl-builder-model.php:2538
113
  msgid "Page Builder"
114
  msgstr ""
115
 
116
- #: classes/class-fl-builder-model.php:1363
117
  #, php-format
118
  msgctxt "%s stands for the module filename"
119
  msgid ""
@@ -121,7 +133,41 @@ msgid ""
121
  "module filenames to ensure compatibility with Beaver Builder."
122
  msgstr ""
123
 
124
- #: classes/class-fl-builder-model.php:1953
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  #, php-format
126
  msgctxt "%s stands for post/page title."
127
  msgid "Copy of %s"
@@ -151,73 +197,73 @@ msgstr ""
151
  msgid "Page Builder Templates"
152
  msgstr ""
153
 
154
- #: classes/class-fl-builder.php:702
155
  #, php-format
156
  msgctxt "Field name to add."
157
  msgid "Add %s"
158
  msgstr ""
159
 
160
- #: classes/class-fl-builder.php:765 classes/class-fl-builder.php:767
161
  msgctxt "Custom post type label."
162
  msgid "Layout Templates"
163
  msgstr ""
164
 
165
- #: classes/class-fl-builder.php:766 classes/class-fl-builder.php:768
166
  msgctxt "Custom post type label."
167
  msgid "Layout Template"
168
  msgstr ""
169
 
170
- #: classes/class-fl-builder.php:769
171
  msgctxt "Custom post type label."
172
  msgid "Add New"
173
  msgstr ""
174
 
175
- #: classes/class-fl-builder.php:770
176
  msgctxt "Custom post type label."
177
  msgid "Add New Layout Template"
178
  msgstr ""
179
 
180
- #: classes/class-fl-builder.php:771
181
  msgctxt "Custom post type label."
182
  msgid "New Layout Template"
183
  msgstr ""
184
 
185
- #: classes/class-fl-builder.php:772
186
  msgctxt "Custom post type label."
187
  msgid "Edit Layout Template"
188
  msgstr ""
189
 
190
- #: classes/class-fl-builder.php:773
191
  msgctxt "Custom post type label."
192
  msgid "View Layout Template"
193
  msgstr ""
194
 
195
- #: classes/class-fl-builder.php:774
196
  msgctxt "Custom post type label."
197
  msgid "All Layout Templates"
198
  msgstr ""
199
 
200
- #: classes/class-fl-builder.php:775
201
  msgctxt "Custom post type label."
202
  msgid "Search Layout Templates"
203
  msgstr ""
204
 
205
- #: classes/class-fl-builder.php:776
206
  msgctxt "Custom post type label."
207
  msgid "Parent Layout Templates:"
208
  msgstr ""
209
 
210
- #: classes/class-fl-builder.php:777
211
  msgctxt "Custom post type label."
212
  msgid "No layout templates found."
213
  msgstr ""
214
 
215
- #: classes/class-fl-builder.php:778
216
  msgctxt "Custom post type label."
217
  msgid "No layout templates found in Trash."
218
  msgstr ""
219
 
220
- #: classes/class-fl-builder.php:1143 includes/js-config.php:61
221
  #, php-format
222
  msgctxt "%s stands for module name."
223
  msgid "%s Settings"
@@ -239,6 +285,15 @@ msgctxt "%s stands for custom branded \"Page Builder\" name."
239
  msgid "Launch %s"
240
  msgstr ""
241
 
 
 
 
 
 
 
 
 
 
242
  #: includes/admin-settings-branding.php:7
243
  msgid "White label the page builder by entering a custom name below."
244
  msgstr ""
@@ -275,6 +330,62 @@ msgstr ""
275
  msgid "Save Editing Settings"
276
  msgstr ""
277
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  #: includes/admin-settings-icons.php:3
279
  msgid "Icon Settings"
280
  msgstr ""
@@ -431,15 +542,15 @@ msgctxt "Template edit form field label. Template name."
431
  msgid "Name"
432
  msgstr ""
433
 
434
- #: includes/admin-templates-edit.php:12 modules/callout/callout.php:303
435
  #: modules/post-grid/post-grid.php:113
436
  msgid "Image"
437
  msgstr ""
438
 
439
  #: includes/admin-templates-edit.php:16 includes/row-settings.php:155
440
- #: includes/template-settings.php:23 modules/callout/callout.php:351
441
- #: modules/callout/callout.php:371
442
- #: modules/content-slider/content-slider.php:466
443
  #: modules/post-grid/post-grid.php:127
444
  msgid "Position"
445
  msgstr ""
@@ -450,16 +561,14 @@ msgid "Premium"
450
  msgstr ""
451
 
452
  #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
453
- #: includes/global-settings.php:18 includes/global-settings.php:87
454
  #: includes/row-settings.php:307 includes/template-settings.php:31
455
- #: modules/accordion/accordion.php:90 modules/button/button.php:135
456
- #: modules/callout/callout.php:418 modules/callout/callout.php:539
457
- #: modules/content-slider/content-slider.php:203
458
- #: modules/content-slider/content-slider.php:217
459
- #: modules/content-slider/content-slider.php:251
460
- #: modules/content-slider/content-slider.php:260
461
- #: modules/content-slider/content-slider.php:531
462
- #: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
463
  #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
464
  #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
465
  #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
@@ -481,16 +590,14 @@ msgid "No"
481
  msgstr ""
482
 
483
  #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
484
- #: includes/global-settings.php:19 includes/global-settings.php:88
485
  #: includes/row-settings.php:308 includes/template-settings.php:32
486
- #: modules/accordion/accordion.php:89 modules/button/button.php:136
487
- #: modules/callout/callout.php:419 modules/callout/callout.php:540
488
- #: modules/content-slider/content-slider.php:204
489
- #: modules/content-slider/content-slider.php:218
490
- #: modules/content-slider/content-slider.php:252
491
- #: modules/content-slider/content-slider.php:261
492
- #: modules/content-slider/content-slider.php:532
493
- #: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
494
  #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
495
  #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
496
  #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
@@ -557,20 +664,24 @@ msgstr ""
557
  msgid "Delete"
558
  msgstr ""
559
 
560
- #: includes/admin-templates.php:40 includes/js-config.php:27
561
  msgid "Do you really want to delete this template?"
562
  msgstr ""
563
 
564
- #: includes/column-settings.php:4 includes/js-config.php:22
565
  msgid "Column Settings"
566
  msgstr ""
567
 
568
  #: includes/column-settings.php:7 includes/module-settings.php:87
569
  #: includes/row-settings.php:9 modules/accordion/accordion.php:45
570
- #: modules/button/button.php:95 modules/callout/callout.php:239
571
- #: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
572
- #: modules/heading/heading.php:69 modules/icon-group/icon-group.php:44
573
- #: modules/icon/icon.php:75 modules/pricing-table/pricing-table.php:43
 
 
 
 
574
  #: modules/pricing-table/pricing-table.php:155
575
  #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
576
  msgid "Style"
@@ -581,133 +692,133 @@ msgid "Column Width"
581
  msgstr ""
582
 
583
  #: includes/column-settings.php:26 includes/row-settings.php:48
584
- #: modules/button/button.php:53 modules/callout/callout.php:223
585
- #: modules/callout/callout.php:476 modules/callout/callout.php:492
586
- #: modules/content-slider/content-slider.php:376
587
- #: modules/content-slider/content-slider.php:610 modules/cta/cta.php:82
588
- #: modules/cta/cta.php:219
589
  msgid "Text"
590
  msgstr ""
591
 
592
  #: includes/column-settings.php:30 includes/column-settings.php:43
593
  #: includes/column-settings.php:100 includes/row-settings.php:52
594
- #: includes/row-settings.php:109 includes/row-settings.php:379
595
- #: modules/callout/callout.php:389
596
- #: modules/content-slider/content-slider.php:331
597
  #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
598
  #: modules/separator/separator.php:34
599
  msgid "Color"
600
  msgstr ""
601
 
602
  #: includes/column-settings.php:39 includes/row-settings.php:105
603
- #: modules/button/button.php:102 modules/callout/callout.php:402
604
- #: modules/callout/callout.php:506
605
- #: modules/content-slider/content-slider.php:357
606
- #: modules/content-slider/content-slider.php:624 modules/cta/cta.php:195
607
- #: modules/cta/cta.php:262 modules/icon-group/icon-group.php:64
608
  #: modules/icon/icon.php:95
609
  msgid "Background Color"
610
  msgstr ""
611
 
612
  #: includes/column-settings.php:51 includes/column-settings.php:108
613
- #: includes/row-settings.php:117 includes/row-settings.php:387
614
  #: modules/separator/separator.php:44
615
  msgid "Opacity"
616
  msgstr ""
617
 
618
- #: includes/column-settings.php:63 includes/row-settings.php:342
619
  msgid "Border"
620
  msgstr ""
621
 
622
  #: includes/column-settings.php:67 includes/row-settings.php:65
623
- #: includes/row-settings.php:346 modules/callout/callout.php:472
624
- #: modules/content-slider/content-slider.php:325
625
- #: modules/content-slider/content-slider.php:372
626
- #: modules/content-slider/content-slider.php:590
627
- #: modules/content-slider/content-slider.php:694
628
  #: modules/slideshow/slideshow.php:339
629
  msgid "Type"
630
  msgstr ""
631
 
632
- #: includes/column-settings.php:69 includes/row-settings.php:348
633
  msgid ""
634
  "The type of border to use. Double borders must have a width of at least 3px "
635
  "to render properly."
636
  msgstr ""
637
 
638
- #: includes/column-settings.php:71 includes/row-settings.php:350
639
  msgctxt "Border type."
640
  msgid "None"
641
  msgstr ""
642
 
643
- #: includes/column-settings.php:72 includes/row-settings.php:351
644
  #: modules/separator/separator.php:75
645
  msgctxt "Border type."
646
  msgid "Solid"
647
  msgstr ""
648
 
649
- #: includes/column-settings.php:73 includes/row-settings.php:352
650
  #: modules/separator/separator.php:76
651
  msgctxt "Border type."
652
  msgid "Dashed"
653
  msgstr ""
654
 
655
- #: includes/column-settings.php:74 includes/row-settings.php:353
656
  #: modules/separator/separator.php:77
657
  msgctxt "Border type."
658
  msgid "Dotted"
659
  msgstr ""
660
 
661
- #: includes/column-settings.php:75 includes/row-settings.php:354
662
  #: modules/separator/separator.php:78
663
  msgctxt "Border type."
664
  msgid "Double"
665
  msgstr ""
666
 
667
- #: includes/column-settings.php:119 includes/row-settings.php:398
668
  msgid "Top Width"
669
  msgstr ""
670
 
671
- #: includes/column-settings.php:131 includes/row-settings.php:410
672
  msgid "Bottom Width"
673
  msgstr ""
674
 
675
- #: includes/column-settings.php:143 includes/row-settings.php:422
676
  msgid "Left Width"
677
  msgstr ""
678
 
679
- #: includes/column-settings.php:155 includes/row-settings.php:434
680
  msgid "Right Width"
681
  msgstr ""
682
 
683
  #: includes/column-settings.php:170 includes/module-settings.php:6
684
- #: includes/row-settings.php:449 modules/content-slider/content-slider.php:267
685
  msgid "Advanced"
686
  msgstr ""
687
 
688
  #: includes/column-settings.php:173 includes/global-settings.php:41
689
- #: includes/global-settings.php:71 includes/module-settings.php:9
690
- #: includes/row-settings.php:452
691
  msgid "Margins"
692
  msgstr ""
693
 
694
  #: includes/column-settings.php:177 includes/column-settings.php:230
695
- #: includes/module-settings.php:13 includes/row-settings.php:456
696
- #: includes/row-settings.php:509 modules/slideshow/slideshow.php:475
697
  msgid "Top"
698
  msgstr ""
699
 
700
  #: includes/column-settings.php:189 includes/column-settings.php:242
701
- #: includes/module-settings.php:25 includes/row-settings.php:468
702
- #: includes/row-settings.php:521 modules/slideshow/slideshow.php:474
703
  msgid "Bottom"
704
  msgstr ""
705
 
706
  #: includes/column-settings.php:201 includes/column-settings.php:254
707
- #: includes/module-settings.php:37 includes/row-settings.php:480
708
- #: includes/row-settings.php:533 modules/button/button.php:177
709
- #: modules/callout/callout.php:250
710
- #: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
711
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
712
  #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
713
  #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
@@ -715,10 +826,10 @@ msgid "Left"
715
  msgstr ""
716
 
717
  #: includes/column-settings.php:213 includes/column-settings.php:266
718
- #: includes/module-settings.php:49 includes/row-settings.php:492
719
- #: includes/row-settings.php:545 modules/button/button.php:178
720
- #: modules/callout/callout.php:251
721
- #: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
722
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
723
  #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
724
  #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
@@ -726,49 +837,49 @@ msgid "Right"
726
  msgstr ""
727
 
728
  #: includes/column-settings.php:226 includes/global-settings.php:49
729
- #: includes/row-settings.php:505 modules/button/button.php:191
730
- #: modules/callout/callout.php:567
731
- #: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
732
  msgid "Padding"
733
  msgstr ""
734
 
735
- #: includes/column-settings.php:279 includes/global-settings.php:80
736
- #: includes/module-settings.php:62 includes/row-settings.php:558
737
  msgid "Responsive Layout"
738
  msgstr ""
739
 
740
  #: includes/column-settings.php:283 includes/module-settings.php:66
741
- #: includes/row-settings.php:562 modules/slideshow/slideshow.php:290
742
  msgid "Display"
743
  msgstr ""
744
 
745
  #: includes/column-settings.php:285 includes/module-settings.php:68
746
- #: includes/row-settings.php:564
747
  msgid "Always"
748
  msgstr ""
749
 
750
  #: includes/column-settings.php:286 includes/module-settings.php:69
751
- #: includes/row-settings.php:565
752
  msgid "Large Devices Only"
753
  msgstr ""
754
 
755
  #: includes/column-settings.php:287 includes/module-settings.php:70
756
- #: includes/row-settings.php:566
757
  msgid "Large &amp; Medium Devices Only"
758
  msgstr ""
759
 
760
  #: includes/column-settings.php:288 includes/module-settings.php:71
761
- #: includes/row-settings.php:567
762
  msgid "Medium Devices Only"
763
  msgstr ""
764
 
765
  #: includes/column-settings.php:289 includes/module-settings.php:72
766
- #: includes/row-settings.php:568
767
  msgid "Medium &amp; Small Devices Only"
768
  msgstr ""
769
 
770
  #: includes/column-settings.php:290 includes/module-settings.php:73
771
- #: includes/row-settings.php:569
772
  msgid "Small Devices Only"
773
  msgstr ""
774
 
@@ -785,16 +896,16 @@ msgid "The width of this column on medium devices such as tablets."
785
  msgstr ""
786
 
787
  #: includes/column-settings.php:302 includes/column-settings.php:330
788
- #: modules/callout/callout.php:281
789
- #: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
790
  #: modules/heading/heading.php:117 modules/heading/heading.php:144
791
  #: modules/heading/heading.php:174
792
  msgid "Default"
793
  msgstr ""
794
 
795
  #: includes/column-settings.php:303 includes/column-settings.php:331
796
- #: modules/button/button.php:151 modules/callout/callout.php:282
797
- #: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
798
  #: modules/heading/heading.php:118 modules/heading/heading.php:145
799
  #: modules/heading/heading.php:175
800
  #: modules/social-buttons/social-buttons.php:74
@@ -818,12 +929,12 @@ msgid "Custom Small Device Width"
818
  msgstr ""
819
 
820
  #: includes/column-settings.php:356 includes/module-settings.php:115
821
- #: includes/row-settings.php:579
822
  msgid "CSS Selectors"
823
  msgstr ""
824
 
825
  #: includes/column-settings.php:360 includes/loop-settings.php:27
826
- #: includes/module-settings.php:119 includes/row-settings.php:583
827
  msgid "ID"
828
  msgstr ""
829
 
@@ -858,7 +969,7 @@ msgstr ""
858
  msgid "Replace"
859
  msgstr ""
860
 
861
- #: includes/field-icon.php:7 includes/js-config.php:53
862
  msgid "Remove"
863
  msgstr ""
864
 
@@ -875,7 +986,7 @@ msgid "Start typing..."
875
  msgstr ""
876
 
877
  #: includes/field-link.php:7 includes/icon-selector.php:28
878
- #: includes/js-config.php:18 includes/settings.php:63
879
  #: includes/template-selector.php:102 includes/ui.php:11
880
  msgid "Cancel"
881
  msgstr ""
@@ -899,11 +1010,11 @@ msgstr ""
899
  msgid "Add Photos"
900
  msgstr ""
901
 
902
- #: includes/field-photo.php:3 includes/js-config.php:58
903
  msgid "Select Photo"
904
  msgstr ""
905
 
906
- #: includes/field-video.php:3 includes/js-config.php:60
907
  msgid "Select Video"
908
  msgstr ""
909
 
@@ -913,10 +1024,10 @@ msgstr ""
913
 
914
  #: includes/global-settings.php:7 includes/template-settings.php:7
915
  #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
916
- #: modules/button/button.php:46 modules/callout/callout.php:207
917
  #: modules/contact-form/contact-form.php:57
918
- #: modules/content-slider/content-slider.php:184
919
- #: modules/content-slider/content-slider.php:308 modules/cta/cta.php:65
920
  #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
921
  #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
922
  #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
@@ -973,28 +1084,48 @@ msgid ""
973
  "full width in the settings for each row."
974
  msgstr ""
975
 
976
- #: includes/global-settings.php:84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
977
  msgctxt ""
978
  "General settings form field label. Intended meaning: \"Responsive layout "
979
  "enabled?\""
980
  msgid "Enabled"
981
  msgstr ""
982
 
983
- #: includes/global-settings.php:98
984
  msgid "Medium Device Breakpoint"
985
  msgstr ""
986
 
987
- #: includes/global-settings.php:103
988
  msgid ""
989
  "The browser width at which the layout will adjust for medium devices such as "
990
  "tablets."
991
  msgstr ""
992
 
993
- #: includes/global-settings.php:107
994
  msgid "Small Device Breakpoint"
995
  msgstr ""
996
 
997
- #: includes/global-settings.php:112
998
  msgid ""
999
  "The browser width at which the layout will adjust for small devices such as "
1000
  "phones."
@@ -1005,81 +1136,85 @@ msgctxt "Select option for showing all icon libraries."
1005
  msgid "All Libraries"
1006
  msgstr ""
1007
 
1008
- #: includes/js-config.php:17
1009
  msgid "What would you like to do?"
1010
  msgstr ""
1011
 
1012
- #: includes/js-config.php:19
1013
  msgid "Change Template"
1014
  msgstr ""
1015
 
1016
- #: includes/js-config.php:20
1017
  msgid ""
1018
  "Warning! Changing the template will replace your existing layout. Do you "
1019
  "really want to do this?"
1020
  msgstr ""
1021
 
1022
- #: includes/js-config.php:21
1023
  msgid "Column"
1024
  msgstr ""
1025
 
1026
- #: includes/js-config.php:23
1027
  msgid ""
1028
  "Please select either a background layout or content layout before submitting."
1029
  msgstr ""
1030
 
1031
- #: includes/js-config.php:24
1032
  msgid "Do you really want to delete this item?"
1033
  msgstr ""
1034
 
1035
- #: includes/js-config.php:25
1036
  msgid ""
1037
  "Do you really want to delete this module? All content data will be "
1038
  "permanently deleted."
1039
  msgstr ""
1040
 
1041
- #: includes/js-config.php:26
1042
  msgid ""
1043
  "Do you really want to delete this row? All content data will be permanently "
1044
  "deleted."
1045
  msgstr ""
1046
 
1047
- #: includes/js-config.php:28
1048
  msgid "Discard Draft"
1049
  msgstr ""
1050
 
1051
- #: includes/js-config.php:29
1052
  msgid ""
1053
  "Do you really want to discard this draft? All of your changes that are not "
1054
  "published will be lost."
1055
  msgstr ""
1056
 
1057
- #: includes/js-config.php:30
 
 
 
 
1058
  msgid "Save Draft"
1059
  msgstr ""
1060
 
1061
- #: includes/js-config.php:31
1062
  msgctxt "Duplicate page/post action label."
1063
  msgid "Duplicate"
1064
  msgstr ""
1065
 
1066
- #: includes/js-config.php:32
1067
  msgid "Duplicate This Page"
1068
  msgstr ""
1069
 
1070
- #: includes/js-config.php:33
1071
  msgid "Duplicate This Template"
1072
  msgstr ""
1073
 
1074
- #: includes/js-config.php:34
1075
  msgid "Edit Global Settings"
1076
  msgstr ""
1077
 
1078
- #: includes/js-config.php:35
1079
  msgid "Drop a row layout or module to get started!"
1080
  msgstr ""
1081
 
1082
- #: includes/js-config.php:36
1083
  msgid ""
1084
  "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
1085
  "not functioning as expected the cause is most likely this error. Please help "
@@ -1087,113 +1222,257 @@ msgid ""
1087
  "each to determine if the issue is related to a third party plugin."
1088
  msgstr ""
1089
 
1090
- #: includes/js-config.php:37
1091
  msgid "Full Size"
1092
  msgstr ""
1093
 
1094
- #: includes/js-config.php:38
 
 
 
 
 
 
 
 
1095
  msgid "\"{message}\" on line {line} of {file}."
1096
  msgstr ""
1097
 
1098
- #: includes/js-config.php:39
1099
  msgid "Insert"
1100
  msgstr ""
1101
 
1102
- #: includes/js-config.php:40
1103
  msgid "Large"
1104
  msgstr ""
1105
 
1106
- #: includes/js-config.php:41
1107
  msgid "Manage Templates"
1108
  msgstr ""
1109
 
1110
- #: includes/js-config.php:42
1111
  msgid "Medium"
1112
  msgstr ""
1113
 
1114
- #: includes/js-config.php:43
1115
  msgid "Module"
1116
  msgstr ""
1117
 
1118
- #: includes/js-config.php:44
1119
  msgid "Move"
1120
  msgstr ""
1121
 
1122
- #: includes/js-config.php:45
1123
  msgid "New Column"
1124
  msgstr ""
1125
 
1126
- #: includes/js-config.php:46
1127
  msgid "New Row"
1128
  msgstr ""
1129
 
1130
- #: includes/js-config.php:47
1131
  msgid "No results found."
1132
  msgstr ""
1133
 
1134
- #: includes/js-config.php:48
 
 
 
 
1135
  msgid "OK"
1136
  msgstr ""
1137
 
1138
- #: includes/js-config.php:49 modules/photo/photo.php:454
1139
  msgid "Photo Page"
1140
  msgstr ""
1141
 
1142
- #: includes/js-config.php:50
1143
  msgid "Photo Selected"
1144
  msgstr ""
1145
 
1146
- #: includes/js-config.php:51
1147
  msgid "Photos Selected"
1148
  msgstr ""
1149
 
1150
- #: includes/js-config.php:52
1151
  msgid "Publish Changes"
1152
  msgstr ""
1153
 
1154
- #: includes/js-config.php:54
1155
  msgid "Row"
1156
  msgstr ""
1157
 
1158
- #: includes/js-config.php:55 includes/row-settings.php:6
1159
  msgid "Row Settings"
1160
  msgstr ""
1161
 
1162
- #: includes/js-config.php:56
1163
  msgid "Save Core Template"
1164
  msgstr ""
1165
 
1166
- #: includes/js-config.php:57 includes/ui.php:10
1167
  #: includes/user-template-settings.php:4
1168
  msgid "Save Template"
1169
  msgstr ""
1170
 
1171
- #: includes/js-config.php:59
1172
  msgid "Select Photos"
1173
  msgstr ""
1174
 
1175
- #: includes/js-config.php:62
 
 
 
 
1176
  msgid "Append New Layout"
1177
  msgstr ""
1178
 
1179
- #: includes/js-config.php:63
1180
  msgid "Replace Existing Layout"
1181
  msgstr ""
1182
 
1183
- #: includes/js-config.php:64
1184
  msgid "Template Saved!"
1185
  msgstr ""
1186
 
1187
- #: includes/js-config.php:65
1188
  msgid "Thumbnail"
1189
  msgstr ""
1190
 
1191
- #: includes/js-config.php:66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1192
  msgid ""
1193
  "The settings you are currently editing will not be saved if you navigate "
1194
  "away from this page."
1195
  msgstr ""
1196
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1197
  #: includes/loop-settings.php:19
1198
  msgid "Post Type"
1199
  msgstr ""
@@ -1308,14 +1587,14 @@ msgid "Slide Down"
1308
  msgstr ""
1309
 
1310
  #: includes/module-settings.php:102
1311
- #: modules/content-slider/content-slider.php:223
1312
  #: modules/testimonials/testimonials.php:91
1313
  msgid "Delay"
1314
  msgstr ""
1315
 
1316
  #: includes/module-settings.php:106 includes/row-settings.php:266
1317
- #: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
1318
- #: modules/content-slider/content-slider.php:244
1319
  #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
1320
  #: modules/slideshow/slideshow.php:581
1321
  #: modules/testimonials/testimonials.php:95
@@ -1334,7 +1613,7 @@ msgid ""
1334
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
1335
  msgstr ""
1336
 
1337
- #: includes/module-settings.php:127 includes/row-settings.php:591
1338
  msgid "Class"
1339
  msgstr ""
1340
 
@@ -1345,21 +1624,11 @@ msgid ""
1345
  "classes with spaces."
1346
  msgstr ""
1347
 
1348
- #: includes/row-settings.php:16 modules/button/button.php:146
1349
- #: modules/content-slider/content-slider.php:477
1350
  msgid "Width"
1351
  msgstr ""
1352
 
1353
- #: includes/row-settings.php:19 includes/row-settings.php:37
1354
- #: includes/row-settings.php:179
1355
- msgid "Fixed"
1356
- msgstr ""
1357
-
1358
- #: includes/row-settings.php:20 includes/row-settings.php:38
1359
- #: modules/button/button.php:150 modules/callout/callout.php:554
1360
- msgid "Full Width"
1361
- msgstr ""
1362
-
1363
  #: includes/row-settings.php:27
1364
  msgid ""
1365
  "Full width rows span the width of the page from edge to edge. Fixed rows are "
@@ -1380,7 +1649,7 @@ msgstr ""
1380
  msgid "Background"
1381
  msgstr ""
1382
 
1383
- #: includes/row-settings.php:68 modules/content-slider/content-slider.php:332
1384
  msgctxt "Background type."
1385
  msgid "None"
1386
  msgstr ""
@@ -1410,16 +1679,16 @@ msgctxt "Background type."
1410
  msgid "Parallax"
1411
  msgstr ""
1412
 
1413
- #: includes/row-settings.php:129 modules/content-slider/content-slider.php:353
1414
  msgid "Background Photo"
1415
  msgstr ""
1416
 
1417
  #: includes/row-settings.php:133 includes/row-settings.php:321
1418
- #: modules/callout/callout.php:314 modules/callout/callout.php:330
1419
- #: modules/callout/callout.php:334
1420
- #: modules/content-slider/content-slider.php:329
1421
- #: modules/content-slider/content-slider.php:398
1422
- #: modules/content-slider/content-slider.php:710 modules/photo/photo.php:25
1423
  #: modules/photo/photo.php:392
1424
  msgid "Photo"
1425
  msgstr ""
@@ -1484,9 +1753,9 @@ msgstr ""
1484
  msgid "Center Top"
1485
  msgstr ""
1486
 
1487
- #: includes/row-settings.php:165 modules/button/button.php:176
1488
- #: modules/callout/callout.php:249
1489
- #: modules/content-slider/content-slider.php:471 modules/cta/cta.php:124
1490
  #: modules/heading/heading.php:90 modules/heading/heading.php:162
1491
  #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1492
  #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
@@ -1544,7 +1813,7 @@ msgstr ""
1544
  msgid "Background Video"
1545
  msgstr ""
1546
 
1547
- #: includes/row-settings.php:207 modules/content-slider/content-slider.php:330
1548
  #: modules/video/video.php:19 modules/video/video.php:100
1549
  msgid "Video"
1550
  msgstr ""
@@ -1601,7 +1870,7 @@ msgstr ""
1601
  msgid "Speed"
1602
  msgstr ""
1603
 
1604
- #: includes/row-settings.php:273 modules/content-slider/content-slider.php:231
1605
  #: modules/slideshow/slideshow.php:389
1606
  #: modules/testimonials/testimonials.php:99
1607
  msgid "Transition"
@@ -1612,7 +1881,7 @@ msgctxt "Slideshow transition type."
1612
  msgid "None"
1613
  msgstr ""
1614
 
1615
- #: includes/row-settings.php:277 modules/content-slider/content-slider.php:235
1616
  #: modules/slideshow/slideshow.php:393
1617
  #: modules/testimonials/testimonials.php:103
1618
  msgid "Fade"
@@ -1654,7 +1923,7 @@ msgstr ""
1654
  msgid "Boxes Grow"
1655
  msgstr ""
1656
 
1657
- #: includes/row-settings.php:294 modules/content-slider/content-slider.php:240
1658
  #: modules/slideshow/slideshow.php:407
1659
  #: modules/testimonials/testimonials.php:108
1660
  msgid "Transition Speed"
@@ -1681,17 +1950,29 @@ msgstr ""
1681
  msgid "Slow"
1682
  msgstr ""
1683
 
1684
- #: includes/row-settings.php:571
 
 
 
 
 
 
 
 
 
 
 
 
1685
  msgid "Choose whether to show or hide this row at different device sizes."
1686
  msgstr ""
1687
 
1688
- #: includes/row-settings.php:584
1689
  msgid ""
1690
  "A unique ID that will be applied to this row's HTML. Must start with a "
1691
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
1692
  msgstr ""
1693
 
1694
- #: includes/row-settings.php:592
1695
  msgid ""
1696
  "A class that will be applied to this row's HTML. Must start with a letter "
1697
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
@@ -1753,70 +2034,58 @@ msgstr ""
1753
  msgid "Page Builder Demo"
1754
  msgstr ""
1755
 
1756
- #: includes/ui.php:37
1757
  msgid "Buy Now!"
1758
  msgstr ""
1759
 
1760
- #: includes/ui.php:39
1761
  msgid "Upgrade!"
1762
  msgstr ""
1763
 
1764
- #: includes/ui.php:41
1765
- msgid "Done"
1766
- msgstr ""
1767
-
1768
- #: includes/ui.php:42
1769
  msgid "Tools"
1770
  msgstr ""
1771
 
1772
- #: includes/ui.php:46
1773
- msgid "Add Content"
1774
- msgstr ""
1775
-
1776
- #: includes/ui.php:64
1777
  msgid "Row Layouts"
1778
  msgstr ""
1779
 
1780
- #: includes/ui.php:68
1781
  msgid "1 Column"
1782
  msgstr ""
1783
 
1784
- #: includes/ui.php:69
1785
  msgid "2 Columns"
1786
  msgstr ""
1787
 
1788
- #: includes/ui.php:70
1789
  msgid "3 Columns"
1790
  msgstr ""
1791
 
1792
- #: includes/ui.php:71
1793
  msgid "4 Columns"
1794
  msgstr ""
1795
 
1796
- #: includes/ui.php:72
1797
  msgid "5 Columns"
1798
  msgstr ""
1799
 
1800
- #: includes/ui.php:73
1801
  msgid "6 Columns"
1802
  msgstr ""
1803
 
1804
- #: includes/ui.php:74
1805
  msgid "Left Sidebar"
1806
  msgstr ""
1807
 
1808
- #: includes/ui.php:75
1809
  msgid "Right Sidebar"
1810
  msgstr ""
1811
 
1812
- #: includes/ui.php:76
1813
  msgid "Left &amp; Right Sidebar"
1814
  msgstr ""
1815
 
1816
- #: includes/ui.php:85 modules/widget/widget.php:16
1817
- msgid "WordPress Widgets"
1818
- msgstr ""
1819
-
1820
  #: includes/updater/classes/class-fl-updater.php:107
1821
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
1822
  msgstr ""
@@ -1875,20 +2144,6 @@ msgstr ""
1875
  msgid "Display a collapsible accordion of items."
1876
  msgstr ""
1877
 
1878
- #: modules/accordion/accordion.php:16 modules/button/button.php:16
1879
- #: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
1880
- #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
1881
- #: modules/gallery/gallery.php:16 modules/html/html.php:16
1882
- #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
1883
- #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
1884
- #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
1885
- #: modules/slideshow/slideshow.php:16
1886
- #: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
1887
- #: modules/testimonials/testimonials.php:16
1888
- #: modules/woocommerce/woocommerce.php:18
1889
- msgid "Advanced Modules"
1890
- msgstr ""
1891
-
1892
  #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
1893
  msgid "Items"
1894
  msgstr ""
@@ -1948,8 +2203,8 @@ msgstr ""
1948
  msgid "Content"
1949
  msgstr ""
1950
 
1951
- #: modules/button/button.php:14 modules/callout/callout.php:477
1952
- #: modules/content-slider/content-slider.php:595 modules/cta/cta.php:212
1953
  #: modules/pricing-table/pricing-table.php:129
1954
  msgid "Button"
1955
  msgstr ""
@@ -1958,117 +2213,139 @@ msgstr ""
1958
  msgid "A simple call to action button."
1959
  msgstr ""
1960
 
1961
- #: modules/button/button.php:54 modules/cta/cta.php:220
1962
  msgid "Click Here"
1963
  msgstr ""
1964
 
1965
- #: modules/button/button.php:62 modules/callout/callout.php:315
1966
- #: modules/callout/callout.php:363 modules/callout/callout.php:367
1967
- #: modules/cta/cta.php:228 modules/icon-group/icon-group.php:34
1968
  #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
1969
  #: modules/icon/icon.php:34
1970
  msgid "Icon"
1971
  msgstr ""
1972
 
1973
- #: modules/button/button.php:68 modules/button/button.php:72
1974
- #: modules/callout/callout.php:443 modules/callout/callout.php:447
1975
- #: modules/content-slider/content-slider.php:567
1976
- #: modules/content-slider/content-slider.php:571
1977
- #: modules/content-slider/content-slider.php:594 modules/cta/cta.php:238
1978
  #: modules/heading/heading.php:43 modules/heading/heading.php:47
1979
  #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
1980
  #: modules/slideshow/slideshow.php:343
1981
  msgid "Link"
1982
  msgstr ""
1983
 
1984
- #: modules/button/button.php:73
1985
  msgid "http://www.example.com"
1986
  msgstr ""
1987
 
1988
- #: modules/button/button.php:80 modules/callout/callout.php:455
1989
- #: modules/content-slider/content-slider.php:576 modules/cta/cta.php:245
1990
  #: modules/heading/heading.php:54 modules/icon/icon.php:50
1991
  #: modules/photo/photo.php:478
1992
  msgid "Link Target"
1993
  msgstr ""
1994
 
1995
- #: modules/button/button.php:83 modules/callout/callout.php:458
1996
- #: modules/content-slider/content-slider.php:579 modules/cta/cta.php:248
1997
  #: modules/heading/heading.php:57 modules/icon/icon.php:53
1998
  #: modules/photo/photo.php:481
1999
  msgid "Same Window"
2000
  msgstr ""
2001
 
2002
- #: modules/button/button.php:84 modules/callout/callout.php:459
2003
- #: modules/content-slider/content-slider.php:580 modules/cta/cta.php:249
2004
  #: modules/heading/heading.php:58 modules/icon/icon.php:54
2005
  #: modules/photo/photo.php:482
2006
  msgid "New Window"
2007
  msgstr ""
2008
 
2009
- #: modules/button/button.php:98 modules/cta/cta.php:185
2010
  #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
2011
  #: modules/icon/icon.php:78
2012
  msgid "Colors"
2013
  msgstr ""
2014
 
2015
- #: modules/button/button.php:108 modules/callout/callout.php:407
2016
- #: modules/callout/callout.php:512
2017
- #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:268
2018
  #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
2019
  msgid "Background Hover Color"
2020
  msgstr ""
2021
 
2022
- #: modules/button/button.php:117 modules/callout/callout.php:521
2023
- #: modules/content-slider/content-slider.php:522
2024
- #: modules/content-slider/content-slider.php:635
2025
- #: modules/content-slider/content-slider.php:719 modules/cta/cta.php:189
2026
- #: modules/cta/cta.php:277 modules/heading/heading.php:77
2027
  msgid "Text Color"
2028
  msgstr ""
2029
 
2030
- #: modules/button/button.php:123 modules/callout/callout.php:527
2031
- #: modules/content-slider/content-slider.php:641 modules/cta/cta.php:283
2032
  msgid "Text Hover Color"
2033
  msgstr ""
2034
 
2035
- #: modules/button/button.php:132 modules/callout/callout.php:415
2036
- #: modules/callout/callout.php:536
2037
- #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:292
 
 
 
 
 
2038
  #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
2039
  msgid "Gradient"
2040
  msgstr ""
2041
 
2042
- #: modules/button/button.php:142 modules/callout/callout.php:242
2043
- #: modules/cta/cta.php:102 modules/heading/heading.php:82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2044
  #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
2045
  msgid "Structure"
2046
  msgstr ""
2047
 
2048
- #: modules/button/button.php:149 modules/callout/callout.php:553
2049
  msgctxt "Width."
2050
  msgid "Auto"
2051
  msgstr ""
2052
 
2053
- #: modules/button/button.php:165
2054
  msgid "Custom Width"
2055
  msgstr ""
2056
 
2057
- #: modules/button/button.php:173 modules/cta/cta.php:120
2058
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
2059
  #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
2060
  #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
2061
  msgid "Alignment"
2062
  msgstr ""
2063
 
2064
- #: modules/button/button.php:183 modules/callout/callout.php:559
2065
- #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:306
2066
  #: modules/heading/heading.php:114 modules/heading/heading.php:171
2067
  msgid "Font Size"
2068
  msgstr ""
2069
 
2070
- #: modules/button/button.php:199 modules/callout/callout.php:575
2071
- #: modules/cta/cta.php:322
2072
  msgid "Round Corners"
2073
  msgstr ""
2074
 
@@ -2080,162 +2357,167 @@ msgstr ""
2080
  msgid "A heading and snippet of text with an optional link, icon and image."
2081
  msgstr ""
2082
 
2083
- #: modules/callout/callout.php:214
2084
- #: modules/content-slider/content-slider.php:407
2085
- #: modules/content-slider/content-slider.php:422 modules/cta/cta.php:72
2086
  #: modules/heading/heading.php:14 modules/heading/heading.php:33
2087
  #: modules/testimonials/testimonials.php:56
2088
  #: modules/testimonials/testimonials.php:61
2089
  msgid "Heading"
2090
  msgstr ""
2091
 
2092
- #: modules/callout/callout.php:246
2093
  msgid "Overall Alignment"
2094
  msgstr ""
2095
 
2096
- #: modules/callout/callout.php:253
2097
  msgid "The alignment that will apply to all elements within the callout."
2098
  msgstr ""
2099
 
2100
- #: modules/callout/callout.php:261 modules/cta/cta.php:145
2101
  msgid "Heading Structure"
2102
  msgstr ""
2103
 
2104
- #: modules/callout/callout.php:265
2105
- #: modules/content-slider/content-slider.php:426 modules/cta/cta.php:149
2106
  msgid "Heading Tag"
2107
  msgstr ""
2108
 
2109
- #: modules/callout/callout.php:278
2110
- #: modules/content-slider/content-slider.php:439
2111
- #: modules/content-slider/content-slider.php:453 modules/cta/cta.php:162
2112
  #: modules/testimonials/testimonials.php:69
2113
  msgid "Heading Size"
2114
  msgstr ""
2115
 
2116
- #: modules/callout/callout.php:292 modules/cta/cta.php:176
2117
  msgid "Heading Custom Size"
2118
  msgstr ""
2119
 
2120
- #: modules/callout/callout.php:310
2121
  msgid "Image Type"
2122
  msgstr ""
2123
 
2124
- #: modules/callout/callout.php:313
2125
  msgctxt "Image type."
2126
  msgid "None"
2127
  msgstr ""
2128
 
2129
- #: modules/callout/callout.php:338 modules/photo/photo.php:401
2130
  #: modules/slideshow/slideshow.php:312
2131
  msgid "Crop"
2132
  msgstr ""
2133
 
2134
- #: modules/callout/callout.php:341
2135
  msgctxt "Crop"
2136
  msgid "None"
2137
  msgstr ""
2138
 
2139
- #: modules/callout/callout.php:342 modules/photo/photo.php:405
2140
  msgid "Landscape"
2141
  msgstr ""
2142
 
2143
- #: modules/callout/callout.php:343 modules/photo/photo.php:406
2144
  msgid "Panorama"
2145
  msgstr ""
2146
 
2147
- #: modules/callout/callout.php:344 modules/photo/photo.php:407
2148
  msgid "Portrait"
2149
  msgstr ""
2150
 
2151
- #: modules/callout/callout.php:345 modules/photo/photo.php:408
2152
  msgid "Square"
2153
  msgstr ""
2154
 
2155
- #: modules/callout/callout.php:346 modules/photo/photo.php:409
2156
  msgid "Circle"
2157
  msgstr ""
2158
 
2159
- #: modules/callout/callout.php:354 modules/callout/callout.php:374
2160
  msgid "Above Heading"
2161
  msgstr ""
2162
 
2163
- #: modules/callout/callout.php:355 modules/callout/callout.php:375
2164
  msgid "Below Heading"
2165
  msgstr ""
2166
 
2167
- #: modules/callout/callout.php:356 modules/callout/callout.php:378
2168
  msgid "Left of Text and Heading"
2169
  msgstr ""
2170
 
2171
- #: modules/callout/callout.php:357 modules/callout/callout.php:379
2172
  msgid "Right of Text and Heading"
2173
  msgstr ""
2174
 
2175
- #: modules/callout/callout.php:376
2176
  msgid "Left of Heading"
2177
  msgstr ""
2178
 
2179
- #: modules/callout/callout.php:377
2180
  msgid "Right of Heading"
2181
  msgstr ""
2182
 
2183
- #: modules/callout/callout.php:385
2184
  msgid "Icon Colors"
2185
  msgstr ""
2186
 
2187
- #: modules/callout/callout.php:394 modules/icon-group/icon-group.php:56
2188
  #: modules/icon/icon.php:87
2189
  msgid "Hover Color"
2190
  msgstr ""
2191
 
2192
- #: modules/callout/callout.php:425
2193
  msgid "Icon Structure"
2194
  msgstr ""
2195
 
2196
- #: modules/callout/callout.php:429 modules/icon-group/icon-group.php:91
2197
  #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
2198
  msgid "Size"
2199
  msgstr ""
2200
 
2201
- #: modules/callout/callout.php:440
2202
- #: modules/content-slider/content-slider.php:564
2203
  msgid "Call To Action"
2204
  msgstr ""
2205
 
2206
- #: modules/callout/callout.php:448
2207
  msgid ""
2208
  "The link applies to the entire module. If choosing a call to action type "
2209
  "below, this link will also be used for the text or button."
2210
  msgstr ""
2211
 
2212
- #: modules/callout/callout.php:468
2213
- #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:14
2214
  msgid "Call to Action"
2215
  msgstr ""
2216
 
2217
- #: modules/callout/callout.php:475
2218
- #: modules/content-slider/content-slider.php:593
2219
  msgctxt "Call to action."
2220
  msgid "None"
2221
  msgstr ""
2222
 
2223
- #: modules/callout/callout.php:496
2224
- #: modules/content-slider/content-slider.php:614
2225
  msgid "Button Icon"
2226
  msgstr ""
2227
 
2228
- #: modules/callout/callout.php:502
2229
- #: modules/content-slider/content-slider.php:620 modules/cta/cta.php:258
2230
  msgid "Button Colors"
2231
  msgstr ""
2232
 
2233
- #: modules/callout/callout.php:546
2234
- #: modules/content-slider/content-slider.php:656 modules/cta/cta.php:302
 
 
 
 
 
2235
  msgid "Button Structure"
2236
  msgstr ""
2237
 
2238
- #: modules/callout/callout.php:550
2239
  msgid "Button Width"
2240
  msgstr ""
2241
 
@@ -2320,214 +2602,214 @@ msgstr ""
2320
  msgid "Displays multiple slides with an optional heading and call to action."
2321
  msgstr ""
2322
 
2323
- #: modules/content-slider/content-slider.php:191 modules/map/map.php:41
2324
  #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
2325
  msgid "Height"
2326
  msgstr ""
2327
 
2328
- #: modules/content-slider/content-slider.php:196
2329
  msgid ""
2330
  "This setting is the minimum height of the content slider. Content will "
2331
  "expand the height automatically."
2332
  msgstr ""
2333
 
2334
- #: modules/content-slider/content-slider.php:200
2335
  #: modules/slideshow/slideshow.php:373
2336
  #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
2337
  msgid "Auto Play"
2338
  msgstr ""
2339
 
2340
- #: modules/content-slider/content-slider.php:214
2341
  msgid "Show Play/Pause"
2342
  msgstr ""
2343
 
2344
- #: modules/content-slider/content-slider.php:234
2345
  #: modules/testimonials/testimonials.php:102
2346
  msgctxt "Transition type."
2347
  msgid "Slide"
2348
  msgstr ""
2349
 
2350
- #: modules/content-slider/content-slider.php:248
2351
  #: modules/testimonials/testimonials.php:121
2352
  msgid "Show Arrows"
2353
  msgstr ""
2354
 
2355
- #: modules/content-slider/content-slider.php:257
2356
  #: modules/testimonials/testimonials.php:151
2357
  msgid "Show Dots"
2358
  msgstr ""
2359
 
2360
- #: modules/content-slider/content-slider.php:271
2361
  msgid "Max Content Width"
2362
  msgstr ""
2363
 
2364
- #: modules/content-slider/content-slider.php:276
2365
  msgid "The max width that the content area will be within your slides."
2366
  msgstr ""
2367
 
2368
- #: modules/content-slider/content-slider.php:283
2369
  msgid "Slides"
2370
  msgstr ""
2371
 
2372
- #: modules/content-slider/content-slider.php:290
2373
  msgid "Slide"
2374
  msgstr ""
2375
 
2376
- #: modules/content-slider/content-slider.php:305
2377
  msgid "Slide Settings"
2378
  msgstr ""
2379
 
2380
- #: modules/content-slider/content-slider.php:315
2381
  msgid "Slide Label"
2382
  msgstr ""
2383
 
2384
- #: modules/content-slider/content-slider.php:316
2385
  msgid ""
2386
  "A label to identify this slide on the Slides tab of the Content Slider "
2387
  "settings."
2388
  msgstr ""
2389
 
2390
- #: modules/content-slider/content-slider.php:321
2391
  msgid "Background Layout"
2392
  msgstr ""
2393
 
2394
- #: modules/content-slider/content-slider.php:327
2395
  msgid "This setting is for the entire background of your slide."
2396
  msgstr ""
2397
 
2398
- #: modules/content-slider/content-slider.php:362
2399
  msgid "Background Video Code"
2400
  msgstr ""
2401
 
2402
- #: modules/content-slider/content-slider.php:368
2403
  msgid "Content Layout"
2404
  msgstr ""
2405
 
2406
- #: modules/content-slider/content-slider.php:374
2407
  msgid ""
2408
  "This allows you to add content over or in addition to the background "
2409
  "selection above. The location of the content layout can be selected in the "
2410
  "style tab."
2411
  msgstr ""
2412
 
2413
- #: modules/content-slider/content-slider.php:377
2414
  msgid "Text &amp; Photo"
2415
  msgstr ""
2416
 
2417
- #: modules/content-slider/content-slider.php:378
2418
  msgid "Text &amp; Video"
2419
  msgstr ""
2420
 
2421
- #: modules/content-slider/content-slider.php:379
2422
  msgctxt "Content type."
2423
  msgid "None"
2424
  msgstr ""
2425
 
2426
- #: modules/content-slider/content-slider.php:402 modules/video/video.php:132
2427
  msgid "Video Embed Code"
2428
  msgstr ""
2429
 
2430
- #: modules/content-slider/content-slider.php:462
2431
  msgid "Text Position"
2432
  msgstr ""
2433
 
2434
- #: modules/content-slider/content-slider.php:468
2435
  msgid ""
2436
  "The position will move the content layout selections left, right or center "
2437
  "over the background of the slide."
2438
  msgstr ""
2439
 
2440
- #: modules/content-slider/content-slider.php:485
2441
  msgid "Top Margin"
2442
  msgstr ""
2443
 
2444
- #: modules/content-slider/content-slider.php:493
2445
  msgid "Bottom Margin"
2446
  msgstr ""
2447
 
2448
- #: modules/content-slider/content-slider.php:501
2449
  msgid "Left Margin"
2450
  msgstr ""
2451
 
2452
- #: modules/content-slider/content-slider.php:509
2453
  msgid "Right Margin"
2454
  msgstr ""
2455
 
2456
- #: modules/content-slider/content-slider.php:518
2457
  msgid "Text Colors"
2458
  msgstr ""
2459
 
2460
- #: modules/content-slider/content-slider.php:528
2461
  msgid "Text Shadow"
2462
  msgstr ""
2463
 
2464
- #: modules/content-slider/content-slider.php:537
2465
- #: modules/content-slider/content-slider.php:725
2466
  msgid "Text Background Color"
2467
  msgstr ""
2468
 
2469
- #: modules/content-slider/content-slider.php:538
2470
  msgid ""
2471
  "The color applies to the overlay behind text over the background selections."
2472
  msgstr ""
2473
 
2474
- #: modules/content-slider/content-slider.php:543
2475
  msgid "Text Background Opacity"
2476
  msgstr ""
2477
 
2478
- #: modules/content-slider/content-slider.php:551
2479
  msgid "Text Background Height"
2480
  msgstr ""
2481
 
2482
- #: modules/content-slider/content-slider.php:553
2483
  msgid ""
2484
  "Auto will allow the overlay to fit however long the text content is. 100% "
2485
  "will fit the overlay to the top and bottom of the slide."
2486
  msgstr ""
2487
 
2488
- #: modules/content-slider/content-slider.php:555
2489
  msgctxt "Background height."
2490
  msgid "Auto"
2491
  msgstr ""
2492
 
2493
- #: modules/content-slider/content-slider.php:572
2494
  msgid ""
2495
  "The link applies to the entire slide. If choosing a call to action type "
2496
  "below, this link will also be used for the text or button."
2497
  msgstr ""
2498
 
2499
- #: modules/content-slider/content-slider.php:676
2500
  msgid "Border Radius"
2501
  msgstr ""
2502
 
2503
- #: modules/content-slider/content-slider.php:687
2504
  msgctxt "Module settings form tab. Display on mobile devices."
2505
  msgid "Mobile"
2506
  msgstr ""
2507
 
2508
- #: modules/content-slider/content-slider.php:690
2509
  msgid "Mobile Photo"
2510
  msgstr ""
2511
 
2512
- #: modules/content-slider/content-slider.php:696
2513
  msgid ""
2514
  "You can choose a different photo that the slide will change to on mobile "
2515
  "devices or no photo if desired."
2516
  msgstr ""
2517
 
2518
- #: modules/content-slider/content-slider.php:698
2519
  msgid "Use Main Photo"
2520
  msgstr ""
2521
 
2522
- #: modules/content-slider/content-slider.php:699
2523
  msgid "Choose Another Photo"
2524
  msgstr ""
2525
 
2526
- #: modules/content-slider/content-slider.php:700
2527
  msgid "No Photo"
2528
  msgstr ""
2529
 
2530
- #: modules/content-slider/content-slider.php:715
2531
  msgid "Mobile Text Colors"
2532
  msgstr ""
2533
 
@@ -2535,38 +2817,34 @@ msgstr ""
2535
  msgid "Display a heading, subheading and a button."
2536
  msgstr ""
2537
 
2538
- #: modules/cta/cta.php:73
2539
  msgid "Ready to find out more?"
2540
  msgstr ""
2541
 
2542
- #: modules/cta/cta.php:88
2543
  msgid "Drop us a line today for a free quote!"
2544
  msgstr ""
2545
 
2546
- #: modules/cta/cta.php:106 modules/gallery/gallery.php:220
2547
  #: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
2548
  #: modules/testimonials/testimonials.php:37
2549
  #: modules/woocommerce/woocommerce.php:57
2550
  msgid "Layout"
2551
  msgstr ""
2552
 
2553
- #: modules/cta/cta.php:109
2554
  msgid "Inline"
2555
  msgstr ""
2556
 
2557
- #: modules/cta/cta.php:110
2558
  msgid "Stacked"
2559
  msgstr ""
2560
 
2561
- #: modules/cta/cta.php:130 modules/icon-group/icon-group.php:99
2562
  msgid "Spacing"
2563
  msgstr ""
2564
 
2565
- #: modules/cta/cta.php:201
2566
- msgid "Background Opacity"
2567
- msgstr ""
2568
-
2569
- #: modules/cta/cta.php:234
2570
  msgid "Button Link"
2571
  msgstr ""
2572
 
@@ -2654,12 +2932,6 @@ msgstr ""
2654
  msgid "Display a title/page heading."
2655
  msgstr ""
2656
 
2657
- #: modules/heading/heading.php:16 modules/photo/photo.php:27
2658
- #: modules/rich-text/rich-text.php:16 modules/separator/separator.php:16
2659
- #: modules/video/video.php:21
2660
- msgid "Basic Modules"
2661
- msgstr ""
2662
-
2663
  #: modules/heading/heading.php:101
2664
  msgid "HTML Tag"
2665
  msgstr ""
@@ -2915,10 +3187,6 @@ msgid ""
2915
  "numbers of features."
2916
  msgstr ""
2917
 
2918
- #: modules/pricing-table/pricing-table.php:67
2919
- msgid "Border Size"
2920
- msgstr ""
2921
-
2922
  #: modules/pricing-table/pricing-table.php:70
2923
  msgctxt "Border size."
2924
  msgid "Wide"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "POT-Creation-Date: 2015-03-01 14:02-0800\n"
5
+ "PO-Revision-Date: 2015-03-01 14:03-0800\n"
6
  "Last-Translator: WebMan - Oliver Juhas <webmandesigneu@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
39
  msgstr ""
40
 
41
  #: classes/class-fl-builder-admin-settings.php:126
42
+ #: includes/global-settings.php:90
43
  msgid "Modules"
44
  msgstr ""
45
 
46
+ #: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:47
47
  msgid "Templates"
48
  msgstr ""
49
 
67
  msgstr ""
68
 
69
  #: classes/class-fl-builder-admin-settings.php:150
70
+ msgid "Help Button"
71
+ msgstr ""
72
+
73
+ #: classes/class-fl-builder-admin-settings.php:154
74
  #: includes/admin-settings-uninstall.php:3
75
  #: includes/admin-settings-uninstall.php:15
76
  msgid "Uninstall"
77
  msgstr ""
78
 
79
+ #: classes/class-fl-builder-admin-settings.php:376
80
  msgid "Error! You must have at least one icon set enabled."
81
  msgstr ""
82
 
83
+ #: classes/class-fl-builder-admin-settings.php:418
84
  msgid "Error! Could not unzip file."
85
  msgstr ""
86
 
87
+ #: classes/class-fl-builder-admin-settings.php:452
88
  msgid "Error! Please upload an icon set from either Icomoon or Fontello."
89
  msgstr ""
90
 
91
+ #: classes/class-fl-builder-admin-settings.php:566
92
+ msgid "Error! Please enter an iframe for the video embed code."
93
+ msgstr ""
94
+
95
+ #: classes/class-fl-builder-admin-settings.php:584
96
+ msgid "Error! You must have at least one feature of the help button enabled."
97
+ msgstr ""
98
+
99
  #: classes/class-fl-builder-admin.php:40
100
  #, php-format
101
  msgid ""
121
  msgstr ""
122
 
123
  #: classes/class-fl-builder-admin.php:202
124
+ #: classes/class-fl-builder-model.php:2594
125
  msgid "Page Builder"
126
  msgstr ""
127
 
128
+ #: classes/class-fl-builder-model.php:1385
129
  #, php-format
130
  msgctxt "%s stands for the module filename"
131
  msgid ""
133
  "module filenames to ensure compatibility with Beaver Builder."
134
  msgstr ""
135
 
136
+ #: classes/class-fl-builder-model.php:1443
137
+ #: classes/class-fl-builder-model.php:1497 modules/heading/heading.php:16
138
+ #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
139
+ #: modules/separator/separator.php:16 modules/video/video.php:21
140
+ msgid "Basic Modules"
141
+ msgstr ""
142
+
143
+ #: classes/class-fl-builder-model.php:1444
144
+ #: classes/class-fl-builder-model.php:1498 modules/accordion/accordion.php:16
145
+ #: modules/button/button.php:16 modules/callout/callout.php:16
146
+ #: modules/contact-form/contact-form.php:16
147
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
148
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
149
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
150
+ #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
151
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
152
+ #: modules/slideshow/slideshow.php:16
153
+ #: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
154
+ #: modules/testimonials/testimonials.php:16
155
+ #: modules/woocommerce/woocommerce.php:18
156
+ msgid "Advanced Modules"
157
+ msgstr ""
158
+
159
+ #: classes/class-fl-builder-model.php:1445
160
+ #: classes/class-fl-builder-model.php:1499
161
+ msgid "Other Modules"
162
+ msgstr ""
163
+
164
+ #: classes/class-fl-builder-model.php:1446
165
+ #: classes/class-fl-builder-model.php:1500 includes/ui.php:88
166
+ #: modules/widget/widget.php:16
167
+ msgid "WordPress Widgets"
168
+ msgstr ""
169
+
170
+ #: classes/class-fl-builder-model.php:2009
171
  #, php-format
172
  msgctxt "%s stands for post/page title."
173
  msgid "Copy of %s"
197
  msgid "Page Builder Templates"
198
  msgstr ""
199
 
200
+ #: classes/class-fl-builder.php:709
201
  #, php-format
202
  msgctxt "Field name to add."
203
  msgid "Add %s"
204
  msgstr ""
205
 
206
+ #: classes/class-fl-builder.php:772 classes/class-fl-builder.php:774
207
  msgctxt "Custom post type label."
208
  msgid "Layout Templates"
209
  msgstr ""
210
 
211
+ #: classes/class-fl-builder.php:773 classes/class-fl-builder.php:775
212
  msgctxt "Custom post type label."
213
  msgid "Layout Template"
214
  msgstr ""
215
 
216
+ #: classes/class-fl-builder.php:776
217
  msgctxt "Custom post type label."
218
  msgid "Add New"
219
  msgstr ""
220
 
221
+ #: classes/class-fl-builder.php:777
222
  msgctxt "Custom post type label."
223
  msgid "Add New Layout Template"
224
  msgstr ""
225
 
226
+ #: classes/class-fl-builder.php:778
227
  msgctxt "Custom post type label."
228
  msgid "New Layout Template"
229
  msgstr ""
230
 
231
+ #: classes/class-fl-builder.php:779
232
  msgctxt "Custom post type label."
233
  msgid "Edit Layout Template"
234
  msgstr ""
235
 
236
+ #: classes/class-fl-builder.php:780
237
  msgctxt "Custom post type label."
238
  msgid "View Layout Template"
239
  msgstr ""
240
 
241
+ #: classes/class-fl-builder.php:781
242
  msgctxt "Custom post type label."
243
  msgid "All Layout Templates"
244
  msgstr ""
245
 
246
+ #: classes/class-fl-builder.php:782
247
  msgctxt "Custom post type label."
248
  msgid "Search Layout Templates"
249
  msgstr ""
250
 
251
+ #: classes/class-fl-builder.php:783
252
  msgctxt "Custom post type label."
253
  msgid "Parent Layout Templates:"
254
  msgstr ""
255
 
256
+ #: classes/class-fl-builder.php:784
257
  msgctxt "Custom post type label."
258
  msgid "No layout templates found."
259
  msgstr ""
260
 
261
+ #: classes/class-fl-builder.php:785
262
  msgctxt "Custom post type label."
263
  msgid "No layout templates found in Trash."
264
  msgstr ""
265
 
266
+ #: classes/class-fl-builder.php:1150 includes/js-config.php:66
267
  #, php-format
268
  msgctxt "%s stands for module name."
269
  msgid "%s Settings"
285
  msgid "Launch %s"
286
  msgstr ""
287
 
288
+ #: includes/admin-posts.php:15
289
+ #, php-format
290
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
291
+ msgid ""
292
+ "Switching to Text Editor mode will disable your %s layout until it is "
293
+ "enabled again. Any edits made while in Text Editor mode will not be made on "
294
+ "your %s layout. Do you want to continue?"
295
+ msgstr ""
296
+
297
  #: includes/admin-settings-branding.php:7
298
  msgid "White label the page builder by entering a custom name below."
299
  msgstr ""
330
  msgid "Save Editing Settings"
331
  msgstr ""
332
 
333
+ #: includes/admin-settings-help-button.php:8
334
+ msgid "Help Button Settings"
335
+ msgstr ""
336
+
337
+ #: includes/admin-settings-help-button.php:17
338
+ msgid "Enable Help Button"
339
+ msgstr ""
340
+
341
+ #: includes/admin-settings-help-button.php:23
342
+ msgid "Help Tour"
343
+ msgstr ""
344
+
345
+ #: includes/admin-settings-help-button.php:27
346
+ msgid "Enable Help Tour"
347
+ msgstr ""
348
+
349
+ #: includes/admin-settings-help-button.php:31
350
+ msgid "Help Video"
351
+ msgstr ""
352
+
353
+ #: includes/admin-settings-help-button.php:35
354
+ msgid "Enable Help Video"
355
+ msgstr ""
356
+
357
+ #: includes/admin-settings-help-button.php:39
358
+ msgid "Help Video Embed Code"
359
+ msgstr ""
360
+
361
+ #: includes/admin-settings-help-button.php:45
362
+ msgid "Knowledge Base"
363
+ msgstr ""
364
+
365
+ #: includes/admin-settings-help-button.php:49
366
+ msgid "Enable Knowledge Base"
367
+ msgstr ""
368
+
369
+ #: includes/admin-settings-help-button.php:53
370
+ msgid "Knowledge Base URL"
371
+ msgstr ""
372
+
373
+ #: includes/admin-settings-help-button.php:59
374
+ msgid "Forums"
375
+ msgstr ""
376
+
377
+ #: includes/admin-settings-help-button.php:63
378
+ msgid "Enable Forums"
379
+ msgstr ""
380
+
381
+ #: includes/admin-settings-help-button.php:67
382
+ msgid "Forums URL"
383
+ msgstr ""
384
+
385
+ #: includes/admin-settings-help-button.php:77
386
+ msgid "Save Help Button Settings"
387
+ msgstr ""
388
+
389
  #: includes/admin-settings-icons.php:3
390
  msgid "Icon Settings"
391
  msgstr ""
542
  msgid "Name"
543
  msgstr ""
544
 
545
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:305
546
  #: modules/post-grid/post-grid.php:113
547
  msgid "Image"
548
  msgstr ""
549
 
550
  #: includes/admin-templates-edit.php:16 includes/row-settings.php:155
551
+ #: includes/template-settings.php:23 modules/callout/callout.php:353
552
+ #: modules/callout/callout.php:373
553
+ #: modules/content-slider/content-slider.php:472
554
  #: modules/post-grid/post-grid.php:127
555
  msgid "Position"
556
  msgstr ""
561
  msgstr ""
562
 
563
  #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
564
+ #: includes/global-settings.php:18 includes/global-settings.php:110
565
  #: includes/row-settings.php:307 includes/template-settings.php:31
566
+ #: modules/accordion/accordion.php:90 modules/callout/callout.php:420
567
+ #: modules/content-slider/content-slider.php:209
568
+ #: modules/content-slider/content-slider.php:223
569
+ #: modules/content-slider/content-slider.php:257
570
+ #: modules/content-slider/content-slider.php:266
571
+ #: modules/content-slider/content-slider.php:537
 
 
572
  #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
573
  #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
574
  #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
590
  msgstr ""
591
 
592
  #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
593
+ #: includes/global-settings.php:19 includes/global-settings.php:111
594
  #: includes/row-settings.php:308 includes/template-settings.php:32
595
+ #: modules/accordion/accordion.php:89 modules/callout/callout.php:421
596
+ #: modules/content-slider/content-slider.php:210
597
+ #: modules/content-slider/content-slider.php:224
598
+ #: modules/content-slider/content-slider.php:258
599
+ #: modules/content-slider/content-slider.php:267
600
+ #: modules/content-slider/content-slider.php:538
 
 
601
  #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
602
  #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
603
  #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
664
  msgid "Delete"
665
  msgstr ""
666
 
667
+ #: includes/admin-templates.php:40 includes/js-config.php:28
668
  msgid "Do you really want to delete this template?"
669
  msgstr ""
670
 
671
+ #: includes/column-settings.php:4 includes/js-config.php:23
672
  msgid "Column Settings"
673
  msgstr ""
674
 
675
  #: includes/column-settings.php:7 includes/module-settings.php:87
676
  #: includes/row-settings.php:9 modules/accordion/accordion.php:45
677
+ #: modules/button/button.php:108 modules/button/button.php:146
678
+ #: modules/button/button.php:150 modules/callout/callout.php:241
679
+ #: modules/callout/callout.php:543
680
+ #: modules/content-slider/content-slider.php:425
681
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
682
+ #: modules/cta/cta.php:299 modules/heading/heading.php:69
683
+ #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
684
+ #: modules/pricing-table/pricing-table.php:43
685
  #: modules/pricing-table/pricing-table.php:155
686
  #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
687
  msgid "Style"
692
  msgstr ""
693
 
694
  #: includes/column-settings.php:26 includes/row-settings.php:48
695
+ #: modules/button/button.php:66 modules/callout/callout.php:225
696
+ #: modules/callout/callout.php:478 modules/callout/callout.php:494
697
+ #: modules/content-slider/content-slider.php:382
698
+ #: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
699
+ #: modules/cta/cta.php:221
700
  msgid "Text"
701
  msgstr ""
702
 
703
  #: includes/column-settings.php:30 includes/column-settings.php:43
704
  #: includes/column-settings.php:100 includes/row-settings.php:52
705
+ #: includes/row-settings.php:109 includes/row-settings.php:403
706
+ #: modules/callout/callout.php:391
707
+ #: modules/content-slider/content-slider.php:337
708
  #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
709
  #: modules/separator/separator.php:34
710
  msgid "Color"
711
  msgstr ""
712
 
713
  #: includes/column-settings.php:39 includes/row-settings.php:105
714
+ #: modules/button/button.php:115 modules/callout/callout.php:404
715
+ #: modules/callout/callout.php:508
716
+ #: modules/content-slider/content-slider.php:363
717
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
718
+ #: modules/cta/cta.php:264 modules/icon-group/icon-group.php:64
719
  #: modules/icon/icon.php:95
720
  msgid "Background Color"
721
  msgstr ""
722
 
723
  #: includes/column-settings.php:51 includes/column-settings.php:108
724
+ #: includes/row-settings.php:117 includes/row-settings.php:411
725
  #: modules/separator/separator.php:44
726
  msgid "Opacity"
727
  msgstr ""
728
 
729
+ #: includes/column-settings.php:63 includes/row-settings.php:366
730
  msgid "Border"
731
  msgstr ""
732
 
733
  #: includes/column-settings.php:67 includes/row-settings.php:65
734
+ #: includes/row-settings.php:370 modules/callout/callout.php:474
735
+ #: modules/content-slider/content-slider.php:331
736
+ #: modules/content-slider/content-slider.php:378
737
+ #: modules/content-slider/content-slider.php:596
738
+ #: modules/content-slider/content-slider.php:729
739
  #: modules/slideshow/slideshow.php:339
740
  msgid "Type"
741
  msgstr ""
742
 
743
+ #: includes/column-settings.php:69 includes/row-settings.php:372
744
  msgid ""
745
  "The type of border to use. Double borders must have a width of at least 3px "
746
  "to render properly."
747
  msgstr ""
748
 
749
+ #: includes/column-settings.php:71 includes/row-settings.php:374
750
  msgctxt "Border type."
751
  msgid "None"
752
  msgstr ""
753
 
754
+ #: includes/column-settings.php:72 includes/row-settings.php:375
755
  #: modules/separator/separator.php:75
756
  msgctxt "Border type."
757
  msgid "Solid"
758
  msgstr ""
759
 
760
+ #: includes/column-settings.php:73 includes/row-settings.php:376
761
  #: modules/separator/separator.php:76
762
  msgctxt "Border type."
763
  msgid "Dashed"
764
  msgstr ""
765
 
766
+ #: includes/column-settings.php:74 includes/row-settings.php:377
767
  #: modules/separator/separator.php:77
768
  msgctxt "Border type."
769
  msgid "Dotted"
770
  msgstr ""
771
 
772
+ #: includes/column-settings.php:75 includes/row-settings.php:378
773
  #: modules/separator/separator.php:78
774
  msgctxt "Border type."
775
  msgid "Double"
776
  msgstr ""
777
 
778
+ #: includes/column-settings.php:119 includes/row-settings.php:422
779
  msgid "Top Width"
780
  msgstr ""
781
 
782
+ #: includes/column-settings.php:131 includes/row-settings.php:434
783
  msgid "Bottom Width"
784
  msgstr ""
785
 
786
+ #: includes/column-settings.php:143 includes/row-settings.php:446
787
  msgid "Left Width"
788
  msgstr ""
789
 
790
+ #: includes/column-settings.php:155 includes/row-settings.php:458
791
  msgid "Right Width"
792
  msgstr ""
793
 
794
  #: includes/column-settings.php:170 includes/module-settings.php:6
795
+ #: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
796
  msgid "Advanced"
797
  msgstr ""
798
 
799
  #: includes/column-settings.php:173 includes/global-settings.php:41
800
+ #: includes/global-settings.php:94 includes/module-settings.php:9
801
+ #: includes/row-settings.php:476
802
  msgid "Margins"
803
  msgstr ""
804
 
805
  #: includes/column-settings.php:177 includes/column-settings.php:230
806
+ #: includes/module-settings.php:13 includes/row-settings.php:480
807
+ #: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
808
  msgid "Top"
809
  msgstr ""
810
 
811
  #: includes/column-settings.php:189 includes/column-settings.php:242
812
+ #: includes/module-settings.php:25 includes/row-settings.php:492
813
+ #: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
814
  msgid "Bottom"
815
  msgstr ""
816
 
817
  #: includes/column-settings.php:201 includes/column-settings.php:254
818
+ #: includes/module-settings.php:37 includes/row-settings.php:504
819
+ #: includes/row-settings.php:557 modules/button/button.php:219
820
+ #: modules/callout/callout.php:252
821
+ #: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
822
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
823
  #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
824
  #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
826
  msgstr ""
827
 
828
  #: includes/column-settings.php:213 includes/column-settings.php:266
829
+ #: includes/module-settings.php:49 includes/row-settings.php:516
830
+ #: includes/row-settings.php:569 modules/button/button.php:220
831
+ #: modules/callout/callout.php:253
832
+ #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
833
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
834
  #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
835
  #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
837
  msgstr ""
838
 
839
  #: includes/column-settings.php:226 includes/global-settings.php:49
840
+ #: includes/row-settings.php:529 modules/button/button.php:233
841
+ #: modules/callout/callout.php:598
842
+ #: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
843
  msgid "Padding"
844
  msgstr ""
845
 
846
+ #: includes/column-settings.php:279 includes/global-settings.php:103
847
+ #: includes/module-settings.php:62 includes/row-settings.php:582
848
  msgid "Responsive Layout"
849
  msgstr ""
850
 
851
  #: includes/column-settings.php:283 includes/module-settings.php:66
852
+ #: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
853
  msgid "Display"
854
  msgstr ""
855
 
856
  #: includes/column-settings.php:285 includes/module-settings.php:68
857
+ #: includes/row-settings.php:588
858
  msgid "Always"
859
  msgstr ""
860
 
861
  #: includes/column-settings.php:286 includes/module-settings.php:69
862
+ #: includes/row-settings.php:589
863
  msgid "Large Devices Only"
864
  msgstr ""
865
 
866
  #: includes/column-settings.php:287 includes/module-settings.php:70
867
+ #: includes/row-settings.php:590
868
  msgid "Large &amp; Medium Devices Only"
869
  msgstr ""
870
 
871
  #: includes/column-settings.php:288 includes/module-settings.php:71
872
+ #: includes/row-settings.php:591
873
  msgid "Medium Devices Only"
874
  msgstr ""
875
 
876
  #: includes/column-settings.php:289 includes/module-settings.php:72
877
+ #: includes/row-settings.php:592
878
  msgid "Medium &amp; Small Devices Only"
879
  msgstr ""
880
 
881
  #: includes/column-settings.php:290 includes/module-settings.php:73
882
+ #: includes/row-settings.php:593
883
  msgid "Small Devices Only"
884
  msgstr ""
885
 
896
  msgstr ""
897
 
898
  #: includes/column-settings.php:302 includes/column-settings.php:330
899
+ #: modules/callout/callout.php:283
900
+ #: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
901
  #: modules/heading/heading.php:117 modules/heading/heading.php:144
902
  #: modules/heading/heading.php:174
903
  msgid "Default"
904
  msgstr ""
905
 
906
  #: includes/column-settings.php:303 includes/column-settings.php:331
907
+ #: modules/button/button.php:193 modules/callout/callout.php:284
908
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
909
  #: modules/heading/heading.php:118 modules/heading/heading.php:145
910
  #: modules/heading/heading.php:175
911
  #: modules/social-buttons/social-buttons.php:74
929
  msgstr ""
930
 
931
  #: includes/column-settings.php:356 includes/module-settings.php:115
932
+ #: includes/row-settings.php:603
933
  msgid "CSS Selectors"
934
  msgstr ""
935
 
936
  #: includes/column-settings.php:360 includes/loop-settings.php:27
937
+ #: includes/module-settings.php:119 includes/row-settings.php:607
938
  msgid "ID"
939
  msgstr ""
940
 
969
  msgid "Replace"
970
  msgstr ""
971
 
972
+ #: includes/field-icon.php:7 includes/js-config.php:58
973
  msgid "Remove"
974
  msgstr ""
975
 
986
  msgstr ""
987
 
988
  #: includes/field-link.php:7 includes/icon-selector.php:28
989
+ #: includes/js-config.php:19 includes/settings.php:63
990
  #: includes/template-selector.php:102 includes/ui.php:11
991
  msgid "Cancel"
992
  msgstr ""
1010
  msgid "Add Photos"
1011
  msgstr ""
1012
 
1013
+ #: includes/field-photo.php:3 includes/js-config.php:63
1014
  msgid "Select Photo"
1015
  msgstr ""
1016
 
1017
+ #: includes/field-video.php:3 includes/js-config.php:65
1018
  msgid "Select Video"
1019
  msgstr ""
1020
 
1024
 
1025
  #: includes/global-settings.php:7 includes/template-settings.php:7
1026
  #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
1027
+ #: modules/button/button.php:59 modules/callout/callout.php:209
1028
  #: modules/contact-form/contact-form.php:57
1029
+ #: modules/content-slider/content-slider.php:190
1030
+ #: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
1031
  #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
1032
  #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
1033
  #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
1084
  "full width in the settings for each row."
1085
  msgstr ""
1086
 
1087
+ #: includes/global-settings.php:66
1088
+ msgid "Default Row Width"
1089
+ msgstr ""
1090
+
1091
+ #: includes/global-settings.php:69 includes/global-settings.php:83
1092
+ #: includes/row-settings.php:19 includes/row-settings.php:37
1093
+ #: includes/row-settings.php:179
1094
+ msgid "Fixed"
1095
+ msgstr ""
1096
+
1097
+ #: includes/global-settings.php:70 includes/global-settings.php:84
1098
+ #: includes/row-settings.php:20 includes/row-settings.php:38
1099
+ #: modules/button/button.php:192 modules/callout/callout.php:585
1100
+ msgid "Full Width"
1101
+ msgstr ""
1102
+
1103
+ #: includes/global-settings.php:80
1104
+ msgid "Default Row Content Width"
1105
+ msgstr ""
1106
+
1107
+ #: includes/global-settings.php:107
1108
  msgctxt ""
1109
  "General settings form field label. Intended meaning: \"Responsive layout "
1110
  "enabled?\""
1111
  msgid "Enabled"
1112
  msgstr ""
1113
 
1114
+ #: includes/global-settings.php:121
1115
  msgid "Medium Device Breakpoint"
1116
  msgstr ""
1117
 
1118
+ #: includes/global-settings.php:126
1119
  msgid ""
1120
  "The browser width at which the layout will adjust for medium devices such as "
1121
  "tablets."
1122
  msgstr ""
1123
 
1124
+ #: includes/global-settings.php:130
1125
  msgid "Small Device Breakpoint"
1126
  msgstr ""
1127
 
1128
+ #: includes/global-settings.php:135
1129
  msgid ""
1130
  "The browser width at which the layout will adjust for small devices such as "
1131
  "phones."
1136
  msgid "All Libraries"
1137
  msgstr ""
1138
 
1139
+ #: includes/js-config.php:18
1140
  msgid "What would you like to do?"
1141
  msgstr ""
1142
 
1143
+ #: includes/js-config.php:20
1144
  msgid "Change Template"
1145
  msgstr ""
1146
 
1147
+ #: includes/js-config.php:21
1148
  msgid ""
1149
  "Warning! Changing the template will replace your existing layout. Do you "
1150
  "really want to do this?"
1151
  msgstr ""
1152
 
1153
+ #: includes/js-config.php:22
1154
  msgid "Column"
1155
  msgstr ""
1156
 
1157
+ #: includes/js-config.php:24
1158
  msgid ""
1159
  "Please select either a background layout or content layout before submitting."
1160
  msgstr ""
1161
 
1162
+ #: includes/js-config.php:25
1163
  msgid "Do you really want to delete this item?"
1164
  msgstr ""
1165
 
1166
+ #: includes/js-config.php:26
1167
  msgid ""
1168
  "Do you really want to delete this module? All content data will be "
1169
  "permanently deleted."
1170
  msgstr ""
1171
 
1172
+ #: includes/js-config.php:27
1173
  msgid ""
1174
  "Do you really want to delete this row? All content data will be permanently "
1175
  "deleted."
1176
  msgstr ""
1177
 
1178
+ #: includes/js-config.php:29
1179
  msgid "Discard Draft"
1180
  msgstr ""
1181
 
1182
+ #: includes/js-config.php:30
1183
  msgid ""
1184
  "Do you really want to discard this draft? All of your changes that are not "
1185
  "published will be lost."
1186
  msgstr ""
1187
 
1188
+ #: includes/js-config.php:31 includes/ui.php:44
1189
+ msgid "Done"
1190
+ msgstr ""
1191
+
1192
+ #: includes/js-config.php:32
1193
  msgid "Save Draft"
1194
  msgstr ""
1195
 
1196
+ #: includes/js-config.php:33
1197
  msgctxt "Duplicate page/post action label."
1198
  msgid "Duplicate"
1199
  msgstr ""
1200
 
1201
+ #: includes/js-config.php:34
1202
  msgid "Duplicate This Page"
1203
  msgstr ""
1204
 
1205
+ #: includes/js-config.php:35
1206
  msgid "Duplicate This Template"
1207
  msgstr ""
1208
 
1209
+ #: includes/js-config.php:36
1210
  msgid "Edit Global Settings"
1211
  msgstr ""
1212
 
1213
+ #: includes/js-config.php:37
1214
  msgid "Drop a row layout or module to get started!"
1215
  msgstr ""
1216
 
1217
+ #: includes/js-config.php:38
1218
  msgid ""
1219
  "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
1220
  "not functioning as expected the cause is most likely this error. Please help "
1222
  "each to determine if the issue is related to a third party plugin."
1223
  msgstr ""
1224
 
1225
+ #: includes/js-config.php:39
1226
  msgid "Full Size"
1227
  msgstr ""
1228
 
1229
+ #: includes/js-config.php:40
1230
+ msgid "Get Help"
1231
+ msgstr ""
1232
+
1233
+ #: includes/js-config.php:41
1234
+ msgid "Getting Started Video"
1235
+ msgstr ""
1236
+
1237
+ #: includes/js-config.php:42
1238
  msgid "\"{message}\" on line {line} of {file}."
1239
  msgstr ""
1240
 
1241
+ #: includes/js-config.php:43
1242
  msgid "Insert"
1243
  msgstr ""
1244
 
1245
+ #: includes/js-config.php:44
1246
  msgid "Large"
1247
  msgstr ""
1248
 
1249
+ #: includes/js-config.php:45
1250
  msgid "Manage Templates"
1251
  msgstr ""
1252
 
1253
+ #: includes/js-config.php:46
1254
  msgid "Medium"
1255
  msgstr ""
1256
 
1257
+ #: includes/js-config.php:47
1258
  msgid "Module"
1259
  msgstr ""
1260
 
1261
+ #: includes/js-config.php:48
1262
  msgid "Move"
1263
  msgstr ""
1264
 
1265
+ #: includes/js-config.php:49
1266
  msgid "New Column"
1267
  msgstr ""
1268
 
1269
+ #: includes/js-config.php:50
1270
  msgid "New Row"
1271
  msgstr ""
1272
 
1273
+ #: includes/js-config.php:51
1274
  msgid "No results found."
1275
  msgstr ""
1276
 
1277
+ #: includes/js-config.php:52
1278
+ msgid "No Thanks"
1279
+ msgstr ""
1280
+
1281
+ #: includes/js-config.php:53
1282
  msgid "OK"
1283
  msgstr ""
1284
 
1285
+ #: includes/js-config.php:54 modules/photo/photo.php:454
1286
  msgid "Photo Page"
1287
  msgstr ""
1288
 
1289
+ #: includes/js-config.php:55
1290
  msgid "Photo Selected"
1291
  msgstr ""
1292
 
1293
+ #: includes/js-config.php:56
1294
  msgid "Photos Selected"
1295
  msgstr ""
1296
 
1297
+ #: includes/js-config.php:57
1298
  msgid "Publish Changes"
1299
  msgstr ""
1300
 
1301
+ #: includes/js-config.php:59
1302
  msgid "Row"
1303
  msgstr ""
1304
 
1305
+ #: includes/js-config.php:60 includes/row-settings.php:6
1306
  msgid "Row Settings"
1307
  msgstr ""
1308
 
1309
+ #: includes/js-config.php:61
1310
  msgid "Save Core Template"
1311
  msgstr ""
1312
 
1313
+ #: includes/js-config.php:62 includes/ui.php:10
1314
  #: includes/user-template-settings.php:4
1315
  msgid "Save Template"
1316
  msgstr ""
1317
 
1318
+ #: includes/js-config.php:64
1319
  msgid "Select Photos"
1320
  msgstr ""
1321
 
1322
+ #: includes/js-config.php:67
1323
+ msgid "Take a Tour"
1324
+ msgstr ""
1325
+
1326
+ #: includes/js-config.php:68
1327
  msgid "Append New Layout"
1328
  msgstr ""
1329
 
1330
+ #: includes/js-config.php:69
1331
  msgid "Replace Existing Layout"
1332
  msgstr ""
1333
 
1334
+ #: includes/js-config.php:70
1335
  msgid "Template Saved!"
1336
  msgstr ""
1337
 
1338
+ #: includes/js-config.php:71
1339
  msgid "Thumbnail"
1340
  msgstr ""
1341
 
1342
+ #: includes/js-config.php:72
1343
+ msgid "Next"
1344
+ msgstr ""
1345
+
1346
+ #: includes/js-config.php:73
1347
+ msgid "Get Started"
1348
+ msgstr ""
1349
+
1350
+ #: includes/js-config.php:74
1351
+ msgid "Choose a Template"
1352
+ msgstr ""
1353
+
1354
+ #: includes/js-config.php:75
1355
+ msgid ""
1356
+ "Get started by choosing a layout template to customize, or build a page from "
1357
+ "scratch by selecting the blank layout template."
1358
+ msgstr ""
1359
+
1360
+ #: includes/js-config.php:76
1361
+ msgid "Add Rows"
1362
+ msgstr ""
1363
+
1364
+ #: includes/js-config.php:77
1365
+ msgid ""
1366
+ "Add mulit-column rows, adjust spacing, add backgrounds and more by dragging "
1367
+ "and dropping row layouts onto the page."
1368
+ msgstr ""
1369
+
1370
+ #: includes/js-config.php:78 includes/ui.php:49
1371
+ msgid "Add Content"
1372
+ msgstr ""
1373
+
1374
+ #: includes/js-config.php:79
1375
+ msgid ""
1376
+ "Add new content by dragging and dropping modules or widgets into your row "
1377
+ "layouts or to create a new row layout."
1378
+ msgstr ""
1379
+
1380
+ #: includes/js-config.php:80
1381
+ msgid "Edit Content"
1382
+ msgstr ""
1383
+
1384
+ #: includes/js-config.php:81
1385
+ msgid ""
1386
+ "Move your mouse over rows, columns or modules to edit and interact with them."
1387
+ msgstr ""
1388
+
1389
+ #: includes/js-config.php:82
1390
+ msgid ""
1391
+ "Use the action buttons to perform actions such as moving, editing, "
1392
+ "duplicating, accessing individual column settings or deleting rows, columns "
1393
+ "and modules."
1394
+ msgstr ""
1395
+
1396
+ #: includes/js-config.php:83
1397
+ msgid "Add More Content"
1398
+ msgstr ""
1399
+
1400
+ #: includes/js-config.php:84
1401
+ msgid ""
1402
+ "Use the Add Content button to open the content panel and add new row layouts "
1403
+ "or content."
1404
+ msgstr ""
1405
+
1406
+ #: includes/js-config.php:85
1407
+ msgid "Change Templates"
1408
+ msgstr ""
1409
+
1410
+ #: includes/js-config.php:86
1411
+ msgid ""
1412
+ "Use the Templates button to pick a new template or append one to your "
1413
+ "layout. Appending will insert a new template at the end of your existing "
1414
+ "page content."
1415
+ msgstr ""
1416
+
1417
+ #: includes/js-config.php:87
1418
+ msgid "Helpful Tools"
1419
+ msgstr ""
1420
+
1421
+ #: includes/js-config.php:88
1422
+ msgid ""
1423
+ "The Tools button lets you duplicate a page, save a template or edit the "
1424
+ "global settings."
1425
+ msgstr ""
1426
+
1427
+ #: includes/js-config.php:89
1428
+ msgid "Publish Your Changes"
1429
+ msgstr ""
1430
+
1431
+ #: includes/js-config.php:90
1432
+ msgid ""
1433
+ "Once you're finished, click the Done button to publish your changes, save a "
1434
+ "draft or revert back to the last published state."
1435
+ msgstr ""
1436
+
1437
+ #: includes/js-config.php:91
1438
+ msgid "Let's Get Building!"
1439
+ msgstr ""
1440
+
1441
+ #: includes/js-config.php:92
1442
+ msgid ""
1443
+ "Now that you know the basics, you're ready to start building! If at any time "
1444
+ "you need help, click the help icon in the upper right corner to access the "
1445
+ "help menu. Happy building!"
1446
+ msgstr ""
1447
+
1448
+ #: includes/js-config.php:93
1449
  msgid ""
1450
  "The settings you are currently editing will not be saved if you navigate "
1451
  "away from this page."
1452
  msgstr ""
1453
 
1454
+ #: includes/js-config.php:94
1455
+ msgid "View the Knowledge Base"
1456
+ msgstr ""
1457
+
1458
+ #: includes/js-config.php:95
1459
+ msgid "Visit the Forums"
1460
+ msgstr ""
1461
+
1462
+ #: includes/js-config.php:96
1463
+ msgid "Watch the Video"
1464
+ msgstr ""
1465
+
1466
+ #: includes/js-config.php:97
1467
+ msgid ""
1468
+ "Welcome! It looks like this might be your first time using the builder. "
1469
+ "Would you like to take a tour?"
1470
+ msgstr ""
1471
+
1472
+ #: includes/js-config.php:98
1473
+ msgid "Yes Please!"
1474
+ msgstr ""
1475
+
1476
  #: includes/loop-settings.php:19
1477
  msgid "Post Type"
1478
  msgstr ""
1587
  msgstr ""
1588
 
1589
  #: includes/module-settings.php:102
1590
+ #: modules/content-slider/content-slider.php:229
1591
  #: modules/testimonials/testimonials.php:91
1592
  msgid "Delay"
1593
  msgstr ""
1594
 
1595
  #: includes/module-settings.php:106 includes/row-settings.php:266
1596
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
1597
+ #: modules/content-slider/content-slider.php:250
1598
  #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
1599
  #: modules/slideshow/slideshow.php:581
1600
  #: modules/testimonials/testimonials.php:95
1613
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
1614
  msgstr ""
1615
 
1616
+ #: includes/module-settings.php:127 includes/row-settings.php:615
1617
  msgid "Class"
1618
  msgstr ""
1619
 
1624
  "classes with spaces."
1625
  msgstr ""
1626
 
1627
+ #: includes/row-settings.php:16 modules/button/button.php:188
1628
+ #: modules/content-slider/content-slider.php:483
1629
  msgid "Width"
1630
  msgstr ""
1631
 
 
 
 
 
 
 
 
 
 
 
1632
  #: includes/row-settings.php:27
1633
  msgid ""
1634
  "Full width rows span the width of the page from edge to edge. Fixed rows are "
1649
  msgid "Background"
1650
  msgstr ""
1651
 
1652
+ #: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
1653
  msgctxt "Background type."
1654
  msgid "None"
1655
  msgstr ""
1679
  msgid "Parallax"
1680
  msgstr ""
1681
 
1682
+ #: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
1683
  msgid "Background Photo"
1684
  msgstr ""
1685
 
1686
  #: includes/row-settings.php:133 includes/row-settings.php:321
1687
+ #: modules/callout/callout.php:316 modules/callout/callout.php:332
1688
+ #: modules/callout/callout.php:336
1689
+ #: modules/content-slider/content-slider.php:335
1690
+ #: modules/content-slider/content-slider.php:404
1691
+ #: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
1692
  #: modules/photo/photo.php:392
1693
  msgid "Photo"
1694
  msgstr ""
1753
  msgid "Center Top"
1754
  msgstr ""
1755
 
1756
+ #: includes/row-settings.php:165 modules/button/button.php:218
1757
+ #: modules/callout/callout.php:251
1758
+ #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1759
  #: modules/heading/heading.php:90 modules/heading/heading.php:162
1760
  #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1761
  #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
1813
  msgid "Background Video"
1814
  msgstr ""
1815
 
1816
+ #: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
1817
  #: modules/video/video.php:19 modules/video/video.php:100
1818
  msgid "Video"
1819
  msgstr ""
1870
  msgid "Speed"
1871
  msgstr ""
1872
 
1873
+ #: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
1874
  #: modules/slideshow/slideshow.php:389
1875
  #: modules/testimonials/testimonials.php:99
1876
  msgid "Transition"
1881
  msgid "None"
1882
  msgstr ""
1883
 
1884
+ #: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
1885
  #: modules/slideshow/slideshow.php:393
1886
  #: modules/testimonials/testimonials.php:103
1887
  msgid "Fade"
1923
  msgid "Boxes Grow"
1924
  msgstr ""
1925
 
1926
+ #: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
1927
  #: modules/slideshow/slideshow.php:407
1928
  #: modules/testimonials/testimonials.php:108
1929
  msgid "Transition Speed"
1950
  msgid "Slow"
1951
  msgstr ""
1952
 
1953
+ #: includes/row-settings.php:342
1954
+ msgid "Background Overlay"
1955
+ msgstr ""
1956
+
1957
+ #: includes/row-settings.php:346
1958
+ msgid "Overlay Color"
1959
+ msgstr ""
1960
+
1961
+ #: includes/row-settings.php:354
1962
+ msgid "Overlay Opacity"
1963
+ msgstr ""
1964
+
1965
+ #: includes/row-settings.php:595
1966
  msgid "Choose whether to show or hide this row at different device sizes."
1967
  msgstr ""
1968
 
1969
+ #: includes/row-settings.php:608
1970
  msgid ""
1971
  "A unique ID that will be applied to this row's HTML. Must start with a "
1972
  "letter and only contain dashes, underscores, letters or numbers. No spaces."
1973
  msgstr ""
1974
 
1975
+ #: includes/row-settings.php:616
1976
  msgid ""
1977
  "A class that will be applied to this row's HTML. Must start with a letter "
1978
  "and only contain dashes, underscores, letters or numbers. Separate multiple "
2034
  msgid "Page Builder Demo"
2035
  msgstr ""
2036
 
2037
+ #: includes/ui.php:40
2038
  msgid "Buy Now!"
2039
  msgstr ""
2040
 
2041
+ #: includes/ui.php:42
2042
  msgid "Upgrade!"
2043
  msgstr ""
2044
 
2045
+ #: includes/ui.php:45
 
 
 
 
2046
  msgid "Tools"
2047
  msgstr ""
2048
 
2049
+ #: includes/ui.php:67
 
 
 
 
2050
  msgid "Row Layouts"
2051
  msgstr ""
2052
 
2053
+ #: includes/ui.php:71
2054
  msgid "1 Column"
2055
  msgstr ""
2056
 
2057
+ #: includes/ui.php:72
2058
  msgid "2 Columns"
2059
  msgstr ""
2060
 
2061
+ #: includes/ui.php:73
2062
  msgid "3 Columns"
2063
  msgstr ""
2064
 
2065
+ #: includes/ui.php:74
2066
  msgid "4 Columns"
2067
  msgstr ""
2068
 
2069
+ #: includes/ui.php:75
2070
  msgid "5 Columns"
2071
  msgstr ""
2072
 
2073
+ #: includes/ui.php:76
2074
  msgid "6 Columns"
2075
  msgstr ""
2076
 
2077
+ #: includes/ui.php:77
2078
  msgid "Left Sidebar"
2079
  msgstr ""
2080
 
2081
+ #: includes/ui.php:78
2082
  msgid "Right Sidebar"
2083
  msgstr ""
2084
 
2085
+ #: includes/ui.php:79
2086
  msgid "Left &amp; Right Sidebar"
2087
  msgstr ""
2088
 
 
 
 
 
2089
  #: includes/updater/classes/class-fl-updater.php:107
2090
  msgid "<strong>UPDATE UNAVAILABLE!</strong>"
2091
  msgstr ""
2144
  msgid "Display a collapsible accordion of items."
2145
  msgstr ""
2146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2147
  #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
2148
  msgid "Items"
2149
  msgstr ""
2203
  msgid "Content"
2204
  msgstr ""
2205
 
2206
+ #: modules/button/button.php:14 modules/callout/callout.php:479
2207
+ #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
2208
  #: modules/pricing-table/pricing-table.php:129
2209
  msgid "Button"
2210
  msgstr ""
2213
  msgid "A simple call to action button."
2214
  msgstr ""
2215
 
2216
+ #: modules/button/button.php:67 modules/cta/cta.php:222
2217
  msgid "Click Here"
2218
  msgstr ""
2219
 
2220
+ #: modules/button/button.php:75 modules/callout/callout.php:317
2221
+ #: modules/callout/callout.php:365 modules/callout/callout.php:369
2222
+ #: modules/cta/cta.php:230 modules/icon-group/icon-group.php:34
2223
  #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
2224
  #: modules/icon/icon.php:34
2225
  msgid "Icon"
2226
  msgstr ""
2227
 
2228
+ #: modules/button/button.php:81 modules/button/button.php:85
2229
+ #: modules/callout/callout.php:445 modules/callout/callout.php:449
2230
+ #: modules/content-slider/content-slider.php:573
2231
+ #: modules/content-slider/content-slider.php:577
2232
+ #: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
2233
  #: modules/heading/heading.php:43 modules/heading/heading.php:47
2234
  #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
2235
  #: modules/slideshow/slideshow.php:343
2236
  msgid "Link"
2237
  msgstr ""
2238
 
2239
+ #: modules/button/button.php:86
2240
  msgid "http://www.example.com"
2241
  msgstr ""
2242
 
2243
+ #: modules/button/button.php:93 modules/callout/callout.php:457
2244
+ #: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
2245
  #: modules/heading/heading.php:54 modules/icon/icon.php:50
2246
  #: modules/photo/photo.php:478
2247
  msgid "Link Target"
2248
  msgstr ""
2249
 
2250
+ #: modules/button/button.php:96 modules/callout/callout.php:460
2251
+ #: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
2252
  #: modules/heading/heading.php:57 modules/icon/icon.php:53
2253
  #: modules/photo/photo.php:481
2254
  msgid "Same Window"
2255
  msgstr ""
2256
 
2257
+ #: modules/button/button.php:97 modules/callout/callout.php:461
2258
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
2259
  #: modules/heading/heading.php:58 modules/icon/icon.php:54
2260
  #: modules/photo/photo.php:482
2261
  msgid "New Window"
2262
  msgstr ""
2263
 
2264
+ #: modules/button/button.php:111 modules/cta/cta.php:187
2265
  #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
2266
  #: modules/icon/icon.php:78
2267
  msgid "Colors"
2268
  msgstr ""
2269
 
2270
+ #: modules/button/button.php:121 modules/callout/callout.php:409
2271
+ #: modules/callout/callout.php:514
2272
+ #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
2273
  #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
2274
  msgid "Background Hover Color"
2275
  msgstr ""
2276
 
2277
+ #: modules/button/button.php:130 modules/callout/callout.php:523
2278
+ #: modules/content-slider/content-slider.php:528
2279
+ #: modules/content-slider/content-slider.php:641
2280
+ #: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
2281
+ #: modules/cta/cta.php:279 modules/heading/heading.php:77
2282
  msgid "Text Color"
2283
  msgstr ""
2284
 
2285
+ #: modules/button/button.php:136 modules/callout/callout.php:529
2286
+ #: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
2287
  msgid "Text Hover Color"
2288
  msgstr ""
2289
 
2290
+ #: modules/button/button.php:153 modules/callout/callout.php:546
2291
+ #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
2292
+ msgid "Flat"
2293
+ msgstr ""
2294
+
2295
+ #: modules/button/button.php:154 modules/callout/callout.php:417
2296
+ #: modules/callout/callout.php:547
2297
+ #: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
2298
  #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
2299
  msgid "Gradient"
2300
  msgstr ""
2301
 
2302
+ #: modules/button/button.php:155 modules/callout/callout.php:548
2303
+ #: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
2304
+ msgid "Transparent"
2305
+ msgstr ""
2306
+
2307
+ #: modules/button/button.php:165 modules/callout/callout.php:558
2308
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
2309
+ #: modules/pricing-table/pricing-table.php:67
2310
+ msgid "Border Size"
2311
+ msgstr ""
2312
+
2313
+ #: modules/button/button.php:174 modules/callout/callout.php:567
2314
+ #: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
2315
+ #: modules/cta/cta.php:323
2316
+ msgid "Background Opacity"
2317
+ msgstr ""
2318
+
2319
+ #: modules/button/button.php:184 modules/callout/callout.php:244
2320
+ #: modules/cta/cta.php:104 modules/heading/heading.php:82
2321
  #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
2322
  msgid "Structure"
2323
  msgstr ""
2324
 
2325
+ #: modules/button/button.php:191 modules/callout/callout.php:584
2326
  msgctxt "Width."
2327
  msgid "Auto"
2328
  msgstr ""
2329
 
2330
+ #: modules/button/button.php:207
2331
  msgid "Custom Width"
2332
  msgstr ""
2333
 
2334
+ #: modules/button/button.php:215 modules/cta/cta.php:122
2335
  #: modules/heading/heading.php:86 modules/heading/heading.php:141
2336
  #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
2337
  #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
2338
  msgid "Alignment"
2339
  msgstr ""
2340
 
2341
+ #: modules/button/button.php:225 modules/callout/callout.php:590
2342
+ #: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
2343
  #: modules/heading/heading.php:114 modules/heading/heading.php:171
2344
  msgid "Font Size"
2345
  msgstr ""
2346
 
2347
+ #: modules/button/button.php:241 modules/callout/callout.php:606
2348
+ #: modules/cta/cta.php:353
2349
  msgid "Round Corners"
2350
  msgstr ""
2351
 
2357
  msgid "A heading and snippet of text with an optional link, icon and image."
2358
  msgstr ""
2359
 
2360
+ #: modules/callout/callout.php:216
2361
+ #: modules/content-slider/content-slider.php:413
2362
+ #: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
2363
  #: modules/heading/heading.php:14 modules/heading/heading.php:33
2364
  #: modules/testimonials/testimonials.php:56
2365
  #: modules/testimonials/testimonials.php:61
2366
  msgid "Heading"
2367
  msgstr ""
2368
 
2369
+ #: modules/callout/callout.php:248
2370
  msgid "Overall Alignment"
2371
  msgstr ""
2372
 
2373
+ #: modules/callout/callout.php:255
2374
  msgid "The alignment that will apply to all elements within the callout."
2375
  msgstr ""
2376
 
2377
+ #: modules/callout/callout.php:263 modules/cta/cta.php:147
2378
  msgid "Heading Structure"
2379
  msgstr ""
2380
 
2381
+ #: modules/callout/callout.php:267
2382
+ #: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
2383
  msgid "Heading Tag"
2384
  msgstr ""
2385
 
2386
+ #: modules/callout/callout.php:280
2387
+ #: modules/content-slider/content-slider.php:445
2388
+ #: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
2389
  #: modules/testimonials/testimonials.php:69
2390
  msgid "Heading Size"
2391
  msgstr ""
2392
 
2393
+ #: modules/callout/callout.php:294 modules/cta/cta.php:178
2394
  msgid "Heading Custom Size"
2395
  msgstr ""
2396
 
2397
+ #: modules/callout/callout.php:312
2398
  msgid "Image Type"
2399
  msgstr ""
2400
 
2401
+ #: modules/callout/callout.php:315
2402
  msgctxt "Image type."
2403
  msgid "None"
2404
  msgstr ""
2405
 
2406
+ #: modules/callout/callout.php:340 modules/photo/photo.php:401
2407
  #: modules/slideshow/slideshow.php:312
2408
  msgid "Crop"
2409
  msgstr ""
2410
 
2411
+ #: modules/callout/callout.php:343
2412
  msgctxt "Crop"
2413
  msgid "None"
2414
  msgstr ""
2415
 
2416
+ #: modules/callout/callout.php:344 modules/photo/photo.php:405
2417
  msgid "Landscape"
2418
  msgstr ""
2419
 
2420
+ #: modules/callout/callout.php:345 modules/photo/photo.php:406
2421
  msgid "Panorama"
2422
  msgstr ""
2423
 
2424
+ #: modules/callout/callout.php:346 modules/photo/photo.php:407
2425
  msgid "Portrait"
2426
  msgstr ""
2427
 
2428
+ #: modules/callout/callout.php:347 modules/photo/photo.php:408
2429
  msgid "Square"
2430
  msgstr ""
2431
 
2432
+ #: modules/callout/callout.php:348 modules/photo/photo.php:409
2433
  msgid "Circle"
2434
  msgstr ""
2435
 
2436
+ #: modules/callout/callout.php:356 modules/callout/callout.php:376
2437
  msgid "Above Heading"
2438
  msgstr ""
2439
 
2440
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
2441
  msgid "Below Heading"
2442
  msgstr ""
2443
 
2444
+ #: modules/callout/callout.php:358 modules/callout/callout.php:380
2445
  msgid "Left of Text and Heading"
2446
  msgstr ""
2447
 
2448
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
2449
  msgid "Right of Text and Heading"
2450
  msgstr ""
2451
 
2452
+ #: modules/callout/callout.php:378
2453
  msgid "Left of Heading"
2454
  msgstr ""
2455
 
2456
+ #: modules/callout/callout.php:379
2457
  msgid "Right of Heading"
2458
  msgstr ""
2459
 
2460
+ #: modules/callout/callout.php:387
2461
  msgid "Icon Colors"
2462
  msgstr ""
2463
 
2464
+ #: modules/callout/callout.php:396 modules/icon-group/icon-group.php:56
2465
  #: modules/icon/icon.php:87
2466
  msgid "Hover Color"
2467
  msgstr ""
2468
 
2469
+ #: modules/callout/callout.php:427
2470
  msgid "Icon Structure"
2471
  msgstr ""
2472
 
2473
+ #: modules/callout/callout.php:431 modules/icon-group/icon-group.php:91
2474
  #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
2475
  msgid "Size"
2476
  msgstr ""
2477
 
2478
+ #: modules/callout/callout.php:442
2479
+ #: modules/content-slider/content-slider.php:570
2480
  msgid "Call To Action"
2481
  msgstr ""
2482
 
2483
+ #: modules/callout/callout.php:450
2484
  msgid ""
2485
  "The link applies to the entire module. If choosing a call to action type "
2486
  "below, this link will also be used for the text or button."
2487
  msgstr ""
2488
 
2489
+ #: modules/callout/callout.php:470
2490
+ #: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
2491
  msgid "Call to Action"
2492
  msgstr ""
2493
 
2494
+ #: modules/callout/callout.php:477
2495
+ #: modules/content-slider/content-slider.php:599
2496
  msgctxt "Call to action."
2497
  msgid "None"
2498
  msgstr ""
2499
 
2500
+ #: modules/callout/callout.php:498
2501
+ #: modules/content-slider/content-slider.php:620
2502
  msgid "Button Icon"
2503
  msgstr ""
2504
 
2505
+ #: modules/callout/callout.php:504
2506
+ #: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
2507
  msgid "Button Colors"
2508
  msgstr ""
2509
 
2510
+ #: modules/callout/callout.php:539
2511
+ #: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
2512
+ msgid "Button Style"
2513
+ msgstr ""
2514
+
2515
+ #: modules/callout/callout.php:577
2516
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
2517
  msgid "Button Structure"
2518
  msgstr ""
2519
 
2520
+ #: modules/callout/callout.php:581
2521
  msgid "Button Width"
2522
  msgstr ""
2523
 
2602
  msgid "Displays multiple slides with an optional heading and call to action."
2603
  msgstr ""
2604
 
2605
+ #: modules/content-slider/content-slider.php:197 modules/map/map.php:41
2606
  #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
2607
  msgid "Height"
2608
  msgstr ""
2609
 
2610
+ #: modules/content-slider/content-slider.php:202
2611
  msgid ""
2612
  "This setting is the minimum height of the content slider. Content will "
2613
  "expand the height automatically."
2614
  msgstr ""
2615
 
2616
+ #: modules/content-slider/content-slider.php:206
2617
  #: modules/slideshow/slideshow.php:373
2618
  #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
2619
  msgid "Auto Play"
2620
  msgstr ""
2621
 
2622
+ #: modules/content-slider/content-slider.php:220
2623
  msgid "Show Play/Pause"
2624
  msgstr ""
2625
 
2626
+ #: modules/content-slider/content-slider.php:240
2627
  #: modules/testimonials/testimonials.php:102
2628
  msgctxt "Transition type."
2629
  msgid "Slide"
2630
  msgstr ""
2631
 
2632
+ #: modules/content-slider/content-slider.php:254
2633
  #: modules/testimonials/testimonials.php:121
2634
  msgid "Show Arrows"
2635
  msgstr ""
2636
 
2637
+ #: modules/content-slider/content-slider.php:263
2638
  #: modules/testimonials/testimonials.php:151
2639
  msgid "Show Dots"
2640
  msgstr ""
2641
 
2642
+ #: modules/content-slider/content-slider.php:277
2643
  msgid "Max Content Width"
2644
  msgstr ""
2645
 
2646
+ #: modules/content-slider/content-slider.php:282
2647
  msgid "The max width that the content area will be within your slides."
2648
  msgstr ""
2649
 
2650
+ #: modules/content-slider/content-slider.php:289
2651
  msgid "Slides"
2652
  msgstr ""
2653
 
2654
+ #: modules/content-slider/content-slider.php:296
2655
  msgid "Slide"
2656
  msgstr ""
2657
 
2658
+ #: modules/content-slider/content-slider.php:311
2659
  msgid "Slide Settings"
2660
  msgstr ""
2661
 
2662
+ #: modules/content-slider/content-slider.php:321
2663
  msgid "Slide Label"
2664
  msgstr ""
2665
 
2666
+ #: modules/content-slider/content-slider.php:322
2667
  msgid ""
2668
  "A label to identify this slide on the Slides tab of the Content Slider "
2669
  "settings."
2670
  msgstr ""
2671
 
2672
+ #: modules/content-slider/content-slider.php:327
2673
  msgid "Background Layout"
2674
  msgstr ""
2675
 
2676
+ #: modules/content-slider/content-slider.php:333
2677
  msgid "This setting is for the entire background of your slide."
2678
  msgstr ""
2679
 
2680
+ #: modules/content-slider/content-slider.php:368
2681
  msgid "Background Video Code"
2682
  msgstr ""
2683
 
2684
+ #: modules/content-slider/content-slider.php:374
2685
  msgid "Content Layout"
2686
  msgstr ""
2687
 
2688
+ #: modules/content-slider/content-slider.php:380
2689
  msgid ""
2690
  "This allows you to add content over or in addition to the background "
2691
  "selection above. The location of the content layout can be selected in the "
2692
  "style tab."
2693
  msgstr ""
2694
 
2695
+ #: modules/content-slider/content-slider.php:383
2696
  msgid "Text &amp; Photo"
2697
  msgstr ""
2698
 
2699
+ #: modules/content-slider/content-slider.php:384
2700
  msgid "Text &amp; Video"
2701
  msgstr ""
2702
 
2703
+ #: modules/content-slider/content-slider.php:385
2704
  msgctxt "Content type."
2705
  msgid "None"
2706
  msgstr ""
2707
 
2708
+ #: modules/content-slider/content-slider.php:408 modules/video/video.php:132
2709
  msgid "Video Embed Code"
2710
  msgstr ""
2711
 
2712
+ #: modules/content-slider/content-slider.php:468
2713
  msgid "Text Position"
2714
  msgstr ""
2715
 
2716
+ #: modules/content-slider/content-slider.php:474
2717
  msgid ""
2718
  "The position will move the content layout selections left, right or center "
2719
  "over the background of the slide."
2720
  msgstr ""
2721
 
2722
+ #: modules/content-slider/content-slider.php:491
2723
  msgid "Top Margin"
2724
  msgstr ""
2725
 
2726
+ #: modules/content-slider/content-slider.php:499
2727
  msgid "Bottom Margin"
2728
  msgstr ""
2729
 
2730
+ #: modules/content-slider/content-slider.php:507
2731
  msgid "Left Margin"
2732
  msgstr ""
2733
 
2734
+ #: modules/content-slider/content-slider.php:515
2735
  msgid "Right Margin"
2736
  msgstr ""
2737
 
2738
+ #: modules/content-slider/content-slider.php:524
2739
  msgid "Text Colors"
2740
  msgstr ""
2741
 
2742
+ #: modules/content-slider/content-slider.php:534
2743
  msgid "Text Shadow"
2744
  msgstr ""
2745
 
2746
+ #: modules/content-slider/content-slider.php:543
2747
+ #: modules/content-slider/content-slider.php:760
2748
  msgid "Text Background Color"
2749
  msgstr ""
2750
 
2751
+ #: modules/content-slider/content-slider.php:544
2752
  msgid ""
2753
  "The color applies to the overlay behind text over the background selections."
2754
  msgstr ""
2755
 
2756
+ #: modules/content-slider/content-slider.php:549
2757
  msgid "Text Background Opacity"
2758
  msgstr ""
2759
 
2760
+ #: modules/content-slider/content-slider.php:557
2761
  msgid "Text Background Height"
2762
  msgstr ""
2763
 
2764
+ #: modules/content-slider/content-slider.php:559
2765
  msgid ""
2766
  "Auto will allow the overlay to fit however long the text content is. 100% "
2767
  "will fit the overlay to the top and bottom of the slide."
2768
  msgstr ""
2769
 
2770
+ #: modules/content-slider/content-slider.php:561
2771
  msgctxt "Background height."
2772
  msgid "Auto"
2773
  msgstr ""
2774
 
2775
+ #: modules/content-slider/content-slider.php:578
2776
  msgid ""
2777
  "The link applies to the entire slide. If choosing a call to action type "
2778
  "below, this link will also be used for the text or button."
2779
  msgstr ""
2780
 
2781
+ #: modules/content-slider/content-slider.php:711
2782
  msgid "Border Radius"
2783
  msgstr ""
2784
 
2785
+ #: modules/content-slider/content-slider.php:722
2786
  msgctxt "Module settings form tab. Display on mobile devices."
2787
  msgid "Mobile"
2788
  msgstr ""
2789
 
2790
+ #: modules/content-slider/content-slider.php:725
2791
  msgid "Mobile Photo"
2792
  msgstr ""
2793
 
2794
+ #: modules/content-slider/content-slider.php:731
2795
  msgid ""
2796
  "You can choose a different photo that the slide will change to on mobile "
2797
  "devices or no photo if desired."
2798
  msgstr ""
2799
 
2800
+ #: modules/content-slider/content-slider.php:733
2801
  msgid "Use Main Photo"
2802
  msgstr ""
2803
 
2804
+ #: modules/content-slider/content-slider.php:734
2805
  msgid "Choose Another Photo"
2806
  msgstr ""
2807
 
2808
+ #: modules/content-slider/content-slider.php:735
2809
  msgid "No Photo"
2810
  msgstr ""
2811
 
2812
+ #: modules/content-slider/content-slider.php:750
2813
  msgid "Mobile Text Colors"
2814
  msgstr ""
2815
 
2817
  msgid "Display a heading, subheading and a button."
2818
  msgstr ""
2819
 
2820
+ #: modules/cta/cta.php:75
2821
  msgid "Ready to find out more?"
2822
  msgstr ""
2823
 
2824
+ #: modules/cta/cta.php:90
2825
  msgid "Drop us a line today for a free quote!"
2826
  msgstr ""
2827
 
2828
+ #: modules/cta/cta.php:108 modules/gallery/gallery.php:220
2829
  #: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
2830
  #: modules/testimonials/testimonials.php:37
2831
  #: modules/woocommerce/woocommerce.php:57
2832
  msgid "Layout"
2833
  msgstr ""
2834
 
2835
+ #: modules/cta/cta.php:111
2836
  msgid "Inline"
2837
  msgstr ""
2838
 
2839
+ #: modules/cta/cta.php:112
2840
  msgid "Stacked"
2841
  msgstr ""
2842
 
2843
+ #: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
2844
  msgid "Spacing"
2845
  msgstr ""
2846
 
2847
+ #: modules/cta/cta.php:236
 
 
 
 
2848
  msgid "Button Link"
2849
  msgstr ""
2850
 
2932
  msgid "Display a title/page heading."
2933
  msgstr ""
2934
 
 
 
 
 
 
 
2935
  #: modules/heading/heading.php:101
2936
  msgid "HTML Tag"
2937
  msgstr ""
3187
  "numbers of features."
3188
  msgstr ""
3189
 
 
 
 
 
3190
  #: modules/pricing-table/pricing-table.php:70
3191
  msgctxt "Border size."
3192
  msgid "Wide"