Changeset 3028025
- Timestamp:
- 01/29/2024 07:05:45 AM (2 years ago)
- Location:
- header-footer-elementor
- Files:
-
- 10 edited
- 1 copied
-
tags/1.6.24 (copied) (copied from header-footer-elementor/trunk)
-
tags/1.6.24/header-footer-elementor.php (modified) (1 diff)
-
tags/1.6.24/inc/class-hfe-settings-page.php (modified) (6 diffs)
-
tags/1.6.24/inc/widgets-manager/widgets/class-navigation-menu.php (modified) (3 diffs)
-
tags/1.6.24/languages/header-footer-elementor.pot (modified) (19 diffs)
-
tags/1.6.24/readme.txt (modified) (2 diffs)
-
trunk/header-footer-elementor.php (modified) (1 diff)
-
trunk/inc/class-hfe-settings-page.php (modified) (6 diffs)
-
trunk/inc/widgets-manager/widgets/class-navigation-menu.php (modified) (3 diffs)
-
trunk/languages/header-footer-elementor.pot (modified) (19 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
header-footer-elementor/tags/1.6.24/header-footer-elementor.php
r3016959 r3028025 8 8 * Text Domain: header-footer-elementor 9 9 * Domain Path: /languages 10 * Version: 1.6.2 311 * Elementor tested up to: 3.1 812 * Elementor Pro tested up to: 3.1 810 * Version: 1.6.24 11 * Elementor tested up to: 3.19 12 * Elementor Pro tested up to: 3.19 13 13 * 14 14 * @package header-footer-elementor 15 15 */ 16 16 17 define( 'HFE_VER', '1.6.2 3' );17 define( 'HFE_VER', '1.6.24' ); 18 18 define( 'HFE_FILE', __FILE__ ); 19 19 define( 'HFE_DIR', plugin_dir_path( __FILE__ ) ); -
header-footer-elementor/tags/1.6.24/inc/class-hfe-settings-page.php
r3016959 r3028025 362 362 363 363 <div class="hfe-admin-column-50"> 364 <div class="hfe-admin-about-section-column"> 364 <div class="hfe-admin-about-section-column"> 365 365 <h2><?php esc_html_e( 'Create Impressive Header and Footer Designs', 'header-footer-elementor' ); ?></h2> 366 366 <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> … … 510 510 511 511 /** 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 /** 512 531 * Display the General Info section of About tab. 513 532 * … … 515 534 */ 516 535 protected function output_about_info() { 536 537 $white_labels = $this->get_white_label(); 538 517 539 ?> 518 540 … … 528 550 <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> 529 551 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'] ) ); ?> 531 553 532 554 </div> … … 707 729 protected function get_bsf_plugins() { 708 730 731 $white_labels = $this->get_white_label(); 732 709 733 $images_url = HFE_URL . 'assets/images/settings/'; 710 734 … … 712 736 713 737 'astra' => [ 714 'icon' => $images_url . 'plugin-astra.png',738 'icon' => ! empty( $white_labels['theme_icon'] ) ? $white_labels['theme_icon'] : $images_url . 'plugin-astra.png', 715 739 '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'], 718 742 'wporg' => 'https://wordpress.org/themes/astra/', 719 743 'url' => 'https://downloads.wordpress.org/theme/astra.zip', 720 'siteurl' => 'https://wpastra.com/',744 'siteurl' => $white_labels['author_url'], 721 745 'pro' => false, 722 746 'slug' => 'astra', -
header-footer-elementor/tags/1.6.24/inc/widgets-manager/widgets/class-navigation-menu.php
r3016959 r3028025 1932 1932 } 1933 1933 1934 $menu_html = wp_nav_menu( $args );1935 1936 1934 if ( 'flyout' === $settings['layout'] ) { 1937 1935 … … 1954 1952 <div class="hfe-flyout-content push"> 1955 1953 <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 ); ?> 1957 1955 </nav> 1958 1956 <div class="elementor-clickable hfe-flyout-close" tabindex="0"> … … 2030 2028 </div> 2031 2029 <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 ); ?> 2033 2031 </nav> 2034 2032 </div> -
header-footer-elementor/tags/1.6.24/languages/header-footer-elementor.pot
r3009803 r3028025 1 # Copyright (C) 202 3Brainstorm Force, Nikhil Chavan1 # Copyright (C) 2024 Brainstorm Force, Nikhil Chavan 2 2 # This file is distributed under the same license as the Elementor Header & Footer Builder package. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Elementor Header & Footer Builder 1.6.2 2\n"5 "Project-Id-Version: Elementor Header & Footer Builder 1.6.24\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/header-footer-elementor\n" 8 "POT-Creation-Date: 202 3-12-10 18:13:21+00:00\n"8 "POT-Creation-Date: 2024-01-29 06:38:06+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "PO-Revision-Date: 202 3-MO-DA HO:MI+ZONE\n"12 "PO-Revision-Date: 2024-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 14 14 "Language-Team: LANGUAGE <LL@li.org>\n" … … 91 91 msgstr "" 92 92 93 #: admin/class-hfe-admin.php:13 6 admin/class-hfe-admin.php:36993 #: admin/class-hfe-admin.php:138 admin/class-hfe-admin.php:371 94 94 msgid "Display Rules" 95 95 msgstr "" 96 96 97 #: admin/class-hfe-admin.php:13 797 #: admin/class-hfe-admin.php:139 98 98 msgid "Date" 99 99 msgstr "" … … 103 103 msgstr "" 104 104 105 #: admin/class-hfe-admin.php:22 4105 #: admin/class-hfe-admin.php:226 106 106 msgid "Add New" 107 107 msgstr "" 108 108 109 #: admin/class-hfe-admin.php:22 5109 #: admin/class-hfe-admin.php:227 110 110 msgid "Add New Header or Footer" 111 111 msgstr "" 112 112 113 #: admin/class-hfe-admin.php:22 6113 #: admin/class-hfe-admin.php:228 114 114 msgid "New Template" 115 115 msgstr "" 116 116 117 #: admin/class-hfe-admin.php:22 7117 #: admin/class-hfe-admin.php:229 118 118 msgid "Edit Template" 119 119 msgstr "" 120 120 121 #: admin/class-hfe-admin.php:2 28121 #: admin/class-hfe-admin.php:230 122 122 msgid "View Template" 123 123 msgstr "" 124 124 125 #: admin/class-hfe-admin.php:2 29 inc/class-hfe-settings-page.php:268125 #: admin/class-hfe-admin.php:231 inc/class-hfe-settings-page.php:270 126 126 msgid "All Templates" 127 127 msgstr "" 128 128 129 #: admin/class-hfe-admin.php:23 0129 #: admin/class-hfe-admin.php:232 130 130 msgid "Search Templates" 131 131 msgstr "" 132 132 133 #: admin/class-hfe-admin.php:23 1133 #: admin/class-hfe-admin.php:233 134 134 msgid "Parent Templates:" 135 135 msgstr "" 136 136 137 #: admin/class-hfe-admin.php:23 2137 #: admin/class-hfe-admin.php:234 138 138 msgid "No Templates found." 139 139 msgstr "" 140 140 141 #: admin/class-hfe-admin.php:23 3141 #: admin/class-hfe-admin.php:235 142 142 msgid "No Templates found in Trash." 143 143 msgstr "" 144 144 145 #: admin/class-hfe-admin.php:27 5145 #: admin/class-hfe-admin.php:277 146 146 msgid "Elementor Header & Footer Builder Options" 147 147 msgstr "" 148 148 149 #: admin/class-hfe-admin.php:30 3149 #: admin/class-hfe-admin.php:305 150 150 msgid "Type of Template" 151 151 msgstr "" 152 152 153 #: admin/class-hfe-admin.php:30 7153 #: admin/class-hfe-admin.php:309 154 154 msgid "Select Option" 155 155 msgstr "" 156 156 157 #: admin/class-hfe-admin.php:3 08157 #: admin/class-hfe-admin.php:310 158 158 msgid "Header" 159 159 msgstr "" 160 160 161 #: admin/class-hfe-admin.php:3 09161 #: admin/class-hfe-admin.php:311 162 162 msgid "Before Footer" 163 163 msgstr "" 164 164 165 #: admin/class-hfe-admin.php:31 0165 #: admin/class-hfe-admin.php:312 166 166 msgid "Footer" 167 167 msgstr "" 168 168 169 #: admin/class-hfe-admin.php:31 1169 #: admin/class-hfe-admin.php:313 170 170 msgid "Custom Block" 171 171 msgstr "" 172 172 173 #: admin/class-hfe-admin.php:3 19 admin/class-hfe-admin.php:564173 #: admin/class-hfe-admin.php:321 admin/class-hfe-admin.php:566 174 174 msgid "Shortcode" 175 175 msgstr "" 176 176 177 #: admin/class-hfe-admin.php:32 0177 #: admin/class-hfe-admin.php:322 178 178 msgid "" 179 179 "Copy this shortcode and paste it into your post, page, or text widget " … … 181 181 msgstr "" 182 182 183 #: admin/class-hfe-admin.php:33 2183 #: admin/class-hfe-admin.php:334 184 184 msgid "Enable Layout for Elementor Canvas Template?" 185 185 msgstr "" 186 186 187 #: admin/class-hfe-admin.php:33 4187 #: admin/class-hfe-admin.php:336 188 188 msgid "" 189 189 "Enabling this option will display this layout on pages using Elementor " … … 191 191 msgstr "" 192 192 193 #: admin/class-hfe-admin.php:36 0193 #: admin/class-hfe-admin.php:362 194 194 msgid "Display On" 195 195 msgstr "" 196 196 197 #: admin/class-hfe-admin.php:36 2197 #: admin/class-hfe-admin.php:364 198 198 msgid "Add locations for where this template should appear." 199 199 msgstr "" 200 200 201 #: admin/class-hfe-admin.php:37 3201 #: admin/class-hfe-admin.php:375 202 202 msgid "Add Display Rule" 203 203 msgstr "" 204 204 205 #: admin/class-hfe-admin.php:38 2205 #: admin/class-hfe-admin.php:384 206 206 msgid "Do Not Display On" 207 207 msgstr "" 208 208 209 #: admin/class-hfe-admin.php:38 4209 #: admin/class-hfe-admin.php:386 210 210 msgid "Add locations for where this template should not appear." 211 211 msgstr "" 212 212 213 #: admin/class-hfe-admin.php:39 1213 #: admin/class-hfe-admin.php:393 214 214 msgid "Exclude On" 215 215 msgstr "" 216 216 217 #: admin/class-hfe-admin.php:39 4217 #: admin/class-hfe-admin.php:396 218 218 #: inc/lib/target-rule/class-astra-target-rules-fields.php:846 219 219 msgid "Add Exclusion Rule" 220 220 msgstr "" 221 221 222 #: admin/class-hfe-admin.php:40 4222 #: admin/class-hfe-admin.php:406 223 223 msgid "User Roles" 224 224 msgstr "" 225 225 226 #: admin/class-hfe-admin.php:40 5226 #: admin/class-hfe-admin.php:407 227 227 msgid "Display custom template based on user role." 228 228 msgstr "" 229 229 230 #: admin/class-hfe-admin.php:41 2230 #: admin/class-hfe-admin.php:414 231 231 msgid "Users" 232 232 msgstr "" 233 233 234 #: admin/class-hfe-admin.php:41 5234 #: admin/class-hfe-admin.php:417 235 235 msgid "Add User Rule" 236 236 msgstr "" 237 237 238 #: admin/class-hfe-admin.php:49 5238 #: admin/class-hfe-admin.php:497 239 239 #. Translators: Post title, Template Location 240 240 msgid "Template %1$s is already assigned to the location %2$s" … … 305 305 msgstr "" 306 306 307 #: inc/class-hfe-settings-page.php:6 1 inc/class-hfe-settings-page.php:671307 #: inc/class-hfe-settings-page.php:63 inc/class-hfe-settings-page.php:695 308 308 msgid "Activate" 309 309 msgstr "" 310 310 311 #: inc/class-hfe-settings-page.php:6 2 inc/class-hfe-settings-page.php:663311 #: inc/class-hfe-settings-page.php:64 inc/class-hfe-settings-page.php:687 312 312 msgid "Activated" 313 313 msgstr "" 314 314 315 #: inc/class-hfe-settings-page.php:6 3 inc/class-hfe-settings-page.php:660315 #: inc/class-hfe-settings-page.php:65 inc/class-hfe-settings-page.php:684 316 316 #: inc/widgets-manager/widgets/class-navigation-menu.php:1043 317 317 #: inc/widgets-manager/widgets/class-navigation-menu.php:1225 … … 319 319 msgstr "" 320 320 321 #: inc/class-hfe-settings-page.php:6 4321 #: inc/class-hfe-settings-page.php:66 322 322 msgid "Deactivate" 323 323 msgstr "" 324 324 325 #: inc/class-hfe-settings-page.php:6 5 inc/class-hfe-settings-page.php:668325 #: inc/class-hfe-settings-page.php:67 inc/class-hfe-settings-page.php:692 326 326 msgid "Inactive" 327 327 msgstr "" 328 328 329 #: inc/class-hfe-settings-page.php:6 6 inc/class-hfe-settings-page.php:684329 #: inc/class-hfe-settings-page.php:68 inc/class-hfe-settings-page.php:708 330 330 msgid "Install" 331 331 msgstr "" 332 332 333 #: inc/class-hfe-settings-page.php:6 7333 #: inc/class-hfe-settings-page.php:69 334 334 msgid "Theme Installed" 335 335 msgstr "" 336 336 337 #: inc/class-hfe-settings-page.php: 68337 #: inc/class-hfe-settings-page.php:70 338 338 msgid "Plugin Installed" 339 339 msgstr "" 340 340 341 #: inc/class-hfe-settings-page.php: 69341 #: inc/class-hfe-settings-page.php:71 342 342 msgid "Download" 343 343 msgstr "" 344 344 345 #: inc/class-hfe-settings-page.php:7 0345 #: inc/class-hfe-settings-page.php:72 346 346 msgid "Already Exists." 347 347 msgstr "" 348 348 349 #: inc/class-hfe-settings-page.php:7 1 inc/class-hfe-settings-page.php:689349 #: inc/class-hfe-settings-page.php:73 inc/class-hfe-settings-page.php:713 350 350 msgid "Visit Website" 351 351 msgstr "" 352 352 353 #: inc/class-hfe-settings-page.php:7 2353 #: inc/class-hfe-settings-page.php:74 354 354 msgid "Could not install. Please download from WordPress.org and install manually." 355 355 msgstr "" 356 356 357 #: inc/class-hfe-settings-page.php:7 3357 #: inc/class-hfe-settings-page.php:75 358 358 msgid "Your details are submitted successfully." 359 359 msgstr "" 360 360 361 #: inc/class-hfe-settings-page.php:7 4361 #: inc/class-hfe-settings-page.php:76 362 362 msgid "Encountered an error while performing your request." 363 363 msgstr "" 364 364 365 #: inc/class-hfe-settings-page.php:11 5365 #: inc/class-hfe-settings-page.php:117 366 366 msgid "Add Theme Support" 367 367 msgstr "" 368 368 369 #: inc/class-hfe-settings-page.php:13 2369 #: inc/class-hfe-settings-page.php:134 370 370 msgid "" 371 371 "The Elementor Header & Footer Builder plugin need compatibility with your " … … 376 376 msgstr "" 377 377 378 #: inc/class-hfe-settings-page.php:1 49378 #: inc/class-hfe-settings-page.php:151 379 379 msgid " Method 1 (Recommended)" 380 380 msgstr "" 381 381 382 #: inc/class-hfe-settings-page.php:15 0382 #: inc/class-hfe-settings-page.php:152 383 383 msgid "" 384 384 "This method replaces your theme's header (header.php) & footer (footer.php) " … … 386 386 msgstr "" 387 387 388 #: inc/class-hfe-settings-page.php:15 3388 #: inc/class-hfe-settings-page.php:155 389 389 msgid "Method 2" 390 390 msgstr "" 391 391 392 #: inc/class-hfe-settings-page.php:16 6392 #: inc/class-hfe-settings-page.php:168 393 393 msgid "" 394 394 "Sometimes above methods might not work well with your theme, in this case, " … … 398 398 msgstr "" 399 399 400 #: inc/class-hfe-settings-page.php:18 5 inc/class-hfe-settings-page.php:186401 #: inc/class-hfe-settings-page.php:8 07400 #: inc/class-hfe-settings-page.php:187 inc/class-hfe-settings-page.php:188 401 #: inc/class-hfe-settings-page.php:833 402 402 msgid "Settings" 403 403 msgstr "" 404 404 405 #: inc/class-hfe-settings-page.php:19 4 inc/class-hfe-settings-page.php:195406 #: inc/class-hfe-settings-page.php:27 4405 #: inc/class-hfe-settings-page.php:196 inc/class-hfe-settings-page.php:197 406 #: inc/class-hfe-settings-page.php:276 407 407 msgid "About Us" 408 408 msgstr "" 409 409 410 #: inc/class-hfe-settings-page.php:21 1410 #: inc/class-hfe-settings-page.php:213 411 411 msgid "Elementor Header & Footer Builder " 412 412 msgstr "" 413 413 414 #: inc/class-hfe-settings-page.php:32 0414 #: inc/class-hfe-settings-page.php:322 415 415 #. translators: 1: Elementor, 2: Link to plugin review 416 416 msgid "" … … 419 419 msgstr "" 420 420 421 #: inc/class-hfe-settings-page.php:36 3421 #: inc/class-hfe-settings-page.php:365 422 422 msgid "Create Impressive Header and Footer Designs" 423 423 msgstr "" 424 424 425 #: inc/class-hfe-settings-page.php:36 4425 #: inc/class-hfe-settings-page.php:366 426 426 msgid "" 427 427 "Elementor Header & Footer Builder plugin lets you build impactful " … … 430 430 msgstr "" 431 431 432 #: inc/class-hfe-settings-page.php:3 78432 #: inc/class-hfe-settings-page.php:380 433 433 #. translators: %1$s and %3$s are opening anchor tags, and %2$s and %4$s is 434 434 #. closing anchor tags. … … 436 436 msgstr "" 437 437 438 #: inc/class-hfe-settings-page.php:39 6438 #: inc/class-hfe-settings-page.php:398 439 439 msgid "Skip" 440 440 msgstr "" 441 441 442 #: inc/class-hfe-settings-page.php:41 4442 #: inc/class-hfe-settings-page.php:416 443 443 msgid "Beginner" 444 444 msgstr "" 445 445 446 #: inc/class-hfe-settings-page.php:41 5446 #: inc/class-hfe-settings-page.php:417 447 447 msgid "Intermediate" 448 448 msgstr "" 449 449 450 #: inc/class-hfe-settings-page.php:41 6450 #: inc/class-hfe-settings-page.php:418 451 451 msgid "Expert" 452 452 msgstr "" 453 453 454 #: inc/class-hfe-settings-page.php:4 18 inc/class-hfe-settings-page.php:427454 #: inc/class-hfe-settings-page.php:420 inc/class-hfe-settings-page.php:429 455 455 msgid "Field is required" 456 456 msgstr "" 457 457 458 #: inc/class-hfe-settings-page.php:4 19458 #: inc/class-hfe-settings-page.php:421 459 459 msgid "I'm a WordPress:" 460 460 msgstr "" 461 461 462 #: inc/class-hfe-settings-page.php:42 4462 #: inc/class-hfe-settings-page.php:426 463 463 msgid "Myself/My company" 464 464 msgstr "" 465 465 466 #: inc/class-hfe-settings-page.php:42 5466 #: inc/class-hfe-settings-page.php:427 467 467 msgid "My client" 468 468 msgstr "" 469 469 470 #: inc/class-hfe-settings-page.php:4 28470 #: inc/class-hfe-settings-page.php:430 471 471 msgid "I'm building website for:" 472 472 msgstr "" 473 473 474 #: inc/class-hfe-settings-page.php:45 1474 #: inc/class-hfe-settings-page.php:453 475 475 msgid "First name is required" 476 476 msgstr "" 477 477 478 #: inc/class-hfe-settings-page.php:45 2478 #: inc/class-hfe-settings-page.php:454 479 479 msgid "Your First Name" 480 480 msgstr "" 481 481 482 #: inc/class-hfe-settings-page.php:45 6482 #: inc/class-hfe-settings-page.php:458 483 483 msgid "Email address is required" 484 484 msgstr "" 485 485 486 #: inc/class-hfe-settings-page.php:45 7486 #: inc/class-hfe-settings-page.php:459 487 487 msgid "Your Work Email" 488 488 msgstr "" 489 489 490 #: inc/class-hfe-settings-page.php:46 1490 #: inc/class-hfe-settings-page.php:463 491 491 msgid "I agree to receive your newsletters and accept the data privacy statement." 492 492 msgstr "" 493 493 494 #: inc/class-hfe-settings-page.php:46 6494 #: inc/class-hfe-settings-page.php:468 495 495 msgid "Submit" 496 496 msgstr "" 497 497 498 #: inc/class-hfe-settings-page.php:520 498 #: inc/class-hfe-settings-page.php:524 499 msgid "" 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." 503 msgstr "" 504 505 #: inc/class-hfe-settings-page.php:544 499 506 msgid "Welcome to Elementor Header & Footer Builder!" 500 507 msgstr "" 501 508 502 #: inc/class-hfe-settings-page.php:5 22509 #: inc/class-hfe-settings-page.php:546 503 510 msgid "" 504 511 "With this awesome plugin, experience the easiest way to create a customized " … … 506 513 msgstr "" 507 514 508 #: inc/class-hfe-settings-page.php:5 24515 #: inc/class-hfe-settings-page.php:548 509 516 msgid "" 510 517 "Design beautiful layouts with simple drag & drop and display them at " … … 515 522 msgstr "" 516 523 517 #: inc/class-hfe-settings-page.php:5 26524 #: inc/class-hfe-settings-page.php:550 518 525 msgid "" 519 526 "Trusted by more than 1+ Million users, Elementor Header & Footer Builder is " … … 521 528 msgstr "" 522 529 523 #: inc/class-hfe-settings-page.php:5 28530 #: inc/class-hfe-settings-page.php:552 524 531 msgid "" 525 532 "This plugin is brought to you by the same team behind the popular WordPress " 526 "theme Astraand a series of Ultimate Addons plugins."527 msgstr "" 528 529 #: inc/class-hfe-settings-page.php:5 34533 "theme %s and a series of Ultimate Addons plugins." 534 msgstr "" 535 536 #: inc/class-hfe-settings-page.php:558 530 537 msgid "Team photo" 531 538 msgstr "" 532 539 533 #: inc/class-hfe-settings-page.php:5 36540 #: inc/class-hfe-settings-page.php:560 534 541 msgid "Brainstorm Force Team" 535 542 msgstr "" 536 543 537 #: inc/class-hfe-settings-page.php: 580544 #: inc/class-hfe-settings-page.php:604 538 545 #. translators: %s - addon status label. 539 546 msgid "%1$s %3$s %2$s" 540 547 msgstr "" 541 548 542 #: inc/class-hfe-settings-page.php: 597549 #: inc/class-hfe-settings-page.php:621 543 550 #. translators: %s - addon status label. 544 551 msgid "Status: %s" 545 552 msgstr "" 546 553 547 #: inc/class-hfe-settings-page.php:6 16554 #: inc/class-hfe-settings-page.php:640 548 555 msgid "WordPress.org" 549 556 msgstr "" 550 557 551 #: inc/class-hfe-settings-page.php: 681558 #: inc/class-hfe-settings-page.php:705 552 559 msgid "Not Installed" 553 560 msgstr "" 554 561 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 567 563 msgid "Starter Templates" 568 564 msgstr "" 569 565 570 #: inc/class-hfe-settings-page.php:7 27566 #: inc/class-hfe-settings-page.php:753 571 567 msgid "" 572 568 "A popular templates plugin that provides an extensive library of " … … 575 571 msgstr "" 576 572 577 #: inc/class-hfe-settings-page.php:7 38573 #: inc/class-hfe-settings-page.php:764 578 574 msgid "Ultimate Addons for Elementor" 579 575 msgstr "" 580 576 581 #: inc/class-hfe-settings-page.php:7 39577 #: inc/class-hfe-settings-page.php:765 582 578 msgid "" 583 579 "It’s a collection of 40+ unique, creative, and optimized Elementor widgets " … … 586 582 msgstr "" 587 583 588 #: inc/class-hfe-settings-page.php:8 06584 #: inc/class-hfe-settings-page.php:832 589 585 msgid "Go to HFE Settings page" 590 586 msgstr "" … … 747 743 #: inc/widgets-manager/class-widgets-loader.php:234 748 744 #: inc/widgets-manager/widgets/class-cart.php:51 749 #: inc/widgets-manager/widgets/class-cart.php:65 2745 #: inc/widgets-manager/widgets/class-cart.php:651 750 746 msgid "Cart" 751 747 msgstr "" -
header-footer-elementor/tags/1.6.24/readme.txt
r3016959 r3028025 6 6 Requires PHP: 5.4 7 7 Tested up to: 6.4.1 8 Stable tag: 1.6.2 38 Stable tag: 1.6.24 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 141 141 == Changelog == 142 142 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 143 148 = 1.6.23 = 144 149 - 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 8 8 * Text Domain: header-footer-elementor 9 9 * Domain Path: /languages 10 * Version: 1.6.2 311 * Elementor tested up to: 3.1 812 * Elementor Pro tested up to: 3.1 810 * Version: 1.6.24 11 * Elementor tested up to: 3.19 12 * Elementor Pro tested up to: 3.19 13 13 * 14 14 * @package header-footer-elementor 15 15 */ 16 16 17 define( 'HFE_VER', '1.6.2 3' );17 define( 'HFE_VER', '1.6.24' ); 18 18 define( 'HFE_FILE', __FILE__ ); 19 19 define( 'HFE_DIR', plugin_dir_path( __FILE__ ) ); -
header-footer-elementor/trunk/inc/class-hfe-settings-page.php
r3016959 r3028025 362 362 363 363 <div class="hfe-admin-column-50"> 364 <div class="hfe-admin-about-section-column"> 364 <div class="hfe-admin-about-section-column"> 365 365 <h2><?php esc_html_e( 'Create Impressive Header and Footer Designs', 'header-footer-elementor' ); ?></h2> 366 366 <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> … … 510 510 511 511 /** 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 /** 512 531 * Display the General Info section of About tab. 513 532 * … … 515 534 */ 516 535 protected function output_about_info() { 536 537 $white_labels = $this->get_white_label(); 538 517 539 ?> 518 540 … … 528 550 <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> 529 551 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'] ) ); ?> 531 553 532 554 </div> … … 707 729 protected function get_bsf_plugins() { 708 730 731 $white_labels = $this->get_white_label(); 732 709 733 $images_url = HFE_URL . 'assets/images/settings/'; 710 734 … … 712 736 713 737 'astra' => [ 714 'icon' => $images_url . 'plugin-astra.png',738 'icon' => ! empty( $white_labels['theme_icon'] ) ? $white_labels['theme_icon'] : $images_url . 'plugin-astra.png', 715 739 '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'], 718 742 'wporg' => 'https://wordpress.org/themes/astra/', 719 743 'url' => 'https://downloads.wordpress.org/theme/astra.zip', 720 'siteurl' => 'https://wpastra.com/',744 'siteurl' => $white_labels['author_url'], 721 745 'pro' => false, 722 746 'slug' => 'astra', -
header-footer-elementor/trunk/inc/widgets-manager/widgets/class-navigation-menu.php
r3016959 r3028025 1932 1932 } 1933 1933 1934 $menu_html = wp_nav_menu( $args );1935 1936 1934 if ( 'flyout' === $settings['layout'] ) { 1937 1935 … … 1954 1952 <div class="hfe-flyout-content push"> 1955 1953 <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 ); ?> 1957 1955 </nav> 1958 1956 <div class="elementor-clickable hfe-flyout-close" tabindex="0"> … … 2030 2028 </div> 2031 2029 <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 ); ?> 2033 2031 </nav> 2034 2032 </div> -
header-footer-elementor/trunk/languages/header-footer-elementor.pot
r3009803 r3028025 1 # Copyright (C) 202 3Brainstorm Force, Nikhil Chavan1 # Copyright (C) 2024 Brainstorm Force, Nikhil Chavan 2 2 # This file is distributed under the same license as the Elementor Header & Footer Builder package. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Elementor Header & Footer Builder 1.6.2 2\n"5 "Project-Id-Version: Elementor Header & Footer Builder 1.6.24\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/header-footer-elementor\n" 8 "POT-Creation-Date: 202 3-12-10 18:13:21+00:00\n"8 "POT-Creation-Date: 2024-01-29 06:38:06+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "PO-Revision-Date: 202 3-MO-DA HO:MI+ZONE\n"12 "PO-Revision-Date: 2024-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 14 14 "Language-Team: LANGUAGE <LL@li.org>\n" … … 91 91 msgstr "" 92 92 93 #: admin/class-hfe-admin.php:13 6 admin/class-hfe-admin.php:36993 #: admin/class-hfe-admin.php:138 admin/class-hfe-admin.php:371 94 94 msgid "Display Rules" 95 95 msgstr "" 96 96 97 #: admin/class-hfe-admin.php:13 797 #: admin/class-hfe-admin.php:139 98 98 msgid "Date" 99 99 msgstr "" … … 103 103 msgstr "" 104 104 105 #: admin/class-hfe-admin.php:22 4105 #: admin/class-hfe-admin.php:226 106 106 msgid "Add New" 107 107 msgstr "" 108 108 109 #: admin/class-hfe-admin.php:22 5109 #: admin/class-hfe-admin.php:227 110 110 msgid "Add New Header or Footer" 111 111 msgstr "" 112 112 113 #: admin/class-hfe-admin.php:22 6113 #: admin/class-hfe-admin.php:228 114 114 msgid "New Template" 115 115 msgstr "" 116 116 117 #: admin/class-hfe-admin.php:22 7117 #: admin/class-hfe-admin.php:229 118 118 msgid "Edit Template" 119 119 msgstr "" 120 120 121 #: admin/class-hfe-admin.php:2 28121 #: admin/class-hfe-admin.php:230 122 122 msgid "View Template" 123 123 msgstr "" 124 124 125 #: admin/class-hfe-admin.php:2 29 inc/class-hfe-settings-page.php:268125 #: admin/class-hfe-admin.php:231 inc/class-hfe-settings-page.php:270 126 126 msgid "All Templates" 127 127 msgstr "" 128 128 129 #: admin/class-hfe-admin.php:23 0129 #: admin/class-hfe-admin.php:232 130 130 msgid "Search Templates" 131 131 msgstr "" 132 132 133 #: admin/class-hfe-admin.php:23 1133 #: admin/class-hfe-admin.php:233 134 134 msgid "Parent Templates:" 135 135 msgstr "" 136 136 137 #: admin/class-hfe-admin.php:23 2137 #: admin/class-hfe-admin.php:234 138 138 msgid "No Templates found." 139 139 msgstr "" 140 140 141 #: admin/class-hfe-admin.php:23 3141 #: admin/class-hfe-admin.php:235 142 142 msgid "No Templates found in Trash." 143 143 msgstr "" 144 144 145 #: admin/class-hfe-admin.php:27 5145 #: admin/class-hfe-admin.php:277 146 146 msgid "Elementor Header & Footer Builder Options" 147 147 msgstr "" 148 148 149 #: admin/class-hfe-admin.php:30 3149 #: admin/class-hfe-admin.php:305 150 150 msgid "Type of Template" 151 151 msgstr "" 152 152 153 #: admin/class-hfe-admin.php:30 7153 #: admin/class-hfe-admin.php:309 154 154 msgid "Select Option" 155 155 msgstr "" 156 156 157 #: admin/class-hfe-admin.php:3 08157 #: admin/class-hfe-admin.php:310 158 158 msgid "Header" 159 159 msgstr "" 160 160 161 #: admin/class-hfe-admin.php:3 09161 #: admin/class-hfe-admin.php:311 162 162 msgid "Before Footer" 163 163 msgstr "" 164 164 165 #: admin/class-hfe-admin.php:31 0165 #: admin/class-hfe-admin.php:312 166 166 msgid "Footer" 167 167 msgstr "" 168 168 169 #: admin/class-hfe-admin.php:31 1169 #: admin/class-hfe-admin.php:313 170 170 msgid "Custom Block" 171 171 msgstr "" 172 172 173 #: admin/class-hfe-admin.php:3 19 admin/class-hfe-admin.php:564173 #: admin/class-hfe-admin.php:321 admin/class-hfe-admin.php:566 174 174 msgid "Shortcode" 175 175 msgstr "" 176 176 177 #: admin/class-hfe-admin.php:32 0177 #: admin/class-hfe-admin.php:322 178 178 msgid "" 179 179 "Copy this shortcode and paste it into your post, page, or text widget " … … 181 181 msgstr "" 182 182 183 #: admin/class-hfe-admin.php:33 2183 #: admin/class-hfe-admin.php:334 184 184 msgid "Enable Layout for Elementor Canvas Template?" 185 185 msgstr "" 186 186 187 #: admin/class-hfe-admin.php:33 4187 #: admin/class-hfe-admin.php:336 188 188 msgid "" 189 189 "Enabling this option will display this layout on pages using Elementor " … … 191 191 msgstr "" 192 192 193 #: admin/class-hfe-admin.php:36 0193 #: admin/class-hfe-admin.php:362 194 194 msgid "Display On" 195 195 msgstr "" 196 196 197 #: admin/class-hfe-admin.php:36 2197 #: admin/class-hfe-admin.php:364 198 198 msgid "Add locations for where this template should appear." 199 199 msgstr "" 200 200 201 #: admin/class-hfe-admin.php:37 3201 #: admin/class-hfe-admin.php:375 202 202 msgid "Add Display Rule" 203 203 msgstr "" 204 204 205 #: admin/class-hfe-admin.php:38 2205 #: admin/class-hfe-admin.php:384 206 206 msgid "Do Not Display On" 207 207 msgstr "" 208 208 209 #: admin/class-hfe-admin.php:38 4209 #: admin/class-hfe-admin.php:386 210 210 msgid "Add locations for where this template should not appear." 211 211 msgstr "" 212 212 213 #: admin/class-hfe-admin.php:39 1213 #: admin/class-hfe-admin.php:393 214 214 msgid "Exclude On" 215 215 msgstr "" 216 216 217 #: admin/class-hfe-admin.php:39 4217 #: admin/class-hfe-admin.php:396 218 218 #: inc/lib/target-rule/class-astra-target-rules-fields.php:846 219 219 msgid "Add Exclusion Rule" 220 220 msgstr "" 221 221 222 #: admin/class-hfe-admin.php:40 4222 #: admin/class-hfe-admin.php:406 223 223 msgid "User Roles" 224 224 msgstr "" 225 225 226 #: admin/class-hfe-admin.php:40 5226 #: admin/class-hfe-admin.php:407 227 227 msgid "Display custom template based on user role." 228 228 msgstr "" 229 229 230 #: admin/class-hfe-admin.php:41 2230 #: admin/class-hfe-admin.php:414 231 231 msgid "Users" 232 232 msgstr "" 233 233 234 #: admin/class-hfe-admin.php:41 5234 #: admin/class-hfe-admin.php:417 235 235 msgid "Add User Rule" 236 236 msgstr "" 237 237 238 #: admin/class-hfe-admin.php:49 5238 #: admin/class-hfe-admin.php:497 239 239 #. Translators: Post title, Template Location 240 240 msgid "Template %1$s is already assigned to the location %2$s" … … 305 305 msgstr "" 306 306 307 #: inc/class-hfe-settings-page.php:6 1 inc/class-hfe-settings-page.php:671307 #: inc/class-hfe-settings-page.php:63 inc/class-hfe-settings-page.php:695 308 308 msgid "Activate" 309 309 msgstr "" 310 310 311 #: inc/class-hfe-settings-page.php:6 2 inc/class-hfe-settings-page.php:663311 #: inc/class-hfe-settings-page.php:64 inc/class-hfe-settings-page.php:687 312 312 msgid "Activated" 313 313 msgstr "" 314 314 315 #: inc/class-hfe-settings-page.php:6 3 inc/class-hfe-settings-page.php:660315 #: inc/class-hfe-settings-page.php:65 inc/class-hfe-settings-page.php:684 316 316 #: inc/widgets-manager/widgets/class-navigation-menu.php:1043 317 317 #: inc/widgets-manager/widgets/class-navigation-menu.php:1225 … … 319 319 msgstr "" 320 320 321 #: inc/class-hfe-settings-page.php:6 4321 #: inc/class-hfe-settings-page.php:66 322 322 msgid "Deactivate" 323 323 msgstr "" 324 324 325 #: inc/class-hfe-settings-page.php:6 5 inc/class-hfe-settings-page.php:668325 #: inc/class-hfe-settings-page.php:67 inc/class-hfe-settings-page.php:692 326 326 msgid "Inactive" 327 327 msgstr "" 328 328 329 #: inc/class-hfe-settings-page.php:6 6 inc/class-hfe-settings-page.php:684329 #: inc/class-hfe-settings-page.php:68 inc/class-hfe-settings-page.php:708 330 330 msgid "Install" 331 331 msgstr "" 332 332 333 #: inc/class-hfe-settings-page.php:6 7333 #: inc/class-hfe-settings-page.php:69 334 334 msgid "Theme Installed" 335 335 msgstr "" 336 336 337 #: inc/class-hfe-settings-page.php: 68337 #: inc/class-hfe-settings-page.php:70 338 338 msgid "Plugin Installed" 339 339 msgstr "" 340 340 341 #: inc/class-hfe-settings-page.php: 69341 #: inc/class-hfe-settings-page.php:71 342 342 msgid "Download" 343 343 msgstr "" 344 344 345 #: inc/class-hfe-settings-page.php:7 0345 #: inc/class-hfe-settings-page.php:72 346 346 msgid "Already Exists." 347 347 msgstr "" 348 348 349 #: inc/class-hfe-settings-page.php:7 1 inc/class-hfe-settings-page.php:689349 #: inc/class-hfe-settings-page.php:73 inc/class-hfe-settings-page.php:713 350 350 msgid "Visit Website" 351 351 msgstr "" 352 352 353 #: inc/class-hfe-settings-page.php:7 2353 #: inc/class-hfe-settings-page.php:74 354 354 msgid "Could not install. Please download from WordPress.org and install manually." 355 355 msgstr "" 356 356 357 #: inc/class-hfe-settings-page.php:7 3357 #: inc/class-hfe-settings-page.php:75 358 358 msgid "Your details are submitted successfully." 359 359 msgstr "" 360 360 361 #: inc/class-hfe-settings-page.php:7 4361 #: inc/class-hfe-settings-page.php:76 362 362 msgid "Encountered an error while performing your request." 363 363 msgstr "" 364 364 365 #: inc/class-hfe-settings-page.php:11 5365 #: inc/class-hfe-settings-page.php:117 366 366 msgid "Add Theme Support" 367 367 msgstr "" 368 368 369 #: inc/class-hfe-settings-page.php:13 2369 #: inc/class-hfe-settings-page.php:134 370 370 msgid "" 371 371 "The Elementor Header & Footer Builder plugin need compatibility with your " … … 376 376 msgstr "" 377 377 378 #: inc/class-hfe-settings-page.php:1 49378 #: inc/class-hfe-settings-page.php:151 379 379 msgid " Method 1 (Recommended)" 380 380 msgstr "" 381 381 382 #: inc/class-hfe-settings-page.php:15 0382 #: inc/class-hfe-settings-page.php:152 383 383 msgid "" 384 384 "This method replaces your theme's header (header.php) & footer (footer.php) " … … 386 386 msgstr "" 387 387 388 #: inc/class-hfe-settings-page.php:15 3388 #: inc/class-hfe-settings-page.php:155 389 389 msgid "Method 2" 390 390 msgstr "" 391 391 392 #: inc/class-hfe-settings-page.php:16 6392 #: inc/class-hfe-settings-page.php:168 393 393 msgid "" 394 394 "Sometimes above methods might not work well with your theme, in this case, " … … 398 398 msgstr "" 399 399 400 #: inc/class-hfe-settings-page.php:18 5 inc/class-hfe-settings-page.php:186401 #: inc/class-hfe-settings-page.php:8 07400 #: inc/class-hfe-settings-page.php:187 inc/class-hfe-settings-page.php:188 401 #: inc/class-hfe-settings-page.php:833 402 402 msgid "Settings" 403 403 msgstr "" 404 404 405 #: inc/class-hfe-settings-page.php:19 4 inc/class-hfe-settings-page.php:195406 #: inc/class-hfe-settings-page.php:27 4405 #: inc/class-hfe-settings-page.php:196 inc/class-hfe-settings-page.php:197 406 #: inc/class-hfe-settings-page.php:276 407 407 msgid "About Us" 408 408 msgstr "" 409 409 410 #: inc/class-hfe-settings-page.php:21 1410 #: inc/class-hfe-settings-page.php:213 411 411 msgid "Elementor Header & Footer Builder " 412 412 msgstr "" 413 413 414 #: inc/class-hfe-settings-page.php:32 0414 #: inc/class-hfe-settings-page.php:322 415 415 #. translators: 1: Elementor, 2: Link to plugin review 416 416 msgid "" … … 419 419 msgstr "" 420 420 421 #: inc/class-hfe-settings-page.php:36 3421 #: inc/class-hfe-settings-page.php:365 422 422 msgid "Create Impressive Header and Footer Designs" 423 423 msgstr "" 424 424 425 #: inc/class-hfe-settings-page.php:36 4425 #: inc/class-hfe-settings-page.php:366 426 426 msgid "" 427 427 "Elementor Header & Footer Builder plugin lets you build impactful " … … 430 430 msgstr "" 431 431 432 #: inc/class-hfe-settings-page.php:3 78432 #: inc/class-hfe-settings-page.php:380 433 433 #. translators: %1$s and %3$s are opening anchor tags, and %2$s and %4$s is 434 434 #. closing anchor tags. … … 436 436 msgstr "" 437 437 438 #: inc/class-hfe-settings-page.php:39 6438 #: inc/class-hfe-settings-page.php:398 439 439 msgid "Skip" 440 440 msgstr "" 441 441 442 #: inc/class-hfe-settings-page.php:41 4442 #: inc/class-hfe-settings-page.php:416 443 443 msgid "Beginner" 444 444 msgstr "" 445 445 446 #: inc/class-hfe-settings-page.php:41 5446 #: inc/class-hfe-settings-page.php:417 447 447 msgid "Intermediate" 448 448 msgstr "" 449 449 450 #: inc/class-hfe-settings-page.php:41 6450 #: inc/class-hfe-settings-page.php:418 451 451 msgid "Expert" 452 452 msgstr "" 453 453 454 #: inc/class-hfe-settings-page.php:4 18 inc/class-hfe-settings-page.php:427454 #: inc/class-hfe-settings-page.php:420 inc/class-hfe-settings-page.php:429 455 455 msgid "Field is required" 456 456 msgstr "" 457 457 458 #: inc/class-hfe-settings-page.php:4 19458 #: inc/class-hfe-settings-page.php:421 459 459 msgid "I'm a WordPress:" 460 460 msgstr "" 461 461 462 #: inc/class-hfe-settings-page.php:42 4462 #: inc/class-hfe-settings-page.php:426 463 463 msgid "Myself/My company" 464 464 msgstr "" 465 465 466 #: inc/class-hfe-settings-page.php:42 5466 #: inc/class-hfe-settings-page.php:427 467 467 msgid "My client" 468 468 msgstr "" 469 469 470 #: inc/class-hfe-settings-page.php:4 28470 #: inc/class-hfe-settings-page.php:430 471 471 msgid "I'm building website for:" 472 472 msgstr "" 473 473 474 #: inc/class-hfe-settings-page.php:45 1474 #: inc/class-hfe-settings-page.php:453 475 475 msgid "First name is required" 476 476 msgstr "" 477 477 478 #: inc/class-hfe-settings-page.php:45 2478 #: inc/class-hfe-settings-page.php:454 479 479 msgid "Your First Name" 480 480 msgstr "" 481 481 482 #: inc/class-hfe-settings-page.php:45 6482 #: inc/class-hfe-settings-page.php:458 483 483 msgid "Email address is required" 484 484 msgstr "" 485 485 486 #: inc/class-hfe-settings-page.php:45 7486 #: inc/class-hfe-settings-page.php:459 487 487 msgid "Your Work Email" 488 488 msgstr "" 489 489 490 #: inc/class-hfe-settings-page.php:46 1490 #: inc/class-hfe-settings-page.php:463 491 491 msgid "I agree to receive your newsletters and accept the data privacy statement." 492 492 msgstr "" 493 493 494 #: inc/class-hfe-settings-page.php:46 6494 #: inc/class-hfe-settings-page.php:468 495 495 msgid "Submit" 496 496 msgstr "" 497 497 498 #: inc/class-hfe-settings-page.php:520 498 #: inc/class-hfe-settings-page.php:524 499 msgid "" 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." 503 msgstr "" 504 505 #: inc/class-hfe-settings-page.php:544 499 506 msgid "Welcome to Elementor Header & Footer Builder!" 500 507 msgstr "" 501 508 502 #: inc/class-hfe-settings-page.php:5 22509 #: inc/class-hfe-settings-page.php:546 503 510 msgid "" 504 511 "With this awesome plugin, experience the easiest way to create a customized " … … 506 513 msgstr "" 507 514 508 #: inc/class-hfe-settings-page.php:5 24515 #: inc/class-hfe-settings-page.php:548 509 516 msgid "" 510 517 "Design beautiful layouts with simple drag & drop and display them at " … … 515 522 msgstr "" 516 523 517 #: inc/class-hfe-settings-page.php:5 26524 #: inc/class-hfe-settings-page.php:550 518 525 msgid "" 519 526 "Trusted by more than 1+ Million users, Elementor Header & Footer Builder is " … … 521 528 msgstr "" 522 529 523 #: inc/class-hfe-settings-page.php:5 28530 #: inc/class-hfe-settings-page.php:552 524 531 msgid "" 525 532 "This plugin is brought to you by the same team behind the popular WordPress " 526 "theme Astraand a series of Ultimate Addons plugins."527 msgstr "" 528 529 #: inc/class-hfe-settings-page.php:5 34533 "theme %s and a series of Ultimate Addons plugins." 534 msgstr "" 535 536 #: inc/class-hfe-settings-page.php:558 530 537 msgid "Team photo" 531 538 msgstr "" 532 539 533 #: inc/class-hfe-settings-page.php:5 36540 #: inc/class-hfe-settings-page.php:560 534 541 msgid "Brainstorm Force Team" 535 542 msgstr "" 536 543 537 #: inc/class-hfe-settings-page.php: 580544 #: inc/class-hfe-settings-page.php:604 538 545 #. translators: %s - addon status label. 539 546 msgid "%1$s %3$s %2$s" 540 547 msgstr "" 541 548 542 #: inc/class-hfe-settings-page.php: 597549 #: inc/class-hfe-settings-page.php:621 543 550 #. translators: %s - addon status label. 544 551 msgid "Status: %s" 545 552 msgstr "" 546 553 547 #: inc/class-hfe-settings-page.php:6 16554 #: inc/class-hfe-settings-page.php:640 548 555 msgid "WordPress.org" 549 556 msgstr "" 550 557 551 #: inc/class-hfe-settings-page.php: 681558 #: inc/class-hfe-settings-page.php:705 552 559 msgid "Not Installed" 553 560 msgstr "" 554 561 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 567 563 msgid "Starter Templates" 568 564 msgstr "" 569 565 570 #: inc/class-hfe-settings-page.php:7 27566 #: inc/class-hfe-settings-page.php:753 571 567 msgid "" 572 568 "A popular templates plugin that provides an extensive library of " … … 575 571 msgstr "" 576 572 577 #: inc/class-hfe-settings-page.php:7 38573 #: inc/class-hfe-settings-page.php:764 578 574 msgid "Ultimate Addons for Elementor" 579 575 msgstr "" 580 576 581 #: inc/class-hfe-settings-page.php:7 39577 #: inc/class-hfe-settings-page.php:765 582 578 msgid "" 583 579 "It’s a collection of 40+ unique, creative, and optimized Elementor widgets " … … 586 582 msgstr "" 587 583 588 #: inc/class-hfe-settings-page.php:8 06584 #: inc/class-hfe-settings-page.php:832 589 585 msgid "Go to HFE Settings page" 590 586 msgstr "" … … 747 743 #: inc/widgets-manager/class-widgets-loader.php:234 748 744 #: inc/widgets-manager/widgets/class-cart.php:51 749 #: inc/widgets-manager/widgets/class-cart.php:65 2745 #: inc/widgets-manager/widgets/class-cart.php:651 750 746 msgid "Cart" 751 747 msgstr "" -
header-footer-elementor/trunk/readme.txt
r3016959 r3028025 6 6 Requires PHP: 5.4 7 7 Tested up to: 6.4.1 8 Stable tag: 1.6.2 38 Stable tag: 1.6.24 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 141 141 == Changelog == 142 142 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 143 148 = 1.6.23 = 144 149 - 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.