WordPress Page Builder – Beaver Builder - Version 1.6.4.3

Version Description

Download this release

Release Info

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

Code changes from version 1.6.4.1 to 1.6.4.3

changelog.txt CHANGED
@@ -1,3 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <h4>1.6.4.1 - 10/21/2015</h4>
2
  <p><strong>Enhancements</strong></p>
3
  <ul>
1
+ <h4>1.6.4.3 - 11/23/2015</h4>
2
+ <p><strong>Enhancements</strong></p>
3
+ <ul>
4
+ <li>Added theme branding to the page builder's branding settings for Agency customers.</li>
5
+ <li>Added show_remove option to photo fields for developers.</li>
6
+ </ul>
7
+ <p><strong>Bug Fixes</strong></p>
8
+ <ul>
9
+ <li>Fixed CSS conflicts with third party themes and the core WordPress media uploader UI.</li>
10
+ <li>Fixed multiple color picker bugs.</li>
11
+ <li>Fixed a bug with the media library not showing on older versions of Safari.</li>
12
+ <li>Fixed a bug with the Accordion module not applying the correct class to all open items.</li>
13
+ <li>Fixed a bug caused by entering text strings into the Number Counter settings.</li>
14
+ <li>Fixed a bug with template assets not loading with the fl_builder_global_posts filter.</li>
15
+ <li>Fixed a bug with the Slideshow module where thumbnail pagination would disappear when two slideshows were on the same page.</li>
16
+ <li>Fixed a bug with module animations not running when positioned below a gallery module.</li>
17
+ <li>Fixed a bug with video background positions being messed up when images haven't fully loaded within a row.</li>
18
+ <li>Fixed a bug causing random sorting of posts in the Posts module not to work.</li>
19
+ </ul>
20
+
21
+ <h4>1.6.4.2 - 11/05/2015</h4>
22
+ <p><strong>Enhancements</strong></p>
23
+ <ul>
24
+ <li>Added a Match Height setting to the Posts module's Grid layout.</li>
25
+ <li>Custom module categories now show up before the WordPress Widgets category.</li>
26
+ <li>Added the fl_builder_module_categories filter.</li>
27
+ <li>Text field enhancements for developers that allow for a list of predefined options. Thanks Oliver!</li>
28
+ <li>Added Danish translation.</li>
29
+ <li>Added Hebrew translation.</li>
30
+ </ul>
31
+ <p><strong>Bug Fixes</strong></p>
32
+ <ul>
33
+ <li>Fixed a bug with cropping photos that have a query string in their URL. Fixes issues with Jetpack's Photon module.</li>
34
+ <li>Fixed a bug with custom image size titles showing as undefined.</li>
35
+ <li>Fixed a bug with margins not working on equal height columns in FireFox.</li>
36
+ <li>Fixed a bug with UI images for the Slideshow module loading from an external domain not on HTTPS.</li>
37
+ <li>Fixed a bug with the Slideshow module caused when the body color is set to an rgba value.</li>
38
+ <li>Fixed a bug with the Subscribe Form module not working in global rows.</li>
39
+ <li>Fixed a bug with full height rows on iOS devices.</li>
40
+ <li>Fixed a bug with the Posts module and the Append extensions on Pages plugin.</li>
41
+ <li>Fixed a bug with editing templates in the Sage theme.</li>
42
+ <li>Fixed a bug with Slideshow module transitions in IE11.</li>
43
+ <li>Fixed a bug with the Insert Pages plugin not working when used within a builder layout.</li>
44
+ </ul>
45
+
46
  <h4>1.6.4.1 - 10/21/2015</h4>
47
  <p><strong>Enhancements</strong></p>
48
  <ul>
classes/class-fl-builder-admin-settings.php CHANGED
@@ -570,11 +570,23 @@ final class FLBuilderAdminSettings {
570
  {
571
  if ( isset( $_POST['fl-branding-nonce'] ) && wp_verify_nonce( $_POST['fl-branding-nonce'], 'branding' ) ) {
572
 
 
573
  $branding = wp_kses_post( $_POST['fl-branding'] );
574
  $branding_icon = sanitize_text_field( $_POST['fl-branding-icon'] );
575
 
 
 
 
 
 
 
 
 
 
 
576
  FLBuilderModel::update_admin_settings_option( '_fl_builder_branding', $branding, false );
577
  FLBuilderModel::update_admin_settings_option( '_fl_builder_branding_icon', $branding_icon, false );
 
578
  }
579
  }
580
 
570
  {
571
  if ( isset( $_POST['fl-branding-nonce'] ) && wp_verify_nonce( $_POST['fl-branding-nonce'], 'branding' ) ) {
572
 
573
+ // Get the plugin branding data.
574
  $branding = wp_kses_post( $_POST['fl-branding'] );
575
  $branding_icon = sanitize_text_field( $_POST['fl-branding-icon'] );
576
 
577
+ // Get the theme branding data.
578
+ $theme_data = array(
579
+ 'name' => wp_kses_post( $_POST['fl-theme-branding-name'] ),
580
+ 'description' => wp_kses_post( $_POST['fl-theme-branding-description'] ),
581
+ 'company_name' => wp_kses_post( $_POST['fl-theme-branding-company-name'] ),
582
+ 'company_url' => sanitize_text_field( $_POST['fl-theme-branding-company-url'] ),
583
+ 'screenshot_url' => sanitize_text_field( $_POST['fl-theme-branding-screenshot-url'] ),
584
+ );
585
+
586
+ // Save the data.
587
  FLBuilderModel::update_admin_settings_option( '_fl_builder_branding', $branding, false );
588
  FLBuilderModel::update_admin_settings_option( '_fl_builder_branding_icon', $branding_icon, false );
589
+ FLBuilderModel::update_admin_settings_option( '_fl_builder_theme_branding', $theme_data, false );
590
  }
591
  }
592
 
classes/class-fl-builder-admin.php CHANGED
@@ -264,4 +264,36 @@ final class FLBuilderAdmin {
264
 
265
  return $plugins;
266
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
  }
264
 
265
  return $plugins;
266
  }
267
+
268
+ /**
269
+ * White labels the builder theme on the themes page.
270
+ *
271
+ * @since 1.6.4.3
272
+ * @param array $themes An array data for each theme.
273
+ * @return array
274
+ */
275
+ static public function white_label_themes_page( $themes )
276
+ {
277
+ if ( isset( $themes['bb-theme'] ) ) {
278
+
279
+ $theme_data = FLBuilderModel::get_theme_branding();
280
+
281
+ if ( ! empty( $theme_data['name'] ) ) {
282
+ $themes['bb-theme']['name'] = $theme_data['name'];
283
+ }
284
+ if ( ! empty( $theme_data['description'] ) ) {
285
+ $themes['bb-theme']['description'] = $theme_data['description'];
286
+ }
287
+ if ( ! empty( $theme_data['company_name'] ) ) {
288
+ $company_url = empty( $theme_data['company_url'] ) ? '#' : $theme_data['company_url'];
289
+ $themes['bb-theme']['author'] = $theme_data['company_name'];
290
+ $themes['bb-theme']['authorAndUri'] = '<a href="' . $company_url . '">' . $theme_data['company_name'] . '</a>';
291
+ }
292
+ if ( ! empty( $theme_data['screenshot_url'] ) ) {
293
+ $themes['bb-theme']['screenshot'] = array( $theme_data['screenshot_url'] );
294
+ }
295
+ }
296
+
297
+ return $themes;
298
+ }
299
  }
classes/class-fl-builder-loop.php CHANGED
@@ -141,7 +141,7 @@ final class FLBuilderLoop {
141
  $format = '&paged=%#%';
142
  }
143
  else {
144
- $format = 'page/%#%/';
145
  }
146
 
147
  echo paginate_links(array(
141
  $format = '&paged=%#%';
142
  }
143
  else {
144
+ $format = '/page/%#%/';
145
  }
146
 
147
  echo paginate_links(array(
classes/class-fl-builder-model.php CHANGED
@@ -1951,6 +1951,13 @@ final class FLBuilderModel {
1951
  static public function get_categorized_modules( $show_disabled = false )
1952
  {
1953
  $enabled_modules = self::get_enabled_modules();
 
 
 
 
 
 
 
1954
 
1955
  // Get the core category keys.
1956
  $basic_key = __('Basic Modules', 'fl-builder');
@@ -1959,11 +1966,9 @@ final class FLBuilderModel {
1959
  $widgets_key = __('WordPress Widgets', 'fl-builder');
1960
 
1961
  // Build the default category arrays.
1962
- $categories = array();
1963
  $categories[ $basic_key ] = array();
1964
  $categories[ $advanced_key ] = array();
1965
  $categories[ $other_key ] = array();
1966
- $categories[ $widgets_key ] = array();
1967
 
1968
  // Build the categories array.
1969
  foreach(self::$modules as $module) {
@@ -1975,7 +1980,7 @@ final class FLBuilderModel {
1975
  continue;
1976
  }
1977
  else if($module->slug == 'widget') {
1978
- $categories[$widgets_key] = self::get_wp_widgets();
1979
  }
1980
  else if(isset($module->category)) {
1981
 
@@ -1989,6 +1994,11 @@ final class FLBuilderModel {
1989
  $categories[$other_key][$module->name] = $module;
1990
  }
1991
  }
 
 
 
 
 
1992
 
1993
  // Sort the modules.
1994
  foreach($categories as $title => $modules) {
@@ -2410,7 +2420,7 @@ final class FLBuilderModel {
2410
  */
2411
  static public function register_settings_form($id, $form)
2412
  {
2413
- self::$settings_forms[$id] = $form;
2414
  }
2415
 
2416
  /**
@@ -4273,6 +4283,26 @@ final class FLBuilderModel {
4273
  return false === $value ? FL_BUILDER_URL . 'img/beaver.png' : $value;
4274
  }
4275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4276
  /**
4277
  * Returns an array of slugs for all enabled icon sets.
4278
  *
@@ -4496,6 +4526,7 @@ final class FLBuilderModel {
4496
  delete_option('_fl_builder_enabled_icons');
4497
  delete_option('_fl_builder_branding');
4498
  delete_option('_fl_builder_branding_icon');
 
4499
  delete_option('_fl_builder_editing_capability');
4500
  delete_option('_fl_builder_global_templates_editing_capability');
4501
  delete_option('_fl_builder_help_button');
1951
  static public function get_categorized_modules( $show_disabled = false )
1952
  {
1953
  $enabled_modules = self::get_enabled_modules();
1954
+ $widgets = null;
1955
+ $categories = array();
1956
+
1957
+ // Add any predefined custom categories.
1958
+ foreach ( apply_filters( 'fl_builder_module_categories', array() ) as $custom_category ) {
1959
+ $categories[ $custom_category ] = array();
1960
+ }
1961
 
1962
  // Get the core category keys.
1963
  $basic_key = __('Basic Modules', 'fl-builder');
1966
  $widgets_key = __('WordPress Widgets', 'fl-builder');
1967
 
1968
  // Build the default category arrays.
 
1969
  $categories[ $basic_key ] = array();
1970
  $categories[ $advanced_key ] = array();
1971
  $categories[ $other_key ] = array();
 
1972
 
1973
  // Build the categories array.
1974
  foreach(self::$modules as $module) {
1980
  continue;
1981
  }
1982
  else if($module->slug == 'widget') {
1983
+ $widgets = self::get_wp_widgets();
1984
  }
1985
  else if(isset($module->category)) {
1986
 
1994
  $categories[$other_key][$module->name] = $module;
1995
  }
1996
  }
1997
+
1998
+ // Add widgets if we have them.
1999
+ if ( $widgets ) {
2000
+ $categories[$widgets_key] = $widgets;
2001
+ }
2002
 
2003
  // Sort the modules.
2004
  foreach($categories as $title => $modules) {
2420
  */
2421
  static public function register_settings_form($id, $form)
2422
  {
2423
+ self::$settings_forms[$id] = apply_filters( 'fl_builder_register_settings_form', $form, $id );
2424
  }
2425
 
2426
  /**
4283
  return false === $value ? FL_BUILDER_URL . 'img/beaver.png' : $value;
4284
  }
4285
 
4286
+ /**
4287
+ * Returns the custom branding data for the builder theme.
4288
+ *
4289
+ * @since 1.6.4.3
4290
+ * @return array
4291
+ */
4292
+ static public function get_theme_branding()
4293
+ {
4294
+ $value = self::get_admin_settings_option( '_fl_builder_theme_branding', false );
4295
+ $defaults = array(
4296
+ 'name' => '',
4297
+ 'description' => '',
4298
+ 'company_name' => '',
4299
+ 'company_url' => '',
4300
+ 'screenshot_url' => '',
4301
+ );
4302
+
4303
+ return ! $value ? $defaults : $value;
4304
+ }
4305
+
4306
  /**
4307
  * Returns an array of slugs for all enabled icon sets.
4308
  *
4526
  delete_option('_fl_builder_enabled_icons');
4527
  delete_option('_fl_builder_branding');
4528
  delete_option('_fl_builder_branding_icon');
4529
+ delete_option('_fl_builder_theme_branding');
4530
  delete_option('_fl_builder_editing_capability');
4531
  delete_option('_fl_builder_global_templates_editing_capability');
4532
  delete_option('_fl_builder_help_button');
classes/class-fl-builder.php CHANGED
@@ -7,6 +7,14 @@
7
  */
8
  final class FLBuilder {
9
 
 
 
 
 
 
 
 
 
10
  /**
11
  * Localization
12
  *
@@ -324,6 +332,7 @@ final class FLBuilder {
324
  wp_register_script('jquery-bxslider', $js_url . 'jquery.bxslider.min.js', array('jquery-easing', 'jquery-fitvids'), $ver, true);
325
  wp_register_script('jquery-easing', $js_url . 'jquery.easing.1.3.js', array('jquery'), '1.3', true);
326
  wp_register_script('jquery-fitvids', $js_url . 'jquery.fitvids.js', array('jquery'), $ver, true);
 
327
  wp_register_script('jquery-infinitescroll', $js_url . 'jquery.infinitescroll.js', array('jquery'), $ver, true);
328
  wp_register_script('jquery-magnificpopup', $js_url . 'jquery.magnificpopup.min.js', array('jquery'), $ver, true);
329
  wp_register_script('jquery-mosaicflow', $js_url . 'jquery.mosaicflow.min.js', array('jquery'), $ver, true);
@@ -352,10 +361,10 @@ final class FLBuilder {
352
 
353
  $posts = get_posts(array(
354
  'post__in' => $post_ids,
355
- 'post_type' => 'any',
356
  'posts_per_page' => -1
357
  ));
358
-
359
  foreach($posts as $post) {
360
  self::enqueue_layout_styles_scripts($post->ID);
361
  }
@@ -387,6 +396,9 @@ final class FLBuilder {
387
  wp_enqueue_script('fl-slideshow');
388
  wp_enqueue_style('fl-slideshow');
389
  }
 
 
 
390
  }
391
 
392
  // Enqueue required module CSS and JS
@@ -819,11 +831,15 @@ final class FLBuilder {
819
  {
820
  $post_id = FLBuilderModel::get_post_id();
821
  $enabled = FLBuilderModel::is_builder_enabled();
 
822
  $ajax = defined( 'DOING_AJAX' );
823
  $in_loop = in_the_loop();
824
  $is_global = in_array( $post_id, FLBuilderModel::get_global_posts() );
825
 
826
- if( $enabled && ! $ajax && ( $in_loop || $is_global ) ) {
 
 
 
827
 
828
  // Remove the builder's render_content filter so it's not called again.
829
  remove_filter( 'the_content', 'FLBuilder::render_content' );
@@ -835,13 +851,16 @@ final class FLBuilder {
835
  echo '</div>';
836
  $content = ob_get_clean();
837
 
 
 
 
838
  // Do shortcodes here since letting the WP filter run can cause an infinite loop.
839
  $pattern = get_shortcode_regex();
840
  $content = preg_replace_callback( "/$pattern/s", 'FLBuilder::double_escape_shortcodes', $content );
841
  $content = do_shortcode( $content );
842
 
843
- // Reapply the builder's render_content filter.
844
- add_filter( 'the_content', 'FLBuilder::render_content' );
845
  }
846
 
847
  return $content;
@@ -1018,6 +1037,7 @@ final class FLBuilder {
1018
  */
1019
  static public function render_settings_field($name, $field, $settings = null)
1020
  {
 
1021
  $i = null;
1022
  $is_multiple = isset($field['multiple']) && $field['multiple'] === true;
1023
  $supports_multiple = $field['type'] != 'editor' && $field['type'] != 'photo' && $field['type'] != 'service';
@@ -1270,15 +1290,15 @@ final class FLBuilder {
1270
  * @param string $template The current template to be loaded.
1271
  * @return string
1272
  */
1273
- static public function render_template($template)
1274
  {
1275
  global $post;
 
 
1276
 
1277
- if($post && $post->post_type == 'fl-builder-template') {
1278
-
1279
- $page = locate_template(array('page.php'));
1280
 
1281
- if(!empty($page)) {
1282
  return $page;
1283
  }
1284
  }
@@ -1863,7 +1883,7 @@ final class FLBuilder {
1863
  echo ' data-node="' . $module->node . '" ';
1864
  echo ' data-animation-delay="' . $module->settings->animation_delay . '" ';
1865
 
1866
- if ( FLBuilderModel::is_builder_active() ) {
1867
  echo ' data-parent="' . $module->parent . '" ';
1868
  echo ' data-type="' . $module->settings->type . '" ';
1869
  echo ' data-name="' . $module->name . '" ';
7
  */
8
  final class FLBuilder {
9
 
10
+ /**
11
+ * The ID of a post that is currently being rendered.
12
+ *
13
+ * @since 1.6.4.2
14
+ * @var int $post_rendering
15
+ */
16
+ static public $post_rendering = null;
17
+
18
  /**
19
  * Localization
20
  *
332
  wp_register_script('jquery-bxslider', $js_url . 'jquery.bxslider.min.js', array('jquery-easing', 'jquery-fitvids'), $ver, true);
333
  wp_register_script('jquery-easing', $js_url . 'jquery.easing.1.3.js', array('jquery'), '1.3', true);
334
  wp_register_script('jquery-fitvids', $js_url . 'jquery.fitvids.js', array('jquery'), $ver, true);
335
+ wp_register_script('jquery-imagesloaded', $js_url . 'jquery.imagesloaded.js', array('jquery'), $ver, true);
336
  wp_register_script('jquery-infinitescroll', $js_url . 'jquery.infinitescroll.js', array('jquery'), $ver, true);
337
  wp_register_script('jquery-magnificpopup', $js_url . 'jquery.magnificpopup.min.js', array('jquery'), $ver, true);
338
  wp_register_script('jquery-mosaicflow', $js_url . 'jquery.mosaicflow.min.js', array('jquery'), $ver, true);
361
 
362
  $posts = get_posts(array(
363
  'post__in' => $post_ids,
364
+ 'post_type' => get_post_types(),
365
  'posts_per_page' => -1
366
  ));
367
+
368
  foreach($posts as $post) {
369
  self::enqueue_layout_styles_scripts($post->ID);
370
  }
396
  wp_enqueue_script('fl-slideshow');
397
  wp_enqueue_style('fl-slideshow');
398
  }
399
+ else if($row->settings->bg_type == 'video') {
400
+ wp_enqueue_script('jquery-imagesloaded');
401
+ }
402
  }
403
 
404
  // Enqueue required module CSS and JS
831
  {
832
  $post_id = FLBuilderModel::get_post_id();
833
  $enabled = FLBuilderModel::is_builder_enabled();
834
+ $rendering = $post_id === self::$post_rendering;
835
  $ajax = defined( 'DOING_AJAX' );
836
  $in_loop = in_the_loop();
837
  $is_global = in_array( $post_id, FLBuilderModel::get_global_posts() );
838
 
839
+ if( $enabled && ! $rendering && ! $ajax && ( $in_loop || $is_global ) ) {
840
+
841
+ // Set the post rendering ID.
842
+ self::$post_rendering = $post_id;
843
 
844
  // Remove the builder's render_content filter so it's not called again.
845
  remove_filter( 'the_content', 'FLBuilder::render_content' );
851
  echo '</div>';
852
  $content = ob_get_clean();
853
 
854
+ // Reapply the builder's render_content filter.
855
+ add_filter( 'the_content', 'FLBuilder::render_content' );
856
+
857
  // Do shortcodes here since letting the WP filter run can cause an infinite loop.
858
  $pattern = get_shortcode_regex();
859
  $content = preg_replace_callback( "/$pattern/s", 'FLBuilder::double_escape_shortcodes', $content );
860
  $content = do_shortcode( $content );
861
 
862
+ // Clear the post rendering ID.
863
+ self::$post_rendering = null;
864
  }
865
 
866
  return $content;
1037
  */
1038
  static public function render_settings_field($name, $field, $settings = null)
1039
  {
1040
+ $field = apply_filters( 'fl_builder_render_settings_field', $field, $name, $settings ); // Allow field settings filtering first
1041
  $i = null;
1042
  $is_multiple = isset($field['multiple']) && $field['multiple'] === true;
1043
  $supports_multiple = $field['type'] != 'editor' && $field['type'] != 'photo' && $field['type'] != 'service';
1290
  * @param string $template The current template to be loaded.
1291
  * @return string
1292
  */
1293
+ static public function render_template( $template )
1294
  {
1295
  global $post;
1296
+
1297
+ if ( 'string' == gettype( $template ) && $post && $post->post_type == 'fl-builder-template' ) {
1298
 
1299
+ $page = locate_template( array( 'page.php' ) );
 
 
1300
 
1301
+ if ( ! empty( $page ) ) {
1302
  return $page;
1303
  }
1304
  }
1883
  echo ' data-node="' . $module->node . '" ';
1884
  echo ' data-animation-delay="' . $module->settings->animation_delay . '" ';
1885
 
1886
+ if ( $active ) {
1887
  echo ' data-parent="' . $module->parent . '" ';
1888
  echo ' data-type="' . $module->settings->type . '" ';
1889
  echo ' data-name="' . $module->name . '" ';
css/fl-builder-layout.css CHANGED
@@ -191,7 +191,7 @@
191
  * iPad with portrait orientation.
192
  */
193
  @media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
194
- .fl-row-full-height .fl-row-content{
195
  height: 1024px;
196
  }
197
  }
@@ -199,8 +199,8 @@
199
  /**
200
  * iPad with landscape orientation.
201
  */
202
- @media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape){
203
- .fl-row-full-height .fl-row-content{
204
  height: 768px;
205
  }
206
  }
@@ -210,7 +210,7 @@
210
  * You can also target devices with aspect ratio.
211
  */
212
  @media screen and (device-aspect-ratio: 40/71) {
213
- .fl-row-full-height .fl-row-content {
214
  height: 500px;
215
  }
216
  }
@@ -244,6 +244,8 @@
244
  -webkit-flex-direction: column;
245
  -ms-flex-direction: column;
246
  flex-direction: column;
 
 
247
  max-width: 100%;
248
  width: 100%;
249
  }
191
  * iPad with portrait orientation.
192
  */
193
  @media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
194
+ .fl-row-full-height .fl-row-content-wrap{
195
  height: 1024px;
196
  }
197
  }
199
  /**
200
  * iPad with landscape orientation.
201
  */
202
+ @media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
203
+ .fl-row-full-height .fl-row-content-wrap{
204
  height: 768px;
205
  }
206
  }
210
  * You can also target devices with aspect ratio.
211
  */
212
  @media screen and (device-aspect-ratio: 40/71) {
213
+ .fl-row-full-height .fl-row-content-wrap {
214
  height: 500px;
215
  }
216
  }
244
  -webkit-flex-direction: column;
245
  -ms-flex-direction: column;
246
  flex-direction: column;
247
+ flex-shrink: 1;
248
+ min-width: 1px;
249
  max-width: 100%;
250
  width: 100%;
251
  }
css/fl-builder-rtl.css CHANGED
@@ -11,7 +11,7 @@
11
  /* Panel
12
  ------------------------------------------------------ */
13
 
14
- .fl-builder-blocks-section > span i {
15
  float: left;
16
  }
17
 
@@ -58,4 +58,81 @@
58
  .fl-help-tooltip-text {
59
  left: auto;
60
  right: 23px;
61
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  /* Panel
12
  ------------------------------------------------------ */
13
 
14
+ .fl-builder-blocks-section .fl-builder-blocks-section-title i {
15
  float: left;
16
  }
17
 
58
  .fl-help-tooltip-text {
59
  left: auto;
60
  right: 23px;
61
+ }
62
+
63
+ /* Tour
64
+ ------------------------------------------------------ */
65
+
66
+ .popover[class*=tour-] {
67
+ text-align: right;
68
+ }
69
+
70
+ .popover[class*=tour-] .fa-times {
71
+ right: auto;
72
+ left: 3px;
73
+ }
74
+
75
+ /* LightBox
76
+ ------------------------------------------------------ */
77
+
78
+ .fl-lightbox-footer {
79
+ text-align: left;
80
+ }
81
+
82
+ .fl-lightbox-header .fl-builder-settings-fields {
83
+ right: auto;
84
+ left: 10px;
85
+ }
86
+
87
+ /* Nano Scroller
88
+ ------------------------------------------------------ */
89
+
90
+ .fl-nanoscroller > .fl-nanoscroller-pane {
91
+ right: auto;
92
+ left: 2px;
93
+ }
94
+
95
+ /* Color Picker
96
+ ------------------------------------------------------ */
97
+
98
+ .fl-color-picker-preset-add {
99
+ right: auto;
100
+ left: 8px;
101
+ }
102
+
103
+ .fl-color-picker-preset-add:before {
104
+ left: auto;
105
+ right: 3px;
106
+ }
107
+
108
+ .fl-color-picker-preset-add:after {
109
+ left: auto;
110
+ right: 6px;
111
+ }
112
+
113
+ .fl-color-picker-clear .fl-color-picker-icon-remove {
114
+ left: 0;
115
+ right: auto;
116
+ }
117
+
118
+ .fl-color-picker-icon-remove:before {
119
+ left: auto;
120
+ right: 6px;
121
+ }
122
+
123
+ .fl-color-picker-icon-remove:after {
124
+ left: auto;
125
+ right: 6px;
126
+ }
127
+
128
+ .fl-color-picker-presets-list .fl-color-picker-preset-remove {
129
+ right: auto;
130
+ left: 5px;
131
+ }
132
+
133
+ /* Auto Suggest
134
+ ------------------------------------------------------ */
135
+
136
+ ul.as-selections li {
137
+ float: right;
138
+ }
css/fl-builder.css CHANGED
@@ -1028,6 +1028,9 @@ form.fl-builder-settings {
1028
  border: none;
1029
  width: 100%;
1030
  }
 
 
 
1031
  .fl-form-table th {
1032
  border: none !important;
1033
  background: #fff !important;
@@ -1147,6 +1150,63 @@ form.fl-builder-settings {
1147
  margin-bottom: 15px;
1148
  }
1149
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1150
  /* Text Field */
1151
  .fl-builder-settings-fields input.text-full {
1152
  width: 97%;
@@ -1160,8 +1220,6 @@ form.fl-builder-settings {
1160
  /* Color Picker */
1161
  .fl-color-picker {
1162
  cursor: pointer;
1163
- /*height: 30px;*/
1164
- /*width: 48px;*/
1165
  }
1166
  .fl-color-picker .fl-color-picker-clear:hover {
1167
  background-color: #ededed;
@@ -1219,11 +1277,15 @@ form.fl-builder-settings {
1219
  .fl-photo-field .fl-photo-edit {
1220
  margin: 0 0 0 11px;
1221
  }
1222
- .fl-photo-field .fl-photo-replace {
 
1223
  margin: 0 0 0 8px;
1224
  }
1225
 
1226
  /* Media Uploader */
 
 
 
1227
  .fl-builder-edit .media-modal-content .thumbnail {
1228
  padding: 0;
1229
  border: none;
1028
  border: none;
1029
  width: 100%;
1030
  }
1031
+ .fl-form-table tbody {
1032
+ border: none;
1033
+ }
1034
  .fl-form-table th {
1035
  border: none !important;
1036
  background: #fff !important;
1150
  margin-bottom: 15px;
1151
  }
1152
 
1153
+ /* Core WordPress UI */
1154
+ .wp-core-ui h1,
1155
+ .wp-core-ui h2,
1156
+ .wp-core-ui h3,
1157
+ .wp-core-ui h4,
1158
+ .wp-core-ui h5,
1159
+ .wp-core-ui h6 {
1160
+ color: #333;
1161
+ }
1162
+ .wp-core-ui .submitbox .submitdelete {
1163
+ color: #a00;
1164
+ }
1165
+ .wp-core-ui button {
1166
+ font-weight: normal;
1167
+ text-transform: capitalize;
1168
+ }
1169
+ .wp-core-ui textarea,
1170
+ .wp-core-ui input[type=text],
1171
+ .wp-core-ui input[type=password],
1172
+ .wp-core-ui input[type=file],
1173
+ .wp-core-ui input[type=email],
1174
+ .wp-core-ui input[type=number],
1175
+ .wp-core-ui input[type=search],
1176
+ .wp-core-ui input[type=tel],
1177
+ .wp-core-ui input[type=url],
1178
+ .wp-core-ui select {
1179
+ background-color: #fff;
1180
+ border-color: #dfdfdf;
1181
+ border-style: solid;
1182
+ border-width: 1px;
1183
+ border-radius: 3px;
1184
+ -moz-border-radius: 3px;
1185
+ -webkit-border-radius: 3px;
1186
+ box-shadow: none;
1187
+ -moz-box-shadow: none;
1188
+ -webkit-box-shadow: none;
1189
+ color: #333;
1190
+ font-weight: normal;
1191
+ }
1192
+ .wp-core-ui textarea:focus,
1193
+ .wp-core-ui input[type=text]:focus,
1194
+ .wp-core-ui input[type=password]:focus,
1195
+ .wp-core-ui input[type=file]:focus,
1196
+ .wp-core-ui input[type=email]:focus,
1197
+ .wp-core-ui input[type=number]:focus,
1198
+ .wp-core-ui input[type=search]:focus,
1199
+ .wp-core-ui input[type=tel]:focus,
1200
+ .wp-core-ui input[type=url]:focus,
1201
+ .wp-core-ui select:focus {
1202
+ background: transparent;
1203
+ border-color: #aaa;
1204
+ }
1205
+ .wp-core-ui input[type=search] {
1206
+ background-image: none;
1207
+ padding: 6px;
1208
+ }
1209
+
1210
  /* Text Field */
1211
  .fl-builder-settings-fields input.text-full {
1212
  width: 97%;
1220
  /* Color Picker */
1221
  .fl-color-picker {
1222
  cursor: pointer;
 
 
1223
  }
1224
  .fl-color-picker .fl-color-picker-clear:hover {
1225
  background-color: #ededed;
1277
  .fl-photo-field .fl-photo-edit {
1278
  margin: 0 0 0 11px;
1279
  }
1280
+ .fl-photo-field .fl-photo-replace,
1281
+ .fl-photo-field .fl-photo-remove {
1282
  margin: 0 0 0 8px;
1283
  }
1284
 
1285
  /* Media Uploader */
1286
+ .fl-builder-edit .media-frame {
1287
+ -webkit-backface-visibility: hidden;
1288
+ }
1289
  .fl-builder-edit .media-modal-content .thumbnail {
1290
  padding: 0;
1291
  border: none;
css/fl-color-picker.css CHANGED
@@ -1,7 +1,6 @@
1
- /**
2
- * This is for convenience of developing only. The minified result should go into
3
- * the _css var in iris.js. Run grunt cssmin to generate.
4
- */
5
  .fl-color-picker-ui .iris-picker {
6
  width: 200px;
7
  height: 215px;
@@ -167,9 +166,10 @@
167
  height: 1px;
168
  }
169
 
170
- /* Beaver Picker Stuff ---------------------------------------------- */
 
171
 
172
- .fl-color-picker-wrapper{
173
  position: relative;
174
  width: 48px;
175
  height: 32px;
@@ -203,6 +203,7 @@
203
 
204
  .fl-color-picker-ui{
205
  display: inline-block;
 
206
  z-index: 999999;
207
  position: fixed;
208
  overflow: hidden;
@@ -240,7 +241,13 @@
240
  -webkit-box-shadow: none;
241
  box-shadow: none;
242
  }
243
-
 
 
 
 
 
 
244
  .fl-color-picker-preset-add{
245
  position: absolute;
246
  top: 8px;
@@ -418,7 +425,8 @@
418
  transform: translate(-50%,-50%);
419
  }
420
 
421
- /* CSS icons ========================================= */
 
422
 
423
  .fl-color-picker-icon-check{
424
  position: relative;
1
+ /* Iris Base
2
+ ---------------------------------------------------- */
3
+
 
4
  .fl-color-picker-ui .iris-picker {
5
  width: 200px;
6
  height: 215px;
166
  height: 1px;
167
  }
168
 
169
+ /* Beaver Picker
170
+ ---------------------------------------------------- */
171
 
172
+ .fl-color-picker-wrapper {
173
  position: relative;
174
  width: 48px;
175
  height: 32px;
203
 
204
  .fl-color-picker-ui{
205
  display: inline-block;
206
+ font-family: Helvetica, Verdana, sans-serif;
207
  z-index: 999999;
208
  position: fixed;
209
  overflow: hidden;
241
  -webkit-box-shadow: none;
242
  box-shadow: none;
243
  }
244
+ .fl-color-picker-ui .iris-square-value {
245
+ -webkit-transition: none;
246
+ -moz-transition: none;
247
+ -ms-transition: none;
248
+ -o-transition: none;
249
+ transition: none;
250
+ }
251
  .fl-color-picker-preset-add{
252
  position: absolute;
253
  top: 8px;
425
  transform: translate(-50%,-50%);
426
  }
427
 
428
+ /* Color Picker Icons
429
+ ---------------------------------------------------- */
430
 
431
  .fl-color-picker-icon-check{
432
  position: relative;
css/fl-slideshow.css CHANGED
@@ -61,7 +61,7 @@
61
  .fl-fullscreen-close-message span {
62
  display: inline-block;
63
  padding: 15px 25px;
64
- background: url('http://www.smugmug.com/photos/1852179328_QJKsRGc-O.png') repeat;
65
  border-radius: 8px;
66
  -moz-border-radius: 8px;
67
  -webkit-border-radius: 8px;
@@ -98,7 +98,7 @@
98
  height: 60px;
99
  position: absolute;
100
  z-index: 2;
101
- background: url('http://www.smugmug.com/photos/1891028873_pGVrr7F-O.png') -120px -80px no-repeat;
102
  }
103
  .fl-slideshow-video-button:hover {
104
  background-position: -220px -80px;
@@ -110,7 +110,7 @@
110
  bottom: 0;
111
  left: 0;
112
  z-index: 1000;
113
- background: url('http://www.smugmug.com/photos/1852179328_QJKsRGc-O.png') repeat;
114
  }
115
  .fl-slideshow-video-wrap {
116
  top: 45px;
@@ -136,7 +136,7 @@
136
  top: 5px;
137
  width: 40px;
138
  height: 40px;
139
- background: url('http://www.smugmug.com/photos/1891028873_pGVrr7F-O.png') 0 -80px no-repeat;
140
  }
141
  .fl-slideshow-video-close:hover {
142
  background-position: -40px -80px;
@@ -212,7 +212,7 @@
212
  display: inline-block;
213
  width: 40px;
214
  height: 40px;
215
- background-image: url('http://www.smugmug.com/photos/1891028873_pGVrr7F-O.png');
216
  vertical-align: middle;
217
  }
218
  .fl-slideshow-nav-count {
@@ -277,7 +277,7 @@
277
  background: none !important;
278
  }
279
  .fl-slideshow-image-nav-left a {
280
- background: url('http://www.smugmug.com/photos/1958336862_VJJkzTT-O.png') left center no-repeat !important;
281
  }
282
  .fl-slideshow-image-nav-left a:hover {
283
  background-position: -70px center !important;
@@ -295,7 +295,7 @@
295
  background: none !important;
296
  }
297
  .fl-slideshow-image-nav-right a {
298
- background: url('http://www.smugmug.com/photos/1958336867_z422z4t-O.png') right center no-repeat !important;
299
  }
300
  .fl-slideshow-image-nav-right a:hover {
301
  background-position: 30px center !important;
@@ -313,12 +313,12 @@
313
  .fl-slideshow-mouse-nav-prev,
314
  .fl-slideshow-mouse-nav-prev div,
315
  .fl-slideshow-mouse-nav-prev img {
316
- cursor: url('http://www.smugmug.com/photos/1953630432_HdGWtRw-O.png'), w-resize !important;
317
  }
318
  .fl-slideshow-mouse-nav-next,
319
  .fl-slideshow-mouse-nav-next div,
320
  .fl-slideshow-mouse-nav-next img {
321
- cursor: url('http://www.smugmug.com/photos/1953631239_mJjjpW9-O.png'), e-resize !important;
322
  }
323
 
324
  /* Thumbs
@@ -415,7 +415,7 @@
415
  --------------------------------------------------------------*/
416
 
417
  .fl-slideshow-overlay {
418
- background: url('http://www.smugmug.com/photos/1852179328_QJKsRGc-O.png') repeat;
419
  }
420
  .fl-slideshow-overlay-close {
421
  position: absolute;
@@ -423,7 +423,7 @@
423
  right: 0;
424
  width: 40px;
425
  height: 40px;
426
- background: url('http://www.smugmug.com/photos/1891028873_pGVrr7F-O.png') 0 -80px no-repeat;
427
  }
428
  .fl-slideshow-overlay-close:hover {
429
  background-position: -40px -80px;
@@ -432,7 +432,7 @@
432
  .fl-slideshow-social .fl-slideshow-overlay-close {
433
  width: 30px;
434
  height: 30px;
435
- background: url('http://www.smugmug.com/photos/1891028873_pGVrr7F-O.png') -80px -80px no-repeat;
436
  }
437
  .fl-slideshow-caption .fl-slideshow-overlay-close:hover,
438
  .fl-slideshow-social .fl-slideshow-overlay-close:hover {
@@ -457,15 +457,15 @@
457
 
458
  /* Nav */
459
  .fl-slideshow-light .fl-slideshow-nav a {
460
- background-image: url('http://www.smugmug.com/photos/1900766460_zx7TpJF-O.png');
461
  }
462
 
463
  /* Video */
464
  .fl-slideshow-light .fl-slideshow-video {
465
- background: url('http://www.smugmug.com/photos/1900766462_Bzx8kTW-O.png') repeat;
466
  }
467
  .fl-slideshow-light .fl-slideshow-video-close {
468
- background: url('http://www.smugmug.com/photos/1900766460_zx7TpJF-O.png') 0 -80px no-repeat;
469
  }
470
  .fl-slideshow-light .fl-slideshow-video-close:hover {
471
  background-position: -40px -80px;
@@ -491,14 +491,14 @@
491
 
492
  /* Overlays */
493
  .fl-slideshow-light .fl-slideshow-overlay {
494
- background-image: url('http://www.smugmug.com/photos/1900766462_Bzx8kTW-O.png');
495
  }
496
  .fl-slideshow-light .fl-slideshow-overlay-close {
497
- background-image: url('http://www.smugmug.com/photos/1900766460_zx7TpJF-O.png');
498
  }
499
  .fl-slideshow-light .fl-slideshow-caption .fl-slideshow-overlay-close,
500
  .fl-slideshow-light .fl-slideshow-social .fl-slideshow-overlay-close {
501
- background-image: url('http://www.smugmug.com/photos/1900766460_zx7TpJF-O.png');
502
  }
503
 
504
  /* SM Font Icon Overrides
61
  .fl-fullscreen-close-message span {
62
  display: inline-block;
63
  padding: 15px 25px;
64
+ background: url('../img/slideshow/transparent-bg-dark.png') repeat;
65
  border-radius: 8px;
66
  -moz-border-radius: 8px;
67
  -webkit-border-radius: 8px;
98
  height: 60px;
99
  position: absolute;
100
  z-index: 2;
101
+ background: url('../img/slideshow/icons-light.png') -120px -80px no-repeat;
102
  }
103
  .fl-slideshow-video-button:hover {
104
  background-position: -220px -80px;
110
  bottom: 0;
111
  left: 0;
112
  z-index: 1000;
113
+ background: url('../img/slideshow/transparent-bg-dark.png') repeat;
114
  }
115
  .fl-slideshow-video-wrap {
116
  top: 45px;
136
  top: 5px;
137
  width: 40px;
138
  height: 40px;
139
+ background: url('../img/slideshow/icons-light.png') 0 -80px no-repeat;
140
  }
141
  .fl-slideshow-video-close:hover {
142
  background-position: -40px -80px;
212
  display: inline-block;
213
  width: 40px;
214
  height: 40px;
215
+ background-image: url('../img/slideshow/icons-light.png');
216
  vertical-align: middle;
217
  }
218
  .fl-slideshow-nav-count {
277
  background: none !important;
278
  }
279
  .fl-slideshow-image-nav-left a {
280
+ background: url('../img/slideshow/arrows-prev.png') left center no-repeat !important;
281
  }
282
  .fl-slideshow-image-nav-left a:hover {
283
  background-position: -70px center !important;
295
  background: none !important;
296
  }
297
  .fl-slideshow-image-nav-right a {
298
+ background: url('../img/slideshow/arrows-next.png') right center no-repeat !important;
299
  }
300
  .fl-slideshow-image-nav-right a:hover {
301
  background-position: 30px center !important;
313
  .fl-slideshow-mouse-nav-prev,
314
  .fl-slideshow-mouse-nav-prev div,
315
  .fl-slideshow-mouse-nav-prev img {
316
+ cursor: url('../img/slideshow/arrow-prev.png'), w-resize !important;
317
  }
318
  .fl-slideshow-mouse-nav-next,
319
  .fl-slideshow-mouse-nav-next div,
320
  .fl-slideshow-mouse-nav-next img {
321
+ cursor: url('../img/slideshow/arrow-next.png'), e-resize !important;
322
  }
323
 
324
  /* Thumbs
415
  --------------------------------------------------------------*/
416
 
417
  .fl-slideshow-overlay {
418
+ background: url('../img/slideshow/transparent-bg-dark.png') repeat;
419
  }
420
  .fl-slideshow-overlay-close {
421
  position: absolute;
423
  right: 0;
424
  width: 40px;
425
  height: 40px;
426
+ background: url('../img/slideshow/icons-light.png') 0 -80px no-repeat;
427
  }
428
  .fl-slideshow-overlay-close:hover {
429
  background-position: -40px -80px;
432
  .fl-slideshow-social .fl-slideshow-overlay-close {
433
  width: 30px;
434
  height: 30px;
435
+ background: url('../img/slideshow/icons-light.png') -80px -80px no-repeat;
436
  }
437
  .fl-slideshow-caption .fl-slideshow-overlay-close:hover,
438
  .fl-slideshow-social .fl-slideshow-overlay-close:hover {
457
 
458
  /* Nav */
459
  .fl-slideshow-light .fl-slideshow-nav a {
460
+ background-image: url('../img/slideshow/icons-dark.png');
461
  }
462
 
463
  /* Video */
464
  .fl-slideshow-light .fl-slideshow-video {
465
+ background: url('../img/slideshow/transparent-bg-light.png') repeat;
466
  }
467
  .fl-slideshow-light .fl-slideshow-video-close {
468
+ background: url('../img/slideshow/icons-dark.png') 0 -80px no-repeat;
469
  }
470
  .fl-slideshow-light .fl-slideshow-video-close:hover {
471
  background-position: -40px -80px;
491
 
492
  /* Overlays */
493
  .fl-slideshow-light .fl-slideshow-overlay {
494
+ background-image: url('../img/slideshow/transparent-bg-light.png');
495
  }
496
  .fl-slideshow-light .fl-slideshow-overlay-close {
497
+ background-image: url('../img/slideshow/icons-dark.png');
498
  }
499
  .fl-slideshow-light .fl-slideshow-caption .fl-slideshow-overlay-close,
500
  .fl-slideshow-light .fl-slideshow-social .fl-slideshow-overlay-close {
501
+ background-image: url('../img/slideshow/icons-dark.png');
502
  }
503
 
504
  /* SM Font Icon Overrides
fl-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Beaver Builder Plugin (Lite Version)
4
  * Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
5
  * Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
6
- * Version: 1.6.4.1
7
  * Author: The Beaver Builder Team
8
  * Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
9
  * Copyright: (c) 2014 Beaver Builder
@@ -11,7 +11,7 @@
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: fl-builder
13
  */
14
- define('FL_BUILDER_VERSION', '1.6.4.1');
15
  define('FL_BUILDER_FILE', __FILE__);
16
  define('FL_BUILDER_DIR', plugin_dir_path(FL_BUILDER_FILE));
17
  define('FL_BUILDER_URL', plugins_url('/', FL_BUILDER_FILE));
@@ -71,6 +71,7 @@ add_filter('page_row_actions', 'FLBuilderAdminPo
71
  add_filter('post_row_actions', 'FLBuilderAdminPosts::render_row_actions_link');
72
  add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'FLBuilderAdmin::render_plugin_action_links');
73
  add_filter('all_plugins', 'FLBuilderAdmin::white_label_plugins_page');
 
74
 
75
  /* AJAX Actions */
76
  add_action('fl_ajax_fl_builder_save', 'FLBuilderModel::update');
3
  * Plugin Name: Beaver Builder Plugin (Lite Version)
4
  * Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
5
  * Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
6
+ * Version: 1.6.4.3
7
  * Author: The Beaver Builder Team
8
  * Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
9
  * Copyright: (c) 2014 Beaver Builder
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: fl-builder
13
  */
14
+ define('FL_BUILDER_VERSION', '1.6.4.3');
15
  define('FL_BUILDER_FILE', __FILE__);
16
  define('FL_BUILDER_DIR', plugin_dir_path(FL_BUILDER_FILE));
17
  define('FL_BUILDER_URL', plugins_url('/', FL_BUILDER_FILE));
71
  add_filter('post_row_actions', 'FLBuilderAdminPosts::render_row_actions_link');
72
  add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'FLBuilderAdmin::render_plugin_action_links');
73
  add_filter('all_plugins', 'FLBuilderAdmin::white_label_plugins_page');
74
+ add_filter('wp_prepare_themes_for_js', 'FLBuilderAdmin::white_label_themes_page');
75
 
76
  /* AJAX Actions */
77
  add_action('fl_ajax_fl_builder_save', 'FLBuilderModel::update');
img/slideshow/arrow-next.png ADDED
Binary file
img/slideshow/arrow-prev.png ADDED
Binary file
img/slideshow/arrows-next.png ADDED
Binary file
img/slideshow/arrows-prev.png ADDED
Binary file
img/slideshow/icons-dark.png ADDED
Binary file
img/slideshow/icons-light.png ADDED
Binary file
img/slideshow/transparent-bg-dark.png ADDED
Binary file
img/slideshow/transparent-bg-light.png ADDED
Binary file
includes/field-photo.php CHANGED
@@ -10,7 +10,11 @@
10
  </select>
11
  <br />
12
  <a class="fl-photo-edit" href="javascript:void(0);" onclick="return false;"><?php _e('Edit', 'fl-builder'); ?></a>
 
 
 
13
  <a class="fl-photo-replace" href="javascript:void(0);" onclick="return false;"><?php _e('Replace', 'fl-builder'); ?></a>
 
14
  <div class="fl-clear"></div>
15
  </div>
16
  <input name="<?php echo $name; ?>" type="hidden" value='<?php echo $value; ?>' />
10
  </select>
11
  <br />
12
  <a class="fl-photo-edit" href="javascript:void(0);" onclick="return false;"><?php _e('Edit', 'fl-builder'); ?></a>
13
+ <?php if(isset($field['show_remove']) && $field['show_remove']) : ?>
14
+ <a class="fl-photo-remove" href="javascript:void(0);" onclick="return false;"><?php _e('Remove', 'fl-builder'); ?></a>
15
+ <?php else : ?>
16
  <a class="fl-photo-replace" href="javascript:void(0);" onclick="return false;"><?php _e('Replace', 'fl-builder'); ?></a>
17
+ <?php endif; ?>
18
  <div class="fl-clear"></div>
19
  </div>
20
  <input name="<?php echo $name; ?>" type="hidden" value='<?php echo $value; ?>' />
includes/field-text.php CHANGED
@@ -1 +1,72 @@
1
- <input type="text" name="<?php echo $name; ?>" value="<?php echo htmlspecialchars($value); ?>" class="text<?php if(isset($field['class'])) echo ' '. $field['class']; if(!isset($field['size'])) echo ' text-full'; ?>" <?php if(isset($field['placeholder'])) echo ' placeholder="'. $field['placeholder'] .'"'; if(isset($field['maxlength'])) echo ' maxlength="'. $field['maxlength'] .'"'; if(isset($field['size'])) echo ' size="'. $field['size'] .'"'; ?> />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <input type="text" name="<?php echo $name; ?>" value="<?php echo htmlspecialchars($value); ?>" class="text<?php if(isset($field['class'])) echo ' '. $field['class']; if(!isset($field['size'])) echo ' text-full'; ?>" <?php if(isset($field['placeholder'])) echo ' placeholder="'. $field['placeholder'] .'"'; if(isset($field['maxlength'])) echo ' maxlength="'. $field['maxlength'] .'"'; if(isset($field['size'])) echo ' size="'. $field['size'] .'"'; ?> />
2
+
3
+ <?php
4
+
5
+ /**
6
+ * Adding predefined values selector
7
+ */
8
+
9
+ if (
10
+ isset( $field['options'] )
11
+ && is_array( $field['options'] )
12
+ && ! empty( $field['options'] )
13
+ ) :
14
+
15
+ // Adding empty value if missing
16
+
17
+ if ( ! isset( $field['options'][''] ) ) {
18
+ $field['options'][''] = esc_html_x( '- Add predefined -', 'Add predefined value.', 'fl-builder' );
19
+ }
20
+
21
+ // Moving the empty value to top
22
+
23
+ $selector_value_empty = $field['options'][''];
24
+
25
+ unset( $field['options'][''] );
26
+
27
+ $field['options'] = array( '' => $selector_value_empty ) + $field['options'];
28
+
29
+ // Outputting select field
30
+
31
+ ?>
32
+
33
+ <select class="fl-select-add-value" data-target="<?php echo esc_attr( $name ); ?>">
34
+ <?php
35
+
36
+ foreach( $field['options'] as $option_value => $option ) {
37
+
38
+ if (
39
+ is_array( $option )
40
+ && isset( $option['label'] )
41
+ && isset( $option['options'] )
42
+ ) {
43
+
44
+ // Optgroups
45
+
46
+ echo '<optgroup label="' . esc_attr( $option['label'] ) . '">';
47
+
48
+ foreach( (array) $option['options'] as $optgroup_option_value => $optgroup_option ) {
49
+ echo '<option value="' . esc_attr( $optgroup_option_value ) . '">' . esc_html( $optgroup_option ) . '</option>';
50
+ }
51
+
52
+ echo '</optgroup>';
53
+
54
+
55
+ } else {
56
+
57
+ // Standard options
58
+
59
+ echo '<option value="' . esc_attr( $option_value ) . '">' . esc_html( $option ) . '</option>';
60
+
61
+ }
62
+
63
+ } // /foreach
64
+
65
+ ?>
66
+ </select>
67
+
68
+ <?php
69
+
70
+ endif;
71
+
72
+ ?>
includes/loop-settings.php CHANGED
@@ -32,7 +32,7 @@ FLBuilderModel::default_settings($settings, array(
32
  'author' => __('Author', 'fl-builder'),
33
  'comment_count' => __('Comment Count', 'fl-builder'),
34
  'menu_order' => __('Menu Order', 'fl-builder'),
35
- 'random' => __('Random', 'fl-builder'),
36
  )
37
  ), $settings);
38
 
32
  'author' => __('Author', 'fl-builder'),
33
  'comment_count' => __('Comment Count', 'fl-builder'),
34
  'menu_order' => __('Menu Order', 'fl-builder'),
35
+ 'rand' => __('Random', 'fl-builder'),
36
  )
37
  ), $settings);
38
 
includes/ui-js-config.php CHANGED
@@ -1,6 +1,8 @@
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 ); ?>,
@@ -14,8 +16,7 @@ var FLBuilderConfig = {
14
  simpleUi: <?php if(!current_user_can(FLBuilderModel::get_editing_capability())) echo 'true'; else echo 'false'; ?>,
15
  upgradeUrl: '<?php if(FL_BUILDER_LITE === true) $campaign = 'upgrade-button'; else $campaign = 'buy-button'; echo FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => $campaign ) ); ?>',
16
  userCanEditGlobalTemplates: <?php if(current_user_can(FLBuilderModel::get_global_templates_editing_capability())) echo 'true'; else echo 'false'; ?>,
17
- userTemplateType: '<?php echo FLBuilderModel::get_user_template_type(); ?>',
18
- colorPresets: <?php echo json_encode( $color_presets ); ?>
19
  };
20
 
21
  var FLBuilderStrings = {
1
  <script>
2
 
3
  var FLBuilderConfig = {
4
+ colorPresets: <?php echo json_encode( $color_presets ); ?>,
5
+ customImageSizeTitles: <?php echo json_encode( apply_filters( 'image_size_names_choose', array() ) ); ?>,
6
  debug: <?php if( defined( 'WP_DEBUG' ) && WP_DEBUG ) echo 'true'; else echo 'false'; ?>,
7
  enabledTemplates: '<?php echo $enabled_templates; ?>',
8
  help: <?php echo json_encode( $help_button ); ?>,
16
  simpleUi: <?php if(!current_user_can(FLBuilderModel::get_editing_capability())) echo 'true'; else echo 'false'; ?>,
17
  upgradeUrl: '<?php if(FL_BUILDER_LITE === true) $campaign = 'upgrade-button'; else $campaign = 'buy-button'; echo FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => $campaign ) ); ?>',
18
  userCanEditGlobalTemplates: <?php if(current_user_can(FLBuilderModel::get_global_templates_editing_capability())) echo 'true'; else echo 'false'; ?>,
19
+ userTemplateType: '<?php echo FLBuilderModel::get_user_template_type(); ?>'
 
20
  };
21
 
22
  var FLBuilderStrings = {
includes/updater-config.php CHANGED
@@ -3,7 +3,7 @@
3
  if(class_exists('FLUpdater')) {
4
  FLUpdater::add_product(array(
5
  'name' => 'Beaver Builder Plugin (Lite Version)',
6
- 'version' => '1.6.4.1',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
3
  if(class_exists('FLUpdater')) {
4
  FLUpdater::add_product(array(
5
  'name' => 'Beaver Builder Plugin (Lite Version)',
6
+ 'version' => '1.6.4.3',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
includes/updater/classes/class-fl-updater.php CHANGED
@@ -93,7 +93,10 @@ final class FLUpdater {
93
  $plugin = self::get_plugin_file($this->settings['slug']);
94
  $new_ver = $response->new_version;
95
  $curr_ver = $this->settings['version'];
96
-
 
 
 
97
  if(version_compare($new_ver, $curr_ver, '>')) {
98
  $transient->response[$plugin] = $response;
99
  }
@@ -128,14 +131,7 @@ final class FLUpdater {
128
  public function update_message( $plugin_data, $response )
129
  {
130
  if ( empty( $response->package ) ) {
131
- echo '<p style="padding:10px 20px; margin-top: 10px; background: #d54e21; color: #fff;">';
132
- echo __( '<strong>UPDATE UNAVAILABLE!</strong>', 'fl-builder' );
133
- echo '&nbsp;&nbsp;&nbsp;';
134
- echo __('Please subscribe to enable automatic updates for this plugin.', 'fl-builder');
135
- echo ' <a href="' . $plugin_data['PluginURI'] . '" target="_blank" style="color: #fff; text-decoration: underline;">';
136
- echo __('Subscribe Now', 'fl-builder');
137
- echo ' &raquo;</a>';
138
- echo '</p>';
139
  }
140
  }
141
 
@@ -283,6 +279,33 @@ final class FLUpdater {
283
  return false;
284
  }
285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
286
  /**
287
  * Static method for retrieving the plugin file path for a
288
  * product relative to the plugins directory.
93
  $plugin = self::get_plugin_file($this->settings['slug']);
94
  $new_ver = $response->new_version;
95
  $curr_ver = $this->settings['version'];
96
+
97
+ if ( empty( $response->package ) ) {
98
+ $response->upgrade_notice = FLUpdater::get_update_error_message();
99
+ }
100
  if(version_compare($new_ver, $curr_ver, '>')) {
101
  $transient->response[$plugin] = $response;
102
  }
131
  public function update_message( $plugin_data, $response )
132
  {
133
  if ( empty( $response->package ) ) {
134
+ echo FLUpdater::get_update_error_message( $plugin_data );
 
 
 
 
 
 
 
135
  }
136
  }
137
 
279
  return false;
280
  }
281
 
282
+ /**
283
+ * Returns an update message for if an update
284
+ * is available but there is no active subscription.
285
+ *
286
+ * @since 1.6.4.3
287
+ * @param array $plugin_data An array of data for this plugin.
288
+ * @return string
289
+ */
290
+ static private function get_update_error_message( $plugin_data = null )
291
+ {
292
+ $message = '';
293
+ $message .= '<p style="padding:10px 20px; margin-top: 10px; background: #d54e21; color: #fff;">';
294
+ $message .= __( '<strong>UPDATE UNAVAILABLE!</strong>', 'fl-builder' );
295
+ $message .= '&nbsp;&nbsp;&nbsp;';
296
+ $message .= __('Please subscribe to enable automatic updates for this plugin.', 'fl-builder');
297
+
298
+ if ( $plugin_data && isset( $plugin_data['PluginURI'] ) ) {
299
+ $message .= ' <a href="' . $plugin_data['PluginURI'] . '" target="_blank" style="color: #fff; text-decoration: underline;">';
300
+ $message .= __('Subscribe Now', 'fl-builder');
301
+ $message .= ' &raquo;</a>';
302
+ }
303
+
304
+ $message .= '</p>';
305
+
306
+ return $message;
307
+ }
308
+
309
  /**
310
  * Static method for retrieving the plugin file path for a
311
  * product relative to the plugins directory.
includes/updater/includes/form.php CHANGED
@@ -19,7 +19,7 @@
19
 
20
  <?php if(isset($_POST['fl-updater-nonce'])) : ?>
21
  <div class="updated">
22
- <p><?php _e('Email address saved!', 'fl-builder'); ?></p>
23
  </div>
24
  <?php endif; ?>
25
 
19
 
20
  <?php if(isset($_POST['fl-updater-nonce'])) : ?>
21
  <div class="updated">
22
+ <p><?php _e('License key saved!', 'fl-builder'); ?></p>
23
  </div>
24
  <?php endif; ?>
25
 
js/fl-builder-layout.js CHANGED
@@ -320,7 +320,14 @@
320
  */
321
  _resizeBgVideos: function()
322
  {
323
- $('.fl-bg-video').each(FLBuilderLayout._resizeBgVideo);
 
 
 
 
 
 
 
324
  },
325
 
326
  /**
@@ -431,8 +438,6 @@
431
  responsiveLabel = null,
432
  tabIndex = null,
433
  label = null;
434
-
435
- console.log( hash );
436
 
437
  if ( '' != hash ) {
438
 
320
  */
321
  _resizeBgVideos: function()
322
  {
323
+ $('.fl-bg-video').each( function() {
324
+
325
+ FLBuilderLayout._resizeBgVideo.apply( this );
326
+
327
+ if ( $( this ).parent().find( 'img' ).length > 0 ) {
328
+ $( this ).parent().imagesLoaded( $.proxy( FLBuilderLayout._resizeBgVideo, this ) );
329
+ }
330
+ } );
331
  },
332
 
333
  /**
438
  responsiveLabel = null,
439
  tabIndex = null,
440
  label = null;
 
 
441
 
442
  if ( '' != hash ) {
443
 
js/fl-builder.js CHANGED
@@ -670,6 +670,7 @@
670
  $('body').delegate('.fl-photo-field .fl-photo-select', 'click', FLBuilder._selectSinglePhoto);
671
  $('body').delegate('.fl-photo-field .fl-photo-edit', 'click', FLBuilder._selectSinglePhoto);
672
  $('body').delegate('.fl-photo-field .fl-photo-replace', 'click', FLBuilder._selectSinglePhoto);
 
673
 
674
  /* Multiple Photo Fields */
675
  $('body').delegate('.fl-multiple-photos-field .fl-multiple-photos-select', 'click', FLBuilder._selectMultiplePhotos);
@@ -698,6 +699,9 @@
698
 
699
  /* Loop Builder Fields */
700
  $('body').delegate('.fl-loop-builder select[name=post_type]', 'change', FLBuilder._loopBuilderPostTypeChange);
 
 
 
701
  },
702
 
703
  /**
@@ -4916,6 +4920,27 @@
4916
  srcSelect.trigger('change');
4917
  },
4918
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4919
  /**
4920
  * Returns the src URL for a photo.
4921
  *
@@ -4952,6 +4977,7 @@
4952
  var html = '',
4953
  size = null,
4954
  selected = null,
 
4955
  titles = {
4956
  full : FLBuilderStrings.fullSize,
4957
  large : FLBuilderStrings.large,
@@ -4965,8 +4991,19 @@
4965
  else {
4966
 
4967
  for(size in photo.sizes) {
 
 
 
 
 
 
 
 
 
 
 
4968
  selected = size == 'full' ? ' selected="selected"' : '';
4969
- html += '<option value="' + photo.sizes[size].url + '"' + selected + '>' + titles[size] + ' - ' + photo.sizes[size].width + ' x ' + photo.sizes[size].height + '</option>';
4970
  }
4971
  }
4972
 
@@ -5620,6 +5657,40 @@
5620
  $('.fl-loop-builder-filter').hide();
5621
  $('.fl-loop-builder-' + val + '-filter').show();
5622
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5623
 
5624
  /* AJAX
5625
  ----------------------------------------------------------*/
670
  $('body').delegate('.fl-photo-field .fl-photo-select', 'click', FLBuilder._selectSinglePhoto);
671
  $('body').delegate('.fl-photo-field .fl-photo-edit', 'click', FLBuilder._selectSinglePhoto);
672
  $('body').delegate('.fl-photo-field .fl-photo-replace', 'click', FLBuilder._selectSinglePhoto);
673
+ $('body').delegate('.fl-photo-field .fl-photo-remove', 'click', FLBuilder._singlePhotoRemoved);
674
 
675
  /* Multiple Photo Fields */
676
  $('body').delegate('.fl-multiple-photos-field .fl-multiple-photos-select', 'click', FLBuilder._selectMultiplePhotos);
699
 
700
  /* Loop Builder Fields */
701
  $('body').delegate('.fl-loop-builder select[name=post_type]', 'change', FLBuilder._loopBuilderPostTypeChange);
702
+
703
+ /* Text Fields - Add Value Selector */
704
+ $('body').delegate('.fl-select-add-value', 'change', FLBuilder._textFieldAddValueSelectChange);
705
  },
706
 
707
  /**
4920
  srcSelect.trigger('change');
4921
  },
4922
 
4923
+ /**
4924
+ * Clears a photo that has been selected in a single photo field.
4925
+ *
4926
+ * @since 1.6.4.3
4927
+ * @access private
4928
+ * @method _singlePhotoRemoved
4929
+ */
4930
+ _singlePhotoRemoved: function()
4931
+ {
4932
+ var selection = FLBuilder._singlePhotoSelector.state().get('selection'),
4933
+ wrap = $(this).closest('.fl-photo-field'),
4934
+ photoField = wrap.find('input[type=hidden]'),
4935
+ srcSelect = wrap.find('select');
4936
+
4937
+ selection.reset();
4938
+ wrap.addClass('fl-photo-empty');
4939
+ photoField.val('');
4940
+ srcSelect.html('');
4941
+ srcSelect.trigger('change');
4942
+ },
4943
+
4944
  /**
4945
  * Returns the src URL for a photo.
4946
  *
4977
  var html = '',
4978
  size = null,
4979
  selected = null,
4980
+ title = '',
4981
  titles = {
4982
  full : FLBuilderStrings.fullSize,
4983
  large : FLBuilderStrings.large,
4991
  else {
4992
 
4993
  for(size in photo.sizes) {
4994
+
4995
+ if ( 'undefined' != typeof titles[ size ] ) {
4996
+ title = titles[ size ] + ' - ';
4997
+ }
4998
+ else if ( 'undefined' != typeof FLBuilderConfig.customImageSizeTitles[ size ] ) {
4999
+ title = FLBuilderConfig.customImageSizeTitles[ size ] + ' - ';
5000
+ }
5001
+ else {
5002
+ title = '';
5003
+ }
5004
+
5005
  selected = size == 'full' ? ' selected="selected"' : '';
5006
+ html += '<option value="' + photo.sizes[size].url + '"' + selected + '>' + title + photo.sizes[size].width + ' x ' + photo.sizes[size].height + '</option>';
5007
  }
5008
  }
5009
 
5657
  $('.fl-loop-builder-filter').hide();
5658
  $('.fl-loop-builder-' + val + '-filter').show();
5659
  },
5660
+
5661
+ /* Text Fields - Add Value Selector
5662
+ ----------------------------------------------------------*/
5663
+
5664
+ /**
5665
+ * Callback for when "add value" selectors for text fields changes.
5666
+ *
5667
+ * @since 1.6.5
5668
+ * @access private
5669
+ * @method _textFieldAddValueSelectChange
5670
+ */
5671
+ _textFieldAddValueSelectChange: function()
5672
+ {
5673
+
5674
+ var dropdown = $( this ),
5675
+ textField = $( 'input[name="' + dropdown.data( 'target' ) + '"]' ),
5676
+ currentValue = textField.val(),
5677
+ addingValue = dropdown.val();
5678
+
5679
+ // Adding selected value to target text field only once
5680
+
5681
+ if ( -1 == currentValue.indexOf( addingValue ) ) {
5682
+
5683
+ textField
5684
+ .attr( 'value', ( currentValue.trim() + ' ' + addingValue.trim() ) );
5685
+
5686
+ }
5687
+
5688
+ // Resetting the selector
5689
+
5690
+ dropdown
5691
+ .val( '' );
5692
+
5693
+ },
5694
 
5695
  /* AJAX
5696
  ----------------------------------------------------------*/
js/fl-color-picker.js CHANGED
@@ -1,30 +1,32 @@
1
- /*! Iris Color Picker - v1.0.7 - 2014-11-28
2
- * https://github.com/Automattic/Iris
3
- * Copyright (c) 2014 Matt Wiebe; Licensed GPLv2 */
4
-
 
 
 
 
 
 
 
5
  var FLBuilderColorPicker;
6
 
7
- (function( $, undef ){
8
-
9
- // global variable to store color presets
10
- var FLBuilderColorPresets = [];
11
- var nonGradientIE, gradientType, vendorPrefixes, UA, isIE, IEVersion;
12
 
13
- // Even IE9 doesn't support gradients. Elaborate sigh.
14
- UA = navigator.userAgent.toLowerCase();
15
- isIE = navigator.appName === 'Microsoft Internet Explorer';
16
- IEVersion = isIE ? parseFloat( UA.match( /msie ([0-9]{1,}[\.0-9]{0,})/ )[1] ) : 0;
17
- nonGradientIE = ( isIE && IEVersion < 10 );
18
- gradientType = false;
19
- // we don't bother with an unprefixed version, as it has a different syntax
20
- vendorPrefixes = [ '-moz-', '-webkit-', '-o-', '-ms-' ];
21
 
22
  /**
23
  * Run some tests to check if the current browser supports CSS3 gradients.
24
  * Sets gradientType accordingly.
25
  *
26
  * @since 1.6.4
27
- * @return void
28
  */
29
  function testGradientType() {
30
  var el, base,
@@ -34,21 +36,23 @@ var FLBuilderColorPicker;
34
  if ( nonGradientIE ) {
35
  // if yes, set gradientType to filter
36
  gradientType = 'filter';
37
-
38
- } else {
39
 
40
  // if no, runs a quick test to check if the browser supports modern gradient syntax
41
  el = $( '<div id="iris-gradtest" />' );
42
  base = 'linear-gradient(top,#fff,#000)';
 
43
  $.each( vendorPrefixes, function( i, val ){
 
44
  el.css( bgImageString, val + base );
45
 
46
  if ( el.css( bgImageString ).match( 'gradient' ) ) {
47
  gradientType = i;
48
  return false;
49
  }
50
-
51
  });
 
52
  // check for legacy webkit gradient syntax
53
  if ( gradientType === false ) {
54
  el.css( 'background', '-webkit-gradient(linear,0% 0%,0% 100%,from(#fff),to(#000))' );
@@ -58,33 +62,42 @@ var FLBuilderColorPicker;
58
  }
59
 
60
  }
 
61
  el.remove();
62
  }
63
-
64
  }
65
 
66
  /**
67
- * Only for CSS3 gradients. oldIE will use a separate function.
68
- *
69
- * Accepts as many color stops as necessary from 2nd arg on, or 2nd
70
- * arg can be an array of color stops
71
- *
72
- * @param {string} origin Gradient origin - top or left, defaults to left.
73
- * @return {string} Appropriate CSS3 gradient string for use in
74
- */
 
 
75
  function createGradient( origin, stops ) {
76
- origin = ( origin === 'top' ) ? 'top' : 'left';
77
- stops = $.isArray( stops ) ? stops : Array.prototype.slice.call( arguments, 1 );
 
78
  if ( gradientType === 'webkit' ) {
79
  return legacyWebkitGradient( origin, stops );
80
- } else {
 
81
  return vendorPrefixes[ gradientType ] + 'linear-gradient(' + origin + ', ' + stops.join(', ') + ')';
82
  }
83
  }
84
 
85
  /**
86
- * Stupid gradients for a stupid browser.
87
- */
 
 
 
 
 
88
  function stupidIEGradient( origin, stops ) {
89
  var type, self, lastIndex, filter, startPosProp, endPosProp, dimensionProp, template, html;
90
 
@@ -101,13 +114,16 @@ var FLBuilderColorPicker;
101
  dimensionProp = ( type === 1 ) ? 'height' : 'width';
102
  template = '<div class="iris-ie-gradient-shim" style="position:absolute;' + dimensionProp + ':100%;' + startPosProp + ':%start%;' + endPosProp + ':%end%;' + filter + ':%filter%;" data-color:"%color%"></div>';
103
  html = '';
 
104
  // need a positioning context
105
  if ( self.css('position') === 'static' ) {
106
  self.css( {position: 'relative' } );
107
  }
108
 
109
  stops = fillColorStops( stops );
 
110
  $.each(stops, function( i, startColor ) {
 
111
  var endColor, endStop, filterVal;
112
 
113
  // we want two at a time. if we're on the last pair, bail.
@@ -116,6 +132,7 @@ var FLBuilderColorPicker;
116
  }
117
 
118
  endColor = stops[ i + 1 ];
 
119
  //if our pairs are at the same color stop, moving along.
120
  if ( startColor.stop === endColor.stop ) {
121
  return;
@@ -124,10 +141,10 @@ var FLBuilderColorPicker;
124
  endStop = 100 - parseFloat( endColor.stop ) + '%';
125
  startColor.octoHex = new Color( startColor.color ).toIEOctoHex();
126
  endColor.octoHex = new Color( endColor.color ).toIEOctoHex();
127
-
128
  filterVal = 'progid:DXImageTransform.Microsoft.Gradient(GradientType=' + type + ', StartColorStr=\'' + startColor.octoHex + '\', EndColorStr=\'' + endColor.octoHex + '\')';
129
  html += template.replace( '%start%', startColor.stop ).replace( '%end%', endStop ).replace( '%filter%', filterVal );
130
  });
 
131
  self.find( '.iris-ie-gradient-shim' ).remove();
132
  $( html ).prependTo( self );
133
  }
@@ -137,20 +154,30 @@ var FLBuilderColorPicker;
137
  *
138
  * @see fillColorStops
139
  * @since 1.6.4
 
140
  * @param {String} origin Where the gradient starts.
141
- * @param {type} colorList [description]
142
  * @return {String} The correct CSS gradient syntax.
143
  */
144
  function legacyWebkitGradient( origin, colorList ) {
145
  var stops = [];
 
146
  origin = ( origin === 'top' ) ? '0% 0%,0% 100%,' : '0% 100%,100% 100%,';
147
  colorList = fillColorStops( colorList );
 
148
  $.each( colorList, function( i, val ){
149
  stops.push( 'color-stop(' + ( parseFloat( val.stop ) / 100 ) + ', ' + val.color + ')' );
150
  });
 
151
  return '-webkit-gradient(linear,' + origin + stops.join(',') + ')';
152
  };
153
 
 
 
 
 
 
 
154
  function fillColorStops( colorList ) {
155
  var colors = [],
156
  percs = [],
@@ -184,9 +211,16 @@ var FLBuilderColorPicker;
184
  $.each( percs, function( i ){
185
  newColorList[i] = { color: colors[i], stop: percs[i] };
186
  });
 
187
  return newColorList;
188
  }
189
 
 
 
 
 
 
 
190
  function backFillColorStops( stops ) {
191
  var first = 0,
192
  last = stops.length - 1,
@@ -200,6 +234,7 @@ var FLBuilderColorPicker;
200
  if ( stops.length <= 2 || $.inArray( false, stops ) < 0 ) {
201
  return stops;
202
  }
 
203
  while ( i < stops.length - 1 ) {
204
  if ( ! foundFirst && stops[i] === false ) {
205
  first = i - 1;
@@ -210,19 +245,27 @@ var FLBuilderColorPicker;
210
  }
211
  i++;
212
  }
 
213
  steps = last - first;
214
  firstVal = parseInt( stops[first].replace('%'), 10 );
215
  incr = ( parseFloat( stops[last].replace('%') ) - firstVal ) / steps;
216
  i = first + 1;
217
  step = 1;
 
218
  while ( i < last ) {
219
  stops[i] = ( firstVal + ( step * incr ) ) + '%';
220
  step++;
221
  i++;
222
  }
 
223
  return backFillColorStops( stops );
224
  }
225
 
 
 
 
 
 
226
  $.fn.gradient = function() {
227
  var args = arguments;
228
 
@@ -237,6 +280,11 @@ var FLBuilderColorPicker;
237
  });
238
  };
239
 
 
 
 
 
 
240
  $.fn.raninbowGradient = function( origin, args ) {
241
  var opts, template, i, steps;
242
 
@@ -245,19 +293,22 @@ var FLBuilderColorPicker;
245
  template = 'hsl(%h%,' + opts.s + '%,' + opts.l + '%)';
246
  i = 0;
247
  steps = [];
 
248
  while ( i <= 360 ) {
249
  steps.push( template.replace('%h%', i) );
250
  i += 30;
251
  }
 
252
  return this.each(function() {
253
  $(this).gradient( origin, steps );
254
  });
255
  };
256
 
257
  /**
258
- * Helper class for Color Picker.
259
  *
260
  * @class FLBuilderColorPicker
 
261
  * @since 1.6.4
262
  */
263
  FLBuilderColorPicker = function( settings )
@@ -302,6 +353,12 @@ var FLBuilderColorPicker;
302
 
303
  };
304
 
 
 
 
 
 
 
305
  FLBuilderColorPicker.prototype = {
306
 
307
  /**
@@ -319,18 +376,51 @@ var FLBuilderColorPicker;
319
  * @property {String} _color
320
  */
321
  _color : '',
 
 
 
 
 
 
 
322
  _currentElement : '',
 
 
 
 
 
 
 
323
  _inited : false,
 
 
 
 
 
 
 
324
  _defaultHSLControls : {
325
  horiz : 's',
326
  vert : 'l',
327
  strip : 'h'
328
  },
 
 
 
 
 
 
 
329
  _defaultHSVControls : {
330
  horiz : 'h',
331
  vert : 'v',
332
  strip : 's'
333
  },
 
 
 
 
 
334
  _scale : {
335
  h: 360,
336
  s: 100,
@@ -338,6 +428,12 @@ var FLBuilderColorPicker;
338
  v: 100
339
  },
340
 
 
 
 
 
 
 
341
  _init: function(){
342
 
343
  var self = this,
@@ -399,7 +495,7 @@ var FLBuilderColorPicker;
399
  // cache reference to the picker wrapper
400
  this._ui = $( '.fl-color-picker-ui' );
401
  this._iris = $( '.iris-picker' );
402
- this._wrapper = $('.fl-lightbox-content-wrap');
403
 
404
  if( !$('html').hasClass( 'fl-color-picker-init' ) ){
405
  this._ui
@@ -424,19 +520,22 @@ var FLBuilderColorPicker;
424
  // bind picker control events
425
  this._pickerControls();
426
 
427
- if( !$('html').hasClass( 'fl-color-picker-init' ) ){
428
- // bind presets control events
429
- this._presetsControls();
430
- }
431
 
432
  // now we know that the picker is already added to the body
433
  $('html').addClass( 'fl-color-picker-init' );
434
 
435
  },
436
 
 
 
 
 
437
  _prepareColorFields: function(){
438
 
439
  var self = this;
 
440
  // append presets initial html and trigger that toggles the picker
441
  $('.fl-color-picker-value').each( function(){
442
 
@@ -447,23 +546,14 @@ var FLBuilderColorPicker;
447
  // set initial color
448
  $colorTrigger.css({ backgroundColor: '#' + $this.val().toString() });
449
  }
450
-
451
  });
452
-
453
- $('.fl-lightbox-content-wrap').on( 'click', '.fl-color-picker-color', function(){
454
- var val = $( this ).next('.fl-color-picker-value').val();
455
- self._color = new Color( val ).setHSpace( self.options.mode );
456
- self.options.color = self._color.toString();
457
- self._setColor( val );
458
- } );
459
-
460
  },
461
 
462
  /**
463
  * Sets templates to build the color picker markup.
464
  *
465
  * @since 1.6.4
466
- * @return void
467
  */
468
  _setTemplates: function(){
469
 
@@ -484,6 +574,13 @@ var FLBuilderColorPicker;
484
 
485
  },
486
 
 
 
 
 
 
 
 
487
  _has: function( needle, haystack ) {
488
  var ret = false;
489
  $.each( haystack, function( i, v ){
@@ -501,7 +598,7 @@ var FLBuilderColorPicker;
501
  *
502
  * @see _addPresetView
503
  * @since 1.6.4
504
- * @return void
505
  */
506
  _buildUI: function(){
507
  var self = this;
@@ -551,7 +648,7 @@ var FLBuilderColorPicker;
551
  * Shows a visual feedback when a color is added as a preset.
552
  *
553
  * @since 1.6.4
554
- * @return void
555
  */
556
  _addPresetFeedback: function(){
557
 
@@ -571,47 +668,46 @@ var FLBuilderColorPicker;
571
  * Sets some triggers for positioning logic of the picker and color reset.
572
  *
573
  * @since 1.6.4
574
- * @return void
575
  */
576
  _pickerControls: function(){
577
  var self = this;
578
 
579
  // logic for picker positioning
580
- this._wrapper.on( 'click', '.fl-color-picker-color', function(){
581
- var $this = $(this);
582
- self._currentElement = $this.parent().find('.fl-color-picker-value');
583
-
584
- self._ui.position({
585
- my: 'left top',
586
- at: 'left bottom',
587
- of: $this,
588
- collision: 'flipfit',
589
- using: function( position, feedback ){
590
- self._togglePicker( position );
591
- }
592
- })
593
-
594
- } );
595
-
596
- this._wrapper.on( 'click', '.fl-color-picker-clear', function(){
597
- var $this = $(this);
598
- self._currentElement = $this.parent().find('.fl-color-picker-value');
599
 
600
- $this
601
- .prev( '.fl-color-picker-color' )
602
- .css({ backgroundColor: 'transparent' })
603
- .addClass('fl-color-picker-empty');
604
 
605
- self._setColor( '' );
606
- self.element.val( '' );
607
- self._currentElement
608
- .val( '' )
609
- .trigger( 'change' );
610
- } );
611
 
612
  // logic to hide picker when the user clicks outside it
613
  $( document ).on( 'click', function( event ) {
614
-
615
  if ( 0 === $( event.target ).closest( '.fl-color-picker-ui' ).length ) {
616
  $( '.fl-color-picker-ui.fl-color-picker-active' ).removeClass( 'fl-color-picker-active' );
617
  }
@@ -625,7 +721,7 @@ var FLBuilderColorPicker;
625
  * @see _addPreset
626
  * @see _removePreset
627
  * @since 1.6.4
628
- * @return void
629
  */
630
  _presetsControls: function(){
631
  var self = this,
@@ -636,9 +732,11 @@ var FLBuilderColorPicker;
636
  presetsList = presets.find( '.fl-color-picker-presets-list' );
637
 
638
  // add preset
639
- addPreset.on( 'click', function(){
640
- self._addPreset( self.element.val() );
641
- } );
 
 
642
 
643
  // presets toggle
644
  presetsList
@@ -646,16 +744,16 @@ var FLBuilderColorPicker;
646
  .hide();
647
 
648
  presets
 
649
  .on( 'click', '.fl-color-picker-presets-toggle', function(){
650
-
651
  presetsOpenLabel.toggleClass('fl-color-picker-active');
652
  presetsCloseLabel.toggleClass('fl-color-picker-active');
653
-
654
  presetsList.slideToggle( 500 );
655
  } )
656
  // set preset as current color
657
  .on( 'click', '.fl-color-picker-preset', function( e ){
658
  var currentColor = new Color( $( this ).data( 'color' ).toString() );
 
659
  self._setColor( currentColor );
660
  self._currentElement
661
  .parent()
@@ -665,22 +763,21 @@ var FLBuilderColorPicker;
665
 
666
  presetsOpenLabel.toggleClass('fl-color-picker-active');
667
  presetsCloseLabel.toggleClass('fl-color-picker-active');
668
-
669
  presetsList.slideToggle( 500 );
670
- } )
671
  // removes a preset
672
  .on( 'click', '.fl-color-picker-preset-remove', function( e ){
673
  e.stopPropagation();
674
  self._removePreset( $( this ).parent().data( 'color' ) );
675
  });
676
-
677
  },
678
 
679
  /**
680
  * Removes a color preset from the array of presets and from the UI.
681
  *
682
- * @param {string} preset The respective hex value of the preset.
683
- * @return void
 
684
  */
685
  _removePreset: function( preset ){
686
  if( confirm( this.options.labels.removePresetConfirm ) ){
@@ -714,9 +811,9 @@ var FLBuilderColorPicker;
714
  *
715
  * @see _addPresetView
716
  * @see _addPresetFeedback
717
- * @param {string} preset The respective hex value of the preset.
 
718
  * @since 1.6.4
719
- * @return void
720
  */
721
  _addPreset: function( preset ){
722
  var color = preset.toString().replace( /^#/, '' );
@@ -744,10 +841,9 @@ var FLBuilderColorPicker;
744
  /**
745
  * Logic for positioning of the color picker.
746
  *
747
- *
748
- * @param {Object} position An object containing x and y location for positioning.
749
- * @since 1.6.4
750
- * @return void
751
  */
752
  _togglePicker: function( position ){
753
  var self = this;
@@ -778,6 +874,10 @@ var FLBuilderColorPicker;
778
 
779
  },
780
 
 
 
 
 
781
  _paint: function() {
782
  var self = this;
783
  self._paintDimension( 'right', 'strip' );
@@ -785,6 +885,12 @@ var FLBuilderColorPicker;
785
  self._paintDimension( 'left', 'horiz' );
786
  },
787
 
 
 
 
 
 
 
788
  _paintDimension: function( origin, control ) {
789
  var self = this,
790
  c = self._color,
@@ -866,6 +972,11 @@ var FLBuilderColorPicker;
866
  }
867
  },
868
 
 
 
 
 
 
869
  _getHSpaceColor: function() {
870
  return ( this.options.mode === 'hsv' ) ? this._color.toHsv() : this._color.toHsl();
871
  },
@@ -874,8 +985,9 @@ var FLBuilderColorPicker;
874
  * Logic to listen to events from the main color input and to bind it to the current color field.
875
  *
876
  * @see _setColor
877
- * @since 1.6.4
878
- * @return void
 
879
  */
880
  _addInputListeners: function( input ) {
881
  var self = this,
@@ -937,14 +1049,12 @@ var FLBuilderColorPicker;
937
 
938
  input.on( 'change', callback ).on( 'keyup', self._debounce( callback, debounceTimeout ) );
939
 
940
- // If we initialized hidden, show on first focus. The rest is up to you.
941
- if ( self.options.hide ) {
942
- input.one( 'focus', function() {
943
- self.show();
944
- });
945
- }
946
  },
947
 
 
 
 
 
948
  _initControls: function() {
949
  var self = this,
950
  controls = self.controls,
@@ -1043,13 +1153,14 @@ var FLBuilderColorPicker;
1043
  event.target = self.controls.squareDrag.get(0);
1044
  self.controls.squareDrag.css( pos ).trigger( event );
1045
  });
1046
-
1047
- // palettes
1048
- if ( self.options.palettes ) {
1049
- self._paletteListeners();
1050
- }
1051
  },
1052
 
 
 
 
 
 
 
1053
  _squareDrag: function( event, ui ) {
1054
  var self = this,
1055
  controlOpts = self.options.controls,
@@ -1063,6 +1174,11 @@ var FLBuilderColorPicker;
1063
  self._change.apply( self, arguments );
1064
  },
1065
 
 
 
 
 
 
1066
  _setColor: function( value ) {
1067
  var self = this,
1068
  oldValue = self.options.color,
@@ -1085,9 +1201,14 @@ var FLBuilderColorPicker;
1085
  self.active = 'external';
1086
  self._change();
1087
  }
1088
-
1089
  },
1090
 
 
 
 
 
 
 
1091
  _squareDimensions: function( forceRefresh ) {
1092
  var square = this.controls.square,
1093
  dimensions,
@@ -1106,6 +1227,13 @@ var FLBuilderColorPicker;
1106
  return dimensions;
1107
  },
1108
 
 
 
 
 
 
 
 
1109
  _isNonHueControl: function( active, type ) {
1110
  if ( active === 'square' && this.options.controls.strip === 'h' ) {
1111
  return true;
@@ -1116,6 +1244,10 @@ var FLBuilderColorPicker;
1116
  return true;
1117
  },
1118
 
 
 
 
 
1119
  _change: function() {
1120
  var self = this,
1121
  controls = self.controls,
@@ -1162,28 +1294,22 @@ var FLBuilderColorPicker;
1162
 
1163
  // store hue for repeating above check next time
1164
  self.hue = self._color.h();
1165
-
1166
  self.options.color = self._color.toString();
1167
 
1168
- // only run after the first time
1169
- // if ( self._inited ) {
1170
- // self.trigger( 'change', { type: self.active }, { color: self._color } );
1171
- // }
1172
-
1173
  if ( self.element.is( ':input' ) && ! self._color.error ) {
1174
  self.element.removeClass( 'iris-error' );
1175
  if ( self.element.val() !== self._color.toString() ) {
1176
  self.element.val( self._color.toString() );
1177
 
1178
- if( self._currentElement ){
1179
- self._currentElement
1180
  .val( self._color.toString().replace( /^#/, '' ) )
1181
  .parent()
1182
  .find( '.fl-color-picker-color' )
1183
  .css({ backgroundColor: self._color.toString() })
1184
  .removeClass( 'fl-color-picker-empty' );
1185
 
1186
- self._currentElement.trigger( 'change' );
1187
  }
1188
 
1189
  }
@@ -1194,7 +1320,12 @@ var FLBuilderColorPicker;
1194
  self.active = false;
1195
  },
1196
 
1197
- // taken from underscore.js _.debounce method
 
 
 
 
 
1198
  _debounce: function( func, wait, immediate ) {
1199
  var timeout, result;
1200
  return function() {
@@ -1222,9 +1353,14 @@ var FLBuilderColorPicker;
1222
  };
1223
 
1224
  }( jQuery ));
1225
- /*! Color.js - v0.9.11 - 2013-08-09
1226
- * https://github.com/Automattic/Color.js
1227
- * Copyright (c) 2013 Matt Wiebe; Licensed GPLv2 */
 
 
 
 
 
1228
  (function(global, undef) {
1229
 
1230
  var Color = function( color, type ) {
1
+ /**
2
+ * Custom color picker for Beaver Builder based on Iris by Matt Wiebe.
3
+ *
4
+ * Iris Color Picker - v1.0.7 - 2014-11-28
5
+ * https://github.com/Automattic/Iris
6
+ * Copyright (c) 2014 Matt Wiebe; Licensed GPLv2
7
+ */
8
+
9
+ /**
10
+ * Global variable for referencing the color picker.
11
+ */
12
  var FLBuilderColorPicker;
13
 
14
+ (function( $, undef ) {
 
 
 
 
15
 
16
+ var FLBuilderColorPresets = [],
17
+ UA = navigator.userAgent.toLowerCase(),
18
+ isIE = navigator.appName === 'Microsoft Internet Explorer',
19
+ IEVersion = isIE ? parseFloat( UA.match( /msie ([0-9]{1,}[\.0-9]{0,})/ )[1] ) : 0,
20
+ nonGradientIE = ( isIE && IEVersion < 10 ),
21
+ gradientType = false,
22
+ vendorPrefixes = [ '-moz-', '-webkit-', '-o-', '-ms-' ];
 
23
 
24
  /**
25
  * Run some tests to check if the current browser supports CSS3 gradients.
26
  * Sets gradientType accordingly.
27
  *
28
  * @since 1.6.4
29
+ * @method testGradientType
30
  */
31
  function testGradientType() {
32
  var el, base,
36
  if ( nonGradientIE ) {
37
  // if yes, set gradientType to filter
38
  gradientType = 'filter';
39
+ }
40
+ else {
41
 
42
  // if no, runs a quick test to check if the browser supports modern gradient syntax
43
  el = $( '<div id="iris-gradtest" />' );
44
  base = 'linear-gradient(top,#fff,#000)';
45
+
46
  $.each( vendorPrefixes, function( i, val ){
47
+
48
  el.css( bgImageString, val + base );
49
 
50
  if ( el.css( bgImageString ).match( 'gradient' ) ) {
51
  gradientType = i;
52
  return false;
53
  }
 
54
  });
55
+
56
  // check for legacy webkit gradient syntax
57
  if ( gradientType === false ) {
58
  el.css( 'background', '-webkit-gradient(linear,0% 0%,0% 100%,from(#fff),to(#000))' );
62
  }
63
 
64
  }
65
+
66
  el.remove();
67
  }
 
68
  }
69
 
70
  /**
71
+ * Only for CSS3 gradients. oldIE will use a separate function.
72
+ *
73
+ * Accepts as many color stops as necessary from 2nd arg on, or 2nd
74
+ * arg can be an array of color stops
75
+ *
76
+ * @since 1.6.4
77
+ * @method createGradient
78
+ * @param {String} origin Gradient origin - top or left, defaults to left.
79
+ * @return {String} Appropriate CSS3 gradient string for use in
80
+ */
81
  function createGradient( origin, stops ) {
82
+ origin = ( origin === 'top' ) ? 'top' : 'left';
83
+ stops = $.isArray( stops ) ? stops : Array.prototype.slice.call( arguments, 1 );
84
+
85
  if ( gradientType === 'webkit' ) {
86
  return legacyWebkitGradient( origin, stops );
87
+ }
88
+ else {
89
  return vendorPrefixes[ gradientType ] + 'linear-gradient(' + origin + ', ' + stops.join(', ') + ')';
90
  }
91
  }
92
 
93
  /**
94
+ * Gradients for stupid IE.
95
+ *
96
+ * @since 1.6.4
97
+ * @method stupidIEGradient
98
+ * @param {String} origin
99
+ * @return {Array} stops
100
+ */
101
  function stupidIEGradient( origin, stops ) {
102
  var type, self, lastIndex, filter, startPosProp, endPosProp, dimensionProp, template, html;
103
 
114
  dimensionProp = ( type === 1 ) ? 'height' : 'width';
115
  template = '<div class="iris-ie-gradient-shim" style="position:absolute;' + dimensionProp + ':100%;' + startPosProp + ':%start%;' + endPosProp + ':%end%;' + filter + ':%filter%;" data-color:"%color%"></div>';
116
  html = '';
117
+
118
  // need a positioning context
119
  if ( self.css('position') === 'static' ) {
120
  self.css( {position: 'relative' } );
121
  }
122
 
123
  stops = fillColorStops( stops );
124
+
125
  $.each(stops, function( i, startColor ) {
126
+
127
  var endColor, endStop, filterVal;
128
 
129
  // we want two at a time. if we're on the last pair, bail.
132
  }
133
 
134
  endColor = stops[ i + 1 ];
135
+
136
  //if our pairs are at the same color stop, moving along.
137
  if ( startColor.stop === endColor.stop ) {
138
  return;
141
  endStop = 100 - parseFloat( endColor.stop ) + '%';
142
  startColor.octoHex = new Color( startColor.color ).toIEOctoHex();
143
  endColor.octoHex = new Color( endColor.color ).toIEOctoHex();
 
144
  filterVal = 'progid:DXImageTransform.Microsoft.Gradient(GradientType=' + type + ', StartColorStr=\'' + startColor.octoHex + '\', EndColorStr=\'' + endColor.octoHex + '\')';
145
  html += template.replace( '%start%', startColor.stop ).replace( '%end%', endStop ).replace( '%filter%', filterVal );
146
  });
147
+
148
  self.find( '.iris-ie-gradient-shim' ).remove();
149
  $( html ).prependTo( self );
150
  }
154
  *
155
  * @see fillColorStops
156
  * @since 1.6.4
157
+ * @method legacyWebkitGradient
158
  * @param {String} origin Where the gradient starts.
159
+ * @param {Array} colorList
160
  * @return {String} The correct CSS gradient syntax.
161
  */
162
  function legacyWebkitGradient( origin, colorList ) {
163
  var stops = [];
164
+
165
  origin = ( origin === 'top' ) ? '0% 0%,0% 100%,' : '0% 100%,100% 100%,';
166
  colorList = fillColorStops( colorList );
167
+
168
  $.each( colorList, function( i, val ){
169
  stops.push( 'color-stop(' + ( parseFloat( val.stop ) / 100 ) + ', ' + val.color + ')' );
170
  });
171
+
172
  return '-webkit-gradient(linear,' + origin + stops.join(',') + ')';
173
  };
174
 
175
+ /**
176
+ * @since 1.6.4
177
+ * @method fillColorStops
178
+ * @param {Array} colorList
179
+ * @return {Array}
180
+ */
181
  function fillColorStops( colorList ) {
182
  var colors = [],
183
  percs = [],
211
  $.each( percs, function( i ){
212
  newColorList[i] = { color: colors[i], stop: percs[i] };
213
  });
214
+
215
  return newColorList;
216
  }
217
 
218
+ /**
219
+ * @since 1.6.4
220
+ * @method backFillColorStops
221
+ * @param {Array} stops
222
+ * @return {Array}
223
+ */
224
  function backFillColorStops( stops ) {
225
  var first = 0,
226
  last = stops.length - 1,
234
  if ( stops.length <= 2 || $.inArray( false, stops ) < 0 ) {
235
  return stops;
236
  }
237
+
238
  while ( i < stops.length - 1 ) {
239
  if ( ! foundFirst && stops[i] === false ) {
240
  first = i - 1;
245
  }
246
  i++;
247
  }
248
+
249
  steps = last - first;
250
  firstVal = parseInt( stops[first].replace('%'), 10 );
251
  incr = ( parseFloat( stops[last].replace('%') ) - firstVal ) / steps;
252
  i = first + 1;
253
  step = 1;
254
+
255
  while ( i < last ) {
256
  stops[i] = ( firstVal + ( step * incr ) ) + '%';
257
  step++;
258
  i++;
259
  }
260
+
261
  return backFillColorStops( stops );
262
  }
263
 
264
+ /**
265
+ * @since 1.6.4
266
+ * @method $.fn.gradient
267
+ * @return {Array}
268
+ */
269
  $.fn.gradient = function() {
270
  var args = arguments;
271
 
280
  });
281
  };
282
 
283
+ /**
284
+ * @since 1.6.4
285
+ * @method $.fn.raninbowGradient
286
+ * @return {Array}
287
+ */
288
  $.fn.raninbowGradient = function( origin, args ) {
289
  var opts, template, i, steps;
290
 
293
  template = 'hsl(%h%,' + opts.s + '%,' + opts.l + '%)';
294
  i = 0;
295
  steps = [];
296
+
297
  while ( i <= 360 ) {
298
  steps.push( template.replace('%h%', i) );
299
  i += 30;
300
  }
301
+
302
  return this.each(function() {
303
  $(this).gradient( origin, steps );
304
  });
305
  };
306
 
307
  /**
308
+ * Main color picker class for Beaver Builder's custom implementation.
309
  *
310
  * @class FLBuilderColorPicker
311
+ * @param {Object} settings
312
  * @since 1.6.4
313
  */
314
  FLBuilderColorPicker = function( settings )
353
 
354
  };
355
 
356
+ /**
357
+ * Prototype for new instances.
358
+ *
359
+ * @since 1.6.4
360
+ * @property {Object} prototype
361
+ */
362
  FLBuilderColorPicker.prototype = {
363
 
364
  /**
376
  * @property {String} _color
377
  */
378
  _color : '',
379
+
380
+ /**
381
+ * A reference to the current picker setting element.
382
+ *
383
+ * @since 1.6.4
384
+ * @property {Object} _currentElement
385
+ */
386
  _currentElement : '',
387
+
388
+ /**
389
+ * Whether the picker has been initialized or not.
390
+ *
391
+ * @since 1.6.4
392
+ * @property {Boolean} _inited
393
+ */
394
  _inited : false,
395
+
396
+ /**
397
+ * Defaults for the HSL controls.
398
+ *
399
+ * @since 1.6.4
400
+ * @property {Object} _defaultHSLControls
401
+ */
402
  _defaultHSLControls : {
403
  horiz : 's',
404
  vert : 'l',
405
  strip : 'h'
406
  },
407
+
408
+ /**
409
+ * Defaults for the HSV controls.
410
+ *
411
+ * @since 1.6.4
412
+ * @property {Object} _defaultHSVControls
413
+ */
414
  _defaultHSVControls : {
415
  horiz : 'h',
416
  vert : 'v',
417
  strip : 's'
418
  },
419
+
420
+ /**
421
+ * @since 1.6.4
422
+ * @property {Object} _scale
423
+ */
424
  _scale : {
425
  h: 360,
426
  s: 100,
428
  v: 100
429
  },
430
 
431
+ /**
432
+ * Initializes this instance.
433
+ *
434
+ * @since 1.6.4
435
+ * @method _init
436
+ */
437
  _init: function(){
438
 
439
  var self = this,
495
  // cache reference to the picker wrapper
496
  this._ui = $( '.fl-color-picker-ui' );
497
  this._iris = $( '.iris-picker' );
498
+ this._wrapper = $( 'body' );
499
 
500
  if( !$('html').hasClass( 'fl-color-picker-init' ) ){
501
  this._ui
520
  // bind picker control events
521
  this._pickerControls();
522
 
523
+ // bind presets control events
524
+ this._presetsControls();
 
 
525
 
526
  // now we know that the picker is already added to the body
527
  $('html').addClass( 'fl-color-picker-init' );
528
 
529
  },
530
 
531
+ /**
532
+ * @since 1.6.4
533
+ * @method _prepareColorFields
534
+ */
535
  _prepareColorFields: function(){
536
 
537
  var self = this;
538
+
539
  // append presets initial html and trigger that toggles the picker
540
  $('.fl-color-picker-value').each( function(){
541
 
546
  // set initial color
547
  $colorTrigger.css({ backgroundColor: '#' + $this.val().toString() });
548
  }
 
549
  });
 
 
 
 
 
 
 
 
550
  },
551
 
552
  /**
553
  * Sets templates to build the color picker markup.
554
  *
555
  * @since 1.6.4
556
+ * @method _setTemplates
557
  */
558
  _setTemplates: function(){
559
 
574
 
575
  },
576
 
577
+ /**
578
+ * @since 1.6.4
579
+ * @method _has
580
+ * @param {String} needle
581
+ * @param {Object} haystack
582
+ * @return {Boolean}
583
+ */
584
  _has: function( needle, haystack ) {
585
  var ret = false;
586
  $.each( haystack, function( i, v ){
598
  *
599
  * @see _addPresetView
600
  * @since 1.6.4
601
+ * @method _buildUI
602
  */
603
  _buildUI: function(){
604
  var self = this;
648
  * Shows a visual feedback when a color is added as a preset.
649
  *
650
  * @since 1.6.4
651
+ * @method _addPresetFeedback
652
  */
653
  _addPresetFeedback: function(){
654
 
668
  * Sets some triggers for positioning logic of the picker and color reset.
669
  *
670
  * @since 1.6.4
671
+ * @method _pickerControls
672
  */
673
  _pickerControls: function(){
674
  var self = this;
675
 
676
  // logic for picker positioning
677
+ this._wrapper
678
+ .on( 'click', '.fl-color-picker-color', function(){
679
+ var $this = $(this);
680
+ self._currentElement = $this.parent().find('.fl-color-picker-value');
681
+
682
+ self._ui.position({
683
+ my: 'left top',
684
+ at: 'left bottom',
685
+ of: $this,
686
+ collision: 'flipfit',
687
+ using: function( position, feedback ){
688
+ self._togglePicker( position );
689
+ }
690
+ })
691
+
692
+ } )
693
+ .on( 'click', '.fl-color-picker-clear', function(){
694
+ var $this = $(this);
695
+ self._currentElement = $this.parent().find('.fl-color-picker-value');
696
 
697
+ $this
698
+ .prev( '.fl-color-picker-color' )
699
+ .css({ backgroundColor: 'transparent' })
700
+ .addClass('fl-color-picker-empty');
701
 
702
+ self._setColor( '' );
703
+ self.element.val( '' );
704
+ self._currentElement
705
+ .val( '' )
706
+ .trigger( 'change' );
707
+ } );
708
 
709
  // logic to hide picker when the user clicks outside it
710
  $( document ).on( 'click', function( event ) {
 
711
  if ( 0 === $( event.target ).closest( '.fl-color-picker-ui' ).length ) {
712
  $( '.fl-color-picker-ui.fl-color-picker-active' ).removeClass( 'fl-color-picker-active' );
713
  }
721
  * @see _addPreset
722
  * @see _removePreset
723
  * @since 1.6.4
724
+ * @method _presetsControls
725
  */
726
  _presetsControls: function(){
727
  var self = this,
732
  presetsList = presets.find( '.fl-color-picker-presets-list' );
733
 
734
  // add preset
735
+ addPreset
736
+ .off( 'click' )
737
+ .on( 'click', function(){
738
+ self._addPreset( self.element.val() );
739
+ } );
740
 
741
  // presets toggle
742
  presetsList
744
  .hide();
745
 
746
  presets
747
+ .off( 'click' )
748
  .on( 'click', '.fl-color-picker-presets-toggle', function(){
 
749
  presetsOpenLabel.toggleClass('fl-color-picker-active');
750
  presetsCloseLabel.toggleClass('fl-color-picker-active');
 
751
  presetsList.slideToggle( 500 );
752
  } )
753
  // set preset as current color
754
  .on( 'click', '.fl-color-picker-preset', function( e ){
755
  var currentColor = new Color( $( this ).data( 'color' ).toString() );
756
+
757
  self._setColor( currentColor );
758
  self._currentElement
759
  .parent()
763
 
764
  presetsOpenLabel.toggleClass('fl-color-picker-active');
765
  presetsCloseLabel.toggleClass('fl-color-picker-active');
 
766
  presetsList.slideToggle( 500 );
767
+ })
768
  // removes a preset
769
  .on( 'click', '.fl-color-picker-preset-remove', function( e ){
770
  e.stopPropagation();
771
  self._removePreset( $( this ).parent().data( 'color' ) );
772
  });
 
773
  },
774
 
775
  /**
776
  * Removes a color preset from the array of presets and from the UI.
777
  *
778
+ * @since 1.6.4
779
+ * @method _removePreset
780
+ * @param {String} preset The respective hex value of the preset.
781
  */
782
  _removePreset: function( preset ){
783
  if( confirm( this.options.labels.removePresetConfirm ) ){
811
  *
812
  * @see _addPresetView
813
  * @see _addPresetFeedback
814
+ * @method _addPreset
815
+ * @param {String} preset The respective hex value of the preset.
816
  * @since 1.6.4
 
817
  */
818
  _addPreset: function( preset ){
819
  var color = preset.toString().replace( /^#/, '' );
841
  /**
842
  * Logic for positioning of the color picker.
843
  *
844
+ * @since 1.6.4
845
+ * @method _togglePicker
846
+ * @param {Object} position An object containing x and y location for positioning.
 
847
  */
848
  _togglePicker: function( position ){
849
  var self = this;
874
 
875
  },
876
 
877
+ /**
878
+ * @since 1.6.4
879
+ * @method _paint
880
+ */
881
  _paint: function() {
882
  var self = this;
883
  self._paintDimension( 'right', 'strip' );
885
  self._paintDimension( 'left', 'horiz' );
886
  },
887
 
888
+ /**
889
+ * @since 1.6.4
890
+ * @method _paintDimension
891
+ * @param {String} origin
892
+ * @param {String} control
893
+ */
894
  _paintDimension: function( origin, control ) {
895
  var self = this,
896
  c = self._color,
972
  }
973
  },
974
 
975
+ /**
976
+ * @since 1.6.4
977
+ * @method _getHSpaceColor
978
+ * @return {Boolean}
979
+ */
980
  _getHSpaceColor: function() {
981
  return ( this.options.mode === 'hsv' ) ? this._color.toHsv() : this._color.toHsl();
982
  },
985
  * Logic to listen to events from the main color input and to bind it to the current color field.
986
  *
987
  * @see _setColor
988
+ * @since 1.6.4
989
+ * @method _addInputListeners
990
+ * @param {Object} input
991
  */
992
  _addInputListeners: function( input ) {
993
  var self = this,
1049
 
1050
  input.on( 'change', callback ).on( 'keyup', self._debounce( callback, debounceTimeout ) );
1051
 
 
 
 
 
 
 
1052
  },
1053
 
1054
+ /**
1055
+ * @since 1.6.4
1056
+ * @method _initControls
1057
+ */
1058
  _initControls: function() {
1059
  var self = this,
1060
  controls = self.controls,
1153
  event.target = self.controls.squareDrag.get(0);
1154
  self.controls.squareDrag.css( pos ).trigger( event );
1155
  });
 
 
 
 
 
1156
  },
1157
 
1158
+ /**
1159
+ * @since 1.6.4
1160
+ * @method _squareDrag
1161
+ * @param {Object} event
1162
+ * @param {Object} ui
1163
+ */
1164
  _squareDrag: function( event, ui ) {
1165
  var self = this,
1166
  controlOpts = self.options.controls,
1174
  self._change.apply( self, arguments );
1175
  },
1176
 
1177
+ /**
1178
+ * @since 1.6.4
1179
+ * @method _setColor
1180
+ * @param {String} value
1181
+ */
1182
  _setColor: function( value ) {
1183
  var self = this,
1184
  oldValue = self.options.color,
1201
  self.active = 'external';
1202
  self._change();
1203
  }
 
1204
  },
1205
 
1206
+ /**
1207
+ * @since 1.6.4
1208
+ * @method _squareDimensions
1209
+ * @param {Boolean} forceRefresh
1210
+ * @return {Object}
1211
+ */
1212
  _squareDimensions: function( forceRefresh ) {
1213
  var square = this.controls.square,
1214
  dimensions,
1227
  return dimensions;
1228
  },
1229
 
1230
+ /**
1231
+ * @since 1.6.4
1232
+ * @method _isNonHueControl
1233
+ * @param {String} active
1234
+ * @param {String} type
1235
+ * @return {Boolean}
1236
+ */
1237
  _isNonHueControl: function( active, type ) {
1238
  if ( active === 'square' && this.options.controls.strip === 'h' ) {
1239
  return true;
1244
  return true;
1245
  },
1246
 
1247
+ /**
1248
+ * @since 1.6.4
1249
+ * @method _change
1250
+ */
1251
  _change: function() {
1252
  var self = this,
1253
  controls = self.controls,
1294
 
1295
  // store hue for repeating above check next time
1296
  self.hue = self._color.h();
 
1297
  self.options.color = self._color.toString();
1298
 
 
 
 
 
 
1299
  if ( self.element.is( ':input' ) && ! self._color.error ) {
1300
  self.element.removeClass( 'iris-error' );
1301
  if ( self.element.val() !== self._color.toString() ) {
1302
  self.element.val( self._color.toString() );
1303
 
1304
+ if( this._currentElement ){
1305
+ this._currentElement
1306
  .val( self._color.toString().replace( /^#/, '' ) )
1307
  .parent()
1308
  .find( '.fl-color-picker-color' )
1309
  .css({ backgroundColor: self._color.toString() })
1310
  .removeClass( 'fl-color-picker-empty' );
1311
 
1312
+ this._currentElement.trigger( 'change' );
1313
  }
1314
 
1315
  }
1320
  self.active = false;
1321
  },
1322
 
1323
+ /**
1324
+ * Taken from underscore.js _.debounce method
1325
+ *
1326
+ * @since 1.6.4
1327
+ * @method _debounce
1328
+ */
1329
  _debounce: function( func, wait, immediate ) {
1330
  var timeout, result;
1331
  return function() {
1353
  };
1354
 
1355
  }( jQuery ));
1356
+
1357
+ /**
1358
+ * Color.js is included for Iris support.
1359
+ *
1360
+ * Color.js - v0.9.11 - 2013-08-09
1361
+ * https://github.com/Automattic/Color.js
1362
+ * Copyright (c) 2013 Matt Wiebe; Licensed GPLv2
1363
+ */
1364
  (function(global, undef) {
1365
 
1366
  var Color = function( color, type ) {
js/fl-slideshow.js CHANGED
@@ -14,11 +14,11 @@ E+='<video width="100%" height="100%" poster="'+this._getImageURL()+'" controls
14
  this._updateCaption();}if(this._buttons.social){this._buttons.social.on("click",B._toggleSocial,B);}if(this._buttons.fullscreen&&B.fullscreen){this._buttons.fullscreen.on("click",B.fullscreen.toggle,B.fullscreen);}if(this._buttons.close){this._buttons.close.on("click",B.hide,B);}},destructor:function(){var B=this.get("root"),C=this.get("id");B.detach(C+"|*");},_renderContainers:function(){var B=this.get("contentBox"),C=this.get("buttonsLeft"),D=this.get("buttonsRight");this._buttonsContainer=A.Node.create("<div></div>");this._buttonsContainer.addClass("fl-slideshow-nav-buttons");B.appendChild(this._buttonsContainer);if(C.length>0){this._buttonsLeftContainer=A.Node.create("<div></div>");this._buttonsLeftContainer.addClass("fl-slideshow-nav-buttons-left");B.appendChild(this._buttonsLeftContainer);}if(D.length>0){this._buttonsRightContainer=A.Node.create("<div></div>");this._buttonsRightContainer.addClass("fl-slideshow-nav-buttons-right");B.appendChild(this._buttonsRightContainer);}},_renderButtons:function(){var D="",E=0,C=0,B=[{names:this.get("buttons"),container:this._buttonsContainer},{names:this.get("buttonsLeft"),container:this._buttonsLeftContainer},{names:this.get("buttonsRight"),container:this._buttonsRightContainer}];this._buttons={};for(;E<B.length;E++){for(C=0;C<B[E].names.length;C++){D=B[E].names[C];if(D.indexOf("count")>-1){this._buttons[D]=A.Node.create("<span></span>");this._updateCount();}else{this._buttons[D]=A.Node.create('<a href="javascript:void(0);"></a>');}if(D.indexOf("buy")>-1){this._buttons[D].setStyle("display","none");}this._buttons[D].set("name",D);this._buttons[D].addClass("fl-slideshow-nav-"+D);B[E].container.appendChild(this._buttons[D]);}}},_renderFontIcons:function(){var B=null;if(this.get("useFontIcons")&&typeof YUI.Env.mods["sm-fonticon"]!=="undefined"){for(B in this._buttons){if(typeof this._buttons[B]!=="undefined"&&typeof this._fontIcons[B]!=="undefined"){this._buttons[B].addClass("sm-fonticon-"+this._fontIcons[B]);this._buttons[B].addClass("sm-fonticon sm-button-skin-default sm-button-nochrome");}else{if(B.indexOf("count")>-1){this._buttons[B].addClass("fonticons-enabled");}}}}},_updateCount:function(){var C="",B=A.FL.SlideshowNav.COUNT_TEXT,E=1,D=1;if(this.get("root").albumInfo){E=this.get("root").imageInfo.index+1;D=this.get("root").albumInfo.images.length;}C=B.replace("{current}",E).replace("{total}",D);this._buttons.count.set("innerHTML",C);},_updateCaption:function(){var C=this.get("root"),B=C.imageInfo;if(B&&B.caption===""){C.caption.slideshowOverlay.enable();C.caption.slideshowOverlay.hide();this._buttons.caption.detach("click");this._buttons.caption.addClass("fl-slideshow-nav-caption-disabled");}else{this._buttons.caption.on("click",C._toggleCaption,C);this._buttons.caption.removeClass("fl-slideshow-nav-caption-disabled");}},_updateBuy:function(){var F=null,C=this.get("root"),B=C.get("source")[C.albumIndex],D=C.albumIndex,E=C.get("source")[D];if(B&&B.type=="smugmug"){if(typeof C.albumInfo.printable!=="undefined"){this._updateBuyComplete();}else{F=new A.FL.SmugMugAPI();F.addParam("method","smugmug.albums.getInfo");F.addParam("AlbumID",E.id);F.addParam("AlbumKey",E.key);F.on("complete",this._updateBuyComplete,this);F.request();}}},_updateBuyComplete:function(D){var B=this.get("root"),E=typeof D=="undefined"?B.albumInfo.printable:D.Album.Printable,C=B.albumInfo.link;if(E){B.albumInfo.printable=true;this._buttons.buy.set("href","https://secure.smugmug.com/cart/batchadd/?url="+encodeURIComponent(C));this._buttons.buy.setStyle("display","inline-block");}else{B.albumInfo.printable=false;this._buttons.buy.setStyle("display","none");}this.fire("resize");},_playClicked:function(){var B=this.get("root");if(B._playing){B.pause();}else{B.play();}},_showPlayButton:function(){this._buttons.play.removeClass("fl-slideshow-nav-pause");this._buttons.play.addClass("fl-slideshow-nav-play");if(this.get("useFontIcons")&&typeof YUI.Env.mods["sm-fonticon"]!=="undefined"){this._buttons.play.removeClass("sm-fonticon-PlayerPause");this._buttons.play.addClass("sm-fonticon-PlayerPlay");}},_showPauseButton:function(){this._buttons.play.removeClass("fl-slideshow-nav-play");this._buttons.play.addClass("fl-slideshow-nav-pause");if(this.get("useFontIcons")&&typeof YUI.Env.mods["sm-fonticon"]!=="undefined"){this._buttons.play.removeClass("sm-fonticon-PlayerPlay");this._buttons.play.addClass("sm-fonticon-PlayerPause");}}},{CSS_PREFIX:"fl-slideshow-nav",COUNT_TEXT:"{current} of {total}",ATTRS:{buttons:{value:[],writeOnce:true},buttonsLeft:{value:[],writeOnce:true},buttonsRight:{value:[],writeOnce:true},useFontIcons:{value:true,writeOnce:true}}});A.namespace("FL").SlideshowOverlay=A.Base.create("fl-slideshow-overlay",A.Plugin.Base,[],{_focus:false,_visible:true,_disabled:false,_showProps:{duration:0.5,easing:"ease-out",opacity:1},_hideProps:{duration:0.5,easing:"ease-out",opacity:0},_hideTimer:null,initializer:function(){var B=this.get("host").get("boundingBox");this.afterHostEvent("render",this._initFocus);this.afterHostEvent("render",this._initVisibility);if(this.get("closeButton")){this._initCloseButton();}B.addClass("fl-slideshow-overlay");},destructor:function(){this._hideTimerCancel();},_initFocus:function(){var B=this.get("host").get("boundingBox");B.on("mouseenter",A.bind(this._setFocusOnMouseenter,this));B.on("mouseleave",A.bind(this._setFocusOnMouseleave,this));},_initVisibility:function(){var C=this.get("host").get("boundingBox"),B=this.get("hideStyle");if(!this.get("visible")){if(B=="display"){C.setStyle("display","none");}else{if(B=="left"){C.setStyle("left","-99999px");}}C.setStyle("opacity","0");this._visible=false;}},_initCloseButton:function(){var C=this.get("host").get("boundingBox"),B=null;B=A.Node.create('<a class="fl-slideshow-overlay-close" href="javascript:void(0);"></a>');B.on("click",A.bind(this._closeButtonClick,this));if(typeof YUI.Env.mods["sm-fonticon"]!=="undefined"){B.addClass("sm-fonticon sm-fonticon-XCrossEncircled sm-button-skin-default sm-button-nochrome");
15
  }C.insert(B);},_closeButtonClick:function(){var B=this.get("host").get("boundingBox");B.transition(this._hideProps,A.bind(this._hideComplete,this));},_setFocusOnMouseenter:function(){this._focus=true;},_setFocusOnMouseleave:function(){this._focus=false;},disable:function(){this._disabled=true;},enable:function(){this._disabled=false;},show:function(){var C=this.get("host").get("boundingBox"),B=this.get("hideStyle");if(this._disabled){return;}if(B=="display"){C.setStyle("display","block");}else{if(B=="left"){C.setStyle("left","auto");}}C.transition(this._showProps,A.bind(this._showComplete,this));this.fire("showStart");},_showComplete:function(){this._visible=true;this.hideWithTimer();this.fire("showComplete");},hide:function(){if(this._focus||this._disabled){return;}var B=this.get("host").get("boundingBox");B.transition(this._hideProps,A.bind(this._hideComplete,this));this.fire("hideStart");},hideWithTimer:function(){this._hideTimerCancel();this._hideTimer=A.later(this.get("hideDelay"),this,this.hide);},_hideTimerCancel:function(){if(this._hideTimer){this._hideTimer.cancel();this._hideTimer=null;}},_hideComplete:function(){var C=this.get("host").get("boundingBox"),B=this.get("hideStyle");if(B=="display"){C.setStyle("display","none");}else{if(B=="left"){C.setStyle("left","-99999px");}}this._visible=false;this.fire("hideComplete");}},{NS:"slideshowOverlay",ATTRS:{closeButton:{value:false,writeOnce:true},hideDelay:{value:3000,writeOnce:true},hideStyle:{value:"display",writeOnce:true},visible:{value:true,writeOnce:true}}});A.namespace("FL").SlideshowSocial=A.Base.create("fl-slideshow-social",A.Widget,[A.WidgetChild],{_buttons:null,renderUI:function(){this._buttons={};if(this.get("root").get("googlePlusButtonEnabled")){this._renderGooglePlusButton();}},bindUI:function(){var B=this.get("root");if(B.get("likeButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateLikeButton,this));}if(B.get("tweetButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateTweetButton,this));}if(B.get("googlePlusButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateGooglePlusButton,this));}if(B.get("pinterestButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updatePinterestButton,this));}},_updateLikeButton:function(){var G=null,C=this.get("contentBox"),E=this.get("root"),F=E.albumIndex,D=E.get("source")[F],B=E.imageInfo;if(this._buttons.like){this._buttons.like.remove();this._buttons.like=null;}if(D.type=="smugmug"){G="http://www.facebook.com/plugins/like.php?";G+="href="+"http://www.smugmug.com/services/graph/gallery/";G+=D.id+"_"+D.key+"/"+B.id+"_"+B.key;}else{G="http://www.facebook.com/plugins/like.php?";G+="href="+encodeURIComponent(B.largeURL);}G+="&send=false";G+="&layout=button_count";G+="&width=90";G+="&show_faces=false";G+="&action=like";G+="&colorscheme=light";G+="&height=21";this._buttons.like=A.Node.create('<iframe src="'+G+'" scrolling="no" frameborder="0" allowTransparency="true"></iframe>');this._buttons.like.setStyles({overflow:"hidden",width:"90px",height:"21px"});C.appendChild(this._buttons.like);},_updateTweetButton:function(){var D=null,C=this.get("root").imageInfo,B=this.get("contentBox");if(this._buttons.tweet){this._buttons.tweet.remove();this._buttons.tweet=null;}D="https://platform.twitter.com/widgets/tweet_button.html?";D+="url="+encodeURIComponent(C.largeURL);D+="&count=none";this._buttons.tweet=A.Node.create('<iframe src="'+D+'" scrolling="no" frameborder="0" allowTransparency="true"></iframe>');this._buttons.tweet.setStyles({overflow:"hidden",width:"90px",height:"21px"});B.appendChild(this._buttons.tweet);},_renderGooglePlusButton:function(){var B,C;B=document.createElement("script");B.type="text/javascript";B.src="https://apis.google.com/js/plusone.js";C=document.getElementsByTagName("head")[0];C.parentNode.appendChild(B);},_updateGooglePlusButton:function(){var C=this.get("root").imageInfo,B=this.get("contentBox"),D=typeof D=="undefined"?null:D;if(this._buttons.plus){this._buttons.plus.remove();this._buttons.plus=null;}if(D!==null){this._buttons.plus=A.Node.create("<div></div>");B.appendChild(this._buttons.plus);D.plusone.render(this._buttons.plus._node,{href:encodeURIComponent(C.largeURL),annotation:"bubble",size:"medium"});}},_updatePinterestButton:function(){var D="http://pinterest.com/pin/create/button/",C=this.get("root").imageInfo,B=this.get("contentBox");if(this._buttons.pin){this._buttons.pin.remove();this._buttons.pin=null;}D+="?url="+encodeURIComponent(window.location.href);D+="&media="+encodeURIComponent(C.mediumURL);D+="&description="+encodeURIComponent(C.caption);this._buttons.pin=A.Node.create("<a></a>");this._buttons.pin.setAttribute("data-pin-config","none");this._buttons.pin.setAttribute("data-pin-do","buttonPin");this._buttons.pin.setAttribute("href",D);this._buttons.pin.setAttribute("target","_blank");this._buttons.pin.set("innerHTML",'<img src="http://assets.pinterest.com/images/pidgets/pin_it_button.png" border="0" />');B.appendChild(this._buttons.pin);}},{CSS_PREFIX:"fl-slideshow-social",ATTRS:{}});A.namespace("FL").SlideshowThumbs=A.Base.create("fl-slideshow-thumbs",A.Widget,[A.WidgetParent,A.WidgetChild],{_clipBox:null,_pagesBox:null,_activePageBox:null,_activePageIndex:0,_nextPageBox:null,_activeImages:null,_nextImages:null,_prevImages:null,_leftNav:null,_rightNav:null,_topNav:null,_bottomNav:null,_bbHeight:0,_bbWidth:0,_cbWidth:0,_clipBoxMarginLeft:0,_clipBoxTop:0,_colsPerPage:0,_rowsPerPage:0,_imagesPerPage:0,_numPages:0,_pageHeight:0,_pageWidth:0,_horizontalSpacing:0,_verticalSpacing:0,_leftNavWidth:0,_rightNavWidth:0,_transition:null,_transitioning:false,_transitionDirection:"next",_gestures:null,initializer:function(){this._activeImages=[];this._nextImages=[];this._prevImages=[];},renderUI:function(){this._renderBoxes();this._renderNavs();},bindUI:function(){var B=this.get("root"),D=this.get("id"),C=this.get("transition");B.on(D+"|albumLoadComplete",this._albumLoadComplete,this);if("ontouchstart" in window&&this.get("touchSupport")){this._gestures=new A.FL.SlideshowGestures({direction:C=="slideVertical"?"vertical":"horizontal",activeItem:this._activePageBox,nextItem:this._nextPageBox});
16
  this._gestures.on("moveStart",this._gesturesMoveStart,this);this._gestures.on("endComplete",this._gesturesEndComplete,this);}},syncUI:function(){this._syncBoxes();this._syncNavs();},destructor:function(){var B=this.get("root"),C=this.get("id");B.detach(C+"|*");A.FL.SlideshowImageLoader.removeGroup("thumbs");},unload:function(){var B=this.get("root"),D=this.get("id"),C=0;B.detach(D+"|imageLoadComplete");A.FL.SlideshowImageLoader.removeGroup("thumbs");for(;C<this._activeImages.length;C++){this._activeImages[C].unload();}},resize:function(){this._setSizeInfo();this._togglePageButtons();this._resizeBoxes();this._resizeNavs();if(this.get("root").albumInfo){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._renderActivePage();this._preloadNextPage();this._preloadPrevPage();}if(this._gestures&&this._numPages<2){this._gestures.disable();}else{if(this._gestures){this._gestures.enable();}}},prevPage:function(){if(this._transitioning){return;}this._transitionStart("prev");},nextPage:function(){if(this._transitioning){return;}this._transitionStart("next");},_albumLoadComplete:function(){var B=this.get("root"),C=this.get("id");B.once(C+"|imageLoadComplete",this.resize,this);B.on(C+"|imageLoadComplete",this._imageLoadComplete,this);},_imageLoadComplete:function(){var B=this.get("root").albumInfo,E=A.one(".fl-slideshow-image-active"),F=E?E._imageInfo:null,D=null,C=this.get("root").imageInfo;this._setActiveImage(this._activeImages);D=A.one(".fl-slideshow-image-active");if(E&&!D){if(C.index===0&&F.index===B.images.length-1){this.nextPage();}else{if(F.index===0&&C.index===B.images.length-1){this.prevPage();}else{if(F.index<C.index){this.nextPage();}else{if(F.index>C.index){this.prevPage();}}}}}},_renderBoxes:function(){this._clipBox=A.Node.create("<div></div>");this._clipBox.addClass("fl-slideshow-thumbs-clip");this.get("contentBox").insert(this._clipBox);this._pagesBox=A.Node.create("<div></div>");this._pagesBox.addClass("fl-slideshow-thumbs-pages");this._clipBox.insert(this._pagesBox);this._activePageBox=A.Node.create("<div></div>");this._activePageBox.addClass("fl-slideshow-thumbs-page");this._pagesBox.insert(this._activePageBox);this._nextPageBox=A.Node.create("<div></div>");this._nextPageBox.addClass("fl-slideshow-thumbs-page");this._pagesBox.insert(this._nextPageBox);},_syncBoxes:function(){this._activePageBox.setStyle("left","0");this._nextPageBox.setStyle("left","-9999px");},_resizeBoxes:function(){this.set("width",this._bbWidth);this.set("height",this._bbHeight);this.get("contentBox").setStyle("width",this._cbWidth+"px");this._clipBox.setStyle("width",this._pageWidth+"px");this._clipBox.setStyle("height",this._pageHeight+"px");this._clipBox.setStyle("padding",this._verticalSpacing+"px 0 0 "+this._horizontalSpacing+"px ");this._clipBox.setStyle("margin","0 0 0 "+this._clipBoxMarginLeft+"px");this._clipBox.setStyle("top",this._clipBoxTop);this._pagesBox.setStyle("width",this._pageWidth+"px");this._pagesBox.setStyle("height",this._pageHeight+"px");this._activePageBox.setStyle("width",this._pageWidth+"px");this._activePageBox.setStyle("height",this._pageHeight+"px");this._nextPageBox.setStyle("width",this._pageWidth+"px");this._nextPageBox.setStyle("height",this._pageHeight+"px");},_renderActivePage:function(){var E=0,D=this.get("root"),C=this._imagesPerPage*this._activePageIndex,F=C+this._imagesPerPage,B=D.albumInfo.images;this._clearActiveImage();for(;E<this._activeImages.length;E++){this._activeImages[E].remove();this._activeImages[E].unload();this._activeImages[E].get("boundingBox")._imageInfo=null;this._activeImages[E].get("boundingBox").remove();}for(E=0;C<F;C++){if(!B[C]){break;}this._renderImage(this._activeImages,E,this._activePageBox,B[C]);E++;}this._setActiveImage(this._activeImages);},_renderNextPage:function(){var B=0,C=this._transitionDirection=="next"?this._nextImages:this._prevImages;this._nextPageBox.get("children").remove();for(;B<C.length;B++){if(C[B]._imageInfo){this._renderImage(C,B,this._nextPageBox,C[B]._imageInfo);}else{break;}}this._setActiveImage(C);},_preloadNextPage:function(){var B=this._activePageIndex+1>=this._numPages?0:this._activePageIndex+1;this._preloadPage(B,this._nextImages);},_preloadPrevPage:function(){var B=this._activePageIndex-1<0?this._numPages-1:this._activePageIndex-1;this._preloadPage(B,this._prevImages);},_preloadPage:function(E,D){var F=0,I=this.get("root"),H=I.albumInfo.images,C=E*this._imagesPerPage,G=C+this._imagesPerPage,J=this.get("imageConfig"),B=J.width,K=J.height;if(this._numPages>1){for(;F<D.length;F++){D[F].remove();D[F].unload();}for(F=0;C<G;C++){if(!H[C]){continue;}this._renderImage(D,F);D[F].preload(H[C],B,K);F++;}}},_renderImage:function(G,E,F,B){var C=null,D=this.get("imageConfig");if(typeof G[E]=="undefined"){D.loadGroup="thumbs";D.useThumbSizes=true;D.loadVideos=false;G[E]=new A.FL.SlideshowImage(D);C=G[E].get("boundingBox");C.on("click",this._imageClick,this);C.on("mouseover",this._imageMouseover,this);C.on("mouseout",this._imageMouseout,this);}C=G[E].get("boundingBox");C.setStyle("margin","0 "+this._horizontalSpacing+"px "+this._verticalSpacing+"px 0");if(F){this._childrenContainer=F;this.add(G[E]);G[E].resize(D.width,D.height);}if(B){G[E].load(B);C._imageInfo=B;}},_uiAddChild:function(C,B){C.render(B);B.appendChild(C.get("boundingBox"));},_imageClick:function(C){var B=this.get("root");if(this.get("pauseOnClick")){B.pause();}B.loadImage(C.currentTarget._imageInfo.index);this.fire("imageClick");},_setActiveImage:function(C){var B=0;this._clearActiveImage();for(;B<C.length;B++){if(C[B]._imageInfo){if(C[B]._imageInfo.index==this.get("root").imageInfo.index){C[B].get("boundingBox").addClass("fl-slideshow-image-active");break;}}}},_clearActiveImage:function(){var B=A.one(".fl-slideshow-image-active");if(B){B.removeClass("fl-slideshow-image-active");}},_getTransition:function(){var B=this.get("transition");if(B=="slideHorizontal"&&this._transitionDirection=="next"){return"slideLeft";}else{if(B=="slideHorizontal"&&this._transitionDirection=="prev"){return"slideRight";
17
- }else{if(B=="slideVertical"&&this._transitionDirection=="next"){return"slideUp";}else{if(B=="slideVertical"&&this._transitionDirection=="prev"){return"slideDown";}}}}return B;},_transitionStart:function(B){if(this._numPages>1){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._transitionDirection=B;this._transitioning=true;this._nextPageBox.setStyle("left","0px");this._renderNextPage();this._transition=new A.FL.SlideshowTransition({itemIn:this._nextPageBox,itemOut:this._activePageBox,type:this._getTransition(),duration:this.get("transitionDuration"),easing:this.get("transitionEasing")});this._transition.once("complete",this._transitionComplete,this);this._transition.run();if(this._gestures){this._gestures.disable();}}},_transitionComplete:function(){this._swapPageRefs();this._transitioning=false;this._transitionDirection="";this._transition=null;if(this._gestures){this._gestures.enable();}this.fire("transitionComplete");},_gesturesMoveStart:function(B){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._transitionDirection=B.direction;this._renderNextPage();},_gesturesEndComplete:function(){this._swapPageRefs();this._transitionDirection="";this.fire("transitionComplete");},_swapPageRefs:function(){var B=this._activePageBox,C=this._activeImages;this._activePageBox=this._nextPageBox;this._nextPageBox=B;this._nextPageBox.setStyle("left","-9999px");if(this._transitionDirection=="next"){this._activeImages=this._nextImages;this._nextImages=C;}else{this._activeImages=this._prevImages;this._prevImages=C;}if(this._transitionDirection=="next"&&this._activePageIndex+1<this._numPages){this._activePageIndex++;}else{if(this._transitionDirection=="next"){this._activePageIndex=0;}else{if(this._transitionDirection=="prev"&&this._activePageIndex-1>-1){this._activePageIndex--;}else{if(this._transitionDirection=="prev"){this._activePageIndex=this._numPages-1;}}}}if(this._gestures){this._gestures.set("activeItem",this._activePageBox);this._gestures.set("nextItem",this._nextPageBox);}this._preloadNextPage();this._preloadPrevPage();},_renderNavs:function(){var D=this.get("topNavButtons"),C=this.get("rightNavButtons"),B=this.get("bottomNavButtons"),E=this.get("leftNavButtons");if(this.get("topNavEnabled")&&D.length>0){this._topNav=new A.FL.SlideshowNav({buttons:D});this._topNav.get("boundingBox").addClass("fl-slideshow-thumbs-top-nav");this.add(this._topNav);this._topNav.render(this.get("contentBox"));this._clipBox.insert(this._topNav.get("boundingBox"),"before");this._bindNavEvents(this._topNav);}if(this.get("rightNavEnabled")&&C.length>0){this._rightNav=new A.FL.SlideshowNav({buttons:C});this._rightNav.get("boundingBox").addClass("fl-slideshow-thumbs-right-nav");this.add(this._rightNav);this._rightNav.render(this.get("contentBox"));this._bindNavEvents(this._rightNav);}if(this.get("bottomNavEnabled")&&B.length>0){this._bottomNav=new A.FL.SlideshowNav({buttons:B});this._bottomNav.get("boundingBox").addClass("fl-slideshow-thumbs-bottom-nav");this.add(this._bottomNav);this._bottomNav.render(this.get("contentBox"));this._bindNavEvents(this._bottomNav);}if(this.get("leftNavEnabled")&&E.length>0){this._leftNav=new A.FL.SlideshowNav({buttons:E});this._leftNav.get("boundingBox").addClass("fl-slideshow-thumbs-left-nav");this.add(this._leftNav);this._leftNav.render(this.get("contentBox"));this._bindNavEvents(this._leftNav);}},_syncNavs:function(){var D,B,C;if(this._rightNav){D=this._rightNav.get("boundingBox");D.setStyle("position","absolute");D.setStyle("top","0px");D.setStyle("right","0px");}if(this._bottomNav){B=this._bottomNav.get("boundingBox");B.setStyle("position","absolute");B.setStyle("bottom","0px");B.setStyle("width","100%");}if(this._leftNav){C=this._leftNav.get("boundingBox");C.setStyle("position","absolute");C.setStyle("top","0px");C.setStyle("left","0px");}},_resizeNavs:function(){var D,C,B;if(this._rightNav){D=this._rightNav.get("boundingBox");B=this._bbHeight/2-parseInt(D.getComputedStyle("height"),10)/2;D.setStyle("marginTop",B+"px");}if(this._leftNav){C=this._leftNav.get("boundingBox");B=this._bbHeight/2-parseInt(C.getComputedStyle("height"),10)/2;C.setStyle("marginTop",B+"px");}},_bindNavEvents:function(B){if(B._buttons.prevPage){B._buttons.prevPage.on("click",this.prevPage,this);}if(B._buttons.nextPage){B._buttons.nextPage.on("click",this.nextPage,this);}B.on("resize",this.resize,this);},_togglePageButtons:function(){var B=A.all(".fl-slideshow-nav-prevPage, .fl-slideshow-nav-nextPage"),C=B.getStyle("display")[0];if(this._numPages==1&&C=="inline-block"){B.setStyle("display","none");this._setSizeInfo();}else{if(this._numPages>1&&C=="none"){B.setStyle("display","inline-block");this._setSizeInfo();}}},_setSizeInfo:function(){var V=this.get("root"),k=this.get("boundingBox"),L=k.getStyle("position"),J=parseInt(k.getStyle("marginLeft"),10),B=parseInt(k.getStyle("marginRight"),10),X=parseInt(k.getStyle("marginTop"),10),I=parseInt(k.getStyle("marginBottom"),10),m=parseInt(k.getStyle("paddingLeft"),10),c=parseInt(k.getStyle("paddingRight"),10),i=parseInt(k.getStyle("paddingTop"),10),f=parseInt(k.getStyle("paddingBottom"),10),F=k.get("parentNode"),Q=parseInt(F.getComputedStyle("width"),10),d=parseInt(F.getComputedStyle("height"),10),Y=Q-m-c-J-B,T=d-i-f-X-I,Z=Y,R=Y,P=T,G=this.get("columns"),h=this.get("rows"),K=this.get("imageConfig"),C=this.get("horizontalSpacing"),O=this.get("verticalSpacing"),H=this.get("spaceEvenly"),W=this.get("centerSinglePage"),j=0,U=0,e=0,S=0,M=G,a=h,D=0,l=1,b=0,g=0,E=0,N=0;k.setStyle("position","relative");if(!isNaN(G)){Y=R=G*(K.width+C)+C;}if(!isNaN(h)){T=P=h*(K.height+O)+O;}if(this._leftNav){j=parseInt(this._leftNav.get("boundingBox").getComputedStyle("width"),10);if(isNaN(G)){R-=j;}else{Y+=j;}}if(this._rightNav){U=parseInt(this._rightNav.get("boundingBox").getComputedStyle("width"),10);if(isNaN(G)){R-=U;}else{Y+=U;}}if(this._topNav){e=parseInt(this._topNav.get("boundingBox").getComputedStyle("height"),10);if(isNaN(h)){P-=e;}else{T+=e;}}if(this._bottomNav){S=parseInt(this._bottomNav.get("boundingBox").getComputedStyle("height"),10);
18
  if(isNaN(h)){P-=S;}else{T+=S;}}if(isNaN(G)){M=Math.floor(R/(K.width+C));M=M<1?1:M;}if(isNaN(h)){a=Math.floor(P/(K.height+O));a=a<1?1:a;}D=M*a;if(V.albumInfo){l=Math.ceil(V.albumInfo.images.length/D);}if(isNaN(G)&&H){C=Math.floor((R-(K.width*M))/(M+1));}if(isNaN(h)&&H){O=Math.floor((P-(K.height*a))/(a+1));}if(V.albumInfo&&W&&l==1&&a==1){Z=V.albumInfo.images.length*K.width;Z+=C*(V.albumInfo.images.length+1);if(this._leftNav){Z+=j;}if(this._rightNav){Z+=U;}}else{Z=Y;}if(V.albumInfo&&W&&l==1&&a==1){R=V.albumInfo.images.length*K.width;R+=C*V.albumInfo.images.length;}else{R=M*(K.width+C);}P=a*(K.height+O);if(l<2){b=j;}else{E=Y;if(this._rightNav){E-=U;}if(this._leftNav){E-=j;b=j+(E-R-C)/2;}else{b=(E-R-C)/2;}}if(l>1&&!H){N=T;if(this._topNav){N-=e;}if(this._bottomNav){N-=S;}g=(N-(O+P))/2;}this._bbHeight=T;this._bbWidth=Y;this._cbWidth=Z;this._clipBoxMarginLeft=b;this._clipBoxTop=g;this._colsPerPage=M;this._rowsPerPage=a;this._imagesPerPage=D;this._numPages=l;this._pageHeight=P;this._pageWidth=R;this._leftNavWidth=j;this._rightNavWidth=U;this._horizontalSpacing=C;this._verticalSpacing=O;this._activePageIndex=Math.floor(V.imageIndex/this._imagesPerPage);k.setStyle("position",L);}},{CSS_PREFIX:"fl-slideshow-thumbs",ATTRS:{columns:{value:"auto"},rows:{value:"auto"},horizontalSpacing:{value:15},verticalSpacing:{value:15},spaceEvenly:{value:true},centerSinglePage:{value:true},pauseOnClick:{value:false},transition:{value:"slideHorizontal"},transitionDuration:{value:0.8},transitionEasing:{value:"ease-out"},imageConfig:{value:{crop:true,width:50,height:50}},topNavEnabled:{value:false},topNavButtons:{value:["prevPage","nextPage"]},rightNavEnabled:{value:true},rightNavButtons:{value:["nextPage"]},bottomNavEnabled:{value:false},bottomNavButtons:{value:["prevPage","nextPage"]},leftNavEnabled:{value:true},leftNavButtons:{value:["prevPage"]},touchSupport:{value:false}}});A.namespace("FL").SlideshowTransition=A.Base.create("fl-slideshow-transition",A.Base,[],{_transitionFunction:"_transitionFade",_type:"fade",initializer:function(){var D=this.get("type"),I=[],C=A.FL.SlideshowTransition.TYPES,E=A.FL.SlideshowTransition.SLIDESHOW_IMAGE_TYPES,H=A.Array.indexOf(E,D)>-1,B=this._isSlideshowImage(),G=this.get("itemIn"),F=this.get("itemOut");if(D.indexOf(",")>-1){I=D.split(",");I.sort(function(){return 0.5-Math.random();});D=I[0];}if(!B&&H){D="fade";}else{if(B){if((G&&G.one("img")===null)||(F&&F.one("img")===null)){D="none";}else{if(H){if((A.UA.gecko&&A.UA.gecko<5)||A.UA.opera>0||(A.UA.ie>0&&A.UA.ie<9)){D="fade";}}}}}if(A.FL.SlideshowTransition.TYPES[D]){this._transitionFunction=C[D];this._type=D;}this._setupItems();},run:function(){this.fire("start");this[this._transitionFunction].call(this);},_setupItems:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C){C.setStyle("zIndex",2);C.setStyle("opacity",1);if(A.FL.Utils.cssSupport("transform")){C.setStyle("transform","translate(0, 0)");}else{C.setStyle("top","0");C.setStyle("left","0");}}if(B){B.setStyle("zIndex",1);}},_isSlideshowImage:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C&&C.hasClass("fl-slideshow-image")){return true;}else{if(B&&B.hasClass("fl-slideshow-image")){return true;}}return false;},_transitionStart:function(I,B){var H=this.get("itemIn"),F=this.get("itemOut"),E=A.bind(this._transitionComplete,this),D=!H?E:null,C=this.get("duration"),G=this.get("easing");if(H){I.duration=I.duration||C;I.easing=I.easing||G;H.transition(I);}if(F){B.duration=B.duration||C;B.easing=B.easing||G;F.transition(B);}if(E){A.later(I.duration*1000+100,null,E);}else{if(D){A.later(B.duration*1000+100,null,D);}}},_transitionComplete:function(){this._set("itemIn",null);this._set("itemOut",null);this.fire("complete");},_transitionNone:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C){C.setStyle("opacity",1);}if(B){B.setStyle("opacity",0);}this._transitionComplete();},_transitionFade:function(){var B=this.get("itemIn");if(B){B.setStyle("opacity",0);}this._transitionStart({opacity:1},{opacity:0});},_transitionSlideLeft:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(100%, 0)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(-100%, 0)"});}else{this._jsTransitionSlide("left");}},_transitionSlideRight:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(-100%, 0)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(100%, 0)"});}else{this._jsTransitionSlide("right");}},_transitionSlideUp:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(0, 100%)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(0, -100%)"});}else{this._jsTransitionSlide("up");}},_transitionSlideDown:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(0, -100%)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(0, 100%)"});}else{this._jsTransitionSlide("down");}},_jsTransitionSlide:function(B){var E=this.get("itemIn"),C=this.get("itemOut"),D=0;if(C&&B=="left"){D=-parseInt(C.getStyle("width"),10);}if(C&&B=="right"){D=parseInt(C.getStyle("width"),10);}if(C&&B=="up"){D=-parseInt(C.getStyle("height"),10);}if(C&&B=="down"){D=parseInt(C.getStyle("height"),10);}if(E){E.setStyle("opacity",1);}if(E&&B=="left"){E.setStyle("left",E.getStyle("width"));}if(E&&B=="right"){E.setStyle("left","-"+E.getStyle("width"));}if(E&&B=="up"){E.setStyle("top",E.getStyle("height"));}if(E&&B=="down"){E.setStyle("top","-"+E.getStyle("height"));}if(B=="left"||B=="right"){this._transitionStart({left:0},{left:D});}else{this._transitionStart({top:0},{top:D});}},_cssTransitionSlide:function(E){var G=this.get("itemIn"),F=this.get("itemOut"),C=A.UA.chrome<36?"transform":"-webkit-transform",D={},B={};D[C]=E.inEnd;B[C]=E.outEnd;if(G){G.setStyle("transition","");G.setStyle("opacity",1);G.setStyle(C,E.inStart);}if(F){F.setStyle("transition","");F.setStyle(C,E.outStart);}this._transitionStart(D,B);
19
  },_transitionBars:function(){this.get("itemIn").one(".fl-slideshow-image-img").setStyle("opacity",0);var D=this.get("bars"),I=this._renderSlices(1,D),B=this.get("duration"),E=0,H=100,J=false,C=0,G=null,F={duration:B,opacity:1};if(this._type=="barsRandom"){I=this._randomizeSlices(I);}for(;C<I.length;C++){G=A.clone(F);if(this._type=="blinds"){G.width=parseFloat(I[C].getComputedStyle("width"),10)+"px";I[C].setStyle("width","0px");H=50;}J=C==I.length-1?true:false;A.later(E,this,this._transitionSlice,[I[C],G,J]);E+=H;}this._transitionSlicesFadeLast(E);},_transitionBoxes:function(){this.get("itemIn").one(".fl-slideshow-image-img").setStyle("opacity",0);var D=this.get("boxCols"),H=this.get("boxRows"),L=D*H,I=this._type!="boxesRandom",O=this._renderSlices(H,D,I),E=this.get("duration"),G=0,M=150,N=false,F=0,P=0,C=0,B=-1,K=null,J={duration:E,opacity:1};if(!I){O=this._randomizeSlices(O);M=30;for(;F<O.length;F++){K=A.clone(J);N=F==O.length-1?true:false;A.later(G,this,this._transitionSlice,[O[F],K,N]);G+=M;}}else{while(F<L){for(P=0;P<H;P++){if(P===0){B++;C=B;}if(C>-1&&C<D){F++;K=A.clone(J);if(this._type=="boxesGrow"){K.height=parseFloat(O[P][C].getComputedStyle("height"),10)+"px";K.width=parseFloat(O[P][C].getComputedStyle("width"),10)+"px";O[P][C].setStyle("height","0px");O[P][C].setStyle("width","0px");M=50;}N=F==L-1?true:false;A.later(G,this,this._transitionSlice,[O[P][C],K,N]);}C--;}G+=M;}}this._transitionSlicesFadeLast(G);},_renderSlices:function(F,H,P){var L=this.get("itemIn"),R=parseFloat(L.getComputedStyle("height"),10),G=parseFloat(L.getComputedStyle("width"),10),T=L.one("img"),B=T.get("src"),S=parseFloat(T.getComputedStyle("height"),10),O=parseFloat(T.getComputedStyle("width"),10),D=parseFloat(T.getComputedStyle("left"),10),N=parseFloat(T.getComputedStyle("top"),10),J=0,M=0,E=Math.round(R/F),K=Math.round(G/H),Q=null,I=null,C=[];for(;M<F;M++){if(typeof P!=="undefined"&&P){C[M]=[];}for(J=0;J<H;J++){Q=A.Node.create('<div class="fl-slideshow-transition-slice"></div>');I=A.Node.create('<img src="'+B+'" />');Q.setStyles({left:(K*J)+"px",top:(E*M)+"px",width:J==H-1?(G-(K*J))+"px":K+"px",height:M==F-1?(R-(E*M))+"px":E+"px",opacity:0});I.setStyles({height:S+"px",width:O+"px",top:N-((E+(M*E))-E)+"px",left:D-((K+(J*K))-K)+"px"});Q.append(I);L.append(Q);if(typeof P!=="undefined"&&P){C[M].push(Q);}else{C.push(Q);}}}return C;},_transitionSlicesFadeLast:function(B){var C=this.get("itemOut");if(C&&!C.hasClass("fl-slideshow-image-cropped")){C.transition({duration:B/1000+this.get("duration"),opacity:0});}},_transitionSlice:function(D,B,C){var E=C?A.bind(this._transitionSlicesComplete,this):null;D.transition(B,E);},_transitionSlicesComplete:function(){var B=this.get("itemIn");B.all(".fl-slideshow-transition-slice").remove();B.one(".fl-slideshow-image-img").setStyle("opacity",1);this._transitionComplete();},_randomizeSlices:function(E){var D=E.length,C,B;if(D===0){return;}while(--D){C=Math.floor(Math.random()*(D+1));B=E[D];E[D]=E[C];E[C]=B;}return E;},_transitionKenBurns:function(){var C=this.get("kenBurnsDuration"),D=this.get("duration"),E=this.get("itemIn"),B=this.get("kenBurnsZoom");this._transitionFade();(new A.FL.SlideshowKenBurns({duration:C+D+4,image:E,zoom:B})).run();}},{ATTRS:{itemIn:{value:null},itemOut:{value:null},duration:{value:0.5},easing:{value:"ease-out"},type:{value:"fade"},bars:{value:15},boxCols:{value:8},boxRows:{value:4},kenBurnsDuration:{value:4},kenBurnsZoom:{value:1.2}},TYPES:{fade:"_transitionFade",none:"_transitionNone",slideLeft:"_transitionSlideLeft",slideRight:"_transitionSlideRight",slideUp:"_transitionSlideUp",slideDown:"_transitionSlideDown",blinds:"_transitionBars",bars:"_transitionBars",barsRandom:"_transitionBars",boxes:"_transitionBoxes",boxesRandom:"_transitionBoxes",boxesGrow:"_transitionBoxes",kenBurns:"_transitionKenBurns"},SLIDESHOW_IMAGE_TYPES:["blinds","bars","barsRandom","boxes","boxesRandom","boxesGrow","kenBurns"]});A.namespace("FL").Slideshow=A.Base.create("fl-slideshow",A.FL.SlideshowBase,[],{frame:null,nav:null,imageNavLeft:null,imageNavRight:null,thumbs:null,verticalThumbs:null,caption:null,social:null,_nextImagePreloader:null,_initialNavSettings:null,initializer:function(){var B={loadGroup:"main-preload",crop:this.get("crop"),position:this.get("position"),protect:this.get("protect"),upsize:this.get("upsize")};this._nextImagePreloader=new A.FL.SlideshowImage(B);if("ontouchstart" in window){this._removeNavButton("prev");this._removeNavButton("prevPage");this._removeNavButton("next");this._removeNavButton("nextPage");this._removeNavButton("fullscreen");}if(this._hasNavButton("fullscreen")){if(A.FL.SlideshowFullscreen.OS_SUPPORT){this.plug(A.FL.SlideshowFullscreen);}else{this._removeNavButton("fullscreen");}}},renderUI:function(){A.FL.Slideshow.superclass.renderUI.apply(this,arguments);this._renderFrame();this._renderVerticalThumbs();this._renderNavAndThumbs();this._renderImageNav();this._renderMouseNav();this._renderCaption();this._renderSocial();},bindUI:function(){var F=this.get("boundingBox"),E=this.frame.get("boundingBox"),D=this.get("navOverlay"),C=this.get("navType"),G=this._getNav(),B=this.get("clickAction");A.FL.Slideshow.superclass.bindUI.apply(this,arguments);A.Do.after(this._resizeChildWidgets,this,"resize");this.on("albumLoadStart",this._albumLoadStart,this);this.on("albumLoadComplete",this._albumLoadComplete,this);this.on("imageLoadComplete",this._loadFrame,this);if(this.get("loadingImageAlwaysEnabled")){this.frame.on("transitionInit",A.bind(this._showLoadingImageWithDelay,this));this.frame.on("transitionStart",A.bind(this._hideLoadingImage,this));}if(this.get("overlayHideOnMousemove")){if(G&&D){this.frame.once("transitionComplete",G.slideshowOverlay.hideWithTimer,G.slideshowOverlay);F.on("mousemove",A.bind(this._toggleNav,this));}if(C=="buttons"||C=="thumbs"||C=="custom"){F.on("mouseenter",A.bind(this._checkOverlaysOnMouseenter,this));F.on("mouseleave",A.bind(this._hideAllOverlays,this));}}F.delegate("click",A.bind(this._overlayCloseClick,this),".fl-slideshow-overlay-close");
20
  if(B=="gallery"||B=="url"){E.delegate("click",A.bind(this._frameClick,this),".fl-slideshow-image-img");}},syncUI:function(){var B=this.get("boundingBox");A.FL.Slideshow.superclass.syncUI.apply(this,arguments);B._node.onselectstart=function(){return false;};B._node.unselectable="on";B._node.style.MozUserSelect="none";if(this.get("clickAction")!="none"){this.frame.get("boundingBox").addClass("fl-click-action-enabled");}},unload:function(){this.pause();this.frame.unload();if(this.thumbs!==null){this.thumbs.unload();}},_albumLoadStart:function(){this._showLoadingImage();},_albumLoadComplete:function(){this.frame.once("transitionStart",A.bind(this._hideLoadingImage,this));},_resizeChildWidgets:function(){var D=this.get("boundingBox"),B=this.get("contentBox"),C=this.get("imageNavEnabled");this._renderNavAndThumbs();if(this.get("verticalThumbsOverlay")){this._resizeFrame(B.get("offsetWidth"),D.get("offsetHeight"));this._resizeVerticalThumbs();}else{this._resizeVerticalThumbs();this._resizeFrame(B.get("offsetWidth"),D.get("offsetHeight"));}if(C){this._positionImageNav();}this._positionLoadingImage();},_renderVerticalThumbs:function(){var B=this.get("responsiveThreshold"),E=this.get("boundingBox"),C=E.get("offsetWidth"),D;if(this.get("verticalThumbsEnabled")&&C>B){this.verticalThumbs=new A.FL.SlideshowThumbs(this._getVerticalThumbsConfig());this.add(this.verticalThumbs);this.verticalThumbs.render(E);D=this.verticalThumbs.get("boundingBox");D.addClass("fl-slideshow-vertical-thumbs");D.setStyle(this.get("verticalThumbsPosition"),0);E.append(D);if(this.get("verticalThumbsOverlay")){this.verticalThumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left"});this.frame.get("boundingBox").append(D);this.verticalThumbs.resize();}else{this.verticalThumbs.resize();this._adjustContentForVerticalThumbs();}this._bindVerticalThumbs();}},_getVerticalThumbsConfig:function(){var C=this.getAttrs(),B={columns:C.verticalThumbsColumns,rows:"auto",centerSinglePage:false,horizontalSpacing:C.verticalThumbsHorizontalSpacing,verticalSpacing:C.verticalThumbsVerticalSpacing,spaceEvenly:C.verticalThumbsSpaceEvenly,rightNavEnabled:false,leftNavEnabled:false,topNavEnabled:C.verticalThumbsTopNavEnabled,topNavButtons:C.verticalThumbsTopNavButtons,bottomNavEnabled:C.verticalThumbsBottomNavEnabled,bottomNavButtons:C.verticalThumbsBottomNavButtons,pauseOnClick:C.verticalThumbsPauseOnClick,transition:C.verticalThumbsTransition,transitionDirection:C.verticalThumbsTransitionDirection,transitionEasing:C.verticalThumbsTransitionEasing,touchSupport:true,imageConfig:{crop:C.verticalThumbsImageCrop,width:C.verticalThumbsImageWidth,height:C.verticalThumbsImageHeight}};return B;},_bindVerticalThumbs:function(){var B=this.get("boundingBox"),E=this.get("overlayHideOnMousemove"),D=this.get("verticalThumbsOverlay"),C=this.verticalThumbs;if(C&&E&&D){this.frame.once("transitionComplete",C.slideshowOverlay.hideWithTimer,C.slideshowOverlay);B.on("mousemove",A.bind(this._toggleVerticalThumbs,this));B.on("mouseenter",A.bind(this._toggleVerticalThumbs,this));}},_resizeVerticalThumbs:function(){var G=this.get("verticalThumbsEnabled"),H,I,F,C,D,E,B,J;if(G){H=this.get("verticalThumbsOverlay");I=this.get("responsiveThreshold");F=this.get("boundingBox");C=F.get("offsetWidth");D=this.get("navOverlay");E=this.get("navType");B=this._getNav();if(this.verticalThumbs&&C>I){this.verticalThumbs.get("boundingBox").setStyle("display","block");this.verticalThumbs.resize();if(!H){this._adjustContentForVerticalThumbs();}else{if(B&&D){J=B.get("boundingBox");if(E=="thumbs"){this._adjustOverlayForVerticalThumbs(J,true);this.thumbs.resize();}else{this._adjustOverlayForVerticalThumbs(J);}}}}else{if(!this.verticalThumbs&&C>I){this._renderVerticalThumbs();}else{if(this.verticalThumbs&&C<=I){this.verticalThumbs.get("boundingBox").setStyle("display","none");if(!H){this.get("contentBox").setStyles({left:"auto",position:"relative",right:"auto",width:"auto"});}}}}}},_toggleVerticalThumbs:function(){if(this.verticalThumbs){if(this.verticalThumbs.slideshowOverlay._visible){this.verticalThumbs.slideshowOverlay.hideWithTimer();}else{this.verticalThumbs.slideshowOverlay.show();}}},_adjustContentForVerticalThumbs:function(){var E=this.get("boundingBox"),C=this.verticalThumbs.get("boundingBox"),B=this.get("verticalThumbsPosition"),G=this.get("contentBox"),F=B=="left"?"right":"left",D=E.get("offsetWidth")-C.get("offsetWidth");G.setStyle("position","absolute");G.setStyle(F,0);G.setStyle("width",D);},_adjustOverlayForVerticalThumbs:function(F,C){var H=this.get("verticalThumbsEnabled"),I=this.get("verticalThumbsOverlay"),E=null,D=null,G=typeof C==="undefined"?"":"margin-",B=0;if(this.verticalThumbs&&H&&I){E=this.verticalThumbs.get("boundingBox");B=E.get("offsetWidth");D=this.get("verticalThumbsPosition");if(D=="left"){F.setStyle(G+"left",B+"px");}else{F.setStyle(G+"right",B+"px");}}},_renderFrame:function(){this.frame=new A.FL.SlideshowFrame({imageConfig:{loadGroup:"main",loadPriority:true,crop:this.get("crop"),cropHorizontalsOnly:this.get("cropHorizontalsOnly"),position:this.get("position"),protect:this.get("protect"),upsize:this.get("upsize"),showVideoButton:this.get("navOverlay")},touchSupport:true});this.add(this.frame);this.frame.render(this.get("contentBox"));this.frame.get("boundingBox").addClass("fl-slideshow-main-image");this._setPlayingTimerEvent(this.frame,"transitionComplete");this._loadingImageContainer=this.frame.get("contentBox");},_resizeFrame:function(D,B){var C=this.get("navOverlay"),E=this._getNav();if(E&&!C){B-=parseInt(E.get("boundingBox").getComputedStyle("height"),10);}this.frame.resize(D,B);},_loadFrame:function(G){var E=this.imageInfo.index,D=this.albumInfo.images,C=E+1>=D.length?0:E+1,F=this.frame.get("width"),B=this.frame.get("height");this.frame.load(G.imageInfo);A.FL.SlideshowImageLoader.removeGroup("main-preload");this._nextImagePreloader.preload(D[C],F,B);},_frameClick:function(){var B=this.get("clickAction"),C=this.get("clickActionUrl");
21
  if(B=="url"){window.location.href=C;}else{if(B=="gallery"){window.location.href=this.imageInfo.link;}}},_initMiniNav:function(){var B=[];if(!("ontouchstart" in window)){B.push("prev");}if(this._hasNavButton("thumbs")||this.get("navType")=="thumbs"){B.push("thumbs");}if(this._hasNavButton("caption")){B.push("caption");}if(this._hasNavButton("social")){B.push("social");}if(this._hasNavButton("buy")){B.push("buy");}if(this._hasNavButton("play")){B.push("play");}if(this._hasNavButton("fullscreen")&&!("ontouchstart" in window)){B.push("fullscreen");}if(!("ontouchstart" in window)){B.push("next");}this._initialNavSettings={buttons:this.get("navButtons"),buttonsLeft:this.get("navButtonsLeft"),buttonsRight:this.get("navButtonsRight"),type:this.get("navType")};this._set("navButtons",B);this._set("navButtonsLeft",[]);this._set("navButtonsRight",[]);this._set("navType","buttons");},_renderNavAndThumbs:function(){var C=this.get("navType"),D=false,E,B;if(C=="buttons"||C=="thumbs"){E=this.get("boundingBox").get("offsetWidth");B=this.get("responsiveThreshold");if(E<=B&&this._initialNavSettings===null){this._initMiniNav();D=true;}else{if(E>B&&this._initialNavSettings!==null){this._set("navButtons",this._initialNavSettings.buttons);this._set("navButtonsLeft",this._initialNavSettings.buttonsLeft);this._set("navButtonsRight",this._initialNavSettings.buttonsRight);this._set("navType",this._initialNavSettings.type);this._initialNavSettings=null;D=true;}}if(D||this.nav===null){this._renderNav();}if(D||this.thumbs===null){this._renderThumbs();}else{if(this._thumbsEnabled()){this._resizeThumbs();}}if(D&&this.caption!==null){this._syncCaption();}if(D&&this.social!==null){this._syncSocial();}}},_renderNav:function(){var D=this.frame.get("boundingBox"),E=null,B=this.get("navOverlay"),C=this.get("navPosition");this._destroyNav();if(this.get("navType")=="buttons"){this.nav=new A.FL.SlideshowNav({buttons:this.get("navButtons"),buttonsLeft:this.get("navButtonsLeft"),buttonsRight:this.get("navButtonsRight")});this.add(this.nav);this.nav.render(this.get("contentBox"));E=this.nav.get("boundingBox");if(B){this.nav.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});E.setStyle("position","absolute");E.setStyle(C,"0px");}if(C=="top"){D.insert(E,"before");}else{D.insert(E,"after");}E.addClass("fl-slideshow-main-nav");}},_destroyNav:function(){if(this.nav!==null){if(this.nav.slideshowOverlay){this.nav.slideshowOverlay.destroy();}this.nav.get("boundingBox").remove();this.remove(this.nav);try{this.nav.destroy(true);}catch(B){}this.nav=null;}},_getNav:function(){var B=this.get("navType");if(B=="buttons"){return this.nav;}else{if(B=="thumbs"){return this.thumbs;}else{return null;}}},_toggleNav:function(){var B=this._getNav();if(B.slideshowOverlay){if(B.slideshowOverlay._visible){B.slideshowOverlay.hideWithTimer();}else{B.slideshowOverlay.show();}}},_renderImageNav:function(){var B;if(this.get("imageNavEnabled")){if("ontouchstart" in window){this._set("imageNavEnabled",false);}else{B=this.get("boundingBox");this.imageNavLeft=new A.FL.SlideshowNav({buttons:["prev"],useFontIcons:false});this.imageNavRight=new A.FL.SlideshowNav({buttons:["next"],useFontIcons:false});this.add(this.imageNavLeft);this.add(this.imageNavRight);this.imageNavLeft.render(this.frame.get("boundingBox"));this.imageNavRight.render(this.frame.get("boundingBox"));this.imageNavLeft.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});this.imageNavRight.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});if(this.get("overlayHideOnMousemove")){this.frame.once("transitionComplete",this.imageNavLeft.slideshowOverlay.hideWithTimer,this.imageNavLeft.slideshowOverlay);this.frame.once("transitionComplete",this.imageNavRight.slideshowOverlay.hideWithTimer,this.imageNavRight.slideshowOverlay);B.on("mousemove",A.bind(this._toggleImageNav,this));B.on("mouseenter",A.bind(this._toggleImageNav,this));}this.imageNavLeft.get("boundingBox").addClass("fl-slideshow-image-nav-left");this.imageNavRight.get("boundingBox").addClass("fl-slideshow-image-nav-right");}}},_positionImageNav:function(){var D=this.imageNavLeft.get("boundingBox"),E=this.imageNavRight.get("boundingBox"),B=D.get("offsetHeight"),C=this.frame.get("boundingBox").get("offsetHeight"),G=C/2-B/2,F={top:G+"px",display:"block"};D.setStyles(F);E.setStyles(F);this._adjustOverlayForVerticalThumbs(D);this._adjustOverlayForVerticalThumbs(E);},_toggleImageNav:function(){if(this.imageNavLeft.slideshowOverlay._visible){this.imageNavLeft.slideshowOverlay.hideWithTimer();}else{this.imageNavLeft.slideshowOverlay.show();}if(this.imageNavRight.slideshowOverlay._visible){this.imageNavRight.slideshowOverlay.hideWithTimer();}else{this.imageNavRight.slideshowOverlay.show();}},_renderMouseNav:function(){if(this.get("mouseNavEnabled")&&!("ontouchstart" in window)&&!window.navigator.msPointerEnabled){this.plug(A.FL.SlideshowMouseNav,{trigger:this.frame.get("boundingBox")});}},_thumbsEnabled:function(){var B=this.get("navType");if(B=="thumbs"){return true;}if((B=="buttons"||B=="custom")&&this._hasNavButton("thumbs")){return true;}else{return false;}},_renderThumbs:function(){var E,C,D,B;this._destroyThumbs();if(this._thumbsEnabled()){E=this.frame.get("boundingBox");C=this.get("navOverlay");D=this.get("navPosition");B=this.get("navType");this.thumbs=new A.FL.SlideshowThumbs(this._getThumbsConfig());try{this.add(this.thumbs);}catch(F){}if(B=="buttons"||B=="custom"){this.thumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left",visible:false});}else{if(B=="thumbs"&&C){this.thumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left"});}}this.thumbs.render(this.get("contentBox"));if(D=="top"){E.insert(this.thumbs.get("boundingBox"),"before");}else{E.insert(this.thumbs.get("boundingBox"),"after");}if(this.get("thumbsHideOnClick")&&B!="thumbs"){this.thumbs.on("imageClick",A.bind(this._hideThumbsOnImageClick,this));}this._syncThumbs();}},_destroyThumbs:function(){if(this.thumbs!==null){if(this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay.destroy();
22
  }this.thumbs.get("boundingBox").remove();this.remove(this.thumbs);try{this.thumbs.destroy(true);}catch(B){}this.thumbs=null;}},_syncThumbs:function(){var D=this.thumbs.get("boundingBox"),E=this.get("navOverlay"),F=this.get("navPosition"),C=this.get("navType"),B="padding"+F.charAt(0).toUpperCase()+F.slice(1),G=0;if(C=="buttons"){G=parseInt(this.nav.get("boundingBox").getComputedStyle("height"),10);D.setStyle("position","absolute");if(E){D.setStyle(B,G+"px");D.setStyle(F,"0px");}else{D.setStyle(F,G+"px");}}if(C=="custom"||(C=="thumbs"&&E)){D.setStyle("position","absolute");D.setStyle(F,"0px");}this.thumbs.resize();},_getThumbsConfig:function(){var E=this.getAttrs(),B=this.get("navType"),D={crop:E.thumbsImageCrop,width:E.thumbsImageWidth,height:E.thumbsImageHeight},C={columns:"auto",rows:1,horizontalSpacing:E.thumbsHorizontalSpacing,verticalSpacing:E.thumbsVerticalSpacing,spaceEvenly:E.thumbsSpaceEvenly,centerSinglePage:E.thumbsCenterSinglePage,pauseOnClick:E.thumbsPauseOnClick,transition:E.thumbsTransition,transitionDirection:E.thumbsTransitionDirection,transitionEasing:E.thumbsTransitionEasing,leftNavButtons:E.navButtonsLeft,rightNavButtons:E.navButtonsRight,imageConfig:D,touchSupport:true};if(B=="buttons"||B=="custom"){if("ontouchstart" in window){C.leftNavEnabled=false;C.rightNavEnabled=false;}else{C.centerSinglePage=false;C.leftNavButtons=["prevPage"];C.rightNavButtons=["nextPage"];}}return C;},_resizeThumbs:function(){if(this.thumbs){this.thumbs.resize();}},_toggleThumbs:function(){this._toggleOverlay(this.thumbs.slideshowOverlay);},_hideThumbsOnImageClick:function(){if(this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay._focus=false;this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hide();if(this.nav&&this.nav.slideshowOverlay){this.nav.slideshowOverlay.enable();}}},_renderCaption:function(){if(this._hasNavButton("caption")){this.caption=new A.FL.SlideshowCaption({lessLinkText:this.get("captionLessLinkText"),moreLinkText:this.get("captionMoreLinkText"),textLength:this.get("captionTextLength"),stripTags:this.get("captionStripTags")});this.add(this.caption);this.caption.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),visible:false,closeButton:true});this._syncCaption();}},_syncCaption:function(){var G=this.caption.get("boundingBox"),C=this.get("navOverlay"),D=this.get("navPosition"),E=this._getNav(),B="padding"+D.charAt(0).toUpperCase()+D.slice(1),F=0;G.setStyle("position","absolute");if(E){F=parseInt(E.get("boundingBox").getComputedStyle("height"),10);}if(E&&C){G.setStyle(B,F+"px");G.setStyle(D,"0px");}else{G.setStyle(D,F+"px");}},_toggleCaption:function(){this._toggleOverlay(this.caption.slideshowOverlay);},_renderSocial:function(){if(this._hasNavButton("social")){this.social=new A.FL.SlideshowSocial();this.add(this.social);this.social.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),visible:false,closeButton:true});this._syncSocial();}},_syncSocial:function(){var D=this.social.get("boundingBox"),C=this.get("navOverlay"),E=this.get("navPosition"),F=this._getNav(),B="padding"+E.charAt(0).toUpperCase()+E.slice(1),G=0;D.setStyle("position","absolute");if(F){G=parseInt(F.get("boundingBox").getComputedStyle("height"),10);}if(F&&C){D.setStyle(B,G+"px");D.setStyle(E,"0px");}else{D.setStyle(E,G+"px");}},_toggleSocial:function(){this._toggleOverlay(this.social.slideshowOverlay);},_toggleOverlay:function(C){var B=this.get("navType"),D=this._getNav();if(C._visible){if(D&&D.slideshowOverlay){D.slideshowOverlay.enable();}C.enable();C.hide();}else{if(D&&D.slideshowOverlay){D.slideshowOverlay.disable();}C.show();C.disable();}if(this.thumbs&&B!="thumbs"&&this.thumbs.slideshowOverlay!==C){this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hide();}if(this.caption&&this.caption.slideshowOverlay!==C){this.caption.slideshowOverlay.enable();this.caption.slideshowOverlay.hide();}if(this.social&&this.social.slideshowOverlay!==C){this.social.slideshowOverlay.enable();this.social.slideshowOverlay.hide();}},_overlayCloseClick:function(){if(this.nav&&this.nav.slideshowOverlay){this.nav.slideshowOverlay.enable();}if(this.thumbs&&this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay.enable();}if(this.caption){this.caption.slideshowOverlay.enable();}if(this.social){this.social.slideshowOverlay.enable();}if(this.imageNavLeft){this.imageNavLeft.slideshowOverlay.enable();this.imageNavRight.slideshowOverlay.enable();}},_hideAllOverlays:function(){if(this.nav&&this.nav.slideshowOverlay&&this.nav.slideshowOverlay._visible){this.nav.slideshowOverlay.enable();this.nav.slideshowOverlay.hideWithTimer();}if(this.thumbs&&this.thumbs.slideshowOverlay&&this.thumbs.slideshowOverlay._visible){this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hideWithTimer();}if(this.caption&&this.caption.slideshowOverlay._visible){this.caption.slideshowOverlay.enable();this.caption.slideshowOverlay.hideWithTimer();}if(this.social&&this.social.slideshowOverlay._visible){this.social.slideshowOverlay.enable();this.social.slideshowOverlay.hideWithTimer();}if(this.imageNavLeft){this.imageNavLeft.slideshowOverlay.enable();this.imageNavLeft.slideshowOverlay.hideWithTimer();this.imageNavRight.slideshowOverlay.enable();this.imageNavRight.slideshowOverlay.hideWithTimer();}},_checkOverlaysOnMouseenter:function(){var B=this.get("navType"),D=this.get("navOverlay"),E=this._getNav(),C=false;if(this.thumbs&&B!="thumbs"&&this.thumbs.slideshowOverlay._visible){C=true;this.thumbs.slideshowOverlay.disable();}else{if(this.caption&&this.caption.slideshowOverlay._visible){C=true;this.caption.slideshowOverlay.disable();}else{if(this.social&&this.social.slideshowOverlay._visible){C=true;this.social.slideshowOverlay.disable();}}}if(E&&C&&D){E.slideshowOverlay.disable();}},_hasNavButton:function(C){var B=this.get("navType");if(B=="buttons"||B=="thumbs"||B=="custom"){if(A.Array.indexOf(this.get("navButtons"),C)>-1){return true;}else{if(A.Array.indexOf(this.get("navButtonsLeft"),C)>-1){return true;
23
  }else{if(A.Array.indexOf(this.get("navButtonsRight"),C)>-1){return true;}else{return false;}}}}else{return false;}},_removeNavButton:function(D){var G=this.get("navButtons"),B=this.get("navButtonsLeft"),F=this.get("navButtonsRight"),C=this.get("verticalThumbsTopNavButtons"),E=this.get("verticalThumbsBottomNavButtons");if(A.Array.indexOf(G,D)>-1){G.splice(A.Array.indexOf(G,D),1);}if(A.Array.indexOf(B,D)>-1){B.splice(A.Array.indexOf(B,D),1);}if(A.Array.indexOf(F,D)>-1){F.splice(A.Array.indexOf(F,D),1);}if(A.Array.indexOf(C,D)>-1){C.splice(A.Array.indexOf(C,D),1);}if(A.Array.indexOf(E,D)>-1){E.splice(A.Array.indexOf(E,D),1);}this._set("navButtons",G);this._set("navButtonsLeft",B);this._set("navButtonsRight",F);this._set("verticalThumbsTopNavButtons",C);this._set("verticalThumbsBottomNavButtons",E);}},{CSS_PREFIX:"fl-slideshow",ATTRS:{clickAction:{value:"none"},clickActionUrl:{value:""},crop:{value:false},cropHorizontalsOnly:{value:false},loadingImageAlwaysEnabled:{value:true},position:{value:"center center"},protect:{value:true},upsize:{value:true},transition:{value:"fade"},transitionDuration:{value:1},transitionEasing:{value:"ease-out"},kenBurnsZoom:{value:1.2},navType:{value:"none"},navPosition:{value:"bottom"},navOverlay:{value:false},navButtons:{value:[]},navButtonsLeft:{value:[]},navButtonsRight:{value:[]},overlayHideOnMousemove:{value:true},overlayHideDelay:{value:3000},imageNavEnabled:{value:false},mouseNavEnabled:{value:false},thumbsHideOnClick:{value:true},thumbsHorizontalSpacing:{value:15},thumbsVerticalSpacing:{value:15},thumbsSpaceEvenly:{value:true},thumbsCenterSinglePage:{value:true},thumbsPauseOnClick:{value:false},thumbsTransition:{value:"slideHorizontal"},thumbsTransitionDuration:{value:0.8},thumbsTransitionEasing:{value:"ease-out"},thumbsImageCrop:{value:true},thumbsImageWidth:{value:50},thumbsImageHeight:{value:50},captionLessLinkText:{value:"Read Less"},captionMoreLinkText:{value:"Read More"},captionTextLength:{value:200},captionStripTags:{value:false},verticalThumbsEnabled:{value:false},verticalThumbsPosition:{value:"left"},verticalThumbsOverlay:{value:false},verticalThumbsColumns:{value:1},verticalThumbsTopNavEnabled:{value:false},verticalThumbsTopNavButtons:{value:["prevPage","nextPage"]},verticalThumbsBottomNavEnabled:{value:true},verticalThumbsBottomNavButtons:{value:["prevPage","nextPage"]},verticalThumbsHorizontalSpacing:{value:15},verticalThumbsVerticalSpacing:{value:15},verticalThumbsSpaceEvenly:{value:false},verticalThumbsPauseOnClick:{value:false},verticalThumbsImageCrop:{value:true},verticalThumbsImageWidth:{value:75},verticalThumbsImageHeight:{value:75},verticalThumbsTransition:{value:"slideVertical"},verticalThumbsTransitionDuration:{value:0.8},verticalThumbsTransitionEasing:{value:"ease-out"},googlePlusButtonEnabled:{value:true},likeButtonEnabled:{value:true},pinterestButtonEnabled:{value:true},tweetButtonEnabled:{value:true}}});},"2.0.0",{requires:["anim","event-mouseenter","plugin","transition","fl-event-move","fl-slideshow-css","fl-slideshow-base","fl-utils","sm-fonticon"]});YUI.add("fl-slideshow-album-loader",function(A){A.namespace("FL").SlideshowAlbumLoader=A.Base.create("fl-slideshow-album-loader",A.Base,[],{_source:null,load:function(B){this._source=B;this.fire("start");this[A.FL.SlideshowAlbumLoader.TYPES[B.type]].call(this);},_loadComplete:function(B){B=this._randomize(B);this.fire("complete",B);},_randomize:function(C){var B;if(this.get("randomize")){C.albumInfo.images.sort(function(){return 0.5-Math.random();});for(B=0;B<C.albumInfo.images.length;B++){C.albumInfo.images[B].index=B;}}return C;},_loadSmugMug:function(){var B=new A.FL.SmugMugAPI();B.on("complete",this._loadSmugMugSuccess,this);B.addParam("method","smugmug.images.get");B.addParam("AlbumID",this._source.id);B.addParam("AlbumKey",this._source.key);B.addParam("Extras","Caption,Format,FileName");if(this._source.password){B.addParam("Password",this._source.password);}if(this._source.sp){B.addParam("SitePassword",this._source.sp);}B.request();},_loadSmugMugSuccess:function(H){var J=H.Album.Images,E={},I=typeof this._source.proxy!=="undefined"?this._source.proxy:"",C="",B="",D="",K="",G=0,L=null,F=null;E.index=this._source.index;E.id=H.Album.id;E.key=H.Album.Key;E.link=H.Album.URL;E.title=this._source.title?this._source.title:"";E.images=[];C=E.link.replace("http://","").split("/").shift();C="http://"+C+"/buy/"+H.Album.id+"_"+H.Album.Key+"/";for(G=0;G<J.length;G++){B=I+H.Album.URL+"/"+J[G].id+"_"+J[G].Key;K=J[G].Format.toLowerCase();D=K=="mp4"?".jpg":"."+K;E.images[G]={};E.images[G].index=G;E.images[G].sourceType="smugmug";E.images[G].albumId=H.Album.id;E.images[G].albumKey=H.Album.Key;E.images[G].id=J[G].id;E.images[G].key=J[G].Key;E.images[G].filename=J[G].FileName;E.images[G].format=K;E.images[G].caption=J[G].Caption||"";E.images[G].link=H.Album.URL+"#"+J[G].id+"_"+J[G].Key;E.images[G].tinyURL=B+"-Ti"+D;E.images[G].thumbURL=B+"-Th"+D;E.images[G].smallURL=B+"-S"+D;E.images[G].mediumURL=B+"-M"+D;E.images[G].largeURL=B+"-L"+D;E.images[G].xlargeURL=B+"-XL"+D;E.images[G].x2largeURL=B+"-X2"+D;E.images[G].x3largeURL=B+"-X3"+D;E.images[G].buyURL=C+J[G].id+"_"+J[G].Key;E.images[G].iframe="";if(E.images[G].caption.indexOf("iframe")){L=A.Node.create("<div>"+E.images[G].caption+"</div>");F=L.one("iframe");if(F){E.images[G].iframe=F.getAttribute("src");E.images[G].caption=E.images[G].caption.replace(/<iframe.*>.*<\/iframe>/gi,"");}}}this._loadComplete({"albumInfo":E});},_loadUrls:function(){var B={},C=0;B.index=this._source.index;B.title=this._source.title?this._source.title:"";B.images=[];for(;C<this._source.urls.length;C++){B.images[C]={};B.images[C].index=C;B.images[C].sourceType="urls";B.images[C].filename=this._source.urls[C].largeURL.split("/").pop();B.images[C].format="";B.images[C].caption=this._source.urls[C].caption||"";B.images[C].link=this._source.urls[C].largeURL;B.images[C].thumbURL=this._source.urls[C].thumbURL||this._source.urls[C].largeURL;B.images[C].smallURL=this._source.urls[C].smallURL||this._source.urls[C].largeURL;B.images[C].mediumURL=this._source.urls[C].mediumURL||this._source.urls[C].largeURL;B.images[C].largeURL=this._source.urls[C].largeURL;B.images[C].xlargeURL=this._source.urls[C].xlargeURL||this._source.urls[C].largeURL;B.images[C].x2largeURL=this._source.urls[C].x2largeURL||this._source.urls[C].largeURL;B.images[C].x3largeURL=this._source.urls[C].x3largeURL||this._source.urls[C].largeURL;B.images[C].buyURL=this._source.urls[C].buyURL||"";B.images[C].iframe=this._source.urls[C].iframe||"";}this._loadComplete({"albumInfo":B});}},{ATTRS:{randomize:{value:false}},TYPES:{"smugmug":"_loadSmugMug","flickr":"_loadFlickr","picasa":"_loadPicasa","urls":"_loadUrls","html":"_loadHtml"}});},"2.0.0",{requires:["base","fl-smugmug-api"]});YUI.add("fl-slideshow-base",function(A){A.namespace("FL").SlideshowBase=A.Base.create("fl-slideshow-base",A.Widget,[A.WidgetParent],{_albumLoader:null,albums:[],albumInfo:null,albumIndex:null,imageInfo:null,imageIndex:null,lastImageIndex:null,_resizeTimer:null,_playing:false,_playingTimer:null,_playingTimerEvent:null,_loadingImage:null,_loadingImageWrap:null,_loadingImageVisible:false,_loadingImageTimer:null,_loadingImageContainer:null,_initialHeight:null,_initialWidth:null,initializer:function(){this._albumLoader=new A.FL.SlideshowAlbumLoader({randomize:this.get("randomize")});},renderUI:function(){this._renderLoadingImage();},bindUI:function(){this._albumLoader.on("complete",this._loadAlbumComplete,this);A.one(window).on("fl-slideshow-base|resize",this._delayResize,this);A.one(window).on("fl-slideshow-base|orientationchange",this._delayResize,this);A.Node.one("body").on("keydown",A.bind(this._onKey,this));},syncUI:function(){this.get("boundingBox").addClass("fl-slideshow-"+this.get("color"));this.resize();if(this.get("loadOnRender")){this.loadAlbum(this.get("defaultAlbum"),this.get("defaultImage"));}},addAlbum:function(D){var C=this.get("source"),B=C.length;C[B]=D;C[B].index=B;this.set("source",C);},loadAlbum:function(C,B){var E=this.get("source"),D=typeof B=="undefined"?0:B;this.imageIndex=null;this.lastImageIndex=null;this.fire("albumLoadStart");this.once("albumLoadComplete",A.bind(this.loadImage,this,D));if(E[C]&&E[C].type=="album-data"){this.albums[C]=E[C].data;this._loadAlbumComplete({albumInfo:this.albums[C]});}else{if(E[C]&&this.albums[C]){this._loadAlbumComplete({albumInfo:this.albums[C]});}else{this._albumLoader.load(E[C]||E[0]);}}},_loadAlbumComplete:function(B){this.albums[B.albumInfo.index]=B.albumInfo;this.albumInfo=B.albumInfo;this.albumIndex=B.albumInfo.index;this.fire("albumLoadComplete");if(this.get("autoPlay")){this._playingTimerStart();this.fire("played");this._playing=true;}},loadImage:function(B){if(this._playing){this._playingTimerStart();}B=B<0?this.albumInfo.images.length-1:B;B=B>=this.albumInfo.images.length?0:B;this.lastImageIndex=this.imageIndex;this.imageIndex=B;this.imageInfo=this.albumInfo.images[B];this.fire("imageLoadComplete",{"imageInfo":this.imageInfo});},prevImage:function(){if(this.get("pauseOnNextOrPrev")){this.pause();}this.loadImage(this.imageIndex-1);this.fire("prevImage");},nextImage:function(){if(this.get("pauseOnNextOrPrev")){this.pause();}this.loadImage(this.imageIndex+1);this.fire("nextImage");},_onKey:function(B){switch(B.keyCode){case 37:this.prevImage();break;case 39:this.nextImage();break;}},resize:function(){var E=this.get("stretchy"),D=this.get("stretchyType"),C=parseInt(A.one("body").get("winWidth"),10),B=this.get("responsiveThreshold");if(C>B&&E&&D=="window"){this._stretchyWindowResize();}else{if((C<=B)||(E&&D=="ratio")){this._stretchyRatioResize();}else{this._standardResize();}}this.fire("resize");},_standardResize:function(){var I=this.get("stretchy"),G=this.get("stretchyType"),H=this.get("boundingBox"),F=H.get("parentNode"),C=parseInt(F.getComputedStyle("height"),10),E=parseInt(F.getComputedStyle("width"),10),B=this.get("height"),D=this.get("width");if(H.hasClass("fl-fullscreen-active")){this._stretchyWindowResize();return;}else{if(I&&G=="contain"){H.setStyle("height",C+"px");H.setStyle("width",E+"px");}else{if(!A.Lang.isNumber(B)){this._stretchyRatioResize();return;}else{H.setStyle("height",B+"px");if(D){H.setStyle("width",D+"px");}else{H.setStyle("width",E+"px");}}}}},_stretchyWindowResize:function(){var G=this.get("boundingBox"),E=this.get("stretchyVerticalSpace"),D=parseInt(G.getStyle("paddingTop"),10),F=parseInt(G.getStyle("paddingBottom"),10),B=parseInt(A.one("body").get("winHeight"),10),C="";if(G.hasClass("fl-fullscreen-active")){E=0;C=parseInt(A.one("body").get("winWidth"),10)+"px";}B=(B-D-F-E)+"px";G.setStyle("height",B);G.setStyle("width",C);},_stretchyRatioResize:function(){var G=this.get("boundingBox"),J=G.get("parentNode"),H=0,F=this.get("stretchyRatio"),L=parseInt(G.getStyle("paddingTop"),10),C=parseInt(G.getStyle("paddingBottom"),10),I=parseInt(J.getComputedStyle("width"),10),E=parseInt(A.one("body").get("winHeight"),10),D=parseInt(A.one("body").get("winWidth"),10),K=I*F,B="";if(G.hasClass("fl-fullscreen-active")){K=E;B=D;}K=(K-L-C-H)+"px";G.setStyle("height",K);G.setStyle("width",B);},_delayResize:function(){if(this._resizeTimer){this._resizeTimer.cancel();}this._resizeTimer=A.later(300,this,this.resize);},play:function(){this._playingTimer=A.later(this.get("speed"),this,this._playingTimerComplete);this.fire("played");this._playing=true;},pause:function(){this._playingTimerCancel();this.fire("paused");this._playing=false;},_setPlayingTimerEvent:function(C,B){this._playingTimerEvent={"obj":C,"e":B};},_playingTimerStart:function(B){this._playingTimerCancel();if(!B&&this._playingTimerEvent!==null){this._playingTimerEvent.obj.once("fl-slideshow-base|"+this._playingTimerEvent.e,A.bind(this._playingTimerStart,this));}else{this._playingTimer=A.later(this.get("speed"),this,this._playingTimerComplete);}},_playingTimerComplete:function(){this.loadImage(this.imageIndex+1);this.fire("playingTimerComplete");},_playingTimerCancel:function(){if(this._playingTimer){this._playingTimer.cancel();}if(this._playingTimerEvent){this._playingTimerEvent.obj.detach("fl-slideshow-base|"+this._playingTimerEvent.e);}},_renderLoadingImage:function(){var C={lines:11,length:6,width:2,radius:7,color:"",speed:1,trail:60,shadow:false},B=A.merge(C,this.get("loadingImageSettings"));if(this.get("loadingImageEnabled")){if(B.color===""){B.color=this._colorToHex(A.one("body").getStyle("color"));}this._loadingImage=new A.FL.Spinner(B);this._loadingImageWrap=A.Node.create('<div class="fl-loading-image"></div>');this._loadingImageWrap.setStyles({position:"absolute","z-index":"1000"});}},_showLoadingImage:function(){if(this._loadingImage&&!this._loadingImageVisible){this._loadingImageVisible=true;this._loadingImage.spin();this._loadingImageWrap.insert(this._loadingImage.el);
24
- if(this._loadingImageContainer!==null){this._loadingImageContainer.insert(this._loadingImageWrap);}else{this.get("contentBox").insert(this._loadingImageWrap);}this._positionLoadingImage();}},_showLoadingImageWithDelay:function(){if(this._loadingImage){this._loadingImageTimer=A.later(1000,this,this._showLoadingImage);}},_hideLoadingImage:function(){if(this._loadingImageTimer){this._loadingImageTimer.cancel();this._loadingImageTimer=null;}if(this._loadingImage&&this._loadingImageVisible){this._loadingImageVisible=false;this._loadingImage.stop();this._loadingImageWrap.remove();}},_positionLoadingImage:function(){if(this._loadingImage&&this._loadingImageVisible){var F=this._loadingImageWrap,B=parseInt(F.getComputedStyle("height"),10),G=parseInt(F.getComputedStyle("width"),10),E=F.get("parentNode"),C=parseInt(E.getComputedStyle("height"),10),D=parseInt(E.getComputedStyle("width"),10),I=(D-G)/2,H=(C-B)/2;F.setStyles({left:I+"px",top:H+"px"});A.one(this._loadingImage.el).setStyles({left:"50%",top:"50%"});}},_colorToHex:function(C){var F,G,E,B,D;if(C.substr(0,1)==="#"){return C;}F=/(.*?)rgb\((\d+), (\d+), (\d+)\)/.exec(C);G=parseInt(F[2],10);E=parseInt(F[3],10);B=parseInt(F[4],10);D=B|(E<<8)|(G<<16);D=D.toString(16);if(D==="0"){D="000";}return F[1]+"#"+D;}},{CSS_PREFIX:"fl-slideshow-base",ATTRS:{color:{value:"dark",writeOnce:true},source:{value:[],setter:function(C){if(C.constructor==Object){C=[C];}for(var B=0;B<C.length;B++){C[B].index=B;}return C;}},defaultAlbum:{value:0},defaultImage:{value:0},loadOnRender:{value:true},autoPlay:{value:true},pauseOnNextOrPrev:{value:true},randomize:{value:false},speed:{value:4000},responsiveThreshold:{value:600},stretchy:{value:false},stretchyType:{value:"ratio"},stretchyVerticalSpace:{value:0},stretchyRatio:{value:0.7},loadingImageEnabled:{value:true},loadingImageSettings:{value:{}}}});},"2.0.0",{requires:["node","base","widget","widget-parent","widget-child","fl-slideshow-album-loader","fl-spinner"]});YUI.add("fl-smugmug-api",function(A){A.namespace("FL").SmugMugAPI=A.Base.create("fl-smugmug-api",A.Base,[],{_sessionID:null,_requestURL:null,initializer:function(){this._resetRequestURL();},addParam:function(B,C){this._requestURL=this._requestURL+"&"+B+"="+C;},loginAnon:function(){this.addParam("method","smugmug.login.anonymously");this.once("complete",this._loginAnonComplete);this.request();},_loginAnonComplete:function(B){if(B.Login){this._sessionID=B.Login.Session.id;}},request:function(){this.addParam("Callback","{callback}");A.jsonp(this._requestURL,{on:{success:this._requestComplete,timeout:function(){}},context:this,timeout:60000,args:[]});},_requestComplete:function(B){this._resetRequestURL();this.fire("complete",B);},_resetRequestURL:function(){this._requestURL=this.get("apiURL")+"?APIKey="+this.get("apiKey");if(this._sessionID){this.addParam("SessionID",this._sessionID);}}},{ATTRS:{apiURL:{value:"https://api.smugmug.com/services/api/json/1.3.0/"},apiKey:{value:"7w6kuU5Ee6KSgRRExf2KLgppdkez9JD2"}}});},"2.0.0",{requires:["base","jsonp"]});YUI.add("fl-spinner",function(A){(function(e,E,L){var B="width",Q="length",g="radius",Z="lines",S="trail",V="color",q="opacity",i="speed",a="shadow",k="style",D="height",F="left",G="top",H="px",T="childNodes",p="firstChild",I="parentNode",d="position",J="relative",b="absolute",u="animation",W="transform",N="Origin",f="Timeout",P="coord",m="#000",X=k+"Sheets",M="webkit0Moz0ms0O".split(0),t={},o;function s(w,y){var v=~~((w[Q]-1)/2);for(var x=1;x<=v;x++){y(w[x*2-1],w[x*2]);}}function n(v){var w=E.createElement(v||"div");s(arguments,function(y,x){w[y]=x;});return w;}function c(v,x,w){if(w&&!w[I]){c(v,w);}v.insertBefore(x,w||null);return v;}c(E.getElementsByTagName("head")[0],n(k));var O=E[X][E[X][Q]-1];function C(AA,v){var x=[q,v,~~(AA*100)].join("-"),w="{"+q+":"+AA+"}",y;if(!t[x]){for(y=0;y<M[Q];y++){try{O.insertRule("@"+(M[y]&&"-"+M[y].toLowerCase()+"-"||"")+"keyframes "+x+"{0%{"+q+":1}"+v+"%"+w+"to"+w+"}",O.cssRules[Q]);}catch(z){}}t[x]=1;}return x;}function R(y,z){var x=y[k],v,w;if(x[z]!==L){return z;}z=z.charAt(0).toUpperCase()+z.slice(1);for(w=0;w<M[Q];w++){v=M[w]+z;if(x[v]!==L){return v;}}}function h(v){s(arguments,function(x,w){v[k][R(v,x)||x]=w;});return v;}function Y(v){s(arguments,function(x,w){if(v[x]===L){v[x]=w;}});return v;}var U=function U(v){this.opts=Y(v||{},Z,12,S,100,Q,7,B,5,g,10,V,m,q,1/4,i,1);},K=U.prototype={spin:function(AB){var AD=this,w=AD.el=AD[Z](AD.opts);if(AB){c(AB,h(w,F,~~(AB.offsetWidth/2)+H,G,~~(AB.offsetHeight/2)+H),AB[p]);}if(!o){var v=AD.opts,y=0,z=20/v[i],AA=(1-v[q])/(z*v[S]/100),AC=z/v[Z];(function x(){y++;for(var AE=v[Z];AE;AE--){var AF=Math.max(1-(y+AE*AC)%z*AA,v[q]);AD[q](w,v[Z]-AE,AF,v);}AD[f]=AD.el&&e["set"+f](x,50);})();}return AD;},stop:function(){var v=this,w=v.el;e["clear"+f](v[f]);if(w&&w[I]){w[I].removeChild(w);}v.el=L;return v;}};K[Z]=function(AA){var y=h(n(),d,J),x=C(AA[q],AA[S]),w=0,v;function z(AB,AC){return h(n(),d,b,B,(AA[Q]+AA[B])+H,D,AA[B]+H,"background",AB,"boxShadow",AC,W+N,F,W,"rotate("+~~(360/AA[Z]*w)+"deg) translate("+AA[g]+H+",0)","borderRadius","100em");}for(;w<AA[Z];w++){v=h(n(),d,b,G,1+~(AA[B]/2)+H,W,"translate3d(0,0,0)",u,x+" "+1/AA[i]+"s linear infinite "+(1/AA[Z]/AA[i]*w-1/AA[i])+"s");if(AA[a]){c(v,h(z(m,"0 0 4px "+m),G,2+H));}c(y,c(v,z(AA[V],"0 0 1px rgba(0,0,0,.1)")));}return y;};K[q]=function(w,v,x){w[T][v][k][q]=x;};var r="behavior",l="url(#default#VML)",j="group0roundrect0fill0stroke".split(0);(function(){var w=h(n(j[0]),r,l),v;if(!R(w,W)&&w.adj){for(v=0;v<j[Q];v++){O.addRule(j[v],r+":"+l);}K[Z]=function(){var AE=this.opts,AC=AE[Q]+AE[B],AA=2*AC;function x(){return h(n(j[0],P+"size",AA+" "+AA,P+N,-AC+" "+-AC),B,AA,D,AA);}var AB=x(),AD=~(AE[Q]+AE[g]+AE[B])+H,z;function y(AG,AF,AH){c(AB,c(h(x(),"rotation",360/AE[Z]*AG+"deg",F,~~AF),c(h(n(j[1],"arcsize",1),B,AC,D,AE[B],F,AE[g],G,-AE[B]/2,"filter",AH),n(j[2],V,AE[V],q,AE[q]),n(j[3],q,0))));}if(AE[a]){for(z=1;z<=AE[Z];z++){y(z,-2,"progid:DXImage"+W+".Microsoft.Blur(pixel"+g+"=2,make"+a+"=1,"+a+q+"=.3)");}}for(z=1;z<=AE[Z];z++){y(z);}return c(h(n(),"margin",AD+" 0 0 "+AD,d,J),AB);};K[q]=function(y,x,AA,z){z=z[a]&&z[Z]||0;y[p][T][x+z][p][p][q]=AA;};}else{o=R(w,u);}})();A.namespace("FL").Spinner=U;})(window,document);},"2.0.0");YUI.add("fl-utils",function(A){A.namespace("FL").Utils={cssSupport:function(F){var B=document.body||document.documentElement,E=B.style,C=["Moz","Webkit","Khtml","O","ms","Icab"],D=0;if(F=="transform"&&A.UA.gecko&&A.UA.gecko<4){return false;}if(F=="transform"&&A.UA.opera>0){return false;}if(F=="transform"&&A.UA.ie>0&&A.UA.ie<10){return false;}if(typeof E=="undefined"){return false;}if(typeof E[F]=="string"){return true;}F=F.charAt(0).toUpperCase()+F.substr(1);for(;D<C.length;D++){if(typeof E[C[D]+F]=="string"){return true;}}}};},"2.0.0");
14
  this._updateCaption();}if(this._buttons.social){this._buttons.social.on("click",B._toggleSocial,B);}if(this._buttons.fullscreen&&B.fullscreen){this._buttons.fullscreen.on("click",B.fullscreen.toggle,B.fullscreen);}if(this._buttons.close){this._buttons.close.on("click",B.hide,B);}},destructor:function(){var B=this.get("root"),C=this.get("id");B.detach(C+"|*");},_renderContainers:function(){var B=this.get("contentBox"),C=this.get("buttonsLeft"),D=this.get("buttonsRight");this._buttonsContainer=A.Node.create("<div></div>");this._buttonsContainer.addClass("fl-slideshow-nav-buttons");B.appendChild(this._buttonsContainer);if(C.length>0){this._buttonsLeftContainer=A.Node.create("<div></div>");this._buttonsLeftContainer.addClass("fl-slideshow-nav-buttons-left");B.appendChild(this._buttonsLeftContainer);}if(D.length>0){this._buttonsRightContainer=A.Node.create("<div></div>");this._buttonsRightContainer.addClass("fl-slideshow-nav-buttons-right");B.appendChild(this._buttonsRightContainer);}},_renderButtons:function(){var D="",E=0,C=0,B=[{names:this.get("buttons"),container:this._buttonsContainer},{names:this.get("buttonsLeft"),container:this._buttonsLeftContainer},{names:this.get("buttonsRight"),container:this._buttonsRightContainer}];this._buttons={};for(;E<B.length;E++){for(C=0;C<B[E].names.length;C++){D=B[E].names[C];if(D.indexOf("count")>-1){this._buttons[D]=A.Node.create("<span></span>");this._updateCount();}else{this._buttons[D]=A.Node.create('<a href="javascript:void(0);"></a>');}if(D.indexOf("buy")>-1){this._buttons[D].setStyle("display","none");}this._buttons[D].set("name",D);this._buttons[D].addClass("fl-slideshow-nav-"+D);B[E].container.appendChild(this._buttons[D]);}}},_renderFontIcons:function(){var B=null;if(this.get("useFontIcons")&&typeof YUI.Env.mods["sm-fonticon"]!=="undefined"){for(B in this._buttons){if(typeof this._buttons[B]!=="undefined"&&typeof this._fontIcons[B]!=="undefined"){this._buttons[B].addClass("sm-fonticon-"+this._fontIcons[B]);this._buttons[B].addClass("sm-fonticon sm-button-skin-default sm-button-nochrome");}else{if(B.indexOf("count")>-1){this._buttons[B].addClass("fonticons-enabled");}}}}},_updateCount:function(){var C="",B=A.FL.SlideshowNav.COUNT_TEXT,E=1,D=1;if(this.get("root").albumInfo){E=this.get("root").imageInfo.index+1;D=this.get("root").albumInfo.images.length;}C=B.replace("{current}",E).replace("{total}",D);this._buttons.count.set("innerHTML",C);},_updateCaption:function(){var C=this.get("root"),B=C.imageInfo;if(B&&B.caption===""){C.caption.slideshowOverlay.enable();C.caption.slideshowOverlay.hide();this._buttons.caption.detach("click");this._buttons.caption.addClass("fl-slideshow-nav-caption-disabled");}else{this._buttons.caption.on("click",C._toggleCaption,C);this._buttons.caption.removeClass("fl-slideshow-nav-caption-disabled");}},_updateBuy:function(){var F=null,C=this.get("root"),B=C.get("source")[C.albumIndex],D=C.albumIndex,E=C.get("source")[D];if(B&&B.type=="smugmug"){if(typeof C.albumInfo.printable!=="undefined"){this._updateBuyComplete();}else{F=new A.FL.SmugMugAPI();F.addParam("method","smugmug.albums.getInfo");F.addParam("AlbumID",E.id);F.addParam("AlbumKey",E.key);F.on("complete",this._updateBuyComplete,this);F.request();}}},_updateBuyComplete:function(D){var B=this.get("root"),E=typeof D=="undefined"?B.albumInfo.printable:D.Album.Printable,C=B.albumInfo.link;if(E){B.albumInfo.printable=true;this._buttons.buy.set("href","https://secure.smugmug.com/cart/batchadd/?url="+encodeURIComponent(C));this._buttons.buy.setStyle("display","inline-block");}else{B.albumInfo.printable=false;this._buttons.buy.setStyle("display","none");}this.fire("resize");},_playClicked:function(){var B=this.get("root");if(B._playing){B.pause();}else{B.play();}},_showPlayButton:function(){this._buttons.play.removeClass("fl-slideshow-nav-pause");this._buttons.play.addClass("fl-slideshow-nav-play");if(this.get("useFontIcons")&&typeof YUI.Env.mods["sm-fonticon"]!=="undefined"){this._buttons.play.removeClass("sm-fonticon-PlayerPause");this._buttons.play.addClass("sm-fonticon-PlayerPlay");}},_showPauseButton:function(){this._buttons.play.removeClass("fl-slideshow-nav-play");this._buttons.play.addClass("fl-slideshow-nav-pause");if(this.get("useFontIcons")&&typeof YUI.Env.mods["sm-fonticon"]!=="undefined"){this._buttons.play.removeClass("sm-fonticon-PlayerPlay");this._buttons.play.addClass("sm-fonticon-PlayerPause");}}},{CSS_PREFIX:"fl-slideshow-nav",COUNT_TEXT:"{current} of {total}",ATTRS:{buttons:{value:[],writeOnce:true},buttonsLeft:{value:[],writeOnce:true},buttonsRight:{value:[],writeOnce:true},useFontIcons:{value:true,writeOnce:true}}});A.namespace("FL").SlideshowOverlay=A.Base.create("fl-slideshow-overlay",A.Plugin.Base,[],{_focus:false,_visible:true,_disabled:false,_showProps:{duration:0.5,easing:"ease-out",opacity:1},_hideProps:{duration:0.5,easing:"ease-out",opacity:0},_hideTimer:null,initializer:function(){var B=this.get("host").get("boundingBox");this.afterHostEvent("render",this._initFocus);this.afterHostEvent("render",this._initVisibility);if(this.get("closeButton")){this._initCloseButton();}B.addClass("fl-slideshow-overlay");},destructor:function(){this._hideTimerCancel();},_initFocus:function(){var B=this.get("host").get("boundingBox");B.on("mouseenter",A.bind(this._setFocusOnMouseenter,this));B.on("mouseleave",A.bind(this._setFocusOnMouseleave,this));},_initVisibility:function(){var C=this.get("host").get("boundingBox"),B=this.get("hideStyle");if(!this.get("visible")){if(B=="display"){C.setStyle("display","none");}else{if(B=="left"){C.setStyle("left","-99999px");}}C.setStyle("opacity","0");this._visible=false;}},_initCloseButton:function(){var C=this.get("host").get("boundingBox"),B=null;B=A.Node.create('<a class="fl-slideshow-overlay-close" href="javascript:void(0);"></a>');B.on("click",A.bind(this._closeButtonClick,this));if(typeof YUI.Env.mods["sm-fonticon"]!=="undefined"){B.addClass("sm-fonticon sm-fonticon-XCrossEncircled sm-button-skin-default sm-button-nochrome");
15
  }C.insert(B);},_closeButtonClick:function(){var B=this.get("host").get("boundingBox");B.transition(this._hideProps,A.bind(this._hideComplete,this));},_setFocusOnMouseenter:function(){this._focus=true;},_setFocusOnMouseleave:function(){this._focus=false;},disable:function(){this._disabled=true;},enable:function(){this._disabled=false;},show:function(){var C=this.get("host").get("boundingBox"),B=this.get("hideStyle");if(this._disabled){return;}if(B=="display"){C.setStyle("display","block");}else{if(B=="left"){C.setStyle("left","auto");}}C.transition(this._showProps,A.bind(this._showComplete,this));this.fire("showStart");},_showComplete:function(){this._visible=true;this.hideWithTimer();this.fire("showComplete");},hide:function(){if(this._focus||this._disabled){return;}var B=this.get("host").get("boundingBox");B.transition(this._hideProps,A.bind(this._hideComplete,this));this.fire("hideStart");},hideWithTimer:function(){this._hideTimerCancel();this._hideTimer=A.later(this.get("hideDelay"),this,this.hide);},_hideTimerCancel:function(){if(this._hideTimer){this._hideTimer.cancel();this._hideTimer=null;}},_hideComplete:function(){var C=this.get("host").get("boundingBox"),B=this.get("hideStyle");if(B=="display"){C.setStyle("display","none");}else{if(B=="left"){C.setStyle("left","-99999px");}}this._visible=false;this.fire("hideComplete");}},{NS:"slideshowOverlay",ATTRS:{closeButton:{value:false,writeOnce:true},hideDelay:{value:3000,writeOnce:true},hideStyle:{value:"display",writeOnce:true},visible:{value:true,writeOnce:true}}});A.namespace("FL").SlideshowSocial=A.Base.create("fl-slideshow-social",A.Widget,[A.WidgetChild],{_buttons:null,renderUI:function(){this._buttons={};if(this.get("root").get("googlePlusButtonEnabled")){this._renderGooglePlusButton();}},bindUI:function(){var B=this.get("root");if(B.get("likeButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateLikeButton,this));}if(B.get("tweetButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateTweetButton,this));}if(B.get("googlePlusButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updateGooglePlusButton,this));}if(B.get("pinterestButtonEnabled")){B.on("imageLoadComplete",A.bind(this._updatePinterestButton,this));}},_updateLikeButton:function(){var G=null,C=this.get("contentBox"),E=this.get("root"),F=E.albumIndex,D=E.get("source")[F],B=E.imageInfo;if(this._buttons.like){this._buttons.like.remove();this._buttons.like=null;}if(D.type=="smugmug"){G="http://www.facebook.com/plugins/like.php?";G+="href="+"http://www.smugmug.com/services/graph/gallery/";G+=D.id+"_"+D.key+"/"+B.id+"_"+B.key;}else{G="http://www.facebook.com/plugins/like.php?";G+="href="+encodeURIComponent(B.largeURL);}G+="&send=false";G+="&layout=button_count";G+="&width=90";G+="&show_faces=false";G+="&action=like";G+="&colorscheme=light";G+="&height=21";this._buttons.like=A.Node.create('<iframe src="'+G+'" scrolling="no" frameborder="0" allowTransparency="true"></iframe>');this._buttons.like.setStyles({overflow:"hidden",width:"90px",height:"21px"});C.appendChild(this._buttons.like);},_updateTweetButton:function(){var D=null,C=this.get("root").imageInfo,B=this.get("contentBox");if(this._buttons.tweet){this._buttons.tweet.remove();this._buttons.tweet=null;}D="https://platform.twitter.com/widgets/tweet_button.html?";D+="url="+encodeURIComponent(C.largeURL);D+="&count=none";this._buttons.tweet=A.Node.create('<iframe src="'+D+'" scrolling="no" frameborder="0" allowTransparency="true"></iframe>');this._buttons.tweet.setStyles({overflow:"hidden",width:"90px",height:"21px"});B.appendChild(this._buttons.tweet);},_renderGooglePlusButton:function(){var B,C;B=document.createElement("script");B.type="text/javascript";B.src="https://apis.google.com/js/plusone.js";C=document.getElementsByTagName("head")[0];C.parentNode.appendChild(B);},_updateGooglePlusButton:function(){var C=this.get("root").imageInfo,B=this.get("contentBox"),D=typeof D=="undefined"?null:D;if(this._buttons.plus){this._buttons.plus.remove();this._buttons.plus=null;}if(D!==null){this._buttons.plus=A.Node.create("<div></div>");B.appendChild(this._buttons.plus);D.plusone.render(this._buttons.plus._node,{href:encodeURIComponent(C.largeURL),annotation:"bubble",size:"medium"});}},_updatePinterestButton:function(){var D="http://pinterest.com/pin/create/button/",C=this.get("root").imageInfo,B=this.get("contentBox");if(this._buttons.pin){this._buttons.pin.remove();this._buttons.pin=null;}D+="?url="+encodeURIComponent(window.location.href);D+="&media="+encodeURIComponent(C.mediumURL);D+="&description="+encodeURIComponent(C.caption);this._buttons.pin=A.Node.create("<a></a>");this._buttons.pin.setAttribute("data-pin-config","none");this._buttons.pin.setAttribute("data-pin-do","buttonPin");this._buttons.pin.setAttribute("href",D);this._buttons.pin.setAttribute("target","_blank");this._buttons.pin.set("innerHTML",'<img src="http://assets.pinterest.com/images/pidgets/pin_it_button.png" border="0" />');B.appendChild(this._buttons.pin);}},{CSS_PREFIX:"fl-slideshow-social",ATTRS:{}});A.namespace("FL").SlideshowThumbs=A.Base.create("fl-slideshow-thumbs",A.Widget,[A.WidgetParent,A.WidgetChild],{_clipBox:null,_pagesBox:null,_activePageBox:null,_activePageIndex:0,_nextPageBox:null,_activeImages:null,_nextImages:null,_prevImages:null,_leftNav:null,_rightNav:null,_topNav:null,_bottomNav:null,_bbHeight:0,_bbWidth:0,_cbWidth:0,_clipBoxMarginLeft:0,_clipBoxTop:0,_colsPerPage:0,_rowsPerPage:0,_imagesPerPage:0,_numPages:0,_pageHeight:0,_pageWidth:0,_horizontalSpacing:0,_verticalSpacing:0,_leftNavWidth:0,_rightNavWidth:0,_transition:null,_transitioning:false,_transitionDirection:"next",_gestures:null,initializer:function(){this._activeImages=[];this._nextImages=[];this._prevImages=[];},renderUI:function(){this._renderBoxes();this._renderNavs();},bindUI:function(){var B=this.get("root"),D=this.get("id"),C=this.get("transition");B.on(D+"|albumLoadComplete",this._albumLoadComplete,this);if("ontouchstart" in window&&this.get("touchSupport")){this._gestures=new A.FL.SlideshowGestures({direction:C=="slideVertical"?"vertical":"horizontal",activeItem:this._activePageBox,nextItem:this._nextPageBox});
16
  this._gestures.on("moveStart",this._gesturesMoveStart,this);this._gestures.on("endComplete",this._gesturesEndComplete,this);}},syncUI:function(){this._syncBoxes();this._syncNavs();},destructor:function(){var B=this.get("root"),C=this.get("id");B.detach(C+"|*");A.FL.SlideshowImageLoader.removeGroup("thumbs");},unload:function(){var B=this.get("root"),D=this.get("id"),C=0;B.detach(D+"|imageLoadComplete");A.FL.SlideshowImageLoader.removeGroup("thumbs");for(;C<this._activeImages.length;C++){this._activeImages[C].unload();}},resize:function(){this._setSizeInfo();this._togglePageButtons();this._resizeBoxes();this._resizeNavs();if(this.get("root").albumInfo){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._renderActivePage();this._preloadNextPage();this._preloadPrevPage();}if(this._gestures&&this._numPages<2){this._gestures.disable();}else{if(this._gestures){this._gestures.enable();}}},prevPage:function(){if(this._transitioning){return;}this._transitionStart("prev");},nextPage:function(){if(this._transitioning){return;}this._transitionStart("next");},_albumLoadComplete:function(){var B=this.get("root"),C=this.get("id");B.once(C+"|imageLoadComplete",this.resize,this);B.on(C+"|imageLoadComplete",this._imageLoadComplete,this);},_imageLoadComplete:function(){var B=this.get("root").albumInfo,E=A.one(".fl-slideshow-image-active"),F=E?E._imageInfo:null,D=null,C=this.get("root").imageInfo;this._setActiveImage(this._activeImages);D=A.one(".fl-slideshow-image-active");if(E&&!D){if(C.index===0&&F.index===B.images.length-1){this.nextPage();}else{if(F.index===0&&C.index===B.images.length-1){this.prevPage();}else{if(F.index<C.index){this.nextPage();}else{if(F.index>C.index){this.prevPage();}}}}}},_renderBoxes:function(){this._clipBox=A.Node.create("<div></div>");this._clipBox.addClass("fl-slideshow-thumbs-clip");this.get("contentBox").insert(this._clipBox);this._pagesBox=A.Node.create("<div></div>");this._pagesBox.addClass("fl-slideshow-thumbs-pages");this._clipBox.insert(this._pagesBox);this._activePageBox=A.Node.create("<div></div>");this._activePageBox.addClass("fl-slideshow-thumbs-page");this._pagesBox.insert(this._activePageBox);this._nextPageBox=A.Node.create("<div></div>");this._nextPageBox.addClass("fl-slideshow-thumbs-page");this._pagesBox.insert(this._nextPageBox);},_syncBoxes:function(){this._activePageBox.setStyle("left","0");this._nextPageBox.setStyle("left","-9999px");},_resizeBoxes:function(){this.set("width",this._bbWidth);this.set("height",this._bbHeight);this.get("contentBox").setStyle("width",this._cbWidth+"px");this._clipBox.setStyle("width",this._pageWidth+"px");this._clipBox.setStyle("height",this._pageHeight+"px");this._clipBox.setStyle("padding",this._verticalSpacing+"px 0 0 "+this._horizontalSpacing+"px ");this._clipBox.setStyle("margin","0 0 0 "+this._clipBoxMarginLeft+"px");this._clipBox.setStyle("top",this._clipBoxTop);this._pagesBox.setStyle("width",this._pageWidth+"px");this._pagesBox.setStyle("height",this._pageHeight+"px");this._activePageBox.setStyle("width",this._pageWidth+"px");this._activePageBox.setStyle("height",this._pageHeight+"px");this._nextPageBox.setStyle("width",this._pageWidth+"px");this._nextPageBox.setStyle("height",this._pageHeight+"px");},_renderActivePage:function(){var E=0,D=this.get("root"),C=this._imagesPerPage*this._activePageIndex,F=C+this._imagesPerPage,B=D.albumInfo.images;this._clearActiveImage();for(;E<this._activeImages.length;E++){this._activeImages[E].remove();this._activeImages[E].unload();this._activeImages[E].get("boundingBox")._imageInfo=null;this._activeImages[E].get("boundingBox").remove();}for(E=0;C<F;C++){if(!B[C]){break;}this._renderImage(this._activeImages,E,this._activePageBox,B[C]);E++;}this._setActiveImage(this._activeImages);},_renderNextPage:function(){var B=0,C=this._transitionDirection=="next"?this._nextImages:this._prevImages;this._nextPageBox.get("children").remove();for(;B<C.length;B++){if(C[B]._imageInfo){this._renderImage(C,B,this._nextPageBox,C[B]._imageInfo);}else{break;}}this._setActiveImage(C);},_preloadNextPage:function(){var B=this._activePageIndex+1>=this._numPages?0:this._activePageIndex+1;this._preloadPage(B,this._nextImages);},_preloadPrevPage:function(){var B=this._activePageIndex-1<0?this._numPages-1:this._activePageIndex-1;this._preloadPage(B,this._prevImages);},_preloadPage:function(E,D){var F=0,I=this.get("root"),H=I.albumInfo.images,C=E*this._imagesPerPage,G=C+this._imagesPerPage,J=this.get("imageConfig"),B=J.width,K=J.height;if(this._numPages>1){for(;F<D.length;F++){D[F].remove();D[F].unload();}for(F=0;C<G;C++){if(!H[C]){continue;}this._renderImage(D,F);D[F].preload(H[C],B,K);F++;}}},_renderImage:function(G,E,F,B){var C=null,D=this.get("imageConfig");if(typeof G[E]=="undefined"){D.loadGroup="thumbs";D.useThumbSizes=true;D.loadVideos=false;G[E]=new A.FL.SlideshowImage(D);C=G[E].get("boundingBox");C.on("click",this._imageClick,this);C.on("mouseover",this._imageMouseover,this);C.on("mouseout",this._imageMouseout,this);}C=G[E].get("boundingBox");C.setStyle("margin","0 "+this._horizontalSpacing+"px "+this._verticalSpacing+"px 0");if(F){this._childrenContainer=F;this.add(G[E]);G[E].resize(D.width,D.height);}if(B){G[E].load(B);C._imageInfo=B;}},_uiAddChild:function(C,B){C.render(B);B.appendChild(C.get("boundingBox"));},_imageClick:function(C){var B=this.get("root");if(this.get("pauseOnClick")){B.pause();}B.loadImage(C.currentTarget._imageInfo.index);this.fire("imageClick");},_setActiveImage:function(C){var B=0;this._clearActiveImage();for(;B<C.length;B++){if(C[B]._imageInfo){if(C[B]._imageInfo.index==this.get("root").imageInfo.index){C[B].get("boundingBox").addClass("fl-slideshow-image-active");break;}}}},_clearActiveImage:function(){var B=A.one(".fl-slideshow-image-active");if(B){B.removeClass("fl-slideshow-image-active");}},_getTransition:function(){var B=this.get("transition");if(B=="slideHorizontal"&&this._transitionDirection=="next"){return"slideLeft";}else{if(B=="slideHorizontal"&&this._transitionDirection=="prev"){return"slideRight";
17
+ }else{if(B=="slideVertical"&&this._transitionDirection=="next"){return"slideUp";}else{if(B=="slideVertical"&&this._transitionDirection=="prev"){return"slideDown";}}}}return B;},_transitionStart:function(B){if(this._numPages>1){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._transitionDirection=B;this._transitioning=true;this._nextPageBox.setStyle("left","0px");this._renderNextPage();this._transition=new A.FL.SlideshowTransition({itemIn:this._nextPageBox,itemOut:this._activePageBox,type:this._getTransition(),duration:this.get("transitionDuration"),easing:this.get("transitionEasing")});this._transition.once("complete",this._transitionComplete,this);this._transition.run();if(this._gestures){this._gestures.disable();}}},_transitionComplete:function(){this._swapPageRefs();this._transitioning=false;this._transitionDirection="";this._transition=null;if(this._gestures){this._gestures.enable();}this.fire("transitionComplete");},_gesturesMoveStart:function(B){A.FL.SlideshowImageLoader.removeGroup("thumbs");this._transitionDirection=B.direction;this._renderNextPage();},_gesturesEndComplete:function(){this._swapPageRefs();this._transitionDirection="";this.fire("transitionComplete");},_swapPageRefs:function(){var B=this._activePageBox,C=this._activeImages;this._activePageBox=this._nextPageBox;this._nextPageBox=B;this._nextPageBox.setStyle("left","-9999px");if(this._transitionDirection=="next"){this._activeImages=this._nextImages;this._nextImages=C;}else{this._activeImages=this._prevImages;this._prevImages=C;}if(this._transitionDirection=="next"&&this._activePageIndex+1<this._numPages){this._activePageIndex++;}else{if(this._transitionDirection=="next"){this._activePageIndex=0;}else{if(this._transitionDirection=="prev"&&this._activePageIndex-1>-1){this._activePageIndex--;}else{if(this._transitionDirection=="prev"){this._activePageIndex=this._numPages-1;}}}}if(this._gestures){this._gestures.set("activeItem",this._activePageBox);this._gestures.set("nextItem",this._nextPageBox);}this._preloadNextPage();this._preloadPrevPage();},_renderNavs:function(){var D=this.get("topNavButtons"),C=this.get("rightNavButtons"),B=this.get("bottomNavButtons"),E=this.get("leftNavButtons");if(this.get("topNavEnabled")&&D.length>0){this._topNav=new A.FL.SlideshowNav({buttons:D});this._topNav.get("boundingBox").addClass("fl-slideshow-thumbs-top-nav");this.add(this._topNav);this._topNav.render(this.get("contentBox"));this._clipBox.insert(this._topNav.get("boundingBox"),"before");this._bindNavEvents(this._topNav);}if(this.get("rightNavEnabled")&&C.length>0){this._rightNav=new A.FL.SlideshowNav({buttons:C});this._rightNav.get("boundingBox").addClass("fl-slideshow-thumbs-right-nav");this.add(this._rightNav);this._rightNav.render(this.get("contentBox"));this._bindNavEvents(this._rightNav);}if(this.get("bottomNavEnabled")&&B.length>0){this._bottomNav=new A.FL.SlideshowNav({buttons:B});this._bottomNav.get("boundingBox").addClass("fl-slideshow-thumbs-bottom-nav");this.add(this._bottomNav);this._bottomNav.render(this.get("contentBox"));this._bindNavEvents(this._bottomNav);}if(this.get("leftNavEnabled")&&E.length>0){this._leftNav=new A.FL.SlideshowNav({buttons:E});this._leftNav.get("boundingBox").addClass("fl-slideshow-thumbs-left-nav");this.add(this._leftNav);this._leftNav.render(this.get("contentBox"));this._bindNavEvents(this._leftNav);}},_syncNavs:function(){var D,B,C;if(this._rightNav){D=this._rightNav.get("boundingBox");D.setStyle("position","absolute");D.setStyle("top","0px");D.setStyle("right","0px");}if(this._bottomNav){B=this._bottomNav.get("boundingBox");B.setStyle("position","absolute");B.setStyle("bottom","0px");B.setStyle("width","100%");}if(this._leftNav){C=this._leftNav.get("boundingBox");C.setStyle("position","absolute");C.setStyle("top","0px");C.setStyle("left","0px");}},_resizeNavs:function(){var D,C,B;if(this._rightNav){D=this._rightNav.get("boundingBox");B=this._bbHeight/2-parseInt(D.getComputedStyle("height"),10)/2;D.setStyle("marginTop",B+"px");}if(this._leftNav){C=this._leftNav.get("boundingBox");B=this._bbHeight/2-parseInt(C.getComputedStyle("height"),10)/2;C.setStyle("marginTop",B+"px");}},_bindNavEvents:function(B){if(B._buttons.prevPage){B._buttons.prevPage.on("click",this.prevPage,this);}if(B._buttons.nextPage){B._buttons.nextPage.on("click",this.nextPage,this);}B.on("resize",this.resize,this);},_togglePageButtons:function(){var B=this.get("boundingBox").all(".fl-slideshow-nav-prevPage, .fl-slideshow-nav-nextPage"),C=B.getStyle("display")[0];if(this._numPages==1&&C=="inline-block"){B.setStyle("display","none");this._setSizeInfo();}else{if(this._numPages>1&&C=="none"){B.setStyle("display","inline-block");this._setSizeInfo();}}},_setSizeInfo:function(){var V=this.get("root"),k=this.get("boundingBox"),L=k.getStyle("position"),J=parseInt(k.getStyle("marginLeft"),10),B=parseInt(k.getStyle("marginRight"),10),X=parseInt(k.getStyle("marginTop"),10),I=parseInt(k.getStyle("marginBottom"),10),m=parseInt(k.getStyle("paddingLeft"),10),c=parseInt(k.getStyle("paddingRight"),10),i=parseInt(k.getStyle("paddingTop"),10),f=parseInt(k.getStyle("paddingBottom"),10),F=k.get("parentNode"),Q=parseInt(F.getComputedStyle("width"),10),d=parseInt(F.getComputedStyle("height"),10),Y=Q-m-c-J-B,T=d-i-f-X-I,Z=Y,R=Y,P=T,G=this.get("columns"),h=this.get("rows"),K=this.get("imageConfig"),C=this.get("horizontalSpacing"),O=this.get("verticalSpacing"),H=this.get("spaceEvenly"),W=this.get("centerSinglePage"),j=0,U=0,e=0,S=0,M=G,a=h,D=0,l=1,b=0,g=0,E=0,N=0;k.setStyle("position","relative");if(!isNaN(G)){Y=R=G*(K.width+C)+C;}if(!isNaN(h)){T=P=h*(K.height+O)+O;}if(this._leftNav){j=parseInt(this._leftNav.get("boundingBox").getComputedStyle("width"),10);if(isNaN(G)){R-=j;}else{Y+=j;}}if(this._rightNav){U=parseInt(this._rightNav.get("boundingBox").getComputedStyle("width"),10);if(isNaN(G)){R-=U;}else{Y+=U;}}if(this._topNav){e=parseInt(this._topNav.get("boundingBox").getComputedStyle("height"),10);if(isNaN(h)){P-=e;}else{T+=e;}}if(this._bottomNav){S=parseInt(this._bottomNav.get("boundingBox").getComputedStyle("height"),10);
18
  if(isNaN(h)){P-=S;}else{T+=S;}}if(isNaN(G)){M=Math.floor(R/(K.width+C));M=M<1?1:M;}if(isNaN(h)){a=Math.floor(P/(K.height+O));a=a<1?1:a;}D=M*a;if(V.albumInfo){l=Math.ceil(V.albumInfo.images.length/D);}if(isNaN(G)&&H){C=Math.floor((R-(K.width*M))/(M+1));}if(isNaN(h)&&H){O=Math.floor((P-(K.height*a))/(a+1));}if(V.albumInfo&&W&&l==1&&a==1){Z=V.albumInfo.images.length*K.width;Z+=C*(V.albumInfo.images.length+1);if(this._leftNav){Z+=j;}if(this._rightNav){Z+=U;}}else{Z=Y;}if(V.albumInfo&&W&&l==1&&a==1){R=V.albumInfo.images.length*K.width;R+=C*V.albumInfo.images.length;}else{R=M*(K.width+C);}P=a*(K.height+O);if(l<2){b=j;}else{E=Y;if(this._rightNav){E-=U;}if(this._leftNav){E-=j;b=j+(E-R-C)/2;}else{b=(E-R-C)/2;}}if(l>1&&!H){N=T;if(this._topNav){N-=e;}if(this._bottomNav){N-=S;}g=(N-(O+P))/2;}this._bbHeight=T;this._bbWidth=Y;this._cbWidth=Z;this._clipBoxMarginLeft=b;this._clipBoxTop=g;this._colsPerPage=M;this._rowsPerPage=a;this._imagesPerPage=D;this._numPages=l;this._pageHeight=P;this._pageWidth=R;this._leftNavWidth=j;this._rightNavWidth=U;this._horizontalSpacing=C;this._verticalSpacing=O;this._activePageIndex=Math.floor(V.imageIndex/this._imagesPerPage);k.setStyle("position",L);}},{CSS_PREFIX:"fl-slideshow-thumbs",ATTRS:{columns:{value:"auto"},rows:{value:"auto"},horizontalSpacing:{value:15},verticalSpacing:{value:15},spaceEvenly:{value:true},centerSinglePage:{value:true},pauseOnClick:{value:false},transition:{value:"slideHorizontal"},transitionDuration:{value:0.8},transitionEasing:{value:"ease-out"},imageConfig:{value:{crop:true,width:50,height:50}},topNavEnabled:{value:false},topNavButtons:{value:["prevPage","nextPage"]},rightNavEnabled:{value:true},rightNavButtons:{value:["nextPage"]},bottomNavEnabled:{value:false},bottomNavButtons:{value:["prevPage","nextPage"]},leftNavEnabled:{value:true},leftNavButtons:{value:["prevPage"]},touchSupport:{value:false}}});A.namespace("FL").SlideshowTransition=A.Base.create("fl-slideshow-transition",A.Base,[],{_transitionFunction:"_transitionFade",_type:"fade",initializer:function(){var D=this.get("type"),I=[],C=A.FL.SlideshowTransition.TYPES,E=A.FL.SlideshowTransition.SLIDESHOW_IMAGE_TYPES,H=A.Array.indexOf(E,D)>-1,B=this._isSlideshowImage(),G=this.get("itemIn"),F=this.get("itemOut");if(D.indexOf(",")>-1){I=D.split(",");I.sort(function(){return 0.5-Math.random();});D=I[0];}if(!B&&H){D="fade";}else{if(B){if((G&&G.one("img")===null)||(F&&F.one("img")===null)){D="none";}else{if(H){if((A.UA.gecko&&A.UA.gecko<5)||A.UA.opera>0||(A.UA.ie>0&&A.UA.ie<9)){D="fade";}}}}}if(A.FL.SlideshowTransition.TYPES[D]){this._transitionFunction=C[D];this._type=D;}this._setupItems();},run:function(){this.fire("start");this[this._transitionFunction].call(this);},_setupItems:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C){C.setStyle("zIndex",2);C.setStyle("opacity",1);if(A.FL.Utils.cssSupport("transform")){C.setStyle("transform","translate(0, 0)");}else{C.setStyle("top","0");C.setStyle("left","0");}}if(B){B.setStyle("zIndex",1);}},_isSlideshowImage:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C&&C.hasClass("fl-slideshow-image")){return true;}else{if(B&&B.hasClass("fl-slideshow-image")){return true;}}return false;},_transitionStart:function(I,B){var H=this.get("itemIn"),F=this.get("itemOut"),E=A.bind(this._transitionComplete,this),D=!H?E:null,C=this.get("duration"),G=this.get("easing");if(H){I.duration=I.duration||C;I.easing=I.easing||G;H.transition(I);}if(F){B.duration=B.duration||C;B.easing=B.easing||G;F.transition(B);}if(E){A.later(I.duration*1000+100,null,E);}else{if(D){A.later(B.duration*1000+100,null,D);}}},_transitionComplete:function(){this._set("itemIn",null);this._set("itemOut",null);this.fire("complete");},_transitionNone:function(){var C=this.get("itemIn"),B=this.get("itemOut");if(C){C.setStyle("opacity",1);}if(B){B.setStyle("opacity",0);}this._transitionComplete();},_transitionFade:function(){var B=this.get("itemIn");if(B){B.setStyle("opacity",0);}this._transitionStart({opacity:1},{opacity:0});},_transitionSlideLeft:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(100%, 0)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(-100%, 0)"});}else{this._jsTransitionSlide("left");}},_transitionSlideRight:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(-100%, 0)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(100%, 0)"});}else{this._jsTransitionSlide("right");}},_transitionSlideUp:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(0, 100%)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(0, -100%)"});}else{this._jsTransitionSlide("up");}},_transitionSlideDown:function(){if(A.FL.Utils.cssSupport("transform")){this._cssTransitionSlide({inStart:"translate(0, -100%)",inEnd:"translate(0, 0)",outStart:"translate(0, 0)",outEnd:"translate(0, 100%)"});}else{this._jsTransitionSlide("down");}},_jsTransitionSlide:function(B){var E=this.get("itemIn"),C=this.get("itemOut"),D=0;if(C&&B=="left"){D=-parseInt(C.getStyle("width"),10);}if(C&&B=="right"){D=parseInt(C.getStyle("width"),10);}if(C&&B=="up"){D=-parseInt(C.getStyle("height"),10);}if(C&&B=="down"){D=parseInt(C.getStyle("height"),10);}if(E){E.setStyle("opacity",1);}if(E&&B=="left"){E.setStyle("left",E.getStyle("width"));}if(E&&B=="right"){E.setStyle("left","-"+E.getStyle("width"));}if(E&&B=="up"){E.setStyle("top",E.getStyle("height"));}if(E&&B=="down"){E.setStyle("top","-"+E.getStyle("height"));}if(B=="left"||B=="right"){this._transitionStart({left:0},{left:D});}else{this._transitionStart({top:0},{top:D});}},_cssTransitionSlide:function(E){var G=this.get("itemIn"),F=this.get("itemOut"),C=A.UA.chrome<36?"transform":"-webkit-transform",D={},B={};D[C]=E.inEnd;B[C]=E.outEnd;if(G){G.setStyle("transition","");G.setStyle("opacity",1);G.setStyle(C,E.inStart);}if(F){F.setStyle("transition","");F.setStyle(C,E.outStart);}this._transitionStart(D,B);
19
  },_transitionBars:function(){this.get("itemIn").one(".fl-slideshow-image-img").setStyle("opacity",0);var D=this.get("bars"),I=this._renderSlices(1,D),B=this.get("duration"),E=0,H=100,J=false,C=0,G=null,F={duration:B,opacity:1};if(this._type=="barsRandom"){I=this._randomizeSlices(I);}for(;C<I.length;C++){G=A.clone(F);if(this._type=="blinds"){G.width=parseFloat(I[C].getComputedStyle("width"),10)+"px";I[C].setStyle("width","0px");H=50;}J=C==I.length-1?true:false;A.later(E,this,this._transitionSlice,[I[C],G,J]);E+=H;}this._transitionSlicesFadeLast(E);},_transitionBoxes:function(){this.get("itemIn").one(".fl-slideshow-image-img").setStyle("opacity",0);var D=this.get("boxCols"),H=this.get("boxRows"),L=D*H,I=this._type!="boxesRandom",O=this._renderSlices(H,D,I),E=this.get("duration"),G=0,M=150,N=false,F=0,P=0,C=0,B=-1,K=null,J={duration:E,opacity:1};if(!I){O=this._randomizeSlices(O);M=30;for(;F<O.length;F++){K=A.clone(J);N=F==O.length-1?true:false;A.later(G,this,this._transitionSlice,[O[F],K,N]);G+=M;}}else{while(F<L){for(P=0;P<H;P++){if(P===0){B++;C=B;}if(C>-1&&C<D){F++;K=A.clone(J);if(this._type=="boxesGrow"){K.height=parseFloat(O[P][C].getComputedStyle("height"),10)+"px";K.width=parseFloat(O[P][C].getComputedStyle("width"),10)+"px";O[P][C].setStyle("height","0px");O[P][C].setStyle("width","0px");M=50;}N=F==L-1?true:false;A.later(G,this,this._transitionSlice,[O[P][C],K,N]);}C--;}G+=M;}}this._transitionSlicesFadeLast(G);},_renderSlices:function(F,H,P){var L=this.get("itemIn"),R=parseFloat(L.getComputedStyle("height"),10),G=parseFloat(L.getComputedStyle("width"),10),T=L.one("img"),B=T.get("src"),S=parseFloat(T.getComputedStyle("height"),10),O=parseFloat(T.getComputedStyle("width"),10),D=parseFloat(T.getComputedStyle("left"),10),N=parseFloat(T.getComputedStyle("top"),10),J=0,M=0,E=Math.round(R/F),K=Math.round(G/H),Q=null,I=null,C=[];for(;M<F;M++){if(typeof P!=="undefined"&&P){C[M]=[];}for(J=0;J<H;J++){Q=A.Node.create('<div class="fl-slideshow-transition-slice"></div>');I=A.Node.create('<img src="'+B+'" />');Q.setStyles({left:(K*J)+"px",top:(E*M)+"px",width:J==H-1?(G-(K*J))+"px":K+"px",height:M==F-1?(R-(E*M))+"px":E+"px",opacity:0});I.setStyles({height:S+"px",width:O+"px",top:N-((E+(M*E))-E)+"px",left:D-((K+(J*K))-K)+"px"});Q.append(I);L.append(Q);if(typeof P!=="undefined"&&P){C[M].push(Q);}else{C.push(Q);}}}return C;},_transitionSlicesFadeLast:function(B){var C=this.get("itemOut");if(C&&!C.hasClass("fl-slideshow-image-cropped")){C.transition({duration:B/1000+this.get("duration"),opacity:0});}},_transitionSlice:function(D,B,C){var E=C?A.bind(this._transitionSlicesComplete,this):null;D.transition(B,E);},_transitionSlicesComplete:function(){var B=this.get("itemIn");B.all(".fl-slideshow-transition-slice").remove();B.one(".fl-slideshow-image-img").setStyle("opacity",1);this._transitionComplete();},_randomizeSlices:function(E){var D=E.length,C,B;if(D===0){return;}while(--D){C=Math.floor(Math.random()*(D+1));B=E[D];E[D]=E[C];E[C]=B;}return E;},_transitionKenBurns:function(){var C=this.get("kenBurnsDuration"),D=this.get("duration"),E=this.get("itemIn"),B=this.get("kenBurnsZoom");this._transitionFade();(new A.FL.SlideshowKenBurns({duration:C+D+4,image:E,zoom:B})).run();}},{ATTRS:{itemIn:{value:null},itemOut:{value:null},duration:{value:0.5},easing:{value:"ease-out"},type:{value:"fade"},bars:{value:15},boxCols:{value:8},boxRows:{value:4},kenBurnsDuration:{value:4},kenBurnsZoom:{value:1.2}},TYPES:{fade:"_transitionFade",none:"_transitionNone",slideLeft:"_transitionSlideLeft",slideRight:"_transitionSlideRight",slideUp:"_transitionSlideUp",slideDown:"_transitionSlideDown",blinds:"_transitionBars",bars:"_transitionBars",barsRandom:"_transitionBars",boxes:"_transitionBoxes",boxesRandom:"_transitionBoxes",boxesGrow:"_transitionBoxes",kenBurns:"_transitionKenBurns"},SLIDESHOW_IMAGE_TYPES:["blinds","bars","barsRandom","boxes","boxesRandom","boxesGrow","kenBurns"]});A.namespace("FL").Slideshow=A.Base.create("fl-slideshow",A.FL.SlideshowBase,[],{frame:null,nav:null,imageNavLeft:null,imageNavRight:null,thumbs:null,verticalThumbs:null,caption:null,social:null,_nextImagePreloader:null,_initialNavSettings:null,initializer:function(){var B={loadGroup:"main-preload",crop:this.get("crop"),position:this.get("position"),protect:this.get("protect"),upsize:this.get("upsize")};this._nextImagePreloader=new A.FL.SlideshowImage(B);if("ontouchstart" in window){this._removeNavButton("prev");this._removeNavButton("prevPage");this._removeNavButton("next");this._removeNavButton("nextPage");this._removeNavButton("fullscreen");}if(this._hasNavButton("fullscreen")){if(A.FL.SlideshowFullscreen.OS_SUPPORT){this.plug(A.FL.SlideshowFullscreen);}else{this._removeNavButton("fullscreen");}}},renderUI:function(){A.FL.Slideshow.superclass.renderUI.apply(this,arguments);this._renderFrame();this._renderVerticalThumbs();this._renderNavAndThumbs();this._renderImageNav();this._renderMouseNav();this._renderCaption();this._renderSocial();},bindUI:function(){var F=this.get("boundingBox"),E=this.frame.get("boundingBox"),D=this.get("navOverlay"),C=this.get("navType"),G=this._getNav(),B=this.get("clickAction");A.FL.Slideshow.superclass.bindUI.apply(this,arguments);A.Do.after(this._resizeChildWidgets,this,"resize");this.on("albumLoadStart",this._albumLoadStart,this);this.on("albumLoadComplete",this._albumLoadComplete,this);this.on("imageLoadComplete",this._loadFrame,this);if(this.get("loadingImageAlwaysEnabled")){this.frame.on("transitionInit",A.bind(this._showLoadingImageWithDelay,this));this.frame.on("transitionStart",A.bind(this._hideLoadingImage,this));}if(this.get("overlayHideOnMousemove")){if(G&&D){this.frame.once("transitionComplete",G.slideshowOverlay.hideWithTimer,G.slideshowOverlay);F.on("mousemove",A.bind(this._toggleNav,this));}if(C=="buttons"||C=="thumbs"||C=="custom"){F.on("mouseenter",A.bind(this._checkOverlaysOnMouseenter,this));F.on("mouseleave",A.bind(this._hideAllOverlays,this));}}F.delegate("click",A.bind(this._overlayCloseClick,this),".fl-slideshow-overlay-close");
20
  if(B=="gallery"||B=="url"){E.delegate("click",A.bind(this._frameClick,this),".fl-slideshow-image-img");}},syncUI:function(){var B=this.get("boundingBox");A.FL.Slideshow.superclass.syncUI.apply(this,arguments);B._node.onselectstart=function(){return false;};B._node.unselectable="on";B._node.style.MozUserSelect="none";if(this.get("clickAction")!="none"){this.frame.get("boundingBox").addClass("fl-click-action-enabled");}},unload:function(){this.pause();this.frame.unload();if(this.thumbs!==null){this.thumbs.unload();}},_albumLoadStart:function(){this._showLoadingImage();},_albumLoadComplete:function(){this.frame.once("transitionStart",A.bind(this._hideLoadingImage,this));},_resizeChildWidgets:function(){var D=this.get("boundingBox"),B=this.get("contentBox"),C=this.get("imageNavEnabled");this._renderNavAndThumbs();if(this.get("verticalThumbsOverlay")){this._resizeFrame(B.get("offsetWidth"),D.get("offsetHeight"));this._resizeVerticalThumbs();}else{this._resizeVerticalThumbs();this._resizeFrame(B.get("offsetWidth"),D.get("offsetHeight"));}if(C){this._positionImageNav();}this._positionLoadingImage();},_renderVerticalThumbs:function(){var B=this.get("responsiveThreshold"),E=this.get("boundingBox"),C=E.get("offsetWidth"),D;if(this.get("verticalThumbsEnabled")&&C>B){this.verticalThumbs=new A.FL.SlideshowThumbs(this._getVerticalThumbsConfig());this.add(this.verticalThumbs);this.verticalThumbs.render(E);D=this.verticalThumbs.get("boundingBox");D.addClass("fl-slideshow-vertical-thumbs");D.setStyle(this.get("verticalThumbsPosition"),0);E.append(D);if(this.get("verticalThumbsOverlay")){this.verticalThumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left"});this.frame.get("boundingBox").append(D);this.verticalThumbs.resize();}else{this.verticalThumbs.resize();this._adjustContentForVerticalThumbs();}this._bindVerticalThumbs();}},_getVerticalThumbsConfig:function(){var C=this.getAttrs(),B={columns:C.verticalThumbsColumns,rows:"auto",centerSinglePage:false,horizontalSpacing:C.verticalThumbsHorizontalSpacing,verticalSpacing:C.verticalThumbsVerticalSpacing,spaceEvenly:C.verticalThumbsSpaceEvenly,rightNavEnabled:false,leftNavEnabled:false,topNavEnabled:C.verticalThumbsTopNavEnabled,topNavButtons:C.verticalThumbsTopNavButtons,bottomNavEnabled:C.verticalThumbsBottomNavEnabled,bottomNavButtons:C.verticalThumbsBottomNavButtons,pauseOnClick:C.verticalThumbsPauseOnClick,transition:C.verticalThumbsTransition,transitionDirection:C.verticalThumbsTransitionDirection,transitionEasing:C.verticalThumbsTransitionEasing,touchSupport:true,imageConfig:{crop:C.verticalThumbsImageCrop,width:C.verticalThumbsImageWidth,height:C.verticalThumbsImageHeight}};return B;},_bindVerticalThumbs:function(){var B=this.get("boundingBox"),E=this.get("overlayHideOnMousemove"),D=this.get("verticalThumbsOverlay"),C=this.verticalThumbs;if(C&&E&&D){this.frame.once("transitionComplete",C.slideshowOverlay.hideWithTimer,C.slideshowOverlay);B.on("mousemove",A.bind(this._toggleVerticalThumbs,this));B.on("mouseenter",A.bind(this._toggleVerticalThumbs,this));}},_resizeVerticalThumbs:function(){var G=this.get("verticalThumbsEnabled"),H,I,F,C,D,E,B,J;if(G){H=this.get("verticalThumbsOverlay");I=this.get("responsiveThreshold");F=this.get("boundingBox");C=F.get("offsetWidth");D=this.get("navOverlay");E=this.get("navType");B=this._getNav();if(this.verticalThumbs&&C>I){this.verticalThumbs.get("boundingBox").setStyle("display","block");this.verticalThumbs.resize();if(!H){this._adjustContentForVerticalThumbs();}else{if(B&&D){J=B.get("boundingBox");if(E=="thumbs"){this._adjustOverlayForVerticalThumbs(J,true);this.thumbs.resize();}else{this._adjustOverlayForVerticalThumbs(J);}}}}else{if(!this.verticalThumbs&&C>I){this._renderVerticalThumbs();}else{if(this.verticalThumbs&&C<=I){this.verticalThumbs.get("boundingBox").setStyle("display","none");if(!H){this.get("contentBox").setStyles({left:"auto",position:"relative",right:"auto",width:"auto"});}}}}}},_toggleVerticalThumbs:function(){if(this.verticalThumbs){if(this.verticalThumbs.slideshowOverlay._visible){this.verticalThumbs.slideshowOverlay.hideWithTimer();}else{this.verticalThumbs.slideshowOverlay.show();}}},_adjustContentForVerticalThumbs:function(){var E=this.get("boundingBox"),C=this.verticalThumbs.get("boundingBox"),B=this.get("verticalThumbsPosition"),G=this.get("contentBox"),F=B=="left"?"right":"left",D=E.get("offsetWidth")-C.get("offsetWidth");G.setStyle("position","absolute");G.setStyle(F,0);G.setStyle("width",D);},_adjustOverlayForVerticalThumbs:function(F,C){var H=this.get("verticalThumbsEnabled"),I=this.get("verticalThumbsOverlay"),E=null,D=null,G=typeof C==="undefined"?"":"margin-",B=0;if(this.verticalThumbs&&H&&I){E=this.verticalThumbs.get("boundingBox");B=E.get("offsetWidth");D=this.get("verticalThumbsPosition");if(D=="left"){F.setStyle(G+"left",B+"px");}else{F.setStyle(G+"right",B+"px");}}},_renderFrame:function(){this.frame=new A.FL.SlideshowFrame({imageConfig:{loadGroup:"main",loadPriority:true,crop:this.get("crop"),cropHorizontalsOnly:this.get("cropHorizontalsOnly"),position:this.get("position"),protect:this.get("protect"),upsize:this.get("upsize"),showVideoButton:this.get("navOverlay")},touchSupport:true});this.add(this.frame);this.frame.render(this.get("contentBox"));this.frame.get("boundingBox").addClass("fl-slideshow-main-image");this._setPlayingTimerEvent(this.frame,"transitionComplete");this._loadingImageContainer=this.frame.get("contentBox");},_resizeFrame:function(D,B){var C=this.get("navOverlay"),E=this._getNav();if(E&&!C){B-=parseInt(E.get("boundingBox").getComputedStyle("height"),10);}this.frame.resize(D,B);},_loadFrame:function(G){var E=this.imageInfo.index,D=this.albumInfo.images,C=E+1>=D.length?0:E+1,F=this.frame.get("width"),B=this.frame.get("height");this.frame.load(G.imageInfo);A.FL.SlideshowImageLoader.removeGroup("main-preload");this._nextImagePreloader.preload(D[C],F,B);},_frameClick:function(){var B=this.get("clickAction"),C=this.get("clickActionUrl");
21
  if(B=="url"){window.location.href=C;}else{if(B=="gallery"){window.location.href=this.imageInfo.link;}}},_initMiniNav:function(){var B=[];if(!("ontouchstart" in window)){B.push("prev");}if(this._hasNavButton("thumbs")||this.get("navType")=="thumbs"){B.push("thumbs");}if(this._hasNavButton("caption")){B.push("caption");}if(this._hasNavButton("social")){B.push("social");}if(this._hasNavButton("buy")){B.push("buy");}if(this._hasNavButton("play")){B.push("play");}if(this._hasNavButton("fullscreen")&&!("ontouchstart" in window)){B.push("fullscreen");}if(!("ontouchstart" in window)){B.push("next");}this._initialNavSettings={buttons:this.get("navButtons"),buttonsLeft:this.get("navButtonsLeft"),buttonsRight:this.get("navButtonsRight"),type:this.get("navType")};this._set("navButtons",B);this._set("navButtonsLeft",[]);this._set("navButtonsRight",[]);this._set("navType","buttons");},_renderNavAndThumbs:function(){var C=this.get("navType"),D=false,E,B;if(C=="buttons"||C=="thumbs"){E=this.get("boundingBox").get("offsetWidth");B=this.get("responsiveThreshold");if(E<=B&&this._initialNavSettings===null){this._initMiniNav();D=true;}else{if(E>B&&this._initialNavSettings!==null){this._set("navButtons",this._initialNavSettings.buttons);this._set("navButtonsLeft",this._initialNavSettings.buttonsLeft);this._set("navButtonsRight",this._initialNavSettings.buttonsRight);this._set("navType",this._initialNavSettings.type);this._initialNavSettings=null;D=true;}}if(D||this.nav===null){this._renderNav();}if(D||this.thumbs===null){this._renderThumbs();}else{if(this._thumbsEnabled()){this._resizeThumbs();}}if(D&&this.caption!==null){this._syncCaption();}if(D&&this.social!==null){this._syncSocial();}}},_renderNav:function(){var D=this.frame.get("boundingBox"),E=null,B=this.get("navOverlay"),C=this.get("navPosition");this._destroyNav();if(this.get("navType")=="buttons"){this.nav=new A.FL.SlideshowNav({buttons:this.get("navButtons"),buttonsLeft:this.get("navButtonsLeft"),buttonsRight:this.get("navButtonsRight")});this.add(this.nav);this.nav.render(this.get("contentBox"));E=this.nav.get("boundingBox");if(B){this.nav.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});E.setStyle("position","absolute");E.setStyle(C,"0px");}if(C=="top"){D.insert(E,"before");}else{D.insert(E,"after");}E.addClass("fl-slideshow-main-nav");}},_destroyNav:function(){if(this.nav!==null){if(this.nav.slideshowOverlay){this.nav.slideshowOverlay.destroy();}this.nav.get("boundingBox").remove();this.remove(this.nav);try{this.nav.destroy(true);}catch(B){}this.nav=null;}},_getNav:function(){var B=this.get("navType");if(B=="buttons"){return this.nav;}else{if(B=="thumbs"){return this.thumbs;}else{return null;}}},_toggleNav:function(){var B=this._getNav();if(B.slideshowOverlay){if(B.slideshowOverlay._visible){B.slideshowOverlay.hideWithTimer();}else{B.slideshowOverlay.show();}}},_renderImageNav:function(){var B;if(this.get("imageNavEnabled")){if("ontouchstart" in window){this._set("imageNavEnabled",false);}else{B=this.get("boundingBox");this.imageNavLeft=new A.FL.SlideshowNav({buttons:["prev"],useFontIcons:false});this.imageNavRight=new A.FL.SlideshowNav({buttons:["next"],useFontIcons:false});this.add(this.imageNavLeft);this.add(this.imageNavRight);this.imageNavLeft.render(this.frame.get("boundingBox"));this.imageNavRight.render(this.frame.get("boundingBox"));this.imageNavLeft.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});this.imageNavRight.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay")});if(this.get("overlayHideOnMousemove")){this.frame.once("transitionComplete",this.imageNavLeft.slideshowOverlay.hideWithTimer,this.imageNavLeft.slideshowOverlay);this.frame.once("transitionComplete",this.imageNavRight.slideshowOverlay.hideWithTimer,this.imageNavRight.slideshowOverlay);B.on("mousemove",A.bind(this._toggleImageNav,this));B.on("mouseenter",A.bind(this._toggleImageNav,this));}this.imageNavLeft.get("boundingBox").addClass("fl-slideshow-image-nav-left");this.imageNavRight.get("boundingBox").addClass("fl-slideshow-image-nav-right");}}},_positionImageNav:function(){var D=this.imageNavLeft.get("boundingBox"),E=this.imageNavRight.get("boundingBox"),B=D.get("offsetHeight"),C=this.frame.get("boundingBox").get("offsetHeight"),G=C/2-B/2,F={top:G+"px",display:"block"};D.setStyles(F);E.setStyles(F);this._adjustOverlayForVerticalThumbs(D);this._adjustOverlayForVerticalThumbs(E);},_toggleImageNav:function(){if(this.imageNavLeft.slideshowOverlay._visible){this.imageNavLeft.slideshowOverlay.hideWithTimer();}else{this.imageNavLeft.slideshowOverlay.show();}if(this.imageNavRight.slideshowOverlay._visible){this.imageNavRight.slideshowOverlay.hideWithTimer();}else{this.imageNavRight.slideshowOverlay.show();}},_renderMouseNav:function(){if(this.get("mouseNavEnabled")&&!("ontouchstart" in window)&&!window.navigator.msPointerEnabled){this.plug(A.FL.SlideshowMouseNav,{trigger:this.frame.get("boundingBox")});}},_thumbsEnabled:function(){var B=this.get("navType");if(B=="thumbs"){return true;}if((B=="buttons"||B=="custom")&&this._hasNavButton("thumbs")){return true;}else{return false;}},_renderThumbs:function(){var E,C,D,B;this._destroyThumbs();if(this._thumbsEnabled()){E=this.frame.get("boundingBox");C=this.get("navOverlay");D=this.get("navPosition");B=this.get("navType");this.thumbs=new A.FL.SlideshowThumbs(this._getThumbsConfig());try{this.add(this.thumbs);}catch(F){}if(B=="buttons"||B=="custom"){this.thumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left",visible:false});}else{if(B=="thumbs"&&C){this.thumbs.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),hideStyle:"left"});}}this.thumbs.render(this.get("contentBox"));if(D=="top"){E.insert(this.thumbs.get("boundingBox"),"before");}else{E.insert(this.thumbs.get("boundingBox"),"after");}if(this.get("thumbsHideOnClick")&&B!="thumbs"){this.thumbs.on("imageClick",A.bind(this._hideThumbsOnImageClick,this));}this._syncThumbs();}},_destroyThumbs:function(){if(this.thumbs!==null){if(this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay.destroy();
22
  }this.thumbs.get("boundingBox").remove();this.remove(this.thumbs);try{this.thumbs.destroy(true);}catch(B){}this.thumbs=null;}},_syncThumbs:function(){var D=this.thumbs.get("boundingBox"),E=this.get("navOverlay"),F=this.get("navPosition"),C=this.get("navType"),B="padding"+F.charAt(0).toUpperCase()+F.slice(1),G=0;if(C=="buttons"){G=parseInt(this.nav.get("boundingBox").getComputedStyle("height"),10);D.setStyle("position","absolute");if(E){D.setStyle(B,G+"px");D.setStyle(F,"0px");}else{D.setStyle(F,G+"px");}}if(C=="custom"||(C=="thumbs"&&E)){D.setStyle("position","absolute");D.setStyle(F,"0px");}this.thumbs.resize();},_getThumbsConfig:function(){var E=this.getAttrs(),B=this.get("navType"),D={crop:E.thumbsImageCrop,width:E.thumbsImageWidth,height:E.thumbsImageHeight},C={columns:"auto",rows:1,horizontalSpacing:E.thumbsHorizontalSpacing,verticalSpacing:E.thumbsVerticalSpacing,spaceEvenly:E.thumbsSpaceEvenly,centerSinglePage:E.thumbsCenterSinglePage,pauseOnClick:E.thumbsPauseOnClick,transition:E.thumbsTransition,transitionDirection:E.thumbsTransitionDirection,transitionEasing:E.thumbsTransitionEasing,leftNavButtons:E.navButtonsLeft,rightNavButtons:E.navButtonsRight,imageConfig:D,touchSupport:true};if(B=="buttons"||B=="custom"){if("ontouchstart" in window){C.leftNavEnabled=false;C.rightNavEnabled=false;}else{C.centerSinglePage=false;C.leftNavButtons=["prevPage"];C.rightNavButtons=["nextPage"];}}return C;},_resizeThumbs:function(){if(this.thumbs){this.thumbs.resize();}},_toggleThumbs:function(){this._toggleOverlay(this.thumbs.slideshowOverlay);},_hideThumbsOnImageClick:function(){if(this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay._focus=false;this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hide();if(this.nav&&this.nav.slideshowOverlay){this.nav.slideshowOverlay.enable();}}},_renderCaption:function(){if(this._hasNavButton("caption")){this.caption=new A.FL.SlideshowCaption({lessLinkText:this.get("captionLessLinkText"),moreLinkText:this.get("captionMoreLinkText"),textLength:this.get("captionTextLength"),stripTags:this.get("captionStripTags")});this.add(this.caption);this.caption.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),visible:false,closeButton:true});this._syncCaption();}},_syncCaption:function(){var G=this.caption.get("boundingBox"),C=this.get("navOverlay"),D=this.get("navPosition"),E=this._getNav(),B="padding"+D.charAt(0).toUpperCase()+D.slice(1),F=0;G.setStyle("position","absolute");if(E){F=parseInt(E.get("boundingBox").getComputedStyle("height"),10);}if(E&&C){G.setStyle(B,F+"px");G.setStyle(D,"0px");}else{G.setStyle(D,F+"px");}},_toggleCaption:function(){this._toggleOverlay(this.caption.slideshowOverlay);},_renderSocial:function(){if(this._hasNavButton("social")){this.social=new A.FL.SlideshowSocial();this.add(this.social);this.social.plug(A.FL.SlideshowOverlay,{hideDelay:this.get("overlayHideDelay"),visible:false,closeButton:true});this._syncSocial();}},_syncSocial:function(){var D=this.social.get("boundingBox"),C=this.get("navOverlay"),E=this.get("navPosition"),F=this._getNav(),B="padding"+E.charAt(0).toUpperCase()+E.slice(1),G=0;D.setStyle("position","absolute");if(F){G=parseInt(F.get("boundingBox").getComputedStyle("height"),10);}if(F&&C){D.setStyle(B,G+"px");D.setStyle(E,"0px");}else{D.setStyle(E,G+"px");}},_toggleSocial:function(){this._toggleOverlay(this.social.slideshowOverlay);},_toggleOverlay:function(C){var B=this.get("navType"),D=this._getNav();if(C._visible){if(D&&D.slideshowOverlay){D.slideshowOverlay.enable();}C.enable();C.hide();}else{if(D&&D.slideshowOverlay){D.slideshowOverlay.disable();}C.show();C.disable();}if(this.thumbs&&B!="thumbs"&&this.thumbs.slideshowOverlay!==C){this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hide();}if(this.caption&&this.caption.slideshowOverlay!==C){this.caption.slideshowOverlay.enable();this.caption.slideshowOverlay.hide();}if(this.social&&this.social.slideshowOverlay!==C){this.social.slideshowOverlay.enable();this.social.slideshowOverlay.hide();}},_overlayCloseClick:function(){if(this.nav&&this.nav.slideshowOverlay){this.nav.slideshowOverlay.enable();}if(this.thumbs&&this.thumbs.slideshowOverlay){this.thumbs.slideshowOverlay.enable();}if(this.caption){this.caption.slideshowOverlay.enable();}if(this.social){this.social.slideshowOverlay.enable();}if(this.imageNavLeft){this.imageNavLeft.slideshowOverlay.enable();this.imageNavRight.slideshowOverlay.enable();}},_hideAllOverlays:function(){if(this.nav&&this.nav.slideshowOverlay&&this.nav.slideshowOverlay._visible){this.nav.slideshowOverlay.enable();this.nav.slideshowOverlay.hideWithTimer();}if(this.thumbs&&this.thumbs.slideshowOverlay&&this.thumbs.slideshowOverlay._visible){this.thumbs.slideshowOverlay.enable();this.thumbs.slideshowOverlay.hideWithTimer();}if(this.caption&&this.caption.slideshowOverlay._visible){this.caption.slideshowOverlay.enable();this.caption.slideshowOverlay.hideWithTimer();}if(this.social&&this.social.slideshowOverlay._visible){this.social.slideshowOverlay.enable();this.social.slideshowOverlay.hideWithTimer();}if(this.imageNavLeft){this.imageNavLeft.slideshowOverlay.enable();this.imageNavLeft.slideshowOverlay.hideWithTimer();this.imageNavRight.slideshowOverlay.enable();this.imageNavRight.slideshowOverlay.hideWithTimer();}},_checkOverlaysOnMouseenter:function(){var B=this.get("navType"),D=this.get("navOverlay"),E=this._getNav(),C=false;if(this.thumbs&&B!="thumbs"&&this.thumbs.slideshowOverlay._visible){C=true;this.thumbs.slideshowOverlay.disable();}else{if(this.caption&&this.caption.slideshowOverlay._visible){C=true;this.caption.slideshowOverlay.disable();}else{if(this.social&&this.social.slideshowOverlay._visible){C=true;this.social.slideshowOverlay.disable();}}}if(E&&C&&D){E.slideshowOverlay.disable();}},_hasNavButton:function(C){var B=this.get("navType");if(B=="buttons"||B=="thumbs"||B=="custom"){if(A.Array.indexOf(this.get("navButtons"),C)>-1){return true;}else{if(A.Array.indexOf(this.get("navButtonsLeft"),C)>-1){return true;
23
  }else{if(A.Array.indexOf(this.get("navButtonsRight"),C)>-1){return true;}else{return false;}}}}else{return false;}},_removeNavButton:function(D){var G=this.get("navButtons"),B=this.get("navButtonsLeft"),F=this.get("navButtonsRight"),C=this.get("verticalThumbsTopNavButtons"),E=this.get("verticalThumbsBottomNavButtons");if(A.Array.indexOf(G,D)>-1){G.splice(A.Array.indexOf(G,D),1);}if(A.Array.indexOf(B,D)>-1){B.splice(A.Array.indexOf(B,D),1);}if(A.Array.indexOf(F,D)>-1){F.splice(A.Array.indexOf(F,D),1);}if(A.Array.indexOf(C,D)>-1){C.splice(A.Array.indexOf(C,D),1);}if(A.Array.indexOf(E,D)>-1){E.splice(A.Array.indexOf(E,D),1);}this._set("navButtons",G);this._set("navButtonsLeft",B);this._set("navButtonsRight",F);this._set("verticalThumbsTopNavButtons",C);this._set("verticalThumbsBottomNavButtons",E);}},{CSS_PREFIX:"fl-slideshow",ATTRS:{clickAction:{value:"none"},clickActionUrl:{value:""},crop:{value:false},cropHorizontalsOnly:{value:false},loadingImageAlwaysEnabled:{value:true},position:{value:"center center"},protect:{value:true},upsize:{value:true},transition:{value:"fade"},transitionDuration:{value:1},transitionEasing:{value:"ease-out"},kenBurnsZoom:{value:1.2},navType:{value:"none"},navPosition:{value:"bottom"},navOverlay:{value:false},navButtons:{value:[]},navButtonsLeft:{value:[]},navButtonsRight:{value:[]},overlayHideOnMousemove:{value:true},overlayHideDelay:{value:3000},imageNavEnabled:{value:false},mouseNavEnabled:{value:false},thumbsHideOnClick:{value:true},thumbsHorizontalSpacing:{value:15},thumbsVerticalSpacing:{value:15},thumbsSpaceEvenly:{value:true},thumbsCenterSinglePage:{value:true},thumbsPauseOnClick:{value:false},thumbsTransition:{value:"slideHorizontal"},thumbsTransitionDuration:{value:0.8},thumbsTransitionEasing:{value:"ease-out"},thumbsImageCrop:{value:true},thumbsImageWidth:{value:50},thumbsImageHeight:{value:50},captionLessLinkText:{value:"Read Less"},captionMoreLinkText:{value:"Read More"},captionTextLength:{value:200},captionStripTags:{value:false},verticalThumbsEnabled:{value:false},verticalThumbsPosition:{value:"left"},verticalThumbsOverlay:{value:false},verticalThumbsColumns:{value:1},verticalThumbsTopNavEnabled:{value:false},verticalThumbsTopNavButtons:{value:["prevPage","nextPage"]},verticalThumbsBottomNavEnabled:{value:true},verticalThumbsBottomNavButtons:{value:["prevPage","nextPage"]},verticalThumbsHorizontalSpacing:{value:15},verticalThumbsVerticalSpacing:{value:15},verticalThumbsSpaceEvenly:{value:false},verticalThumbsPauseOnClick:{value:false},verticalThumbsImageCrop:{value:true},verticalThumbsImageWidth:{value:75},verticalThumbsImageHeight:{value:75},verticalThumbsTransition:{value:"slideVertical"},verticalThumbsTransitionDuration:{value:0.8},verticalThumbsTransitionEasing:{value:"ease-out"},googlePlusButtonEnabled:{value:true},likeButtonEnabled:{value:true},pinterestButtonEnabled:{value:true},tweetButtonEnabled:{value:true}}});},"2.0.0",{requires:["anim","event-mouseenter","plugin","transition","fl-event-move","fl-slideshow-css","fl-slideshow-base","fl-utils","sm-fonticon"]});YUI.add("fl-slideshow-album-loader",function(A){A.namespace("FL").SlideshowAlbumLoader=A.Base.create("fl-slideshow-album-loader",A.Base,[],{_source:null,load:function(B){this._source=B;this.fire("start");this[A.FL.SlideshowAlbumLoader.TYPES[B.type]].call(this);},_loadComplete:function(B){B=this._randomize(B);this.fire("complete",B);},_randomize:function(C){var B;if(this.get("randomize")){C.albumInfo.images.sort(function(){return 0.5-Math.random();});for(B=0;B<C.albumInfo.images.length;B++){C.albumInfo.images[B].index=B;}}return C;},_loadSmugMug:function(){var B=new A.FL.SmugMugAPI();B.on("complete",this._loadSmugMugSuccess,this);B.addParam("method","smugmug.images.get");B.addParam("AlbumID",this._source.id);B.addParam("AlbumKey",this._source.key);B.addParam("Extras","Caption,Format,FileName");if(this._source.password){B.addParam("Password",this._source.password);}if(this._source.sp){B.addParam("SitePassword",this._source.sp);}B.request();},_loadSmugMugSuccess:function(H){var J=H.Album.Images,E={},I=typeof this._source.proxy!=="undefined"?this._source.proxy:"",C="",B="",D="",K="",G=0,L=null,F=null;E.index=this._source.index;E.id=H.Album.id;E.key=H.Album.Key;E.link=H.Album.URL;E.title=this._source.title?this._source.title:"";E.images=[];C=E.link.replace("http://","").split("/").shift();C="http://"+C+"/buy/"+H.Album.id+"_"+H.Album.Key+"/";for(G=0;G<J.length;G++){B=I+H.Album.URL+"/"+J[G].id+"_"+J[G].Key;K=J[G].Format.toLowerCase();D=K=="mp4"?".jpg":"."+K;E.images[G]={};E.images[G].index=G;E.images[G].sourceType="smugmug";E.images[G].albumId=H.Album.id;E.images[G].albumKey=H.Album.Key;E.images[G].id=J[G].id;E.images[G].key=J[G].Key;E.images[G].filename=J[G].FileName;E.images[G].format=K;E.images[G].caption=J[G].Caption||"";E.images[G].link=H.Album.URL+"#"+J[G].id+"_"+J[G].Key;E.images[G].tinyURL=B+"-Ti"+D;E.images[G].thumbURL=B+"-Th"+D;E.images[G].smallURL=B+"-S"+D;E.images[G].mediumURL=B+"-M"+D;E.images[G].largeURL=B+"-L"+D;E.images[G].xlargeURL=B+"-XL"+D;E.images[G].x2largeURL=B+"-X2"+D;E.images[G].x3largeURL=B+"-X3"+D;E.images[G].buyURL=C+J[G].id+"_"+J[G].Key;E.images[G].iframe="";if(E.images[G].caption.indexOf("iframe")){L=A.Node.create("<div>"+E.images[G].caption+"</div>");F=L.one("iframe");if(F){E.images[G].iframe=F.getAttribute("src");E.images[G].caption=E.images[G].caption.replace(/<iframe.*>.*<\/iframe>/gi,"");}}}this._loadComplete({"albumInfo":E});},_loadUrls:function(){var B={},C=0;B.index=this._source.index;B.title=this._source.title?this._source.title:"";B.images=[];for(;C<this._source.urls.length;C++){B.images[C]={};B.images[C].index=C;B.images[C].sourceType="urls";B.images[C].filename=this._source.urls[C].largeURL.split("/").pop();B.images[C].format="";B.images[C].caption=this._source.urls[C].caption||"";B.images[C].link=this._source.urls[C].largeURL;B.images[C].thumbURL=this._source.urls[C].thumbURL||this._source.urls[C].largeURL;B.images[C].smallURL=this._source.urls[C].smallURL||this._source.urls[C].largeURL;B.images[C].mediumURL=this._source.urls[C].mediumURL||this._source.urls[C].largeURL;B.images[C].largeURL=this._source.urls[C].largeURL;B.images[C].xlargeURL=this._source.urls[C].xlargeURL||this._source.urls[C].largeURL;B.images[C].x2largeURL=this._source.urls[C].x2largeURL||this._source.urls[C].largeURL;B.images[C].x3largeURL=this._source.urls[C].x3largeURL||this._source.urls[C].largeURL;B.images[C].buyURL=this._source.urls[C].buyURL||"";B.images[C].iframe=this._source.urls[C].iframe||"";}this._loadComplete({"albumInfo":B});}},{ATTRS:{randomize:{value:false}},TYPES:{"smugmug":"_loadSmugMug","flickr":"_loadFlickr","picasa":"_loadPicasa","urls":"_loadUrls","html":"_loadHtml"}});},"2.0.0",{requires:["base","fl-smugmug-api"]});YUI.add("fl-slideshow-base",function(A){A.namespace("FL").SlideshowBase=A.Base.create("fl-slideshow-base",A.Widget,[A.WidgetParent],{_albumLoader:null,albums:[],albumInfo:null,albumIndex:null,imageInfo:null,imageIndex:null,lastImageIndex:null,_resizeTimer:null,_playing:false,_playingTimer:null,_playingTimerEvent:null,_loadingImage:null,_loadingImageWrap:null,_loadingImageVisible:false,_loadingImageTimer:null,_loadingImageContainer:null,_initialHeight:null,_initialWidth:null,initializer:function(){this._albumLoader=new A.FL.SlideshowAlbumLoader({randomize:this.get("randomize")});},renderUI:function(){this._renderLoadingImage();},bindUI:function(){this._albumLoader.on("complete",this._loadAlbumComplete,this);A.one(window).on("fl-slideshow-base|resize",this._delayResize,this);A.one(window).on("fl-slideshow-base|orientationchange",this._delayResize,this);A.Node.one("body").on("keydown",A.bind(this._onKey,this));},syncUI:function(){this.get("boundingBox").addClass("fl-slideshow-"+this.get("color"));this.resize();if(this.get("loadOnRender")){this.loadAlbum(this.get("defaultAlbum"),this.get("defaultImage"));}},addAlbum:function(D){var C=this.get("source"),B=C.length;C[B]=D;C[B].index=B;this.set("source",C);},loadAlbum:function(C,B){var E=this.get("source"),D=typeof B=="undefined"?0:B;this.imageIndex=null;this.lastImageIndex=null;this.fire("albumLoadStart");this.once("albumLoadComplete",A.bind(this.loadImage,this,D));if(E[C]&&E[C].type=="album-data"){this.albums[C]=E[C].data;this._loadAlbumComplete({albumInfo:this.albums[C]});}else{if(E[C]&&this.albums[C]){this._loadAlbumComplete({albumInfo:this.albums[C]});}else{this._albumLoader.load(E[C]||E[0]);}}},_loadAlbumComplete:function(B){this.albums[B.albumInfo.index]=B.albumInfo;this.albumInfo=B.albumInfo;this.albumIndex=B.albumInfo.index;this.fire("albumLoadComplete");if(this.get("autoPlay")){this._playingTimerStart();this.fire("played");this._playing=true;}},loadImage:function(B){if(this._playing){this._playingTimerStart();}B=B<0?this.albumInfo.images.length-1:B;B=B>=this.albumInfo.images.length?0:B;this.lastImageIndex=this.imageIndex;this.imageIndex=B;this.imageInfo=this.albumInfo.images[B];this.fire("imageLoadComplete",{"imageInfo":this.imageInfo});},prevImage:function(){if(this.get("pauseOnNextOrPrev")){this.pause();}this.loadImage(this.imageIndex-1);this.fire("prevImage");},nextImage:function(){if(this.get("pauseOnNextOrPrev")){this.pause();}this.loadImage(this.imageIndex+1);this.fire("nextImage");},_onKey:function(B){switch(B.keyCode){case 37:this.prevImage();break;case 39:this.nextImage();break;}},resize:function(){var E=this.get("stretchy"),D=this.get("stretchyType"),C=parseInt(A.one("body").get("winWidth"),10),B=this.get("responsiveThreshold");if(C>B&&E&&D=="window"){this._stretchyWindowResize();}else{if((C<=B)||(E&&D=="ratio")){this._stretchyRatioResize();}else{this._standardResize();}}this.fire("resize");},_standardResize:function(){var I=this.get("stretchy"),G=this.get("stretchyType"),H=this.get("boundingBox"),F=H.get("parentNode"),C=parseInt(F.getComputedStyle("height"),10),E=parseInt(F.getComputedStyle("width"),10),B=this.get("height"),D=this.get("width");if(H.hasClass("fl-fullscreen-active")){this._stretchyWindowResize();return;}else{if(I&&G=="contain"){H.setStyle("height",C+"px");H.setStyle("width",E+"px");}else{if(!A.Lang.isNumber(B)){this._stretchyRatioResize();return;}else{H.setStyle("height",B+"px");if(D){H.setStyle("width",D+"px");}else{H.setStyle("width",E+"px");}}}}},_stretchyWindowResize:function(){var G=this.get("boundingBox"),E=this.get("stretchyVerticalSpace"),D=parseInt(G.getStyle("paddingTop"),10),F=parseInt(G.getStyle("paddingBottom"),10),B=parseInt(A.one("body").get("winHeight"),10),C="";if(G.hasClass("fl-fullscreen-active")){E=0;C=parseInt(A.one("body").get("winWidth"),10)+"px";}B=(B-D-F-E)+"px";G.setStyle("height",B);G.setStyle("width",C);},_stretchyRatioResize:function(){var G=this.get("boundingBox"),J=G.get("parentNode"),H=0,F=this.get("stretchyRatio"),L=parseInt(G.getStyle("paddingTop"),10),C=parseInt(G.getStyle("paddingBottom"),10),I=parseInt(J.getComputedStyle("width"),10),E=parseInt(A.one("body").get("winHeight"),10),D=parseInt(A.one("body").get("winWidth"),10),K=I*F,B="";if(G.hasClass("fl-fullscreen-active")){K=E;B=D;}K=(K-L-C-H)+"px";G.setStyle("height",K);G.setStyle("width",B);},_delayResize:function(){if(this._resizeTimer){this._resizeTimer.cancel();}this._resizeTimer=A.later(300,this,this.resize);},play:function(){this._playingTimer=A.later(this.get("speed"),this,this._playingTimerComplete);this.fire("played");this._playing=true;},pause:function(){this._playingTimerCancel();this.fire("paused");this._playing=false;},_setPlayingTimerEvent:function(C,B){this._playingTimerEvent={"obj":C,"e":B};},_playingTimerStart:function(B){this._playingTimerCancel();if(!B&&this._playingTimerEvent!==null){this._playingTimerEvent.obj.once("fl-slideshow-base|"+this._playingTimerEvent.e,A.bind(this._playingTimerStart,this));}else{this._playingTimer=A.later(this.get("speed"),this,this._playingTimerComplete);}},_playingTimerComplete:function(){this.loadImage(this.imageIndex+1);this.fire("playingTimerComplete");},_playingTimerCancel:function(){if(this._playingTimer){this._playingTimer.cancel();}if(this._playingTimerEvent){this._playingTimerEvent.obj.detach("fl-slideshow-base|"+this._playingTimerEvent.e);}},_renderLoadingImage:function(){var C={lines:11,length:6,width:2,radius:7,color:"",speed:1,trail:60,shadow:false},B=A.merge(C,this.get("loadingImageSettings"));if(this.get("loadingImageEnabled")){if(B.color===""){B.color=this._colorToHex(A.one("body").getStyle("color"));}this._loadingImage=new A.FL.Spinner(B);this._loadingImageWrap=A.Node.create('<div class="fl-loading-image"></div>');this._loadingImageWrap.setStyles({position:"absolute","z-index":"1000"});}},_showLoadingImage:function(){if(this._loadingImage&&!this._loadingImageVisible){this._loadingImageVisible=true;this._loadingImage.spin();this._loadingImageWrap.insert(this._loadingImage.el);
24
+ if(this._loadingImageContainer!==null){this._loadingImageContainer.insert(this._loadingImageWrap);}else{this.get("contentBox").insert(this._loadingImageWrap);}this._positionLoadingImage();}},_showLoadingImageWithDelay:function(){if(this._loadingImage){this._loadingImageTimer=A.later(1000,this,this._showLoadingImage);}},_hideLoadingImage:function(){if(this._loadingImageTimer){this._loadingImageTimer.cancel();this._loadingImageTimer=null;}if(this._loadingImage&&this._loadingImageVisible){this._loadingImageVisible=false;this._loadingImage.stop();this._loadingImageWrap.remove();}},_positionLoadingImage:function(){if(this._loadingImage&&this._loadingImageVisible){var F=this._loadingImageWrap,B=parseInt(F.getComputedStyle("height"),10),G=parseInt(F.getComputedStyle("width"),10),E=F.get("parentNode"),C=parseInt(E.getComputedStyle("height"),10),D=parseInt(E.getComputedStyle("width"),10),I=(D-G)/2,H=(C-B)/2;F.setStyles({left:I+"px",top:H+"px"});A.one(this._loadingImage.el).setStyles({left:"50%",top:"50%"});}},_colorToHex:function(C){var F,G,E,B,D;if(C.substr(0,1)==="#"){return C;}F=/(.*?)rgb\((\d+), (\d+), (\d+)\)/.exec(C);if(null===F){return"#000";}G=parseInt(F[2],10);E=parseInt(F[3],10);B=parseInt(F[4],10);D=B|(E<<8)|(G<<16);D=D.toString(16);if(D==="0"){D="000";}return F[1]+"#"+D;}},{CSS_PREFIX:"fl-slideshow-base",ATTRS:{color:{value:"dark",writeOnce:true},source:{value:[],setter:function(C){if(C.constructor==Object){C=[C];}for(var B=0;B<C.length;B++){C[B].index=B;}return C;}},defaultAlbum:{value:0},defaultImage:{value:0},loadOnRender:{value:true},autoPlay:{value:true},pauseOnNextOrPrev:{value:true},randomize:{value:false},speed:{value:4000},responsiveThreshold:{value:600},stretchy:{value:false},stretchyType:{value:"ratio"},stretchyVerticalSpace:{value:0},stretchyRatio:{value:0.7},loadingImageEnabled:{value:true},loadingImageSettings:{value:{}}}});},"2.0.0",{requires:["node","base","widget","widget-parent","widget-child","fl-slideshow-album-loader","fl-spinner"]});YUI.add("fl-smugmug-api",function(A){A.namespace("FL").SmugMugAPI=A.Base.create("fl-smugmug-api",A.Base,[],{_sessionID:null,_requestURL:null,initializer:function(){this._resetRequestURL();},addParam:function(B,C){this._requestURL=this._requestURL+"&"+B+"="+C;},loginAnon:function(){this.addParam("method","smugmug.login.anonymously");this.once("complete",this._loginAnonComplete);this.request();},_loginAnonComplete:function(B){if(B.Login){this._sessionID=B.Login.Session.id;}},request:function(){this.addParam("Callback","{callback}");A.jsonp(this._requestURL,{on:{success:this._requestComplete,timeout:function(){}},context:this,timeout:60000,args:[]});},_requestComplete:function(B){this._resetRequestURL();this.fire("complete",B);},_resetRequestURL:function(){this._requestURL=this.get("apiURL")+"?APIKey="+this.get("apiKey");if(this._sessionID){this.addParam("SessionID",this._sessionID);}}},{ATTRS:{apiURL:{value:"https://api.smugmug.com/services/api/json/1.3.0/"},apiKey:{value:"7w6kuU5Ee6KSgRRExf2KLgppdkez9JD2"}}});},"2.0.0",{requires:["base","jsonp"]});YUI.add("fl-spinner",function(A){(function(e,E,L){var B="width",Q="length",g="radius",Z="lines",S="trail",V="color",q="opacity",i="speed",a="shadow",k="style",D="height",F="left",G="top",H="px",T="childNodes",p="firstChild",I="parentNode",d="position",J="relative",b="absolute",u="animation",W="transform",N="Origin",f="Timeout",P="coord",m="#000",X=k+"Sheets",M="webkit0Moz0ms0O".split(0),t={},o;function s(w,y){var v=~~((w[Q]-1)/2);for(var x=1;x<=v;x++){y(w[x*2-1],w[x*2]);}}function n(v){var w=E.createElement(v||"div");s(arguments,function(y,x){w[y]=x;});return w;}function c(v,x,w){if(w&&!w[I]){c(v,w);}v.insertBefore(x,w||null);return v;}c(E.getElementsByTagName("head")[0],n(k));var O=E[X][E[X][Q]-1];function C(AA,v){var x=[q,v,~~(AA*100)].join("-"),w="{"+q+":"+AA+"}",y;if(!t[x]){for(y=0;y<M[Q];y++){try{O.insertRule("@"+(M[y]&&"-"+M[y].toLowerCase()+"-"||"")+"keyframes "+x+"{0%{"+q+":1}"+v+"%"+w+"to"+w+"}",O.cssRules[Q]);}catch(z){}}t[x]=1;}return x;}function R(y,z){var x=y[k],v,w;if(x[z]!==L){return z;}z=z.charAt(0).toUpperCase()+z.slice(1);for(w=0;w<M[Q];w++){v=M[w]+z;if(x[v]!==L){return v;}}}function h(v){s(arguments,function(x,w){v[k][R(v,x)||x]=w;});return v;}function Y(v){s(arguments,function(x,w){if(v[x]===L){v[x]=w;}});return v;}var U=function U(v){this.opts=Y(v||{},Z,12,S,100,Q,7,B,5,g,10,V,m,q,1/4,i,1);},K=U.prototype={spin:function(AB){var AD=this,w=AD.el=AD[Z](AD.opts);if(AB){c(AB,h(w,F,~~(AB.offsetWidth/2)+H,G,~~(AB.offsetHeight/2)+H),AB[p]);}if(!o){var v=AD.opts,y=0,z=20/v[i],AA=(1-v[q])/(z*v[S]/100),AC=z/v[Z];(function x(){y++;for(var AE=v[Z];AE;AE--){var AF=Math.max(1-(y+AE*AC)%z*AA,v[q]);AD[q](w,v[Z]-AE,AF,v);}AD[f]=AD.el&&e["set"+f](x,50);})();}return AD;},stop:function(){var v=this,w=v.el;e["clear"+f](v[f]);if(w&&w[I]){w[I].removeChild(w);}v.el=L;return v;}};K[Z]=function(AA){var y=h(n(),d,J),x=C(AA[q],AA[S]),w=0,v;function z(AB,AC){return h(n(),d,b,B,(AA[Q]+AA[B])+H,D,AA[B]+H,"background",AB,"boxShadow",AC,W+N,F,W,"rotate("+~~(360/AA[Z]*w)+"deg) translate("+AA[g]+H+",0)","borderRadius","100em");}for(;w<AA[Z];w++){v=h(n(),d,b,G,1+~(AA[B]/2)+H,W,"translate3d(0,0,0)",u,x+" "+1/AA[i]+"s linear infinite "+(1/AA[Z]/AA[i]*w-1/AA[i])+"s");if(AA[a]){c(v,h(z(m,"0 0 4px "+m),G,2+H));}c(y,c(v,z(AA[V],"0 0 1px rgba(0,0,0,.1)")));}return y;};K[q]=function(w,v,x){w[T][v][k][q]=x;};var r="behavior",l="url(#default#VML)",j="group0roundrect0fill0stroke".split(0);(function(){var w=h(n(j[0]),r,l),v;if(!R(w,W)&&w.adj){for(v=0;v<j[Q];v++){O.addRule(j[v],r+":"+l);}K[Z]=function(){var AE=this.opts,AC=AE[Q]+AE[B],AA=2*AC;function x(){return h(n(j[0],P+"size",AA+" "+AA,P+N,-AC+" "+-AC),B,AA,D,AA);}var AB=x(),AD=~(AE[Q]+AE[g]+AE[B])+H,z;function y(AG,AF,AH){c(AB,c(h(x(),"rotation",360/AE[Z]*AG+"deg",F,~~AF),c(h(n(j[1],"arcsize",1),B,AC,D,AE[B],F,AE[g],G,-AE[B]/2,"filter",AH),n(j[2],V,AE[V],q,AE[q]),n(j[3],q,0))));}if(AE[a]){for(z=1;z<=AE[Z];z++){y(z,-2,"progid:DXImage"+W+".Microsoft.Blur(pixel"+g+"=2,make"+a+"=1,"+a+q+"=.3)");}}for(z=1;z<=AE[Z];z++){y(z);}return c(h(n(),"margin",AD+" 0 0 "+AD,d,J),AB);};K[q]=function(y,x,AA,z){z=z[a]&&z[Z]||0;y[p][T][x+z][p][p][q]=AA;};}else{o=R(w,u);}})();A.namespace("FL").Spinner=U;})(window,document);},"2.0.0");YUI.add("fl-utils",function(A){A.namespace("FL").Utils={cssSupport:function(F){var B=document.body||document.documentElement,E=B.style,C=["Moz","Webkit","Khtml","O","ms","Icab"],D=0;if(F=="transform"&&A.UA.gecko&&A.UA.gecko<4){return false;}if(F=="transform"&&A.UA.opera>0){return false;}if(F=="transform"&&A.UA.ie>0&&A.UA.ie<10){return false;}if(F=="transform"&&navigator.userAgent.match(/Trident/)){return false;}if(typeof E=="undefined"){return false;}if(typeof E[F]=="string"){return true;}F=F.charAt(0).toUpperCase()+F.substr(1);for(;D<C.length;D++){if(typeof E[C[D]+F]=="string"){return true;}}}};},"2.0.0");
js/jquery.imagesloaded.js ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ /*!
2
+ * imagesLoaded PACKAGED v3.2.0
3
+ * JavaScript is all like "You images are done yet or what?"
4
+ * MIT License
5
+ */
6
+
7
+ (function(){"use strict";function e(){}function t(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function n(e){return function(){return this[e].apply(this,arguments)}}var i=e.prototype,r=this,s=r.EventEmitter;i.getListeners=function(e){var t,n,i=this._getEvents();if("object"==typeof e){t={};for(n in i)i.hasOwnProperty(n)&&e.test(n)&&(t[n]=i[n])}else t=i[e]||(i[e]=[]);return t},i.flattenListeners=function(e){var t,n=[];for(t=0;t<e.length;t+=1)n.push(e[t].listener);return n},i.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&(t={},t[e]=n),t||n},i.addListener=function(e,n){var i,r=this.getListenersAsObject(e),s="object"==typeof n;for(i in r)r.hasOwnProperty(i)&&-1===t(r[i],n)&&r[i].push(s?n:{listener:n,once:!1});return this},i.on=n("addListener"),i.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},i.once=n("addOnceListener"),i.defineEvent=function(e){return this.getListeners(e),this},i.defineEvents=function(e){for(var t=0;t<e.length;t+=1)this.defineEvent(e[t]);return this},i.removeListener=function(e,n){var i,r,s=this.getListenersAsObject(e);for(r in s)s.hasOwnProperty(r)&&(i=t(s[r],n),-1!==i&&s[r].splice(i,1));return this},i.off=n("removeListener"),i.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},i.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},i.manipulateListeners=function(e,t,n){var i,r,s=e?this.removeListener:this.addListener,o=e?this.removeListeners:this.addListeners;if("object"!=typeof t||t instanceof RegExp)for(i=n.length;i--;)s.call(this,t,n[i]);else for(i in t)t.hasOwnProperty(i)&&(r=t[i])&&("function"==typeof r?s.call(this,i,r):o.call(this,i,r));return this},i.removeEvent=function(e){var t,n=typeof e,i=this._getEvents();if("string"===n)delete i[e];else if("object"===n)for(t in i)i.hasOwnProperty(t)&&e.test(t)&&delete i[t];else delete this._events;return this},i.removeAllListeners=n("removeEvent"),i.emitEvent=function(e,t){var n,i,r,s,o=this.getListenersAsObject(e);for(r in o)if(o.hasOwnProperty(r))for(i=o[r].length;i--;)n=o[r][i],n.once===!0&&this.removeListener(e,n.listener),s=n.listener.apply(this,t||[]),s===this._getOnceReturnValue()&&this.removeListener(e,n.listener);return this},i.trigger=n("emitEvent"),i.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},i.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},i._getOnceReturnValue=function(){return this.hasOwnProperty("_onceReturnValue")?this._onceReturnValue:!0},i._getEvents=function(){return this._events||(this._events={})},e.noConflict=function(){return r.EventEmitter=s,e},"function"==typeof define&&define.amd?define("eventEmitter/EventEmitter",[],function(){return e}):"object"==typeof module&&module.exports?module.exports=e:this.EventEmitter=e}).call(this),function(e){function t(t){var n=e.event;return n.target=n.target||n.srcElement||t,n}var n=document.documentElement,i=function(){};n.addEventListener?i=function(e,t,n){e.addEventListener(t,n,!1)}:n.attachEvent&&(i=function(e,n,i){e[n+i]=i.handleEvent?function(){var n=t(e);i.handleEvent.call(i,n)}:function(){var n=t(e);i.call(e,n)},e.attachEvent("on"+n,e[n+i])});var r=function(){};n.removeEventListener?r=function(e,t,n){e.removeEventListener(t,n,!1)}:n.detachEvent&&(r=function(e,t,n){e.detachEvent("on"+t,e[t+n]);try{delete e[t+n]}catch(i){e[t+n]=void 0}});var s={bind:i,unbind:r};"function"==typeof define&&define.amd?define("eventie/eventie",s):e.eventie=s}(this),function(e,t){"use strict";"function"==typeof define&&define.amd?define(["eventEmitter/EventEmitter","eventie/eventie"],function(n,i){return t(e,n,i)}):"object"==typeof module&&module.exports?module.exports=t(e,require("wolfy87-eventemitter"),require("eventie")):e.imagesLoaded=t(e,e.EventEmitter,e.eventie)}(window,function(e,t,n){function i(e,t){for(var n in t)e[n]=t[n];return e}function r(e){return"[object Array]"==f.call(e)}function s(e){var t=[];if(r(e))t=e;else if("number"==typeof e.length)for(var n=0;n<e.length;n++)t.push(e[n]);else t.push(e);return t}function o(e,t,n){if(!(this instanceof o))return new o(e,t,n);"string"==typeof e&&(e=document.querySelectorAll(e)),this.elements=s(e),this.options=i({},this.options),"function"==typeof t?n=t:i(this.options,t),n&&this.on("always",n),this.getImages(),u&&(this.jqDeferred=new u.Deferred);var r=this;setTimeout(function(){r.check()})}function h(e){this.img=e}function a(e,t){this.url=e,this.element=t,this.img=new Image}var u=e.jQuery,c=e.console,f=Object.prototype.toString;o.prototype=new t,o.prototype.options={},o.prototype.getImages=function(){this.images=[];for(var e=0;e<this.elements.length;e++){var t=this.elements[e];this.addElementImages(t)}},o.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),this.options.background===!0&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&d[t]){for(var n=e.querySelectorAll("img"),i=0;i<n.length;i++){var r=n[i];this.addImage(r)}if("string"==typeof this.options.background){var s=e.querySelectorAll(this.options.background);for(i=0;i<s.length;i++){var o=s[i];this.addElementBackgroundImages(o)}}}};var d={1:!0,9:!0,11:!0};o.prototype.addElementBackgroundImages=function(e){for(var t=m(e),n=/url\(['"]*([^'"\)]+)['"]*\)/gi,i=n.exec(t.backgroundImage);null!==i;){var r=i&&i[1];r&&this.addBackground(r,e),i=n.exec(t.backgroundImage)}};var m=e.getComputedStyle||function(e){return e.currentStyle};return o.prototype.addImage=function(e){var t=new h(e);this.images.push(t)},o.prototype.addBackground=function(e,t){var n=new a(e,t);this.images.push(n)},o.prototype.check=function(){function e(e,n,i){setTimeout(function(){t.progress(e,n,i)})}var t=this;if(this.progressedCount=0,this.hasAnyBroken=!1,!this.images.length)return void this.complete();for(var n=0;n<this.images.length;n++){var i=this.images[n];i.once("progress",e),i.check()}},o.prototype.progress=function(e,t,n){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emit("progress",this,e,t),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&c&&c.log("progress: "+n,e,t)},o.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emit(e,this),this.emit("always",this),this.jqDeferred){var t=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[t](this)}},h.prototype=new t,h.prototype.check=function(){var e=this.getIsImageComplete();return e?void this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,n.bind(this.proxyImage,"load",this),n.bind(this.proxyImage,"error",this),n.bind(this.img,"load",this),n.bind(this.img,"error",this),void(this.proxyImage.src=this.img.src))},h.prototype.getIsImageComplete=function(){return this.img.complete&&void 0!==this.img.naturalWidth},h.prototype.confirm=function(e,t){this.isLoaded=e,this.emit("progress",this,this.img,t)},h.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},h.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},h.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},h.prototype.unbindEvents=function(){n.unbind(this.proxyImage,"load",this),n.unbind(this.proxyImage,"error",this),n.unbind(this.img,"load",this),n.unbind(this.img,"error",this)},a.prototype=new h,a.prototype.check=function(){n.bind(this.img,"load",this),n.bind(this.img,"error",this),this.img.src=this.url;var e=this.getIsImageComplete();e&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},a.prototype.unbindEvents=function(){n.unbind(this.img,"load",this),n.unbind(this.img,"error",this)},a.prototype.confirm=function(e,t){this.isLoaded=e,this.emit("progress",this,this.element,t)},o.makeJQueryPlugin=function(t){t=t||e.jQuery,t&&(u=t,u.fn.imagesLoaded=function(e,t){var n=new o(this,e,t);return n.jqDeferred.promise(u(this))})},o.makeJQueryPlugin(),o});
languages/da_DK.mo ADDED
Binary file
languages/da_DK.po ADDED
@@ -0,0 +1,5410 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-28 19:05+0100\n"
6
+ "PO-Revision-Date: 2015-11-02 10:00+0100\n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
+ "X-Generator: Poedit 1.8.6\n"
13
+ "X-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
15
+ "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
16
+ "_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: ..\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "Last-Translator: Torben Heikel Vinther <torben@webfronten.dk>\n"
20
+ "Language: da_DK\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+
23
+ #: classes/class-fl-builder-admin-settings.php:116
24
+ #: includes/global-settings.php:4
25
+ #, php-format
26
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
27
+ msgid "%s Settings"
28
+ msgstr "%s indstillinger"
29
+
30
+ #: classes/class-fl-builder-admin-settings.php:133
31
+ msgid "Settings updated!"
32
+ msgstr "Indstillinger er opdateret!"
33
+
34
+ #: classes/class-fl-builder-admin-settings.php:147
35
+ msgid "License"
36
+ msgstr "Licens"
37
+
38
+ #: classes/class-fl-builder-admin-settings.php:151
39
+ #: includes/admin-settings-upgrade.php:3
40
+ msgid "Upgrade"
41
+ msgstr "Opgrader"
42
+
43
+ #: classes/class-fl-builder-admin-settings.php:155
44
+ #: includes/global-settings.php:90
45
+ msgid "Modules"
46
+ msgstr "Moduler"
47
+
48
+ #: classes/class-fl-builder-admin-settings.php:159
49
+ #: classes/class-fl-builder.php:668
50
+ msgid "Templates"
51
+ msgstr "Skabeloner"
52
+
53
+ #: classes/class-fl-builder-admin-settings.php:163
54
+ #: includes/admin-settings-post-types.php:3
55
+ msgid "Post Types"
56
+ msgstr "Indlægstyper"
57
+
58
+ #: classes/class-fl-builder-admin-settings.php:167
59
+ #: modules/icon-group/icon-group.php:27
60
+ #: modules/post-carousel/post-carousel.php:275
61
+ #: modules/post-grid/post-grid.php:257
62
+ msgid "Icons"
63
+ msgstr "Ikoner"
64
+
65
+ #: classes/class-fl-builder-admin-settings.php:171
66
+ msgid "Editing"
67
+ msgstr "Redigerer"
68
+
69
+ #: classes/class-fl-builder-admin-settings.php:175
70
+ #: includes/admin-settings-branding.php:3
71
+ msgid "Branding"
72
+ msgstr "Branding"
73
+
74
+ #: classes/class-fl-builder-admin-settings.php:179
75
+ msgid "Help Button"
76
+ msgstr "Hjælpknap"
77
+
78
+ #: classes/class-fl-builder-admin-settings.php:183
79
+ #: includes/admin-settings-cache.php:3
80
+ msgid "Cache"
81
+ msgstr "Cache"
82
+
83
+ #: classes/class-fl-builder-admin-settings.php:187
84
+ #: includes/admin-settings-uninstall.php:3
85
+ #: includes/admin-settings-uninstall.php:15
86
+ msgid "Uninstall"
87
+ msgstr "Afinstaller"
88
+
89
+ #: classes/class-fl-builder-admin-settings.php:439
90
+ msgid "Error! You must have at least one icon set enabled."
91
+ msgstr "Fejl! Du skal have mindst ét ikonsæt aktiveret."
92
+
93
+ #: classes/class-fl-builder-admin-settings.php:481
94
+ msgid "Error! Could not unzip file."
95
+ msgstr "Fejl! Kunne ikke udpakke fil."
96
+
97
+ #: classes/class-fl-builder-admin-settings.php:515
98
+ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
99
+ msgstr "Fejl! Venligst overfør et ikonsæt fra enten Icomoon eller Fontello."
100
+
101
+ #: classes/class-fl-builder-admin-settings.php:620
102
+ msgid "Error! Please enter an iframe for the video embed code."
103
+ msgstr "Fejl! Venligst indtast en iframe for videoens indlejringskode."
104
+
105
+ #: classes/class-fl-builder-admin-settings.php:638
106
+ msgid "Error! You must have at least one feature of the help button enabled."
107
+ msgstr "Fejl! Du skal have mindst en af hjælpknappens features aktiveret."
108
+
109
+ #: classes/class-fl-builder-admin.php:45
110
+ #, php-format
111
+ msgid ""
112
+ "This version of the <strong>Page Builder</strong> plugin is not compatible "
113
+ "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
114
+ "of this plugin."
115
+ msgstr ""
116
+ "Denne version af <strong>Page Builder</strong>-pluginnet er ikke kompatibelt "
117
+ "med WordPress Multisite. <a%s>Venligst opgrader</a> til Multisiteversionen "
118
+ "af dette plugin."
119
+
120
+ #: classes/class-fl-builder-admin.php:55
121
+ msgid ""
122
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
123
+ "greater. Please update WordPress before activating the plugin."
124
+ msgstr ""
125
+ "<strong>Page Builder</strong>-pluginnet kræver WordPress version 3.5 eller "
126
+ "senere. Venligst opgrader WordPress før du aktiverer pluginnet."
127
+
128
+ #: classes/class-fl-builder-admin.php:112
129
+ #, php-format
130
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
131
+ msgstr ""
132
+ "Page Builder aktiveret! <a%s>Klik her</a> for at aktivere fjernopdateringer."
133
+
134
+ #: classes/class-fl-builder-admin.php:238
135
+ msgctxt "Plugin action link label."
136
+ msgid "Upgrade"
137
+ msgstr "Opgrader"
138
+
139
+ #: classes/class-fl-builder-admin.php:253
140
+ #: classes/class-fl-builder-model.php:4077
141
+ msgid "Page Builder"
142
+ msgstr "Page Builder"
143
+
144
+ #: classes/class-fl-builder-model.php:1756
145
+ #, php-format
146
+ msgctxt "%s stands for the module filename"
147
+ msgid ""
148
+ "A module with the filename %s.php already exists! Please namespace your "
149
+ "module filenames to ensure compatibility with Beaver Builder."
150
+ msgstr ""
151
+ "Et modul med filnavnet %s.php eksisterer allerede! Venligst namespace dine "
152
+ "modulfilnavne for at sikre kompatibilitet med Beaver Builder."
153
+
154
+ #: classes/class-fl-builder-model.php:1807
155
+ #: classes/class-fl-builder-model.php:1868 modules/heading/heading.php:16
156
+ #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
157
+ #: modules/separator/separator.php:16 modules/video/video.php:21
158
+ msgid "Basic Modules"
159
+ msgstr "Basismoduler"
160
+
161
+ #: classes/class-fl-builder-model.php:1808
162
+ #: classes/class-fl-builder-model.php:1869 modules/accordion/accordion.php:16
163
+ #: modules/button/button.php:16 modules/callout/callout.php:16
164
+ #: modules/contact-form/contact-form.php:16
165
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
166
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
167
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
168
+ #: modules/map/map.php:16 modules/menu/menu.php:16
169
+ #: modules/post-carousel/post-carousel.php:16
170
+ #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
171
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
172
+ #: modules/slideshow/slideshow.php:16
173
+ #: modules/social-buttons/social-buttons.php:16
174
+ #: modules/subscribe-form/subscribe-form.php:20 modules/tabs/tabs.php:16
175
+ #: modules/testimonials/testimonials.php:16
176
+ #: modules/woocommerce/woocommerce.php:18
177
+ msgid "Advanced Modules"
178
+ msgstr "Avancerede moduler"
179
+
180
+ #: classes/class-fl-builder-model.php:1809
181
+ #: classes/class-fl-builder-model.php:1870
182
+ msgid "Other Modules"
183
+ msgstr "Andre moduler"
184
+
185
+ #: classes/class-fl-builder-model.php:1810
186
+ #: classes/class-fl-builder-model.php:1871
187
+ #: includes/admin-settings-modules.php:32 includes/ui-panel.php:56
188
+ #: modules/widget/widget.php:16
189
+ msgid "WordPress Widgets"
190
+ msgstr "WordPress widgets"
191
+
192
+ #: classes/class-fl-builder-model.php:2535
193
+ #, php-format
194
+ msgctxt "%s stands for post/page title."
195
+ msgid "Copy of %s"
196
+ msgstr "Kopi af %s"
197
+
198
+ #: classes/class-fl-builder-model.php:3014
199
+ msgctxt "Default user template category."
200
+ msgid "Uncategorized"
201
+ msgstr "Ukategoriseret"
202
+
203
+ #: classes/class-fl-builder-model.php:4034
204
+ msgid "Home Pages"
205
+ msgstr "Forsider"
206
+
207
+ #: classes/class-fl-builder-model.php:4035
208
+ msgid "Content Pages"
209
+ msgstr "Indholdssider"
210
+
211
+ #: classes/class-fl-builder-photo.php:95 classes/class-fl-builder-photo.php:100
212
+ msgctxt "Image size."
213
+ msgid "Full Size"
214
+ msgstr "Fuld størrelse"
215
+
216
+ #: classes/class-fl-builder-photo.php:101
217
+ msgctxt "Image size."
218
+ msgid "Large"
219
+ msgstr "Stor"
220
+
221
+ #: classes/class-fl-builder-photo.php:102
222
+ msgctxt "Image size."
223
+ msgid "Medium"
224
+ msgstr "Medium"
225
+
226
+ #: classes/class-fl-builder-photo.php:103
227
+ msgctxt "Image size."
228
+ msgid "Thumbnail"
229
+ msgstr "Thumbnail"
230
+
231
+ #: classes/class-fl-builder-service-activecampaign.php:69
232
+ msgid "Error: You must provide an API URL."
233
+ msgstr "Fejl: Du må angive en API URL."
234
+
235
+ #: classes/class-fl-builder-service-activecampaign.php:73
236
+ #: classes/class-fl-builder-service-campaign-monitor.php:55
237
+ #: classes/class-fl-builder-service-constant-contact.php:48
238
+ #: classes/class-fl-builder-service-getresponse.php:67
239
+ #: classes/class-fl-builder-service-hatchbuck.php:48
240
+ #: classes/class-fl-builder-service-infusionsoft.php:79
241
+ #: classes/class-fl-builder-service-madmimi.php:73
242
+ #: classes/class-fl-builder-service-mailchimp.php:67
243
+ msgid "Error: You must provide an API key."
244
+ msgstr "Fejl: Du må angive en API nøgle."
245
+
246
+ #: classes/class-fl-builder-service-activecampaign.php:81
247
+ msgid "Error: Please check your API URL and API key."
248
+ msgstr "Fejl: Venligst kontroller din API URL og API nøgle."
249
+
250
+ #: classes/class-fl-builder-service-activecampaign.php:108
251
+ msgid "API URL"
252
+ msgstr "API URL"
253
+
254
+ #: classes/class-fl-builder-service-activecampaign.php:109
255
+ msgid ""
256
+ "Your API url can be found in your ActiveCampaign account under My Settings > "
257
+ "API."
258
+ msgstr ""
259
+ "Du kan finde din API URL i din ActiveCampaign konto under Mine Indstillinger "
260
+ "> API."
261
+
262
+ #: classes/class-fl-builder-service-activecampaign.php:119
263
+ #: classes/class-fl-builder-service-campaign-monitor.php:88
264
+ #: classes/class-fl-builder-service-constant-contact.php:88
265
+ #: classes/class-fl-builder-service-getresponse.php:100
266
+ #: classes/class-fl-builder-service-hatchbuck.php:87
267
+ #: classes/class-fl-builder-service-infusionsoft.php:129
268
+ #: classes/class-fl-builder-service-madmimi.php:121
269
+ #: classes/class-fl-builder-service-mailchimp.php:100
270
+ msgid "API Key"
271
+ msgstr "API nøgle"
272
+
273
+ #: classes/class-fl-builder-service-activecampaign.php:120
274
+ msgid ""
275
+ "Your API key can be found in your ActiveCampaign account under My Settings > "
276
+ "API."
277
+ msgstr ""
278
+ "Du kan finde din API nøgle i din ActiveCampaign konto under Mine "
279
+ "Indstillinger > API."
280
+
281
+ #: classes/class-fl-builder-service-activecampaign.php:169
282
+ #: classes/class-fl-builder-service-aweber.php:182
283
+ #: classes/class-fl-builder-service-campaign-monitor.php:148
284
+ #: classes/class-fl-builder-service-campaign-monitor.php:199
285
+ #: classes/class-fl-builder-service-constant-contact.php:156
286
+ #: classes/class-fl-builder-service-getresponse.php:154
287
+ #: classes/class-fl-builder-service-icontact.php:207
288
+ #: classes/class-fl-builder-service-infusionsoft.php:204
289
+ #: classes/class-fl-builder-service-madmimi.php:178
290
+ #: classes/class-fl-builder-service-mailchimp.php:177
291
+ #: classes/class-fl-builder-service-mailpoet.php:92
292
+ #: classes/class-fl-builder-service-sendinblue.php:161
293
+ #: classes/class-fl-builder-services.php:288 includes/service-settings.php:21
294
+ #: modules/woocommerce/woocommerce.php:60
295
+ msgid "Choose..."
296
+ msgstr "Vælg..."
297
+
298
+ #: classes/class-fl-builder-service-activecampaign.php:181
299
+ #: classes/class-fl-builder-service-aweber.php:192
300
+ #: classes/class-fl-builder-service-campaign-monitor.php:209
301
+ #: classes/class-fl-builder-service-constant-contact.php:166
302
+ #: classes/class-fl-builder-service-getresponse.php:164
303
+ #: classes/class-fl-builder-service-icontact.php:217
304
+ #: classes/class-fl-builder-service-infusionsoft.php:214
305
+ #: classes/class-fl-builder-service-madmimi.php:188
306
+ #: classes/class-fl-builder-service-mailchimp.php:187
307
+ #: classes/class-fl-builder-service-mailpoet.php:102
308
+ #: classes/class-fl-builder-service-sendinblue.php:171
309
+ msgctxt "An email list from a third party provider."
310
+ msgid "List"
311
+ msgstr "Liste"
312
+
313
+ #: classes/class-fl-builder-service-activecampaign.php:208
314
+ msgid ""
315
+ "There was an error subscribing to ActiveCampaign. The account is no longer "
316
+ "connected."
317
+ msgstr ""
318
+ "Der opstod en fejl under abonneringsprocessen til ActiveCampaign. Kontoen er "
319
+ "ikke længere forbundet."
320
+
321
+ #: classes/class-fl-builder-service-activecampaign.php:239
322
+ msgid "Error: Invalid API data."
323
+ msgstr "Fejl: Ugyldig API data."
324
+
325
+ #: classes/class-fl-builder-service-aweber.php:72
326
+ msgid "Error: You must provide an Authorization Code."
327
+ msgstr "Fejl: Du skal angive en autorisationskode."
328
+
329
+ #: classes/class-fl-builder-service-aweber.php:76
330
+ msgid "Error: Please enter a valid Authorization Code."
331
+ msgstr "Fejl: Venligst indtast en gyldig autorisationskode."
332
+
333
+ #: classes/class-fl-builder-service-aweber.php:127
334
+ msgid "Authorization Code"
335
+ msgstr "Autorisationskode"
336
+
337
+ #: classes/class-fl-builder-service-aweber.php:128
338
+ #, php-format
339
+ msgid ""
340
+ "Please register this website with AWeber to get your Authorization Code. <a"
341
+ "%s>Register Now</a>"
342
+ msgstr ""
343
+ "Venligst registrer denne webside hos AWeber for at modtage din "
344
+ "autorisationskode. <a%s>Registrer nu</a>"
345
+
346
+ #: classes/class-fl-builder-service-aweber.php:219
347
+ msgid ""
348
+ "There was an error subscribing to AWeber. The account is no longer connected."
349
+ msgstr ""
350
+ "Der opstod en fejl under abonneringsprocessen til AWeber. Kontoen er ikke "
351
+ "længere forbundet."
352
+
353
+ #: classes/class-fl-builder-service-aweber.php:242
354
+ msgid "There was an error connecting to AWeber. Please try again."
355
+ msgstr "Der opstod en fejl under tilslutningen til AWeber. Venligst prøv igen."
356
+
357
+ #: classes/class-fl-builder-service-aweber.php:247
358
+ #, php-format
359
+ msgid "There was an error subscribing to AWeber. %s"
360
+ msgstr "Der opstod en fejl under abonneringsprocessen til AWeber. %s"
361
+
362
+ #: classes/class-fl-builder-service-campaign-monitor.php:67
363
+ #: classes/class-fl-builder-service-campaign-monitor.php:129
364
+ #: classes/class-fl-builder-service-getresponse.php:76
365
+ #: classes/class-fl-builder-service-getresponse.php:132
366
+ #: classes/class-fl-builder-service-hatchbuck.php:63
367
+ msgid "Error: Please check your API key."
368
+ msgstr "Fejl: Venligst kontroller din API nøgle."
369
+
370
+ #: classes/class-fl-builder-service-campaign-monitor.php:89
371
+ msgid ""
372
+ "Your API key can be found in your Campaign Monitor account under Account "
373
+ "Settings > API Key."
374
+ msgstr ""
375
+ "Du kan finde din API nøgle i din Campaign Monitor konto under Konto "
376
+ "Indstillinger > API nøgle"
377
+
378
+ #: classes/class-fl-builder-service-campaign-monitor.php:158
379
+ msgctxt "A client account in Campaign Monitor."
380
+ msgid "Client"
381
+ msgstr "Klient"
382
+
383
+ #: classes/class-fl-builder-service-campaign-monitor.php:236
384
+ msgid ""
385
+ "There was an error subscribing to Campaign Monitor. The account is no longer "
386
+ "connected."
387
+ msgstr ""
388
+ "Der opstod en fejl under abonneringsprocessen til Campaign Monitor. Kontoen "
389
+ "er ikke længere forbundet."
390
+
391
+ #: classes/class-fl-builder-service-campaign-monitor.php:253
392
+ msgid "There was an error subscribing to Campaign Monitor."
393
+ msgstr "Der opstod en fejl under abonneringsprocessen til Campaign Monitor."
394
+
395
+ #: classes/class-fl-builder-service-constant-contact.php:52
396
+ msgid "Error: You must provide an access token."
397
+ msgstr "Fejl: Du skal angive en adgangstoken"
398
+
399
+ #: classes/class-fl-builder-service-constant-contact.php:61
400
+ #: classes/class-fl-builder-service-constant-contact.php:134
401
+ #, php-format
402
+ msgid "Error: Could not connect to Constant Contact. %s"
403
+ msgstr "Fejl: Kunne ikke forbinde til Constant Contact. %s"
404
+
405
+ #: classes/class-fl-builder-service-constant-contact.php:89
406
+ msgid "Your Constant Contact API key."
407
+ msgstr "Din Constant Contact API nøgle."
408
+
409
+ #: classes/class-fl-builder-service-constant-contact.php:99
410
+ msgid "Access Token"
411
+ msgstr "Adgangstoken"
412
+
413
+ #: classes/class-fl-builder-service-constant-contact.php:100
414
+ msgid "Your Constant Contact access token."
415
+ msgstr "Din Constant Contact adgangstoken."
416
+
417
+ #: classes/class-fl-builder-service-constant-contact.php:101
418
+ #, php-format
419
+ msgid ""
420
+ "You must register a <a%s>Developer Account</a> with Constant Contact to "
421
+ "obtain an API key and access token. Please see <a%s>Getting an API key</a> "
422
+ "for complete instructions."
423
+ msgstr ""
424
+ "Du skal registrere en <a%s>Developerkonto</a> hos Constant Contact for at "
425
+ "modtage en API nøgle og adgangstoken. Venligst se <a%s>Få en API nøgle</a> "
426
+ "for fulde instruktioner."
427
+
428
+ #: classes/class-fl-builder-service-constant-contact.php:193
429
+ msgid ""
430
+ "There was an error subscribing to Constant Contact. The account is no longer "
431
+ "connected."
432
+ msgstr ""
433
+ "Der opstod en fejl under abonneringsprocessen til Constant Contact. Kontoen "
434
+ "er ikke længere forbundet."
435
+
436
+ #: classes/class-fl-builder-service-constant-contact.php:245
437
+ #: classes/class-fl-builder-service-constant-contact.php:279
438
+ #, php-format
439
+ msgid "There was an error subscribing to Constant Contact. %s"
440
+ msgstr "Der opstod en fejl under abonneringsprocessen til Constant Contact. %s"
441
+
442
+ #: classes/class-fl-builder-service-email-address.php:39
443
+ #: classes/class-fl-builder-service-madmimi.php:69
444
+ msgid "Error: You must provide an email address."
445
+ msgstr "Fejl: Du skal angive en e-mailadresse."
446
+
447
+ #: classes/class-fl-builder-service-email-address.php:63
448
+ #: classes/class-fl-builder-service-madmimi.php:110
449
+ #: modules/subscribe-form/includes/frontend.php:11
450
+ msgid "Email Address"
451
+ msgstr "E-mailadresse"
452
+
453
+ #: classes/class-fl-builder-service-email-address.php:110
454
+ msgid "There was an error subscribing. The account is no longer connected."
455
+ msgstr ""
456
+ "Der opstod en fejl under abonneringsprocessen. Kontoen er ikke længere "
457
+ "forbundet."
458
+
459
+ #: classes/class-fl-builder-service-email-address.php:114
460
+ msgid "Subscribe Form Signup"
461
+ msgstr "Abonner form signup"
462
+
463
+ #: classes/class-fl-builder-service-email-address.php:115
464
+ #: modules/contact-form/includes/frontend.php:21
465
+ msgid "Email"
466
+ msgstr "E-mail"
467
+
468
+ #: classes/class-fl-builder-service-email-address.php:118
469
+ msgid "Name"
470
+ msgstr "Navn"
471
+
472
+ #: classes/class-fl-builder-service-email-address.php:124
473
+ #: modules/subscribe-form/subscribe-form.php:73
474
+ msgid "There was an error subscribing. Please try again."
475
+ msgstr "Der opstod en fejl under tilslutningen. Venligst prøv igen."
476
+
477
+ #: classes/class-fl-builder-service-getresponse.php:101
478
+ msgid ""
479
+ "Your API key can be found in your GetResponse account under My Account > "
480
+ "GetResponse API."
481
+ msgstr ""
482
+ "Du kan finde din API nøgle i din GetResponse konto under Mine Indstillinger "
483
+ "> API."
484
+
485
+ #: classes/class-fl-builder-service-getresponse.php:191
486
+ msgid ""
487
+ "There was an error subscribing to GetResponse. The account is no longer "
488
+ "connected."
489
+ msgstr ""
490
+ "Der opstod en fejl under abonneringsprocessen til GetResponse. Kontoen er "
491
+ "ikke længere forbundet."
492
+
493
+ #: classes/class-fl-builder-service-getresponse.php:202
494
+ #, php-format
495
+ msgid "There was an error subscribing to GetResponse. %s"
496
+ msgstr "Der opstod en fejl under abonneringsprocessen til GetResponse. %s"
497
+
498
+ #: classes/class-fl-builder-service-hatchbuck.php:88
499
+ msgid ""
500
+ "Your API key can be found in your Hatchbuck account under Account Settings > "
501
+ "Web API."
502
+ msgstr ""
503
+ "Du kan finde din API nøgle i din Hatchbuck konto under Konto Indstillinger > "
504
+ "Web API."
505
+
506
+ #: classes/class-fl-builder-service-hatchbuck.php:134
507
+ msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
508
+ msgid "Tag"
509
+ msgstr "Etikette"
510
+
511
+ #: classes/class-fl-builder-service-hatchbuck.php:161
512
+ msgid ""
513
+ "There was an error subscribing to Hatchbuck. The account is no longer "
514
+ "connected."
515
+ msgstr ""
516
+ "Der opstod en fejl under abonneringsprocessen til Hatchbuck. Kontoen er ikke "
517
+ "længere forbundet."
518
+
519
+ #: classes/class-fl-builder-service-hatchbuck.php:190
520
+ msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
521
+ msgstr ""
522
+ "Der opstod en fejl under abonneringsprocessen til Hatchbuck. API nøglen er "
523
+ "ugyldig."
524
+
525
+ #: classes/class-fl-builder-service-hatchbuck.php:200
526
+ #: classes/class-fl-builder-service-hatchbuck.php:232
527
+ msgid "There was an error subscribing to Hatchbuck."
528
+ msgstr "Der opstod en fejl under abonneringsprocessen til Hatchbuck."
529
+
530
+ #: classes/class-fl-builder-service-icontact.php:75
531
+ msgid "Error: You must provide a username."
532
+ msgstr "Fejl: Du skal angive et brugernavn."
533
+
534
+ #: classes/class-fl-builder-service-icontact.php:79
535
+ msgid "Error: You must provide a app ID."
536
+ msgstr "Fejl: Du skal angive et app ID."
537
+
538
+ #: classes/class-fl-builder-service-icontact.php:83
539
+ msgid "Error: You must provide a app password."
540
+ msgstr "Fejl: Du skal angive en app adgangskode."
541
+
542
+ #: classes/class-fl-builder-service-icontact.php:104
543
+ #: classes/class-fl-builder-service-icontact.php:188
544
+ #, php-format
545
+ msgid "Error: Could not connect to iContact. %s"
546
+ msgstr "Fejl: Kunne ikke forbinde til iContact. %s"
547
+
548
+ #: classes/class-fl-builder-service-icontact.php:125
549
+ msgid "Username"
550
+ msgstr "Brugernavn"
551
+
552
+ #: classes/class-fl-builder-service-icontact.php:126
553
+ msgid "Your iContact username."
554
+ msgstr "Dit iContact brugernavn."
555
+
556
+ #: classes/class-fl-builder-service-icontact.php:136
557
+ #: classes/class-fl-builder-service-infusionsoft.php:118
558
+ msgid "App ID"
559
+ msgstr "App ID"
560
+
561
+ #: classes/class-fl-builder-service-icontact.php:137
562
+ msgid "Your iContact app ID."
563
+ msgstr "Dit iContact app ID."
564
+
565
+ #: classes/class-fl-builder-service-icontact.php:147
566
+ msgid "App Password"
567
+ msgstr "App adgangskode"
568
+
569
+ #: classes/class-fl-builder-service-icontact.php:148
570
+ msgid "Your iContact app password."
571
+ msgstr "Din iContact app adgangskode"
572
+
573
+ #: classes/class-fl-builder-service-icontact.php:149
574
+ #, php-format
575
+ msgid ""
576
+ "You must <a%s>create an app</a> in iContact to obtain an app ID and "
577
+ "password. Please see <a%s>the iContact docs</a> for complete instructions."
578
+ msgstr ""
579
+ "Du skal <a%s>opret en app</a> i iContact for at modtage et app ID og "
580
+ "adgangskode. Venligst se <a%s> iContact docs for fulde instruktioner."
581
+
582
+ #: classes/class-fl-builder-service-icontact.php:244
583
+ msgid ""
584
+ "There was an error subscribing to iContact. The account is no longer "
585
+ "connected."
586
+ msgstr ""
587
+ "Der opstod en fejl under abonneringsprocessen til iContact. Kontoen er ikke "
588
+ "længere forbundet."
589
+
590
+ #: classes/class-fl-builder-service-icontact.php:280
591
+ #, php-format
592
+ msgid "There was an error subscribing to iContact. %s"
593
+ msgstr "Der opstod en fejl under abonneringsprocessen til iContact. %s"
594
+
595
+ #: classes/class-fl-builder-service-infusionsoft.php:49
596
+ #, php-format
597
+ msgid "There was an error connecting to Infusionsoft. %s"
598
+ msgstr "Der opstod en fejl under tilslutningen til Infusionsoft. %s"
599
+
600
+ #: classes/class-fl-builder-service-infusionsoft.php:83
601
+ msgid "Error: You must provide an app ID."
602
+ msgstr "Fejl: Du skal angive et app ID"
603
+
604
+ #: classes/class-fl-builder-service-infusionsoft.php:119
605
+ msgid ""
606
+ "Your App ID can be found in the URL for your account. For example, if the "
607
+ "URL for your account is myaccount.infusionsoft.com, your App ID would be "
608
+ "<strong>myaccount</strong>."
609
+ msgstr ""
610
+ "Du kan finde dit App ID i URL’en for din konto. For eksempel, hvis URL’en "
611
+ "for din konto er myaccount.infusionsoft.com, ville dit App ID være "
612
+ "<strong>myaccount</strong>."
613
+
614
+ #: classes/class-fl-builder-service-infusionsoft.php:130
615
+ msgid ""
616
+ "Your API key can be found in your Infusionsoft account under Admin > "
617
+ "Settings > Application > API > Encrypted Key."
618
+ msgstr ""
619
+ "Du kan finde din API nøgle i din Infusionsoft konto under Admin > "
620
+ "Indstillinger > Applikation > API > Krypteret Nøgle"
621
+
622
+ #: classes/class-fl-builder-service-infusionsoft.php:242
623
+ msgid ""
624
+ "There was an error subscribing to Infusionsoft. The account is no longer "
625
+ "connected."
626
+ msgstr ""
627
+ "Der opstod en fejl under abonneringsprocessen til Infusionsoft. Kontoen er "
628
+ "ikke længere forbundet."
629
+
630
+ #: classes/class-fl-builder-service-infusionsoft.php:291
631
+ #, php-format
632
+ msgid "There was an error subscribing to Infusionsoft. %s"
633
+ msgstr "Der opstod en fejl under abonneringsprocessen til Infusionsoft. %s"
634
+
635
+ #: classes/class-fl-builder-service-madmimi.php:83
636
+ msgid "Unable to connect to Mad Mimi. Please check your credentials."
637
+ msgstr ""
638
+ "Kunne ikke forbinde til Mad Mimi. Venligst kontroller dine kvalifikationer."
639
+
640
+ #: classes/class-fl-builder-service-madmimi.php:111
641
+ msgid "The email address associated with your Mad Mimi account."
642
+ msgstr "E-mailadressen er associeret med din Mad Mimi konto."
643
+
644
+ #: classes/class-fl-builder-service-madmimi.php:122
645
+ msgid ""
646
+ "Your API key can be found in your Mad Mimi account under Account > Settings "
647
+ "&amp; Billing > API."
648
+ msgstr ""
649
+ "Du kan finde din API nøgle i din Mad Mimi konto under Konto > Indstillinger "
650
+ "&amp; Billing > API."
651
+
652
+ #: classes/class-fl-builder-service-madmimi.php:156
653
+ msgid ""
654
+ "There was a problem retrieving your lists. Please check your API credentials."
655
+ msgstr ""
656
+ "Der opstod en fejl med at hente dine lister. Venligst kontroller dine API "
657
+ "kvalifikationer."
658
+
659
+ #: classes/class-fl-builder-service-madmimi.php:215
660
+ #: classes/class-fl-builder-service-madmimi.php:242
661
+ msgid ""
662
+ "There was an error subscribing to Mad Mimi. The account is no longer "
663
+ "connected."
664
+ msgstr ""
665
+ "Der opstod en fejl under abonneringsprocesen til Mad Mimi. Kontoen er ikke "
666
+ "længere forbundet."
667
+
668
+ #: classes/class-fl-builder-service-mailchimp.php:101
669
+ msgid ""
670
+ "Your API key can be found in your MailChimp account under Account > Extras > "
671
+ "API Keys."
672
+ msgstr ""
673
+ "Du kan finde din API nøgle i din MailChimp konto under Konto > Ekstra > API "
674
+ "nøgler."
675
+
676
+ #: classes/class-fl-builder-service-mailchimp.php:215
677
+ msgid "No Group"
678
+ msgstr "Ingen gruppe"
679
+
680
+ #: classes/class-fl-builder-service-mailchimp.php:227
681
+ msgctxt "MailChimp list group."
682
+ msgid "Groups"
683
+ msgstr "Grupper"
684
+
685
+ #: classes/class-fl-builder-service-mailchimp.php:255
686
+ msgid ""
687
+ "There was an error subscribing to MailChimp. The account is no longer "
688
+ "connected."
689
+ msgstr ""
690
+ "Der opstod en fejl under abonneringsprocesen til MailChimp. Kontoen er ikke "
691
+ "længere forbundet."
692
+
693
+ #: classes/class-fl-builder-service-mailchimp.php:352
694
+ #, php-format
695
+ msgid "There was an error subscribing to MailChimp. %s"
696
+ msgstr "Der opstod en fejl under abonneringsprocessen til MailChimp. %s"
697
+
698
+ #: classes/class-fl-builder-service-mailpoet.php:73
699
+ msgid "There was an error retrieveing your lists."
700
+ msgstr "Der opstod en fejl med at hente dine lister."
701
+
702
+ #: classes/class-fl-builder-service-mailpoet.php:129
703
+ msgid "There was an error subscribing. MailPoet is not installed."
704
+ msgstr ""
705
+ "Der opstod en fejl under abonneringsprocessen. MailPoet er ikke installeret."
706
+
707
+ #: classes/class-fl-builder-service-sendinblue.php:67
708
+ msgid "Error: You must provide an Access Key."
709
+ msgstr "Fejl: Du skal angive en adgangsnøgle."
710
+
711
+ #: classes/class-fl-builder-service-sendinblue.php:76
712
+ #: classes/class-fl-builder-service-sendinblue.php:136
713
+ msgid "There was an error connecting to SendinBlue. Please try again."
714
+ msgstr ""
715
+ "Der opstod en fejl under tilslutningen til SendinBlue. Venligst prøv igen."
716
+
717
+ #: classes/class-fl-builder-service-sendinblue.php:79
718
+ #: classes/class-fl-builder-service-sendinblue.php:139
719
+ #, php-format
720
+ msgid "Error: Could not connect to SendinBlue. %s"
721
+ msgstr "Fejl: Kunne ikke forbinde til SendinBlue. %s"
722
+
723
+ #: classes/class-fl-builder-service-sendinblue.php:103
724
+ msgid "Access Key"
725
+ msgstr "Adgangsnøgle"
726
+
727
+ #: classes/class-fl-builder-service-sendinblue.php:104
728
+ msgid ""
729
+ "Your Access Key can be found in your SendinBlue account under API & "
730
+ "Integration > Manager Your Keys > Version 2.0 > Access Key."
731
+ msgstr ""
732
+ "Du kan finde din adgangsnøgle i din SendinBlue konto under API & "
733
+ "Intergration > Administrer Dine Nøgler > Version 2.0 > Adgangsnøgle."
734
+
735
+ #: classes/class-fl-builder-service-sendinblue.php:198
736
+ msgid ""
737
+ "There was an error subscribing to SendinBlue. The account is no longer "
738
+ "connected."
739
+ msgstr ""
740
+ "Der opstod en fejl under abonneringsprocesen til SendinBlue. Kontoen er ikke "
741
+ "længere forbundet."
742
+
743
+ #: classes/class-fl-builder-service-sendinblue.php:220
744
+ msgid "There was an error subscribing to SendinBlue. Please try again."
745
+ msgstr ""
746
+ "Der opstod en fejl under abonneringsprocessen til SendinBlue. Venligst prøv "
747
+ "igen."
748
+
749
+ #: classes/class-fl-builder-service-sendinblue.php:223
750
+ #, php-format
751
+ msgid "Error: Could not subscribe to SendinBlue. %s"
752
+ msgstr "Fejl: Kunne ikke abonnerer til SendinBlue. %s"
753
+
754
+ #: classes/class-fl-builder-services.php:158
755
+ msgctxt "Third party service such as MailChimp."
756
+ msgid "Error: Missing service type."
757
+ msgstr "Fejl: Manglende tjenestetype."
758
+
759
+ #: classes/class-fl-builder-services.php:161
760
+ msgctxt "Connection data such as an API key."
761
+ msgid "Error: Missing service data."
762
+ msgstr "Fejl: Manglende tjenestedata."
763
+
764
+ #: classes/class-fl-builder-services.php:164
765
+ msgctxt "Account name for a third party service such as MailChimp."
766
+ msgid "Error: Missing account name."
767
+ msgstr "Fejl: Manglende brugernavn."
768
+
769
+ #: classes/class-fl-builder-services.php:173
770
+ msgctxt "Account name for a third party service such as MailChimp."
771
+ msgid "Error: An account with that name already exists."
772
+ msgstr "Fejl: En konto med samme navn eksisterer allerede."
773
+
774
+ #: classes/class-fl-builder-services.php:253
775
+ msgid "Account Name"
776
+ msgstr "Brugernavn"
777
+
778
+ #: classes/class-fl-builder-services.php:254
779
+ msgid ""
780
+ "Used to identify this connection within the accounts list and can be "
781
+ "anything you like."
782
+ msgstr ""
783
+ "Bruges til at identificere denne forbindelse på kontolisten og kan være lige "
784
+ "hvad du vil have."
785
+
786
+ #: classes/class-fl-builder-services.php:267
787
+ msgid "Connect"
788
+ msgstr "Forbind"
789
+
790
+ #: classes/class-fl-builder-services.php:295
791
+ msgid "Add Account..."
792
+ msgstr "Tilføj konto…"
793
+
794
+ #: classes/class-fl-builder-services.php:302
795
+ msgid "Account"
796
+ msgstr "Konto"
797
+
798
+ #: classes/class-fl-builder-template-settings.php:33
799
+ msgid "Page Builder Templates"
800
+ msgstr "Page Builder-skabeloner"
801
+
802
+ #: classes/class-fl-builder-templates-override.php:49
803
+ msgid "Error! Please enter a number for the site ID."
804
+ msgstr "Fejl! Venligst indtast et nummer for websted ID’et"
805
+
806
+ #: classes/class-fl-builder-templates-override.php:53
807
+ msgid "Error! A site with that ID doesn't exist."
808
+ msgstr "Fejl! Et websted med dette ID eksisterer ikke."
809
+
810
+ #: classes/class-fl-builder.php:617
811
+ #, php-format
812
+ msgid "Template: %s"
813
+ msgstr "Skabelon: %s"
814
+
815
+ #: classes/class-fl-builder.php:652
816
+ msgid "Upgrade!"
817
+ msgstr "Opgrader!"
818
+
819
+ #: classes/class-fl-builder.php:656
820
+ msgid "Buy Now!"
821
+ msgstr "Køb nu!"
822
+
823
+ #: classes/class-fl-builder.php:660 includes/ui-js-config.php:36
824
+ #: includes/ui-js-templates.php:100
825
+ msgid "Done"
826
+ msgstr "Færdig"
827
+
828
+ #: classes/class-fl-builder.php:664
829
+ msgid "Tools"
830
+ msgstr "Værktøjer"
831
+
832
+ #: classes/class-fl-builder.php:672 includes/ui-js-config.php:88
833
+ msgid "Add Content"
834
+ msgstr "Tilføj indhold"
835
+
836
+ #: classes/class-fl-builder.php:1032
837
+ #, php-format
838
+ msgctxt "Field name to add."
839
+ msgid "Add %s"
840
+ msgstr "Add %s"
841
+
842
+ #: classes/class-fl-builder.php:1126 classes/class-fl-builder.php:1128
843
+ msgctxt "Custom post type label."
844
+ msgid "Templates"
845
+ msgstr "Skabeloner"
846
+
847
+ #: classes/class-fl-builder.php:1127 classes/class-fl-builder.php:1129
848
+ msgctxt "Custom post type label."
849
+ msgid "Template"
850
+ msgstr "Skabelon"
851
+
852
+ #: classes/class-fl-builder.php:1130
853
+ msgctxt "Custom post type label."
854
+ msgid "Add New"
855
+ msgstr "Tilføj ny"
856
+
857
+ #: classes/class-fl-builder.php:1131
858
+ msgctxt "Custom post type label."
859
+ msgid "Add New Template"
860
+ msgstr "Tilføj ny skabelon"
861
+
862
+ #: classes/class-fl-builder.php:1132
863
+ msgctxt "Custom post type label."
864
+ msgid "New Template"
865
+ msgstr "Ny skabelon"
866
+
867
+ #: classes/class-fl-builder.php:1133
868
+ msgctxt "Custom post type label."
869
+ msgid "Edit Template"
870
+ msgstr "Rediger skabelon"
871
+
872
+ #: classes/class-fl-builder.php:1134
873
+ msgctxt "Custom post type label."
874
+ msgid "View Template"
875
+ msgstr "Vis skabelon"
876
+
877
+ #: classes/class-fl-builder.php:1135
878
+ msgctxt "Custom post type label."
879
+ msgid "All Templates"
880
+ msgstr "Alle skabeloner"
881
+
882
+ #: classes/class-fl-builder.php:1136
883
+ msgctxt "Custom post type label."
884
+ msgid "Search Templates"
885
+ msgstr "Søg i skabeloner"
886
+
887
+ #: classes/class-fl-builder.php:1137
888
+ msgctxt "Custom post type label."
889
+ msgid "Parent Templates:"
890
+ msgstr "Forælderskabeloner:"
891
+
892
+ #: classes/class-fl-builder.php:1138
893
+ msgctxt "Custom post type label."
894
+ msgid "No templates found."
895
+ msgstr "Ingen skabeloner fundet."
896
+
897
+ #: classes/class-fl-builder.php:1139
898
+ msgctxt "Custom post type label."
899
+ msgid "No templates found in Trash."
900
+ msgstr "Ingen skabeloner fundet i Skraldespand."
901
+
902
+ #: classes/class-fl-builder.php:1153 classes/class-fl-builder.php:1163
903
+ msgctxt "Custom taxonomy label."
904
+ msgid "Categories"
905
+ msgstr "Kategorier"
906
+
907
+ #: classes/class-fl-builder.php:1154
908
+ msgctxt "Custom taxonomy label."
909
+ msgid "Category"
910
+ msgstr "Kategori"
911
+
912
+ #: classes/class-fl-builder.php:1155
913
+ msgctxt "Custom taxonomy label."
914
+ msgid "Search Categories"
915
+ msgstr "Søg i kategorier"
916
+
917
+ #: classes/class-fl-builder.php:1156
918
+ msgctxt "Custom taxonomy label."
919
+ msgid "All Categories"
920
+ msgstr "Alle kategorier"
921
+
922
+ #: classes/class-fl-builder.php:1157
923
+ msgctxt "Custom taxonomy label."
924
+ msgid "Parent Category"
925
+ msgstr "Forælderkategorier"
926
+
927
+ #: classes/class-fl-builder.php:1158
928
+ msgctxt "Custom taxonomy label."
929
+ msgid "Parent Category:"
930
+ msgstr "Forælderkategori:"
931
+
932
+ #: classes/class-fl-builder.php:1159
933
+ msgctxt "Custom taxonomy label."
934
+ msgid "Edit Category"
935
+ msgstr "Rediger kategori"
936
+
937
+ #: classes/class-fl-builder.php:1160
938
+ msgctxt "Custom taxonomy label."
939
+ msgid "Update Category"
940
+ msgstr "Opdater kategori"
941
+
942
+ #: classes/class-fl-builder.php:1161
943
+ msgctxt "Custom taxonomy label."
944
+ msgid "Add New Category"
945
+ msgstr "Tilføj ny kategori"
946
+
947
+ #: classes/class-fl-builder.php:1162
948
+ msgctxt "Custom taxonomy label."
949
+ msgid "New Category Name"
950
+ msgstr "Tilføj kategorinavn"
951
+
952
+ #: classes/class-fl-builder.php:1172
953
+ msgctxt "Custom taxonomy label."
954
+ msgid "Type"
955
+ msgstr "Type"
956
+
957
+ #: classes/class-fl-builder.php:1448 classes/class-fl-builder.php:1527
958
+ #: classes/class-fl-builder.php:1735 includes/ui-js-templates.php:110
959
+ #: includes/ui-panel-node-templates.php:18
960
+ #: includes/ui-panel-node-templates.php:49
961
+ msgctxt "Indicator for global node templates."
962
+ msgid "Global"
963
+ msgstr "Global"
964
+
965
+ #: classes/class-fl-builder.php:1734
966
+ #, php-format
967
+ msgctxt "%s stands for module name."
968
+ msgid "%s Settings"
969
+ msgstr "%s Indstillinger"
970
+
971
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
972
+ msgid "Text Editor"
973
+ msgstr "Teksteditor"
974
+
975
+ #: includes/admin-posts.php:7
976
+ #, php-format
977
+ msgctxt ""
978
+ "The first %s stands for custom branded \"Page Builder\" name. The second %s "
979
+ "stands for the post type name."
980
+ msgid "%s is currently active for this %s."
981
+ msgstr "%s er i øjeblikket aktiv for dette %s."
982
+
983
+ #: includes/admin-posts.php:8
984
+ #, php-format
985
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
986
+ msgid "Launch %s"
987
+ msgstr "Launch %s"
988
+
989
+ #: includes/admin-settings-branding.php:7
990
+ msgid "White label the page builder by entering a custom name below."
991
+ msgstr ""
992
+ "White label sidebyggeren ved at indtaste et brugerdefineret navn nedenfor."
993
+
994
+ #: includes/admin-settings-branding.php:10
995
+ msgid ""
996
+ "Additionally, you may also add a custom icon by entering the URL of an image "
997
+ "below. Leave the field blank if you do not wish to use an icon."
998
+ msgstr ""
999
+ "Derudover kan du også tilføje et brugerdefineret ikon ved at indtaste URL’en "
1000
+ "af et billede nedenfor. Lad feltet forblive blankt, hvis du ikke ønsker at "
1001
+ "bruge et ikon."
1002
+
1003
+ #: includes/admin-settings-branding.php:14
1004
+ msgid "Save Branding"
1005
+ msgstr "Gem branding"
1006
+
1007
+ #: includes/admin-settings-cache.php:9
1008
+ msgid ""
1009
+ "A CSS and JavaScript file is dynamically generated and cached each time you "
1010
+ "create a new layout. Sometimes the cache needs to be refreshed when you "
1011
+ "migrate your site to another server or update to the latest version. If you "
1012
+ "are running into any issues, please try clearing the cache by clicking the "
1013
+ "button below."
1014
+ msgstr ""
1015
+ "En CSS og JavaScript fil er dynamisk genereret og cached hver gang, du "
1016
+ "opretter et nyt layout. Noglegange bliver cachen nødt til at blive "
1017
+ "opdateret, når du migrerer dit websted til en anden server eller opdaterer "
1018
+ "til den seneste version. Hvis der opstår problemer, venligst forsøg at rydde "
1019
+ "cachen ved at klikke på knappen nedenfor."
1020
+
1021
+ #: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14
1022
+ #: includes/admin-settings-uninstall.php:7
1023
+ #: includes/admin-settings-uninstall.php:10
1024
+ #: includes/updater/includes/form.php:31
1025
+ msgid "NOTE:"
1026
+ msgstr "BEMÆRK:"
1027
+
1028
+ #: includes/admin-settings-cache.php:12
1029
+ #: includes/admin-settings-uninstall.php:10
1030
+ #: includes/updater/includes/form.php:31
1031
+ msgid "This applies to all sites on the network."
1032
+ msgstr "Dette gælder for at websteder på netværket."
1033
+
1034
+ #: includes/admin-settings-cache.php:14
1035
+ msgid ""
1036
+ "This only applies to this site. Please visit the Network Admin Settings to "
1037
+ "clear the cache for all sites on the network."
1038
+ msgstr ""
1039
+ "Dette gælder kun for dette websted: Venligst besøg Netværksadmin-"
1040
+ "indstillinger for at rydde alle websteder på netværket."
1041
+
1042
+ #: includes/admin-settings-cache.php:19
1043
+ msgid "Clear Cache"
1044
+ msgstr "Ryd cache"
1045
+
1046
+ #: includes/admin-settings-editing.php:3
1047
+ msgid "Editing Settings"
1048
+ msgstr "Rediger indstillinger"
1049
+
1050
+ #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
1051
+ #: includes/admin-settings-modules.php:10
1052
+ #: includes/admin-settings-post-types.php:10
1053
+ #: includes/admin-settings-templates.php:16
1054
+ msgid "Override network settings?"
1055
+ msgstr "Overskriv netværksindstillinger?"
1056
+
1057
+ #: includes/admin-settings-editing.php:16
1058
+ msgid "Editing Capability"
1059
+ msgstr "Redigeringsevne"
1060
+
1061
+ #: includes/admin-settings-editing.php:17
1062
+ #, php-format
1063
+ msgid ""
1064
+ "Set the <a%s>capability</a> required for users to access advanced builder "
1065
+ "editing such as adding, deleting or moving modules."
1066
+ msgstr ""
1067
+ "Indstil <a%s>evne</a> som kræves for at brugere kan få adgang til avancerede "
1068
+ "byggerredigering som f.eks. at tilføje, slette eller flytte moduler."
1069
+
1070
+ #: includes/admin-settings-editing.php:21
1071
+ msgid "Global Templates Editing Capability"
1072
+ msgstr "Globale skabelonredigeringsevne"
1073
+
1074
+ #: includes/admin-settings-editing.php:22
1075
+ #, php-format
1076
+ msgid "Set the <a%s>capability</a> required for users to global templates."
1077
+ msgstr "Indstil <a%s>capability</a> krævet for brugere til globale skabeloner."
1078
+
1079
+ #: includes/admin-settings-editing.php:28
1080
+ msgid "Save Editing Settings"
1081
+ msgstr "Gem redigeringsindstillinger"
1082
+
1083
+ #: includes/admin-settings-help-button.php:8
1084
+ msgid "Help Button Settings"
1085
+ msgstr "Hjælpknap-indstillinger"
1086
+
1087
+ #: includes/admin-settings-help-button.php:17
1088
+ msgid "Enable Help Button"
1089
+ msgstr "Aktiver hjælpknap"
1090
+
1091
+ #: includes/admin-settings-help-button.php:23
1092
+ msgid "Help Tour"
1093
+ msgstr "Hjælptour"
1094
+
1095
+ #: includes/admin-settings-help-button.php:27
1096
+ msgid "Enable Help Tour"
1097
+ msgstr "Aktiver hjælptour"
1098
+
1099
+ #: includes/admin-settings-help-button.php:31
1100
+ msgid "Help Video"
1101
+ msgstr "Hjælpvideo"
1102
+
1103
+ #: includes/admin-settings-help-button.php:35
1104
+ msgid "Enable Help Video"
1105
+ msgstr "Aktiver hjælpvideo"
1106
+
1107
+ #: includes/admin-settings-help-button.php:39
1108
+ msgid "Help Video Embed Code"
1109
+ msgstr "Hjælpvideo indlejringskode"
1110
+
1111
+ #: includes/admin-settings-help-button.php:45
1112
+ msgid "Knowledge Base"
1113
+ msgstr "Vidensbase"
1114
+
1115
+ #: includes/admin-settings-help-button.php:49
1116
+ msgid "Enable Knowledge Base"
1117
+ msgstr "Aktiver vidensbase"
1118
+
1119
+ #: includes/admin-settings-help-button.php:53
1120
+ msgid "Knowledge Base URL"
1121
+ msgstr "Vidensbase URL"
1122
+
1123
+ #: includes/admin-settings-help-button.php:59
1124
+ msgid "Forums"
1125
+ msgstr "Forummer"
1126
+
1127
+ #: includes/admin-settings-help-button.php:63
1128
+ msgid "Enable Forums"
1129
+ msgstr "Aktiver forummer"
1130
+
1131
+ #: includes/admin-settings-help-button.php:67
1132
+ msgid "Forums URL"
1133
+ msgstr "Forummer URL"
1134
+
1135
+ #: includes/admin-settings-help-button.php:77
1136
+ msgid "Save Help Button Settings"
1137
+ msgstr "Gem hjælpknap-indstillinger"
1138
+
1139
+ #: includes/admin-settings-icons.php:3
1140
+ msgid "Icon Settings"
1141
+ msgstr "Ikonindstillinger"
1142
+
1143
+ #: includes/admin-settings-icons.php:13
1144
+ msgid "Icons for the main site must be managed in the network admin."
1145
+ msgstr "Ikoner for hovedsiden skal adminstreres i netværksadminen."
1146
+
1147
+ #: includes/admin-settings-icons.php:33
1148
+ #, php-format
1149
+ msgid ""
1150
+ "Enable or disable icon sets using the options below or upload a custom icon "
1151
+ "set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
1152
+ msgstr ""
1153
+ "Aktiver eller deaktiver iconsæt ved hjælp af funktionerne nedenfor eller "
1154
+ "overfør et brugerdefineret ikonsæt fra enten %s>Icomoon</a> eller <a"
1155
+ "%s>Fontello</a>."
1156
+
1157
+ #: includes/admin-settings-icons.php:48
1158
+ msgctxt "Plugin setup page: Delete icon set."
1159
+ msgid "Delete"
1160
+ msgstr "Slet"
1161
+
1162
+ #: includes/admin-settings-icons.php:59
1163
+ msgid "Upload Icon Set"
1164
+ msgstr "Overfør ikonsæt"
1165
+
1166
+ #: includes/admin-settings-icons.php:60
1167
+ msgid "Save Icon Settings"
1168
+ msgstr "Gem ikonindstillinger"
1169
+
1170
+ #: includes/admin-settings-js-config.php:4
1171
+ msgid "Select File"
1172
+ msgstr "Vælg fil"
1173
+
1174
+ #: includes/admin-settings-js-config.php:5
1175
+ msgid ""
1176
+ "Please type \"uninstall\" in the box below to confirm that you really want "
1177
+ "to uninstall the page builder and all of its data."
1178
+ msgstr ""
1179
+ "Venligst indtast “afinstaller” i boksen nedenfor for at bekræfte, at du vil "
1180
+ "afinstallere sidebyggeren og alt dens data."
1181
+
1182
+ #: includes/admin-settings-modules.php:3
1183
+ msgid "Enabled Modules"
1184
+ msgstr "Aktiver moduler"
1185
+
1186
+ #: includes/admin-settings-modules.php:16
1187
+ msgid "Check or uncheck modules below to enable or disable them."
1188
+ msgstr ""
1189
+ "Marker eller afmarker moduler nedenfor for at aktiver eller deaktiver dem."
1190
+
1191
+ #: includes/admin-settings-modules.php:26
1192
+ msgctxt "Plugin setup page: Modules."
1193
+ msgid "All"
1194
+ msgstr "Alle"
1195
+
1196
+ #: includes/admin-settings-modules.php:64
1197
+ msgid "Save Module Settings"
1198
+ msgstr "Gem modulindstillinger"
1199
+
1200
+ #: includes/admin-settings-post-types.php:18
1201
+ msgid ""
1202
+ "Enter a comma separated list of the post types you would like the builder to "
1203
+ "work with."
1204
+ msgstr ""
1205
+ "Indtast en kommasepareret liste af indlægstyperne du ønsker, at sidebyggeren "
1206
+ "skal arbejde med"
1207
+
1208
+ #: includes/admin-settings-post-types.php:19
1209
+ #: includes/admin-settings-post-types.php:39
1210
+ msgid "NOTE: Not all custom post types may be supported."
1211
+ msgstr "BEMÆRK: Ikke alle brugerdefinerede indlægstyper er understøttet"
1212
+
1213
+ #: includes/admin-settings-post-types.php:34
1214
+ msgid "Example: page, post, product"
1215
+ msgstr "Eksempel: side, indlæg, produkt"
1216
+
1217
+ #: includes/admin-settings-post-types.php:38
1218
+ msgid "Select the post types you would like the builder to work with."
1219
+ msgstr "Vælg den indlægstype du ønsker, at sidebyggeren skal arbejde med."
1220
+
1221
+ #: includes/admin-settings-post-types.php:70
1222
+ msgid "Save Post Types"
1223
+ msgstr "Gem indlægstyper"
1224
+
1225
+ #: includes/admin-settings-templates-override.php:1
1226
+ #: includes/admin-settings-templates-override.php:12
1227
+ msgid "Override Core Templates"
1228
+ msgstr "Overskriv kerneskabeloner"
1229
+
1230
+ #: includes/admin-settings-templates-override.php:3
1231
+ msgid ""
1232
+ "Enter the ID of a site on the network whose templates should override core "
1233
+ "builder templates. Leave this field blank if you do not wish to override "
1234
+ "core templates."
1235
+ msgstr ""
1236
+ "Indtast ID’et af et websted på netværket, hvis skabelon skulle overskrive "
1237
+ "kerne sidebygger skabeloner. Lad feltet forblive blankt, hvis du ikke ønsker "
1238
+ "at overskrive kerneskabeloner."
1239
+
1240
+ #: includes/admin-settings-templates-override.php:8
1241
+ msgid ""
1242
+ "Use this setting to override core builder templates with your templates."
1243
+ msgstr ""
1244
+ "Anvend denne indstilling til at overskrive kerne sidebygger skabeloner med "
1245
+ "dine skabeloner."
1246
+
1247
+ #: includes/admin-settings-templates-override.php:17
1248
+ msgid ""
1249
+ "You may also choose to show your row and module templates as sections within "
1250
+ "the builder panel. A new section will be created for each row or module "
1251
+ "category that you have defined."
1252
+ msgstr ""
1253
+ "Du kan også vælge at vise dine række- og modulskabeloner som sektioner inden "
1254
+ "for sidebyggerpanelet. En ny sektion vil blive oprettet for hver række- "
1255
+ "eller modulkategori, du har defineret."
1256
+
1257
+ #: includes/admin-settings-templates-override.php:21
1258
+ msgid "Show Row Templates?"
1259
+ msgstr "Vis rækkeskabeloner?"
1260
+
1261
+ #: includes/admin-settings-templates-override.php:27
1262
+ msgid "Show Module Templates?"
1263
+ msgstr "Vis modulskabeloner?"
1264
+
1265
+ #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1266
+ msgid "Template Settings"
1267
+ msgstr "Skabelonindstillinger"
1268
+
1269
+ #: includes/admin-settings-templates.php:22
1270
+ msgid "Enable Templates"
1271
+ msgstr "Aktiver skabeloner"
1272
+
1273
+ #: includes/admin-settings-templates.php:23
1274
+ msgid ""
1275
+ "Use this setting to enable or disable templates in the builder interface."
1276
+ msgstr ""
1277
+ "Anvend denne indstilling til at aktivere eller deaktivere skabeloner i "
1278
+ "siddebyggerinterfacet."
1279
+
1280
+ #: includes/admin-settings-templates.php:25
1281
+ msgid "Enable All Templates"
1282
+ msgstr "Aktiver alle skabeloner"
1283
+
1284
+ #: includes/admin-settings-templates.php:26
1285
+ msgid "Enable Core Templates Only"
1286
+ msgstr "Aktiver kun kerneskabeloner"
1287
+
1288
+ #: includes/admin-settings-templates.php:27
1289
+ msgid "Enable User Templates Only"
1290
+ msgstr "Aktiver kun brugerskabeloner"
1291
+
1292
+ #: includes/admin-settings-templates.php:28
1293
+ msgid "Disable All Templates"
1294
+ msgstr "Deaktiver alle skabeloner"
1295
+
1296
+ #: includes/admin-settings-templates.php:31
1297
+ #: includes/admin-settings-templates.php:36
1298
+ msgid "Enable Templates Admin"
1299
+ msgstr "Aktiver skabeloner admin"
1300
+
1301
+ #: includes/admin-settings-templates.php:32
1302
+ msgid "Use this setting to edit builder templates in the WordPress admin."
1303
+ msgstr ""
1304
+ "Anvend denne indstilling til at redigere sidebyggerskabeloner i WordPress "
1305
+ "adminen."
1306
+
1307
+ #: includes/admin-settings-templates.php:50
1308
+ msgid "Save Template Settings"
1309
+ msgstr "Gem skabelonindstillinger"
1310
+
1311
+ #: includes/admin-settings-uninstall.php:5
1312
+ msgid ""
1313
+ "Clicking the button below will uninstall the page builder plugin and delete "
1314
+ "all of the data associated with it. You can uninstall or deactivate the page "
1315
+ "builder from the plugins page instead if you do not wish to delete the data."
1316
+ msgstr ""
1317
+ "Ved at klikke på knappen nedenfor afinstalleres sidebygger-pluginnet og alt "
1318
+ "associeret data slettet. Du kan afinstallere eller deaktivere sidebyggeren "
1319
+ "fra plugin-siden i stedet, hvis du ikke ønsker at slette associeret data. "
1320
+
1321
+ #: includes/admin-settings-uninstall.php:7
1322
+ msgid ""
1323
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
1324
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
1325
+ "you want to reinstall it later. If you do, the builder will rebuild all of "
1326
+ "its data using those meta values."
1327
+ msgstr ""
1328
+ "Sidebyggeren sletter ikke indlægsmeta <code>_fl_builder_data</code>, "
1329
+ "<code>_fl_builder_draft</code> og <code>_fl_builder_enabled</code> i "
1330
+ "tilfælde af, at du ønsker at geninstallere det senere. Hvis du gør, vil "
1331
+ "sidebyggeren gendanne alt dens data ved hjælp af disse metaværdier."
1332
+
1333
+ #: includes/admin-settings-upgrade.php:5
1334
+ msgid ""
1335
+ "You are currently running the lite version of the Beaver Builder plugin. "
1336
+ "Upgrade today for access to premium features such as advanced modules, "
1337
+ "templates, support and more!"
1338
+ msgstr ""
1339
+ "Du kører i øjeblikket lite versionen af Beaver Builder pluginnet. Opgrader i "
1340
+ "dag for adgang til premium features som f.eks. avancerede moduler, "
1341
+ "skabeloner, support og mere!"
1342
+
1343
+ #: includes/admin-settings-upgrade.php:7
1344
+ msgid "Upgrade Now"
1345
+ msgstr "Opgrader nu"
1346
+
1347
+ #: includes/admin-settings-upgrade.php:9
1348
+ msgid "Learn More"
1349
+ msgstr "Lær mere"
1350
+
1351
+ #: includes/admin-templates-edit.php:3
1352
+ msgid "Edit Template"
1353
+ msgstr "Rediger skabelon"
1354
+
1355
+ #: includes/admin-templates-edit.php:8
1356
+ msgctxt "Template edit form field label. Template name."
1357
+ msgid "Name"
1358
+ msgstr "Navn"
1359
+
1360
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:306
1361
+ #: modules/post-carousel/post-carousel.php:255
1362
+ #: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:460
1363
+ msgid "Image"
1364
+ msgstr "Billede"
1365
+
1366
+ #: includes/admin-templates-edit.php:16 includes/column-settings.php:139
1367
+ #: includes/row-settings.php:179 includes/template-settings.php:23
1368
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
1369
+ #: modules/content-slider/content-slider.php:473
1370
+ #: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:626
1371
+ #: modules/post-slider/post-slider.php:645
1372
+ msgid "Position"
1373
+ msgstr "Position"
1374
+
1375
+ #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1376
+ msgctxt "Template edit form field label. Is template premium one?"
1377
+ msgid "Premium"
1378
+ msgstr "Premium"
1379
+
1380
+ #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
1381
+ #: includes/global-settings.php:18 includes/global-settings.php:110
1382
+ #: includes/global-settings.php:124 includes/node-template-settings.php:22
1383
+ #: includes/row-settings.php:331 includes/template-settings.php:31
1384
+ #: modules/accordion/accordion.php:90 modules/callout/callout.php:421
1385
+ #: modules/content-slider/content-slider.php:210
1386
+ #: modules/content-slider/content-slider.php:224
1387
+ #: modules/content-slider/content-slider.php:258
1388
+ #: modules/content-slider/content-slider.php:267
1389
+ #: modules/content-slider/content-slider.php:538
1390
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1391
+ #: modules/menu/menu.php:167 modules/menu/menu.php:358
1392
+ #: modules/post-carousel/post-carousel.php:139
1393
+ #: modules/post-carousel/post-carousel.php:155
1394
+ #: modules/post-carousel/post-carousel.php:182
1395
+ #: modules/post-carousel/post-carousel.php:191
1396
+ #: modules/post-carousel/post-carousel.php:232
1397
+ #: modules/post-carousel/post-carousel.php:283
1398
+ #: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:357
1399
+ #: modules/post-slider/post-slider.php:382
1400
+ #: modules/post-slider/post-slider.php:409
1401
+ #: modules/post-slider/post-slider.php:418
1402
+ #: modules/post-slider/post-slider.php:739 modules/slideshow/slideshow.php:323
1403
+ #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
1404
+ #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
1405
+ #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
1406
+ #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
1407
+ #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
1408
+ #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
1409
+ #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
1410
+ #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
1411
+ #: modules/slideshow/slideshow.php:650
1412
+ #: modules/social-buttons/social-buttons.php:111
1413
+ #: modules/social-buttons/social-buttons.php:120
1414
+ #: modules/social-buttons/social-buttons.php:129
1415
+ #: modules/testimonials/testimonials.php:85
1416
+ #: modules/testimonials/testimonials.php:124
1417
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1418
+ #: modules/video/video.php:123
1419
+ msgid "No"
1420
+ msgstr "Nej"
1421
+
1422
+ #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
1423
+ #: includes/global-settings.php:19 includes/global-settings.php:111
1424
+ #: includes/global-settings.php:125 includes/node-template-settings.php:23
1425
+ #: includes/row-settings.php:332 includes/template-settings.php:32
1426
+ #: modules/accordion/accordion.php:89 modules/callout/callout.php:422
1427
+ #: modules/content-slider/content-slider.php:211
1428
+ #: modules/content-slider/content-slider.php:225
1429
+ #: modules/content-slider/content-slider.php:259
1430
+ #: modules/content-slider/content-slider.php:268
1431
+ #: modules/content-slider/content-slider.php:539
1432
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1433
+ #: modules/menu/menu.php:168 modules/menu/menu.php:359
1434
+ #: modules/post-carousel/post-carousel.php:140
1435
+ #: modules/post-carousel/post-carousel.php:156
1436
+ #: modules/post-carousel/post-carousel.php:183
1437
+ #: modules/post-carousel/post-carousel.php:192
1438
+ #: modules/post-carousel/post-carousel.php:233
1439
+ #: modules/post-carousel/post-carousel.php:282
1440
+ #: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:358
1441
+ #: modules/post-slider/post-slider.php:383
1442
+ #: modules/post-slider/post-slider.php:410
1443
+ #: modules/post-slider/post-slider.php:419
1444
+ #: modules/post-slider/post-slider.php:740 modules/slideshow/slideshow.php:324
1445
+ #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
1446
+ #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
1447
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1448
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
1449
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
1450
+ #: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
1451
+ #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
1452
+ #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
1453
+ #: modules/slideshow/slideshow.php:651
1454
+ #: modules/social-buttons/social-buttons.php:110
1455
+ #: modules/social-buttons/social-buttons.php:119
1456
+ #: modules/social-buttons/social-buttons.php:128
1457
+ #: modules/testimonials/testimonials.php:86
1458
+ #: modules/testimonials/testimonials.php:125
1459
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1460
+ #: modules/video/video.php:124
1461
+ msgid "Yes"
1462
+ msgstr "Ja"
1463
+
1464
+ #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
1465
+ msgid "Category"
1466
+ msgstr "Kategori"
1467
+
1468
+ #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1469
+ msgctxt "Templates category label."
1470
+ msgid "Landing Pages"
1471
+ msgstr "Landingsside"
1472
+
1473
+ #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1474
+ msgctxt "Templates category label."
1475
+ msgid "Company Info"
1476
+ msgstr "Virksomhedsinformation"
1477
+
1478
+ #: includes/admin-templates-edit.php:40
1479
+ msgid "Update Template"
1480
+ msgstr "Opdater skabelon"
1481
+
1482
+ #: includes/admin-templates.php:3
1483
+ msgid "Page Builder Template"
1484
+ msgstr "Page Builder-skabelon"
1485
+
1486
+ #: includes/admin-templates.php:10
1487
+ msgctxt "Templates list column label."
1488
+ msgid "Name"
1489
+ msgstr "Navn"
1490
+
1491
+ #: includes/admin-templates.php:11
1492
+ msgctxt "Templates list column label."
1493
+ msgid "Category"
1494
+ msgstr "Kategori"
1495
+
1496
+ #: includes/admin-templates.php:12
1497
+ msgctxt "Templates list column label. Is template premium one?"
1498
+ msgid "Premium"
1499
+ msgstr "Premium"
1500
+
1501
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
1502
+ #: includes/template-selector.php:70
1503
+ msgid "Edit"
1504
+ msgstr "Rediger"
1505
+
1506
+ #: includes/admin-templates.php:27 includes/template-selector.php:71
1507
+ msgid "Delete"
1508
+ msgstr "Slet"
1509
+
1510
+ #: includes/admin-templates.php:40 includes/ui-js-config.php:32
1511
+ msgid "Do you really want to delete this template?"
1512
+ msgstr "Ønsker du virkelig at slette denne skabelon?"
1513
+
1514
+ #: includes/column-settings.php:4 includes/ui-js-templates.php:31
1515
+ #: includes/ui-js-templates.php:55
1516
+ msgid "Column Settings"
1517
+ msgstr "Kolonneindstillinger"
1518
+
1519
+ #: includes/column-settings.php:7 includes/module-settings.php:87
1520
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
1521
+ #: modules/button/button.php:117 modules/button/button.php:155
1522
+ #: modules/button/button.php:159 modules/callout/callout.php:242
1523
+ #: modules/callout/callout.php:554
1524
+ #: modules/content-slider/content-slider.php:426
1525
+ #: modules/content-slider/content-slider.php:667 modules/cta/cta.php:102
1526
+ #: modules/cta/cta.php:309 modules/heading/heading.php:69
1527
+ #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1528
+ #: modules/menu/menu.php:146 modules/post-carousel/post-carousel.php:389
1529
+ #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:579
1530
+ #: modules/pricing-table/pricing-table.php:43
1531
+ #: modules/pricing-table/pricing-table.php:155
1532
+ #: modules/separator/separator.php:72
1533
+ #: modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
1534
+ msgid "Style"
1535
+ msgstr "Stil"
1536
+
1537
+ #: includes/column-settings.php:14
1538
+ msgid "Column Width"
1539
+ msgstr "Kolonnebrede"
1540
+
1541
+ #: includes/column-settings.php:26 modules/button/button.php:66
1542
+ #: modules/callout/callout.php:226 modules/callout/callout.php:479
1543
+ #: modules/callout/callout.php:495
1544
+ #: modules/content-slider/content-slider.php:383
1545
+ #: modules/content-slider/content-slider.php:617 modules/cta/cta.php:85
1546
+ #: modules/cta/cta.php:222 modules/menu/menu.php:174
1547
+ #: modules/post-slider/post-slider.php:622
1548
+ msgid "Text"
1549
+ msgstr "Tekst"
1550
+
1551
+ #: includes/column-settings.php:30 includes/column-settings.php:93
1552
+ #: includes/column-settings.php:248 includes/row-settings.php:133
1553
+ #: includes/row-settings.php:427 modules/callout/callout.php:392
1554
+ #: modules/content-slider/content-slider.php:338
1555
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1556
+ #: modules/separator/separator.php:34
1557
+ msgid "Color"
1558
+ msgstr "Farve"
1559
+
1560
+ #: includes/column-settings.php:38 includes/row-settings.php:60
1561
+ #: modules/menu/menu.php:178 modules/post-carousel/post-carousel.php:401
1562
+ #: modules/post-slider/post-slider.php:699
1563
+ msgid "Link Color"
1564
+ msgstr "Linkfarve"
1565
+
1566
+ #: includes/column-settings.php:46 includes/row-settings.php:68
1567
+ #: modules/menu/menu.php:196 modules/post-carousel/post-carousel.php:406
1568
+ #: modules/post-slider/post-slider.php:715
1569
+ msgid "Link Hover Color"
1570
+ msgstr "Link hoverfarve"
1571
+
1572
+ #: includes/column-settings.php:54 includes/row-settings.php:76
1573
+ msgid "Heading Color"
1574
+ msgstr "Overskriftsfarve"
1575
+
1576
+ #: includes/column-settings.php:63 includes/row-settings.php:85
1577
+ #: modules/post-slider/post-slider.php:463
1578
+ msgid "Background"
1579
+ msgstr "Baggrund"
1580
+
1581
+ #: includes/column-settings.php:67 includes/column-settings.php:215
1582
+ #: includes/row-settings.php:89 includes/row-settings.php:394
1583
+ #: modules/callout/callout.php:475
1584
+ #: modules/content-slider/content-slider.php:332
1585
+ #: modules/content-slider/content-slider.php:379
1586
+ #: modules/content-slider/content-slider.php:597
1587
+ #: modules/content-slider/content-slider.php:739
1588
+ #: modules/slideshow/slideshow.php:347
1589
+ msgid "Type"
1590
+ msgstr "Type"
1591
+
1592
+ #: includes/column-settings.php:70 includes/row-settings.php:92
1593
+ #: modules/content-slider/content-slider.php:339
1594
+ msgctxt "Background type."
1595
+ msgid "None"
1596
+ msgstr "Ingen"
1597
+
1598
+ #: includes/column-settings.php:71 includes/row-settings.php:93
1599
+ msgctxt "Background type."
1600
+ msgid "Color"
1601
+ msgstr "Farve"
1602
+
1603
+ #: includes/column-settings.php:72 includes/row-settings.php:94
1604
+ msgctxt "Background type."
1605
+ msgid "Photo"
1606
+ msgstr "Foto"
1607
+
1608
+ #: includes/column-settings.php:89 includes/row-settings.php:129
1609
+ #: modules/button/button.php:124 modules/callout/callout.php:405
1610
+ #: modules/callout/callout.php:519
1611
+ #: modules/content-slider/content-slider.php:364
1612
+ #: modules/content-slider/content-slider.php:640 modules/cta/cta.php:198
1613
+ #: modules/cta/cta.php:274 modules/icon-group/icon-group.php:64
1614
+ #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
1615
+ msgid "Background Color"
1616
+ msgstr "Baggrundsfarve"
1617
+
1618
+ #: includes/column-settings.php:101 includes/column-settings.php:256
1619
+ #: includes/row-settings.php:141 includes/row-settings.php:435
1620
+ #: modules/separator/separator.php:44
1621
+ msgid "Opacity"
1622
+ msgstr "Gennemsigtighed"
1623
+
1624
+ #: includes/column-settings.php:113 includes/row-settings.php:153
1625
+ #: modules/content-slider/content-slider.php:360
1626
+ msgid "Background Photo"
1627
+ msgstr "Baggrundsfoto"
1628
+
1629
+ #: includes/column-settings.php:117 includes/row-settings.php:157
1630
+ #: includes/row-settings.php:345 modules/callout/callout.php:317
1631
+ #: modules/callout/callout.php:333 modules/callout/callout.php:337
1632
+ #: modules/content-slider/content-slider.php:336
1633
+ #: modules/content-slider/content-slider.php:405
1634
+ #: modules/content-slider/content-slider.php:755 modules/photo/photo.php:25
1635
+ #: modules/photo/photo.php:408
1636
+ msgid "Photo"
1637
+ msgstr "Foto"
1638
+
1639
+ #: includes/column-settings.php:124 includes/row-settings.php:164
1640
+ msgid "Repeat"
1641
+ msgstr "Gentag"
1642
+
1643
+ #: includes/column-settings.php:127 includes/row-settings.php:167
1644
+ msgctxt "Background repeat."
1645
+ msgid "None"
1646
+ msgstr "Ingen"
1647
+
1648
+ #: includes/column-settings.php:128 includes/row-settings.php:168
1649
+ msgctxt "Background repeat."
1650
+ msgid "Tile"
1651
+ msgstr "Flise/tile"
1652
+
1653
+ #: includes/column-settings.php:129 includes/row-settings.php:169
1654
+ msgctxt "Background repeat."
1655
+ msgid "Horizontal"
1656
+ msgstr "Vandret"
1657
+
1658
+ #: includes/column-settings.php:130 includes/row-settings.php:170
1659
+ msgctxt "Background repeat."
1660
+ msgid "Vertical"
1661
+ msgstr "Lodret"
1662
+
1663
+ #: includes/column-settings.php:132 includes/row-settings.php:172
1664
+ msgid ""
1665
+ "Repeat applies to how the image should display in the background. Choosing "
1666
+ "none will display the image as uploaded. Tile will repeat the image as many "
1667
+ "times as needed to fill the background horizontally and vertically. You can "
1668
+ "also specify the image to only repeat horizontally or vertically."
1669
+ msgstr ""
1670
+ "Gentag antyder hvordan billedet vises i baggrunden. Vælges ingen, vil "
1671
+ "billedet vises som overført. Flise/tile vil gentage billedet det antal "
1672
+ "gange, der er nødvendigt for at fylde baggrunden både vandret og lodret. Du "
1673
+ "kan også angive at billedet kun skal gentages vandret eller lodret."
1674
+
1675
+ #: includes/column-settings.php:142 includes/row-settings.php:182
1676
+ msgid "Left Top"
1677
+ msgstr "Venstre top"
1678
+
1679
+ #: includes/column-settings.php:143 includes/row-settings.php:183
1680
+ msgid "Left Center"
1681
+ msgstr "Venstre midt"
1682
+
1683
+ #: includes/column-settings.php:144 includes/row-settings.php:184
1684
+ msgid "Left Bottom"
1685
+ msgstr "Venstre bund"
1686
+
1687
+ #: includes/column-settings.php:145 includes/row-settings.php:185
1688
+ msgid "Right Top"
1689
+ msgstr "Højre top"
1690
+
1691
+ #: includes/column-settings.php:146 includes/row-settings.php:186
1692
+ msgid "Right Center"
1693
+ msgstr "Højre midt"
1694
+
1695
+ #: includes/column-settings.php:147 includes/row-settings.php:187
1696
+ msgid "Right Bottom"
1697
+ msgstr "Højre bund"
1698
+
1699
+ #: includes/column-settings.php:148 includes/row-settings.php:188
1700
+ msgid "Center Top"
1701
+ msgstr "Midt top"
1702
+
1703
+ #: includes/column-settings.php:149 includes/row-settings.php:189
1704
+ #: modules/button/button.php:227 modules/callout/callout.php:252
1705
+ #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1706
+ #: modules/heading/heading.php:90 modules/heading/heading.php:162
1707
+ #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1708
+ #: modules/menu/menu.php:158 modules/photo/photo.php:434
1709
+ #: modules/social-buttons/social-buttons.php:100
1710
+ msgid "Center"
1711
+ msgstr "Midt"
1712
+
1713
+ #: includes/column-settings.php:150 includes/row-settings.php:190
1714
+ msgid "Center Bottom"
1715
+ msgstr "Midt bund"
1716
+
1717
+ #: includes/column-settings.php:152 includes/row-settings.php:192
1718
+ msgid "Position will tell the image where it should sit in the background."
1719
+ msgstr "Position fortæller, hvor billedet vil blive vist i baggrunden."
1720
+
1721
+ #: includes/column-settings.php:159 includes/row-settings.php:199
1722
+ msgid "Attachment"
1723
+ msgstr "Vedhæftelse"
1724
+
1725
+ #: includes/column-settings.php:162 includes/row-settings.php:202
1726
+ #: modules/post-grid/post-grid.php:78
1727
+ msgid "Scroll"
1728
+ msgstr "Scroll"
1729
+
1730
+ #: includes/column-settings.php:163 includes/global-settings.php:69
1731
+ #: includes/global-settings.php:83 includes/row-settings.php:19
1732
+ #: includes/row-settings.php:37 includes/row-settings.php:203
1733
+ msgid "Fixed"
1734
+ msgstr "Fastgjort"
1735
+
1736
+ #: includes/column-settings.php:165 includes/row-settings.php:205
1737
+ msgid ""
1738
+ "Attachment will specify how the image reacts when scrolling a page. When "
1739
+ "scrolling is selected, the image will scroll with page scrolling. This is "
1740
+ "the default setting. Fixed will allow the image to scroll within the "
1741
+ "background if fill is selected in the scale setting."
1742
+ msgstr ""
1743
+ "Vedhæftelse angiver, hvordan billedet reagerer, når man scroller på siden. "
1744
+ "Når scrolling er valgt, vil billedet scrolle, når siden scrolles. Dette er "
1745
+ "en standardindstilling. Fastgjort tillader billedet at scrolle inden for "
1746
+ "baggrunden hvis fyld ud er valgt i skalerindstillingen."
1747
+
1748
+ #: includes/column-settings.php:172 includes/row-settings.php:212
1749
+ msgid "Scale"
1750
+ msgstr "Skaler"
1751
+
1752
+ #: includes/column-settings.php:175 includes/row-settings.php:215
1753
+ msgctxt "Background scale."
1754
+ msgid "None"
1755
+ msgstr "Ingen"
1756
+
1757
+ #: includes/column-settings.php:176 includes/row-settings.php:216
1758
+ msgid "Fit"
1759
+ msgstr "Tilpas"
1760
+
1761
+ #: includes/column-settings.php:177 includes/row-settings.php:217
1762
+ msgid "Fill"
1763
+ msgstr "Fyld ud"
1764
+
1765
+ #: includes/column-settings.php:179 includes/row-settings.php:219
1766
+ msgid ""
1767
+ "Scale applies to how the image should display in the background. You can "
1768
+ "select either fill or fit to the background."
1769
+ msgstr ""
1770
+ "Skaler antyder, hvordan billedet vises i baggrunden. Du kan vælge enten fyld "
1771
+ "ud eller tilpas til baggrunden."
1772
+
1773
+ #: includes/column-settings.php:187 includes/row-settings.php:366
1774
+ msgid "Background Overlay"
1775
+ msgstr "Baggrundsoverlay"
1776
+
1777
+ #: includes/column-settings.php:191 includes/row-settings.php:370
1778
+ msgid "Overlay Color"
1779
+ msgstr "Overlayfarve"
1780
+
1781
+ #: includes/column-settings.php:199 includes/row-settings.php:378
1782
+ msgid "Overlay Opacity"
1783
+ msgstr "Overlaysgennemsigtighed"
1784
+
1785
+ #: includes/column-settings.php:211 includes/row-settings.php:390
1786
+ msgid "Border"
1787
+ msgstr "Border"
1788
+
1789
+ #: includes/column-settings.php:217 includes/row-settings.php:396
1790
+ msgid ""
1791
+ "The type of border to use. Double borders must have a width of at least 3px "
1792
+ "to render properly."
1793
+ msgstr ""
1794
+ "Hvilken type border skal bruges. Dobbeltborders skal have en brede på mindst "
1795
+ "3px for at blive udført korrekt."
1796
+
1797
+ #: includes/column-settings.php:219 includes/row-settings.php:398
1798
+ msgctxt "Border type."
1799
+ msgid "None"
1800
+ msgstr "Ingen"
1801
+
1802
+ #: includes/column-settings.php:220 includes/row-settings.php:399
1803
+ #: modules/separator/separator.php:75
1804
+ msgctxt "Border type."
1805
+ msgid "Solid"
1806
+ msgstr "Solid"
1807
+
1808
+ #: includes/column-settings.php:221 includes/row-settings.php:400
1809
+ #: modules/separator/separator.php:76
1810
+ msgctxt "Border type."
1811
+ msgid "Dashed"
1812
+ msgstr "Dashed"
1813
+
1814
+ #: includes/column-settings.php:222 includes/row-settings.php:401
1815
+ #: modules/separator/separator.php:77
1816
+ msgctxt "Border type."
1817
+ msgid "Dotted"
1818
+ msgstr "Dotted"
1819
+
1820
+ #: includes/column-settings.php:223 includes/row-settings.php:402
1821
+ #: modules/separator/separator.php:78
1822
+ msgctxt "Border type."
1823
+ msgid "Double"
1824
+ msgstr "Dobbelt"
1825
+
1826
+ #: includes/column-settings.php:267 includes/row-settings.php:446
1827
+ msgid "Top Width"
1828
+ msgstr "Top brede"
1829
+
1830
+ #: includes/column-settings.php:279 includes/row-settings.php:458
1831
+ msgid "Bottom Width"
1832
+ msgstr "Bund brede"
1833
+
1834
+ #: includes/column-settings.php:291 includes/row-settings.php:470
1835
+ msgid "Left Width"
1836
+ msgstr "Venstre brede"
1837
+
1838
+ #: includes/column-settings.php:303 includes/row-settings.php:482
1839
+ msgid "Right Width"
1840
+ msgstr "Højre brede"
1841
+
1842
+ #: includes/column-settings.php:318 includes/module-settings.php:6
1843
+ #: includes/row-settings.php:497 modules/content-slider/content-slider.php:274
1844
+ msgid "Advanced"
1845
+ msgstr "Avancerede"
1846
+
1847
+ #: includes/column-settings.php:321 includes/global-settings.php:41
1848
+ #: includes/global-settings.php:94 includes/module-settings.php:9
1849
+ #: includes/row-settings.php:500
1850
+ msgid "Margins"
1851
+ msgstr "Margins"
1852
+
1853
+ #: includes/column-settings.php:325 includes/column-settings.php:378
1854
+ #: includes/module-settings.php:13 includes/row-settings.php:504
1855
+ #: includes/row-settings.php:557 modules/slideshow/slideshow.php:483
1856
+ msgid "Top"
1857
+ msgstr "Top"
1858
+
1859
+ #: includes/column-settings.php:337 includes/column-settings.php:390
1860
+ #: includes/module-settings.php:25 includes/row-settings.php:516
1861
+ #: includes/row-settings.php:569 modules/post-slider/post-slider.php:632
1862
+ #: modules/slideshow/slideshow.php:482
1863
+ msgid "Bottom"
1864
+ msgstr "Bund"
1865
+
1866
+ #: includes/column-settings.php:349 includes/column-settings.php:402
1867
+ #: includes/module-settings.php:37 includes/row-settings.php:528
1868
+ #: includes/row-settings.php:581 modules/button/button.php:228
1869
+ #: modules/callout/callout.php:253
1870
+ #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1871
+ #: modules/heading/heading.php:89 modules/heading/heading.php:161
1872
+ #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1873
+ #: modules/menu/menu.php:157 modules/photo/photo.php:433
1874
+ #: modules/post-slider/post-slider.php:630
1875
+ #: modules/post-slider/post-slider.php:649
1876
+ #: modules/social-buttons/social-buttons.php:101
1877
+ msgid "Left"
1878
+ msgstr "Venstre "
1879
+
1880
+ #: includes/column-settings.php:361 includes/column-settings.php:414
1881
+ #: includes/module-settings.php:49 includes/row-settings.php:540
1882
+ #: includes/row-settings.php:593 modules/button/button.php:229
1883
+ #: modules/callout/callout.php:254
1884
+ #: modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
1885
+ #: modules/heading/heading.php:91 modules/heading/heading.php:163
1886
+ #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
1887
+ #: modules/menu/menu.php:159 modules/photo/photo.php:435
1888
+ #: modules/post-slider/post-slider.php:631
1889
+ #: modules/post-slider/post-slider.php:650
1890
+ #: modules/social-buttons/social-buttons.php:102
1891
+ msgid "Right"
1892
+ msgstr "Højre"
1893
+
1894
+ #: includes/column-settings.php:374 includes/global-settings.php:49
1895
+ #: includes/row-settings.php:553 modules/button/button.php:242
1896
+ #: modules/callout/callout.php:609
1897
+ #: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
1898
+ #: modules/subscribe-form/subscribe-form.php:273
1899
+ msgid "Padding"
1900
+ msgstr "Padding"
1901
+
1902
+ #: includes/column-settings.php:427 includes/global-settings.php:103
1903
+ #: includes/module-settings.php:62 includes/row-settings.php:606
1904
+ msgid "Responsive Layout"
1905
+ msgstr "Respontivt layout "
1906
+
1907
+ #: includes/column-settings.php:431 includes/module-settings.php:66
1908
+ #: includes/row-settings.php:610 modules/slideshow/slideshow.php:298
1909
+ msgid "Display"
1910
+ msgstr "Vis"
1911
+
1912
+ #: includes/column-settings.php:433 includes/module-settings.php:68
1913
+ #: includes/row-settings.php:612
1914
+ msgid "Always"
1915
+ msgstr "Altid"
1916
+
1917
+ #: includes/column-settings.php:434 includes/module-settings.php:69
1918
+ #: includes/row-settings.php:613
1919
+ msgid "Large Devices Only"
1920
+ msgstr "Kun store enheder"
1921
+
1922
+ #: includes/column-settings.php:435 includes/module-settings.php:70
1923
+ #: includes/row-settings.php:614
1924
+ msgid "Large &amp; Medium Devices Only"
1925
+ msgstr "Store &amp; kun medium enheder"
1926
+
1927
+ #: includes/column-settings.php:436 includes/module-settings.php:71
1928
+ #: includes/row-settings.php:615
1929
+ msgid "Medium Devices Only"
1930
+ msgstr "Kun medium enheder"
1931
+
1932
+ #: includes/column-settings.php:437 includes/module-settings.php:72
1933
+ #: includes/row-settings.php:616
1934
+ msgid "Medium &amp; Small Devices Only"
1935
+ msgstr "Medium &amp; kun små enheder"
1936
+
1937
+ #: includes/column-settings.php:438 includes/module-settings.php:73
1938
+ #: includes/row-settings.php:617
1939
+ msgid "Small Devices Only"
1940
+ msgstr "Kun små enheder"
1941
+
1942
+ #: includes/column-settings.php:440
1943
+ msgid "Choose whether to show or hide this column at different device sizes."
1944
+ msgstr ""
1945
+ "Vælg hvorvidt denne kolonne skal vises eller skjules på forskellige "
1946
+ "enhedsstørrelser."
1947
+
1948
+ #: includes/column-settings.php:447
1949
+ msgid "Medium Device Width"
1950
+ msgstr "Medium enhedsstørrelse"
1951
+
1952
+ #: includes/column-settings.php:448
1953
+ msgid "The width of this column on medium devices such as tablets."
1954
+ msgstr "Breden af denne kolonne på medium enheder som f.eks. tablets."
1955
+
1956
+ #: includes/column-settings.php:450 includes/column-settings.php:478
1957
+ #: modules/callout/callout.php:284
1958
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
1959
+ #: modules/heading/heading.php:117 modules/heading/heading.php:144
1960
+ #: modules/heading/heading.php:174 modules/menu/menu.php:156
1961
+ #: modules/post-slider/post-slider.php:602
1962
+ msgid "Default"
1963
+ msgstr "Standard"
1964
+
1965
+ #: includes/column-settings.php:451 includes/column-settings.php:479
1966
+ #: modules/button/button.php:202 modules/callout/callout.php:285
1967
+ #: modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
1968
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145
1969
+ #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:603
1970
+ #: modules/social-buttons/social-buttons.php:74
1971
+ msgid "Custom"
1972
+ msgstr "Brugerdefineret"
1973
+
1974
+ #: includes/column-settings.php:464
1975
+ msgid "Custom Medium Device Width"
1976
+ msgstr "Brugerdefineret medium enhedsbrede"
1977
+
1978
+ #: includes/column-settings.php:475
1979
+ msgid "Small Device Width"
1980
+ msgstr "Lille enhedsbrede"
1981
+
1982
+ #: includes/column-settings.php:476
1983
+ msgid "The width of this column on small devices such as phones."
1984
+ msgstr "Breden af denne kolonne på små enheder som f.eks. telefoner."
1985
+
1986
+ #: includes/column-settings.php:492
1987
+ msgid "Custom Small Device Width"
1988
+ msgstr "Brugerdefineret lille enhedsbrede"
1989
+
1990
+ #: includes/column-settings.php:504 includes/module-settings.php:115
1991
+ #: includes/row-settings.php:627
1992
+ msgid "CSS Selectors"
1993
+ msgstr "CSS selectors"
1994
+
1995
+ #: includes/column-settings.php:508 includes/loop-settings.php:28
1996
+ #: includes/module-settings.php:119 includes/row-settings.php:631
1997
+ msgid "ID"
1998
+ msgstr "ID"
1999
+
2000
+ #: includes/column-settings.php:509
2001
+ msgid ""
2002
+ "A unique ID that will be applied to this column's HTML. Must start with a "
2003
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2004
+ msgstr ""
2005
+ "Et unikt ID, som vil anvendes til denne kolonnes HTML. Skal starte med et "
2006
+ "bogstav og kan kun indeholde bindestreger, understregninger, bogstaver eller "
2007
+ "tal. Ingen mellemrum."
2008
+
2009
+ #: includes/column-settings.php:516
2010
+ msgid "CSS Class"
2011
+ msgstr "CSS klasse"
2012
+
2013
+ #: includes/column-settings.php:517
2014
+ msgid ""
2015
+ "A class that will be applied to this column's HTML. Must start with a letter "
2016
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2017
+ "classes with spaces."
2018
+ msgstr ""
2019
+ "En klasse, som vil anvendes til denne kolonnes HTML. Skal starte med et "
2020
+ "bogstav og kan kun indeholde bindestreger, understregninger, bogstaver eller "
2021
+ "tal. Adskil flere klasser med mellemrum."
2022
+
2023
+ #: includes/field-form.php:28
2024
+ #, php-format
2025
+ msgctxt "%s stands for form field label."
2026
+ msgid "Edit %s"
2027
+ msgstr "Rediger %s"
2028
+
2029
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
2030
+ msgid "Select Icon"
2031
+ msgstr "Vælg ikon"
2032
+
2033
+ #: includes/field-icon.php:5 includes/field-photo.php:13
2034
+ msgid "Replace"
2035
+ msgstr "Erstat"
2036
+
2037
+ #: includes/field-icon.php:7 includes/ui-js-config.php:65
2038
+ #: includes/ui-js-templates.php:15 includes/ui-js-templates.php:32
2039
+ #: includes/ui-js-templates.php:56
2040
+ msgid "Remove"
2041
+ msgstr "Fjern"
2042
+
2043
+ #: includes/field-link.php:3
2044
+ msgid "Select"
2045
+ msgstr "Vælg"
2046
+
2047
+ #: includes/field-link.php:5
2048
+ msgid "Enter a post title to search."
2049
+ msgstr "Indtast en indlægstitel for at søge."
2050
+
2051
+ #: includes/field-link.php:6 includes/field-suggest.php:7
2052
+ msgid "Start typing..."
2053
+ msgstr "Begynd at skrive…"
2054
+
2055
+ #: includes/field-link.php:7 includes/icon-selector.php:28
2056
+ #: includes/settings.php:71 includes/template-selector.php:92
2057
+ #: includes/ui-js-config.php:22 includes/ui-js-templates.php:72
2058
+ msgid "Cancel"
2059
+ msgstr "Annuller"
2060
+
2061
+ #: includes/field-multiple-photos.php:20
2062
+ #, php-format
2063
+ msgid "1 Photo Selected"
2064
+ msgid_plural "%d Photos Selected"
2065
+ msgstr[0] "1 foto valgt"
2066
+ msgstr[1] "%d fotos valgt"
2067
+
2068
+ #: includes/field-multiple-photos.php:22
2069
+ msgid "Create Gallery"
2070
+ msgstr "Opret galleri"
2071
+
2072
+ #: includes/field-multiple-photos.php:23
2073
+ msgid "Edit Gallery"
2074
+ msgstr "Rediger galleri"
2075
+
2076
+ #: includes/field-multiple-photos.php:24
2077
+ msgid "Add Photos"
2078
+ msgstr "Tilføj fotos"
2079
+
2080
+ #: includes/field-photo.php:3 includes/ui-js-config.php:71
2081
+ msgid "Select Photo"
2082
+ msgstr "Vælg foto"
2083
+
2084
+ #: includes/field-video.php:3 includes/ui-js-config.php:73
2085
+ msgid "Select Video"
2086
+ msgstr "Vælg video"
2087
+
2088
+ #: includes/field-video.php:17
2089
+ msgid "Replace Video"
2090
+ msgstr "Erstat video"
2091
+
2092
+ #: includes/global-settings.php:7 includes/node-template-settings.php:7
2093
+ #: includes/template-settings.php:7 includes/user-template-settings.php:7
2094
+ #: modules/accordion/accordion.php:110 modules/button/button.php:59
2095
+ #: modules/callout/callout.php:210 modules/contact-form/contact-form.php:58
2096
+ #: modules/content-slider/content-slider.php:191
2097
+ #: modules/content-slider/content-slider.php:315 modules/cta/cta.php:68
2098
+ #: modules/gallery/gallery.php:220 modules/heading/heading.php:26
2099
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
2100
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/menu/menu.php:82
2101
+ #: modules/photo/photo.php:384 modules/pricing-table/pricing-table.php:87
2102
+ #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
2103
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
2104
+ #: modules/social-buttons/social-buttons.php:64
2105
+ #: modules/subscribe-form/subscribe-form.php:87 modules/tabs/tabs.php:77
2106
+ #: modules/testimonials/testimonials.php:30
2107
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
2108
+ #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
2109
+ msgid "General"
2110
+ msgstr "Generelt"
2111
+
2112
+ #: includes/global-settings.php:8
2113
+ msgid "Note: These settings apply to all posts and pages."
2114
+ msgstr "Bemærk: Disse indstillinger gælder for alle indlæg og sider."
2115
+
2116
+ #: includes/global-settings.php:11
2117
+ msgid "Default Page Heading"
2118
+ msgstr "Standard sideoverskrift"
2119
+
2120
+ #: includes/global-settings.php:15
2121
+ msgctxt ""
2122
+ "General settings form field label. Intended meaning: \"Show page heading?\""
2123
+ msgid "Show"
2124
+ msgstr "Vis"
2125
+
2126
+ #: includes/global-settings.php:26
2127
+ msgid ""
2128
+ "Choosing no will hide the default theme heading for the \"Page\" post type. "
2129
+ "You will also be required to enter some basic CSS for this to work if you "
2130
+ "choose no."
2131
+ msgstr ""
2132
+ "Ved at vælge nej skjules standard temaoverskriften for “Side” indlægstypen. "
2133
+ "Du vil også blive bedt om at indtaste noget grundlæggende CSS for at dette "
2134
+ "virker, hvis du vælger nej."
2135
+
2136
+ #: includes/global-settings.php:30
2137
+ msgid "CSS Selector"
2138
+ msgstr "CSS selector"
2139
+
2140
+ #: includes/global-settings.php:32
2141
+ msgid "Enter a CSS selector for the default page heading to hide it."
2142
+ msgstr ""
2143
+ "Indtast en CSS selecter for at få standard sideoverskriften til at skjule "
2144
+ "det."
2145
+
2146
+ #: includes/global-settings.php:37
2147
+ msgid "Rows"
2148
+ msgstr "Rækker"
2149
+
2150
+ #: includes/global-settings.php:57
2151
+ msgid "Max Width"
2152
+ msgstr "Maksimum brede"
2153
+
2154
+ #: includes/global-settings.php:62
2155
+ msgid ""
2156
+ "All rows will default to this width. You can override this and make a row "
2157
+ "full width in the settings for each row."
2158
+ msgstr ""
2159
+ "Alle rækker vil som standard have denne brede. Du kan overskrive dette og "
2160
+ "sætte en række til fuld brede i indstillingerne for hver række."
2161
+
2162
+ #: includes/global-settings.php:66
2163
+ msgid "Default Row Width"
2164
+ msgstr "Standard rækkebrede"
2165
+
2166
+ #: includes/global-settings.php:70 includes/global-settings.php:84
2167
+ #: includes/row-settings.php:20 includes/row-settings.php:38
2168
+ #: modules/button/button.php:201 modules/callout/callout.php:596
2169
+ msgid "Full Width"
2170
+ msgstr "Fuld bredde"
2171
+
2172
+ #: includes/global-settings.php:80
2173
+ msgid "Default Row Content Width"
2174
+ msgstr "Standard rækkeindholdsbrede"
2175
+
2176
+ #: includes/global-settings.php:107
2177
+ msgctxt ""
2178
+ "General settings form field label. Intended meaning: \"Responsive layout "
2179
+ "enabled?\""
2180
+ msgid "Enabled"
2181
+ msgstr "Aktiveret"
2182
+
2183
+ #: includes/global-settings.php:121
2184
+ msgctxt ""
2185
+ "General settings form field label. Intended meaning: \"Enable auto spacing "
2186
+ "for responsive layouts?\""
2187
+ msgid "Enable Auto Spacing"
2188
+ msgstr "Aktiver automatisk spacing"
2189
+
2190
+ #: includes/global-settings.php:127
2191
+ msgid ""
2192
+ "When auto spacing is enabled, the builder will automatically adjust the "
2193
+ "margins and padding in your layout once the small device breakpoint is "
2194
+ "reached. Most users will want to leave this enabled."
2195
+ msgstr ""
2196
+ "Med automatisk spacing aktiveret, vil sidebyggeren automatisk justere "
2197
+ "margins og padding i dit layout, når brudpunktet for små enheder er nået. De "
2198
+ "fleste bruger vil ønske at lade dette forblive aktiveret."
2199
+
2200
+ #: includes/global-settings.php:131
2201
+ msgid "Medium Device Breakpoint"
2202
+ msgstr "Brudpunkt for medium enheder"
2203
+
2204
+ #: includes/global-settings.php:136
2205
+ msgid ""
2206
+ "The browser width at which the layout will adjust for medium devices such as "
2207
+ "tablets."
2208
+ msgstr ""
2209
+ "Browserens brede for hvornår layoutet vil justere til medium enheder som f."
2210
+ "eks. tablets."
2211
+
2212
+ #: includes/global-settings.php:140
2213
+ msgid "Small Device Breakpoint"
2214
+ msgstr "Brudpunktet for små enheder"
2215
+
2216
+ #: includes/global-settings.php:145
2217
+ msgid ""
2218
+ "The browser width at which the layout will adjust for small devices such as "
2219
+ "phones."
2220
+ msgstr ""
2221
+ "Browserens brede for hvornår layoutet vil justere til små enheder som f.eks. "
2222
+ "telefoner."
2223
+
2224
+ #: includes/icon-selector.php:5
2225
+ msgctxt "Select option for showing all icon libraries."
2226
+ msgid "All Libraries"
2227
+ msgstr "Alle biblioteker"
2228
+
2229
+ #: includes/loop-settings.php:20
2230
+ msgid "Post Type"
2231
+ msgstr "Indlægstyper"
2232
+
2233
+ #: includes/loop-settings.php:26
2234
+ msgid "Order By"
2235
+ msgstr "Sorter efter"
2236
+
2237
+ #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
2238
+ #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:508
2239
+ #: modules/woocommerce/woocommerce.php:189
2240
+ msgid "Date"
2241
+ msgstr "Dato"
2242
+
2243
+ #: includes/loop-settings.php:30
2244
+ msgid "Date Last Modified"
2245
+ msgstr "Sidst ændrede dato"
2246
+
2247
+ #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90
2248
+ #: modules/pricing-table/pricing-table.php:94
2249
+ msgid "Title"
2250
+ msgstr "Titel"
2251
+
2252
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
2253
+ #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:499
2254
+ msgid "Author"
2255
+ msgstr "Forfatter"
2256
+
2257
+ #: includes/loop-settings.php:33
2258
+ msgid "Comment Count"
2259
+ msgstr "Kommentar antal"
2260
+
2261
+ #: includes/loop-settings.php:34
2262
+ msgid "Menu Order"
2263
+ msgstr "Menusortering"
2264
+
2265
+ #: includes/loop-settings.php:35
2266
+ msgid "Random"
2267
+ msgstr "Tilfældig"
2268
+
2269
+ #: includes/loop-settings.php:42
2270
+ msgid "Order"
2271
+ msgstr "Sorter"
2272
+
2273
+ #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
2274
+ msgid "Descending"
2275
+ msgstr "Faldende"
2276
+
2277
+ #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
2278
+ msgid "Ascending"
2279
+ msgstr "Stigende"
2280
+
2281
+ #: includes/loop-settings.php:52
2282
+ msgctxt "How many posts to skip."
2283
+ msgid "Offset"
2284
+ msgstr "Offset"
2285
+
2286
+ #: includes/loop-settings.php:55
2287
+ msgid "Skip this many posts that match the specified criteria."
2288
+ msgstr ""
2289
+ "Spring dette antal indlæg over, som matcher de specificerede kriterier. "
2290
+
2291
+ #: includes/loop-settings.php:62
2292
+ msgid "Filter"
2293
+ msgstr "Filter"
2294
+
2295
+ #: includes/loop-settings.php:73
2296
+ #, php-format
2297
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
2298
+ msgstr "Indtast en kommasepareret liste af %s. Kun disse %s vil blive vist."
2299
+
2300
+ #: includes/loop-settings.php:86
2301
+ #, php-format
2302
+ msgid ""
2303
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
2304
+ msgstr ""
2305
+ "Indtast en kommasepareret liste af %s. Kun indlæg med disse %s vil blive "
2306
+ "vist."
2307
+
2308
+ #: includes/loop-settings.php:100
2309
+ msgid "Authors"
2310
+ msgstr "Forfattere"
2311
+
2312
+ #: includes/loop-settings.php:101
2313
+ msgid ""
2314
+ "Enter a comma separated list of authors usernames. Only posts with these "
2315
+ "authors will be shown."
2316
+ msgstr ""
2317
+ "Indtast en kommasepareret liste af forfatteres brugernavne. Kun indlæg med "
2318
+ "disse forfattere vil blive vist."
2319
+
2320
+ #: includes/module-settings.php:75
2321
+ msgid "Choose whether to show or hide this module at different device sizes."
2322
+ msgstr ""
2323
+ "Vælg hvorvidt disse moduler skal vises eller skjules på forskellige "
2324
+ "enhedsstørrelser."
2325
+
2326
+ #: includes/module-settings.php:83
2327
+ msgid "Animation"
2328
+ msgstr "Animation"
2329
+
2330
+ #: includes/module-settings.php:89
2331
+ msgctxt "Animation style."
2332
+ msgid "None"
2333
+ msgstr "Ingen"
2334
+
2335
+ #: includes/module-settings.php:90
2336
+ msgctxt "Animation style."
2337
+ msgid "Fade In"
2338
+ msgstr "Fade ind"
2339
+
2340
+ #: includes/module-settings.php:91
2341
+ msgctxt "Animation style."
2342
+ msgid "Slide Left"
2343
+ msgstr "Slide venstre"
2344
+
2345
+ #: includes/module-settings.php:92
2346
+ msgctxt "Animation style."
2347
+ msgid "Slide Right"
2348
+ msgstr "Slide højre"
2349
+
2350
+ #: includes/module-settings.php:93
2351
+ msgctxt "Animation style."
2352
+ msgid "Slide Up"
2353
+ msgstr "Slide op"
2354
+
2355
+ #: includes/module-settings.php:94
2356
+ msgctxt "Animation style."
2357
+ msgid "Slide Down"
2358
+ msgstr "Slide ned"
2359
+
2360
+ #: includes/module-settings.php:102
2361
+ #: modules/content-slider/content-slider.php:230
2362
+ #: modules/post-carousel/post-carousel.php:145
2363
+ #: modules/post-slider/post-slider.php:363
2364
+ #: modules/testimonials/testimonials.php:91
2365
+ msgid "Delay"
2366
+ msgstr "Forsink"
2367
+
2368
+ #: includes/module-settings.php:106 includes/row-settings.php:290
2369
+ #: includes/row-settings.php:321 modules/content-slider/content-slider.php:234
2370
+ #: modules/content-slider/content-slider.php:251
2371
+ #: modules/post-carousel/post-carousel.php:148
2372
+ #: modules/post-carousel/post-carousel.php:164
2373
+ #: modules/post-slider/post-slider.php:366
2374
+ #: modules/post-slider/post-slider.php:391 modules/slideshow/slideshow.php:393
2375
+ #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
2376
+ #: modules/testimonials/testimonials.php:95
2377
+ #: modules/testimonials/testimonials.php:112
2378
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2379
+ msgid "seconds"
2380
+ msgstr "sekunder"
2381
+
2382
+ #: includes/module-settings.php:107
2383
+ msgid "The amount of time in seconds before this animation starts."
2384
+ msgstr "Mængden af tid før animationen starter."
2385
+
2386
+ #: includes/module-settings.php:120
2387
+ msgid ""
2388
+ "A unique ID that will be applied to this module's HTML. Must start with a "
2389
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2390
+ msgstr ""
2391
+ "Et unikt ID, som vil anvendes til dette moduls HTML. Skal starte med et "
2392
+ "bogstav og kan kun indeholde bindestreger, understregninger, bogstaver eller "
2393
+ "tal. Ingen mellemrum."
2394
+
2395
+ #: includes/module-settings.php:127 includes/row-settings.php:639
2396
+ msgid "Class"
2397
+ msgstr "Klasse"
2398
+
2399
+ #: includes/module-settings.php:128
2400
+ msgid ""
2401
+ "A class that will be applied to this module's HTML. Must start with a letter "
2402
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2403
+ "classes with spaces."
2404
+ msgstr ""
2405
+ "En klasse, som vil anvendes til dette moduls HTML. Skal starte med et "
2406
+ "bogstav og kan kun indeholde bindestreger, understregninger, bogstaver eller "
2407
+ "tal. Adskil flere klasser med mellemrum."
2408
+
2409
+ #: includes/node-template-settings.php:4
2410
+ #, php-format
2411
+ msgctxt "%s stands for the type of node template being saved."
2412
+ msgid "Save %s Template"
2413
+ msgstr "Gem %s skabelon"
2414
+
2415
+ #: includes/node-template-settings.php:14 includes/template-settings.php:14
2416
+ #: includes/user-template-settings.php:15
2417
+ msgctxt "Template name."
2418
+ msgid "Name"
2419
+ msgstr "Navn"
2420
+
2421
+ #: includes/node-template-settings.php:18
2422
+ msgctxt "Whether this is a global template or not."
2423
+ msgid "Global"
2424
+ msgstr "Global"
2425
+
2426
+ #: includes/node-template-settings.php:19
2427
+ msgid ""
2428
+ "Global templates can be added to multiple pages and edited in one place."
2429
+ msgstr ""
2430
+ "Globale skabeloner kan tilføjes til flere sider og redigeret på ét sted."
2431
+
2432
+ #: includes/row-settings.php:6 includes/ui-js-config.php:67
2433
+ #: includes/ui-js-templates.php:12
2434
+ msgid "Row Settings"
2435
+ msgstr "Rækkeindstillinger"
2436
+
2437
+ #: includes/row-settings.php:16 modules/button/button.php:197
2438
+ #: modules/content-slider/content-slider.php:484
2439
+ msgid "Width"
2440
+ msgstr "Brede"
2441
+
2442
+ #: includes/row-settings.php:27
2443
+ msgid ""
2444
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
2445
+ "no wider than the Row Max Width set in the Global Settings."
2446
+ msgstr ""
2447
+ "Fulde rækkebreder spænder over siden fra kant til kant. Fastgjorte rækker er "
2448
+ "ikke bredere end den maksimale rækkebrede indstillet i de globale "
2449
+ "indstillinger"
2450
+
2451
+ #: includes/row-settings.php:34
2452
+ msgid "Content Width"
2453
+ msgstr "Indholdsbrede"
2454
+
2455
+ #: includes/row-settings.php:40
2456
+ msgid ""
2457
+ "Full width content spans the width of the page from edge to edge. Fixed "
2458
+ "content is no wider than the Row Max Width set in the Global Settings."
2459
+ msgstr ""
2460
+ "Fulde indholdsbreder spænder over siden fra kant til kant. Fastgjort indhold "
2461
+ "er ikke bredere end den maksimale rækkebrede indstillet i globale "
2462
+ "indstillinger."
2463
+
2464
+ #: includes/row-settings.php:48 modules/button/button.php:120
2465
+ #: modules/cta/cta.php:188 modules/heading/heading.php:72
2466
+ #: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2467
+ #: modules/post-carousel/post-carousel.php:392
2468
+ #: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:680
2469
+ msgid "Colors"
2470
+ msgstr "Farver"
2471
+
2472
+ #: includes/row-settings.php:52 modules/button/button.php:139
2473
+ #: modules/callout/callout.php:534
2474
+ #: modules/content-slider/content-slider.php:529
2475
+ #: modules/content-slider/content-slider.php:651
2476
+ #: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192
2477
+ #: modules/cta/cta.php:289 modules/heading/heading.php:77
2478
+ #: modules/post-carousel/post-carousel.php:396
2479
+ #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:684
2480
+ #: modules/subscribe-form/subscribe-form.php:207
2481
+ msgid "Text Color"
2482
+ msgstr "Tekstfarve"
2483
+
2484
+ #: includes/row-settings.php:95
2485
+ msgctxt "Background type."
2486
+ msgid "Video"
2487
+ msgstr "Video"
2488
+
2489
+ #: includes/row-settings.php:97
2490
+ msgctxt "Background type."
2491
+ msgid "Slideshow"
2492
+ msgstr "Slideshow"
2493
+
2494
+ #: includes/row-settings.php:101
2495
+ msgctxt "Background type."
2496
+ msgid "Parallax"
2497
+ msgstr "Parallax"
2498
+
2499
+ #: includes/row-settings.php:227
2500
+ msgid "Background Video"
2501
+ msgstr "Baggrundsvideo"
2502
+
2503
+ #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
2504
+ #: modules/video/video.php:19 modules/video/video.php:100
2505
+ msgid "Video"
2506
+ msgstr "Video"
2507
+
2508
+ #: includes/row-settings.php:232
2509
+ msgid ""
2510
+ "An HTML5 video to use as the background of this row. Supported types are "
2511
+ "MP4, WebM and Ogg."
2512
+ msgstr ""
2513
+ "En HTML5 video, som bruges som baggrund for denne række. Understøttede typer "
2514
+ "er MP4, WebM og Ogg."
2515
+
2516
+ #: includes/row-settings.php:239
2517
+ msgid "Fallback Photo"
2518
+ msgstr "Fallback foto"
2519
+
2520
+ #: includes/row-settings.php:240
2521
+ msgid "A photo that will be displayed if the video fails to load."
2522
+ msgstr "Et foto, som vil blive vist, hvis videoen ikke kan indlæses."
2523
+
2524
+ #: includes/row-settings.php:248
2525
+ msgid "Background Slideshow"
2526
+ msgstr "Baggrundsslideshow"
2527
+
2528
+ #: includes/row-settings.php:252 modules/gallery/gallery.php:241
2529
+ #: modules/slideshow/slideshow.php:271
2530
+ msgid "Source"
2531
+ msgstr "Kilde"
2532
+
2533
+ #: includes/row-settings.php:255 modules/gallery/gallery.php:244
2534
+ #: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
2535
+ #: modules/video/video.php:86
2536
+ msgid "Media Library"
2537
+ msgstr "Mediebibliotek"
2538
+
2539
+ #: includes/row-settings.php:258 modules/gallery/gallery.php:247
2540
+ #: modules/slideshow/slideshow.php:277
2541
+ msgid ""
2542
+ "Pull images from the WordPress media library or a gallery on your SmugMug "
2543
+ "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
2544
+ "accessed by using the get a link function in your SmugMug gallery."
2545
+ msgstr ""
2546
+ "Hent billeder fra WordPress mediebiblioteket eller et galleri på dit SmugMug "
2547
+ "websted ved at indsætte RSS feed URL’en fra SmugMug. Adgang til RSS feed "
2548
+ "URL’en kan fås ved hjælp af modtag et link funktionen i dit SmugMug galleri."
2549
+
2550
+ #: includes/row-settings.php:273 modules/gallery/gallery.php:259
2551
+ #: modules/slideshow/slideshow.php:289
2552
+ msgid "Photos"
2553
+ msgstr "Fotos"
2554
+
2555
+ #: includes/row-settings.php:280 modules/gallery/gallery.php:263
2556
+ #: modules/slideshow/slideshow.php:293
2557
+ msgid "Feed URL"
2558
+ msgstr "Feed URL"
2559
+
2560
+ #: includes/row-settings.php:287 includes/row-settings.php:352
2561
+ #: modules/slideshow/slideshow.php:390
2562
+ msgid "Speed"
2563
+ msgstr "Hastighed"
2564
+
2565
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
2566
+ #: modules/post-slider/post-slider.php:370 modules/slideshow/slideshow.php:397
2567
+ #: modules/testimonials/testimonials.php:99
2568
+ msgid "Transition"
2569
+ msgstr "Overgang"
2570
+
2571
+ #: includes/row-settings.php:300
2572
+ msgctxt "Slideshow transition type."
2573
+ msgid "None"
2574
+ msgstr "Ingen"
2575
+
2576
+ #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
2577
+ #: modules/post-carousel/post-carousel.php:241
2578
+ #: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:373
2579
+ #: modules/slideshow/slideshow.php:401
2580
+ #: modules/testimonials/testimonials.php:103
2581
+ msgid "Fade"
2582
+ msgstr "Fade"
2583
+
2584
+ #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
2585
+ msgid "Ken Burns"
2586
+ msgstr "Ken burns"
2587
+
2588
+ #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
2589
+ msgid "Slide Horizontal"
2590
+ msgstr "Slide vandret"
2591
+
2592
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
2593
+ msgid "Slide Vertical"
2594
+ msgstr "Slide lodret"
2595
+
2596
+ #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
2597
+ msgid "Blinds"
2598
+ msgstr "Gardiner"
2599
+
2600
+ #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
2601
+ msgid "Bars"
2602
+ msgstr "Bars"
2603
+
2604
+ #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
2605
+ msgid "Random Bars"
2606
+ msgstr "Tilfældige bars"
2607
+
2608
+ #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
2609
+ msgid "Boxes"
2610
+ msgstr "Bokse"
2611
+
2612
+ #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
2613
+ msgid "Random Boxes"
2614
+ msgstr "Tilfældige bokse"
2615
+
2616
+ #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
2617
+ msgid "Boxes Grow"
2618
+ msgstr "Bokse vokser"
2619
+
2620
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
2621
+ #: modules/post-carousel/post-carousel.php:161
2622
+ #: modules/post-slider/post-slider.php:388 modules/slideshow/slideshow.php:415
2623
+ #: modules/testimonials/testimonials.php:108
2624
+ msgid "Transition Speed"
2625
+ msgstr "Overgangshastighed"
2626
+
2627
+ #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
2628
+ msgid "Randomize Photos"
2629
+ msgstr "Gør fotos tilfældige"
2630
+
2631
+ #: includes/row-settings.php:341
2632
+ msgid "Background Parallax"
2633
+ msgstr "Baggrundsparallax"
2634
+
2635
+ #: includes/row-settings.php:355
2636
+ msgid "Fast"
2637
+ msgstr "Hurtig"
2638
+
2639
+ #: includes/row-settings.php:356
2640
+ msgctxt "Speed."
2641
+ msgid "Medium"
2642
+ msgstr "Medium"
2643
+
2644
+ #: includes/row-settings.php:357
2645
+ msgid "Slow"
2646
+ msgstr "Langsom"
2647
+
2648
+ #: includes/row-settings.php:619
2649
+ msgid "Choose whether to show or hide this row at different device sizes."
2650
+ msgstr ""
2651
+ "Vælg hvorvidt denne række skal vises eller skjules på forskellige "
2652
+ "enhedsstørrelser."
2653
+
2654
+ #: includes/row-settings.php:632
2655
+ msgid ""
2656
+ "A unique ID that will be applied to this row's HTML. Must start with a "
2657
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2658
+ msgstr ""
2659
+ "Et unikt ID, som vil anvendes til denne rækkes HTML. Skal starte med et "
2660
+ "bogstav og kan kun indeholde bindestreger, understregninger, bogstaver eller "
2661
+ "tal. Ingen mellemrum."
2662
+
2663
+ #: includes/row-settings.php:640
2664
+ msgid ""
2665
+ "A class that will be applied to this row's HTML. Must start with a letter "
2666
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2667
+ "classes with spaces."
2668
+ msgstr ""
2669
+ "En klasse, som vil anvendes til denne rækkes HTML. Skal starte med et "
2670
+ "bogstav og kan kun indeholde bindestreger, understregninger, bogstaver eller "
2671
+ "tal. Adskil flere klasser med mellemrum."
2672
+
2673
+ #: includes/service-settings.php:32
2674
+ msgid "Service"
2675
+ msgstr "Service"
2676
+
2677
+ #: includes/settings.php:67
2678
+ msgid "Save"
2679
+ msgstr "Gem"
2680
+
2681
+ #: includes/settings.php:69
2682
+ msgid "Save As..."
2683
+ msgstr "Gem som…"
2684
+
2685
+ #: includes/template-selector.php:4
2686
+ msgid "Layout Templates"
2687
+ msgstr "Layoutskabeloner"
2688
+
2689
+ #: includes/template-selector.php:17
2690
+ msgid "Your Templates"
2691
+ msgstr "Dine skabeloner"
2692
+
2693
+ #: includes/template-selector.php:53
2694
+ msgid ""
2695
+ "You haven't saved any templates yet! To do so, create a layout and save it "
2696
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
2697
+ msgstr ""
2698
+ "Du har ikke gemt nogle skabeloner endnu! For at gøre dette, skal du oprette "
2699
+ "et nyt layout og gemme det som en skabelon under <strong>Værktøjer &rarr; "
2700
+ "Gem Skabeloner</strong>."
2701
+
2702
+ #: includes/template-selector.php:58
2703
+ msgctxt "Template name."
2704
+ msgid "Blank"
2705
+ msgstr "Blank"
2706
+
2707
+ #: includes/template-settings.php:18
2708
+ msgid "Image Filename"
2709
+ msgstr "Billede filnavn"
2710
+
2711
+ #: includes/template-settings.php:19
2712
+ msgid ""
2713
+ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
2714
+ "templates/\" directory."
2715
+ msgstr ""
2716
+ "Billedets filnavn som f.eks. “thumb.jpg” som kan findes i mappen “billede/"
2717
+ "skabeloner/“"
2718
+
2719
+ #: includes/ui-js-config.php:21
2720
+ msgid "What would you like to do?"
2721
+ msgstr "Hvad ønsker du at gøre"
2722
+
2723
+ #: includes/ui-js-config.php:23
2724
+ msgid "Change Template"
2725
+ msgstr "Ændre skabelon"
2726
+
2727
+ #: includes/ui-js-config.php:24
2728
+ msgid ""
2729
+ "Warning! Changing the template will replace your existing layout. Do you "
2730
+ "really want to do this?"
2731
+ msgstr ""
2732
+ "Advarsel! Ved at ændre skabeloner erstatter du det eksisterende layout. "
2733
+ "Ønsker du stadig at gøre dette?"
2734
+
2735
+ #: includes/ui-js-config.php:25 includes/ui-js-templates.php:29
2736
+ msgid "Column"
2737
+ msgstr "Kolonne"
2738
+
2739
+ #: includes/ui-js-config.php:26
2740
+ msgid ""
2741
+ "Please select either a background layout or content layout before submitting."
2742
+ msgstr ""
2743
+ "Venligst vælg enten et baggrundslayout eller et indholdslayout før "
2744
+ "indsendelse."
2745
+
2746
+ #: includes/ui-js-config.php:27
2747
+ msgid "Remove Account"
2748
+ msgstr "Fjern konto"
2749
+
2750
+ #: includes/ui-js-config.php:28
2751
+ msgid ""
2752
+ "Are you sure you want to remove this account? Other modules that are "
2753
+ "connected to it will be affected."
2754
+ msgstr ""
2755
+ "Er du sikker på, at du ønsker at fjerne denne konto. Andre moduler, som er "
2756
+ "forbundet til kontoen, vil blive påvirket."
2757
+
2758
+ #: includes/ui-js-config.php:29
2759
+ msgid "Do you really want to delete this item?"
2760
+ msgstr "Ønsker du virkelig at slette dette element?"
2761
+
2762
+ #: includes/ui-js-config.php:30
2763
+ msgid ""
2764
+ "Do you really want to delete this module? All content data will be "
2765
+ "permanently deleted."
2766
+ msgstr ""
2767
+ "Ønsker du virkelig at slette dette modul? Alt dataindhold vil blive slettet "
2768
+ "permanent."
2769
+
2770
+ #: includes/ui-js-config.php:31
2771
+ msgid ""
2772
+ "Do you really want to delete this row? All content data will be permanently "
2773
+ "deleted."
2774
+ msgstr ""
2775
+ "Ønsker du virkelig at slette denne række? Alt dataindhold vil blive slettet "
2776
+ "permanent."
2777
+
2778
+ #: includes/ui-js-config.php:33
2779
+ msgid ""
2780
+ "WARNING! You are about to delete a global template that may be linked to "
2781
+ "other pages. Do you really want to delete this template and unlink it?"
2782
+ msgstr ""
2783
+ "ADVARSEL! Du er ved at slette en global skabelon, som kan være forbundet til "
2784
+ "andre sider. Ønsker du virkelig at slette denne skabelon og fjerne linket?"
2785
+
2786
+ #: includes/ui-js-config.php:34
2787
+ msgid "Discard Changes"
2788
+ msgstr "Kassér ændringer"
2789
+
2790
+ #: includes/ui-js-config.php:35
2791
+ msgid ""
2792
+ "Do you really want to discard these changes? All of your changes that are "
2793
+ "not published will be lost."
2794
+ msgstr ""
2795
+ "Ønsker du virkelig at kassére disse ændringer? Alle dine ændringer, som ikke "
2796
+ "er offentliggjorte, vil gå tabt."
2797
+
2798
+ #: includes/ui-js-config.php:37
2799
+ msgid "Save Draft"
2800
+ msgstr "Gem udkast"
2801
+
2802
+ #: includes/ui-js-config.php:38 includes/ui-js-templates.php:14
2803
+ #: includes/ui-js-templates.php:54
2804
+ msgid "Duplicate"
2805
+ msgstr "Dupliker"
2806
+
2807
+ #: includes/ui-js-config.php:39
2808
+ msgid "Duplicate This Page"
2809
+ msgstr "Dupliker denne side"
2810
+
2811
+ #: includes/ui-js-config.php:40
2812
+ msgid "Duplicate This Template"
2813
+ msgstr "Dupliker denne skabelon"
2814
+
2815
+ #: includes/ui-js-config.php:41
2816
+ msgid "Edit Global Settings"
2817
+ msgstr "Rediger globale indstillinger"
2818
+
2819
+ #: includes/ui-js-config.php:42
2820
+ msgid "Drop a row layout or module to get started!"
2821
+ msgstr "Træk en række eller et modul ned for at starte!"
2822
+
2823
+ #: includes/ui-js-config.php:43
2824
+ msgid ""
2825
+ "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
2826
+ "not functioning as expected the cause is most likely this error. Please help "
2827
+ "us by disabling all plugins and testing Beaver Builder while reactivating "
2828
+ "each to determine if the issue is related to a third party plugin."
2829
+ msgstr ""
2830
+ "Beaver Builder opdagede følgende JavaScript error. Hvis Beaver Builder ikke "
2831
+ "fungerer som forventet, er denne fejl formentlig årsagen. Venligst hjælp os "
2832
+ "ved at deaktivere alle plugins og test Beaver Builder samtidig med at du "
2833
+ "genaktiverer hvert plugin for at afgøre, om problemet er relateret til et "
2834
+ "tredjeparts plugin."
2835
+
2836
+ #: includes/ui-js-config.php:44
2837
+ msgid "Full Size"
2838
+ msgstr "Fuld størrelse"
2839
+
2840
+ #: includes/ui-js-config.php:45
2841
+ msgid "Get Help"
2842
+ msgstr "Få hjælp"
2843
+
2844
+ #: includes/ui-js-config.php:46
2845
+ msgid "\"{message}\" on line {line} of {file}."
2846
+ msgstr "\"{message}”på linje {line} af {file}."
2847
+
2848
+ #: includes/ui-js-config.php:47
2849
+ msgid "Insert"
2850
+ msgstr "Indsæt"
2851
+
2852
+ #: includes/ui-js-config.php:48
2853
+ msgid "Large"
2854
+ msgstr "Stor"
2855
+
2856
+ #: includes/ui-js-config.php:49
2857
+ msgid "Manage Templates"
2858
+ msgstr "Håndter skabeloner"
2859
+
2860
+ #: includes/ui-js-config.php:50
2861
+ msgid "Medium"
2862
+ msgstr "Medium"
2863
+
2864
+ #: includes/ui-js-config.php:51
2865
+ msgid "Module"
2866
+ msgstr "Modul"
2867
+
2868
+ #: includes/ui-js-config.php:52
2869
+ msgid "Module Template Saved!"
2870
+ msgstr "Modulskabelon gemt!"
2871
+
2872
+ #: includes/ui-js-config.php:53 includes/ui-js-templates.php:10
2873
+ #: includes/ui-js-templates.php:50
2874
+ msgid "Move"
2875
+ msgstr "Flyt"
2876
+
2877
+ #: includes/ui-js-config.php:54
2878
+ msgid "New Column"
2879
+ msgstr "Ny kolonne"
2880
+
2881
+ #: includes/ui-js-config.php:55
2882
+ msgid "New Row"
2883
+ msgstr "Ny række"
2884
+
2885
+ #: includes/ui-js-config.php:56
2886
+ msgid "No results found."
2887
+ msgstr "Ingen resultater fundet."
2888
+
2889
+ #: includes/ui-js-config.php:57 includes/ui-panel-node-templates.php:11
2890
+ msgid "No saved rows found."
2891
+ msgstr "Ingen gemte rækker fundet."
2892
+
2893
+ #: includes/ui-js-config.php:58 includes/ui-panel-node-templates.php:42
2894
+ msgid "No saved modules found."
2895
+ msgstr "Ingen gemte moduler fundet."
2896
+
2897
+ #: includes/ui-js-config.php:59 includes/ui-js-templates.php:80
2898
+ msgid "OK"
2899
+ msgstr "OK"
2900
+
2901
+ #: includes/ui-js-config.php:60 modules/photo/photo.php:470
2902
+ msgid "Photo Page"
2903
+ msgstr "Fotoside "
2904
+
2905
+ #: includes/ui-js-config.php:61
2906
+ msgid "Photo Selected"
2907
+ msgstr "Foto valgt"
2908
+
2909
+ #: includes/ui-js-config.php:62
2910
+ msgid "Photos Selected"
2911
+ msgstr "Fotos valgt"
2912
+
2913
+ #: includes/ui-js-config.php:63 modules/subscribe-form/includes/frontend.php:15
2914
+ msgid "Please Wait..."
2915
+ msgstr "Vent venligst..."
2916
+
2917
+ #: includes/ui-js-config.php:64
2918
+ msgid "Publish Changes"
2919
+ msgstr "Offentligør ændringer"
2920
+
2921
+ #: includes/ui-js-config.php:66 includes/ui-js-templates.php:5
2922
+ msgid "Row"
2923
+ msgstr "Række"
2924
+
2925
+ #: includes/ui-js-config.php:68
2926
+ msgid "Row Template Saved!"
2927
+ msgstr "Rækkeskabelon gemt!"
2928
+
2929
+ #: includes/ui-js-config.php:69
2930
+ msgid "Save Core Template"
2931
+ msgstr "Gem kerneskabelon"
2932
+
2933
+ #: includes/ui-js-config.php:70 includes/user-template-settings.php:4
2934
+ msgid "Save Template"
2935
+ msgstr "Gem skabelon"
2936
+
2937
+ #: includes/ui-js-config.php:72
2938
+ msgid "Select Photos"
2939
+ msgstr "Vælg fotos"
2940
+
2941
+ #: includes/ui-js-config.php:74
2942
+ msgid "Please select an account before saving."
2943
+ msgstr "Venligst vælg en konto før du gemmer."
2944
+
2945
+ #: includes/ui-js-config.php:75
2946
+ msgid "Please connect an account before saving."
2947
+ msgstr "Venligst forbind til en konto før du gemmer."
2948
+
2949
+ #: includes/ui-js-config.php:76
2950
+ msgid "Please select a list before saving."
2951
+ msgstr "Venligst vælg en liste før du gemmer."
2952
+
2953
+ #: includes/ui-js-config.php:77
2954
+ msgid "Take a Tour"
2955
+ msgstr "Tag en rundtur"
2956
+
2957
+ #: includes/ui-js-config.php:78
2958
+ msgid "Append New Layout"
2959
+ msgstr "Tilføj nyt layout"
2960
+
2961
+ #: includes/ui-js-config.php:79
2962
+ msgid "Replace Existing Layout"
2963
+ msgstr "Erstat eksisterende layout"
2964
+
2965
+ #: includes/ui-js-config.php:80
2966
+ msgid "Template Saved!"
2967
+ msgstr "Skabelon gemt!"
2968
+
2969
+ #: includes/ui-js-config.php:81 modules/post-slider/post-slider.php:464
2970
+ msgid "Thumbnail"
2971
+ msgstr "Thumbnail"
2972
+
2973
+ #: includes/ui-js-config.php:82
2974
+ msgid "Next"
2975
+ msgstr "Næste"
2976
+
2977
+ #: includes/ui-js-config.php:83
2978
+ msgid "Get Started"
2979
+ msgstr "Begynd"
2980
+
2981
+ #: includes/ui-js-config.php:84
2982
+ msgid "Choose a Template"
2983
+ msgstr "Vælg en skabelon"
2984
+
2985
+ #: includes/ui-js-config.php:85
2986
+ msgid ""
2987
+ "Get started by choosing a layout template to customize, or build a page from "
2988
+ "scratch by selecting the blank layout template."
2989
+ msgstr ""
2990
+ "Begynd ved at vælge en layoutskabelon du ønsker at ændre eller skab en side "
2991
+ "fra bunden ved at vælge en blank layoutskabelon."
2992
+
2993
+ #: includes/ui-js-config.php:86
2994
+ msgid "Add Rows"
2995
+ msgstr "Tilføj rækker"
2996
+
2997
+ #: includes/ui-js-config.php:87
2998
+ msgid ""
2999
+ "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
3000
+ "and dropping row layouts onto the page."
3001
+ msgstr ""
3002
+ "Tilføj multi-kolonne rækker, tilpas spacing, tilføj baggrunde og mere ved at "
3003
+ "trække og slippe rækkelayouts på siden. "
3004
+
3005
+ #: includes/ui-js-config.php:89
3006
+ msgid ""
3007
+ "Add new content by dragging and dropping modules or widgets into your row "
3008
+ "layouts or to create a new row layout."
3009
+ msgstr ""
3010
+ "Tilføj nyt indhold ved at trække og slippe moduler eller widgets ind i dine "
3011
+ "rækkelayouts eller opret et nyt rækkelayout."
3012
+
3013
+ #: includes/ui-js-config.php:90
3014
+ msgid "Edit Content"
3015
+ msgstr "Rediger indhold"
3016
+
3017
+ #: includes/ui-js-config.php:91
3018
+ msgid ""
3019
+ "Move your mouse over rows, columns or modules to edit and interact with them."
3020
+ msgstr ""
3021
+ "Bevæg din mus over rækker, kolonner eller moduler for at redigere eller "
3022
+ "interagere med dem."
3023
+
3024
+ #: includes/ui-js-config.php:92
3025
+ msgid ""
3026
+ "Use the action buttons to perform actions such as moving, editing, "
3027
+ "duplicating or deleting rows, columns and modules."
3028
+ msgstr ""
3029
+ "Brug handlingsknapperne for at udføre handlinger som f.eks at flytte, "
3030
+ "redigere, duplikere eller slette rækker, kolonner og moduler."
3031
+
3032
+ #: includes/ui-js-config.php:93
3033
+ msgid "Add More Content"
3034
+ msgstr "Tilføj mere indhold"
3035
+
3036
+ #: includes/ui-js-config.php:94
3037
+ msgid ""
3038
+ "Use the Add Content button to open the content panel and add new row "
3039
+ "layouts, modules or widgets."
3040
+ msgstr ""
3041
+ "Brug Tilføj Indhold-knappen for at åbne indholdspanelet og tilføj nye "
3042
+ "rækkelayouts, moduler eller widgets."
3043
+
3044
+ #: includes/ui-js-config.php:95
3045
+ msgid "Change Templates"
3046
+ msgstr "Ændre skabeloner"
3047
+
3048
+ #: includes/ui-js-config.php:96
3049
+ msgid ""
3050
+ "Use the Templates button to pick a new template or append one to your "
3051
+ "layout. Appending will insert a new template at the end of your existing "
3052
+ "page content."
3053
+ msgstr ""
3054
+ "Brug Skabelon-knappen for at vælge en ny skabelon eller tilføj en til dit "
3055
+ "layout. Ved at tilføje vil en ny skabelon blive indsat i slutningen af dit "
3056
+ "eksisterende indhold på siden."
3057
+
3058
+ #: includes/ui-js-config.php:97
3059
+ msgid "Helpful Tools"
3060
+ msgstr "Brugbare værktøjer"
3061
+
3062
+ #: includes/ui-js-config.php:98
3063
+ msgid ""
3064
+ "The Tools button lets you duplicate a page, save a template or edit the "
3065
+ "global settings."
3066
+ msgstr ""
3067
+ "Værktøj-knappen lader dig duplikere en side, gemme en skabelon eller "
3068
+ "redigere de globale indstillinger."
3069
+
3070
+ #: includes/ui-js-config.php:99
3071
+ msgid "Publish Your Changes"
3072
+ msgstr "Offentliggør dine ændringer"
3073
+
3074
+ #: includes/ui-js-config.php:100
3075
+ msgid ""
3076
+ "Once you're finished, click the Done button to publish your changes, save a "
3077
+ "draft or revert back to the last published state."
3078
+ msgstr ""
3079
+ "Klik på Færdig-knappen, når du er færdig for at offentliggøre dine "
3080
+ "ændringer, gemme et udkast eller gå tilbage til det sidste offentliggjorte "
3081
+ "tilstand."
3082
+
3083
+ #: includes/ui-js-config.php:101
3084
+ msgid "Let's Get Building!"
3085
+ msgstr "Lad os begynde at bygge!"
3086
+
3087
+ #: includes/ui-js-config.php:102
3088
+ msgid ""
3089
+ "Now that you know the basics, you're ready to start building! If at any time "
3090
+ "you need help, click the help icon in the upper right corner to access the "
3091
+ "help menu. Happy building!"
3092
+ msgstr ""
3093
+ "Nu da du kender det grundlæggende kan du begynde at bygge! Hvis du får brug "
3094
+ "for hjælp, kan du trykke på ikonet hjælp i øverste, højre hjørne for at gå "
3095
+ "til menuen hjælp. Glædelig byggeri!"
3096
+
3097
+ #: includes/ui-js-config.php:103
3098
+ msgid ""
3099
+ "The settings you are currently editing will not be saved if you navigate "
3100
+ "away from this page."
3101
+ msgstr ""
3102
+ "Indstillingerne, du redigere i øjeblikket, vil ikke blive gemt, hvis du "
3103
+ "navigere væk fra denne side."
3104
+
3105
+ #: includes/ui-js-config.php:104
3106
+ msgid "View the Knowledge Base"
3107
+ msgstr "Vis vidensbasen"
3108
+
3109
+ #: includes/ui-js-config.php:105
3110
+ msgid "Visit the Forums"
3111
+ msgstr "Besøg forummerne"
3112
+
3113
+ #: includes/ui-js-config.php:106
3114
+ msgid "Watch the Video"
3115
+ msgstr "Se videon"
3116
+
3117
+ #: includes/ui-js-templates.php:5 includes/ui-js-templates.php:29
3118
+ #: includes/ui-js-templates.php:45
3119
+ msgid "Global"
3120
+ msgstr "Global"
3121
+
3122
+ #: includes/ui-js-templates.php:7 includes/ui-js-templates.php:47
3123
+ msgid "Locked"
3124
+ msgstr "Låst"
3125
+
3126
+ #: includes/ui-js-templates.php:52
3127
+ msgid "Settings"
3128
+ msgstr "Indstillinger"
3129
+
3130
+ #: includes/ui-js-templates.php:87
3131
+ msgid ""
3132
+ "Welcome! It looks like this might be your first time using the builder. "
3133
+ "Would you like to take a tour?"
3134
+ msgstr ""
3135
+ "Velkommen! De ser ud til, at det er første gang, du bruger sidebyggeren. "
3136
+ "Ønsker du at tage en rundtur?"
3137
+
3138
+ #: includes/ui-js-templates.php:88
3139
+ msgid "No Thanks"
3140
+ msgstr "Nej tak"
3141
+
3142
+ #: includes/ui-js-templates.php:89
3143
+ msgid "Yes Please!"
3144
+ msgstr "Ja tak!"
3145
+
3146
+ #: includes/ui-js-templates.php:96
3147
+ msgid "Getting Started Video"
3148
+ msgstr "Tutorialvideo"
3149
+
3150
+ #: includes/ui-panel-node-templates.php:6
3151
+ msgid "Saved Rows"
3152
+ msgstr "Gemte rækker"
3153
+
3154
+ #: includes/ui-panel-node-templates.php:37
3155
+ msgid "Saved Modules"
3156
+ msgstr "Gemte moduler"
3157
+
3158
+ #: includes/ui-panel.php:11
3159
+ msgid "Row Layouts"
3160
+ msgstr "Rækkelayouts"
3161
+
3162
+ #: includes/ui-panel.php:15
3163
+ msgid "1 Column"
3164
+ msgstr "1 kolonne"
3165
+
3166
+ #: includes/ui-panel.php:16
3167
+ msgid "2 Columns"
3168
+ msgstr "2 kolonner"
3169
+
3170
+ #: includes/ui-panel.php:17
3171
+ msgid "3 Columns"
3172
+ msgstr "3 kolonner"
3173
+
3174
+ #: includes/ui-panel.php:18
3175
+ msgid "4 Columns"
3176
+ msgstr "4 kolonner"
3177
+
3178
+ #: includes/ui-panel.php:19
3179
+ msgid "5 Columns"
3180
+ msgstr "5 kolonner"
3181
+
3182
+ #: includes/ui-panel.php:20
3183
+ msgid "6 Columns"
3184
+ msgstr "6 kolonner"
3185
+
3186
+ #: includes/ui-panel.php:21
3187
+ msgid "Left Sidebar"
3188
+ msgstr "Venstre sidebar"
3189
+
3190
+ #: includes/ui-panel.php:22
3191
+ msgid "Right Sidebar"
3192
+ msgstr "Højre sidebar"
3193
+
3194
+ #: includes/ui-panel.php:23
3195
+ msgid "Left &amp; Right Sidebar"
3196
+ msgstr "Venstre &amp; højre sidebar"
3197
+
3198
+ #: includes/updater/classes/class-fl-updater.php:132
3199
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3200
+ msgstr "<strong>OPDATERING IKKE TILGÆNGELIG</strong>"
3201
+
3202
+ #: includes/updater/classes/class-fl-updater.php:134
3203
+ msgid "Please subscribe to enable automatic updates for this plugin."
3204
+ msgstr ""
3205
+ "Venligst abonner for at aktivere automatiske opdateringer for dette plugin."
3206
+
3207
+ #: includes/updater/classes/class-fl-updater.php:136
3208
+ #: includes/updater/includes/form.php:6
3209
+ msgid "Subscribe Now"
3210
+ msgstr "Abonner nu"
3211
+
3212
+ #: includes/updater/includes/form.php:5
3213
+ msgid ""
3214
+ "UPDATES UNAVAILABLE! Please subscribe or enter your license key below to "
3215
+ "enable automatic updates."
3216
+ msgstr ""
3217
+ "OPDATERING IKKE TILGÆNGELIG! Venligst abonner eller indtast din licensnøgle "
3218
+ "nedenfor for at aktivere automatiske opdateringer."
3219
+
3220
+ #: includes/updater/includes/form.php:11
3221
+ msgid "Updates &amp; Support Subscription"
3222
+ msgstr "Opdateringer &amp; support abonnement"
3223
+
3224
+ #: includes/updater/includes/form.php:14
3225
+ msgid "Active!"
3226
+ msgstr "Aktiv!"
3227
+
3228
+ #: includes/updater/includes/form.php:16
3229
+ msgid "Not Active!"
3230
+ msgstr "Ikke aktiv!"
3231
+
3232
+ #: includes/updater/includes/form.php:22
3233
+ msgid "Email address saved!"
3234
+ msgstr "E-mailadresse gemt!"
3235
+
3236
+ #: includes/updater/includes/form.php:27
3237
+ #, php-format
3238
+ msgid "Enter your <a%s>license key</a> to enable remote updates and support."
3239
+ msgstr ""
3240
+ "Indtast din <a%s>licensnøgle</a> for at aktivere fjernopdateringer og "
3241
+ "support."
3242
+
3243
+ #: includes/updater/includes/form.php:39
3244
+ msgid "Save Subscription Settings"
3245
+ msgstr "Gem abonnementindstillinger"
3246
+
3247
+ #: includes/user-template-settings.php:8
3248
+ msgid ""
3249
+ "Save the current layout as a template that can be reused under "
3250
+ "<strong>Templates &rarr; Your Templates</strong>."
3251
+ msgstr ""
3252
+ "Gem det nuværende layout som en skabelon, som kan blive genbrugt under "
3253
+ "<strong>Skabeloner &rarr; Dine Skabeloner</strong>."
3254
+
3255
+ #: modules/accordion/accordion.php:14 modules/menu/menu.php:95
3256
+ msgid "Accordion"
3257
+ msgstr "Harmonika"
3258
+
3259
+ #: modules/accordion/accordion.php:15
3260
+ msgid "Display a collapsible accordion of items."
3261
+ msgstr "Vis en sammenklappelig harmonika af elementer."
3262
+
3263
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
3264
+ msgid "Items"
3265
+ msgstr "Elementer"
3266
+
3267
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
3268
+ msgid "Item"
3269
+ msgstr "Element"
3270
+
3271
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
3272
+ msgid "Border Color"
3273
+ msgstr "Borderfarve"
3274
+
3275
+ #: modules/accordion/accordion.php:62
3276
+ msgid "Label Size"
3277
+ msgstr "Labelstørrelse"
3278
+
3279
+ #: modules/accordion/accordion.php:65
3280
+ msgctxt "Label size."
3281
+ msgid "Small"
3282
+ msgstr "Lille"
3283
+
3284
+ #: modules/accordion/accordion.php:66
3285
+ msgctxt "Label size."
3286
+ msgid "Medium"
3287
+ msgstr "Medium"
3288
+
3289
+ #: modules/accordion/accordion.php:67
3290
+ msgctxt "Label size."
3291
+ msgid "Large"
3292
+ msgstr "Stor"
3293
+
3294
+ #: modules/accordion/accordion.php:75
3295
+ msgid "Item Spacing"
3296
+ msgstr "Elementspacing"
3297
+
3298
+ #: modules/accordion/accordion.php:86
3299
+ msgid "Collapse Inactive"
3300
+ msgstr "Kollaps inaktiv"
3301
+
3302
+ #: modules/accordion/accordion.php:92
3303
+ msgid ""
3304
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
3305
+ "multiple items to be open at the same time."
3306
+ msgstr ""
3307
+ "Ved at vælge ja, vil kun et element være åbent ad gangen. Ved at vælge nej, "
3308
+ "tillades flere elementer at være åbne på samme tid. "
3309
+
3310
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
3311
+ msgid "Add Item"
3312
+ msgstr "Tilføj element"
3313
+
3314
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
3315
+ msgid "Label"
3316
+ msgstr "Label"
3317
+
3318
+ #: modules/accordion/accordion.php:122
3319
+ #: modules/post-carousel/post-carousel.php:359
3320
+ #: modules/post-carousel/post-carousel.php:363
3321
+ #: modules/post-carousel/post-carousel.php:435
3322
+ #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
3323
+ #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:548
3324
+ #: modules/post-slider/post-slider.php:552
3325
+ #: modules/post-slider/post-slider.php:759 modules/tabs/tabs.php:89
3326
+ msgid "Content"
3327
+ msgstr "Indhold"
3328
+
3329
+ #: modules/button/button.php:14 modules/callout/callout.php:480
3330
+ #: modules/content-slider/content-slider.php:602 modules/cta/cta.php:215
3331
+ #: modules/pricing-table/pricing-table.php:129
3332
+ #: modules/subscribe-form/subscribe-form.php:161
3333
+ msgid "Button"
3334
+ msgstr "Knap"
3335
+
3336
+ #: modules/button/button.php:15
3337
+ msgid "A simple call to action button."
3338
+ msgstr "En simpel klik for handling-knap"
3339
+
3340
+ #: modules/button/button.php:67 modules/cta/cta.php:223
3341
+ msgid "Click Here"
3342
+ msgstr "Klik her"
3343
+
3344
+ #: modules/button/button.php:75 modules/callout/callout.php:318
3345
+ #: modules/callout/callout.php:366 modules/callout/callout.php:370
3346
+ #: modules/cta/cta.php:231 modules/icon-group/icon-group.php:34
3347
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
3348
+ #: modules/icon/icon.php:34
3349
+ msgid "Icon"
3350
+ msgstr "Ikon"
3351
+
3352
+ #: modules/button/button.php:80 modules/cta/cta.php:236
3353
+ #: modules/subscribe-form/subscribe-form.php:178
3354
+ msgid "Icon Position"
3355
+ msgstr "Ikonposition"
3356
+
3357
+ #: modules/button/button.php:83 modules/callout/callout.php:508
3358
+ #: modules/content-slider/content-slider.php:629 modules/cta/cta.php:239
3359
+ #: modules/subscribe-form/subscribe-form.php:181
3360
+ msgid "Before Text"
3361
+ msgstr "Før tekst"
3362
+
3363
+ #: modules/button/button.php:84 modules/callout/callout.php:509
3364
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:240
3365
+ #: modules/subscribe-form/subscribe-form.php:182
3366
+ msgid "After Text"
3367
+ msgstr "Efter tekst"
3368
+
3369
+ #: modules/button/button.php:90 modules/button/button.php:94
3370
+ #: modules/callout/callout.php:446 modules/callout/callout.php:450
3371
+ #: modules/content-slider/content-slider.php:574
3372
+ #: modules/content-slider/content-slider.php:578
3373
+ #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:250
3374
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47
3375
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
3376
+ #: modules/slideshow/slideshow.php:351
3377
+ msgid "Link"
3378
+ msgstr "Link"
3379
+
3380
+ #: modules/button/button.php:95
3381
+ msgid "http://www.example.com"
3382
+ msgstr "http://www.eksempel.dk"
3383
+
3384
+ #: modules/button/button.php:102 modules/callout/callout.php:458
3385
+ #: modules/content-slider/content-slider.php:583 modules/cta/cta.php:257
3386
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
3387
+ #: modules/photo/photo.php:494
3388
+ msgid "Link Target"
3389
+ msgstr "Linkmål"
3390
+
3391
+ #: modules/button/button.php:105 modules/callout/callout.php:461
3392
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:260
3393
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
3394
+ #: modules/photo/photo.php:497
3395
+ msgid "Same Window"
3396
+ msgstr "Samme vindue"
3397
+
3398
+ #: modules/button/button.php:106 modules/callout/callout.php:462
3399
+ #: modules/content-slider/content-slider.php:587 modules/cta/cta.php:261
3400
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
3401
+ #: modules/photo/photo.php:498
3402
+ msgid "New Window"
3403
+ msgstr "Nyt vindue"
3404
+
3405
+ #: modules/button/button.php:130 modules/callout/callout.php:410
3406
+ #: modules/callout/callout.php:525
3407
+ #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:280
3408
+ #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
3409
+ #: modules/subscribe-form/subscribe-form.php:198
3410
+ msgid "Background Hover Color"
3411
+ msgstr "Baggrund hoverfarve"
3412
+
3413
+ #: modules/button/button.php:145 modules/callout/callout.php:540
3414
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:295
3415
+ #: modules/subscribe-form/subscribe-form.php:213
3416
+ msgid "Text Hover Color"
3417
+ msgstr "Tekst hoverfarve"
3418
+
3419
+ #: modules/button/button.php:162 modules/callout/callout.php:557
3420
+ #: modules/content-slider/content-slider.php:670 modules/cta/cta.php:312
3421
+ #: modules/subscribe-form/subscribe-form.php:230
3422
+ msgid "Flat"
3423
+ msgstr "Flad"
3424
+
3425
+ #: modules/button/button.php:163 modules/callout/callout.php:418
3426
+ #: modules/callout/callout.php:558
3427
+ #: modules/content-slider/content-slider.php:671 modules/cta/cta.php:313
3428
+ #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3429
+ #: modules/subscribe-form/subscribe-form.php:231
3430
+ msgid "Gradient"
3431
+ msgstr "Gradient"
3432
+
3433
+ #: modules/button/button.php:164 modules/callout/callout.php:559
3434
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3435
+ #: modules/subscribe-form/subscribe-form.php:232
3436
+ msgid "Transparent"
3437
+ msgstr "Gennemsigtig"
3438
+
3439
+ #: modules/button/button.php:174 modules/callout/callout.php:569
3440
+ #: modules/content-slider/content-slider.php:682 modules/cta/cta.php:324
3441
+ #: modules/pricing-table/pricing-table.php:67
3442
+ #: modules/subscribe-form/subscribe-form.php:242
3443
+ msgid "Border Size"
3444
+ msgstr "Borderstørrelse"
3445
+
3446
+ #: modules/button/button.php:183 modules/callout/callout.php:578
3447
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204
3448
+ #: modules/cta/cta.php:333 modules/subscribe-form/subscribe-form.php:251
3449
+ msgid "Background Opacity"
3450
+ msgstr "Baggrundsgennemsigtighed"
3451
+
3452
+ #: modules/button/button.php:193 modules/callout/callout.php:245
3453
+ #: modules/cta/cta.php:105 modules/heading/heading.php:82
3454
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3455
+ #: modules/subscribe-form/subscribe-form.php:95
3456
+ msgid "Structure"
3457
+ msgstr "Opbygning"
3458
+
3459
+ #: modules/button/button.php:200 modules/callout/callout.php:595
3460
+ msgctxt "Width."
3461
+ msgid "Auto"
3462
+ msgstr "Automatisk"
3463
+
3464
+ #: modules/button/button.php:216
3465
+ msgid "Custom Width"
3466
+ msgstr "Brugerdefineret brede"
3467
+
3468
+ #: modules/button/button.php:224 modules/cta/cta.php:123
3469
+ #: modules/heading/heading.php:86 modules/heading/heading.php:141
3470
+ #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3471
+ #: modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
3472
+ msgid "Alignment"
3473
+ msgstr "Tilpasning"
3474
+
3475
+ #: modules/button/button.php:234 modules/callout/callout.php:601
3476
+ #: modules/content-slider/content-slider.php:705 modules/cta/cta.php:347
3477
+ #: modules/heading/heading.php:114 modules/heading/heading.php:171
3478
+ #: modules/subscribe-form/subscribe-form.php:265
3479
+ msgid "Font Size"
3480
+ msgstr "Skrifttypestørrelse"
3481
+
3482
+ #: modules/button/button.php:250 modules/callout/callout.php:617
3483
+ #: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
3484
+ msgid "Round Corners"
3485
+ msgstr "Runde hjørner"
3486
+
3487
+ #: modules/callout/callout.php:14
3488
+ msgid "Callout"
3489
+ msgstr "Callout"
3490
+
3491
+ #: modules/callout/callout.php:15
3492
+ msgid "A heading and snippet of text with an optional link, icon and image."
3493
+ msgstr ""
3494
+ "En overskrift og et uddrag af en tekst med et valgtfrit link, ikon og "
3495
+ "billede."
3496
+
3497
+ #: modules/callout/callout.php:217
3498
+ #: modules/content-slider/content-slider.php:414
3499
+ #: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75
3500
+ #: modules/heading/heading.php:14 modules/heading/heading.php:33
3501
+ #: modules/post-slider/post-slider.php:582
3502
+ #: modules/testimonials/testimonials.php:56
3503
+ #: modules/testimonials/testimonials.php:61
3504
+ msgid "Heading"
3505
+ msgstr "Overskrift"
3506
+
3507
+ #: modules/callout/callout.php:249
3508
+ msgid "Overall Alignment"
3509
+ msgstr "Overordnet tilpasning"
3510
+
3511
+ #: modules/callout/callout.php:256
3512
+ msgid "The alignment that will apply to all elements within the callout."
3513
+ msgstr "Tilpasningen som gælder for alle elementer inden for calloutet."
3514
+
3515
+ #: modules/callout/callout.php:264 modules/cta/cta.php:148
3516
+ msgid "Heading Structure"
3517
+ msgstr "Overskriftsopbygning"
3518
+
3519
+ #: modules/callout/callout.php:268
3520
+ #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3521
+ #: modules/post-slider/post-slider.php:586
3522
+ msgid "Heading Tag"
3523
+ msgstr "Overskriftsetikette"
3524
+
3525
+ #: modules/callout/callout.php:281
3526
+ #: modules/content-slider/content-slider.php:446
3527
+ #: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
3528
+ #: modules/post-slider/post-slider.php:599
3529
+ #: modules/post-slider/post-slider.php:613
3530
+ #: modules/testimonials/testimonials.php:69
3531
+ msgid "Heading Size"
3532
+ msgstr "Overskriftsstørrelse"
3533
+
3534
+ #: modules/callout/callout.php:295 modules/cta/cta.php:179
3535
+ msgid "Heading Custom Size"
3536
+ msgstr "Brugerdefineret overskriftsstørrelse"
3537
+
3538
+ #: modules/callout/callout.php:313
3539
+ msgid "Image Type"
3540
+ msgstr "Billedetype"
3541
+
3542
+ #: modules/callout/callout.php:316
3543
+ msgctxt "Image type."
3544
+ msgid "None"
3545
+ msgstr "Ingen"
3546
+
3547
+ #: modules/callout/callout.php:341 modules/photo/photo.php:417
3548
+ #: modules/post-slider/post-slider.php:482 modules/slideshow/slideshow.php:320
3549
+ msgid "Crop"
3550
+ msgstr "Beskær"
3551
+
3552
+ #: modules/callout/callout.php:344 modules/photo/photo.php:420
3553
+ msgctxt "Photo Crop."
3554
+ msgid "None"
3555
+ msgstr "Ingen"
3556
+
3557
+ #: modules/callout/callout.php:345 modules/photo/photo.php:421
3558
+ #: modules/post-slider/post-slider.php:485
3559
+ msgid "Landscape"
3560
+ msgstr "Landskab"
3561
+
3562
+ #: modules/callout/callout.php:346 modules/photo/photo.php:422
3563
+ #: modules/post-slider/post-slider.php:486
3564
+ msgid "Panorama"
3565
+ msgstr "Panorama"
3566
+
3567
+ #: modules/callout/callout.php:347 modules/photo/photo.php:423
3568
+ #: modules/post-slider/post-slider.php:487
3569
+ msgid "Portrait"
3570
+ msgstr "Portræt"
3571
+
3572
+ #: modules/callout/callout.php:348 modules/photo/photo.php:424
3573
+ #: modules/post-slider/post-slider.php:488
3574
+ msgid "Square"
3575
+ msgstr "Firkant"
3576
+
3577
+ #: modules/callout/callout.php:349 modules/photo/photo.php:425
3578
+ #: modules/post-slider/post-slider.php:489
3579
+ msgid "Circle"
3580
+ msgstr "Cirkel"
3581
+
3582
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
3583
+ msgid "Above Heading"
3584
+ msgstr "Over overskrift"
3585
+
3586
+ #: modules/callout/callout.php:358 modules/callout/callout.php:378
3587
+ msgid "Below Heading"
3588
+ msgstr "Under overskrift"
3589
+
3590
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
3591
+ msgid "Left of Text and Heading"
3592
+ msgstr "Til venstre for tekst og overskrift"
3593
+
3594
+ #: modules/callout/callout.php:360 modules/callout/callout.php:382
3595
+ msgid "Right of Text and Heading"
3596
+ msgstr "Til højre for tekst og overskrift"
3597
+
3598
+ #: modules/callout/callout.php:379
3599
+ msgid "Left of Heading"
3600
+ msgstr "Til venstre for overskrift"
3601
+
3602
+ #: modules/callout/callout.php:380
3603
+ msgid "Right of Heading"
3604
+ msgstr "Til højre for overskrift"
3605
+
3606
+ #: modules/callout/callout.php:388
3607
+ msgid "Icon Colors"
3608
+ msgstr "Ikonfarver"
3609
+
3610
+ #: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56
3611
+ #: modules/icon/icon.php:87
3612
+ msgid "Hover Color"
3613
+ msgstr "Hoverfarve"
3614
+
3615
+ #: modules/callout/callout.php:428
3616
+ msgid "Icon Structure"
3617
+ msgstr "Ikonopbygning"
3618
+
3619
+ #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
3620
+ #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
3621
+ #: modules/post-grid/post-grid.php:139 modules/post-slider/post-slider.php:477
3622
+ msgid "Size"
3623
+ msgstr "Størrelse"
3624
+
3625
+ #: modules/callout/callout.php:443
3626
+ #: modules/content-slider/content-slider.php:571
3627
+ msgid "Call To Action"
3628
+ msgstr "Klik for handling"
3629
+
3630
+ #: modules/callout/callout.php:451
3631
+ msgid ""
3632
+ "The link applies to the entire module. If choosing a call to action type "
3633
+ "below, this link will also be used for the text or button."
3634
+ msgstr ""
3635
+ "Linket gælder for hele modulet. Ved at vælge en klik for handling-type "
3636
+ "nedenfor vil dette link også blive brugt for teksten eller knappen."
3637
+
3638
+ #: modules/callout/callout.php:471
3639
+ #: modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
3640
+ msgid "Call to Action"
3641
+ msgstr "Klik for handling"
3642
+
3643
+ #: modules/callout/callout.php:478
3644
+ #: modules/content-slider/content-slider.php:600
3645
+ msgctxt "Call to action."
3646
+ msgid "None"
3647
+ msgstr "Ingen"
3648
+
3649
+ #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
3650
+ #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:571
3651
+ msgid "Read More"
3652
+ msgstr "Læs mere"
3653
+
3654
+ #: modules/callout/callout.php:500
3655
+ #: modules/content-slider/content-slider.php:621
3656
+ #: modules/subscribe-form/subscribe-form.php:173
3657
+ msgid "Button Icon"
3658
+ msgstr "Knapikon"
3659
+
3660
+ #: modules/callout/callout.php:505
3661
+ #: modules/content-slider/content-slider.php:626
3662
+ msgid "Button Icon Position"
3663
+ msgstr "Knapikon"
3664
+
3665
+ #: modules/callout/callout.php:515
3666
+ #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
3667
+ #: modules/subscribe-form/subscribe-form.php:188
3668
+ msgid "Button Colors"
3669
+ msgstr "Knapfarver"
3670
+
3671
+ #: modules/callout/callout.php:550
3672
+ #: modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
3673
+ #: modules/subscribe-form/subscribe-form.php:223
3674
+ msgid "Button Style"
3675
+ msgstr "Knapstil"
3676
+
3677
+ #: modules/callout/callout.php:588
3678
+ #: modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
3679
+ #: modules/subscribe-form/subscribe-form.php:261
3680
+ msgid "Button Structure"
3681
+ msgstr "Knapopbygning"
3682
+
3683
+ #: modules/callout/callout.php:592
3684
+ msgid "Button Width"
3685
+ msgstr "Knapbrede"
3686
+
3687
+ #: modules/contact-form/contact-form.php:14
3688
+ msgid "Contact Form"
3689
+ msgstr "Kontaktformular"
3690
+
3691
+ #: modules/contact-form/contact-form.php:15
3692
+ msgid "A very simple contact form."
3693
+ msgstr "En meget simpel kontaktformular"
3694
+
3695
+ #: modules/contact-form/contact-form.php:31
3696
+ msgid "Contact Form Submission"
3697
+ msgstr "Kontaktformular indsendelse"
3698
+
3699
+ #: modules/contact-form/contact-form.php:41
3700
+ msgid "Message"
3701
+ msgstr "Besked"
3702
+
3703
+ #: modules/contact-form/contact-form.php:65
3704
+ msgid "Send To Email"
3705
+ msgstr "Send til e-mail"
3706
+
3707
+ #: modules/contact-form/contact-form.php:67
3708
+ msgid "example@mail.com"
3709
+ msgstr "eksempel@mail.dk"
3710
+
3711
+ #: modules/contact-form/contact-form.php:68
3712
+ msgid "The contact form will send to this e-mail"
3713
+ msgstr "Kontaktformularen vil blive sendt til denne e-mail"
3714
+
3715
+ #: modules/contact-form/contact-form.php:75
3716
+ #: modules/subscribe-form/subscribe-form.php:108
3717
+ msgid "Name Field"
3718
+ msgstr "Navnefelt"
3719
+
3720
+ #: modules/contact-form/contact-form.php:78
3721
+ #: modules/contact-form/contact-form.php:87
3722
+ #: modules/contact-form/contact-form.php:96
3723
+ #: modules/contact-form/contact-form.php:105
3724
+ #: modules/post-carousel/post-carousel.php:258
3725
+ #: modules/post-carousel/post-carousel.php:322
3726
+ #: modules/post-carousel/post-carousel.php:331
3727
+ #: modules/post-carousel/post-carousel.php:366
3728
+ #: modules/post-carousel/post-carousel.php:375
3729
+ #: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
3730
+ #: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
3731
+ #: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
3732
+ #: modules/post-slider/post-slider.php:443
3733
+ #: modules/post-slider/post-slider.php:502
3734
+ #: modules/post-slider/post-slider.php:511
3735
+ #: modules/post-slider/post-slider.php:541
3736
+ #: modules/post-slider/post-slider.php:555
3737
+ #: modules/post-slider/post-slider.php:564
3738
+ #: modules/subscribe-form/subscribe-form.php:111
3739
+ msgid "Show"
3740
+ msgstr "Vis"
3741
+
3742
+ #: modules/contact-form/contact-form.php:79
3743
+ #: modules/contact-form/contact-form.php:88
3744
+ #: modules/contact-form/contact-form.php:97
3745
+ #: modules/contact-form/contact-form.php:106
3746
+ #: modules/post-carousel/post-carousel.php:259
3747
+ #: modules/post-carousel/post-carousel.php:323
3748
+ #: modules/post-carousel/post-carousel.php:332
3749
+ #: modules/post-carousel/post-carousel.php:367
3750
+ #: modules/post-carousel/post-carousel.php:376
3751
+ #: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
3752
+ #: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
3753
+ #: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
3754
+ #: modules/post-slider/post-slider.php:444
3755
+ #: modules/post-slider/post-slider.php:503
3756
+ #: modules/post-slider/post-slider.php:512
3757
+ #: modules/post-slider/post-slider.php:542
3758
+ #: modules/post-slider/post-slider.php:556
3759
+ #: modules/post-slider/post-slider.php:565
3760
+ #: modules/subscribe-form/subscribe-form.php:112
3761
+ msgid "Hide"
3762
+ msgstr "Skjul"
3763
+
3764
+ #: modules/contact-form/contact-form.php:84
3765
+ msgid "Subject Field"
3766
+ msgstr "Emnefelt"
3767
+
3768
+ #: modules/contact-form/contact-form.php:93
3769
+ msgid "Email Field"
3770
+ msgstr "E-mailfelt"
3771
+
3772
+ #: modules/contact-form/contact-form.php:102
3773
+ msgid "Phone Field"
3774
+ msgstr "Telefonfelt"
3775
+
3776
+ #: modules/contact-form/includes/frontend.php:5
3777
+ msgctxt "Contact form field label."
3778
+ msgid "Name"
3779
+ msgstr "Navn"
3780
+
3781
+ #: modules/contact-form/includes/frontend.php:6
3782
+ #: modules/subscribe-form/includes/frontend.php:6
3783
+ msgid "Please enter your name."
3784
+ msgstr "Venligst indtast dit navn."
3785
+
3786
+ #: modules/contact-form/includes/frontend.php:7
3787
+ msgid "Your name"
3788
+ msgstr "Dit navn"
3789
+
3790
+ #: modules/contact-form/includes/frontend.php:13
3791
+ #: modules/contact-form/includes/frontend.php:15
3792
+ msgid "Subject"
3793
+ msgstr "Emne"
3794
+
3795
+ #: modules/contact-form/includes/frontend.php:14
3796
+ msgid "Please enter a subject."
3797
+ msgstr "Venligst indtast et emne."
3798
+
3799
+ #: modules/contact-form/includes/frontend.php:22
3800
+ msgid "Please enter a valid email."
3801
+ msgstr "Venligst indtast en gyldig e-mail."
3802
+
3803
+ #: modules/contact-form/includes/frontend.php:23
3804
+ msgid "Your email"
3805
+ msgstr "Din e-mail"
3806
+
3807
+ #: modules/contact-form/includes/frontend.php:29
3808
+ msgid "Phone"
3809
+ msgstr "Telefon"
3810
+
3811
+ #: modules/contact-form/includes/frontend.php:30
3812
+ msgid "Please enter a valid phone number."
3813
+ msgstr "Venligst indtast et gyldigt telefonnummer."
3814
+
3815
+ #: modules/contact-form/includes/frontend.php:31
3816
+ msgid "Your phone"
3817
+ msgstr "Din telefon"
3818
+
3819
+ #: modules/contact-form/includes/frontend.php:36
3820
+ msgid "Your Message"
3821
+ msgstr "Din besked"
3822
+
3823
+ #: modules/contact-form/includes/frontend.php:37
3824
+ msgid "Please enter a message."
3825
+ msgstr "Venligst indtast en besked"
3826
+
3827
+ #: modules/contact-form/includes/frontend.php:38
3828
+ msgid "Your message"
3829
+ msgstr "Din besked"
3830
+
3831
+ #: modules/contact-form/includes/frontend.php:43
3832
+ msgid "Send"
3833
+ msgstr "Send"
3834
+
3835
+ #: modules/contact-form/includes/frontend.php:44
3836
+ msgid "Message Sent!"
3837
+ msgstr "Beskeden er sendt!"
3838
+
3839
+ #: modules/contact-form/includes/frontend.php:45
3840
+ msgid "Message failed. Please try again."
3841
+ msgstr "Beskeden blev ikke sendt. Venligst prøv igen."
3842
+
3843
+ #: modules/content-slider/content-slider.php:14
3844
+ msgid "Content Slider"
3845
+ msgstr "Indholdsslider"
3846
+
3847
+ #: modules/content-slider/content-slider.php:15
3848
+ msgid "Displays multiple slides with an optional heading and call to action."
3849
+ msgstr "Viser flere slides med en valgfri overskrift og klik for handling"
3850
+
3851
+ #: modules/content-slider/content-slider.php:198 modules/map/map.php:41
3852
+ #: modules/post-slider/post-slider.php:345 modules/separator/separator.php:58
3853
+ #: modules/slideshow/slideshow.php:302
3854
+ msgid "Height"
3855
+ msgstr "Højde"
3856
+
3857
+ #: modules/content-slider/content-slider.php:203
3858
+ msgid ""
3859
+ "This setting is the minimum height of the content slider. Content will "
3860
+ "expand the height automatically."
3861
+ msgstr ""
3862
+ "Denne indstilling er minimumhøjden for indholdsslideren. Indholdet vil "
3863
+ "automatisk udvide højden."
3864
+
3865
+ #: modules/content-slider/content-slider.php:207
3866
+ #: modules/post-carousel/post-carousel.php:136
3867
+ #: modules/post-slider/post-slider.php:354 modules/slideshow/slideshow.php:381
3868
+ #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
3869
+ msgid "Auto Play"
3870
+ msgstr "Automatisk afspilling"
3871
+
3872
+ #: modules/content-slider/content-slider.php:221
3873
+ msgid "Show Play/Pause"
3874
+ msgstr "Vis afspil/pause"
3875
+
3876
+ #: modules/content-slider/content-slider.php:241
3877
+ #: modules/testimonials/testimonials.php:102
3878
+ msgctxt "Transition type."
3879
+ msgid "Slide"
3880
+ msgstr "Slide"
3881
+
3882
+ #: modules/content-slider/content-slider.php:255
3883
+ #: modules/post-carousel/post-carousel.php:188
3884
+ #: modules/post-slider/post-slider.php:415
3885
+ #: modules/testimonials/testimonials.php:121
3886
+ msgid "Show Arrows"
3887
+ msgstr "Vis pile"
3888
+
3889
+ #: modules/content-slider/content-slider.php:264
3890
+ #: modules/post-carousel/post-carousel.php:179
3891
+ #: modules/post-slider/post-slider.php:406
3892
+ #: modules/testimonials/testimonials.php:151
3893
+ msgid "Show Dots"
3894
+ msgstr "Vis prikker"
3895
+
3896
+ #: modules/content-slider/content-slider.php:278
3897
+ msgid "Max Content Width"
3898
+ msgstr "Maksimum indholdsbrede"
3899
+
3900
+ #: modules/content-slider/content-slider.php:283
3901
+ msgid "The max width that the content area will be within your slides."
3902
+ msgstr ""
3903
+ "Den maksimale brede som området for indhold vil være inden for dine slides."
3904
+
3905
+ #: modules/content-slider/content-slider.php:290
3906
+ msgid "Slides"
3907
+ msgstr "Slides"
3908
+
3909
+ #: modules/content-slider/content-slider.php:297
3910
+ #: modules/post-slider/post-slider.php:374
3911
+ msgid "Slide"
3912
+ msgstr "Slide"
3913
+
3914
+ #: modules/content-slider/content-slider.php:312
3915
+ msgid "Slide Settings"
3916
+ msgstr "Slideindstillinger"
3917
+
3918
+ #: modules/content-slider/content-slider.php:322
3919
+ msgid "Slide Label"
3920
+ msgstr "Slidelabel"
3921
+
3922
+ #: modules/content-slider/content-slider.php:323
3923
+ msgid ""
3924
+ "A label to identify this slide on the Slides tab of the Content Slider "
3925
+ "settings."
3926
+ msgstr ""
3927
+ "En label til at identificere dette slide i Slides fanen i Indholdsslider-"
3928
+ "indstillingerne."
3929
+
3930
+ #: modules/content-slider/content-slider.php:328
3931
+ msgid "Background Layout"
3932
+ msgstr "Baggrundslayout"
3933
+
3934
+ #: modules/content-slider/content-slider.php:334
3935
+ msgid "This setting is for the entire background of your slide."
3936
+ msgstr "Denne indstilling er for hele baggrunden af dit slide."
3937
+
3938
+ #: modules/content-slider/content-slider.php:369
3939
+ msgid "Background Video Code"
3940
+ msgstr "Baggrundsvideokode"
3941
+
3942
+ #: modules/content-slider/content-slider.php:375
3943
+ msgid "Content Layout"
3944
+ msgstr "Indholdslayout"
3945
+
3946
+ #: modules/content-slider/content-slider.php:381
3947
+ msgid ""
3948
+ "This allows you to add content over or in addition to the background "
3949
+ "selection above. The location of the content layout can be selected in the "
3950
+ "style tab."
3951
+ msgstr ""
3952
+ "Dette tillader dig at tilføje indhold over eller ud over den valgte baggrund "
3953
+ "ovenover. Placeringen af indholdslayoutet kan vælges i stil fanen."
3954
+
3955
+ #: modules/content-slider/content-slider.php:384
3956
+ msgid "Text &amp; Photo"
3957
+ msgstr "Tekst &amp; foto"
3958
+
3959
+ #: modules/content-slider/content-slider.php:385
3960
+ msgid "Text &amp; Video"
3961
+ msgstr "Tekst &amp; video"
3962
+
3963
+ #: modules/content-slider/content-slider.php:386
3964
+ msgctxt "Content type."
3965
+ msgid "None"
3966
+ msgstr "Ingen"
3967
+
3968
+ #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
3969
+ msgid "Video Embed Code"
3970
+ msgstr "Video indlejringskode"
3971
+
3972
+ #: modules/content-slider/content-slider.php:469
3973
+ msgid "Text Position"
3974
+ msgstr "Tekstposition"
3975
+
3976
+ #: modules/content-slider/content-slider.php:475
3977
+ msgid ""
3978
+ "The position will move the content layout selections left, right or center "
3979
+ "over the background of the slide."
3980
+ msgstr ""
3981
+ "Positionen vil flytte de valgte indholdslayouts til venstre, højre eller i "
3982
+ "midten over baggrunden af slidet."
3983
+
3984
+ #: modules/content-slider/content-slider.php:492
3985
+ msgid "Top Margin"
3986
+ msgstr "Top margin"
3987
+
3988
+ #: modules/content-slider/content-slider.php:500
3989
+ msgid "Bottom Margin"
3990
+ msgstr "Bund margin"
3991
+
3992
+ #: modules/content-slider/content-slider.php:508
3993
+ msgid "Left Margin"
3994
+ msgstr "Venstre margin"
3995
+
3996
+ #: modules/content-slider/content-slider.php:516
3997
+ msgid "Right Margin"
3998
+ msgstr "Højre margin"
3999
+
4000
+ #: modules/content-slider/content-slider.php:525
4001
+ msgid "Text Colors"
4002
+ msgstr "Tekstfarve"
4003
+
4004
+ #: modules/content-slider/content-slider.php:535
4005
+ msgid "Text Shadow"
4006
+ msgstr "Tekstskygge"
4007
+
4008
+ #: modules/content-slider/content-slider.php:544
4009
+ #: modules/content-slider/content-slider.php:770
4010
+ #: modules/post-carousel/post-carousel.php:411
4011
+ #: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:721
4012
+ msgid "Text Background Color"
4013
+ msgstr "Tekst baggrundsfarve"
4014
+
4015
+ #: modules/content-slider/content-slider.php:545
4016
+ #: modules/post-carousel/post-carousel.php:413
4017
+ #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:722
4018
+ msgid ""
4019
+ "The color applies to the overlay behind text over the background selections."
4020
+ msgstr "Farver gælder for overlayet bag teksten over den valgte baggrund."
4021
+
4022
+ #: modules/content-slider/content-slider.php:550
4023
+ #: modules/post-carousel/post-carousel.php:423
4024
+ #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:728
4025
+ msgid "Text Background Opacity"
4026
+ msgstr "Tekst baggrundsgennemsigtighed"
4027
+
4028
+ #: modules/content-slider/content-slider.php:558
4029
+ #: modules/post-slider/post-slider.php:745
4030
+ msgid "Text Background Height"
4031
+ msgstr "Tekst baggrundshøjde"
4032
+
4033
+ #: modules/content-slider/content-slider.php:560
4034
+ #: modules/post-slider/post-slider.php:747
4035
+ msgid ""
4036
+ "Auto will allow the overlay to fit however long the text content is. 100% "
4037
+ "will fit the overlay to the top and bottom of the slide."
4038
+ msgstr ""
4039
+ "Automatisk vil tillade overlayet at tilpasse sig til tekstindholdet. 100% "
4040
+ "vil tilpasse overlayet til toppen og bunden af slidet."
4041
+
4042
+ #: modules/content-slider/content-slider.php:562
4043
+ #: modules/post-slider/post-slider.php:749
4044
+ msgctxt "Background height."
4045
+ msgid "Auto"
4046
+ msgstr "Automatisk"
4047
+
4048
+ #: modules/content-slider/content-slider.php:579
4049
+ msgid ""
4050
+ "The link applies to the entire slide. If choosing a call to action type "
4051
+ "below, this link will also be used for the text or button."
4052
+ msgstr ""
4053
+ "Linket gælder for hele slidet. Ved at vælge en klik for handling-type "
4054
+ "nedenfor vil dette link også blive brugt for teksten eller knappen."
4055
+
4056
+ #: modules/content-slider/content-slider.php:721
4057
+ msgid "Border Radius"
4058
+ msgstr "Borderradius"
4059
+
4060
+ #: modules/content-slider/content-slider.php:732
4061
+ msgctxt "Module settings form tab. Display on mobile devices."
4062
+ msgid "Mobile"
4063
+ msgstr "Mobil"
4064
+
4065
+ #: modules/content-slider/content-slider.php:735
4066
+ msgid "Mobile Photo"
4067
+ msgstr "Mobilfoto"
4068
+
4069
+ #: modules/content-slider/content-slider.php:741
4070
+ msgid ""
4071
+ "You can choose a different photo that the slide will change to on mobile "
4072
+ "devices or no photo if desired."
4073
+ msgstr ""
4074
+ "Du kan vælge et andet foto, som slidet vil skifte til på mobileenheder eller "
4075
+ "intet foto, hvis dette ønskes."
4076
+
4077
+ #: modules/content-slider/content-slider.php:743
4078
+ msgid "Use Main Photo"
4079
+ msgstr "Bruge primære foto"
4080
+
4081
+ #: modules/content-slider/content-slider.php:744
4082
+ msgid "Choose Another Photo"
4083
+ msgstr "Vælg andet foto"
4084
+
4085
+ #: modules/content-slider/content-slider.php:745
4086
+ msgid "No Photo"
4087
+ msgstr "Intet foto"
4088
+
4089
+ #: modules/content-slider/content-slider.php:760
4090
+ msgid "Mobile Text Colors"
4091
+ msgstr "Mobil tekstfarve"
4092
+
4093
+ #: modules/cta/cta.php:15
4094
+ msgid "Display a heading, subheading and a button."
4095
+ msgstr "Vis en overskrift, underrubrik og en knap."
4096
+
4097
+ #: modules/cta/cta.php:76
4098
+ msgid "Ready to find out more?"
4099
+ msgstr "Klar til at lær mere?"
4100
+
4101
+ #: modules/cta/cta.php:91
4102
+ msgid "Drop us a line today for a free quote!"
4103
+ msgstr "Drop os en line for et gratis citat!"
4104
+
4105
+ #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
4106
+ #: modules/menu/menu.php:90 modules/post-carousel/post-carousel.php:117
4107
+ #: modules/post-carousel/post-carousel.php:206
4108
+ #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:433
4109
+ #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
4110
+ #: modules/testimonials/testimonials.php:37
4111
+ #: modules/woocommerce/woocommerce.php:57
4112
+ msgid "Layout"
4113
+ msgstr "Layout"
4114
+
4115
+ #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
4116
+ msgid "Inline"
4117
+ msgstr "Inline"
4118
+
4119
+ #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
4120
+ msgid "Stacked"
4121
+ msgstr "Stablet"
4122
+
4123
+ #: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
4124
+ msgid "Spacing"
4125
+ msgstr "Spacing"
4126
+
4127
+ #: modules/cta/cta.php:246
4128
+ msgid "Button Link"
4129
+ msgstr "Knaplink"
4130
+
4131
+ #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:121
4132
+ #: modules/post-grid/post-grid.php:55
4133
+ msgid "Gallery"
4134
+ msgstr "Galleri"
4135
+
4136
+ #: modules/gallery/gallery.php:15
4137
+ msgid "Display multiple photos in a gallery view."
4138
+ msgstr "Vis flere fotos i en gallerioversigt."
4139
+
4140
+ #: modules/gallery/gallery.php:230
4141
+ msgid "Collage"
4142
+ msgstr "Collage"
4143
+
4144
+ #: modules/gallery/gallery.php:231
4145
+ msgctxt "Gallery layout: thumbnails."
4146
+ msgid "Thumbs"
4147
+ msgstr "Thumbs"
4148
+
4149
+ #: modules/gallery/gallery.php:267
4150
+ msgid "Photo Size"
4151
+ msgstr "Fotostørrelse"
4152
+
4153
+ #: modules/gallery/gallery.php:270
4154
+ msgctxt "Photo size."
4155
+ msgid "Small"
4156
+ msgstr "Lille"
4157
+
4158
+ #: modules/gallery/gallery.php:271
4159
+ msgctxt "Photo size."
4160
+ msgid "Medium"
4161
+ msgstr "Medium"
4162
+
4163
+ #: modules/gallery/gallery.php:272
4164
+ msgctxt "Photo size."
4165
+ msgid "Large"
4166
+ msgstr "Stor"
4167
+
4168
+ #: modules/gallery/gallery.php:277
4169
+ msgid "Photo Spacing"
4170
+ msgstr "Fotospacing"
4171
+
4172
+ #: modules/gallery/gallery.php:285
4173
+ msgid "Show Captions"
4174
+ msgstr "Vis billedtekst"
4175
+
4176
+ #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
4177
+ msgid "Never"
4178
+ msgstr "Aldrig"
4179
+
4180
+ #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
4181
+ msgid "On Hover"
4182
+ msgstr "Ved hover"
4183
+
4184
+ #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
4185
+ msgid "Below Photo"
4186
+ msgstr "Under foto"
4187
+
4188
+ #: modules/gallery/gallery.php:292
4189
+ msgid ""
4190
+ "The caption pulls from whatever text you put in the caption area in the "
4191
+ "media manager for each image. The caption is also pulled directly from "
4192
+ "SmugMug if you have captions set in your gallery."
4193
+ msgstr ""
4194
+ "Billedteksten hentes fra hvilken som helst tekst du skriver i "
4195
+ "billedtekstområdet i medieadministratoren for hvert billede. Billedtekst "
4196
+ "hentes også direkte fra SmugMug, hvis du har billedtekster i dit galleri."
4197
+
4198
+ #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4199
+ msgid "Click Action"
4200
+ msgstr "Klik handling"
4201
+
4202
+ #: modules/gallery/gallery.php:299
4203
+ msgctxt "Click action."
4204
+ msgid "None"
4205
+ msgstr "Ingen"
4206
+
4207
+ #: modules/gallery/gallery.php:300 modules/photo/photo.php:468
4208
+ msgid "Lightbox"
4209
+ msgstr "Lightbox"
4210
+
4211
+ #: modules/gallery/gallery.php:301
4212
+ msgid "Photo Link"
4213
+ msgstr "Fotolink"
4214
+
4215
+ #: modules/heading/heading.php:15
4216
+ msgid "Display a title/page heading."
4217
+ msgstr "Vis en titel/sideoverskrift"
4218
+
4219
+ #: modules/heading/heading.php:101
4220
+ msgid "HTML Tag"
4221
+ msgstr "HTML-etikette"
4222
+
4223
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
4224
+ msgid "Custom Font Size"
4225
+ msgstr "Brugerdefineret skrifttypestørrelse"
4226
+
4227
+ #: modules/heading/heading.php:137
4228
+ msgid "Mobile Structure"
4229
+ msgstr "Mobilopbygning"
4230
+
4231
+ #: modules/heading/heading.php:158
4232
+ msgid "Custom Alignment"
4233
+ msgstr "Brugerdefineret tilpasning"
4234
+
4235
+ #: modules/html/html.php:14
4236
+ msgid "HTML"
4237
+ msgstr "HTML"
4238
+
4239
+ #: modules/html/html.php:15
4240
+ msgid "Display raw HTML code."
4241
+ msgstr "Vis rå HTML-kode"
4242
+
4243
+ #: modules/icon-group/icon-group.php:14
4244
+ msgid "Icon Group"
4245
+ msgstr "Ikongruppe"
4246
+
4247
+ #: modules/icon-group/icon-group.php:15
4248
+ msgid "Display a group of linked Font Awesome icons."
4249
+ msgstr "Vis en gruppe af forbundne Font Awesome ikoner."
4250
+
4251
+ #: modules/icon-group/icon-group.php:125
4252
+ msgid "Add Icon"
4253
+ msgstr "Tilføj ikon"
4254
+
4255
+ #: modules/icon/icon.php:15
4256
+ msgid "Display an icon and optional title."
4257
+ msgstr "Vis et ikon og en valgfri titel."
4258
+
4259
+ #: modules/map/map.php:14
4260
+ msgid "Map"
4261
+ msgstr "Kort"
4262
+
4263
+ #: modules/map/map.php:15
4264
+ msgid "Display a Google map."
4265
+ msgstr "Vis et Google map."
4266
+
4267
+ #: modules/map/map.php:33
4268
+ msgid "Address"
4269
+ msgstr "Adresse"
4270
+
4271
+ #: modules/map/map.php:34
4272
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4273
+ msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
4274
+
4275
+ #: modules/menu/menu.php:14 modules/menu/menu.php:24 modules/menu/menu.php:62
4276
+ #: modules/menu/menu.php:69
4277
+ msgid "Menu"
4278
+ msgstr "Menu"
4279
+
4280
+ #: modules/menu/menu.php:15
4281
+ msgid "Renders a WordPress menu."
4282
+ msgstr "Udføre en WordPress menu."
4283
+
4284
+ #: modules/menu/menu.php:25
4285
+ msgid ""
4286
+ "Select a WordPress menu that you created in the admin under Appearance > "
4287
+ "Menus."
4288
+ msgstr ""
4289
+ "Vælg en WordPress-menu, som du har oprettet i adminen under Udseende > "
4290
+ "Menuer."
4291
+
4292
+ #: modules/menu/menu.php:42
4293
+ msgid "No Menus Found"
4294
+ msgstr "Ingen menuer fundet"
4295
+
4296
+ #: modules/menu/menu.php:93 modules/tabs/tabs.php:55
4297
+ msgid "Horizontal"
4298
+ msgstr "Vandret"
4299
+
4300
+ #: modules/menu/menu.php:94 modules/tabs/tabs.php:56
4301
+ msgid "Vertical"
4302
+ msgstr "Lodret"
4303
+
4304
+ #: modules/menu/menu.php:96 modules/menu/menu.php:134
4305
+ msgid "Expanded"
4306
+ msgstr "Udvidet"
4307
+
4308
+ #: modules/menu/menu.php:112
4309
+ msgid "Submenu Icon"
4310
+ msgstr "undermenu ikon"
4311
+
4312
+ #: modules/menu/menu.php:115 modules/menu/menu.php:125
4313
+ msgid "Arrows"
4314
+ msgstr "Pile"
4315
+
4316
+ #: modules/menu/menu.php:116 modules/menu/menu.php:126
4317
+ msgid "Plus sign"
4318
+ msgstr "Plustegn"
4319
+
4320
+ #: modules/menu/menu.php:117 modules/menu/menu.php:223
4321
+ msgid "None"
4322
+ msgstr "Ingen"
4323
+
4324
+ #: modules/menu/menu.php:122
4325
+ msgid "Submenu Icon click"
4326
+ msgstr "Undermenu ikon klik"
4327
+
4328
+ #: modules/menu/menu.php:131
4329
+ msgid "Mobile Style"
4330
+ msgstr "Mobilstil"
4331
+
4332
+ #: modules/menu/menu.php:135
4333
+ msgid "Hamburger Icon"
4334
+ msgstr "Hamburgerikon"
4335
+
4336
+ #: modules/menu/menu.php:136
4337
+ msgid "Hamburger Icon + label"
4338
+ msgstr "Hamburgerikon + label"
4339
+
4340
+ #: modules/menu/menu.php:137
4341
+ msgid "Menu Button"
4342
+ msgstr "Menuknap"
4343
+
4344
+ #: modules/menu/menu.php:153
4345
+ msgid "Menu Alignment"
4346
+ msgstr "Menutilpasning"
4347
+
4348
+ #: modules/menu/menu.php:164
4349
+ msgid "Submenu Drop Shadow"
4350
+ msgstr "Undermenu dropskygge"
4351
+
4352
+ #: modules/menu/menu.php:206
4353
+ msgid "Link Size"
4354
+ msgstr "Linkstørrelse"
4355
+
4356
+ #: modules/menu/menu.php:220
4357
+ msgid "Link Format"
4358
+ msgstr "Linkformat"
4359
+
4360
+ #: modules/menu/menu.php:224
4361
+ msgid "Uppercase"
4362
+ msgstr "Store bogstaver"
4363
+
4364
+ #: modules/menu/menu.php:225
4365
+ msgid "Lowercase"
4366
+ msgstr "Små bogstaver"
4367
+
4368
+ #: modules/menu/menu.php:226
4369
+ msgid "Capitalize"
4370
+ msgstr "Kapitaliseret"
4371
+
4372
+ #: modules/menu/menu.php:236
4373
+ msgid "Link Weight"
4374
+ msgstr "Linktykkelse"
4375
+
4376
+ #: modules/menu/menu.php:239
4377
+ msgid "Normal"
4378
+ msgstr "Normal"
4379
+
4380
+ #: modules/menu/menu.php:240
4381
+ msgid "Bold"
4382
+ msgstr "Fed"
4383
+
4384
+ #: modules/menu/menu.php:241
4385
+ msgid "Light"
4386
+ msgstr "Let"
4387
+
4388
+ #: modules/menu/menu.php:251
4389
+ msgid "Horizontal Spacing"
4390
+ msgstr "Vandret spacing"
4391
+
4392
+ #: modules/menu/menu.php:274
4393
+ msgid "Vertical Spacing"
4394
+ msgstr "Lodret spacing"
4395
+
4396
+ #: modules/menu/menu.php:299
4397
+ msgid "Backgrounds"
4398
+ msgstr "Baggrunde"
4399
+
4400
+ #: modules/menu/menu.php:303
4401
+ msgid "Menu Background Color"
4402
+ msgstr "Menu baggrundsfarve"
4403
+
4404
+ #: modules/menu/menu.php:313 modules/menu/menu.php:331
4405
+ msgid "Menu Background Opacity"
4406
+ msgstr "Menu baggrundsgennemsigtighed"
4407
+
4408
+ #: modules/menu/menu.php:321
4409
+ msgid "Submenu Background Color"
4410
+ msgstr "Undermenu baggrundsfarve"
4411
+
4412
+ #: modules/menu/menu.php:340
4413
+ msgid "Link Background Hover Color"
4414
+ msgstr "Link baggrundshoverfarve"
4415
+
4416
+ #: modules/menu/menu.php:351 modules/separator/separator.php:14
4417
+ msgid "Separator"
4418
+ msgstr "Separator"
4419
+
4420
+ #: modules/menu/menu.php:355
4421
+ msgid "Show Separators"
4422
+ msgstr "Vis separatorer"
4423
+
4424
+ #: modules/menu/menu.php:369
4425
+ msgid "Separator Color"
4426
+ msgstr "Separatorfarve"
4427
+
4428
+ #: modules/menu/menu.php:374
4429
+ msgid "Separator Opacity"
4430
+ msgstr "Separatorgennemsigtighed"
4431
+
4432
+ #: modules/photo/photo.php:26
4433
+ msgid "Upload a photo or display one from the media library."
4434
+ msgstr "Overfør et foto eller vis et fra mediebiblioteket."
4435
+
4436
+ #: modules/photo/photo.php:391
4437
+ msgid "Photo Source"
4438
+ msgstr "Fotokilde"
4439
+
4440
+ #: modules/photo/photo.php:395 modules/photo/photo.php:467
4441
+ msgid "URL"
4442
+ msgstr "URL"
4443
+
4444
+ #: modules/photo/photo.php:412
4445
+ msgid "Photo URL"
4446
+ msgstr "Foto URL"
4447
+
4448
+ #: modules/photo/photo.php:413
4449
+ msgid "http://www.example.com/my-photo.jpg"
4450
+ msgstr "http://www.eksempel.dk/mit-foto.jpg"
4451
+
4452
+ #: modules/photo/photo.php:441 modules/photo/photo.php:455
4453
+ msgid "Caption"
4454
+ msgstr "Billedtekst"
4455
+
4456
+ #: modules/photo/photo.php:445
4457
+ msgid "Show Caption"
4458
+ msgstr "Vis billedtekst"
4459
+
4460
+ #: modules/photo/photo.php:464
4461
+ msgid "Link Type"
4462
+ msgstr "Linktype"
4463
+
4464
+ #: modules/photo/photo.php:466
4465
+ msgctxt "Link type."
4466
+ msgid "None"
4467
+ msgstr "Ingen"
4468
+
4469
+ #: modules/photo/photo.php:469
4470
+ msgid "Photo File"
4471
+ msgstr "Fotofil"
4472
+
4473
+ #: modules/photo/photo.php:480
4474
+ msgid ""
4475
+ "Link type applies to how the image should be linked on click. You can choose "
4476
+ "a specific URL, the individual photo or a separate page with the photo."
4477
+ msgstr ""
4478
+ "Linktype gælder for hvordan linket til billedet reagerer ved klik. Du kan "
4479
+ "vælge en bestemt URL, det individuelle foto eller en separat side med "
4480
+ "billedet."
4481
+
4482
+ #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
4483
+ msgid "Link URL"
4484
+ msgstr "Link URL"
4485
+
4486
+ #: modules/post-carousel/includes/post-gallery-loop.php:35
4487
+ #: modules/post-carousel/includes/post-grid-loop.php:22
4488
+ #: modules/post-grid/includes/post-feed.php:14
4489
+ #: modules/post-grid/includes/post-grid.php:24
4490
+ #: modules/post-slider/includes/post-loop.php:29
4491
+ #, php-format
4492
+ msgctxt "%s stands for author name."
4493
+ msgid "By %s"
4494
+ msgstr "Af %s"
4495
+
4496
+ #: modules/post-carousel/post-carousel.php:14
4497
+ msgid "Posts Carousel"
4498
+ msgstr "Indlægskarussel"
4499
+
4500
+ #: modules/post-carousel/post-carousel.php:15
4501
+ msgid "Display a carousel of your WordPress posts."
4502
+ msgstr "Vis en karrusel af dine WordPress indlæg."
4503
+
4504
+ #: modules/post-carousel/post-carousel.php:110
4505
+ #: modules/post-slider/post-slider.php:338
4506
+ msgid "Slider"
4507
+ msgstr "Slider"
4508
+
4509
+ #: modules/post-carousel/post-carousel.php:120
4510
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:91
4511
+ msgid "Grid"
4512
+ msgstr "Gitter"
4513
+
4514
+ #: modules/post-carousel/post-carousel.php:152
4515
+ #: modules/post-slider/post-slider.php:379 modules/video/video.php:120
4516
+ msgid "Loop"
4517
+ msgstr "Loop"
4518
+
4519
+ #: modules/post-carousel/post-carousel.php:168
4520
+ #: modules/post-slider/post-slider.php:395
4521
+ msgid "Number of Posts"
4522
+ msgstr "Antal af indlæg"
4523
+
4524
+ #: modules/post-carousel/post-carousel.php:175
4525
+ #: modules/post-slider/post-slider.php:402
4526
+ msgid "Slider Controls"
4527
+ msgstr "Sliderstyringer"
4528
+
4529
+ #: modules/post-carousel/post-carousel.php:209
4530
+ #: modules/post-grid/post-grid.php:14
4531
+ msgid "Posts"
4532
+ msgstr "Indlæg"
4533
+
4534
+ #: modules/post-carousel/post-carousel.php:213
4535
+ msgid "Post Max Width"
4536
+ msgstr "Indlæg maksimum brede"
4537
+
4538
+ #: modules/post-carousel/post-carousel.php:221
4539
+ #: modules/post-grid/post-grid.php:103
4540
+ msgid "Post Spacing"
4541
+ msgstr "Indlægsspacing"
4542
+
4543
+ #: modules/post-carousel/post-carousel.php:229
4544
+ msgid "Equalize Column Heights"
4545
+ msgstr "Ligestil kolonnehøjder"
4546
+
4547
+ #: modules/post-carousel/post-carousel.php:238
4548
+ msgid "Post Hover Transition"
4549
+ msgstr "Indlæg hoverovergang"
4550
+
4551
+ #: modules/post-carousel/post-carousel.php:242
4552
+ #: modules/post-grid/post-grid.php:248
4553
+ msgid "Slide Up"
4554
+ msgstr "Slide op"
4555
+
4556
+ #: modules/post-carousel/post-carousel.php:243
4557
+ #: modules/post-grid/post-grid.php:249
4558
+ msgid "Slide Down"
4559
+ msgstr "Slide ned"
4560
+
4561
+ #: modules/post-carousel/post-carousel.php:244
4562
+ #: modules/post-grid/post-grid.php:250
4563
+ msgid "Scale Up"
4564
+ msgstr "Opskaler"
4565
+
4566
+ #: modules/post-carousel/post-carousel.php:245
4567
+ #: modules/post-grid/post-grid.php:251
4568
+ msgid "Scale Down"
4569
+ msgstr "Nedskaler"
4570
+
4571
+ #: modules/post-carousel/post-carousel.php:251
4572
+ #: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:456
4573
+ msgid "Featured Image"
4574
+ msgstr "Fremhævede billede"
4575
+
4576
+ #: modules/post-carousel/post-carousel.php:279
4577
+ #: modules/post-grid/post-grid.php:261
4578
+ msgid "Use Icon for Posts"
4579
+ msgstr "Brug ikon for indlæg"
4580
+
4581
+ #: modules/post-carousel/post-carousel.php:293
4582
+ #: modules/post-grid/post-grid.php:275
4583
+ msgid "Post Icon"
4584
+ msgstr "Indlægsikon"
4585
+
4586
+ #: modules/post-carousel/post-carousel.php:297
4587
+ #: modules/post-grid/post-grid.php:279
4588
+ msgid "Post Icon Position"
4589
+ msgstr "Indlægsikonposition"
4590
+
4591
+ #: modules/post-carousel/post-carousel.php:300
4592
+ #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
4593
+ msgid "Above Text"
4594
+ msgstr "Over tekst"
4595
+
4596
+ #: modules/post-carousel/post-carousel.php:301
4597
+ #: modules/post-grid/post-grid.php:283
4598
+ msgid "Below Text"
4599
+ msgstr "Under tekst"
4600
+
4601
+ #: modules/post-carousel/post-carousel.php:306
4602
+ #: modules/post-grid/post-grid.php:288
4603
+ msgid "Post Icon Size"
4604
+ msgstr "Indlægsikonstørrelse"
4605
+
4606
+ #: modules/post-carousel/post-carousel.php:315
4607
+ #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:495
4608
+ msgid "Post Info"
4609
+ msgstr "Indlægsinfo"
4610
+
4611
+ #: modules/post-carousel/post-carousel.php:342
4612
+ #: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:522
4613
+ msgid "Date Format"
4614
+ msgstr "Datoformat"
4615
+
4616
+ #: modules/post-carousel/post-carousel.php:372
4617
+ #: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:561
4618
+ msgid "More Link"
4619
+ msgstr "Mere link"
4620
+
4621
+ #: modules/post-carousel/post-carousel.php:381
4622
+ #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:570
4623
+ msgid "More Link Text"
4624
+ msgstr "Mere link tekst"
4625
+
4626
+ #: modules/post-carousel/post-carousel.php:418
4627
+ #: modules/post-grid/post-grid.php:307
4628
+ msgid "Post Icon Color"
4629
+ msgstr "Indlægsikonfarve"
4630
+
4631
+ #: modules/post-grid/includes/frontend.php:41
4632
+ msgid "No posts found."
4633
+ msgstr "Ingen indlæg fundet."
4634
+
4635
+ #: modules/post-grid/post-grid.php:15
4636
+ msgid "Display a grid of your WordPress posts."
4637
+ msgstr "Vis et gitter af dine WordPress indlæg."
4638
+
4639
+ #: modules/post-grid/post-grid.php:51
4640
+ msgid "Layout Style"
4641
+ msgstr "Layoutstil"
4642
+
4643
+ #: modules/post-grid/post-grid.php:56
4644
+ msgid "Feed"
4645
+ msgstr "Feed"
4646
+
4647
+ #: modules/post-grid/post-grid.php:74
4648
+ msgid "Pagination Style"
4649
+ msgstr "Paginationstil"
4650
+
4651
+ #: modules/post-grid/post-grid.php:77
4652
+ msgid "Numbers"
4653
+ msgstr "Numre"
4654
+
4655
+ #: modules/post-grid/post-grid.php:79
4656
+ msgctxt "Pagination style."
4657
+ msgid "None"
4658
+ msgstr "Ingen"
4659
+
4660
+ #: modules/post-grid/post-grid.php:84
4661
+ msgid "Posts Per Page"
4662
+ msgstr "Indlæg pr. side"
4663
+
4664
+ #: modules/post-grid/post-grid.php:95
4665
+ msgid "Post Width"
4666
+ msgstr "Indlægsbrede"
4667
+
4668
+ #: modules/post-grid/post-grid.php:134
4669
+ msgid "Beside Text"
4670
+ msgstr "Ved siden af tekst"
4671
+
4672
+ #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:538
4673
+ msgid "Comments"
4674
+ msgstr "Kommentarer"
4675
+
4676
+ #: modules/post-grid/post-grid.php:211
4677
+ msgid "Content Type"
4678
+ msgstr "Indholdstype"
4679
+
4680
+ #: modules/post-grid/post-grid.php:214
4681
+ msgid "Excerpt"
4682
+ msgstr "Uddrag"
4683
+
4684
+ #: modules/post-grid/post-grid.php:215
4685
+ msgid "Full Text"
4686
+ msgstr "Fuld tekst"
4687
+
4688
+ #: modules/post-grid/post-grid.php:244
4689
+ msgid "Hover Transition"
4690
+ msgstr "Hoverovergang"
4691
+
4692
+ #: modules/post-slider/post-slider.php:14
4693
+ msgid "Posts Slider"
4694
+ msgstr "Indlægsslider"
4695
+
4696
+ #: modules/post-slider/post-slider.php:15
4697
+ msgid "Display a slider of your WordPress posts."
4698
+ msgstr "VIs en slider af dine WordPress indlæg."
4699
+
4700
+ #: modules/post-slider/post-slider.php:350
4701
+ msgid ""
4702
+ "This setting is the minimum height of the post slider. Content will expand "
4703
+ "the height automatically."
4704
+ msgstr ""
4705
+ "Denne indstilling er minimumhøjden for indlægsslideren. Indholdet vil "
4706
+ "automatisk udvide højden."
4707
+
4708
+ #: modules/post-slider/post-slider.php:440
4709
+ msgid "Show Featured Image?"
4710
+ msgstr "Vis fremhævede billede?"
4711
+
4712
+ #: modules/post-slider/post-slider.php:628
4713
+ msgid ""
4714
+ "The position will move the content layout selections left, right or bottom "
4715
+ "over the background of the slide."
4716
+ msgstr ""
4717
+ "Positionen vil flytte de valgte indholdslayouts til venstre, højre eller i "
4718
+ "bunden over baggrunden af slidet."
4719
+
4720
+ #: modules/post-slider/post-slider.php:647
4721
+ msgid ""
4722
+ "The position will move the content layout selections left or right or center "
4723
+ "of the thumbnail of the slide."
4724
+ msgstr ""
4725
+ "Positionen vil flytte de valgte indholdslayouts til venstre, højre eller i "
4726
+ "midten over thumbnailen af slidet."
4727
+
4728
+ #: modules/post-slider/post-slider.php:663
4729
+ msgid "Text Width"
4730
+ msgstr "Tekstbrede"
4731
+
4732
+ #: modules/post-slider/post-slider.php:671
4733
+ msgid "Text Padding"
4734
+ msgstr "Tekstpadding"
4735
+
4736
+ #: modules/post-slider/post-slider.php:736
4737
+ msgid "Text Background Gradient"
4738
+ msgstr "Tekst baggrundsgradient"
4739
+
4740
+ #: modules/pricing-table/pricing-table.php:14
4741
+ msgid "Pricing Table"
4742
+ msgstr "Prisskema"
4743
+
4744
+ #: modules/pricing-table/pricing-table.php:15
4745
+ msgid "A simple pricing table generator."
4746
+ msgstr "En simpel prisskema generator."
4747
+
4748
+ #: modules/pricing-table/pricing-table.php:26
4749
+ msgid "Pricing Boxes"
4750
+ msgstr "Prisbokse"
4751
+
4752
+ #: modules/pricing-table/pricing-table.php:33
4753
+ msgid "Pricing Box"
4754
+ msgstr "Prisboks"
4755
+
4756
+ #: modules/pricing-table/pricing-table.php:50
4757
+ msgid "Box Spacing"
4758
+ msgstr "Boksspacing"
4759
+
4760
+ #: modules/pricing-table/pricing-table.php:53
4761
+ #: modules/testimonials/testimonials.php:40
4762
+ msgid "Wide"
4763
+ msgstr "Bred"
4764
+
4765
+ #: modules/pricing-table/pricing-table.php:54
4766
+ msgid "Tight"
4767
+ msgstr "Smal"
4768
+
4769
+ #: modules/pricing-table/pricing-table.php:59
4770
+ msgid "Features Min Height"
4771
+ msgstr "Features minimum højde"
4772
+
4773
+ #: modules/pricing-table/pricing-table.php:63
4774
+ msgid ""
4775
+ "Use this to normalize the height of your boxes when they have different "
4776
+ "numbers of features."
4777
+ msgstr ""
4778
+ "Brug dette til at normalisere højden af dine bokse, når du har forskellige "
4779
+ "antal af features."
4780
+
4781
+ #: modules/pricing-table/pricing-table.php:70
4782
+ msgctxt "Border size."
4783
+ msgid "Wide"
4784
+ msgstr "Bred"
4785
+
4786
+ #: modules/pricing-table/pricing-table.php:71
4787
+ msgctxt "Border size."
4788
+ msgid "Tight"
4789
+ msgstr "Smal"
4790
+
4791
+ #: modules/pricing-table/pricing-table.php:84
4792
+ msgid "Add Pricing Box"
4793
+ msgstr "Tilføj prisboks"
4794
+
4795
+ #: modules/pricing-table/pricing-table.php:98
4796
+ msgid "Title Size"
4797
+ msgstr "Titelstørrelse"
4798
+
4799
+ #: modules/pricing-table/pricing-table.php:107
4800
+ msgid "Price Box"
4801
+ msgstr "Prisboks"
4802
+
4803
+ #: modules/pricing-table/pricing-table.php:111
4804
+ #: modules/woocommerce/woocommerce.php:190
4805
+ msgid "Price"
4806
+ msgstr "Pris"
4807
+
4808
+ #: modules/pricing-table/pricing-table.php:115
4809
+ msgid "Duration"
4810
+ msgstr "Varighed"
4811
+
4812
+ #: modules/pricing-table/pricing-table.php:116
4813
+ msgid "per Year"
4814
+ msgstr "Pr. år"
4815
+
4816
+ #: modules/pricing-table/pricing-table.php:120
4817
+ msgid "Price Size"
4818
+ msgstr "Prisstørrelse"
4819
+
4820
+ #: modules/pricing-table/pricing-table.php:133
4821
+ #: modules/subscribe-form/subscribe-form.php:168
4822
+ msgid "Button Text"
4823
+ msgstr "Knaptekst"
4824
+
4825
+ #: modules/pricing-table/pricing-table.php:137
4826
+ msgid "Button URL"
4827
+ msgstr "Knap URL"
4828
+
4829
+ #: modules/pricing-table/pricing-table.php:142
4830
+ msgctxt "Price features displayed in pricing box."
4831
+ msgid "Features"
4832
+ msgstr "Features"
4833
+
4834
+ #: modules/pricing-table/pricing-table.php:147
4835
+ msgid "One feature per line. HTML is okay."
4836
+ msgstr "En feature pr. linje. HTML er okay."
4837
+
4838
+ #: modules/pricing-table/pricing-table.php:162
4839
+ msgid "Box Background"
4840
+ msgstr "Boksbaggrund"
4841
+
4842
+ #: modules/pricing-table/pricing-table.php:167
4843
+ msgid "Box Foreground"
4844
+ msgstr "Boksforgrund"
4845
+
4846
+ #: modules/pricing-table/pricing-table.php:173
4847
+ msgid "Accent Color"
4848
+ msgstr "Accentfarve"
4849
+
4850
+ #: modules/pricing-table/pricing-table.php:178
4851
+ msgid "Accent Text Color"
4852
+ msgstr "Accent tekstfarve"
4853
+
4854
+ #: modules/pricing-table/pricing-table.php:182
4855
+ msgid "Box Top Margin"
4856
+ msgstr "Boks top margin"
4857
+
4858
+ #: modules/rich-text/rich-text.php:15
4859
+ msgid "A WYSIWYG text editor."
4860
+ msgstr "En WYSIWYG teskt editor."
4861
+
4862
+ #: modules/separator/separator.php:15
4863
+ msgid "A divider line to separate content."
4864
+ msgstr "En delelinje til at separere indhold."
4865
+
4866
+ #: modules/separator/separator.php:85
4867
+ msgid ""
4868
+ "The type of border to use. Double borders must have a height of at least 3px "
4869
+ "to render properly."
4870
+ msgstr ""
4871
+ "Hvilken type border skal bruges. Dobbeltborders skal have en bredde på "
4872
+ "mindst 3px for at blive udført korrekt."
4873
+
4874
+ #: modules/sidebar/includes/settings-general.php:5
4875
+ #: modules/sidebar/sidebar.php:14
4876
+ msgid "Sidebar"
4877
+ msgstr "Sidebar"
4878
+
4879
+ #: modules/sidebar/sidebar.php:15
4880
+ msgid ""
4881
+ "Display a WordPress sidebar that has been registered by the current theme."
4882
+ msgstr ""
4883
+ "Vis en WordPress sidebar, som er blevet registreret af det nuværende tema."
4884
+
4885
+ #: modules/slideshow/slideshow.php:14
4886
+ msgid "Slideshow"
4887
+ msgstr "Slideshow"
4888
+
4889
+ #: modules/slideshow/slideshow.php:15
4890
+ msgid "Display multiple photos in a slideshow view."
4891
+ msgstr "Vis flere fotos i en slideshowoversigt."
4892
+
4893
+ #: modules/slideshow/slideshow.php:310
4894
+ msgid "Skin Color"
4895
+ msgstr "Skinfarve"
4896
+
4897
+ #: modules/slideshow/slideshow.php:313
4898
+ msgctxt "Color."
4899
+ msgid "Light"
4900
+ msgstr "Lys"
4901
+
4902
+ #: modules/slideshow/slideshow.php:314
4903
+ msgctxt "Color."
4904
+ msgid "Dark"
4905
+ msgstr "Mørk"
4906
+
4907
+ #: modules/slideshow/slideshow.php:316
4908
+ msgid ""
4909
+ "If your overall theme/images are lighter in color, light will display "
4910
+ "buttons in a darker color scheme and vice versa for dark."
4911
+ msgstr ""
4912
+ "Hvis dit overordnede tema/dine billeder er lyse, vil lys vise knapper i et "
4913
+ "mørkere farveskema og omvendt for mørk"
4914
+
4915
+ #: modules/slideshow/slideshow.php:326
4916
+ msgid ""
4917
+ "Crop set to no will fit the slideshow images to the height you specify and "
4918
+ "keep the width proportional, whereas crop set to yes will fit the slideshow "
4919
+ "images to all sides of the content area while cropping the left and right to "
4920
+ "fit the height you specify."
4921
+ msgstr ""
4922
+ "Beskær sat til nej tilpasser slideshowbillederne til en højde specificeret "
4923
+ "af dig og breden ændres i forhold med højden. Beskær sat til ja vil tilpasse "
4924
+ "slideshowbillederne til alle sider af området for indhold, samtidig med at "
4925
+ "beskærer venstre og højre side til at passe til højden specificeret af dig."
4926
+
4927
+ #: modules/slideshow/slideshow.php:330
4928
+ msgid "Disable Right-Click"
4929
+ msgstr "Deaktiver højre-klik"
4930
+
4931
+ #: modules/slideshow/slideshow.php:350
4932
+ msgctxt "Click action type."
4933
+ msgid "None"
4934
+ msgstr "Ingen"
4935
+
4936
+ #: modules/slideshow/slideshow.php:374
4937
+ msgid "Playback"
4938
+ msgstr "Afspilning"
4939
+
4940
+ #: modules/slideshow/slideshow.php:400
4941
+ msgctxt "Slideshow transition."
4942
+ msgid "None"
4943
+ msgstr "Ingen"
4944
+
4945
+ #: modules/slideshow/slideshow.php:437
4946
+ msgid "Controls"
4947
+ msgstr "Betjeningstaster"
4948
+
4949
+ #: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
4950
+ msgid "Navigation Arrows"
4951
+ msgstr "Navigationspile"
4952
+
4953
+ #: modules/slideshow/slideshow.php:450
4954
+ msgid ""
4955
+ "Navigational arrows allow the visitor to freely move through the images in "
4956
+ "your slideshow. These are larger arrows that overlay your slideshow images "
4957
+ "and are separate from the control bar navigational arrows."
4958
+ msgstr ""
4959
+ "Navigationspile tillader gæsten til frit at bevæge sig gennem billeder i dit "
4960
+ "slideshow. Disse er større pile, der ligger som et overlay over dine "
4961
+ "slideshowbilleder og er separeret kontrolbarens navigationspile."
4962
+
4963
+ #: modules/slideshow/slideshow.php:455
4964
+ msgid "Control Bar"
4965
+ msgstr "Kontrolbar"
4966
+
4967
+ #: modules/slideshow/slideshow.php:459
4968
+ msgid "Nav Type"
4969
+ msgstr "Menulinjetype"
4970
+
4971
+ #: modules/slideshow/slideshow.php:462
4972
+ msgctxt "Nav type."
4973
+ msgid "None"
4974
+ msgstr "Ingen"
4975
+
4976
+ #: modules/slideshow/slideshow.php:463
4977
+ msgid "Buttons"
4978
+ msgstr "Knapper"
4979
+
4980
+ #: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
4981
+ msgid "Thumbs"
4982
+ msgstr "Thumbs"
4983
+
4984
+ #: modules/slideshow/slideshow.php:479
4985
+ msgid "Nav Position"
4986
+ msgstr "Menulinjeposition"
4987
+
4988
+ #: modules/slideshow/slideshow.php:489
4989
+ msgid "Control Bar Buttons"
4990
+ msgstr "Kontrolbarknap"
4991
+
4992
+ #: modules/slideshow/slideshow.php:502
4993
+ msgid "Play Button"
4994
+ msgstr "Afspil knap"
4995
+
4996
+ #: modules/slideshow/slideshow.php:511
4997
+ msgid "Fullscreen Button"
4998
+ msgstr "Fuldskærm knap"
4999
+
5000
+ #: modules/slideshow/slideshow.php:520
5001
+ msgid "Photo Count"
5002
+ msgstr "Foto antal"
5003
+
5004
+ #: modules/slideshow/slideshow.php:529
5005
+ msgid "Thumbs Button"
5006
+ msgstr "Thumbsknap"
5007
+
5008
+ #: modules/slideshow/slideshow.php:538
5009
+ msgid "Caption Button"
5010
+ msgstr "Billedtekstknap"
5011
+
5012
+ #: modules/slideshow/slideshow.php:547
5013
+ msgid "Social Button"
5014
+ msgstr "Socialknap"
5015
+
5016
+ #: modules/slideshow/slideshow.php:557
5017
+ msgid "Control Bar Overlay"
5018
+ msgstr "Kontrolbar overlay"
5019
+
5020
+ #: modules/slideshow/slideshow.php:561
5021
+ msgid "Overlay Enabled"
5022
+ msgstr "Overlay aktiveret"
5023
+
5024
+ #: modules/slideshow/slideshow.php:572
5025
+ msgid ""
5026
+ "Control bar overlay specifies if the control bar buttons you choose overlay "
5027
+ "your slideshow images or site below the slideshow completely."
5028
+ msgstr ""
5029
+ "Kontralbar overlay specificerer, om de kontrolbarknapper du vælger, ligger "
5030
+ "som et overlay over dine slideshowbilleder eller som en komplet websted "
5031
+ "nedenunder."
5032
+
5033
+ #: modules/slideshow/slideshow.php:576
5034
+ msgid "Overlay Hide"
5035
+ msgstr "Overlay skjul"
5036
+
5037
+ #: modules/slideshow/slideshow.php:582
5038
+ msgid ""
5039
+ "Overlay hide will hide the control bar after however many seconds you "
5040
+ "specify below. They will reappear upon mouse over."
5041
+ msgstr ""
5042
+ "Overlay skjul vil skjule kontrolbaren efter det antal sekunder du "
5043
+ "specificerer nedenfor. De vil dukke op igen, når musen holdes over."
5044
+
5045
+ #: modules/slideshow/slideshow.php:586
5046
+ msgid "Overlay Hide Delay"
5047
+ msgstr "Overlay skjulforsinkelse"
5048
+
5049
+ #: modules/slideshow/slideshow.php:598
5050
+ msgid "Thumbs Size"
5051
+ msgstr "Thumbsstørrelse"
5052
+
5053
+ #: modules/slideshow/slideshow.php:607
5054
+ msgid "Social"
5055
+ msgstr "Social"
5056
+
5057
+ #: modules/slideshow/slideshow.php:611
5058
+ msgid "Facebook Button"
5059
+ msgstr "Facebook-knap"
5060
+
5061
+ #: modules/slideshow/slideshow.php:623
5062
+ msgid "Twitter Button"
5063
+ msgstr "Twitter-knap"
5064
+
5065
+ #: modules/slideshow/slideshow.php:635
5066
+ msgid "Google Plus Button"
5067
+ msgstr "Google Plus-knap"
5068
+
5069
+ #: modules/slideshow/slideshow.php:647
5070
+ msgid "Pinterest Button"
5071
+ msgstr "Pinterest-knap"
5072
+
5073
+ #: modules/social-buttons/social-buttons.php:14
5074
+ msgid "Social Buttons"
5075
+ msgstr "Social-knapper"
5076
+
5077
+ #: modules/social-buttons/social-buttons.php:15
5078
+ msgid "Displays social buttons."
5079
+ msgstr "Vis social-knapper."
5080
+
5081
+ #: modules/social-buttons/social-buttons.php:71
5082
+ msgid "Target URL"
5083
+ msgstr "Destinations URL"
5084
+
5085
+ #: modules/social-buttons/social-buttons.php:75
5086
+ msgid "Current Page"
5087
+ msgstr "Nuværende side"
5088
+
5089
+ #: modules/social-buttons/social-buttons.php:82
5090
+ msgid ""
5091
+ "The Target URL field correlates to the page you would like your social icons "
5092
+ "to interface with. For example, if you show Facebook, the user will \"Like\" "
5093
+ "whatever you put in this field."
5094
+ msgstr ""
5095
+ "Destinations URL-feltet hænger sammen med siden du ønsker at dine sociale "
5096
+ "ikoner skal kommunikere med. For eksempel, hvis du viser Facebook, vil "
5097
+ "brugeren “Synes godt om” hvad end du indsætter i dette felt."
5098
+
5099
+ #: modules/social-buttons/social-buttons.php:89
5100
+ msgid "Custom URL"
5101
+ msgstr "Brugerdefineret URL"
5102
+
5103
+ #: modules/social-buttons/social-buttons.php:107
5104
+ msgid "Show Facebook"
5105
+ msgstr "Vis Facebook"
5106
+
5107
+ #: modules/social-buttons/social-buttons.php:116
5108
+ msgid "Show Twitter"
5109
+ msgstr "Vis Twitter"
5110
+
5111
+ #: modules/social-buttons/social-buttons.php:125
5112
+ msgid "Show Google+"
5113
+ msgstr "Vis Google+"
5114
+
5115
+ #: modules/subscribe-form/includes/frontend.php:5
5116
+ msgctxt "First and last name."
5117
+ msgid "Name"
5118
+ msgstr "Navn"
5119
+
5120
+ #: modules/subscribe-form/includes/frontend.php:12
5121
+ msgid "Please enter a valid email address."
5122
+ msgstr "Venligst indtast en gyldig e-mailadresse."
5123
+
5124
+ #: modules/subscribe-form/includes/frontend.php:41
5125
+ msgid "Something went wrong. Please check your entries and try again."
5126
+ msgstr "Noget gik galt. Venligst kontroller dine indtastninger og prøv igen."
5127
+
5128
+ #: modules/subscribe-form/subscribe-form.php:18
5129
+ msgid "Subscribe Form"
5130
+ msgstr "Abonneringsform"
5131
+
5132
+ #: modules/subscribe-form/subscribe-form.php:19
5133
+ msgid "Adds a simple subscribe form to your layout."
5134
+ msgstr "Tilføjer en simpel abonneringsform til dit layout."
5135
+
5136
+ #: modules/subscribe-form/subscribe-form.php:118
5137
+ msgid "Success"
5138
+ msgstr "Succes"
5139
+
5140
+ #: modules/subscribe-form/subscribe-form.php:122
5141
+ msgid "Success Action"
5142
+ msgstr "Succeshandling"
5143
+
5144
+ #: modules/subscribe-form/subscribe-form.php:124
5145
+ msgid "Show Message"
5146
+ msgstr "Vis besked"
5147
+
5148
+ #: modules/subscribe-form/subscribe-form.php:125
5149
+ msgid "Redirect"
5150
+ msgstr "Omdiriger"
5151
+
5152
+ #: modules/subscribe-form/subscribe-form.php:144
5153
+ msgid ""
5154
+ "Thanks for subscribing! Please check your email for further instructions."
5155
+ msgstr ""
5156
+ "Tak for at abonnere! Venligst undersøg din e-mail for videre instruktioner."
5157
+
5158
+ #: modules/subscribe-form/subscribe-form.php:151
5159
+ msgid "Success URL"
5160
+ msgstr "Succes URL"
5161
+
5162
+ #: modules/subscribe-form/subscribe-form.php:169
5163
+ msgid "Subscribe!"
5164
+ msgstr "Abonner!"
5165
+
5166
+ #: modules/tabs/tabs.php:14
5167
+ msgid "Tabs"
5168
+ msgstr "Faner"
5169
+
5170
+ #: modules/tabs/tabs.php:15
5171
+ msgid "Display a collection of tabbed content."
5172
+ msgstr "Vis en samling af faneinddelt indhold."
5173
+
5174
+ #: modules/testimonials/testimonials.php:14
5175
+ #: modules/testimonials/testimonials.php:60
5176
+ #: modules/testimonials/testimonials.php:174
5177
+ msgid "Testimonials"
5178
+ msgstr "Udtalelser"
5179
+
5180
+ #: modules/testimonials/testimonials.php:15
5181
+ msgid "An animated tesimonials area."
5182
+ msgstr "Et animeret udtalelsesområde."
5183
+
5184
+ #: modules/testimonials/testimonials.php:41
5185
+ msgid "Compact"
5186
+ msgstr "Kompakt"
5187
+
5188
+ #: modules/testimonials/testimonials.php:51
5189
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
5190
+ msgstr "Bred er for 1 kolonnerække, kompakt er for multi-kolonnerækker"
5191
+
5192
+ #: modules/testimonials/testimonials.php:78
5193
+ msgid "Slider Settings"
5194
+ msgstr "Sliderindstillinger"
5195
+
5196
+ #: modules/testimonials/testimonials.php:135
5197
+ msgid "Arrow Color"
5198
+ msgstr "Pilfarve"
5199
+
5200
+ #: modules/testimonials/testimonials.php:165
5201
+ msgid "Dot Color"
5202
+ msgstr "Prikfarve"
5203
+
5204
+ #: modules/testimonials/testimonials.php:181
5205
+ msgid "Testimonial"
5206
+ msgstr "Udtalelse"
5207
+
5208
+ #: modules/testimonials/testimonials.php:197
5209
+ msgid "Add Testimonial"
5210
+ msgstr "Tilføj udtalelse"
5211
+
5212
+ #: modules/video/video.php:20
5213
+ msgid "Render a WordPress or embedable video."
5214
+ msgstr "Udfør en WordPress eller integrerbar video"
5215
+
5216
+ #: modules/video/video.php:83
5217
+ msgid "Video Type"
5218
+ msgstr "Videotype"
5219
+
5220
+ #: modules/video/video.php:87
5221
+ msgid "Embed"
5222
+ msgstr "Indlejr"
5223
+
5224
+ #: modules/video/video.php:104
5225
+ msgctxt "Video preview/fallback image."
5226
+ msgid "Poster"
5227
+ msgstr "Poster"
5228
+
5229
+ #: modules/widget/includes/frontend.php:35
5230
+ #: modules/widget/includes/settings-general.php:46
5231
+ #, php-format
5232
+ msgctxt "%s stands for widget slug."
5233
+ msgid "%s no longer exists."
5234
+ msgstr "%s eksisterer ikke længere."
5235
+
5236
+ #: modules/widget/widget.php:14
5237
+ msgid "Widget"
5238
+ msgstr "Widget"
5239
+
5240
+ #: modules/widget/widget.php:15
5241
+ msgid "Display a WordPress widget."
5242
+ msgstr "Vis en WordPress widget."
5243
+
5244
+ #: modules/woocommerce/woocommerce.php:16
5245
+ msgid "WooCommerce"
5246
+ msgstr "WooCommerce"
5247
+
5248
+ #: modules/woocommerce/woocommerce.php:17
5249
+ msgid "Display products or categories from your WooCommerce store."
5250
+ msgstr "Vis produkter eller kategorier fra din WooCommerce-butik"
5251
+
5252
+ #: modules/woocommerce/woocommerce.php:61
5253
+ msgid "Single Product"
5254
+ msgstr "Enkelt produkt"
5255
+
5256
+ #: modules/woocommerce/woocommerce.php:62
5257
+ #: modules/woocommerce/woocommerce.php:113
5258
+ msgid "Multiple Products"
5259
+ msgstr "Flere produkter"
5260
+
5261
+ #: modules/woocommerce/woocommerce.php:63
5262
+ msgid "\"Add to Cart\" Button"
5263
+ msgstr "“Tilføj til Kurv” knap"
5264
+
5265
+ #: modules/woocommerce/woocommerce.php:64
5266
+ msgid "Categories"
5267
+ msgstr "Kategorier"
5268
+
5269
+ #: modules/woocommerce/woocommerce.php:65
5270
+ msgid "Cart"
5271
+ msgstr "Kurv"
5272
+
5273
+ #: modules/woocommerce/woocommerce.php:66
5274
+ msgid "Checkout"
5275
+ msgstr "Gå til kassen"
5276
+
5277
+ #: modules/woocommerce/woocommerce.php:67
5278
+ msgid "Order Tracking"
5279
+ msgstr "Følg din bestilling"
5280
+
5281
+ #: modules/woocommerce/woocommerce.php:68
5282
+ msgid "My Account"
5283
+ msgstr "Min konto"
5284
+
5285
+ #: modules/woocommerce/woocommerce.php:87
5286
+ msgid "Product ID"
5287
+ msgstr "Produkt ID"
5288
+
5289
+ #: modules/woocommerce/woocommerce.php:90
5290
+ msgid ""
5291
+ "As you add products in the WooCommerce Products area, each will be assigned "
5292
+ "a unique ID. You can find this unique product ID by visiting the Products "
5293
+ "area and rolling over the product. The unique ID will be the first attribute."
5294
+ msgstr ""
5295
+ "Som du tilføjer produkter til området for WooCommerce Produkter, vil hvert "
5296
+ "produkt blive tildelt et unik ID. Du kan finde dette unikke produkt ID ved "
5297
+ "at besøge området for produkter og holde over produktet. Det unikke ID vil "
5298
+ "være den første information."
5299
+
5300
+ #: modules/woocommerce/woocommerce.php:94
5301
+ msgid "Parent Category ID"
5302
+ msgstr "Forælderkategori ID"
5303
+
5304
+ #: modules/woocommerce/woocommerce.php:97
5305
+ msgid ""
5306
+ "As you add product categories in the WooCommerce Products area, each will be "
5307
+ "assigned a unique ID. This ID can be found by hovering on the category in "
5308
+ "the categories area under Products and looking in the URL that is displayed "
5309
+ "in your browser. The ID will be the only number value in the URL."
5310
+ msgstr ""
5311
+ "Som du tilføjer produktkategorier til området for WooCommerce Produkter, vil "
5312
+ "hver kategori blive tildelt et unikt ID. Dette ID kan findes ved at hover "
5313
+ "over kategorien i området for kategorier under produkter og kigge på URL’en "
5314
+ "der vises i din browser. ID’et vil være det eneste sæt tal i URL’en."
5315
+
5316
+ #: modules/woocommerce/woocommerce.php:101
5317
+ #: modules/woocommerce/woocommerce.php:172
5318
+ msgid "Columns"
5319
+ msgstr "Kolonner"
5320
+
5321
+ #: modules/woocommerce/woocommerce.php:117
5322
+ msgid "Products Source"
5323
+ msgstr "Produltkilde"
5324
+
5325
+ #: modules/woocommerce/woocommerce.php:120
5326
+ msgid "Products IDs"
5327
+ msgstr "Produkt ID’er"
5328
+
5329
+ #: modules/woocommerce/woocommerce.php:121
5330
+ msgid "Product Category"
5331
+ msgstr "Produktkategorier"
5332
+
5333
+ #: modules/woocommerce/woocommerce.php:122
5334
+ msgid "Recent Products"
5335
+ msgstr "Seneste produkter"
5336
+
5337
+ #: modules/woocommerce/woocommerce.php:123
5338
+ msgid "Featured Products"
5339
+ msgstr "Fremhævede produkter"
5340
+
5341
+ #: modules/woocommerce/woocommerce.php:124
5342
+ msgid "Sale Products"
5343
+ msgstr "Tilbudsprodukter"
5344
+
5345
+ #: modules/woocommerce/woocommerce.php:125
5346
+ msgid "Best Selling Products"
5347
+ msgstr "Bedst sælgende produkter"
5348
+
5349
+ #: modules/woocommerce/woocommerce.php:126
5350
+ msgid "Top Rated Products"
5351
+ msgstr "Bedst bedømte produkter"
5352
+
5353
+ #: modules/woocommerce/woocommerce.php:154
5354
+ msgid "Product IDs"
5355
+ msgstr "Produkt ID’er"
5356
+
5357
+ #: modules/woocommerce/woocommerce.php:156
5358
+ msgid ""
5359
+ "As you add products in the WooCommerce Products area, each will be assigned "
5360
+ "a unique ID. You can find this unique product ID by visiting the Products "
5361
+ "area and rolling over the product. The unique ID will be the first attribute "
5362
+ "and you can add several here separated by a comma."
5363
+ msgstr ""
5364
+ "Som du tilføjer produkter til området for WooCommerce Produkter, vil hvert "
5365
+ "produkt blive tildelt et unik ID. Du kan finde dette unikke produkt ID ved "
5366
+ "at besøge området for produkter og holde over produktet. Det unikke ID vil "
5367
+ "være den første information og du kan tilføje adskille her separeret af et "
5368
+ "komma."
5369
+
5370
+ #: modules/woocommerce/woocommerce.php:160
5371
+ msgid "Category Slug"
5372
+ msgstr "URL- venlig udgave af navnet"
5373
+
5374
+ #: modules/woocommerce/woocommerce.php:162
5375
+ msgid ""
5376
+ "As you add product categories in the WooCommerce Products area, each will be "
5377
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
5378
+ "found in the Categories area under WooCommerce Products. Several can be "
5379
+ "added here separated by a comma."
5380
+ msgstr ""
5381
+ "Som du tilføjer produktkategorier til området for WooCommerce Produkter, vil "
5382
+ "hver kategori blive tildelt et unikt ID. Dette ID kan findes ved at hover "
5383
+ "over kategorien i området for kategorier under produkter og kigge på URL’en "
5384
+ "der vises i din browser. ID’et vil være det eneste sæt tal i URL’en. "
5385
+ "Adskillige kan tilføjes her separeret af et komma."
5386
+
5387
+ #: modules/woocommerce/woocommerce.php:166
5388
+ msgid "Number of Products"
5389
+ msgstr "Antal af produkter"
5390
+
5391
+ #: modules/woocommerce/woocommerce.php:183
5392
+ msgid "Sort By"
5393
+ msgstr "Sorter efter"
5394
+
5395
+ #: modules/woocommerce/woocommerce.php:186
5396
+ msgctxt "Sort by."
5397
+ msgid "Default"
5398
+ msgstr "Standard"
5399
+
5400
+ #: modules/woocommerce/woocommerce.php:187
5401
+ msgid "Popularity"
5402
+ msgstr "Popularitet"
5403
+
5404
+ #: modules/woocommerce/woocommerce.php:188
5405
+ msgid "Rating"
5406
+ msgstr "Rating"
5407
+
5408
+ #: modules/woocommerce/woocommerce.php:195
5409
+ msgid "Sort Direction"
5410
+ msgstr "Sorteringsretning"
languages/he_IL.mo ADDED
Binary file
languages/he_IL.po ADDED
@@ -0,0 +1,5470 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-30 12:12+0200\n"
6
+ "PO-Revision-Date: 2015-11-05 17:25+0200\n"
7
+ "Last-Translator: Korent Advanced Web Solutions <office@korent.co.il>\n"
8
+ "Language-Team: Korent <office@korent.co.il>\n"
9
+ "Language: he_IL\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
+ "X-Generator: Poedit 1.8.6\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
17
+ "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
18
+ "_nx_noop:4c,1,2\n"
19
+ "X-Poedit-Basepath: ..\n"
20
+ "X-Textdomain-Support: yes\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPath-1: classes\n"
23
+ "X-Poedit-SearchPath-2: css\n"
24
+ "X-Poedit-SearchPath-3: data\n"
25
+ "X-Poedit-SearchPath-4: fonts\n"
26
+ "X-Poedit-SearchPath-5: includes\n"
27
+ "X-Poedit-SearchPath-6: js\n"
28
+ "X-Poedit-SearchPath-7: js/ace\n"
29
+ "X-Poedit-SearchPath-8: json\n"
30
+ "X-Poedit-SearchPath-9: modules\n"
31
+
32
+ #: classes/class-fl-builder-admin-settings.php:116
33
+ #: includes/global-settings.php:4
34
+ #, php-format
35
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
36
+ msgid "%s Settings"
37
+ msgstr "הגדרות %s"
38
+
39
+ #: classes/class-fl-builder-admin-settings.php:133
40
+ msgid "Settings updated!"
41
+ msgstr "הגדרות עודכנו!"
42
+
43
+ #: classes/class-fl-builder-admin-settings.php:147
44
+ msgid "License"
45
+ msgstr "רישיון"
46
+
47
+ #: classes/class-fl-builder-admin-settings.php:151
48
+ #: includes/admin-settings-upgrade.php:3
49
+ msgid "Upgrade"
50
+ msgstr "שדרג"
51
+
52
+ #: classes/class-fl-builder-admin-settings.php:155
53
+ #: includes/global-settings.php:90
54
+ msgid "Modules"
55
+ msgstr "מודולים"
56
+
57
+ #: classes/class-fl-builder-admin-settings.php:159
58
+ #: classes/class-fl-builder.php:669
59
+ msgid "Templates"
60
+ msgstr "תבניות"
61
+
62
+ #: classes/class-fl-builder-admin-settings.php:163
63
+ #: includes/admin-settings-post-types.php:3
64
+ msgid "Post Types"
65
+ msgstr "סוגי פוסטים"
66
+
67
+ #: classes/class-fl-builder-admin-settings.php:167
68
+ #: modules/icon-group/icon-group.php:27
69
+ #: modules/post-carousel/post-carousel.php:289
70
+ #: modules/post-grid/post-grid.php:257
71
+ msgid "Icons"
72
+ msgstr "איקונים"
73
+
74
+ #: classes/class-fl-builder-admin-settings.php:171
75
+ msgid "Editing"
76
+ msgstr "עריכה"
77
+
78
+ #: classes/class-fl-builder-admin-settings.php:175
79
+ #: includes/admin-settings-branding.php:3
80
+ msgid "Branding"
81
+ msgstr "מיתוג"
82
+
83
+ #: classes/class-fl-builder-admin-settings.php:179
84
+ msgid "Help Button"
85
+ msgstr "כפתור עזרה"
86
+
87
+ #: classes/class-fl-builder-admin-settings.php:183
88
+ #: includes/admin-settings-cache.php:3
89
+ msgid "Cache"
90
+ msgstr "זיכרון מטמון"
91
+
92
+ #: classes/class-fl-builder-admin-settings.php:187
93
+ #: includes/admin-settings-uninstall.php:3
94
+ #: includes/admin-settings-uninstall.php:15
95
+ msgid "Uninstall"
96
+ msgstr "הסר התקנה"
97
+
98
+ #: classes/class-fl-builder-admin-settings.php:439
99
+ msgid "Error! You must have at least one icon set enabled."
100
+ msgstr "שגיאה! אתה חייב לאפשר לפחות ערכת סמלים אחת."
101
+
102
+ #: classes/class-fl-builder-admin-settings.php:481
103
+ msgid "Error! Could not unzip file."
104
+ msgstr "שגיאה! לא יכול לפתוח את הקובץ."
105
+
106
+ #: classes/class-fl-builder-admin-settings.php:515
107
+ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
108
+ msgstr "שגיאה! יש להעלות ערכת סמלים מ-Icomoon או Fontello בלבד."
109
+
110
+ #: classes/class-fl-builder-admin-settings.php:620
111
+ msgid "Error! Please enter an iframe for the video embed code."
112
+ msgstr "שגיאה! נא הזן iframe עבור קוד הטמעת הוידאו."
113
+
114
+ #: classes/class-fl-builder-admin-settings.php:638
115
+ msgid "Error! You must have at least one feature of the help button enabled."
116
+ msgstr "שגיאה! יש לאפשר לפחות תכונה אחת של לחצן העזרה."
117
+
118
+ #: classes/class-fl-builder-admin.php:45
119
+ #, php-format
120
+ msgid ""
121
+ "This version of the <strong>Page Builder</strong> plugin is not compatible "
122
+ "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
123
+ "of this plugin."
124
+ msgstr ""
125
+ "גירסה זו של תוסף<strong>מחולל העמודים</strong> אינה תואמת בריבוי אתרי "
126
+ "וורדפרס. a%s>אנא שדרגו</a> לגרסת ריבוי האתרים של תוסף זה."
127
+
128
+ #: classes/class-fl-builder-admin.php:55
129
+ msgid ""
130
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
131
+ "greater. Please update WordPress before activating the plugin."
132
+ msgstr ""
133
+ "התוסף <strong>מחולל העמודים</strong> דורש שימוש בוורדפרס גרסה 3.5 ומעלה. אנא "
134
+ "עדכנו את גרסת וורדפרס שלכם לפני הפעלת התוסף."
135
+
136
+ #: classes/class-fl-builder-admin.php:112
137
+ #, php-format
138
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
139
+ msgstr "מחולל העמודים הופעל! <a%s>לחץ כאן</a> כדי להפעיל עדכונים מרחוק."
140
+
141
+ #: classes/class-fl-builder-admin.php:238
142
+ msgctxt "Plugin action link label."
143
+ msgid "Upgrade"
144
+ msgstr "שדרג"
145
+
146
+ #: classes/class-fl-builder-admin.php:253
147
+ #: classes/class-fl-builder-model.php:4260
148
+ msgid "Page Builder"
149
+ msgstr "מחולל עמודים"
150
+
151
+ #: classes/class-fl-builder-fonts.php:41 classes/class-fl-builder-fonts.php:66
152
+ #: classes/class-fl-builder-fonts.php:97 includes/column-settings.php:463
153
+ #: includes/column-settings.php:491 includes/row-settings.php:50
154
+ #: modules/callout/callout.php:284
155
+ #: modules/content-slider/content-slider.php:474 modules/cta/cta.php:168
156
+ #: modules/heading/heading.php:129 modules/heading/heading.php:156
157
+ #: modules/heading/heading.php:186 modules/menu/menu.php:154
158
+ #: modules/menu/menu.php:178 modules/post-carousel/post-carousel.php:359
159
+ #: modules/post-grid/post-grid.php:175 modules/post-slider/post-slider.php:525
160
+ #: modules/post-slider/post-slider.php:602
161
+ msgid "Default"
162
+ msgstr "ברירת מחדל"
163
+
164
+ #: classes/class-fl-builder-model.php:1905
165
+ #, php-format
166
+ msgctxt "%s stands for the module filename"
167
+ msgid ""
168
+ "A module with the filename %s.php already exists! Please namespace your "
169
+ "module filenames to ensure compatibility with Beaver Builder."
170
+ msgstr ""
171
+ "מודול עם שם הקובץ %s.php כבר קיים! אנא הגדירו שמות מתחם בשמות קבצי המודול "
172
+ "שלכם כדי להבטיח תאימות עם התוסף."
173
+
174
+ #: classes/class-fl-builder-model.php:1956
175
+ #: classes/class-fl-builder-model.php:2017 modules/heading/heading.php:16
176
+ #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
177
+ #: modules/separator/separator.php:16 modules/video/video.php:21
178
+ msgid "Basic Modules"
179
+ msgstr "מודולים בסיסיים"
180
+
181
+ #: classes/class-fl-builder-model.php:1957
182
+ #: classes/class-fl-builder-model.php:2018 modules/accordion/accordion.php:16
183
+ #: modules/button/button.php:16 modules/callout/callout.php:16
184
+ #: modules/contact-form/contact-form.php:16
185
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
186
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
187
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
188
+ #: modules/map/map.php:16 modules/menu/menu.php:16
189
+ #: modules/numbers/numbers.php:16 modules/post-carousel/post-carousel.php:16
190
+ #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
191
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
192
+ #: modules/slideshow/slideshow.php:16
193
+ #: modules/social-buttons/social-buttons.php:16
194
+ #: modules/subscribe-form/subscribe-form.php:20 modules/tabs/tabs.php:16
195
+ #: modules/testimonials/testimonials.php:16
196
+ #: modules/woocommerce/woocommerce.php:18
197
+ msgid "Advanced Modules"
198
+ msgstr "מודולים מתקדמים"
199
+
200
+ #: classes/class-fl-builder-model.php:1958
201
+ #: classes/class-fl-builder-model.php:2019
202
+ msgid "Other Modules"
203
+ msgstr "מודולים אחרים"
204
+
205
+ #: classes/class-fl-builder-model.php:1959
206
+ #: classes/class-fl-builder-model.php:2020
207
+ #: includes/admin-settings-modules.php:32 includes/ui-panel.php:56
208
+ #: modules/widget/widget.php:16
209
+ msgid "WordPress Widgets"
210
+ msgstr "ווידג’טים של וורדפרס"
211
+
212
+ #: classes/class-fl-builder-model.php:2716
213
+ #, php-format
214
+ msgctxt "%s stands for post/page title."
215
+ msgid "Copy of %s"
216
+ msgstr "עותק של %s"
217
+
218
+ #: classes/class-fl-builder-model.php:3197
219
+ msgctxt "Default user template category."
220
+ msgid "Uncategorized"
221
+ msgstr "ללא קטגוריה"
222
+
223
+ #: classes/class-fl-builder-model.php:4217
224
+ msgid "Home Pages"
225
+ msgstr "עמודי בית"
226
+
227
+ #: classes/class-fl-builder-model.php:4218
228
+ msgid "Content Pages"
229
+ msgstr "עמודי תוכן"
230
+
231
+ #: classes/class-fl-builder-photo.php:95 classes/class-fl-builder-photo.php:100
232
+ msgctxt "Image size."
233
+ msgid "Full Size"
234
+ msgstr "גודל מלא"
235
+
236
+ #: classes/class-fl-builder-photo.php:101
237
+ msgctxt "Image size."
238
+ msgid "Large"
239
+ msgstr "גדול"
240
+
241
+ #: classes/class-fl-builder-photo.php:102
242
+ msgctxt "Image size."
243
+ msgid "Medium"
244
+ msgstr "בינוני"
245
+
246
+ #: classes/class-fl-builder-photo.php:103
247
+ msgctxt "Image size."
248
+ msgid "Thumbnail"
249
+ msgstr "תמונה ממוזערת (Thumbnail)"
250
+
251
+ #: classes/class-fl-builder-service-activecampaign.php:69
252
+ msgid "Error: You must provide an API URL."
253
+ msgstr "שגיאה: עליך לספק כתובת URL עבור ה-API."
254
+
255
+ #: classes/class-fl-builder-service-activecampaign.php:73
256
+ #: classes/class-fl-builder-service-campaign-monitor.php:55
257
+ #: classes/class-fl-builder-service-constant-contact.php:48
258
+ #: classes/class-fl-builder-service-getresponse.php:67
259
+ #: classes/class-fl-builder-service-hatchbuck.php:48
260
+ #: classes/class-fl-builder-service-infusionsoft.php:79
261
+ #: classes/class-fl-builder-service-madmimi.php:73
262
+ #: classes/class-fl-builder-service-mailchimp.php:67
263
+ msgid "Error: You must provide an API key."
264
+ msgstr "שגיאה: עליך לספק מפתח API."
265
+
266
+ #: classes/class-fl-builder-service-activecampaign.php:81
267
+ msgid "Error: Please check your API URL and API key."
268
+ msgstr "שגיאה: אנא בדוק את כתובת ה-URL עבור ה-API ואת מפתח ה-API שלך."
269
+
270
+ #: classes/class-fl-builder-service-activecampaign.php:108
271
+ msgid "API URL"
272
+ msgstr "כתובת URL של ה-API"
273
+
274
+ #: classes/class-fl-builder-service-activecampaign.php:109
275
+ msgid ""
276
+ "Your API url can be found in your ActiveCampaign account under My Settings > "
277
+ "API."
278
+ msgstr ""
279
+ "ניתן למצוא את כתובת ה-URL של ה-API שלך בחשבון ה-ActiveCampaign תחת הגדרות "
280
+ "שלי > API."
281
+
282
+ #: classes/class-fl-builder-service-activecampaign.php:119
283
+ #: classes/class-fl-builder-service-campaign-monitor.php:88
284
+ #: classes/class-fl-builder-service-constant-contact.php:88
285
+ #: classes/class-fl-builder-service-getresponse.php:100
286
+ #: classes/class-fl-builder-service-hatchbuck.php:87
287
+ #: classes/class-fl-builder-service-infusionsoft.php:129
288
+ #: classes/class-fl-builder-service-madmimi.php:121
289
+ #: classes/class-fl-builder-service-mailchimp.php:100
290
+ msgid "API Key"
291
+ msgstr "מפתח API"
292
+
293
+ #: classes/class-fl-builder-service-activecampaign.php:120
294
+ msgid ""
295
+ "Your API key can be found in your ActiveCampaign account under My Settings > "
296
+ "API."
297
+ msgstr ""
298
+ "ניתן למצוא את מפתח ה-API שלך בחשבון ה-ActiveCampaign תחת הגדרות שלי > API."
299
+
300
+ #: classes/class-fl-builder-service-activecampaign.php:169
301
+ #: classes/class-fl-builder-service-aweber.php:182
302
+ #: classes/class-fl-builder-service-campaign-monitor.php:148
303
+ #: classes/class-fl-builder-service-campaign-monitor.php:199
304
+ #: classes/class-fl-builder-service-constant-contact.php:156
305
+ #: classes/class-fl-builder-service-getresponse.php:154
306
+ #: classes/class-fl-builder-service-icontact.php:207
307
+ #: classes/class-fl-builder-service-infusionsoft.php:204
308
+ #: classes/class-fl-builder-service-madmimi.php:178
309
+ #: classes/class-fl-builder-service-mailchimp.php:177
310
+ #: classes/class-fl-builder-service-mailpoet.php:92
311
+ #: classes/class-fl-builder-service-sendinblue.php:161
312
+ #: classes/class-fl-builder-services.php:288 includes/service-settings.php:21
313
+ #: modules/woocommerce/woocommerce.php:60
314
+ msgid "Choose..."
315
+ msgstr "בחר…"
316
+
317
+ #: classes/class-fl-builder-service-activecampaign.php:181
318
+ #: classes/class-fl-builder-service-aweber.php:192
319
+ #: classes/class-fl-builder-service-campaign-monitor.php:209
320
+ #: classes/class-fl-builder-service-constant-contact.php:166
321
+ #: classes/class-fl-builder-service-getresponse.php:164
322
+ #: classes/class-fl-builder-service-icontact.php:217
323
+ #: classes/class-fl-builder-service-infusionsoft.php:214
324
+ #: classes/class-fl-builder-service-madmimi.php:188
325
+ #: classes/class-fl-builder-service-mailchimp.php:187
326
+ #: classes/class-fl-builder-service-mailpoet.php:102
327
+ #: classes/class-fl-builder-service-sendinblue.php:171
328
+ msgctxt "An email list from a third party provider."
329
+ msgid "List"
330
+ msgstr "רשימה"
331
+
332
+ #: classes/class-fl-builder-service-activecampaign.php:208
333
+ msgid ""
334
+ "There was an error subscribing to ActiveCampaign. The account is no longer "
335
+ "connected."
336
+ msgstr "אירעה שגיאה בהרשמה ל-ActiveCampaign. החשבון כבר אינו מחובר."
337
+
338
+ #: classes/class-fl-builder-service-activecampaign.php:239
339
+ msgid "Error: Invalid API data."
340
+ msgstr "שגיאה: נתוני API לא חוקיים."
341
+
342
+ #: classes/class-fl-builder-service-aweber.php:72
343
+ msgid "Error: You must provide an Authorization Code."
344
+ msgstr "שגיאה: עליך לספק קוד אישור."
345
+
346
+ #: classes/class-fl-builder-service-aweber.php:76
347
+ msgid "Error: Please enter a valid Authorization Code."
348
+ msgstr "שגיאה: נא להזין קוד אישור חוקי."
349
+
350
+ #: classes/class-fl-builder-service-aweber.php:127
351
+ msgid "Authorization Code"
352
+ msgstr "קוד אישור"
353
+
354
+ #: classes/class-fl-builder-service-aweber.php:128
355
+ #, php-format
356
+ msgid ""
357
+ "Please register this website with AWeber to get your Authorization Code. <a"
358
+ "%s>Register Now</a>"
359
+ msgstr ""
360
+ "נא רשום אתר זה עם AWeber כדי לקבל את קוד האישור שלך. <a%s>הרשם עכשיו</a>"
361
+
362
+ #: classes/class-fl-builder-service-aweber.php:219
363
+ msgid ""
364
+ "There was an error subscribing to AWeber. The account is no longer connected."
365
+ msgstr "אירעה שגיאה בהרשמה ל-AWeber. החשבון כבר אינו מחובר."
366
+
367
+ #: classes/class-fl-builder-service-aweber.php:242
368
+ msgid "There was an error connecting to AWeber. Please try again."
369
+ msgstr "אירעה שגיאה בהתחברות ל-AWeber. אנא נסה שוב."
370
+
371
+ #: classes/class-fl-builder-service-aweber.php:247
372
+ #, php-format
373
+ msgid "There was an error subscribing to AWeber. %s"
374
+ msgstr "אירעה שגיאה בהרשמה ל-AWeber. %s"
375
+
376
+ #: classes/class-fl-builder-service-campaign-monitor.php:67
377
+ #: classes/class-fl-builder-service-campaign-monitor.php:129
378
+ #: classes/class-fl-builder-service-getresponse.php:76
379
+ #: classes/class-fl-builder-service-getresponse.php:132
380
+ #: classes/class-fl-builder-service-hatchbuck.php:63
381
+ msgid "Error: Please check your API key."
382
+ msgstr "שגיאה: אנא בדוק את מפתח ה-API."
383
+
384
+ #: classes/class-fl-builder-service-campaign-monitor.php:89
385
+ msgid ""
386
+ "Your API key can be found in your Campaign Monitor account under Account "
387
+ "Settings > API Key."
388
+ msgstr ""
389
+ "ניתן למצוא את מפתח ה-API בחשבון ה-Campaign Monitor שלך תחת הגדרות חשבון > "
390
+ "API מפתח."
391
+
392
+ #: classes/class-fl-builder-service-campaign-monitor.php:158
393
+ msgctxt "A client account in Campaign Monitor."
394
+ msgid "Client"
395
+ msgstr "לקוח"
396
+
397
+ #: classes/class-fl-builder-service-campaign-monitor.php:236
398
+ msgid ""
399
+ "There was an error subscribing to Campaign Monitor. The account is no longer "
400
+ "connected."
401
+ msgstr "אירעה שגיאה בהרשמה ל-Campaign Monitor. החשבון כבר אינו מחובר."
402
+
403
+ #: classes/class-fl-builder-service-campaign-monitor.php:253
404
+ msgid "There was an error subscribing to Campaign Monitor."
405
+ msgstr "אירעה שגיאה בהרשמה ל-Campaign Monitor."
406
+
407
+ #: classes/class-fl-builder-service-constant-contact.php:52
408
+ msgid "Error: You must provide an access token."
409
+ msgstr "שגיאה: עליך לספק אסימון גישה."
410
+
411
+ #: classes/class-fl-builder-service-constant-contact.php:61
412
+ #: classes/class-fl-builder-service-constant-contact.php:134
413
+ #, php-format
414
+ msgid "Error: Could not connect to Constant Contact. %s"
415
+ msgstr "שגיאה: לא היתה אפשרות להתחבר ל-Constant Contact. %s"
416
+
417
+ #: classes/class-fl-builder-service-constant-contact.php:89
418
+ msgid "Your Constant Contact API key."
419
+ msgstr "מפתח ה-API שלך עבור Constant Contact."
420
+
421
+ #: classes/class-fl-builder-service-constant-contact.php:99
422
+ msgid "Access Token"
423
+ msgstr "אסימון גישה"
424
+
425
+ #: classes/class-fl-builder-service-constant-contact.php:100
426
+ msgid "Your Constant Contact access token."
427
+ msgstr "אסימון הגישה שלך ל- Constant Contact."
428
+
429
+ #: classes/class-fl-builder-service-constant-contact.php:101
430
+ #, php-format
431
+ msgid ""
432
+ "You must register a <a%s>Developer Account</a> with Constant Contact to "
433
+ "obtain an API key and access token. Please see <a%s>Getting an API key</a> "
434
+ "for complete instructions."
435
+ msgstr ""
436
+ "עליך להירשם ל- <a%s>חשבון מפתחים</a> ב- Constant Contact כדי לקבל מפתח API "
437
+ "ואסימון גישה. לקבלת הוראות מפורטות אנא ראה <a%s>קבלת קוד API</a>."
438
+
439
+ #: classes/class-fl-builder-service-constant-contact.php:193
440
+ msgid ""
441
+ "There was an error subscribing to Constant Contact. The account is no longer "
442
+ "connected."
443
+ msgstr "אירעה שגיאה בהרשמה ל-Constant Contact. החשבון כבר אינו מחובר."
444
+
445
+ #: classes/class-fl-builder-service-constant-contact.php:245
446
+ #: classes/class-fl-builder-service-constant-contact.php:279
447
+ #, php-format
448
+ msgid "There was an error subscribing to Constant Contact. %s"
449
+ msgstr "אירעה שגיאה בהרשמה ל-Constant Contact. %s"
450
+
451
+ #: classes/class-fl-builder-service-email-address.php:39
452
+ #: classes/class-fl-builder-service-madmimi.php:69
453
+ msgid "Error: You must provide an email address."
454
+ msgstr "שגיאה: עליך לספק כתובת דואר אלקטרוני."
455
+
456
+ #: classes/class-fl-builder-service-email-address.php:63
457
+ #: classes/class-fl-builder-service-madmimi.php:110
458
+ #: modules/subscribe-form/includes/frontend.php:11
459
+ msgid "Email Address"
460
+ msgstr "כתובת אימייל"
461
+
462
+ #: classes/class-fl-builder-service-email-address.php:110
463
+ msgid "There was an error subscribing. The account is no longer connected."
464
+ msgstr "אירעה שגיאה בהרשמה. החשבון כבר אינו מחובר."
465
+
466
+ #: classes/class-fl-builder-service-email-address.php:114
467
+ msgid "Subscribe Form Signup"
468
+ msgstr "טופס הרשמה כמנוי"
469
+
470
+ #: classes/class-fl-builder-service-email-address.php:115
471
+ #: modules/contact-form/includes/frontend.php:21
472
+ msgid "Email"
473
+ msgstr "אימייל"
474
+
475
+ #: classes/class-fl-builder-service-email-address.php:118
476
+ msgid "Name"
477
+ msgstr "שם"
478
+
479
+ #: classes/class-fl-builder-service-email-address.php:124
480
+ #: modules/subscribe-form/subscribe-form.php:73
481
+ msgid "There was an error subscribing. Please try again."
482
+ msgstr "אירעה שגיאה בהרשמה. אנא נסה שוב."
483
+
484
+ #: classes/class-fl-builder-service-getresponse.php:101
485
+ msgid ""
486
+ "Your API key can be found in your GetResponse account under My Account > "
487
+ "GetResponse API."
488
+ msgstr ""
489
+ "ניתן למצוא את מפתח ה-API בחשבון ה-GetResponse שלך תחת החשבון שלי > "
490
+ "GetResponse API."
491
+
492
+ #: classes/class-fl-builder-service-getresponse.php:191
493
+ msgid ""
494
+ "There was an error subscribing to GetResponse. The account is no longer "
495
+ "connected."
496
+ msgstr "אירעה שגיאה בהרשמה ל-GetResponse. החשבון כבר אינו מחובר."
497
+
498
+ #: classes/class-fl-builder-service-getresponse.php:202
499
+ #, php-format
500
+ msgid "There was an error subscribing to GetResponse. %s"
501
+ msgstr "אירעה שגיאה בהרשמה ל-GetResponse. %s"
502
+
503
+ #: classes/class-fl-builder-service-hatchbuck.php:88
504
+ msgid ""
505
+ "Your API key can be found in your Hatchbuck account under Account Settings > "
506
+ "Web API."
507
+ msgstr ""
508
+ "ניתן למצוא את מפתח ה-API שלך בחשבון ה-Hatchbuck תחת הגדרות שלי > Web API."
509
+
510
+ #: classes/class-fl-builder-service-hatchbuck.php:134
511
+ msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
512
+ msgid "Tag"
513
+ msgstr "תגית"
514
+
515
+ #: classes/class-fl-builder-service-hatchbuck.php:161
516
+ msgid ""
517
+ "There was an error subscribing to Hatchbuck. The account is no longer "
518
+ "connected."
519
+ msgstr "אירעה שגיאה בהרשמה ל-Hatchbuck. החשבון כבר אינו מחובר."
520
+
521
+ #: classes/class-fl-builder-service-hatchbuck.php:190
522
+ msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
523
+ msgstr "אירעה שגיאה בהרשמה ל-Hatchbuck. מפתח ה-API אינו חוקי."
524
+
525
+ #: classes/class-fl-builder-service-hatchbuck.php:200
526
+ #: classes/class-fl-builder-service-hatchbuck.php:232
527
+ msgid "There was an error subscribing to Hatchbuck."
528
+ msgstr "אירעה שגיאה בהרשמה ל-Hatchbuck."
529
+
530
+ #: classes/class-fl-builder-service-icontact.php:75
531
+ msgid "Error: You must provide a username."
532
+ msgstr "שגיאה: עליך לספק שם משתמש."
533
+
534
+ #: classes/class-fl-builder-service-icontact.php:79
535
+ msgid "Error: You must provide a app ID."
536
+ msgstr "שגיאה: עליך לספק מזהה יישום."
537
+
538
+ #: classes/class-fl-builder-service-icontact.php:83
539
+ msgid "Error: You must provide a app password."
540
+ msgstr "שגיאה: עליך לספק סיסמה ליישום."
541
+
542
+ #: classes/class-fl-builder-service-icontact.php:104
543
+ #: classes/class-fl-builder-service-icontact.php:188
544
+ #, php-format
545
+ msgid "Error: Could not connect to iContact. %s"
546
+ msgstr "שגיאה: לא היתה אפשרות להתחבר אל iContact. %s"
547
+
548
+ #: classes/class-fl-builder-service-icontact.php:125
549
+ msgid "Username"
550
+ msgstr "שם המשתמש"
551
+
552
+ #: classes/class-fl-builder-service-icontact.php:126
553
+ msgid "Your iContact username."
554
+ msgstr "שם המשתמש שלך ב- iContact."
555
+
556
+ #: classes/class-fl-builder-service-icontact.php:136
557
+ #: classes/class-fl-builder-service-infusionsoft.php:118
558
+ msgid "App ID"
559
+ msgstr "מזהה אפליקציה"
560
+
561
+ #: classes/class-fl-builder-service-icontact.php:137
562
+ msgid "Your iContact app ID."
563
+ msgstr "מזהה האפליקציה שלך ב- iContact."
564
+
565
+ #: classes/class-fl-builder-service-icontact.php:147
566
+ msgid "App Password"
567
+ msgstr "סיסמת אפליקציה."
568
+
569
+ #: classes/class-fl-builder-service-icontact.php:148
570
+ msgid "Your iContact app password."
571
+ msgstr "סיסמת האפליקציה שלך ב- iContact."
572
+
573
+ #: classes/class-fl-builder-service-icontact.php:149
574
+ #, php-format
575
+ msgid ""
576
+ "You must <a%s>create an app</a> in iContact to obtain an app ID and "
577
+ "password. Please see <a%s>the iContact docs</a> for complete instructions."
578
+ msgstr ""
579
+ "אתה חייב <a%s>ליצור אפליקציה</a> ב- iContact בכדי לקבל מזהה אפליקציה וסיסמא. "
580
+ "לקבלת הוראות מפורטות אנא ראה <a%s>מסמכי תיעוד</a>."
581
+
582
+ #: classes/class-fl-builder-service-icontact.php:244
583
+ msgid ""
584
+ "There was an error subscribing to iContact. The account is no longer "
585
+ "connected."
586
+ msgstr "אירעה שגיאה בהרשמה ל-iContact. החשבון כבר אינו מחובר."
587
+
588
+ #: classes/class-fl-builder-service-icontact.php:280
589
+ #, php-format
590
+ msgid "There was an error subscribing to iContact. %s"
591
+ msgstr "אירעה שגיאה בהרשמה ל-iContact. %s"
592
+
593
+ #: classes/class-fl-builder-service-infusionsoft.php:49
594
+ #, php-format
595
+ msgid "There was an error connecting to Infusionsoft. %s"
596
+ msgstr "אירעה שגיאה בהתחברות ל-Infusionsoft. %s"
597
+
598
+ #: classes/class-fl-builder-service-infusionsoft.php:83
599
+ msgid "Error: You must provide an app ID."
600
+ msgstr "שגיאה: עליך לספק מזהה יישום."
601
+
602
+ #: classes/class-fl-builder-service-infusionsoft.php:119
603
+ msgid ""
604
+ "Your App ID can be found in the URL for your account. For example, if the "
605
+ "URL for your account is myaccount.infusionsoft.com, your App ID would be "
606
+ "<strong>myaccount</strong>."
607
+ msgstr ""
608
+ "ניתן למצוא את מזהה היישום שלך בכתובת ה-URL של החשבון שלך. לדוגמה, אם כתובת ה-"
609
+ "URL עבור החשבון שלך היא myaccount.infusionsoft.com, מזהה היישום שלך יהיה "
610
+ "<strong> myaccount </strong>."
611
+
612
+ #: classes/class-fl-builder-service-infusionsoft.php:130
613
+ msgid ""
614
+ "Your API key can be found in your Infusionsoft account under Admin > "
615
+ "Settings > Application > API > Encrypted Key."
616
+ msgstr ""
617
+ "ניתן למצוא את מפתח ה-API עבור חשבונך ב-Infusionsoft תחת אדמין > הגדרות > "
618
+ "יישום > API > מפתח מוצפן."
619
+
620
+ #: classes/class-fl-builder-service-infusionsoft.php:242
621
+ msgid ""
622
+ "There was an error subscribing to Infusionsoft. The account is no longer "
623
+ "connected."
624
+ msgstr "אירעה שגיאה בהרשמה ל-Infusionsoft. החשבון כבר אינו מחובר."
625
+
626
+ #: classes/class-fl-builder-service-infusionsoft.php:291
627
+ #, php-format
628
+ msgid "There was an error subscribing to Infusionsoft. %s"
629
+ msgstr "אירעה שגיאה בהרשמה ל-Infusionsoft. %s"
630
+
631
+ #: classes/class-fl-builder-service-madmimi.php:83
632
+ msgid "Unable to connect to Mad Mimi. Please check your credentials."
633
+ msgstr "אין אפשרות להתחבר אל Mad Mimi. נא בדוק את ההרשאות שלך."
634
+
635
+ #: classes/class-fl-builder-service-madmimi.php:111
636
+ msgid "The email address associated with your Mad Mimi account."
637
+ msgstr "כתובת הדוא”ל המשויכת לחשבון שלך ב-Mad Mimi."
638
+
639
+ #: classes/class-fl-builder-service-madmimi.php:122
640
+ msgid ""
641
+ "Your API key can be found in your Mad Mimi account under Account > Settings "
642
+ "&amp; Billing > API."
643
+ msgstr ""
644
+ "ניתן למצוא את מפתח ה-API בחשבונך ב-Mad Mimi תחת חשבון > הגדרות וחיוב > API."
645
+
646
+ #: classes/class-fl-builder-service-madmimi.php:156
647
+ msgid ""
648
+ "There was a problem retrieving your lists. Please check your API credentials."
649
+ msgstr "אירעה בעיה בשליפת הרשימות שלך. אנא בדוק את הרשאות ה-API שלך."
650
+
651
+ #: classes/class-fl-builder-service-madmimi.php:215
652
+ #: classes/class-fl-builder-service-madmimi.php:242
653
+ msgid ""
654
+ "There was an error subscribing to Mad Mimi. The account is no longer "
655
+ "connected."
656
+ msgstr "אירעה שגיאה בהרשמה ל-Mad Mimi. החשבון כבר אינו מחובר."
657
+
658
+ #: classes/class-fl-builder-service-mailchimp.php:101
659
+ msgid ""
660
+ "Your API key can be found in your MailChimp account under Account > Extras > "
661
+ "API Keys."
662
+ msgstr ""
663
+ "ניתן למצוא את מפתח ה-API בחשבונך ב-MailChimp תחת חשבון > תוספות > API מפתחות."
664
+
665
+ #: classes/class-fl-builder-service-mailchimp.php:215
666
+ msgid "No Group"
667
+ msgstr "ללא קבוצה"
668
+
669
+ #: classes/class-fl-builder-service-mailchimp.php:227
670
+ msgctxt "MailChimp list group."
671
+ msgid "Groups"
672
+ msgstr "קבוצות"
673
+
674
+ #: classes/class-fl-builder-service-mailchimp.php:255
675
+ msgid ""
676
+ "There was an error subscribing to MailChimp. The account is no longer "
677
+ "connected."
678
+ msgstr "אירעה שגיאה בהרשמה ל-MailChimp. החשבון כבר אינו מחובר."
679
+
680
+ #: classes/class-fl-builder-service-mailchimp.php:352
681
+ #, php-format
682
+ msgid "There was an error subscribing to MailChimp. %s"
683
+ msgstr "אירעה שגיאה בהרשמה ל-MailChimp. %s"
684
+
685
+ #: classes/class-fl-builder-service-mailpoet.php:73
686
+ msgid "There was an error retrieveing your lists."
687
+ msgstr "אירעה שגיאה בשליפת הרשימות שלך."
688
+
689
+ #: classes/class-fl-builder-service-mailpoet.php:129
690
+ msgid "There was an error subscribing. MailPoet is not installed."
691
+ msgstr "אירעה שגיאה בהרשמה. MailPoet אינו מותקן."
692
+
693
+ #: classes/class-fl-builder-service-sendinblue.php:67
694
+ msgid "Error: You must provide an Access Key."
695
+ msgstr "שגיאה: עליך לספק מפתח גישה."
696
+
697
+ #: classes/class-fl-builder-service-sendinblue.php:76
698
+ #: classes/class-fl-builder-service-sendinblue.php:136
699
+ msgid "There was an error connecting to SendinBlue. Please try again."
700
+ msgstr "אירעה שגיאה בהתחברות ל-SendinBlue. אנא נסה שוב."
701
+
702
+ #: classes/class-fl-builder-service-sendinblue.php:79
703
+ #: classes/class-fl-builder-service-sendinblue.php:139
704
+ #, php-format
705
+ msgid "Error: Could not connect to SendinBlue. %s"
706
+ msgstr "שגיאה: לא היתה אפשרות להתחבר אל SendinBlue. %s"
707
+
708
+ #: classes/class-fl-builder-service-sendinblue.php:103
709
+ msgid "Access Key"
710
+ msgstr "מפתח גישה"
711
+
712
+ #: classes/class-fl-builder-service-sendinblue.php:104
713
+ msgid ""
714
+ "Your Access Key can be found in your SendinBlue account under API & "
715
+ "Integration > Manager Your Keys > Version 2.0 > Access Key."
716
+ msgstr ""
717
+ "ניתן למצוא את מפתח הגישה בחשבונך ב- SendinBlue תחת API אינטגרציה & > ניהול "
718
+ "מפתחות > גירסה 2.0 > מפתח גישה."
719
+
720
+ #: classes/class-fl-builder-service-sendinblue.php:198
721
+ msgid ""
722
+ "There was an error subscribing to SendinBlue. The account is no longer "
723
+ "connected."
724
+ msgstr "אירעה שגיאה בהרשמה ל-SendinBlue. החשבון כבר אינו מחובר."
725
+
726
+ #: classes/class-fl-builder-service-sendinblue.php:220
727
+ msgid "There was an error subscribing to SendinBlue. Please try again."
728
+ msgstr "אירעה שגיאה בהרשמה ל-SendinBlue. אנא נסה שוב."
729
+
730
+ #: classes/class-fl-builder-service-sendinblue.php:223
731
+ #, php-format
732
+ msgid "Error: Could not subscribe to SendinBlue. %s"
733
+ msgstr "שגיאה: לא היתה אפשרות להרשם ל-SendinBlue. %s"
734
+
735
+ #: classes/class-fl-builder-services.php:158
736
+ msgctxt "Third party service such as MailChimp."
737
+ msgid "Error: Missing service type."
738
+ msgstr "שגיאה: חסר סוג שירות."
739
+
740
+ #: classes/class-fl-builder-services.php:161
741
+ msgctxt "Connection data such as an API key."
742
+ msgid "Error: Missing service data."
743
+ msgstr "שגיאה: חסרים פרטי שירות."
744
+
745
+ #: classes/class-fl-builder-services.php:164
746
+ msgctxt "Account name for a third party service such as MailChimp."
747
+ msgid "Error: Missing account name."
748
+ msgstr "שגיאה: חסר שם חשבון."
749
+
750
+ #: classes/class-fl-builder-services.php:173
751
+ msgctxt "Account name for a third party service such as MailChimp."
752
+ msgid "Error: An account with that name already exists."
753
+ msgstr "שגיאה: חשבון בשם זה כבר קיים."
754
+
755
+ #: classes/class-fl-builder-services.php:253
756
+ msgid "Account Name"
757
+ msgstr "שם החשבון"
758
+
759
+ #: classes/class-fl-builder-services.php:254
760
+ msgid ""
761
+ "Used to identify this connection within the accounts list and can be "
762
+ "anything you like."
763
+ msgstr ""
764
+ "משמש כדי לזהות את החיבור הזה בתוך רשימת החשבונות ויכול להיות כל מה שתרצה."
765
+
766
+ #: classes/class-fl-builder-services.php:267
767
+ msgid "Connect"
768
+ msgstr "התחבר"
769
+
770
+ #: classes/class-fl-builder-services.php:295
771
+ msgid "Add Account..."
772
+ msgstr "הוסף חשבון…"
773
+
774
+ #: classes/class-fl-builder-services.php:302
775
+ msgid "Account"
776
+ msgstr "חשבון"
777
+
778
+ #: classes/class-fl-builder-templates-override.php:49
779
+ msgid "Error! Please enter a number for the site ID."
780
+ msgstr "שגיאה! אנא הזן מספר עבור מזהה האתר."
781
+
782
+ #: classes/class-fl-builder-templates-override.php:53
783
+ msgid "Error! A site with that ID doesn't exist."
784
+ msgstr "שגיאה! לא קיים אתר עם מזהה זה."
785
+
786
+ #: classes/class-fl-builder.php:618
787
+ #, php-format
788
+ msgid "Template: %s"
789
+ msgstr "תבנית: %s"
790
+
791
+ #: classes/class-fl-builder.php:653
792
+ msgid "Upgrade!"
793
+ msgstr "שדרג!"
794
+
795
+ #: classes/class-fl-builder.php:657
796
+ msgid "Buy Now!"
797
+ msgstr "קנה עכשיו!"
798
+
799
+ #: classes/class-fl-builder.php:661 includes/ui-js-config.php:38
800
+ #: includes/ui-js-templates.php:163
801
+ msgid "Done"
802
+ msgstr "סיים"
803
+
804
+ #: classes/class-fl-builder.php:665
805
+ msgid "Tools"
806
+ msgstr "כלים"
807
+
808
+ #: classes/class-fl-builder.php:673 includes/ui-js-config.php:90
809
+ msgid "Add Content"
810
+ msgstr "הוסף תוכן"
811
+
812
+ #: classes/class-fl-builder.php:1058
813
+ #, php-format
814
+ msgctxt "Field name to add."
815
+ msgid "Add %s"
816
+ msgstr "הוסף %s"
817
+
818
+ #: classes/class-fl-builder.php:1152 classes/class-fl-builder.php:1154
819
+ msgctxt "Custom post type label."
820
+ msgid "Templates"
821
+ msgstr "תבניות"
822
+
823
+ #: classes/class-fl-builder.php:1153 classes/class-fl-builder.php:1155
824
+ msgctxt "Custom post type label."
825
+ msgid "Template"
826
+ msgstr "תבנית"
827
+
828
+ #: classes/class-fl-builder.php:1156
829
+ msgctxt "Custom post type label."
830
+ msgid "Add New"
831
+ msgstr "הוסף חדש"
832
+
833
+ #: classes/class-fl-builder.php:1157
834
+ msgctxt "Custom post type label."
835
+ msgid "Add New Template"
836
+ msgstr "הוסף תבנית חדשה"
837
+
838
+ #: classes/class-fl-builder.php:1158
839
+ msgctxt "Custom post type label."
840
+ msgid "New Template"
841
+ msgstr "תבנית חדשה"
842
+
843
+ #: classes/class-fl-builder.php:1159
844
+ msgctxt "Custom post type label."
845
+ msgid "Edit Template"
846
+ msgstr "ערוך תבנית"
847
+
848
+ #: classes/class-fl-builder.php:1160
849
+ msgctxt "Custom post type label."
850
+ msgid "View Template"
851
+ msgstr "צפה בתבנית"
852
+
853
+ #: classes/class-fl-builder.php:1161
854
+ msgctxt "Custom post type label."
855
+ msgid "All Templates"
856
+ msgstr "כל התבניות"
857
+
858
+ #: classes/class-fl-builder.php:1162
859
+ msgctxt "Custom post type label."
860
+ msgid "Search Templates"
861
+ msgstr "חפש בתבניות"
862
+
863
+ #: classes/class-fl-builder.php:1163
864
+ msgctxt "Custom post type label."
865
+ msgid "Parent Templates:"
866
+ msgstr "תבניות אב:"
867
+
868
+ #: classes/class-fl-builder.php:1164
869
+ msgctxt "Custom post type label."
870
+ msgid "No templates found."
871
+ msgstr "לא נמצאו תבניות."
872
+
873
+ #: classes/class-fl-builder.php:1165
874
+ msgctxt "Custom post type label."
875
+ msgid "No templates found in Trash."
876
+ msgstr "לא נמצאו תבניות בסל מחזור."
877
+
878
+ #: classes/class-fl-builder.php:1179 classes/class-fl-builder.php:1189
879
+ msgctxt "Custom taxonomy label."
880
+ msgid "Categories"
881
+ msgstr "קטגוריות"
882
+
883
+ #: classes/class-fl-builder.php:1180
884
+ msgctxt "Custom taxonomy label."
885
+ msgid "Category"
886
+ msgstr "קטגוריה"
887
+
888
+ #: classes/class-fl-builder.php:1181
889
+ msgctxt "Custom taxonomy label."
890
+ msgid "Search Categories"
891
+ msgstr "חפש בקטגוריות"
892
+
893
+ #: classes/class-fl-builder.php:1182
894
+ msgctxt "Custom taxonomy label."
895
+ msgid "All Categories"
896
+ msgstr "כל הקטגוריות"
897
+
898
+ #: classes/class-fl-builder.php:1183
899
+ msgctxt "Custom taxonomy label."
900
+ msgid "Parent Category"
901
+ msgstr "קטגוריית אב"
902
+
903
+ #: classes/class-fl-builder.php:1184
904
+ msgctxt "Custom taxonomy label."
905
+ msgid "Parent Category:"
906
+ msgstr "קטגוריית אב:"
907
+
908
+ #: classes/class-fl-builder.php:1185
909
+ msgctxt "Custom taxonomy label."
910
+ msgid "Edit Category"
911
+ msgstr "ערוך קטגוריה"
912
+
913
+ #: classes/class-fl-builder.php:1186
914
+ msgctxt "Custom taxonomy label."
915
+ msgid "Update Category"
916
+ msgstr "עדכן קטגוריה"
917
+
918
+ #: classes/class-fl-builder.php:1187
919
+ msgctxt "Custom taxonomy label."
920
+ msgid "Add New Category"
921
+ msgstr "הוסף קטגוריה חדשה"
922
+
923
+ #: classes/class-fl-builder.php:1188
924
+ msgctxt "Custom taxonomy label."
925
+ msgid "New Category Name"
926
+ msgstr "שם קטגוריה חדשה"
927
+
928
+ #: classes/class-fl-builder.php:1198
929
+ msgctxt "Custom taxonomy label."
930
+ msgid "Type"
931
+ msgstr "סוג"
932
+
933
+ #: classes/class-fl-builder.php:1478 classes/class-fl-builder.php:1579
934
+ #: classes/class-fl-builder.php:1790 includes/ui-js-templates.php:173
935
+ #: includes/ui-panel-node-templates.php:18
936
+ #: includes/ui-panel-node-templates.php:49
937
+ msgctxt "Indicator for global node templates."
938
+ msgid "Global"
939
+ msgstr "גלובלי"
940
+
941
+ #: classes/class-fl-builder.php:1789
942
+ #, php-format
943
+ msgctxt "%s stands for module name."
944
+ msgid "%s Settings"
945
+ msgstr "‏הגדרות %s"
946
+
947
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
948
+ msgid "Text Editor"
949
+ msgstr "עורך טקסט"
950
+
951
+ #: includes/admin-posts.php:7
952
+ #, php-format
953
+ msgctxt ""
954
+ "The first %s stands for custom branded \"Page Builder\" name. The second %s "
955
+ "stands for the post type name."
956
+ msgid "%s is currently active for this %s."
957
+ msgstr "‏%s מופעל כרגע עבור %s."
958
+
959
+ #: includes/admin-posts.php:8
960
+ #, php-format
961
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
962
+ msgid "Launch %s"
963
+ msgstr "הפעל %s"
964
+
965
+ #: includes/admin-settings-branding.php:7
966
+ msgid "White label the page builder by entering a custom name below."
967
+ msgstr "הפוך את המחולל לתווית לבנה על ידי הזנת שם מותאם אישית בשדה להן."
968
+
969
+ #: includes/admin-settings-branding.php:10
970
+ msgid ""
971
+ "Additionally, you may also add a custom icon by entering the URL of an image "
972
+ "below. Leave the field blank if you do not wish to use an icon."
973
+ msgstr ""
974
+ "בנוסף, אתה יכול גם להוסיף אייקון מותאם אישית על-ידי הזנת כתובת ה-URL של "
975
+ "תמונה להלן. השאר את השדה ריק אם אינך רוצה להשתמש באייקון."
976
+
977
+ #: includes/admin-settings-branding.php:14
978
+ msgid "Save Branding"
979
+ msgstr "שמור מיתוג"
980
+
981
+ #: includes/admin-settings-cache.php:9
982
+ msgid ""
983
+ "A CSS and JavaScript file is dynamically generated and cached each time you "
984
+ "create a new layout. Sometimes the cache needs to be refreshed when you "
985
+ "migrate your site to another server or update to the latest version. If you "
986
+ "are running into any issues, please try clearing the cache by clicking the "
987
+ "button below."
988
+ msgstr ""
989
+ "קובץ CSS ו- JavaScript נוצר ונשמר בזכרון המטמון באופן דינמי בכל פעם שאתה "
990
+ "יוצר פריסה חדשה. לפעמים יש צורך לרענן את זכרון המטמון בעת העברת האתר לשרת "
991
+ "אחר או בעת עדכון גירסה. אם אתה נתקל בבעיות כלשהן, אנא נסה לנקות את זכרון "
992
+ "המטמון בלחיצה על הכפתור למטה."
993
+
994
+ #: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14
995
+ #: includes/admin-settings-uninstall.php:7
996
+ #: includes/admin-settings-uninstall.php:10
997
+ #: includes/updater/includes/form.php:31
998
+ msgid "NOTE:"
999
+ msgstr "שימו לב:"
1000
+
1001
+ #: includes/admin-settings-cache.php:12
1002
+ #: includes/admin-settings-uninstall.php:10
1003
+ #: includes/updater/includes/form.php:31
1004
+ msgid "This applies to all sites on the network."
1005
+ msgstr "זה חל על כל האתרים ברשת."
1006
+
1007
+ #: includes/admin-settings-cache.php:14
1008
+ msgid ""
1009
+ "This only applies to this site. Please visit the Network Admin Settings to "
1010
+ "clear the cache for all sites on the network."
1011
+ msgstr ""
1012
+ "זה חל רק על האתר הזה. אנא גלשו להגדרות מנהל הרשת כדי לנקות את זכרון המטמון "
1013
+ "עבור כל האתרים ברשת."
1014
+
1015
+ #: includes/admin-settings-cache.php:19
1016
+ msgid "Clear Cache"
1017
+ msgstr "נקה זכרון מטמון"
1018
+
1019
+ #: includes/admin-settings-editing.php:3
1020
+ msgid "Editing Settings"
1021
+ msgstr "הגדרות עריכה"
1022
+
1023
+ #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
1024
+ #: includes/admin-settings-modules.php:10
1025
+ #: includes/admin-settings-post-types.php:10
1026
+ #: includes/admin-settings-templates.php:16
1027
+ msgid "Override network settings?"
1028
+ msgstr "דרוס הגדרות רשת?"
1029
+
1030
+ #: includes/admin-settings-editing.php:16
1031
+ msgid "Editing Capability"
1032
+ msgstr "הרשאות עריכה"
1033
+
1034
+ #: includes/admin-settings-editing.php:17
1035
+ #, php-format
1036
+ msgid ""
1037
+ "Set the <a%s>capability</a> required for users to access advanced builder "
1038
+ "editing such as adding, deleting or moving modules."
1039
+ msgstr ""
1040
+ "הגדר את <a%s>ההרשאה</a> הנדרשת למשתמש בכדי לגשת ליכולות עריכה מתקדמות במחולל "
1041
+ "כגון הוספה, מחיקה או העברה של מודולים."
1042
+
1043
+ #: includes/admin-settings-editing.php:21
1044
+ msgid "Global Templates Editing Capability"
1045
+ msgstr "הרשאות עריכת תבניות גלובליות"
1046
+
1047
+ #: includes/admin-settings-editing.php:22
1048
+ #, php-format
1049
+ msgid "Set the <a%s>capability</a> required for users to global templates."
1050
+ msgstr "הגדר את <a%s>ההרשאה</a> הנדרשת למשתמש לערוך תבניות גלובליות."
1051
+
1052
+ #: includes/admin-settings-editing.php:28
1053
+ msgid "Save Editing Settings"
1054
+ msgstr "שמור הגדרות עריכה"
1055
+
1056
+ #: includes/admin-settings-help-button.php:8
1057
+ msgid "Help Button Settings"
1058
+ msgstr "הגדרות כפתור עזרה"
1059
+
1060
+ #: includes/admin-settings-help-button.php:17
1061
+ msgid "Enable Help Button"
1062
+ msgstr "אפשר כפתור עזרה"
1063
+
1064
+ #: includes/admin-settings-help-button.php:23
1065
+ msgid "Help Tour"
1066
+ msgstr "סיור עזרה"
1067
+
1068
+ #: includes/admin-settings-help-button.php:27
1069
+ msgid "Enable Help Tour"
1070
+ msgstr "אפשר סיור עזרה"
1071
+
1072
+ #: includes/admin-settings-help-button.php:31
1073
+ msgid "Help Video"
1074
+ msgstr "וידאו עזרה"
1075
+
1076
+ #: includes/admin-settings-help-button.php:35
1077
+ msgid "Enable Help Video"
1078
+ msgstr "אפשר וידאו עזרה"
1079
+
1080
+ #: includes/admin-settings-help-button.php:39
1081
+ msgid "Help Video Embed Code"
1082
+ msgstr "קוד הטמעה של וידאו עזרה"
1083
+
1084
+ #: includes/admin-settings-help-button.php:45
1085
+ msgid "Knowledge Base"
1086
+ msgstr "בסיס מידע"
1087
+
1088
+ #: includes/admin-settings-help-button.php:49
1089
+ msgid "Enable Knowledge Base"
1090
+ msgstr "אפשר בסיס מידע"
1091
+
1092
+ #: includes/admin-settings-help-button.php:53
1093
+ msgid "Knowledge Base URL"
1094
+ msgstr "כתובת בסיס מידע"
1095
+
1096
+ #: includes/admin-settings-help-button.php:59
1097
+ msgid "Forums"
1098
+ msgstr "פורומים"
1099
+
1100
+ #: includes/admin-settings-help-button.php:63
1101
+ msgid "Enable Forums"
1102
+ msgstr "אפשר פורומים"
1103
+
1104
+ #: includes/admin-settings-help-button.php:67
1105
+ msgid "Forums URL"
1106
+ msgstr "כתובת פורומים"
1107
+
1108
+ #: includes/admin-settings-help-button.php:77
1109
+ msgid "Save Help Button Settings"
1110
+ msgstr "שמור הגדרות כפתור עזרה"
1111
+
1112
+ #: includes/admin-settings-icons.php:3
1113
+ msgid "Icon Settings"
1114
+ msgstr "הגדרות אייקונים"
1115
+
1116
+ #: includes/admin-settings-icons.php:13
1117
+ msgid "Icons for the main site must be managed in the network admin."
1118
+ msgstr "אייקונים עבור האתר הראשי חייבים להיות מנוהלים באדמין הרשת."
1119
+
1120
+ #: includes/admin-settings-icons.php:33
1121
+ #, php-format
1122
+ msgid ""
1123
+ "Enable or disable icon sets using the options below or upload a custom icon "
1124
+ "set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
1125
+ msgstr ""
1126
+ "אפשר או בטל ערכות אייקונים באמצעות האפשרויות הבאות או העלה ערכת אייקונים "
1127
+ "מותאמת אישית מ- <a%s>Icomoon</a> או <a%s>Fontello</a>."
1128
+
1129
+ #: includes/admin-settings-icons.php:48
1130
+ msgctxt "Plugin setup page: Delete icon set."
1131
+ msgid "Delete"
1132
+ msgstr "מחק"
1133
+
1134
+ #: includes/admin-settings-icons.php:59
1135
+ msgid "Upload Icon Set"
1136
+ msgstr "העלה ערכת אייקונים"
1137
+
1138
+ #: includes/admin-settings-icons.php:60
1139
+ msgid "Save Icon Settings"
1140
+ msgstr "שמור הגדרות אייקונים"
1141
+
1142
+ #: includes/admin-settings-js-config.php:4
1143
+ msgid "Select File"
1144
+ msgstr "בחר קובץ"
1145
+
1146
+ #: includes/admin-settings-js-config.php:5
1147
+ msgid ""
1148
+ "Please type \"uninstall\" in the box below to confirm that you really want "
1149
+ "to uninstall the page builder and all of its data."
1150
+ msgstr ""
1151
+ "נא הקלד “uninstall” בתיבה שלהלן כדי לאשר שאתה באמת רוצה להסיר את מחולל "
1152
+ "העמודים ואת כל הנתונים שלו."
1153
+
1154
+ #: includes/admin-settings-modules.php:3
1155
+ msgid "Enabled Modules"
1156
+ msgstr "מודולים מאופשרים"
1157
+
1158
+ #: includes/admin-settings-modules.php:16
1159
+ msgid "Check or uncheck modules below to enable or disable them."
1160
+ msgstr "סמן או בטל סימון עבור המודולים הבאים בכדי לאפשר או לנטרל אותם."
1161
+
1162
+ #: includes/admin-settings-modules.php:26
1163
+ msgctxt "Plugin setup page: Modules."
1164
+ msgid "All"
1165
+ msgstr "כולם"
1166
+
1167
+ #: includes/admin-settings-modules.php:64
1168
+ msgid "Save Module Settings"
1169
+ msgstr "שמור הגדרות מודול"
1170
+
1171
+ #: includes/admin-settings-post-types.php:18
1172
+ msgid ""
1173
+ "Enter a comma separated list of the post types you would like the builder to "
1174
+ "work with."
1175
+ msgstr ""
1176
+ "הזן רשימה מופרדת בפסיקים של כל סוגי הפוסטים איתם תרצה שמחולל העמודים יעבוד."
1177
+
1178
+ #: includes/admin-settings-post-types.php:19
1179
+ #: includes/admin-settings-post-types.php:39
1180
+ msgid "NOTE: Not all custom post types may be supported."
1181
+ msgstr "שימו לב: ייתכן שלא כל סוגי הפוסטים המותאמים אישית ייתמכו."
1182
+
1183
+ #: includes/admin-settings-post-types.php:34
1184
+ msgid "Example: page, post, product"
1185
+ msgstr "דוגמה: עמוד, פוסט, מוצר"
1186
+
1187
+ #: includes/admin-settings-post-types.php:38
1188
+ msgid "Select the post types you would like the builder to work with."
1189
+ msgstr "בחר את סוגי הפוסטים איתם תרצה שמחולל העמודים יעבוד."
1190
+
1191
+ #: includes/admin-settings-post-types.php:70
1192
+ msgid "Save Post Types"
1193
+ msgstr "שמור סוגי פוסטים"
1194
+
1195
+ #: includes/admin-settings-templates-override.php:1
1196
+ #: includes/admin-settings-templates-override.php:12
1197
+ msgid "Override Core Templates"
1198
+ msgstr "דרוס תבניות ליבה"
1199
+
1200
+ #: includes/admin-settings-templates-override.php:3
1201
+ msgid ""
1202
+ "Enter the ID of a site on the network whose templates should override core "
1203
+ "builder templates. Leave this field blank if you do not wish to override "
1204
+ "core templates."
1205
+ msgstr ""
1206
+ "הזן את המזהה של אתר ברשת אשר התבניות שלו ידרסו את תבניות הליבה של מחולל "
1207
+ "העמודים. השאר שדה זה ריק אם אין ברצונך לדרוס את תבניות הליבה."
1208
+
1209
+ #: includes/admin-settings-templates-override.php:8
1210
+ msgid ""
1211
+ "Use this setting to override core builder templates with your templates."
1212
+ msgstr "השתמש בהגדרה זו כדי לעקוף את תבניות הליבה של המחולל עם התבניות שלך."
1213
+
1214
+ #: includes/admin-settings-templates-override.php:17
1215
+ msgid ""
1216
+ "You may also choose to show your row and module templates as sections within "
1217
+ "the builder panel. A new section will be created for each row or module "
1218
+ "category that you have defined."
1219
+ msgstr ""
1220
+ "בנוסף, באפשרותך לבחור להציג את תבניות השורות והמודולים שלך כאזורים בפאנל "
1221
+ "המחולל. אזור חדש יווצר עבור כל תבנית שורה או מודול שהגדרת."
1222
+
1223
+ #: includes/admin-settings-templates-override.php:21
1224
+ msgid "Show Row Templates?"
1225
+ msgstr "הצג תבניות שורה?"
1226
+
1227
+ #: includes/admin-settings-templates-override.php:27
1228
+ msgid "Show Module Templates?"
1229
+ msgstr "הצג תבניות מודול?"
1230
+
1231
+ #: includes/admin-settings-templates.php:9
1232
+ msgid "Template Settings"
1233
+ msgstr "הגדרות תבנית"
1234
+
1235
+ #: includes/admin-settings-templates.php:22
1236
+ msgid "Enable Templates"
1237
+ msgstr "אפשר תבניות"
1238
+
1239
+ #: includes/admin-settings-templates.php:23
1240
+ msgid ""
1241
+ "Use this setting to enable or disable templates in the builder interface."
1242
+ msgstr "השתמש בהגדרה זו כדי לאפשר או לבטל תבניות בממשק המחולל."
1243
+
1244
+ #: includes/admin-settings-templates.php:25
1245
+ msgid "Enable All Templates"
1246
+ msgstr "אפשר את כל התבניות"
1247
+
1248
+ #: includes/admin-settings-templates.php:26
1249
+ msgid "Enable Core Templates Only"
1250
+ msgstr "אפשר תבניות הליבה בלבד"
1251
+
1252
+ #: includes/admin-settings-templates.php:27
1253
+ msgid "Enable User Templates Only"
1254
+ msgstr "אפשר תבניות משתמש בלבד"
1255
+
1256
+ #: includes/admin-settings-templates.php:28
1257
+ msgid "Disable All Templates"
1258
+ msgstr "בטל את כל התבניות"
1259
+
1260
+ #: includes/admin-settings-templates.php:31
1261
+ #: includes/admin-settings-templates.php:36
1262
+ msgid "Enable Templates Admin"
1263
+ msgstr "אפשר מנהל תבניות"
1264
+
1265
+ #: includes/admin-settings-templates.php:32
1266
+ msgid "Use this setting to edit builder templates in the WordPress admin."
1267
+ msgstr "השתמש בהגדרה זו כדי לערוך תבניות מחולל באדמין של וורדפרס"
1268
+
1269
+ #: includes/admin-settings-templates.php:50
1270
+ msgid "Save Template Settings"
1271
+ msgstr "שמור הגדרות תבנית"
1272
+
1273
+ #: includes/admin-settings-uninstall.php:5
1274
+ msgid ""
1275
+ "Clicking the button below will uninstall the page builder plugin and delete "
1276
+ "all of the data associated with it. You can uninstall or deactivate the page "
1277
+ "builder from the plugins page instead if you do not wish to delete the data."
1278
+ msgstr ""
1279
+ "לחיצה על הכפתור למטה תסיר את ההתקנה של תוסף מחולל העמודים ותמחוק את כל "
1280
+ "הנתונים המשויכים אליו. באפשרותך להסיר או לבטל את תוסף מחולל העמודים מעמוד "
1281
+ "התוספים אם אינך רוצה שכל הנתונים ימחקו."
1282
+
1283
+ #: includes/admin-settings-uninstall.php:7
1284
+ msgid ""
1285
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
1286
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
1287
+ "you want to reinstall it later. If you do, the builder will rebuild all of "
1288
+ "its data using those meta values."
1289
+ msgstr ""
1290
+ "מחולל העמודים אינו מוחק את מטא הפוסטים<code>_fl_builder_data</code>, "
1291
+ "<code>_fl_builder_draft</code> ו- <code>_fl_builder_enabled</code> למקרה "
1292
+ "שתרצה להתקין אותו מחדש מאוחר יותר. אם אכן תתקין מחדש, הבונה ישחזר את כל "
1293
+ "הנתונים שלו באמצעות ערכי מטא אלו."
1294
+
1295
+ #: includes/admin-settings-upgrade.php:5
1296
+ msgid ""
1297
+ "You are currently running the lite version of the Beaver Builder plugin. "
1298
+ "Upgrade today for access to premium features such as advanced modules, "
1299
+ "templates, support and more!"
1300
+ msgstr ""
1301
+ "אתה מריץ כרגע את הגרסה הבסיסית של תוסף מחולל העמודים. שדרג עוד היום וקבל "
1302
+ "גישה לכל תכונות הפרימיום כגון מודולים מתקדמים, תבניות, תמיכה ועוד!"
1303
+
1304
+ #: includes/admin-settings-upgrade.php:7
1305
+ msgid "Upgrade Now"
1306
+ msgstr "שדרג עכשיו"
1307
+
1308
+ #: includes/admin-settings-upgrade.php:9
1309
+ msgid "Learn More"
1310
+ msgstr "למד עוד"
1311
+
1312
+ #: includes/column-settings.php:4 includes/ui-js-templates.php:33
1313
+ #: includes/ui-js-templates.php:88
1314
+ msgid "Column Settings"
1315
+ msgstr "הגדרות עמודה"
1316
+
1317
+ #: includes/column-settings.php:7 includes/module-settings.php:87
1318
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
1319
+ #: modules/button/button.php:117 modules/button/button.php:155
1320
+ #: modules/button/button.php:159 modules/callout/callout.php:242
1321
+ #: modules/callout/callout.php:554
1322
+ #: modules/content-slider/content-slider.php:451
1323
+ #: modules/content-slider/content-slider.php:692 modules/cta/cta.php:102
1324
+ #: modules/cta/cta.php:309 modules/heading/heading.php:69
1325
+ #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1326
+ #: modules/menu/menu.php:168 modules/numbers/numbers.php:155
1327
+ #: modules/post-carousel/post-carousel.php:403
1328
+ #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:579
1329
+ #: modules/pricing-table/pricing-table.php:43
1330
+ #: modules/pricing-table/pricing-table.php:155
1331
+ #: modules/separator/separator.php:72
1332
+ #: modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
1333
+ msgid "Style"
1334
+ msgstr "עיצוב"
1335
+
1336
+ #: includes/column-settings.php:14
1337
+ msgid "Column Width"
1338
+ msgstr "רוחב עמודה"
1339
+
1340
+ #: includes/column-settings.php:25 modules/post-carousel/post-carousel.php:230
1341
+ msgid "Equalize Column Heights"
1342
+ msgstr "השווה גובה עמודות"
1343
+
1344
+ #: includes/column-settings.php:26
1345
+ msgid ""
1346
+ "Setting this to yes will make all of the columns in this group the same "
1347
+ "height regardless of how much content is in each of them."
1348
+ msgstr ""
1349
+ "במידה ותבחר ב-“כן” גובה כל העמודות בקבוצה זו יהיה זהה ללא תלות וקשר בכמות "
1350
+ "התוכן שיהיה בכל עמודה."
1351
+
1352
+ #: includes/column-settings.php:29 includes/global-settings.php:18
1353
+ #: includes/global-settings.php:110 includes/global-settings.php:124
1354
+ #: includes/node-template-settings.php:22 includes/row-settings.php:352
1355
+ #: modules/accordion/accordion.php:90 modules/callout/callout.php:421
1356
+ #: modules/content-slider/content-slider.php:235
1357
+ #: modules/content-slider/content-slider.php:249
1358
+ #: modules/content-slider/content-slider.php:283
1359
+ #: modules/content-slider/content-slider.php:292
1360
+ #: modules/content-slider/content-slider.php:563
1361
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1362
+ #: modules/menu/menu.php:189 modules/menu/menu.php:386
1363
+ #: modules/post-carousel/post-carousel.php:140
1364
+ #: modules/post-carousel/post-carousel.php:156
1365
+ #: modules/post-carousel/post-carousel.php:183
1366
+ #: modules/post-carousel/post-carousel.php:192
1367
+ #: modules/post-carousel/post-carousel.php:233
1368
+ #: modules/post-carousel/post-carousel.php:297
1369
+ #: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:357
1370
+ #: modules/post-slider/post-slider.php:382
1371
+ #: modules/post-slider/post-slider.php:409
1372
+ #: modules/post-slider/post-slider.php:418
1373
+ #: modules/post-slider/post-slider.php:739 modules/slideshow/slideshow.php:323
1374
+ #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
1375
+ #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
1376
+ #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
1377
+ #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
1378
+ #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
1379
+ #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
1380
+ #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
1381
+ #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
1382
+ #: modules/slideshow/slideshow.php:650
1383
+ #: modules/social-buttons/social-buttons.php:111
1384
+ #: modules/social-buttons/social-buttons.php:120
1385
+ #: modules/social-buttons/social-buttons.php:129
1386
+ #: modules/testimonials/testimonials.php:85
1387
+ #: modules/testimonials/testimonials.php:124
1388
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1389
+ #: modules/video/video.php:123
1390
+ msgid "No"
1391
+ msgstr "לא"
1392
+
1393
+ #: includes/column-settings.php:30 includes/global-settings.php:19
1394
+ #: includes/global-settings.php:111 includes/global-settings.php:125
1395
+ #: includes/node-template-settings.php:23 includes/row-settings.php:353
1396
+ #: modules/accordion/accordion.php:89 modules/callout/callout.php:422
1397
+ #: modules/content-slider/content-slider.php:236
1398
+ #: modules/content-slider/content-slider.php:250
1399
+ #: modules/content-slider/content-slider.php:284
1400
+ #: modules/content-slider/content-slider.php:293
1401
+ #: modules/content-slider/content-slider.php:564
1402
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1403
+ #: modules/menu/menu.php:190 modules/menu/menu.php:387
1404
+ #: modules/post-carousel/post-carousel.php:141
1405
+ #: modules/post-carousel/post-carousel.php:157
1406
+ #: modules/post-carousel/post-carousel.php:184
1407
+ #: modules/post-carousel/post-carousel.php:193
1408
+ #: modules/post-carousel/post-carousel.php:234
1409
+ #: modules/post-carousel/post-carousel.php:296
1410
+ #: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:358
1411
+ #: modules/post-slider/post-slider.php:383
1412
+ #: modules/post-slider/post-slider.php:410
1413
+ #: modules/post-slider/post-slider.php:419
1414
+ #: modules/post-slider/post-slider.php:740 modules/slideshow/slideshow.php:324
1415
+ #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
1416
+ #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
1417
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1418
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
1419
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
1420
+ #: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
1421
+ #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
1422
+ #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
1423
+ #: modules/slideshow/slideshow.php:651
1424
+ #: modules/social-buttons/social-buttons.php:110
1425
+ #: modules/social-buttons/social-buttons.php:119
1426
+ #: modules/social-buttons/social-buttons.php:128
1427
+ #: modules/testimonials/testimonials.php:86
1428
+ #: modules/testimonials/testimonials.php:125
1429
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1430
+ #: modules/video/video.php:124
1431
+ msgid "Yes"
1432
+ msgstr "כן"
1433
+
1434
+ #: includes/column-settings.php:39 modules/button/button.php:66
1435
+ #: modules/callout/callout.php:226 modules/callout/callout.php:479
1436
+ #: modules/callout/callout.php:495
1437
+ #: modules/content-slider/content-slider.php:408
1438
+ #: modules/content-slider/content-slider.php:642 modules/cta/cta.php:85
1439
+ #: modules/cta/cta.php:222 modules/menu/menu.php:196
1440
+ #: modules/post-slider/post-slider.php:622
1441
+ msgid "Text"
1442
+ msgstr "טקסט"
1443
+
1444
+ #: includes/column-settings.php:43 includes/column-settings.php:106
1445
+ #: includes/column-settings.php:261 includes/row-settings.php:146
1446
+ #: includes/row-settings.php:448 modules/callout/callout.php:392
1447
+ #: modules/content-slider/content-slider.php:363
1448
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1449
+ #: modules/separator/separator.php:34
1450
+ msgid "Color"
1451
+ msgstr "צבע"
1452
+
1453
+ #: includes/column-settings.php:51 includes/row-settings.php:73
1454
+ #: modules/menu/menu.php:200 modules/post-carousel/post-carousel.php:415
1455
+ #: modules/post-slider/post-slider.php:699
1456
+ msgid "Link Color"
1457
+ msgstr "צבע קישור"
1458
+
1459
+ #: includes/column-settings.php:59 includes/row-settings.php:81
1460
+ #: modules/menu/menu.php:218 modules/post-carousel/post-carousel.php:420
1461
+ #: modules/post-slider/post-slider.php:715
1462
+ msgid "Link Hover Color"
1463
+ msgstr "צבע קישור במעבר עכבר"
1464
+
1465
+ #: includes/column-settings.php:67 includes/row-settings.php:89
1466
+ msgid "Heading Color"
1467
+ msgstr "צבע כותרת"
1468
+
1469
+ #: includes/column-settings.php:76 includes/row-settings.php:98
1470
+ #: modules/post-slider/post-slider.php:463
1471
+ msgid "Background"
1472
+ msgstr "רקע"
1473
+
1474
+ #: includes/column-settings.php:80 includes/column-settings.php:228
1475
+ #: includes/row-settings.php:102 includes/row-settings.php:415
1476
+ #: modules/callout/callout.php:475
1477
+ #: modules/content-slider/content-slider.php:357
1478
+ #: modules/content-slider/content-slider.php:404
1479
+ #: modules/content-slider/content-slider.php:622
1480
+ #: modules/content-slider/content-slider.php:764
1481
+ #: modules/slideshow/slideshow.php:347
1482
+ msgid "Type"
1483
+ msgstr "סוג"
1484
+
1485
+ #: includes/column-settings.php:83 includes/row-settings.php:105
1486
+ #: modules/content-slider/content-slider.php:364
1487
+ msgctxt "Background type."
1488
+ msgid "None"
1489
+ msgstr "ללא"
1490
+
1491
+ #: includes/column-settings.php:84 includes/row-settings.php:106
1492
+ msgctxt "Background type."
1493
+ msgid "Color"
1494
+ msgstr "צבע"
1495
+
1496
+ #: includes/column-settings.php:85 includes/row-settings.php:107
1497
+ msgctxt "Background type."
1498
+ msgid "Photo"
1499
+ msgstr "תמונה"
1500
+
1501
+ #: includes/column-settings.php:102 includes/row-settings.php:142
1502
+ #: modules/button/button.php:124 modules/callout/callout.php:405
1503
+ #: modules/callout/callout.php:519
1504
+ #: modules/content-slider/content-slider.php:389
1505
+ #: modules/content-slider/content-slider.php:665 modules/cta/cta.php:198
1506
+ #: modules/cta/cta.php:274 modules/icon-group/icon-group.php:64
1507
+ #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
1508
+ msgid "Background Color"
1509
+ msgstr "צבע רקע"
1510
+
1511
+ #: includes/column-settings.php:114 includes/column-settings.php:269
1512
+ #: includes/row-settings.php:154 includes/row-settings.php:456
1513
+ #: modules/separator/separator.php:44
1514
+ msgid "Opacity"
1515
+ msgstr "אטימות"
1516
+
1517
+ #: includes/column-settings.php:126 includes/row-settings.php:166
1518
+ #: modules/content-slider/content-slider.php:385
1519
+ msgid "Background Photo"
1520
+ msgstr "תמונות רקע"
1521
+
1522
+ #: includes/column-settings.php:130 includes/row-settings.php:170
1523
+ #: includes/row-settings.php:366 modules/callout/callout.php:317
1524
+ #: modules/callout/callout.php:333 modules/callout/callout.php:337
1525
+ #: modules/content-slider/content-slider.php:361
1526
+ #: modules/content-slider/content-slider.php:430
1527
+ #: modules/content-slider/content-slider.php:780 modules/photo/photo.php:25
1528
+ #: modules/photo/photo.php:408
1529
+ msgid "Photo"
1530
+ msgstr "תמונה"
1531
+
1532
+ #: includes/column-settings.php:137 includes/row-settings.php:177
1533
+ msgid "Repeat"
1534
+ msgstr "חזרה"
1535
+
1536
+ #: includes/column-settings.php:140 includes/row-settings.php:180
1537
+ msgctxt "Background repeat."
1538
+ msgid "None"
1539
+ msgstr "ללא"
1540
+
1541
+ #: includes/column-settings.php:141 includes/row-settings.php:181
1542
+ msgctxt "Background repeat."
1543
+ msgid "Tile"
1544
+ msgstr "אריחים"
1545
+
1546
+ #: includes/column-settings.php:142 includes/row-settings.php:182
1547
+ msgctxt "Background repeat."
1548
+ msgid "Horizontal"
1549
+ msgstr "אופקית"
1550
+
1551
+ #: includes/column-settings.php:143 includes/row-settings.php:183
1552
+ msgctxt "Background repeat."
1553
+ msgid "Vertical"
1554
+ msgstr "אנכית"
1555
+
1556
+ #: includes/column-settings.php:145 includes/row-settings.php:185
1557
+ msgid ""
1558
+ "Repeat applies to how the image should display in the background. Choosing "
1559
+ "none will display the image as uploaded. Tile will repeat the image as many "
1560
+ "times as needed to fill the background horizontally and vertically. You can "
1561
+ "also specify the image to only repeat horizontally or vertically."
1562
+ msgstr ""
1563
+ "חזרה משפיעה על איך התמונה תוצג ברקע. בחירת “ללא” תציג את התמונה כפי שהועלתה. "
1564
+ "בחירת “אריחים” תשכפל את התמונה פעמים רבות ככל שידרש על מנת למלא את הרקע "
1565
+ "בצורה אופקית ואנכית. באפשרותך לבחור גם שהתמונה תשוכפל רק אופקית או אנכית."
1566
+
1567
+ #: includes/column-settings.php:152 includes/row-settings.php:192
1568
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
1569
+ #: modules/content-slider/content-slider.php:498
1570
+ #: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:626
1571
+ #: modules/post-slider/post-slider.php:645
1572
+ msgid "Position"
1573
+ msgstr "מיקום"
1574
+
1575
+ #: includes/column-settings.php:155 includes/row-settings.php:195
1576
+ msgid "Left Top"
1577
+ msgstr "שמאל עליון"
1578
+
1579
+ #: includes/column-settings.php:156 includes/row-settings.php:196
1580
+ msgid "Left Center"
1581
+ msgstr "שמאל מרכז"
1582
+
1583
+ #: includes/column-settings.php:157 includes/row-settings.php:197
1584
+ msgid "Left Bottom"
1585
+ msgstr "שמאל תחתון"
1586
+
1587
+ #: includes/column-settings.php:158 includes/row-settings.php:198
1588
+ msgid "Right Top"
1589
+ msgstr "ימין עליון"
1590
+
1591
+ #: includes/column-settings.php:159 includes/row-settings.php:199
1592
+ msgid "Right Center"
1593
+ msgstr "ימין מרכז"
1594
+
1595
+ #: includes/column-settings.php:160 includes/row-settings.php:200
1596
+ msgid "Right Bottom"
1597
+ msgstr "ימין תחתון"
1598
+
1599
+ #: includes/column-settings.php:161 includes/row-settings.php:201
1600
+ msgid "Center Top"
1601
+ msgstr "מרכז עליון"
1602
+
1603
+ #: includes/column-settings.php:162 includes/row-settings.php:202
1604
+ #: modules/button/button.php:227 modules/callout/callout.php:252
1605
+ #: modules/content-slider/content-slider.php:503 modules/cta/cta.php:127
1606
+ #: modules/heading/heading.php:90 modules/heading/heading.php:174
1607
+ #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1608
+ #: modules/menu/menu.php:180 modules/photo/photo.php:434
1609
+ #: modules/social-buttons/social-buttons.php:100
1610
+ msgid "Center"
1611
+ msgstr "מרכז"
1612
+
1613
+ #: includes/column-settings.php:163 includes/row-settings.php:203
1614
+ msgid "Center Bottom"
1615
+ msgstr "מרכז תחתון"
1616
+
1617
+ #: includes/column-settings.php:165 includes/row-settings.php:205
1618
+ msgid "Position will tell the image where it should sit in the background."
1619
+ msgstr "מיקום יאמר לתמונה היכן היא צריכה להיות ממוקמת ברקע."
1620
+
1621
+ #: includes/column-settings.php:172 includes/row-settings.php:212
1622
+ msgid "Attachment"
1623
+ msgstr "הצמדת הרקע"
1624
+
1625
+ #: includes/column-settings.php:175 includes/row-settings.php:215
1626
+ #: modules/post-grid/post-grid.php:78
1627
+ msgid "Scroll"
1628
+ msgstr "נגלל"
1629
+
1630
+ #: includes/column-settings.php:176 includes/global-settings.php:69
1631
+ #: includes/global-settings.php:83 includes/row-settings.php:19
1632
+ #: includes/row-settings.php:37 includes/row-settings.php:216
1633
+ msgid "Fixed"
1634
+ msgstr "קבוע"
1635
+
1636
+ #: includes/column-settings.php:178 includes/row-settings.php:218
1637
+ msgid ""
1638
+ "Attachment will specify how the image reacts when scrolling a page. When "
1639
+ "scrolling is selected, the image will scroll with page scrolling. This is "
1640
+ "the default setting. Fixed will allow the image to scroll within the "
1641
+ "background if fill is selected in the scale setting."
1642
+ msgstr ""
1643
+ "הצמדת הרקע יקבע איך התמונה תגיב כאשר יגללו בעמוד. בחירה ב-”נגלל”, תגדיר "
1644
+ "לתמונה כי עליה להיגלל עם גלילת הדף. זהו ערך ברירת המחדל. בחירה ב-“קבוע” "
1645
+ "תאפשר לתמונה לגלול בתוך הרקע, זאת במידה ובשדה גודל רקע תבחר האפשרות של מלא."
1646
+
1647
+ #: includes/column-settings.php:185 includes/row-settings.php:225
1648
+ msgid "Scale"
1649
+ msgstr "גודל הרקע (scale)"
1650
+
1651
+ #: includes/column-settings.php:188 includes/row-settings.php:228
1652
+ msgctxt "Background scale."
1653
+ msgid "None"
1654
+ msgstr "ללא"
1655
+
1656
+ #: includes/column-settings.php:189 includes/row-settings.php:229
1657
+ msgid "Fit"
1658
+ msgstr "התאם"
1659
+
1660
+ #: includes/column-settings.php:190 includes/row-settings.php:230
1661
+ msgid "Fill"
1662
+ msgstr "מלא"
1663
+
1664
+ #: includes/column-settings.php:192 includes/row-settings.php:232
1665
+ msgid ""
1666
+ "Scale applies to how the image should display in the background. You can "
1667
+ "select either fill or fit to the background."
1668
+ msgstr "גודל הרקע יקבע איך התמונה תוצג ברקע. ניתן לבחור מילוי או התאמה לרקע."
1669
+
1670
+ #: includes/column-settings.php:200 includes/row-settings.php:387
1671
+ msgid "Background Overlay"
1672
+ msgstr "שכבת כיסוי לרקע"
1673
+
1674
+ #: includes/column-settings.php:204 includes/row-settings.php:391
1675
+ msgid "Overlay Color"
1676
+ msgstr "צבע כיסוי"
1677
+
1678
+ #: includes/column-settings.php:212 includes/row-settings.php:399
1679
+ msgid "Overlay Opacity"
1680
+ msgstr "אטימות כיסוי"
1681
+
1682
+ #: includes/column-settings.php:224 includes/row-settings.php:411
1683
+ msgid "Border"
1684
+ msgstr "גבול"
1685
+
1686
+ #: includes/column-settings.php:230 includes/row-settings.php:417
1687
+ msgid ""
1688
+ "The type of border to use. Double borders must have a width of at least 3px "
1689
+ "to render properly."
1690
+ msgstr ""
1691
+ "סוג הגבול לשימוש. גבול כפול חייב להיות ברוחב של לפחות 3px בכדי שיוצג כראוי."
1692
+
1693
+ #: includes/column-settings.php:232 includes/row-settings.php:419
1694
+ msgctxt "Border type."
1695
+ msgid "None"
1696
+ msgstr "ללא"
1697
+
1698
+ #: includes/column-settings.php:233 includes/row-settings.php:420
1699
+ #: modules/separator/separator.php:75
1700
+ msgctxt "Border type."
1701
+ msgid "Solid"
1702
+ msgstr "מוצק"
1703
+
1704
+ #: includes/column-settings.php:234 includes/row-settings.php:421
1705
+ #: modules/separator/separator.php:76
1706
+ msgctxt "Border type."
1707
+ msgid "Dashed"
1708
+ msgstr "מקווקו"
1709
+
1710
+ #: includes/column-settings.php:235 includes/row-settings.php:422
1711
+ #: modules/separator/separator.php:77
1712
+ msgctxt "Border type."
1713
+ msgid "Dotted"
1714
+ msgstr "מנוקד"
1715
+
1716
+ #: includes/column-settings.php:236 includes/row-settings.php:423
1717
+ #: modules/separator/separator.php:78
1718
+ msgctxt "Border type."
1719
+ msgid "Double"
1720
+ msgstr "כפול"
1721
+
1722
+ #: includes/column-settings.php:280 includes/row-settings.php:467
1723
+ msgid "Top Width"
1724
+ msgstr "רוחב עליון"
1725
+
1726
+ #: includes/column-settings.php:292 includes/row-settings.php:479
1727
+ msgid "Bottom Width"
1728
+ msgstr "רוחב תחתון"
1729
+
1730
+ #: includes/column-settings.php:304 includes/row-settings.php:491
1731
+ msgid "Left Width"
1732
+ msgstr "רוחב שמאלי"
1733
+
1734
+ #: includes/column-settings.php:316 includes/row-settings.php:503
1735
+ msgid "Right Width"
1736
+ msgstr "רוחב ימני"
1737
+
1738
+ #: includes/column-settings.php:331 includes/module-settings.php:6
1739
+ #: includes/row-settings.php:518 modules/content-slider/content-slider.php:299
1740
+ msgid "Advanced"
1741
+ msgstr "מתקדם"
1742
+
1743
+ #: includes/column-settings.php:334 includes/global-settings.php:41
1744
+ #: includes/global-settings.php:94 includes/module-settings.php:9
1745
+ #: includes/row-settings.php:521
1746
+ msgid "Margins"
1747
+ msgstr "מרווחים ‪(‬Margin‪)‬"
1748
+
1749
+ #: includes/column-settings.php:338 includes/column-settings.php:391
1750
+ #: includes/module-settings.php:13 includes/row-settings.php:525
1751
+ #: includes/row-settings.php:578 modules/slideshow/slideshow.php:483
1752
+ msgid "Top"
1753
+ msgstr "עליון"
1754
+
1755
+ #: includes/column-settings.php:350 includes/column-settings.php:403
1756
+ #: includes/module-settings.php:25 includes/row-settings.php:537
1757
+ #: includes/row-settings.php:590 modules/post-slider/post-slider.php:632
1758
+ #: modules/slideshow/slideshow.php:482
1759
+ msgid "Bottom"
1760
+ msgstr "תחתון"
1761
+
1762
+ #: includes/column-settings.php:362 includes/column-settings.php:415
1763
+ #: includes/module-settings.php:37 includes/row-settings.php:549
1764
+ #: includes/row-settings.php:602 modules/button/button.php:228
1765
+ #: modules/callout/callout.php:253
1766
+ #: modules/content-slider/content-slider.php:502 modules/cta/cta.php:126
1767
+ #: modules/heading/heading.php:89 modules/heading/heading.php:173
1768
+ #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1769
+ #: modules/menu/menu.php:179 modules/photo/photo.php:433
1770
+ #: modules/post-slider/post-slider.php:630
1771
+ #: modules/post-slider/post-slider.php:649
1772
+ #: modules/social-buttons/social-buttons.php:101
1773
+ msgid "Left"
1774
+ msgstr "שמאל"
1775
+
1776
+ #: includes/column-settings.php:374 includes/column-settings.php:427
1777
+ #: includes/module-settings.php:49 includes/row-settings.php:561
1778
+ #: includes/row-settings.php:614 modules/button/button.php:229
1779
+ #: modules/callout/callout.php:254
1780
+ #: modules/content-slider/content-slider.php:504 modules/cta/cta.php:128
1781
+ #: modules/heading/heading.php:91 modules/heading/heading.php:175
1782
+ #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
1783
+ #: modules/menu/menu.php:181 modules/photo/photo.php:435
1784
+ #: modules/post-slider/post-slider.php:631
1785
+ #: modules/post-slider/post-slider.php:650
1786
+ #: modules/social-buttons/social-buttons.php:102
1787
+ msgid "Right"
1788
+ msgstr "ימין"
1789
+
1790
+ #: includes/column-settings.php:387 includes/global-settings.php:49
1791
+ #: includes/row-settings.php:574 modules/button/button.php:242
1792
+ #: modules/callout/callout.php:609
1793
+ #: modules/content-slider/content-slider.php:738 modules/cta/cta.php:355
1794
+ #: modules/subscribe-form/subscribe-form.php:273
1795
+ msgid "Padding"
1796
+ msgstr "ריפוד ‪(‬Padding‪)‬"
1797
+
1798
+ #: includes/column-settings.php:440 includes/global-settings.php:103
1799
+ #: includes/module-settings.php:62 includes/row-settings.php:627
1800
+ msgid "Responsive Layout"
1801
+ msgstr "פריסה רספונסיבית"
1802
+
1803
+ #: includes/column-settings.php:444 includes/module-settings.php:66
1804
+ #: includes/row-settings.php:631 modules/slideshow/slideshow.php:298
1805
+ msgid "Display"
1806
+ msgstr "תצוגה"
1807
+
1808
+ #: includes/column-settings.php:446 includes/module-settings.php:68
1809
+ #: includes/row-settings.php:633
1810
+ msgid "Always"
1811
+ msgstr "תמיד"
1812
+
1813
+ #: includes/column-settings.php:447 includes/module-settings.php:69
1814
+ #: includes/row-settings.php:634
1815
+ msgid "Large Devices Only"
1816
+ msgstr "מסכים גדולים בלבד"
1817
+
1818
+ #: includes/column-settings.php:448 includes/module-settings.php:70
1819
+ #: includes/row-settings.php:635
1820
+ msgid "Large &amp; Medium Devices Only"
1821
+ msgstr "מסכים גדולים ובינוניים בלבד"
1822
+
1823
+ #: includes/column-settings.php:449 includes/module-settings.php:71
1824
+ #: includes/row-settings.php:636
1825
+ msgid "Medium Devices Only"
1826
+ msgstr "מסכים בינוניים בלבד"
1827
+
1828
+ #: includes/column-settings.php:450 includes/module-settings.php:72
1829
+ #: includes/row-settings.php:637
1830
+ msgid "Medium &amp; Small Devices Only"
1831
+ msgstr "מסכים בינוניים וקטנים בלבד"
1832
+
1833
+ #: includes/column-settings.php:451 includes/module-settings.php:73
1834
+ #: includes/row-settings.php:638
1835
+ msgid "Small Devices Only"
1836
+ msgstr "מסכים קטנים בלבד"
1837
+
1838
+ #: includes/column-settings.php:453
1839
+ msgid "Choose whether to show or hide this column at different device sizes."
1840
+ msgstr "בחר האם להציג או להסתיר עמודה זו בגדלי מסכים שונים."
1841
+
1842
+ #: includes/column-settings.php:460
1843
+ msgid "Medium Device Width"
1844
+ msgstr "רוחב במסכים בינוניים"
1845
+
1846
+ #: includes/column-settings.php:461
1847
+ msgid "The width of this column on medium devices such as tablets."
1848
+ msgstr "רוחב העמודה במסכים בגודל בינוני כדוגמת טאבלטים."
1849
+
1850
+ #: includes/column-settings.php:464 includes/column-settings.php:492
1851
+ #: modules/button/button.php:202 modules/callout/callout.php:285
1852
+ #: modules/content-slider/content-slider.php:475 modules/cta/cta.php:169
1853
+ #: modules/heading/heading.php:130 modules/heading/heading.php:157
1854
+ #: modules/heading/heading.php:187 modules/post-slider/post-slider.php:603
1855
+ #: modules/social-buttons/social-buttons.php:74
1856
+ msgid "Custom"
1857
+ msgstr "מותאם אישית"
1858
+
1859
+ #: includes/column-settings.php:477
1860
+ msgid "Custom Medium Device Width"
1861
+ msgstr "רוחב מותאם אישית למסכים בינוניים"
1862
+
1863
+ #: includes/column-settings.php:488
1864
+ msgid "Small Device Width"
1865
+ msgstr "רוחב במסכים קטנים"
1866
+
1867
+ #: includes/column-settings.php:489
1868
+ msgid "The width of this column on small devices such as phones."
1869
+ msgstr "רוחב העמודה במסכים בגודל קטן כדוגמת סמארטפונים."
1870
+
1871
+ #: includes/column-settings.php:505
1872
+ msgid "Custom Small Device Width"
1873
+ msgstr "רוחב מותאם אישית למסכים קטנים"
1874
+
1875
+ #: includes/column-settings.php:517 includes/module-settings.php:115
1876
+ #: includes/row-settings.php:648
1877
+ msgid "CSS Selectors"
1878
+ msgstr "מזהי CSS"
1879
+
1880
+ #: includes/column-settings.php:521 includes/loop-settings.php:28
1881
+ #: includes/module-settings.php:119 includes/row-settings.php:652
1882
+ msgid "ID"
1883
+ msgstr "מזהה ‪(‬ID‪)‬"
1884
+
1885
+ #: includes/column-settings.php:522
1886
+ msgid ""
1887
+ "A unique ID that will be applied to this column's HTML. Must start with a "
1888
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
1889
+ msgstr ""
1890
+ "מזהה ייחודי שיוחל על ה-HTML של עמודה זו. חייב להתחיל באות ויכול להכיל "
1891
+ "מקפים, מקפים תחתונים, אותיות או מספרים בלבד. ללא רווחים."
1892
+
1893
+ #: includes/column-settings.php:529
1894
+ msgid "CSS Class"
1895
+ msgstr "מחלקה ‪(‬Class‪)‬"
1896
+
1897
+ #: includes/column-settings.php:530
1898
+ msgid ""
1899
+ "A class that will be applied to this column's HTML. Must start with a letter "
1900
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
1901
+ "classes with spaces."
1902
+ msgstr ""
1903
+ "מחלקה שתוחל על ה-HTML של עמודה זו. חייב להתחיל באות ויכול להכיל מקפים, מקפים "
1904
+ "תחתונים, אותיות או מספרים בלבד. הפרד מחלקות מרובות באמצעות רווחים."
1905
+
1906
+ #: includes/field-form.php:28
1907
+ #, php-format
1908
+ msgctxt "%s stands for form field label."
1909
+ msgid "Edit %s"
1910
+ msgstr "ערוך %s"
1911
+
1912
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
1913
+ msgid "Select Icon"
1914
+ msgstr "בחר אייקון"
1915
+
1916
+ #: includes/field-icon.php:5 includes/field-photo.php:13
1917
+ msgid "Replace"
1918
+ msgstr "החלף"
1919
+
1920
+ #: includes/field-icon.php:7 includes/ui-js-config.php:67
1921
+ #: includes/ui-js-templates.php:15 includes/ui-js-templates.php:43
1922
+ #: includes/ui-js-templates.php:99
1923
+ msgid "Remove"
1924
+ msgstr "מחק"
1925
+
1926
+ #: includes/field-link.php:3
1927
+ msgid "Select"
1928
+ msgstr "בחר"
1929
+
1930
+ #: includes/field-link.php:5
1931
+ msgid "Enter a post title to search."
1932
+ msgstr "הזן כותרת פוסט לחיפוש."
1933
+
1934
+ #: includes/field-link.php:6 includes/field-suggest.php:7
1935
+ msgid "Start typing..."
1936
+ msgstr "התחל להקליד…"
1937
+
1938
+ #: includes/field-link.php:7 includes/icon-selector.php:28
1939
+ #: includes/settings.php:71 includes/template-selector.php:92
1940
+ #: includes/ui-js-config.php:23 includes/ui-js-templates.php:135
1941
+ msgid "Cancel"
1942
+ msgstr "בטל"
1943
+
1944
+ #: includes/field-multiple-photos.php:20
1945
+ #, php-format
1946
+ msgid "1 Photo Selected"
1947
+ msgid_plural "%d Photos Selected"
1948
+ msgstr[0] "תמונה אחת נבחרה"
1949
+ msgstr[1] "‏%d תמונות נבחרו"
1950
+
1951
+ #: includes/field-multiple-photos.php:22
1952
+ msgid "Create Gallery"
1953
+ msgstr "צור גלריה"
1954
+
1955
+ #: includes/field-multiple-photos.php:23
1956
+ msgid "Edit Gallery"
1957
+ msgstr "ערוך גלריה"
1958
+
1959
+ #: includes/field-multiple-photos.php:24
1960
+ msgid "Add Photos"
1961
+ msgstr "הוסף תמונות"
1962
+
1963
+ #: includes/field-photo.php:3 includes/ui-js-config.php:73
1964
+ msgid "Select Photo"
1965
+ msgstr "בחר תמונה"
1966
+
1967
+ #: includes/field-photo.php:12 includes/template-selector.php:70
1968
+ msgid "Edit"
1969
+ msgstr "ערוך"
1970
+
1971
+ #: includes/field-video.php:3 includes/ui-js-config.php:75
1972
+ msgid "Select Video"
1973
+ msgstr "בחר וידאו"
1974
+
1975
+ #: includes/field-video.php:17
1976
+ msgid "Replace Video"
1977
+ msgstr "החלף ווידאו"
1978
+
1979
+ #: includes/global-settings.php:7 includes/node-template-settings.php:7
1980
+ #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
1981
+ #: modules/button/button.php:59 modules/callout/callout.php:210
1982
+ #: modules/contact-form/contact-form.php:58
1983
+ #: modules/content-slider/content-slider.php:216
1984
+ #: modules/content-slider/content-slider.php:340 modules/cta/cta.php:68
1985
+ #: modules/gallery/gallery.php:220 modules/heading/heading.php:26
1986
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
1987
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/menu/menu.php:82
1988
+ #: modules/numbers/numbers.php:58 modules/photo/photo.php:384
1989
+ #: modules/pricing-table/pricing-table.php:87
1990
+ #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
1991
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
1992
+ #: modules/social-buttons/social-buttons.php:64
1993
+ #: modules/subscribe-form/subscribe-form.php:87 modules/tabs/tabs.php:77
1994
+ #: modules/testimonials/testimonials.php:30
1995
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
1996
+ #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
1997
+ msgid "General"
1998
+ msgstr "כללי"
1999
+
2000
+ #: includes/global-settings.php:8
2001
+ msgid "Note: These settings apply to all posts and pages."
2002
+ msgstr "שים לב: הגדרות אלו חלות על כל הפוסטים והעמודים."
2003
+
2004
+ #: includes/global-settings.php:11
2005
+ msgid "Default Page Heading"
2006
+ msgstr "כותרת דף ברירת מחדל"
2007
+
2008
+ #: includes/global-settings.php:15
2009
+ msgctxt ""
2010
+ "General settings form field label. Intended meaning: \"Show page heading?\""
2011
+ msgid "Show"
2012
+ msgstr "הצג"
2013
+
2014
+ #: includes/global-settings.php:26
2015
+ msgid ""
2016
+ "Choosing no will hide the default theme heading for the \"Page\" post type. "
2017
+ "You will also be required to enter some basic CSS for this to work if you "
2018
+ "choose no."
2019
+ msgstr ""
2020
+ "בחירה ב-“לא” תסתיר את כותרת ברירת המחדל של התבנית בכל הפוסטים מסוג “עמוד”. "
2021
+ "כמו כן יהיה צורך ביצירת מעט CSS בסיסי כדי שזה יוצג כראוי."
2022
+
2023
+ #: includes/global-settings.php:30
2024
+ msgid "CSS Selector"
2025
+ msgstr "מזהה CSS"
2026
+
2027
+ #: includes/global-settings.php:32
2028
+ msgid "Enter a CSS selector for the default page heading to hide it."
2029
+ msgstr "הזן מזהה CSS עבור כותרת ברירת המחדל בדי להסתיר אותה."
2030
+
2031
+ #: includes/global-settings.php:37
2032
+ msgid "Rows"
2033
+ msgstr "שורות"
2034
+
2035
+ #: includes/global-settings.php:57
2036
+ msgid "Max Width"
2037
+ msgstr "רוחב מקסימאלי"
2038
+
2039
+ #: includes/global-settings.php:62
2040
+ msgid ""
2041
+ "All rows will default to this width. You can override this and make a row "
2042
+ "full width in the settings for each row."
2043
+ msgstr ""
2044
+ "כל השורות יקבלו ערך זה כברירת מחדל. ניתן לדרוס ערך זה ולהפוך שורה לרוחב מלא "
2045
+ "בהגדרות של השורה עצמה."
2046
+
2047
+ #: includes/global-settings.php:66
2048
+ msgid "Default Row Width"
2049
+ msgstr "רוחב שורה ברירת מחדל"
2050
+
2051
+ #: includes/global-settings.php:70 includes/global-settings.php:84
2052
+ #: includes/row-settings.php:20 includes/row-settings.php:38
2053
+ #: modules/button/button.php:201 modules/callout/callout.php:596
2054
+ #: modules/menu/menu.php:155
2055
+ msgid "Full Width"
2056
+ msgstr "רוחב מלא"
2057
+
2058
+ #: includes/global-settings.php:80
2059
+ msgid "Default Row Content Width"
2060
+ msgstr "ברירת המחדל לרוחב התוכן בשורה"
2061
+
2062
+ #: includes/global-settings.php:107
2063
+ msgctxt ""
2064
+ "General settings form field label. Intended meaning: \"Responsive layout "
2065
+ "enabled?\""
2066
+ msgid "Enabled"
2067
+ msgstr "מאופשר"
2068
+
2069
+ #: includes/global-settings.php:121
2070
+ msgctxt ""
2071
+ "General settings form field label. Intended meaning: \"Enable auto spacing "
2072
+ "for responsive layouts?\""
2073
+ msgid "Enable Auto Spacing"
2074
+ msgstr "אפשר מרווח אוטומטי"
2075
+
2076
+ #: includes/global-settings.php:127
2077
+ msgid ""
2078
+ "When auto spacing is enabled, the builder will automatically adjust the "
2079
+ "margins and padding in your layout once the small device breakpoint is "
2080
+ "reached. Most users will want to leave this enabled."
2081
+ msgstr ""
2082
+ "כאשר ריווח אוטומטי מאופשר, המחולל יתאים אוטומטית את המרווח והריפוד בפריסה "
2083
+ "שלך כאשר התצוגה מגיעה לנקודת השבירה של מסכים קטנים. רוב המשתמשים ירצו להשאיר "
2084
+ "את זה מופעל."
2085
+
2086
+ #: includes/global-settings.php:131
2087
+ msgid "Medium Device Breakpoint"
2088
+ msgstr "נקודת שבירה של מסכים בינוניים"
2089
+
2090
+ #: includes/global-settings.php:136
2091
+ msgid ""
2092
+ "The browser width at which the layout will adjust for medium devices such as "
2093
+ "tablets."
2094
+ msgstr "רוחב הדפדפן בו הפריסה תתאים עצמה לתצוגה במסכים בינוניים כגון טאבלטים."
2095
+
2096
+ #: includes/global-settings.php:140
2097
+ msgid "Small Device Breakpoint"
2098
+ msgstr "נקודת שבירה למסכים קטנים"
2099
+
2100
+ #: includes/global-settings.php:145
2101
+ msgid ""
2102
+ "The browser width at which the layout will adjust for small devices such as "
2103
+ "phones."
2104
+ msgstr "רוחב הדפדפן בו הפריסה תתאים עצמה לתצוגה במסכים קטנים כגון טלפונים."
2105
+
2106
+ #: includes/icon-selector.php:5
2107
+ msgctxt "Select option for showing all icon libraries."
2108
+ msgid "All Libraries"
2109
+ msgstr "כל הספריות"
2110
+
2111
+ #: includes/loop-settings.php:20
2112
+ msgid "Post Type"
2113
+ msgstr "סוג פוסט"
2114
+
2115
+ #: includes/loop-settings.php:26
2116
+ msgid "Order By"
2117
+ msgstr "סדר לפי"
2118
+
2119
+ #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:342
2120
+ #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:508
2121
+ #: modules/woocommerce/woocommerce.php:189
2122
+ msgid "Date"
2123
+ msgstr "תאריך"
2124
+
2125
+ #: includes/loop-settings.php:30
2126
+ msgid "Date Last Modified"
2127
+ msgstr "תאריך השינוי האחרון"
2128
+
2129
+ #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90
2130
+ #: modules/pricing-table/pricing-table.php:94
2131
+ msgid "Title"
2132
+ msgstr "כותרת"
2133
+
2134
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:333
2135
+ #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:499
2136
+ msgid "Author"
2137
+ msgstr "מחבר"
2138
+
2139
+ #: includes/loop-settings.php:33
2140
+ msgid "Comment Count"
2141
+ msgstr "מספר תגובות"
2142
+
2143
+ #: includes/loop-settings.php:34
2144
+ msgid "Menu Order"
2145
+ msgstr "סדר תפריט"
2146
+
2147
+ #: includes/loop-settings.php:35
2148
+ msgid "Random"
2149
+ msgstr "אקראי"
2150
+
2151
+ #: includes/loop-settings.php:42
2152
+ msgid "Order"
2153
+ msgstr "סדר"
2154
+
2155
+ #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
2156
+ msgid "Descending"
2157
+ msgstr "יורד"
2158
+
2159
+ #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
2160
+ msgid "Ascending"
2161
+ msgstr "עולה"
2162
+
2163
+ #: includes/loop-settings.php:52
2164
+ msgctxt "How many posts to skip."
2165
+ msgid "Offset"
2166
+ msgstr "דילוג"
2167
+
2168
+ #: includes/loop-settings.php:55
2169
+ msgid "Skip this many posts that match the specified criteria."
2170
+ msgstr "דלג על כמות זו של פוסטים התואמים לקריטריונים שצוינו."
2171
+
2172
+ #: includes/loop-settings.php:62
2173
+ msgid "Filter"
2174
+ msgstr "סינון"
2175
+
2176
+ #: includes/loop-settings.php:73
2177
+ #, php-format
2178
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
2179
+ msgstr "הזן רשימה מופרדת בפסיקים של %s. רק %s אלה יוצגו."
2180
+
2181
+ #: includes/loop-settings.php:86
2182
+ #, php-format
2183
+ msgid ""
2184
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
2185
+ msgstr "הזן רשימה מופרדת בפסיקים של %s. רק פוסטים עם %s אלה יוצגו."
2186
+
2187
+ #: includes/loop-settings.php:100
2188
+ msgid "Authors"
2189
+ msgstr "מחברים"
2190
+
2191
+ #: includes/loop-settings.php:101
2192
+ msgid ""
2193
+ "Enter a comma separated list of authors usernames. Only posts with these "
2194
+ "authors will be shown."
2195
+ msgstr "הזן רשימה מופרדת בפסיקים של שמות המחברים. רק פוסטים ממחברים אלה יוצגו."
2196
+
2197
+ #: includes/module-settings.php:75
2198
+ msgid "Choose whether to show or hide this module at different device sizes."
2199
+ msgstr "בחר האם להציג או להסתיר מודול זה בגדלי מסכים שונים."
2200
+
2201
+ #: includes/module-settings.php:83
2202
+ msgid "Animation"
2203
+ msgstr "אנימציה"
2204
+
2205
+ #: includes/module-settings.php:89
2206
+ msgctxt "Animation style."
2207
+ msgid "None"
2208
+ msgstr "ללא"
2209
+
2210
+ #: includes/module-settings.php:90
2211
+ msgctxt "Animation style."
2212
+ msgid "Fade In"
2213
+ msgstr "עמעום"
2214
+
2215
+ #: includes/module-settings.php:91
2216
+ msgctxt "Animation style."
2217
+ msgid "Slide Left"
2218
+ msgstr "גלישה שמאלה"
2219
+
2220
+ #: includes/module-settings.php:92
2221
+ msgctxt "Animation style."
2222
+ msgid "Slide Right"
2223
+ msgstr "גלישה ימינה"
2224
+
2225
+ #: includes/module-settings.php:93
2226
+ msgctxt "Animation style."
2227
+ msgid "Slide Up"
2228
+ msgstr "גלישה מעלה"
2229
+
2230
+ #: includes/module-settings.php:94
2231
+ msgctxt "Animation style."
2232
+ msgid "Slide Down"
2233
+ msgstr "גלישה מטה"
2234
+
2235
+ #: includes/module-settings.php:102
2236
+ #: modules/content-slider/content-slider.php:255
2237
+ #: modules/post-carousel/post-carousel.php:146
2238
+ #: modules/post-slider/post-slider.php:363
2239
+ #: modules/testimonials/testimonials.php:91
2240
+ msgid "Delay"
2241
+ msgstr "השהייה"
2242
+
2243
+ #: includes/module-settings.php:106 includes/row-settings.php:311
2244
+ #: includes/row-settings.php:342 modules/content-slider/content-slider.php:259
2245
+ #: modules/content-slider/content-slider.php:276
2246
+ #: modules/post-carousel/post-carousel.php:149
2247
+ #: modules/post-carousel/post-carousel.php:165
2248
+ #: modules/post-slider/post-slider.php:366
2249
+ #: modules/post-slider/post-slider.php:391 modules/slideshow/slideshow.php:393
2250
+ #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
2251
+ #: modules/testimonials/testimonials.php:95
2252
+ #: modules/testimonials/testimonials.php:112
2253
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2254
+ msgid "seconds"
2255
+ msgstr "שניות"
2256
+
2257
+ #: includes/module-settings.php:107
2258
+ msgid "The amount of time in seconds before this animation starts."
2259
+ msgstr "משך ההשהיה לפני תחילת האנימציה."
2260
+
2261
+ #: includes/module-settings.php:120
2262
+ msgid ""
2263
+ "A unique ID that will be applied to this module's HTML. Must start with a "
2264
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2265
+ msgstr ""
2266
+ "מזהה ייחודי שיוחל על ה-HTML של מודול זוה חייב להתחיל באות ויכול להכיל "
2267
+ "מקפים, מקפים תחתונים, אותיות או מספרים בלבד. ללא רווחים."
2268
+
2269
+ #: includes/module-settings.php:127 includes/row-settings.php:660
2270
+ msgid "Class"
2271
+ msgstr "מחלקה ‪(‬Class‪)‬"
2272
+
2273
+ #: includes/module-settings.php:128
2274
+ msgid ""
2275
+ "A class that will be applied to this module's HTML. Must start with a letter "
2276
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2277
+ "classes with spaces."
2278
+ msgstr ""
2279
+ "מחלקה ייחודית שתוחל על ה-HTML של מודול זה. חייב להתחיל באות ויכול להכיל "
2280
+ "מקפים, מקפים תחתונים, אותיות או מספרים בלבד. ללא רווחים.ךןמל"
2281
+
2282
+ #: includes/node-template-settings.php:4
2283
+ #, php-format
2284
+ msgctxt "%s stands for the type of node template being saved."
2285
+ msgid "Save %s Template"
2286
+ msgstr "שמור תבנית %s"
2287
+
2288
+ #: includes/node-template-settings.php:14
2289
+ #: includes/user-template-settings.php:15
2290
+ msgctxt "Template name."
2291
+ msgid "Name"
2292
+ msgstr "שם"
2293
+
2294
+ #: includes/node-template-settings.php:18
2295
+ msgctxt "Whether this is a global template or not."
2296
+ msgid "Global"
2297
+ msgstr "גלובלי"
2298
+
2299
+ #: includes/node-template-settings.php:19
2300
+ msgid ""
2301
+ "Global templates can be added to multiple pages and edited in one place."
2302
+ msgstr "תבניות גלובליות ניתנות להוספה לעמודים מרובים וניתנות לעריכה ממקום אחד."
2303
+
2304
+ #: includes/row-settings.php:6 includes/ui-js-config.php:69
2305
+ #: includes/ui-js-templates.php:12
2306
+ msgid "Row Settings"
2307
+ msgstr "הגדרות שורה"
2308
+
2309
+ #: includes/row-settings.php:16 modules/button/button.php:197
2310
+ #: modules/content-slider/content-slider.php:509
2311
+ msgid "Width"
2312
+ msgstr "רוחב"
2313
+
2314
+ #: includes/row-settings.php:27
2315
+ msgid ""
2316
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
2317
+ "no wider than the Row Max Width set in the Global Settings."
2318
+ msgstr ""
2319
+ "שורות ברוחב מלא, מתפרסות לרוחב הדף מן הקצה אל הקצה. שורות ברוחב קבוע לא יהיו "
2320
+ "רחבות יותר מרוחב השורה המקסימאלי שהוגדר בהגדרות הכלליות."
2321
+
2322
+ #: includes/row-settings.php:34
2323
+ msgid "Content Width"
2324
+ msgstr "רוחב תוכן"
2325
+
2326
+ #: includes/row-settings.php:40
2327
+ msgid ""
2328
+ "Full width content spans the width of the page from edge to edge. Fixed "
2329
+ "content is no wider than the Row Max Width set in the Global Settings."
2330
+ msgstr ""
2331
+ "תוכן ברוחב מלא מתפרס לרוחב הדף מן הקצה אל הקצה. תוכן ברוחב קבוע לא יהיה רחב "
2332
+ "יותר מרוחב השורה המקסימאלי שהוגדר בהגדרות הכלליות."
2333
+
2334
+ #: includes/row-settings.php:47 modules/content-slider/content-slider.php:223
2335
+ #: modules/map/map.php:41 modules/post-slider/post-slider.php:345
2336
+ #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:302
2337
+ msgid "Height"
2338
+ msgstr "גובה"
2339
+
2340
+ #: includes/row-settings.php:51
2341
+ msgid "Full Height"
2342
+ msgstr "גובה מלא"
2343
+
2344
+ #: includes/row-settings.php:53
2345
+ msgid "Full height rows fill the height of the browser window."
2346
+ msgstr "שורות בגובה מלא ממלאות את מלוא גובה חלון הדפדפן."
2347
+
2348
+ #: includes/row-settings.php:61 modules/button/button.php:120
2349
+ #: modules/cta/cta.php:188 modules/heading/heading.php:72
2350
+ #: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2351
+ #: modules/numbers/numbers.php:158 modules/post-carousel/post-carousel.php:406
2352
+ #: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:680
2353
+ msgid "Colors"
2354
+ msgstr "צבעים"
2355
+
2356
+ #: includes/row-settings.php:65 modules/button/button.php:139
2357
+ #: modules/callout/callout.php:534
2358
+ #: modules/content-slider/content-slider.php:554
2359
+ #: modules/content-slider/content-slider.php:676
2360
+ #: modules/content-slider/content-slider.php:789 modules/cta/cta.php:192
2361
+ #: modules/cta/cta.php:289 modules/heading/heading.php:77
2362
+ #: modules/numbers/numbers.php:162 modules/post-carousel/post-carousel.php:410
2363
+ #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:684
2364
+ #: modules/subscribe-form/subscribe-form.php:207
2365
+ msgid "Text Color"
2366
+ msgstr "צבע טקסט"
2367
+
2368
+ #: includes/row-settings.php:108
2369
+ msgctxt "Background type."
2370
+ msgid "Video"
2371
+ msgstr "וידאו"
2372
+
2373
+ #: includes/row-settings.php:110
2374
+ msgctxt "Background type."
2375
+ msgid "Slideshow"
2376
+ msgstr "מצגת"
2377
+
2378
+ #: includes/row-settings.php:114
2379
+ msgctxt "Background type."
2380
+ msgid "Parallax"
2381
+ msgstr "פאראלקס (Parallax)"
2382
+
2383
+ #: includes/row-settings.php:240
2384
+ msgid "Background Video"
2385
+ msgstr "רקע וידאו"
2386
+
2387
+ #: includes/row-settings.php:244
2388
+ msgid "Video (MP4)"
2389
+ msgstr "וידאו (MP4)"
2390
+
2391
+ #: includes/row-settings.php:245
2392
+ msgid ""
2393
+ "A video in the MP4 format to use as the background of this row. Most modern "
2394
+ "browsers support this format."
2395
+ msgstr ""
2396
+ "וידאו בפורמט MP4 שישמש כתמונת הרקע של שורה זו. רוב הדפדפנים המודרניים תומכים "
2397
+ "בפורמט זה."
2398
+
2399
+ #: includes/row-settings.php:252
2400
+ msgid "Video (WebM)"
2401
+ msgstr "וידאו (WebM)"
2402
+
2403
+ #: includes/row-settings.php:253
2404
+ msgid ""
2405
+ "A video in the WebM format to use as the background of this row. This format "
2406
+ "is required to support browsers such as FireFox and Opera."
2407
+ msgstr ""
2408
+ "וידאו בפורמט WebM שישמש כתמונת הרקע של שורה זו. פורמט זה נדרש בכדי לתמוך "
2409
+ "בדפדפנים כגון FireFox ו- Opera."
2410
+
2411
+ #: includes/row-settings.php:260
2412
+ msgid "Fallback Photo"
2413
+ msgstr "תמונת רקע כברירת מחדל"
2414
+
2415
+ #: includes/row-settings.php:261
2416
+ msgid "A photo that will be displayed if the video fails to load."
2417
+ msgstr "תמונת רקע להצגה במקרה בו הווידאו לא נטען בהצלחה."
2418
+
2419
+ #: includes/row-settings.php:269
2420
+ msgid "Background Slideshow"
2421
+ msgstr "רקע מצגת"
2422
+
2423
+ #: includes/row-settings.php:273 modules/gallery/gallery.php:241
2424
+ #: modules/slideshow/slideshow.php:271
2425
+ msgid "Source"
2426
+ msgstr "מקור"
2427
+
2428
+ #: includes/row-settings.php:276 modules/gallery/gallery.php:244
2429
+ #: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
2430
+ #: modules/video/video.php:86
2431
+ msgid "Media Library"
2432
+ msgstr "ספריית המדיה"
2433
+
2434
+ #: includes/row-settings.php:279 modules/gallery/gallery.php:247
2435
+ #: modules/slideshow/slideshow.php:277
2436
+ msgid ""
2437
+ "Pull images from the WordPress media library or a gallery on your SmugMug "
2438
+ "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
2439
+ "accessed by using the get a link function in your SmugMug gallery."
2440
+ msgstr ""
2441
+ "משוך תמונות מתוך ספריית המדיה של וורדפרס או מגלריה באתר SmugMug שלך על-ידי "
2442
+ "הוספת כתובת ה-URL של פיד ה-RSS מ- SmugMug. תוכל לקבל את כתובת ה-URL של פיד ה-"
2443
+ "RSS על ידי פונקציית “קבל קישור” בגלריית ה-SmugMug שלך."
2444
+
2445
+ #: includes/row-settings.php:294 modules/gallery/gallery.php:259
2446
+ #: modules/slideshow/slideshow.php:289
2447
+ msgid "Photos"
2448
+ msgstr "תמונות"
2449
+
2450
+ #: includes/row-settings.php:301 modules/gallery/gallery.php:263
2451
+ #: modules/slideshow/slideshow.php:293
2452
+ msgid "Feed URL"
2453
+ msgstr "‏URL של הפיד"
2454
+
2455
+ #: includes/row-settings.php:308 includes/row-settings.php:373
2456
+ #: modules/slideshow/slideshow.php:390
2457
+ msgid "Speed"
2458
+ msgstr "מהירות"
2459
+
2460
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:263
2461
+ #: modules/post-slider/post-slider.php:370 modules/slideshow/slideshow.php:397
2462
+ #: modules/testimonials/testimonials.php:99
2463
+ msgid "Transition"
2464
+ msgstr "מעבר"
2465
+
2466
+ #: includes/row-settings.php:321
2467
+ msgctxt "Slideshow transition type."
2468
+ msgid "None"
2469
+ msgstr "ללא"
2470
+
2471
+ #: includes/row-settings.php:322 modules/content-slider/content-slider.php:267
2472
+ #: modules/post-carousel/post-carousel.php:242
2473
+ #: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:373
2474
+ #: modules/slideshow/slideshow.php:401
2475
+ #: modules/testimonials/testimonials.php:103
2476
+ msgid "Fade"
2477
+ msgstr "עמעום"
2478
+
2479
+ #: includes/row-settings.php:323 modules/slideshow/slideshow.php:402
2480
+ msgid "Ken Burns"
2481
+ msgstr "קן ברנס"
2482
+
2483
+ #: includes/row-settings.php:324 modules/slideshow/slideshow.php:403
2484
+ msgid "Slide Horizontal"
2485
+ msgstr "גלישה אופקית"
2486
+
2487
+ #: includes/row-settings.php:325 modules/slideshow/slideshow.php:404
2488
+ msgid "Slide Vertical"
2489
+ msgstr "גלישה אנכית"
2490
+
2491
+ #: includes/row-settings.php:326 modules/slideshow/slideshow.php:405
2492
+ msgid "Blinds"
2493
+ msgstr "תריסים"
2494
+
2495
+ #: includes/row-settings.php:327 modules/slideshow/slideshow.php:406
2496
+ msgid "Bars"
2497
+ msgstr "רצועות"
2498
+
2499
+ #: includes/row-settings.php:328 modules/slideshow/slideshow.php:407
2500
+ msgid "Random Bars"
2501
+ msgstr "רצועות אקראיות"
2502
+
2503
+ #: includes/row-settings.php:329 modules/slideshow/slideshow.php:408
2504
+ msgid "Boxes"
2505
+ msgstr "קוביות"
2506
+
2507
+ #: includes/row-settings.php:330 modules/slideshow/slideshow.php:409
2508
+ msgid "Random Boxes"
2509
+ msgstr "קוביות אקראיות"
2510
+
2511
+ #: includes/row-settings.php:331 modules/slideshow/slideshow.php:410
2512
+ msgid "Boxes Grow"
2513
+ msgstr "קוביות גדלות"
2514
+
2515
+ #: includes/row-settings.php:339 modules/content-slider/content-slider.php:272
2516
+ #: modules/post-carousel/post-carousel.php:162
2517
+ #: modules/post-slider/post-slider.php:388 modules/slideshow/slideshow.php:415
2518
+ #: modules/testimonials/testimonials.php:108
2519
+ msgid "Transition Speed"
2520
+ msgstr "מהירות מעבר"
2521
+
2522
+ #: includes/row-settings.php:349 modules/slideshow/slideshow.php:422
2523
+ msgid "Randomize Photos"
2524
+ msgstr "סדר תמונות אקראי"
2525
+
2526
+ #: includes/row-settings.php:362
2527
+ msgid "Background Parallax"
2528
+ msgstr "רקע פאראלקס ‪(‬Parallax‪)‬"
2529
+
2530
+ #: includes/row-settings.php:376
2531
+ msgid "Fast"
2532
+ msgstr "מהיר"
2533
+
2534
+ #: includes/row-settings.php:377
2535
+ msgctxt "Speed."
2536
+ msgid "Medium"
2537
+ msgstr "בינוני"
2538
+
2539
+ #: includes/row-settings.php:378
2540
+ msgid "Slow"
2541
+ msgstr "איטי"
2542
+
2543
+ #: includes/row-settings.php:640
2544
+ msgid "Choose whether to show or hide this row at different device sizes."
2545
+ msgstr "בחר האם להציג או להסתיר שורה זו בגדלי מסכים שונים."
2546
+
2547
+ #: includes/row-settings.php:653
2548
+ msgid ""
2549
+ "A unique ID that will be applied to this row's HTML. Must start with a "
2550
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2551
+ msgstr ""
2552
+ "מזהה ייחודי שיוחל על ה-HTML של שורה זו. חייב להתחיל באות ויכול להכיל מקפים, "
2553
+ "מקפים תחתונים, אותיות או מספרים בלבד. ללא רווחים."
2554
+
2555
+ #: includes/row-settings.php:661
2556
+ msgid ""
2557
+ "A class that will be applied to this row's HTML. Must start with a letter "
2558
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2559
+ "classes with spaces."
2560
+ msgstr ""
2561
+ "מחלקה שתוחל על ה-HTML של שורה זו. חייב להתחיל באות ויכול להכיל מקפים, מקפים "
2562
+ "תחתונים, אותיות או מספרים בלבד. הפרד מחלקות מרובות באמצעות רווחים."
2563
+
2564
+ #: includes/service-settings.php:32
2565
+ msgid "Service"
2566
+ msgstr "שירות"
2567
+
2568
+ #: includes/settings.php:67
2569
+ msgid "Save"
2570
+ msgstr "שמור"
2571
+
2572
+ #: includes/settings.php:69
2573
+ msgid "Save As..."
2574
+ msgstr "שמור בשם…"
2575
+
2576
+ #: includes/template-selector.php:4
2577
+ msgid "Layout Templates"
2578
+ msgstr "תבניות פריסה"
2579
+
2580
+ #: includes/template-selector.php:17
2581
+ msgid "Your Templates"
2582
+ msgstr "התבניות שלך"
2583
+
2584
+ #: includes/template-selector.php:53
2585
+ msgid ""
2586
+ "You haven't saved any templates yet! To do so, create a layout and save it "
2587
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
2588
+ msgstr ""
2589
+ "עדיין לא שמרת תבניות! כדי לעשות זאת, צור פריסה ושמור אותה כתבנית תחת "
2590
+ "<strong>כלים ← שמור תבנית</strong>."
2591
+
2592
+ #: includes/template-selector.php:58
2593
+ msgctxt "Template name."
2594
+ msgid "Blank"
2595
+ msgstr "ריק"
2596
+
2597
+ #: includes/template-selector.php:71
2598
+ msgid "Delete"
2599
+ msgstr "מחק"
2600
+
2601
+ #: includes/ui-js-config.php:22
2602
+ msgid "What would you like to do?"
2603
+ msgstr "מה תרצה לעשות?"
2604
+
2605
+ #: includes/ui-js-config.php:24
2606
+ msgid "Change Template"
2607
+ msgstr "שנה תבנית"
2608
+
2609
+ #: includes/ui-js-config.php:25
2610
+ msgid ""
2611
+ "Warning! Changing the template will replace your existing layout. Do you "
2612
+ "really want to do this?"
2613
+ msgstr ""
2614
+ "אזהרה! שינוי התבנית יחליף את הפריסה הקיימת שלך. אתה באמת רוצה לעשות את זה?"
2615
+
2616
+ #: includes/ui-js-config.php:26
2617
+ msgid "Column"
2618
+ msgstr "עמודה"
2619
+
2620
+ #: includes/ui-js-config.php:27
2621
+ msgid ""
2622
+ "Please select either a background layout or content layout before submitting."
2623
+ msgstr "אנא בחר פריסת רקע או פריסת תוכן לפני האישור."
2624
+
2625
+ #: includes/ui-js-config.php:28
2626
+ msgid "Remove Account"
2627
+ msgstr "הסר חשבון"
2628
+
2629
+ #: includes/ui-js-config.php:29
2630
+ msgid ""
2631
+ "Are you sure you want to remove this account? Other modules that are "
2632
+ "connected to it will be affected."
2633
+ msgstr ""
2634
+ "האם אתה בטוח שברצונך להסיר את החשבון הזה? מודולים אחרים המחוברים לחשבון זה "
2635
+ "יושפעו."
2636
+
2637
+ #: includes/ui-js-config.php:30
2638
+ msgid "Do you really want to delete this column?"
2639
+ msgstr "אתה באמת רוצה למחוק עמודה זו?"
2640
+
2641
+ #: includes/ui-js-config.php:31
2642
+ msgid "Do you really want to delete this item?"
2643
+ msgstr "אתה באמת רוצה למחוק פריט זה?"
2644
+
2645
+ #: includes/ui-js-config.php:32
2646
+ msgid "Do you really want to delete this module?"
2647
+ msgstr "אתה באמת רוצה למחוק מודול זה?"
2648
+
2649
+ #: includes/ui-js-config.php:33
2650
+ msgid "Do you really want to delete this row?"
2651
+ msgstr "אתה באמת רוצה למחוק שורה זו?"
2652
+
2653
+ #: includes/ui-js-config.php:34
2654
+ msgid "Do you really want to delete this template?"
2655
+ msgstr "אתה באמת רוצה למחוק תבנית זו?"
2656
+
2657
+ #: includes/ui-js-config.php:35
2658
+ msgid ""
2659
+ "WARNING! You are about to delete a global template that may be linked to "
2660
+ "other pages. Do you really want to delete this template and unlink it?"
2661
+ msgstr ""
2662
+ "אזהרה! אתה עומד למחוק את תבנית גלובלית שעשויה להיות מקושרת לדפים אחרים. האם "
2663
+ "באמת ברצונך למחוק תבנית זו ולהסיר קישורים אליה?"
2664
+
2665
+ #: includes/ui-js-config.php:36
2666
+ msgid "Discard Changes"
2667
+ msgstr "בטל שינויים"
2668
+
2669
+ #: includes/ui-js-config.php:37
2670
+ msgid ""
2671
+ "Do you really want to discard these changes? All of your changes that are "
2672
+ "not published will be lost."
2673
+ msgstr "אתה באמת רוצה לבטל את השינויים הללו? כל השינויים שלא פורסמו יאבדו."
2674
+
2675
+ #: includes/ui-js-config.php:39
2676
+ msgid "Save Draft"
2677
+ msgstr "שמור טיוטה"
2678
+
2679
+ #: includes/ui-js-config.php:40 includes/ui-js-templates.php:14
2680
+ #: includes/ui-js-templates.php:84
2681
+ msgid "Duplicate"
2682
+ msgstr "שכפל"
2683
+
2684
+ #: includes/ui-js-config.php:41
2685
+ msgid "Duplicate This Page"
2686
+ msgstr "שכפל עמוד זה"
2687
+
2688
+ #: includes/ui-js-config.php:42
2689
+ msgid "Duplicate This Template"
2690
+ msgstr "שכפל תבנית זו"
2691
+
2692
+ #: includes/ui-js-config.php:43
2693
+ msgid "Edit Global Settings"
2694
+ msgstr "ערוך הגדרות כלליות"
2695
+
2696
+ #: includes/ui-js-config.php:44
2697
+ msgid "Drop a row layout or module to get started!"
2698
+ msgstr "הוסף פריסת שורה או מודול כדי להתחיל!"
2699
+
2700
+ #: includes/ui-js-config.php:45
2701
+ msgid ""
2702
+ "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
2703
+ "not functioning as expected the cause is most likely this error. Please help "
2704
+ "us by disabling all plugins and testing Beaver Builder while reactivating "
2705
+ "each to determine if the issue is related to a third party plugin."
2706
+ msgstr ""
2707
+ "מחולל העמודים תפס שגיאת JavaScript הבאה. אם מחולל העמודים אינו מתפקד כצפוי "
2708
+ "הגורם הוא ככל הנראה שגיאה זו. אנא עזרו לנו על ידי השבתת כל התוספים ובדיקת "
2709
+ "מחולל העמודים בעת הפעלה מחדש של כל אחד מהתוספים בכדי לקבוע אם הבעיה קשורה "
2710
+ "לתוסף צד שלישי."
2711
+
2712
+ #: includes/ui-js-config.php:46
2713
+ msgid "Full Size"
2714
+ msgstr "גודל מלא"
2715
+
2716
+ #: includes/ui-js-config.php:47
2717
+ msgid "Get Help"
2718
+ msgstr "קבל עזרה"
2719
+
2720
+ #: includes/ui-js-config.php:48
2721
+ msgid "\"{message}\" on line {line} of {file}."
2722
+ msgstr "‏“{message}” בשורה {line} של {file}."
2723
+
2724
+ #: includes/ui-js-config.php:49
2725
+ msgid "Insert"
2726
+ msgstr "הוסף"
2727
+
2728
+ #: includes/ui-js-config.php:50
2729
+ msgid "Large"
2730
+ msgstr "גדול"
2731
+
2732
+ #: includes/ui-js-config.php:51
2733
+ msgid "Manage Templates"
2734
+ msgstr "נהל תבניות"
2735
+
2736
+ #: includes/ui-js-config.php:52
2737
+ msgid "Medium"
2738
+ msgstr "בינוני"
2739
+
2740
+ #: includes/ui-js-config.php:53
2741
+ msgid "Module"
2742
+ msgstr "מודול"
2743
+
2744
+ #: includes/ui-js-config.php:54
2745
+ msgid "Module Template Saved!"
2746
+ msgstr "תבנית מודל נשמרה!"
2747
+
2748
+ #: includes/ui-js-config.php:55 includes/ui-js-templates.php:10
2749
+ #: includes/ui-js-templates.php:80
2750
+ msgid "Move"
2751
+ msgstr "העבר"
2752
+
2753
+ #: includes/ui-js-config.php:56
2754
+ msgid "New Column"
2755
+ msgstr "עמודה חדשה"
2756
+
2757
+ #: includes/ui-js-config.php:57
2758
+ msgid "New Row"
2759
+ msgstr "שורה חדשה"
2760
+
2761
+ #: includes/ui-js-config.php:58
2762
+ msgid "No results found."
2763
+ msgstr "לא נמצאו תוצאות."
2764
+
2765
+ #: includes/ui-js-config.php:59 includes/ui-panel-node-templates.php:11
2766
+ msgid "No saved rows found."
2767
+ msgstr "לא נמצאו שורות שמורות."
2768
+
2769
+ #: includes/ui-js-config.php:60 includes/ui-panel-node-templates.php:42
2770
+ msgid "No saved modules found."
2771
+ msgstr "לא נמצאו מודולים שמורים."
2772
+
2773
+ #: includes/ui-js-config.php:61 includes/ui-js-templates.php:143
2774
+ msgid "OK"
2775
+ msgstr "אשר"
2776
+
2777
+ #: includes/ui-js-config.php:62 modules/photo/photo.php:470
2778
+ msgid "Photo Page"
2779
+ msgstr "עמוד עם התמונה"
2780
+
2781
+ #: includes/ui-js-config.php:63
2782
+ msgid "Photo Selected"
2783
+ msgstr "תמונה נבחרה"
2784
+
2785
+ #: includes/ui-js-config.php:64
2786
+ msgid "Photos Selected"
2787
+ msgstr "תמונות נבחרו"
2788
+
2789
+ #: includes/ui-js-config.php:65 modules/subscribe-form/includes/frontend.php:15
2790
+ msgid "Please Wait..."
2791
+ msgstr "אנא המתן…"
2792
+
2793
+ #: includes/ui-js-config.php:66
2794
+ msgid "Publish Changes"
2795
+ msgstr "פרסם שינויים"
2796
+
2797
+ #: includes/ui-js-config.php:68 includes/ui-js-templates.php:5
2798
+ msgid "Row"
2799
+ msgstr "שורה"
2800
+
2801
+ #: includes/ui-js-config.php:70
2802
+ msgid "Row Template Saved!"
2803
+ msgstr "תבנית שורה נשמרה!"
2804
+
2805
+ #: includes/ui-js-config.php:71
2806
+ msgid "Save Core Template"
2807
+ msgstr "שמור תבנית ליבה"
2808
+
2809
+ #: includes/ui-js-config.php:72 includes/user-template-settings.php:4
2810
+ msgid "Save Template"
2811
+ msgstr "שמור תבנית"
2812
+
2813
+ #: includes/ui-js-config.php:74
2814
+ msgid "Select Photos"
2815
+ msgstr "בחר תמונות"
2816
+
2817
+ #: includes/ui-js-config.php:76
2818
+ msgid "Please select an account before saving."
2819
+ msgstr "אנא בחר חשבון לפני השמירה."
2820
+
2821
+ #: includes/ui-js-config.php:77
2822
+ msgid "Please connect an account before saving."
2823
+ msgstr "אנא התחבר לחשבון לפני השמירה."
2824
+
2825
+ #: includes/ui-js-config.php:78
2826
+ msgid "Please select a list before saving."
2827
+ msgstr "אנא בחר רשימה לפני השמירה."
2828
+
2829
+ #: includes/ui-js-config.php:79
2830
+ msgid "Take a Tour"
2831
+ msgstr "בצע סיור"
2832
+
2833
+ #: includes/ui-js-config.php:80
2834
+ msgid "Append New Layout"
2835
+ msgstr "הוסף לפריסה הקיימת"
2836
+
2837
+ #: includes/ui-js-config.php:81
2838
+ msgid "Replace Existing Layout"
2839
+ msgstr "החלף פריסה קיימת"
2840
+
2841
+ #: includes/ui-js-config.php:82
2842
+ msgid "Template Saved!"
2843
+ msgstr "תבנית נשמרה!"
2844
+
2845
+ #: includes/ui-js-config.php:83 modules/post-slider/post-slider.php:464
2846
+ msgid "Thumbnail"
2847
+ msgstr "תמונה ממוזערת (Thumbnail)"
2848
+
2849
+ #: includes/ui-js-config.php:84
2850
+ msgid "Next"
2851
+ msgstr "הבא"
2852
+
2853
+ #: includes/ui-js-config.php:85
2854
+ msgid "Get Started"
2855
+ msgstr "התחל"
2856
+
2857
+ #: includes/ui-js-config.php:86
2858
+ msgid "Choose a Template"
2859
+ msgstr "בחר תבנית"
2860
+
2861
+ #: includes/ui-js-config.php:87
2862
+ msgid ""
2863
+ "Get started by choosing a layout template to customize, or build a page from "
2864
+ "scratch by selecting the blank layout template."
2865
+ msgstr ""
2866
+ "התחל על-ידי בחירת תבנית פריסה להתאמה אישית, או בנה עמוד מאפס על ידי בחירת "
2867
+ "התבנית הריקה."
2868
+
2869
+ #: includes/ui-js-config.php:88
2870
+ msgid "Add Rows"
2871
+ msgstr "הוסף שורות"
2872
+
2873
+ #: includes/ui-js-config.php:89
2874
+ msgid ""
2875
+ "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
2876
+ "and dropping row layouts onto the page."
2877
+ msgstr ""
2878
+ "הוסף שורות מרובות עמודות, התאם ריווח, הוסף רקעים ועוד על ידי גרירה ושחרור "
2879
+ "פריסות שורה רצויות לעמוד."
2880
+
2881
+ #: includes/ui-js-config.php:91
2882
+ msgid ""
2883
+ "Add new content by dragging and dropping modules or widgets into your row "
2884
+ "layouts or to create a new row layout."
2885
+ msgstr ""
2886
+ "הוסף תוכן חדש על-ידי גרירה ושחרור של מודולים או ווידג’טים לתוך פריסות שורה, "
2887
+ "או כדי ליצור פריסה בשורה חדשה."
2888
+
2889
+ #: includes/ui-js-config.php:92
2890
+ msgid "Edit Content"
2891
+ msgstr "ערוך תוכן"
2892
+
2893
+ #: includes/ui-js-config.php:93
2894
+ msgid ""
2895
+ "Move your mouse over rows, columns or modules to edit and interact with them."
2896
+ msgstr ""
2897
+ "הזז את העכבר מעל שורות, עמודות או מודולים בכדי לערוך ולקיים אינטראקציה עם "
2898
+ "אותם הרכיבים."
2899
+
2900
+ #: includes/ui-js-config.php:94
2901
+ msgid ""
2902
+ "Use the action buttons to perform actions such as moving, editing, "
2903
+ "duplicating or deleting rows, columns and modules."
2904
+ msgstr ""
2905
+ "השתמש בכפתורי הפעולה כדי לבצע פעולות כגון העברה, עריכה, שכפול או מחיקה של "
2906
+ "שורות, עמודות ומודולים."
2907
+
2908
+ #: includes/ui-js-config.php:95
2909
+ msgid "Add More Content"
2910
+ msgstr "הוסף עוד תוכן"
2911
+
2912
+ #: includes/ui-js-config.php:96
2913
+ msgid ""
2914
+ "Use the Add Content button to open the content panel and add new row "
2915
+ "layouts, modules or widgets."
2916
+ msgstr ""
2917
+ "השתמש בכפתור הוסף תוכן כדי לפתוח את פאנל התוכן ולהוסיף פריסות שורה חדשה, "
2918
+ "מודולים או ווידג’טים."
2919
+
2920
+ #: includes/ui-js-config.php:97
2921
+ msgid "Change Templates"
2922
+ msgstr "שנה תבניות"
2923
+
2924
+ #: includes/ui-js-config.php:98
2925
+ msgid ""
2926
+ "Use the Templates button to pick a new template or append one to your "
2927
+ "layout. Appending will insert a new template at the end of your existing "
2928
+ "page content."
2929
+ msgstr ""
2930
+ "השתמש בכפתור תבניות כדי לבחור תבנית חדשה או לצרף אחת לפריסת העמוד. צירוף "
2931
+ "יוסיף תבנית חדשה בסוף עמוד התוכן הקיים."
2932
+
2933
+ #: includes/ui-js-config.php:99
2934
+ msgid "Helpful Tools"
2935
+ msgstr "כלים שימושיים"
2936
+
2937
+ #: includes/ui-js-config.php:100
2938
+ msgid ""
2939
+ "The Tools button lets you duplicate a page, save a template or edit the "
2940
+ "global settings."
2941
+ msgstr "כפתור כלים מאפשר לשכפל עמוד, לשמור תבנית או לערוך את ההגדרות הכלליות."
2942
+
2943
+ #: includes/ui-js-config.php:101
2944
+ msgid "Publish Your Changes"
2945
+ msgstr "שמור ופרסם שינויים"
2946
+
2947
+ #: includes/ui-js-config.php:102
2948
+ msgid ""
2949
+ "Once you're finished, click the Done button to publish your changes, save a "
2950
+ "draft or revert back to the last published state."
2951
+ msgstr ""
2952
+ "לאחר שתסיים, לחץ על כפתור סיים כדי לשמור ולפרסם את השינויים שלך, לשמור טיוטה "
2953
+ "או לשחזר את הגרסא האחרונה שפורסמה."
2954
+
2955
+ #: includes/ui-js-config.php:103
2956
+ msgid "Let's Get Building!"
2957
+ msgstr "בוא נתחיל לבנות!"
2958
+
2959
+ #: includes/ui-js-config.php:104
2960
+ msgid ""
2961
+ "Now that you know the basics, you're ready to start building! If at any time "
2962
+ "you need help, click the help icon in the upper right corner to access the "
2963
+ "help menu. Happy building!"
2964
+ msgstr ""
2965
+ "עכשיו שאתה יודע את הבסיס, אתה מוכן להתחיל לבנות! אם בכל עת תצטרך עזרה, לחץ "
2966
+ "על אייקון העזרה בפינה הימנית העליונה בכדי לגשת לתפריט העזרה. בניה מהנה!"
2967
+
2968
+ #: includes/ui-js-config.php:105
2969
+ msgid ""
2970
+ "The settings you are currently editing will not be saved if you navigate "
2971
+ "away from this page."
2972
+ msgstr "ההגדרות שאתה עורך כרגע לא יישמרו אם תנווט מחוץ לדף זה."
2973
+
2974
+ #: includes/ui-js-config.php:106
2975
+ msgid "View the Knowledge Base"
2976
+ msgstr "הצג את מאגר המידע"
2977
+
2978
+ #: includes/ui-js-config.php:107
2979
+ msgid "Visit the Forums"
2980
+ msgstr "בקר בפורומים"
2981
+
2982
+ #: includes/ui-js-config.php:108
2983
+ msgid "Watch the Video"
2984
+ msgstr "צפה בוידאו"
2985
+
2986
+ #: includes/ui-js-config.php:109 includes/ui-js-templates.php:150
2987
+ msgid ""
2988
+ "Welcome! It looks like this might be your first time using the builder. "
2989
+ "Would you like to take a tour?"
2990
+ msgstr ""
2991
+ "ברוכים הבאים! נראה כי ייתכן וזו הפעם הראשונה שאתה משתמש במחולל העמודים. תרצה "
2992
+ "לקבל סיור?"
2993
+
2994
+ #: includes/ui-js-config.php:110 includes/ui-js-templates.php:152
2995
+ msgid "Yes Please!"
2996
+ msgstr "כן בבקשה!"
2997
+
2998
+ #: includes/ui-js-config.php:111
2999
+ msgid "Color Presets"
3000
+ msgstr "מוגדרים מראש"
3001
+
3002
+ #: includes/ui-js-config.php:112
3003
+ msgid "Color Picker"
3004
+ msgstr "דוגם צבע"
3005
+
3006
+ #: includes/ui-js-config.php:113
3007
+ msgid "Paste color here..."
3008
+ msgstr "הדבק צבע כאן…"
3009
+
3010
+ #: includes/ui-js-config.php:114
3011
+ msgid "Are you sure?"
3012
+ msgstr "האם אתה בטוח?"
3013
+
3014
+ #: includes/ui-js-config.php:115
3015
+ msgid "Please enter a color first."
3016
+ msgstr "אנא הזן צבע קודם."
3017
+
3018
+ #: includes/ui-js-config.php:116
3019
+ msgid " is already a saved preset."
3020
+ msgstr " הוא כבר צבע שנשמר."
3021
+
3022
+ #: includes/ui-js-config.php:117
3023
+ msgid "Add a color preset first."
3024
+ msgstr "קודם הוסף צבע קבוע מראש."
3025
+
3026
+ #: includes/ui-js-config.php:118
3027
+ msgid " added to presets!"
3028
+ msgstr " הוסף לצבעים הקבועים מראש!"
3029
+
3030
+ #: includes/ui-js-templates.php:7 includes/ui-js-templates.php:77
3031
+ msgid "Locked"
3032
+ msgstr "נעול"
3033
+
3034
+ #: includes/ui-js-templates.php:31 includes/ui-js-templates.php:86
3035
+ msgid "Edit Column"
3036
+ msgstr "ערוך עמודה"
3037
+
3038
+ #: includes/ui-js-templates.php:35 includes/ui-js-templates.php:91
3039
+ msgid "Insert Column Before"
3040
+ msgstr "הוסף עמודה לפני"
3041
+
3042
+ #: includes/ui-js-templates.php:36 includes/ui-js-templates.php:92
3043
+ msgid "Insert Column After"
3044
+ msgstr "הוסף עמודה אחרי"
3045
+
3046
+ #: includes/ui-js-templates.php:39 includes/ui-js-templates.php:95
3047
+ msgid "Reset Column Widths"
3048
+ msgstr "אפס רוחב עמודות"
3049
+
3050
+ #: includes/ui-js-templates.php:82
3051
+ msgid "Settings"
3052
+ msgstr "הגדרות"
3053
+
3054
+ #: includes/ui-js-templates.php:89
3055
+ msgid "Delete Column"
3056
+ msgstr "מחק עמודה"
3057
+
3058
+ #: includes/ui-js-templates.php:151
3059
+ msgid "No Thanks"
3060
+ msgstr "לא תודה."
3061
+
3062
+ #: includes/ui-js-templates.php:159
3063
+ msgid "Getting Started Video"
3064
+ msgstr "וידאו הדרכה ראשונית"
3065
+
3066
+ #: includes/ui-panel-node-templates.php:6
3067
+ msgid "Saved Rows"
3068
+ msgstr "שורות שנשמרו"
3069
+
3070
+ #: includes/ui-panel-node-templates.php:37
3071
+ msgid "Saved Modules"
3072
+ msgstr "מודולים שנשמרו"
3073
+
3074
+ #: includes/ui-panel.php:11
3075
+ msgid "Row Layouts"
3076
+ msgstr "פריסות שורה"
3077
+
3078
+ #: includes/ui-panel.php:15
3079
+ msgid "1 Column"
3080
+ msgstr "עמודה 1"
3081
+
3082
+ #: includes/ui-panel.php:16
3083
+ msgid "2 Columns"
3084
+ msgstr "2 עמודות"
3085
+
3086
+ #: includes/ui-panel.php:17
3087
+ msgid "3 Columns"
3088
+ msgstr "3 עמודות"
3089
+
3090
+ #: includes/ui-panel.php:18
3091
+ msgid "4 Columns"
3092
+ msgstr "4 עמודות"
3093
+
3094
+ #: includes/ui-panel.php:19
3095
+ msgid "5 Columns"
3096
+ msgstr "5 עמודות"
3097
+
3098
+ #: includes/ui-panel.php:20
3099
+ msgid "6 Columns"
3100
+ msgstr "6 עמודות"
3101
+
3102
+ #: includes/ui-panel.php:21
3103
+ msgid "Left Sidebar"
3104
+ msgstr "סרגל צד משמאל"
3105
+
3106
+ #: includes/ui-panel.php:22
3107
+ msgid "Right Sidebar"
3108
+ msgstr "סרגל צד מימין"
3109
+
3110
+ #: includes/ui-panel.php:23
3111
+ msgid "Left &amp; Right Sidebar"
3112
+ msgstr "סרגל צד מימין ומשמאל"
3113
+
3114
+ #: includes/updater/classes/class-fl-updater.php:132
3115
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3116
+ msgstr "<strong>עדכון לא זמין!</strong>"
3117
+
3118
+ #: includes/updater/classes/class-fl-updater.php:134
3119
+ msgid "Please subscribe to enable automatic updates for this plugin."
3120
+ msgstr "אנא הירשם כדי להפעיל עדכונים אוטומטיים עבור תוסף זה."
3121
+
3122
+ #: includes/updater/classes/class-fl-updater.php:136
3123
+ #: includes/updater/includes/form.php:6
3124
+ msgid "Subscribe Now"
3125
+ msgstr "הרשם עכשיו"
3126
+
3127
+ #: includes/updater/includes/form.php:5
3128
+ msgid ""
3129
+ "UPDATES UNAVAILABLE! Please subscribe or enter your license key below to "
3130
+ "enable automatic updates."
3131
+ msgstr ""
3132
+ "עדכונים אינם זמינים! אנא הרשם או הזן את קוד הרשיון שלך להלן בכדי לאפשר "
3133
+ "עדכונים אוטומטיים."
3134
+
3135
+ #: includes/updater/includes/form.php:11
3136
+ msgid "Updates &amp; Support Subscription"
3137
+ msgstr "מנוי עדכונים ותמיכה"
3138
+
3139
+ #: includes/updater/includes/form.php:14
3140
+ msgid "Active!"
3141
+ msgstr "פעיל!"
3142
+
3143
+ #: includes/updater/includes/form.php:16
3144
+ msgid "Not Active!"
3145
+ msgstr "לא פעיל!"
3146
+
3147
+ #: includes/updater/includes/form.php:22
3148
+ msgid "Email address saved!"
3149
+ msgstr "כתובת האימייל נשמרה!"
3150
+
3151
+ #: includes/updater/includes/form.php:27
3152
+ #, php-format
3153
+ msgid "Enter your <a%s>license key</a> to enable remote updates and support."
3154
+ msgstr "הזן את <a%s>קוד הרשיון</a> שלך כדי לאפשר תמיכה ועידכונים אוטומטיים."
3155
+
3156
+ #: includes/updater/includes/form.php:39
3157
+ msgid "Save Subscription Settings"
3158
+ msgstr "שמור הגדרות מנוי"
3159
+
3160
+ #: includes/user-template-settings.php:8
3161
+ msgid ""
3162
+ "Save the current layout as a template that can be reused under "
3163
+ "<strong>Templates &rarr; Your Templates</strong>."
3164
+ msgstr ""
3165
+ "שמור את הפריסה הנוכחית כתבנית הניתנת לשימוש חוזר תחת <strong>תבניות ← "
3166
+ "התבניות שלך</strong>."
3167
+
3168
+ #: modules/accordion/accordion.php:14 modules/menu/menu.php:95
3169
+ msgid "Accordion"
3170
+ msgstr "אקורדיון"
3171
+
3172
+ #: modules/accordion/accordion.php:15
3173
+ msgid "Display a collapsible accordion of items."
3174
+ msgstr "תצוגת אקורדיון של פריטים."
3175
+
3176
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
3177
+ msgid "Items"
3178
+ msgstr "פריטים"
3179
+
3180
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
3181
+ msgid "Item"
3182
+ msgstr "פריט"
3183
+
3184
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
3185
+ msgid "Border Color"
3186
+ msgstr "צבע מסגרת"
3187
+
3188
+ #: modules/accordion/accordion.php:62
3189
+ msgid "Label Size"
3190
+ msgstr "גודל תווית"
3191
+
3192
+ #: modules/accordion/accordion.php:65
3193
+ msgctxt "Label size."
3194
+ msgid "Small"
3195
+ msgstr "קטן"
3196
+
3197
+ #: modules/accordion/accordion.php:66
3198
+ msgctxt "Label size."
3199
+ msgid "Medium"
3200
+ msgstr "בינוני"
3201
+
3202
+ #: modules/accordion/accordion.php:67
3203
+ msgctxt "Label size."
3204
+ msgid "Large"
3205
+ msgstr "גדול"
3206
+
3207
+ #: modules/accordion/accordion.php:75
3208
+ msgid "Item Spacing"
3209
+ msgstr "ריווח פריטים"
3210
+
3211
+ #: modules/accordion/accordion.php:86
3212
+ msgid "Collapse Inactive"
3213
+ msgstr "כיווץ לא פעילים"
3214
+
3215
+ #: modules/accordion/accordion.php:92
3216
+ msgid ""
3217
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
3218
+ "multiple items to be open at the same time."
3219
+ msgstr ""
3220
+ "בחירה ב-“כן” ישאיר פריט אחד בלבד פתוח בכל פעם. בחירה ב-“לא” יאפשר לפריטים "
3221
+ "מרובים להיות פתוחים בו-זמנית."
3222
+
3223
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
3224
+ msgid "Add Item"
3225
+ msgstr "הוסף פריט"
3226
+
3227
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
3228
+ msgid "Label"
3229
+ msgstr "תווית"
3230
+
3231
+ #: modules/accordion/accordion.php:122
3232
+ #: modules/post-carousel/post-carousel.php:373
3233
+ #: modules/post-carousel/post-carousel.php:377
3234
+ #: modules/post-carousel/post-carousel.php:449
3235
+ #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
3236
+ #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:548
3237
+ #: modules/post-slider/post-slider.php:552
3238
+ #: modules/post-slider/post-slider.php:759 modules/tabs/tabs.php:89
3239
+ msgid "Content"
3240
+ msgstr "תוכן"
3241
+
3242
+ #: modules/button/button.php:14 modules/callout/callout.php:480
3243
+ #: modules/content-slider/content-slider.php:627 modules/cta/cta.php:215
3244
+ #: modules/pricing-table/pricing-table.php:129
3245
+ #: modules/subscribe-form/subscribe-form.php:161
3246
+ msgid "Button"
3247
+ msgstr "כפתור"
3248
+
3249
+ #: modules/button/button.php:15
3250
+ msgid "A simple call to action button."
3251
+ msgstr "כפתור קריאה לפעולה פשוט."
3252
+
3253
+ #: modules/button/button.php:67 modules/cta/cta.php:223
3254
+ msgid "Click Here"
3255
+ msgstr "לחץ כאן"
3256
+
3257
+ #: modules/button/button.php:75 modules/callout/callout.php:318
3258
+ #: modules/callout/callout.php:366 modules/callout/callout.php:370
3259
+ #: modules/cta/cta.php:231 modules/icon-group/icon-group.php:34
3260
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
3261
+ #: modules/icon/icon.php:34
3262
+ msgid "Icon"
3263
+ msgstr "אייקון"
3264
+
3265
+ #: modules/button/button.php:80 modules/cta/cta.php:236
3266
+ #: modules/subscribe-form/subscribe-form.php:178
3267
+ msgid "Icon Position"
3268
+ msgstr "מיקום האייקון"
3269
+
3270
+ #: modules/button/button.php:83 modules/callout/callout.php:508
3271
+ #: modules/content-slider/content-slider.php:654 modules/cta/cta.php:239
3272
+ #: modules/subscribe-form/subscribe-form.php:181
3273
+ msgid "Before Text"
3274
+ msgstr "לפני הטקסט"
3275
+
3276
+ #: modules/button/button.php:84 modules/callout/callout.php:509
3277
+ #: modules/content-slider/content-slider.php:655 modules/cta/cta.php:240
3278
+ #: modules/subscribe-form/subscribe-form.php:182
3279
+ msgid "After Text"
3280
+ msgstr "אחרי הטקסט"
3281
+
3282
+ #: modules/button/button.php:90 modules/button/button.php:94
3283
+ #: modules/callout/callout.php:446 modules/callout/callout.php:450
3284
+ #: modules/content-slider/content-slider.php:599
3285
+ #: modules/content-slider/content-slider.php:603
3286
+ #: modules/content-slider/content-slider.php:626 modules/cta/cta.php:250
3287
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47
3288
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
3289
+ #: modules/slideshow/slideshow.php:351
3290
+ msgid "Link"
3291
+ msgstr "קישור"
3292
+
3293
+ #: modules/button/button.php:95
3294
+ msgid "http://www.example.com"
3295
+ msgstr "http://www.example.com"
3296
+
3297
+ #: modules/button/button.php:102 modules/callout/callout.php:458
3298
+ #: modules/content-slider/content-slider.php:608 modules/cta/cta.php:257
3299
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
3300
+ #: modules/photo/photo.php:494
3301
+ msgid "Link Target"
3302
+ msgstr "יעד הקישור"
3303
+
3304
+ #: modules/button/button.php:105 modules/callout/callout.php:461
3305
+ #: modules/content-slider/content-slider.php:611 modules/cta/cta.php:260
3306
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
3307
+ #: modules/photo/photo.php:497
3308
+ msgid "Same Window"
3309
+ msgstr "אותו חלון"
3310
+
3311
+ #: modules/button/button.php:106 modules/callout/callout.php:462
3312
+ #: modules/content-slider/content-slider.php:612 modules/cta/cta.php:261
3313
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
3314
+ #: modules/photo/photo.php:498
3315
+ msgid "New Window"
3316
+ msgstr "חלון חדש"
3317
+
3318
+ #: modules/button/button.php:130 modules/callout/callout.php:410
3319
+ #: modules/callout/callout.php:525
3320
+ #: modules/content-slider/content-slider.php:671 modules/cta/cta.php:280
3321
+ #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
3322
+ #: modules/subscribe-form/subscribe-form.php:198
3323
+ msgid "Background Hover Color"
3324
+ msgstr "צבע רקע במעבר עכבר"
3325
+
3326
+ #: modules/button/button.php:145 modules/callout/callout.php:540
3327
+ #: modules/content-slider/content-slider.php:682 modules/cta/cta.php:295
3328
+ #: modules/subscribe-form/subscribe-form.php:213
3329
+ msgid "Text Hover Color"
3330
+ msgstr "צבע במעבר עכבר"
3331
+
3332
+ #: modules/button/button.php:162 modules/callout/callout.php:557
3333
+ #: modules/content-slider/content-slider.php:695 modules/cta/cta.php:312
3334
+ #: modules/subscribe-form/subscribe-form.php:230
3335
+ msgid "Flat"
3336
+ msgstr "שטוח"
3337
+
3338
+ #: modules/button/button.php:163 modules/callout/callout.php:418
3339
+ #: modules/callout/callout.php:558
3340
+ #: modules/content-slider/content-slider.php:696 modules/cta/cta.php:313
3341
+ #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3342
+ #: modules/subscribe-form/subscribe-form.php:231
3343
+ msgid "Gradient"
3344
+ msgstr "מעבר צבע (Gradient)"
3345
+
3346
+ #: modules/button/button.php:164 modules/callout/callout.php:559
3347
+ #: modules/content-slider/content-slider.php:697 modules/cta/cta.php:314
3348
+ #: modules/subscribe-form/subscribe-form.php:232
3349
+ msgid "Transparent"
3350
+ msgstr "שקוף"
3351
+
3352
+ #: modules/button/button.php:174 modules/callout/callout.php:569
3353
+ #: modules/content-slider/content-slider.php:707 modules/cta/cta.php:324
3354
+ #: modules/pricing-table/pricing-table.php:67
3355
+ #: modules/subscribe-form/subscribe-form.php:242
3356
+ msgid "Border Size"
3357
+ msgstr "גודל הגבול"
3358
+
3359
+ #: modules/button/button.php:183 modules/callout/callout.php:578
3360
+ #: modules/content-slider/content-slider.php:716 modules/cta/cta.php:204
3361
+ #: modules/cta/cta.php:333 modules/subscribe-form/subscribe-form.php:251
3362
+ msgid "Background Opacity"
3363
+ msgstr "שקיפות רקע"
3364
+
3365
+ #: modules/button/button.php:193 modules/callout/callout.php:245
3366
+ #: modules/cta/cta.php:105 modules/heading/heading.php:82
3367
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3368
+ #: modules/subscribe-form/subscribe-form.php:95
3369
+ msgid "Structure"
3370
+ msgstr "מבנה"
3371
+
3372
+ #: modules/button/button.php:200 modules/callout/callout.php:595
3373
+ msgctxt "Width."
3374
+ msgid "Auto"
3375
+ msgstr "אוטומטי"
3376
+
3377
+ #: modules/button/button.php:216
3378
+ msgid "Custom Width"
3379
+ msgstr "רוחב מותאמת אישית"
3380
+
3381
+ #: modules/button/button.php:224 modules/cta/cta.php:123
3382
+ #: modules/heading/heading.php:86 modules/heading/heading.php:153
3383
+ #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3384
+ #: modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
3385
+ msgid "Alignment"
3386
+ msgstr "יישור"
3387
+
3388
+ #: modules/button/button.php:234 modules/callout/callout.php:601
3389
+ #: modules/content-slider/content-slider.php:730 modules/cta/cta.php:347
3390
+ #: modules/heading/heading.php:126 modules/heading/heading.php:183
3391
+ #: modules/subscribe-form/subscribe-form.php:265
3392
+ msgid "Font Size"
3393
+ msgstr "גודל פונט"
3394
+
3395
+ #: modules/button/button.php:250 modules/callout/callout.php:617
3396
+ #: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
3397
+ msgid "Round Corners"
3398
+ msgstr "עיגול פינות"
3399
+
3400
+ #: modules/callout/callout.php:14
3401
+ msgid "Callout"
3402
+ msgstr "בועת מלל"
3403
+
3404
+ #: modules/callout/callout.php:15
3405
+ msgid "A heading and snippet of text with an optional link, icon and image."
3406
+ msgstr "כותרת וגזיר טקסט עם קישור אופציונלי, אייקון ותמונה."
3407
+
3408
+ #: modules/callout/callout.php:217
3409
+ #: modules/content-slider/content-slider.php:439
3410
+ #: modules/content-slider/content-slider.php:454 modules/cta/cta.php:75
3411
+ #: modules/heading/heading.php:14 modules/heading/heading.php:33
3412
+ #: modules/post-slider/post-slider.php:582
3413
+ #: modules/testimonials/testimonials.php:56
3414
+ #: modules/testimonials/testimonials.php:61
3415
+ msgid "Heading"
3416
+ msgstr "כותרת"
3417
+
3418
+ #: modules/callout/callout.php:249
3419
+ msgid "Overall Alignment"
3420
+ msgstr "יישור כללי"
3421
+
3422
+ #: modules/callout/callout.php:256
3423
+ msgid "The alignment that will apply to all elements within the callout."
3424
+ msgstr "היישור אשר יחול על כל האלמנטים בתוך בועת המלל."
3425
+
3426
+ #: modules/callout/callout.php:264 modules/cta/cta.php:148
3427
+ msgid "Heading Structure"
3428
+ msgstr "מבנה הכותרות"
3429
+
3430
+ #: modules/callout/callout.php:268
3431
+ #: modules/content-slider/content-slider.php:458 modules/cta/cta.php:152
3432
+ #: modules/post-slider/post-slider.php:586
3433
+ msgid "Heading Tag"
3434
+ msgstr "תג כותרת"
3435
+
3436
+ #: modules/callout/callout.php:281
3437
+ #: modules/content-slider/content-slider.php:471
3438
+ #: modules/content-slider/content-slider.php:485 modules/cta/cta.php:165
3439
+ #: modules/post-slider/post-slider.php:599
3440
+ #: modules/post-slider/post-slider.php:613
3441
+ #: modules/testimonials/testimonials.php:69
3442
+ msgid "Heading Size"
3443
+ msgstr "גודל כותרת"
3444
+
3445
+ #: modules/callout/callout.php:295 modules/cta/cta.php:179
3446
+ msgid "Heading Custom Size"
3447
+ msgstr "גודל מותאם אישית לכותרת"
3448
+
3449
+ #: modules/callout/callout.php:306 modules/post-carousel/post-carousel.php:256
3450
+ #: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:460
3451
+ msgid "Image"
3452
+ msgstr "תמונה"
3453
+
3454
+ #: modules/callout/callout.php:313
3455
+ msgid "Image Type"
3456
+ msgstr "סוג תמונה"
3457
+
3458
+ #: modules/callout/callout.php:316
3459
+ msgctxt "Image type."
3460
+ msgid "None"
3461
+ msgstr "ללא"
3462
+
3463
+ #: modules/callout/callout.php:341 modules/photo/photo.php:417
3464
+ #: modules/post-carousel/post-carousel.php:275
3465
+ #: modules/post-slider/post-slider.php:482 modules/slideshow/slideshow.php:320
3466
+ msgid "Crop"
3467
+ msgstr "חיתוך"
3468
+
3469
+ #: modules/callout/callout.php:344 modules/photo/photo.php:420
3470
+ msgctxt "Photo Crop."
3471
+ msgid "None"
3472
+ msgstr "ללא"
3473
+
3474
+ #: modules/callout/callout.php:345 modules/photo/photo.php:421
3475
+ #: modules/post-carousel/post-carousel.php:278
3476
+ #: modules/post-slider/post-slider.php:485
3477
+ msgid "Landscape"
3478
+ msgstr "אופקי ‪(Landscape)‬"
3479
+
3480
+ #: modules/callout/callout.php:346 modules/photo/photo.php:422
3481
+ #: modules/post-carousel/post-carousel.php:279
3482
+ #: modules/post-slider/post-slider.php:486
3483
+ msgid "Panorama"
3484
+ msgstr "פנורמה"
3485
+
3486
+ #: modules/callout/callout.php:347 modules/photo/photo.php:423
3487
+ #: modules/post-carousel/post-carousel.php:280
3488
+ #: modules/post-slider/post-slider.php:487
3489
+ msgid "Portrait"
3490
+ msgstr "פורטרט"
3491
+
3492
+ #: modules/callout/callout.php:348 modules/photo/photo.php:424
3493
+ #: modules/post-carousel/post-carousel.php:281
3494
+ #: modules/post-slider/post-slider.php:488
3495
+ msgid "Square"
3496
+ msgstr "מרובע"
3497
+
3498
+ #: modules/callout/callout.php:349 modules/photo/photo.php:425
3499
+ #: modules/post-carousel/post-carousel.php:282
3500
+ #: modules/post-slider/post-slider.php:489
3501
+ msgid "Circle"
3502
+ msgstr "עיגול"
3503
+
3504
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
3505
+ msgid "Above Heading"
3506
+ msgstr "מעל הכותרת"
3507
+
3508
+ #: modules/callout/callout.php:358 modules/callout/callout.php:378
3509
+ msgid "Below Heading"
3510
+ msgstr "מתחת לכותרת"
3511
+
3512
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
3513
+ msgid "Left of Text and Heading"
3514
+ msgstr "משמאל לטקסט ולכותרת"
3515
+
3516
+ #: modules/callout/callout.php:360 modules/callout/callout.php:382
3517
+ msgid "Right of Text and Heading"
3518
+ msgstr "מימין לטקסט ולכותרת"
3519
+
3520
+ #: modules/callout/callout.php:379
3521
+ msgid "Left of Heading"
3522
+ msgstr "משמאל לכותרת"
3523
+
3524
+ #: modules/callout/callout.php:380
3525
+ msgid "Right of Heading"
3526
+ msgstr "מימין לכותרת"
3527
+
3528
+ #: modules/callout/callout.php:388
3529
+ msgid "Icon Colors"
3530
+ msgstr "צבע אייקון"
3531
+
3532
+ #: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56
3533
+ #: modules/icon/icon.php:87
3534
+ msgid "Hover Color"
3535
+ msgstr "צבע במעבר עכבר"
3536
+
3537
+ #: modules/callout/callout.php:428
3538
+ msgid "Icon Structure"
3539
+ msgstr "מבנה אייקון"
3540
+
3541
+ #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
3542
+ #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:270
3543
+ #: modules/post-grid/post-grid.php:139 modules/post-slider/post-slider.php:477
3544
+ msgid "Size"
3545
+ msgstr "גודל"
3546
+
3547
+ #: modules/callout/callout.php:443
3548
+ #: modules/content-slider/content-slider.php:596
3549
+ msgid "Call To Action"
3550
+ msgstr "קריאה לפעולה"
3551
+
3552
+ #: modules/callout/callout.php:451
3553
+ msgid ""
3554
+ "The link applies to the entire module. If choosing a call to action type "
3555
+ "below, this link will also be used for the text or button."
3556
+ msgstr ""
3557
+ "הקישור חל על המודול כולו. אם תבחר גם קריאה לפעולה, קישור זה גם ישמש גם עבור "
3558
+ "הטקסט או הכפתור."
3559
+
3560
+ #: modules/callout/callout.php:471
3561
+ #: modules/content-slider/content-slider.php:618 modules/cta/cta.php:14
3562
+ msgid "Call to Action"
3563
+ msgstr "קריאה לפעולה"
3564
+
3565
+ #: modules/callout/callout.php:478
3566
+ #: modules/content-slider/content-slider.php:625
3567
+ msgctxt "Call to action."
3568
+ msgid "None"
3569
+ msgstr "ללא"
3570
+
3571
+ #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:396
3572
+ #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:571
3573
+ msgid "Read More"
3574
+ msgstr "קרא עוד"
3575
+
3576
+ #: modules/callout/callout.php:500
3577
+ #: modules/content-slider/content-slider.php:646
3578
+ #: modules/subscribe-form/subscribe-form.php:173
3579
+ msgid "Button Icon"
3580
+ msgstr "כפתור אייקון"
3581
+
3582
+ #: modules/callout/callout.php:505
3583
+ #: modules/content-slider/content-slider.php:651
3584
+ msgid "Button Icon Position"
3585
+ msgstr "מיקום כפתור אייקון"
3586
+
3587
+ #: modules/callout/callout.php:515
3588
+ #: modules/content-slider/content-slider.php:661 modules/cta/cta.php:270
3589
+ #: modules/subscribe-form/subscribe-form.php:188
3590
+ msgid "Button Colors"
3591
+ msgstr "צבע כפתור"
3592
+
3593
+ #: modules/callout/callout.php:550
3594
+ #: modules/content-slider/content-slider.php:688 modules/cta/cta.php:305
3595
+ #: modules/subscribe-form/subscribe-form.php:223
3596
+ msgid "Button Style"
3597
+ msgstr "עיצוב כפתור"
3598
+
3599
+ #: modules/callout/callout.php:588
3600
+ #: modules/content-slider/content-slider.php:726 modules/cta/cta.php:343
3601
+ #: modules/subscribe-form/subscribe-form.php:261
3602
+ msgid "Button Structure"
3603
+ msgstr "מבנה כפתור"
3604
+
3605
+ #: modules/callout/callout.php:592
3606
+ msgid "Button Width"
3607
+ msgstr "רוחב כפתור"
3608
+
3609
+ #: modules/contact-form/contact-form.php:14
3610
+ msgid "Contact Form"
3611
+ msgstr "טופס יצירת קשר"
3612
+
3613
+ #: modules/contact-form/contact-form.php:15
3614
+ msgid "A very simple contact form."
3615
+ msgstr "טופס יצירת קשר פשוט מאוד."
3616
+
3617
+ #: modules/contact-form/contact-form.php:31
3618
+ msgid "Contact Form Submission"
3619
+ msgstr "הגשת טופס יצירת קשר"
3620
+
3621
+ #: modules/contact-form/contact-form.php:41
3622
+ msgid "Message"
3623
+ msgstr "הודעה"
3624
+
3625
+ #: modules/contact-form/contact-form.php:65
3626
+ msgid "Send To Email"
3627
+ msgstr "שלח לדוא”ל"
3628
+
3629
+ #: modules/contact-form/contact-form.php:67
3630
+ msgid "example@mail.com"
3631
+ msgstr "example@mail.com"
3632
+
3633
+ #: modules/contact-form/contact-form.php:68
3634
+ msgid "The contact form will send to this e-mail"
3635
+ msgstr "טופס יצירת הקשר ישלח לאימייל זה"
3636
+
3637
+ #: modules/contact-form/contact-form.php:75
3638
+ #: modules/subscribe-form/subscribe-form.php:108
3639
+ msgid "Name Field"
3640
+ msgstr "השדה “שם”"
3641
+
3642
+ #: modules/contact-form/contact-form.php:78
3643
+ #: modules/contact-form/contact-form.php:87
3644
+ #: modules/contact-form/contact-form.php:96
3645
+ #: modules/contact-form/contact-form.php:105
3646
+ #: modules/post-carousel/post-carousel.php:259
3647
+ #: modules/post-carousel/post-carousel.php:336
3648
+ #: modules/post-carousel/post-carousel.php:345
3649
+ #: modules/post-carousel/post-carousel.php:380
3650
+ #: modules/post-carousel/post-carousel.php:389
3651
+ #: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
3652
+ #: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
3653
+ #: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
3654
+ #: modules/post-slider/post-slider.php:443
3655
+ #: modules/post-slider/post-slider.php:502
3656
+ #: modules/post-slider/post-slider.php:511
3657
+ #: modules/post-slider/post-slider.php:541
3658
+ #: modules/post-slider/post-slider.php:555
3659
+ #: modules/post-slider/post-slider.php:564
3660
+ #: modules/subscribe-form/subscribe-form.php:111
3661
+ msgid "Show"
3662
+ msgstr "הצג"
3663
+
3664
+ #: modules/contact-form/contact-form.php:79
3665
+ #: modules/contact-form/contact-form.php:88
3666
+ #: modules/contact-form/contact-form.php:97
3667
+ #: modules/contact-form/contact-form.php:106
3668
+ #: modules/post-carousel/post-carousel.php:260
3669
+ #: modules/post-carousel/post-carousel.php:337
3670
+ #: modules/post-carousel/post-carousel.php:346
3671
+ #: modules/post-carousel/post-carousel.php:381
3672
+ #: modules/post-carousel/post-carousel.php:390
3673
+ #: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
3674
+ #: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
3675
+ #: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
3676
+ #: modules/post-slider/post-slider.php:444
3677
+ #: modules/post-slider/post-slider.php:503
3678
+ #: modules/post-slider/post-slider.php:512
3679
+ #: modules/post-slider/post-slider.php:542
3680
+ #: modules/post-slider/post-slider.php:556
3681
+ #: modules/post-slider/post-slider.php:565
3682
+ #: modules/subscribe-form/subscribe-form.php:112
3683
+ msgid "Hide"
3684
+ msgstr "הסתר"
3685
+
3686
+ #: modules/contact-form/contact-form.php:84
3687
+ msgid "Subject Field"
3688
+ msgstr "השדה “נושא”"
3689
+
3690
+ #: modules/contact-form/contact-form.php:93
3691
+ msgid "Email Field"
3692
+ msgstr "השדה “אימייל”"
3693
+
3694
+ #: modules/contact-form/contact-form.php:102
3695
+ msgid "Phone Field"
3696
+ msgstr "השדה “טלפון”"
3697
+
3698
+ #: modules/contact-form/includes/frontend.php:5
3699
+ msgctxt "Contact form field label."
3700
+ msgid "Name"
3701
+ msgstr "שם מלא"
3702
+
3703
+ #: modules/contact-form/includes/frontend.php:6
3704
+ #: modules/subscribe-form/includes/frontend.php:6
3705
+ msgid "Please enter your name."
3706
+ msgstr "אנא הזן את השם שלך."
3707
+
3708
+ #: modules/contact-form/includes/frontend.php:7
3709
+ msgid "Your name"
3710
+ msgstr "השם שלך"
3711
+
3712
+ #: modules/contact-form/includes/frontend.php:13
3713
+ #: modules/contact-form/includes/frontend.php:15
3714
+ msgid "Subject"
3715
+ msgstr "נושא"
3716
+
3717
+ #: modules/contact-form/includes/frontend.php:14
3718
+ msgid "Please enter a subject."
3719
+ msgstr "אנא הזן נושא."
3720
+
3721
+ #: modules/contact-form/includes/frontend.php:22
3722
+ msgid "Please enter a valid email."
3723
+ msgstr "אנא הזן אימייל תקין."
3724
+
3725
+ #: modules/contact-form/includes/frontend.php:23
3726
+ msgid "Your email"
3727
+ msgstr "האימייל שלך"
3728
+
3729
+ #: modules/contact-form/includes/frontend.php:29
3730
+ msgid "Phone"
3731
+ msgstr "טלפון"
3732
+
3733
+ #: modules/contact-form/includes/frontend.php:30
3734
+ msgid "Please enter a valid phone number."
3735
+ msgstr "אנא הזן מספר טלפון תקין."
3736
+
3737
+ #: modules/contact-form/includes/frontend.php:31
3738
+ msgid "Your phone"
3739
+ msgstr "הטלפון שלך"
3740
+
3741
+ #: modules/contact-form/includes/frontend.php:36
3742
+ msgid "Your Message"
3743
+ msgstr "ההודעה שלך"
3744
+
3745
+ #: modules/contact-form/includes/frontend.php:37
3746
+ msgid "Please enter a message."
3747
+ msgstr "אנא הזן הודעה."
3748
+
3749
+ #: modules/contact-form/includes/frontend.php:38
3750
+ msgid "Your message"
3751
+ msgstr "ההודעה שלך"
3752
+
3753
+ #: modules/contact-form/includes/frontend.php:43
3754
+ msgid "Send"
3755
+ msgstr "שלח"
3756
+
3757
+ #: modules/contact-form/includes/frontend.php:44
3758
+ msgid "Message Sent!"
3759
+ msgstr "הודעה נשלחה!"
3760
+
3761
+ #: modules/contact-form/includes/frontend.php:45
3762
+ msgid "Message failed. Please try again."
3763
+ msgstr "ההודעה נכשלה. נא נסה שוב."
3764
+
3765
+ #: modules/content-slider/content-slider.php:14
3766
+ msgid "Content Slider"
3767
+ msgstr "סליידר תוכן"
3768
+
3769
+ #: modules/content-slider/content-slider.php:15
3770
+ msgid "Displays multiple slides with an optional heading and call to action."
3771
+ msgstr "הצגת שקופיות מרובות עם כותרת וקריאה לפעולה אופציונלית."
3772
+
3773
+ #: modules/content-slider/content-slider.php:228
3774
+ msgid ""
3775
+ "This setting is the minimum height of the content slider. Content will "
3776
+ "expand the height automatically."
3777
+ msgstr ""
3778
+ "הגדרה זו מגדירה את הגובה המינימלי של הסליידר. התוכן בכל סלייד ירחיב באופן "
3779
+ "אוטומטי את הגובה."
3780
+
3781
+ #: modules/content-slider/content-slider.php:232
3782
+ #: modules/post-carousel/post-carousel.php:137
3783
+ #: modules/post-slider/post-slider.php:354 modules/slideshow/slideshow.php:381
3784
+ #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
3785
+ msgid "Auto Play"
3786
+ msgstr "ניגון אוטומטי"
3787
+
3788
+ #: modules/content-slider/content-slider.php:246
3789
+ msgid "Show Play/Pause"
3790
+ msgstr "הצג הפעל/השהה"
3791
+
3792
+ #: modules/content-slider/content-slider.php:266
3793
+ #: modules/testimonials/testimonials.php:102
3794
+ msgctxt "Transition type."
3795
+ msgid "Slide"
3796
+ msgstr "גלישה"
3797
+
3798
+ #: modules/content-slider/content-slider.php:280
3799
+ #: modules/post-carousel/post-carousel.php:189
3800
+ #: modules/post-slider/post-slider.php:415
3801
+ #: modules/testimonials/testimonials.php:121
3802
+ msgid "Show Arrows"
3803
+ msgstr "הצג חיצים"
3804
+
3805
+ #: modules/content-slider/content-slider.php:289
3806
+ #: modules/post-carousel/post-carousel.php:180
3807
+ #: modules/post-slider/post-slider.php:406
3808
+ #: modules/testimonials/testimonials.php:151
3809
+ msgid "Show Dots"
3810
+ msgstr "הצג נקודות"
3811
+
3812
+ #: modules/content-slider/content-slider.php:303
3813
+ msgid "Max Content Width"
3814
+ msgstr "רוחב מקסימלי לתוכן"
3815
+
3816
+ #: modules/content-slider/content-slider.php:308
3817
+ msgid "The max width that the content area will be within your slides."
3818
+ msgstr "הרוחב המקסימלי עבור אזור התוכן בתוך השקופית."
3819
+
3820
+ #: modules/content-slider/content-slider.php:315
3821
+ msgid "Slides"
3822
+ msgstr "שקופיות"
3823
+
3824
+ #: modules/content-slider/content-slider.php:322
3825
+ #: modules/post-slider/post-slider.php:374
3826
+ msgid "Slide"
3827
+ msgstr "שקופית"
3828
+
3829
+ #: modules/content-slider/content-slider.php:337
3830
+ msgid "Slide Settings"
3831
+ msgstr "הגדרות שקופית"
3832
+
3833
+ #: modules/content-slider/content-slider.php:347
3834
+ msgid "Slide Label"
3835
+ msgstr "תווית לשקופית"
3836
+
3837
+ #: modules/content-slider/content-slider.php:348
3838
+ msgid ""
3839
+ "A label to identify this slide on the Slides tab of the Content Slider "
3840
+ "settings."
3841
+ msgstr "תווית כדי לזהות את השקופית בטאב השקופיות של באזור ההגדרות."
3842
+
3843
+ #: modules/content-slider/content-slider.php:353
3844
+ msgid "Background Layout"
3845
+ msgstr "פריסת רקע"
3846
+
3847
+ #: modules/content-slider/content-slider.php:359
3848
+ msgid "This setting is for the entire background of your slide."
3849
+ msgstr "הגדרה זו היא עבור הרקע לכל השקופית."
3850
+
3851
+ #: modules/content-slider/content-slider.php:362 modules/video/video.php:19
3852
+ #: modules/video/video.php:100
3853
+ msgid "Video"
3854
+ msgstr "וידאו"
3855
+
3856
+ #: modules/content-slider/content-slider.php:394
3857
+ msgid "Background Video Code"
3858
+ msgstr "קוד לרקע וידאו"
3859
+
3860
+ #: modules/content-slider/content-slider.php:400
3861
+ msgid "Content Layout"
3862
+ msgstr "פריסת תוכן"
3863
+
3864
+ #: modules/content-slider/content-slider.php:406
3865
+ msgid ""
3866
+ "This allows you to add content over or in addition to the background "
3867
+ "selection above. The location of the content layout can be selected in the "
3868
+ "style tab."
3869
+ msgstr ""
3870
+ "אפשרות זו מאפשרת לך להוסיף תוכן מעל או בנוסף לבחירת הרקע. את מיקום פריסת "
3871
+ "התוכן ניתן לבחור בהגדרות הסגנון."
3872
+
3873
+ #: modules/content-slider/content-slider.php:409
3874
+ msgid "Text &amp; Photo"
3875
+ msgstr "טקסט ותמונה"
3876
+
3877
+ #: modules/content-slider/content-slider.php:410
3878
+ msgid "Text &amp; Video"
3879
+ msgstr "טקסט ווידאו"
3880
+
3881
+ #: modules/content-slider/content-slider.php:411
3882
+ msgctxt "Content type."
3883
+ msgid "None"
3884
+ msgstr "ללא"
3885
+
3886
+ #: modules/content-slider/content-slider.php:434 modules/video/video.php:132
3887
+ msgid "Video Embed Code"
3888
+ msgstr "קוד הטמעת וידאו"
3889
+
3890
+ #: modules/content-slider/content-slider.php:494
3891
+ msgid "Text Position"
3892
+ msgstr "מיקום טקסט"
3893
+
3894
+ #: modules/content-slider/content-slider.php:500
3895
+ msgid ""
3896
+ "The position will move the content layout selections left, right or center "
3897
+ "over the background of the slide."
3898
+ msgstr "המיקום יזיז את פריסת התוכן שמאלה, ימינה או ימרכז אותו בשקופית."
3899
+
3900
+ #: modules/content-slider/content-slider.php:517
3901
+ msgid "Top Margin"
3902
+ msgstr "מרווח עליון"
3903
+
3904
+ #: modules/content-slider/content-slider.php:525
3905
+ msgid "Bottom Margin"
3906
+ msgstr "מרווח תחתון"
3907
+
3908
+ #: modules/content-slider/content-slider.php:533
3909
+ msgid "Left Margin"
3910
+ msgstr "מרווח שמאלה"
3911
+
3912
+ #: modules/content-slider/content-slider.php:541
3913
+ msgid "Right Margin"
3914
+ msgstr "מרווח ימינה"
3915
+
3916
+ #: modules/content-slider/content-slider.php:550
3917
+ msgid "Text Colors"
3918
+ msgstr "צבעי טקסט"
3919
+
3920
+ #: modules/content-slider/content-slider.php:560
3921
+ msgid "Text Shadow"
3922
+ msgstr "צל טקסט"
3923
+
3924
+ #: modules/content-slider/content-slider.php:569
3925
+ #: modules/content-slider/content-slider.php:795
3926
+ #: modules/post-carousel/post-carousel.php:425
3927
+ #: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:721
3928
+ msgid "Text Background Color"
3929
+ msgstr "צבע רקע לטקסט"
3930
+
3931
+ #: modules/content-slider/content-slider.php:570
3932
+ #: modules/post-carousel/post-carousel.php:427
3933
+ #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:722
3934
+ msgid ""
3935
+ "The color applies to the overlay behind text over the background selections."
3936
+ msgstr "הצבע יוחל על הכיסוי מאחורי טקסט על רקע הבחירות."
3937
+
3938
+ #: modules/content-slider/content-slider.php:575
3939
+ #: modules/post-carousel/post-carousel.php:437
3940
+ #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:728
3941
+ msgid "Text Background Opacity"
3942
+ msgstr "שקיפות רקע"
3943
+
3944
+ #: modules/content-slider/content-slider.php:583
3945
+ #: modules/post-slider/post-slider.php:745
3946
+ msgid "Text Background Height"
3947
+ msgstr "גובה רקע לטקסט"
3948
+
3949
+ #: modules/content-slider/content-slider.php:585
3950
+ #: modules/post-slider/post-slider.php:747
3951
+ msgid ""
3952
+ "Auto will allow the overlay to fit however long the text content is. 100% "
3953
+ "will fit the overlay to the top and bottom of the slide."
3954
+ msgstr ""
3955
+ "אוטומטי יאפשר לכיסוי להתאים לכל אורך טקסט. 100% יתאימו את הכיסוי לכל גובה "
3956
+ "השקופית."
3957
+
3958
+ #: modules/content-slider/content-slider.php:587
3959
+ #: modules/post-slider/post-slider.php:749
3960
+ msgctxt "Background height."
3961
+ msgid "Auto"
3962
+ msgstr "אוטומטי"
3963
+
3964
+ #: modules/content-slider/content-slider.php:604
3965
+ msgid ""
3966
+ "The link applies to the entire slide. If choosing a call to action type "
3967
+ "below, this link will also be used for the text or button."
3968
+ msgstr ""
3969
+ "הקישור חל על השקופית כולה. אם בוחרים בקריאה לפעולה, קישור זה גם ישמש עבור "
3970
+ "הטקסט או הכפתור."
3971
+
3972
+ #: modules/content-slider/content-slider.php:746
3973
+ msgid "Border Radius"
3974
+ msgstr "רדיוס הגבול"
3975
+
3976
+ #: modules/content-slider/content-slider.php:757
3977
+ msgctxt "Module settings form tab. Display on mobile devices."
3978
+ msgid "Mobile"
3979
+ msgstr "מובייל"
3980
+
3981
+ #: modules/content-slider/content-slider.php:760
3982
+ msgid "Mobile Photo"
3983
+ msgstr "תמונת מובייל"
3984
+
3985
+ #: modules/content-slider/content-slider.php:766
3986
+ msgid ""
3987
+ "You can choose a different photo that the slide will change to on mobile "
3988
+ "devices or no photo if desired."
3989
+ msgstr ""
3990
+ "באפשרותך לבחור בתמונה שונה, או ללא תמונה כלל, שתוצג בשקופית בתצוגה במכשירים "
3991
+ "ניידים."
3992
+
3993
+ #: modules/content-slider/content-slider.php:768
3994
+ msgid "Use Main Photo"
3995
+ msgstr "השתמש בתמונה המקורית"
3996
+
3997
+ #: modules/content-slider/content-slider.php:769
3998
+ msgid "Choose Another Photo"
3999
+ msgstr "בחר בתמונה אחרת"
4000
+
4001
+ #: modules/content-slider/content-slider.php:770
4002
+ msgid "No Photo"
4003
+ msgstr "ללא תמונה"
4004
+
4005
+ #: modules/content-slider/content-slider.php:785
4006
+ msgid "Mobile Text Colors"
4007
+ msgstr "צבעי טקסט לנייד"
4008
+
4009
+ #: modules/cta/cta.php:15
4010
+ msgid "Display a heading, subheading and a button."
4011
+ msgstr "הצג כותרת, כותרת משנה וכפתור."
4012
+
4013
+ #: modules/cta/cta.php:76
4014
+ msgid "Ready to find out more?"
4015
+ msgstr "מוכן לגלות עוד?"
4016
+
4017
+ #: modules/cta/cta.php:91
4018
+ msgid "Drop us a line today for a free quote!"
4019
+ msgstr "כתבנו לנו היום לקבלת הצעת מחיר חינם!"
4020
+
4021
+ #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
4022
+ #: modules/menu/menu.php:90 modules/numbers/numbers.php:65
4023
+ #: modules/post-carousel/post-carousel.php:118
4024
+ #: modules/post-carousel/post-carousel.php:207
4025
+ #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:433
4026
+ #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
4027
+ #: modules/testimonials/testimonials.php:37
4028
+ #: modules/woocommerce/woocommerce.php:57
4029
+ msgid "Layout"
4030
+ msgstr "פריסה"
4031
+
4032
+ #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
4033
+ msgid "Inline"
4034
+ msgstr "בתוך השורה"
4035
+
4036
+ #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
4037
+ msgid "Stacked"
4038
+ msgstr "עמודות מוערמות"
4039
+
4040
+ #: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
4041
+ msgid "Spacing"
4042
+ msgstr "ריווח"
4043
+
4044
+ #: modules/cta/cta.php:246
4045
+ msgid "Button Link"
4046
+ msgstr "קישור הכפתור"
4047
+
4048
+ #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:122
4049
+ #: modules/post-grid/post-grid.php:55
4050
+ msgid "Gallery"
4051
+ msgstr "גלריה"
4052
+
4053
+ #: modules/gallery/gallery.php:15
4054
+ msgid "Display multiple photos in a gallery view."
4055
+ msgstr "הצג מספר תמונות בתצוגה גלריה."
4056
+
4057
+ #: modules/gallery/gallery.php:230
4058
+ msgid "Collage"
4059
+ msgstr "קולאז’"
4060
+
4061
+ #: modules/gallery/gallery.php:231
4062
+ msgctxt "Gallery layout: thumbnails."
4063
+ msgid "Thumbs"
4064
+ msgstr "תמונות ממוזערות (Thumbnails)"
4065
+
4066
+ #: modules/gallery/gallery.php:267
4067
+ msgid "Photo Size"
4068
+ msgstr "גודל תמונה"
4069
+
4070
+ #: modules/gallery/gallery.php:270
4071
+ msgctxt "Photo size."
4072
+ msgid "Small"
4073
+ msgstr "קטן"
4074
+
4075
+ #: modules/gallery/gallery.php:271
4076
+ msgctxt "Photo size."
4077
+ msgid "Medium"
4078
+ msgstr "בינוני"
4079
+
4080
+ #: modules/gallery/gallery.php:272
4081
+ msgctxt "Photo size."
4082
+ msgid "Large"
4083
+ msgstr "גדול"
4084
+
4085
+ #: modules/gallery/gallery.php:277
4086
+ msgid "Photo Spacing"
4087
+ msgstr "מרווח בין התמונות"
4088
+
4089
+ #: modules/gallery/gallery.php:285
4090
+ msgid "Show Captions"
4091
+ msgstr "הצג כיתוב"
4092
+
4093
+ #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
4094
+ msgid "Never"
4095
+ msgstr "אף פעם"
4096
+
4097
+ #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
4098
+ msgid "On Hover"
4099
+ msgstr "בעת מעבר עכבר"
4100
+
4101
+ #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
4102
+ msgid "Below Photo"
4103
+ msgstr "מתחת לתמונה"
4104
+
4105
+ #: modules/gallery/gallery.php:292
4106
+ msgid ""
4107
+ "The caption pulls from whatever text you put in the caption area in the "
4108
+ "media manager for each image. The caption is also pulled directly from "
4109
+ "SmugMug if you have captions set in your gallery."
4110
+ msgstr ""
4111
+ "הכיתוב נמשך מהטקסט אותו הזנת באזור הכיתוב במנהל המדיה עבור כל תמונה. הכיתוב "
4112
+ "נמשך גם ישירות מ- SmugMug אם הגדרת כיתובים בגלריה שלך."
4113
+
4114
+ #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4115
+ msgid "Click Action"
4116
+ msgstr "פעולה בלחיצת עכבר"
4117
+
4118
+ #: modules/gallery/gallery.php:299
4119
+ msgctxt "Click action."
4120
+ msgid "None"
4121
+ msgstr "ללא"
4122
+
4123
+ #: modules/gallery/gallery.php:300 modules/photo/photo.php:468
4124
+ msgid "Lightbox"
4125
+ msgstr "חלון נפתח (Lightbox)"
4126
+
4127
+ #: modules/gallery/gallery.php:301
4128
+ msgid "Photo Link"
4129
+ msgstr "פתיחת קישור לתמונה"
4130
+
4131
+ #: modules/heading/heading.php:15
4132
+ msgid "Display a title/page heading."
4133
+ msgstr "הצגת כותרת / כותרת עמוד."
4134
+
4135
+ #: modules/heading/heading.php:101
4136
+ msgid "HTML Tag"
4137
+ msgstr "תג HTML"
4138
+
4139
+ #: modules/heading/heading.php:118
4140
+ msgid "Font"
4141
+ msgstr "גופן"
4142
+
4143
+ #: modules/heading/heading.php:140 modules/heading/heading.php:200
4144
+ msgid "Custom Font Size"
4145
+ msgstr "גודל פונט מותאם אישית"
4146
+
4147
+ #: modules/heading/heading.php:149
4148
+ msgid "Mobile Structure"
4149
+ msgstr "מבנה בנייד"
4150
+
4151
+ #: modules/heading/heading.php:170
4152
+ msgid "Custom Alignment"
4153
+ msgstr "יישור מותאם אישית"
4154
+
4155
+ #: modules/html/html.php:14
4156
+ msgid "HTML"
4157
+ msgstr "HTML"
4158
+
4159
+ #: modules/html/html.php:15
4160
+ msgid "Display raw HTML code."
4161
+ msgstr "הצג קוד HTML גולמי."
4162
+
4163
+ #: modules/icon-group/icon-group.php:14
4164
+ msgid "Icon Group"
4165
+ msgstr "קבוצת אייקונים"
4166
+
4167
+ #: modules/icon-group/icon-group.php:15
4168
+ msgid "Display a group of linked Font Awesome icons."
4169
+ msgstr "הצג קבוצת אייקונים מקושרים של Font Awesome."
4170
+
4171
+ #: modules/icon-group/icon-group.php:125
4172
+ msgid "Add Icon"
4173
+ msgstr "הוסף אייקון"
4174
+
4175
+ #: modules/icon/icon.php:15
4176
+ msgid "Display an icon and optional title."
4177
+ msgstr "הצג אייקון וכותרת אופציונאלית"
4178
+
4179
+ #: modules/map/map.php:14
4180
+ msgid "Map"
4181
+ msgstr "מפה"
4182
+
4183
+ #: modules/map/map.php:15
4184
+ msgid "Display a Google map."
4185
+ msgstr "הצגת מפת גוגל."
4186
+
4187
+ #: modules/map/map.php:33
4188
+ msgid "Address"
4189
+ msgstr "כתובת"
4190
+
4191
+ #: modules/map/map.php:34
4192
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4193
+ msgstr "רוטשילד 52, תל אביב"
4194
+
4195
+ #: modules/menu/menu.php:14 modules/menu/menu.php:24 modules/menu/menu.php:62
4196
+ #: modules/menu/menu.php:69
4197
+ msgid "Menu"
4198
+ msgstr "תפריט"
4199
+
4200
+ #: modules/menu/menu.php:15
4201
+ msgid "Renders a WordPress menu."
4202
+ msgstr "מציג תפריט וורדפרס."
4203
+
4204
+ #: modules/menu/menu.php:25
4205
+ msgid ""
4206
+ "Select a WordPress menu that you created in the admin under Appearance > "
4207
+ "Menus."
4208
+ msgstr "בחר תפריט וורדפרס שיצרת באדמין תחת מראה > תפריטים."
4209
+
4210
+ #: modules/menu/menu.php:42
4211
+ msgid "No Menus Found"
4212
+ msgstr "לא נמצאו תפריטים"
4213
+
4214
+ #: modules/menu/menu.php:93 modules/tabs/tabs.php:55
4215
+ msgid "Horizontal"
4216
+ msgstr "אופקית"
4217
+
4218
+ #: modules/menu/menu.php:94 modules/tabs/tabs.php:56
4219
+ msgid "Vertical"
4220
+ msgstr "אנכית"
4221
+
4222
+ #: modules/menu/menu.php:96 modules/menu/menu.php:134
4223
+ msgid "Expanded"
4224
+ msgstr "מורחב"
4225
+
4226
+ #: modules/menu/menu.php:112
4227
+ msgid "Submenu Icon"
4228
+ msgstr "אייקון תת תפריט"
4229
+
4230
+ #: modules/menu/menu.php:115 modules/menu/menu.php:125
4231
+ msgid "Arrows"
4232
+ msgstr "חצים"
4233
+
4234
+ #: modules/menu/menu.php:116 modules/menu/menu.php:126
4235
+ msgid "Plus sign"
4236
+ msgstr "סימן פלוס"
4237
+
4238
+ #: modules/menu/menu.php:117 modules/menu/menu.php:245
4239
+ msgid "None"
4240
+ msgstr "ללא"
4241
+
4242
+ #: modules/menu/menu.php:122
4243
+ msgid "Submenu Icon click"
4244
+ msgstr "לחיצה על אייקון תת תפריט"
4245
+
4246
+ #: modules/menu/menu.php:131
4247
+ msgid "Mobile Style"
4248
+ msgstr "עיצוב מובייל"
4249
+
4250
+ #: modules/menu/menu.php:135
4251
+ msgid "Hamburger Icon"
4252
+ msgstr "אייקון המבורגר"
4253
+
4254
+ #: modules/menu/menu.php:136
4255
+ msgid "Hamburger Icon + Label"
4256
+ msgstr "אייקון המבורגר + תווית"
4257
+
4258
+ #: modules/menu/menu.php:137
4259
+ msgid "Menu Button"
4260
+ msgstr "כפתור תפריט"
4261
+
4262
+ #: modules/menu/menu.php:150
4263
+ msgid "Mobile Width"
4264
+ msgstr "רוחב מובייל"
4265
+
4266
+ #: modules/menu/menu.php:151
4267
+ msgid ""
4268
+ "Choose Full Width if you want the menu to span the width of the screen on "
4269
+ "mobile devices."
4270
+ msgstr "בחר ברוחב מלא אם אתה רוצה שהתפריט ישתרע לכל רוחב המסך במכשירים ניידים."
4271
+
4272
+ #: modules/menu/menu.php:175
4273
+ msgid "Menu Alignment"
4274
+ msgstr "יישור תפריט"
4275
+
4276
+ #: modules/menu/menu.php:186
4277
+ msgid "Submenu Drop Shadow"
4278
+ msgstr "הצללת תת תפריט"
4279
+
4280
+ #: modules/menu/menu.php:228
4281
+ msgid "Link Size"
4282
+ msgstr "גודל קישור"
4283
+
4284
+ #: modules/menu/menu.php:242
4285
+ msgid "Link Format"
4286
+ msgstr "פורמט קישור"
4287
+
4288
+ #: modules/menu/menu.php:246
4289
+ msgid "Uppercase"
4290
+ msgstr "אותיות גדולות"
4291
+
4292
+ #: modules/menu/menu.php:247
4293
+ msgid "Lowercase"
4294
+ msgstr "אותיות קטנות"
4295
+
4296
+ #: modules/menu/menu.php:248
4297
+ msgid "Capitalize"
4298
+ msgstr "אות תחילית גדולה"
4299
+
4300
+ #: modules/menu/menu.php:258
4301
+ msgid "Link Weight"
4302
+ msgstr "משקל קישור"
4303
+
4304
+ #: modules/menu/menu.php:261
4305
+ msgid "Normal"
4306
+ msgstr "רגיל"
4307
+
4308
+ #: modules/menu/menu.php:262
4309
+ msgid "Bold"
4310
+ msgstr "בולט"
4311
+
4312
+ #: modules/menu/menu.php:263
4313
+ msgid "Light"
4314
+ msgstr "קל"
4315
+
4316
+ #: modules/menu/menu.php:273
4317
+ msgid "Horizontal Spacing"
4318
+ msgstr "ריווח אופקי"
4319
+
4320
+ #: modules/menu/menu.php:296
4321
+ msgid "Vertical Spacing"
4322
+ msgstr "ריווח אנכי"
4323
+
4324
+ #: modules/menu/menu.php:321
4325
+ msgid "Backgrounds"
4326
+ msgstr "רקעים"
4327
+
4328
+ #: modules/menu/menu.php:325
4329
+ msgid "Menu Background Color"
4330
+ msgstr "צבע רקע תפריט"
4331
+
4332
+ #: modules/menu/menu.php:335
4333
+ msgid "Menu Background Color (Mobile)"
4334
+ msgstr "צבע רקע תפריט (מובייל)"
4335
+
4336
+ #: modules/menu/menu.php:340
4337
+ msgid "Menu Background Opacity"
4338
+ msgstr "שקיפות צבע רקע תפריט"
4339
+
4340
+ #: modules/menu/menu.php:348
4341
+ msgid "Submenu Background Color"
4342
+ msgstr "צבע רקע תת תפריט"
4343
+
4344
+ #: modules/menu/menu.php:359
4345
+ msgid "Submenu Background Opacity"
4346
+ msgstr "שקיפות צבע רקע תת תפריט"
4347
+
4348
+ #: modules/menu/menu.php:368
4349
+ msgid "Link Background Hover Color"
4350
+ msgstr "צבע רקע לקישור במעבר עכבר"
4351
+
4352
+ #: modules/menu/menu.php:379 modules/separator/separator.php:14
4353
+ msgid "Separator"
4354
+ msgstr "מפריד"
4355
+
4356
+ #: modules/menu/menu.php:383
4357
+ msgid "Show Separators"
4358
+ msgstr "הצג מפרידים"
4359
+
4360
+ #: modules/menu/menu.php:397
4361
+ msgid "Separator Color"
4362
+ msgstr "צבע המפריד"
4363
+
4364
+ #: modules/menu/menu.php:402
4365
+ msgid "Separator Opacity"
4366
+ msgstr "שקיפות המפריד"
4367
+
4368
+ #: modules/numbers/numbers.php:14
4369
+ msgid "Number Counter"
4370
+ msgstr "מונה מספרים"
4371
+
4372
+ #: modules/numbers/numbers.php:15
4373
+ msgid "Renders an animated number counter."
4374
+ msgstr "מרונדר כמונה מספרים עם אנימציה"
4375
+
4376
+ #: modules/numbers/numbers.php:68
4377
+ msgid "Only Numbers"
4378
+ msgstr "מספרים בלבד"
4379
+
4380
+ #: modules/numbers/numbers.php:69
4381
+ msgid "Circle Counter"
4382
+ msgstr "מונה עגול"
4383
+
4384
+ #: modules/numbers/numbers.php:70
4385
+ msgid "Bars Counter"
4386
+ msgstr "מונה רצועות"
4387
+
4388
+ #: modules/numbers/numbers.php:87
4389
+ msgid "Number Type"
4390
+ msgstr "סוג המספר"
4391
+
4392
+ #: modules/numbers/numbers.php:90
4393
+ msgid "Percent"
4394
+ msgstr "אחוז"
4395
+
4396
+ #: modules/numbers/numbers.php:91
4397
+ msgid "Standard"
4398
+ msgstr "רגיל"
4399
+
4400
+ #: modules/numbers/numbers.php:101
4401
+ msgid "Number"
4402
+ msgstr "מספר"
4403
+
4404
+ #: modules/numbers/numbers.php:107
4405
+ msgid "Total"
4406
+ msgstr "סה”כ"
4407
+
4408
+ #: modules/numbers/numbers.php:109
4409
+ msgid ""
4410
+ "The total number of units for this counter. For example, if the Number is "
4411
+ "set to 250 and the Total is set to 500, the counter will animate to 50%."
4412
+ msgstr ""
4413
+ "המספר הכולל של יחידות עבור המונה. לדוגמה, אם המספר מוגדר כ- 250 והסה”כ מוגדר "
4414
+ "כ- 500, המונה ינפיש מילוי עד 50%."
4415
+
4416
+ #: modules/numbers/numbers.php:113
4417
+ msgid "Text Before Number"
4418
+ msgstr "טקסט לפני המספר"
4419
+
4420
+ #: modules/numbers/numbers.php:115
4421
+ msgid "Text to appear above the number. Leave it empty for none."
4422
+ msgstr "טקסט שיופיע מעל המספר. השאר אותו ריק בשביל לא להציג כלל."
4423
+
4424
+ #: modules/numbers/numbers.php:119
4425
+ msgid "Text After Number"
4426
+ msgstr "טקסט לאחר מספר"
4427
+
4428
+ #: modules/numbers/numbers.php:121
4429
+ msgid "Text to appear after the number. Leave it empty for none."
4430
+ msgstr "הטקסט שיופיע אחרי המספר. השאר אותו ריק בשביל לא להציג כלל."
4431
+
4432
+ #: modules/numbers/numbers.php:125
4433
+ msgid "Number Prefix"
4434
+ msgstr "קידומת מספר"
4435
+
4436
+ #: modules/numbers/numbers.php:127
4437
+ msgid "For example, if your number is US$ 10, your prefix would be \"US$ \"."
4438
+ msgstr "לדוגמה, אם המספר שלך הוא US$ 10, קידומת שלך תהיה \"US$\"."
4439
+
4440
+ #: modules/numbers/numbers.php:131
4441
+ msgid "Number Suffix"
4442
+ msgstr "סיומת מספר"
4443
+
4444
+ #: modules/numbers/numbers.php:133
4445
+ msgid "For example, if your number is 10%, your prefix would be \"%\"."
4446
+ msgstr "לדוגמה, אם המספר שלך הוא 10%, הסיומת שלך תהיה “%”."
4447
+
4448
+ #: modules/numbers/numbers.php:137
4449
+ msgid "Animation Speed"
4450
+ msgstr "מהירות ההנפשה"
4451
+
4452
+ #: modules/numbers/numbers.php:140 modules/numbers/numbers.php:148
4453
+ msgid "second(s)"
4454
+ msgstr "שניות"
4455
+
4456
+ #: modules/numbers/numbers.php:141
4457
+ msgid "Number of seconds to complete the animation."
4458
+ msgstr "מספר שניות כדי להשלים את ההנפשה."
4459
+
4460
+ #: modules/numbers/numbers.php:145
4461
+ msgid "Animation Delay"
4462
+ msgstr "השהיית ההנפשה"
4463
+
4464
+ #: modules/numbers/numbers.php:172
4465
+ msgid "Number Color"
4466
+ msgstr "צבע המספר"
4467
+
4468
+ #: modules/numbers/numbers.php:182
4469
+ msgid "Number Size"
4470
+ msgstr "גודל המספר"
4471
+
4472
+ #: modules/numbers/numbers.php:197
4473
+ msgid "Circle Bar Styles"
4474
+ msgstr "עיצוב עיגול המונה"
4475
+
4476
+ #: modules/numbers/numbers.php:201
4477
+ msgid "Cirle Size"
4478
+ msgstr "גודל עיגול"
4479
+
4480
+ #: modules/numbers/numbers.php:225
4481
+ msgid "Cirle Stroke Size"
4482
+ msgstr "גודל מכחול לעיגול"
4483
+
4484
+ #: modules/numbers/numbers.php:239
4485
+ msgid "Circle Foreground Color"
4486
+ msgstr "צבע עיגול"
4487
+
4488
+ #: modules/numbers/numbers.php:250
4489
+ msgid "Circle Background Color"
4490
+ msgstr "צבע רקע עיגול"
4491
+
4492
+ #: modules/numbers/numbers.php:262
4493
+ msgid "Bar Styles"
4494
+ msgstr "עיצוב מונה רצועות"
4495
+
4496
+ #: modules/numbers/numbers.php:266
4497
+ msgid "Bar Foreground Color"
4498
+ msgstr "צבע רצועה"
4499
+
4500
+ #: modules/numbers/numbers.php:277
4501
+ msgid "Bar Background Color"
4502
+ msgstr "צבע רקע רצועה"
4503
+
4504
+ #: modules/photo/photo.php:26
4505
+ msgid "Upload a photo or display one from the media library."
4506
+ msgstr "העלה או בחר תמונה מספריית המדיה שלך."
4507
+
4508
+ #: modules/photo/photo.php:391
4509
+ msgid "Photo Source"
4510
+ msgstr "מקור התמונה"
4511
+
4512
+ #: modules/photo/photo.php:395 modules/photo/photo.php:467
4513
+ msgid "URL"
4514
+ msgstr "כתובת URL"
4515
+
4516
+ #: modules/photo/photo.php:412
4517
+ msgid "Photo URL"
4518
+ msgstr "כתובת URL של התמונה"
4519
+
4520
+ #: modules/photo/photo.php:413
4521
+ msgid "http://www.example.com/my-photo.jpg"
4522
+ msgstr "http://www.example.com/my-photo.jpg"
4523
+
4524
+ #: modules/photo/photo.php:441 modules/photo/photo.php:455
4525
+ msgid "Caption"
4526
+ msgstr "כיתוב"
4527
+
4528
+ #: modules/photo/photo.php:445
4529
+ msgid "Show Caption"
4530
+ msgstr "הצג כיתוב"
4531
+
4532
+ #: modules/photo/photo.php:464
4533
+ msgid "Link Type"
4534
+ msgstr "סוג קישור"
4535
+
4536
+ #: modules/photo/photo.php:466
4537
+ msgctxt "Link type."
4538
+ msgid "None"
4539
+ msgstr "ללא"
4540
+
4541
+ #: modules/photo/photo.php:469
4542
+ msgid "Photo File"
4543
+ msgstr "קובץ תמונה"
4544
+
4545
+ #: modules/photo/photo.php:480
4546
+ msgid ""
4547
+ "Link type applies to how the image should be linked on click. You can choose "
4548
+ "a specific URL, the individual photo or a separate page with the photo."
4549
+ msgstr ""
4550
+ "סוג הקישור קובע לאן התמונה תקושר בלחיצת עכבר. באפשרותך לבחור URL ספציפי, "
4551
+ "התמונה עצמה או עמוד נפרד עם התמונה."
4552
+
4553
+ #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
4554
+ msgid "Link URL"
4555
+ msgstr "כתובת URL של הקישור"
4556
+
4557
+ #: modules/post-carousel/includes/post-gallery-loop.php:35
4558
+ #: modules/post-carousel/includes/post-grid-loop.php:22
4559
+ #: modules/post-grid/includes/post-feed.php:14
4560
+ #: modules/post-grid/includes/post-grid.php:24
4561
+ #: modules/post-slider/includes/post-loop.php:29
4562
+ #, php-format
4563
+ msgctxt "%s stands for author name."
4564
+ msgid "By %s"
4565
+ msgstr "מאת %s"
4566
+
4567
+ #: modules/post-carousel/post-carousel.php:14
4568
+ msgid "Posts Carousel"
4569
+ msgstr "קרוסלת פוסטים"
4570
+
4571
+ #: modules/post-carousel/post-carousel.php:15
4572
+ msgid "Display a carousel of your WordPress posts."
4573
+ msgstr "הצג קרוסלה של הפוסטים שלך מוורדפרס."
4574
+
4575
+ #: modules/post-carousel/post-carousel.php:111
4576
+ #: modules/post-slider/post-slider.php:338
4577
+ msgid "Slider"
4578
+ msgstr "סליידר"
4579
+
4580
+ #: modules/post-carousel/post-carousel.php:121
4581
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:91
4582
+ msgid "Grid"
4583
+ msgstr "רשת"
4584
+
4585
+ #: modules/post-carousel/post-carousel.php:153
4586
+ #: modules/post-slider/post-slider.php:379 modules/video/video.php:120
4587
+ msgid "Loop"
4588
+ msgstr "ניגון חוזר בלולאה"
4589
+
4590
+ #: modules/post-carousel/post-carousel.php:169
4591
+ #: modules/post-slider/post-slider.php:395
4592
+ msgid "Number of Posts"
4593
+ msgstr "מספר הפוסטים"
4594
+
4595
+ #: modules/post-carousel/post-carousel.php:176
4596
+ #: modules/post-slider/post-slider.php:402
4597
+ msgid "Slider Controls"
4598
+ msgstr "פקדי סליידר"
4599
+
4600
+ #: modules/post-carousel/post-carousel.php:210
4601
+ #: modules/post-grid/post-grid.php:14
4602
+ msgid "Posts"
4603
+ msgstr "פוסטים"
4604
+
4605
+ #: modules/post-carousel/post-carousel.php:214
4606
+ msgid "Post Max Width"
4607
+ msgstr "רוחב מקסימלי לפוסט"
4608
+
4609
+ #: modules/post-carousel/post-carousel.php:222
4610
+ #: modules/post-grid/post-grid.php:103
4611
+ msgid "Post Spacing"
4612
+ msgstr "ריווח פוסט"
4613
+
4614
+ #: modules/post-carousel/post-carousel.php:239
4615
+ msgid "Post Hover Transition"
4616
+ msgstr "שינוי פוסט במעבר עכבר"
4617
+
4618
+ #: modules/post-carousel/post-carousel.php:243
4619
+ #: modules/post-grid/post-grid.php:248
4620
+ msgid "Slide Up"
4621
+ msgstr "גלישה מעלה"
4622
+
4623
+ #: modules/post-carousel/post-carousel.php:244
4624
+ #: modules/post-grid/post-grid.php:249
4625
+ msgid "Slide Down"
4626
+ msgstr "גלישה מטה"
4627
+
4628
+ #: modules/post-carousel/post-carousel.php:245
4629
+ #: modules/post-grid/post-grid.php:250
4630
+ msgid "Scale Up"
4631
+ msgstr "גדול (scale) מעלה"
4632
+
4633
+ #: modules/post-carousel/post-carousel.php:246
4634
+ #: modules/post-grid/post-grid.php:251
4635
+ msgid "Scale Down"
4636
+ msgstr "גדול (scale) מטה"
4637
+
4638
+ #: modules/post-carousel/post-carousel.php:252
4639
+ #: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:456
4640
+ msgid "Featured Image"
4641
+ msgstr "תמונה ראשית"
4642
+
4643
+ #: modules/post-carousel/post-carousel.php:293
4644
+ #: modules/post-grid/post-grid.php:261
4645
+ msgid "Use Icon for Posts"
4646
+ msgstr "השתמש באייקון עבור פוסטים"
4647
+
4648
+ #: modules/post-carousel/post-carousel.php:307
4649
+ #: modules/post-grid/post-grid.php:275
4650
+ msgid "Post Icon"
4651
+ msgstr "אייקון פוסט"
4652
+
4653
+ #: modules/post-carousel/post-carousel.php:311
4654
+ #: modules/post-grid/post-grid.php:279
4655
+ msgid "Post Icon Position"
4656
+ msgstr "מיקום אייקון פוסט"
4657
+
4658
+ #: modules/post-carousel/post-carousel.php:314
4659
+ #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
4660
+ msgid "Above Text"
4661
+ msgstr "מעל הטקסט"
4662
+
4663
+ #: modules/post-carousel/post-carousel.php:315
4664
+ #: modules/post-grid/post-grid.php:283
4665
+ msgid "Below Text"
4666
+ msgstr "מתחת לטקסט"
4667
+
4668
+ #: modules/post-carousel/post-carousel.php:320
4669
+ #: modules/post-grid/post-grid.php:288
4670
+ msgid "Post Icon Size"
4671
+ msgstr "גודל אייקון פוסט"
4672
+
4673
+ #: modules/post-carousel/post-carousel.php:329
4674
+ #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:495
4675
+ msgid "Post Info"
4676
+ msgstr "מידע על פוסט"
4677
+
4678
+ #: modules/post-carousel/post-carousel.php:356
4679
+ #: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:522
4680
+ msgid "Date Format"
4681
+ msgstr "פורמט תאריך"
4682
+
4683
+ #: modules/post-carousel/post-carousel.php:386
4684
+ #: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:561
4685
+ msgid "More Link"
4686
+ msgstr "קישור קרא עוד"
4687
+
4688
+ #: modules/post-carousel/post-carousel.php:395
4689
+ #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:570
4690
+ msgid "More Link Text"
4691
+ msgstr "טקסט קישור קרא עוד"
4692
+
4693
+ #: modules/post-carousel/post-carousel.php:432
4694
+ #: modules/post-grid/post-grid.php:307
4695
+ msgid "Post Icon Color"
4696
+ msgstr "צבע אייקון פוסט"
4697
+
4698
+ #: modules/post-grid/includes/frontend.php:41
4699
+ msgid "No posts found."
4700
+ msgstr "לא נמצאו פוסטים."
4701
+
4702
+ #: modules/post-grid/post-grid.php:15
4703
+ msgid "Display a grid of your WordPress posts."
4704
+ msgstr "הצג רשת של הפוסטים שלך בוורדפרס."
4705
+
4706
+ #: modules/post-grid/post-grid.php:51
4707
+ msgid "Layout Style"
4708
+ msgstr "סגנון הפריסה"
4709
+
4710
+ #: modules/post-grid/post-grid.php:56
4711
+ msgid "Feed"
4712
+ msgstr "פיד"
4713
+
4714
+ #: modules/post-grid/post-grid.php:74
4715
+ msgid "Pagination Style"
4716
+ msgstr "סגנון עימוד"
4717
+
4718
+ #: modules/post-grid/post-grid.php:77
4719
+ msgid "Numbers"
4720
+ msgstr "מספרים"
4721
+
4722
+ #: modules/post-grid/post-grid.php:79
4723
+ msgctxt "Pagination style."
4724
+ msgid "None"
4725
+ msgstr "ללא"
4726
+
4727
+ #: modules/post-grid/post-grid.php:84
4728
+ msgid "Posts Per Page"
4729
+ msgstr "פוסטים בכל עמוד"
4730
+
4731
+ #: modules/post-grid/post-grid.php:95
4732
+ msgid "Post Width"
4733
+ msgstr "רוחב פוסט"
4734
+
4735
+ #: modules/post-grid/post-grid.php:134
4736
+ msgid "Beside Text"
4737
+ msgstr "לצד הטקסט"
4738
+
4739
+ #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:538
4740
+ msgid "Comments"
4741
+ msgstr "תגובות"
4742
+
4743
+ #: modules/post-grid/post-grid.php:211
4744
+ msgid "Content Type"
4745
+ msgstr "סוג תוכן"
4746
+
4747
+ #: modules/post-grid/post-grid.php:214
4748
+ msgid "Excerpt"
4749
+ msgstr "תקציר"
4750
+
4751
+ #: modules/post-grid/post-grid.php:215
4752
+ msgid "Full Text"
4753
+ msgstr "טקסט מלא"
4754
+
4755
+ #: modules/post-grid/post-grid.php:244
4756
+ msgid "Hover Transition"
4757
+ msgstr "שינוי במעבר עכבר"
4758
+
4759
+ #: modules/post-slider/post-slider.php:14
4760
+ msgid "Posts Slider"
4761
+ msgstr "סליידר פוסטים"
4762
+
4763
+ #: modules/post-slider/post-slider.php:15
4764
+ msgid "Display a slider of your WordPress posts."
4765
+ msgstr "הצג סליידר עם הפוסטים שלך מוורדפרס."
4766
+
4767
+ #: modules/post-slider/post-slider.php:350
4768
+ msgid ""
4769
+ "This setting is the minimum height of the post slider. Content will expand "
4770
+ "the height automatically."
4771
+ msgstr ""
4772
+ "הגדרה זו מגדירה את הגובה המינימלי של הסליידר. התוכן בכל סלייד ירחיב באופן "
4773
+ "אוטומטי את הגובה."
4774
+
4775
+ #: modules/post-slider/post-slider.php:440
4776
+ msgid "Show Featured Image?"
4777
+ msgstr "הצג תמונה ראשית?"
4778
+
4779
+ #: modules/post-slider/post-slider.php:628
4780
+ msgid ""
4781
+ "The position will move the content layout selections left, right or bottom "
4782
+ "over the background of the slide."
4783
+ msgstr "המיקום יזיז את פריסת התוכן שמאלה, ימינה או ימרכז אותו בשקופית."
4784
+
4785
+ #: modules/post-slider/post-slider.php:647
4786
+ msgid ""
4787
+ "The position will move the content layout selections left or right or center "
4788
+ "of the thumbnail of the slide."
4789
+ msgstr "המיקום יזיז את פריסת התוכן שמאלה, ימינה או ימרכז אותו בשקופית."
4790
+
4791
+ #: modules/post-slider/post-slider.php:663
4792
+ msgid "Text Width"
4793
+ msgstr "רוחב טקסט"
4794
+
4795
+ #: modules/post-slider/post-slider.php:671
4796
+ msgid "Text Padding"
4797
+ msgstr "ריפוד טקסט (Padding)"
4798
+
4799
+ #: modules/post-slider/post-slider.php:736
4800
+ msgid "Text Background Gradient"
4801
+ msgstr "מעבר צבע (Gradient) לרקע טקסט"
4802
+
4803
+ #: modules/pricing-table/pricing-table.php:14
4804
+ msgid "Pricing Table"
4805
+ msgstr "טבלת מחירים"
4806
+
4807
+ #: modules/pricing-table/pricing-table.php:15
4808
+ msgid "A simple pricing table generator."
4809
+ msgstr "מחולל טבלת מחירים פשוטה."
4810
+
4811
+ #: modules/pricing-table/pricing-table.php:26
4812
+ msgid "Pricing Boxes"
4813
+ msgstr "תיבות מחירים"
4814
+
4815
+ #: modules/pricing-table/pricing-table.php:33
4816
+ msgid "Pricing Box"
4817
+ msgstr "תיבת מחיר"
4818
+
4819
+ #: modules/pricing-table/pricing-table.php:50
4820
+ msgid "Box Spacing"
4821
+ msgstr "ריווח תיבה"
4822
+
4823
+ #: modules/pricing-table/pricing-table.php:53
4824
+ #: modules/testimonials/testimonials.php:40
4825
+ msgid "Wide"
4826
+ msgstr "רחב"
4827
+
4828
+ #: modules/pricing-table/pricing-table.php:54
4829
+ msgid "Tight"
4830
+ msgstr "צר"
4831
+
4832
+ #: modules/pricing-table/pricing-table.php:59
4833
+ msgid "Features Min Height"
4834
+ msgstr "גובה מינימאלי לתכונות"
4835
+
4836
+ #: modules/pricing-table/pricing-table.php:63
4837
+ msgid ""
4838
+ "Use this to normalize the height of your boxes when they have different "
4839
+ "numbers of features."
4840
+ msgstr ""
4841
+ "השתמש באפשרות זו כדי לנרמל את הגובה של תיבות שלך כאשר יש להם מספרים שונים של "
4842
+ "תכונות."
4843
+
4844
+ #: modules/pricing-table/pricing-table.php:70
4845
+ msgctxt "Border size."
4846
+ msgid "Wide"
4847
+ msgstr "רחב"
4848
+
4849
+ #: modules/pricing-table/pricing-table.php:71
4850
+ msgctxt "Border size."
4851
+ msgid "Tight"
4852
+ msgstr "צר"
4853
+
4854
+ #: modules/pricing-table/pricing-table.php:84
4855
+ msgid "Add Pricing Box"
4856
+ msgstr "הוסף תיבת מחיר"
4857
+
4858
+ #: modules/pricing-table/pricing-table.php:98
4859
+ msgid "Title Size"
4860
+ msgstr "גודל כותרת"
4861
+
4862
+ #: modules/pricing-table/pricing-table.php:107
4863
+ msgid "Price Box"
4864
+ msgstr "תיבת מחיר"
4865
+
4866
+ #: modules/pricing-table/pricing-table.php:111
4867
+ #: modules/woocommerce/woocommerce.php:190
4868
+ msgid "Price"
4869
+ msgstr "מחיר"
4870
+
4871
+ #: modules/pricing-table/pricing-table.php:115
4872
+ msgid "Duration"
4873
+ msgstr "תקופה"
4874
+
4875
+ #: modules/pricing-table/pricing-table.php:116
4876
+ msgid "per Year"
4877
+ msgstr "לשנה"
4878
+
4879
+ #: modules/pricing-table/pricing-table.php:120
4880
+ msgid "Price Size"
4881
+ msgstr "גודל מחיר"
4882
+
4883
+ #: modules/pricing-table/pricing-table.php:133
4884
+ #: modules/subscribe-form/subscribe-form.php:168
4885
+ msgid "Button Text"
4886
+ msgstr "טקסט כפתור"
4887
+
4888
+ #: modules/pricing-table/pricing-table.php:137
4889
+ msgid "Button URL"
4890
+ msgstr "‏URL לכפתור"
4891
+
4892
+ #: modules/pricing-table/pricing-table.php:142
4893
+ msgctxt "Price features displayed in pricing box."
4894
+ msgid "Features"
4895
+ msgstr "תכונות"
4896
+
4897
+ #: modules/pricing-table/pricing-table.php:147
4898
+ msgid "One feature per line. HTML is okay."
4899
+ msgstr "תכונה אחת בכל שורה. ניתן להזין גם HTML."
4900
+
4901
+ #: modules/pricing-table/pricing-table.php:162
4902
+ msgid "Box Background"
4903
+ msgstr "רקע תיבה"
4904
+
4905
+ #: modules/pricing-table/pricing-table.php:167
4906
+ msgid "Box Foreground"
4907
+ msgstr "צבע תיבה"
4908
+
4909
+ #: modules/pricing-table/pricing-table.php:173
4910
+ msgid "Accent Color"
4911
+ msgstr "צבע הדגשה"
4912
+
4913
+ #: modules/pricing-table/pricing-table.php:178
4914
+ msgid "Accent Text Color"
4915
+ msgstr "צבע טקסט מודגש"
4916
+
4917
+ #: modules/pricing-table/pricing-table.php:182
4918
+ msgid "Box Top Margin"
4919
+ msgstr "שוליים עליונים בתיבה"
4920
+
4921
+ #: modules/rich-text/rich-text.php:15
4922
+ msgid "A WYSIWYG text editor."
4923
+ msgstr "עורך WYSIWYG."
4924
+
4925
+ #: modules/separator/separator.php:15
4926
+ msgid "A divider line to separate content."
4927
+ msgstr "קו הפרדה כדי להפריד בין תוכן."
4928
+
4929
+ #: modules/separator/separator.php:85
4930
+ msgid ""
4931
+ "The type of border to use. Double borders must have a height of at least 3px "
4932
+ "to render properly."
4933
+ msgstr ""
4934
+ "סוג הגבול לשימוש. גבול כפול חייב להיות ברוחב של לפחות 3px בכדי שיוצג כראוי."
4935
+
4936
+ #: modules/sidebar/includes/settings-general.php:5
4937
+ #: modules/sidebar/sidebar.php:14
4938
+ msgid "Sidebar"
4939
+ msgstr "סרגל צד"
4940
+
4941
+ #: modules/sidebar/sidebar.php:15
4942
+ msgid ""
4943
+ "Display a WordPress sidebar that has been registered by the current theme."
4944
+ msgstr "הצג סרגל צד של וורדפרס שנרשם ע”י התבנית הנוכחית."
4945
+
4946
+ #: modules/slideshow/slideshow.php:14
4947
+ msgid "Slideshow"
4948
+ msgstr "מצגת"
4949
+
4950
+ #: modules/slideshow/slideshow.php:15
4951
+ msgid "Display multiple photos in a slideshow view."
4952
+ msgstr "הצג תמונות מרובות בתצוגת שקופיות."
4953
+
4954
+ #: modules/slideshow/slideshow.php:310
4955
+ msgid "Skin Color"
4956
+ msgstr "גוון צבע"
4957
+
4958
+ #: modules/slideshow/slideshow.php:313
4959
+ msgctxt "Color."
4960
+ msgid "Light"
4961
+ msgstr "בהיר"
4962
+
4963
+ #: modules/slideshow/slideshow.php:314
4964
+ msgctxt "Color."
4965
+ msgid "Dark"
4966
+ msgstr "כהה"
4967
+
4968
+ #: modules/slideshow/slideshow.php:316
4969
+ msgid ""
4970
+ "If your overall theme/images are lighter in color, light will display "
4971
+ "buttons in a darker color scheme and vice versa for dark."
4972
+ msgstr ""
4973
+ "אם ערכת הנושא / התמונות בהירות יותר אז “בהיר” יציג את כפתורי המצגת בגוונים "
4974
+ "כהים יותר ולהיפך עבור “כהה”."
4975
+
4976
+ #: modules/slideshow/slideshow.php:326
4977
+ msgid ""
4978
+ "Crop set to no will fit the slideshow images to the height you specify and "
4979
+ "keep the width proportional, whereas crop set to yes will fit the slideshow "
4980
+ "images to all sides of the content area while cropping the left and right to "
4981
+ "fit the height you specify."
4982
+ msgstr ""
4983
+ "חיתוך שיוגדר ל-“לא” יתאים את התמונות במצגת לגובה שציינת וישמור את הרוחב "
4984
+ "פרופורציונלי, ואילו חיתוך שיוגדר ל-“כן” יתאים את התמונות במצגת לרוחב אזור "
4985
+ "התוכן תוך כדי חיתוך התמונה משמאל ומימין כדי להתאים את לגובה שציינת."
4986
+
4987
+ #: modules/slideshow/slideshow.php:330
4988
+ msgid "Disable Right-Click"
4989
+ msgstr "בטל אפשרות לחצן ימני בעכבר"
4990
+
4991
+ #: modules/slideshow/slideshow.php:350
4992
+ msgctxt "Click action type."
4993
+ msgid "None"
4994
+ msgstr "ללא"
4995
+
4996
+ #: modules/slideshow/slideshow.php:374
4997
+ msgid "Playback"
4998
+ msgstr "הרצה"
4999
+
5000
+ #: modules/slideshow/slideshow.php:400
5001
+ msgctxt "Slideshow transition."
5002
+ msgid "None"
5003
+ msgstr "ללא"
5004
+
5005
+ #: modules/slideshow/slideshow.php:437
5006
+ msgid "Controls"
5007
+ msgstr "פקדים"
5008
+
5009
+ #: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
5010
+ msgid "Navigation Arrows"
5011
+ msgstr "חצי ניווט"
5012
+
5013
+ #: modules/slideshow/slideshow.php:450
5014
+ msgid ""
5015
+ "Navigational arrows allow the visitor to freely move through the images in "
5016
+ "your slideshow. These are larger arrows that overlay your slideshow images "
5017
+ "and are separate from the control bar navigational arrows."
5018
+ msgstr ""
5019
+ "חיצי הניווט מאפשרים למבקרים לנוע בחופשיות דרך התמונות במצגת שלך. אלה חצים "
5020
+ "גדולים יותר מכיסוי המצגת והם נפרדים מהפקד בר ניווט החצים."
5021
+
5022
+ #: modules/slideshow/slideshow.php:455
5023
+ msgid "Control Bar"
5024
+ msgstr "שורת בקרה"
5025
+
5026
+ #: modules/slideshow/slideshow.php:459
5027
+ msgid "Nav Type"
5028
+ msgstr "סוג ניווט"
5029
+
5030
+ #: modules/slideshow/slideshow.php:462
5031
+ msgctxt "Nav type."
5032
+ msgid "None"
5033
+ msgstr "ללא"
5034
+
5035
+ #: modules/slideshow/slideshow.php:463
5036
+ msgid "Buttons"
5037
+ msgstr "כפתורים"
5038
+
5039
+ #: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
5040
+ msgid "Thumbs"
5041
+ msgstr "תמונות ממוזערות (Thumbs)"
5042
+
5043
+ #: modules/slideshow/slideshow.php:479
5044
+ msgid "Nav Position"
5045
+ msgstr "מיקום ניווט"
5046
+
5047
+ #: modules/slideshow/slideshow.php:489
5048
+ msgid "Control Bar Buttons"
5049
+ msgstr "כפתורי שורת בקרה"
5050
+
5051
+ #: modules/slideshow/slideshow.php:502
5052
+ msgid "Play Button"
5053
+ msgstr "כפתור ‘הפעל’"
5054
+
5055
+ #: modules/slideshow/slideshow.php:511
5056
+ msgid "Fullscreen Button"
5057
+ msgstr "כפתור מסך מלא"
5058
+
5059
+ #: modules/slideshow/slideshow.php:520
5060
+ msgid "Photo Count"
5061
+ msgstr "ספירת תמונות"
5062
+
5063
+ #: modules/slideshow/slideshow.php:529
5064
+ msgid "Thumbs Button"
5065
+ msgstr "כפתור תמונות ממוזערות (Thumbs)"
5066
+
5067
+ #: modules/slideshow/slideshow.php:538
5068
+ msgid "Caption Button"
5069
+ msgstr "כפתור כיתוב"
5070
+
5071
+ #: modules/slideshow/slideshow.php:547
5072
+ msgid "Social Button"
5073
+ msgstr "כפתור רשתות חברתיות"
5074
+
5075
+ #: modules/slideshow/slideshow.php:557
5076
+ msgid "Control Bar Overlay"
5077
+ msgstr "כיסוי שורת בקרה"
5078
+
5079
+ #: modules/slideshow/slideshow.php:561
5080
+ msgid "Overlay Enabled"
5081
+ msgstr "כיסוי מופעל"
5082
+
5083
+ #: modules/slideshow/slideshow.php:572
5084
+ msgid ""
5085
+ "Control bar overlay specifies if the control bar buttons you choose overlay "
5086
+ "your slideshow images or site below the slideshow completely."
5087
+ msgstr ""
5088
+ "כיסוי שורת בקרה מציין אם כפתורי שורת הבקרה יוצגו מעל תמונות המצגת או מתחת "
5089
+ "לתמונות."
5090
+
5091
+ #: modules/slideshow/slideshow.php:576
5092
+ msgid "Overlay Hide"
5093
+ msgstr "הסתר כיסוי"
5094
+
5095
+ #: modules/slideshow/slideshow.php:582
5096
+ msgid ""
5097
+ "Overlay hide will hide the control bar after however many seconds you "
5098
+ "specify below. They will reappear upon mouse over."
5099
+ msgstr ""
5100
+ "הסתר כיסוי יסתיר את כפתורי שורת הבקרה לאחר כמות השניות שתציין להלן. הכפתורים "
5101
+ "יופיעו שוב במעבר עכבר על המצגת."
5102
+
5103
+ #: modules/slideshow/slideshow.php:586
5104
+ msgid "Overlay Hide Delay"
5105
+ msgstr "השהיית הסתרה של הכיסוי"
5106
+
5107
+ #: modules/slideshow/slideshow.php:598
5108
+ msgid "Thumbs Size"
5109
+ msgstr "גודל תמונות ממוזערות (Thumbs)"
5110
+
5111
+ #: modules/slideshow/slideshow.php:607
5112
+ msgid "Social"
5113
+ msgstr "רשתות חברתיות"
5114
+
5115
+ #: modules/slideshow/slideshow.php:611
5116
+ msgid "Facebook Button"
5117
+ msgstr "כפתור פייסבוק"
5118
+
5119
+ #: modules/slideshow/slideshow.php:623
5120
+ msgid "Twitter Button"
5121
+ msgstr "כפתור טוויטר"
5122
+
5123
+ #: modules/slideshow/slideshow.php:635
5124
+ msgid "Google Plus Button"
5125
+ msgstr "כפתור גוגל פלוס"
5126
+
5127
+ #: modules/slideshow/slideshow.php:647
5128
+ msgid "Pinterest Button"
5129
+ msgstr "כפתור פינטרסט"
5130
+
5131
+ #: modules/social-buttons/social-buttons.php:14
5132
+ msgid "Social Buttons"
5133
+ msgstr "כפתורי רשתות חברתיות"
5134
+
5135
+ #: modules/social-buttons/social-buttons.php:15
5136
+ msgid "Displays social buttons."
5137
+ msgstr "הצג כפתורי רשתות חברתיות."
5138
+
5139
+ #: modules/social-buttons/social-buttons.php:71
5140
+ msgid "Target URL"
5141
+ msgstr "כתובת (URL) היעד"
5142
+
5143
+ #: modules/social-buttons/social-buttons.php:75
5144
+ msgid "Current Page"
5145
+ msgstr "עמוד נוכחי"
5146
+
5147
+ #: modules/social-buttons/social-buttons.php:82
5148
+ msgid ""
5149
+ "The Target URL field correlates to the page you would like your social icons "
5150
+ "to interface with. For example, if you show Facebook, the user will \"Like\" "
5151
+ "whatever you put in this field."
5152
+ msgstr ""
5153
+ "כתובת (URL) היעד מקושר לעמוד איתו תרצה שאייקוני הרשתות החברתיות יתממשקו. "
5154
+ "לדוגמה, אם תבחר בפייסבוק, המשתמש יעשה לייק למה ששמת בשדה הנ”ל."
5155
+
5156
+ #: modules/social-buttons/social-buttons.php:89
5157
+ msgid "Custom URL"
5158
+ msgstr "‏URL מותאם אישית"
5159
+
5160
+ #: modules/social-buttons/social-buttons.php:107
5161
+ msgid "Show Facebook"
5162
+ msgstr "הצג פייסבוק"
5163
+
5164
+ #: modules/social-buttons/social-buttons.php:116
5165
+ msgid "Show Twitter"
5166
+ msgstr "הצג טוויטר"
5167
+
5168
+ #: modules/social-buttons/social-buttons.php:125
5169
+ msgid "Show Google+"
5170
+ msgstr "הצג גוגל+"
5171
+
5172
+ #: modules/subscribe-form/includes/frontend.php:5
5173
+ msgctxt "First and last name."
5174
+ msgid "Name"
5175
+ msgstr "שם מלא"
5176
+
5177
+ #: modules/subscribe-form/includes/frontend.php:12
5178
+ msgid "Please enter a valid email address."
5179
+ msgstr "יש להזין כתובת דוא”ל חוקית"
5180
+
5181
+ #: modules/subscribe-form/includes/frontend.php:41
5182
+ msgid "Something went wrong. Please check your entries and try again."
5183
+ msgstr "משהו השתבש. נא בדוק את הערכים שהוזנו ונסה שוב."
5184
+
5185
+ #: modules/subscribe-form/subscribe-form.php:18
5186
+ msgid "Subscribe Form"
5187
+ msgstr "טופס הרשמה"
5188
+
5189
+ #: modules/subscribe-form/subscribe-form.php:19
5190
+ msgid "Adds a simple subscribe form to your layout."
5191
+ msgstr "מוסיף טופס הרשמה פשוט לפריסה שלך."
5192
+
5193
+ #: modules/subscribe-form/subscribe-form.php:118
5194
+ msgid "Success"
5195
+ msgstr "הצלחה"
5196
+
5197
+ #: modules/subscribe-form/subscribe-form.php:122
5198
+ msgid "Success Action"
5199
+ msgstr "פעולה בעת הצלחה"
5200
+
5201
+ #: modules/subscribe-form/subscribe-form.php:124
5202
+ msgid "Show Message"
5203
+ msgstr "הצג הודעה"
5204
+
5205
+ #: modules/subscribe-form/subscribe-form.php:125
5206
+ msgid "Redirect"
5207
+ msgstr "הפנה"
5208
+
5209
+ #: modules/subscribe-form/subscribe-form.php:144
5210
+ msgid ""
5211
+ "Thanks for subscribing! Please check your email for further instructions."
5212
+ msgstr "תודה על ההרשמה! אנא בדוק את הדואר האלקטרוני שלך לקבלת הוראות נוספות."
5213
+
5214
+ #: modules/subscribe-form/subscribe-form.php:151
5215
+ msgid "Success URL"
5216
+ msgstr "כתובת URL להפניה בהצלחה"
5217
+
5218
+ #: modules/subscribe-form/subscribe-form.php:169
5219
+ msgid "Subscribe!"
5220
+ msgstr "הירשם!"
5221
+
5222
+ #: modules/tabs/tabs.php:14
5223
+ msgid "Tabs"
5224
+ msgstr "טאבים"
5225
+
5226
+ #: modules/tabs/tabs.php:15
5227
+ msgid "Display a collection of tabbed content."
5228
+ msgstr "הצג אוסף של תכנים באמצעות כרטיסיות."
5229
+
5230
+ #: modules/testimonials/testimonials.php:14
5231
+ #: modules/testimonials/testimonials.php:60
5232
+ #: modules/testimonials/testimonials.php:174
5233
+ msgid "Testimonials"
5234
+ msgstr "המלצות"
5235
+
5236
+ #: modules/testimonials/testimonials.php:15
5237
+ msgid "An animated tesimonials area."
5238
+ msgstr "אזור המלצות מונפש."
5239
+
5240
+ #: modules/testimonials/testimonials.php:41
5241
+ msgid "Compact"
5242
+ msgstr "קומפקטי"
5243
+
5244
+ #: modules/testimonials/testimonials.php:51
5245
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
5246
+ msgstr ""
5247
+ "האופציה “רחב” היא עבור שורות עם עמודה אחת, “קומפקטי” היא עבור שורות בעלות "
5248
+ "מספר עמודות."
5249
+
5250
+ #: modules/testimonials/testimonials.php:78
5251
+ msgid "Slider Settings"
5252
+ msgstr "הגדרות סליידר"
5253
+
5254
+ #: modules/testimonials/testimonials.php:135
5255
+ msgid "Arrow Color"
5256
+ msgstr "צבע חץ"
5257
+
5258
+ #: modules/testimonials/testimonials.php:165
5259
+ msgid "Dot Color"
5260
+ msgstr "צבע נקודה"
5261
+
5262
+ #: modules/testimonials/testimonials.php:181
5263
+ msgid "Testimonial"
5264
+ msgstr "המלצה"
5265
+
5266
+ #: modules/testimonials/testimonials.php:197
5267
+ msgid "Add Testimonial"
5268
+ msgstr "הוסף המלצה"
5269
+
5270
+ #: modules/video/video.php:20
5271
+ msgid "Render a WordPress or embedable video."
5272
+ msgstr "רינדור וידאו בהטמעה או של וורדפרס."
5273
+
5274
+ #: modules/video/video.php:83
5275
+ msgid "Video Type"
5276
+ msgstr "סוג וידאו"
5277
+
5278
+ #: modules/video/video.php:87
5279
+ msgid "Embed"
5280
+ msgstr "מוטבע"
5281
+
5282
+ #: modules/video/video.php:104
5283
+ msgctxt "Video preview/fallback image."
5284
+ msgid "Poster"
5285
+ msgstr "תמונה מקדימה"
5286
+
5287
+ #: modules/widget/includes/frontend.php:35
5288
+ #: modules/widget/includes/settings-general.php:46
5289
+ #, php-format
5290
+ msgctxt "%s stands for widget slug."
5291
+ msgid "%s no longer exists."
5292
+ msgstr "‏%s אינו קיים יותר."
5293
+
5294
+ #: modules/widget/widget.php:14
5295
+ msgid "Widget"
5296
+ msgstr "ווידג’ט"
5297
+
5298
+ #: modules/widget/widget.php:15
5299
+ msgid "Display a WordPress widget."
5300
+ msgstr "הצג ווידג’ט של וורדפרס."
5301
+
5302
+ #: modules/woocommerce/woocommerce.php:16
5303
+ msgid "WooCommerce"
5304
+ msgstr "ווקומרס (WooCommerce)"
5305
+
5306
+ #: modules/woocommerce/woocommerce.php:17
5307
+ msgid "Display products or categories from your WooCommerce store."
5308
+ msgstr "הצג מוצרים או קטגוריות מחנות ה-WooCommerce שלך."
5309
+
5310
+ #: modules/woocommerce/woocommerce.php:61
5311
+ msgid "Single Product"
5312
+ msgstr "מוצר בודד"
5313
+
5314
+ #: modules/woocommerce/woocommerce.php:62
5315
+ #: modules/woocommerce/woocommerce.php:113
5316
+ msgid "Multiple Products"
5317
+ msgstr "מוצרים מרובים"
5318
+
5319
+ #: modules/woocommerce/woocommerce.php:63
5320
+ msgid "\"Add to Cart\" Button"
5321
+ msgstr "כפתור “הוסף לסל”"
5322
+
5323
+ #: modules/woocommerce/woocommerce.php:64
5324
+ msgid "Categories"
5325
+ msgstr "קטגוריות"
5326
+
5327
+ #: modules/woocommerce/woocommerce.php:65
5328
+ msgid "Cart"
5329
+ msgstr "סל קניות"
5330
+
5331
+ #: modules/woocommerce/woocommerce.php:66
5332
+ msgid "Checkout"
5333
+ msgstr "המשך לתשלום"
5334
+
5335
+ #: modules/woocommerce/woocommerce.php:67
5336
+ msgid "Order Tracking"
5337
+ msgstr "מעקב הזמנות"
5338
+
5339
+ #: modules/woocommerce/woocommerce.php:68
5340
+ msgid "My Account"
5341
+ msgstr "החשבון שלי"
5342
+
5343
+ #: modules/woocommerce/woocommerce.php:87
5344
+ msgid "Product ID"
5345
+ msgstr "מזהה מוצר"
5346
+
5347
+ #: modules/woocommerce/woocommerce.php:90
5348
+ msgid ""
5349
+ "As you add products in the WooCommerce Products area, each will be assigned "
5350
+ "a unique ID. You can find this unique product ID by visiting the Products "
5351
+ "area and rolling over the product. The unique ID will be the first attribute."
5352
+ msgstr ""
5353
+ "כאשר אתה מוסיף מוצרים בחנות ה-WooCommerce שלך, כל מוצר מקבל מזהה יחודי. תוכל "
5354
+ "למצוא מזהה זה על ידי ביקור בעמוד המוצרים וסימון המוצר עם העכבר. המזהה "
5355
+ "הייחודי יהיה התכונה הראשונה."
5356
+
5357
+ #: modules/woocommerce/woocommerce.php:94
5358
+ msgid "Parent Category ID"
5359
+ msgstr "מזהה קטגוריית אב"
5360
+
5361
+ #: modules/woocommerce/woocommerce.php:97
5362
+ msgid ""
5363
+ "As you add product categories in the WooCommerce Products area, each will be "
5364
+ "assigned a unique ID. This ID can be found by hovering on the category in "
5365
+ "the categories area under Products and looking in the URL that is displayed "
5366
+ "in your browser. The ID will be the only number value in the URL."
5367
+ msgstr ""
5368
+ "עם הוספת קטגוריות מוצר באזור המווצרים, לכל קטגוריה יוקצה מזהה ייחודי. מזהה "
5369
+ "זה ניתן למצוא על ידי ביקור באזור קטגוריות מוצרים והסתכלות על ה-url המוצג "
5370
+ "בדפדפן שלך. המזהה יהיה הערך המספרי היחיד בכתובת ה-URL."
5371
+
5372
+ #: modules/woocommerce/woocommerce.php:101
5373
+ #: modules/woocommerce/woocommerce.php:172
5374
+ msgid "Columns"
5375
+ msgstr "עמודות"
5376
+
5377
+ #: modules/woocommerce/woocommerce.php:117
5378
+ msgid "Products Source"
5379
+ msgstr "מקור המוצרים"
5380
+
5381
+ #: modules/woocommerce/woocommerce.php:120
5382
+ msgid "Products IDs"
5383
+ msgstr "מזהי מוצרים"
5384
+
5385
+ #: modules/woocommerce/woocommerce.php:121
5386
+ msgid "Product Category"
5387
+ msgstr "קטגוריית מוצר"
5388
+
5389
+ #: modules/woocommerce/woocommerce.php:122
5390
+ msgid "Recent Products"
5391
+ msgstr "מוצרים אחרונים"
5392
+
5393
+ #: modules/woocommerce/woocommerce.php:123
5394
+ msgid "Featured Products"
5395
+ msgstr "מוצרים מומלצים"
5396
+
5397
+ #: modules/woocommerce/woocommerce.php:124
5398
+ msgid "Sale Products"
5399
+ msgstr "מוצרים במבצע"
5400
+
5401
+ #: modules/woocommerce/woocommerce.php:125
5402
+ msgid "Best Selling Products"
5403
+ msgstr "המוצרים הנמכרים ביותר"
5404
+
5405
+ #: modules/woocommerce/woocommerce.php:126
5406
+ msgid "Top Rated Products"
5407
+ msgstr "מוצרים בעלי הדירוג הגבוה ביותר"
5408
+
5409
+ #: modules/woocommerce/woocommerce.php:154
5410
+ msgid "Product IDs"
5411
+ msgstr "מזהי המוצר"
5412
+
5413
+ #: modules/woocommerce/woocommerce.php:156
5414
+ msgid ""
5415
+ "As you add products in the WooCommerce Products area, each will be assigned "
5416
+ "a unique ID. You can find this unique product ID by visiting the Products "
5417
+ "area and rolling over the product. The unique ID will be the first attribute "
5418
+ "and you can add several here separated by a comma."
5419
+ msgstr ""
5420
+ "כאשר אתה מוסיף מוצרים בחנות ה-WooCommerce שלך, כל מוצר מקבל מזהה יחודי. תוכל "
5421
+ "למצוא מזהה זה על ידי ביקור בעמוד המוצרים וסימון המוצר עם העכבר. המזהה "
5422
+ "הייחודי יהיה התכונה הראשונה."
5423
+
5424
+ #: modules/woocommerce/woocommerce.php:160
5425
+ msgid "Category Slug"
5426
+ msgstr "סלאג ‪(‬slug‪)‬ קטגוריה"
5427
+
5428
+ #: modules/woocommerce/woocommerce.php:162
5429
+ msgid ""
5430
+ "As you add product categories in the WooCommerce Products area, each will be "
5431
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
5432
+ "found in the Categories area under WooCommerce Products. Several can be "
5433
+ "added here separated by a comma."
5434
+ msgstr ""
5435
+ "עם הוספת קטגוריות מוצר באזור המווצרים, לכל קטגוריה יוקצה סלאג ייחודי. סלאג "
5436
+ "זה ניתן למצוא על ידי ביקור באזור קטגוריות המוצרים. המזהה יהיה הערך המספרי "
5437
+ "היחיד בכתובת ה-URL."
5438
+
5439
+ #: modules/woocommerce/woocommerce.php:166
5440
+ msgid "Number of Products"
5441
+ msgstr "מספר המוצרים"
5442
+
5443
+ #: modules/woocommerce/woocommerce.php:183
5444
+ msgid "Sort By"
5445
+ msgstr "מיין לפי"
5446
+
5447
+ #: modules/woocommerce/woocommerce.php:186
5448
+ msgctxt "Sort by."
5449
+ msgid "Default"
5450
+ msgstr "ברירת מחדל"
5451
+
5452
+ #: modules/woocommerce/woocommerce.php:187
5453
+ msgid "Popularity"
5454
+ msgstr "פופולריות"
5455
+
5456
+ #: modules/woocommerce/woocommerce.php:188
5457
+ msgid "Rating"
5458
+ msgstr "דירוג"
5459
+
5460
+ #: modules/woocommerce/woocommerce.php:195
5461
+ msgid "Sort Direction"
5462
+ msgstr "כיוון מיון"
5463
+
5464
+ #~ msgctxt "Template edit form field label. Template name."
5465
+ #~ msgid "Name"
5466
+ #~ msgstr "שם"
5467
+
5468
+ #~ msgctxt "Templates list column label."
5469
+ #~ msgid "Name"
5470
+ #~ msgstr "שם"
languages/nl_NL.mo CHANGED
Binary file
languages/nl_NL.po CHANGED
@@ -2,21 +2,21 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-08-06 14:29+0100\n"
6
- "PO-Revision-Date: 2015-08-06 15:18+0100\n"
7
- "Last-Translator: Marcel Bootsman <marcel@nostromo.nl>\n"
8
  "Language-Team: \n"
9
  "Language: nl_NL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Generator: Poedit 1.7.5\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
17
  "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
18
  "_nx_noop:4c,1,2\n"
19
- "X-Poedit-Basepath: ../\n"
20
  "X-Textdomain-Support: yes\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
@@ -51,7 +51,8 @@ msgid "Modules"
51
  msgstr "Modules"
52
 
53
  # @ fl-builder
54
- #: classes/class-fl-builder-admin-settings.php:159 includes/ui.php:58
 
55
  msgid "Templates"
56
  msgstr "Templates"
57
 
@@ -59,7 +60,7 @@ msgstr "Templates"
59
  #: classes/class-fl-builder-admin-settings.php:163
60
  #: includes/admin-settings-post-types.php:3
61
  msgid "Post Types"
62
- msgstr "Post types"
63
 
64
  # @ fl-builder
65
  #: classes/class-fl-builder-admin-settings.php:167
@@ -83,7 +84,7 @@ msgstr "Merk"
83
  # @ fl-builder
84
  #: classes/class-fl-builder-admin-settings.php:179
85
  msgid "Help Button"
86
- msgstr "Help knop"
87
 
88
  #: classes/class-fl-builder-admin-settings.php:183
89
  #: includes/admin-settings-cache.php:3
@@ -95,33 +96,33 @@ msgstr "Cache"
95
  #: includes/admin-settings-uninstall.php:3
96
  #: includes/admin-settings-uninstall.php:15
97
  msgid "Uninstall"
98
- msgstr "Deïnstalleren"
99
 
100
  # @ fl-builder
101
  #: classes/class-fl-builder-admin-settings.php:439
102
  msgid "Error! You must have at least one icon set enabled."
103
- msgstr "Fout! Je moet ten minste één icoon-set activeren."
104
 
105
  # @ fl-builder
106
  #: classes/class-fl-builder-admin-settings.php:481
107
  msgid "Error! Could not unzip file."
108
- msgstr "Fout! Kon bestand niet uitpakken."
109
 
110
  # @ fl-builder
111
  #: classes/class-fl-builder-admin-settings.php:515
112
  msgid "Error! Please upload an icon set from either Icomoon or Fontello."
113
- msgstr "Fout! Upload aub een icoon-set van Icomoon of Fontello."
114
 
115
  # @ fl-builder
116
- #: classes/class-fl-builder-admin-settings.php:618
117
  msgid "Error! Please enter an iframe for the video embed code."
118
- msgstr "Fout! Geef aub een iframe voor de video embed-code."
119
 
120
  # @ fl-builder
121
- #: classes/class-fl-builder-admin-settings.php:636
122
  msgid "Error! You must have at least one feature of the help button enabled."
123
  msgstr ""
124
- "Fout! Je moet minstens één optie an de help button geselecteerd hebben."
125
 
126
  # @ fl-builder
127
  #: classes/class-fl-builder-admin.php:45
@@ -132,7 +133,7 @@ msgid ""
132
  "of this plugin."
133
  msgstr ""
134
  "Deze versie van de <strong>Page Builder</strong> plugin is niet compatible "
135
- "met WordPress Multisite. <a %s>Upgrade</a> aub naar de Multisite versie van "
136
  "deze plugin."
137
 
138
  # @ fl-builder
@@ -141,8 +142,8 @@ msgid ""
141
  "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
142
  "greater. Please update WordPress before activating the plugin."
143
  msgstr ""
144
- "De <strong>Page Builder</strong> plugin vereist WordPress versie 3.5 of "
145
- "later. Update WordPress voordat je de plugin activeert."
146
 
147
  # @ fl-builder
148
  #: classes/class-fl-builder-admin.php:112
@@ -155,16 +156,16 @@ msgstr ""
155
  #: classes/class-fl-builder-admin.php:238
156
  msgctxt "Plugin action link label."
157
  msgid "Upgrade"
158
- msgstr "Bijwerken"
159
 
160
  # @ fl-builder
161
  #: classes/class-fl-builder-admin.php:253
162
- #: classes/class-fl-builder-model.php:3156
163
  msgid "Page Builder"
164
  msgstr "Page Builder"
165
 
166
  # @ fl-builder
167
- #: classes/class-fl-builder-model.php:1616
168
  #, php-format
169
  msgctxt "%s stands for the module filename"
170
  msgid ""
@@ -175,22 +176,23 @@ msgstr ""
175
  "bestandsnaam aan te passen voor compatibiliteit met Beaver Builder."
176
 
177
  # @ fl-builder
178
- #: classes/class-fl-builder-model.php:1667
179
- #: classes/class-fl-builder-model.php:1728 modules/heading/heading.php:16
180
  #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
181
  #: modules/separator/separator.php:16 modules/video/video.php:21
182
  msgid "Basic Modules"
183
- msgstr "Basis modules"
184
 
185
  # @ fl-builder
186
- #: classes/class-fl-builder-model.php:1668
187
- #: classes/class-fl-builder-model.php:1729 modules/accordion/accordion.php:16
188
  #: modules/button/button.php:16 modules/callout/callout.php:16
189
  #: modules/contact-form/contact-form.php:16
190
  #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
191
  #: modules/gallery/gallery.php:16 modules/html/html.php:16
192
  #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
193
- #: modules/map/map.php:16 modules/post-carousel/post-carousel.php:16
 
194
  #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
195
  #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
196
  #: modules/slideshow/slideshow.php:16
@@ -199,51 +201,49 @@ msgstr "Basis modules"
199
  #: modules/testimonials/testimonials.php:16
200
  #: modules/woocommerce/woocommerce.php:18
201
  msgid "Advanced Modules"
202
- msgstr "Geavanceerde modules"
203
 
204
  # @ fl-builder
205
- #: classes/class-fl-builder-model.php:1669
206
- #: classes/class-fl-builder-model.php:1730
207
  msgid "Other Modules"
208
- msgstr "Andere modules"
209
 
210
  # @ fl-builder
211
- #: classes/class-fl-builder-model.php:1670
212
- #: classes/class-fl-builder-model.php:1731
213
- #: includes/admin-settings-modules.php:32 includes/ui.php:99
214
  #: modules/widget/widget.php:16
215
  msgid "WordPress Widgets"
216
- msgstr "WordPress widgets"
217
 
218
  # @ fl-builder
219
- #: classes/class-fl-builder-model.php:2320
220
  #, php-format
221
  msgctxt "%s stands for post/page title."
222
  msgid "Copy of %s"
223
  msgstr "Kopie van %s"
224
 
225
- # @ fl-builder
226
- #: classes/class-fl-builder-model.php:2758
227
  msgctxt "Default user template category."
228
  msgid "Uncategorized"
229
- msgstr "Geen categorie"
230
 
231
  # @ fl-builder
232
- #: classes/class-fl-builder-model.php:3113
233
  msgid "Home Pages"
234
- msgstr "Home pagina's"
235
 
236
  # @ fl-builder
237
- #: classes/class-fl-builder-model.php:3114
238
  msgid "Content Pages"
239
- msgstr "Inhoud pagina's"
240
 
241
  # @ fl-builder
242
- #: classes/class-fl-builder-photo.php:95
243
- #: classes/class-fl-builder-photo.php:100
244
  msgctxt "Image size."
245
  msgid "Full Size"
246
- msgstr "Volledige grootte"
247
 
248
  # @ fl-builder
249
  #: classes/class-fl-builder-photo.php:101
@@ -265,7 +265,7 @@ msgstr "Miniatuur"
265
 
266
  #: classes/class-fl-builder-service-activecampaign.php:69
267
  msgid "Error: You must provide an API URL."
268
- msgstr "Fout: Je moet een API key ingeven."
269
 
270
  #: classes/class-fl-builder-service-activecampaign.php:73
271
  #: classes/class-fl-builder-service-campaign-monitor.php:55
@@ -280,9 +280,8 @@ msgstr "Fout: Je moet een API key ingeven."
280
 
281
  #: classes/class-fl-builder-service-activecampaign.php:81
282
  msgid "Error: Please check your API URL and API key."
283
- msgstr "Fout: controleer je API key."
284
 
285
- # @ fl-builder
286
  #: classes/class-fl-builder-service-activecampaign.php:108
287
  msgid "API URL"
288
  msgstr "API URL"
@@ -292,8 +291,8 @@ msgid ""
292
  "Your API url can be found in your ActiveCampaign account under My Settings > "
293
  "API."
294
  msgstr ""
295
- "Je API key kun je terugvinden in je ActiveCampaign account onder My Settings "
296
- "> API key."
297
 
298
  #: classes/class-fl-builder-service-activecampaign.php:119
299
  #: classes/class-fl-builder-service-campaign-monitor.php:88
@@ -311,8 +310,8 @@ msgid ""
311
  "Your API key can be found in your ActiveCampaign account under My Settings > "
312
  "API."
313
  msgstr ""
314
- "Je API url kun je terugvinden in je ActiveCampaign account onder My Settings "
315
- "> API."
316
 
317
  # @ fl-builder
318
  #: classes/class-fl-builder-service-activecampaign.php:169
@@ -352,12 +351,12 @@ msgid ""
352
  "There was an error subscribing to ActiveCampaign. The account is no longer "
353
  "connected."
354
  msgstr ""
355
- "Er is een fout opgetreden tijdens het aanmelden bij de ActiveCampaign. Het "
356
- "account is niet meer verbonden."
357
 
358
  #: classes/class-fl-builder-service-activecampaign.php:239
359
  msgid "Error: Invalid API data."
360
- msgstr "Fout: Ontbrekende API data."
361
 
362
  #: classes/class-fl-builder-service-aweber.php:72
363
  msgid "Error: You must provide an Authorization Code."
@@ -434,13 +433,13 @@ msgstr ""
434
 
435
  #: classes/class-fl-builder-service-constant-contact.php:52
436
  msgid "Error: You must provide an access token."
437
- msgstr "Fout: Je moet een access token verstrekken."
438
 
439
  #: classes/class-fl-builder-service-constant-contact.php:61
440
  #: classes/class-fl-builder-service-constant-contact.php:134
441
  #, php-format
442
  msgid "Error: Could not connect to Constant Contact. %s"
443
- msgstr "Fout: Kon niet verbinden met Constante Contact. %s"
444
 
445
  #: classes/class-fl-builder-service-constant-contact.php:89
446
  msgid "Your Constant Contact API key."
@@ -448,11 +447,11 @@ msgstr "Je Constant Contact API key."
448
 
449
  #: classes/class-fl-builder-service-constant-contact.php:99
450
  msgid "Access Token"
451
- msgstr "Access token"
452
 
453
  #: classes/class-fl-builder-service-constant-contact.php:100
454
  msgid "Your Constant Contact access token."
455
- msgstr "Je Constant Contact access token."
456
 
457
  #: classes/class-fl-builder-service-constant-contact.php:101
458
  #, php-format
@@ -490,17 +489,17 @@ msgstr "Fout: Je moet een e-mailadres opgeven."
490
  #: classes/class-fl-builder-service-madmimi.php:110
491
  #: modules/subscribe-form/includes/frontend.php:11
492
  msgid "Email Address"
493
- msgstr "E-mailadres"
494
 
495
  #: classes/class-fl-builder-service-email-address.php:110
496
  msgid "There was an error subscribing. The account is no longer connected."
497
  msgstr ""
498
- "Er is een fout opgetreden bij het registreren. Het account is niet langer "
499
- "verbonden."
500
 
501
  #: classes/class-fl-builder-service-email-address.php:114
502
  msgid "Subscribe Form Signup"
503
- msgstr "Aanmeldformulier"
504
 
505
  # @ fl-builder
506
  #: classes/class-fl-builder-service-email-address.php:115
@@ -545,32 +544,32 @@ msgid ""
545
  "Your API key can be found in your Hatchbuck account under Account Settings > "
546
  "Web API."
547
  msgstr ""
548
- "Je API key kun je terugvinden in je Hatchbuck account account onder Account "
549
  "Settings > Web API."
550
 
551
  #: classes/class-fl-builder-service-hatchbuck.php:134
552
  msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
553
  msgid "Tag"
554
- msgstr "Tag"
555
 
556
  #: classes/class-fl-builder-service-hatchbuck.php:161
557
  msgid ""
558
  "There was an error subscribing to Hatchbuck. The account is no longer "
559
  "connected."
560
  msgstr ""
561
- "Er is een fout opgetreden bij het registreren bij Hatchbuck. Het account is "
562
  "niet langer verbonden."
563
 
564
  #: classes/class-fl-builder-service-hatchbuck.php:190
565
  msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
566
  msgstr ""
567
- "Er is een fout opgetreden bij het aanmelden bij Hatchbuck. De API key is "
568
- "ongeldig."
569
 
570
  #: classes/class-fl-builder-service-hatchbuck.php:200
571
  #: classes/class-fl-builder-service-hatchbuck.php:232
572
  msgid "There was an error subscribing to Hatchbuck."
573
- msgstr "Er is een fout opgestreden tijdens het aanmelden bij Hatchbuck."
574
 
575
  #: classes/class-fl-builder-service-icontact.php:75
576
  msgid "Error: You must provide a username."
@@ -609,7 +608,7 @@ msgstr "Je iContact app ID."
609
 
610
  #: classes/class-fl-builder-service-icontact.php:147
611
  msgid "App Password"
612
- msgstr "App wachtwoord"
613
 
614
  #: classes/class-fl-builder-service-icontact.php:148
615
  msgid "Your iContact app password."
@@ -640,11 +639,11 @@ msgstr "Er is een fout opgestreden tijdens het aanmelden bij iContact. %s"
640
  #: classes/class-fl-builder-service-infusionsoft.php:49
641
  #, php-format
642
  msgid "There was an error connecting to Infusionsoft. %s"
643
- msgstr "Er is een fout opgestreden tijdens het aanmelden bij Infusionsoft. %s"
644
 
645
  #: classes/class-fl-builder-service-infusionsoft.php:83
646
  msgid "Error: You must provide an app ID."
647
- msgstr "Fout: Je moet een app ID opgeven."
648
 
649
  #: classes/class-fl-builder-service-infusionsoft.php:119
650
  msgid ""
@@ -652,8 +651,8 @@ msgid ""
652
  "URL for your account is myaccount.infusionsoft.com, your App ID would be "
653
  "<strong>myaccount</strong>."
654
  msgstr ""
655
- "Je app ID kan gevonden worden in de URL van je account. Bijvoorbeeld, als je "
656
- "URL naar je account myaccount.infusionsoft.com is, dan is je app ID "
657
  "<strong>myaccount</strong>."
658
 
659
  #: classes/class-fl-builder-service-infusionsoft.php:130
@@ -661,7 +660,7 @@ msgid ""
661
  "Your API key can be found in your Infusionsoft account under Admin > "
662
  "Settings > Application > API > Encrypted Key."
663
  msgstr ""
664
- "Je API key kun je terugvinden in je Infusionsoft account onder Admin > "
665
  "Settings > Application > API > Encrypted Key."
666
 
667
  #: classes/class-fl-builder-service-infusionsoft.php:242
@@ -669,13 +668,13 @@ msgid ""
669
  "There was an error subscribing to Infusionsoft. The account is no longer "
670
  "connected."
671
  msgstr ""
672
- "Er is een fout opgetreden bij het registreren bij Infusionsoft. Het account "
673
  "is niet langer verbonden."
674
 
675
  #: classes/class-fl-builder-service-infusionsoft.php:291
676
  #, php-format
677
  msgid "There was an error subscribing to Infusionsoft. %s"
678
- msgstr "Er is een fout opgestreden tijdens het aanmelden bij Infusionsoft. %s"
679
 
680
  #: classes/class-fl-builder-service-madmimi.php:83
681
  msgid "Unable to connect to Mad Mimi. Please check your credentials."
@@ -718,12 +717,10 @@ msgstr ""
718
  "Je API key kun je terugvinden in je Mailchimp account onder Account > Extras "
719
  "> API Keys."
720
 
721
- # @ fl-builder
722
  #: classes/class-fl-builder-service-mailchimp.php:215
723
  msgid "No Group"
724
  msgstr "Geen groep"
725
 
726
- # @ fl-builder
727
  #: classes/class-fl-builder-service-mailchimp.php:227
728
  msgctxt "MailChimp list group."
729
  msgid "Groups"
@@ -753,14 +750,12 @@ msgstr ""
753
 
754
  #: classes/class-fl-builder-service-sendinblue.php:67
755
  msgid "Error: You must provide an Access Key."
756
- msgstr "Fout: Je moet een Access Key invoeren."
757
 
758
  #: classes/class-fl-builder-service-sendinblue.php:76
759
  #: classes/class-fl-builder-service-sendinblue.php:136
760
  msgid "There was an error connecting to SendinBlue. Please try again."
761
- msgstr ""
762
- "Er is een fout opgetreden tijdens het verbinden met SendinBlue. Probeer het "
763
- "nogmaals."
764
 
765
  #: classes/class-fl-builder-service-sendinblue.php:79
766
  #: classes/class-fl-builder-service-sendinblue.php:139
@@ -770,34 +765,34 @@ msgstr "Fout: Kon niet verbinden met SendinBlue. %s"
770
 
771
  #: classes/class-fl-builder-service-sendinblue.php:103
772
  msgid "Access Key"
773
- msgstr "Access key"
774
 
775
  #: classes/class-fl-builder-service-sendinblue.php:104
776
  msgid ""
777
  "Your Access Key can be found in your SendinBlue account under API & "
778
  "Integration > Manager Your Keys > Version 2.0 > Access Key."
779
  msgstr ""
780
- "Je Access key kun je terugvinden in je SendinBlue account onder API & "
781
- "Integration > Manager Your Keys > Version 2.0 > Access Key."
782
 
783
  #: classes/class-fl-builder-service-sendinblue.php:198
784
  msgid ""
785
  "There was an error subscribing to SendinBlue. The account is no longer "
786
  "connected."
787
  msgstr ""
788
- "Er is een fout opgetreden bij het registreren bij SendinBlue. Het account is "
789
  "niet langer verbonden."
790
 
791
  #: classes/class-fl-builder-service-sendinblue.php:220
792
  msgid "There was an error subscribing to SendinBlue. Please try again."
793
  msgstr ""
794
- "Er is een fout opgetreden bij het aanmdelden bij SendinBlue. Probeer het nog "
795
- "eens."
796
 
797
  #: classes/class-fl-builder-service-sendinblue.php:223
798
  #, php-format
799
  msgid "Error: Could not subscribe to SendinBlue. %s"
800
- msgstr "Fout: Kon niet verbinden met SendinBlue. %s"
801
 
802
  #: classes/class-fl-builder-services.php:158
803
  msgctxt "Third party service such as MailChimp."
@@ -837,168 +832,199 @@ msgstr "Verbinden"
837
 
838
  #: classes/class-fl-builder-services.php:295
839
  msgid "Add Account..."
840
- msgstr "Account toevoegen..."
841
 
842
  #: classes/class-fl-builder-services.php:302
843
  msgid "Account"
844
  msgstr "Account"
845
 
846
- # @ fl-builder
847
- #: classes/class-fl-builder-templates-override.php:46
 
 
 
848
  msgid "Error! Please enter a number for the site ID."
849
- msgstr "Fout! Voer een nummer in voor het site ID."
850
 
851
- #: classes/class-fl-builder-templates-override.php:50
852
  msgid "Error! A site with that ID doesn't exist."
853
- msgstr "Fout: Een site met dat ID bestaat niet."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
854
 
855
  # @ fl-builder
856
- #: classes/class-fl-builder.php:836
857
  #, php-format
858
  msgctxt "Field name to add."
859
  msgid "Add %s"
860
- msgstr "%s toevoegen"
861
 
862
- # @ fl-builder
863
- #: classes/class-fl-builder.php:926 classes/class-fl-builder.php:928
864
  msgctxt "Custom post type label."
865
  msgid "Templates"
866
  msgstr "Templates"
867
 
868
- # @ fl-builder
869
- #: classes/class-fl-builder.php:927 classes/class-fl-builder.php:929
870
  msgctxt "Custom post type label."
871
  msgid "Template"
872
  msgstr "Template"
873
 
874
  # @ fl-builder
875
- #: classes/class-fl-builder.php:930
876
  msgctxt "Custom post type label."
877
  msgid "Add New"
878
  msgstr "Toevoegen"
879
 
880
- # @ fl-builder
881
- #: classes/class-fl-builder.php:931
882
  msgctxt "Custom post type label."
883
  msgid "Add New Template"
884
- msgstr "Nieuwe template toevoegen"
885
 
886
- # @ fl-builder
887
- #: classes/class-fl-builder.php:932
888
  msgctxt "Custom post type label."
889
  msgid "New Template"
890
- msgstr "Nieuwe template"
891
 
892
- #: classes/class-fl-builder.php:933
893
  msgctxt "Custom post type label."
894
  msgid "Edit Template"
895
- msgstr "Bewerk template"
896
 
897
- # @ fl-builder
898
- #: classes/class-fl-builder.php:934
899
  msgctxt "Custom post type label."
900
  msgid "View Template"
901
- msgstr "Bekijk template"
902
 
903
- # @ fl-builder
904
- #: classes/class-fl-builder.php:935
905
  msgctxt "Custom post type label."
906
  msgid "All Templates"
907
- msgstr "Alle templates"
908
 
909
- # @ fl-builder
910
- #: classes/class-fl-builder.php:936
911
  msgctxt "Custom post type label."
912
  msgid "Search Templates"
913
- msgstr "Zoeken templates"
914
 
915
- # @ fl-builder
916
- #: classes/class-fl-builder.php:937
917
  msgctxt "Custom post type label."
918
  msgid "Parent Templates:"
919
- msgstr "Bovenliggende templates:"
920
 
921
- # @ fl-builder
922
- #: classes/class-fl-builder.php:938
923
  msgctxt "Custom post type label."
924
  msgid "No templates found."
925
  msgstr "Geen templates gevonden."
926
 
927
- # @ fl-builder
928
- #: classes/class-fl-builder.php:939
929
  msgctxt "Custom post type label."
930
  msgid "No templates found in Trash."
931
- msgstr "Geen templates in prullenbak gevonden."
932
 
933
- # @ fl-builder
934
- #: classes/class-fl-builder.php:953 classes/class-fl-builder.php:963
935
  msgctxt "Custom taxonomy label."
936
  msgid "Categories"
937
  msgstr "Categorieën"
938
 
939
- #: classes/class-fl-builder.php:954
940
  msgctxt "Custom taxonomy label."
941
  msgid "Category"
942
  msgstr "Categorie"
943
 
944
- # @ fl-builder
945
- #: classes/class-fl-builder.php:955
946
  msgctxt "Custom taxonomy label."
947
  msgid "Search Categories"
948
- msgstr "Zoek categorie"
949
 
950
- # @ fl-builder
951
- #: classes/class-fl-builder.php:956
952
  msgctxt "Custom taxonomy label."
953
  msgid "All Categories"
954
- msgstr "Alle categorieën"
955
 
956
- # @ fl-builder
957
- #: classes/class-fl-builder.php:957
958
  msgctxt "Custom taxonomy label."
959
  msgid "Parent Category"
960
- msgstr "Bovenliggende categorie"
961
 
962
- # @ fl-builder
963
- #: classes/class-fl-builder.php:958
964
  msgctxt "Custom taxonomy label."
965
  msgid "Parent Category:"
966
- msgstr "Bovenliggende categorie:"
967
 
968
- #: classes/class-fl-builder.php:959
969
  msgctxt "Custom taxonomy label."
970
  msgid "Edit Category"
971
- msgstr "Bewerk categorie"
972
 
973
- # @ fl-builder
974
- #: classes/class-fl-builder.php:960
975
  msgctxt "Custom taxonomy label."
976
  msgid "Update Category"
977
  msgstr "Categorie bijwerken"
978
 
979
- #: classes/class-fl-builder.php:961
980
  msgctxt "Custom taxonomy label."
981
  msgid "Add New Category"
982
- msgstr "Nieuwe categorie"
983
 
984
- #: classes/class-fl-builder.php:962
985
  msgctxt "Custom taxonomy label."
986
  msgid "New Category Name"
987
- msgstr "Nieuwe categorienaam"
 
 
 
 
 
 
 
 
 
 
 
 
 
988
 
989
  # @ fl-builder
990
- #: classes/class-fl-builder.php:1419 includes/js-config.php:69
991
  #, php-format
992
  msgctxt "%s stands for module name."
993
  msgid "%s Settings"
994
- msgstr "%s instellingen"
995
 
996
  # @ fl-builder
997
  #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
998
  msgid "Text Editor"
999
  msgstr "Tekstbewerker"
1000
 
1001
- # @ fl-builder
1002
  #: includes/admin-posts.php:7
1003
  #, php-format
1004
  msgctxt ""
@@ -1072,7 +1098,7 @@ msgstr ""
1072
 
1073
  #: includes/admin-settings-cache.php:19
1074
  msgid "Clear Cache"
1075
- msgstr "Wis cache"
1076
 
1077
  # @ fl-builder
1078
  #: includes/admin-settings-editing.php:3
@@ -1087,8 +1113,12 @@ msgstr "Instellingen bewerken"
1087
  msgid "Override network settings?"
1088
  msgstr "Netwerkinstellingen overschrijven?"
1089
 
1090
- # @ fl-builder
1091
  #: includes/admin-settings-editing.php:16
 
 
 
 
 
1092
  #, php-format
1093
  msgid ""
1094
  "Set the <a%s>capability</a> required for users to access advanced builder "
@@ -1098,44 +1128,55 @@ msgstr ""
1098
  "bewerkingen toe te staan, zoals toevoegen, verwijderen en verplaatsen van "
1099
  "modules."
1100
 
 
 
 
 
1101
  #: includes/admin-settings-editing.php:22
 
 
 
 
 
 
 
1102
  msgid "Save Editing Settings"
1103
- msgstr "Bewaar bewerkinstellingen"
1104
 
1105
  # @ fl-builder
1106
  #: includes/admin-settings-help-button.php:8
1107
  msgid "Help Button Settings"
1108
- msgstr "Help knop Instellingen"
1109
 
1110
  # @ fl-builder
1111
  #: includes/admin-settings-help-button.php:17
1112
  msgid "Enable Help Button"
1113
- msgstr "Activeer help knop"
1114
 
1115
  # @ fl-builder
1116
  #: includes/admin-settings-help-button.php:23
1117
  msgid "Help Tour"
1118
- msgstr "Help rondleiding"
1119
 
1120
  # @ fl-builder
1121
  #: includes/admin-settings-help-button.php:27
1122
  msgid "Enable Help Tour"
1123
- msgstr "Activeer help rondleiding"
1124
 
1125
  # @ fl-builder
1126
  #: includes/admin-settings-help-button.php:31
1127
  msgid "Help Video"
1128
- msgstr "Help video"
1129
 
1130
  # @ fl-builder
1131
  #: includes/admin-settings-help-button.php:35
1132
  msgid "Enable Help Video"
1133
- msgstr "Activeer help video"
1134
 
1135
  # @ fl-builder
1136
  #: includes/admin-settings-help-button.php:39
1137
  msgid "Help Video Embed Code"
1138
- msgstr "Help video embed Code"
1139
 
1140
  # @ fl-builder
1141
  #: includes/admin-settings-help-button.php:45
@@ -1145,7 +1186,7 @@ msgstr "Kennisbank"
1145
  # @ fl-builder
1146
  #: includes/admin-settings-help-button.php:49
1147
  msgid "Enable Knowledge Base"
1148
- msgstr "Activeer kennisbank"
1149
 
1150
  # @ fl-builder
1151
  #: includes/admin-settings-help-button.php:53
@@ -1160,7 +1201,7 @@ msgstr "Forums"
1160
  # @ fl-builder
1161
  #: includes/admin-settings-help-button.php:63
1162
  msgid "Enable Forums"
1163
- msgstr "Activeer forums"
1164
 
1165
  # @ fl-builder
1166
  #: includes/admin-settings-help-button.php:67
@@ -1169,12 +1210,12 @@ msgstr "Forum URL"
1169
 
1170
  #: includes/admin-settings-help-button.php:77
1171
  msgid "Save Help Button Settings"
1172
- msgstr "Help knop instellingen opslaan"
1173
 
1174
  # @ fl-builder
1175
  #: includes/admin-settings-icons.php:3
1176
  msgid "Icon Settings"
1177
- msgstr "Icoon instellingen"
1178
 
1179
  # @ fl-builder
1180
  #: includes/admin-settings-icons.php:13
@@ -1200,11 +1241,11 @@ msgstr "Verwijder"
1200
 
1201
  #: includes/admin-settings-icons.php:59
1202
  msgid "Upload Icon Set"
1203
- msgstr "Upload icoon-set"
1204
 
1205
  #: includes/admin-settings-icons.php:60
1206
  msgid "Save Icon Settings"
1207
- msgstr "Icon instellingen opslaan"
1208
 
1209
  #: includes/admin-settings-js-config.php:4
1210
  msgid "Select File"
@@ -1245,7 +1286,7 @@ msgid ""
1245
  "work with."
1246
  msgstr ""
1247
  "Voer een door komma's gescheiden lijst in van de post-typen die je wilt waar "
1248
- "de bouwer mee werkt."
1249
 
1250
  # @ fl-builder
1251
  #: includes/admin-settings-post-types.php:19
@@ -1263,17 +1304,16 @@ msgstr "Voorbeeld: pagina, post, product."
1263
  # @ fl-builder
1264
  #: includes/admin-settings-post-types.php:38
1265
  msgid "Select the post types you would like the builder to work with."
1266
- msgstr "Selecteer de post typen die je wilt waar de bouwer mee werkt."
1267
 
1268
  #: includes/admin-settings-post-types.php:70
1269
  msgid "Save Post Types"
1270
  msgstr "Post Type Opslaan"
1271
 
1272
- #: includes/admin-settings-templates-override.php:2
1273
- #: includes/admin-settings-templates-override.php:8
1274
- #: includes/admin-settings-templates-override.php:13
1275
  msgid "Override Core Templates"
1276
- msgstr "Core templates overschrijven"
1277
 
1278
  #: includes/admin-settings-templates-override.php:3
1279
  msgid ""
@@ -1281,33 +1321,48 @@ msgid ""
1281
  "builder templates. Leave this field blank if you do not wish to override "
1282
  "core templates."
1283
  msgstr ""
1284
- "Voer het ID van een netwerk site in waarvan je de templates de core builder "
1285
- "templates wilt laten overschrijven. Laat dit veld leeg als je de core "
1286
- "templates niet wilt overschrijven."
1287
 
1288
- #: includes/admin-settings-templates-override.php:9
1289
  msgid ""
1290
  "Use this setting to override core builder templates with your templates."
1291
  msgstr ""
1292
- "Gebruik deze optie om de core templates te overschrijven met je eigen "
1293
- "templates."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1294
 
1295
  # @ fl-builder
1296
- #: includes/admin-settings-templates.php:9
1297
  msgid "Template Settings"
1298
  msgstr "Template Instellingen"
1299
 
1300
- # @ fl-builder
1301
  #: includes/admin-settings-templates.php:22
1302
  msgid "Enable Templates"
1303
- msgstr "Templates activeren"
1304
 
1305
- # @ fl-builder
1306
  #: includes/admin-settings-templates.php:23
1307
  msgid ""
1308
  "Use this setting to enable or disable templates in the builder interface."
1309
- msgstr ""
1310
- "Gebruik deze optie om templates in of uit te schakelen voor de builder."
1311
 
1312
  # @ fl-builder
1313
  #: includes/admin-settings-templates.php:25
@@ -1329,17 +1384,16 @@ msgstr "Enkel Gebruikers Templates"
1329
  msgid "Disable All Templates"
1330
  msgstr "Alle Templates Uitschakelen"
1331
 
1332
- # @ fl-builder
1333
  #: includes/admin-settings-templates.php:31
1334
  #: includes/admin-settings-templates.php:36
1335
  msgid "Enable Templates Admin"
1336
- msgstr "Templates admin activeren"
1337
 
1338
  #: includes/admin-settings-templates.php:32
1339
  msgid "Use this setting to edit builder templates in the WordPress admin."
1340
  msgstr ""
1341
- "Gebruik deze optie om de builder templates in de WordPress admin aan te "
1342
- "passen."
1343
 
1344
  #: includes/admin-settings-templates.php:50
1345
  msgid "Save Template Settings"
@@ -1354,8 +1408,8 @@ msgid ""
1354
  msgstr ""
1355
  "Door op onderstaande button te klikken zal de page builder en alle daarmee "
1356
  "geassocieerde data verwijderd worden. Je kunt als alternatief de page "
1357
- "builder vanaf de plugins pagina verwijderen of deactiverenals je niet ook de "
1358
- "data wenst te verwijderen."
1359
 
1360
  # @ fl-builder
1361
  #: includes/admin-settings-uninstall.php:7
@@ -1365,9 +1419,9 @@ msgid ""
1365
  "you want to reinstall it later. If you do, the builder will rebuild all of "
1366
  "its data using those meta values."
1367
  msgstr ""
1368
- "De bouwer verwijdert niet de post meta <code>_fl_builder_data</code> , "
1369
  "<code>_fl_builder_draft</code> en <code>_fl_builder_enabled</code> voor het "
1370
- "geval je later opnieuw wenst te installeren. Als je dit doet, zal de bouwer "
1371
  "alle gegevens met behulp van deze meta-waarden herbouwen."
1372
 
1373
  # @ fl-builder
@@ -1391,8 +1445,179 @@ msgstr "Upgrade Nu"
1391
  msgid "Learn More"
1392
  msgstr "Leer Meer"
1393
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1394
  # @ fl-builder
1395
- #: includes/column-settings.php:4 includes/js-config.php:23
 
1396
  msgid "Column Settings"
1397
  msgstr "Kolom Instellingen"
1398
 
@@ -1406,8 +1631,8 @@ msgstr "Kolom Instellingen"
1406
  #: modules/content-slider/content-slider.php:667 modules/cta/cta.php:102
1407
  #: modules/cta/cta.php:309 modules/heading/heading.php:69
1408
  #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1409
- #: modules/post-carousel/post-carousel.php:389
1410
- #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:574
1411
  #: modules/pricing-table/pricing-table.php:43
1412
  #: modules/pricing-table/pricing-table.php:155
1413
  #: modules/separator/separator.php:72
@@ -1426,7 +1651,8 @@ msgstr "Kolom Breedte"
1426
  #: modules/callout/callout.php:495
1427
  #: modules/content-slider/content-slider.php:383
1428
  #: modules/content-slider/content-slider.php:617 modules/cta/cta.php:85
1429
- #: modules/cta/cta.php:222 modules/post-slider/post-slider.php:617
 
1430
  msgid "Text"
1431
  msgstr "Tekst"
1432
 
@@ -1440,28 +1666,25 @@ msgstr "Tekst"
1440
  msgid "Color"
1441
  msgstr "Kleur"
1442
 
1443
- # @ fl-builder
1444
  #: includes/column-settings.php:38 includes/row-settings.php:60
1445
- #: modules/post-carousel/post-carousel.php:401
1446
- #: modules/post-slider/post-slider.php:694
1447
  msgid "Link Color"
1448
- msgstr "Link kleur"
1449
 
1450
- # @ fl-builder
1451
  #: includes/column-settings.php:46 includes/row-settings.php:68
1452
- #: modules/post-carousel/post-carousel.php:406
1453
- #: modules/post-slider/post-slider.php:710
1454
  msgid "Link Hover Color"
1455
- msgstr "Link hover kleur"
1456
 
1457
- # @ fl-builder
1458
  #: includes/column-settings.php:54 includes/row-settings.php:76
1459
  msgid "Heading Color"
1460
- msgstr "Koptekst kleur"
1461
 
1462
  # @ fl-builder
1463
  #: includes/column-settings.php:63 includes/row-settings.php:85
1464
- #: modules/post-slider/post-slider.php:462
1465
  msgid "Background"
1466
  msgstr "Achtergrond"
1467
 
@@ -1560,7 +1783,6 @@ msgctxt "Background repeat."
1560
  msgid "Vertical"
1561
  msgstr "Verticaal"
1562
 
1563
- # @ fl-builder
1564
  #: includes/column-settings.php:132 includes/row-settings.php:172
1565
  msgid ""
1566
  "Repeat applies to how the image should display in the background. Choosing "
@@ -1568,20 +1790,11 @@ msgid ""
1568
  "times as needed to fill the background horizontally and vertically. You can "
1569
  "also specify the image to only repeat horizontally or vertically."
1570
  msgstr ""
1571
- "Herhaal is van toepassing op hoe de afbeelding in de achtergrond moet worden "
1572
- "weergegeven. Indien voor niet wordt gekozen zal de afbeelding worden "
1573
- "weergegeven zoals geüpload. Bij tegel wordt het beeld zo vaak herhaalt als "
1574
- "nodig is om de rij horizontaal en verticaal te vullen. Je kunt de afbeelding "
1575
- "ook alleen horizontaal of verticaal laten herhalen."
1576
-
1577
- # @ fl-builder
1578
- #: includes/column-settings.php:139 includes/row-settings.php:179
1579
- #: modules/callout/callout.php:354 modules/callout/callout.php:374
1580
- #: modules/content-slider/content-slider.php:473
1581
- #: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:621
1582
- #: modules/post-slider/post-slider.php:640
1583
- msgid "Position"
1584
- msgstr "Positie"
1585
 
1586
  # @ fl-builder
1587
  #: includes/column-settings.php:142 includes/row-settings.php:182
@@ -1624,7 +1837,8 @@ msgstr "Midden Boven"
1624
  #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1625
  #: modules/heading/heading.php:90 modules/heading/heading.php:162
1626
  #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1627
- #: modules/photo/photo.php:434 modules/social-buttons/social-buttons.php:100
 
1628
  msgid "Center"
1629
  msgstr "Gecentreerd"
1630
 
@@ -1633,12 +1847,9 @@ msgstr "Gecentreerd"
1633
  msgid "Center Bottom"
1634
  msgstr "Midden Onder"
1635
 
1636
- # @ fl-builder
1637
  #: includes/column-settings.php:152 includes/row-settings.php:192
1638
  msgid "Position will tell the image where it should sit in the background."
1639
- msgstr ""
1640
- "Met de positie wordt bepaald waar de afbeelding in de achtergrond wordt "
1641
- "geplaatst."
1642
 
1643
  # @ fl-builder
1644
  #: includes/column-settings.php:159 includes/row-settings.php:199
@@ -1658,7 +1869,6 @@ msgstr "Scroll"
1658
  msgid "Fixed"
1659
  msgstr "Vastgezet"
1660
 
1661
- # @ fl-builder
1662
  #: includes/column-settings.php:165 includes/row-settings.php:205
1663
  msgid ""
1664
  "Attachment will specify how the image reacts when scrolling a page. When "
@@ -1666,10 +1876,11 @@ msgid ""
1666
  "the default setting. Fixed will allow the image to scroll within the "
1667
  "background if fill is selected in the scale setting."
1668
  msgstr ""
1669
- "Bijlage geeft aan hoe het beeld reageert tijdens het scrollen van een "
1670
- "pagina. Indien scrollen is geselecteerd, zal het beeld met de pagina "
1671
- "meescrollen. Dit is de standaardinstelling. Vast zal het beeld in de "
1672
- "achtergrond laten scrollen als vullen is geselecteerd in de bijschalen optie."
 
1673
 
1674
  # @ fl-builder
1675
  #: includes/column-settings.php:172 includes/row-settings.php:212
@@ -1692,15 +1903,13 @@ msgstr "Passend"
1692
  msgid "Fill"
1693
  msgstr "Uitvullen"
1694
 
1695
- # @ fl-builder
1696
  #: includes/column-settings.php:179 includes/row-settings.php:219
1697
  msgid ""
1698
  "Scale applies to how the image should display in the background. You can "
1699
  "select either fill or fit to the background."
1700
  msgstr ""
1701
- "Bijschalen is van toepassing op hoe de afbeelding in de achtergrond moet "
1702
- "worden weergegeven. Je kunt kiezen uit uitvullen of aanpassen aan de "
1703
- "achtergrond."
1704
 
1705
  # @ fl-builder
1706
  #: includes/column-settings.php:187 includes/row-settings.php:366
@@ -1715,7 +1924,7 @@ msgstr "Overlay Kleur"
1715
  # @ fl-builder
1716
  #: includes/column-settings.php:199 includes/row-settings.php:378
1717
  msgid "Overlay Opacity"
1718
- msgstr "Overlay Dekking"
1719
 
1720
  # @ fl-builder
1721
  #: includes/column-settings.php:211 includes/row-settings.php:390
@@ -1808,7 +2017,7 @@ msgstr "Boven"
1808
  # @ fl-builder
1809
  #: includes/column-settings.php:337 includes/column-settings.php:390
1810
  #: includes/module-settings.php:25 includes/row-settings.php:516
1811
- #: includes/row-settings.php:569 modules/post-slider/post-slider.php:627
1812
  #: modules/slideshow/slideshow.php:482
1813
  msgid "Bottom"
1814
  msgstr "Onder"
@@ -1821,8 +2030,9 @@ msgstr "Onder"
1821
  #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1822
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
1823
  #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1824
- #: modules/photo/photo.php:433 modules/post-slider/post-slider.php:625
1825
- #: modules/post-slider/post-slider.php:644
 
1826
  #: modules/social-buttons/social-buttons.php:101
1827
  msgid "Left"
1828
  msgstr "Links"
@@ -1835,8 +2045,9 @@ msgstr "Links"
1835
  #: modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
1836
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
1837
  #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
1838
- #: modules/photo/photo.php:435 modules/post-slider/post-slider.php:626
1839
- #: modules/post-slider/post-slider.php:645
 
1840
  #: modules/social-buttons/social-buttons.php:102
1841
  msgid "Right"
1842
  msgstr "Rechts"
@@ -1920,7 +2131,8 @@ msgstr "De breedte van deze kolom op medium apparaten zoals tablets."
1920
  #: modules/callout/callout.php:284
1921
  #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
1922
  #: modules/heading/heading.php:117 modules/heading/heading.php:144
1923
- #: modules/heading/heading.php:174 modules/post-slider/post-slider.php:597
 
1924
  msgid "Default"
1925
  msgstr "Standaard"
1926
 
@@ -1929,7 +2141,7 @@ msgstr "Standaard"
1929
  #: modules/button/button.php:202 modules/callout/callout.php:285
1930
  #: modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
1931
  #: modules/heading/heading.php:118 modules/heading/heading.php:145
1932
- #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:598
1933
  #: modules/social-buttons/social-buttons.php:74
1934
  msgid "Custom"
1935
  msgstr "Aangepast"
@@ -2010,7 +2222,9 @@ msgid "Replace"
2010
  msgstr "Vervangen"
2011
 
2012
  # @ fl-builder
2013
- #: includes/field-icon.php:7 includes/js-config.php:61
 
 
2014
  msgid "Remove"
2015
  msgstr "Verwijder"
2016
 
@@ -2030,8 +2244,8 @@ msgstr "Begin met typen..."
2030
 
2031
  # @ fl-builder
2032
  #: includes/field-link.php:7 includes/icon-selector.php:28
2033
- #: includes/js-config.php:19 includes/settings.php:63
2034
- #: includes/template-selector.php:92
2035
  msgid "Cancel"
2036
  msgstr "Annuleren"
2037
 
@@ -2059,17 +2273,12 @@ msgid "Add Photos"
2059
  msgstr "Afbeeldingen Toevoegen"
2060
 
2061
  # @ fl-builder
2062
- #: includes/field-photo.php:3 includes/js-config.php:66
2063
  msgid "Select Photo"
2064
  msgstr "Selecteer Afbeelding"
2065
 
2066
  # @ fl-builder
2067
- #: includes/field-photo.php:12 includes/template-selector.php:70
2068
- msgid "Edit"
2069
- msgstr "Bewerk"
2070
-
2071
- # @ fl-builder
2072
- #: includes/field-video.php:3 includes/js-config.php:68
2073
  msgid "Select Video"
2074
  msgstr "Selecteer Video"
2075
 
@@ -2079,15 +2288,16 @@ msgid "Replace Video"
2079
  msgstr "Vervang Video"
2080
 
2081
  # @ fl-builder
2082
- #: includes/global-settings.php:7 includes/user-template-settings.php:7
 
2083
  #: modules/accordion/accordion.php:110 modules/button/button.php:59
2084
  #: modules/callout/callout.php:210 modules/contact-form/contact-form.php:58
2085
  #: modules/content-slider/content-slider.php:191
2086
  #: modules/content-slider/content-slider.php:315 modules/cta/cta.php:68
2087
  #: modules/gallery/gallery.php:220 modules/heading/heading.php:26
2088
  #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
2089
- #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:384
2090
- #: modules/pricing-table/pricing-table.php:87
2091
  #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
2092
  #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
2093
  #: modules/social-buttons/social-buttons.php:64
@@ -2115,86 +2325,6 @@ msgctxt ""
2115
  msgid "Show"
2116
  msgstr "Toon"
2117
 
2118
- # @ fl-builder
2119
- #: includes/global-settings.php:18 includes/global-settings.php:110
2120
- #: includes/global-settings.php:124 includes/row-settings.php:331
2121
- #: modules/accordion/accordion.php:90 modules/callout/callout.php:421
2122
- #: modules/content-slider/content-slider.php:210
2123
- #: modules/content-slider/content-slider.php:224
2124
- #: modules/content-slider/content-slider.php:258
2125
- #: modules/content-slider/content-slider.php:267
2126
- #: modules/content-slider/content-slider.php:538
2127
- #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
2128
- #: modules/post-carousel/post-carousel.php:139
2129
- #: modules/post-carousel/post-carousel.php:155
2130
- #: modules/post-carousel/post-carousel.php:182
2131
- #: modules/post-carousel/post-carousel.php:191
2132
- #: modules/post-carousel/post-carousel.php:232
2133
- #: modules/post-carousel/post-carousel.php:283
2134
- #: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:356
2135
- #: modules/post-slider/post-slider.php:381
2136
- #: modules/post-slider/post-slider.php:408
2137
- #: modules/post-slider/post-slider.php:417
2138
- #: modules/post-slider/post-slider.php:734 modules/slideshow/slideshow.php:323
2139
- #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
2140
- #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
2141
- #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
2142
- #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
2143
- #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
2144
- #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
2145
- #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
2146
- #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
2147
- #: modules/slideshow/slideshow.php:650
2148
- #: modules/social-buttons/social-buttons.php:111
2149
- #: modules/social-buttons/social-buttons.php:120
2150
- #: modules/social-buttons/social-buttons.php:129
2151
- #: modules/testimonials/testimonials.php:85
2152
- #: modules/testimonials/testimonials.php:124
2153
- #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
2154
- #: modules/video/video.php:123
2155
- msgid "No"
2156
- msgstr "Nee"
2157
-
2158
- # @ fl-builder
2159
- #: includes/global-settings.php:19 includes/global-settings.php:111
2160
- #: includes/global-settings.php:125 includes/row-settings.php:332
2161
- #: modules/accordion/accordion.php:89 modules/callout/callout.php:422
2162
- #: modules/content-slider/content-slider.php:211
2163
- #: modules/content-slider/content-slider.php:225
2164
- #: modules/content-slider/content-slider.php:259
2165
- #: modules/content-slider/content-slider.php:268
2166
- #: modules/content-slider/content-slider.php:539
2167
- #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
2168
- #: modules/post-carousel/post-carousel.php:140
2169
- #: modules/post-carousel/post-carousel.php:156
2170
- #: modules/post-carousel/post-carousel.php:183
2171
- #: modules/post-carousel/post-carousel.php:192
2172
- #: modules/post-carousel/post-carousel.php:233
2173
- #: modules/post-carousel/post-carousel.php:282
2174
- #: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:357
2175
- #: modules/post-slider/post-slider.php:382
2176
- #: modules/post-slider/post-slider.php:409
2177
- #: modules/post-slider/post-slider.php:418
2178
- #: modules/post-slider/post-slider.php:735 modules/slideshow/slideshow.php:324
2179
- #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
2180
- #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
2181
- #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
2182
- #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
2183
- #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
2184
- #: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
2185
- #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
2186
- #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
2187
- #: modules/slideshow/slideshow.php:651
2188
- #: modules/social-buttons/social-buttons.php:110
2189
- #: modules/social-buttons/social-buttons.php:119
2190
- #: modules/social-buttons/social-buttons.php:128
2191
- #: modules/testimonials/testimonials.php:86
2192
- #: modules/testimonials/testimonials.php:125
2193
- #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
2194
- #: modules/video/video.php:124
2195
- msgid "Yes"
2196
- msgstr "Ja"
2197
-
2198
  # @ fl-builder
2199
  #: includes/global-settings.php:26
2200
  msgid ""
@@ -2274,7 +2404,7 @@ msgid ""
2274
  "margins and padding in your layout once the small device breakpoint is "
2275
  "reached. Most users will want to leave this enabled."
2276
  msgstr ""
2277
- "Wanneer automatische spatiëring is ingeschakeld, zal de bouwer automatisch "
2278
  "de marges en opvulling in je layout aanpassen totdat op kleine apparaten het "
2279
  "breekpunt wordt bereikt. De meeste gebruikers zullen dit ingeschakeld willen "
2280
  "laten."
@@ -2282,7 +2412,7 @@ msgstr ""
2282
  # @ fl-builder
2283
  #: includes/global-settings.php:131
2284
  msgid "Medium Device Breakpoint"
2285
- msgstr "Medium Apparaat Breekpunt"
2286
 
2287
  # @ fl-builder
2288
  #: includes/global-settings.php:136
@@ -2290,7 +2420,7 @@ msgid ""
2290
  "The browser width at which the layout will adjust for medium devices such as "
2291
  "tablets."
2292
  msgstr ""
2293
- "De browser breedte waartegen de layout voor medium apparaten zoals tabletten "
2294
  "aangepast zal worden."
2295
 
2296
  # @ fl-builder
@@ -2304,7 +2434,7 @@ msgid ""
2304
  "The browser width at which the layout will adjust for small devices such as "
2305
  "phones."
2306
  msgstr ""
2307
- "De browser breedte waartegen de layout voor kleine apparaten zoals telefoons "
2308
  "aangepast zal worden."
2309
 
2310
  # @ fl-builder
@@ -2313,1026 +2443,1068 @@ msgctxt "Select option for showing all icon libraries."
2313
  msgid "All Libraries"
2314
  msgstr "Alle bibliotheken"
2315
 
2316
- #: includes/js-config.php:18
2317
- msgid "What would you like to do?"
2318
- msgstr "Wat zou je willen doen?"
2319
-
2320
- #: includes/js-config.php:20
2321
- msgid "Change Template"
2322
- msgstr "Verander Template"
2323
-
2324
- #: includes/js-config.php:21
2325
- msgid ""
2326
- "Warning! Changing the template will replace your existing layout. Do you "
2327
- "really want to do this?"
2328
- msgstr ""
2329
- "Waarschuwing! Het veranderen van het template zal je bestaande layout "
2330
- "vervangen. Weet je zeker dat je dit wilt doen?"
2331
-
2332
- #: includes/js-config.php:22
2333
- msgid "Column"
2334
- msgstr "Kolom"
2335
-
2336
- #: includes/js-config.php:24
2337
- msgid ""
2338
- "Please select either a background layout or content layout before submitting."
2339
- msgstr ""
2340
- "Selecteer ofwel een achtergrond layout of inhoud layout alvorens verder te "
2341
- "gaan."
2342
 
2343
- #: includes/js-config.php:25
2344
- msgid "Remove Account"
2345
- msgstr "Account Verwijderen"
 
2346
 
2347
- #: includes/js-config.php:26
2348
- msgid ""
2349
- "Are you sure you want to remove this account? Other modules that are "
2350
- "connected to it will be affected."
2351
- msgstr ""
2352
- "Weet je zeker dat je dit account wil verwijderen? Andere modules die "
2353
- "verbonden zijn zullen ook worden beïnvloed."
2354
 
2355
- #: includes/js-config.php:27
2356
- msgid "Do you really want to delete this item?"
2357
- msgstr "Wil je dit item echt verwijderen?"
 
2358
 
2359
- #: includes/js-config.php:28
2360
- msgid ""
2361
- "Do you really want to delete this module? All content data will be "
2362
- "permanently deleted."
2363
- msgstr ""
2364
- "Wil je deze module echt verwijderen? Alle inhoud gegevens zullen definitief "
2365
- "verwijderd worden."
2366
 
2367
- #: includes/js-config.php:29
2368
- msgid ""
2369
- "Do you really want to delete this row? All content data will be permanently "
2370
- "deleted."
2371
- msgstr ""
2372
- "Wil je deze rij echt verwijderen? Alle inhoud gegevens zullen definitief "
2373
- "verwijderd worden."
2374
 
2375
  # @ fl-builder
2376
- #: includes/js-config.php:30
2377
- msgid "Do you really want to delete this template?"
2378
- msgstr "Wilt je echt dit sjabloon verwijderen?"
2379
 
2380
- #: includes/js-config.php:31
2381
- msgid "Discard Changes"
2382
- msgstr "Wijzigingen weggooien"
 
2383
 
2384
- #: includes/js-config.php:32
2385
- msgid ""
2386
- "Do you really want to discard these changes? All of your changes that are "
2387
- "not published will be lost."
2388
- msgstr ""
2389
- "Wil je de wijzigingen echt verwijderen? All je veranderingen die niet zijn "
2390
- "gepubliceerd zullen verloren gaan."
2391
 
2392
  # @ fl-builder
2393
- #: includes/js-config.php:33 includes/ui.php:20 includes/ui.php:55
2394
- msgid "Done"
2395
- msgstr "Klaar"
2396
 
2397
- #: includes/js-config.php:34
2398
- msgid "Save Draft"
2399
- msgstr "Concept opslaan"
 
2400
 
2401
  # @ fl-builder
2402
- #: includes/js-config.php:35
2403
- msgctxt "Duplicate page/post action label."
2404
- msgid "Duplicate"
2405
- msgstr "Kopiëren"
2406
 
2407
- #: includes/js-config.php:36
2408
- msgid "Duplicate This Page"
2409
- msgstr "Kopieer deze pagina"
 
2410
 
2411
- #: includes/js-config.php:37
2412
- msgid "Duplicate This Template"
2413
- msgstr "Kopieer Dit Template"
2414
 
2415
- #: includes/js-config.php:38
2416
- msgid "Edit Global Settings"
2417
- msgstr "Wijzig Globale Instellingen"
 
2418
 
2419
- #: includes/js-config.php:39
2420
- msgid "Drop a row layout or module to get started!"
2421
- msgstr "Drop een rij layout of module om aan de slag te gaan!"
 
 
2422
 
2423
- #: includes/js-config.php:40
 
 
2424
  msgid ""
2425
- "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
2426
- "not functioning as expected the cause is most likely this error. Please help "
2427
- "us by disabling all plugins and testing Beaver Builder while reactivating "
2428
- "each to determine if the issue is related to a third party plugin."
2429
  msgstr ""
2430
- "Beaver Builder ontving de volgende JavaScript-fout. Als Beaver Builder niet "
2431
- "functioneert zoals verwacht is de oorzaak het meest waarschijnlijk deze "
2432
- "fout. Je kunt ons helpen door het alle plugins uit te schakelen, een voor "
2433
- "een weer in te schakelen en tussentijds Beaver Builder te testen om te "
2434
- "bepalen of het probleem is gerelateerd aan een derde partij plugin."
2435
-
2436
- #: includes/js-config.php:41
2437
- msgid "Full Size"
2438
- msgstr "Volledige Grootte"
2439
 
2440
- #: includes/js-config.php:42
2441
- msgid "Get Help"
2442
- msgstr "Hulp zoeken..."
 
2443
 
2444
- #: includes/js-config.php:43
2445
- msgid "Getting Started Video"
2446
- msgstr "Aan de slag Video"
 
 
 
 
 
2447
 
2448
  # @ fl-builder
2449
- #: includes/js-config.php:44
2450
- msgid "\"{message}\" on line {line} of {file}."
2451
- msgstr "\"{message}\" op rij {line} van {bestand}."
 
 
2452
 
2453
- #: includes/js-config.php:45
2454
- msgid "Insert"
2455
- msgstr "Invoegen"
 
2456
 
2457
- #: includes/js-config.php:46
2458
- msgid "Large"
2459
- msgstr "Groot"
 
 
2460
 
2461
- #: includes/js-config.php:47
2462
- msgid "Manage Templates"
2463
- msgstr "Templates Beheren"
 
 
2464
 
2465
- #: includes/js-config.php:48
2466
- msgid "Medium"
2467
- msgstr "Medium"
 
 
2468
 
2469
- #: includes/js-config.php:49
2470
- msgid "Module"
2471
- msgstr "Module"
 
 
2472
 
2473
- #: includes/js-config.php:50
2474
- msgid "Move"
2475
- msgstr "Verplaats"
 
 
2476
 
2477
- #: includes/js-config.php:51
2478
- msgid "New Column"
2479
- msgstr "Nieuwe Kolom"
 
 
2480
 
2481
- #: includes/js-config.php:52
2482
- msgid "New Row"
2483
- msgstr "Nieuwe Rij"
 
 
 
 
 
2484
 
2485
- #: includes/js-config.php:53
2486
- msgid "No results found."
2487
- msgstr "Geen resultaten gevonden."
 
 
 
 
 
 
 
 
 
 
 
2488
 
2489
- #: includes/js-config.php:54
2490
- msgid "No Thanks"
2491
- msgstr "Nee, bedankt"
 
2492
 
2493
- #: includes/js-config.php:55
2494
- msgid "OK"
2495
- msgstr "OK"
 
 
 
 
 
 
2496
 
2497
  # @ fl-builder
2498
- #: includes/js-config.php:56 modules/photo/photo.php:470
2499
- msgid "Photo Page"
2500
- msgstr "Afbeelding Pagina"
2501
 
2502
- #: includes/js-config.php:57
2503
- msgid "Photo Selected"
2504
- msgstr "Afbeelding Geselecteerd"
 
 
 
 
 
 
 
2505
 
2506
- #: includes/js-config.php:58
2507
- msgid "Photos Selected"
2508
- msgstr "Afbeeldingen Geselecteerd"
 
 
2509
 
2510
- #: includes/js-config.php:59 modules/subscribe-form/includes/frontend.php:15
2511
- msgid "Please Wait..."
2512
- msgstr "Even geduld a.u.b..."
 
 
 
2513
 
2514
- #: includes/js-config.php:60
2515
- msgid "Publish Changes"
2516
- msgstr "Wijzigingen publiceren"
 
2517
 
2518
- #: includes/js-config.php:62
2519
- msgid "Row"
2520
- msgstr "Rij"
 
 
 
2521
 
2522
  # @ fl-builder
2523
- #: includes/js-config.php:63 includes/row-settings.php:6
 
2524
  msgid "Row Settings"
2525
  msgstr "Rij Instellingen"
2526
 
2527
- #: includes/js-config.php:64
2528
- msgid "Save Core Template"
2529
- msgstr "Core Template Opslaan"
2530
-
2531
  # @ fl-builder
2532
- #: includes/js-config.php:65 includes/user-template-settings.php:4
2533
- msgid "Save Template"
2534
- msgstr "Template Opslaan"
2535
-
2536
- #: includes/js-config.php:67
2537
- msgid "Select Photos"
2538
- msgstr "Selecteer Afbeeldingen"
2539
-
2540
- #: includes/js-config.php:70
2541
- msgid "Please select an account before saving."
2542
- msgstr "Selecteer een account alvorens op te slaan."
2543
 
2544
- #: includes/js-config.php:71
2545
- msgid "Please connect an account before saving."
2546
- msgstr "Activeer eerst een account alvorens op te slaan."
 
 
 
 
 
 
2547
 
2548
- #: includes/js-config.php:72
2549
- msgid "Please select a list before saving."
2550
- msgstr "Selecteer een lijst alvorens op te slaan."
 
2551
 
2552
- #: includes/js-config.php:73
2553
- msgid "Take a Tour"
2554
- msgstr "Volg een Rondleiding"
 
 
 
 
 
 
2555
 
2556
- #: includes/js-config.php:74
2557
- msgid "Append New Layout"
2558
- msgstr "Nieuwe Layout toevoegen"
 
 
 
 
 
2559
 
2560
- #: includes/js-config.php:75
2561
- msgid "Replace Existing Layout"
2562
- msgstr "Vervang Bestaande Layout"
 
 
 
 
 
 
 
 
 
2563
 
2564
- #: includes/js-config.php:76
2565
- msgid "Template Saved!"
2566
- msgstr "Template Opgeslagen!"
 
 
2567
 
2568
- #: includes/js-config.php:77 modules/post-slider/post-slider.php:463
2569
- msgid "Thumbnail"
2570
- msgstr "Miniatuur"
 
 
2571
 
2572
- #: includes/js-config.php:78
2573
- msgid "Next"
2574
- msgstr "Volgende"
 
 
2575
 
2576
- #: includes/js-config.php:79
2577
- msgid "Get Started"
2578
- msgstr "Starten"
 
2579
 
2580
- #: includes/js-config.php:80
2581
- msgid "Choose a Template"
2582
- msgstr "Kies een Template"
 
 
2583
 
2584
- #: includes/js-config.php:81
 
2585
  msgid ""
2586
- "Get started by choosing a layout template to customize, or build a page from "
2587
- "scratch by selecting the blank layout template."
2588
  msgstr ""
2589
- "Ga aan de slag door een layout template te kiezen om aan te passen, of bouw "
2590
- "een pagina uit het niets door de lege layout template te selecteren."
2591
 
2592
- #: includes/js-config.php:82
2593
- msgid "Add Rows"
2594
- msgstr "Rijen Toevoegen"
 
2595
 
2596
- #: includes/js-config.php:83
2597
- msgid ""
2598
- "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
2599
- "and dropping row layouts onto the page."
2600
  msgstr ""
2601
- "Voeg rijen met meerder kolommen toe, pas afstand aan, voeg achtergronden toe "
2602
- "en meer door rij-layouts te slepen naar de pagina."
2603
 
2604
  # @ fl-builder
2605
- #: includes/js-config.php:84 includes/ui.php:22 includes/ui.php:60
2606
- msgid "Add Content"
2607
- msgstr "Inhoud Toevoegen"
2608
-
2609
- #: includes/js-config.php:85
2610
- msgid ""
2611
- "Add new content by dragging and dropping modules or widgets into your row "
2612
- "layouts or to create a new row layout."
2613
- msgstr ""
2614
- "Voeg nieuwe inhoud toe door modules of widgets in je bestaande rij-layouts "
2615
- "te slepen, of door een nieuwe rij-layout te maken."
2616
 
2617
- #: includes/js-config.php:86
2618
- msgid "Edit Content"
2619
- msgstr "Inhoud Bewerken"
 
 
2620
 
2621
- #: includes/js-config.php:87
2622
- msgid ""
2623
- "Move your mouse over rows, columns or modules to edit and interact with them."
2624
- msgstr ""
2625
- "Verplaats je muis over de rijen, kolommen of modules om ze te bewerken en in "
2626
- "te stellen."
2627
 
2628
- #: includes/js-config.php:88
 
 
2629
  msgid ""
2630
- "Use the action buttons to perform actions such as moving, editing, "
2631
- "duplicating or deleting rows, columns and modules."
 
2632
  msgstr ""
2633
- "Gebruik de actie buttons om rijen, kolommen of modules te verplaatsen, "
2634
- "bewerken, kopiëren of verwijderen."
 
 
2635
 
2636
- #: includes/js-config.php:89
2637
- msgid "Add More Content"
2638
- msgstr "Meer Inhoud Toevoegen"
 
 
2639
 
2640
- #: includes/js-config.php:90
2641
- msgid ""
2642
- "Use the Add Content button to open the content panel and add new row "
2643
- "layouts, modules or widgets."
2644
- msgstr ""
2645
- "Gebruik de knop Inhoud Toevoegen om het inhoud paneel te openen en voeg "
2646
- "nieuwe rij-layouts, modules of widgets toe."
2647
 
2648
- #: includes/js-config.php:91
2649
- msgid "Change Templates"
2650
- msgstr "Templates Wijzigen"
2651
-
2652
- #: includes/js-config.php:92
2653
- msgid ""
2654
- "Use the Templates button to pick a new template or append one to your "
2655
- "layout. Appending will insert a new template at the end of your existing "
2656
- "page content."
2657
- msgstr ""
2658
- "Gebruik de Templates button om een nieuwe template te selecteren of voeg een "
2659
- "template toe aan je eigen layout. Wanneer je toevoegt zal de nieuwe template "
2660
- "achter je bestaande inhoud geplaatst worden."
2661
-
2662
- #: includes/js-config.php:93
2663
- msgid "Helpful Tools"
2664
- msgstr "Handige Tools"
2665
-
2666
- #: includes/js-config.php:94
2667
- msgid ""
2668
- "The Tools button lets you duplicate a page, save a template or edit the "
2669
- "global settings."
2670
- msgstr ""
2671
- "De Gereedschappen knop stelt je in staat een pagina te kopiëren, een "
2672
- "template op te slaan of de globale instellingen te bewerken."
2673
-
2674
- #: includes/js-config.php:95
2675
- msgid "Publish Your Changes"
2676
- msgstr "Wijzigingen Publiceren"
2677
-
2678
- #: includes/js-config.php:96
2679
- msgid ""
2680
- "Once you're finished, click the Done button to publish your changes, save a "
2681
- "draft or revert back to the last published state."
2682
- msgstr ""
2683
- "Zodra je klaar bent, klikt je op de knop Klaar om je wijzigingen te "
2684
- "publiceren, een concept op te slaan of terug te keren naar de laatst "
2685
- "gepubliceerde staat."
2686
-
2687
- #: includes/js-config.php:97
2688
- msgid "Let's Get Building!"
2689
- msgstr "Laten We Bouwen!"
2690
-
2691
- #: includes/js-config.php:98
2692
- msgid ""
2693
- "Now that you know the basics, you're ready to start building! If at any time "
2694
- "you need help, click the help icon in the upper right corner to access the "
2695
- "help menu. Happy building!"
2696
- msgstr ""
2697
- "Nu dat je de basis kent, ben je klaar om te gaan bouwen! Als je op enig "
2698
- "moment hulp nodig hebt, klik dan op het Help-pictogram in de "
2699
- "rechterbovenhoek om het helpmenu te openen. Veel plezier met bouwen!"
2700
-
2701
- #: includes/js-config.php:99
2702
- msgid ""
2703
- "The settings you are currently editing will not be saved if you navigate "
2704
- "away from this page."
2705
- msgstr ""
2706
- "De instellingen die je momenteel bewerkt worden niet opgeslagen als je van "
2707
- "deze pagina weg navigeert."
2708
-
2709
- #: includes/js-config.php:100
2710
- msgid "View the Knowledge Base"
2711
- msgstr "Bekijk Kennisbank"
2712
-
2713
- #: includes/js-config.php:101
2714
- msgid "Visit the Forums"
2715
- msgstr "Naar het forum"
2716
-
2717
- #: includes/js-config.php:102
2718
- msgid "Watch the Video"
2719
- msgstr "Bekijk de Video"
2720
-
2721
- #: includes/js-config.php:103
2722
- msgid ""
2723
- "Welcome! It looks like this might be your first time using the builder. "
2724
- "Would you like to take a tour?"
2725
- msgstr ""
2726
- "Welkom! Het lijkt erop dat dit zou de eerste keer is dat je gaat bouwen met "
2727
- "de bouwer. Wil je wellicht een rondleiding?"
2728
-
2729
- #: includes/js-config.php:104
2730
- msgid "Yes Please!"
2731
- msgstr "Ja Graag!"
2732
 
2733
  # @ fl-builder
2734
- #: includes/loop-settings.php:20
2735
- msgid "Post Type"
2736
- msgstr "Bericht Type"
 
 
2737
 
2738
  # @ fl-builder
2739
- #: includes/loop-settings.php:26
2740
- msgid "Order By"
2741
- msgstr "Sorteer Op"
 
2742
 
2743
  # @ fl-builder
2744
- #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
2745
- #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:503
2746
- #: modules/woocommerce/woocommerce.php:189
2747
- msgid "Date"
2748
- msgstr "Datum"
 
 
2749
 
2750
  # @ fl-builder
2751
- #: includes/loop-settings.php:30
2752
- msgid "Date Last Modified"
2753
- msgstr "Datum Laatst Gewijzigd"
2754
 
2755
  # @ fl-builder
2756
- #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90
2757
- #: modules/pricing-table/pricing-table.php:94
2758
- msgid "Title"
2759
- msgstr "Titel"
2760
 
2761
  # @ fl-builder
2762
- #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
2763
- #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:494
2764
- msgid "Author"
2765
- msgstr "Auteur"
2766
 
2767
  # @ fl-builder
2768
- #: includes/loop-settings.php:33
2769
- msgid "Comment Count"
2770
- msgstr "Aantal Reacties"
2771
 
2772
  # @ fl-builder
2773
- #: includes/loop-settings.php:34
2774
- msgid "Menu Order"
2775
- msgstr "Menu Volgorde"
2776
 
2777
  # @ fl-builder
2778
- #: includes/loop-settings.php:35
2779
- msgid "Random"
2780
- msgstr "Willekeurig"
2781
 
2782
  # @ fl-builder
2783
- #: includes/loop-settings.php:42
2784
- msgid "Order"
2785
- msgstr "Volgorde"
2786
 
2787
  # @ fl-builder
2788
- #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
2789
- msgid "Descending"
2790
- msgstr "Aflopend"
2791
 
2792
  # @ fl-builder
2793
- #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
2794
- msgid "Ascending"
2795
- msgstr "Oplopend"
2796
-
2797
- #: includes/loop-settings.php:52
2798
- msgctxt "How many posts to skip."
2799
- msgid "Offset"
2800
- msgstr "Overslaan"
2801
 
2802
- #: includes/loop-settings.php:55
2803
- msgid "Skip this many posts that match the specified criteria."
2804
- msgstr "Sla zoveel berichten over die overeenkomen met de opgegeven criteria."
 
 
 
 
2805
 
2806
  # @ fl-builder
2807
- #: includes/loop-settings.php:62
2808
- msgid "Filter"
2809
- msgstr "Filter"
2810
 
2811
  # @ fl-builder
2812
- #: includes/loop-settings.php:73
2813
- #, php-format
2814
- msgid "Enter a comma separated list of %s. Only these %s will be shown."
2815
- msgstr "Voer een komma gescheiden lijst van %s. Alleen deze %s worden getoond."
2816
 
2817
  # @ fl-builder
2818
- #: includes/loop-settings.php:86
2819
- #, php-format
2820
- msgid ""
2821
- "Enter a comma separated list of %s. Only posts with these %s will be shown."
2822
- msgstr ""
2823
- "Voer een komma gescheiden lijst van %s. Alleen berichten met deze %s zullen "
2824
- "worden getoond."
2825
 
2826
  # @ fl-builder
2827
- #: includes/loop-settings.php:100
2828
- msgid "Authors"
2829
- msgstr "Auteurs"
 
2830
 
2831
  # @ fl-builder
2832
- #: includes/loop-settings.php:101
2833
- msgid ""
2834
- "Enter a comma separated list of authors usernames. Only posts with these "
2835
- "authors will be shown."
2836
- msgstr ""
2837
- "Voer een komma gescheiden lijst van auteurs gebruikersnamen in. Alleen "
2838
- "berichten van deze berichten zullen worden getoond."
2839
 
2840
  # @ fl-builder
2841
- #: includes/module-settings.php:75
2842
- msgid "Choose whether to show or hide this module at different device sizes."
2843
  msgstr ""
2844
  "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
2845
  "afmetingen."
2846
 
2847
  # @ fl-builder
2848
- #: includes/module-settings.php:83
2849
- msgid "Animation"
2850
- msgstr "Animatie"
 
 
 
 
 
2851
 
2852
  # @ fl-builder
2853
- #: includes/module-settings.php:89
2854
- msgctxt "Animation style."
2855
- msgid "None"
2856
- msgstr "Niet"
 
 
 
 
 
2857
 
2858
- # @ fl-builder
2859
- #: includes/module-settings.php:90
2860
- msgctxt "Animation style."
2861
- msgid "Fade In"
2862
- msgstr "Langzaam Verschijnen"
2863
 
2864
  # @ fl-builder
2865
- #: includes/module-settings.php:91
2866
- msgctxt "Animation style."
2867
- msgid "Slide Left"
2868
- msgstr "Schuif Links"
 
 
 
2869
 
2870
  # @ fl-builder
2871
- #: includes/module-settings.php:92
2872
- msgctxt "Animation style."
2873
- msgid "Slide Right"
2874
- msgstr "Schuif Rechts"
2875
 
2876
  # @ fl-builder
2877
- #: includes/module-settings.php:93
2878
- msgctxt "Animation style."
2879
- msgid "Slide Up"
2880
- msgstr "Schuif Boven"
2881
 
2882
  # @ fl-builder
2883
- #: includes/module-settings.php:94
2884
- msgctxt "Animation style."
2885
- msgid "Slide Down"
2886
- msgstr "Schuif Onder"
 
 
 
 
2887
 
2888
  # @ fl-builder
2889
- #: includes/module-settings.php:102
2890
- #: modules/content-slider/content-slider.php:230
2891
- #: modules/post-carousel/post-carousel.php:145
2892
- #: modules/post-slider/post-slider.php:362
2893
- #: modules/testimonials/testimonials.php:91
2894
- msgid "Delay"
2895
- msgstr "Vertraging"
2896
 
2897
- # @ fl-builder
2898
- #: includes/module-settings.php:106 includes/row-settings.php:290
2899
- #: includes/row-settings.php:321 modules/content-slider/content-slider.php:234
2900
- #: modules/content-slider/content-slider.php:251
2901
- #: modules/post-carousel/post-carousel.php:148
2902
- #: modules/post-carousel/post-carousel.php:164
2903
- #: modules/post-slider/post-slider.php:365
2904
- #: modules/post-slider/post-slider.php:390 modules/slideshow/slideshow.php:393
2905
- #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
2906
- #: modules/testimonials/testimonials.php:95
2907
- #: modules/testimonials/testimonials.php:112
2908
- msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2909
- msgid "seconds"
2910
- msgstr "seconden"
2911
 
2912
- # @ fl-builder
2913
- #: includes/module-settings.php:107
2914
- msgid "The amount of time in seconds before this animation starts."
2915
- msgstr "De hoeveelheid tijd in seconden voordat deze animatie begint."
 
 
 
2916
 
2917
- # @ fl-builder
2918
- #: includes/module-settings.php:120
 
 
 
 
 
 
 
2919
  msgid ""
2920
- "A unique ID that will be applied to this module's HTML. Must start with a "
2921
- "letter and only contain dashes, underscores, letters or numbers. No spaces."
2922
  msgstr ""
2923
- "Een unieke ID die zal worden toegepast op deze kolom's HTML. Moet beginnen "
2924
- "met een letter en alleen streepjes, onderstrepingstekens, letters of "
2925
- "getallen bevatten. Geen spaties."
2926
 
2927
- # @ fl-builder
2928
- #: includes/module-settings.php:127 includes/row-settings.php:639
2929
- msgid "Class"
2930
- msgstr "Class"
2931
 
2932
- # @ fl-builder
2933
- #: includes/module-settings.php:128
2934
  msgid ""
2935
- "A class that will be applied to this module's HTML. Must start with a letter "
2936
- "and only contain dashes, underscores, letters or numbers. Separate multiple "
2937
- "classes with spaces."
2938
  msgstr ""
2939
- "Een class die zal worden toegepast op deze kolom's HTML. Moet beginnen met "
2940
- "een letter en alleen streepjes, onderstrepingstekens, letters of getallen "
2941
- "bevatten. Meerdere klassen scheiden met een spatie."
2942
 
2943
- # @ fl-builder
2944
- #: includes/row-settings.php:16 modules/button/button.php:197
2945
- #: modules/content-slider/content-slider.php:484
2946
- msgid "Width"
2947
- msgstr "Breed"
2948
 
2949
- # @ fl-builder
2950
- #: includes/row-settings.php:27
2951
  msgid ""
2952
- "Full width rows span the width of the page from edge to edge. Fixed rows are "
2953
- "no wider than the Row Max Width set in the Global Settings."
2954
  msgstr ""
2955
- "Volle breedte rijen overspannen de breedte van de pagina van rand tot rand. "
2956
- "Vaste rijen zijn niet breder zijn dan de Rij Max Breedte in de Algemene "
2957
- "Instellingen."
2958
 
2959
- # @ fl-builder
2960
- #: includes/row-settings.php:34
2961
- msgid "Content Width"
2962
- msgstr "Inhoud Breedte"
2963
 
2964
- # @ fl-builder
2965
- #: includes/row-settings.php:40
2966
  msgid ""
2967
- "Full width content spans the width of the page from edge to edge. Fixed "
2968
- "content is no wider than the Row Max Width set in the Global Settings."
2969
  msgstr ""
2970
- "Volle breedte inhoud overspant de breedte van de pagina van rand tot rand. "
2971
- "Vaste inhoud is niet breder dan de Rij Max breedte in de Algemene "
2972
- "Instellingen."
2973
 
2974
- # @ fl-builder
2975
- #: includes/row-settings.php:48 modules/button/button.php:120
2976
- #: modules/cta/cta.php:188 modules/heading/heading.php:72
2977
- #: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2978
- #: modules/post-carousel/post-carousel.php:392
2979
- #: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:675
2980
- msgid "Colors"
2981
- msgstr "Kleuren"
2982
 
2983
- # @ fl-builder
2984
- #: includes/row-settings.php:52 modules/button/button.php:139
2985
- #: modules/callout/callout.php:534
2986
- #: modules/content-slider/content-slider.php:529
2987
- #: modules/content-slider/content-slider.php:651
2988
- #: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192
2989
- #: modules/cta/cta.php:289 modules/heading/heading.php:77
2990
- #: modules/post-carousel/post-carousel.php:396
2991
- #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:679
2992
- #: modules/subscribe-form/subscribe-form.php:207
2993
- msgid "Text Color"
2994
- msgstr "Tekst kleur"
2995
 
2996
- # @ fl-builder
2997
- #: includes/row-settings.php:95
2998
- msgctxt "Background type."
2999
- msgid "Video"
3000
- msgstr "Video"
3001
 
3002
- # @ fl-builder
3003
- #: includes/row-settings.php:97
3004
- msgctxt "Background type."
3005
- msgid "Slideshow"
3006
- msgstr "Diavoorstelling"
 
 
3007
 
3008
- # @ fl-builder
3009
- #: includes/row-settings.php:101
3010
- msgctxt "Background type."
3011
- msgid "Parallax"
3012
- msgstr "Parallax"
3013
 
3014
- # @ fl-builder
3015
- #: includes/row-settings.php:227
3016
- msgid "Background Video"
3017
- msgstr "Achtergrond Video"
3018
 
3019
- # @ fl-builder
3020
- #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
3021
- #: modules/video/video.php:19 modules/video/video.php:100
3022
- msgid "Video"
3023
- msgstr "Video"
3024
 
3025
- # @ fl-builder
3026
- #: includes/row-settings.php:232
 
 
 
 
 
 
 
 
 
 
 
3027
  msgid ""
3028
- "An HTML5 video to use as the background of this row. Supported types are "
3029
- "MP4, WebM and Ogg."
 
 
3030
  msgstr ""
3031
- "Een HTML5 video om te gebruiken als de achtergrond van deze rij. "
3032
- "Ondersteunde types zijn MP4, WebM en Ogg."
 
 
 
3033
 
3034
- # @ fl-builder
3035
- #: includes/row-settings.php:239
3036
- msgid "Fallback Photo"
3037
- msgstr "Terugval Afbeelding"
3038
 
3039
- # @ fl-builder
3040
- #: includes/row-settings.php:240
3041
- msgid "A photo that will be displayed if the video fails to load."
3042
- msgstr ""
3043
- "Een afbeelding die wordt weergegeven als de video niet kan worden geladen."
3044
 
3045
  # @ fl-builder
3046
- #: includes/row-settings.php:248
3047
- msgid "Background Slideshow"
3048
- msgstr "Achtergrond Diavoorstelling"
3049
 
3050
- # @ fl-builder
3051
- #: includes/row-settings.php:252 modules/gallery/gallery.php:241
3052
- #: modules/slideshow/slideshow.php:271
3053
- msgid "Source"
3054
- msgstr "Bron"
3055
 
3056
- # @ fl-builder
3057
- #: includes/row-settings.php:255 modules/gallery/gallery.php:244
3058
- #: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
3059
- #: modules/video/video.php:86
3060
- msgid "Media Library"
3061
- msgstr "Media Bibliotheek"
3062
 
3063
- # @ fl-builder
3064
- #: includes/row-settings.php:258 modules/gallery/gallery.php:247
3065
- #: modules/slideshow/slideshow.php:277
3066
- msgid ""
3067
- "Pull images from the WordPress media library or a gallery on your SmugMug "
3068
- "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
3069
- "accessed by using the get a link function in your SmugMug gallery."
3070
- msgstr ""
3071
- "Trek beelden uit de WordPress media bibliotheek of een galerie op je SmugMug "
3072
- "site door het plaatsen van de RSS-feed URL van SmugMug. De RSS feed URL kan "
3073
- "worden benaderd met behulp van de \"get a link\" functie in uw SmugMug "
3074
- "gallery."
3075
 
3076
- # @ fl-builder
3077
- #: includes/row-settings.php:273 modules/gallery/gallery.php:259
3078
- #: modules/slideshow/slideshow.php:289
3079
- msgid "Photos"
3080
- msgstr "Afbeeldingen"
3081
 
3082
- # @ fl-builder
3083
- #: includes/row-settings.php:280 modules/gallery/gallery.php:263
3084
- #: modules/slideshow/slideshow.php:293
3085
- msgid "Feed URL"
3086
- msgstr "Feed URL"
3087
 
3088
- # @ fl-builder
3089
- #: includes/row-settings.php:287 includes/row-settings.php:352
3090
- #: modules/slideshow/slideshow.php:390
3091
- msgid "Speed"
3092
- msgstr "Snelheid"
3093
 
3094
- # @ fl-builder
3095
- #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
3096
- #: modules/post-slider/post-slider.php:369 modules/slideshow/slideshow.php:397
3097
- #: modules/testimonials/testimonials.php:99
3098
- msgid "Transition"
3099
- msgstr "Overgang"
3100
 
3101
- # @ fl-builder
3102
- #: includes/row-settings.php:300
3103
- msgctxt "Slideshow transition type."
3104
- msgid "None"
3105
- msgstr "Geen"
3106
 
3107
- # @ fl-builder
3108
- #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
3109
- #: modules/post-carousel/post-carousel.php:241
3110
- #: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:372
3111
- #: modules/slideshow/slideshow.php:401
3112
- #: modules/testimonials/testimonials.php:103
3113
- msgid "Fade"
3114
- msgstr "Vervagen"
3115
 
3116
- # @ fl-builder
3117
- #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
3118
- msgid "Ken Burns"
3119
- msgstr "Ken Burns"
3120
 
3121
- # @ fl-builder
3122
- #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
3123
- msgid "Slide Horizontal"
3124
- msgstr "Schuif Horizontaal"
3125
 
3126
- # @ fl-builder
3127
- #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
3128
- msgid "Slide Vertical"
3129
- msgstr "Schuif Vertikaal"
3130
 
3131
- # @ fl-builder
3132
- #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
3133
- msgid "Blinds"
3134
- msgstr "Blinds"
3135
 
3136
  # @ fl-builder
3137
- #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
3138
- msgid "Bars"
3139
- msgstr "Balken"
3140
 
3141
- # @ fl-builder
3142
- #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
3143
- msgid "Random Bars"
3144
- msgstr "Willekeurige Balken"
3145
 
3146
- # @ fl-builder
3147
- #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
3148
- msgid "Boxes"
3149
- msgstr "Vakken"
3150
 
3151
- # @ fl-builder
3152
- #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
3153
- msgid "Random Boxes"
3154
- msgstr "Willekeurige Vakken"
3155
 
3156
- # @ fl-builder
3157
- #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
3158
- msgid "Boxes Grow"
3159
- msgstr "Groeiende Vakken"
3160
 
3161
- # @ fl-builder
3162
- #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
3163
- #: modules/post-carousel/post-carousel.php:161
3164
- #: modules/post-slider/post-slider.php:387 modules/slideshow/slideshow.php:415
3165
- #: modules/testimonials/testimonials.php:108
3166
- msgid "Transition Speed"
3167
- msgstr "Animatie snelheid"
3168
 
3169
- # @ fl-builder
3170
- #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
3171
- msgid "Randomize Photos"
3172
- msgstr "Willekeurige Afbeeldingen"
3173
 
3174
- # @ fl-builder
3175
- #: includes/row-settings.php:341
3176
- msgid "Background Parallax"
3177
- msgstr "Achtergrond Parallax"
3178
 
3179
  # @ fl-builder
3180
- #: includes/row-settings.php:355
3181
- msgid "Fast"
3182
- msgstr "Snel"
3183
 
3184
- # @ fl-builder
3185
- #: includes/row-settings.php:356
3186
- msgctxt "Speed."
3187
- msgid "Medium"
3188
- msgstr "Medium"
3189
 
3190
- # @ fl-builder
3191
- #: includes/row-settings.php:357
3192
- msgid "Slow"
3193
- msgstr "Langzaam"
3194
 
3195
- # @ fl-builder
3196
- #: includes/row-settings.php:619
3197
- msgid "Choose whether to show or hide this row at different device sizes."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3198
  msgstr ""
3199
- "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
3200
- "afmetingen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3201
 
3202
- # @ fl-builder
3203
- #: includes/row-settings.php:632
3204
  msgid ""
3205
- "A unique ID that will be applied to this row's HTML. Must start with a "
3206
- "letter and only contain dashes, underscores, letters or numbers. No spaces."
 
3207
  msgstr ""
3208
- "Een unieke ID die zal worden toegepast op deze kolom's HTML. Moet beginnen "
3209
- "met een letter en alleen streepjes, onderstrepingstekens, letters of "
3210
- "getallen bevatten. Geen spaties."
3211
 
3212
- # @ fl-builder
3213
- #: includes/row-settings.php:640
3214
  msgid ""
3215
- "A class that will be applied to this row's HTML. Must start with a letter "
3216
- "and only contain dashes, underscores, letters or numbers. Separate multiple "
3217
- "classes with spaces."
3218
  msgstr ""
3219
- "Een class die zal worden toegepast op deze kolom's HTML. Moet beginnen met "
3220
- "een letter en alleen streepjes, onderstrepingstekens, letters of getallen "
3221
- "bevatten. Meerdere klassen scheiden met een spatie."
3222
 
3223
- #: includes/service-settings.php:32
3224
- msgid "Service"
3225
- msgstr "Service"
3226
 
3227
- # @ fl-builder
3228
- #: includes/settings.php:62
3229
- msgid "Save"
3230
- msgstr "Opslaan"
3231
 
3232
- # @ fl-builder
3233
- #: includes/template-selector.php:4
3234
- msgid "Layout Templates"
3235
- msgstr "Layout Templates"
3236
 
3237
- # @ fl-builder
3238
- #: includes/template-selector.php:17
3239
- msgid "Your Templates"
3240
- msgstr "Jouw Templates"
3241
 
3242
- # @ fl-builder
3243
- #: includes/template-selector.php:53
3244
- msgid ""
3245
- "You haven't saved any templates yet! To do so, create a layout and save it "
3246
- "as a template under <strong>Tools &rarr; Save Template</strong>."
3247
- msgstr ""
3248
- "Je hebt nog geen templates opgeslagen! Om dit te doen, maak je een layout en "
3249
- "sla je het op als een sjabloon onder <strong>Gereedschappen → Template "
3250
- "Opslaan</strong>."
3251
 
3252
- # @ fl-builder
3253
- #: includes/template-selector.php:58
3254
- msgctxt "Template name."
3255
- msgid "Blank"
3256
- msgstr "Blanco"
3257
 
3258
- # @ fl-builder
3259
- #: includes/template-selector.php:71
3260
- msgid "Delete"
3261
- msgstr "Verwijder"
 
 
 
3262
 
3263
- # @ fl-builder
3264
- #: includes/ui.php:8 includes/ui.php:13
3265
- #, php-format
3266
- msgid "Template: %s"
3267
- msgstr "Template: %s"
3268
 
3269
- # @ fl-builder
3270
- #: includes/ui.php:21 includes/ui.php:56
3271
- msgid "Tools"
3272
- msgstr "Gereedschappen"
3273
 
3274
- # @ fl-builder
3275
- #: includes/ui.php:34
3276
- msgid "Page Builder Demo"
3277
- msgstr "Pagina Builder Demo"
3278
 
3279
- # @ fl-builder
3280
- #: includes/ui.php:51
3281
- msgid "Buy Now!"
3282
- msgstr "Nu Kopen!"
3283
 
3284
- # @ fl-builder
3285
- #: includes/ui.php:53
3286
- msgid "Upgrade!"
3287
- msgstr "Upgraden!"
3288
 
3289
  # @ fl-builder
3290
- #: includes/ui.php:78
3291
  msgid "Row Layouts"
3292
  msgstr "Rij Layouts"
3293
 
3294
  # @ fl-builder
3295
- #: includes/ui.php:82
3296
  msgid "1 Column"
3297
  msgstr "1 Kolom"
3298
 
3299
  # @ fl-builder
3300
- #: includes/ui.php:83
3301
  msgid "2 Columns"
3302
  msgstr "2 Kolommen"
3303
 
3304
  # @ fl-builder
3305
- #: includes/ui.php:84
3306
  msgid "3 Columns"
3307
  msgstr "3 Kolommen"
3308
 
3309
  # @ fl-builder
3310
- #: includes/ui.php:85
3311
  msgid "4 Columns"
3312
  msgstr "4 Kolommen"
3313
 
3314
  # @ fl-builder
3315
- #: includes/ui.php:86
3316
  msgid "5 Columns"
3317
  msgstr "5 Kolommen"
3318
 
3319
  # @ fl-builder
3320
- #: includes/ui.php:87
3321
  msgid "6 Columns"
3322
  msgstr "6 Kolommen"
3323
 
3324
  # @ fl-builder
3325
- #: includes/ui.php:88
3326
  msgid "Left Sidebar"
3327
  msgstr "Linker Zijbalk"
3328
 
3329
  # @ fl-builder
3330
- #: includes/ui.php:89
3331
  msgid "Right Sidebar"
3332
  msgstr "Rechter Zijbalk"
3333
 
3334
  # @ fl-builder
3335
- #: includes/ui.php:90
3336
  msgid "Left &amp; Right Sidebar"
3337
  msgstr "Linker &amp; Rechter Zijbalk"
3338
 
@@ -3353,14 +3525,13 @@ msgstr ""
3353
  msgid "Subscribe Now"
3354
  msgstr "Nu Abonneren"
3355
 
3356
- # @ fl-builder
3357
  #: includes/updater/includes/form.php:5
3358
  msgid ""
3359
- "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
3360
  "enable automatic updates."
3361
  msgstr ""
3362
- "UPDATES NIET BESCHIKBAAR! Neem een abonnement of voer je licentiecode "
3363
- "hieronder in om automatische updates in te schakelen."
3364
 
3365
  # @ fl-builder
3366
  #: includes/updater/includes/form.php:11
@@ -3382,17 +3553,16 @@ msgstr "Niet Actief!"
3382
  msgid "Email address saved!"
3383
  msgstr "E-mailadres opgeslagen!"
3384
 
3385
- # @ fl-builder
3386
  #: includes/updater/includes/form.php:27
3387
  #, php-format
3388
- msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
3389
  msgstr ""
3390
- "Vul je <a%s>licentiesleutel</a> in om updates op afstand en ondersteuning in "
3391
- "te schakelen."
3392
 
3393
  #: includes/updater/includes/form.php:39
3394
  msgid "Save Subscription Settings"
3395
- msgstr "Bewaar Abonnements Instellingen"
3396
 
3397
  # @ fl-builder
3398
  #: includes/user-template-settings.php:8
@@ -3400,17 +3570,11 @@ msgid ""
3400
  "Save the current layout as a template that can be reused under "
3401
  "<strong>Templates &rarr; Your Templates</strong>."
3402
  msgstr ""
3403
- "Sla de huidige layout als een template op die onder <strong>Templates → Je "
3404
- "Sjablonen</strong> kan worden hergebruikt."
3405
-
3406
- # @ fl-builder
3407
- #: includes/user-template-settings.php:15
3408
- msgctxt "Template name."
3409
- msgid "Name"
3410
- msgstr "Naam"
3411
 
3412
  # @ fl-builder
3413
- #: modules/accordion/accordion.php:14
3414
  msgid "Accordion"
3415
  msgstr "Accordion"
3416
 
@@ -3473,7 +3637,7 @@ msgid ""
3473
  "Choosing yes will keep only one item open at a time. Choosing no will allow "
3474
  "multiple items to be open at the same time."
3475
  msgstr ""
3476
- "Kies ja om slechts één item gelijktijdig te tonen. Kies nee om toe te staan "
3477
  "dat meerdere items gelijktijdig open staan."
3478
 
3479
  # @ fl-builder
@@ -3492,9 +3656,9 @@ msgstr "Label"
3492
  #: modules/post-carousel/post-carousel.php:363
3493
  #: modules/post-carousel/post-carousel.php:435
3494
  #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
3495
- #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:543
3496
- #: modules/post-slider/post-slider.php:547
3497
- #: modules/post-slider/post-slider.php:754 modules/tabs/tabs.php:89
3498
  msgid "Content"
3499
  msgstr "Inhoud"
3500
 
@@ -3525,20 +3689,17 @@ msgstr "Klik Hier"
3525
  msgid "Icon"
3526
  msgstr "Icoon"
3527
 
3528
- # @ fl-builder
3529
  #: modules/button/button.php:80 modules/cta/cta.php:236
3530
  #: modules/subscribe-form/subscribe-form.php:178
3531
  msgid "Icon Position"
3532
- msgstr "Icoon positie"
3533
 
3534
- # @ fl-builder
3535
  #: modules/button/button.php:83 modules/callout/callout.php:508
3536
  #: modules/content-slider/content-slider.php:629 modules/cta/cta.php:239
3537
  #: modules/subscribe-form/subscribe-form.php:181
3538
  msgid "Before Text"
3539
- msgstr "Voor tekst"
3540
 
3541
- # @ fl-builder
3542
  #: modules/button/button.php:84 modules/callout/callout.php:509
3543
  #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:240
3544
  #: modules/subscribe-form/subscribe-form.php:182
@@ -3696,7 +3857,7 @@ msgstr "Een kop en tekstfragment met een optionele link, icoon en afbeelding."
3696
  #: modules/content-slider/content-slider.php:414
3697
  #: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75
3698
  #: modules/heading/heading.php:14 modules/heading/heading.php:33
3699
- #: modules/post-slider/post-slider.php:577
3700
  #: modules/testimonials/testimonials.php:56
3701
  #: modules/testimonials/testimonials.php:61
3702
  msgid "Heading"
@@ -3721,7 +3882,7 @@ msgstr "Kopregel Structuur"
3721
  # @ fl-builder
3722
  #: modules/callout/callout.php:268
3723
  #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3724
- #: modules/post-slider/post-slider.php:581
3725
  msgid "Heading Tag"
3726
  msgstr "Kopregel Tag"
3727
 
@@ -3729,8 +3890,8 @@ msgstr "Kopregel Tag"
3729
  #: modules/callout/callout.php:281
3730
  #: modules/content-slider/content-slider.php:446
3731
  #: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
3732
- #: modules/post-slider/post-slider.php:594
3733
- #: modules/post-slider/post-slider.php:608
3734
  #: modules/testimonials/testimonials.php:69
3735
  msgid "Heading Size"
3736
  msgstr "Kopregel Grootte"
@@ -3740,12 +3901,6 @@ msgstr "Kopregel Grootte"
3740
  msgid "Heading Custom Size"
3741
  msgstr "Kopregel Aangepaste Grootte"
3742
 
3743
- # @ fl-builder
3744
- #: modules/callout/callout.php:306 modules/post-carousel/post-carousel.php:255
3745
- #: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:459
3746
- msgid "Image"
3747
- msgstr "Afbeelding"
3748
-
3749
  # @ fl-builder
3750
  #: modules/callout/callout.php:313
3751
  msgid "Image Type"
@@ -3759,43 +3914,42 @@ msgstr "Geen"
3759
 
3760
  # @ fl-builder
3761
  #: modules/callout/callout.php:341 modules/photo/photo.php:417
3762
- #: modules/post-slider/post-slider.php:476 modules/slideshow/slideshow.php:320
3763
  msgid "Crop"
3764
  msgstr "Pas aan"
3765
 
3766
- # @ fl-builder
3767
- #: modules/callout/callout.php:344
3768
- msgctxt "Crop"
3769
  msgid "None"
3770
- msgstr "Geen"
3771
 
3772
  # @ fl-builder
3773
  #: modules/callout/callout.php:345 modules/photo/photo.php:421
3774
- #: modules/post-slider/post-slider.php:480
3775
  msgid "Landscape"
3776
  msgstr "Landschap"
3777
 
3778
  # @ fl-builder
3779
  #: modules/callout/callout.php:346 modules/photo/photo.php:422
3780
- #: modules/post-slider/post-slider.php:481
3781
  msgid "Panorama"
3782
  msgstr "Panorama"
3783
 
3784
  # @ fl-builder
3785
  #: modules/callout/callout.php:347 modules/photo/photo.php:423
3786
- #: modules/post-slider/post-slider.php:482
3787
  msgid "Portrait"
3788
  msgstr "Portret"
3789
 
3790
  # @ fl-builder
3791
  #: modules/callout/callout.php:348 modules/photo/photo.php:424
3792
- #: modules/post-slider/post-slider.php:483
3793
  msgid "Square"
3794
  msgstr "Vierkant"
3795
 
3796
  # @ fl-builder
3797
  #: modules/callout/callout.php:349 modules/photo/photo.php:425
3798
- #: modules/post-slider/post-slider.php:484
3799
  msgid "Circle"
3800
  msgstr "Cirkel"
3801
 
@@ -3848,7 +4002,7 @@ msgstr "Icoon Structuur"
3848
  # @ fl-builder
3849
  #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
3850
  #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
3851
- #: modules/post-grid/post-grid.php:139
3852
  msgid "Size"
3853
  msgstr "Grootte"
3854
 
@@ -3883,7 +4037,7 @@ msgstr "Geen"
3883
 
3884
  # @ fl-builder
3885
  #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
3886
- #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:566
3887
  msgid "Read More"
3888
  msgstr "Lees verder"
3889
 
@@ -3894,11 +4048,10 @@ msgstr "Lees verder"
3894
  msgid "Button Icon"
3895
  msgstr "Button Icoon"
3896
 
3897
- # @ fl-builder
3898
  #: modules/callout/callout.php:505
3899
  #: modules/content-slider/content-slider.php:626
3900
  msgid "Button Icon Position"
3901
- msgstr "Knop icoon positie"
3902
 
3903
  # @ fl-builder
3904
  #: modules/callout/callout.php:515
@@ -3978,12 +4131,12 @@ msgstr "Naamveld"
3978
  #: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
3979
  #: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
3980
  #: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
3981
- #: modules/post-slider/post-slider.php:442
3982
- #: modules/post-slider/post-slider.php:497
3983
- #: modules/post-slider/post-slider.php:506
3984
- #: modules/post-slider/post-slider.php:536
3985
- #: modules/post-slider/post-slider.php:550
3986
- #: modules/post-slider/post-slider.php:559
3987
  #: modules/subscribe-form/subscribe-form.php:111
3988
  msgid "Show"
3989
  msgstr "Toon"
@@ -4001,12 +4154,12 @@ msgstr "Toon"
4001
  #: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
4002
  #: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
4003
  #: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
4004
- #: modules/post-slider/post-slider.php:443
4005
- #: modules/post-slider/post-slider.php:498
4006
- #: modules/post-slider/post-slider.php:507
4007
- #: modules/post-slider/post-slider.php:537
4008
- #: modules/post-slider/post-slider.php:551
4009
- #: modules/post-slider/post-slider.php:560
4010
  #: modules/subscribe-form/subscribe-form.php:112
4011
  msgid "Hide"
4012
  msgstr "Verberg"
@@ -4109,7 +4262,7 @@ msgstr "Geeft meerdere dia&#39;s met een optionele kopregel en call-to-action."
4109
 
4110
  # @ fl-builder
4111
  #: modules/content-slider/content-slider.php:198 modules/map/map.php:41
4112
- #: modules/post-slider/post-slider.php:344 modules/separator/separator.php:58
4113
  #: modules/slideshow/slideshow.php:302
4114
  msgid "Height"
4115
  msgstr "Hoogte"
@@ -4126,7 +4279,7 @@ msgstr ""
4126
  # @ fl-builder
4127
  #: modules/content-slider/content-slider.php:207
4128
  #: modules/post-carousel/post-carousel.php:136
4129
- #: modules/post-slider/post-slider.php:353 modules/slideshow/slideshow.php:381
4130
  #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
4131
  msgid "Auto Play"
4132
  msgstr "Autostart"
@@ -4146,7 +4299,7 @@ msgstr "Schuif"
4146
  # @ fl-builder
4147
  #: modules/content-slider/content-slider.php:255
4148
  #: modules/post-carousel/post-carousel.php:188
4149
- #: modules/post-slider/post-slider.php:414
4150
  #: modules/testimonials/testimonials.php:121
4151
  msgid "Show Arrows"
4152
  msgstr "Toon Pijlen:"
@@ -4154,7 +4307,7 @@ msgstr "Toon Pijlen:"
4154
  # @ fl-builder
4155
  #: modules/content-slider/content-slider.php:264
4156
  #: modules/post-carousel/post-carousel.php:179
4157
- #: modules/post-slider/post-slider.php:405
4158
  #: modules/testimonials/testimonials.php:151
4159
  msgid "Show Dots"
4160
  msgstr "Toon Stippen"
@@ -4177,7 +4330,7 @@ msgstr "Dia's"
4177
 
4178
  # @ fl-builder
4179
  #: modules/content-slider/content-slider.php:297
4180
- #: modules/post-slider/post-slider.php:373
4181
  msgid "Slide"
4182
  msgstr "Dia"
4183
 
@@ -4279,35 +4432,35 @@ msgstr "ondermarge"
4279
  # @ fl-builder
4280
  #: modules/content-slider/content-slider.php:508
4281
  msgid "Left Margin"
4282
- msgstr "Linker marge"
4283
 
4284
  # @ fl-builder
4285
  #: modules/content-slider/content-slider.php:516
4286
  msgid "Right Margin"
4287
- msgstr "Rechter marge"
4288
 
4289
  # @ fl-builder
4290
  #: modules/content-slider/content-slider.php:525
4291
  msgid "Text Colors"
4292
- msgstr "Tekst kleuren"
4293
 
4294
  # @ fl-builder
4295
  #: modules/content-slider/content-slider.php:535
4296
  msgid "Text Shadow"
4297
- msgstr "Tekst schaduw"
4298
 
4299
  # @ fl-builder
4300
  #: modules/content-slider/content-slider.php:544
4301
  #: modules/content-slider/content-slider.php:770
4302
  #: modules/post-carousel/post-carousel.php:411
4303
- #: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:716
4304
  msgid "Text Background Color"
4305
- msgstr "Tekst achtergrond kleur"
4306
 
4307
  # @ fl-builder
4308
  #: modules/content-slider/content-slider.php:545
4309
  #: modules/post-carousel/post-carousel.php:413
4310
- #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:717
4311
  msgid ""
4312
  "The color applies to the overlay behind text over the background selections."
4313
  msgstr ""
@@ -4317,19 +4470,19 @@ msgstr ""
4317
  # @ fl-builder
4318
  #: modules/content-slider/content-slider.php:550
4319
  #: modules/post-carousel/post-carousel.php:423
4320
- #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:723
4321
  msgid "Text Background Opacity"
4322
- msgstr "Tekst achtergrond dichtheid"
4323
 
4324
  # @ fl-builder
4325
  #: modules/content-slider/content-slider.php:558
4326
- #: modules/post-slider/post-slider.php:740
4327
  msgid "Text Background Height"
4328
- msgstr "Tekst achtergrond hoogte"
4329
 
4330
  # @ fl-builder
4331
  #: modules/content-slider/content-slider.php:560
4332
- #: modules/post-slider/post-slider.php:742
4333
  msgid ""
4334
  "Auto will allow the overlay to fit however long the text content is. 100% "
4335
  "will fit the overlay to the top and bottom of the slide."
@@ -4340,7 +4493,7 @@ msgstr ""
4340
 
4341
  # @ fl-builder
4342
  #: modules/content-slider/content-slider.php:562
4343
- #: modules/post-slider/post-slider.php:744
4344
  msgctxt "Background height."
4345
  msgid "Auto"
4346
  msgstr "Auto"
@@ -4352,7 +4505,7 @@ msgid ""
4352
  "below, this link will also be used for the text or button."
4353
  msgstr ""
4354
  "De link heeft betrekking op de gehele dia. Indien je kiest voor een "
4355
- "hieronder getoond call-to-action type, zal de link worden gebruikt voor de "
4356
  "tekst of button."
4357
 
4358
  # @ fl-builder
@@ -4369,7 +4522,7 @@ msgstr "Mobiel"
4369
  # @ fl-builder
4370
  #: modules/content-slider/content-slider.php:735
4371
  msgid "Mobile Photo"
4372
- msgstr "Mobiele afbeelding"
4373
 
4374
  # @ fl-builder
4375
  #: modules/content-slider/content-slider.php:741
@@ -4383,22 +4536,22 @@ msgstr ""
4383
  # @ fl-builder
4384
  #: modules/content-slider/content-slider.php:743
4385
  msgid "Use Main Photo"
4386
- msgstr "Selecteer belangrijkste afbeelding"
4387
 
4388
  # @ fl-builder
4389
  #: modules/content-slider/content-slider.php:744
4390
  msgid "Choose Another Photo"
4391
- msgstr "Selecteer andere afbeelding"
4392
 
4393
  # @ fl-builder
4394
  #: modules/content-slider/content-slider.php:745
4395
  msgid "No Photo"
4396
- msgstr "Geen afbeelding"
4397
 
4398
  # @ fl-builder
4399
  #: modules/content-slider/content-slider.php:760
4400
  msgid "Mobile Text Colors"
4401
- msgstr "Mobiele tekst kleuren"
4402
 
4403
  # @ fl-builder
4404
  #: modules/cta/cta.php:15
@@ -4417,9 +4570,9 @@ msgstr "Bel ons vandaag nog voor een vrijblijvende offerte!"
4417
 
4418
  # @ fl-builder
4419
  #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
4420
- #: modules/post-carousel/post-carousel.php:117
4421
  #: modules/post-carousel/post-carousel.php:206
4422
- #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:432
4423
  #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
4424
  #: modules/testimonials/testimonials.php:37
4425
  #: modules/woocommerce/woocommerce.php:57
@@ -4494,12 +4647,12 @@ msgstr "Groot"
4494
  # @ fl-builder
4495
  #: modules/gallery/gallery.php:277
4496
  msgid "Photo Spacing"
4497
- msgstr "Afstand tussen afbeeldingen"
4498
 
4499
  # @ fl-builder
4500
  #: modules/gallery/gallery.php:285
4501
  msgid "Show Captions"
4502
- msgstr "Toon bijschriften"
4503
 
4504
  # @ fl-builder
4505
  #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
@@ -4509,12 +4662,12 @@ msgstr "Nooit"
4509
  # @ fl-builder
4510
  #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
4511
  msgid "On Hover"
4512
- msgstr "Tijdens hover"
4513
 
4514
  # @ fl-builder
4515
  #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
4516
  msgid "Below Photo"
4517
- msgstr "Onder afbeelding"
4518
 
4519
  # @ fl-builder
4520
  #: modules/gallery/gallery.php:292
@@ -4530,7 +4683,7 @@ msgstr ""
4530
  # @ fl-builder
4531
  #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4532
  msgid "Click Action"
4533
- msgstr "Muisklik actie"
4534
 
4535
  # @ fl-builder
4536
  #: modules/gallery/gallery.php:299
@@ -4546,7 +4699,7 @@ msgstr "Lightbox"
4546
  # @ fl-builder
4547
  #: modules/gallery/gallery.php:301
4548
  msgid "Photo Link"
4549
- msgstr "Afbeelding link"
4550
 
4551
  # @ fl-builder
4552
  #: modules/heading/heading.php:15
@@ -4556,22 +4709,22 @@ msgstr "Een titel/pagina kop weergeven"
4556
  # @ fl-builder
4557
  #: modules/heading/heading.php:101
4558
  msgid "HTML Tag"
4559
- msgstr "HTML tag"
4560
 
4561
  # @ fl-builder
4562
  #: modules/heading/heading.php:128 modules/heading/heading.php:188
4563
  msgid "Custom Font Size"
4564
- msgstr "Aangepaste tekengrootte"
4565
 
4566
  # @ fl-builder
4567
  #: modules/heading/heading.php:137
4568
  msgid "Mobile Structure"
4569
- msgstr "Mobiele structuur"
4570
 
4571
  # @ fl-builder
4572
  #: modules/heading/heading.php:158
4573
  msgid "Custom Alignment"
4574
- msgstr "Aangepaste uitlijning"
4575
 
4576
  # @ fl-builder
4577
  #: modules/html/html.php:14
@@ -4586,7 +4739,7 @@ msgstr "Ruwe HTML-code weergeven."
4586
  # @ fl-builder
4587
  #: modules/icon-group/icon-group.php:14
4588
  msgid "Icon Group"
4589
- msgstr "Icoon groep"
4590
 
4591
  # @ fl-builder
4592
  #: modules/icon-group/icon-group.php:15
@@ -4596,7 +4749,7 @@ msgstr "Toon een groep gelinkte Font Awesome iconen."
4596
  # @ fl-builder
4597
  #: modules/icon-group/icon-group.php:125
4598
  msgid "Add Icon"
4599
- msgstr "Icoon toevoegen"
4600
 
4601
  # @ fl-builder
4602
  #: modules/icon/icon.php:15
@@ -4611,7 +4764,7 @@ msgstr "Kaart"
4611
  # @ fl-builder
4612
  #: modules/map/map.php:15
4613
  msgid "Display a Google map."
4614
- msgstr "Toon een Google kaart."
4615
 
4616
  # @ fl-builder
4617
  #: modules/map/map.php:33
@@ -4621,7 +4774,167 @@ msgstr "Adres"
4621
  # @ fl-builder
4622
  #: modules/map/map.php:34
4623
  msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4624
- msgstr "Funenkade 5 1018 AL, Amsterdam"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4625
 
4626
  # @ fl-builder
4627
  #: modules/photo/photo.php:26
@@ -4631,7 +4944,7 @@ msgstr "Upload een afbeelding of toon er een uit je mediabibliotheek."
4631
  # @ fl-builder
4632
  #: modules/photo/photo.php:391
4633
  msgid "Photo Source"
4634
- msgstr "Afbeelding bron"
4635
 
4636
  # @ fl-builder
4637
  #: modules/photo/photo.php:395 modules/photo/photo.php:467
@@ -4646,13 +4959,7 @@ msgstr "Afbeelding URL"
4646
  # @ fl-builder
4647
  #: modules/photo/photo.php:413
4648
  msgid "http://www.example.com/my-photo.jpg"
4649
- msgstr "http://www.voorbeeld.nl/mijn-foto.jpg"
4650
-
4651
- # @ fl-builder
4652
- #: modules/photo/photo.php:420 modules/post-slider/post-slider.php:479
4653
- msgctxt "Crop."
4654
- msgid "None"
4655
- msgstr "Geen"
4656
 
4657
  # @ fl-builder
4658
  #: modules/photo/photo.php:441 modules/photo/photo.php:455
@@ -4662,12 +4969,12 @@ msgstr "Bijschrift"
4662
  # @ fl-builder
4663
  #: modules/photo/photo.php:445
4664
  msgid "Show Caption"
4665
- msgstr "Toon bijschrift"
4666
 
4667
  # @ fl-builder
4668
  #: modules/photo/photo.php:464
4669
  msgid "Link Type"
4670
- msgstr "Link type"
4671
 
4672
  # @ fl-builder
4673
  #: modules/photo/photo.php:466
@@ -4708,16 +5015,14 @@ msgstr "Door %s"
4708
 
4709
  #: modules/post-carousel/post-carousel.php:14
4710
  msgid "Posts Carousel"
4711
- msgstr "Berichtencarousel"
4712
 
4713
- # @ fl-builder
4714
  #: modules/post-carousel/post-carousel.php:15
4715
  msgid "Display a carousel of your WordPress posts."
4716
- msgstr "Een carousel van je WordPress berichten weergeven."
4717
 
4718
- # @ fl-builder
4719
  #: modules/post-carousel/post-carousel.php:110
4720
- #: modules/post-slider/post-slider.php:337
4721
  msgid "Slider"
4722
  msgstr "Slider"
4723
 
@@ -4729,21 +5034,19 @@ msgstr "Raster"
4729
 
4730
  # @ fl-builder
4731
  #: modules/post-carousel/post-carousel.php:152
4732
- #: modules/post-slider/post-slider.php:378 modules/video/video.php:120
4733
  msgid "Loop"
4734
  msgstr "Herhaal"
4735
 
4736
- # @ fl-builder
4737
  #: modules/post-carousel/post-carousel.php:168
4738
- #: modules/post-slider/post-slider.php:394
4739
  msgid "Number of Posts"
4740
  msgstr "Aantal berichten"
4741
 
4742
- # @ fl-builder
4743
  #: modules/post-carousel/post-carousel.php:175
4744
- #: modules/post-slider/post-slider.php:401
4745
  msgid "Slider Controls"
4746
- msgstr "Slider instellingen"
4747
 
4748
  # @ fl-builder
4749
  #: modules/post-carousel/post-carousel.php:209
@@ -4751,10 +5054,9 @@ msgstr "Slider instellingen"
4751
  msgid "Posts"
4752
  msgstr "Berichten"
4753
 
4754
- # @ fl-builder
4755
  #: modules/post-carousel/post-carousel.php:213
4756
  msgid "Post Max Width"
4757
- msgstr "Maximale breedte van bericht"
4758
 
4759
  # @ fl-builder
4760
  #: modules/post-carousel/post-carousel.php:221
@@ -4764,107 +5066,97 @@ msgstr "Tussenruimte"
4764
 
4765
  #: modules/post-carousel/post-carousel.php:229
4766
  msgid "Equalize Column Heights"
4767
- msgstr "Maak kolom hoogtes gelijk"
4768
 
4769
- # @ fl-builder
4770
  #: modules/post-carousel/post-carousel.php:238
4771
  msgid "Post Hover Transition"
4772
- msgstr "Overgang"
4773
 
4774
- # @ fl-builder
4775
  #: modules/post-carousel/post-carousel.php:242
4776
  #: modules/post-grid/post-grid.php:248
4777
  msgid "Slide Up"
4778
- msgstr "Schuif omhoog"
4779
 
4780
- # @ fl-builder
4781
  #: modules/post-carousel/post-carousel.php:243
4782
  #: modules/post-grid/post-grid.php:249
4783
  msgid "Slide Down"
4784
- msgstr "Schuif omlaag"
4785
 
4786
- # @ fl-builder
4787
  #: modules/post-carousel/post-carousel.php:244
4788
  #: modules/post-grid/post-grid.php:250
4789
  msgid "Scale Up"
4790
- msgstr "Groter maken"
4791
 
4792
- # @ fl-builder
4793
  #: modules/post-carousel/post-carousel.php:245
4794
  #: modules/post-grid/post-grid.php:251
4795
  msgid "Scale Down"
4796
- msgstr "Kleiner maken"
4797
 
4798
  # @ fl-builder
4799
  #: modules/post-carousel/post-carousel.php:251
4800
- #: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:455
4801
  msgid "Featured Image"
4802
- msgstr "Uitgelichte afbeelding"
4803
 
4804
  #: modules/post-carousel/post-carousel.php:279
4805
  #: modules/post-grid/post-grid.php:261
4806
  msgid "Use Icon for Posts"
4807
- msgstr "Gebruik icoon voor berichten"
4808
 
4809
- # @ fl-builder
4810
  #: modules/post-carousel/post-carousel.php:293
4811
  #: modules/post-grid/post-grid.php:275
4812
  msgid "Post Icon"
4813
- msgstr "Bericht icoon"
4814
 
4815
- # @ fl-builder
4816
  #: modules/post-carousel/post-carousel.php:297
4817
  #: modules/post-grid/post-grid.php:279
4818
  msgid "Post Icon Position"
4819
- msgstr "Bericht icoon positie"
4820
 
4821
  # @ fl-builder
4822
  #: modules/post-carousel/post-carousel.php:300
4823
  #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
4824
  msgid "Above Text"
4825
- msgstr "Boven tekst"
4826
 
4827
- # @ fl-builder
4828
  #: modules/post-carousel/post-carousel.php:301
4829
  #: modules/post-grid/post-grid.php:283
4830
  msgid "Below Text"
4831
  msgstr "Onder tekst"
4832
 
4833
- # @ fl-builder
4834
  #: modules/post-carousel/post-carousel.php:306
4835
  #: modules/post-grid/post-grid.php:288
4836
  msgid "Post Icon Size"
4837
- msgstr "Bericht icoon grootte"
4838
 
4839
  # @ fl-builder
4840
  #: modules/post-carousel/post-carousel.php:315
4841
- #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:490
4842
  msgid "Post Info"
4843
  msgstr "Bericht Info"
4844
 
4845
  # @ fl-builder
4846
  #: modules/post-carousel/post-carousel.php:342
4847
- #: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:517
4848
  msgid "Date Format"
4849
  msgstr "Datumnotatie"
4850
 
4851
  # @ fl-builder
4852
  #: modules/post-carousel/post-carousel.php:372
4853
- #: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:556
4854
  msgid "More Link"
4855
- msgstr "Lees meer link"
4856
 
4857
  # @ fl-builder
4858
  #: modules/post-carousel/post-carousel.php:381
4859
- #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:565
4860
  msgid "More Link Text"
4861
- msgstr "Lees meer tekst"
4862
 
4863
- # @ fl-builder
4864
  #: modules/post-carousel/post-carousel.php:418
4865
  #: modules/post-grid/post-grid.php:307
4866
  msgid "Post Icon Color"
4867
- msgstr "Bericht icoon kleur"
4868
 
4869
  # @ fl-builder
4870
  #: modules/post-grid/includes/frontend.php:41
@@ -4889,7 +5181,7 @@ msgstr "Feed"
4889
  # @ fl-builder
4890
  #: modules/post-grid/post-grid.php:74
4891
  msgid "Pagination Style"
4892
- msgstr "Paginering stijl"
4893
 
4894
  # @ fl-builder
4895
  #: modules/post-grid/post-grid.php:77
@@ -4910,21 +5202,21 @@ msgstr "Berichten per pagina"
4910
  # @ fl-builder
4911
  #: modules/post-grid/post-grid.php:95
4912
  msgid "Post Width"
4913
- msgstr "Bericht breedte"
4914
 
4915
  # @ fl-builder
4916
  #: modules/post-grid/post-grid.php:134
4917
  msgid "Beside Text"
4918
- msgstr "Naast tekst"
4919
 
4920
  # @ fl-builder
4921
- #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:533
4922
  msgid "Comments"
4923
  msgstr "Reacties"
4924
 
4925
  #: modules/post-grid/post-grid.php:211
4926
  msgid "Content Type"
4927
- msgstr "Inhoud type"
4928
 
4929
  #: modules/post-grid/post-grid.php:214
4930
  msgid "Excerpt"
@@ -4932,69 +5224,59 @@ msgstr "Samenvatting"
4932
 
4933
  #: modules/post-grid/post-grid.php:215
4934
  msgid "Full Text"
4935
- msgstr "Volledige tekst"
4936
 
4937
- # @ fl-builder
4938
  #: modules/post-grid/post-grid.php:244
4939
  msgid "Hover Transition"
4940
- msgstr "Overgang"
4941
 
4942
- # @ fl-builder
4943
  #: modules/post-slider/post-slider.php:14
4944
  msgid "Posts Slider"
4945
- msgstr "Berichtenslider"
4946
 
4947
- # @ fl-builder
4948
  #: modules/post-slider/post-slider.php:15
4949
  msgid "Display a slider of your WordPress posts."
4950
- msgstr "Een slider van je WordPress berichten weergeven."
4951
 
4952
- # @ fl-builder
4953
- #: modules/post-slider/post-slider.php:349
4954
  msgid ""
4955
  "This setting is the minimum height of the post slider. Content will expand "
4956
  "the height automatically."
4957
  msgstr ""
4958
- "Deze instelling is de minimale hoogte van de berichtenslider. Inhoud zal de "
4959
- "hoogte automatisch vergroten."
4960
 
4961
- # @ fl-builder
4962
- #: modules/post-slider/post-slider.php:439
4963
  msgid "Show Featured Image?"
4964
- msgstr "Uitgelichte afbeelding tonen?"
4965
 
4966
- # @ fl-builder
4967
- #: modules/post-slider/post-slider.php:623
4968
  msgid ""
4969
  "The position will move the content layout selections left, right or bottom "
4970
  "over the background of the slide."
4971
  msgstr ""
4972
- "De positie zal de inhoudselectie links, rechts of in het midden over de "
4973
- "achtergrond van de dia verplaatsen."
4974
 
4975
- # @ fl-builder
4976
- #: modules/post-slider/post-slider.php:642
4977
  msgid ""
4978
  "The position will move the content layout selections left or right or center "
4979
  "of the thumbnail of the slide."
4980
  msgstr ""
4981
- "De positie zal de inhoudselectie links, rechts of in het midden over de "
4982
- "achtergrond van de dia verplaatsen."
4983
 
4984
- # @ fl-builder
4985
- #: modules/post-slider/post-slider.php:658
4986
  msgid "Text Width"
4987
  msgstr "Tekstbreedte"
4988
 
4989
- # @ fl-builder
4990
- #: modules/post-slider/post-slider.php:666
4991
  msgid "Text Padding"
4992
- msgstr "Tekst padding"
4993
 
4994
- # @ fl-builder
4995
- #: modules/post-slider/post-slider.php:731
4996
  msgid "Text Background Gradient"
4997
- msgstr "Tekst achtergrond gradient"
4998
 
4999
  # @ fl-builder
5000
  #: modules/pricing-table/pricing-table.php:14
@@ -5009,17 +5291,17 @@ msgstr "Een eenvoudige Prijstabel generator."
5009
  # @ fl-builder
5010
  #: modules/pricing-table/pricing-table.php:26
5011
  msgid "Pricing Boxes"
5012
- msgstr "Prijs vakken"
5013
 
5014
  # @ fl-builder
5015
  #: modules/pricing-table/pricing-table.php:33
5016
  msgid "Pricing Box"
5017
- msgstr "Prijs vak"
5018
 
5019
  # @ fl-builder
5020
  #: modules/pricing-table/pricing-table.php:50
5021
  msgid "Box Spacing"
5022
- msgstr "Vak tussenruimte"
5023
 
5024
  # @ fl-builder
5025
  #: modules/pricing-table/pricing-table.php:53
@@ -5035,7 +5317,7 @@ msgstr "Strak"
5035
  # @ fl-builder
5036
  #: modules/pricing-table/pricing-table.php:59
5037
  msgid "Features Min Height"
5038
- msgstr "Minimale hoogte opties"
5039
 
5040
  # @ fl-builder
5041
  #: modules/pricing-table/pricing-table.php:63
@@ -5061,17 +5343,17 @@ msgstr "Strak"
5061
  # @ fl-builder
5062
  #: modules/pricing-table/pricing-table.php:84
5063
  msgid "Add Pricing Box"
5064
- msgstr "Prijzen vak toevoegen"
5065
 
5066
  # @ fl-builder
5067
  #: modules/pricing-table/pricing-table.php:98
5068
  msgid "Title Size"
5069
- msgstr "Titel grootte"
5070
 
5071
  # @ fl-builder
5072
  #: modules/pricing-table/pricing-table.php:107
5073
  msgid "Price Box"
5074
- msgstr "Prijs vak"
5075
 
5076
  # @ fl-builder
5077
  #: modules/pricing-table/pricing-table.php:111
@@ -5087,7 +5369,7 @@ msgstr "Tijdsduur"
5087
  # @ fl-builder
5088
  #: modules/pricing-table/pricing-table.php:116
5089
  msgid "per Year"
5090
- msgstr "Per jaar"
5091
 
5092
  # @ fl-builder
5093
  #: modules/pricing-table/pricing-table.php:120
@@ -5098,7 +5380,7 @@ msgstr "Prijs grootte"
5098
  #: modules/pricing-table/pricing-table.php:133
5099
  #: modules/subscribe-form/subscribe-form.php:168
5100
  msgid "Button Text"
5101
- msgstr "Knop tekst"
5102
 
5103
  # @ fl-builder
5104
  #: modules/pricing-table/pricing-table.php:137
@@ -5119,12 +5401,12 @@ msgstr "Eén optie per regel. HTML is oke."
5119
  # @ fl-builder
5120
  #: modules/pricing-table/pricing-table.php:162
5121
  msgid "Box Background"
5122
- msgstr "Vak achtergrond"
5123
 
5124
  # @ fl-builder
5125
  #: modules/pricing-table/pricing-table.php:167
5126
  msgid "Box Foreground"
5127
- msgstr "Vak voorgrond"
5128
 
5129
  # @ fl-builder
5130
  #: modules/pricing-table/pricing-table.php:173
@@ -5134,23 +5416,18 @@ msgstr "Accent kleur"
5134
  # @ fl-builder
5135
  #: modules/pricing-table/pricing-table.php:178
5136
  msgid "Accent Text Color"
5137
- msgstr "Tekst accentkleur"
5138
 
5139
  # @ fl-builder
5140
  #: modules/pricing-table/pricing-table.php:182
5141
  msgid "Box Top Margin"
5142
- msgstr "Vak bovenmarge"
5143
 
5144
  # @ fl-builder
5145
  #: modules/rich-text/rich-text.php:15
5146
  msgid "A WYSIWYG text editor."
5147
  msgstr "Een WYSIWYG tekstverwerker."
5148
 
5149
- # @ fl-builder
5150
- #: modules/separator/separator.php:14
5151
- msgid "Separator"
5152
- msgstr "Scheidingslijn"
5153
-
5154
  # @ fl-builder
5155
  #: modules/separator/separator.php:15
5156
  msgid "A divider line to separate content."
@@ -5191,7 +5468,7 @@ msgstr "Weergave van meerdere afbeeldingenin een diavoorstelling."
5191
  # @ fl-builder
5192
  #: modules/slideshow/slideshow.php:310
5193
  msgid "Skin Color"
5194
- msgstr "Skin kleur"
5195
 
5196
  # @ fl-builder
5197
  #: modules/slideshow/slideshow.php:313
@@ -5280,7 +5557,7 @@ msgstr "Navigatiebalk"
5280
  # @ fl-builder
5281
  #: modules/slideshow/slideshow.php:459
5282
  msgid "Nav Type"
5283
- msgstr "Navigatie type"
5284
 
5285
  # @ fl-builder
5286
  #: modules/slideshow/slideshow.php:462
@@ -5301,52 +5578,52 @@ msgstr "Miniaturen"
5301
  # @ fl-builder
5302
  #: modules/slideshow/slideshow.php:479
5303
  msgid "Nav Position"
5304
- msgstr "Navigatie positie"
5305
 
5306
  # @ fl-builder
5307
  #: modules/slideshow/slideshow.php:489
5308
  msgid "Control Bar Buttons"
5309
- msgstr "Navigatiebalk knoppen"
5310
 
5311
  # @ fl-builder
5312
  #: modules/slideshow/slideshow.php:502
5313
  msgid "Play Button"
5314
- msgstr "Play knop"
5315
 
5316
  # @ fl-builder
5317
  #: modules/slideshow/slideshow.php:511
5318
  msgid "Fullscreen Button"
5319
- msgstr "Volledig scherm knop"
5320
 
5321
  # @ fl-builder
5322
  #: modules/slideshow/slideshow.php:520
5323
  msgid "Photo Count"
5324
- msgstr "Aantal afbeeldingen"
5325
 
5326
  # @ fl-builder
5327
  #: modules/slideshow/slideshow.php:529
5328
  msgid "Thumbs Button"
5329
- msgstr "Miniaturen knop"
5330
 
5331
  # @ fl-builder
5332
  #: modules/slideshow/slideshow.php:538
5333
  msgid "Caption Button"
5334
- msgstr "Bijschrift knop"
5335
 
5336
  # @ fl-builder
5337
  #: modules/slideshow/slideshow.php:547
5338
  msgid "Social Button"
5339
- msgstr "Social media knop"
5340
 
5341
  # @ fl-builder
5342
  #: modules/slideshow/slideshow.php:557
5343
  msgid "Control Bar Overlay"
5344
- msgstr "Navigatiebalk overlay"
5345
 
5346
  # @ fl-builder
5347
  #: modules/slideshow/slideshow.php:561
5348
  msgid "Overlay Enabled"
5349
- msgstr "Overlay ingeschakeld"
5350
 
5351
  # @ fl-builder
5352
  #: modules/slideshow/slideshow.php:572
@@ -5354,14 +5631,14 @@ msgid ""
5354
  "Control bar overlay specifies if the control bar buttons you choose overlay "
5355
  "your slideshow images or site below the slideshow completely."
5356
  msgstr ""
5357
- "Navigatiebalk overlay geeft aan of de navigatiebalk knoppen die je kiest "
5358
  "over je diavoorstelling afbeeldingen liggen of geheel onder je "
5359
  "diavoorstelling worden geplaatst."
5360
 
5361
  # @ fl-builder
5362
  #: modules/slideshow/slideshow.php:576
5363
  msgid "Overlay Hide"
5364
- msgstr "Verberg overlay"
5365
 
5366
  # @ fl-builder
5367
  #: modules/slideshow/slideshow.php:582
@@ -5375,12 +5652,12 @@ msgstr ""
5375
  # @ fl-builder
5376
  #: modules/slideshow/slideshow.php:586
5377
  msgid "Overlay Hide Delay"
5378
- msgstr "Verberg overlay vertraging"
5379
 
5380
  # @ fl-builder
5381
  #: modules/slideshow/slideshow.php:598
5382
  msgid "Thumbs Size"
5383
- msgstr "Miniatuur afmeting"
5384
 
5385
  # @ fl-builder
5386
  #: modules/slideshow/slideshow.php:607
@@ -5390,32 +5667,32 @@ msgstr "Social"
5390
  # @ fl-builder
5391
  #: modules/slideshow/slideshow.php:611
5392
  msgid "Facebook Button"
5393
- msgstr "Facebook Knop"
5394
 
5395
  # @ fl-builder
5396
  #: modules/slideshow/slideshow.php:623
5397
  msgid "Twitter Button"
5398
- msgstr "Twitter knop"
5399
 
5400
  # @ fl-builder
5401
  #: modules/slideshow/slideshow.php:635
5402
  msgid "Google Plus Button"
5403
- msgstr "Google+ knop"
5404
 
5405
  # @ fl-builder
5406
  #: modules/slideshow/slideshow.php:647
5407
  msgid "Pinterest Button"
5408
- msgstr "Pinterest knop"
5409
 
5410
  # @ fl-builder
5411
  #: modules/social-buttons/social-buttons.php:14
5412
  msgid "Social Buttons"
5413
- msgstr "Social knoppen"
5414
 
5415
  # @ fl-builder
5416
  #: modules/social-buttons/social-buttons.php:15
5417
  msgid "Displays social buttons."
5418
- msgstr "Toon social knoppen."
5419
 
5420
  # @ fl-builder
5421
  #: modules/social-buttons/social-buttons.php:71
@@ -5425,7 +5702,7 @@ msgstr "Doel URL"
5425
  # @ fl-builder
5426
  #: modules/social-buttons/social-buttons.php:75
5427
  msgid "Current Page"
5428
- msgstr "Huidige pagina"
5429
 
5430
  # @ fl-builder
5431
  #: modules/social-buttons/social-buttons.php:82
@@ -5446,7 +5723,7 @@ msgstr "Aangepaste URL"
5446
  # @ fl-builder
5447
  #: modules/social-buttons/social-buttons.php:107
5448
  msgid "Show Facebook"
5449
- msgstr "Toon facebook"
5450
 
5451
  # @ fl-builder
5452
  #: modules/social-buttons/social-buttons.php:116
@@ -5473,11 +5750,11 @@ msgstr "Er ging iets mis. Probeer het nog eens."
5473
 
5474
  #: modules/subscribe-form/subscribe-form.php:18
5475
  msgid "Subscribe Form"
5476
- msgstr "Aanmeldformulier"
5477
 
5478
  #: modules/subscribe-form/subscribe-form.php:19
5479
  msgid "Adds a simple subscribe form to your layout."
5480
- msgstr "Voeg een eenvoudig inschrijfformulier toe aan je layout."
5481
 
5482
  #: modules/subscribe-form/subscribe-form.php:118
5483
  msgid "Success"
@@ -5489,7 +5766,7 @@ msgstr "Succes actie"
5489
 
5490
  #: modules/subscribe-form/subscribe-form.php:124
5491
  msgid "Show Message"
5492
- msgstr "Toon bericht"
5493
 
5494
  #: modules/subscribe-form/subscribe-form.php:125
5495
  msgid "Redirect"
@@ -5519,16 +5796,6 @@ msgstr "Tabs"
5519
  msgid "Display a collection of tabbed content."
5520
  msgstr "Een verzameling met getabde inhoud weergeven."
5521
 
5522
- # @ fl-builder
5523
- #: modules/tabs/tabs.php:55
5524
- msgid "Horizontal"
5525
- msgstr "Horizontaal"
5526
-
5527
- # @ fl-builder
5528
- #: modules/tabs/tabs.php:56
5529
- msgid "Vertical"
5530
- msgstr "Verticaal"
5531
-
5532
  # @ fl-builder
5533
  #: modules/testimonials/testimonials.php:14
5534
  #: modules/testimonials/testimonials.php:60
@@ -5574,12 +5841,12 @@ msgstr "Beoordeling"
5574
  # @ fl-builder
5575
  #: modules/testimonials/testimonials.php:197
5576
  msgid "Add Testimonial"
5577
- msgstr "Beoordeling toevoegen"
5578
 
5579
  # @ fl-builder
5580
  #: modules/video/video.php:20
5581
  msgid "Render a WordPress or embedable video."
5582
- msgstr "Toon een WordPress of ingesloten video."
5583
 
5584
  # @ fl-builder
5585
  #: modules/video/video.php:83
@@ -5659,7 +5926,7 @@ msgstr "Afrekenen"
5659
  # @ fl-builder
5660
  #: modules/woocommerce/woocommerce.php:67
5661
  msgid "Order Tracking"
5662
- msgstr "Bestelling volgen"
5663
 
5664
  # @ fl-builder
5665
  #: modules/woocommerce/woocommerce.php:68
@@ -5711,7 +5978,7 @@ msgstr "Kolommen"
5711
  # @ fl-builder
5712
  #: modules/woocommerce/woocommerce.php:117
5713
  msgid "Products Source"
5714
- msgstr "Producten bron"
5715
 
5716
  # @ fl-builder
5717
  #: modules/woocommerce/woocommerce.php:120
@@ -5726,27 +5993,27 @@ msgstr "Productcategorie"
5726
  # @ fl-builder
5727
  #: modules/woocommerce/woocommerce.php:122
5728
  msgid "Recent Products"
5729
- msgstr "Recente producten"
5730
 
5731
  # @ fl-builder
5732
  #: modules/woocommerce/woocommerce.php:123
5733
  msgid "Featured Products"
5734
- msgstr "Uitgelichte producten"
5735
 
5736
  # @ fl-builder
5737
  #: modules/woocommerce/woocommerce.php:124
5738
  msgid "Sale Products"
5739
- msgstr "Verkoop producten"
5740
 
5741
  # @ fl-builder
5742
  #: modules/woocommerce/woocommerce.php:125
5743
  msgid "Best Selling Products"
5744
- msgstr "Best verkopende producten"
5745
 
5746
  # @ fl-builder
5747
  #: modules/woocommerce/woocommerce.php:126
5748
  msgid "Top Rated Products"
5749
- msgstr "Best beoordeelde producten"
5750
 
5751
  # @ fl-builder
5752
  #: modules/woocommerce/woocommerce.php:154
@@ -5770,7 +6037,7 @@ msgstr ""
5770
  # @ fl-builder
5771
  #: modules/woocommerce/woocommerce.php:160
5772
  msgid "Category Slug"
5773
- msgstr "Categorie slug"
5774
 
5775
  # @ fl-builder
5776
  #: modules/woocommerce/woocommerce.php:162
@@ -5788,12 +6055,12 @@ msgstr ""
5788
  # @ fl-builder
5789
  #: modules/woocommerce/woocommerce.php:166
5790
  msgid "Number of Products"
5791
- msgstr "Aantal producten"
5792
 
5793
  # @ fl-builder
5794
  #: modules/woocommerce/woocommerce.php:183
5795
  msgid "Sort By"
5796
- msgstr "Sorteren op"
5797
 
5798
  # @ fl-builder
5799
  #: modules/woocommerce/woocommerce.php:186
@@ -5813,10 +6080,7 @@ msgstr "Waardering"
5813
 
5814
  #: modules/woocommerce/woocommerce.php:195
5815
  msgid "Sort Direction"
5816
- msgstr "Sorteer richting"
5817
-
5818
- #~ msgid "Page Builder Templates"
5819
- #~ msgstr "Page Builder Templates"
5820
 
5821
  # @ fl-builder
5822
  #~ msgctxt "Custom post type label."
@@ -5828,6 +6092,11 @@ msgstr "Sorteer richting"
5828
  #~ msgid "Layout Template"
5829
  #~ msgstr "Layout Template"
5830
 
 
 
 
 
 
5831
  # @ fl-builder
5832
  #~ msgctxt "Custom post type label."
5833
  #~ msgid "New Layout Template"
@@ -5838,50 +6107,129 @@ msgstr "Sorteer richting"
5838
  #~ msgid "Edit Layout Template"
5839
  #~ msgstr "Layout Template Bewerken"
5840
 
 
 
 
 
 
5841
  # @ fl-builder
5842
  #~ msgctxt "Custom post type label."
5843
  #~ msgid "All Layout Templates"
5844
  #~ msgstr "Alle Layout Templates"
5845
 
5846
- #~ msgctxt "Template edit form field label. Is template premium one?"
5847
- #~ msgid "Premium"
5848
- #~ msgstr "Premium"
5849
-
5850
- #~ msgctxt "Templates category label."
5851
- #~ msgid "Landing Pages"
5852
- #~ msgstr "Bestemmingspagina 's"
5853
-
5854
- #~ msgctxt "Templates category label."
5855
- #~ msgid "Company Info"
5856
- #~ msgstr "Bedrijfsinfo"
5857
 
5858
- #~ msgid "Update Template"
5859
- #~ msgstr "Template Bijwerken"
 
 
5860
 
5861
- #~ msgid "Page Builder Template"
5862
- #~ msgstr "Page Builder Template"
 
 
5863
 
5864
- #~ msgctxt "Templates list column label."
5865
- #~ msgid "Name"
5866
- #~ msgstr "Naam"
 
5867
 
5868
- #~ msgctxt "Templates list column label."
5869
- #~ msgid "Category"
5870
- #~ msgstr "Categorie"
 
5871
 
5872
- #~ msgctxt "Templates list column label. Is template premium one?"
5873
- #~ msgid "Premium"
5874
- #~ msgstr "Premium"
 
5875
 
5876
  #~ msgid "Discard Draft"
5877
  #~ msgstr "Concept weggooien"
5878
 
5879
- #~ msgid "Image Filename"
5880
- #~ msgstr "Afbeelding Bestandsnaam"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5881
 
 
5882
  #~ msgid ""
5883
- #~ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
5884
- #~ "templates/\" directory."
5885
  #~ msgstr ""
5886
- #~ "De bestandsnaam van de afbeelding zoals \"thumb.jpg\" dat zich bevind in "
5887
- #~ "de \"img/templates/\" directory."
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-19 21:49+0200\n"
6
+ "PO-Revision-Date: 2015-10-28 15:42+0100\n"
7
+ "Last-Translator: Didou Schol <didou@badabing.nl>\n"
8
  "Language-Team: \n"
9
  "Language: nl_NL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.4\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
17
  "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
18
  "_nx_noop:4c,1,2\n"
19
+ "X-Poedit-Basepath: ..\n"
20
  "X-Textdomain-Support: yes\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
51
  msgstr "Modules"
52
 
53
  # @ fl-builder
54
+ #: classes/class-fl-builder-admin-settings.php:159
55
+ #: classes/class-fl-builder.php:668
56
  msgid "Templates"
57
  msgstr "Templates"
58
 
60
  #: classes/class-fl-builder-admin-settings.php:163
61
  #: includes/admin-settings-post-types.php:3
62
  msgid "Post Types"
63
+ msgstr "Post Typen"
64
 
65
  # @ fl-builder
66
  #: classes/class-fl-builder-admin-settings.php:167
84
  # @ fl-builder
85
  #: classes/class-fl-builder-admin-settings.php:179
86
  msgid "Help Button"
87
+ msgstr "Help Button"
88
 
89
  #: classes/class-fl-builder-admin-settings.php:183
90
  #: includes/admin-settings-cache.php:3
96
  #: includes/admin-settings-uninstall.php:3
97
  #: includes/admin-settings-uninstall.php:15
98
  msgid "Uninstall"
99
+ msgstr "Deinstalleren"
100
 
101
  # @ fl-builder
102
  #: classes/class-fl-builder-admin-settings.php:439
103
  msgid "Error! You must have at least one icon set enabled."
104
+ msgstr "Error! Je moet ten minste één icoon-set activeren."
105
 
106
  # @ fl-builder
107
  #: classes/class-fl-builder-admin-settings.php:481
108
  msgid "Error! Could not unzip file."
109
+ msgstr "Error! Kon bestand niet uitpakken."
110
 
111
  # @ fl-builder
112
  #: classes/class-fl-builder-admin-settings.php:515
113
  msgid "Error! Please upload an icon set from either Icomoon or Fontello."
114
+ msgstr "Error! Upload aub een icoon-set van Icomoon of Fontello."
115
 
116
  # @ fl-builder
117
+ #: classes/class-fl-builder-admin-settings.php:620
118
  msgid "Error! Please enter an iframe for the video embed code."
119
+ msgstr "Error! Geef aub een iframe voor de video embed-code."
120
 
121
  # @ fl-builder
122
+ #: classes/class-fl-builder-admin-settings.php:638
123
  msgid "Error! You must have at least one feature of the help button enabled."
124
  msgstr ""
125
+ "Error! Je moet minstens één optie an de help button geselecteerd hebben."
126
 
127
  # @ fl-builder
128
  #: classes/class-fl-builder-admin.php:45
133
  "of this plugin."
134
  msgstr ""
135
  "Deze versie van de <strong>Page Builder</strong> plugin is niet compatible "
136
+ "met Wordpress Multisite. <a %s>Upgrade</a> aub naar de Multisite versie van "
137
  "deze plugin."
138
 
139
  # @ fl-builder
142
  "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
143
  "greater. Please update WordPress before activating the plugin."
144
  msgstr ""
145
+ "De <strong>Page Builder</strong> plugin vereist Wordpress versie 3.5 of "
146
+ "later. Update Wordpress voordat je de plugin activeert."
147
 
148
  # @ fl-builder
149
  #: classes/class-fl-builder-admin.php:112
156
  #: classes/class-fl-builder-admin.php:238
157
  msgctxt "Plugin action link label."
158
  msgid "Upgrade"
159
+ msgstr "Update [Plugin action link label.]"
160
 
161
  # @ fl-builder
162
  #: classes/class-fl-builder-admin.php:253
163
+ #: classes/class-fl-builder-model.php:4077
164
  msgid "Page Builder"
165
  msgstr "Page Builder"
166
 
167
  # @ fl-builder
168
+ #: classes/class-fl-builder-model.php:1756
169
  #, php-format
170
  msgctxt "%s stands for the module filename"
171
  msgid ""
176
  "bestandsnaam aan te passen voor compatibiliteit met Beaver Builder."
177
 
178
  # @ fl-builder
179
+ #: classes/class-fl-builder-model.php:1807
180
+ #: classes/class-fl-builder-model.php:1868 modules/heading/heading.php:16
181
  #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
182
  #: modules/separator/separator.php:16 modules/video/video.php:21
183
  msgid "Basic Modules"
184
+ msgstr "Basis Modules"
185
 
186
  # @ fl-builder
187
+ #: classes/class-fl-builder-model.php:1808
188
+ #: classes/class-fl-builder-model.php:1869 modules/accordion/accordion.php:16
189
  #: modules/button/button.php:16 modules/callout/callout.php:16
190
  #: modules/contact-form/contact-form.php:16
191
  #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
192
  #: modules/gallery/gallery.php:16 modules/html/html.php:16
193
  #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
194
+ #: modules/map/map.php:16 modules/menu/menu.php:16
195
+ #: modules/post-carousel/post-carousel.php:16
196
  #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
197
  #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
198
  #: modules/slideshow/slideshow.php:16
201
  #: modules/testimonials/testimonials.php:16
202
  #: modules/woocommerce/woocommerce.php:18
203
  msgid "Advanced Modules"
204
+ msgstr "Geavanceerde Modules"
205
 
206
  # @ fl-builder
207
+ #: classes/class-fl-builder-model.php:1809
208
+ #: classes/class-fl-builder-model.php:1870
209
  msgid "Other Modules"
210
+ msgstr "Andere Modules"
211
 
212
  # @ fl-builder
213
+ #: classes/class-fl-builder-model.php:1810
214
+ #: classes/class-fl-builder-model.php:1871
215
+ #: includes/admin-settings-modules.php:32 includes/ui-panel.php:56
216
  #: modules/widget/widget.php:16
217
  msgid "WordPress Widgets"
218
+ msgstr "Wordpress Widgets"
219
 
220
  # @ fl-builder
221
+ #: classes/class-fl-builder-model.php:2535
222
  #, php-format
223
  msgctxt "%s stands for post/page title."
224
  msgid "Copy of %s"
225
  msgstr "Kopie van %s"
226
 
227
+ #: classes/class-fl-builder-model.php:3014
 
228
  msgctxt "Default user template category."
229
  msgid "Uncategorized"
230
+ msgstr "Uncategorized"
231
 
232
  # @ fl-builder
233
+ #: classes/class-fl-builder-model.php:4034
234
  msgid "Home Pages"
235
+ msgstr "Home Pagina's"
236
 
237
  # @ fl-builder
238
+ #: classes/class-fl-builder-model.php:4035
239
  msgid "Content Pages"
240
+ msgstr "Inhoud Pagina's"
241
 
242
  # @ fl-builder
243
+ #: classes/class-fl-builder-photo.php:95 classes/class-fl-builder-photo.php:100
 
244
  msgctxt "Image size."
245
  msgid "Full Size"
246
+ msgstr "Volledige Grootte"
247
 
248
  # @ fl-builder
249
  #: classes/class-fl-builder-photo.php:101
265
 
266
  #: classes/class-fl-builder-service-activecampaign.php:69
267
  msgid "Error: You must provide an API URL."
268
+ msgstr "Fout: U moet een API URL geven."
269
 
270
  #: classes/class-fl-builder-service-activecampaign.php:73
271
  #: classes/class-fl-builder-service-campaign-monitor.php:55
280
 
281
  #: classes/class-fl-builder-service-activecampaign.php:81
282
  msgid "Error: Please check your API URL and API key."
283
+ msgstr "Fout: controleer aub uw API-URL en de API-sleutel."
284
 
 
285
  #: classes/class-fl-builder-service-activecampaign.php:108
286
  msgid "API URL"
287
  msgstr "API URL"
291
  "Your API url can be found in your ActiveCampaign account under My Settings > "
292
  "API."
293
  msgstr ""
294
+ "Je API url kan gevonden worden in je ActiveCampaign account onder My "
295
+ "Settings > API."
296
 
297
  #: classes/class-fl-builder-service-activecampaign.php:119
298
  #: classes/class-fl-builder-service-campaign-monitor.php:88
310
  "Your API key can be found in your ActiveCampaign account under My Settings > "
311
  "API."
312
  msgstr ""
313
+ "Je API sleutel kan gevonden worden in je ActiveCampaign account onder My "
314
+ "Settings > API."
315
 
316
  # @ fl-builder
317
  #: classes/class-fl-builder-service-activecampaign.php:169
351
  "There was an error subscribing to ActiveCampaign. The account is no longer "
352
  "connected."
353
  msgstr ""
354
+ "Er is een fout opgetreden tijdens registreren bij ActiveCampaign. Het "
355
+ "account is niet langer verbonden."
356
 
357
  #: classes/class-fl-builder-service-activecampaign.php:239
358
  msgid "Error: Invalid API data."
359
+ msgstr "Fout: Ongeldige API-gegevens."
360
 
361
  #: classes/class-fl-builder-service-aweber.php:72
362
  msgid "Error: You must provide an Authorization Code."
433
 
434
  #: classes/class-fl-builder-service-constant-contact.php:52
435
  msgid "Error: You must provide an access token."
436
+ msgstr "Error: Je moet een access token verstrekken."
437
 
438
  #: classes/class-fl-builder-service-constant-contact.php:61
439
  #: classes/class-fl-builder-service-constant-contact.php:134
440
  #, php-format
441
  msgid "Error: Could not connect to Constant Contact. %s"
442
+ msgstr "Erro: Kon niet verbinden met Constante Contact. %s"
443
 
444
  #: classes/class-fl-builder-service-constant-contact.php:89
445
  msgid "Your Constant Contact API key."
447
 
448
  #: classes/class-fl-builder-service-constant-contact.php:99
449
  msgid "Access Token"
450
+ msgstr "Access Token"
451
 
452
  #: classes/class-fl-builder-service-constant-contact.php:100
453
  msgid "Your Constant Contact access token."
454
+ msgstr "Je Constant Contact Access Token."
455
 
456
  #: classes/class-fl-builder-service-constant-contact.php:101
457
  #, php-format
489
  #: classes/class-fl-builder-service-madmimi.php:110
490
  #: modules/subscribe-form/includes/frontend.php:11
491
  msgid "Email Address"
492
+ msgstr "E-mail adres"
493
 
494
  #: classes/class-fl-builder-service-email-address.php:110
495
  msgid "There was an error subscribing. The account is no longer connected."
496
  msgstr ""
497
+ "Er is een fout opgetreden tijdens het registreren. Het account is niet "
498
+ "langer verbonden."
499
 
500
  #: classes/class-fl-builder-service-email-address.php:114
501
  msgid "Subscribe Form Signup"
502
+ msgstr "Aanmeld Formulier"
503
 
504
  # @ fl-builder
505
  #: classes/class-fl-builder-service-email-address.php:115
544
  "Your API key can be found in your Hatchbuck account under Account Settings > "
545
  "Web API."
546
  msgstr ""
547
+ "Je API sleutel kan gevonden worden in je Hatchbuck account onder Account "
548
  "Settings > Web API."
549
 
550
  #: classes/class-fl-builder-service-hatchbuck.php:134
551
  msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
552
  msgid "Tag"
553
+ msgstr "Label"
554
 
555
  #: classes/class-fl-builder-service-hatchbuck.php:161
556
  msgid ""
557
  "There was an error subscribing to Hatchbuck. The account is no longer "
558
  "connected."
559
  msgstr ""
560
+ "Er is een fout opgetreden tijdens registreren bij Hatchbuck. Het account is "
561
  "niet langer verbonden."
562
 
563
  #: classes/class-fl-builder-service-hatchbuck.php:190
564
  msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
565
  msgstr ""
566
+ "Er is een fout opgetreden tijdens registreren bij ActiveCampaign. De API key "
567
+ "is niet geldig."
568
 
569
  #: classes/class-fl-builder-service-hatchbuck.php:200
570
  #: classes/class-fl-builder-service-hatchbuck.php:232
571
  msgid "There was an error subscribing to Hatchbuck."
572
+ msgstr "Er is een fout opgetreden tijdens registreren bij Hatchbuck."
573
 
574
  #: classes/class-fl-builder-service-icontact.php:75
575
  msgid "Error: You must provide a username."
608
 
609
  #: classes/class-fl-builder-service-icontact.php:147
610
  msgid "App Password"
611
+ msgstr "App Wachtwoord"
612
 
613
  #: classes/class-fl-builder-service-icontact.php:148
614
  msgid "Your iContact app password."
639
  #: classes/class-fl-builder-service-infusionsoft.php:49
640
  #, php-format
641
  msgid "There was an error connecting to Infusionsoft. %s"
642
+ msgstr "Kon niet verbinden met Infusionsoft. %s"
643
 
644
  #: classes/class-fl-builder-service-infusionsoft.php:83
645
  msgid "Error: You must provide an app ID."
646
+ msgstr "Fout: U moet een app-ID opgeven."
647
 
648
  #: classes/class-fl-builder-service-infusionsoft.php:119
649
  msgid ""
651
  "URL for your account is myaccount.infusionsoft.com, your App ID would be "
652
  "<strong>myaccount</strong>."
653
  msgstr ""
654
+ "Je App ID kan gevonden worden in de URL voor jouw account. Bijvoorbeeld: als "
655
+ "de URL voor jouw account is myaccount.infusionsoft.com, dan is je APP ID "
656
  "<strong>myaccount</strong>."
657
 
658
  #: classes/class-fl-builder-service-infusionsoft.php:130
660
  "Your API key can be found in your Infusionsoft account under Admin > "
661
  "Settings > Application > API > Encrypted Key."
662
  msgstr ""
663
+ "Je API sleutel kan gevonden worden in je Infusionsoft account onder Admin > "
664
  "Settings > Application > API > Encrypted Key."
665
 
666
  #: classes/class-fl-builder-service-infusionsoft.php:242
668
  "There was an error subscribing to Infusionsoft. The account is no longer "
669
  "connected."
670
  msgstr ""
671
+ "Er is een fout opgetreden tijdens registreren bij Infusionsoft. Het account "
672
  "is niet langer verbonden."
673
 
674
  #: classes/class-fl-builder-service-infusionsoft.php:291
675
  #, php-format
676
  msgid "There was an error subscribing to Infusionsoft. %s"
677
+ msgstr "Er is een fout opgetreden tijdens registreren bij Infusionsoft. %s"
678
 
679
  #: classes/class-fl-builder-service-madmimi.php:83
680
  msgid "Unable to connect to Mad Mimi. Please check your credentials."
717
  "Je API key kun je terugvinden in je Mailchimp account onder Account > Extras "
718
  "> API Keys."
719
 
 
720
  #: classes/class-fl-builder-service-mailchimp.php:215
721
  msgid "No Group"
722
  msgstr "Geen groep"
723
 
 
724
  #: classes/class-fl-builder-service-mailchimp.php:227
725
  msgctxt "MailChimp list group."
726
  msgid "Groups"
750
 
751
  #: classes/class-fl-builder-service-sendinblue.php:67
752
  msgid "Error: You must provide an Access Key."
753
+ msgstr "Fout: U moet een toegangssleutel opgeven."
754
 
755
  #: classes/class-fl-builder-service-sendinblue.php:76
756
  #: classes/class-fl-builder-service-sendinblue.php:136
757
  msgid "There was an error connecting to SendinBlue. Please try again."
758
+ msgstr "Kon niet verbnden met SendinBlue. Probeer het aub nog eens."
 
 
759
 
760
  #: classes/class-fl-builder-service-sendinblue.php:79
761
  #: classes/class-fl-builder-service-sendinblue.php:139
765
 
766
  #: classes/class-fl-builder-service-sendinblue.php:103
767
  msgid "Access Key"
768
+ msgstr "Toegangssleutel"
769
 
770
  #: classes/class-fl-builder-service-sendinblue.php:104
771
  msgid ""
772
  "Your Access Key can be found in your SendinBlue account under API & "
773
  "Integration > Manager Your Keys > Version 2.0 > Access Key."
774
  msgstr ""
775
+ "Je Access Key is terug te vinden in je SendinBlue account onder API & "
776
+ "Integration > Manage Your Keys > Version 2.0 > Access Key."
777
 
778
  #: classes/class-fl-builder-service-sendinblue.php:198
779
  msgid ""
780
  "There was an error subscribing to SendinBlue. The account is no longer "
781
  "connected."
782
  msgstr ""
783
+ "Er is een fout opgetreden tijdens registreren bij SendinBlue. Het account is "
784
  "niet langer verbonden."
785
 
786
  #: classes/class-fl-builder-service-sendinblue.php:220
787
  msgid "There was an error subscribing to SendinBlue. Please try again."
788
  msgstr ""
789
+ "Er is een fout opgetreden tijdens registreren bij SendinBlue. Probeer het "
790
+ "aub nog eens."
791
 
792
  #: classes/class-fl-builder-service-sendinblue.php:223
793
  #, php-format
794
  msgid "Error: Could not subscribe to SendinBlue. %s"
795
+ msgstr "Fout: Kon niet abonneren op SendinBlue. %s"
796
 
797
  #: classes/class-fl-builder-services.php:158
798
  msgctxt "Third party service such as MailChimp."
832
 
833
  #: classes/class-fl-builder-services.php:295
834
  msgid "Add Account..."
835
+ msgstr "Account Toevoegen..."
836
 
837
  #: classes/class-fl-builder-services.php:302
838
  msgid "Account"
839
  msgstr "Account"
840
 
841
+ #: classes/class-fl-builder-template-settings.php:33
842
+ msgid "Page Builder Templates"
843
+ msgstr "Page Builder Templates"
844
+
845
+ #: classes/class-fl-builder-templates-override.php:49
846
  msgid "Error! Please enter a number for the site ID."
847
+ msgstr "Fout! Voer een nummer voor de site-ID."
848
 
849
+ #: classes/class-fl-builder-templates-override.php:53
850
  msgid "Error! A site with that ID doesn't exist."
851
+ msgstr "Fout! Een site met die ID bestaat niet."
852
+
853
+ # @ fl-builder
854
+ #: classes/class-fl-builder.php:617
855
+ #, php-format
856
+ msgid "Template: %s"
857
+ msgstr "Template: %s"
858
+
859
+ # @ fl-builder
860
+ #: classes/class-fl-builder.php:652
861
+ msgid "Upgrade!"
862
+ msgstr "Upgraden!"
863
+
864
+ # @ fl-builder
865
+ #: classes/class-fl-builder.php:656
866
+ msgid "Buy Now!"
867
+ msgstr "Nu Kopen!"
868
+
869
+ # @ fl-builder
870
+ #: classes/class-fl-builder.php:660 includes/ui-js-config.php:36
871
+ #: includes/ui-js-templates.php:100
872
+ msgid "Done"
873
+ msgstr "Klaar"
874
+
875
+ # @ fl-builder
876
+ #: classes/class-fl-builder.php:664
877
+ msgid "Tools"
878
+ msgstr "Gereedschappen"
879
+
880
+ # @ fl-builder
881
+ #: classes/class-fl-builder.php:672 includes/ui-js-config.php:88
882
+ msgid "Add Content"
883
+ msgstr "Inhoud Toevoegen"
884
 
885
  # @ fl-builder
886
+ #: classes/class-fl-builder.php:1032
887
  #, php-format
888
  msgctxt "Field name to add."
889
  msgid "Add %s"
890
+ msgstr "%s Toevoegen"
891
 
892
+ #: classes/class-fl-builder.php:1126 classes/class-fl-builder.php:1128
 
893
  msgctxt "Custom post type label."
894
  msgid "Templates"
895
  msgstr "Templates"
896
 
897
+ #: classes/class-fl-builder.php:1127 classes/class-fl-builder.php:1129
 
898
  msgctxt "Custom post type label."
899
  msgid "Template"
900
  msgstr "Template"
901
 
902
  # @ fl-builder
903
+ #: classes/class-fl-builder.php:1130
904
  msgctxt "Custom post type label."
905
  msgid "Add New"
906
  msgstr "Toevoegen"
907
 
908
+ #: classes/class-fl-builder.php:1131
 
909
  msgctxt "Custom post type label."
910
  msgid "Add New Template"
911
+ msgstr "Nieuwe Template Toevoegen"
912
 
913
+ #: classes/class-fl-builder.php:1132
 
914
  msgctxt "Custom post type label."
915
  msgid "New Template"
916
+ msgstr "Nieuwe Template"
917
 
918
+ #: classes/class-fl-builder.php:1133
919
  msgctxt "Custom post type label."
920
  msgid "Edit Template"
921
+ msgstr "Bewerk Template"
922
 
923
+ #: classes/class-fl-builder.php:1134
 
924
  msgctxt "Custom post type label."
925
  msgid "View Template"
926
+ msgstr "Bekijk Template"
927
 
928
+ #: classes/class-fl-builder.php:1135
 
929
  msgctxt "Custom post type label."
930
  msgid "All Templates"
931
+ msgstr "Alle sjablonen"
932
 
933
+ #: classes/class-fl-builder.php:1136
 
934
  msgctxt "Custom post type label."
935
  msgid "Search Templates"
936
+ msgstr "Zoek Templates"
937
 
938
+ #: classes/class-fl-builder.php:1137
 
939
  msgctxt "Custom post type label."
940
  msgid "Parent Templates:"
941
+ msgstr "Bovenliggende Templates:"
942
 
943
+ #: classes/class-fl-builder.php:1138
 
944
  msgctxt "Custom post type label."
945
  msgid "No templates found."
946
  msgstr "Geen templates gevonden."
947
 
948
+ #: classes/class-fl-builder.php:1139
 
949
  msgctxt "Custom post type label."
950
  msgid "No templates found in Trash."
951
+ msgstr "Geen templates gevonden in de prullenbak."
952
 
953
+ #: classes/class-fl-builder.php:1153 classes/class-fl-builder.php:1163
 
954
  msgctxt "Custom taxonomy label."
955
  msgid "Categories"
956
  msgstr "Categorieën"
957
 
958
+ #: classes/class-fl-builder.php:1154
959
  msgctxt "Custom taxonomy label."
960
  msgid "Category"
961
  msgstr "Categorie"
962
 
963
+ #: classes/class-fl-builder.php:1155
 
964
  msgctxt "Custom taxonomy label."
965
  msgid "Search Categories"
966
+ msgstr "Categorieën zoeken"
967
 
968
+ #: classes/class-fl-builder.php:1156
 
969
  msgctxt "Custom taxonomy label."
970
  msgid "All Categories"
971
+ msgstr "Alle categoriën"
972
 
973
+ #: classes/class-fl-builder.php:1157
 
974
  msgctxt "Custom taxonomy label."
975
  msgid "Parent Category"
976
+ msgstr "Bovenliggende Categorie"
977
 
978
+ #: classes/class-fl-builder.php:1158
 
979
  msgctxt "Custom taxonomy label."
980
  msgid "Parent Category:"
981
+ msgstr "Bovenliggende Categorie:"
982
 
983
+ #: classes/class-fl-builder.php:1159
984
  msgctxt "Custom taxonomy label."
985
  msgid "Edit Category"
986
+ msgstr "Bewerk Categorie"
987
 
988
+ #: classes/class-fl-builder.php:1160
 
989
  msgctxt "Custom taxonomy label."
990
  msgid "Update Category"
991
  msgstr "Categorie bijwerken"
992
 
993
+ #: classes/class-fl-builder.php:1161
994
  msgctxt "Custom taxonomy label."
995
  msgid "Add New Category"
996
+ msgstr "Voeg nieuwe Categorie toe"
997
 
998
+ #: classes/class-fl-builder.php:1162
999
  msgctxt "Custom taxonomy label."
1000
  msgid "New Category Name"
1001
+ msgstr "Nieuwe Categorie Naam"
1002
+
1003
+ #: classes/class-fl-builder.php:1172
1004
+ msgctxt "Custom taxonomy label."
1005
+ msgid "Type"
1006
+ msgstr "Type"
1007
+
1008
+ #: classes/class-fl-builder.php:1448 classes/class-fl-builder.php:1527
1009
+ #: classes/class-fl-builder.php:1735 includes/ui-js-templates.php:110
1010
+ #: includes/ui-panel-node-templates.php:18
1011
+ #: includes/ui-panel-node-templates.php:49
1012
+ msgctxt "Indicator for global node templates."
1013
+ msgid "Global"
1014
+ msgstr "Algemeen"
1015
 
1016
  # @ fl-builder
1017
+ #: classes/class-fl-builder.php:1734
1018
  #, php-format
1019
  msgctxt "%s stands for module name."
1020
  msgid "%s Settings"
1021
+ msgstr "%s Instellingen"
1022
 
1023
  # @ fl-builder
1024
  #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
1025
  msgid "Text Editor"
1026
  msgstr "Tekstbewerker"
1027
 
 
1028
  #: includes/admin-posts.php:7
1029
  #, php-format
1030
  msgctxt ""
1098
 
1099
  #: includes/admin-settings-cache.php:19
1100
  msgid "Clear Cache"
1101
+ msgstr "Wis Cache"
1102
 
1103
  # @ fl-builder
1104
  #: includes/admin-settings-editing.php:3
1113
  msgid "Override network settings?"
1114
  msgstr "Netwerkinstellingen overschrijven?"
1115
 
 
1116
  #: includes/admin-settings-editing.php:16
1117
+ msgid "Editing Capability"
1118
+ msgstr "Bewerk Mogelijkheden"
1119
+
1120
+ # @ fl-builder
1121
+ #: includes/admin-settings-editing.php:17
1122
  #, php-format
1123
  msgid ""
1124
  "Set the <a%s>capability</a> required for users to access advanced builder "
1128
  "bewerkingen toe te staan, zoals toevoegen, verwijderen en verplaatsen van "
1129
  "modules."
1130
 
1131
+ #: includes/admin-settings-editing.php:21
1132
+ msgid "Global Templates Editing Capability"
1133
+ msgstr "Globale Templates Bewerk Mogelijkheden"
1134
+
1135
  #: includes/admin-settings-editing.php:22
1136
+ #, php-format
1137
+ msgid "Set the <a%s>capability</a> required for users to global templates."
1138
+ msgstr ""
1139
+ "Stel de vereiste <a%s>mogelijkheden</a> in voor gebruikers voor globale "
1140
+ "templates."
1141
+
1142
+ #: includes/admin-settings-editing.php:28
1143
  msgid "Save Editing Settings"
1144
+ msgstr "Bewaar Editing Instellingen"
1145
 
1146
  # @ fl-builder
1147
  #: includes/admin-settings-help-button.php:8
1148
  msgid "Help Button Settings"
1149
+ msgstr "Help Button Instellingen"
1150
 
1151
  # @ fl-builder
1152
  #: includes/admin-settings-help-button.php:17
1153
  msgid "Enable Help Button"
1154
+ msgstr "Activeer Help Button"
1155
 
1156
  # @ fl-builder
1157
  #: includes/admin-settings-help-button.php:23
1158
  msgid "Help Tour"
1159
+ msgstr "Help Rondleiding"
1160
 
1161
  # @ fl-builder
1162
  #: includes/admin-settings-help-button.php:27
1163
  msgid "Enable Help Tour"
1164
+ msgstr "Activeer Help Rondleiding"
1165
 
1166
  # @ fl-builder
1167
  #: includes/admin-settings-help-button.php:31
1168
  msgid "Help Video"
1169
+ msgstr "Help Video"
1170
 
1171
  # @ fl-builder
1172
  #: includes/admin-settings-help-button.php:35
1173
  msgid "Enable Help Video"
1174
+ msgstr "Activeer Help Video"
1175
 
1176
  # @ fl-builder
1177
  #: includes/admin-settings-help-button.php:39
1178
  msgid "Help Video Embed Code"
1179
+ msgstr "Help Video Embed Code"
1180
 
1181
  # @ fl-builder
1182
  #: includes/admin-settings-help-button.php:45
1186
  # @ fl-builder
1187
  #: includes/admin-settings-help-button.php:49
1188
  msgid "Enable Knowledge Base"
1189
+ msgstr "Activeer Kennisbank"
1190
 
1191
  # @ fl-builder
1192
  #: includes/admin-settings-help-button.php:53
1201
  # @ fl-builder
1202
  #: includes/admin-settings-help-button.php:63
1203
  msgid "Enable Forums"
1204
+ msgstr "Activeer Forums"
1205
 
1206
  # @ fl-builder
1207
  #: includes/admin-settings-help-button.php:67
1210
 
1211
  #: includes/admin-settings-help-button.php:77
1212
  msgid "Save Help Button Settings"
1213
+ msgstr "Help Button Instellingen Opslaan"
1214
 
1215
  # @ fl-builder
1216
  #: includes/admin-settings-icons.php:3
1217
  msgid "Icon Settings"
1218
+ msgstr "Icoon Instellingen"
1219
 
1220
  # @ fl-builder
1221
  #: includes/admin-settings-icons.php:13
1241
 
1242
  #: includes/admin-settings-icons.php:59
1243
  msgid "Upload Icon Set"
1244
+ msgstr "Upload Icoon-set"
1245
 
1246
  #: includes/admin-settings-icons.php:60
1247
  msgid "Save Icon Settings"
1248
+ msgstr "Icon Instellingen Opslaan"
1249
 
1250
  #: includes/admin-settings-js-config.php:4
1251
  msgid "Select File"
1286
  "work with."
1287
  msgstr ""
1288
  "Voer een door komma's gescheiden lijst in van de post-typen die je wilt waar "
1289
+ "de builder mee werkt."
1290
 
1291
  # @ fl-builder
1292
  #: includes/admin-settings-post-types.php:19
1304
  # @ fl-builder
1305
  #: includes/admin-settings-post-types.php:38
1306
  msgid "Select the post types you would like the builder to work with."
1307
+ msgstr "Selecteer de post typen die je wilt waar de builder mee werkt."
1308
 
1309
  #: includes/admin-settings-post-types.php:70
1310
  msgid "Save Post Types"
1311
  msgstr "Post Type Opslaan"
1312
 
1313
+ #: includes/admin-settings-templates-override.php:1
1314
+ #: includes/admin-settings-templates-override.php:12
 
1315
  msgid "Override Core Templates"
1316
+ msgstr "Overschrijven Core Templates"
1317
 
1318
  #: includes/admin-settings-templates-override.php:3
1319
  msgid ""
1321
  "builder templates. Leave this field blank if you do not wish to override "
1322
  "core templates."
1323
  msgstr ""
1324
+ "Geef de ID van een site op het netwerk waarvan de templates de kern builder "
1325
+ "templates moet overschrijven. Laat dit veld leeg indien je niet de kern "
1326
+ "templates wilt overschrijven."
1327
 
1328
+ #: includes/admin-settings-templates-override.php:8
1329
  msgid ""
1330
  "Use this setting to override core builder templates with your templates."
1331
  msgstr ""
1332
+ "Gebruik deze instelling om kern builder sjablonen met jouw sjablonen te "
1333
+ "overschrijven."
1334
+
1335
+ #: includes/admin-settings-templates-override.php:17
1336
+ msgid ""
1337
+ "You may also choose to show your row and module templates as sections within "
1338
+ "the builder panel. A new section will be created for each row or module "
1339
+ "category that you have defined."
1340
+ msgstr ""
1341
+ "Je kunt er ook voor kiezen om je rij- en module-templates als secties in "
1342
+ "het builder paneel te tonen. Een nieuwe sectie zal worden aangemaakt voor "
1343
+ "iedere rij- of module-categorie die je hebt gedefinieerd."
1344
+
1345
+ #: includes/admin-settings-templates-override.php:21
1346
+ msgid "Show Row Templates?"
1347
+ msgstr "Rij Templates weergeven?"
1348
+
1349
+ #: includes/admin-settings-templates-override.php:27
1350
+ msgid "Show Module Templates?"
1351
+ msgstr "Module Templates weergeven?"
1352
 
1353
  # @ fl-builder
1354
+ #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1355
  msgid "Template Settings"
1356
  msgstr "Template Instellingen"
1357
 
 
1358
  #: includes/admin-settings-templates.php:22
1359
  msgid "Enable Templates"
1360
+ msgstr "Sjablonen inschakelen"
1361
 
 
1362
  #: includes/admin-settings-templates.php:23
1363
  msgid ""
1364
  "Use this setting to enable or disable templates in the builder interface."
1365
+ msgstr "Schakel templates in of uit met behulp van onderstaande instelling."
 
1366
 
1367
  # @ fl-builder
1368
  #: includes/admin-settings-templates.php:25
1384
  msgid "Disable All Templates"
1385
  msgstr "Alle Templates Uitschakelen"
1386
 
 
1387
  #: includes/admin-settings-templates.php:31
1388
  #: includes/admin-settings-templates.php:36
1389
  msgid "Enable Templates Admin"
1390
+ msgstr "Sjablonen Admin inschakelen"
1391
 
1392
  #: includes/admin-settings-templates.php:32
1393
  msgid "Use this setting to edit builder templates in the WordPress admin."
1394
  msgstr ""
1395
+ "Gebruik deze instelling om builder sjablonen in de WordPress admin te "
1396
+ "bewerken."
1397
 
1398
  #: includes/admin-settings-templates.php:50
1399
  msgid "Save Template Settings"
1408
  msgstr ""
1409
  "Door op onderstaande button te klikken zal de page builder en alle daarmee "
1410
  "geassocieerde data verwijderd worden. Je kunt als alternatief de page "
1411
+ "builder vanaf de plugins pagina verwijderen of deactiveren als je niet ook "
1412
+ "de data wenst te verwijderen."
1413
 
1414
  # @ fl-builder
1415
  #: includes/admin-settings-uninstall.php:7
1419
  "you want to reinstall it later. If you do, the builder will rebuild all of "
1420
  "its data using those meta values."
1421
  msgstr ""
1422
+ "De builder verwijdert niet de post meta <code>_fl_builder_data</code> , "
1423
  "<code>_fl_builder_draft</code> en <code>_fl_builder_enabled</code> voor het "
1424
+ "geval je later opnieuw wenst te installeren. Als je dit doet, zal de builder "
1425
  "alle gegevens met behulp van deze meta-waarden herbouwen."
1426
 
1427
  # @ fl-builder
1445
  msgid "Learn More"
1446
  msgstr "Leer Meer"
1447
 
1448
+ #: includes/admin-templates-edit.php:3
1449
+ msgid "Edit Template"
1450
+ msgstr "Bewerk Template"
1451
+
1452
+ #: includes/admin-templates-edit.php:8
1453
+ msgctxt "Template edit form field label. Template name."
1454
+ msgid "Name"
1455
+ msgstr "Naam"
1456
+
1457
+ # @ fl-builder
1458
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:306
1459
+ #: modules/post-carousel/post-carousel.php:255
1460
+ #: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:460
1461
+ msgid "Image"
1462
+ msgstr "Afbeelding"
1463
+
1464
+ # @ fl-builder
1465
+ #: includes/admin-templates-edit.php:16 includes/column-settings.php:139
1466
+ #: includes/row-settings.php:179 includes/template-settings.php:23
1467
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
1468
+ #: modules/content-slider/content-slider.php:473
1469
+ #: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:626
1470
+ #: modules/post-slider/post-slider.php:645
1471
+ msgid "Position"
1472
+ msgstr "Positie"
1473
+
1474
+ #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1475
+ msgctxt "Template edit form field label. Is template premium one?"
1476
+ msgid "Premium"
1477
+ msgstr "Premium"
1478
+
1479
+ # @ fl-builder
1480
+ #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
1481
+ #: includes/global-settings.php:18 includes/global-settings.php:110
1482
+ #: includes/global-settings.php:124 includes/node-template-settings.php:22
1483
+ #: includes/row-settings.php:331 includes/template-settings.php:31
1484
+ #: modules/accordion/accordion.php:90 modules/callout/callout.php:421
1485
+ #: modules/content-slider/content-slider.php:210
1486
+ #: modules/content-slider/content-slider.php:224
1487
+ #: modules/content-slider/content-slider.php:258
1488
+ #: modules/content-slider/content-slider.php:267
1489
+ #: modules/content-slider/content-slider.php:538
1490
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1491
+ #: modules/menu/menu.php:167 modules/menu/menu.php:358
1492
+ #: modules/post-carousel/post-carousel.php:139
1493
+ #: modules/post-carousel/post-carousel.php:155
1494
+ #: modules/post-carousel/post-carousel.php:182
1495
+ #: modules/post-carousel/post-carousel.php:191
1496
+ #: modules/post-carousel/post-carousel.php:232
1497
+ #: modules/post-carousel/post-carousel.php:283
1498
+ #: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:357
1499
+ #: modules/post-slider/post-slider.php:382
1500
+ #: modules/post-slider/post-slider.php:409
1501
+ #: modules/post-slider/post-slider.php:418
1502
+ #: modules/post-slider/post-slider.php:739 modules/slideshow/slideshow.php:323
1503
+ #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
1504
+ #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
1505
+ #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
1506
+ #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
1507
+ #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
1508
+ #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
1509
+ #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
1510
+ #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
1511
+ #: modules/slideshow/slideshow.php:650
1512
+ #: modules/social-buttons/social-buttons.php:111
1513
+ #: modules/social-buttons/social-buttons.php:120
1514
+ #: modules/social-buttons/social-buttons.php:129
1515
+ #: modules/testimonials/testimonials.php:85
1516
+ #: modules/testimonials/testimonials.php:124
1517
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1518
+ #: modules/video/video.php:123
1519
+ msgid "No"
1520
+ msgstr "Nee"
1521
+
1522
+ # @ fl-builder
1523
+ #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
1524
+ #: includes/global-settings.php:19 includes/global-settings.php:111
1525
+ #: includes/global-settings.php:125 includes/node-template-settings.php:23
1526
+ #: includes/row-settings.php:332 includes/template-settings.php:32
1527
+ #: modules/accordion/accordion.php:89 modules/callout/callout.php:422
1528
+ #: modules/content-slider/content-slider.php:211
1529
+ #: modules/content-slider/content-slider.php:225
1530
+ #: modules/content-slider/content-slider.php:259
1531
+ #: modules/content-slider/content-slider.php:268
1532
+ #: modules/content-slider/content-slider.php:539
1533
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1534
+ #: modules/menu/menu.php:168 modules/menu/menu.php:359
1535
+ #: modules/post-carousel/post-carousel.php:140
1536
+ #: modules/post-carousel/post-carousel.php:156
1537
+ #: modules/post-carousel/post-carousel.php:183
1538
+ #: modules/post-carousel/post-carousel.php:192
1539
+ #: modules/post-carousel/post-carousel.php:233
1540
+ #: modules/post-carousel/post-carousel.php:282
1541
+ #: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:358
1542
+ #: modules/post-slider/post-slider.php:383
1543
+ #: modules/post-slider/post-slider.php:410
1544
+ #: modules/post-slider/post-slider.php:419
1545
+ #: modules/post-slider/post-slider.php:740 modules/slideshow/slideshow.php:324
1546
+ #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
1547
+ #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
1548
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1549
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
1550
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
1551
+ #: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
1552
+ #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
1553
+ #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
1554
+ #: modules/slideshow/slideshow.php:651
1555
+ #: modules/social-buttons/social-buttons.php:110
1556
+ #: modules/social-buttons/social-buttons.php:119
1557
+ #: modules/social-buttons/social-buttons.php:128
1558
+ #: modules/testimonials/testimonials.php:86
1559
+ #: modules/testimonials/testimonials.php:125
1560
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1561
+ #: modules/video/video.php:124
1562
+ msgid "Yes"
1563
+ msgstr "Ja"
1564
+
1565
+ #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
1566
+ msgid "Category"
1567
+ msgstr "Categorie"
1568
+
1569
+ #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1570
+ msgctxt "Templates category label."
1571
+ msgid "Landing Pages"
1572
+ msgstr "Bestemmingspagina 's"
1573
+
1574
+ #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1575
+ msgctxt "Templates category label."
1576
+ msgid "Company Info"
1577
+ msgstr "Bedrijfsinfo"
1578
+
1579
+ #: includes/admin-templates-edit.php:40
1580
+ msgid "Update Template"
1581
+ msgstr "Template Bijwerken"
1582
+
1583
+ #: includes/admin-templates.php:3
1584
+ msgid "Page Builder Template"
1585
+ msgstr "Page Builder Template"
1586
+
1587
+ #: includes/admin-templates.php:10
1588
+ msgctxt "Templates list column label."
1589
+ msgid "Name"
1590
+ msgstr "Naam"
1591
+
1592
+ #: includes/admin-templates.php:11
1593
+ msgctxt "Templates list column label."
1594
+ msgid "Category"
1595
+ msgstr "Categorie"
1596
+
1597
+ #: includes/admin-templates.php:12
1598
+ msgctxt "Templates list column label. Is template premium one?"
1599
+ msgid "Premium"
1600
+ msgstr "Premium"
1601
+
1602
+ # @ fl-builder
1603
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
1604
+ #: includes/template-selector.php:70
1605
+ msgid "Edit"
1606
+ msgstr "Bewerk"
1607
+
1608
+ # @ fl-builder
1609
+ #: includes/admin-templates.php:27 includes/template-selector.php:71
1610
+ msgid "Delete"
1611
+ msgstr "Verwijder"
1612
+
1613
+ # @ fl-builder
1614
+ #: includes/admin-templates.php:40 includes/ui-js-config.php:32
1615
+ msgid "Do you really want to delete this template?"
1616
+ msgstr "Wilt je echt dit template verwijderen?"
1617
+
1618
  # @ fl-builder
1619
+ #: includes/column-settings.php:4 includes/ui-js-templates.php:31
1620
+ #: includes/ui-js-templates.php:55
1621
  msgid "Column Settings"
1622
  msgstr "Kolom Instellingen"
1623
 
1631
  #: modules/content-slider/content-slider.php:667 modules/cta/cta.php:102
1632
  #: modules/cta/cta.php:309 modules/heading/heading.php:69
1633
  #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1634
+ #: modules/menu/menu.php:146 modules/post-carousel/post-carousel.php:389
1635
+ #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:579
1636
  #: modules/pricing-table/pricing-table.php:43
1637
  #: modules/pricing-table/pricing-table.php:155
1638
  #: modules/separator/separator.php:72
1651
  #: modules/callout/callout.php:495
1652
  #: modules/content-slider/content-slider.php:383
1653
  #: modules/content-slider/content-slider.php:617 modules/cta/cta.php:85
1654
+ #: modules/cta/cta.php:222 modules/menu/menu.php:174
1655
+ #: modules/post-slider/post-slider.php:622
1656
  msgid "Text"
1657
  msgstr "Tekst"
1658
 
1666
  msgid "Color"
1667
  msgstr "Kleur"
1668
 
 
1669
  #: includes/column-settings.php:38 includes/row-settings.php:60
1670
+ #: modules/menu/menu.php:178 modules/post-carousel/post-carousel.php:401
1671
+ #: modules/post-slider/post-slider.php:699
1672
  msgid "Link Color"
1673
+ msgstr "Link Kleur"
1674
 
 
1675
  #: includes/column-settings.php:46 includes/row-settings.php:68
1676
+ #: modules/menu/menu.php:196 modules/post-carousel/post-carousel.php:406
1677
+ #: modules/post-slider/post-slider.php:715
1678
  msgid "Link Hover Color"
1679
+ msgstr "Link Hover Kleur"
1680
 
 
1681
  #: includes/column-settings.php:54 includes/row-settings.php:76
1682
  msgid "Heading Color"
1683
+ msgstr "Kopregel Kleur"
1684
 
1685
  # @ fl-builder
1686
  #: includes/column-settings.php:63 includes/row-settings.php:85
1687
+ #: modules/post-slider/post-slider.php:463
1688
  msgid "Background"
1689
  msgstr "Achtergrond"
1690
 
1783
  msgid "Vertical"
1784
  msgstr "Verticaal"
1785
 
 
1786
  #: includes/column-settings.php:132 includes/row-settings.php:172
1787
  msgid ""
1788
  "Repeat applies to how the image should display in the background. Choosing "
1790
  "times as needed to fill the background horizontally and vertically. You can "
1791
  "also specify the image to only repeat horizontally or vertically."
1792
  msgstr ""
1793
+ "Herhaal geldt hoe het beeld op de achtergrond moet worden weergegeven. "
1794
+ "Indien gekozen voor geen wordt het beeld weergegeven als geupload. Tegel "
1795
+ "wordt het beeld herhaald zo vaak als nodig is om de achtergrond horizontaal "
1796
+ "en verticaal vullen. U kunt ook de afbeelding instellen om alleen "
1797
+ "horizontaal of verticaal te herhalen."
 
 
 
 
 
 
 
 
 
1798
 
1799
  # @ fl-builder
1800
  #: includes/column-settings.php:142 includes/row-settings.php:182
1837
  #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1838
  #: modules/heading/heading.php:90 modules/heading/heading.php:162
1839
  #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1840
+ #: modules/menu/menu.php:158 modules/photo/photo.php:434
1841
+ #: modules/social-buttons/social-buttons.php:100
1842
  msgid "Center"
1843
  msgstr "Gecentreerd"
1844
 
1847
  msgid "Center Bottom"
1848
  msgstr "Midden Onder"
1849
 
 
1850
  #: includes/column-settings.php:152 includes/row-settings.php:192
1851
  msgid "Position will tell the image where it should sit in the background."
1852
+ msgstr "Positie zal de positie van de afbeelding in de achtergrond instellen."
 
 
1853
 
1854
  # @ fl-builder
1855
  #: includes/column-settings.php:159 includes/row-settings.php:199
1869
  msgid "Fixed"
1870
  msgstr "Vastgezet"
1871
 
 
1872
  #: includes/column-settings.php:165 includes/row-settings.php:205
1873
  msgid ""
1874
  "Attachment will specify how the image reacts when scrolling a page. When "
1876
  "the default setting. Fixed will allow the image to scroll within the "
1877
  "background if fill is selected in the scale setting."
1878
  msgstr ""
1879
+ "Gehechtheid geeft aan hoe de afbeelding reageert wanneer de pagina scrollt. "
1880
+ "Wanneer gekozen is voor scrollend zal de afbeelding meescrollen met de "
1881
+ "paginascroll. Dit is de standaard instelling. Wanneer gekozen is voor "
1882
+ "vastgezet zal de afbeelding scrollen in de achtergrond wanneer de uitvulling "
1883
+ "is ingesteld op verschalen."
1884
 
1885
  # @ fl-builder
1886
  #: includes/column-settings.php:172 includes/row-settings.php:212
1903
  msgid "Fill"
1904
  msgstr "Uitvullen"
1905
 
 
1906
  #: includes/column-settings.php:179 includes/row-settings.php:219
1907
  msgid ""
1908
  "Scale applies to how the image should display in the background. You can "
1909
  "select either fill or fit to the background."
1910
  msgstr ""
1911
+ "Scale geldt hoe het beeld op de achtergrond moet worden weergegeven. U kunt "
1912
+ "kiezen uit vullen of aan te passen op de achtergrond."
 
1913
 
1914
  # @ fl-builder
1915
  #: includes/column-settings.php:187 includes/row-settings.php:366
1924
  # @ fl-builder
1925
  #: includes/column-settings.php:199 includes/row-settings.php:378
1926
  msgid "Overlay Opacity"
1927
+ msgstr "Overlay Dichtheid"
1928
 
1929
  # @ fl-builder
1930
  #: includes/column-settings.php:211 includes/row-settings.php:390
2017
  # @ fl-builder
2018
  #: includes/column-settings.php:337 includes/column-settings.php:390
2019
  #: includes/module-settings.php:25 includes/row-settings.php:516
2020
+ #: includes/row-settings.php:569 modules/post-slider/post-slider.php:632
2021
  #: modules/slideshow/slideshow.php:482
2022
  msgid "Bottom"
2023
  msgstr "Onder"
2030
  #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
2031
  #: modules/heading/heading.php:89 modules/heading/heading.php:161
2032
  #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
2033
+ #: modules/menu/menu.php:157 modules/photo/photo.php:433
2034
+ #: modules/post-slider/post-slider.php:630
2035
+ #: modules/post-slider/post-slider.php:649
2036
  #: modules/social-buttons/social-buttons.php:101
2037
  msgid "Left"
2038
  msgstr "Links"
2045
  #: modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
2046
  #: modules/heading/heading.php:91 modules/heading/heading.php:163
2047
  #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
2048
+ #: modules/menu/menu.php:159 modules/photo/photo.php:435
2049
+ #: modules/post-slider/post-slider.php:631
2050
+ #: modules/post-slider/post-slider.php:650
2051
  #: modules/social-buttons/social-buttons.php:102
2052
  msgid "Right"
2053
  msgstr "Rechts"
2131
  #: modules/callout/callout.php:284
2132
  #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
2133
  #: modules/heading/heading.php:117 modules/heading/heading.php:144
2134
+ #: modules/heading/heading.php:174 modules/menu/menu.php:156
2135
+ #: modules/post-slider/post-slider.php:602
2136
  msgid "Default"
2137
  msgstr "Standaard"
2138
 
2141
  #: modules/button/button.php:202 modules/callout/callout.php:285
2142
  #: modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
2143
  #: modules/heading/heading.php:118 modules/heading/heading.php:145
2144
+ #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:603
2145
  #: modules/social-buttons/social-buttons.php:74
2146
  msgid "Custom"
2147
  msgstr "Aangepast"
2222
  msgstr "Vervangen"
2223
 
2224
  # @ fl-builder
2225
+ #: includes/field-icon.php:7 includes/ui-js-config.php:65
2226
+ #: includes/ui-js-templates.php:15 includes/ui-js-templates.php:32
2227
+ #: includes/ui-js-templates.php:56
2228
  msgid "Remove"
2229
  msgstr "Verwijder"
2230
 
2244
 
2245
  # @ fl-builder
2246
  #: includes/field-link.php:7 includes/icon-selector.php:28
2247
+ #: includes/settings.php:71 includes/template-selector.php:92
2248
+ #: includes/ui-js-config.php:22 includes/ui-js-templates.php:72
2249
  msgid "Cancel"
2250
  msgstr "Annuleren"
2251
 
2273
  msgstr "Afbeeldingen Toevoegen"
2274
 
2275
  # @ fl-builder
2276
+ #: includes/field-photo.php:3 includes/ui-js-config.php:71
2277
  msgid "Select Photo"
2278
  msgstr "Selecteer Afbeelding"
2279
 
2280
  # @ fl-builder
2281
+ #: includes/field-video.php:3 includes/ui-js-config.php:73
 
 
 
 
 
2282
  msgid "Select Video"
2283
  msgstr "Selecteer Video"
2284
 
2288
  msgstr "Vervang Video"
2289
 
2290
  # @ fl-builder
2291
+ #: includes/global-settings.php:7 includes/node-template-settings.php:7
2292
+ #: includes/template-settings.php:7 includes/user-template-settings.php:7
2293
  #: modules/accordion/accordion.php:110 modules/button/button.php:59
2294
  #: modules/callout/callout.php:210 modules/contact-form/contact-form.php:58
2295
  #: modules/content-slider/content-slider.php:191
2296
  #: modules/content-slider/content-slider.php:315 modules/cta/cta.php:68
2297
  #: modules/gallery/gallery.php:220 modules/heading/heading.php:26
2298
  #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
2299
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/menu/menu.php:82
2300
+ #: modules/photo/photo.php:384 modules/pricing-table/pricing-table.php:87
2301
  #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
2302
  #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
2303
  #: modules/social-buttons/social-buttons.php:64
2325
  msgid "Show"
2326
  msgstr "Toon"
2327
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2328
  # @ fl-builder
2329
  #: includes/global-settings.php:26
2330
  msgid ""
2404
  "margins and padding in your layout once the small device breakpoint is "
2405
  "reached. Most users will want to leave this enabled."
2406
  msgstr ""
2407
+ "Wanneer automatische spatiëring is ingeschakeld, zal de builder automatisch "
2408
  "de marges en opvulling in je layout aanpassen totdat op kleine apparaten het "
2409
  "breekpunt wordt bereikt. De meeste gebruikers zullen dit ingeschakeld willen "
2410
  "laten."
2412
  # @ fl-builder
2413
  #: includes/global-settings.php:131
2414
  msgid "Medium Device Breakpoint"
2415
+ msgstr "Medium Apparaten Breekpunt"
2416
 
2417
  # @ fl-builder
2418
  #: includes/global-settings.php:136
2420
  "The browser width at which the layout will adjust for medium devices such as "
2421
  "tablets."
2422
  msgstr ""
2423
+ "De browserbreedte waarbij de layout voor medium apparaten zoals tablets "
2424
  "aangepast zal worden."
2425
 
2426
  # @ fl-builder
2434
  "The browser width at which the layout will adjust for small devices such as "
2435
  "phones."
2436
  msgstr ""
2437
+ "De browserbreedte waarbij de layout voor kleine apparaten zoals telefoons "
2438
  "aangepast zal worden."
2439
 
2440
  # @ fl-builder
2443
  msgid "All Libraries"
2444
  msgstr "Alle bibliotheken"
2445
 
2446
+ # @ fl-builder
2447
+ #: includes/loop-settings.php:20
2448
+ msgid "Post Type"
2449
+ msgstr "Bericht Type"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2450
 
2451
+ # @ fl-builder
2452
+ #: includes/loop-settings.php:26
2453
+ msgid "Order By"
2454
+ msgstr "Sorteer Op"
2455
 
2456
+ # @ fl-builder
2457
+ #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
2458
+ #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:508
2459
+ #: modules/woocommerce/woocommerce.php:189
2460
+ msgid "Date"
2461
+ msgstr "Datum"
 
2462
 
2463
+ # @ fl-builder
2464
+ #: includes/loop-settings.php:30
2465
+ msgid "Date Last Modified"
2466
+ msgstr "Datum Laatst Gewijzigd"
2467
 
2468
+ # @ fl-builder
2469
+ #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90
2470
+ #: modules/pricing-table/pricing-table.php:94
2471
+ msgid "Title"
2472
+ msgstr "Titel"
 
 
2473
 
2474
+ # @ fl-builder
2475
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
2476
+ #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:499
2477
+ msgid "Author"
2478
+ msgstr "Auteur"
 
 
2479
 
2480
  # @ fl-builder
2481
+ #: includes/loop-settings.php:33
2482
+ msgid "Comment Count"
2483
+ msgstr "Aantal Reacties"
2484
 
2485
+ # @ fl-builder
2486
+ #: includes/loop-settings.php:34
2487
+ msgid "Menu Order"
2488
+ msgstr "Menu Volgorde"
2489
 
2490
+ # @ fl-builder
2491
+ #: includes/loop-settings.php:35
2492
+ msgid "Random"
2493
+ msgstr "Willekeurig"
 
 
 
2494
 
2495
  # @ fl-builder
2496
+ #: includes/loop-settings.php:42
2497
+ msgid "Order"
2498
+ msgstr "Volgorde"
2499
 
2500
+ # @ fl-builder
2501
+ #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
2502
+ msgid "Descending"
2503
+ msgstr "Aflopend"
2504
 
2505
  # @ fl-builder
2506
+ #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
2507
+ msgid "Ascending"
2508
+ msgstr "Oplopend"
 
2509
 
2510
+ #: includes/loop-settings.php:52
2511
+ msgctxt "How many posts to skip."
2512
+ msgid "Offset"
2513
+ msgstr "Overslaan"
2514
 
2515
+ #: includes/loop-settings.php:55
2516
+ msgid "Skip this many posts that match the specified criteria."
2517
+ msgstr "Sla zoveel berichten over die overeenkomen met de opgegeven criteria."
2518
 
2519
+ # @ fl-builder
2520
+ #: includes/loop-settings.php:62
2521
+ msgid "Filter"
2522
+ msgstr "Filter"
2523
 
2524
+ # @ fl-builder
2525
+ #: includes/loop-settings.php:73
2526
+ #, php-format
2527
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
2528
+ msgstr "Voer een komma gescheiden lijst van %s. Alleen deze %s worden getoond."
2529
 
2530
+ # @ fl-builder
2531
+ #: includes/loop-settings.php:86
2532
+ #, php-format
2533
  msgid ""
2534
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
 
 
 
2535
  msgstr ""
2536
+ "Voer een komma gescheiden lijst van %s. Alleen berichten met deze %s zullen "
2537
+ "worden getoond."
 
 
 
 
 
 
 
2538
 
2539
+ # @ fl-builder
2540
+ #: includes/loop-settings.php:100
2541
+ msgid "Authors"
2542
+ msgstr "Auteurs"
2543
 
2544
+ # @ fl-builder
2545
+ #: includes/loop-settings.php:101
2546
+ msgid ""
2547
+ "Enter a comma separated list of authors usernames. Only posts with these "
2548
+ "authors will be shown."
2549
+ msgstr ""
2550
+ "Voer een komma gescheiden lijst van auteurs gebruikersnamen in. Alleen "
2551
+ "berichten van deze berichten zullen worden getoond."
2552
 
2553
  # @ fl-builder
2554
+ #: includes/module-settings.php:75
2555
+ msgid "Choose whether to show or hide this module at different device sizes."
2556
+ msgstr ""
2557
+ "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
2558
+ "afmetingen."
2559
 
2560
+ # @ fl-builder
2561
+ #: includes/module-settings.php:83
2562
+ msgid "Animation"
2563
+ msgstr "Animatie"
2564
 
2565
+ # @ fl-builder
2566
+ #: includes/module-settings.php:89
2567
+ msgctxt "Animation style."
2568
+ msgid "None"
2569
+ msgstr "Niet"
2570
 
2571
+ # @ fl-builder
2572
+ #: includes/module-settings.php:90
2573
+ msgctxt "Animation style."
2574
+ msgid "Fade In"
2575
+ msgstr "Langzaam Verschijnen"
2576
 
2577
+ # @ fl-builder
2578
+ #: includes/module-settings.php:91
2579
+ msgctxt "Animation style."
2580
+ msgid "Slide Left"
2581
+ msgstr "Schuif Links"
2582
 
2583
+ # @ fl-builder
2584
+ #: includes/module-settings.php:92
2585
+ msgctxt "Animation style."
2586
+ msgid "Slide Right"
2587
+ msgstr "Schuif Rechts"
2588
 
2589
+ # @ fl-builder
2590
+ #: includes/module-settings.php:93
2591
+ msgctxt "Animation style."
2592
+ msgid "Slide Up"
2593
+ msgstr "Schuif Boven"
2594
 
2595
+ # @ fl-builder
2596
+ #: includes/module-settings.php:94
2597
+ msgctxt "Animation style."
2598
+ msgid "Slide Down"
2599
+ msgstr "Schuif Onder"
2600
 
2601
+ # @ fl-builder
2602
+ #: includes/module-settings.php:102
2603
+ #: modules/content-slider/content-slider.php:230
2604
+ #: modules/post-carousel/post-carousel.php:145
2605
+ #: modules/post-slider/post-slider.php:363
2606
+ #: modules/testimonials/testimonials.php:91
2607
+ msgid "Delay"
2608
+ msgstr "Vertraging"
2609
 
2610
+ # @ fl-builder
2611
+ #: includes/module-settings.php:106 includes/row-settings.php:290
2612
+ #: includes/row-settings.php:321 modules/content-slider/content-slider.php:234
2613
+ #: modules/content-slider/content-slider.php:251
2614
+ #: modules/post-carousel/post-carousel.php:148
2615
+ #: modules/post-carousel/post-carousel.php:164
2616
+ #: modules/post-slider/post-slider.php:366
2617
+ #: modules/post-slider/post-slider.php:391 modules/slideshow/slideshow.php:393
2618
+ #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
2619
+ #: modules/testimonials/testimonials.php:95
2620
+ #: modules/testimonials/testimonials.php:112
2621
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2622
+ msgid "seconds"
2623
+ msgstr "seconden"
2624
 
2625
+ # @ fl-builder
2626
+ #: includes/module-settings.php:107
2627
+ msgid "The amount of time in seconds before this animation starts."
2628
+ msgstr "De hoeveelheid tijd in seconden voordat deze animatie begint."
2629
 
2630
+ # @ fl-builder
2631
+ #: includes/module-settings.php:120
2632
+ msgid ""
2633
+ "A unique ID that will be applied to this module's HTML. Must start with a "
2634
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2635
+ msgstr ""
2636
+ "Een unieke ID die zal worden toegepast op deze kolom's HTML. Moet beginnen "
2637
+ "met een letter en alleen streepjes, onderstrepingstekens, letters of "
2638
+ "getallen bevatten. Geen spaties."
2639
 
2640
  # @ fl-builder
2641
+ #: includes/module-settings.php:127 includes/row-settings.php:639
2642
+ msgid "Class"
2643
+ msgstr "Class"
2644
 
2645
+ # @ fl-builder
2646
+ #: includes/module-settings.php:128
2647
+ msgid ""
2648
+ "A class that will be applied to this module's HTML. Must start with a letter "
2649
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2650
+ "classes with spaces."
2651
+ msgstr ""
2652
+ "Een class die zal worden toegepast op deze kolom's HTML. Moet beginnen met "
2653
+ "een letter en alleen streepjes, onderstrepingstekens, letters of getallen "
2654
+ "bevatten. Meerdere klassen scheiden met een spatie."
2655
 
2656
+ #: includes/node-template-settings.php:4
2657
+ #, php-format
2658
+ msgctxt "%s stands for the type of node template being saved."
2659
+ msgid "Save %s Template"
2660
+ msgstr "%s Template Opslaan"
2661
 
2662
+ # @ fl-builder
2663
+ #: includes/node-template-settings.php:14 includes/template-settings.php:14
2664
+ #: includes/user-template-settings.php:15
2665
+ msgctxt "Template name."
2666
+ msgid "Name"
2667
+ msgstr "Naam"
2668
 
2669
+ #: includes/node-template-settings.php:18
2670
+ msgctxt "Whether this is a global template or not."
2671
+ msgid "Global"
2672
+ msgstr "Algemeen"
2673
 
2674
+ #: includes/node-template-settings.php:19
2675
+ msgid ""
2676
+ "Global templates can be added to multiple pages and edited in one place."
2677
+ msgstr ""
2678
+ "Algemene sjablonen kunnen worden toegevoegd aan meerdere pagina's en bewerkt "
2679
+ "op één plaats."
2680
 
2681
  # @ fl-builder
2682
+ #: includes/row-settings.php:6 includes/ui-js-config.php:67
2683
+ #: includes/ui-js-templates.php:12
2684
  msgid "Row Settings"
2685
  msgstr "Rij Instellingen"
2686
 
 
 
 
 
2687
  # @ fl-builder
2688
+ #: includes/row-settings.php:16 modules/button/button.php:197
2689
+ #: modules/content-slider/content-slider.php:484
2690
+ msgid "Width"
2691
+ msgstr "Breed"
 
 
 
 
 
 
 
2692
 
2693
+ # @ fl-builder
2694
+ #: includes/row-settings.php:27
2695
+ msgid ""
2696
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
2697
+ "no wider than the Row Max Width set in the Global Settings."
2698
+ msgstr ""
2699
+ "Volle breedte rijen overspannen de breedte van de pagina van rand tot rand. "
2700
+ "Vaste rijen zijn niet breder zijn dan de Rij Maximale Breedte in de Globale "
2701
+ "Instellingen."
2702
 
2703
+ # @ fl-builder
2704
+ #: includes/row-settings.php:34
2705
+ msgid "Content Width"
2706
+ msgstr "Inhoud Breedte"
2707
 
2708
+ # @ fl-builder
2709
+ #: includes/row-settings.php:40
2710
+ msgid ""
2711
+ "Full width content spans the width of the page from edge to edge. Fixed "
2712
+ "content is no wider than the Row Max Width set in the Global Settings."
2713
+ msgstr ""
2714
+ "Volle breedte inhoud overspant de breedte van de pagina van rand tot rand. "
2715
+ "Vaste inhoud is niet breder dan de Rij Maximale breedte in de Globale "
2716
+ "Instellingen."
2717
 
2718
+ # @ fl-builder
2719
+ #: includes/row-settings.php:48 modules/button/button.php:120
2720
+ #: modules/cta/cta.php:188 modules/heading/heading.php:72
2721
+ #: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2722
+ #: modules/post-carousel/post-carousel.php:392
2723
+ #: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:680
2724
+ msgid "Colors"
2725
+ msgstr "Kleuren"
2726
 
2727
+ # @ fl-builder
2728
+ #: includes/row-settings.php:52 modules/button/button.php:139
2729
+ #: modules/callout/callout.php:534
2730
+ #: modules/content-slider/content-slider.php:529
2731
+ #: modules/content-slider/content-slider.php:651
2732
+ #: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192
2733
+ #: modules/cta/cta.php:289 modules/heading/heading.php:77
2734
+ #: modules/post-carousel/post-carousel.php:396
2735
+ #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:684
2736
+ #: modules/subscribe-form/subscribe-form.php:207
2737
+ msgid "Text Color"
2738
+ msgstr "Tekst kleur"
2739
 
2740
+ # @ fl-builder
2741
+ #: includes/row-settings.php:95
2742
+ msgctxt "Background type."
2743
+ msgid "Video"
2744
+ msgstr "Video"
2745
 
2746
+ # @ fl-builder
2747
+ #: includes/row-settings.php:97
2748
+ msgctxt "Background type."
2749
+ msgid "Slideshow"
2750
+ msgstr "Diavoorstelling"
2751
 
2752
+ # @ fl-builder
2753
+ #: includes/row-settings.php:101
2754
+ msgctxt "Background type."
2755
+ msgid "Parallax"
2756
+ msgstr "Parallax"
2757
 
2758
+ # @ fl-builder
2759
+ #: includes/row-settings.php:227
2760
+ msgid "Background Video"
2761
+ msgstr "Achtergrond Video"
2762
 
2763
+ # @ fl-builder
2764
+ #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
2765
+ #: modules/video/video.php:19 modules/video/video.php:100
2766
+ msgid "Video"
2767
+ msgstr "Video"
2768
 
2769
+ # @ fl-builder
2770
+ #: includes/row-settings.php:232
2771
  msgid ""
2772
+ "An HTML5 video to use as the background of this row. Supported types are "
2773
+ "MP4, WebM and Ogg."
2774
  msgstr ""
2775
+ "Een HTML5 video om te gebruiken als de achtergrond van deze rij. "
2776
+ "Ondersteunde types zijn MP4, WebM en Ogg."
2777
 
2778
+ # @ fl-builder
2779
+ #: includes/row-settings.php:239
2780
+ msgid "Fallback Photo"
2781
+ msgstr "Terugval Afbeelding"
2782
 
2783
+ # @ fl-builder
2784
+ #: includes/row-settings.php:240
2785
+ msgid "A photo that will be displayed if the video fails to load."
 
2786
  msgstr ""
2787
+ "Een afbeelding die wordt weergegeven als de video niet kan worden geladen."
 
2788
 
2789
  # @ fl-builder
2790
+ #: includes/row-settings.php:248
2791
+ msgid "Background Slideshow"
2792
+ msgstr "Achtergrond Diavoorstelling"
 
 
 
 
 
 
 
 
2793
 
2794
+ # @ fl-builder
2795
+ #: includes/row-settings.php:252 modules/gallery/gallery.php:241
2796
+ #: modules/slideshow/slideshow.php:271
2797
+ msgid "Source"
2798
+ msgstr "Bron"
2799
 
2800
+ # @ fl-builder
2801
+ #: includes/row-settings.php:255 modules/gallery/gallery.php:244
2802
+ #: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
2803
+ #: modules/video/video.php:86
2804
+ msgid "Media Library"
2805
+ msgstr "Media Bibliotheek"
2806
 
2807
+ # @ fl-builder
2808
+ #: includes/row-settings.php:258 modules/gallery/gallery.php:247
2809
+ #: modules/slideshow/slideshow.php:277
2810
  msgid ""
2811
+ "Pull images from the WordPress media library or a gallery on your SmugMug "
2812
+ "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
2813
+ "accessed by using the get a link function in your SmugMug gallery."
2814
  msgstr ""
2815
+ "Trek beelden uit de WordPress media bibliotheek of een galerie op je SmugMug "
2816
+ "site door het plaatsen van de RSS-feed URL van SmugMug. De RSS feed URL kan "
2817
+ "worden benaderd met behulp van de \"get a link\" functie in uw SmugMug "
2818
+ "gallery."
2819
 
2820
+ # @ fl-builder
2821
+ #: includes/row-settings.php:273 modules/gallery/gallery.php:259
2822
+ #: modules/slideshow/slideshow.php:289
2823
+ msgid "Photos"
2824
+ msgstr "Afbeeldingen"
2825
 
2826
+ # @ fl-builder
2827
+ #: includes/row-settings.php:280 modules/gallery/gallery.php:263
2828
+ #: modules/slideshow/slideshow.php:293
2829
+ msgid "Feed URL"
2830
+ msgstr "Feed URL"
 
 
2831
 
2832
+ # @ fl-builder
2833
+ #: includes/row-settings.php:287 includes/row-settings.php:352
2834
+ #: modules/slideshow/slideshow.php:390
2835
+ msgid "Speed"
2836
+ msgstr "Snelheid"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2837
 
2838
  # @ fl-builder
2839
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
2840
+ #: modules/post-slider/post-slider.php:370 modules/slideshow/slideshow.php:397
2841
+ #: modules/testimonials/testimonials.php:99
2842
+ msgid "Transition"
2843
+ msgstr "Overgang"
2844
 
2845
  # @ fl-builder
2846
+ #: includes/row-settings.php:300
2847
+ msgctxt "Slideshow transition type."
2848
+ msgid "None"
2849
+ msgstr "Geen"
2850
 
2851
  # @ fl-builder
2852
+ #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
2853
+ #: modules/post-carousel/post-carousel.php:241
2854
+ #: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:373
2855
+ #: modules/slideshow/slideshow.php:401
2856
+ #: modules/testimonials/testimonials.php:103
2857
+ msgid "Fade"
2858
+ msgstr "Vervagen"
2859
 
2860
  # @ fl-builder
2861
+ #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
2862
+ msgid "Ken Burns"
2863
+ msgstr "Ken Burns"
2864
 
2865
  # @ fl-builder
2866
+ #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
2867
+ msgid "Slide Horizontal"
2868
+ msgstr "Schuif Horizontaal"
 
2869
 
2870
  # @ fl-builder
2871
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
2872
+ msgid "Slide Vertical"
2873
+ msgstr "Schuif Vertikaal"
 
2874
 
2875
  # @ fl-builder
2876
+ #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
2877
+ msgid "Blinds"
2878
+ msgstr "Blinds"
2879
 
2880
  # @ fl-builder
2881
+ #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
2882
+ msgid "Bars"
2883
+ msgstr "Balken"
2884
 
2885
  # @ fl-builder
2886
+ #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
2887
+ msgid "Random Bars"
2888
+ msgstr "Willekeurige Balken"
2889
 
2890
  # @ fl-builder
2891
+ #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
2892
+ msgid "Boxes"
2893
+ msgstr "Vakken"
2894
 
2895
  # @ fl-builder
2896
+ #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
2897
+ msgid "Random Boxes"
2898
+ msgstr "Willekeurige Vakken"
2899
 
2900
  # @ fl-builder
2901
+ #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
2902
+ msgid "Boxes Grow"
2903
+ msgstr "Groeiende Vakken"
 
 
 
 
 
2904
 
2905
+ # @ fl-builder
2906
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
2907
+ #: modules/post-carousel/post-carousel.php:161
2908
+ #: modules/post-slider/post-slider.php:388 modules/slideshow/slideshow.php:415
2909
+ #: modules/testimonials/testimonials.php:108
2910
+ msgid "Transition Speed"
2911
+ msgstr "Animatie snelheid"
2912
 
2913
  # @ fl-builder
2914
+ #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
2915
+ msgid "Randomize Photos"
2916
+ msgstr "Willekeurige Afbeeldingen"
2917
 
2918
  # @ fl-builder
2919
+ #: includes/row-settings.php:341
2920
+ msgid "Background Parallax"
2921
+ msgstr "Achtergrond Parallax"
 
2922
 
2923
  # @ fl-builder
2924
+ #: includes/row-settings.php:355
2925
+ msgid "Fast"
2926
+ msgstr "Snel"
 
 
 
 
2927
 
2928
  # @ fl-builder
2929
+ #: includes/row-settings.php:356
2930
+ msgctxt "Speed."
2931
+ msgid "Medium"
2932
+ msgstr "Medium"
2933
 
2934
  # @ fl-builder
2935
+ #: includes/row-settings.php:357
2936
+ msgid "Slow"
2937
+ msgstr "Langzaam"
 
 
 
 
2938
 
2939
  # @ fl-builder
2940
+ #: includes/row-settings.php:619
2941
+ msgid "Choose whether to show or hide this row at different device sizes."
2942
  msgstr ""
2943
  "Kies om deze kolom te tonen of te verbergen op verschillende apparaat "
2944
  "afmetingen."
2945
 
2946
  # @ fl-builder
2947
+ #: includes/row-settings.php:632
2948
+ msgid ""
2949
+ "A unique ID that will be applied to this row's HTML. Must start with a "
2950
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2951
+ msgstr ""
2952
+ "Een unieke ID die zal worden toegepast op deze kolom's HTML. Moet beginnen "
2953
+ "met een letter en alleen streepjes, onderstrepingstekens, letters of "
2954
+ "getallen bevatten. Geen spaties."
2955
 
2956
  # @ fl-builder
2957
+ #: includes/row-settings.php:640
2958
+ msgid ""
2959
+ "A class that will be applied to this row's HTML. Must start with a letter "
2960
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2961
+ "classes with spaces."
2962
+ msgstr ""
2963
+ "Een class die zal worden toegepast op deze kolom's HTML. Moet beginnen met "
2964
+ "een letter en alleen streepjes, onderstrepingstekens, letters of getallen "
2965
+ "bevatten. Meerdere klassen scheiden met een spatie."
2966
 
2967
+ #: includes/service-settings.php:32
2968
+ msgid "Service"
2969
+ msgstr "Service"
 
 
2970
 
2971
  # @ fl-builder
2972
+ #: includes/settings.php:67
2973
+ msgid "Save"
2974
+ msgstr "Opslaan"
2975
+
2976
+ #: includes/settings.php:69
2977
+ msgid "Save As..."
2978
+ msgstr "Opslaan Als..."
2979
 
2980
  # @ fl-builder
2981
+ #: includes/template-selector.php:4
2982
+ msgid "Layout Templates"
2983
+ msgstr "Layout Templates"
 
2984
 
2985
  # @ fl-builder
2986
+ #: includes/template-selector.php:17
2987
+ msgid "Your Templates"
2988
+ msgstr "Jouw Templates"
 
2989
 
2990
  # @ fl-builder
2991
+ #: includes/template-selector.php:53
2992
+ msgid ""
2993
+ "You haven't saved any templates yet! To do so, create a layout and save it "
2994
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
2995
+ msgstr ""
2996
+ "Je hebt nog geen templates opgeslagen! Om dit te doen, maak je een layout en "
2997
+ "sla je het op als een template onder <strong>Gereedschappen → Template "
2998
+ "Opslaan</strong>."
2999
 
3000
  # @ fl-builder
3001
+ #: includes/template-selector.php:58
3002
+ msgctxt "Template name."
3003
+ msgid "Blank"
3004
+ msgstr "Blanco"
 
 
 
3005
 
3006
+ #: includes/template-settings.php:18
3007
+ msgid "Image Filename"
3008
+ msgstr "Afbeelding Bestandsnaam"
 
 
 
 
 
 
 
 
 
 
 
3009
 
3010
+ #: includes/template-settings.php:19
3011
+ msgid ""
3012
+ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
3013
+ "templates/\" directory."
3014
+ msgstr ""
3015
+ "De bestandsnaam van de afbeelding zoals \"thumb.jpg\" dat zich bevind in de "
3016
+ "\"img/templates/\" directory."
3017
 
3018
+ #: includes/ui-js-config.php:21
3019
+ msgid "What would you like to do?"
3020
+ msgstr "Wat wil je doen?"
3021
+
3022
+ #: includes/ui-js-config.php:23
3023
+ msgid "Change Template"
3024
+ msgstr "Verander Template"
3025
+
3026
+ #: includes/ui-js-config.php:24
3027
  msgid ""
3028
+ "Warning! Changing the template will replace your existing layout. Do you "
3029
+ "really want to do this?"
3030
  msgstr ""
3031
+ "Waarschuwing! Het veranderen van het template zal je bestaande layout "
3032
+ "vervangen. Weet je zeker dat je dit wilt doen?"
 
3033
 
3034
+ #: includes/ui-js-config.php:25 includes/ui-js-templates.php:29
3035
+ msgid "Column"
3036
+ msgstr "Kolom"
 
3037
 
3038
+ #: includes/ui-js-config.php:26
 
3039
  msgid ""
3040
+ "Please select either a background layout or content layout before submitting."
 
 
3041
  msgstr ""
3042
+ "Selecteer ofwel een achtergrond layout of inhoud layout alvorens verder te "
3043
+ "gaan."
 
3044
 
3045
+ #: includes/ui-js-config.php:27
3046
+ msgid "Remove Account"
3047
+ msgstr "Account Verwijderen"
 
 
3048
 
3049
+ #: includes/ui-js-config.php:28
 
3050
  msgid ""
3051
+ "Are you sure you want to remove this account? Other modules that are "
3052
+ "connected to it will be affected."
3053
  msgstr ""
3054
+ "Weet je zeker dat je dit account wil verwijderen? Andere modules die "
3055
+ "verbonden zijn zullen ook worden beïnvloed."
 
3056
 
3057
+ #: includes/ui-js-config.php:29
3058
+ msgid "Do you really want to delete this item?"
3059
+ msgstr "Wil je dit item echt verwijderen?"
 
3060
 
3061
+ #: includes/ui-js-config.php:30
 
3062
  msgid ""
3063
+ "Do you really want to delete this module? All content data will be "
3064
+ "permanently deleted."
3065
  msgstr ""
3066
+ "Wil je deze module echt verwijderen? Alle inhoud gegevens zullen definitief "
3067
+ "verwijderd worden."
 
3068
 
3069
+ #: includes/ui-js-config.php:31
3070
+ msgid ""
3071
+ "Do you really want to delete this row? All content data will be permanently "
3072
+ "deleted."
3073
+ msgstr ""
3074
+ "Wil je deze rij echt verwijderen? Alle inhoud gegevens zullen definitief "
3075
+ "verwijderd worden."
 
3076
 
3077
+ #: includes/ui-js-config.php:33
3078
+ msgid ""
3079
+ "WARNING! You are about to delete a global template that may be linked to "
3080
+ "other pages. Do you really want to delete this template and unlink it?"
3081
+ msgstr ""
3082
+ "WAARSCHUWING! Je bent bezig met het verwijderen van een algemene template "
3083
+ "dat kan zijn gekoppeld aan andere pagina's. Wil je echt dit template "
3084
+ "verwijderen en het ontkoppelen?"
 
 
 
 
3085
 
3086
+ #: includes/ui-js-config.php:34
3087
+ msgid "Discard Changes"
3088
+ msgstr "Wijzigingen Negeren"
 
 
3089
 
3090
+ #: includes/ui-js-config.php:35
3091
+ msgid ""
3092
+ "Do you really want to discard these changes? All of your changes that are "
3093
+ "not published will be lost."
3094
+ msgstr ""
3095
+ "Weet je zeker dat je deze wijzigingen wilt negeren? All je wijzigingen "
3096
+ "worden niet gepubliceerd en gaan verloren."
3097
 
3098
+ #: includes/ui-js-config.php:37
3099
+ msgid "Save Draft"
3100
+ msgstr "Concept Opslaan"
 
 
3101
 
3102
+ #: includes/ui-js-config.php:38 includes/ui-js-templates.php:14
3103
+ #: includes/ui-js-templates.php:54
3104
+ msgid "Duplicate"
3105
+ msgstr "Kopiëren"
3106
 
3107
+ #: includes/ui-js-config.php:39
3108
+ msgid "Duplicate This Page"
3109
+ msgstr "Kopieer deze pagina"
 
 
3110
 
3111
+ #: includes/ui-js-config.php:40
3112
+ msgid "Duplicate This Template"
3113
+ msgstr "Kopieer Dit Template"
3114
+
3115
+ #: includes/ui-js-config.php:41
3116
+ msgid "Edit Global Settings"
3117
+ msgstr "Wijzig Globale Instellingen"
3118
+
3119
+ #: includes/ui-js-config.php:42
3120
+ msgid "Drop a row layout or module to get started!"
3121
+ msgstr "Drop een rij layout of module om aan de slag te gaan!"
3122
+
3123
+ #: includes/ui-js-config.php:43
3124
  msgid ""
3125
+ "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
3126
+ "not functioning as expected the cause is most likely this error. Please help "
3127
+ "us by disabling all plugins and testing Beaver Builder while reactivating "
3128
+ "each to determine if the issue is related to a third party plugin."
3129
  msgstr ""
3130
+ "Beaver Builder ontving de volgende JavaScript-fout. Als Beaver Builder niet "
3131
+ "functioneert zoals verwacht is de oorzaak het meest waarschijnlijk deze "
3132
+ "fout. Je kunt ons helpen door het alle plugins uit te schakelen, een voor "
3133
+ "een weer in te schakelen en tussentijds Beaver Builder te testen om te "
3134
+ "bepalen of het probleem is gerelateerd aan een derde partij plugin."
3135
 
3136
+ #: includes/ui-js-config.php:44
3137
+ msgid "Full Size"
3138
+ msgstr "Volledige Grootte"
 
3139
 
3140
+ #: includes/ui-js-config.php:45
3141
+ msgid "Get Help"
3142
+ msgstr "Hulp zoeken..."
 
 
3143
 
3144
  # @ fl-builder
3145
+ #: includes/ui-js-config.php:46
3146
+ msgid "\"{message}\" on line {line} of {file}."
3147
+ msgstr "\"{message}\" op rij {line} van {file}."
3148
 
3149
+ #: includes/ui-js-config.php:47
3150
+ msgid "Insert"
3151
+ msgstr "Invoegen"
 
 
3152
 
3153
+ #: includes/ui-js-config.php:48
3154
+ msgid "Large"
3155
+ msgstr "Groot"
 
 
 
3156
 
3157
+ #: includes/ui-js-config.php:49
3158
+ msgid "Manage Templates"
3159
+ msgstr "Templates Beheren"
 
 
 
 
 
 
 
 
 
3160
 
3161
+ #: includes/ui-js-config.php:50
3162
+ msgid "Medium"
3163
+ msgstr "Medium"
 
 
3164
 
3165
+ #: includes/ui-js-config.php:51
3166
+ msgid "Module"
3167
+ msgstr "Module"
 
 
3168
 
3169
+ #: includes/ui-js-config.php:52
3170
+ msgid "Module Template Saved!"
3171
+ msgstr "Module Template Opgeslagen!"
 
 
3172
 
3173
+ #: includes/ui-js-config.php:53 includes/ui-js-templates.php:10
3174
+ #: includes/ui-js-templates.php:50
3175
+ msgid "Move"
3176
+ msgstr "Verplaats"
 
 
3177
 
3178
+ #: includes/ui-js-config.php:54
3179
+ msgid "New Column"
3180
+ msgstr "Nieuwe Kolom"
 
 
3181
 
3182
+ #: includes/ui-js-config.php:55
3183
+ msgid "New Row"
3184
+ msgstr "Nieuwe Rij"
 
 
 
 
 
3185
 
3186
+ #: includes/ui-js-config.php:56
3187
+ msgid "No results found."
3188
+ msgstr "Geen resultaten gevonden."
 
3189
 
3190
+ #: includes/ui-js-config.php:57 includes/ui-panel-node-templates.php:11
3191
+ msgid "No saved rows found."
3192
+ msgstr "Geen opgeslagen rijen gevonden."
 
3193
 
3194
+ #: includes/ui-js-config.php:58 includes/ui-panel-node-templates.php:42
3195
+ msgid "No saved modules found."
3196
+ msgstr "Geen opgeslagen modules gevonden."
 
3197
 
3198
+ #: includes/ui-js-config.php:59 includes/ui-js-templates.php:80
3199
+ msgid "OK"
3200
+ msgstr "OK"
 
3201
 
3202
  # @ fl-builder
3203
+ #: includes/ui-js-config.php:60 modules/photo/photo.php:470
3204
+ msgid "Photo Page"
3205
+ msgstr "Afbeelding Pagina"
3206
 
3207
+ #: includes/ui-js-config.php:61
3208
+ msgid "Photo Selected"
3209
+ msgstr "Afbeelding Geselecteerd"
 
3210
 
3211
+ #: includes/ui-js-config.php:62
3212
+ msgid "Photos Selected"
3213
+ msgstr "Afbeeldingen Geselecteerd"
 
3214
 
3215
+ #: includes/ui-js-config.php:63 modules/subscribe-form/includes/frontend.php:15
3216
+ msgid "Please Wait..."
3217
+ msgstr "Even geduld a.u.b..."
 
3218
 
3219
+ #: includes/ui-js-config.php:64
3220
+ msgid "Publish Changes"
3221
+ msgstr "Wijzigingen Publiceren"
 
3222
 
3223
+ #: includes/ui-js-config.php:66 includes/ui-js-templates.php:5
3224
+ msgid "Row"
3225
+ msgstr "Rij"
 
 
 
 
3226
 
3227
+ #: includes/ui-js-config.php:68
3228
+ msgid "Row Template Saved!"
3229
+ msgstr "Rij Template Opgeslagen!"
 
3230
 
3231
+ #: includes/ui-js-config.php:69
3232
+ msgid "Save Core Template"
3233
+ msgstr "Core Template Opslaan"
 
3234
 
3235
  # @ fl-builder
3236
+ #: includes/ui-js-config.php:70 includes/user-template-settings.php:4
3237
+ msgid "Save Template"
3238
+ msgstr "Template Opslaan"
3239
 
3240
+ #: includes/ui-js-config.php:72
3241
+ msgid "Select Photos"
3242
+ msgstr "Selecteer Afbeeldingen"
 
 
3243
 
3244
+ #: includes/ui-js-config.php:74
3245
+ msgid "Please select an account before saving."
3246
+ msgstr "Selecteer een account alvorens op te slaan."
 
3247
 
3248
+ #: includes/ui-js-config.php:75
3249
+ msgid "Please connect an account before saving."
3250
+ msgstr "Activeer eerst een account alvorens op te slaan."
3251
+
3252
+ #: includes/ui-js-config.php:76
3253
+ msgid "Please select a list before saving."
3254
+ msgstr "Selecteer een lijst alvorens op te slaan."
3255
+
3256
+ #: includes/ui-js-config.php:77
3257
+ msgid "Take a Tour"
3258
+ msgstr "Volg een Rondleiding"
3259
+
3260
+ #: includes/ui-js-config.php:78
3261
+ msgid "Append New Layout"
3262
+ msgstr "Nieuwe Layout toevoegen"
3263
+
3264
+ #: includes/ui-js-config.php:79
3265
+ msgid "Replace Existing Layout"
3266
+ msgstr "Vervang Bestaande Layout"
3267
+
3268
+ #: includes/ui-js-config.php:80
3269
+ msgid "Template Saved!"
3270
+ msgstr "Template Opgeslagen!"
3271
+
3272
+ #: includes/ui-js-config.php:81 modules/post-slider/post-slider.php:464
3273
+ msgid "Thumbnail"
3274
+ msgstr "Miniatuur"
3275
+
3276
+ #: includes/ui-js-config.php:82
3277
+ msgid "Next"
3278
+ msgstr "Volgende"
3279
+
3280
+ #: includes/ui-js-config.php:83
3281
+ msgid "Get Started"
3282
+ msgstr "Starten"
3283
+
3284
+ #: includes/ui-js-config.php:84
3285
+ msgid "Choose a Template"
3286
+ msgstr "Kies een Template"
3287
+
3288
+ #: includes/ui-js-config.php:85
3289
+ msgid ""
3290
+ "Get started by choosing a layout template to customize, or build a page from "
3291
+ "scratch by selecting the blank layout template."
3292
  msgstr ""
3293
+ "Ga aan de slag door een layout template te kiezen om aan te passen, of bouw "
3294
+ "een pagina uit het niets door de lege layout template te selecteren."
3295
+
3296
+ #: includes/ui-js-config.php:86
3297
+ msgid "Add Rows"
3298
+ msgstr "Rijen Toevoegen"
3299
+
3300
+ #: includes/ui-js-config.php:87
3301
+ msgid ""
3302
+ "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
3303
+ "and dropping row layouts onto the page."
3304
+ msgstr ""
3305
+ "Voeg rijen met meerder kolommen toe, pas afstand aan, voeg achtergronden toe "
3306
+ "en meer door rij-layouts te slepen naar de pagina."
3307
+
3308
+ #: includes/ui-js-config.php:89
3309
+ msgid ""
3310
+ "Add new content by dragging and dropping modules or widgets into your row "
3311
+ "layouts or to create a new row layout."
3312
+ msgstr ""
3313
+ "Voeg nieuwe inhoud toe door modules of widgets in je bestaande rij-layouts "
3314
+ "te slepen, of door een nieuwe rij-layout te maken."
3315
+
3316
+ #: includes/ui-js-config.php:90
3317
+ msgid "Edit Content"
3318
+ msgstr "Inhoud Bewerken"
3319
+
3320
+ #: includes/ui-js-config.php:91
3321
+ msgid ""
3322
+ "Move your mouse over rows, columns or modules to edit and interact with them."
3323
+ msgstr ""
3324
+ "Verplaats je muis over de rijen, kolommen of modules om ze te bewerken en in "
3325
+ "te stellen."
3326
+
3327
+ #: includes/ui-js-config.php:92
3328
+ msgid ""
3329
+ "Use the action buttons to perform actions such as moving, editing, "
3330
+ "duplicating or deleting rows, columns and modules."
3331
+ msgstr ""
3332
+ "Gebruik de actie buttons om rijen, kolommen of modules te verplaatsen, "
3333
+ "bewerken, kopiëren of verwijderen."
3334
+
3335
+ #: includes/ui-js-config.php:93
3336
+ msgid "Add More Content"
3337
+ msgstr "Meer Inhoud Toevoegen"
3338
+
3339
+ #: includes/ui-js-config.php:94
3340
+ msgid ""
3341
+ "Use the Add Content button to open the content panel and add new row "
3342
+ "layouts, modules or widgets."
3343
+ msgstr ""
3344
+ "Gebruik de knop Inhoud Toevoegen om het inhoud paneel te openen en voeg "
3345
+ "nieuwe rij-layouts, modules of widgets toe."
3346
+
3347
+ #: includes/ui-js-config.php:95
3348
+ msgid "Change Templates"
3349
+ msgstr "Templates Wijzigen"
3350
+
3351
+ #: includes/ui-js-config.php:96
3352
+ msgid ""
3353
+ "Use the Templates button to pick a new template or append one to your "
3354
+ "layout. Appending will insert a new template at the end of your existing "
3355
+ "page content."
3356
+ msgstr ""
3357
+ "Gebruik de Templates button om een nieuwe template te selecteren of voeg een "
3358
+ "template toe aan je eigen layout. Wanneer je toevoegt zal de nieuwe template "
3359
+ "achter je bestaande inhoud geplaatst worden."
3360
+
3361
+ #: includes/ui-js-config.php:97
3362
+ msgid "Helpful Tools"
3363
+ msgstr "Handige Tools"
3364
+
3365
+ #: includes/ui-js-config.php:98
3366
+ msgid ""
3367
+ "The Tools button lets you duplicate a page, save a template or edit the "
3368
+ "global settings."
3369
+ msgstr ""
3370
+ "De Gereedschappen knop stelt je in staat een pagina te kopiëren, een "
3371
+ "template op te slaan of de globale instellingen te bewerken."
3372
+
3373
+ #: includes/ui-js-config.php:99
3374
+ msgid "Publish Your Changes"
3375
+ msgstr "Wijzigingen Publiceren"
3376
+
3377
+ #: includes/ui-js-config.php:100
3378
+ msgid ""
3379
+ "Once you're finished, click the Done button to publish your changes, save a "
3380
+ "draft or revert back to the last published state."
3381
+ msgstr ""
3382
+ "Zodra je klaar bent, klikt je op de knop Klaar om je wijzigingen te "
3383
+ "publiceren, een concept op te slaan of terug te keren naar de laatst "
3384
+ "gepubliceerde staat."
3385
+
3386
+ #: includes/ui-js-config.php:101
3387
+ msgid "Let's Get Building!"
3388
+ msgstr "Laten We Bouwen!"
3389
 
3390
+ #: includes/ui-js-config.php:102
 
3391
  msgid ""
3392
+ "Now that you know the basics, you're ready to start building! If at any time "
3393
+ "you need help, click the help icon in the upper right corner to access the "
3394
+ "help menu. Happy building!"
3395
  msgstr ""
3396
+ "Nu dat je de basis kent, ben je klaar om te gaan bouwen! Als je op enig "
3397
+ "moment hulp nodig hebt, klik dan op het Help-pictogram in de "
3398
+ "rechterbovenhoek om het helpmenu te openen. Veel plezier met bouwen!"
3399
 
3400
+ #: includes/ui-js-config.php:103
 
3401
  msgid ""
3402
+ "The settings you are currently editing will not be saved if you navigate "
3403
+ "away from this page."
 
3404
  msgstr ""
3405
+ "De instellingen die je momenteel bewerkt worden niet opgeslagen als je van "
3406
+ "deze pagina weg navigeert."
 
3407
 
3408
+ #: includes/ui-js-config.php:104
3409
+ msgid "View the Knowledge Base"
3410
+ msgstr "Bekijk Kennisbank"
3411
 
3412
+ #: includes/ui-js-config.php:105
3413
+ msgid "Visit the Forums"
3414
+ msgstr "Naar het forum"
 
3415
 
3416
+ #: includes/ui-js-config.php:106
3417
+ msgid "Watch the Video"
3418
+ msgstr "Bekijk de Video"
 
3419
 
3420
+ #: includes/ui-js-templates.php:5 includes/ui-js-templates.php:29
3421
+ #: includes/ui-js-templates.php:45
3422
+ msgid "Global"
3423
+ msgstr "Algemeen"
3424
 
3425
+ #: includes/ui-js-templates.php:7 includes/ui-js-templates.php:47
3426
+ msgid "Locked"
3427
+ msgstr "Vergrendeld"
 
 
 
 
 
 
3428
 
3429
+ #: includes/ui-js-templates.php:52
3430
+ msgid "Settings"
3431
+ msgstr "Instellingen"
 
 
3432
 
3433
+ #: includes/ui-js-templates.php:87
3434
+ msgid ""
3435
+ "Welcome! It looks like this might be your first time using the builder. "
3436
+ "Would you like to take a tour?"
3437
+ msgstr ""
3438
+ "Welkom! Het lijkt erop dat dit zou de eerste keer is dat je gaat bouwen met "
3439
+ "de builder. Wil je misschien een rondleiding?"
3440
 
3441
+ #: includes/ui-js-templates.php:88
3442
+ msgid "No Thanks"
3443
+ msgstr "Nee, bedankt"
 
 
3444
 
3445
+ #: includes/ui-js-templates.php:89
3446
+ msgid "Yes Please!"
3447
+ msgstr "Ja Graag!"
 
3448
 
3449
+ #: includes/ui-js-templates.php:96
3450
+ msgid "Getting Started Video"
3451
+ msgstr "Aan de slag Video"
 
3452
 
3453
+ #: includes/ui-panel-node-templates.php:6
3454
+ msgid "Saved Rows"
3455
+ msgstr "Opgeslagen Rijen"
 
3456
 
3457
+ #: includes/ui-panel-node-templates.php:37
3458
+ msgid "Saved Modules"
3459
+ msgstr "Opgeslagen Modules"
 
3460
 
3461
  # @ fl-builder
3462
+ #: includes/ui-panel.php:11
3463
  msgid "Row Layouts"
3464
  msgstr "Rij Layouts"
3465
 
3466
  # @ fl-builder
3467
+ #: includes/ui-panel.php:15
3468
  msgid "1 Column"
3469
  msgstr "1 Kolom"
3470
 
3471
  # @ fl-builder
3472
+ #: includes/ui-panel.php:16
3473
  msgid "2 Columns"
3474
  msgstr "2 Kolommen"
3475
 
3476
  # @ fl-builder
3477
+ #: includes/ui-panel.php:17
3478
  msgid "3 Columns"
3479
  msgstr "3 Kolommen"
3480
 
3481
  # @ fl-builder
3482
+ #: includes/ui-panel.php:18
3483
  msgid "4 Columns"
3484
  msgstr "4 Kolommen"
3485
 
3486
  # @ fl-builder
3487
+ #: includes/ui-panel.php:19
3488
  msgid "5 Columns"
3489
  msgstr "5 Kolommen"
3490
 
3491
  # @ fl-builder
3492
+ #: includes/ui-panel.php:20
3493
  msgid "6 Columns"
3494
  msgstr "6 Kolommen"
3495
 
3496
  # @ fl-builder
3497
+ #: includes/ui-panel.php:21
3498
  msgid "Left Sidebar"
3499
  msgstr "Linker Zijbalk"
3500
 
3501
  # @ fl-builder
3502
+ #: includes/ui-panel.php:22
3503
  msgid "Right Sidebar"
3504
  msgstr "Rechter Zijbalk"
3505
 
3506
  # @ fl-builder
3507
+ #: includes/ui-panel.php:23
3508
  msgid "Left &amp; Right Sidebar"
3509
  msgstr "Linker &amp; Rechter Zijbalk"
3510
 
3525
  msgid "Subscribe Now"
3526
  msgstr "Nu Abonneren"
3527
 
 
3528
  #: includes/updater/includes/form.php:5
3529
  msgid ""
3530
+ "UPDATES UNAVAILABLE! Please subscribe or enter your license key below to "
3531
  "enable automatic updates."
3532
  msgstr ""
3533
+ "UPDATES NIET MOGELIJK! Gelieve te abonneren of voer je licentiesleutel in om "
3534
+ "automatische updates in te schakelen."
3535
 
3536
  # @ fl-builder
3537
  #: includes/updater/includes/form.php:11
3553
  msgid "Email address saved!"
3554
  msgstr "E-mailadres opgeslagen!"
3555
 
 
3556
  #: includes/updater/includes/form.php:27
3557
  #, php-format
3558
+ msgid "Enter your <a%s>license key</a> to enable remote updates and support."
3559
  msgstr ""
3560
+ "Geef je <a%s>Licentiesleutel</a> om externe updates en support in te "
3561
+ "schakelen."
3562
 
3563
  #: includes/updater/includes/form.php:39
3564
  msgid "Save Subscription Settings"
3565
+ msgstr "Bewaar Abonnementsinstellingen"
3566
 
3567
  # @ fl-builder
3568
  #: includes/user-template-settings.php:8
3570
  "Save the current layout as a template that can be reused under "
3571
  "<strong>Templates &rarr; Your Templates</strong>."
3572
  msgstr ""
3573
+ "Sla de huidige layout als een template op die onder <strong>Templates → Jouw "
3574
+ "Templates</strong> kan worden hergebruikt."
 
 
 
 
 
 
3575
 
3576
  # @ fl-builder
3577
+ #: modules/accordion/accordion.php:14 modules/menu/menu.php:95
3578
  msgid "Accordion"
3579
  msgstr "Accordion"
3580
 
3637
  "Choosing yes will keep only one item open at a time. Choosing no will allow "
3638
  "multiple items to be open at the same time."
3639
  msgstr ""
3640
+ "Kies Ja om slechts één item gelijktijdig te tonen. Kies Nee om toe te staan "
3641
  "dat meerdere items gelijktijdig open staan."
3642
 
3643
  # @ fl-builder
3656
  #: modules/post-carousel/post-carousel.php:363
3657
  #: modules/post-carousel/post-carousel.php:435
3658
  #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
3659
+ #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:548
3660
+ #: modules/post-slider/post-slider.php:552
3661
+ #: modules/post-slider/post-slider.php:759 modules/tabs/tabs.php:89
3662
  msgid "Content"
3663
  msgstr "Inhoud"
3664
 
3689
  msgid "Icon"
3690
  msgstr "Icoon"
3691
 
 
3692
  #: modules/button/button.php:80 modules/cta/cta.php:236
3693
  #: modules/subscribe-form/subscribe-form.php:178
3694
  msgid "Icon Position"
3695
+ msgstr "Icoon Positie"
3696
 
 
3697
  #: modules/button/button.php:83 modules/callout/callout.php:508
3698
  #: modules/content-slider/content-slider.php:629 modules/cta/cta.php:239
3699
  #: modules/subscribe-form/subscribe-form.php:181
3700
  msgid "Before Text"
3701
+ msgstr "Vóór tekst"
3702
 
 
3703
  #: modules/button/button.php:84 modules/callout/callout.php:509
3704
  #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:240
3705
  #: modules/subscribe-form/subscribe-form.php:182
3857
  #: modules/content-slider/content-slider.php:414
3858
  #: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75
3859
  #: modules/heading/heading.php:14 modules/heading/heading.php:33
3860
+ #: modules/post-slider/post-slider.php:582
3861
  #: modules/testimonials/testimonials.php:56
3862
  #: modules/testimonials/testimonials.php:61
3863
  msgid "Heading"
3882
  # @ fl-builder
3883
  #: modules/callout/callout.php:268
3884
  #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3885
+ #: modules/post-slider/post-slider.php:586
3886
  msgid "Heading Tag"
3887
  msgstr "Kopregel Tag"
3888
 
3890
  #: modules/callout/callout.php:281
3891
  #: modules/content-slider/content-slider.php:446
3892
  #: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
3893
+ #: modules/post-slider/post-slider.php:599
3894
+ #: modules/post-slider/post-slider.php:613
3895
  #: modules/testimonials/testimonials.php:69
3896
  msgid "Heading Size"
3897
  msgstr "Kopregel Grootte"
3901
  msgid "Heading Custom Size"
3902
  msgstr "Kopregel Aangepaste Grootte"
3903
 
 
 
 
 
 
 
3904
  # @ fl-builder
3905
  #: modules/callout/callout.php:313
3906
  msgid "Image Type"
3914
 
3915
  # @ fl-builder
3916
  #: modules/callout/callout.php:341 modules/photo/photo.php:417
3917
+ #: modules/post-slider/post-slider.php:482 modules/slideshow/slideshow.php:320
3918
  msgid "Crop"
3919
  msgstr "Pas aan"
3920
 
3921
+ #: modules/callout/callout.php:344 modules/photo/photo.php:420
3922
+ msgctxt "Photo Crop."
 
3923
  msgid "None"
3924
+ msgstr "Niet"
3925
 
3926
  # @ fl-builder
3927
  #: modules/callout/callout.php:345 modules/photo/photo.php:421
3928
+ #: modules/post-slider/post-slider.php:485
3929
  msgid "Landscape"
3930
  msgstr "Landschap"
3931
 
3932
  # @ fl-builder
3933
  #: modules/callout/callout.php:346 modules/photo/photo.php:422
3934
+ #: modules/post-slider/post-slider.php:486
3935
  msgid "Panorama"
3936
  msgstr "Panorama"
3937
 
3938
  # @ fl-builder
3939
  #: modules/callout/callout.php:347 modules/photo/photo.php:423
3940
+ #: modules/post-slider/post-slider.php:487
3941
  msgid "Portrait"
3942
  msgstr "Portret"
3943
 
3944
  # @ fl-builder
3945
  #: modules/callout/callout.php:348 modules/photo/photo.php:424
3946
+ #: modules/post-slider/post-slider.php:488
3947
  msgid "Square"
3948
  msgstr "Vierkant"
3949
 
3950
  # @ fl-builder
3951
  #: modules/callout/callout.php:349 modules/photo/photo.php:425
3952
+ #: modules/post-slider/post-slider.php:489
3953
  msgid "Circle"
3954
  msgstr "Cirkel"
3955
 
4002
  # @ fl-builder
4003
  #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
4004
  #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
4005
+ #: modules/post-grid/post-grid.php:139 modules/post-slider/post-slider.php:477
4006
  msgid "Size"
4007
  msgstr "Grootte"
4008
 
4037
 
4038
  # @ fl-builder
4039
  #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
4040
+ #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:571
4041
  msgid "Read More"
4042
  msgstr "Lees verder"
4043
 
4048
  msgid "Button Icon"
4049
  msgstr "Button Icoon"
4050
 
 
4051
  #: modules/callout/callout.php:505
4052
  #: modules/content-slider/content-slider.php:626
4053
  msgid "Button Icon Position"
4054
+ msgstr "Button Icoon Positie"
4055
 
4056
  # @ fl-builder
4057
  #: modules/callout/callout.php:515
4131
  #: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
4132
  #: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
4133
  #: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
4134
+ #: modules/post-slider/post-slider.php:443
4135
+ #: modules/post-slider/post-slider.php:502
4136
+ #: modules/post-slider/post-slider.php:511
4137
+ #: modules/post-slider/post-slider.php:541
4138
+ #: modules/post-slider/post-slider.php:555
4139
+ #: modules/post-slider/post-slider.php:564
4140
  #: modules/subscribe-form/subscribe-form.php:111
4141
  msgid "Show"
4142
  msgstr "Toon"
4154
  #: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
4155
  #: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
4156
  #: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
4157
+ #: modules/post-slider/post-slider.php:444
4158
+ #: modules/post-slider/post-slider.php:503
4159
+ #: modules/post-slider/post-slider.php:512
4160
+ #: modules/post-slider/post-slider.php:542
4161
+ #: modules/post-slider/post-slider.php:556
4162
+ #: modules/post-slider/post-slider.php:565
4163
  #: modules/subscribe-form/subscribe-form.php:112
4164
  msgid "Hide"
4165
  msgstr "Verberg"
4262
 
4263
  # @ fl-builder
4264
  #: modules/content-slider/content-slider.php:198 modules/map/map.php:41
4265
+ #: modules/post-slider/post-slider.php:345 modules/separator/separator.php:58
4266
  #: modules/slideshow/slideshow.php:302
4267
  msgid "Height"
4268
  msgstr "Hoogte"
4279
  # @ fl-builder
4280
  #: modules/content-slider/content-slider.php:207
4281
  #: modules/post-carousel/post-carousel.php:136
4282
+ #: modules/post-slider/post-slider.php:354 modules/slideshow/slideshow.php:381
4283
  #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
4284
  msgid "Auto Play"
4285
  msgstr "Autostart"
4299
  # @ fl-builder
4300
  #: modules/content-slider/content-slider.php:255
4301
  #: modules/post-carousel/post-carousel.php:188
4302
+ #: modules/post-slider/post-slider.php:415
4303
  #: modules/testimonials/testimonials.php:121
4304
  msgid "Show Arrows"
4305
  msgstr "Toon Pijlen:"
4307
  # @ fl-builder
4308
  #: modules/content-slider/content-slider.php:264
4309
  #: modules/post-carousel/post-carousel.php:179
4310
+ #: modules/post-slider/post-slider.php:406
4311
  #: modules/testimonials/testimonials.php:151
4312
  msgid "Show Dots"
4313
  msgstr "Toon Stippen"
4330
 
4331
  # @ fl-builder
4332
  #: modules/content-slider/content-slider.php:297
4333
+ #: modules/post-slider/post-slider.php:374
4334
  msgid "Slide"
4335
  msgstr "Dia"
4336
 
4432
  # @ fl-builder
4433
  #: modules/content-slider/content-slider.php:508
4434
  msgid "Left Margin"
4435
+ msgstr "Linker Marge"
4436
 
4437
  # @ fl-builder
4438
  #: modules/content-slider/content-slider.php:516
4439
  msgid "Right Margin"
4440
+ msgstr "Rechter Marge"
4441
 
4442
  # @ fl-builder
4443
  #: modules/content-slider/content-slider.php:525
4444
  msgid "Text Colors"
4445
+ msgstr "Tekst Kleuren"
4446
 
4447
  # @ fl-builder
4448
  #: modules/content-slider/content-slider.php:535
4449
  msgid "Text Shadow"
4450
+ msgstr "Tekst Schaduw"
4451
 
4452
  # @ fl-builder
4453
  #: modules/content-slider/content-slider.php:544
4454
  #: modules/content-slider/content-slider.php:770
4455
  #: modules/post-carousel/post-carousel.php:411
4456
+ #: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:721
4457
  msgid "Text Background Color"
4458
+ msgstr "Tekst Achtergrond Kleur"
4459
 
4460
  # @ fl-builder
4461
  #: modules/content-slider/content-slider.php:545
4462
  #: modules/post-carousel/post-carousel.php:413
4463
+ #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:722
4464
  msgid ""
4465
  "The color applies to the overlay behind text over the background selections."
4466
  msgstr ""
4470
  # @ fl-builder
4471
  #: modules/content-slider/content-slider.php:550
4472
  #: modules/post-carousel/post-carousel.php:423
4473
+ #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:728
4474
  msgid "Text Background Opacity"
4475
+ msgstr "Tekst Achtergrond Dichtheid"
4476
 
4477
  # @ fl-builder
4478
  #: modules/content-slider/content-slider.php:558
4479
+ #: modules/post-slider/post-slider.php:745
4480
  msgid "Text Background Height"
4481
+ msgstr "Tekst Achtergrond Hoogte"
4482
 
4483
  # @ fl-builder
4484
  #: modules/content-slider/content-slider.php:560
4485
+ #: modules/post-slider/post-slider.php:747
4486
  msgid ""
4487
  "Auto will allow the overlay to fit however long the text content is. 100% "
4488
  "will fit the overlay to the top and bottom of the slide."
4493
 
4494
  # @ fl-builder
4495
  #: modules/content-slider/content-slider.php:562
4496
+ #: modules/post-slider/post-slider.php:749
4497
  msgctxt "Background height."
4498
  msgid "Auto"
4499
  msgstr "Auto"
4505
  "below, this link will also be used for the text or button."
4506
  msgstr ""
4507
  "De link heeft betrekking op de gehele dia. Indien je kiest voor een "
4508
+ "hieronderstaand call-to-action type, zal de link worden gebruikt voor de "
4509
  "tekst of button."
4510
 
4511
  # @ fl-builder
4522
  # @ fl-builder
4523
  #: modules/content-slider/content-slider.php:735
4524
  msgid "Mobile Photo"
4525
+ msgstr "Mobiele Afbeelding"
4526
 
4527
  # @ fl-builder
4528
  #: modules/content-slider/content-slider.php:741
4536
  # @ fl-builder
4537
  #: modules/content-slider/content-slider.php:743
4538
  msgid "Use Main Photo"
4539
+ msgstr "Selecteer Belangrijkste Afbeelding"
4540
 
4541
  # @ fl-builder
4542
  #: modules/content-slider/content-slider.php:744
4543
  msgid "Choose Another Photo"
4544
+ msgstr "Selecteer Een Andere Afbeelding"
4545
 
4546
  # @ fl-builder
4547
  #: modules/content-slider/content-slider.php:745
4548
  msgid "No Photo"
4549
+ msgstr "Geen Afbeelding"
4550
 
4551
  # @ fl-builder
4552
  #: modules/content-slider/content-slider.php:760
4553
  msgid "Mobile Text Colors"
4554
+ msgstr "Mobiele Tekst Kleuren"
4555
 
4556
  # @ fl-builder
4557
  #: modules/cta/cta.php:15
4570
 
4571
  # @ fl-builder
4572
  #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
4573
+ #: modules/menu/menu.php:90 modules/post-carousel/post-carousel.php:117
4574
  #: modules/post-carousel/post-carousel.php:206
4575
+ #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:433
4576
  #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
4577
  #: modules/testimonials/testimonials.php:37
4578
  #: modules/woocommerce/woocommerce.php:57
4647
  # @ fl-builder
4648
  #: modules/gallery/gallery.php:277
4649
  msgid "Photo Spacing"
4650
+ msgstr "Afstand tussen Afbeeldingen"
4651
 
4652
  # @ fl-builder
4653
  #: modules/gallery/gallery.php:285
4654
  msgid "Show Captions"
4655
+ msgstr "Toon Bijschriften"
4656
 
4657
  # @ fl-builder
4658
  #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
4662
  # @ fl-builder
4663
  #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
4664
  msgid "On Hover"
4665
+ msgstr "Tijdens Hover"
4666
 
4667
  # @ fl-builder
4668
  #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
4669
  msgid "Below Photo"
4670
+ msgstr "Onder Afbeelding"
4671
 
4672
  # @ fl-builder
4673
  #: modules/gallery/gallery.php:292
4683
  # @ fl-builder
4684
  #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4685
  msgid "Click Action"
4686
+ msgstr "Muisklik Actie"
4687
 
4688
  # @ fl-builder
4689
  #: modules/gallery/gallery.php:299
4699
  # @ fl-builder
4700
  #: modules/gallery/gallery.php:301
4701
  msgid "Photo Link"
4702
+ msgstr "Afbeelding Link"
4703
 
4704
  # @ fl-builder
4705
  #: modules/heading/heading.php:15
4709
  # @ fl-builder
4710
  #: modules/heading/heading.php:101
4711
  msgid "HTML Tag"
4712
+ msgstr "HTML Tag"
4713
 
4714
  # @ fl-builder
4715
  #: modules/heading/heading.php:128 modules/heading/heading.php:188
4716
  msgid "Custom Font Size"
4717
+ msgstr "Aangepaste Tekengrootte"
4718
 
4719
  # @ fl-builder
4720
  #: modules/heading/heading.php:137
4721
  msgid "Mobile Structure"
4722
+ msgstr "Mobiele Structuur"
4723
 
4724
  # @ fl-builder
4725
  #: modules/heading/heading.php:158
4726
  msgid "Custom Alignment"
4727
+ msgstr "Aangepaste Uitlijning"
4728
 
4729
  # @ fl-builder
4730
  #: modules/html/html.php:14
4739
  # @ fl-builder
4740
  #: modules/icon-group/icon-group.php:14
4741
  msgid "Icon Group"
4742
+ msgstr "Icoon Groep"
4743
 
4744
  # @ fl-builder
4745
  #: modules/icon-group/icon-group.php:15
4749
  # @ fl-builder
4750
  #: modules/icon-group/icon-group.php:125
4751
  msgid "Add Icon"
4752
+ msgstr "Icoon Toevoegen"
4753
 
4754
  # @ fl-builder
4755
  #: modules/icon/icon.php:15
4764
  # @ fl-builder
4765
  #: modules/map/map.php:15
4766
  msgid "Display a Google map."
4767
+ msgstr "Toon een Google map."
4768
 
4769
  # @ fl-builder
4770
  #: modules/map/map.php:33
4774
  # @ fl-builder
4775
  #: modules/map/map.php:34
4776
  msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4777
+ msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
4778
+
4779
+ #: modules/menu/menu.php:14 modules/menu/menu.php:24 modules/menu/menu.php:62
4780
+ #: modules/menu/menu.php:69
4781
+ msgid "Menu"
4782
+ msgstr "Menu"
4783
+
4784
+ #: modules/menu/menu.php:15
4785
+ msgid "Renders a WordPress menu."
4786
+ msgstr "Maakt een WordPress menu."
4787
+
4788
+ #: modules/menu/menu.php:25
4789
+ msgid ""
4790
+ "Select a WordPress menu that you created in the admin under Appearance > "
4791
+ "Menus."
4792
+ msgstr ""
4793
+ "Selecteer een WordPress menu dat u hebt gemaakt in de admin onder "
4794
+ "Vormgeving> Menus."
4795
+
4796
+ #: modules/menu/menu.php:42
4797
+ msgid "No Menus Found"
4798
+ msgstr "Geen menu's gevonden"
4799
+
4800
+ # @ fl-builder
4801
+ #: modules/menu/menu.php:93 modules/tabs/tabs.php:55
4802
+ msgid "Horizontal"
4803
+ msgstr "Horizontaal"
4804
+
4805
+ # @ fl-builder
4806
+ #: modules/menu/menu.php:94 modules/tabs/tabs.php:56
4807
+ msgid "Vertical"
4808
+ msgstr "Vertikaal"
4809
+
4810
+ #: modules/menu/menu.php:96 modules/menu/menu.php:134
4811
+ msgid "Expanded"
4812
+ msgstr "Uitgevouwen"
4813
+
4814
+ #: modules/menu/menu.php:112
4815
+ msgid "Submenu Icon"
4816
+ msgstr "Submenu Icoon"
4817
+
4818
+ #: modules/menu/menu.php:115 modules/menu/menu.php:125
4819
+ msgid "Arrows"
4820
+ msgstr "Pijlen"
4821
+
4822
+ #: modules/menu/menu.php:116 modules/menu/menu.php:126
4823
+ msgid "Plus sign"
4824
+ msgstr "Plusteken"
4825
+
4826
+ #: modules/menu/menu.php:117 modules/menu/menu.php:223
4827
+ msgid "None"
4828
+ msgstr "Geen"
4829
+
4830
+ #: modules/menu/menu.php:122
4831
+ msgid "Submenu Icon click"
4832
+ msgstr "Submenu Icoon click"
4833
+
4834
+ #: modules/menu/menu.php:131
4835
+ msgid "Mobile Style"
4836
+ msgstr "Mobiele stijl"
4837
+
4838
+ #: modules/menu/menu.php:135
4839
+ msgid "Hamburger Icon"
4840
+ msgstr "Hamburger Icoon"
4841
+
4842
+ #: modules/menu/menu.php:136
4843
+ msgid "Hamburger Icon + label"
4844
+ msgstr "Hamburger Icoon + label"
4845
+
4846
+ #: modules/menu/menu.php:137
4847
+ msgid "Menu Button"
4848
+ msgstr "Menu-knop"
4849
+
4850
+ #: modules/menu/menu.php:153
4851
+ msgid "Menu Alignment"
4852
+ msgstr "Menu Uitlijning"
4853
+
4854
+ #: modules/menu/menu.php:164
4855
+ msgid "Submenu Drop Shadow"
4856
+ msgstr "Submenu slagschaduw"
4857
+
4858
+ #: modules/menu/menu.php:206
4859
+ msgid "Link Size"
4860
+ msgstr "Link Grootte"
4861
+
4862
+ #: modules/menu/menu.php:220
4863
+ msgid "Link Format"
4864
+ msgstr "Link Format"
4865
+
4866
+ #: modules/menu/menu.php:224
4867
+ msgid "Uppercase"
4868
+ msgstr "Hoofdletters"
4869
+
4870
+ #: modules/menu/menu.php:225
4871
+ msgid "Lowercase"
4872
+ msgstr "Kleine letters"
4873
+
4874
+ #: modules/menu/menu.php:226
4875
+ msgid "Capitalize"
4876
+ msgstr "Kapitaliseren"
4877
+
4878
+ #: modules/menu/menu.php:236
4879
+ msgid "Link Weight"
4880
+ msgstr "Link Gewicht"
4881
+
4882
+ #: modules/menu/menu.php:239
4883
+ msgid "Normal"
4884
+ msgstr "Normaal"
4885
+
4886
+ #: modules/menu/menu.php:240
4887
+ msgid "Bold"
4888
+ msgstr "Vet"
4889
+
4890
+ #: modules/menu/menu.php:241
4891
+ msgid "Light"
4892
+ msgstr "Licht"
4893
+
4894
+ #: modules/menu/menu.php:251
4895
+ msgid "Horizontal Spacing"
4896
+ msgstr "Horizontale afstand"
4897
+
4898
+ #: modules/menu/menu.php:274
4899
+ msgid "Vertical Spacing"
4900
+ msgstr "Verticale afstand"
4901
+
4902
+ #: modules/menu/menu.php:299
4903
+ msgid "Backgrounds"
4904
+ msgstr "Achtergronden"
4905
+
4906
+ #: modules/menu/menu.php:303
4907
+ msgid "Menu Background Color"
4908
+ msgstr "Menu Achtergrondkleur"
4909
+
4910
+ #: modules/menu/menu.php:313 modules/menu/menu.php:331
4911
+ msgid "Menu Background Opacity"
4912
+ msgstr "Menu Achtergrond Dichtheid"
4913
+
4914
+ #: modules/menu/menu.php:321
4915
+ msgid "Submenu Background Color"
4916
+ msgstr "Submenu Achtergrondkleur"
4917
+
4918
+ #: modules/menu/menu.php:340
4919
+ msgid "Link Background Hover Color"
4920
+ msgstr "Link Achtergrond Hover Kleur"
4921
+
4922
+ # @ fl-builder
4923
+ #: modules/menu/menu.php:351 modules/separator/separator.php:14
4924
+ msgid "Separator"
4925
+ msgstr "Scheidingslijn"
4926
+
4927
+ #: modules/menu/menu.php:355
4928
+ msgid "Show Separators"
4929
+ msgstr "Toon scheidingslijnen"
4930
+
4931
+ #: modules/menu/menu.php:369
4932
+ msgid "Separator Color"
4933
+ msgstr "Scheidingslijn Kleur"
4934
+
4935
+ #: modules/menu/menu.php:374
4936
+ msgid "Separator Opacity"
4937
+ msgstr "Scheidingsteken Dichtheid"
4938
 
4939
  # @ fl-builder
4940
  #: modules/photo/photo.php:26
4944
  # @ fl-builder
4945
  #: modules/photo/photo.php:391
4946
  msgid "Photo Source"
4947
+ msgstr "Afbeelding Bron"
4948
 
4949
  # @ fl-builder
4950
  #: modules/photo/photo.php:395 modules/photo/photo.php:467
4959
  # @ fl-builder
4960
  #: modules/photo/photo.php:413
4961
  msgid "http://www.example.com/my-photo.jpg"
4962
+ msgstr "http://www.voorbeeld.com/mijn-photo.jpg"
 
 
 
 
 
 
4963
 
4964
  # @ fl-builder
4965
  #: modules/photo/photo.php:441 modules/photo/photo.php:455
4969
  # @ fl-builder
4970
  #: modules/photo/photo.php:445
4971
  msgid "Show Caption"
4972
+ msgstr "Toon Bijschrift"
4973
 
4974
  # @ fl-builder
4975
  #: modules/photo/photo.php:464
4976
  msgid "Link Type"
4977
+ msgstr "Link Type"
4978
 
4979
  # @ fl-builder
4980
  #: modules/photo/photo.php:466
5015
 
5016
  #: modules/post-carousel/post-carousel.php:14
5017
  msgid "Posts Carousel"
5018
+ msgstr "Berichten Carousel"
5019
 
 
5020
  #: modules/post-carousel/post-carousel.php:15
5021
  msgid "Display a carousel of your WordPress posts."
5022
+ msgstr "Een carousel van uw WordPress posten weergeven"
5023
 
 
5024
  #: modules/post-carousel/post-carousel.php:110
5025
+ #: modules/post-slider/post-slider.php:338
5026
  msgid "Slider"
5027
  msgstr "Slider"
5028
 
5034
 
5035
  # @ fl-builder
5036
  #: modules/post-carousel/post-carousel.php:152
5037
+ #: modules/post-slider/post-slider.php:379 modules/video/video.php:120
5038
  msgid "Loop"
5039
  msgstr "Herhaal"
5040
 
 
5041
  #: modules/post-carousel/post-carousel.php:168
5042
+ #: modules/post-slider/post-slider.php:395
5043
  msgid "Number of Posts"
5044
  msgstr "Aantal berichten"
5045
 
 
5046
  #: modules/post-carousel/post-carousel.php:175
5047
+ #: modules/post-slider/post-slider.php:402
5048
  msgid "Slider Controls"
5049
+ msgstr "Slider Controls"
5050
 
5051
  # @ fl-builder
5052
  #: modules/post-carousel/post-carousel.php:209
5054
  msgid "Posts"
5055
  msgstr "Berichten"
5056
 
 
5057
  #: modules/post-carousel/post-carousel.php:213
5058
  msgid "Post Max Width"
5059
+ msgstr "Bericht Max Breedte"
5060
 
5061
  # @ fl-builder
5062
  #: modules/post-carousel/post-carousel.php:221
5066
 
5067
  #: modules/post-carousel/post-carousel.php:229
5068
  msgid "Equalize Column Heights"
5069
+ msgstr "Kolom hoogtes gelijkstellen"
5070
 
 
5071
  #: modules/post-carousel/post-carousel.php:238
5072
  msgid "Post Hover Transition"
5073
+ msgstr "Bericht Hover Overgang"
5074
 
 
5075
  #: modules/post-carousel/post-carousel.php:242
5076
  #: modules/post-grid/post-grid.php:248
5077
  msgid "Slide Up"
5078
+ msgstr "Schuif Omhoog"
5079
 
 
5080
  #: modules/post-carousel/post-carousel.php:243
5081
  #: modules/post-grid/post-grid.php:249
5082
  msgid "Slide Down"
5083
+ msgstr "Schuif Omlaag"
5084
 
 
5085
  #: modules/post-carousel/post-carousel.php:244
5086
  #: modules/post-grid/post-grid.php:250
5087
  msgid "Scale Up"
5088
+ msgstr "Vergroot"
5089
 
 
5090
  #: modules/post-carousel/post-carousel.php:245
5091
  #: modules/post-grid/post-grid.php:251
5092
  msgid "Scale Down"
5093
+ msgstr "Verklein"
5094
 
5095
  # @ fl-builder
5096
  #: modules/post-carousel/post-carousel.php:251
5097
+ #: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:456
5098
  msgid "Featured Image"
5099
+ msgstr "Uitgelichte Afbeelding"
5100
 
5101
  #: modules/post-carousel/post-carousel.php:279
5102
  #: modules/post-grid/post-grid.php:261
5103
  msgid "Use Icon for Posts"
5104
+ msgstr "Gebruik pictogram voor berichten"
5105
 
 
5106
  #: modules/post-carousel/post-carousel.php:293
5107
  #: modules/post-grid/post-grid.php:275
5108
  msgid "Post Icon"
5109
+ msgstr "Bericht Icoon"
5110
 
 
5111
  #: modules/post-carousel/post-carousel.php:297
5112
  #: modules/post-grid/post-grid.php:279
5113
  msgid "Post Icon Position"
5114
+ msgstr "Bericht Icoon Positie"
5115
 
5116
  # @ fl-builder
5117
  #: modules/post-carousel/post-carousel.php:300
5118
  #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
5119
  msgid "Above Text"
5120
+ msgstr "Boven Tekst"
5121
 
 
5122
  #: modules/post-carousel/post-carousel.php:301
5123
  #: modules/post-grid/post-grid.php:283
5124
  msgid "Below Text"
5125
  msgstr "Onder tekst"
5126
 
 
5127
  #: modules/post-carousel/post-carousel.php:306
5128
  #: modules/post-grid/post-grid.php:288
5129
  msgid "Post Icon Size"
5130
+ msgstr "Bericht Icoon Grootte"
5131
 
5132
  # @ fl-builder
5133
  #: modules/post-carousel/post-carousel.php:315
5134
+ #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:495
5135
  msgid "Post Info"
5136
  msgstr "Bericht Info"
5137
 
5138
  # @ fl-builder
5139
  #: modules/post-carousel/post-carousel.php:342
5140
+ #: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:522
5141
  msgid "Date Format"
5142
  msgstr "Datumnotatie"
5143
 
5144
  # @ fl-builder
5145
  #: modules/post-carousel/post-carousel.php:372
5146
+ #: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:561
5147
  msgid "More Link"
5148
+ msgstr "Lees Meer Link"
5149
 
5150
  # @ fl-builder
5151
  #: modules/post-carousel/post-carousel.php:381
5152
+ #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:570
5153
  msgid "More Link Text"
5154
+ msgstr "More Link Tekst"
5155
 
 
5156
  #: modules/post-carousel/post-carousel.php:418
5157
  #: modules/post-grid/post-grid.php:307
5158
  msgid "Post Icon Color"
5159
+ msgstr "Bericht Icoon Kleur"
5160
 
5161
  # @ fl-builder
5162
  #: modules/post-grid/includes/frontend.php:41
5181
  # @ fl-builder
5182
  #: modules/post-grid/post-grid.php:74
5183
  msgid "Pagination Style"
5184
+ msgstr "Paginering Stijl"
5185
 
5186
  # @ fl-builder
5187
  #: modules/post-grid/post-grid.php:77
5202
  # @ fl-builder
5203
  #: modules/post-grid/post-grid.php:95
5204
  msgid "Post Width"
5205
+ msgstr "Bericht Breedte"
5206
 
5207
  # @ fl-builder
5208
  #: modules/post-grid/post-grid.php:134
5209
  msgid "Beside Text"
5210
+ msgstr "Naast Tekst"
5211
 
5212
  # @ fl-builder
5213
+ #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:538
5214
  msgid "Comments"
5215
  msgstr "Reacties"
5216
 
5217
  #: modules/post-grid/post-grid.php:211
5218
  msgid "Content Type"
5219
+ msgstr "Inhoud Type"
5220
 
5221
  #: modules/post-grid/post-grid.php:214
5222
  msgid "Excerpt"
5224
 
5225
  #: modules/post-grid/post-grid.php:215
5226
  msgid "Full Text"
5227
+ msgstr "Volledige Tekst"
5228
 
 
5229
  #: modules/post-grid/post-grid.php:244
5230
  msgid "Hover Transition"
5231
+ msgstr "Over overgang"
5232
 
 
5233
  #: modules/post-slider/post-slider.php:14
5234
  msgid "Posts Slider"
5235
+ msgstr "Berichten Slider"
5236
 
 
5237
  #: modules/post-slider/post-slider.php:15
5238
  msgid "Display a slider of your WordPress posts."
5239
+ msgstr "Een schuifregelaar voor uw WordPress posten weergeven"
5240
 
5241
+ #: modules/post-slider/post-slider.php:350
 
5242
  msgid ""
5243
  "This setting is the minimum height of the post slider. Content will expand "
5244
  "the height automatically."
5245
  msgstr ""
5246
+ "Deze instelling is de minimum hoogte van de berichtenslider. De inhoud zal "
5247
+ "de hoogte automatisch uitbreiden."
5248
 
5249
+ #: modules/post-slider/post-slider.php:440
 
5250
  msgid "Show Featured Image?"
5251
+ msgstr "Toon uitgelichte afbeelding?"
5252
 
5253
+ #: modules/post-slider/post-slider.php:628
 
5254
  msgid ""
5255
  "The position will move the content layout selections left, right or bottom "
5256
  "over the background of the slide."
5257
  msgstr ""
5258
+ "De positie zal de inhoud links, rechts of aan de onderkant van de dia-"
5259
+ "achtergrond weergeven."
5260
 
5261
+ #: modules/post-slider/post-slider.php:647
 
5262
  msgid ""
5263
  "The position will move the content layout selections left or right or center "
5264
  "of the thumbnail of the slide."
5265
  msgstr ""
5266
+ "De positie zal de inhoud links, rechts of gecentreerd van de dia-miniatuur "
5267
+ "weergeven."
5268
 
5269
+ #: modules/post-slider/post-slider.php:663
 
5270
  msgid "Text Width"
5271
  msgstr "Tekstbreedte"
5272
 
5273
+ #: modules/post-slider/post-slider.php:671
 
5274
  msgid "Text Padding"
5275
+ msgstr "Tekst opvulling"
5276
 
5277
+ #: modules/post-slider/post-slider.php:736
 
5278
  msgid "Text Background Gradient"
5279
+ msgstr "Tekst achtergrond Gradient"
5280
 
5281
  # @ fl-builder
5282
  #: modules/pricing-table/pricing-table.php:14
5291
  # @ fl-builder
5292
  #: modules/pricing-table/pricing-table.php:26
5293
  msgid "Pricing Boxes"
5294
+ msgstr "Prijs Vakken"
5295
 
5296
  # @ fl-builder
5297
  #: modules/pricing-table/pricing-table.php:33
5298
  msgid "Pricing Box"
5299
+ msgstr "Prijs Vak"
5300
 
5301
  # @ fl-builder
5302
  #: modules/pricing-table/pricing-table.php:50
5303
  msgid "Box Spacing"
5304
+ msgstr "Vak Tussenruimte"
5305
 
5306
  # @ fl-builder
5307
  #: modules/pricing-table/pricing-table.php:53
5317
  # @ fl-builder
5318
  #: modules/pricing-table/pricing-table.php:59
5319
  msgid "Features Min Height"
5320
+ msgstr "Opties Min Hoogte"
5321
 
5322
  # @ fl-builder
5323
  #: modules/pricing-table/pricing-table.php:63
5343
  # @ fl-builder
5344
  #: modules/pricing-table/pricing-table.php:84
5345
  msgid "Add Pricing Box"
5346
+ msgstr "Prijzen vak Toevoegen"
5347
 
5348
  # @ fl-builder
5349
  #: modules/pricing-table/pricing-table.php:98
5350
  msgid "Title Size"
5351
+ msgstr "Titel Grootte"
5352
 
5353
  # @ fl-builder
5354
  #: modules/pricing-table/pricing-table.php:107
5355
  msgid "Price Box"
5356
+ msgstr "Prijs Vak"
5357
 
5358
  # @ fl-builder
5359
  #: modules/pricing-table/pricing-table.php:111
5369
  # @ fl-builder
5370
  #: modules/pricing-table/pricing-table.php:116
5371
  msgid "per Year"
5372
+ msgstr "Per Jaar"
5373
 
5374
  # @ fl-builder
5375
  #: modules/pricing-table/pricing-table.php:120
5380
  #: modules/pricing-table/pricing-table.php:133
5381
  #: modules/subscribe-form/subscribe-form.php:168
5382
  msgid "Button Text"
5383
+ msgstr "Knop Tekst"
5384
 
5385
  # @ fl-builder
5386
  #: modules/pricing-table/pricing-table.php:137
5401
  # @ fl-builder
5402
  #: modules/pricing-table/pricing-table.php:162
5403
  msgid "Box Background"
5404
+ msgstr "Vak Achtergrond"
5405
 
5406
  # @ fl-builder
5407
  #: modules/pricing-table/pricing-table.php:167
5408
  msgid "Box Foreground"
5409
+ msgstr "Vak Voorgrond"
5410
 
5411
  # @ fl-builder
5412
  #: modules/pricing-table/pricing-table.php:173
5416
  # @ fl-builder
5417
  #: modules/pricing-table/pricing-table.php:178
5418
  msgid "Accent Text Color"
5419
+ msgstr "Tekst Accentkleur"
5420
 
5421
  # @ fl-builder
5422
  #: modules/pricing-table/pricing-table.php:182
5423
  msgid "Box Top Margin"
5424
+ msgstr "Vak Bovenmarge"
5425
 
5426
  # @ fl-builder
5427
  #: modules/rich-text/rich-text.php:15
5428
  msgid "A WYSIWYG text editor."
5429
  msgstr "Een WYSIWYG tekstverwerker."
5430
 
 
 
 
 
 
5431
  # @ fl-builder
5432
  #: modules/separator/separator.php:15
5433
  msgid "A divider line to separate content."
5468
  # @ fl-builder
5469
  #: modules/slideshow/slideshow.php:310
5470
  msgid "Skin Color"
5471
+ msgstr "Skin Kleur"
5472
 
5473
  # @ fl-builder
5474
  #: modules/slideshow/slideshow.php:313
5557
  # @ fl-builder
5558
  #: modules/slideshow/slideshow.php:459
5559
  msgid "Nav Type"
5560
+ msgstr "Navigatie Type"
5561
 
5562
  # @ fl-builder
5563
  #: modules/slideshow/slideshow.php:462
5578
  # @ fl-builder
5579
  #: modules/slideshow/slideshow.php:479
5580
  msgid "Nav Position"
5581
+ msgstr "Navigatie Positie"
5582
 
5583
  # @ fl-builder
5584
  #: modules/slideshow/slideshow.php:489
5585
  msgid "Control Bar Buttons"
5586
+ msgstr "Navigatiebalk Knoppen"
5587
 
5588
  # @ fl-builder
5589
  #: modules/slideshow/slideshow.php:502
5590
  msgid "Play Button"
5591
+ msgstr "Play Button"
5592
 
5593
  # @ fl-builder
5594
  #: modules/slideshow/slideshow.php:511
5595
  msgid "Fullscreen Button"
5596
+ msgstr "Volledig Scherm Knop"
5597
 
5598
  # @ fl-builder
5599
  #: modules/slideshow/slideshow.php:520
5600
  msgid "Photo Count"
5601
+ msgstr "Aantal Afbeeldingen"
5602
 
5603
  # @ fl-builder
5604
  #: modules/slideshow/slideshow.php:529
5605
  msgid "Thumbs Button"
5606
+ msgstr "Miniaturen Button"
5607
 
5608
  # @ fl-builder
5609
  #: modules/slideshow/slideshow.php:538
5610
  msgid "Caption Button"
5611
+ msgstr "Bijschrift Button"
5612
 
5613
  # @ fl-builder
5614
  #: modules/slideshow/slideshow.php:547
5615
  msgid "Social Button"
5616
+ msgstr "Social Media Button"
5617
 
5618
  # @ fl-builder
5619
  #: modules/slideshow/slideshow.php:557
5620
  msgid "Control Bar Overlay"
5621
+ msgstr "Navigatiebalk Overlay"
5622
 
5623
  # @ fl-builder
5624
  #: modules/slideshow/slideshow.php:561
5625
  msgid "Overlay Enabled"
5626
+ msgstr "Overlay Ingeschakeld"
5627
 
5628
  # @ fl-builder
5629
  #: modules/slideshow/slideshow.php:572
5631
  "Control bar overlay specifies if the control bar buttons you choose overlay "
5632
  "your slideshow images or site below the slideshow completely."
5633
  msgstr ""
5634
+ "Navigatiebalk Overlay geeft aan of de navigatiebalk knoppen die je kiest "
5635
  "over je diavoorstelling afbeeldingen liggen of geheel onder je "
5636
  "diavoorstelling worden geplaatst."
5637
 
5638
  # @ fl-builder
5639
  #: modules/slideshow/slideshow.php:576
5640
  msgid "Overlay Hide"
5641
+ msgstr "Verberg Overlay"
5642
 
5643
  # @ fl-builder
5644
  #: modules/slideshow/slideshow.php:582
5652
  # @ fl-builder
5653
  #: modules/slideshow/slideshow.php:586
5654
  msgid "Overlay Hide Delay"
5655
+ msgstr "OVerberg Overlay Vertraging"
5656
 
5657
  # @ fl-builder
5658
  #: modules/slideshow/slideshow.php:598
5659
  msgid "Thumbs Size"
5660
+ msgstr "Miniatuur Afmeting"
5661
 
5662
  # @ fl-builder
5663
  #: modules/slideshow/slideshow.php:607
5667
  # @ fl-builder
5668
  #: modules/slideshow/slideshow.php:611
5669
  msgid "Facebook Button"
5670
+ msgstr "Facebook Button"
5671
 
5672
  # @ fl-builder
5673
  #: modules/slideshow/slideshow.php:623
5674
  msgid "Twitter Button"
5675
+ msgstr "Twitter Button"
5676
 
5677
  # @ fl-builder
5678
  #: modules/slideshow/slideshow.php:635
5679
  msgid "Google Plus Button"
5680
+ msgstr "Google+ Button"
5681
 
5682
  # @ fl-builder
5683
  #: modules/slideshow/slideshow.php:647
5684
  msgid "Pinterest Button"
5685
+ msgstr "Pinterest Button"
5686
 
5687
  # @ fl-builder
5688
  #: modules/social-buttons/social-buttons.php:14
5689
  msgid "Social Buttons"
5690
+ msgstr "Social Buttons"
5691
 
5692
  # @ fl-builder
5693
  #: modules/social-buttons/social-buttons.php:15
5694
  msgid "Displays social buttons."
5695
+ msgstr "Toon Social Buttons."
5696
 
5697
  # @ fl-builder
5698
  #: modules/social-buttons/social-buttons.php:71
5702
  # @ fl-builder
5703
  #: modules/social-buttons/social-buttons.php:75
5704
  msgid "Current Page"
5705
+ msgstr "Huidige Pagina"
5706
 
5707
  # @ fl-builder
5708
  #: modules/social-buttons/social-buttons.php:82
5723
  # @ fl-builder
5724
  #: modules/social-buttons/social-buttons.php:107
5725
  msgid "Show Facebook"
5726
+ msgstr "Toon Facebook"
5727
 
5728
  # @ fl-builder
5729
  #: modules/social-buttons/social-buttons.php:116
5750
 
5751
  #: modules/subscribe-form/subscribe-form.php:18
5752
  msgid "Subscribe Form"
5753
+ msgstr "Aanmeld Formulier"
5754
 
5755
  #: modules/subscribe-form/subscribe-form.php:19
5756
  msgid "Adds a simple subscribe form to your layout."
5757
+ msgstr "Voeg een eenvoudig abonneren formulier toe aan je layout."
5758
 
5759
  #: modules/subscribe-form/subscribe-form.php:118
5760
  msgid "Success"
5766
 
5767
  #: modules/subscribe-form/subscribe-form.php:124
5768
  msgid "Show Message"
5769
+ msgstr "Toon Bericht"
5770
 
5771
  #: modules/subscribe-form/subscribe-form.php:125
5772
  msgid "Redirect"
5796
  msgid "Display a collection of tabbed content."
5797
  msgstr "Een verzameling met getabde inhoud weergeven."
5798
 
 
 
 
 
 
 
 
 
 
 
5799
  # @ fl-builder
5800
  #: modules/testimonials/testimonials.php:14
5801
  #: modules/testimonials/testimonials.php:60
5841
  # @ fl-builder
5842
  #: modules/testimonials/testimonials.php:197
5843
  msgid "Add Testimonial"
5844
+ msgstr "Beoordeling Toevoegen"
5845
 
5846
  # @ fl-builder
5847
  #: modules/video/video.php:20
5848
  msgid "Render a WordPress or embedable video."
5849
+ msgstr "Toon een Wordpress of ingesloten video."
5850
 
5851
  # @ fl-builder
5852
  #: modules/video/video.php:83
5926
  # @ fl-builder
5927
  #: modules/woocommerce/woocommerce.php:67
5928
  msgid "Order Tracking"
5929
+ msgstr "Bestelling Volgen"
5930
 
5931
  # @ fl-builder
5932
  #: modules/woocommerce/woocommerce.php:68
5978
  # @ fl-builder
5979
  #: modules/woocommerce/woocommerce.php:117
5980
  msgid "Products Source"
5981
+ msgstr "Producten Bron"
5982
 
5983
  # @ fl-builder
5984
  #: modules/woocommerce/woocommerce.php:120
5993
  # @ fl-builder
5994
  #: modules/woocommerce/woocommerce.php:122
5995
  msgid "Recent Products"
5996
+ msgstr "Recente Producten"
5997
 
5998
  # @ fl-builder
5999
  #: modules/woocommerce/woocommerce.php:123
6000
  msgid "Featured Products"
6001
+ msgstr "Uitgelichte Producten"
6002
 
6003
  # @ fl-builder
6004
  #: modules/woocommerce/woocommerce.php:124
6005
  msgid "Sale Products"
6006
+ msgstr "Verkoop Producten"
6007
 
6008
  # @ fl-builder
6009
  #: modules/woocommerce/woocommerce.php:125
6010
  msgid "Best Selling Products"
6011
+ msgstr "Best Verkopende Producten"
6012
 
6013
  # @ fl-builder
6014
  #: modules/woocommerce/woocommerce.php:126
6015
  msgid "Top Rated Products"
6016
+ msgstr "Best Beoordeelde Producten"
6017
 
6018
  # @ fl-builder
6019
  #: modules/woocommerce/woocommerce.php:154
6037
  # @ fl-builder
6038
  #: modules/woocommerce/woocommerce.php:160
6039
  msgid "Category Slug"
6040
+ msgstr "Categorie Slug"
6041
 
6042
  # @ fl-builder
6043
  #: modules/woocommerce/woocommerce.php:162
6055
  # @ fl-builder
6056
  #: modules/woocommerce/woocommerce.php:166
6057
  msgid "Number of Products"
6058
+ msgstr "Aantal Producten"
6059
 
6060
  # @ fl-builder
6061
  #: modules/woocommerce/woocommerce.php:183
6062
  msgid "Sort By"
6063
+ msgstr "Sorteren Op"
6064
 
6065
  # @ fl-builder
6066
  #: modules/woocommerce/woocommerce.php:186
6080
 
6081
  #: modules/woocommerce/woocommerce.php:195
6082
  msgid "Sort Direction"
6083
+ msgstr "Sorteer Richting"
 
 
 
6084
 
6085
  # @ fl-builder
6086
  #~ msgctxt "Custom post type label."
6092
  #~ msgid "Layout Template"
6093
  #~ msgstr "Layout Template"
6094
 
6095
+ # @ fl-builder
6096
+ #~ msgctxt "Custom post type label."
6097
+ #~ msgid "Add New Layout Template"
6098
+ #~ msgstr "Nieuwe Template toevoegen"
6099
+
6100
  # @ fl-builder
6101
  #~ msgctxt "Custom post type label."
6102
  #~ msgid "New Layout Template"
6107
  #~ msgid "Edit Layout Template"
6108
  #~ msgstr "Layout Template Bewerken"
6109
 
6110
+ # @ fl-builder
6111
+ #~ msgctxt "Custom post type label."
6112
+ #~ msgid "View Layout Template"
6113
+ #~ msgstr "Bekijk Layout Template"
6114
+
6115
  # @ fl-builder
6116
  #~ msgctxt "Custom post type label."
6117
  #~ msgid "All Layout Templates"
6118
  #~ msgstr "Alle Layout Templates"
6119
 
6120
+ # @ fl-builder
6121
+ #~ msgctxt "Custom post type label."
6122
+ #~ msgid "Search Layout Templates"
6123
+ #~ msgstr "Zoeken in Layout Templates"
 
 
 
 
 
 
 
6124
 
6125
+ # @ fl-builder
6126
+ #~ msgctxt "Custom post type label."
6127
+ #~ msgid "Parent Layout Templates:"
6128
+ #~ msgstr "Ouder Layout Templates:"
6129
 
6130
+ # @ fl-builder
6131
+ #~ msgctxt "Custom post type label."
6132
+ #~ msgid "No layout templates found."
6133
+ #~ msgstr "Geen Layout Templates gevonden."
6134
 
6135
+ # @ fl-builder
6136
+ #~ msgctxt "Custom post type label."
6137
+ #~ msgid "No layout templates found in Trash."
6138
+ #~ msgstr "Geen Layout Templates in prullenbak gevonden."
6139
 
6140
+ # @ fl-builder
6141
+ #~ msgctxt "%s stands for custom branded \"Page Builder\" name."
6142
+ #~ msgid "%s is currently active for this page."
6143
+ #~ msgstr "%s is momenteel actief voor deze pagina."
6144
 
6145
+ # @ fl-builder
6146
+ #~ msgid "Enable or disable templates using the options below."
6147
+ #~ msgstr ""
6148
+ #~ "Schakel templates in of uit door met behulp van onderstaande opties."
6149
 
6150
  #~ msgid "Discard Draft"
6151
  #~ msgstr "Concept weggooien"
6152
 
6153
+ #~ msgid ""
6154
+ #~ "Do you really want to discard this draft? All of your changes that are "
6155
+ #~ "not published will be lost."
6156
+ #~ msgstr ""
6157
+ #~ "Wil je dit concept echt verwijderen? All je veranderingen die niet zijn "
6158
+ #~ "gepubliceerd zullen verloren gaan."
6159
+
6160
+ # @ fl-builder
6161
+ #~ msgctxt "Duplicate page/post action label."
6162
+ #~ msgid "Duplicate"
6163
+ #~ msgstr "Kopiëren"
6164
+
6165
+ # @ fl-builder
6166
+ #~ msgid ""
6167
+ #~ "Repeat applies to how the image should display in the row background. "
6168
+ #~ "Choosing none will display the image as uploaded. Tile will repeat the "
6169
+ #~ "image as many times as needed to fill the row horizontally and "
6170
+ #~ "vertically. You can also specify the image to only repeat horizontally or "
6171
+ #~ "vertically."
6172
+ #~ msgstr ""
6173
+ #~ "Herhaal geldt hoe de afbeelding in de rij achtergrond moet worden "
6174
+ #~ "weergegeven. Indien voor Niet wordt gekozen zal de afbeelding worden "
6175
+ #~ "weergegeven zoals geupload. Voor Tegel wordt het beeld zo vaak herhalen "
6176
+ #~ "als nodig is om de rij horizontaal en verticaal te vullen. Je kunt de "
6177
+ #~ "afbeelding ook alleen horizontaal of verticaal laten herhalen."
6178
+
6179
+ # @ fl-builder
6180
+ #~ msgid ""
6181
+ #~ "Position will tell the image where it should sit in the row background."
6182
+ #~ msgstr ""
6183
+ #~ "Met de positie wordt bepaald waar de afbeelding in de rij-achtergrond "
6184
+ #~ "wordt geplaatst."
6185
+
6186
+ # @ fl-builder
6187
+ #~ msgid ""
6188
+ #~ "Attachment will specify how the image reacts when scrolling a page. When "
6189
+ #~ "scrolling is selected, the image will scroll with page scrolling. This is "
6190
+ #~ "the default setting. Fixed will allow the image to scroll within the row "
6191
+ #~ "background if fill is selected in the scale setting."
6192
+ #~ msgstr ""
6193
+ #~ "Gehechtheid geeft aan hoe het beeld reageert tijdens het scrollen van een "
6194
+ #~ "pagina. Indien Scrollen is geselecteerd, zal het beeld met de pagina "
6195
+ #~ "meescrollen. Dit is de standaardinstelling. Vast zal het beeld in de "
6196
+ #~ "achtergrond van de rij achtergrond doen scrollen indien Uitvullen is "
6197
+ #~ "geselecteerd in de Schaal setting.."
6198
+
6199
+ # @ fl-builder
6200
+ #~ msgid ""
6201
+ #~ "Scale applies to how the image should display in the row background. You "
6202
+ #~ "can select either fill or fit to the row background."
6203
+ #~ msgstr ""
6204
+ #~ "Schaal geldt hoe de afbeelding in de rij achtergrond moet worden "
6205
+ #~ "weergegeven. Je kunt kiezen uit uitvullen of aanpassen aan de rij "
6206
+ #~ "achtergrond."
6207
+
6208
+ # @ fl-builder
6209
+ #~ msgid "Page Builder Demo"
6210
+ #~ msgstr "Pagina Builder Demo"
6211
+
6212
+ # @ fl-builder
6213
+ #~ msgid ""
6214
+ #~ "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
6215
+ #~ "enable automatic updates."
6216
+ #~ msgstr ""
6217
+ #~ "UPDATES NIET BESCHIKBAAR! Neem een abonnement of voer je licentiecode "
6218
+ #~ "hieronder in om automatische updates in te schakelen."
6219
 
6220
+ # @ fl-builder
6221
  #~ msgid ""
6222
+ #~ "Enter your <a%s>licence key</a> to enable remote updates and support."
 
6223
  #~ msgstr ""
6224
+ #~ "Vul je <a%s>licentiesleutel</a> in om updates op afstand en ondersteuning "
6225
+ #~ "in te schakelen."
6226
+
6227
+ # @ fl-builder
6228
+ #~ msgctxt "Crop"
6229
+ #~ msgid "None"
6230
+ #~ msgstr "Geen"
6231
+
6232
+ # @ fl-builder
6233
+ #~ msgctxt "Crop."
6234
+ #~ msgid "None"
6235
+ #~ msgstr "Geen"
modules/photo/photo.php CHANGED
@@ -330,6 +330,12 @@ class FLPhotoModule extends FLBuilderModule {
330
  $filename = uniqid(); // Return a file that doesn't exist.
331
  }
332
  else {
 
 
 
 
 
 
333
  $pathinfo = pathinfo($url);
334
  $dir = $pathinfo['dirname'];
335
  $ext = $pathinfo['extension'];
330
  $filename = uniqid(); // Return a file that doesn't exist.
331
  }
332
  else {
333
+
334
+ if ( stristr( $url, '?' ) ) {
335
+ $parts = explode( '?', $url );
336
+ $url = $parts[0];
337
+ }
338
+
339
  $pathinfo = pathinfo($url);
340
  $dir = $pathinfo['dirname'];
341
  $ext = $pathinfo['extension'];