Changeset 3201445
- Timestamp:
- 12/03/2024 08:49:51 AM (14 months ago)
- Location:
- everest-forms
- Files:
-
- 8 added
- 4 deleted
- 22 edited
- 1 copied
-
tags/3.0.5.2 (copied) (copied from everest-forms/trunk)
-
tags/3.0.5.2/addons/StyleCustomizer/includes/class-evf-style-customizer-api.php (modified) (3 diffs)
-
tags/3.0.5.2/addons/StyleCustomizer/includes/libraries (deleted)
-
tags/3.0.5.2/everest-forms.php (modified) (1 diff)
-
tags/3.0.5.2/includes/class-everest-forms.php (modified) (1 diff)
-
tags/3.0.5.2/languages/everest-forms.pot (modified) (5 diffs)
-
tags/3.0.5.2/readme.txt (modified) (1 diff)
-
tags/3.0.5.2/vendor/autoload.php (modified) (1 diff)
-
tags/3.0.5.2/vendor/composer/autoload_psr4.php (modified) (1 diff)
-
tags/3.0.5.2/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/3.0.5.2/vendor/composer/autoload_static.php (modified) (3 diffs)
-
tags/3.0.5.2/vendor/composer/installed.json (modified) (1 diff)
-
tags/3.0.5.2/vendor/composer/installed.php (modified) (2 diffs)
-
tags/3.0.5.2/vendor/composer/platform_check.php (deleted)
-
tags/3.0.5.2/vendor/scssphp (added)
-
tags/3.0.5.2/vendor/scssphp/scssphp (added)
-
tags/3.0.5.2/vendor/scssphp/scssphp/scss.inc.php (added)
-
tags/3.0.5.2/wp (added)
-
trunk/addons/StyleCustomizer/includes/class-evf-style-customizer-api.php (modified) (3 diffs)
-
trunk/addons/StyleCustomizer/includes/libraries (deleted)
-
trunk/everest-forms.php (modified) (1 diff)
-
trunk/includes/class-everest-forms.php (modified) (1 diff)
-
trunk/languages/everest-forms.pot (modified) (5 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_psr4.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (3 diffs)
-
trunk/vendor/composer/installed.json (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/vendor/composer/platform_check.php (deleted)
-
trunk/vendor/scssphp (added)
-
trunk/vendor/scssphp/scssphp (added)
-
trunk/vendor/scssphp/scssphp/scss.inc.php (added)
-
trunk/wp (added)
Legend:
- Unmodified
- Added
- Removed
-
everest-forms/tags/3.0.5.2/addons/StyleCustomizer/includes/class-evf-style-customizer-api.php
r3201387 r3201445 9 9 defined( 'ABSPATH' ) || exit; 10 10 11 use ScssPhp\ScssPhp\Compiler; 12 use ScssPhp\ScssPhp\OutputStyle; 13 use ScssPhp\ScssPhp\ValueConverter; 11 14 /** 12 15 * Style Customizer API. … … 736 739 */ 737 740 protected function compile_scss( $form_id = 0, $defaults = array() ) { 738 require_once 'libraries/scssphp/scss.inc.php';739 741 740 742 $form_id = 0 !== $form_id ? $form_id : $this->form_id; … … 746 748 747 749 try { 748 $compiler = new ScssPhp\ScssPhp\Compiler(); // phpcs:ignore PHPCompatibility.LanguageConstructs.NewLanguageConstructs.t_ns_separatorFound 749 $compiler->setVariables( array( 'form_id' => $form_id ) ); 750 $compiler->setFormatter( 'ScssPhp\ScssPhp\Formatter\Compressed' ); 750 $compiler = new Compiler(); 751 $compiler->setOutputStyle( OutputStyle::COMPRESSED ); 752 $parsed_form_id = ValueConverter::parseValue( $form_id ); 753 $compiler->addVariables( array( 'form_id' => $parsed_form_id ) ); 751 754 $compiler->addImportPath( plugin_dir_path( EVF_PLUGIN_FILE ) . 'assets/css/bourbon/' ); 752 $compiled_css = $compiler->compile ( trim( $scss ));755 $compiled_css = $compiler->compileString( trim( $scss ) )->getCss(); 753 756 return $compiled_css; 754 757 } catch ( Exception $e ) { -
everest-forms/tags/3.0.5.2/everest-forms.php
r3201407 r3201445 4 4 * Plugin URI: https://everestforms.net/ 5 5 * Description: Drag and Drop contact form builder to easily create simple to complex forms for any purpose. Lightweight, Beautiful design, responsive and more. 6 * Version: 3.0.5. 16 * Version: 3.0.5.2 7 7 * Author: WPEverest 8 8 * Author URI: https://wpeverest.com -
everest-forms/tags/3.0.5.2/includes/class-everest-forms.php
r3201407 r3201445 24 24 * @var string 25 25 */ 26 public $version = '3.0.5. 1';26 public $version = '3.0.5.2'; 27 27 28 28 /** -
everest-forms/tags/3.0.5.2/languages/everest-forms.pot
r3201407 r3201445 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Everest Forms 3.0.5. 1\n"5 "Project-Id-Version: Everest Forms 3.0.5.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/everest-forms\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-12-03T13: 18:54+05:45\n"12 "POT-Creation-Date: 2024-12-03T13:56:32+05:45\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" … … 507 507 msgstr "" 508 508 509 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:9 6509 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:99 510 510 #: includes/admin/views/html-admin-page-builder.php:115 511 511 msgid "Save" 512 512 msgstr "" 513 513 514 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php: 99514 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:102 515 515 msgid "Saved" 516 516 msgstr "" 517 517 518 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:19 4518 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:197 519 519 msgid "Looking for a template? You can browse our templates, import and preview templates, then activate them right here." 520 520 msgstr "" 521 521 522 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:19 5522 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:198 523 523 msgid "While previewing a new template, you can continue to tailor things like form styles and custom css, and explore template-specific options." 524 524 msgstr "" 525 525 526 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:21 1526 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:214 527 527 #: addons/StyleCustomizer/includes/customize/class-evf-customize-templates-section.php:56 528 528 msgid "Templates" 529 529 msgstr "" 530 530 531 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:21 2531 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:215 532 532 msgid "Choose your desire templates." 533 533 msgstr "" 534 534 535 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:45 4535 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:457 536 536 msgid "Invalid value for background repeat." 537 537 msgstr "" 538 538 539 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:4 58539 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:461 540 540 msgid "Invalid value for background attachment." 541 541 msgstr "" 542 542 543 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:46 2543 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:465 544 544 msgid "Invalid value for background position X." 545 545 msgstr "" 546 546 547 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:46 6547 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:469 548 548 msgid "Invalid value for background position Y." 549 549 msgstr "" 550 550 551 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:47 0552 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:47 4551 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:473 552 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:477 553 553 msgid "Invalid value for background size." 554 554 msgstr "" 555 555 556 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:4 79556 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:482 557 557 msgid "Unrecognized background setting." 558 558 msgstr "" 559 559 560 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:52 0560 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:523 561 561 #: includes/admin/settings/class-evf-settings-validation.php:52 562 562 #: includes/class-evf-frontend-scripts.php:346 … … 565 565 msgstr "" 566 566 567 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:52 1567 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:524 568 568 msgid "This is a sample form error message for customize puropse only." 569 569 msgstr "" 570 570 571 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:52 2571 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:525 572 572 msgid "This is a sample form success message for customize puropse only." 573 573 msgstr "" 574 574 575 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:55 4575 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:557 576 576 msgid "Everest Forms – Styles" 577 577 msgstr "" 578 578 579 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:55 5579 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:558 580 580 msgid "Everest Forms – Styles Customizer allows you to preview changes and customize any form elements." 581 581 msgstr "" 582 582 583 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:56 2583 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:565 584 584 msgid "Are you sure you want to edit this color palette?" 585 585 msgstr "" 586 586 587 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:56 3587 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:566 588 588 msgid "Your previous custom color palette will be lost!" 589 589 msgstr "" 590 590 591 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:58 3591 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:586 592 592 msgid "Upgrade to Pro Version to Gain Access" 593 593 msgstr "" 594 594 595 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:58 4595 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:587 596 596 msgid "Unfortunately, this feature is available on the Pro version. Please upgrade to unlock it." 597 597 msgstr "" 598 598 599 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:58 5599 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:588 600 600 #: includes/admin/class-evf-admin-assets.php:219 601 601 msgid "Upgrade to PRO" 602 602 msgstr "" 603 603 604 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:58 6604 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:589 605 605 #: includes/admin/class-evf-admin-assets.php:157 606 606 #: includes/admin/class-evf-admin-assets.php:264 … … 608 608 msgstr "" 609 609 610 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:7 59610 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:762 611 611 msgid "ScssPhp: Unable to compile content" 612 612 msgstr "" -
everest-forms/tags/3.0.5.2/readme.txt
r3201407 r3201445 308 308 309 309 == Changelog == 310 311 = 3.0.5.2 - 03-12-2024 312 * Enhance - SCSS PHP Compiler Updated. 310 313 311 314 = 3.0.5.1 - 03-12-2024 -
everest-forms/tags/3.0.5.2/vendor/autoload.php
r3201407 r3201445 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 6ec5ed695121b5e8c9e8e3d401a2c70a::getLoader();25 return ComposerAutoloaderInit11b556de92789ded0f435d9d0dda273a::getLoader(); -
everest-forms/tags/3.0.5.2/vendor/composer/autoload_psr4.php
r3201407 r3201445 7 7 8 8 return array( 9 'ScssPhp\\ScssPhp\\' => array($vendorDir . '/scssphp/scssphp/src'), 9 10 'EverestForms\\Traits\\' => array($baseDir . '/traits'), 10 11 'EverestForms\\Addons\\' => array($baseDir . '/addons'), -
everest-forms/tags/3.0.5.2/vendor/composer/autoload_real.php
r3201407 r3201445 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 6ec5ed695121b5e8c9e8e3d401a2c70a5 class ComposerAutoloaderInit11b556de92789ded0f435d9d0dda273a 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 require __DIR__ . '/platform_check.php'; 26 27 spl_autoload_register(array('ComposerAutoloaderInit6ec5ed695121b5e8c9e8e3d401a2c70a', 'loadClassLoader'), true, true); 25 spl_autoload_register(array('ComposerAutoloaderInit11b556de92789ded0f435d9d0dda273a', 'loadClassLoader'), true, true); 28 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 6ec5ed695121b5e8c9e8e3d401a2c70a', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit11b556de92789ded0f435d9d0dda273a', 'loadClassLoader')); 30 28 31 29 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 6ec5ed695121b5e8c9e8e3d401a2c70a::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit11b556de92789ded0f435d9d0dda273a::getInitializer($loader)); 33 31 34 32 $loader->register(true); -
everest-forms/tags/3.0.5.2/vendor/composer/autoload_static.php
r3201407 r3201445 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 6ec5ed695121b5e8c9e8e3d401a2c70a7 class ComposerStaticInit11b556de92789ded0f435d9d0dda273a 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( 10 'S' => 11 array ( 12 'ScssPhp\\ScssPhp\\' => 16, 13 ), 10 14 'E' => 11 15 array ( … … 20 24 21 25 public static $prefixDirsPsr4 = array ( 26 'ScssPhp\\ScssPhp\\' => 27 array ( 28 0 => __DIR__ . '/..' . '/scssphp/scssphp/src', 29 ), 22 30 'EverestForms\\Traits\\' => 23 31 array ( … … 41 49 { 42 50 return \Closure::bind(function () use ($loader) { 43 $loader->prefixLengthsPsr4 = ComposerStaticInit 6ec5ed695121b5e8c9e8e3d401a2c70a::$prefixLengthsPsr4;44 $loader->prefixDirsPsr4 = ComposerStaticInit 6ec5ed695121b5e8c9e8e3d401a2c70a::$prefixDirsPsr4;45 $loader->classMap = ComposerStaticInit 6ec5ed695121b5e8c9e8e3d401a2c70a::$classMap;51 $loader->prefixLengthsPsr4 = ComposerStaticInit11b556de92789ded0f435d9d0dda273a::$prefixLengthsPsr4; 52 $loader->prefixDirsPsr4 = ComposerStaticInit11b556de92789ded0f435d9d0dda273a::$prefixDirsPsr4; 53 $loader->classMap = ComposerStaticInit11b556de92789ded0f435d9d0dda273a::$classMap; 46 54 47 55 }, null, ClassLoader::class); -
everest-forms/tags/3.0.5.2/vendor/composer/installed.json
r3201407 r3201445 146 146 ], 147 147 "install-path": "./installers" 148 }, 149 { 150 "name": "scssphp/scssphp", 151 "version": "v1.13.0", 152 "version_normalized": "1.13.0.0", 153 "source": { 154 "type": "git", 155 "url": "https://github.com/scssphp/scssphp.git", 156 "reference": "63d1157457e5554edf00b0c1fabab4c1511d2520" 157 }, 158 "dist": { 159 "type": "zip", 160 "url": "https://api.github.com/repos/scssphp/scssphp/zipball/63d1157457e5554edf00b0c1fabab4c1511d2520", 161 "reference": "63d1157457e5554edf00b0c1fabab4c1511d2520", 162 "shasum": "" 163 }, 164 "require": { 165 "ext-ctype": "*", 166 "ext-json": "*", 167 "php": ">=5.6.0" 168 }, 169 "require-dev": { 170 "bamarni/composer-bin-plugin": "^1.4", 171 "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.3 || ^9.4", 172 "sass/sass-spec": "*", 173 "squizlabs/php_codesniffer": "~3.5", 174 "symfony/phpunit-bridge": "^5.1", 175 "thoughtbot/bourbon": "^7.0", 176 "twbs/bootstrap": "~5.0", 177 "twbs/bootstrap4": "4.6.1", 178 "zurb/foundation": "~6.7.0" 179 }, 180 "suggest": { 181 "ext-iconv": "Can be used as fallback when ext-mbstring is not available", 182 "ext-mbstring": "For best performance, mbstring should be installed as it is faster than ext-iconv" 183 }, 184 "time": "2024-08-17T21:02:11+00:00", 185 "bin": [ 186 "bin/pscss" 187 ], 188 "type": "library", 189 "extra": { 190 "bamarni-bin": { 191 "forward-command": false, 192 "bin-links": false 193 } 194 }, 195 "installation-source": "dist", 196 "autoload": { 197 "psr-4": { 198 "ScssPhp\\ScssPhp\\": "src/" 199 } 200 }, 201 "notification-url": "https://packagist.org/downloads/", 202 "license": [ 203 "MIT" 204 ], 205 "authors": [ 206 { 207 "name": "Anthon Pang", 208 "email": "apang@softwaredevelopment.ca", 209 "homepage": "https://github.com/robocoder" 210 }, 211 { 212 "name": "Cédric Morin", 213 "email": "cedric@yterium.com", 214 "homepage": "https://github.com/Cerdic" 215 } 216 ], 217 "description": "scssphp is a compiler for SCSS written in PHP.", 218 "homepage": "http://scssphp.github.io/scssphp/", 219 "keywords": [ 220 "css", 221 "less", 222 "sass", 223 "scss", 224 "stylesheet" 225 ], 226 "support": { 227 "issues": "https://github.com/scssphp/scssphp/issues", 228 "source": "https://github.com/scssphp/scssphp/tree/v1.13.0" 229 }, 230 "install-path": "../scssphp/scssphp" 148 231 } 149 232 ], -
everest-forms/tags/3.0.5.2/vendor/composer/installed.php
r3201407 r3201445 4 4 'pretty_version' => 'dev-develop', 5 5 'version' => 'dev-develop', 6 'reference' => ' fb94d415eb7ddbbd94efa1b488678aefc21a1656',6 'reference' => 'ca40145ba55c72a74bf8ba80f3dcf155986f0d4a', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 20 20 'dev_requirement' => false, 21 21 ), 22 'scssphp/scssphp' => array( 23 'pretty_version' => 'v1.13.0', 24 'version' => '1.13.0.0', 25 'reference' => '63d1157457e5554edf00b0c1fabab4c1511d2520', 26 'type' => 'library', 27 'install_path' => __DIR__ . '/../scssphp/scssphp', 28 'aliases' => array(), 29 'dev_requirement' => false, 30 ), 22 31 'wpeverest/everest-forms' => array( 23 32 'pretty_version' => 'dev-develop', 24 33 'version' => 'dev-develop', 25 'reference' => ' fb94d415eb7ddbbd94efa1b488678aefc21a1656',34 'reference' => 'ca40145ba55c72a74bf8ba80f3dcf155986f0d4a', 26 35 'type' => 'wordpress-plugin', 27 36 'install_path' => __DIR__ . '/../../', -
everest-forms/trunk/addons/StyleCustomizer/includes/class-evf-style-customizer-api.php
r3201387 r3201445 9 9 defined( 'ABSPATH' ) || exit; 10 10 11 use ScssPhp\ScssPhp\Compiler; 12 use ScssPhp\ScssPhp\OutputStyle; 13 use ScssPhp\ScssPhp\ValueConverter; 11 14 /** 12 15 * Style Customizer API. … … 736 739 */ 737 740 protected function compile_scss( $form_id = 0, $defaults = array() ) { 738 require_once 'libraries/scssphp/scss.inc.php';739 741 740 742 $form_id = 0 !== $form_id ? $form_id : $this->form_id; … … 746 748 747 749 try { 748 $compiler = new ScssPhp\ScssPhp\Compiler(); // phpcs:ignore PHPCompatibility.LanguageConstructs.NewLanguageConstructs.t_ns_separatorFound 749 $compiler->setVariables( array( 'form_id' => $form_id ) ); 750 $compiler->setFormatter( 'ScssPhp\ScssPhp\Formatter\Compressed' ); 750 $compiler = new Compiler(); 751 $compiler->setOutputStyle( OutputStyle::COMPRESSED ); 752 $parsed_form_id = ValueConverter::parseValue( $form_id ); 753 $compiler->addVariables( array( 'form_id' => $parsed_form_id ) ); 751 754 $compiler->addImportPath( plugin_dir_path( EVF_PLUGIN_FILE ) . 'assets/css/bourbon/' ); 752 $compiled_css = $compiler->compile ( trim( $scss ));755 $compiled_css = $compiler->compileString( trim( $scss ) )->getCss(); 753 756 return $compiled_css; 754 757 } catch ( Exception $e ) { -
everest-forms/trunk/everest-forms.php
r3201407 r3201445 4 4 * Plugin URI: https://everestforms.net/ 5 5 * Description: Drag and Drop contact form builder to easily create simple to complex forms for any purpose. Lightweight, Beautiful design, responsive and more. 6 * Version: 3.0.5. 16 * Version: 3.0.5.2 7 7 * Author: WPEverest 8 8 * Author URI: https://wpeverest.com -
everest-forms/trunk/includes/class-everest-forms.php
r3201407 r3201445 24 24 * @var string 25 25 */ 26 public $version = '3.0.5. 1';26 public $version = '3.0.5.2'; 27 27 28 28 /** -
everest-forms/trunk/languages/everest-forms.pot
r3201407 r3201445 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Everest Forms 3.0.5. 1\n"5 "Project-Id-Version: Everest Forms 3.0.5.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/everest-forms\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-12-03T13: 18:54+05:45\n"12 "POT-Creation-Date: 2024-12-03T13:56:32+05:45\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" … … 507 507 msgstr "" 508 508 509 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:9 6509 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:99 510 510 #: includes/admin/views/html-admin-page-builder.php:115 511 511 msgid "Save" 512 512 msgstr "" 513 513 514 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php: 99514 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:102 515 515 msgid "Saved" 516 516 msgstr "" 517 517 518 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:19 4518 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:197 519 519 msgid "Looking for a template? You can browse our templates, import and preview templates, then activate them right here." 520 520 msgstr "" 521 521 522 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:19 5522 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:198 523 523 msgid "While previewing a new template, you can continue to tailor things like form styles and custom css, and explore template-specific options." 524 524 msgstr "" 525 525 526 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:21 1526 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:214 527 527 #: addons/StyleCustomizer/includes/customize/class-evf-customize-templates-section.php:56 528 528 msgid "Templates" 529 529 msgstr "" 530 530 531 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:21 2531 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:215 532 532 msgid "Choose your desire templates." 533 533 msgstr "" 534 534 535 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:45 4535 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:457 536 536 msgid "Invalid value for background repeat." 537 537 msgstr "" 538 538 539 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:4 58539 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:461 540 540 msgid "Invalid value for background attachment." 541 541 msgstr "" 542 542 543 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:46 2543 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:465 544 544 msgid "Invalid value for background position X." 545 545 msgstr "" 546 546 547 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:46 6547 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:469 548 548 msgid "Invalid value for background position Y." 549 549 msgstr "" 550 550 551 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:47 0552 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:47 4551 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:473 552 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:477 553 553 msgid "Invalid value for background size." 554 554 msgstr "" 555 555 556 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:4 79556 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:482 557 557 msgid "Unrecognized background setting." 558 558 msgstr "" 559 559 560 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:52 0560 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:523 561 561 #: includes/admin/settings/class-evf-settings-validation.php:52 562 562 #: includes/class-evf-frontend-scripts.php:346 … … 565 565 msgstr "" 566 566 567 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:52 1567 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:524 568 568 msgid "This is a sample form error message for customize puropse only." 569 569 msgstr "" 570 570 571 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:52 2571 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:525 572 572 msgid "This is a sample form success message for customize puropse only." 573 573 msgstr "" 574 574 575 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:55 4575 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:557 576 576 msgid "Everest Forms – Styles" 577 577 msgstr "" 578 578 579 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:55 5579 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:558 580 580 msgid "Everest Forms – Styles Customizer allows you to preview changes and customize any form elements." 581 581 msgstr "" 582 582 583 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:56 2583 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:565 584 584 msgid "Are you sure you want to edit this color palette?" 585 585 msgstr "" 586 586 587 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:56 3587 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:566 588 588 msgid "Your previous custom color palette will be lost!" 589 589 msgstr "" 590 590 591 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:58 3591 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:586 592 592 msgid "Upgrade to Pro Version to Gain Access" 593 593 msgstr "" 594 594 595 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:58 4595 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:587 596 596 msgid "Unfortunately, this feature is available on the Pro version. Please upgrade to unlock it." 597 597 msgstr "" 598 598 599 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:58 5599 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:588 600 600 #: includes/admin/class-evf-admin-assets.php:219 601 601 msgid "Upgrade to PRO" 602 602 msgstr "" 603 603 604 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:58 6604 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:589 605 605 #: includes/admin/class-evf-admin-assets.php:157 606 606 #: includes/admin/class-evf-admin-assets.php:264 … … 608 608 msgstr "" 609 609 610 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:7 59610 #: addons/StyleCustomizer/includes/class-evf-style-customizer-api.php:762 611 611 msgid "ScssPhp: Unable to compile content" 612 612 msgstr "" -
everest-forms/trunk/readme.txt
r3201407 r3201445 308 308 309 309 == Changelog == 310 311 = 3.0.5.2 - 03-12-2024 312 * Enhance - SCSS PHP Compiler Updated. 310 313 311 314 = 3.0.5.1 - 03-12-2024 -
everest-forms/trunk/vendor/autoload.php
r3201407 r3201445 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 6ec5ed695121b5e8c9e8e3d401a2c70a::getLoader();25 return ComposerAutoloaderInit11b556de92789ded0f435d9d0dda273a::getLoader(); -
everest-forms/trunk/vendor/composer/autoload_psr4.php
r3201407 r3201445 7 7 8 8 return array( 9 'ScssPhp\\ScssPhp\\' => array($vendorDir . '/scssphp/scssphp/src'), 9 10 'EverestForms\\Traits\\' => array($baseDir . '/traits'), 10 11 'EverestForms\\Addons\\' => array($baseDir . '/addons'), -
everest-forms/trunk/vendor/composer/autoload_real.php
r3201407 r3201445 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 6ec5ed695121b5e8c9e8e3d401a2c70a5 class ComposerAutoloaderInit11b556de92789ded0f435d9d0dda273a 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 require __DIR__ . '/platform_check.php'; 26 27 spl_autoload_register(array('ComposerAutoloaderInit6ec5ed695121b5e8c9e8e3d401a2c70a', 'loadClassLoader'), true, true); 25 spl_autoload_register(array('ComposerAutoloaderInit11b556de92789ded0f435d9d0dda273a', 'loadClassLoader'), true, true); 28 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 6ec5ed695121b5e8c9e8e3d401a2c70a', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit11b556de92789ded0f435d9d0dda273a', 'loadClassLoader')); 30 28 31 29 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 6ec5ed695121b5e8c9e8e3d401a2c70a::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit11b556de92789ded0f435d9d0dda273a::getInitializer($loader)); 33 31 34 32 $loader->register(true); -
everest-forms/trunk/vendor/composer/autoload_static.php
r3201407 r3201445 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 6ec5ed695121b5e8c9e8e3d401a2c70a7 class ComposerStaticInit11b556de92789ded0f435d9d0dda273a 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( 10 'S' => 11 array ( 12 'ScssPhp\\ScssPhp\\' => 16, 13 ), 10 14 'E' => 11 15 array ( … … 20 24 21 25 public static $prefixDirsPsr4 = array ( 26 'ScssPhp\\ScssPhp\\' => 27 array ( 28 0 => __DIR__ . '/..' . '/scssphp/scssphp/src', 29 ), 22 30 'EverestForms\\Traits\\' => 23 31 array ( … … 41 49 { 42 50 return \Closure::bind(function () use ($loader) { 43 $loader->prefixLengthsPsr4 = ComposerStaticInit 6ec5ed695121b5e8c9e8e3d401a2c70a::$prefixLengthsPsr4;44 $loader->prefixDirsPsr4 = ComposerStaticInit 6ec5ed695121b5e8c9e8e3d401a2c70a::$prefixDirsPsr4;45 $loader->classMap = ComposerStaticInit 6ec5ed695121b5e8c9e8e3d401a2c70a::$classMap;51 $loader->prefixLengthsPsr4 = ComposerStaticInit11b556de92789ded0f435d9d0dda273a::$prefixLengthsPsr4; 52 $loader->prefixDirsPsr4 = ComposerStaticInit11b556de92789ded0f435d9d0dda273a::$prefixDirsPsr4; 53 $loader->classMap = ComposerStaticInit11b556de92789ded0f435d9d0dda273a::$classMap; 46 54 47 55 }, null, ClassLoader::class); -
everest-forms/trunk/vendor/composer/installed.json
r3201407 r3201445 146 146 ], 147 147 "install-path": "./installers" 148 }, 149 { 150 "name": "scssphp/scssphp", 151 "version": "v1.13.0", 152 "version_normalized": "1.13.0.0", 153 "source": { 154 "type": "git", 155 "url": "https://github.com/scssphp/scssphp.git", 156 "reference": "63d1157457e5554edf00b0c1fabab4c1511d2520" 157 }, 158 "dist": { 159 "type": "zip", 160 "url": "https://api.github.com/repos/scssphp/scssphp/zipball/63d1157457e5554edf00b0c1fabab4c1511d2520", 161 "reference": "63d1157457e5554edf00b0c1fabab4c1511d2520", 162 "shasum": "" 163 }, 164 "require": { 165 "ext-ctype": "*", 166 "ext-json": "*", 167 "php": ">=5.6.0" 168 }, 169 "require-dev": { 170 "bamarni/composer-bin-plugin": "^1.4", 171 "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.3 || ^9.4", 172 "sass/sass-spec": "*", 173 "squizlabs/php_codesniffer": "~3.5", 174 "symfony/phpunit-bridge": "^5.1", 175 "thoughtbot/bourbon": "^7.0", 176 "twbs/bootstrap": "~5.0", 177 "twbs/bootstrap4": "4.6.1", 178 "zurb/foundation": "~6.7.0" 179 }, 180 "suggest": { 181 "ext-iconv": "Can be used as fallback when ext-mbstring is not available", 182 "ext-mbstring": "For best performance, mbstring should be installed as it is faster than ext-iconv" 183 }, 184 "time": "2024-08-17T21:02:11+00:00", 185 "bin": [ 186 "bin/pscss" 187 ], 188 "type": "library", 189 "extra": { 190 "bamarni-bin": { 191 "forward-command": false, 192 "bin-links": false 193 } 194 }, 195 "installation-source": "dist", 196 "autoload": { 197 "psr-4": { 198 "ScssPhp\\ScssPhp\\": "src/" 199 } 200 }, 201 "notification-url": "https://packagist.org/downloads/", 202 "license": [ 203 "MIT" 204 ], 205 "authors": [ 206 { 207 "name": "Anthon Pang", 208 "email": "apang@softwaredevelopment.ca", 209 "homepage": "https://github.com/robocoder" 210 }, 211 { 212 "name": "Cédric Morin", 213 "email": "cedric@yterium.com", 214 "homepage": "https://github.com/Cerdic" 215 } 216 ], 217 "description": "scssphp is a compiler for SCSS written in PHP.", 218 "homepage": "http://scssphp.github.io/scssphp/", 219 "keywords": [ 220 "css", 221 "less", 222 "sass", 223 "scss", 224 "stylesheet" 225 ], 226 "support": { 227 "issues": "https://github.com/scssphp/scssphp/issues", 228 "source": "https://github.com/scssphp/scssphp/tree/v1.13.0" 229 }, 230 "install-path": "../scssphp/scssphp" 148 231 } 149 232 ], -
everest-forms/trunk/vendor/composer/installed.php
r3201407 r3201445 4 4 'pretty_version' => 'dev-develop', 5 5 'version' => 'dev-develop', 6 'reference' => ' fb94d415eb7ddbbd94efa1b488678aefc21a1656',6 'reference' => 'ca40145ba55c72a74bf8ba80f3dcf155986f0d4a', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 20 20 'dev_requirement' => false, 21 21 ), 22 'scssphp/scssphp' => array( 23 'pretty_version' => 'v1.13.0', 24 'version' => '1.13.0.0', 25 'reference' => '63d1157457e5554edf00b0c1fabab4c1511d2520', 26 'type' => 'library', 27 'install_path' => __DIR__ . '/../scssphp/scssphp', 28 'aliases' => array(), 29 'dev_requirement' => false, 30 ), 22 31 'wpeverest/everest-forms' => array( 23 32 'pretty_version' => 'dev-develop', 24 33 'version' => 'dev-develop', 25 'reference' => ' fb94d415eb7ddbbd94efa1b488678aefc21a1656',34 'reference' => 'ca40145ba55c72a74bf8ba80f3dcf155986f0d4a', 26 35 'type' => 'wordpress-plugin', 27 36 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.