Changeset 2700212
- Timestamp:
- 03/27/2022 02:27:35 PM (4 years ago)
- Location:
- definitive-addons-for-elementor/trunk
- Files:
-
- 32 edited
-
css/dafe_style.css (modified) (2 diffs)
-
definitive_adons_elementor.php (modified) (2 diffs)
-
inc/Elements/Accordion.php (modified) (2 diffs)
-
inc/Elements/CTA.php (modified) (1 diff)
-
inc/Elements/Category_Box.php (modified) (1 diff)
-
inc/Elements/Contact_form_7.php (modified) (2 diffs)
-
inc/Elements/Counter.php (modified) (1 diff)
-
inc/Elements/Feature_list.php (modified) (4 diffs)
-
inc/Elements/Flip_Box.php (modified) (2 diffs)
-
inc/Elements/Icon_Box.php (modified) (6 diffs)
-
inc/Elements/Icon_List.php (modified) (4 diffs)
-
inc/Elements/Image_Overlay.php (modified) (6 diffs)
-
inc/Elements/Ninja_Forms.php (modified) (2 diffs)
-
inc/Elements/Popular_Post.php (modified) (1 diff)
-
inc/Elements/Pricing_Table.php (modified) (5 diffs)
-
inc/Elements/Promo-box.php (modified) (1 diff)
-
inc/Elements/Skillbar.php (modified) (3 diffs)
-
inc/Elements/Slider.php (modified) (4 diffs)
-
inc/Elements/Social_Icon.php (modified) (1 diff)
-
inc/Elements/Staff_Member.php (modified) (3 diffs)
-
inc/Elements/Subscription.php (modified) (1 diff)
-
inc/Elements/Tabs.php (modified) (3 diffs)
-
inc/Elements/Teaser_Box.php (modified) (1 diff)
-
inc/Elements/Testimonial.php (modified) (2 diffs)
-
inc/Elements/Testimonial_Slider.php (modified) (8 diffs)
-
inc/Elements/Type.php (modified) (1 diff)
-
inc/Elements/Wording.php (modified) (1 diff)
-
inc/Elements/WpForm.php (modified) (1 diff)
-
inc/Elements/heading-with-separator.php (modified) (1 diff)
-
inc/Reuses/Reuse.php (modified) (1 diff)
-
languages/definitive-addons-for-elementor.pot (modified) (85 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
definitive-addons-for-elementor/trunk/css/dafe_style.css
r2697892 r2700212 592 592 } 593 593 594 .counter-container.style3, .widget-testimonial-grid.style3,. icon-box-entry.style3, .author-box.style3, .image-box.style3, .widget-testimonial-grid.style3, .staff-member.style3, .blog-wrap_border_style.style3, .home_blog_border_style:first-child.style1 {594 .counter-container.style3, .widget-testimonial-grid.style3,.dafe-icon-box-entry.style3, .author-box.style3, .image-box.style3, .widget-testimonial-grid.style3, .staff-member.style3, .blog-wrap_border_style.style3, .home_blog_border_style:first-child.style1 { 595 595 box-shadow: 0px 5px 25px 0px rgba(0,0,0,0.1); 596 596 } … … 880 880 .dafe-icon-box-entry.right,.dafe-icon-box-desc.right { 881 881 text-align:right; 882 } 883 .dafe-icon-box-entry .dafe-icon-container { 884 background-color:#eee; 885 border-radius:50%; 882 886 } 883 887 /************/ -
definitive-addons-for-elementor/trunk/definitive_adons_elementor.php
r2698719 r2700212 4 4 * Description: Advanced Widgets for Elementor Page Builder. 5 5 * Plugin URI: https://softfirm.net/ 6 * Version: 1.5. 26 * Version: 1.5.3 7 7 * Author: Softfirm 8 8 * Author URI: https://softfirm.net/definitive-addons/ … … 31 31 * @var string The plugin version. 32 32 */ 33 const VERSION = '1.5. 2';33 const VERSION = '1.5.3'; 34 34 35 35 /** -
definitive-addons-for-elementor/trunk/inc/Elements/Accordion.php
r2698719 r2700212 811 811 <?php endif; ?> 812 812 813 <?php echo esc_html( $accordion_item['title'] ); ?>813 <?php echo Reuse::dafe_wp_kses( $accordion_item['title'] ); ?> 814 814 815 815 <?php if( !empty( $settings['dafe_accordion_item_icon_active']['value'])) : ?> … … 833 833 <?php 834 834 if ( ! empty( $accordion_item['btn_url']['url'] ) ) { 835 $this->add_link_attributes( 'acc_link' , $accordion_item['btn_url'] );835 $this->add_link_attributes( 'acc_link'.$key, $accordion_item['btn_url'] ); 836 836 } 837 837 ?> 838 838 <div class="accordion-btn-container"> 839 <a <?php $this->print_render_attribute_string( 'acc_link' ); ?> class="accordion-btn link">839 <a <?php $this->print_render_attribute_string( 'acc_link'.$key ); ?> class="accordion-btn link"> 840 840 841 841 <?php echo esc_html($accordion_item['dafe_accordion_btn_text']); ?> -
definitive-addons-for-elementor/trunk/inc/Elements/CTA.php
r2698719 r2700212 769 769 <div class="cta-txt"> 770 770 <?php if ($settings['title']){ ?> 771 <<?php echo esc_attr($title_tag); ?> class="cta-title"><?php echo esc_html($settings['title']); ?></<?php echo esc_attr($title_tag); ?>>771 <<?php Utils::print_validated_html_tag($title_tag); ?> class="cta-title"><?php echo Reuse::dafe_wp_kses( $settings['title']); ?></<?php Utils::print_validated_html_tag($title_tag); ?>> 772 772 <?php } ?> 773 773 <?php if ($settings['subtitle']){ ?> 774 <p class="cta-sub-title"><?php echo esc_html($settings['subtitle']); ?></p>774 <p class="cta-sub-title"><?php echo Reuse::dafe_wp_kses($settings['subtitle']); ?></p> 775 775 <?php } ?> 776 776 </div> -
definitive-addons-for-elementor/trunk/inc/Elements/Category_Box.php
r2686404 r2700212 337 337 <h5 class="product-cat-box-title"><a title="<?php echo esc_attr($cats_name); ?>" 338 338 href="<?php echo esc_url( $cat_link ); ?>"> 339 <?php echo esc_html( $cats_name ); ?></a></h5> 339 <?php echo esc_html( $cats_name ); ?></a> 340 </h5> 340 341 341 342 <div class="box-product-count"> -
definitive-addons-for-elementor/trunk/inc/Elements/Contact_form_7.php
r2675151 r2700212 178 178 'left' => [ 179 179 'title' =>__( 'Left', 'definitive-addons-for-elementor' ), 180 'icon' => ' fa fa-align-left',180 'icon' => 'eicon-text-align-left', 181 181 ], 182 182 'center' => [ 183 183 'title' =>__( 'Center', 'definitive-addons-for-elementor' ), 184 'icon' => ' fa fa-align-center',184 'icon' => 'eicon-text-align-center', 185 185 ], 186 186 'right' => [ 187 187 'title' =>__( 'Right', 'definitive-addons-for-elementor' ), 188 'icon' => ' fa fa-align-right',188 'icon' => 'eicon-text-align-right', 189 189 ], 190 190 ], … … 801 801 ?> 802 802 803 <div id="cf-7"class="cf7_container <?php echo esc_attr($layout); ?> <?php echo esc_attr($layout_radio); ?>">803 <div class="cf7_container <?php echo esc_attr($layout); ?> <?php echo esc_attr($layout_radio); ?>"> 804 804 <div class="form_header <?php echo esc_attr($align); ?>"> 805 805 <?php if (!empty($settings['title'])){ ?> 806 <<?php echo esc_attr($title_tag);?> class="cf7_title <?php echo esc_attr($show_hide_title); ?>"><?php echo esc_html($settings['title']);?></<?php echo esc_attr($title_tag);?>>806 <<?php Utils::print_validated_html_tag( $settings['title_tag'] ); ?> class="cf7_title <?php echo esc_attr($show_hide_title); ?>"><?php echo Reuse::dafe_wp_kses( $settings['title']);?></<?php Utils::print_validated_html_tag( $settings['title_tag'] ); ?>> 807 807 <?php } ?> 808 <p class="cf7_description <?php echo esc_attr($align); ?> <?php echo esc_attr($show_hide_desc); ?>"><?php echo esc_html($description_txt);?></p>808 <p class="cf7_description <?php echo esc_attr($align); ?> <?php echo esc_attr($show_hide_desc); ?>"><?php echo Reuse::dafe_wp_kses( $description_txt );?></p> 809 809 </div> 810 810 -
definitive-addons-for-elementor/trunk/inc/Elements/Counter.php
r2697892 r2700212 648 648 <span class="counter-text <?php echo esc_attr($settings['counter_val_position']); ?>"> 649 649 650 <?php echo esc_html($settings['counter_text']); ?>650 <?php echo Reuse::dafe_wp_kses($settings['counter_text']); ?> 651 651 652 652 </span> -
definitive-addons-for-elementor/trunk/inc/Elements/Feature_list.php
r2697892 r2700212 89 89 ] 90 90 ); 91 92 $repeater->add_control( 93 'link', 94 [ 95 'label' => __( 'Title Link', 'definitive-addons-for-elementor' ), 96 'separator' => 'before', 97 'type' => Controls_Manager::URL, 98 'placeholder' => __('https://softfirm.net/', 'definitive-addons-for-elementor' ), 99 100 ] 101 ); 91 102 92 103 $repeater->add_control( … … 119 130 120 131 'fields' => $repeater->get_controls(), 121 'title_field' => '{{ title}}',132 'title_field' => '{{{ title }}}', 122 133 123 134 ] 124 135 ); 136 137 $this->add_control( 138 'title_tag', 139 [ 140 'label' => __( 'Title HTML Tag', 'definitive-addons-for-elementor' ), 141 'type' => Controls_Manager::SELECT, 142 143 'options' => [ 144 'h1' => 'H1', 145 'h2' => 'H2', 146 'h3' => 'H3', 147 'h4' => 'H4', 148 'h5' => 'H5', 149 'h6' => 'H6', 150 'div' => 'div', 151 'span' => 'span', 152 'p' => 'p', 153 ], 154 'default' => 'h3', 155 'toggle' => false, 156 ] 157 ); 125 158 126 159 $this->add_control( … … 485 518 486 519 487 <?php foreach ( $settings['feature_lists'] as $ feature_list) : ?>520 <?php foreach ( $settings['feature_lists'] as $key => $feature_list) : ?> 488 521 <div class="dafe-feature-list-container feature-list-align-<?php echo esc_attr( $feature_list_alignment ); ?>"> 489 522 <div class="feature-list-inner-container"> … … 494 527 </div> 495 528 <div class="dafe-feature-list-content"> 496 <h3 class="dafe-feature-list-title"> 529 <?php if ( ! empty( $feature_list['link']['url'] ) ) { 530 531 $this->add_link_attributes( 'feature_list_link'.$key, $feature_list['link'] ); 532 }?> 533 534 <a <?php $this->print_render_attribute_string( 'feature_list_link'.$key ); ?>> 535 <<?php Utils::print_validated_html_tag( $settings['title_tag'] ); ?> class="dafe-feature-list-title"> 497 536 <span> 498 <?php echo esc_html( $feature_list['title'] ); ?>537 <?php echo Reuse::dafe_wp_kses( $feature_list['title'] ); ?> 499 538 </span> 500 </h3> 539 </<?php Utils::print_validated_html_tag( $settings['title_tag'] ); ?>> 540 </a> 501 541 <p class="dafe-feature-list-description <?php echo esc_attr( $feature_list_alignment ); ?>"> 502 <?php echo esc_html( $feature_list['subtitle'] ); ?>542 <?php echo Reuse::dafe_wp_kses( $feature_list['subtitle'] ); ?> 503 543 </p> 504 544 </div> -
definitive-addons-for-elementor/trunk/inc/Elements/Flip_Box.php
r2689901 r2700212 481 481 482 482 $settings = $this->get_settings_for_display(); 483 $title = $this->get_settings_for_display('box_title'); 484 $subtitle = $this->get_settings_for_display('box_subtitle'); 483 485 484 486 485 $flip_box_alignment = $this->get_settings_for_display('flip_box_alignment'); … … 500 499 <div class="flip-cta"> 501 500 <?php if ( $settings['box_title'] ) : ?> 502 <<?php echo esc_attr($title_tag) ?> class="title"><?php echo esc_html($title) ?></<?php echo esc_attr($title_tag) ?>>501 <<?php Utils::print_validated_html_tag($title_tag) ?> class="title"><?php echo Reuse::dafe_wp_kses( $settings['box_title']) ?></<?php Utils::print_validated_html_tag($title_tag) ?>> 503 502 <?php endif; ?> 504 503 <?php if ( $settings['box_subtitle'] ) : ?> 505 <h5 class="subtitle"><?php echo esc_html($subtitle)?></h5>504 <h5 class="subtitle"><?php echo Reuse::dafe_wp_kses( $settings['box_subtitle']); ?></h5> 506 505 <?php endif; ?> 507 506 <?php if ( $settings['box_text'] ) : ?> 508 <p class="box_text"><?php echo esc_html($settings['box_text']) ?></p>507 <p class="box_text"><?php echo Reuse::dafe_wp_kses($settings['box_text']) ?></p> 509 508 <?php endif; ?> 510 509 </div> -
definitive-addons-for-elementor/trunk/inc/Elements/Icon_Box.php
r2698719 r2700212 199 199 'label' => __('Background Color', 'definitive-addons-for-elementor'), 200 200 'type' => Controls_Manager::COLOR, 201 'default' => '# eeeeee',201 'default' => '#fff', 202 202 'selectors' => [ 203 203 … … 423 423 'label' => __( 'Icon Hover Color', 'definitive-addons-for-elementor' ), 424 424 'type' => Controls_Manager::COLOR, 425 'default' => '#000', 425 426 'selectors' => [ 426 427 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container:hover .icon' => 'color: {{VALUE}};', … … 664 665 ?> 665 666 666 <div class="dafe-icon-box-entry <?php echo esc_attr($settings['icon_box_alignment'] ); ?> elementor-animation-<?php echo esc_attr($settings['dafe_icon_box_hvr_animation'] ); ?>">667 <div class="dafe-icon-box-entry style3 <?php echo esc_attr($settings['icon_box_alignment'] ); ?> elementor-animation-<?php echo esc_attr($settings['dafe_icon_box_hvr_animation'] ); ?>"> 667 668 <a <?php $this->print_render_attribute_string( 'icon_box_link' ); ?>> 668 669 … … 680 681 <a <?php echo $this->print_render_attribute_string( 'icon_box_link' ); ?>> 681 682 682 <<?php echo esc_attr($title_tag); ?> class="dafe-icon-box-title"><?php echo esc_html( $settings['title'] ); ?></<?php echo esc_attr($title_tag); ?>>683 <<?php Utils::print_validated_html_tag($title_tag); ?> class="dafe-icon-box-title"><?php echo Reuse::dafe_wp_kses( $settings[ 'title'] ); ?></<?php Utils::print_validated_html_tag($title_tag); ?>> 683 684 </a> 684 685 <?php endif; ?> … … 687 688 <a <?php echo $this->print_render_attribute_string( 'icon_box_link' ); ?>> 688 689 689 <p class="dafe-icon-box-desc <?php echo esc_attr($settings['icon_box_alignment'] ); ?>"><?php echo esc_html( $settings['subtitle'] ); ?></p>690 <p class="dafe-icon-box-desc <?php echo esc_attr($settings['icon_box_alignment'] ); ?>"><?php echo Reuse::dafe_wp_kses( $settings['subtitle'] ); ?></p> 690 691 </a> 691 692 <?php endif; ?> … … 693 694 <?php if ( $settings['subtitle'] ) : ?> 694 695 695 <p class="dafe-icon-box-desc" style="<?php echo esc_attr($container_styles) ?>"><?php echo esc_html( $settings['subtitle'] ); ?></p>696 <p class="dafe-icon-box-desc" style="<?php echo esc_attr($container_styles) ?>"><?php echo Reuse::dafe_wp_kses( $settings['subtitle'] ); ?></p> 696 697 697 698 <?php endif; ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Icon_List.php
r2698719 r2700212 137 137 'left' => [ 138 138 'title' =>__( 'Left', 'definitive-addons-for-elementor' ), 139 'icon' => ' fa fa-align-left',139 'icon' => 'eicon-text-align-left', 140 140 ], 141 141 'center' => [ 142 142 'title' =>__( 'Center', 'definitive-addons-for-elementor' ), 143 'icon' => ' fa fa-align-center',143 'icon' => 'eicon-text-align-center', 144 144 ], 145 145 'right' => [ 146 146 'title' =>__( 'Right', 'definitive-addons-for-elementor' ), 147 'icon' => ' fa fa-align-right',147 'icon' => 'eicon-text-align-right', 148 148 ], 149 149 ], … … 420 420 <div class="icon-list-container <?php echo esc_attr($icon_list_alignment) ?>"> 421 421 <?php 422 foreach ( $settings['icon_lists'] as $ icon_list) :422 foreach ( $settings['icon_lists'] as $key => $icon_list) : 423 423 424 424 … … 430 430 431 431 if ( ! empty( $icon_list['link']['url'] ) ) { 432 $this->add_link_attributes( 'icon_list_link' , $icon_list['link'] );432 $this->add_link_attributes( 'icon_list_link'.$key, $icon_list['link'] ); 433 433 } 434 434 435 435 if ($icon_list['link']['url']){ ?> 436 <a <?php $this->print_render_attribute_string( 'icon_list_link' ); ?>436 <a <?php $this->print_render_attribute_string( 'icon_list_link'.$key ); ?> 437 437 class="list-text <?php echo esc_attr($layout); ?>"> 438 <span class="<?php echo esc_attr($add_icon_left); ?> icon-left"></span><?php echo esc_html($icon_list['title']);?>438 <span class="<?php echo esc_attr($add_icon_left); ?> icon-left"></span><?php echo Reuse::dafe_wp_kses($icon_list['title']);?> 439 439 <span class="<?php echo esc_attr($add_icon_right); ?> icon-right"></span> 440 440 </a> … … 442 442 <span class="list-text <?php echo esc_attr($layout); ?>"> 443 443 <span class="<?php echo esc_attr($add_icon_left); ?> icon-left"></span> 444 <?php echo esc_html($icon_list['title']); ?>444 <?php echo Reuse::dafe_wp_kses($icon_list['title']); ?> 445 445 <span class="<?php echo esc_attr($add_icon_right); ?> icon-right"></span> 446 446 </span> -
definitive-addons-for-elementor/trunk/inc/Elements/Image_Overlay.php
r2698719 r2700212 121 121 [ 122 122 'label' => __( 'Title HTML Tag', 'definitive-addons-for-elementor' ), 123 'type' => Controls_Manager:: CHOOSE,123 'type' => Controls_Manager::SELECT, 124 124 125 125 'options' => [ 126 'h1' => [ 127 'title' => __( 'H1', 'definitive-addons-for-elementor' ), 128 'icon' => 'eicon-editor-h1' 129 ], 130 'h2' => [ 131 'title' => __( 'H2', 'definitive-addons-for-elementor' ), 132 'icon' => 'eicon-editor-h2' 133 ], 134 'h3' => [ 135 'title' => __( 'H3', 'definitive-addons-for-elementor' ), 136 'icon' => 'eicon-editor-h3' 137 ], 138 'h4' => [ 139 'title' => __( 'H4', 'definitive-addons-for-elementor' ), 140 'icon' => 'eicon-editor-h4' 141 ], 142 'h5' => [ 143 'title' => __( 'H5', 'definitive-addons-for-elementor' ), 144 'icon' => 'eicon-editor-h5' 145 ], 146 'h6' => [ 147 'title' => __( 'H6', 'definitive-addons-for-elementor' ), 148 'icon' => 'eicon-editor-h6' 149 ] 150 ], 126 'h1' => __( 'H1', 'definitive-addons-for-elementor' ), 127 'h2' => __( 'H2', 'definitive-addons-for-elementor' ), 128 'h3' => __( 'H3', 'definitive-addons-for-elementor' ), 129 'h4' => __( 'H4', 'definitive-addons-for-elementor' ), 130 'h5' => __( 'H5', 'definitive-addons-for-elementor' ), 131 'h6' => __( 'H6', 'definitive-addons-for-elementor' ), 132 'div' => __( 'div','definitive-addons-for-elementor' ), 133 'span' =>__( 'span','definitive-addons-for-elementor' ), 134 'p' =>__( 'P','definitive-addons-for-elementor' ), 135 ], 151 136 'default' => 'h2', 152 137 'condition' => [ … … 176 161 'overlay_subtitle', 177 162 [ 178 'type' => Controls_Manager::TEXT ,163 'type' => Controls_Manager::TEXTAREA, 179 164 'label_block' => true, 180 165 'condition' => [ … … 185 170 ] 186 171 ); 187 172 173 $this->add_control( 174 'subtitle_tag', 175 [ 176 'label' => __( 'Sub Title HTML Tag', 'definitive-addons-for-elementor' ), 177 'type' => Controls_Manager::SELECT, 178 179 'options' => [ 180 'h1' => __( 'H1', 'definitive-addons-for-elementor' ), 181 'h2' => __( 'H2', 'definitive-addons-for-elementor' ), 182 'h3' => __( 'H3', 'definitive-addons-for-elementor' ), 183 'h4' => __( 'H4', 'definitive-addons-for-elementor' ), 184 'h5' => __( 'H5', 'definitive-addons-for-elementor' ), 185 'h6' => __( 'H6', 'definitive-addons-for-elementor' ), 186 'div' => __( 'div','definitive-addons-for-elementor' ), 187 'span' =>__( 'span','definitive-addons-for-elementor' ), 188 'p' =>__( 'P','definitive-addons-for-elementor' ), 189 ], 190 'default' => 'H5', 191 'condition' => [ 192 'show_hide_ovl' => 'yes' 193 ], 194 'toggle' => false, 195 ] 196 ); 188 197 $this->end_controls_section(); 189 198 … … 222 231 ] 223 232 ); 224 225 226 227 233 228 234 $this->add_responsive_control( 229 235 'content_padding', … … 418 424 $show_hide_ovl = $this->get_settings_for_display( 'show_hide_ovl' ); 419 425 $title_tag = $this->get_settings_for_display( 'title_tag' ); 426 $subtitle_tag = $this->get_settings_for_display( 'subtitle_tag' ); 420 427 $overlay_styles = ''; 421 428 … … 437 444 <a <?php $this->print_render_attribute_string( 'overlay_link' ); ?>> 438 445 439 <<?php echo esc_attr($title_tag); ?> class="overlay-title"><?php echo esc_html($settings['overlay_title']); ?></<?php echo esc_attr($title_tag); ?>>446 <<?php Utils::print_validated_html_tag($title_tag); ?> class="overlay-title"><?php echo Reuse::dafe_wp_kses( $settings['overlay_title']); ?></<?php Utils::print_validated_html_tag($title_tag); ?>> 440 447 </a> 441 448 442 < h6 class="overlay-subtitle"><?php echo esc_html($settings['overlay_subtitle']); ?></h6>449 <<?php Utils::print_validated_html_tag($subtitle_tag); ?> class="overlay-subtitle"><?php echo Reuse::dafe_wp_kses($settings['overlay_subtitle']); ?></<?php Utils::print_validated_html_tag($subtitle_tag); ?>> 443 450 444 451 </div> -
definitive-addons-for-elementor/trunk/inc/Elements/Ninja_Forms.php
r2675151 r2700212 676 676 <div class="form_header <?php echo esc_attr($align); ?>"> 677 677 <?php if (!empty($settings['title'])){ ?> 678 <<?php echo esc_attr($title_tag);?> class="ninja_title <?php echo esc_attr($show_hide_title); ?>"><?php echo esc_html($settings['title']);?></<?php echo esc_attr($title_tag);?>>678 <<?php Utils::print_validated_html_tag($title_tag); ?> class="ninja_title <?php echo esc_attr($show_hide_title); ?>"><?php echo Reuse::dafe_wp_kses( $settings['title']);?></<?php Utils::print_validated_html_tag($title_tag);?>> 679 679 <?php } ?> 680 <p class="ninja_description <?php echo esc_attr($align); ?> <?php echo esc_attr($show_hide_desc); ?>"><?php echo esc_html($description_txt);?></p>681 </div>680 <p class="ninja_description <?php echo esc_attr($align); ?> <?php echo esc_attr($show_hide_desc); ?>"><?php echo Reuse::dafe_wp_kses($description_txt);?></p> 681 </div> 682 682 683 683 … … 685 685 if ($ninja_form_list){ 686 686 687 echo do_shortcode( '[ninja_form id="' . esc_attr($ninja_form_list) . '" ]' ); 687 echo do_shortcode( '[ninja_form id="' . esc_attr($ninja_form_list) . '" ]' ); 688 689 688 690 } 689 691 ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Popular_Post.php
r2698719 r2700212 178 178 179 179 <a href="<?php the_permalink(); ?>" target="_self"> 180 <img src="<?php echo esc_url($src) ?>" alt="<?php e cho esc_attr("Blog Post Thumbnail") ?>" />180 <img src="<?php echo esc_url($src) ?>" alt="<?php esc_attr_e(__('Blog Post Thumbnail','definitive-addons-for-elementor')) ?>" /> 181 181 </a> 182 182 -
definitive-addons-for-elementor/trunk/inc/Elements/Pricing_Table.php
r2698719 r2700212 945 945 946 946 $settings = $this->get_settings_for_display(); 947 $pricing_tables = $this->get_settings_for_display('pricing_tables');947 948 948 949 949 $title_tag = $this->get_settings_for_display('title_tag'); … … 962 962 963 963 <?php if ($settings['table_title']){ ?> 964 <<?php echo esc_attr($title_tag); ?> class="table-title"><?php echo esc_html($settings['table_title']); ?></<?php echo esc_attr($title_tag); ?>>964 <<?php Utils::print_validated_html_tag($title_tag); ?> class="table-title"><?php echo Reuse::dafe_wp_kses( $settings['table_title']); ?></<?php Utils::print_validated_html_tag($title_tag); ?>> 965 965 <?php } ?> 966 966 … … 968 968 <div class="table-price-container"> 969 969 970 <span class="table-price"><?php echo esc_html( $settings['table_price']); ?></span>970 <span class="table-price"><?php echo esc_html( $settings['table_price']); ?></span> 971 971 <span class="price-separator"><?php echo esc_html($settings['price_separator']); ?></span> 972 <span class="price-text"><?php echo esc_html($settings['price_text']); ?></span>972 <span class="price-text"><?php echo Reuse::dafe_wp_kses( $settings['price_text']); ?></span> 973 973 974 974 </div> … … 988 988 <div class="list-text"> 989 989 <span class="<?php echo esc_attr($add_icon_left); ?> icon-left"></span> 990 <?php echo esc_html($pricing_table['list_txt']); ?>990 <?php echo Reuse::dafe_wp_kses($pricing_table['list_txt']); ?> 991 991 <span class="<?php echo esc_attr($add_icon_right); ?> icon-right"></span> 992 992 </div> … … 1005 1005 1006 1006 <a <?php $this->print_render_attribute_string( 'pricing_link' ); ?> class="btn-default dactabtn"> 1007 <?php echo esc_html($settings['btn_txt']); ?>1007 <?php echo Reuse::dafe_wp_kses($settings['btn_txt']); ?> 1008 1008 <span class="<?php echo esc_attr($settings['btn_icon']['value']); ?> icon-btn"></span> 1009 1009 </a> -
definitive-addons-for-elementor/trunk/inc/Elements/Promo-box.php
r2698719 r2700212 362 362 363 363 <a <?php $this->print_render_attribute_string( 'promo_box_link' ); ?>> 364 <h6 class="promo-box-title"><?php echo esc_html($settings['promo_title']); ?></h6>364 <h6 class="promo-box-title"><?php echo Reuse::dafe_wp_kses( $settings['promo_title']); ?></h6> 365 365 </a> 366 366 -
definitive-addons-for-elementor/trunk/inc/Elements/Skillbar.php
r2689901 r2700212 247 247 $settings = $this->get_settings_for_display(); 248 248 $bar_height = $this->get_settings_for_display('bar_height'); 249 250 251 $skill_text = $this->get_settings_for_display('skill_text'); 249 252 250 $skill_val = $this->get_settings_for_display('skill_val'); 253 251 … … 262 260 <?php if ($skillbar_style =='block'){ ?> 263 261 264 <span class="title" style="line-height:<?php echo esc_attr($bar_height['size']); ?>px;"><?php echo esc_html($skill_text); ?></span>262 <span class="title" style="line-height:<?php echo esc_attr($bar_height['size']); ?>px;"><?php $this->print_unescaped_setting($skill_text); ?></span> 265 263 266 264 <?php } ?> … … 273 271 <span class="title" style="height:<?php echo esc_attr($bar_height['size']) ?>px;line-height:<?php echo esc_attr($bar_height['size']) ?>px;"> 274 272 275 <?php echo esc_html($skill_text); ?></span>273 <?php echo Reuse::dafe_wp_kses( $settings['skill_text']); ?></span> 276 274 277 275 <?php } ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Slider.php
r2698719 r2700212 712 712 <div <?php $this->print_render_attribute_string( 'definitive-slick' ); ?>> 713 713 714 <?php foreach ( $settings['slick_slides'] as $ slide ) {714 <?php foreach ( $settings['slick_slides'] as $key => $slide ) { 715 715 716 716 717 717 $slider_image = $slide['slider_image']['url']; 718 718 if ( ! empty( $slide['link']['url'] ) ) { 719 $this->add_link_attributes( 'slider_link', $settings['link'] );720 }719 $this->add_link_attributes( 'slider_link'.$key, $slide['link'] ); 720 } 721 721 722 722 ?> … … 726 726 727 727 <?php if ( $slider_image ) { ?> 728 <a <?php $this->print_render_attribute_string( 'slider_link' ); ?>>728 <a <?php $this->print_render_attribute_string( 'slider_link'.$key ); ?>> 729 729 730 730 <img class="definitive-slide-img" src="<?php echo esc_url( $slider_image ); ?>" alt="<?php echo esc_attr( $slide['title'] ); ?>"> … … 735 735 <div class="definitive-slide-cta"> 736 736 <?php if ( $slide['title'] ) { ?> 737 <a <?php $this->print_render_attribute_string( 'slider_link' ); ?> >737 <a <?php $this->print_render_attribute_string( 'slider_link'.$key ); ?> > 738 738 739 <h2 class="definitive-slide-title"><?php echo esc_html( $slide['title'] ); ?></h2>739 <h2 class="definitive-slide-title"><?php echo Reuse::dafe_wp_kses( $slide['title'] ); ?></h2> 740 740 </a> 741 741 <?php } ?> 742 742 <?php if ( $slide['subtitle'] ) { ?> 743 <p class="definitive-slide-subtitle" style="text-align:center;"><?php echo esc_html( $slide['subtitle'] ); ?></p>743 <p class="definitive-slide-subtitle" style="text-align:center;"><?php echo Reuse::dafe_wp_kses( $slide['subtitle'] ); ?></p> 744 744 <?php } ?> 745 745 … … 747 747 <div class="da_button_slider"> 748 748 749 <a <?php $this->print_render_attribute_string( 'slider_link' ); ?> class="btn-default dabtnslide">749 <a <?php $this->print_render_attribute_string( 'slider_link'.$key ); ?> class="btn-default dabtnslide"> 750 750 751 751 <?php echo esc_html($slide['btn_txt']); ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Social_Icon.php
r2698719 r2700212 620 620 <div class="dafe-social-icons-container"> 621 621 622 <?php foreach ( $settings['dafe_social_icon_repeater'] as $ social_icon ) : ?>622 <?php foreach ( $settings['dafe_social_icon_repeater'] as $key => $social_icon ) : ?> 623 623 624 624 <?php if ( ! empty( $social_icon['social_icon_link']['url'] ) ) { 625 $this->add_link_attributes( 'social_link' , $social_icon['social_icon_link'] );625 $this->add_link_attributes( 'social_link'.$key, $social_icon['social_icon_link'] ); 626 626 } ?> 627 627 <div class="dafe-icon-container elementor-repeater-item-<?php echo esc_attr($social_icon['_id']); ?> elementor-animation-<?php echo esc_attr($settings['dafe_social_hvr_animation'] ); ?>"> 628 <a <?php $this->print_render_attribute_string( 'social_link' ); ?>>628 <a <?php $this->print_render_attribute_string( 'social_link'.$key ); ?>> 629 629 <i class="<?php echo esc_attr($social_icon['dafe_social_icon']['value']); ?> icon"> 630 630 -
definitive-addons-for-elementor/trunk/inc/Elements/Staff_Member.php
r2698719 r2700212 182 182 'social_icons', 183 183 [ 184 'show_label' => false,184 185 185 'type' => Controls_Manager::REPEATER, 186 186 'fields' => $repeater->get_controls(), 187 'title_field' => '<# print("Social Icon"); #>',187 188 188 'default' => [ 189 189 [ 190 'icon_link' => ['url' => 'https://facebook.com/'], 191 'icon_name' => 'facebook' 190 'icon_name' => ['value' => 'fab fa-facebook'], 191 192 'icon_link' => ['url' => 'https://facebook.com/'], 192 193 ], 193 194 [ 194 'icon_link' => ['url' => 'https://twitter.com/'], 195 'icon_name' => 'twitter' 195 196 'icon_name' => ['value' => 'fab fa-twitter'], 197 'icon_link' => ['url' => 'https://twitter.com/'], 196 198 ], 197 199 [ 198 'icon_link' => ['url' => 'https://linkedin.com/'], 199 'icon_name' => 'linkedin' 200 201 'icon_name' => ['value' => 'fab fa-linkedin'], 202 'icon_link' => ['url' => 'https://linkedin.com/'], 200 203 ] 201 204 ], 205 'title_field' => '<# print("Social Icon"); #>', 202 206 ] 203 207 ); … … 865 869 $image = $settings['image']['url']; 866 870 867 if ( ! empty( $settings['icon_link']['url'] ) ) { 868 $this->add_link_attributes( 'staff_link', $settings['icon_link'] ); 869 } 871 870 872 ?> 871 873 … … 882 884 <div class="staff-member-content"> 883 885 <?php if ( $settings['staff_name'] ) : ?> 884 <h3 class="staff-member-name"><?php echo esc_html( $settings['staff_name'] ); ?></h3>886 <h3 class="staff-member-name"><?php echo Reuse::dafe_wp_kses( $settings['staff_name'] ); ?></h3> 885 887 <?php endif; ?> 886 888 <?php if ( $settings['staff_position'] ) : ?> 887 <h6 class="staff-member-job-position"><?php echo esc_html( $settings['staff_position']); ?></h6>889 <h6 class="staff-member-job-position"><?php echo Reuse::dafe_wp_kses( $settings['staff_position']); ?></h6> 888 890 <?php endif; ?> 889 891 <?php if ( $settings['staff_text'] ) : ?> 890 <p class="staff-member-text"><?php echo esc_html( $settings['staff_text']); ?></p>892 <p class="staff-member-text"><?php echo Reuse::dafe_wp_kses( $settings['staff_text']); ?></p> 891 893 <?php endif; ?> 892 894 </div> 893 895 894 896 <div class="social-icon-profile <?php echo esc_attr($settings['social_off_on']); ?>"> 895 <?php foreach ( $settings['social_icons'] as $social_icon ) : ?> 897 <?php foreach ( $settings['social_icons'] as $key => $social_icon ) : ?> 898 <?php if ( ! empty( $social_icon['icon_link']['url'] ) ) { 899 $this->add_link_attributes( 'staff_link'.$key, $social_icon['icon_link'] ); 900 } ?> 896 901 <div class="icon-container" style="text-align:center;display: inline-block;"> 897 <a <?php $this->print_render_attribute_string( 'staff_link' ); ?>>902 <a <?php $this->print_render_attribute_string( 'staff_link'.$key ); ?>> 898 903 <i class="<?php echo esc_attr($social_icon['icon_name']['value']); ?> icon"></i> 899 904 </a> -
definitive-addons-for-elementor/trunk/inc/Elements/Subscription.php
r2675151 r2700212 276 276 <form action="<?php echo wp_kses_post($settings['mailchimp_form_action_url']); ?>" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> 277 277 <div id="mc_embed_signup_scroll"> 278 <<?php echo esc_attr($title_tag ); ?> class="subscription-text <?php echo esc_attr($subscription_style); ?>"> <?php echo esc_html($settings['subscription_text']); ?> </<?php echo esc_attr($title_tag ); ?>>278 <<?php Utils::print_validated_html_tag($title_tag); ?> class="subscription-text <?php echo esc_attr($subscription_style); ?>"> <?php echo Reuse::dafe_wp_kses( $settings['subscription_text']); ?> </<?php Utils::print_validated_html_tag($title_tag ); ?>> 279 279 <input type="email" value="" name="EMAIL" class="email subscription-email <?php echo esc_attr($subscription_style); ?>" id="mce-EMAIL" placeholder="email address" required> 280 280 <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups--> -
definitive-addons-for-elementor/trunk/inc/Elements/Tabs.php
r2675151 r2700212 724 724 <?php Icons_Manager::render_icon( $settings['dafe_tab_title_icon'], [ 'aria-hidden' => 'true' ] ); ?> 725 725 </span> 726 <h4><?php echo esc_html( $tab_item['title'] ); ?></h4>726 <h4><?php echo Reuse::dafe_wp_kses( $tab_item['title'] ); ?></h4> 727 727 </a> 728 728 … … 735 735 <div class="dafe-tabs-content-container"> 736 736 <?php 737 foreach ( $settings['dafe_tab_item_repeater'] as $ tab_item ) : ?>737 foreach ( $settings['dafe_tab_item_repeater'] as $key => $tab_item ) : ?> 738 738 739 739 … … 745 745 <?php if ( $tab_item['dafe_show_hide_btn'] ) : ?> 746 746 <?php if ( $tab_item['dafe_tab_btn_text'] ) : ?> 747 748 <?php if ( ! empty( $tab_item['dafe_tab_btn_url']['url'] ) ) { 749 $this->add_link_attributes( 'tab_btn_link'.$key, $tab_item['dafe_tab_btn_url'] ); 750 } ?> 751 747 752 <div class="tabs-btn-container"> 748 <a href="<?php echo esc_url($tab_item['dafe_tab_btn_url']['url']); ?>" class="tabs-btn link" target="<?php echo esc_attr($tab_item['dafe_tab_btn_url']['is_external']); ?>">753 <a <?php $this->print_render_attribute_string( 'tab_btn_link'.$key ); ?> class="tabs-btn link"> 749 754 750 755 <?php echo esc_html($tab_item['dafe_tab_btn_text']); ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Teaser_Box.php
r2698719 r2700212 725 725 <?php if ( $settings['box_title'] ) : ?> 726 726 <a <?php $this->print_render_attribute_string( 'card_link' ); ?>> 727 <<?php echo esc_attr($title_tag); ?> class="image-box-title"><?php echo esc_html( $settings['box_title'] ); ?></<?php echo esc_attr($title_tag); ?>>727 <<?php Utils::print_validated_html_tag($title_tag); ?> class="image-box-title"><?php echo Reuse::dafe_wp_kses( $settings['box_title']); ?></<?php Utils::print_validated_html_tag($title_tag); ?>> 728 728 </a> 729 729 <?php endif; ?> 730 730 731 731 <?php if ( $settings['box_text'] ) : ?> 732 <p class="image-box-subtitle"><?php echo esc_html( $settings['box_text'] ); ?></p>732 <p class="image-box-subtitle"><?php echo Reuse::dafe_wp_kses( $settings['box_text'] ); ?></p> 733 733 <?php endif; ?> 734 734 <?php if ( $settings['box_button'] ) : ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Testimonial.php
r2697892 r2700212 655 655 <div class="dafe-testimonial-title"> 656 656 <?php if ( $settings['name'] ) : ?> 657 <span class="dafe-author-name"><?php echo esc_html( $settings['name']); ?></span>657 <span class="dafe-author-name"><?php echo Reuse::dafe_wp_kses( $settings['name']); ?></span> 658 658 <?php endif; ?> 659 659 <?php if ( $settings['title'] ) : ?> 660 <span class="dafe-author-title"><?php echo esc_html( $settings['title'] ); ?></span>660 <span class="dafe-author-title"><?php echo esc_html( $settings['title']); ?></span> 661 661 <?php endif; ?> 662 662 <?php if ( $settings['organization'] ) : ?> 663 <h5 class="dafe-author-organization"><?php echo esc_html( $settings['organization'] ); ?></h5>663 <h5 class="dafe-author-organization"><?php echo esc_html( $settings['organization']); ?></h5> 664 664 <?php endif; ?> 665 665 </div> … … 668 668 <p> 669 669 <?php if ($settings['show_hide_quote'] == 'yes'){ ?> 670 <blockquote class="speech"><i class="fa fa-quote-left"></i><?php echo esc_html( $settings['reviewer_text'] ); ?>670 <blockquote class="speech"><i class="fa fa-quote-left"></i><?php echo Reuse::dafe_wp_kses( $settings['reviewer_text'] ); ?> 671 671 </blockquote> 672 672 <?php 673 673 } else { 674 echo esc_html( $settings['reviewer_text'] );674 echo Reuse::dafe_wp_kses( $settings['reviewer_text'] ); 675 675 } 676 676 ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Testimonial_Slider.php
r2697892 r2700212 152 152 'type' => Controls_Manager::REPEATER, 153 153 'fields' => $repeater->get_controls(), 154 'title_field' => '<# print("Slide"); #>',154 155 155 'default' => [ 156 156 [ … … 158 158 'url' => Utils::get_placeholder_image_src(), 159 159 ], 160 [ 'title' => 'Testimonial-1' ], 160 161 ], 161 162 [ … … 163 164 'url' => Utils::get_placeholder_image_src(), 164 165 ], 166 [ 'title' => 'Testimonial-2' ], 165 167 ], 166 168 [ … … 168 170 'url' => Utils::get_placeholder_image_src(), 169 171 ], 172 [ 'title' => 'Testimonial-3' ], 170 173 ], 171 174 172 175 173 ] 176 ], 177 'title_field' => '{{{ title }}}', 174 178 ] 175 179 ); … … 904 908 <div id="<?php echo esc_attr($id); ?>" <?php $this->print_render_attribute_string( 'nl-testimonial-entry' ); ?>> 905 909 906 <?php foreach ( $settings['slick_slides'] as $ slide ) {910 <?php foreach ( $settings['slick_slides'] as $key => $slide ) { 907 911 908 912 if ( $slide['link']['url'] ) { 909 $this->add_link_attributes( 'link' , $slide['link'] );913 $this->add_link_attributes( 'link'.$key, $slide['link'] ); 910 914 } 911 915 … … 919 923 $testimonial_image = Group_Control_Image_Size::get_attachment_image_html( $slide, 'thumbnail', 'image' ); 920 924 if ( $slide['link']['url'] ) : 921 $testimonial_image = '<a ' . $this->get_render_attribute_string( 'link' ) . '>' . $testimonial_image . '</a>';925 $testimonial_image = '<a ' . $this->get_render_attribute_string( 'link') . '>' . $testimonial_image . '</a>'; 922 926 endif; 923 927 echo wp_kses_post( $testimonial_image ); ?> … … 928 932 <div class="dafe-testimonial-title"> 929 933 <?php if ( $slide['name'] ) : ?> 930 <span class="dafe-author-name"><?php echo esc_html( $slide['name'] ); ?></span>934 <span class="dafe-author-name"><?php echo Reuse::dafe_wp_kses( $slide['name'] ); ?></span> 931 935 <?php endif; ?> 932 936 <?php if ( $slide['title'] ) : ?> … … 941 945 <p> 942 946 <?php if ($settings['show_hide_quote'] == 'yes'){ ?> 943 <blockquote class="speech"><i class="fa fa-quote-left"></i><?php echo esc_html( $slide['reviewer_text'] ); ?>947 <blockquote class="speech"><i class="fa fa-quote-left"></i><?php echo Reuse::dafe_wp_kses( $slide['reviewer_text'] ); ?> 944 948 </blockquote> 945 949 <?php 946 950 } else { 947 951 948 echo esc_html( $slide['reviewer_text'] );952 echo Reuse::dafe_wp_kses( $slide['reviewer_text'] ); 949 953 } 950 954 ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Type.php
r2689901 r2700212 91 91 'left' => [ 92 92 'title' =>__( 'Left', 'definitive-addons-for-elementor' ), 93 'icon' => ' fa fa-align-left',93 'icon' => 'eicon-text-align-left', 94 94 ], 95 95 'center' => [ 96 96 'title' =>__( 'Center', 'definitive-addons-for-elementor' ), 97 'icon' => ' fa fa-align-center',97 'icon' => 'eicon-text-align-center', 98 98 ], 99 99 'right' => [ 100 100 'title' =>__( 'Right', 'definitive-addons-for-elementor' ), 101 'icon' => ' fa fa-align-right',101 'icon' => 'eicon-text-align-right', 102 102 ], 103 104 103 ], 105 104 'default' => 'center' -
definitive-addons-for-elementor/trunk/inc/Elements/Wording.php
r2675151 r2700212 542 542 543 543 <div class="<?php echo esc_attr($wording_display) ?> word1 animated <?php echo esc_attr($animation_iteration); ?> <?php echo esc_attr($animation1); ?>"> 544 <?php echo esc_html($settings['word1']); ?>544 <?php echo Reuse::dafe_wp_kses($settings['word1']); ?> 545 545 </div> 546 546 547 547 <div class="<?php echo esc_attr($wording_display) ?> word2 animated <?php echo esc_attr($animation_iteration); ?> <?php echo esc_attr($animation2); ?>"> 548 <?php echo esc_html($settings['word2']); ?>548 <?php echo Reuse::dafe_wp_kses($settings['word2']); ?> 549 549 </div> 550 550 551 551 <div class="<?php echo esc_attr($wording_display) ?> word3 animated <?php echo esc_attr($animation_iteration); ?> <?php echo esc_attr($animation3); ?>"> 552 <?php echo esc_html($settings['word3']); ?>552 <?php echo Reuse::dafe_wp_kses($settings['word3']); ?> 553 553 </div> 554 554 555 555 <div class="<?php echo esc_attr($wording_display) ?> word4 animated <?php echo esc_attr($animation_iteration); ?> <?php echo esc_attr($animation4); ?>"> 556 <?php echo esc_html($settings['word4']); ?>556 <?php echo Reuse::dafe_wp_kses($settings['word4']); ?> 557 557 </div> 558 558 -
definitive-addons-for-elementor/trunk/inc/Elements/WpForm.php
r2675151 r2700212 711 711 <div class="form_header <?php echo esc_attr($align); ?>"> 712 712 <?php if (!empty($settings['title'])){ ?> 713 <<?php echo esc_attr($title_tag);?> class="wp_title <?php echo esc_attr($show_hide_title); ?>"><?php echo esc_html($settings['title']);?></<?php echo esc_attr($title_tag);?>>713 <<?php echo esc_attr($title_tag);?> class="wp_title <?php echo esc_attr($show_hide_title); ?>"><?php echo Reuse::dafe_wp_kses( $settings['title']);?></<?php echo esc_attr($title_tag);?>> 714 714 <?php } ?> 715 <p class="wp_description <?php echo esc_attr($align); ?> <?php echo esc_attr($show_hide_desc); ?>"><?php echo esc_html($description_txt);?></p>715 <p class="wp_description <?php echo esc_attr($align); ?> <?php echo esc_attr($show_hide_desc); ?>"><?php echo Reuse::dafe_wp_kses($description_txt);?></p> 716 716 </div> 717 717 -
definitive-addons-for-elementor/trunk/inc/Elements/heading-with-separator.php
r2686404 r2700212 369 369 ?> 370 370 371 <div class="widget-heading" 372 style="<?php echo esc_attr($container_styles); ?>"> 371 <div class="widget-heading" style="<?php echo esc_attr($container_styles); ?>"> 373 372 374 <<?php echo esc_attr($title_tag); ?> class="font-heading" style="<?php echo esc_attr($styles); ?>"> 375 <?php echo esc_html($settings['heading']); ?> 376 </<?php echo esc_attr($title_tag); ?>> 373 <<?php Utils::print_validated_html_tag($title_tag); ?> class="font-heading" style="<?php echo esc_attr($styles); ?>"> 374 <?php echo Reuse::dafe_wp_kses( $settings['heading']); ?> 375 </<?php Utils::print_validated_html_tag($title_tag); ?>> 376 377 377 <div class="separator" style="<?php echo esc_attr($separator_styles); ?>"></div> 378 378 </div> -
definitive-addons-for-elementor/trunk/inc/Reuses/Reuse.php
r2697892 r2700212 269 269 'cc-jcb' 270 270 ]; 271 } 272 273 public static function dafe_wp_kses($raw_html) { 274 275 return wp_kses($raw_html, self::dafe_allowed_html_tag()); 276 } 277 278 279 public static function dafe_allowed_html_tag() { 280 281 $allowed_html = array( 282 'a' => array( 283 'class' => array(), 284 'href' => array(), 285 'rel' => array(), 286 'title' => array(), 287 'style' => array(), 288 'id' => array(), 289 ), 290 'abbr' => array( 291 'title' => array(), 292 ), 293 'b' => array(), 294 'blockquote' => array( 295 'cite' => array(), 296 'style' => array(), 297 ), 298 299 'del' => array( 300 'datetime' => array(), 301 'title' => array(), 302 ), 303 'dd' => array(), 304 'div' => array( 305 'class' => array(), 306 'title' => array(), 307 'style' => array(), 308 'id' => array(), 309 ), 310 'cite' => array( 311 'title' => array(), 312 'style' => array(), 313 ), 314 'code' => array(), 315 'i' => array(), 316 'dl' => array(), 317 'dt' => array(), 318 'em' => array(), 319 'h1' => array(), 320 'h2' => array(), 321 'h3' => array(), 322 'h4' => array(), 323 'h5' => array(), 324 'h6' => array(), 325 'p' => array( 326 'class' => array(), 327 ), 328 'img' => array( 329 'alt' => array(), 330 'class' => array(), 331 'height' => array(), 332 'src' => array(), 333 'width' => array(), 334 'style' => array(), 335 'id' => array(), 336 ), 337 'li' => array( 338 'class' => array(), 339 ), 340 'ol' => array( 341 'class' => array(), 342 ), 343 344 'q' => array( 345 'cite' => array(), 346 'title' => array(), 347 ), 348 'span' => array( 349 'class' => array(), 350 'title' => array(), 351 'style' => array(), 352 ), 353 'strike' => array(), 354 'strong' => array(), 355 'ul' => array( 356 'class' => array(), 357 ), 358 ); 359 360 return $allowed_html; 271 361 } 272 362 -
definitive-addons-for-elementor/trunk/languages/definitive-addons-for-elementor.pot
r2698719 r2700212 3 3 msgstr "" 4 4 "Project-Id-Version: definitive-addons-for-elementor\n" 5 "POT-Creation-Date: 2022-03- 16 14:03+0600\n"5 "POT-Creation-Date: 2022-03-27 20:01+0600\n" 6 6 "PO-Revision-Date: 2020-03-12 14:48+0600\n" 7 7 "Last-Translator: \n" … … 58 58 #: inc/Elements/Filterable_Portfolio.php:159 59 59 #: inc/Elements/Post_Carousel.php:100 inc/Elements/Post_Grid.php:178 60 #: inc/Elements/Slider.php:8 6inc/Elements/Tabs.php:6160 #: inc/Elements/Slider.php:87 inc/Elements/Tabs.php:61 61 61 #: inc/Elements/Testimonial.php:116 inc/Elements/Testimonial_Slider.php:106 62 62 msgid "Title" … … 86 86 #: inc/Elements/CTA.php:153 inc/Elements/Creative_Button.php:93 87 87 #: inc/Elements/Creative_Button.php:94 inc/Elements/Pricing_Table.php:249 88 #: inc/Elements/Pricing_Table.php:251 inc/Elements/Slider.php:10 689 #: inc/Elements/Slider.php:10 7inc/Elements/Tabs.php:8190 #: inc/Elements/Teaser_Box.php:1 8288 #: inc/Elements/Pricing_Table.php:251 inc/Elements/Slider.php:107 89 #: inc/Elements/Slider.php:108 inc/Elements/Tabs.php:81 90 #: inc/Elements/Teaser_Box.php:196 91 91 msgid "Button Text" 92 92 msgstr "" … … 99 99 #: inc/Elements/Accordion.php:98 inc/Elements/CTA.php:159 100 100 #: inc/Elements/Creative_Button.php:101 inc/Elements/Pricing_Table.php:257 101 #: inc/Elements/Tabs.php:94 inc/Elements/Teaser_Box.php:1 94101 #: inc/Elements/Tabs.php:94 inc/Elements/Teaser_Box.php:146 102 102 msgid "Button Link" 103 103 msgstr "" … … 157 157 #: inc/Elements/Accordion.php:230 inc/Elements/CTA.php:417 158 158 #: inc/Elements/Category_Box.php:149 inc/Elements/Contact_form_7.php:290 159 #: inc/Elements/Feature_list.php: 384inc/Elements/Filterable_Portfolio.php:486160 #: inc/Elements/Flip_Box.php:303 inc/Elements/Icon_Box.php:53 5161 #: inc/Elements/Image_Overlay.php:28 0inc/Elements/Ninja_Forms.php:308162 #: inc/Elements/Popular_Post.php:88 inc/Elements/Post_Carousel.php:2 32159 #: inc/Elements/Feature_list.php:417 inc/Elements/Filterable_Portfolio.php:486 160 #: inc/Elements/Flip_Box.php:303 inc/Elements/Icon_Box.php:536 161 #: inc/Elements/Image_Overlay.php:286 inc/Elements/Ninja_Forms.php:308 162 #: inc/Elements/Popular_Post.php:88 inc/Elements/Post_Carousel.php:275 163 163 #: inc/Elements/Post_Grid.php:302 inc/Elements/Products.php:231 164 #: inc/Elements/Promo-box.php:219 inc/Elements/Slider.php: 300165 #: inc/Elements/Tabs.php:245 inc/Elements/Teaser_Box.php:3 38166 #: inc/Elements/Testimonial.php:384 inc/Elements/Testimonial_Slider.php:49 1164 #: inc/Elements/Promo-box.php:219 inc/Elements/Slider.php:290 165 #: inc/Elements/Tabs.php:245 inc/Elements/Teaser_Box.php:360 166 #: inc/Elements/Testimonial.php:384 inc/Elements/Testimonial_Slider.php:495 167 167 #: inc/Elements/WpForm.php:295 inc/Elements/heading-with-separator.php:162 168 168 msgid "Title Color" … … 175 175 176 176 #: inc/Elements/Accordion.php:253 inc/Elements/CTA.php:428 177 #: inc/Elements/Category_Box.php:160 inc/Elements/Feature_list.php: 394177 #: inc/Elements/Category_Box.php:160 inc/Elements/Feature_list.php:427 178 178 #: inc/Elements/Filterable_Portfolio.php:497 inc/Elements/Flip_Box.php:314 179 #: inc/Elements/Icon_Box.php:54 6 inc/Elements/Image_Overlay.php:292180 #: inc/Elements/Popular_Post.php:99 inc/Elements/Post_Carousel.php:2 44179 #: inc/Elements/Icon_Box.php:547 inc/Elements/Image_Overlay.php:298 180 #: inc/Elements/Popular_Post.php:99 inc/Elements/Post_Carousel.php:287 181 181 #: inc/Elements/Post_Grid.php:313 inc/Elements/Promo-box.php:230 182 #: inc/Elements/Tabs.php:268 inc/Elements/Teaser_Box.php:3 49182 #: inc/Elements/Tabs.php:268 inc/Elements/Teaser_Box.php:371 183 183 #: inc/Elements/heading-with-separator.php:185 184 184 msgid "Title Hover Color" … … 200 200 #: inc/Elements/Accordion.php:358 inc/Elements/Accordion.php:452 201 201 #: inc/Elements/Category_List.php:198 inc/Elements/Counter.php:169 202 #: inc/Elements/Feature_list.php: 168inc/Elements/Icon_Box.php:323202 #: inc/Elements/Feature_list.php:201 inc/Elements/Icon_Box.php:323 203 203 #: inc/Elements/Icon_List.php:212 inc/Elements/Pricing_Table.php:533 204 #: inc/Elements/Social_Icon.php:47 7 inc/Elements/Staff_Member.php:519204 #: inc/Elements/Social_Icon.php:476 inc/Elements/Staff_Member.php:572 205 205 #: inc/Elements/Tabs.php:329 206 206 msgid "Size" … … 210 210 #: inc/Elements/CTA.php:295 inc/Elements/Category_List.php:221 211 211 #: inc/Elements/Counter.php:230 inc/Elements/Creative_Button.php:340 212 #: inc/Elements/Feature_list.php:2 31inc/Elements/Icon_Box.php:411212 #: inc/Elements/Feature_list.php:264 inc/Elements/Icon_Box.php:411 213 213 #: inc/Elements/Icon_List.php:234 inc/Elements/Pricing_Table.php:555 214 #: inc/Elements/Staff_Member.php: 583inc/Elements/Tabs.php:352214 #: inc/Elements/Staff_Member.php:636 inc/Elements/Tabs.php:352 215 215 msgid "Icon Color" 216 216 msgstr "" … … 219 219 #: inc/Elements/CTA.php:318 inc/Elements/Category_List.php:233 220 220 #: inc/Elements/Counter.php:257 inc/Elements/Creative_Button.php:352 221 #: inc/Elements/Feature_list.php:2 43inc/Elements/Icon_Box.php:423221 #: inc/Elements/Feature_list.php:276 inc/Elements/Icon_Box.php:423 222 222 #: inc/Elements/Icon_List.php:246 inc/Elements/Pricing_Table.php:567 223 #: inc/Elements/Staff_Member.php: 595inc/Elements/Tabs.php:364223 #: inc/Elements/Staff_Member.php:648 inc/Elements/Tabs.php:364 224 224 msgid "Icon Hover Color" 225 225 msgstr "" 226 226 227 227 #: inc/Elements/Accordion.php:402 inc/Elements/Accordion.php:474 228 #: inc/Elements/Testimonial.php:250 inc/Elements/Testimonial_Slider.php:3 39228 #: inc/Elements/Testimonial.php:250 inc/Elements/Testimonial_Slider.php:343 229 229 msgid "Right Spacing" 230 230 msgstr "" 231 231 232 232 #: inc/Elements/Accordion.php:419 inc/Elements/Testimonial.php:268 233 #: inc/Elements/Testimonial_Slider.php:3 56233 #: inc/Elements/Testimonial_Slider.php:360 234 234 msgid "Left Spacing" 235 235 msgstr "" … … 239 239 msgstr "" 240 240 241 #: inc/Elements/Accordion.php:525 inc/Elements/Counter.php: 468242 #: inc/Elements/Feature_list.php:3 27inc/Elements/Post_Grid.php:551241 #: inc/Elements/Accordion.php:525 inc/Elements/Counter.php:587 242 #: inc/Elements/Feature_list.php:360 inc/Elements/Post_Grid.php:551 243 243 #: inc/Elements/Tabs.php:481 244 244 msgid "Content Padding" … … 265 265 #: inc/Elements/Filterable_Portfolio.php:664 inc/Elements/Ninja_Forms.php:566 266 266 #: inc/Elements/Post_Grid.php:496 inc/Elements/Tabs.php:584 267 #: inc/Elements/Teaser_Box.php:4 75inc/Elements/WpForm.php:606267 #: inc/Elements/Teaser_Box.php:497 inc/Elements/WpForm.php:606 268 268 msgid "Button Color" 269 269 msgstr "" … … 272 272 #: inc/Elements/Contact_form_7.php:712 inc/Elements/Creative_Button.php:211 273 273 #: inc/Elements/Filterable_Portfolio.php:675 inc/Elements/Ninja_Forms.php:577 274 #: inc/Elements/Post_Grid.php:506 inc/Elements/Pricing_Table.php:7 80275 #: inc/Elements/Slider.php: 493inc/Elements/Tabs.php:596276 #: inc/Elements/Teaser_Box.php: 487inc/Elements/WpForm.php:617274 #: inc/Elements/Post_Grid.php:506 inc/Elements/Pricing_Table.php:773 275 #: inc/Elements/Slider.php:548 inc/Elements/Tabs.php:596 276 #: inc/Elements/Teaser_Box.php:509 inc/Elements/WpForm.php:617 277 277 msgid "Button Background Color" 278 278 msgstr "" … … 281 281 #: inc/Elements/Contact_form_7.php:722 282 282 #: inc/Elements/Filterable_Portfolio.php:686 inc/Elements/Ninja_Forms.php:587 283 #: inc/Elements/Post_Grid.php:516 inc/Elements/Pricing_Table.php:7 91284 #: inc/Elements/Slider.php:5 04inc/Elements/Subscription.php:173285 #: inc/Elements/Tabs.php:608 inc/Elements/Teaser_Box.php: 499283 #: inc/Elements/Post_Grid.php:516 inc/Elements/Pricing_Table.php:784 284 #: inc/Elements/Slider.php:559 inc/Elements/Subscription.php:173 285 #: inc/Elements/Tabs.php:608 inc/Elements/Teaser_Box.php:521 286 286 #: inc/Elements/WpForm.php:627 287 287 msgid "Button Hover Color" … … 291 291 #: inc/Elements/Contact_form_7.php:732 inc/Elements/Creative_Button.php:223 292 292 #: inc/Elements/Filterable_Portfolio.php:697 inc/Elements/Ninja_Forms.php:597 293 #: inc/Elements/Post_Grid.php:526 inc/Elements/Pricing_Table.php: 802294 #: inc/Elements/Slider.php:5 15inc/Elements/Subscription.php:195295 #: inc/Elements/Tabs.php:620 inc/Elements/Teaser_Box.php:5 11293 #: inc/Elements/Post_Grid.php:526 inc/Elements/Pricing_Table.php:795 294 #: inc/Elements/Slider.php:570 inc/Elements/Subscription.php:195 295 #: inc/Elements/Tabs.php:620 inc/Elements/Teaser_Box.php:533 296 296 #: inc/Elements/WpForm.php:637 297 297 msgid "Button Hover Background Color" … … 300 300 #: inc/Elements/Accordion.php:686 inc/Elements/Contact_form_7.php:751 301 301 #: inc/Elements/Creative_Button.php:265 inc/Elements/Ninja_Forms.php:616 302 #: inc/Elements/ Tabs.php:641 inc/Elements/Teaser_Box.php:532303 #: inc/Elements/ WpForm.php:656302 #: inc/Elements/Pricing_Table.php:749 inc/Elements/Tabs.php:641 303 #: inc/Elements/Teaser_Box.php:554 inc/Elements/WpForm.php:656 304 304 msgid "Button Padding" 305 305 msgstr "" … … 311 311 #: inc/Elements/Accordion.php:726 inc/Elements/CTA.php:628 312 312 #: inc/Elements/Contact_form_7.php:771 inc/Elements/Creative_Button.php:285 313 #: inc/Elements/Ninja_Forms.php:636 inc/Elements/Pricing_Table.php:8 52314 #: inc/Elements/Slider.php: 565inc/Elements/Subscription.php:205315 #: inc/Elements/Tabs.php:681 inc/Elements/Teaser_Box.php:5 52313 #: inc/Elements/Ninja_Forms.php:636 inc/Elements/Pricing_Table.php:845 314 #: inc/Elements/Slider.php:620 inc/Elements/Subscription.php:205 315 #: inc/Elements/Tabs.php:681 inc/Elements/Teaser_Box.php:574 316 316 #: inc/Elements/WpForm.php:676 317 317 msgid "Button Border Radius" … … 324 324 #: inc/Elements/Accordion.php:765 inc/Elements/CTA.php:718 325 325 #: inc/Elements/Flip_Box.php:456 inc/Elements/Icon_Box.php:276 326 #: inc/Elements/Post_Grid.php:606 inc/Elements/Pricing_Table.php:92 8327 #: inc/Elements/Teaser_Box.php:6 48inc/Elements/Testimonial.php:609328 #: inc/Elements/Testimonial_Slider.php:71 1326 #: inc/Elements/Post_Grid.php:606 inc/Elements/Pricing_Table.php:921 327 #: inc/Elements/Teaser_Box.php:670 inc/Elements/Testimonial.php:609 328 #: inc/Elements/Testimonial_Slider.php:715 329 329 msgid "Container Shadow" 330 330 msgstr "" … … 332 332 #: inc/Elements/Accordion.php:775 inc/Elements/CTA.php:728 333 333 #: inc/Elements/Flip_Box.php:466 inc/Elements/Icon_Box.php:286 334 #: inc/Elements/Post_Grid.php:616 inc/Elements/Pricing_Table.php:93 8335 #: inc/Elements/Teaser_Box.php:6 58inc/Elements/Testimonial.php:619336 #: inc/Elements/Testimonial_Slider.php:72 1334 #: inc/Elements/Post_Grid.php:616 inc/Elements/Pricing_Table.php:931 335 #: inc/Elements/Teaser_Box.php:680 inc/Elements/Testimonial.php:619 336 #: inc/Elements/Testimonial_Slider.php:725 337 337 msgid "Container Hover Shadow" 338 338 msgstr "" … … 361 361 362 362 #: inc/Elements/CTA.php:103 inc/Elements/Contact_form_7.php:129 363 #: inc/Elements/F lip_Box.php:91 inc/Elements/Icon_Box.php:108364 #: inc/Elements/I mage_Overlay.php:122 inc/Elements/Ninja_Forms.php:147365 #: inc/Elements/ Pricing_Table.php:80 inc/Elements/Products.php:71366 #: inc/Elements/ Teaser_Box.php:105 inc/Elements/WpForm.php:134367 #: inc/Elements/ heading-with-separator.php:79363 #: inc/Elements/Feature_list.php:140 inc/Elements/Flip_Box.php:91 364 #: inc/Elements/Icon_Box.php:108 inc/Elements/Image_Overlay.php:122 365 #: inc/Elements/Ninja_Forms.php:147 inc/Elements/Pricing_Table.php:80 366 #: inc/Elements/Products.php:71 inc/Elements/Teaser_Box.php:106 367 #: inc/Elements/WpForm.php:134 inc/Elements/heading-with-separator.php:79 368 368 msgid "Title HTML Tag" 369 369 msgstr "" 370 370 371 371 #: inc/Elements/CTA.php:108 inc/Elements/Contact_form_7.php:134 372 #: inc/Elements/Flip_Box.php:96 inc/Elements/Image_Overlay.php:12 7373 #: inc/Elements/ Ninja_Forms.php:152 inc/Elements/Pricing_Table.php:85374 #: inc/Elements/Pr oducts.php:75 inc/Elements/Subscription.php:82375 #: inc/Elements/ Teaser_Box.php:110 inc/Elements/WpForm.php:139376 #: inc/Elements/ heading-with-separator.php:83372 #: inc/Elements/Flip_Box.php:96 inc/Elements/Image_Overlay.php:126 373 #: inc/Elements/Image_Overlay.php:180 inc/Elements/Ninja_Forms.php:152 374 #: inc/Elements/Pricing_Table.php:85 inc/Elements/Products.php:75 375 #: inc/Elements/Subscription.php:82 inc/Elements/Teaser_Box.php:111 376 #: inc/Elements/WpForm.php:139 inc/Elements/heading-with-separator.php:83 377 377 msgid "H1" 378 378 msgstr "" 379 379 380 380 #: inc/Elements/CTA.php:112 inc/Elements/Contact_form_7.php:135 381 #: inc/Elements/Flip_Box.php:100 inc/Elements/Image_Overlay.php:1 31382 #: inc/Elements/ Ninja_Forms.php:153 inc/Elements/Pricing_Table.php:89383 #: inc/Elements/Pr oducts.php:76 inc/Elements/Subscription.php:83384 #: inc/Elements/ Teaser_Box.php:114 inc/Elements/WpForm.php:140385 #: inc/Elements/ heading-with-separator.php:84381 #: inc/Elements/Flip_Box.php:100 inc/Elements/Image_Overlay.php:127 382 #: inc/Elements/Image_Overlay.php:181 inc/Elements/Ninja_Forms.php:153 383 #: inc/Elements/Pricing_Table.php:89 inc/Elements/Products.php:76 384 #: inc/Elements/Subscription.php:83 inc/Elements/Teaser_Box.php:115 385 #: inc/Elements/WpForm.php:140 inc/Elements/heading-with-separator.php:84 386 386 msgid "H2" 387 387 msgstr "" 388 388 389 389 #: inc/Elements/CTA.php:116 inc/Elements/Contact_form_7.php:136 390 #: inc/Elements/Flip_Box.php:104 inc/Elements/Image_Overlay.php:1 35391 #: inc/Elements/ Ninja_Forms.php:154 inc/Elements/Pricing_Table.php:93392 #: inc/Elements/Pr oducts.php:77 inc/Elements/Subscription.php:84393 #: inc/Elements/ Teaser_Box.php:118 inc/Elements/WpForm.php:141394 #: inc/Elements/ heading-with-separator.php:85390 #: inc/Elements/Flip_Box.php:104 inc/Elements/Image_Overlay.php:128 391 #: inc/Elements/Image_Overlay.php:182 inc/Elements/Ninja_Forms.php:154 392 #: inc/Elements/Pricing_Table.php:93 inc/Elements/Products.php:77 393 #: inc/Elements/Subscription.php:84 inc/Elements/Teaser_Box.php:119 394 #: inc/Elements/WpForm.php:141 inc/Elements/heading-with-separator.php:85 395 395 msgid "H3" 396 396 msgstr "" 397 397 398 398 #: inc/Elements/CTA.php:120 inc/Elements/Contact_form_7.php:137 399 #: inc/Elements/Flip_Box.php:108 inc/Elements/Image_Overlay.php:1 39400 #: inc/Elements/ Ninja_Forms.php:155 inc/Elements/Pricing_Table.php:97401 #: inc/Elements/Pr oducts.php:78 inc/Elements/Subscription.php:85402 #: inc/Elements/ Teaser_Box.php:122 inc/Elements/WpForm.php:142403 #: inc/Elements/ heading-with-separator.php:86399 #: inc/Elements/Flip_Box.php:108 inc/Elements/Image_Overlay.php:129 400 #: inc/Elements/Image_Overlay.php:183 inc/Elements/Ninja_Forms.php:155 401 #: inc/Elements/Pricing_Table.php:97 inc/Elements/Products.php:78 402 #: inc/Elements/Subscription.php:85 inc/Elements/Teaser_Box.php:123 403 #: inc/Elements/WpForm.php:142 inc/Elements/heading-with-separator.php:86 404 404 msgid "H4" 405 405 msgstr "" 406 406 407 407 #: inc/Elements/CTA.php:124 inc/Elements/Contact_form_7.php:138 408 #: inc/Elements/Flip_Box.php:112 inc/Elements/Image_Overlay.php:1 43409 #: inc/Elements/ Ninja_Forms.php:156 inc/Elements/Pricing_Table.php:101410 #: inc/Elements/Pr oducts.php:79 inc/Elements/Subscription.php:86411 #: inc/Elements/ Teaser_Box.php:126 inc/Elements/WpForm.php:143412 #: inc/Elements/ heading-with-separator.php:87408 #: inc/Elements/Flip_Box.php:112 inc/Elements/Image_Overlay.php:130 409 #: inc/Elements/Image_Overlay.php:184 inc/Elements/Ninja_Forms.php:156 410 #: inc/Elements/Pricing_Table.php:101 inc/Elements/Products.php:79 411 #: inc/Elements/Subscription.php:86 inc/Elements/Teaser_Box.php:127 412 #: inc/Elements/WpForm.php:143 inc/Elements/heading-with-separator.php:87 413 413 msgid "H5" 414 414 msgstr "" 415 415 416 416 #: inc/Elements/CTA.php:128 inc/Elements/Contact_form_7.php:139 417 #: inc/Elements/Flip_Box.php:116 inc/Elements/Image_Overlay.php:1 47418 #: inc/Elements/ Ninja_Forms.php:157 inc/Elements/Pricing_Table.php:105419 #: inc/Elements/Pr oducts.php:80 inc/Elements/Subscription.php:87420 #: inc/Elements/ Teaser_Box.php:130 inc/Elements/WpForm.php:144421 #: inc/Elements/ heading-with-separator.php:88417 #: inc/Elements/Flip_Box.php:116 inc/Elements/Image_Overlay.php:131 418 #: inc/Elements/Image_Overlay.php:185 inc/Elements/Ninja_Forms.php:157 419 #: inc/Elements/Pricing_Table.php:105 inc/Elements/Products.php:80 420 #: inc/Elements/Subscription.php:87 inc/Elements/Teaser_Box.php:131 421 #: inc/Elements/WpForm.php:144 inc/Elements/heading-with-separator.php:88 422 422 msgid "H6" 423 423 msgstr "" … … 434 434 435 435 #: inc/Elements/CTA.php:170 inc/Elements/Creative_Button.php:310 436 #: inc/Elements/Pricing_Table.php:268 inc/Elements/Slider.php:11 3436 #: inc/Elements/Pricing_Table.php:268 inc/Elements/Slider.php:114 437 437 msgid "Button Icon" 438 438 msgstr "" … … 459 459 460 460 #: inc/Elements/CTA.php:231 inc/Elements/Creative_Button.php:318 461 #: inc/Elements/Slider.php:5 27461 #: inc/Elements/Slider.php:582 462 462 msgid "Icon Size" 463 463 msgstr "" 464 464 465 465 #: inc/Elements/CTA.php:252 inc/Elements/Counter.php:190 466 #: inc/Elements/Feature_list.php: 189inc/Elements/Icon_Box.php:344467 #: inc/Elements/Staff_Member.php:5 40466 #: inc/Elements/Feature_list.php:222 inc/Elements/Icon_Box.php:344 467 #: inc/Elements/Staff_Member.php:593 468 468 msgid "Icon Height" 469 469 msgstr "" 470 470 471 471 #: inc/Elements/CTA.php:273 inc/Elements/Counter.php:211 472 #: inc/Elements/Feature_list.php:2 10inc/Elements/Icon_Box.php:365473 #: inc/Elements/Staff_Member.php: 562472 #: inc/Elements/Feature_list.php:243 inc/Elements/Icon_Box.php:365 473 #: inc/Elements/Staff_Member.php:615 474 474 msgid "Icon Width" 475 475 msgstr "" 476 476 477 477 #: inc/Elements/CTA.php:306 inc/Elements/Counter.php:244 478 #: inc/Elements/Feature_list.php:2 54478 #: inc/Elements/Feature_list.php:287 479 479 msgid "Icon Background Color" 480 480 msgstr "" 481 481 482 482 #: inc/Elements/CTA.php:329 inc/Elements/Counter.php:268 483 #: inc/Elements/Icon_Box.php:43 4483 #: inc/Elements/Icon_Box.php:435 484 484 msgid "Icon Hover Background Color" 485 485 msgstr "" 486 486 487 487 #: inc/Elements/CTA.php:351 inc/Elements/Counter.php:287 488 #: inc/Elements/Feature_list.php:287 inc/Elements/Icon_Box.php:456 489 #: inc/Elements/Staff_Member.php:636 488 #: inc/Elements/Feature_list.php:320 inc/Elements/Icon_Box.php:457 490 489 msgid "Icon Border Radius" 491 490 msgstr "" 492 491 493 #: inc/Elements/CTA.php:363 inc/Elements/Staff_Member.php:648492 #: inc/Elements/CTA.php:363 494 493 msgid "Icon Border Hover Color" 495 494 msgstr "" … … 507 506 508 507 #: inc/Elements/CTA.php:405 inc/Elements/Contact_form_7.php:275 509 #: inc/Elements/Feature_list.php: 372 inc/Elements/Icon_Box.php:523510 #: inc/Elements/Ninja_Forms.php:293 inc/Elements/Slider.php:3 21508 #: inc/Elements/Feature_list.php:405 inc/Elements/Icon_Box.php:524 509 #: inc/Elements/Ninja_Forms.php:293 inc/Elements/Slider.php:311 511 510 #: inc/Elements/WpForm.php:280 inc/Elements/heading-with-separator.php:150 512 511 msgid "Title Bottom Spacing" … … 518 517 519 518 #: inc/Elements/CTA.php:478 inc/Elements/Contact_form_7.php:336 520 #: inc/Elements/Feature_list.php:4 54 inc/Elements/Icon_Box.php:614521 #: inc/Elements/Ninja_Forms.php:354 inc/Elements/Slider.php:3 36522 #: inc/Elements/Teaser_Box.php:4 13inc/Elements/WpForm.php:342519 #: inc/Elements/Feature_list.php:487 inc/Elements/Icon_Box.php:615 520 #: inc/Elements/Ninja_Forms.php:354 inc/Elements/Slider.php:326 521 #: inc/Elements/Teaser_Box.php:435 inc/Elements/WpForm.php:342 523 522 msgid "Description Color" 524 523 msgstr "" 525 524 526 525 #: inc/Elements/CTA.php:501 inc/Elements/Pricing_Table.php:710 527 #: inc/Elements/Slider.php: 462526 #: inc/Elements/Slider.php:517 528 527 msgid "Button" 529 528 msgstr "" … … 534 533 535 534 #: inc/Elements/CTA.php:525 inc/Elements/Creative_Button.php:189 536 #: inc/Elements/Pricing_Table.php:749537 535 msgid "Button Width" 538 536 msgstr "" 539 537 540 #: inc/Elements/CTA.php:545 inc/Elements/Pricing_Table.php:76 9541 #: inc/Elements/Slider.php: 482inc/Elements/Subscription.php:163538 #: inc/Elements/CTA.php:545 inc/Elements/Pricing_Table.php:762 539 #: inc/Elements/Slider.php:537 inc/Elements/Subscription.php:163 542 540 msgid "Button Text Color" 543 541 msgstr "" 544 542 545 #: inc/Elements/CTA.php:590 inc/Elements/Pricing_Table.php:8 14543 #: inc/Elements/CTA.php:590 inc/Elements/Pricing_Table.php:807 546 544 msgid "Button Icon Size" 547 545 msgstr "" 548 546 549 #: inc/Elements/CTA.php:639 inc/Elements/Teaser_Box.php:5 63547 #: inc/Elements/CTA.php:639 inc/Elements/Teaser_Box.php:585 550 548 msgid "Button Border Hover Color" 551 549 msgstr "" 552 550 553 551 #: inc/Elements/CTA.php:651 inc/Elements/Creative_Button.php:411 554 #: inc/Elements/Pricing_Table.php:8 64552 #: inc/Elements/Pricing_Table.php:857 555 553 msgid "Button Shadow" 556 554 msgstr "" … … 593 591 594 592 #: inc/Elements/Category_Box.php:90 inc/Elements/Filterable_Portfolio.php:387 595 #: inc/Elements/Slider.php:2 87593 #: inc/Elements/Slider.php:266 596 594 msgid "Overlay Background Color" 597 595 msgstr "" 598 596 599 #: inc/Elements/Category_Box.php:101 inc/Elements/Image_Overlay.php:2 55597 #: inc/Elements/Category_Box.php:101 inc/Elements/Image_Overlay.php:261 600 598 #: inc/Elements/Promo-box.php:167 601 599 msgid "Overlay Background Hover Color" 602 600 msgstr "" 603 601 604 #: inc/Elements/Category_Box.php:112 inc/Elements/Image_Overlay.php:23 1605 #: inc/Elements/Promo-box.php:178 inc/Elements/Slider.php:2 75602 #: inc/Elements/Category_Box.php:112 inc/Elements/Image_Overlay.php:237 603 #: inc/Elements/Promo-box.php:178 inc/Elements/Slider.php:254 606 604 msgid "Overlay Padding" 607 605 msgstr "" … … 627 625 msgstr "" 628 626 629 #: inc/Elements/Category_Box.php:267 inc/Elements/Image_Overlay.php:36 2627 #: inc/Elements/Category_Box.php:267 inc/Elements/Image_Overlay.php:368 630 628 msgid "Image Style" 631 629 msgstr "" 632 630 633 #: inc/Elements/Category_Box.php:35 0inc/Elements/Products.php:46631 #: inc/Elements/Category_Box.php:351 inc/Elements/Products.php:46 634 632 #: inc/Elements/Products.php:55 635 633 msgid "Products" … … 680 678 msgstr "" 681 679 682 #: inc/Elements/Category_List.php:244 inc/Elements/Staff_Member.php: 659680 #: inc/Elements/Category_List.php:244 inc/Elements/Staff_Member.php:712 683 681 msgid "Icon Right Spacing" 684 682 msgstr "" … … 704 702 msgstr "" 705 703 706 #: inc/Elements/Category_List.php:335 inc/Elements/Counter.php: 534707 #: inc/Elements/Icon_Box.php:385 inc/Elements/Staff_Member.php: 764704 #: inc/Elements/Category_List.php:335 inc/Elements/Counter.php:601 705 #: inc/Elements/Icon_Box.php:385 inc/Elements/Staff_Member.php:817 708 706 msgid "Rotate" 709 707 msgstr "" … … 720 718 #: inc/Elements/Icon_Box.php:262 inc/Elements/Ninja_Forms.php:229 721 719 #: inc/Elements/Promo-box.php:270 inc/Elements/Social_Icon.php:351 722 #: inc/Elements/Staff_Member.php: 698inc/Elements/Tabs.php:213723 #: inc/Elements/Teaser_Box.php: 584inc/Elements/Testimonial.php:569724 #: inc/Elements/Testimonial_Slider.php:68 0inc/Elements/WpForm.php:216720 #: inc/Elements/Staff_Member.php:751 inc/Elements/Tabs.php:213 721 #: inc/Elements/Teaser_Box.php:606 inc/Elements/Testimonial.php:569 722 #: inc/Elements/Testimonial_Slider.php:684 inc/Elements/WpForm.php:216 725 723 msgid "Container Padding" 726 724 msgstr "" 727 725 728 726 #: inc/Elements/Category_List.php:394 inc/Elements/Promo-box.php:293 729 #: inc/Elements/Staff_Member.php:722730 727 msgid "Container Background Hover Color" 731 728 msgstr "" … … 734 731 #: inc/Elements/Filterable_Portfolio.php:757 inc/Elements/Icon_Box.php:236 735 732 #: inc/Elements/Ninja_Forms.php:273 inc/Elements/Post_Grid.php:582 736 #: inc/Elements/Social_Icon.php:339 inc/Elements/Staff_Member.php:741 737 #: inc/Elements/Tabs.php:201 inc/Elements/Teaser_Box.php:625 733 #: inc/Elements/Social_Icon.php:339 inc/Elements/Tabs.php:201 738 734 #: inc/Elements/WpForm.php:260 739 735 msgid "Container Border Radius" 740 736 msgstr "" 741 737 742 #: inc/Elements/Category_List.php:423 inc/Elements/Staff_Member.php:753 743 #: inc/Elements/Teaser_Box.php:637 738 #: inc/Elements/Category_List.php:423 744 739 msgid "Container Border Hover Color" 745 740 msgstr "" 746 741 747 #: inc/Elements/Category_List.php:433 inc/Elements/Counter.php:5 49748 #: inc/Elements/Promo-box.php:312 inc/Elements/Staff_Member.php:779742 #: inc/Elements/Category_List.php:433 inc/Elements/Counter.php:506 743 #: inc/Elements/Promo-box.php:312 749 744 msgid "Container Box Shadow" 750 745 msgstr "" 751 746 752 #: inc/Elements/Category_List.php:443 inc/Elements/Counter.php:5 59753 #: inc/Elements/Promo-box.php:322 inc/Elements/Staff_Member.php:789747 #: inc/Elements/Category_List.php:443 inc/Elements/Counter.php:549 748 #: inc/Elements/Promo-box.php:322 754 749 msgid "Container Hover Box Shadow" 755 750 msgstr "" … … 779 774 780 775 #: inc/Elements/Contact_form_7.php:103 inc/Elements/Flip_Box.php:66 781 #: inc/Elements/Ninja_Forms.php:108 inc/Elements/Teaser_Box.php:8 2776 #: inc/Elements/Ninja_Forms.php:108 inc/Elements/Teaser_Box.php:83 782 777 #: inc/Elements/WpForm.php:108 783 778 msgid "Show/Hide Title" … … 793 788 #: inc/Elements/Ninja_Forms.php:169 inc/Elements/Post_Carousel.php:152 794 789 #: inc/Elements/Post_Carousel.php:182 inc/Elements/Post_Carousel.php:196 795 #: inc/Elements/Post_ Grid.php:192 inc/Elements/Post_Grid.php:205796 #: inc/Elements/Post_Grid.php:2 17 inc/Elements/Products.php:143797 #: inc/Elements/Pro mo-box.php:117 inc/Elements/Slider.php:187798 #: inc/Elements/Slider.php: 217 inc/Elements/Slider.php:265799 #: inc/Elements/S ocial_Icon.php:102 inc/Elements/Social_Icon.php:129800 #: inc/Elements/S taff_Member.php:151 inc/Elements/Teaser_Box.php:85801 #: inc/Elements/Teaser_Box.php: 147 inc/Elements/Teaser_Box.php:172802 #: inc/Elements/Te stimonial.php:127 inc/Elements/Testimonial.php:185803 #: inc/Elements/Testimonial _Slider.php:117804 #: inc/Elements/Testimonial_Slider.php:19 5805 #: inc/Elements/Testimonial_Slider.php:26 5806 #: inc/Elements/Testimonial_Slider.php:29 5inc/Elements/WpForm.php:111790 #: inc/Elements/Post_Carousel.php:220 inc/Elements/Post_Grid.php:192 791 #: inc/Elements/Post_Grid.php:205 inc/Elements/Post_Grid.php:217 792 #: inc/Elements/Products.php:143 inc/Elements/Promo-box.php:117 793 #: inc/Elements/Slider.php:188 inc/Elements/Slider.php:218 794 #: inc/Elements/Slider.php:244 inc/Elements/Social_Icon.php:102 795 #: inc/Elements/Social_Icon.php:129 inc/Elements/Staff_Member.php:142 796 #: inc/Elements/Teaser_Box.php:86 inc/Elements/Teaser_Box.php:161 797 #: inc/Elements/Teaser_Box.php:186 inc/Elements/Testimonial.php:127 798 #: inc/Elements/Testimonial.php:185 inc/Elements/Testimonial_Slider.php:117 799 #: inc/Elements/Testimonial_Slider.php:199 800 #: inc/Elements/Testimonial_Slider.php:269 801 #: inc/Elements/Testimonial_Slider.php:299 inc/Elements/WpForm.php:111 807 802 #: inc/Elements/WpForm.php:156 inc/Elements/heading-with-separator.php:99 808 803 msgid "Yes" … … 818 813 #: inc/Elements/Ninja_Forms.php:170 inc/Elements/Post_Carousel.php:153 819 814 #: inc/Elements/Post_Carousel.php:183 inc/Elements/Post_Carousel.php:197 820 #: inc/Elements/Post_ Grid.php:193 inc/Elements/Post_Grid.php:206821 #: inc/Elements/Post_Grid.php:2 18 inc/Elements/Products.php:144822 #: inc/Elements/Pro mo-box.php:118 inc/Elements/Slider.php:188823 #: inc/Elements/Slider.php: 218 inc/Elements/Slider.php:266824 #: inc/Elements/S ocial_Icon.php:103 inc/Elements/Social_Icon.php:130825 #: inc/Elements/S taff_Member.php:152 inc/Elements/Teaser_Box.php:86826 #: inc/Elements/Teaser_Box.php: 148 inc/Elements/Teaser_Box.php:173827 #: inc/Elements/Te stimonial.php:128 inc/Elements/Testimonial.php:186828 #: inc/Elements/Testimonial _Slider.php:118829 #: inc/Elements/Testimonial_Slider.php: 196830 #: inc/Elements/Testimonial_Slider.php:2 66831 #: inc/Elements/Testimonial_Slider.php: 296inc/Elements/WpForm.php:112815 #: inc/Elements/Post_Carousel.php:221 inc/Elements/Post_Grid.php:193 816 #: inc/Elements/Post_Grid.php:206 inc/Elements/Post_Grid.php:218 817 #: inc/Elements/Products.php:144 inc/Elements/Promo-box.php:118 818 #: inc/Elements/Slider.php:189 inc/Elements/Slider.php:219 819 #: inc/Elements/Slider.php:245 inc/Elements/Social_Icon.php:103 820 #: inc/Elements/Social_Icon.php:130 inc/Elements/Staff_Member.php:143 821 #: inc/Elements/Teaser_Box.php:87 inc/Elements/Teaser_Box.php:162 822 #: inc/Elements/Teaser_Box.php:187 inc/Elements/Testimonial.php:128 823 #: inc/Elements/Testimonial.php:186 inc/Elements/Testimonial_Slider.php:118 824 #: inc/Elements/Testimonial_Slider.php:200 825 #: inc/Elements/Testimonial_Slider.php:270 826 #: inc/Elements/Testimonial_Slider.php:300 inc/Elements/WpForm.php:112 832 827 #: inc/Elements/WpForm.php:157 inc/Elements/heading-with-separator.php:100 833 828 msgid "No" … … 873 868 #: inc/Elements/Contact_form_7.php:179 inc/Elements/Counter.php:136 874 869 #: inc/Elements/Creative_Button.php:119 inc/Elements/Creative_Button.php:146 875 #: inc/Elements/Feature_list.php:1 35inc/Elements/Filterable_Portfolio.php:195870 #: inc/Elements/Feature_list.php:168 inc/Elements/Filterable_Portfolio.php:195 876 871 #: inc/Elements/Filterable_Portfolio.php:279 877 872 #: inc/Elements/Filterable_Portfolio.php:621 inc/Elements/Icon_Box.php:179 … … 880 875 #: inc/Elements/Post_Grid.php:458 inc/Elements/Pricing_Table.php:205 881 876 #: inc/Elements/Pricing_Table.php:232 inc/Elements/Social_Icon.php:284 882 #: inc/Elements/Staff_Member.php:23 4inc/Elements/Subscription.php:112883 #: inc/Elements/Teaser_Box.php:21 5inc/Elements/Type.php:92877 #: inc/Elements/Staff_Member.php:230 inc/Elements/Subscription.php:112 878 #: inc/Elements/Teaser_Box.php:214 inc/Elements/Type.php:92 884 879 #: inc/Elements/Wording.php:140 inc/Elements/WpForm.php:184 885 880 #: inc/Elements/heading-with-separator.php:115 … … 888 883 889 884 #: inc/Elements/Contact_form_7.php:183 inc/Elements/Counter.php:140 890 #: inc/Elements/Creative_Button.php:123 inc/Elements/Feature_list.php:1 39885 #: inc/Elements/Creative_Button.php:123 inc/Elements/Feature_list.php:172 891 886 #: inc/Elements/Filterable_Portfolio.php:199 892 887 #: inc/Elements/Filterable_Portfolio.php:283 … … 895 890 #: inc/Elements/Post_Grid.php:115 inc/Elements/Post_Grid.php:462 896 891 #: inc/Elements/Pricing_Table.php:209 inc/Elements/Social_Icon.php:288 897 #: inc/Elements/Staff_Member.php:23 8inc/Elements/Subscription.php:116898 #: inc/Elements/Teaser_Box.php:21 9inc/Elements/Type.php:96892 #: inc/Elements/Staff_Member.php:234 inc/Elements/Subscription.php:116 893 #: inc/Elements/Teaser_Box.php:218 inc/Elements/Type.php:96 899 894 #: inc/Elements/Wording.php:144 inc/Elements/WpForm.php:188 900 895 #: inc/Elements/heading-with-separator.php:119 … … 904 899 #: inc/Elements/Contact_form_7.php:187 inc/Elements/Counter.php:144 905 900 #: inc/Elements/Creative_Button.php:127 inc/Elements/Creative_Button.php:151 906 #: inc/Elements/Feature_list.php:1 43inc/Elements/Filterable_Portfolio.php:203901 #: inc/Elements/Feature_list.php:176 inc/Elements/Filterable_Portfolio.php:203 907 902 #: inc/Elements/Filterable_Portfolio.php:287 908 903 #: inc/Elements/Filterable_Portfolio.php:629 inc/Elements/Icon_Box.php:187 … … 911 906 #: inc/Elements/Post_Grid.php:466 inc/Elements/Pricing_Table.php:213 912 907 #: inc/Elements/Pricing_Table.php:237 inc/Elements/Social_Icon.php:292 913 #: inc/Elements/Staff_Member.php:2 42inc/Elements/Subscription.php:120914 #: inc/Elements/Teaser_Box.php:22 3inc/Elements/Type.php:100908 #: inc/Elements/Staff_Member.php:238 inc/Elements/Subscription.php:120 909 #: inc/Elements/Teaser_Box.php:222 inc/Elements/Type.php:100 915 910 #: inc/Elements/Wording.php:148 inc/Elements/WpForm.php:192 916 911 #: inc/Elements/heading-with-separator.php:123 … … 943 938 msgstr "" 944 939 945 #: inc/Elements/Contact_form_7.php:321 inc/Elements/Feature_list.php:4 42946 #: inc/Elements/Icon_Box.php:59 8inc/Elements/Ninja_Forms.php:339947 #: inc/Elements/Slider.php:3 57 inc/Elements/WpForm.php:327940 #: inc/Elements/Contact_form_7.php:321 inc/Elements/Feature_list.php:475 941 #: inc/Elements/Icon_Box.php:599 inc/Elements/Ninja_Forms.php:339 942 #: inc/Elements/Slider.php:347 inc/Elements/WpForm.php:327 948 943 msgid "Description Bottom Spacing" 949 944 msgstr "" … … 1062 1057 1063 1058 #: inc/Elements/Contact_form_7.php:689 inc/Elements/Ninja_Forms.php:554 1064 #: inc/Elements/Pricing_Table.php:733 inc/Elements/Teaser_Box.php:4 601059 #: inc/Elements/Pricing_Table.php:733 inc/Elements/Teaser_Box.php:482 1065 1060 #: inc/Elements/WpForm.php:594 1066 1061 msgid "Button Bottom Spacing" … … 1095 1090 msgstr "" 1096 1091 1097 #: inc/Elements/Counter.php:130 inc/Elements/Feature_list.php:1 291092 #: inc/Elements/Counter.php:130 inc/Elements/Feature_list.php:162 1098 1093 #: inc/Elements/Icon_Box.php:173 inc/Elements/Social_Icon.php:278 1099 #: inc/Elements/Staff_Member.php:22 8inc/Elements/Subscription.php:1061100 #: inc/Elements/Teaser_Box.php:20 9inc/Elements/Type.php:861094 #: inc/Elements/Staff_Member.php:224 inc/Elements/Subscription.php:106 1095 #: inc/Elements/Teaser_Box.php:208 inc/Elements/Type.php:86 1101 1096 #: inc/Elements/Wording.php:134 inc/Elements/heading-with-separator.php:109 1102 1097 msgid "Set Alignment" … … 1107 1102 msgstr "" 1108 1103 1109 #: inc/Elements/Counter.php:300 inc/Elements/Feature_list.php: 2991110 #: inc/Elements/Icon_Box.php:4 89 inc/Elements/Staff_Member.php:6721104 #: inc/Elements/Counter.php:300 inc/Elements/Feature_list.php:332 1105 #: inc/Elements/Icon_Box.php:490 inc/Elements/Staff_Member.php:725 1111 1106 msgid "Icon Bottom Spacing" 1112 1107 msgstr "" … … 1144 1139 msgstr "" 1145 1140 1146 #: inc/Elements/Counter.php:491 1147 msgid "Counter Background Hover Color" 1148 msgstr "" 1149 1150 #: inc/Elements/Counter.php:511 1141 #: inc/Elements/Counter.php:470 1142 msgid "Counter Content Colors" 1143 msgstr "" 1144 1145 #: inc/Elements/Counter.php:477 inc/Elements/Social_Icon.php:146 1146 #: inc/Elements/Social_Icon.php:381 1147 msgid "Normal" 1148 msgstr "" 1149 1150 #: inc/Elements/Counter.php:495 inc/Elements/Social_Icon.php:182 1151 #: inc/Elements/Social_Icon.php:227 inc/Elements/Social_Icon.php:418 1152 #: inc/Elements/Social_Icon.php:462 1153 msgid "Border Color" 1154 msgstr "" 1155 1156 #: inc/Elements/Counter.php:519 inc/Elements/Social_Icon.php:196 1157 #: inc/Elements/Social_Icon.php:431 1158 msgid "Hover" 1159 msgstr "" 1160 1161 #: inc/Elements/Counter.php:538 1162 msgid "Counter Border Hover Color" 1163 msgstr "" 1164 1165 #: inc/Elements/Counter.php:575 1151 1166 msgid "Content Border Radius" 1152 msgstr ""1153 1154 #: inc/Elements/Counter.php:5231155 msgid "Counter Border Hover Color"1156 1167 msgstr "" 1157 1168 … … 1173 1184 msgstr "" 1174 1185 1175 #: inc/Elements/Creative_Button.php:163 inc/Elements/Social_Icon.php:5 721186 #: inc/Elements/Creative_Button.php:163 inc/Elements/Social_Icon.php:569 1176 1187 msgid "Button Hover Animation" 1177 1188 msgstr "" … … 1183 1194 #: inc/Elements/Creative_Button.php:234 inc/Elements/Flip_Box.php:403 1184 1195 #: inc/Elements/Icon_List.php:341 inc/Elements/Pricing_Table.php:664 1185 #: inc/Elements/Staff_Member.php: 490inc/Elements/Subscription.php:2411186 #: inc/Elements/Testimonial.php:463 inc/Elements/Testimonial_Slider.php:57 31196 #: inc/Elements/Staff_Member.php:543 inc/Elements/Subscription.php:241 1197 #: inc/Elements/Testimonial.php:463 inc/Elements/Testimonial_Slider.php:577 1187 1198 msgid "Text Color" 1188 1199 msgstr "" … … 1194 1205 1195 1206 #: inc/Elements/Creative_Button.php:297 inc/Elements/Icon_Box.php:250 1207 #: inc/Elements/Staff_Member.php:701 inc/Elements/Staff_Member.php:806 1208 #: inc/Elements/Teaser_Box.php:659 1196 1209 msgid "Border Hover Color" 1197 1210 msgstr "" … … 1217 1230 msgstr "" 1218 1231 1219 #: inc/Elements/Feature_list.php:97 1232 #: inc/Elements/Feature_list.php:95 1233 msgid "Title Link" 1234 msgstr "" 1235 1236 #: inc/Elements/Feature_list.php:98 inc/Elements/Icon_Box.php:90 1237 #: inc/Elements/Image_Overlay.php:150 inc/Elements/Promo-box.php:84 1238 #: inc/Elements/Slider.php:77 inc/Elements/Teaser_Box.php:150 1239 msgid "https://softfirm.net/" 1240 msgstr "" 1241 1242 #: inc/Elements/Feature_list.php:108 1220 1243 msgid "Feature Description" 1221 1244 msgstr "" 1222 1245 1223 #: inc/Elements/Feature_list.php: 981246 #: inc/Elements/Feature_list.php:109 1224 1247 msgid "" 1225 1248 "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " … … 1227 1250 msgstr "" 1228 1251 1229 #: inc/Elements/Feature_list.php:1 061252 #: inc/Elements/Feature_list.php:117 1230 1253 msgid "Feature Item" 1231 1254 msgstr "" 1232 1255 1233 #: inc/Elements/Feature_list.php:1 601256 #: inc/Elements/Feature_list.php:193 1234 1257 msgid "Feature Icon" 1235 1258 msgstr "" 1236 1259 1237 #: inc/Elements/Feature_list.php:2 66 inc/Elements/Post_Carousel.php:3861260 #: inc/Elements/Feature_list.php:299 inc/Elements/Post_Carousel.php:429 1238 1261 #: inc/Elements/Pricing_Table.php:309 inc/Elements/Products.php:322 1239 #: inc/Elements/Slider.php:4 15 inc/Elements/Staff_Member.php:6171240 #: inc/Elements/Testimonial_Slider.php: 7981262 #: inc/Elements/Slider.php:426 inc/Elements/Staff_Member.php:670 1263 #: inc/Elements/Testimonial_Slider.php:802 1241 1264 msgid "Hover Background Color" 1242 1265 msgstr "" 1243 1266 1244 #: inc/Elements/Feature_list.php:3 191267 #: inc/Elements/Feature_list.php:352 1245 1268 msgid "Feature List Content" 1246 1269 msgstr "" 1247 1270 1248 #: inc/Elements/Feature_list.php:3 501271 #: inc/Elements/Feature_list.php:383 1249 1272 msgid "Content Hover Background Color" 1250 1273 msgstr "" 1251 1274 1252 #: inc/Elements/Feature_list.php:3 631275 #: inc/Elements/Feature_list.php:396 1253 1276 msgid "Feature List Title" 1254 1277 msgstr "" 1255 1278 1256 #: inc/Elements/Feature_list.php:4 321279 #: inc/Elements/Feature_list.php:465 1257 1280 msgid "Feature List Description" 1258 1281 msgstr "" … … 1378 1401 msgstr "" 1379 1402 1380 #: inc/Elements/Filterable_Portfolio.php:221 inc/Elements/Teaser_Box.php: 1871403 #: inc/Elements/Filterable_Portfolio.php:221 inc/Elements/Teaser_Box.php:201 1381 1404 #: inc/Reuses/Reuse.php:24 1382 1405 msgid "Read More" … … 1407 1430 #: inc/Elements/Filterable_Portfolio.php:533 inc/Elements/Flip_Box.php:288 1408 1431 #: inc/Elements/Flip_Box.php:361 inc/Elements/Popular_Post.php:76 1409 #: inc/Elements/Post_Carousel.php:2 20 inc/Elements/Post_Carousel.php:2741432 #: inc/Elements/Post_Carousel.php:263 inc/Elements/Post_Carousel.php:317 1410 1433 #: inc/Elements/Post_Grid.php:290 inc/Elements/Post_Grid.php:362 1411 #: inc/Elements/Products.php:219 inc/Elements/Slider.php: 4701412 #: inc/Elements/ Teaser_Box.php:323 inc/Elements/Teaser_Box.php:4011413 #: inc/Elements/Te stimonial.php:286 inc/Elements/Testimonial.php:3291414 #: inc/Elements/Testimonial _Slider.php:3741415 #: inc/Elements/Testimonial_Slider.php:4 361434 #: inc/Elements/Products.php:219 inc/Elements/Slider.php:525 1435 #: inc/Elements/Staff_Member.php:455 inc/Elements/Teaser_Box.php:345 1436 #: inc/Elements/Teaser_Box.php:423 inc/Elements/Testimonial.php:286 1437 #: inc/Elements/Testimonial.php:329 inc/Elements/Testimonial_Slider.php:378 1438 #: inc/Elements/Testimonial_Slider.php:440 1416 1439 msgid "Bottom Spacing" 1417 1440 msgstr "" … … 1446 1469 1447 1470 #: inc/Elements/Filterable_Portfolio.php:454 inc/Elements/Popular_Post.php:67 1448 #: inc/Elements/Post_Carousel.php:2 11inc/Elements/Post_Grid.php:2811471 #: inc/Elements/Post_Carousel.php:254 inc/Elements/Post_Grid.php:281 1449 1472 msgid "Blog Post Title" 1450 1473 msgstr "" 1451 1474 1452 1475 #: inc/Elements/Filterable_Portfolio.php:474 1453 #: inc/Elements/Post_Carousel.php:4 33inc/Elements/Products.php:3691454 #: inc/Elements/ Testimonial_Slider.php:8461476 #: inc/Elements/Post_Carousel.php:476 inc/Elements/Products.php:369 1477 #: inc/Elements/Slider.php:471 inc/Elements/Testimonial_Slider.php:850 1455 1478 msgid "Top Spacing" 1456 1479 msgstr "" 1457 1480 1458 1481 #: inc/Elements/Filterable_Portfolio.php:519 1459 #: inc/Elements/Post_Carousel.php: 266inc/Elements/Post_Grid.php:3531482 #: inc/Elements/Post_Carousel.php:309 inc/Elements/Post_Grid.php:353 1460 1483 msgid "Blog Post Meta" 1461 1484 msgstr "" 1462 1485 1463 1486 #: inc/Elements/Filterable_Portfolio.php:545 1464 #: inc/Elements/Post_Carousel.php: 289inc/Elements/Post_Grid.php:3741487 #: inc/Elements/Post_Carousel.php:332 inc/Elements/Post_Grid.php:374 1465 1488 msgid "Meta Color" 1466 1489 msgstr "" … … 1520 1543 msgstr "" 1521 1544 1522 #: inc/Elements/Flip_Box.php:55 inc/Elements/Teaser_Box.php: 591545 #: inc/Elements/Flip_Box.php:55 inc/Elements/Teaser_Box.php:60 1523 1546 msgid "Upload Image" 1524 1547 msgstr "" … … 1528 1551 msgstr "" 1529 1552 1530 #: inc/Elements/Flip_Box.php:84 inc/Elements/Staff_Member.php:1 101531 #: inc/Elements/Teaser_Box.php: 99inc/Elements/Testimonial.php:1071553 #: inc/Elements/Flip_Box.php:84 inc/Elements/Staff_Member.php:101 1554 #: inc/Elements/Teaser_Box.php:100 inc/Elements/Testimonial.php:107 1532 1555 #: inc/Elements/Testimonial_Slider.php:97 1533 1556 msgid "John Doe" … … 1538 1561 msgstr "" 1539 1562 1540 #: inc/Elements/Flip_Box.php:144 inc/Elements/Slider.php:9 61563 #: inc/Elements/Flip_Box.php:144 inc/Elements/Slider.php:97 1541 1564 msgid "Sub Title" 1542 1565 msgstr "" … … 1546 1569 msgstr "" 1547 1570 1548 #: inc/Elements/Flip_Box.php:156 inc/Elements/Teaser_Box.php:1 441571 #: inc/Elements/Flip_Box.php:156 inc/Elements/Teaser_Box.php:158 1549 1572 msgid "Show/Hide Text" 1550 1573 msgstr "" … … 1591 1614 1592 1615 #: inc/Elements/Flip_Box.php:446 inc/Elements/Post_Grid.php:594 1593 #: inc/Elements/Pricing_Table.php:89 7 inc/Elements/Teaser_Box.php:6071616 #: inc/Elements/Pricing_Table.php:890 1594 1617 msgid "Container Hover Background Color" 1595 1618 msgstr "" 1596 1619 1597 #: inc/Elements/Flip_Box.php:49 71620 #: inc/Elements/Flip_Box.php:496 1598 1621 msgid "Avatar" 1599 1622 msgstr "" … … 1611 1634 msgstr "" 1612 1635 1613 #: inc/Elements/Icon_Box.php:90 inc/Elements/Image_Overlay.php:165 1614 #: inc/Elements/Promo-box.php:84 inc/Elements/Slider.php:76 1615 #: inc/Elements/Teaser_Box.php:200 1616 msgid "https://softfirm.net/" 1617 msgstr "" 1618 1619 #: inc/Elements/Icon_Box.php:99 inc/Elements/Icon_Box.php:514 1636 #: inc/Elements/Icon_Box.php:99 inc/Elements/Icon_Box.php:515 1620 1637 msgid "Icon Box Title" 1621 1638 msgstr "" … … 1643 1660 #: inc/Elements/Icon_Box.php:199 inc/Elements/Social_Icon.php:168 1644 1661 #: inc/Elements/Social_Icon.php:215 inc/Elements/Social_Icon.php:319 1645 #: inc/Elements/Social_Icon.php:403 inc/Elements/Social_Icon.php:45 11662 #: inc/Elements/Social_Icon.php:403 inc/Elements/Social_Icon.php:450 1646 1663 msgid "Background Color" 1647 1664 msgstr "" 1648 1665 1649 #: inc/Elements/Icon_Box.php:216 1666 #: inc/Elements/Icon_Box.php:216 inc/Elements/Staff_Member.php:775 1667 #: inc/Elements/Teaser_Box.php:629 1650 1668 msgid "Background Hover Color" 1651 1669 msgstr "" 1652 1670 1653 #: inc/Elements/Icon_Box.php:298 inc/Elements/Icon_Box.php:4 791671 #: inc/Elements/Icon_Box.php:298 inc/Elements/Icon_Box.php:480 1654 1672 msgid "Icon Hover Animation" 1655 1673 msgstr "" 1656 1674 1657 #: inc/Elements/Icon_Box.php:59 01675 #: inc/Elements/Icon_Box.php:591 1658 1676 msgid "Icon Box Description" 1659 1677 msgstr "" … … 1721 1739 1722 1740 #: inc/Elements/Image_Overlay.php:71 inc/Elements/Post_Grid.php:232 1723 #: inc/Elements/Promo-box.php:71 inc/Elements/Slider.php:6 31724 #: inc/Elements/Staff_Member.php:7 5 inc/Elements/Teaser_Box.php:2391741 #: inc/Elements/Promo-box.php:71 inc/Elements/Slider.php:64 1742 #: inc/Elements/Staff_Member.php:76 inc/Elements/Teaser_Box.php:241 1725 1743 #: inc/Elements/Testimonial.php:72 inc/Elements/Testimonial_Slider.php:74 1726 1744 msgid "Image" 1727 1745 msgstr "" 1728 1746 1729 #: inc/Elements/Image_Overlay.php:95 inc/Elements/Slider.php:2 621747 #: inc/Elements/Image_Overlay.php:95 inc/Elements/Slider.php:241 1730 1748 msgid "Show/Hide Overlay" 1731 1749 msgstr "" … … 1739 1757 msgstr "" 1740 1758 1741 #: inc/Elements/Image_Overlay.php:162 inc/Elements/Slider.php:73 1759 #: inc/Elements/Image_Overlay.php:132 inc/Elements/Image_Overlay.php:186 1760 msgid "div" 1761 msgstr "" 1762 1763 #: inc/Elements/Image_Overlay.php:133 inc/Elements/Image_Overlay.php:187 1764 msgid "span" 1765 msgstr "" 1766 1767 #: inc/Elements/Image_Overlay.php:134 inc/Elements/Image_Overlay.php:188 1768 msgid "P" 1769 msgstr "" 1770 1771 #: inc/Elements/Image_Overlay.php:147 inc/Elements/Slider.php:74 1742 1772 #: inc/Elements/Social_Icon.php:82 inc/Elements/Testimonial.php:94 1743 1773 #: inc/Elements/Testimonial_Slider.php:84 … … 1745 1775 msgstr "" 1746 1776 1747 #: inc/Elements/Image_Overlay.php:1 831777 #: inc/Elements/Image_Overlay.php:168 1748 1778 msgid "Overlay Subtitle" 1749 1779 msgstr "" 1750 1780 1751 #: inc/Elements/Image_Overlay.php:1 841781 #: inc/Elements/Image_Overlay.php:169 1752 1782 msgid "I am Overlay Subtitle" 1753 1783 msgstr "" 1754 1784 1755 #: inc/Elements/Image_Overlay.php:196 1785 #: inc/Elements/Image_Overlay.php:176 1786 msgid "Sub Title HTML Tag" 1787 msgstr "" 1788 1789 #: inc/Elements/Image_Overlay.php:205 1756 1790 msgid "Image Overlay Style" 1757 1791 msgstr "" 1758 1792 1759 #: inc/Elements/Image_Overlay.php:2 161793 #: inc/Elements/Image_Overlay.php:225 1760 1794 msgid "Overlay Border Radius" 1761 1795 msgstr "" 1762 1796 1763 #: inc/Elements/Image_Overlay.php:2 691797 #: inc/Elements/Image_Overlay.php:275 1764 1798 msgid "Overlay Title Style" 1765 1799 msgstr "" 1766 1800 1767 #: inc/Elements/Image_Overlay.php:33 01801 #: inc/Elements/Image_Overlay.php:336 1768 1802 msgid "Overlay Sub Title Style" 1769 1803 msgstr "" 1770 1804 1771 #: inc/Elements/Image_Overlay.php:34 01805 #: inc/Elements/Image_Overlay.php:346 1772 1806 msgid "Sub Title Color" 1773 1807 msgstr "" 1774 1808 1775 #: inc/Elements/Image_Overlay.php:38 2inc/Elements/Post_Grid.php:2641776 #: inc/Elements/Staff_Member.php: 2861809 #: inc/Elements/Image_Overlay.php:388 inc/Elements/Post_Grid.php:264 1810 #: inc/Elements/Staff_Member.php:310 1777 1811 msgid "Image Border Radius" 1778 1812 msgstr "" 1779 1813 1780 #: inc/Elements/Image_Overlay.php: 394inc/Elements/Testimonial.php:3041781 #: inc/Elements/Testimonial_Slider.php:41 21814 #: inc/Elements/Image_Overlay.php:400 inc/Elements/Testimonial.php:304 1815 #: inc/Elements/Testimonial_Slider.php:416 1782 1816 msgid "Image Shadow" 1783 1817 msgstr "" 1784 1818 1785 #: inc/Elements/Image_Overlay.php:40 31819 #: inc/Elements/Image_Overlay.php:409 1786 1820 msgid "Image Hover Shadow" 1787 1821 msgstr "" … … 1840 1874 msgstr "" 1841 1875 1876 #: inc/Elements/Popular_Post.php:180 1877 msgid "Blog Post Thumbnail" 1878 msgstr "" 1879 1842 1880 #: inc/Elements/Post_Carousel.php:26 1843 1881 msgid "DA: Post Carousel" … … 1853 1891 1854 1892 #: inc/Elements/Post_Carousel.php:122 inc/Elements/Products.php:184 1855 #: inc/Elements/Testimonial_Slider.php:23 41893 #: inc/Elements/Testimonial_Slider.php:238 1856 1894 msgid "No of Slide per Page" 1857 1895 msgstr "" … … 1861 1899 msgstr "" 1862 1900 1863 #: inc/Elements/Post_Carousel.php:135 inc/Elements/Slider.php:17 01864 #: inc/Elements/Testimonial_Slider.php:2 481901 #: inc/Elements/Post_Carousel.php:135 inc/Elements/Slider.php:171 1902 #: inc/Elements/Testimonial_Slider.php:252 1865 1903 msgid "Animation Speed" 1866 1904 msgstr "" 1867 1905 1868 #: inc/Elements/Post_Carousel.php:141 inc/Elements/Slider.php:17 61869 #: inc/Elements/Testimonial_Slider.php:25 41906 #: inc/Elements/Post_Carousel.php:141 inc/Elements/Slider.php:177 1907 #: inc/Elements/Testimonial_Slider.php:258 1870 1908 msgid "Value in milliseconds. Default:300" 1871 1909 msgstr "" 1872 1910 1873 #: inc/Elements/Post_Carousel.php:149 inc/Elements/Slider.php:18 41874 #: inc/Elements/Testimonial_Slider.php:26 21911 #: inc/Elements/Post_Carousel.php:149 inc/Elements/Slider.php:185 1912 #: inc/Elements/Testimonial_Slider.php:266 1875 1913 msgid "Slider Autoplay?" 1876 1914 msgstr "" 1877 1915 1878 #: inc/Elements/Post_Carousel.php:162 inc/Elements/Slider.php:19 71879 #: inc/Elements/Testimonial_Slider.php:27 51916 #: inc/Elements/Post_Carousel.php:162 inc/Elements/Slider.php:198 1917 #: inc/Elements/Testimonial_Slider.php:279 1880 1918 msgid "Autoplay Speed" 1881 1919 msgstr "" 1882 1920 1883 #: inc/Elements/Post_Carousel.php:171 inc/Elements/Slider.php:20 61884 #: inc/Elements/Testimonial_Slider.php:28 41921 #: inc/Elements/Post_Carousel.php:171 inc/Elements/Slider.php:207 1922 #: inc/Elements/Testimonial_Slider.php:288 1885 1923 msgid "Value in milliseconds. Default:3000" 1886 1924 msgstr "" 1887 1925 1888 #: inc/Elements/Post_Carousel.php:180 inc/Elements/Slider.php:21 51889 #: inc/Elements/Testimonial_Slider.php:29 31926 #: inc/Elements/Post_Carousel.php:180 inc/Elements/Slider.php:216 1927 #: inc/Elements/Testimonial_Slider.php:297 1890 1928 msgid "Infinite Loop?" 1891 1929 msgstr "" … … 1895 1933 msgstr "" 1896 1934 1897 #: inc/Elements/Post_Carousel.php:300 inc/Elements/Post_Grid.php:387 1935 #: inc/Elements/Post_Carousel.php:209 1936 msgid "Blog Post Overlay" 1937 msgstr "" 1938 1939 #: inc/Elements/Post_Carousel.php:217 1940 msgid "Overlay Width Full?" 1941 msgstr "" 1942 1943 #: inc/Elements/Post_Carousel.php:241 1944 msgid "Background Hover" 1945 msgstr "" 1946 1947 #: inc/Elements/Post_Carousel.php:343 inc/Elements/Post_Grid.php:387 1898 1948 msgid "Meta Hover Color" 1899 1949 msgstr "" 1900 1950 1901 #: inc/Elements/Post_Carousel.php:3 22inc/Elements/Products.php:2571902 #: inc/Elements/Slider.php:3 71 inc/Elements/Testimonial_Slider.php:7331951 #: inc/Elements/Post_Carousel.php:365 inc/Elements/Products.php:257 1952 #: inc/Elements/Slider.php:361 inc/Elements/Testimonial_Slider.php:737 1903 1953 msgid "Navigation" 1904 1954 msgstr "" 1905 1955 1906 #: inc/Elements/Post_Carousel.php:3 30inc/Elements/Products.php:2661907 #: inc/Elements/ Testimonial_Slider.php:7411956 #: inc/Elements/Post_Carousel.php:373 inc/Elements/Products.php:266 1957 #: inc/Elements/Slider.php:368 inc/Elements/Testimonial_Slider.php:745 1908 1958 msgid "Arrow Size" 1909 1959 msgstr "" 1910 1960 1911 #: inc/Elements/Post_Carousel.php:3 52inc/Elements/Products.php:2881912 #: inc/Elements/Slider.php:3 80 inc/Elements/Testimonial_Slider.php:7631961 #: inc/Elements/Post_Carousel.php:395 inc/Elements/Products.php:288 1962 #: inc/Elements/Slider.php:391 inc/Elements/Testimonial_Slider.php:767 1913 1963 msgid "Arrow Color" 1914 1964 msgstr "" 1915 1965 1916 #: inc/Elements/Post_Carousel.php: 364inc/Elements/Products.php:3001917 #: inc/Elements/Slider.php: 392 inc/Elements/Testimonial_Slider.php:7861966 #: inc/Elements/Post_Carousel.php:407 inc/Elements/Products.php:300 1967 #: inc/Elements/Slider.php:403 inc/Elements/Testimonial_Slider.php:790 1918 1968 msgid "Arrow Background Color" 1919 1969 msgstr "" 1920 1970 1921 #: inc/Elements/Post_Carousel.php:375 inc/Elements/Products.php:311 1922 #: inc/Elements/Slider.php:404 inc/Elements/Testimonial_Slider.php:775 1971 #: inc/Elements/Post_Carousel.php:418 inc/Elements/Products.php:311 1972 #: inc/Elements/Slider.php:415 inc/Elements/Staff_Member.php:480 1973 #: inc/Elements/Testimonial_Slider.php:779 1923 1974 msgid "Hover Color" 1924 1975 msgstr "" 1925 1976 1926 #: inc/Elements/Post_Carousel.php: 397inc/Elements/Products.php:3331927 #: inc/Elements/Slider.php:4 26 inc/Elements/Testimonial_Slider.php:8091977 #: inc/Elements/Post_Carousel.php:440 inc/Elements/Products.php:333 1978 #: inc/Elements/Slider.php:437 inc/Elements/Testimonial_Slider.php:813 1928 1979 msgid "Arrow Padding" 1929 1980 msgstr "" 1930 1981 1931 #: inc/Elements/Post_Carousel.php:421 inc/Elements/Products.php:357 1932 #: inc/Elements/Social_Icon.php:549 inc/Elements/Tabs.php:560 1933 #: inc/Elements/Teaser_Box.php:278 inc/Elements/Testimonial.php:239 1934 #: inc/Elements/Testimonial_Slider.php:400 1935 #: inc/Elements/Testimonial_Slider.php:835 1982 #: inc/Elements/Post_Carousel.php:464 inc/Elements/Products.php:357 1983 #: inc/Elements/Social_Icon.php:546 inc/Elements/Staff_Member.php:689 1984 #: inc/Elements/Staff_Member.php:794 inc/Elements/Tabs.php:560 1985 #: inc/Elements/Teaser_Box.php:280 inc/Elements/Teaser_Box.php:647 1986 #: inc/Elements/Testimonial.php:239 inc/Elements/Testimonial_Slider.php:404 1987 #: inc/Elements/Testimonial_Slider.php:839 1936 1988 msgid "Border Radius" 1937 1989 msgstr "" 1938 1990 1939 #: inc/Elements/Post_Carousel.php:4 49inc/Elements/Products.php:3851940 #: inc/Elements/ Testimonial_Slider.php:8621991 #: inc/Elements/Post_Carousel.php:492 inc/Elements/Products.php:385 1992 #: inc/Elements/Slider.php:504 inc/Elements/Testimonial_Slider.php:866 1941 1993 msgid "Arrow Shadow" 1942 1994 msgstr "" … … 1990 2042 msgstr "" 1991 2043 1992 #: inc/Elements/Post_Grid.php:240 inc/Elements/Staff_Member.php: 2981993 #: inc/Elements/Teaser_Box.php:29 02044 #: inc/Elements/Post_Grid.php:240 inc/Elements/Staff_Member.php:322 2045 #: inc/Elements/Teaser_Box.php:292 1994 2046 msgid "Image Bottom Spacing" 1995 2047 msgstr "" … … 2159 2211 msgstr "" 2160 2212 2161 #: inc/Elements/Pricing_Table.php:87 72213 #: inc/Elements/Pricing_Table.php:870 2162 2214 msgid "Pricing Table Content" 2163 2215 msgstr "" 2164 2216 2165 #: inc/Elements/Pricing_Table.php:91 72217 #: inc/Elements/Pricing_Table.php:910 2166 2218 msgid "Price Table Border Radius" 2167 2219 msgstr "" … … 2231 2283 msgstr "" 2232 2284 2233 #: inc/Elements/Products.php:174 inc/Elements/Slider.php:16 22234 #: inc/Elements/Testimonial_Slider.php:2 262285 #: inc/Elements/Products.php:174 inc/Elements/Slider.php:163 2286 #: inc/Elements/Testimonial_Slider.php:230 2235 2287 msgid "Slider Navigation Settings" 2236 2288 msgstr "" … … 2352 2404 msgstr "" 2353 2405 2354 #: inc/Elements/Slider.php:2 42406 #: inc/Elements/Slider.php:25 2355 2407 msgid "DA: Slider" 2356 2408 msgstr "" 2357 2409 2358 #: inc/Elements/Slider.php:5 22410 #: inc/Elements/Slider.php:53 2359 2411 msgid "Slides" 2360 2412 msgstr "" 2361 2413 2362 #: inc/Elements/Slider.php:8 72414 #: inc/Elements/Slider.php:88 2363 2415 msgid "I am Slide1 Title" 2364 2416 msgstr "" 2365 2417 2366 #: inc/Elements/Slider.php:9 72418 #: inc/Elements/Slider.php:98 2367 2419 msgid "I am Slide1 Sub Title" 2368 2420 msgstr "" 2369 2421 2370 #: inc/Elements/Slider.php:230 2371 msgid "Slide Element Style" 2372 msgstr "" 2373 2374 #: inc/Elements/Slider.php:237 2375 msgid "Navigation Position" 2376 msgstr "" 2377 2378 #: inc/Elements/Slider.php:242 2379 msgid "Top Right Corner" 2380 msgstr "" 2381 2382 #: inc/Elements/Slider.php:243 2383 msgid "Bottom Right Corner" 2384 msgstr "" 2385 2386 #: inc/Elements/Slider.php:244 2387 msgid "Left Right Middle" 2388 msgstr "" 2389 2390 #: inc/Elements/Slider.php:254 2422 #: inc/Elements/Slider.php:233 2391 2423 msgid "Slide Overlay" 2392 2424 msgstr "" 2393 2425 2394 #: inc/Elements/Slider.php:448 2426 #: inc/Elements/Slider.php:279 2427 msgid "Overlay Background Hover" 2428 msgstr "" 2429 2430 #: inc/Elements/Slider.php:459 2395 2431 msgid "Navigation Border Radius" 2396 2432 msgstr "" 2397 2433 2398 #: inc/Elements/Slider.php:581 2434 #: inc/Elements/Slider.php:487 2435 msgid "Left & Right Spacing" 2436 msgstr "" 2437 2438 #: inc/Elements/Slider.php:636 2399 2439 msgid "Dots" 2400 2440 msgstr "" 2401 2441 2402 #: inc/Elements/Slider.php: 5892442 #: inc/Elements/Slider.php:644 2403 2443 msgid "Dots Background Color" 2404 2444 msgstr "" 2405 2445 2406 #: inc/Elements/Slider.php:6 012446 #: inc/Elements/Slider.php:656 2407 2447 msgid "Dots Active Background Color" 2408 2448 msgstr "" 2409 2449 2410 #: inc/Elements/Slider.php:6 132450 #: inc/Elements/Slider.php:668 2411 2451 msgid "Dots Border Color" 2412 2452 msgstr "" … … 2417 2457 2418 2458 #: inc/Elements/Social_Icon.php:53 inc/Elements/Social_Icon.php:243 2419 #: inc/Elements/Staff_Member.php:1 402459 #: inc/Elements/Staff_Member.php:131 2420 2460 msgid "Social Icons" 2421 2461 msgstr "" … … 2429 2469 msgstr "" 2430 2470 2431 #: inc/Elements/Social_Icon.php:113 inc/Elements/Social_Icon.php:58 62471 #: inc/Elements/Social_Icon.php:113 inc/Elements/Social_Icon.php:583 2432 2472 msgid "Social Name" 2433 2473 msgstr "" … … 2437 2477 msgstr "" 2438 2478 2439 #: inc/Elements/Social_Icon.php:146 inc/Elements/Social_Icon.php:3812440 msgid "Normal"2441 msgstr ""2442 2443 2479 #: inc/Elements/Social_Icon.php:153 inc/Elements/Social_Icon.php:203 2444 #: inc/Elements/Social_Icon.php:388 inc/Elements/Social_Icon.php:439 2480 #: inc/Elements/Social_Icon.php:388 inc/Elements/Social_Icon.php:438 2481 #: inc/Elements/Staff_Member.php:470 2445 2482 msgid "Color" 2446 msgstr ""2447 2448 #: inc/Elements/Social_Icon.php:182 inc/Elements/Social_Icon.php:2272449 #: inc/Elements/Social_Icon.php:419 inc/Elements/Social_Icon.php:4632450 msgid "Border Color"2451 msgstr ""2452 2453 #: inc/Elements/Social_Icon.php:196 inc/Elements/Social_Icon.php:4322454 msgid "Hover"2455 2483 msgstr "" 2456 2484 … … 2459 2487 msgstr "" 2460 2488 2461 #: inc/Elements/Social_Icon.php:366 inc/Elements/Staff_Member.php:1 642462 #: inc/Elements/Staff_Member.php:5 112489 #: inc/Elements/Social_Icon.php:366 inc/Elements/Staff_Member.php:155 2490 #: inc/Elements/Staff_Member.php:564 2463 2491 msgid "Social Icon" 2464 2492 msgstr "" … … 2468 2496 msgstr "" 2469 2497 2470 #: inc/Elements/Social_Icon.php:49 82498 #: inc/Elements/Social_Icon.php:497 2471 2499 msgid "Space Between Icon" 2472 2500 msgstr "" 2473 2501 2474 #: inc/Elements/Social_Icon.php:5 222502 #: inc/Elements/Social_Icon.php:519 2475 2503 msgid "Social Icon Padding" 2476 2504 msgstr "" 2477 2505 2478 #: inc/Elements/Social_Icon.php:59 52506 #: inc/Elements/Social_Icon.php:592 2479 2507 msgid "Typography" 2480 2508 msgstr "" 2481 2509 2482 #: inc/Elements/Social_Icon.php:60 52510 #: inc/Elements/Social_Icon.php:602 2483 2511 msgid "Space between Name and Icon" 2484 2512 msgstr "" 2485 2513 2486 #: inc/Elements/Staff_Member.php:3 02514 #: inc/Elements/Staff_Member.php:31 2487 2515 msgid "DA: Staff Member" 2488 2516 msgstr "" 2489 2517 2490 #: inc/Elements/Staff_Member.php:6 42518 #: inc/Elements/Staff_Member.php:65 2491 2519 msgid "Staff Member" 2492 2520 msgstr "" 2493 2521 2494 #: inc/Elements/Staff_Member.php:85 2495 msgid "Image Width(%)" 2496 msgstr "" 2497 2498 #: inc/Elements/Staff_Member.php:109 2522 #: inc/Elements/Staff_Member.php:100 2499 2523 msgid "Name" 2500 2524 msgstr "" 2501 2525 2502 #: inc/Elements/Staff_Member.php:1 202526 #: inc/Elements/Staff_Member.php:111 2503 2527 msgid "Job Position" 2504 2528 msgstr "" 2505 2529 2506 #: inc/Elements/Staff_Member.php:1 21inc/Elements/Testimonial.php:1172530 #: inc/Elements/Staff_Member.php:112 inc/Elements/Testimonial.php:117 2507 2531 #: inc/Elements/Testimonial_Slider.php:107 2508 2532 msgid "Developer" 2509 2533 msgstr "" 2510 2534 2511 #: inc/Elements/Staff_Member.php:1 312535 #: inc/Elements/Staff_Member.php:122 2512 2536 msgid "About Staff Member" 2513 2537 msgstr "" 2514 2538 2515 #: inc/Elements/Staff_Member.php:1 322539 #: inc/Elements/Staff_Member.php:123 2516 2540 msgid "" 2517 2541 "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " … … 2519 2543 msgstr "" 2520 2544 2521 #: inc/Elements/Staff_Member.php:1 482545 #: inc/Elements/Staff_Member.php:139 2522 2546 msgid "Social Icons Show/Hide" 2523 2547 msgstr "" 2524 2548 2525 #: inc/Elements/Staff_Member.php:17 82549 #: inc/Elements/Staff_Member.php:171 2526 2550 msgid "Social Icon Link" 2527 2551 msgstr "" 2528 2552 2529 #: inc/Elements/Staff_Member.php:2 212553 #: inc/Elements/Staff_Member.php:217 2530 2554 msgid "Staff Member Item Style" 2531 2555 msgstr "" 2532 2556 2533 #: inc/Elements/Staff_Member.php:2 592557 #: inc/Elements/Staff_Member.php:260 2534 2558 msgid "Staff Member Image" 2535 2559 msgstr "" 2536 2560 2537 #: inc/Elements/Staff_Member.php:275 2561 #: inc/Elements/Staff_Member.php:268 inc/Elements/Teaser_Box.php:249 2562 msgid "Image Width(%)" 2563 msgstr "" 2564 2565 #: inc/Elements/Staff_Member.php:299 2538 2566 msgid "Image Border Hover Color" 2539 2567 msgstr "" 2540 2568 2541 #: inc/Elements/Staff_Member.php:317 2569 #: inc/Elements/Staff_Member.php:337 inc/Elements/Staff_Member.php:832 2570 msgid "Box Shadow" 2571 msgstr "" 2572 2573 #: inc/Elements/Staff_Member.php:347 inc/Elements/Teaser_Box.php:307 2574 msgid "CSS Filter" 2575 msgstr "" 2576 2577 #: inc/Elements/Staff_Member.php:356 inc/Elements/Teaser_Box.php:316 2578 msgid "CSS Filter Hover" 2579 msgstr "" 2580 2581 #: inc/Elements/Staff_Member.php:370 2542 2582 msgid "Staff Member Name" 2543 2583 msgstr "" 2544 2584 2545 #: inc/Elements/Staff_Member.php:3 262585 #: inc/Elements/Staff_Member.php:379 2546 2586 msgid "Name Bottom Spacing" 2547 2587 msgstr "" 2548 2588 2549 #: inc/Elements/Staff_Member.php:3 41inc/Elements/Testimonial.php:3412550 #: inc/Elements/Testimonial_Slider.php:4 482589 #: inc/Elements/Staff_Member.php:394 inc/Elements/Testimonial.php:341 2590 #: inc/Elements/Testimonial_Slider.php:452 2551 2591 msgid "Name Color" 2552 2592 msgstr "" 2553 2593 2554 #: inc/Elements/Staff_Member.php: 353inc/Elements/Testimonial.php:3522555 #: inc/Elements/Testimonial_Slider.php:4 592594 #: inc/Elements/Staff_Member.php:406 inc/Elements/Testimonial.php:352 2595 #: inc/Elements/Testimonial_Slider.php:463 2556 2596 msgid "Name Hover Color" 2557 2597 msgstr "" 2558 2598 2559 #: inc/Elements/Staff_Member.php: 3942599 #: inc/Elements/Staff_Member.php:447 2560 2600 msgid "Staff Member Job Position" 2561 2601 msgstr "" 2562 2602 2563 #: inc/Elements/Staff_Member.php:402 2564 msgid "Job Position Bottom Spacing" 2565 msgstr "" 2566 2567 #: inc/Elements/Staff_Member.php:417 2568 msgid "Job Position Color" 2569 msgstr "" 2570 2571 #: inc/Elements/Staff_Member.php:427 2572 msgid "Job Position Hover Color" 2573 msgstr "" 2574 2575 #: inc/Elements/Staff_Member.php:469 2603 #: inc/Elements/Staff_Member.php:522 2576 2604 msgid "Staff Member Text" 2577 2605 msgstr "" 2578 2606 2579 #: inc/Elements/Staff_Member.php: 4782580 msgid " TextBottom Padding"2581 msgstr "" 2582 2583 #: inc/Elements/Staff_Member.php: 6902607 #: inc/Elements/Staff_Member.php:531 2608 msgid "Bottom Padding" 2609 msgstr "" 2610 2611 #: inc/Elements/Staff_Member.php:743 2584 2612 msgid "Staff Member Container" 2613 msgstr "" 2614 2615 #: inc/Elements/Staff_Member.php:842 2616 msgid "Hover Box Shadow" 2585 2617 msgstr "" 2586 2618 … … 2626 2658 2627 2659 #: inc/Elements/Subscription.php:229 inc/Elements/Testimonial.php:451 2628 #: inc/Elements/Testimonial_Slider.php:56 12660 #: inc/Elements/Testimonial_Slider.php:565 2629 2661 msgid "Text Bottom Spacing" 2630 2662 msgstr "" … … 2706 2738 msgstr "" 2707 2739 2708 #: inc/Elements/Teaser_Box.php:2 82740 #: inc/Elements/Teaser_Box.php:29 2709 2741 msgid "DA: Card" 2710 2742 msgstr "" 2711 2743 2712 #: inc/Elements/Teaser_Box.php:5 12744 #: inc/Elements/Teaser_Box.php:52 2713 2745 msgid "Card" 2714 2746 msgstr "" 2715 2747 2716 #: inc/Elements/Teaser_Box.php:9 4 inc/Elements/Teaser_Box.php:3112748 #: inc/Elements/Teaser_Box.php:95 inc/Elements/Teaser_Box.php:333 2717 2749 msgid "Card Title" 2718 2750 msgstr "" 2719 2751 2720 #: inc/Elements/Teaser_Box.php:1 572752 #: inc/Elements/Teaser_Box.php:171 2721 2753 msgid "Card Text" 2722 2754 msgstr "" 2723 2755 2724 #: inc/Elements/Teaser_Box.php:1 622756 #: inc/Elements/Teaser_Box.php:176 2725 2757 msgid "Add Card text here or leave it blank." 2726 2758 msgstr "" 2727 2759 2728 #: inc/Elements/Teaser_Box.php:1 692760 #: inc/Elements/Teaser_Box.php:183 2729 2761 msgid "Show/Hide Button" 2730 2762 msgstr "" 2731 2763 2732 #: inc/Elements/Teaser_Box.php:247 inc/Elements/Testimonial.php:209 2733 #: inc/Elements/Testimonial_Slider.php:316 2734 msgid "Image Size" 2735 msgstr "" 2736 2737 #: inc/Elements/Teaser_Box.php:389 2764 #: inc/Elements/Teaser_Box.php:411 2738 2765 msgid "Card Description" 2739 2766 msgstr "" 2740 2767 2741 #: inc/Elements/Teaser_Box.php:4 242768 #: inc/Elements/Teaser_Box.php:446 2742 2769 msgid "Description Hover Color" 2743 2770 msgstr "" 2744 2771 2745 #: inc/Elements/Teaser_Box.php:4 502772 #: inc/Elements/Teaser_Box.php:472 2746 2773 msgid "Card Button" 2747 2774 msgstr "" 2748 2775 2749 #: inc/Elements/Teaser_Box.php:5 762776 #: inc/Elements/Teaser_Box.php:598 2750 2777 msgid "Card Container" 2751 2778 msgstr "" … … 2765 2792 #: inc/Elements/Testimonial.php:106 inc/Elements/Testimonial.php:319 2766 2793 #: inc/Elements/Testimonial_Slider.php:96 2767 #: inc/Elements/Testimonial_Slider.php:4 262794 #: inc/Elements/Testimonial_Slider.php:430 2768 2795 msgid "Reviewer Name" 2769 2796 msgstr "" … … 2783 2810 #: inc/Elements/Testimonial.php:156 inc/Elements/Testimonial.php:442 2784 2811 #: inc/Elements/Testimonial_Slider.php:143 2785 #: inc/Elements/Testimonial_Slider.php:55 22812 #: inc/Elements/Testimonial_Slider.php:556 2786 2813 msgid "Reviewer Text" 2787 2814 msgstr "" … … 2793 2820 msgstr "" 2794 2821 2795 #: inc/Elements/Testimonial.php:164 inc/Elements/Testimonial_Slider.php:2 062822 #: inc/Elements/Testimonial.php:164 inc/Elements/Testimonial_Slider.php:210 2796 2823 msgid "Testimonial Layout" 2797 2824 msgstr "" 2798 2825 2799 #: inc/Elements/Testimonial.php:182 inc/Elements/Testimonial_Slider.php:19 22826 #: inc/Elements/Testimonial.php:182 inc/Elements/Testimonial_Slider.php:196 2800 2827 msgid "Show/Hide Quote" 2801 2828 msgstr "" 2802 2829 2803 #: inc/Elements/Testimonial.php:202 inc/Elements/Testimonial_Slider.php:3 092830 #: inc/Elements/Testimonial.php:202 inc/Elements/Testimonial_Slider.php:313 2804 2831 msgid "Reviewer Image" 2805 2832 msgstr "" 2806 2833 2807 #: inc/Elements/Testimonial.php:375 inc/Elements/Testimonial_Slider.php:482 2834 #: inc/Elements/Testimonial.php:209 inc/Elements/Testimonial_Slider.php:320 2835 msgid "Image Size" 2836 msgstr "" 2837 2838 #: inc/Elements/Testimonial.php:375 inc/Elements/Testimonial_Slider.php:486 2808 2839 msgid "Reviewer Title" 2809 2840 msgstr "" 2810 2841 2811 #: inc/Elements/Testimonial.php:408 inc/Elements/Testimonial_Slider.php:5 162842 #: inc/Elements/Testimonial.php:408 inc/Elements/Testimonial_Slider.php:520 2812 2843 msgid "Reviewer Organizaiton" 2813 2844 msgstr "" 2814 2845 2815 #: inc/Elements/Testimonial.php:419 inc/Elements/Testimonial_Slider.php:5 292846 #: inc/Elements/Testimonial.php:419 inc/Elements/Testimonial_Slider.php:533 2816 2847 msgid "Organization Color" 2817 2848 msgstr "" 2818 2849 2819 #: inc/Elements/Testimonial.php:486 inc/Elements/Testimonial_Slider.php: 5962850 #: inc/Elements/Testimonial.php:486 inc/Elements/Testimonial_Slider.php:600 2820 2851 msgid "Reviewer Quote" 2821 2852 msgstr "" 2822 2853 2823 #: inc/Elements/Testimonial.php:498 inc/Elements/Testimonial_Slider.php:6 082854 #: inc/Elements/Testimonial.php:498 inc/Elements/Testimonial_Slider.php:612 2824 2855 msgid "Quote Left Spacing" 2825 2856 msgstr "" 2826 2857 2827 #: inc/Elements/Testimonial.php:513 inc/Elements/Testimonial_Slider.php:62 32858 #: inc/Elements/Testimonial.php:513 inc/Elements/Testimonial_Slider.php:627 2828 2859 msgid "Quote Right Spacing" 2829 2860 msgstr "" 2830 2861 2831 #: inc/Elements/Testimonial.php:528 inc/Elements/Testimonial_Slider.php:6 382862 #: inc/Elements/Testimonial.php:528 inc/Elements/Testimonial_Slider.php:642 2832 2863 msgid "Quote Color" 2833 2864 msgstr "" 2834 2865 2835 #: inc/Elements/Testimonial.php:539 inc/Elements/Testimonial_Slider.php:6 492866 #: inc/Elements/Testimonial.php:539 inc/Elements/Testimonial_Slider.php:653 2836 2867 msgid "Quote Size" 2837 2868 msgstr "" 2838 2869 2839 #: inc/Elements/Testimonial.php:561 inc/Elements/Testimonial_Slider.php:67 22870 #: inc/Elements/Testimonial.php:561 inc/Elements/Testimonial_Slider.php:676 2840 2871 msgid "Testimonial Container" 2841 2872 msgstr "" … … 2849 2880 msgstr "" 2850 2881 2851 #: inc/Elements/Testimonial_Slider.php:24 02882 #: inc/Elements/Testimonial_Slider.php:244 2852 2883 msgid "Default:1" 2853 2884 msgstr "" … … 2861 2892 msgstr "" 2862 2893 2863 #: inc/Elements/Type.php:66 inc/Elements/Type.php:11 72894 #: inc/Elements/Type.php:66 inc/Elements/Type.php:116 2864 2895 msgid "Typing Text" 2865 2896 msgstr "" … … 2873 2904 msgstr "" 2874 2905 2875 #: inc/Elements/Type.php:12 72906 #: inc/Elements/Type.php:126 2876 2907 msgid "Type Text Color" 2877 2908 msgstr "" 2878 2909 2879 #: inc/Elements/Type.php:13 72910 #: inc/Elements/Type.php:136 2880 2911 msgid "Type Text Background Color" 2881 2912 msgstr "" 2882 2913 2883 #: inc/Elements/Type.php:15 82914 #: inc/Elements/Type.php:157 2884 2915 msgid "Type Text Hover Color" 2885 2916 msgstr "" … … 3133 3164 msgstr "" 3134 3165 3135 #: inc/Reuses/Reuse.php:202 3136 msgid "500px" 3137 msgstr "" 3138 3139 #: inc/Reuses/Reuse.php:203 3140 msgid "android" 3141 msgstr "" 3142 3143 #: inc/Reuses/Reuse.php:204 3144 msgid "apple" 3145 msgstr "" 3146 3147 #: inc/Reuses/Reuse.php:205 3148 msgid "behance" 3149 msgstr "" 3150 3151 #: inc/Reuses/Reuse.php:206 3152 msgid "bitbucket" 3153 msgstr "" 3154 3155 #: inc/Reuses/Reuse.php:207 3156 msgid "codepen" 3157 msgstr "" 3158 3159 #: inc/Reuses/Reuse.php:208 3160 msgid "delicious" 3161 msgstr "" 3162 3163 #: inc/Reuses/Reuse.php:209 3164 msgid "deviantart" 3165 msgstr "" 3166 3167 #: inc/Reuses/Reuse.php:210 3168 msgid "digg" 3169 msgstr "" 3170 3171 #: inc/Reuses/Reuse.php:211 3172 msgid "dribbble" 3173 msgstr "" 3174 3175 #: inc/Reuses/Reuse.php:213 3176 msgid "facebook" 3177 msgstr "" 3178 3179 #: inc/Reuses/Reuse.php:214 3180 msgid "flickr" 3181 msgstr "" 3182 3183 #: inc/Reuses/Reuse.php:215 3184 msgid "foursquare" 3185 msgstr "" 3186 3187 #: inc/Reuses/Reuse.php:217 3188 msgid "github" 3189 msgstr "" 3190 3191 #: inc/Reuses/Reuse.php:219 3192 msgid "globe" 3193 msgstr "" 3194 3195 #: inc/Reuses/Reuse.php:220 3196 msgid "google-plus" 3197 msgstr "" 3198 3199 #: inc/Reuses/Reuse.php:221 3200 msgid "houzz" 3201 msgstr "" 3202 3203 #: inc/Reuses/Reuse.php:222 3204 msgid "instagram" 3205 msgstr "" 3206 3207 #: inc/Reuses/Reuse.php:223 3208 msgid "jsfiddle" 3209 msgstr "" 3210 3211 #: inc/Reuses/Reuse.php:224 3212 msgid "linkedin" 3213 msgstr "" 3214 3215 #: inc/Reuses/Reuse.php:225 3216 msgid "medium" 3217 msgstr "" 3218 3219 #: inc/Reuses/Reuse.php:226 3220 msgid "meetup" 3221 msgstr "" 3222 3223 #: inc/Reuses/Reuse.php:227 3224 msgid "mixcloud" 3225 msgstr "" 3226 3227 #: inc/Reuses/Reuse.php:229 3228 msgid "pinterest" 3229 msgstr "" 3230 3231 #: inc/Reuses/Reuse.php:230 3232 msgid "product-hunt" 3233 msgstr "" 3234 3235 #: inc/Reuses/Reuse.php:231 3236 msgid "reddit" 3237 msgstr "" 3238 3239 #: inc/Reuses/Reuse.php:232 3240 msgid "shopping-cart" 3241 msgstr "" 3242 3243 #: inc/Reuses/Reuse.php:233 3244 msgid "skype" 3245 msgstr "" 3246 3247 #: inc/Reuses/Reuse.php:234 3248 msgid "slideshare" 3249 msgstr "" 3250 3251 #: inc/Reuses/Reuse.php:235 3252 msgid "snapchat" 3253 msgstr "" 3254 3255 #: inc/Reuses/Reuse.php:236 3256 msgid "soundcloud" 3257 msgstr "" 3258 3259 #: inc/Reuses/Reuse.php:237 3260 msgid "spotify" 3261 msgstr "" 3262 3263 #: inc/Reuses/Reuse.php:239 3264 msgid "steam" 3265 msgstr "" 3266 3267 #: inc/Reuses/Reuse.php:240 3268 msgid "stumbleupon" 3269 msgstr "" 3270 3271 #: inc/Reuses/Reuse.php:241 3272 msgid "telegram" 3273 msgstr "" 3274 3275 #: inc/Reuses/Reuse.php:242 3276 msgid "thumb-tack" 3277 msgstr "" 3278 3279 #: inc/Reuses/Reuse.php:243 3280 msgid "tripadvisor" 3281 msgstr "" 3282 3283 #: inc/Reuses/Reuse.php:244 3284 msgid "tumblr" 3285 msgstr "" 3286 3287 #: inc/Reuses/Reuse.php:245 3288 msgid "twitch" 3289 msgstr "" 3290 3291 #: inc/Reuses/Reuse.php:246 3292 msgid "twitter" 3293 msgstr "" 3294 3295 #: inc/Reuses/Reuse.php:247 3296 msgid "viber" 3297 msgstr "" 3298 3299 #: inc/Reuses/Reuse.php:248 3300 msgid "vimeo" 3301 msgstr "" 3302 3303 #: inc/Reuses/Reuse.php:249 3304 msgid "vk" 3305 msgstr "" 3306 3307 #: inc/Reuses/Reuse.php:250 3308 msgid "weibo" 3309 msgstr "" 3310 3311 #: inc/Reuses/Reuse.php:251 3312 msgid "weixin" 3313 msgstr "" 3314 3315 #: inc/Reuses/Reuse.php:252 3316 msgid "whatsapp" 3317 msgstr "" 3318 3319 #: inc/Reuses/Reuse.php:253 3320 msgid "wordpress" 3321 msgstr "" 3322 3323 #: inc/Reuses/Reuse.php:254 3324 msgid "xing" 3325 msgstr "" 3326 3327 #: inc/Reuses/Reuse.php:255 3328 msgid "yelp" 3329 msgstr "" 3330 3331 #: inc/Reuses/Reuse.php:256 3332 msgid "youtube" 3333 msgstr "" 3334 3335 #: inc/Reuses/Reuse.php:258 3336 msgid "cc-amex" 3337 msgstr "" 3338 3339 #: inc/Reuses/Reuse.php:259 3340 msgid "cc-mastercard" 3341 msgstr "" 3342 3343 #: inc/Reuses/Reuse.php:260 3344 msgid "cc-paypal" 3345 msgstr "" 3346 3347 #: inc/Reuses/Reuse.php:261 3348 msgid "cc-stripe" 3349 msgstr "" 3350 3351 #: inc/Reuses/Reuse.php:262 3352 msgid "cc-visa" 3353 msgstr "" 3354 3355 #: inc/Reuses/Reuse.php:263 3356 msgid "credit-card" 3357 msgstr "" 3358 3359 #: inc/Reuses/Reuse.php:264 3360 msgid "google-wallet" 3361 msgstr "" 3362 3363 #: inc/Reuses/Reuse.php:265 3364 msgid "paypal" 3365 msgstr "" 3366 3367 #: inc/Reuses/Reuse.php:266 3368 msgid "cc-discover" 3369 msgstr "" 3370 3371 #: inc/Reuses/Reuse.php:267 3372 msgid "cc-jcb" 3373 msgstr "" 3374 3375 #: inc/Reuses/Reuse.php:273 3166 #: inc/Reuses/Reuse.php:357 3376 3167 msgid "none" 3377 3168 msgstr "" 3378 3169 3379 #: inc/Reuses/Reuse.php: 2743170 #: inc/Reuses/Reuse.php:358 3380 3171 msgid "bounce" 3381 3172 msgstr "" 3382 3173 3383 #: inc/Reuses/Reuse.php: 2753174 #: inc/Reuses/Reuse.php:359 3384 3175 msgid "flash" 3385 3176 msgstr "" 3386 3177 3387 #: inc/Reuses/Reuse.php: 2763178 #: inc/Reuses/Reuse.php:360 3388 3179 msgid "pulse" 3389 3180 msgstr "" 3390 3181 3391 #: inc/Reuses/Reuse.php: 2773182 #: inc/Reuses/Reuse.php:361 3392 3183 msgid "rubberBand" 3393 3184 msgstr "" 3394 3185 3395 #: inc/Reuses/Reuse.php: 2783186 #: inc/Reuses/Reuse.php:362 3396 3187 msgid "shake" 3397 3188 msgstr "" 3398 3189 3399 #: inc/Reuses/Reuse.php: 2793190 #: inc/Reuses/Reuse.php:363 3400 3191 msgid "headShake" 3401 3192 msgstr "" 3402 3193 3403 #: inc/Reuses/Reuse.php: 2803194 #: inc/Reuses/Reuse.php:364 3404 3195 msgid "swing" 3405 3196 msgstr "" 3406 3197 3407 #: inc/Reuses/Reuse.php: 2813198 #: inc/Reuses/Reuse.php:365 3408 3199 msgid "tada" 3409 3200 msgstr "" 3410 3201 3411 #: inc/Reuses/Reuse.php: 2823202 #: inc/Reuses/Reuse.php:366 3412 3203 msgid "wobble" 3413 3204 msgstr "" 3414 3205 3415 #: inc/Reuses/Reuse.php: 2833206 #: inc/Reuses/Reuse.php:367 3416 3207 msgid "jello" 3417 3208 msgstr "" 3418 3209 3419 #: inc/Reuses/Reuse.php: 2843210 #: inc/Reuses/Reuse.php:368 3420 3211 msgid "bounceIn" 3421 3212 msgstr "" 3422 3213 3423 #: inc/Reuses/Reuse.php: 2853214 #: inc/Reuses/Reuse.php:369 3424 3215 msgid "bounceInDown" 3425 3216 msgstr "" 3426 3217 3427 #: inc/Reuses/Reuse.php: 286 inc/Reuses/Reuse.php:2873218 #: inc/Reuses/Reuse.php:370 inc/Reuses/Reuse.php:371 3428 3219 msgid "bounceInLeft" 3429 3220 msgstr "" 3430 3221 3431 #: inc/Reuses/Reuse.php: 2883222 #: inc/Reuses/Reuse.php:372 3432 3223 msgid "bounceInUp" 3433 3224 msgstr "" 3434 3225 3435 #: inc/Reuses/Reuse.php: 2893226 #: inc/Reuses/Reuse.php:373 3436 3227 msgid "bounceOut" 3437 3228 msgstr "" 3438 3229 3439 #: inc/Reuses/Reuse.php: 2903230 #: inc/Reuses/Reuse.php:374 3440 3231 msgid "bounceOutDown" 3441 3232 msgstr "" 3442 3233 3443 #: inc/Reuses/Reuse.php: 2913234 #: inc/Reuses/Reuse.php:375 3444 3235 msgid "bounceOutLeft" 3445 3236 msgstr "" 3446 3237 3447 #: inc/Reuses/Reuse.php: 2923238 #: inc/Reuses/Reuse.php:376 3448 3239 msgid "bounceOutRight" 3449 3240 msgstr "" 3450 3241 3451 #: inc/Reuses/Reuse.php: 2933242 #: inc/Reuses/Reuse.php:377 3452 3243 msgid "bounceOutUp" 3453 3244 msgstr "" 3454 3245 3455 #: inc/Reuses/Reuse.php: 2943246 #: inc/Reuses/Reuse.php:378 3456 3247 msgid "fadeIn" 3457 3248 msgstr "" 3458 3249 3459 #: inc/Reuses/Reuse.php: 2953250 #: inc/Reuses/Reuse.php:379 3460 3251 msgid "fadeInDown" 3461 3252 msgstr "" 3462 3253 3463 #: inc/Reuses/Reuse.php: 2963254 #: inc/Reuses/Reuse.php:380 3464 3255 msgid "fadeInDownBig" 3465 3256 msgstr "" 3466 3257 3467 #: inc/Reuses/Reuse.php: 2973258 #: inc/Reuses/Reuse.php:381 3468 3259 msgid "fadeInLeft" 3469 3260 msgstr "" 3470 3261 3471 #: inc/Reuses/Reuse.php: 2983262 #: inc/Reuses/Reuse.php:382 3472 3263 msgid "fadeInLeftBig" 3473 3264 msgstr "" 3474 3265 3475 #: inc/Reuses/Reuse.php: 2993266 #: inc/Reuses/Reuse.php:383 3476 3267 msgid "fadeInRight" 3477 3268 msgstr "" 3478 3269 3479 #: inc/Reuses/Reuse.php:3 003270 #: inc/Reuses/Reuse.php:384 3480 3271 msgid "fadeInRightBig" 3481 3272 msgstr "" 3482 3273 3483 #: inc/Reuses/Reuse.php:3 013274 #: inc/Reuses/Reuse.php:385 3484 3275 msgid "fadeInUp" 3485 3276 msgstr "" 3486 3277 3487 #: inc/Reuses/Reuse.php:3 023278 #: inc/Reuses/Reuse.php:386 3488 3279 msgid "fadeInUpBig" 3489 3280 msgstr "" 3490 3281 3491 #: inc/Reuses/Reuse.php:3 033282 #: inc/Reuses/Reuse.php:387 3492 3283 msgid "fadeOut" 3493 3284 msgstr "" 3494 3285 3495 #: inc/Reuses/Reuse.php:3 043286 #: inc/Reuses/Reuse.php:388 3496 3287 msgid "fadeOutDown" 3497 3288 msgstr "" 3498 3289 3499 #: inc/Reuses/Reuse.php:3 053290 #: inc/Reuses/Reuse.php:389 3500 3291 msgid "fadeOutDownBig" 3501 3292 msgstr "" 3502 3293 3503 #: inc/Reuses/Reuse.php:3 063294 #: inc/Reuses/Reuse.php:390 3504 3295 msgid "fadeOutLeft" 3505 3296 msgstr "" 3506 3297 3507 #: inc/Reuses/Reuse.php:3 073298 #: inc/Reuses/Reuse.php:391 3508 3299 msgid "fadeOutLeftBig" 3509 3300 msgstr "" 3510 3301 3511 #: inc/Reuses/Reuse.php:3 083302 #: inc/Reuses/Reuse.php:392 3512 3303 msgid "fadeOutRight" 3513 3304 msgstr "" 3514 3305 3515 #: inc/Reuses/Reuse.php:3 093306 #: inc/Reuses/Reuse.php:393 3516 3307 msgid "fadeOutRightBig" 3517 3308 msgstr "" 3518 3309 3519 #: inc/Reuses/Reuse.php:3 103310 #: inc/Reuses/Reuse.php:394 3520 3311 msgid "fadeOutUp" 3521 3312 msgstr "" 3522 3313 3523 #: inc/Reuses/Reuse.php:3 113314 #: inc/Reuses/Reuse.php:395 3524 3315 msgid "fadeOutUpBig" 3525 3316 msgstr "" 3526 3317 3527 #: inc/Reuses/Reuse.php:3 123318 #: inc/Reuses/Reuse.php:396 3528 3319 msgid "flipInX" 3529 3320 msgstr "" 3530 3321 3531 #: inc/Reuses/Reuse.php:3 133322 #: inc/Reuses/Reuse.php:397 3532 3323 msgid "flipInY" 3533 3324 msgstr "" 3534 3325 3535 #: inc/Reuses/Reuse.php:3 143326 #: inc/Reuses/Reuse.php:398 3536 3327 msgid "flipOutX" 3537 3328 msgstr "" 3538 3329 3539 #: inc/Reuses/Reuse.php:3 153330 #: inc/Reuses/Reuse.php:399 3540 3331 msgid "flipOutY" 3541 3332 msgstr "" 3542 3333 3543 #: inc/Reuses/Reuse.php: 3163334 #: inc/Reuses/Reuse.php:400 3544 3335 msgid "lightSpeedIn" 3545 3336 msgstr "" 3546 3337 3547 #: inc/Reuses/Reuse.php: 3173338 #: inc/Reuses/Reuse.php:401 3548 3339 msgid "lightSpeedOut" 3549 3340 msgstr "" 3550 3341 3551 #: inc/Reuses/Reuse.php: 3183342 #: inc/Reuses/Reuse.php:402 3552 3343 msgid "rotateIn" 3553 3344 msgstr "" 3554 3345 3555 #: inc/Reuses/Reuse.php: 3193346 #: inc/Reuses/Reuse.php:403 3556 3347 msgid "rotateInDownLeft" 3557 3348 msgstr "" 3558 3349 3559 #: inc/Reuses/Reuse.php: 3203350 #: inc/Reuses/Reuse.php:404 3560 3351 msgid "rotateInDownRight" 3561 3352 msgstr "" 3562 3353 3563 #: inc/Reuses/Reuse.php: 3213354 #: inc/Reuses/Reuse.php:405 3564 3355 msgid "rotateInUpLeft" 3565 3356 msgstr "" 3566 3357 3567 #: inc/Reuses/Reuse.php: 3223358 #: inc/Reuses/Reuse.php:406 3568 3359 msgid "rotateInUpRight" 3569 3360 msgstr "" 3570 3361 3571 #: inc/Reuses/Reuse.php: 3233362 #: inc/Reuses/Reuse.php:407 3572 3363 msgid "rotateOut" 3573 3364 msgstr "" 3574 3365 3575 #: inc/Reuses/Reuse.php: 3243366 #: inc/Reuses/Reuse.php:408 3576 3367 msgid "rotateOutDownLeft" 3577 3368 msgstr "" 3578 3369 3579 #: inc/Reuses/Reuse.php: 3253370 #: inc/Reuses/Reuse.php:409 3580 3371 msgid "rotateOutDownRight" 3581 3372 msgstr "" 3582 3373 3583 #: inc/Reuses/Reuse.php: 3263374 #: inc/Reuses/Reuse.php:410 3584 3375 msgid "rotateOutUpLeft" 3585 3376 msgstr "" 3586 3377 3587 #: inc/Reuses/Reuse.php: 3273378 #: inc/Reuses/Reuse.php:411 3588 3379 msgid "rotateOutUpRight" 3589 3380 msgstr "" 3590 3381 3591 #: inc/Reuses/Reuse.php: 3283382 #: inc/Reuses/Reuse.php:412 3592 3383 msgid "hinge" 3593 3384 msgstr "" 3594 3385 3595 #: inc/Reuses/Reuse.php: 3293386 #: inc/Reuses/Reuse.php:413 3596 3387 msgid "jackInTheBox" 3597 3388 msgstr "" 3598 3389 3599 #: inc/Reuses/Reuse.php: 3303390 #: inc/Reuses/Reuse.php:414 3600 3391 msgid "rollIn" 3601 3392 msgstr "" 3602 3393 3603 #: inc/Reuses/Reuse.php: 3313394 #: inc/Reuses/Reuse.php:415 3604 3395 msgid "rollOut" 3605 3396 msgstr "" 3606 3397 3607 #: inc/Reuses/Reuse.php: 3323398 #: inc/Reuses/Reuse.php:416 3608 3399 msgid "zoomIn" 3609 3400 msgstr "" 3610 3401 3611 #: inc/Reuses/Reuse.php: 3333402 #: inc/Reuses/Reuse.php:417 3612 3403 msgid "zoomInDown" 3613 3404 msgstr "" 3614 3405 3615 #: inc/Reuses/Reuse.php: 3343406 #: inc/Reuses/Reuse.php:418 3616 3407 msgid "zoomInLeft" 3617 3408 msgstr "" 3618 3409 3619 #: inc/Reuses/Reuse.php: 3353410 #: inc/Reuses/Reuse.php:419 3620 3411 msgid "zoomInRight" 3621 3412 msgstr "" 3622 3413 3623 #: inc/Reuses/Reuse.php: 3363414 #: inc/Reuses/Reuse.php:420 3624 3415 msgid "zoomInUp" 3625 3416 msgstr "" 3626 3417 3627 #: inc/Reuses/Reuse.php: 3373418 #: inc/Reuses/Reuse.php:421 3628 3419 msgid "zoomOut" 3629 3420 msgstr "" 3630 3421 3631 #: inc/Reuses/Reuse.php: 3383422 #: inc/Reuses/Reuse.php:422 3632 3423 msgid "zoomOutDown" 3633 3424 msgstr "" 3634 3425 3635 #: inc/Reuses/Reuse.php: 3393426 #: inc/Reuses/Reuse.php:423 3636 3427 msgid "zoomOutLeft" 3637 3428 msgstr "" 3638 3429 3639 #: inc/Reuses/Reuse.php: 3403430 #: inc/Reuses/Reuse.php:424 3640 3431 msgid "zoomOutRight" 3641 3432 msgstr "" 3642 3433 3643 #: inc/Reuses/Reuse.php: 3413434 #: inc/Reuses/Reuse.php:425 3644 3435 msgid "zoomOutUp" 3645 3436 msgstr "" 3646 3437 3647 #: inc/Reuses/Reuse.php: 3423438 #: inc/Reuses/Reuse.php:426 3648 3439 msgid "slideInDown" 3649 3440 msgstr "" 3650 3441 3651 #: inc/Reuses/Reuse.php: 3433442 #: inc/Reuses/Reuse.php:427 3652 3443 msgid "slideInLeft" 3653 3444 msgstr "" 3654 3445 3655 #: inc/Reuses/Reuse.php: 3443446 #: inc/Reuses/Reuse.php:428 3656 3447 msgid "slideInRight" 3657 3448 msgstr "" 3658 3449 3659 #: inc/Reuses/Reuse.php: 3453450 #: inc/Reuses/Reuse.php:429 3660 3451 msgid "slideInUp" 3661 3452 msgstr "" 3662 3453 3663 #: inc/Reuses/Reuse.php: 3463454 #: inc/Reuses/Reuse.php:430 3664 3455 msgid "slideOutDown" 3665 3456 msgstr "" 3666 3457 3667 #: inc/Reuses/Reuse.php: 3473458 #: inc/Reuses/Reuse.php:431 3668 3459 msgid "slideOutLeft" 3669 3460 msgstr "" 3670 3461 3671 #: inc/Reuses/Reuse.php: 3483462 #: inc/Reuses/Reuse.php:432 3672 3463 msgid "slideOutRight" 3673 3464 msgstr "" 3674 3465 3675 #: inc/Reuses/Reuse.php: 3493466 #: inc/Reuses/Reuse.php:433 3676 3467 msgid "slideOutUp" 3677 3468 msgstr "" 3678 3469 3679 #: inc/Reuses/Reuse.php: 3503470 #: inc/Reuses/Reuse.php:434 3680 3471 msgid "None" 3681 3472 msgstr "" -
definitive-addons-for-elementor/trunk/readme.txt
r2698719 r2700212 5 5 Tested up to: 5.9.2 6 6 Requires PHP: 5.4 7 Stable tag: 1.5. 28 Version: 1.5. 27 Stable tag: 1.5.3 8 Version: 1.5.3 9 9 License: GPLv3 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 102 102 == Changelog == 103 103 104 = 1.5.3 = 105 link issues fixed 106 elements modified 107 104 108 = 1.5.2 = 105 109 all link issues fixed
Note: See TracChangeset
for help on using the changeset viewer.