Plugin Directory

Changeset 3028025


Ignore:
Timestamp:
01/29/2024 07:05:45 AM (2 years ago)
Author:
Nikschavan
Message:

Update to version 1.6.24 from GitHub

Location:
header-footer-elementor
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • header-footer-elementor/tags/1.6.24/header-footer-elementor.php

    r3016959 r3028025  
    88 * Text Domain: header-footer-elementor
    99 * Domain Path: /languages
    10  * Version: 1.6.23
    11  * Elementor tested up to: 3.18
    12  * Elementor Pro tested up to: 3.18
     10 * Version: 1.6.24
     11 * Elementor tested up to: 3.19
     12 * Elementor Pro tested up to: 3.19
    1313 *
    1414 * @package         header-footer-elementor
    1515 */
    1616
    17 define( 'HFE_VER', '1.6.23' );
     17define( 'HFE_VER', '1.6.24' );
    1818define( 'HFE_FILE', __FILE__ );
    1919define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
  • header-footer-elementor/tags/1.6.24/inc/class-hfe-settings-page.php

    r3016959 r3028025  
    362362
    363363            <div class="hfe-admin-column-50">
    364                 <div class="hfe-admin-about-section-column">                   
     364                <div class="hfe-admin-about-section-column">
    365365                    <h2><?php esc_html_e( 'Create Impressive Header and Footer Designs', 'header-footer-elementor' ); ?></h2>
    366366                    <p><?php esc_html_e( 'Elementor Header & Footer Builder plugin lets you build impactful navigation for your website very easily. Before we begin, we would like to know more about you. This will help us to serve you better.', 'header-footer-elementor' ); ?></p>
     
    510510
    511511    /**
     512     * Function for Astra Pro white labels with defaults.
     513     *
     514     * @since 1.6.24
     515     * @return array
     516     */
     517    protected function get_white_label() {
     518        $white_labels = is_callable( 'Astra_Admin_Helper::get_admin_settings_option' ) ? \Astra_Admin_Helper::get_admin_settings_option( '_astra_ext_white_label', true ) : array();
     519
     520        $theme_name = ! empty( $white_labels['astra']['name'] ) ? $white_labels['astra']['name'] : 'Astra';
     521
     522        return array(
     523            'theme_name'  => $theme_name,
     524            'description' => ! empty( $white_labels['astra']['description'] ) ? $white_labels['astra']['description'] : esc_html( sprintf( __( 'Powering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for all kinds of websites like blogs, portfolios, business, and WooCommerce stores.', 'header-footer-elementor' ), esc_html( $theme_name ) ) ),
     525            'theme_icon'  => ! empty( $white_labels['astra']['icon'] ) ? $white_labels['astra']['icon'] : '',
     526            'author_url'  => ! empty( $white_labels['astra']['author_url'] ) ? $white_labels['astra']['author_url'] : 'https://wpastra.com/',
     527        );
     528    }
     529
     530    /**
    512531     * Display the General Info section of About tab.
    513532     *
     
    515534     */
    516535    protected function output_about_info() {
     536
     537        $white_labels = $this->get_white_label();
     538
    517539        ?>
    518540
     
    528550                <p><?php esc_html_e( 'Trusted by more than 1+ Million users, Elementor Header & Footer Builder is a modern way to build advanced navigation for your website.', 'header-footer-elementor' ); ?></p>
    529551
    530                 <p><?php esc_html_e( 'This plugin is brought to you by the same team behind the popular WordPress theme Astra and a series of Ultimate Addons plugins.', 'header-footer-elementor' ); ?></p>
     552                <p><?php printf( esc_html__( 'This plugin is brought to you by the same team behind the popular WordPress theme %s and a series of Ultimate Addons plugins.', 'header-footer-elementor' ), esc_html( $white_labels['theme_name'] ) ); ?>
    531553
    532554            </div>
     
    707729    protected function get_bsf_plugins() {
    708730
     731        $white_labels = $this->get_white_label();
     732
    709733        $images_url = HFE_URL . 'assets/images/settings/';
    710734
     
    712736
    713737            'astra'                                     => [
    714                 'icon'    => $images_url . 'plugin-astra.png',
     738                'icon'    => ! empty( $white_labels['theme_icon'] ) ? $white_labels['theme_icon'] : $images_url . 'plugin-astra.png',
    715739                'type'    => 'theme',
    716                 'name'    => esc_html__( 'Astra Theme', 'header-footer-elementor' ),
    717                 'desc'    => esc_html__( 'Powering over 1+ Million websites, Astra is loved for the fast performance and ease of use it offers. It is suitable for all kinds of websites like blogs, portfolios, business, and WooCommerce stores.', 'header-footer-elementor' ),
     740                'name'    => $white_labels['theme_name'],
     741                'desc'    => $white_labels['description'],
    718742                'wporg'   => 'https://wordpress.org/themes/astra/',
    719743                'url'     => 'https://downloads.wordpress.org/theme/astra.zip',
    720                 'siteurl' => 'https://wpastra.com/',
     744                'siteurl' => $white_labels['author_url'],
    721745                'pro'     => false,
    722746                'slug'    => 'astra',
  • header-footer-elementor/tags/1.6.24/inc/widgets-manager/widgets/class-navigation-menu.php

    r3016959 r3028025  
    19321932        }
    19331933
    1934         $menu_html = wp_nav_menu( $args );
    1935 
    19361934        if ( 'flyout' === $settings['layout'] ) {
    19371935
     
    19541952                        <div class="hfe-flyout-content push">
    19551953                            <nav <?php $this->print_render_attribute_string( 'hfe-nav-menu' ); ?>>
    1956                                 <?php echo wp_kses_post( $menu_html ); ?>
     1954                                <?php echo wp_nav_menu( $args ); ?>
    19571955                            </nav>
    19581956                            <div class="elementor-clickable hfe-flyout-close" tabindex="0">
     
    20302028                </div>
    20312029                <nav <?php $this->print_render_attribute_string( 'hfe-nav-menu' ); ?>>
    2032                     <?php echo wp_kses_post( $menu_html ); ?>
     2030                    <?php echo wp_nav_menu( $args ); ?>
    20332031                </nav>
    20342032            </div>
  • header-footer-elementor/tags/1.6.24/languages/header-footer-elementor.pot

    r3009803 r3028025  
    1 # Copyright (C) 2023 Brainstorm Force, Nikhil Chavan
     1# Copyright (C) 2024 Brainstorm Force, Nikhil Chavan
    22# This file is distributed under the same license as the Elementor Header & Footer Builder package.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Elementor Header & Footer Builder 1.6.22\n"
     5"Project-Id-Version: Elementor Header & Footer Builder 1.6.24\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/header-footer-elementor\n"
    8 "POT-Creation-Date: 2023-12-10 18:13:21+00:00\n"
     8"POT-Creation-Date: 2024-01-29 06:38:06+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
     12"PO-Revision-Date: 2024-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1414"Language-Team: LANGUAGE <LL@li.org>\n"
     
    9191msgstr ""
    9292
    93 #: admin/class-hfe-admin.php:136 admin/class-hfe-admin.php:369
     93#: admin/class-hfe-admin.php:138 admin/class-hfe-admin.php:371
    9494msgid "Display Rules"
    9595msgstr ""
    9696
    97 #: admin/class-hfe-admin.php:137
     97#: admin/class-hfe-admin.php:139
    9898msgid "Date"
    9999msgstr ""
     
    103103msgstr ""
    104104
    105 #: admin/class-hfe-admin.php:224
     105#: admin/class-hfe-admin.php:226
    106106msgid "Add New"
    107107msgstr ""
    108108
    109 #: admin/class-hfe-admin.php:225
     109#: admin/class-hfe-admin.php:227
    110110msgid "Add New Header or Footer"
    111111msgstr ""
    112112
    113 #: admin/class-hfe-admin.php:226
     113#: admin/class-hfe-admin.php:228
    114114msgid "New Template"
    115115msgstr ""
    116116
    117 #: admin/class-hfe-admin.php:227
     117#: admin/class-hfe-admin.php:229
    118118msgid "Edit Template"
    119119msgstr ""
    120120
    121 #: admin/class-hfe-admin.php:228
     121#: admin/class-hfe-admin.php:230
    122122msgid "View Template"
    123123msgstr ""
    124124
    125 #: admin/class-hfe-admin.php:229 inc/class-hfe-settings-page.php:268
     125#: admin/class-hfe-admin.php:231 inc/class-hfe-settings-page.php:270
    126126msgid "All Templates"
    127127msgstr ""
    128128
    129 #: admin/class-hfe-admin.php:230
     129#: admin/class-hfe-admin.php:232
    130130msgid "Search Templates"
    131131msgstr ""
    132132
    133 #: admin/class-hfe-admin.php:231
     133#: admin/class-hfe-admin.php:233
    134134msgid "Parent Templates:"
    135135msgstr ""
    136136
    137 #: admin/class-hfe-admin.php:232
     137#: admin/class-hfe-admin.php:234
    138138msgid "No Templates found."
    139139msgstr ""
    140140
    141 #: admin/class-hfe-admin.php:233
     141#: admin/class-hfe-admin.php:235
    142142msgid "No Templates found in Trash."
    143143msgstr ""
    144144
    145 #: admin/class-hfe-admin.php:275
     145#: admin/class-hfe-admin.php:277
    146146msgid "Elementor Header & Footer Builder Options"
    147147msgstr ""
    148148
    149 #: admin/class-hfe-admin.php:303
     149#: admin/class-hfe-admin.php:305
    150150msgid "Type of Template"
    151151msgstr ""
    152152
    153 #: admin/class-hfe-admin.php:307
     153#: admin/class-hfe-admin.php:309
    154154msgid "Select Option"
    155155msgstr ""
    156156
    157 #: admin/class-hfe-admin.php:308
     157#: admin/class-hfe-admin.php:310
    158158msgid "Header"
    159159msgstr ""
    160160
    161 #: admin/class-hfe-admin.php:309
     161#: admin/class-hfe-admin.php:311
    162162msgid "Before Footer"
    163163msgstr ""
    164164
    165 #: admin/class-hfe-admin.php:310
     165#: admin/class-hfe-admin.php:312
    166166msgid "Footer"
    167167msgstr ""
    168168
    169 #: admin/class-hfe-admin.php:311
     169#: admin/class-hfe-admin.php:313
    170170msgid "Custom Block"
    171171msgstr ""
    172172
    173 #: admin/class-hfe-admin.php:319 admin/class-hfe-admin.php:564
     173#: admin/class-hfe-admin.php:321 admin/class-hfe-admin.php:566
    174174msgid "Shortcode"
    175175msgstr ""
    176176
    177 #: admin/class-hfe-admin.php:320
     177#: admin/class-hfe-admin.php:322
    178178msgid ""
    179179"Copy this shortcode and paste it into your post, page, or text widget "
     
    181181msgstr ""
    182182
    183 #: admin/class-hfe-admin.php:332
     183#: admin/class-hfe-admin.php:334
    184184msgid "Enable Layout for Elementor Canvas Template?"
    185185msgstr ""
    186186
    187 #: admin/class-hfe-admin.php:334
     187#: admin/class-hfe-admin.php:336
    188188msgid ""
    189189"Enabling this option will display this layout on pages using Elementor "
     
    191191msgstr ""
    192192
    193 #: admin/class-hfe-admin.php:360
     193#: admin/class-hfe-admin.php:362
    194194msgid "Display On"
    195195msgstr ""
    196196
    197 #: admin/class-hfe-admin.php:362
     197#: admin/class-hfe-admin.php:364
    198198msgid "Add locations for where this template should appear."
    199199msgstr ""
    200200
    201 #: admin/class-hfe-admin.php:373
     201#: admin/class-hfe-admin.php:375
    202202msgid "Add Display Rule"
    203203msgstr ""
    204204
    205 #: admin/class-hfe-admin.php:382
     205#: admin/class-hfe-admin.php:384
    206206msgid "Do Not Display On"
    207207msgstr ""
    208208
    209 #: admin/class-hfe-admin.php:384
     209#: admin/class-hfe-admin.php:386
    210210msgid "Add locations for where this template should not appear."
    211211msgstr ""
    212212
    213 #: admin/class-hfe-admin.php:391
     213#: admin/class-hfe-admin.php:393
    214214msgid "Exclude On"
    215215msgstr ""
    216216
    217 #: admin/class-hfe-admin.php:394
     217#: admin/class-hfe-admin.php:396
    218218#: inc/lib/target-rule/class-astra-target-rules-fields.php:846
    219219msgid "Add Exclusion Rule"
    220220msgstr ""
    221221
    222 #: admin/class-hfe-admin.php:404
     222#: admin/class-hfe-admin.php:406
    223223msgid "User Roles"
    224224msgstr ""
    225225
    226 #: admin/class-hfe-admin.php:405
     226#: admin/class-hfe-admin.php:407
    227227msgid "Display custom template based on user role."
    228228msgstr ""
    229229
    230 #: admin/class-hfe-admin.php:412
     230#: admin/class-hfe-admin.php:414
    231231msgid "Users"
    232232msgstr ""
    233233
    234 #: admin/class-hfe-admin.php:415
     234#: admin/class-hfe-admin.php:417
    235235msgid "Add User Rule"
    236236msgstr ""
    237237
    238 #: admin/class-hfe-admin.php:495
     238#: admin/class-hfe-admin.php:497
    239239#. Translators: Post title, Template Location
    240240msgid "Template %1$s is already assigned to the location %2$s"
     
    305305msgstr ""
    306306
    307 #: inc/class-hfe-settings-page.php:61 inc/class-hfe-settings-page.php:671
     307#: inc/class-hfe-settings-page.php:63 inc/class-hfe-settings-page.php:695
    308308msgid "Activate"
    309309msgstr ""
    310310
    311 #: inc/class-hfe-settings-page.php:62 inc/class-hfe-settings-page.php:663
     311#: inc/class-hfe-settings-page.php:64 inc/class-hfe-settings-page.php:687
    312312msgid "Activated"
    313313msgstr ""
    314314
    315 #: inc/class-hfe-settings-page.php:63 inc/class-hfe-settings-page.php:660
     315#: inc/class-hfe-settings-page.php:65 inc/class-hfe-settings-page.php:684
    316316#: inc/widgets-manager/widgets/class-navigation-menu.php:1043
    317317#: inc/widgets-manager/widgets/class-navigation-menu.php:1225
     
    319319msgstr ""
    320320
    321 #: inc/class-hfe-settings-page.php:64
     321#: inc/class-hfe-settings-page.php:66
    322322msgid "Deactivate"
    323323msgstr ""
    324324
    325 #: inc/class-hfe-settings-page.php:65 inc/class-hfe-settings-page.php:668
     325#: inc/class-hfe-settings-page.php:67 inc/class-hfe-settings-page.php:692
    326326msgid "Inactive"
    327327msgstr ""
    328328
    329 #: inc/class-hfe-settings-page.php:66 inc/class-hfe-settings-page.php:684
     329#: inc/class-hfe-settings-page.php:68 inc/class-hfe-settings-page.php:708
    330330msgid "Install"
    331331msgstr ""
    332332
    333 #: inc/class-hfe-settings-page.php:67
     333#: inc/class-hfe-settings-page.php:69
    334334msgid "Theme Installed"
    335335msgstr ""
    336336
    337 #: inc/class-hfe-settings-page.php:68
     337#: inc/class-hfe-settings-page.php:70
    338338msgid "Plugin Installed"
    339339msgstr ""
    340340
    341 #: inc/class-hfe-settings-page.php:69
     341#: inc/class-hfe-settings-page.php:71
    342342msgid "Download"
    343343msgstr ""
    344344
    345 #: inc/class-hfe-settings-page.php:70
     345#: inc/class-hfe-settings-page.php:72
    346346msgid "Already Exists."
    347347msgstr ""
    348348
    349 #: inc/class-hfe-settings-page.php:71 inc/class-hfe-settings-page.php:689
     349#: inc/class-hfe-settings-page.php:73 inc/class-hfe-settings-page.php:713
    350350msgid "Visit Website"
    351351msgstr ""
    352352
    353 #: inc/class-hfe-settings-page.php:72
     353#: inc/class-hfe-settings-page.php:74
    354354msgid "Could not install. Please download from WordPress.org and install manually."
    355355msgstr ""
    356356
    357 #: inc/class-hfe-settings-page.php:73
     357#: inc/class-hfe-settings-page.php:75
    358358msgid "Your details are submitted successfully."
    359359msgstr ""
    360360
    361 #: inc/class-hfe-settings-page.php:74
     361#: inc/class-hfe-settings-page.php:76
    362362msgid "Encountered an error while performing your request."
    363363msgstr ""
    364364
    365 #: inc/class-hfe-settings-page.php:115
     365#: inc/class-hfe-settings-page.php:117
    366366msgid "Add Theme Support"
    367367msgstr ""
    368368
    369 #: inc/class-hfe-settings-page.php:132
     369#: inc/class-hfe-settings-page.php:134
    370370msgid ""
    371371"The Elementor Header & Footer Builder plugin need compatibility with your "
     
    376376msgstr ""
    377377
    378 #: inc/class-hfe-settings-page.php:149
     378#: inc/class-hfe-settings-page.php:151
    379379msgid " Method 1 (Recommended)"
    380380msgstr ""
    381381
    382 #: inc/class-hfe-settings-page.php:150
     382#: inc/class-hfe-settings-page.php:152
    383383msgid ""
    384384"This method replaces your theme's header (header.php) & footer (footer.php) "
     
    386386msgstr ""
    387387
    388 #: inc/class-hfe-settings-page.php:153
     388#: inc/class-hfe-settings-page.php:155
    389389msgid "Method 2"
    390390msgstr ""
    391391
    392 #: inc/class-hfe-settings-page.php:166
     392#: inc/class-hfe-settings-page.php:168
    393393msgid ""
    394394"Sometimes above methods might not work well with your theme, in this case, "
     
    398398msgstr ""
    399399
    400 #: inc/class-hfe-settings-page.php:185 inc/class-hfe-settings-page.php:186
    401 #: inc/class-hfe-settings-page.php:807
     400#: inc/class-hfe-settings-page.php:187 inc/class-hfe-settings-page.php:188
     401#: inc/class-hfe-settings-page.php:833
    402402msgid "Settings"
    403403msgstr ""
    404404
    405 #: inc/class-hfe-settings-page.php:194 inc/class-hfe-settings-page.php:195
    406 #: inc/class-hfe-settings-page.php:274
     405#: inc/class-hfe-settings-page.php:196 inc/class-hfe-settings-page.php:197
     406#: inc/class-hfe-settings-page.php:276
    407407msgid "About Us"
    408408msgstr ""
    409409
    410 #: inc/class-hfe-settings-page.php:211
     410#: inc/class-hfe-settings-page.php:213
    411411msgid "Elementor Header & Footer Builder "
    412412msgstr ""
    413413
    414 #: inc/class-hfe-settings-page.php:320
     414#: inc/class-hfe-settings-page.php:322
    415415#. translators: 1: Elementor, 2: Link to plugin review
    416416msgid ""
     
    419419msgstr ""
    420420
    421 #: inc/class-hfe-settings-page.php:363
     421#: inc/class-hfe-settings-page.php:365
    422422msgid "Create Impressive Header and Footer Designs"
    423423msgstr ""
    424424
    425 #: inc/class-hfe-settings-page.php:364
     425#: inc/class-hfe-settings-page.php:366
    426426msgid ""
    427427"Elementor Header & Footer Builder plugin lets you build impactful "
     
    430430msgstr ""
    431431
    432 #: inc/class-hfe-settings-page.php:378
     432#: inc/class-hfe-settings-page.php:380
    433433#. translators: %1$s and %3$s are opening anchor tags, and %2$s and %4$s is
    434434#. closing anchor tags.
     
    436436msgstr ""
    437437
    438 #: inc/class-hfe-settings-page.php:396
     438#: inc/class-hfe-settings-page.php:398
    439439msgid "Skip"
    440440msgstr ""
    441441
    442 #: inc/class-hfe-settings-page.php:414
     442#: inc/class-hfe-settings-page.php:416
    443443msgid "Beginner"
    444444msgstr ""
    445445
    446 #: inc/class-hfe-settings-page.php:415
     446#: inc/class-hfe-settings-page.php:417
    447447msgid "Intermediate"
    448448msgstr ""
    449449
    450 #: inc/class-hfe-settings-page.php:416
     450#: inc/class-hfe-settings-page.php:418
    451451msgid "Expert"
    452452msgstr ""
    453453
    454 #: inc/class-hfe-settings-page.php:418 inc/class-hfe-settings-page.php:427
     454#: inc/class-hfe-settings-page.php:420 inc/class-hfe-settings-page.php:429
    455455msgid "Field is required"
    456456msgstr ""
    457457
    458 #: inc/class-hfe-settings-page.php:419
     458#: inc/class-hfe-settings-page.php:421
    459459msgid "I'm a WordPress:"
    460460msgstr ""
    461461
    462 #: inc/class-hfe-settings-page.php:424
     462#: inc/class-hfe-settings-page.php:426
    463463msgid "Myself/My company"
    464464msgstr ""
    465465
    466 #: inc/class-hfe-settings-page.php:425
     466#: inc/class-hfe-settings-page.php:427
    467467msgid "My client"
    468468msgstr ""
    469469
    470 #: inc/class-hfe-settings-page.php:428
     470#: inc/class-hfe-settings-page.php:430
    471471msgid "I'm building website for:"
    472472msgstr ""
    473473
    474 #: inc/class-hfe-settings-page.php:451
     474#: inc/class-hfe-settings-page.php:453
    475475msgid "First name is required"
    476476msgstr ""
    477477
    478 #: inc/class-hfe-settings-page.php:452
     478#: inc/class-hfe-settings-page.php:454
    479479msgid "Your First Name"
    480480msgstr ""
    481481
    482 #: inc/class-hfe-settings-page.php:456
     482#: inc/class-hfe-settings-page.php:458
    483483msgid "Email address is required"
    484484msgstr ""
    485485
    486 #: inc/class-hfe-settings-page.php:457
     486#: inc/class-hfe-settings-page.php:459
    487487msgid "Your Work Email"
    488488msgstr ""
    489489
    490 #: inc/class-hfe-settings-page.php:461
     490#: inc/class-hfe-settings-page.php:463
    491491msgid "I agree to receive your newsletters and accept the data privacy statement."
    492492msgstr ""
    493493
    494 #: inc/class-hfe-settings-page.php:466
     494#: inc/class-hfe-settings-page.php:468
    495495msgid "Submit"
    496496msgstr ""
    497497
    498 #: inc/class-hfe-settings-page.php:520
     498#: inc/class-hfe-settings-page.php:524
     499msgid ""
     500"Powering over 1+ Million websites, %s is loved for the fast performance and "
     501"ease of use it offers. It is suitable for all kinds of websites like blogs, "
     502"portfolios, business, and WooCommerce stores."
     503msgstr ""
     504
     505#: inc/class-hfe-settings-page.php:544
    499506msgid "Welcome to Elementor Header & Footer Builder!"
    500507msgstr ""
    501508
    502 #: inc/class-hfe-settings-page.php:522
     509#: inc/class-hfe-settings-page.php:546
    503510msgid ""
    504511"With this awesome plugin, experience the easiest way to create a customized "
     
    506513msgstr ""
    507514
    508 #: inc/class-hfe-settings-page.php:524
     515#: inc/class-hfe-settings-page.php:548
    509516msgid ""
    510517"Design beautiful layouts with simple drag & drop and display them at "
     
    515522msgstr ""
    516523
    517 #: inc/class-hfe-settings-page.php:526
     524#: inc/class-hfe-settings-page.php:550
    518525msgid ""
    519526"Trusted by more than 1+ Million users, Elementor Header & Footer Builder is "
     
    521528msgstr ""
    522529
    523 #: inc/class-hfe-settings-page.php:528
     530#: inc/class-hfe-settings-page.php:552
    524531msgid ""
    525532"This plugin is brought to you by the same team behind the popular WordPress "
    526 "theme Astra and a series of Ultimate Addons plugins."
    527 msgstr ""
    528 
    529 #: inc/class-hfe-settings-page.php:534
     533"theme %s and a series of Ultimate Addons plugins."
     534msgstr ""
     535
     536#: inc/class-hfe-settings-page.php:558
    530537msgid "Team photo"
    531538msgstr ""
    532539
    533 #: inc/class-hfe-settings-page.php:536
     540#: inc/class-hfe-settings-page.php:560
    534541msgid "Brainstorm Force Team"
    535542msgstr ""
    536543
    537 #: inc/class-hfe-settings-page.php:580
     544#: inc/class-hfe-settings-page.php:604
    538545#. translators: %s - addon status label.
    539546msgid "%1$s %3$s %2$s"
    540547msgstr ""
    541548
    542 #: inc/class-hfe-settings-page.php:597
     549#: inc/class-hfe-settings-page.php:621
    543550#. translators: %s - addon status label.
    544551msgid "Status: %s"
    545552msgstr ""
    546553
    547 #: inc/class-hfe-settings-page.php:616
     554#: inc/class-hfe-settings-page.php:640
    548555msgid "WordPress.org"
    549556msgstr ""
    550557
    551 #: inc/class-hfe-settings-page.php:681
     558#: inc/class-hfe-settings-page.php:705
    552559msgid "Not Installed"
    553560msgstr ""
    554561
    555 #: inc/class-hfe-settings-page.php:714
    556 msgid "Astra Theme"
    557 msgstr ""
    558 
    559 #: inc/class-hfe-settings-page.php:715
    560 msgid ""
    561 "Powering over 1+ Million websites, Astra is loved for the fast performance "
    562 "and ease of use it offers. It is suitable for all kinds of websites like "
    563 "blogs, portfolios, business, and WooCommerce stores."
    564 msgstr ""
    565 
    566 #: inc/class-hfe-settings-page.php:726
     562#: inc/class-hfe-settings-page.php:752
    567563msgid "Starter Templates"
    568564msgstr ""
    569565
    570 #: inc/class-hfe-settings-page.php:727
     566#: inc/class-hfe-settings-page.php:753
    571567msgid ""
    572568"A popular templates plugin that provides an extensive library of "
     
    575571msgstr ""
    576572
    577 #: inc/class-hfe-settings-page.php:738
     573#: inc/class-hfe-settings-page.php:764
    578574msgid "Ultimate Addons for Elementor"
    579575msgstr ""
    580576
    581 #: inc/class-hfe-settings-page.php:739
     577#: inc/class-hfe-settings-page.php:765
    582578msgid ""
    583579"It’s a collection of 40+ unique, creative, and optimized Elementor widgets "
     
    586582msgstr ""
    587583
    588 #: inc/class-hfe-settings-page.php:806
     584#: inc/class-hfe-settings-page.php:832
    589585msgid "Go to HFE Settings page"
    590586msgstr ""
     
    747743#: inc/widgets-manager/class-widgets-loader.php:234
    748744#: inc/widgets-manager/widgets/class-cart.php:51
    749 #: inc/widgets-manager/widgets/class-cart.php:652
     745#: inc/widgets-manager/widgets/class-cart.php:651
    750746msgid "Cart"
    751747msgstr ""
  • header-footer-elementor/tags/1.6.24/readme.txt

    r3016959 r3028025  
    66Requires PHP: 5.4
    77Tested up to: 6.4.1
    8 Stable tag: 1.6.23
     8Stable tag: 1.6.24
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    141141== Changelog ==
    142142
     143### 1.6.24 ###
     144- Improvement: Compatibility with latest Elementor and Elementor Pro 3.19 version.
     145- Fix: White Label - Astra's theme name does not change when Astra is white-labeled.
     146- Fix: Navigation Menu - Language switcher flags not displaying when using Polylang plugin.
     147
    143148= 1.6.23 =
    144149- Fix: This update addressed a security bug. Props to WordPress Plugin Review Team and Plugin Vulnerabilities Team for reporting it to our team. Please make sure you are using the latest version on your website.
  • header-footer-elementor/trunk/header-footer-elementor.php

    r3016959 r3028025  
    88 * Text Domain: header-footer-elementor
    99 * Domain Path: /languages
    10  * Version: 1.6.23
    11  * Elementor tested up to: 3.18
    12  * Elementor Pro tested up to: 3.18
     10 * Version: 1.6.24
     11 * Elementor tested up to: 3.19
     12 * Elementor Pro tested up to: 3.19
    1313 *
    1414 * @package         header-footer-elementor
    1515 */
    1616
    17 define( 'HFE_VER', '1.6.23' );
     17define( 'HFE_VER', '1.6.24' );
    1818define( 'HFE_FILE', __FILE__ );
    1919define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
  • header-footer-elementor/trunk/inc/class-hfe-settings-page.php

    r3016959 r3028025  
    362362
    363363            <div class="hfe-admin-column-50">
    364                 <div class="hfe-admin-about-section-column">                   
     364                <div class="hfe-admin-about-section-column">
    365365                    <h2><?php esc_html_e( 'Create Impressive Header and Footer Designs', 'header-footer-elementor' ); ?></h2>
    366366                    <p><?php esc_html_e( 'Elementor Header & Footer Builder plugin lets you build impactful navigation for your website very easily. Before we begin, we would like to know more about you. This will help us to serve you better.', 'header-footer-elementor' ); ?></p>
     
    510510
    511511    /**
     512     * Function for Astra Pro white labels with defaults.
     513     *
     514     * @since 1.6.24
     515     * @return array
     516     */
     517    protected function get_white_label() {
     518        $white_labels = is_callable( 'Astra_Admin_Helper::get_admin_settings_option' ) ? \Astra_Admin_Helper::get_admin_settings_option( '_astra_ext_white_label', true ) : array();
     519
     520        $theme_name = ! empty( $white_labels['astra']['name'] ) ? $white_labels['astra']['name'] : 'Astra';
     521
     522        return array(
     523            'theme_name'  => $theme_name,
     524            'description' => ! empty( $white_labels['astra']['description'] ) ? $white_labels['astra']['description'] : esc_html( sprintf( __( 'Powering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for all kinds of websites like blogs, portfolios, business, and WooCommerce stores.', 'header-footer-elementor' ), esc_html( $theme_name ) ) ),
     525            'theme_icon'  => ! empty( $white_labels['astra']['icon'] ) ? $white_labels['astra']['icon'] : '',
     526            'author_url'  => ! empty( $white_labels['astra']['author_url'] ) ? $white_labels['astra']['author_url'] : 'https://wpastra.com/',
     527        );
     528    }
     529
     530    /**
    512531     * Display the General Info section of About tab.
    513532     *
     
    515534     */
    516535    protected function output_about_info() {
     536
     537        $white_labels = $this->get_white_label();
     538
    517539        ?>
    518540
     
    528550                <p><?php esc_html_e( 'Trusted by more than 1+ Million users, Elementor Header & Footer Builder is a modern way to build advanced navigation for your website.', 'header-footer-elementor' ); ?></p>
    529551
    530                 <p><?php esc_html_e( 'This plugin is brought to you by the same team behind the popular WordPress theme Astra and a series of Ultimate Addons plugins.', 'header-footer-elementor' ); ?></p>
     552                <p><?php printf( esc_html__( 'This plugin is brought to you by the same team behind the popular WordPress theme %s and a series of Ultimate Addons plugins.', 'header-footer-elementor' ), esc_html( $white_labels['theme_name'] ) ); ?>
    531553
    532554            </div>
     
    707729    protected function get_bsf_plugins() {
    708730
     731        $white_labels = $this->get_white_label();
     732
    709733        $images_url = HFE_URL . 'assets/images/settings/';
    710734
     
    712736
    713737            'astra'                                     => [
    714                 'icon'    => $images_url . 'plugin-astra.png',
     738                'icon'    => ! empty( $white_labels['theme_icon'] ) ? $white_labels['theme_icon'] : $images_url . 'plugin-astra.png',
    715739                'type'    => 'theme',
    716                 'name'    => esc_html__( 'Astra Theme', 'header-footer-elementor' ),
    717                 'desc'    => esc_html__( 'Powering over 1+ Million websites, Astra is loved for the fast performance and ease of use it offers. It is suitable for all kinds of websites like blogs, portfolios, business, and WooCommerce stores.', 'header-footer-elementor' ),
     740                'name'    => $white_labels['theme_name'],
     741                'desc'    => $white_labels['description'],
    718742                'wporg'   => 'https://wordpress.org/themes/astra/',
    719743                'url'     => 'https://downloads.wordpress.org/theme/astra.zip',
    720                 'siteurl' => 'https://wpastra.com/',
     744                'siteurl' => $white_labels['author_url'],
    721745                'pro'     => false,
    722746                'slug'    => 'astra',
  • header-footer-elementor/trunk/inc/widgets-manager/widgets/class-navigation-menu.php

    r3016959 r3028025  
    19321932        }
    19331933
    1934         $menu_html = wp_nav_menu( $args );
    1935 
    19361934        if ( 'flyout' === $settings['layout'] ) {
    19371935
     
    19541952                        <div class="hfe-flyout-content push">
    19551953                            <nav <?php $this->print_render_attribute_string( 'hfe-nav-menu' ); ?>>
    1956                                 <?php echo wp_kses_post( $menu_html ); ?>
     1954                                <?php echo wp_nav_menu( $args ); ?>
    19571955                            </nav>
    19581956                            <div class="elementor-clickable hfe-flyout-close" tabindex="0">
     
    20302028                </div>
    20312029                <nav <?php $this->print_render_attribute_string( 'hfe-nav-menu' ); ?>>
    2032                     <?php echo wp_kses_post( $menu_html ); ?>
     2030                    <?php echo wp_nav_menu( $args ); ?>
    20332031                </nav>
    20342032            </div>
  • header-footer-elementor/trunk/languages/header-footer-elementor.pot

    r3009803 r3028025  
    1 # Copyright (C) 2023 Brainstorm Force, Nikhil Chavan
     1# Copyright (C) 2024 Brainstorm Force, Nikhil Chavan
    22# This file is distributed under the same license as the Elementor Header & Footer Builder package.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Elementor Header & Footer Builder 1.6.22\n"
     5"Project-Id-Version: Elementor Header & Footer Builder 1.6.24\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/header-footer-elementor\n"
    8 "POT-Creation-Date: 2023-12-10 18:13:21+00:00\n"
     8"POT-Creation-Date: 2024-01-29 06:38:06+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
     12"PO-Revision-Date: 2024-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1414"Language-Team: LANGUAGE <LL@li.org>\n"
     
    9191msgstr ""
    9292
    93 #: admin/class-hfe-admin.php:136 admin/class-hfe-admin.php:369
     93#: admin/class-hfe-admin.php:138 admin/class-hfe-admin.php:371
    9494msgid "Display Rules"
    9595msgstr ""
    9696
    97 #: admin/class-hfe-admin.php:137
     97#: admin/class-hfe-admin.php:139
    9898msgid "Date"
    9999msgstr ""
     
    103103msgstr ""
    104104
    105 #: admin/class-hfe-admin.php:224
     105#: admin/class-hfe-admin.php:226
    106106msgid "Add New"
    107107msgstr ""
    108108
    109 #: admin/class-hfe-admin.php:225
     109#: admin/class-hfe-admin.php:227
    110110msgid "Add New Header or Footer"
    111111msgstr ""
    112112
    113 #: admin/class-hfe-admin.php:226
     113#: admin/class-hfe-admin.php:228
    114114msgid "New Template"
    115115msgstr ""
    116116
    117 #: admin/class-hfe-admin.php:227
     117#: admin/class-hfe-admin.php:229
    118118msgid "Edit Template"
    119119msgstr ""
    120120
    121 #: admin/class-hfe-admin.php:228
     121#: admin/class-hfe-admin.php:230
    122122msgid "View Template"
    123123msgstr ""
    124124
    125 #: admin/class-hfe-admin.php:229 inc/class-hfe-settings-page.php:268
     125#: admin/class-hfe-admin.php:231 inc/class-hfe-settings-page.php:270
    126126msgid "All Templates"
    127127msgstr ""
    128128
    129 #: admin/class-hfe-admin.php:230
     129#: admin/class-hfe-admin.php:232
    130130msgid "Search Templates"
    131131msgstr ""
    132132
    133 #: admin/class-hfe-admin.php:231
     133#: admin/class-hfe-admin.php:233
    134134msgid "Parent Templates:"
    135135msgstr ""
    136136
    137 #: admin/class-hfe-admin.php:232
     137#: admin/class-hfe-admin.php:234
    138138msgid "No Templates found."
    139139msgstr ""
    140140
    141 #: admin/class-hfe-admin.php:233
     141#: admin/class-hfe-admin.php:235
    142142msgid "No Templates found in Trash."
    143143msgstr ""
    144144
    145 #: admin/class-hfe-admin.php:275
     145#: admin/class-hfe-admin.php:277
    146146msgid "Elementor Header & Footer Builder Options"
    147147msgstr ""
    148148
    149 #: admin/class-hfe-admin.php:303
     149#: admin/class-hfe-admin.php:305
    150150msgid "Type of Template"
    151151msgstr ""
    152152
    153 #: admin/class-hfe-admin.php:307
     153#: admin/class-hfe-admin.php:309
    154154msgid "Select Option"
    155155msgstr ""
    156156
    157 #: admin/class-hfe-admin.php:308
     157#: admin/class-hfe-admin.php:310
    158158msgid "Header"
    159159msgstr ""
    160160
    161 #: admin/class-hfe-admin.php:309
     161#: admin/class-hfe-admin.php:311
    162162msgid "Before Footer"
    163163msgstr ""
    164164
    165 #: admin/class-hfe-admin.php:310
     165#: admin/class-hfe-admin.php:312
    166166msgid "Footer"
    167167msgstr ""
    168168
    169 #: admin/class-hfe-admin.php:311
     169#: admin/class-hfe-admin.php:313
    170170msgid "Custom Block"
    171171msgstr ""
    172172
    173 #: admin/class-hfe-admin.php:319 admin/class-hfe-admin.php:564
     173#: admin/class-hfe-admin.php:321 admin/class-hfe-admin.php:566
    174174msgid "Shortcode"
    175175msgstr ""
    176176
    177 #: admin/class-hfe-admin.php:320
     177#: admin/class-hfe-admin.php:322
    178178msgid ""
    179179"Copy this shortcode and paste it into your post, page, or text widget "
     
    181181msgstr ""
    182182
    183 #: admin/class-hfe-admin.php:332
     183#: admin/class-hfe-admin.php:334
    184184msgid "Enable Layout for Elementor Canvas Template?"
    185185msgstr ""
    186186
    187 #: admin/class-hfe-admin.php:334
     187#: admin/class-hfe-admin.php:336
    188188msgid ""
    189189"Enabling this option will display this layout on pages using Elementor "
     
    191191msgstr ""
    192192
    193 #: admin/class-hfe-admin.php:360
     193#: admin/class-hfe-admin.php:362
    194194msgid "Display On"
    195195msgstr ""
    196196
    197 #: admin/class-hfe-admin.php:362
     197#: admin/class-hfe-admin.php:364
    198198msgid "Add locations for where this template should appear."
    199199msgstr ""
    200200
    201 #: admin/class-hfe-admin.php:373
     201#: admin/class-hfe-admin.php:375
    202202msgid "Add Display Rule"
    203203msgstr ""
    204204
    205 #: admin/class-hfe-admin.php:382
     205#: admin/class-hfe-admin.php:384
    206206msgid "Do Not Display On"
    207207msgstr ""
    208208
    209 #: admin/class-hfe-admin.php:384
     209#: admin/class-hfe-admin.php:386
    210210msgid "Add locations for where this template should not appear."
    211211msgstr ""
    212212
    213 #: admin/class-hfe-admin.php:391
     213#: admin/class-hfe-admin.php:393
    214214msgid "Exclude On"
    215215msgstr ""
    216216
    217 #: admin/class-hfe-admin.php:394
     217#: admin/class-hfe-admin.php:396
    218218#: inc/lib/target-rule/class-astra-target-rules-fields.php:846
    219219msgid "Add Exclusion Rule"
    220220msgstr ""
    221221
    222 #: admin/class-hfe-admin.php:404
     222#: admin/class-hfe-admin.php:406
    223223msgid "User Roles"
    224224msgstr ""
    225225
    226 #: admin/class-hfe-admin.php:405
     226#: admin/class-hfe-admin.php:407
    227227msgid "Display custom template based on user role."
    228228msgstr ""
    229229
    230 #: admin/class-hfe-admin.php:412
     230#: admin/class-hfe-admin.php:414
    231231msgid "Users"
    232232msgstr ""
    233233
    234 #: admin/class-hfe-admin.php:415
     234#: admin/class-hfe-admin.php:417
    235235msgid "Add User Rule"
    236236msgstr ""
    237237
    238 #: admin/class-hfe-admin.php:495
     238#: admin/class-hfe-admin.php:497
    239239#. Translators: Post title, Template Location
    240240msgid "Template %1$s is already assigned to the location %2$s"
     
    305305msgstr ""
    306306
    307 #: inc/class-hfe-settings-page.php:61 inc/class-hfe-settings-page.php:671
     307#: inc/class-hfe-settings-page.php:63 inc/class-hfe-settings-page.php:695
    308308msgid "Activate"
    309309msgstr ""
    310310
    311 #: inc/class-hfe-settings-page.php:62 inc/class-hfe-settings-page.php:663
     311#: inc/class-hfe-settings-page.php:64 inc/class-hfe-settings-page.php:687
    312312msgid "Activated"
    313313msgstr ""
    314314
    315 #: inc/class-hfe-settings-page.php:63 inc/class-hfe-settings-page.php:660
     315#: inc/class-hfe-settings-page.php:65 inc/class-hfe-settings-page.php:684
    316316#: inc/widgets-manager/widgets/class-navigation-menu.php:1043
    317317#: inc/widgets-manager/widgets/class-navigation-menu.php:1225
     
    319319msgstr ""
    320320
    321 #: inc/class-hfe-settings-page.php:64
     321#: inc/class-hfe-settings-page.php:66
    322322msgid "Deactivate"
    323323msgstr ""
    324324
    325 #: inc/class-hfe-settings-page.php:65 inc/class-hfe-settings-page.php:668
     325#: inc/class-hfe-settings-page.php:67 inc/class-hfe-settings-page.php:692
    326326msgid "Inactive"
    327327msgstr ""
    328328
    329 #: inc/class-hfe-settings-page.php:66 inc/class-hfe-settings-page.php:684
     329#: inc/class-hfe-settings-page.php:68 inc/class-hfe-settings-page.php:708
    330330msgid "Install"
    331331msgstr ""
    332332
    333 #: inc/class-hfe-settings-page.php:67
     333#: inc/class-hfe-settings-page.php:69
    334334msgid "Theme Installed"
    335335msgstr ""
    336336
    337 #: inc/class-hfe-settings-page.php:68
     337#: inc/class-hfe-settings-page.php:70
    338338msgid "Plugin Installed"
    339339msgstr ""
    340340
    341 #: inc/class-hfe-settings-page.php:69
     341#: inc/class-hfe-settings-page.php:71
    342342msgid "Download"
    343343msgstr ""
    344344
    345 #: inc/class-hfe-settings-page.php:70
     345#: inc/class-hfe-settings-page.php:72
    346346msgid "Already Exists."
    347347msgstr ""
    348348
    349 #: inc/class-hfe-settings-page.php:71 inc/class-hfe-settings-page.php:689
     349#: inc/class-hfe-settings-page.php:73 inc/class-hfe-settings-page.php:713
    350350msgid "Visit Website"
    351351msgstr ""
    352352
    353 #: inc/class-hfe-settings-page.php:72
     353#: inc/class-hfe-settings-page.php:74
    354354msgid "Could not install. Please download from WordPress.org and install manually."
    355355msgstr ""
    356356
    357 #: inc/class-hfe-settings-page.php:73
     357#: inc/class-hfe-settings-page.php:75
    358358msgid "Your details are submitted successfully."
    359359msgstr ""
    360360
    361 #: inc/class-hfe-settings-page.php:74
     361#: inc/class-hfe-settings-page.php:76
    362362msgid "Encountered an error while performing your request."
    363363msgstr ""
    364364
    365 #: inc/class-hfe-settings-page.php:115
     365#: inc/class-hfe-settings-page.php:117
    366366msgid "Add Theme Support"
    367367msgstr ""
    368368
    369 #: inc/class-hfe-settings-page.php:132
     369#: inc/class-hfe-settings-page.php:134
    370370msgid ""
    371371"The Elementor Header & Footer Builder plugin need compatibility with your "
     
    376376msgstr ""
    377377
    378 #: inc/class-hfe-settings-page.php:149
     378#: inc/class-hfe-settings-page.php:151
    379379msgid " Method 1 (Recommended)"
    380380msgstr ""
    381381
    382 #: inc/class-hfe-settings-page.php:150
     382#: inc/class-hfe-settings-page.php:152
    383383msgid ""
    384384"This method replaces your theme's header (header.php) & footer (footer.php) "
     
    386386msgstr ""
    387387
    388 #: inc/class-hfe-settings-page.php:153
     388#: inc/class-hfe-settings-page.php:155
    389389msgid "Method 2"
    390390msgstr ""
    391391
    392 #: inc/class-hfe-settings-page.php:166
     392#: inc/class-hfe-settings-page.php:168
    393393msgid ""
    394394"Sometimes above methods might not work well with your theme, in this case, "
     
    398398msgstr ""
    399399
    400 #: inc/class-hfe-settings-page.php:185 inc/class-hfe-settings-page.php:186
    401 #: inc/class-hfe-settings-page.php:807
     400#: inc/class-hfe-settings-page.php:187 inc/class-hfe-settings-page.php:188
     401#: inc/class-hfe-settings-page.php:833
    402402msgid "Settings"
    403403msgstr ""
    404404
    405 #: inc/class-hfe-settings-page.php:194 inc/class-hfe-settings-page.php:195
    406 #: inc/class-hfe-settings-page.php:274
     405#: inc/class-hfe-settings-page.php:196 inc/class-hfe-settings-page.php:197
     406#: inc/class-hfe-settings-page.php:276
    407407msgid "About Us"
    408408msgstr ""
    409409
    410 #: inc/class-hfe-settings-page.php:211
     410#: inc/class-hfe-settings-page.php:213
    411411msgid "Elementor Header & Footer Builder "
    412412msgstr ""
    413413
    414 #: inc/class-hfe-settings-page.php:320
     414#: inc/class-hfe-settings-page.php:322
    415415#. translators: 1: Elementor, 2: Link to plugin review
    416416msgid ""
     
    419419msgstr ""
    420420
    421 #: inc/class-hfe-settings-page.php:363
     421#: inc/class-hfe-settings-page.php:365
    422422msgid "Create Impressive Header and Footer Designs"
    423423msgstr ""
    424424
    425 #: inc/class-hfe-settings-page.php:364
     425#: inc/class-hfe-settings-page.php:366
    426426msgid ""
    427427"Elementor Header & Footer Builder plugin lets you build impactful "
     
    430430msgstr ""
    431431
    432 #: inc/class-hfe-settings-page.php:378
     432#: inc/class-hfe-settings-page.php:380
    433433#. translators: %1$s and %3$s are opening anchor tags, and %2$s and %4$s is
    434434#. closing anchor tags.
     
    436436msgstr ""
    437437
    438 #: inc/class-hfe-settings-page.php:396
     438#: inc/class-hfe-settings-page.php:398
    439439msgid "Skip"
    440440msgstr ""
    441441
    442 #: inc/class-hfe-settings-page.php:414
     442#: inc/class-hfe-settings-page.php:416
    443443msgid "Beginner"
    444444msgstr ""
    445445
    446 #: inc/class-hfe-settings-page.php:415
     446#: inc/class-hfe-settings-page.php:417
    447447msgid "Intermediate"
    448448msgstr ""
    449449
    450 #: inc/class-hfe-settings-page.php:416
     450#: inc/class-hfe-settings-page.php:418
    451451msgid "Expert"
    452452msgstr ""
    453453
    454 #: inc/class-hfe-settings-page.php:418 inc/class-hfe-settings-page.php:427
     454#: inc/class-hfe-settings-page.php:420 inc/class-hfe-settings-page.php:429
    455455msgid "Field is required"
    456456msgstr ""
    457457
    458 #: inc/class-hfe-settings-page.php:419
     458#: inc/class-hfe-settings-page.php:421
    459459msgid "I'm a WordPress:"
    460460msgstr ""
    461461
    462 #: inc/class-hfe-settings-page.php:424
     462#: inc/class-hfe-settings-page.php:426
    463463msgid "Myself/My company"
    464464msgstr ""
    465465
    466 #: inc/class-hfe-settings-page.php:425
     466#: inc/class-hfe-settings-page.php:427
    467467msgid "My client"
    468468msgstr ""
    469469
    470 #: inc/class-hfe-settings-page.php:428
     470#: inc/class-hfe-settings-page.php:430
    471471msgid "I'm building website for:"
    472472msgstr ""
    473473
    474 #: inc/class-hfe-settings-page.php:451
     474#: inc/class-hfe-settings-page.php:453
    475475msgid "First name is required"
    476476msgstr ""
    477477
    478 #: inc/class-hfe-settings-page.php:452
     478#: inc/class-hfe-settings-page.php:454
    479479msgid "Your First Name"
    480480msgstr ""
    481481
    482 #: inc/class-hfe-settings-page.php:456
     482#: inc/class-hfe-settings-page.php:458
    483483msgid "Email address is required"
    484484msgstr ""
    485485
    486 #: inc/class-hfe-settings-page.php:457
     486#: inc/class-hfe-settings-page.php:459
    487487msgid "Your Work Email"
    488488msgstr ""
    489489
    490 #: inc/class-hfe-settings-page.php:461
     490#: inc/class-hfe-settings-page.php:463
    491491msgid "I agree to receive your newsletters and accept the data privacy statement."
    492492msgstr ""
    493493
    494 #: inc/class-hfe-settings-page.php:466
     494#: inc/class-hfe-settings-page.php:468
    495495msgid "Submit"
    496496msgstr ""
    497497
    498 #: inc/class-hfe-settings-page.php:520
     498#: inc/class-hfe-settings-page.php:524
     499msgid ""
     500"Powering over 1+ Million websites, %s is loved for the fast performance and "
     501"ease of use it offers. It is suitable for all kinds of websites like blogs, "
     502"portfolios, business, and WooCommerce stores."
     503msgstr ""
     504
     505#: inc/class-hfe-settings-page.php:544
    499506msgid "Welcome to Elementor Header & Footer Builder!"
    500507msgstr ""
    501508
    502 #: inc/class-hfe-settings-page.php:522
     509#: inc/class-hfe-settings-page.php:546
    503510msgid ""
    504511"With this awesome plugin, experience the easiest way to create a customized "
     
    506513msgstr ""
    507514
    508 #: inc/class-hfe-settings-page.php:524
     515#: inc/class-hfe-settings-page.php:548
    509516msgid ""
    510517"Design beautiful layouts with simple drag & drop and display them at "
     
    515522msgstr ""
    516523
    517 #: inc/class-hfe-settings-page.php:526
     524#: inc/class-hfe-settings-page.php:550
    518525msgid ""
    519526"Trusted by more than 1+ Million users, Elementor Header & Footer Builder is "
     
    521528msgstr ""
    522529
    523 #: inc/class-hfe-settings-page.php:528
     530#: inc/class-hfe-settings-page.php:552
    524531msgid ""
    525532"This plugin is brought to you by the same team behind the popular WordPress "
    526 "theme Astra and a series of Ultimate Addons plugins."
    527 msgstr ""
    528 
    529 #: inc/class-hfe-settings-page.php:534
     533"theme %s and a series of Ultimate Addons plugins."
     534msgstr ""
     535
     536#: inc/class-hfe-settings-page.php:558
    530537msgid "Team photo"
    531538msgstr ""
    532539
    533 #: inc/class-hfe-settings-page.php:536
     540#: inc/class-hfe-settings-page.php:560
    534541msgid "Brainstorm Force Team"
    535542msgstr ""
    536543
    537 #: inc/class-hfe-settings-page.php:580
     544#: inc/class-hfe-settings-page.php:604
    538545#. translators: %s - addon status label.
    539546msgid "%1$s %3$s %2$s"
    540547msgstr ""
    541548
    542 #: inc/class-hfe-settings-page.php:597
     549#: inc/class-hfe-settings-page.php:621
    543550#. translators: %s - addon status label.
    544551msgid "Status: %s"
    545552msgstr ""
    546553
    547 #: inc/class-hfe-settings-page.php:616
     554#: inc/class-hfe-settings-page.php:640
    548555msgid "WordPress.org"
    549556msgstr ""
    550557
    551 #: inc/class-hfe-settings-page.php:681
     558#: inc/class-hfe-settings-page.php:705
    552559msgid "Not Installed"
    553560msgstr ""
    554561
    555 #: inc/class-hfe-settings-page.php:714
    556 msgid "Astra Theme"
    557 msgstr ""
    558 
    559 #: inc/class-hfe-settings-page.php:715
    560 msgid ""
    561 "Powering over 1+ Million websites, Astra is loved for the fast performance "
    562 "and ease of use it offers. It is suitable for all kinds of websites like "
    563 "blogs, portfolios, business, and WooCommerce stores."
    564 msgstr ""
    565 
    566 #: inc/class-hfe-settings-page.php:726
     562#: inc/class-hfe-settings-page.php:752
    567563msgid "Starter Templates"
    568564msgstr ""
    569565
    570 #: inc/class-hfe-settings-page.php:727
     566#: inc/class-hfe-settings-page.php:753
    571567msgid ""
    572568"A popular templates plugin that provides an extensive library of "
     
    575571msgstr ""
    576572
    577 #: inc/class-hfe-settings-page.php:738
     573#: inc/class-hfe-settings-page.php:764
    578574msgid "Ultimate Addons for Elementor"
    579575msgstr ""
    580576
    581 #: inc/class-hfe-settings-page.php:739
     577#: inc/class-hfe-settings-page.php:765
    582578msgid ""
    583579"It’s a collection of 40+ unique, creative, and optimized Elementor widgets "
     
    586582msgstr ""
    587583
    588 #: inc/class-hfe-settings-page.php:806
     584#: inc/class-hfe-settings-page.php:832
    589585msgid "Go to HFE Settings page"
    590586msgstr ""
     
    747743#: inc/widgets-manager/class-widgets-loader.php:234
    748744#: inc/widgets-manager/widgets/class-cart.php:51
    749 #: inc/widgets-manager/widgets/class-cart.php:652
     745#: inc/widgets-manager/widgets/class-cart.php:651
    750746msgid "Cart"
    751747msgstr ""
  • header-footer-elementor/trunk/readme.txt

    r3016959 r3028025  
    66Requires PHP: 5.4
    77Tested up to: 6.4.1
    8 Stable tag: 1.6.23
     8Stable tag: 1.6.24
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    141141== Changelog ==
    142142
     143### 1.6.24 ###
     144- Improvement: Compatibility with latest Elementor and Elementor Pro 3.19 version.
     145- Fix: White Label - Astra's theme name does not change when Astra is white-labeled.
     146- Fix: Navigation Menu - Language switcher flags not displaying when using Polylang plugin.
     147
    143148= 1.6.23 =
    144149- Fix: This update addressed a security bug. Props to WordPress Plugin Review Team and Plugin Vulnerabilities Team for reporting it to our team. Please make sure you are using the latest version on your website.
Note: See TracChangeset for help on using the changeset viewer.