Plugin Directory

Changeset 3423828


Ignore:
Timestamp:
12/19/2025 04:27:08 PM (2 months ago)
Author:
analogwp
Message:

Update to version 2.4.0 from GitHub

Location:
analogwp-templates
Files:
12 added
28 edited
1 copied

Legend:

Unmodified
Added
Removed
  • analogwp-templates/tags/2.4.0/analogwp-templates.php

    r3396613 r3423828  
    1111 * Plugin URI:  https://analogwp.com/
    1212 * Description: Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.
    13  * Version:     2.3.6
     13 * Version:     2.4.0
    1414 * Author:      AnalogWP
    1515 * Author URI:  https://analogwp.com/
     
    2020 * Requires PHP: 7.4
    2121 *
    22  * Elementor tested up to: 3.33.2
    23  * Elementor Pro tested up to: 3.33.1
     22 * Elementor tested up to: 3.33.6
     23 * Elementor Pro tested up to: 3.33.2
    2424 */
    2525
     
    2929define( 'ANG_PHP_MINIMUM', '7.4' );
    3030define( 'ANG_WP_MINIMUM', '6.0' );
    31 define( 'ANG_VERSION', '2.3.6' );
     31define( 'ANG_VERSION', '2.4.0' );
    3232define( 'ANG_PLUGIN_FILE', __FILE__ );
    3333define( 'ANG_PLUGIN_URL', plugin_dir_url( ANG_PLUGIN_FILE ) );
     
    118118    $message .= sprintf(
    119119        '<a href="%s" class="button-secondary" style="margin-left:10px">%s</a>',
    120         wp_nonce_url( admin_url( 'admin-post.php?action=ang_rollback&version=' . $versions[0] ), 'ang_rollback' ),
     120        wp_nonce_url( admin_url( 'admin-post.php?action=analog_style_kits_rollback&version=' . $versions[0] ), 'analog_style_kits_rollback' ),
    121121        /* translators: %s: Version number. */
    122122        sprintf( __( 'Rollback to v%s', 'ang' ), $versions[0] )
     
    124124    $message .= '</p>';
    125125
    126     echo '<div class="error"><p>' . $message . '</p></div>'; // @codingStandardsIgnoreLine
     126    echo '<div class="error"><p>' . $message . '</p></div>'; // phpcs:ignore
    127127}
    128128
  • analogwp-templates/tags/2.4.0/assets/js/admin-settings.js

    r3396613 r3423828  
    100100
    101101            $.post(
    102                 'https://analogwp.com/?ang-api=sk_bfcm_discount_code',
     102                'https://analogwp.com/?ang-api=pro_discount_code',
    103103                {
    104104                    email: email,
    105105                    first_name: JSON.stringify( fname ),
    106106                    last_name: JSON.stringify( lname ),
     107                    slug: 'style-kits',
    107108                }
    108109            ).done( function( res ) {
  • analogwp-templates/tags/2.4.0/inc/Plugin.php

    r3196348 r3423828  
    33 * Class Analog\Plugin.
    44 *
    5  * @copyright 2024 SmallTownDev
     5 * @copyright SmallTownDev
    66 * @package Analog
    77 */
     
    99namespace Analog;
    1010
     11use Analog\Featuresets\Register_Featuresets as Featuresets;
    1112use Analog\Admin\Notices;
    1213use Analog\Elementor\Google_Fonts;
     
    7172
    7273        add_action( 'admin_bar_menu', array( self::$instance, 'add_kit_to_menu_bar' ), 400 );
     74
     75        // Register Featuresets.
     76        Featuresets::get_instance();
    7377
    7478        ( new Consumer() )->register();
     
    117121            'analog/app/strings',
    118122            array(
    119                 'is_settings_page'  => 'toplevel_page_analogwp_templates' === $hook,
    120                 'rollback_url'      => wp_nonce_url( admin_url( 'admin-post.php?action=ang_rollback&version=VERSION' ), 'ang_rollback' ),
    121                 'rollback_versions' => Utils::get_rollback_versions(),
     123                'is_settings_page' => 'toplevel_page_analogwp_templates' === $hook,
    122124            )
    123125        );
     
    239241        require_once ANG_PLUGIN_DIR . 'inc/register-settings.php';
    240242        require_once ANG_PLUGIN_DIR . 'inc/settings-helpers.php';
     243        require_once ANG_PLUGIN_DIR . 'inc/Featuresets/class-register-featuresets.php';
    241244        require_once ANG_PLUGIN_DIR . 'inc/class-base.php';
    242245        require_once ANG_PLUGIN_DIR . 'inc/class-import-image.php';
     
    294297     */
    295298    public function add_kit_to_menu_bar( \WP_Admin_Bar $wp_admin_bar ) {
    296         if ( ! defined( 'WP_DEBUG' ) || ! WP_DEBUG  ) {
     299        if ( ! defined( 'WP_DEBUG' ) || ! WP_DEBUG ) {
    297300            return;
    298301        }
     
    308311
    309312        $parent = 'style_kits';
    310         $wp_admin_bar->add_menu( array(
    311             'id'     => $parent,
    312             'parent' => 'elementor_inspector',
    313             'title'  => 'Style Kit',
    314         ) );
    315 
    316         $wp_admin_bar->add_menu( array(
    317             'id'     => 'style_kits_kit',
    318             'parent' => $parent,
    319             'title'  => 'Kit: ' . $title,
    320         ) );
     313        $wp_admin_bar->add_menu(
     314            array(
     315                'id'     => $parent,
     316                'parent' => 'elementor_inspector',
     317                'title'  => 'Style Kit',
     318            )
     319        );
     320
     321        $wp_admin_bar->add_menu(
     322            array(
     323                'id'     => 'style_kits_kit',
     324                'parent' => $parent,
     325                'title'  => 'Kit: ' . $title,
     326            )
     327        );
    321328    }
    322329
     
    349356     */
    350357    public static function instance() {
    351         return static::$instance;
     358        return self::$instance;
    352359    }
    353360
     
    361368     */
    362369    public static function load( $main_file ) {
    363         if ( null !== static::$instance ) {
     370        if ( null !== self::$instance ) {
    364371            return false;
    365372        }
    366373
    367         static::$instance = new static( $main_file );
    368         static::$instance->register();
     374        self::$instance = new self( $main_file );
     375        self::$instance->register();
    369376
    370377        do_action( 'ang_loaded' );
  • analogwp-templates/tags/2.4.0/inc/Utils.php

    r3309279 r3423828  
    330330
    331331    /**
    332      * Get valid rollback versions.
    333      *
    334      * @since 1.3.7
    335      * @return array|mixed
    336      */
    337     public static function get_rollback_versions() {
    338         $rollback_versions = get_transient( 'ang_rollback_versions_' . ANG_VERSION );
    339 
    340         if ( false === $rollback_versions ) {
    341             $max_versions = 30;
    342 
    343             require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
    344 
    345             $plugin_information = plugins_api(
    346                 'plugin_information',
    347                 array( 'slug' => 'analogwp-templates' )
    348             );
    349 
    350             if ( empty( $plugin_information->versions ) || ! is_array( $plugin_information->versions ) ) {
    351                 return array();
    352             }
    353 
    354             krsort( $plugin_information->versions, SORT_NATURAL );
    355 
    356             $rollback_versions = array();
    357 
    358             $current_index = 0;
    359 
    360             foreach ( $plugin_information->versions as $version => $download_link ) {
    361                 if ( $max_versions <= $current_index ) {
    362                     break;
    363                 }
    364 
    365                 if ( preg_match( '/(trunk|beta|rc)/i', strtolower( $version ) ) ) {
    366                     continue;
    367                 }
    368 
    369                 if ( version_compare( $version, ANG_VERSION, '>=' ) ) {
    370                     continue;
    371                 }
    372 
    373                 $current_index++;
    374                 $rollback_versions[] = $version;
    375             }
    376 
    377             set_transient( 'ang_rollback_versions_' . ANG_VERSION, $rollback_versions, WEEK_IN_SECONDS );
    378         }
    379 
    380         return $rollback_versions;
    381     }
    382 
    383     /**
    384332     * Convert string to boolean.
    385333     *
     
    395343        array_walk_recursive(
    396344            $data,
    397             function( &$value, $key ) {
     345            function ( &$value, $key ) {
    398346                if ( 'isInner' === $key || 'isLinked' === $key ) {
    399347                    $value = (bool) $value;
     
    426374        return array_filter(
    427375            $settings,
    428             function( $key ) use ( $allowed ) {
     376            function ( $key ) use ( $allowed ) {
    429377                foreach ( $allowed as $allow ) {
    430378                    if ( strpos( $key, $allow ) === 0 ) {
  • analogwp-templates/tags/2.4.0/inc/class-admin-settings.php

    r3191879 r3423828  
    4747            $settings = array();
    4848
    49             include_once dirname( __FILE__ ) . '/settings/class-settings-page.php';
     49            include_once __DIR__ . '/settings/class-settings-page.php';
    5050
    5151            $settings[] = include 'settings/class-settings-general.php';
     
    131131            'ang_settings',
    132132            'ang_settings_data',
    133             array(
    134                 'i18n_nav_warning'          => __( 'The changes you made will be lost if you navigate away from this page.', 'ang' ),
    135                 'rollback_url'              => wp_nonce_url( admin_url( 'admin-post.php?action=ang_rollback&version=VERSION' ), 'ang_rollback' ),
    136                 'rollback_versions'         => Utils::get_rollback_versions(),
    137                 'sitekit_importer_notice'   => __( 'Template Kit file downloaded.', 'ang' ),
    138                 'sitekit_importer_url_text' => __( 'Import it into Elementor', 'ang' ),
    139                 'sitekit_importer_url'      => esc_url( admin_url( 'admin.php?page=elementor-tools#tab-import-export-kit' ) ),
     133            apply_filters(
     134                'ang_settings_data',
     135                array(
     136                    'i18n_nav_warning'          => __( 'The changes you made will be lost if you navigate away from this page.', 'ang' ),
     137                    'sitekit_importer_notice'   => __( 'Template Kit file downloaded.', 'ang' ),
     138                    'sitekit_importer_url_text' => __( 'Import it into Elementor', 'ang' ),
     139                    'sitekit_importer_url'      => esc_url( admin_url( 'admin.php?page=elementor-tools#tab-import-export-kit' ) ),
     140                )
    140141            )
    141142        );
     
    144145        $tabs = apply_filters( 'ang_settings_tabs_array', array() );
    145146
    146         include dirname( __FILE__ ) . '/settings/views/html-admin-settings.php';
     147        include __DIR__ . '/settings/views/html-admin-settings.php';
    147148    }
    148149
     
    486487                                <?php echo implode( ' ', $custom_attributes ); // WPCS: XSS ok. ?>
    487488                                <?php echo 'multiselect' === $value['type'] ? 'multiple="multiple"' : ''; ?>
    488                                 <?php echo $disabled ? ' disabled="true"': ''; ?>
     489                                <?php echo $disabled ? ' disabled="true"' : ''; ?>
    489490                                >
    490491                                <?php
  • analogwp-templates/tags/2.4.0/inc/elementor/class-tools.php

    r2811803 r3423828  
    1212use Analog\Utils;
    1313use Elementor\Core\Base\Document;
    14 use Elementor\Rollback;
    1514use Elementor\TemplateLibrary\Source_Local;
    1615use Elementor\User;
     
    4847     */
    4948    private function add_actions() {
    50         add_action( 'admin_post_ang_rollback', array( $this, 'post_ang_rollback' ) );
    5149        add_filter( 'display_post_states', array( $this, 'stylekit_post_state' ), 20, 2 );
    5250
     
    104102
    105103    /**
    106      * Rollback AnalogWP version.
    107      *
    108      * @return void
    109      * @since 1.2.3
    110      */
    111     public function post_ang_rollback() {
    112         check_admin_referer( 'ang_rollback' );
    113 
    114         if ( defined( 'STYLEKIT_DEBUG' ) || ! current_user_can( 'update_plugins' ) ) {
    115             wp_die( esc_html__( 'Sorry, you are not allowed to rollback Style Kits plugin for this site.', 'ang' ) );
    116         }
    117 
    118         $rollback_versions = Utils::get_rollback_versions();
    119 
    120         $version = filter_input( INPUT_GET, 'version', FILTER_SANITIZE_STRING );
    121 
    122         if ( ! $version || ! in_array( $version, $rollback_versions, true ) ) {
    123             wp_die( esc_html__( 'Error occurred, the version selected is invalid. Try selecting different version.', 'ang' ) );
    124         }
    125 
    126         ?>
    127         <style>
    128             .wrap h1 {
    129                 position: relative;
    130                 padding-top: 140px !important;
    131             }
    132 
    133             .wrap h1:before {
    134                 content: '';
    135                 position: absolute;
    136                 width: 300px;
    137                 height: 65px;
    138                 color: #fff;
    139                 top: 40px;
    140                 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 116 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M65.3219 12.0481C65.3219 15.7023 62.3543 18.6647 58.6935 18.6647C55.0328 18.6647 52.0652 15.7023 52.0652 12.0481C52.0652 8.39391 55.0328 5.43158 58.6935 5.43158C62.3543 5.43158 65.3219 8.39391 65.3219 12.0481Z' %3E%3C/path%3E%3Cpath d='M9.59184 6.29053V7.70526C8.75667 6.51789 7.16224 6.01263 5.7956 6.01263C2.7586 6.01263 0 8.36211 0 12.1516C0 15.9411 2.7586 18.2905 5.7956 18.2905C7.11163 18.2905 8.75667 17.76 9.59184 16.5979V18.0632H12.9072V6.29053H9.59184ZM6.4283 15.2084C4.75796 15.2084 3.366 13.8695 3.366 12.1516C3.366 10.4084 4.75796 9.12 6.4283 9.12C7.97211 9.12 9.49061 10.3326 9.49061 12.1516C9.49061 13.9453 8.04803 15.2084 6.4283 15.2084Z' %3E%3C/path%3E%3Cpath d='M23.113 5.98737C21.9488 5.98737 20.076 6.66947 19.5698 8.26105V6.29053H16.2544V18.0632H19.5698V12.0253C19.5698 9.87789 21.0377 9.24632 22.2272 9.24632C23.3661 9.24632 24.4796 10.08 24.4796 11.9495V18.0632H27.795V11.5958C27.8203 8.05895 26.2006 5.98737 23.113 5.98737Z' %3E%3C/path%3E%3Cpath d='M39.8679 6.29053V7.70526C39.0327 6.51789 37.4383 6.01263 36.0716 6.01263C33.0346 6.01263 30.276 8.36211 30.276 12.1516C30.276 15.9411 33.0346 18.2905 36.0716 18.2905C37.3876 18.2905 39.0327 17.76 39.8679 16.5979V18.0632H43.1832V6.29053H39.8679ZM36.7043 15.2084C35.034 15.2084 33.642 13.8695 33.642 12.1516C33.642 10.4084 35.034 9.12 36.7043 9.12C38.2481 9.12 39.7666 10.3326 39.7666 12.1516C39.7666 13.9453 38.3241 15.2084 36.7043 15.2084Z' %3E%3C/path%3E%3Cpath d='M46.5305 18.0632H49.8458V0H46.5305V18.0632Z' %3E%3C/path%3E%3Cpath d='M58.7973 18.2905C62.1633 18.2905 65.1496 15.8653 65.1496 12.1516C65.1496 8.41263 62.1633 5.98737 58.7973 5.98737C55.4313 5.98737 52.4449 8.41263 52.4449 12.1516C52.4449 15.8653 55.4313 18.2905 58.7973 18.2905ZM58.7973 15.2084C57.1522 15.2084 55.8109 13.9705 55.8109 12.1516C55.8109 10.3074 57.1522 9.06947 58.7973 9.06947C60.4423 9.06947 61.7836 10.3074 61.7836 12.1516C61.7836 13.9705 60.4423 15.2084 58.7973 15.2084Z' %3E%3C/path%3E%3Cpath d='M76.644 6.29053V7.68C75.7835 6.54316 74.189 6.01263 72.8477 6.01263C69.8107 6.01263 67.0521 8.36211 67.0521 12.1516C67.0521 15.9411 69.8107 18.2905 72.8477 18.2905C74.1637 18.2905 75.7835 17.76 76.644 16.6232V16.8C76.644 19.8821 75.3026 21.0442 73.1767 21.0442C71.9113 21.0442 70.6965 20.2863 70.1903 19.2253L67.4317 20.4126C68.4441 22.5853 70.6459 24 73.1767 24C77.3526 24 79.9593 21.6 79.9593 16.4463V6.29053H76.644ZM73.4804 15.2084C71.8101 15.2084 70.4181 13.8695 70.4181 12.1516C70.4181 10.4084 71.8101 9.12 73.4804 9.12C75.0242 9.12 76.5427 10.3326 76.5427 12.1516C76.5427 13.9453 75.1001 15.2084 73.4804 15.2084Z' %3E%3C/path%3E%3Cpath d='M97.6574 6.29053L95.4303 13.4653L93.1779 6.29053H90.3939L88.1415 13.4653L85.9144 6.29053H82.3206L86.623 18.0632H89.4575L91.8112 10.4084L94.2408 18.0632H97.0753L101.251 6.29053H97.6574Z' %3E%3C/path%3E%3Cpath d='M110.204 5.98737C108.863 5.98737 107.243 6.51789 106.408 7.70526V6.29053H103.093V23.8484H106.408V16.5979C107.243 17.7853 108.863 18.2905 110.204 18.2905C113.241 18.2905 116 15.9411 116 12.1516C116 8.36211 113.241 5.98737 110.204 5.98737ZM109.572 15.1832C108.028 15.1832 106.509 13.9705 106.509 12.1516C106.509 10.3579 107.952 9.09474 109.572 9.09474C111.242 9.09474 112.609 10.4337 112.609 12.1516C112.609 13.8947 111.242 15.1832 109.572 15.1832Z' %3E%3C/path%3E%3C/svg%3E");
    141                 background-repeat: no-repeat;
    142                 transform: translate(50%);
    143             }
    144 
    145             .wrap img {
    146                 display: none;
    147             }
    148         </style>
    149         <?php
    150 
    151         $plugin_slug = 'analogwp-templates';
    152         $plugin_name = 'analogwp-templates/analogwp-templates.php';
    153 
    154         $rollback = new Rollback(
    155             array(
    156                 'version'     => $version,
    157                 'plugin_name' => $plugin_name,
    158                 'plugin_slug' => $plugin_slug,
    159                 'package_url' => sprintf( 'https://downloads.wordpress.org/plugin/%s.%s.zip', $plugin_slug, $version ),
    160             )
    161         );
    162 
    163         $rollback->run();
    164 
    165         wp_die(
    166             '',
    167             esc_html__( 'Rollback to Previous Version', 'ang' ),
    168             array(
    169                 'response' => 200,
    170             )
    171         );
    172     }
    173 
    174     /**
    175104     * Fetch a post.
    176105     *
  • analogwp-templates/tags/2.4.0/inc/register-settings.php

    r3191879 r3423828  
    6262        'Analog\Elementor\Kit\ang_kits_list'
    6363    );
    64 
    65     // Hidden instances menu. Maybe delete later if not needed.
    66     //  add_submenu_page(
    67     //      $menu_slug,
    68     //      __( 'Instances', 'ang' ),
    69     //      __( 'Instances List', 'ang' ),
    70     //      'manage_options',
    71     //      'ang-instance-list',
    72     //      'Analog\Elementor\Kit\ang_instance_list'
    73     //  );
    7464
    7565    if ( ! defined( 'ANG_PRO_VERSION' ) ) {
     
    191181    }
    192182    // Include settings so that we can run through defaults.
    193     include_once dirname( __FILE__ ) . '/class-admin-settings.php';
     183    include_once __DIR__ . '/class-admin-settings.php';
    194184
    195185    $settings = array_filter( Admin_Settings::get_settings_pages() );
     
    223213
    224214    if ( $options->get( 'ang_license_key' ) && class_exists( LicenseManager::class ) && ! method_exists( LicenseManager::class, 'get_freemius_product_query_data' ) ) {
    225         $message = sprintf( '<strong>%1$s</strong> %2$s <a href="mailto:%3$s">%3$s</a> %4$s',
     215        $message = sprintf(
     216            '<strong>%1$s</strong> %2$s <a href="mailto:%3$s">%3$s</a> %4$s',
    226217            esc_html__( 'Style Kits is switching to a new experience for our Pro plugin,', 'ang-pro' ),
    227             esc_html__('that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at', 'ang' ),
     218            esc_html__( 'that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at', 'ang' ),
    228219            esc_html( '[email protected]' ),
    229220            esc_html__( 'or click on Contact Us link available in the left plugin menu, include your license key and we will provide a discount as per the license for a smooth transition.', 'ang-pro' )
    230221        );
    231         $html_message = sprintf('<div class="error">%s</div>', wpautop($message));
     222        $html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) );
    232223
    233224        echo wp_kses_post( $html_message );
     
    249240                'id'    => 'ang_freemius_license_switch_notice',
    250241                'title' => __( 'Experience the all new Style Kits Pro', 'ang-pro' ),
    251                 'desc'  => sprintf( '<strong>%1$s</strong> %2$s <a href="mailto:%3$s">%3$s</a> %4$s <br/><br/> %5$s',
     242                'desc'  => sprintf(
     243                    '<strong>%1$s</strong> %2$s <a href="mailto:%3$s">%3$s</a> %4$s <br/><br/> %5$s',
    252244                    esc_html__( 'Style Kits is switching to a new experience for our Pro plugin,', 'ang-pro' ),
    253                     esc_html__('that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at', 'ang' ),
     245                    esc_html__( 'that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at', 'ang' ),
    254246                    esc_html( '[email protected]' ),
    255247                    esc_html__( 'or click on Contact Us link available in the left plugin menu, include your license key and we will provide a discount as per the license for a smooth transition.', 'ang-pro' ),
    256248                    esc_html__( 'Please also know that coming future updates are now moved to this new licensing system and once you migrate to it everything else will work as is and better while with this switch we are working hard to bring you a more fine-tuned experience and all the more support for latest of Elementor.', 'ang-pro' )
    257                 )
     249                ),
    258250            ),
    259251            array(
     
    265257    );
    266258
    267 
    268259    return $settings;
    269260}
  • analogwp-templates/tags/2.4.0/inc/settings/class-settings-version-control.php

    r2391944 r3423828  
    99namespace Analog\Settings;
    1010
    11 use Analog\Utils;
     11use Analog\Featuresets\Rollback\Init as Rollback;
    1212
    1313defined( 'ABSPATH' ) || exit;
     
    2525        $this->label = __( 'Version Control', 'ang' );
    2626        parent::__construct();
    27 
    2827    }
    2928
     
    9796     * Get recent rollback versions in key/value pair.
    9897     *
    99      * @uses \Analog\Utils::get_rollback_versions()
     98     * @uses \Analog\Featuresets\Rollback\Init::get_rollback_versions()
    10099     * @return array
    101100     */
    102101    public function get_rollback_versions() {
    103         $keys = Utils::get_rollback_versions();
     102        $keys = Rollback::get_rollback_versions();
    104103        $data = array();
    105104        foreach ( $keys as $key => $value ) {
  • analogwp-templates/tags/2.4.0/inc/settings/views/html-admin-settings.php

    r3396613 r3423828  
    8787            <?php if ( ! class_exists( '\AnalogPro\Plugin' ) ) : ?>
    8888            <div class="upgrade-box special">
    89                 <h3>Upgrade to Style Kits Pro with<br/>80% discount in a Lifetime Deal</h3>
     89                <h3>🔥 Upgrade to Style Kits PRO with a Special Discount</h3>
    9090
    91                 <p>Black Friday + Cyber Monday Special!<br/>We have <b>already applied 50% discount sitewide</b>—enter your email to <b>get an extra 30% code on top</b>. Limited-time offer!</p>
     91                <p>Get additional features like <strong>Global Design Features, Libraries of Patterns and Style Kits, Role-Based Access Controls, Priority Support and so much more</strong> while helping us support its development and maintenance.</p>
    9292
    9393                <form id="js-ang-request-discount" method="post">
  • analogwp-templates/tags/2.4.0/languages/ang-analogwp-app.json

    r3309279 r3423828  
    1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages"},"Style Kits for Elementor":[""],"https://analogwp.com/":[""],"Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.":[""],"AnalogWP":[""],"Style Kit for Elementor requires PHP version %s":[""],"Error Activating":[""],"Style Kits requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.":[""],"Style Kits requires Elementor v%s or newer in order to work. Please update Elementor to the latest version.":[""],"Update Elementor Now":[""],"Rollback to v%s":[""],"Style Kits is not working because you need to activate the Elementor plugin.":[""],"Activate Elementor Now":[""],"Style Kits is not working because you need to install the Elementor plugin.":[""],"Install Elementor Now":[""],"Enjoyed %1$s? Please leave us a %2$s rating. We really appreciate your support!":[""],"View Documentation":[""],"Documentation":[""],"Get Support":[""],"Style Kits for Elementor Logo":[""],"Invalid or expired license provided.":[""],"No options key provided.":[""],"Setting updated.":[""],"Invalid param(s).":[""],"Please provide a title.":[""],"Unable to create a Kit":[""],"The new Theme Style Kit has been saved and applied on this page.":[""],"Please provide a valid post ID.":[""],"Invalid Post ID":[""],"Invalid Style Kit ID.":[""],"Invalid license provided.":[""],"Invalid token data returned":[""],"Invalid Block ID.":[""],"Your settings have been saved.":[""],"The changes you made will be lost if you navigate away from this page.":[""],"Template Kit file downloaded.":[""],"Import it into Elementor":[""],"Toggle":[""],"Refresh":[""],"Something went wrong.":[""],"Once Weekly":[""],"AnalogWP Classes":[""],"Welcome to Style Kits":[""],"Working...":[""],"Install and Activate Elementor":[""],"This will install and activate Elementor from the WordPress repository":[""],"Elementor is installed and activated":[""],"Failed to install and activate Elementor":[""],"Enable Elementor container feature":[""],"The latest Style Kits version works best with flexbox containers. We will enable the Containers feature in Elementor.":[""],"Container feature is now active":[""],"Failed to activate Elementor container experiment":[""],"Disable Elementor default colors and fonts":[""],"For Global Styles to work properly, Elementor default fonts and colors need to be disabled":[""],"Elementor default colors and fonts are disabled":[""],"Failed to disable Elementor default colors and fonts":[""],"Install and activate Hello Elementor Theme":[""],"Style Kits works best with Elementor Hello theme. This will replace your currently active theme":[""],"Hello Elementor theme is installed and activated":[""],"Failed to install and activate Hello Elementor":[""],"Import a starter theme style preset":[""],"Use a basic Style Kit as your starting point. This will replace your site’s default kit but you can always revert back to it later.":[""],"A theme style preset \"Style Kit: Base\" has been imported":[""],"Failed to import a kit":[""],"Docs":[""],"Setup Elementor properly for a seamless Style Kits Experience.":[""],"Learn more":[""],"Looks like you have everything in place.":[""],"Skip wizard":[""],"Apply":[""],"Go to Dashboard":[""],"Open a new template":[""],"Style Kit: Test Page":[""],"Oops, something went wrong at action: ":[""],"Style Kit":[""],"Hey! You have been using %1$s for over 2 weeks, we hope you enjoy it! If so, please leave a positive %2$s.":[""],"review on WordPress.org":[""],"Unable to sanitize this file hence it wasn't uploaded!":[""],"Full Size":[""],"Thumbnail":[""],"Medium":[""],"Large":[""],"This will clean-up all the values from the current Theme Style kit. If you need to revert, you can do so at the Revisions tab.":[""],"Are you sure?":[""],"Clone Style Kit":[""],"Save":[""],"Cancel":[""],"Style Kit name":[""],"Insert Style Kit":[""],"Please select a Style Kit first.":[""],"— Select a Style Kit —":[""],"Style Kit Updated.":[""],"Update Style Kit":[""],"This action will update the Style Kit with the latest changes, and will affect all the pages that the style kit is used on. Do you wish to proceed?":[""],"Meet Style Kits for Elementor":[""],"Take control of your design in the macro level, with local or global settings for typography and spacing. %s.":[""],"View Styles":[""],"Style Kits":[""],"Export CSS":[""],"Copy CSS":[""],"CSS copied":[""],"Style Kit Update Detected":[""],"<p>The Style kit used by this page has been updated, click ‘Apply Changes’ to apply the latest changes.</p><p>Click Discard to keep your current page styles and detach the page from the Style Kit</p>":[""],"Discard":[""],"Apply Changes":[""],"Ok, got it.":[""],"Go to Page Style":[""],"This template offers global typography and spacing control, through the Page Style tab.":[""],"Typography, column gaps and more, are controlled layout-wide at Page Styles Panel, giving you the flexibility you need over the design of this template. You can save the styles and apply them to any other page. <a href=\"#\" target=\"_blank\">Learn More.</a>":[""],"CSS Variables":[""],"Remove Page ID from the CSS":[""],"This will revert the color palette and the color labels to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the global font labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the container preset labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the box shadow presets to their defaults. You can undo this action from the revisions tab.":[""],"All good. The new Style Kit has been applied on this page!":[""],"Switch Style Kit":[""],"Back to Editor":[""],"Set the accent colors of your layout.":[""],"Learn more.":[""],"The primary accent color applies on links, icons, and other elements. You can also define the text link color in the Typography panel.":[""],"Primary Accent":[""],"The default button color. You can also define button colors under the Buttons panel, and individually for each button size under Buttons Sizes panel.":[""],"Secondary Accent":[""],"Style Kit Colors":[""],"The Style Kit's color palette.":[""],"Read more":[""],"1-16":[""],"Site background":[""],"Light background":[""],"Dark background":[""],"Background 4":[""],"Accent 1":[""],"Accent 2":[""],"Accent 3":[""],"Accent 4":[""],"Titles":[""],"Normal text":[""],"Secondary text":[""],"Inverted text":[""],"Border":[""],"Color Style 14":[""],"Color Style 15":[""],"Color Style 16":[""],"Reset labels & colors":[""],"Reset":[""],"Style Kits for Elementor Shortcuts":[""],"Templates Library":[""],"Settings":[""],"Theme Style Kits":[""],"Add New Style Kit":[""],"New Style Kit":[""],"Edit Style Kit":[""],"View Style Kit":[""],"Search Style Kits":[""],"Parent Style Kits:":[""],"No Style Kit found.":[""],"No Style Kit found in Trash.":[""],"Sorry, you are not allowed to rollback Style Kits plugin for this site.":[""],"Error occurred, the version selected is invalid. Try selecting different version.":[""],"Rollback to Previous Version":[""],"Style Kit: %s <span style=\"color:#5C32B6;\">&#9679;</span>":[""],"Apply Global Style Kit":[""],"Headings Typography":[""],"These settings apply to all Headings in your layout. You can still override individual values at each element.":[""],"Heading %s":[""],"Body Typography":[""],"Recently Imported":[""],"Typographic Sizes":[""],"Heading Sizes":[""],"Edit the available sizes for the Heading Element.":[""],"XXL":[""],"XL":[""],"Small":[""],"Heading":[""],"Text Sizes":[""],"Edit the available sizes for the p, span, and div tags of the Heading Element.":[""],"Text":[""],"Container Spacing":[""],"The default container padding is set in Elementor Theme Styles > Layout Settings > ":[""],"Container padding":[""],"Create additional spacing presets.":[""],"No Padding Styles":[""],"1-8":[""],"XXL - Hero Section":[""],"XL - Primary Section":[""],"Large - Box":[""],"Medium - Box":[""],"Small - Box":[""],"Padding 6":[""],"Padding 7":[""],"Padding 8":[""],"Reset labels and values to default":[""],"Create additional spacing presets in ":[""],"Default":[""],"Normal":[""],"Extra Large":[""],"Outer Section Padding":[""],"Add padding to the outer sections of your layouts by using these controls.":[""],"Default Padding":[""],"Narrow Padding":[""],"Extended Padding":[""],"Wide Padding":[""],"Wider Padding":[""],"Column Gaps":[""],"Column Gap presets add padding to the columns of a section.":[""],"Space Between Widgets":[""],"Sets the default space between widgets, overrides the default value set in Elementor > Style > Space Between Widgets.":[""],"Button Sizes":[""],"Define the default styles for every button size.":[""],"XS":[""],"S":[""],"M":[""],"L":[""],"Typography":[""],"Normal Styling":[""],"Text Color":[""],"Background Color":[""],"Border Radius":[""],"Hover Styling":[""],"Padding":[""],"Select a different Style Kit to be applied on this page. The page will reload after your selection.":[""],"Select Style Kit":[""],"This will override your site's Global Style Kit for this page.":[""],"Page Style Kit":[""],"Set your Global Style Kit here":[""],"Manage Style Kit":[""],"This will reset the Theme Style Kit and clean up any values.":[""],"Reset Theme Style Kit":[""],"Save the current styles as a different Theme Style Kit. You can then apply it on other pages, or globally.":[""],"Clone":[""],"Export Theme Style Kit CSS":[""],"Export":[""],"No Padding":[""],"Spacing Preset":[""],"Edit in Style Kits":[""],"None":[""],"Light Background":[""],"Accent Background":[""],"Background presets":[""],"Headings":[""],"Headings Color":[""],"Headings Font":[""],"You can set individual heading font and colors below.":[""],"Style Kit Fonts":[""],"The Style Kit's typographic styles.":[""],"Display title":[""],"Title 1":[""],"Title 2":[""],"Title 3":[""],"Title 4":[""],"Title 5":[""],"Title 6":[""],"Overline / Subheader":[""],"Display text":[""],"Large text":[""],"Small text":[""],"Caption":[""],"Button text":[""],"Form label":[""],"Font Style 16":[""],"Reset labels & fonts":[""],"Shadows":[""],"Add global shadow presets by using these controls.":[""],"Shadow 1":[""],"Shadow 2":[""],"Shadow 3":[""],"Shadow 4":[""],"Shadow 5":[""],"Shadow 6":[""],"Shadow 7":[""],"Shadow 8":[""],"Reset to default":[""],"Box Shadow Preset":[""],"No posts found.":[""],"%s ago":[""],"Published":[""],"Title":[""],"Type":[""],"Kit":[""],"Author":[""],"Date":[""],"%s (Edit)":[""],"Edit":[""],"Trash":[""],"View":[""],"Edit with Elementor":[""],"Move to Trash":[""],"Filter by Style Kit":[""],"Filter":[""],"Instance List":[""],"No Kits found.":[""],"Entire Site":[""],"Instances":[""],"Draft":[""],"Global Style Kit":[""],"Export Theme Style Kit":[""],"Local Style Kits":[""],"Choose an Elementor template JSON file or a .zip archive of Elementor templates, and add them to the list of templates available in your library.":[""],"Import Now":[""],"A list of all the imported and custom Style Kits. A global Style Kit is the one that applies globally on your site. You can set a Global Style Kit below.":[""],"Error occured while requesting Style Kit data.":[""],"Style Kit imported":[""],"All good! The Style Kit has been set as Global.":[""],"View site":[""],"Are you sure you want to delete this Style Kit?":[""],"By removing this template you will delete the entire Style Kit, and all the related global style settings.":[""],"Delete Style Kit":[""],"Layout Tools":[""],"Handy tools to clean inline styles from your existing layouts and make them global-design-ready. Highlight elements that have Classes or custom CSS.":[""],"Advanced Form Controls":[""],"Offers controls to customize form column/rows gap, label spacing, and form messages colors.":[""],"Go Pro":[""],"Learn More":[""],"Accent":[""],"Accent Background Color":[""],"Enjoy better background color control in your layouts by adding a third background color class. Available in Style Kits Pro.":[""],"9-16":[""],"Extend your container spacing system with more variables, plus many more features with Style Kits Pro.":[""],"17-24":[""],"17-32":[""],"Extend your color system with more variables, plus many more features with Style Kits Pro.":[""],"33-48":[""],"Extend your typography system with more variables, plus many more features with Style Kits Pro.":[""],"Extend your shadows system with more variables, plus many more features with Style Kits Pro.":[""],"Light":[""],"Add the class <strong>sk-light-bg</strong> to a section or column to apply these colors.":[""],"Dark":[""],"Add the class <strong>sk-dark-bg</strong> to a section or column to apply these colors.":[""],"Dark Background":[""],"Style Kits Library":[""],"Library":[""],"Style Kits Settings":[""],"that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at":[""],"Experiments":[""],"Active":[""],"Inactive":[""],"Style Kits Experiments":[""],"Below you can activate experimental features for Style Kits and Style Kits Pro. We suggest you to turn on backups while using these experiments. %s about how this works.":[""],"Container-based Library":[""],"Get access to the container-based library of Patterns. You need to have the Containers Feature activated in Elementor, to test the new library.":[""],"Extensions":[""],"General":[""],"Starter Kit":[""],"Always import templates using the Global Style Kit. %s":[""],"This option is now in %s page.":[""],"Helps importing SVGs in templates. %s":[""],"Hide legacy features from the Style Kit panel. %s":[""],"Trigger the setup wizard manually":[""],"Restart wizard":[""],"Download Starter Kit":[""],"Download ZIP":[""],"View Demo":[""],"Style Kits Pro":[""],"Misc":[""],"Show Global Kit Data":[""],"Global Colors and Fonts that belong to the Global Style Kit will still be available when working with other Style Kits.":[""],"More Info":[""],"Usage Data Tracking":[""],"Opt-in to our anonymous plugin data collection and to updates":[""],"We guarantee no sensitive data is collected. ":[""],"Remove Data on Uninstall":[""],"Check this box to remove all data stored by Style Kit for Elementor plugin, including license info, user settings, import history etc. Any imported or manually saved Style Kits are not removed.":[""],"Version Control":[""],"Rollback Versions":[""],"If you are having issues with current version of Style Kits for Elementor, you can rollback to a previous stable version.":[""],"Rollback Style Kits":[""],"Reinstall this version":[""],"Beta Features":[""],"Become a beta tester":[""],"Check this box to turn on beta updates for Style Kits and Style Kits Pro. The update will not be installed automatically, you always have the option to ignore it.":[""],"Transform your design workflow in Elementor with Style Kits PRO":[""],"Unlimited access to the container-based pattern library":[""],"Unlimited access to the entire collection of Global theme style presets":[""],"Unlock up to 48 Global Style Kit Fonts and Colors":[""],"Unlock up to 24 container spacing  presets":[""],"Hide any Style Kit reference from your clients, based on user roles":[""],"Style Kits front-end switcher":[""],"Selectively de-activate Style Kits Panels from the site settings sidebar":[""],".. and much more.":[""],"Explore Style Kits Pro":[""],"Now available with Lifetime plans for a limited time! ":[""],"Save changes":[""],"Meet Custom Library for Elementor":[""],"Upgrade to Style Kits Pro with a 15% discount":[""],"Your Email":[""],"First Name":[""],"Send me the coupon":[""],"By submitting your details, you agree to our %s.":[""],"privacy policy":[""],"Need help with Style Kits?":[""],"Visit the online docs":[""],"Welcome to Style Kits 1.9.5. This version includes a brand new container-based pattern library, and a lot of other improvements.":[""],"See what’s new.":[""],"The New version of Style Kits introduces a setup wizard. You can trigger it at any time under Style Kits Settings.":[""],"Global: %s":[""],"Template":[""],"Block":[""],"Add Style Kits":[""],"The %s has been imported and is now available in the":[""],"Elementor %s library":[""],"Ok, thanks":[""],"No patterns found":[""],"No blocks found":[""],"Loading Patterns...":[""],"Loading Blocks...":[""],"Pro":[""],"Import":[""],"Search Patterns":[""],"Search Blocks":[""],"Show Pro Patterns":[""],"Show Pro Blocks":[""],"View Templates":[""],"All template types":[""],"Newest first":[""],"Popular":[""],"Both Free and Pro":[""],"Free":[""],"Template Kit":[""],"Back to all Kits":[""],"Back to all":[""],"Favorites":[""],"Search templates...":[""],"Exit preview":[""],"Open in new tab":[""],"Import Template":[""],"Back to Library":[""],"Loading icon":[""],"Patterns":[""],"Blocks":[""],"Templates":[""],"Styles":[""],"Import template":[""],"Global":[""],"Installed":[""],"Learn more about this in %s.":[""],"Style Kits Docs":[""],"The Global Style Kit will be applied on this template":[""],"Choose a Theme Style Kit to apply on the page.":[""],"%1$s":[""],"The original Style Kit is pre-selected for you.":[""],"Choose a Style Kit...":[""],"You can change the default import method at the ":[""],"Settings Page":[""],"You can manage and set a Global Style Kit at the ":[""],"Import the template in the current page.":[""],"Import to current page":[""],"Import this template to your library to make it available in your Elementor ":[""],"Saved Templates":[""]," list for future use.":[""],"Import to Library":[""],"Import to a new page":[""],"Create a new page from this template to make it available as a draft page in your Pages list.":[""],"Enter a Page Name":[""],"Import to page":[""],"All done! The template has been imported.":[""],"Get unlimited access to the Style Kits library and features with the PRO version.":[""],"View Plans":[""],"%s <span class=\"footer-text\">in WordPress dashboard.</span>":[""],"Manage your Style Kits":[""]," Imported!":[""],"Style Kits are ready-made configurations of theme styles. When you import a Style Kit, it will be available in the":[""],"page":[""],"You will then be able apply it globally, or on any page.":[""],"Import Style Kit":[""],"Preview":[""],"A Style Kit named ":[""]," already exists in your website. To import it again please use a different name.":[""],"Please try a different as a Style Kit with same name already exists.":[""],"Enter a Style Kit Name":[""]," has been successfully imported. You can now find it in the ":[""],"Stay on this page":[""],"View local Style Kits":[""],"Importing ":[""],"Library is now synced":[""],"Something is not right, please try again.":[""],"Syncing...":[""],"Sync Library":[""],"Close":[""],"New":[""],"This template requires an updated version, please update your plugin to latest version.":[""],"Section Title\u0004Accent Colors":[""],"Section Title\u0004Layout Tools":[""],"Section Title\u0004Elementor Forms":[""],"Section Title\u0004Background Color Classes":[""],"admin menu\u0004Style Kits":[""],"add new on admin bar\u0004Style Kit":[""],"book\u0004Add New":[""],"posts\u0004All <span class=\"count\">(%s)</span>":["","All <span class=\"count\">(%s)</span>"],"settings title\u0004Template import method":[""],"settings title\u0004Global Style Kit":[""],"settings title\u0004Enable SVG Uploads":[""],"settings title\u0004Hide legacy features":[""],"settings title\u0004Setup":[""]}}}
     1{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages"},"Style Kits for Elementor":[""],"https://analogwp.com/":[""],"Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.":[""],"AnalogWP":[""],"Style Kit for Elementor requires PHP version %s":[""],"Error Activating":[""],"Style Kits requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.":[""],"Style Kits requires Elementor v%s or newer in order to work. Please update Elementor to the latest version.":[""],"Update Elementor Now":[""],"Rollback to v%s":[""],"Style Kits is not working because you need to activate the Elementor plugin.":[""],"Activate Elementor Now":[""],"Style Kits is not working because you need to install the Elementor plugin.":[""],"Install Elementor Now":[""],"Enjoyed %1$s? Please leave us a %2$s rating. We really appreciate your support!":[""],"View Documentation":[""],"Documentation":[""],"Get Support":[""],"Style Kits for Elementor Logo":[""],"Invalid or expired license provided.":[""],"No options key provided.":[""],"Setting updated.":[""],"Invalid param(s).":[""],"Please provide a title.":[""],"Unable to create a Kit":[""],"The new Theme Style Kit has been saved and applied on this page.":[""],"Please provide a valid post ID.":[""],"Invalid Post ID":[""],"Invalid Style Kit ID.":[""],"Invalid license provided.":[""],"Invalid token data returned":[""],"Invalid Block ID.":[""],"Your settings have been saved.":[""],"The changes you made will be lost if you navigate away from this page.":[""],"Template Kit file downloaded.":[""],"Import it into Elementor":[""],"Toggle":[""],"Refresh":[""],"Something went wrong.":[""],"Once Weekly":[""],"AnalogWP Classes":[""],"Welcome to Style Kits":[""],"Working...":[""],"Install and Activate Elementor":[""],"This will install and activate Elementor from the WordPress repository":[""],"Elementor is installed and activated":[""],"Failed to install and activate Elementor":[""],"Enable Elementor container feature":[""],"The latest Style Kits version works best with flexbox containers. We will enable the Containers feature in Elementor.":[""],"Container feature is now active":[""],"Failed to activate Elementor container experiment":[""],"Disable Elementor default colors and fonts":[""],"For Global Styles to work properly, Elementor default fonts and colors need to be disabled":[""],"Elementor default colors and fonts are disabled":[""],"Failed to disable Elementor default colors and fonts":[""],"Install and activate Hello Elementor Theme":[""],"Style Kits works best with Elementor Hello theme. This will replace your currently active theme":[""],"Hello Elementor theme is installed and activated":[""],"Failed to install and activate Hello Elementor":[""],"Import a starter theme style preset":[""],"Use a basic Style Kit as your starting point. This will replace your site’s default kit but you can always revert back to it later.":[""],"A theme style preset \"Style Kit: Base\" has been imported":[""],"Failed to import a kit":[""],"Docs":[""],"Setup Elementor properly for a seamless Style Kits Experience.":[""],"Learn more":[""],"Looks like you have everything in place.":[""],"Skip wizard":[""],"Apply":[""],"Go to Dashboard":[""],"Open a new template":[""],"Style Kit: Test Page":[""],"Oops, something went wrong at action: ":[""],"Style Kit":[""],"Hey! You have been using %1$s for over 2 weeks, we hope you enjoy it! If so, please leave a positive %2$s.":[""],"review on WordPress.org":[""],"Unable to sanitize this file hence it wasn't uploaded!":[""],"Full Size":[""],"Thumbnail":[""],"Medium":[""],"Large":[""],"This will clean-up all the values from the current Theme Style kit. If you need to revert, you can do so at the Revisions tab.":[""],"Are you sure?":[""],"Clone Style Kit":[""],"Save":[""],"Cancel":[""],"Style Kit name":[""],"Insert Style Kit":[""],"Please select a Style Kit first.":[""],"— Select a Style Kit —":[""],"Style Kit Updated.":[""],"Update Style Kit":[""],"This action will update the Style Kit with the latest changes, and will affect all the pages that the style kit is used on. Do you wish to proceed?":[""],"Meet Style Kits for Elementor":[""],"Take control of your design in the macro level, with local or global settings for typography and spacing. %s.":[""],"View Styles":[""],"Style Kits":[""],"Export CSS":[""],"Copy CSS":[""],"CSS copied":[""],"Style Kit Update Detected":[""],"<p>The Style kit used by this page has been updated, click ‘Apply Changes’ to apply the latest changes.</p><p>Click Discard to keep your current page styles and detach the page from the Style Kit</p>":[""],"Discard":[""],"Apply Changes":[""],"Ok, got it.":[""],"Go to Page Style":[""],"This template offers global typography and spacing control, through the Page Style tab.":[""],"Typography, column gaps and more, are controlled layout-wide at Page Styles Panel, giving you the flexibility you need over the design of this template. You can save the styles and apply them to any other page. <a href=\"#\" target=\"_blank\">Learn More.</a>":[""],"CSS Variables":[""],"Remove Page ID from the CSS":[""],"This will revert the color palette and the color labels to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the global font labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the container preset labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the box shadow presets to their defaults. You can undo this action from the revisions tab.":[""],"All good. The new Style Kit has been applied on this page!":[""],"Switch Style Kit":[""],"Back to Editor":[""],"Set the accent colors of your layout.":[""],"Learn more.":[""],"The primary accent color applies on links, icons, and other elements. You can also define the text link color in the Typography panel.":[""],"Primary Accent":[""],"The default button color. You can also define button colors under the Buttons panel, and individually for each button size under Buttons Sizes panel.":[""],"Secondary Accent":[""],"Style Kit Colors":[""],"The Style Kit's color palette.":[""],"Read more":[""],"1-16":[""],"Site background":[""],"Light background":[""],"Dark background":[""],"Background 4":[""],"Accent 1":[""],"Accent 2":[""],"Accent 3":[""],"Accent 4":[""],"Titles":[""],"Normal text":[""],"Secondary text":[""],"Inverted text":[""],"Border":[""],"Color Style 14":[""],"Color Style 15":[""],"Color Style 16":[""],"Reset labels & colors":[""],"Reset":[""],"Style Kits for Elementor Shortcuts":[""],"Templates Library":[""],"Settings":[""],"Theme Style Kits":[""],"Add New Style Kit":[""],"New Style Kit":[""],"Edit Style Kit":[""],"View Style Kit":[""],"Search Style Kits":[""],"Parent Style Kits:":[""],"No Style Kit found.":[""],"No Style Kit found in Trash.":[""],"Style Kit: %s <span style=\"color:#5C32B6;\">&#9679;</span>":[""],"Apply Global Style Kit":[""],"Headings Typography":[""],"These settings apply to all Headings in your layout. You can still override individual values at each element.":[""],"Heading %s":[""],"Body Typography":[""],"Recently Imported":[""],"Typographic Sizes":[""],"Heading Sizes":[""],"Edit the available sizes for the Heading Element.":[""],"XXL":[""],"XL":[""],"Small":[""],"Heading":[""],"Text Sizes":[""],"Edit the available sizes for the p, span, and div tags of the Heading Element.":[""],"Text":[""],"Container Spacing":[""],"The default container padding is set in Elementor Theme Styles > Layout Settings > ":[""],"Container padding":[""],"Create additional spacing presets.":[""],"No Padding Styles":[""],"1-8":[""],"XXL - Hero Section":[""],"XL - Primary Section":[""],"Large - Box":[""],"Medium - Box":[""],"Small - Box":[""],"Padding 6":[""],"Padding 7":[""],"Padding 8":[""],"Reset labels and values to default":[""],"Create additional spacing presets in ":[""],"Default":[""],"Normal":[""],"Extra Large":[""],"Outer Section Padding":[""],"Add padding to the outer sections of your layouts by using these controls.":[""],"Default Padding":[""],"Narrow Padding":[""],"Extended Padding":[""],"Wide Padding":[""],"Wider Padding":[""],"Column Gaps":[""],"Column Gap presets add padding to the columns of a section.":[""],"Space Between Widgets":[""],"Sets the default space between widgets, overrides the default value set in Elementor > Style > Space Between Widgets.":[""],"Button Sizes":[""],"Define the default styles for every button size.":[""],"XS":[""],"S":[""],"M":[""],"L":[""],"Typography":[""],"Normal Styling":[""],"Text Color":[""],"Background Color":[""],"Border Radius":[""],"Hover Styling":[""],"Padding":[""],"Select a different Style Kit to be applied on this page. The page will reload after your selection.":[""],"Select Style Kit":[""],"This will override your site's Global Style Kit for this page.":[""],"Page Style Kit":[""],"Set your Global Style Kit here":[""],"Manage Style Kit":[""],"This will reset the Theme Style Kit and clean up any values.":[""],"Reset Theme Style Kit":[""],"Save the current styles as a different Theme Style Kit. You can then apply it on other pages, or globally.":[""],"Clone":[""],"Export Theme Style Kit CSS":[""],"Export":[""],"No Padding":[""],"Spacing Preset":[""],"Edit in Style Kits":[""],"None":[""],"Light Background":[""],"Accent Background":[""],"Background presets":[""],"Headings":[""],"Headings Color":[""],"Headings Font":[""],"You can set individual heading font and colors below.":[""],"Style Kit Fonts":[""],"The Style Kit's typographic styles.":[""],"Display title":[""],"Title 1":[""],"Title 2":[""],"Title 3":[""],"Title 4":[""],"Title 5":[""],"Title 6":[""],"Overline / Subheader":[""],"Display text":[""],"Large text":[""],"Small text":[""],"Caption":[""],"Button text":[""],"Form label":[""],"Font Style 16":[""],"Reset labels & fonts":[""],"Shadows":[""],"Add global shadow presets by using these controls.":[""],"Shadow 1":[""],"Shadow 2":[""],"Shadow 3":[""],"Shadow 4":[""],"Shadow 5":[""],"Shadow 6":[""],"Shadow 7":[""],"Shadow 8":[""],"Reset to default":[""],"Box Shadow Preset":[""],"No posts found.":[""],"%s ago":[""],"Published":[""],"Title":[""],"Type":[""],"Kit":[""],"Author":[""],"Date":[""],"%s (Edit)":[""],"Edit":[""],"Trash":[""],"View":[""],"Edit with Elementor":[""],"Move to Trash":[""],"Filter by Style Kit":[""],"Filter":[""],"Instance List":[""],"No Kits found.":[""],"Entire Site":[""],"Instances":[""],"Draft":[""],"Global Style Kit":[""],"Export Theme Style Kit":[""],"Local Style Kits":[""],"Choose an Elementor template JSON file or a .zip archive of Elementor templates, and add them to the list of templates available in your library.":[""],"Import Now":[""],"A list of all the imported and custom Style Kits. A global Style Kit is the one that applies globally on your site. You can set a Global Style Kit below.":[""],"Error occured while requesting Style Kit data.":[""],"Style Kit imported":[""],"All good! The Style Kit has been set as Global.":[""],"View site":[""],"Are you sure you want to delete this Style Kit?":[""],"By removing this template you will delete the entire Style Kit, and all the related global style settings.":[""],"Delete Style Kit":[""],"Layout Tools":[""],"Handy tools to clean inline styles from your existing layouts and make them global-design-ready. Highlight elements that have Classes or custom CSS.":[""],"Advanced Form Controls":[""],"Offers controls to customize form column/rows gap, label spacing, and form messages colors.":[""],"Go Pro":[""],"Learn More":[""],"Accent":[""],"Accent Background Color":[""],"Enjoy better background color control in your layouts by adding a third background color class. Available in Style Kits Pro.":[""],"9-16":[""],"Extend your container spacing system with more variables, plus many more features with Style Kits Pro.":[""],"17-24":[""],"17-32":[""],"Extend your color system with more variables, plus many more features with Style Kits Pro.":[""],"33-48":[""],"Extend your typography system with more variables, plus many more features with Style Kits Pro.":[""],"Extend your shadows system with more variables, plus many more features with Style Kits Pro.":[""],"Light":[""],"Add the class <strong>sk-light-bg</strong> to a section or column to apply these colors.":[""],"Dark":[""],"Add the class <strong>sk-dark-bg</strong> to a section or column to apply these colors.":[""],"Dark Background":[""],"Sorry, you are not allowed to rollback Style Kits plugin for this site.":[""],"Error occurred, the version selected is invalid. Try selecting different version.":[""],"Rollback to Previous Version":[""],"Rolling back plugin…":[""],"Rollback failed during installation.":[""],"Rollback complete. The plugin files have been restored.":[""],"Go to Plugins page":[""],"Style Kits Library":[""],"Library":[""],"Style Kits Settings":[""],"that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at":[""],"Experiments":[""],"Active":[""],"Inactive":[""],"Style Kits Experiments":[""],"Below you can activate experimental features for Style Kits and Style Kits Pro. We suggest you to turn on backups while using these experiments. %s about how this works.":[""],"Container-based Library":[""],"Get access to the container-based library of Patterns. You need to have the Containers Feature activated in Elementor, to test the new library.":[""],"Extensions":[""],"General":[""],"Starter Kit":[""],"Always import templates using the Global Style Kit. %s":[""],"This option is now in %s page.":[""],"Helps importing SVGs in templates. %s":[""],"Hide legacy features from the Style Kit panel. %s":[""],"Trigger the setup wizard manually":[""],"Restart wizard":[""],"Download Starter Kit":[""],"Download ZIP":[""],"View Demo":[""],"Style Kits Pro":[""],"Misc":[""],"Show Global Kit Data":[""],"Global Colors and Fonts that belong to the Global Style Kit will still be available when working with other Style Kits.":[""],"More Info":[""],"Usage Data Tracking":[""],"Opt-in to our anonymous plugin data collection and to updates":[""],"We guarantee no sensitive data is collected. ":[""],"Remove Data on Uninstall":[""],"Check this box to remove all data stored by Style Kit for Elementor plugin, including license info, user settings, import history etc. Any imported or manually saved Style Kits are not removed.":[""],"Version Control":[""],"Rollback Versions":[""],"If you are having issues with current version of Style Kits for Elementor, you can rollback to a previous stable version.":[""],"Rollback Style Kits":[""],"Reinstall this version":[""],"Beta Features":[""],"Become a beta tester":[""],"Check this box to turn on beta updates for Style Kits and Style Kits Pro. The update will not be installed automatically, you always have the option to ignore it.":[""],"Transform your design workflow in Elementor with Style Kits PRO":[""],"Unlimited access to the container-based pattern library":[""],"Unlimited access to the entire collection of Global theme style presets":[""],"Unlock up to 48 Global Style Kit Fonts and Colors":[""],"Unlock up to 24 container spacing  presets":[""],"Hide any Style Kit reference from your clients, based on user roles":[""],"Style Kits front-end switcher":[""],"Selectively de-activate Style Kits Panels from the site settings sidebar":[""],".. and much more.":[""],"Explore Style Kits Pro":[""],"Now available with Lifetime plans for a limited time! ":[""],"Save changes":[""],"Meet Custom Library for Elementor":[""],"Your Email":[""],"First Name":[""],"Send me the coupon":[""],"By submitting your details, you agree to our %s.":[""],"privacy policy":[""],"Need help with Style Kits?":[""],"Visit the online docs":[""],"Welcome to Style Kits 1.9.5. This version includes a brand new container-based pattern library, and a lot of other improvements.":[""],"See what’s new.":[""],"The New version of Style Kits introduces a setup wizard. You can trigger it at any time under Style Kits Settings.":[""],"Global: %s":[""],"Template":[""],"Block":[""],"Add Style Kits":[""],"The %s has been imported and is now available in the":[""],"Elementor %s library":[""],"Ok, thanks":[""],"No patterns found":[""],"No blocks found":[""],"Loading Patterns...":[""],"Loading Blocks...":[""],"Pro":[""],"Import":[""],"Search Patterns":[""],"Search Blocks":[""],"Show Pro Patterns":[""],"Show Pro Blocks":[""],"View Templates":[""],"All template types":[""],"Newest first":[""],"Popular":[""],"Both Free and Pro":[""],"Free":[""],"Template Kit":[""],"Back to all Kits":[""],"Back to all":[""],"Favorites":[""],"Search templates...":[""],"Exit preview":[""],"Open in new tab":[""],"Import Template":[""],"Back to Library":[""],"Loading icon":[""],"Patterns":[""],"Blocks":[""],"Templates":[""],"Styles":[""],"Import template":[""],"Global":[""],"Installed":[""],"Learn more about this in %s.":[""],"Style Kits Docs":[""],"The Global Style Kit will be applied on this template":[""],"Choose a Theme Style Kit to apply on the page.":[""],"%1$s":[""],"The original Style Kit is pre-selected for you.":[""],"Choose a Style Kit...":[""],"You can change the default import method at the ":[""],"Settings Page":[""],"You can manage and set a Global Style Kit at the ":[""],"Import the template in the current page.":[""],"Import to current page":[""],"Import this template to your library to make it available in your Elementor ":[""],"Saved Templates":[""]," list for future use.":[""],"Import to Library":[""],"Import to a new page":[""],"Create a new page from this template to make it available as a draft page in your Pages list.":[""],"Enter a Page Name":[""],"Import to page":[""],"All done! The template has been imported.":[""],"Get unlimited access to the Style Kits library and features with the PRO version.":[""],"View Plans":[""],"%s <span class=\"footer-text\">in WordPress dashboard.</span>":[""],"Manage your Style Kits":[""]," Imported!":[""],"Style Kits are ready-made configurations of theme styles. When you import a Style Kit, it will be available in the":[""],"page":[""],"You will then be able apply it globally, or on any page.":[""],"Import Style Kit":[""],"Preview":[""],"A Style Kit named ":[""]," already exists in your website. To import it again please use a different name.":[""],"Please try a different as a Style Kit with same name already exists.":[""],"Enter a Style Kit Name":[""]," has been successfully imported. You can now find it in the ":[""],"Stay on this page":[""],"View local Style Kits":[""],"Importing ":[""],"Library is now synced":[""],"Something is not right, please try again.":[""],"Syncing...":[""],"Sync Library":[""],"Close":[""],"New":[""],"This template requires an updated version, please update your plugin to latest version.":[""],"Section Title\u0004Accent Colors":[""],"Section Title\u0004Layout Tools":[""],"Section Title\u0004Elementor Forms":[""],"Section Title\u0004Background Color Classes":[""],"admin menu\u0004Style Kits":[""],"add new on admin bar\u0004Style Kit":[""],"book\u0004Add New":[""],"posts\u0004All <span class=\"count\">(%s)</span>":["","All <span class=\"count\">(%s)</span>"],"settings title\u0004Template import method":[""],"settings title\u0004Global Style Kit":[""],"settings title\u0004Enable SVG Uploads":[""],"settings title\u0004Hide legacy features":[""],"settings title\u0004Setup":[""]}}}
  • analogwp-templates/tags/2.4.0/languages/ang.pot

    r3396613 r3423828  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Style Kits for Elementor 2.3.5\n"
     5"Project-Id-Version: Style Kits for Elementor 2.4.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/analogwp-templates\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-10-18T10:15:45+00:00\n"
     12"POT-Creation-Date: 2025-12-19T15:09:27+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    9696
    9797#: inc/admin/class-admin.php:65
    98 #: inc/settings/views/html-admin-settings.php:110
     98#: inc/settings/views/html-admin-settings.php:114
    9999msgid "Documentation"
    100100msgstr ""
     
    166166msgstr ""
    167167
    168 #: inc/class-admin-settings.php:134
     168#: inc/class-admin-settings.php:136
    169169msgid "The changes you made will be lost if you navigate away from this page."
    170170msgstr ""
     
    178178msgstr ""
    179179
    180 #: inc/class-admin-settings.php:570
    181 #: inc/class-admin-settings.php:635
     180#: inc/class-admin-settings.php:571
     181#: inc/class-admin-settings.php:636
    182182msgid "Toggle"
    183183msgstr ""
    184184
    185 #: inc/class-admin-settings.php:683
     185#: inc/class-admin-settings.php:684
    186186msgid "Refresh"
    187187msgstr ""
     
    683683
    684684#: inc/elementor/class-finder-shortcuts.php:53
    685 #: inc/Plugin.php:216
     685#: inc/Plugin.php:218
    686686#: inc/register-settings.php:48
    687687msgid "Settings"
     
    739739msgstr ""
    740740
    741 #: inc/elementor/class-tools.php:115
    742 msgid "Sorry, you are not allowed to rollback Style Kits plugin for this site."
    743 msgstr ""
    744 
    745 #: inc/elementor/class-tools.php:123
    746 msgid "Error occurred, the version selected is invalid. Try selecting different version."
    747 msgstr ""
    748 
    749 #: inc/elementor/class-tools.php:167
    750 msgid "Rollback to Previous Version"
    751 msgstr ""
    752 
    753741#. translators: %s: Style kit title.
    754 #: inc/elementor/class-tools.php:239
     742#: inc/elementor/class-tools.php:168
    755743msgid "Style Kit: %s <span style=\"color:#5C32B6;\">&#9679;</span>"
    756744msgstr ""
    757745
    758 #: inc/elementor/class-tools.php:273
     746#: inc/elementor/class-tools.php:202
    759747msgid "Apply Global Style Kit"
    760748msgstr ""
     
    14361424#. translators: %1$s: Link to Style Kits Pro. %2$s: Go Pro text.
    14371425#: inc/elementor/Promotions.php:154
    1438 #: inc/Plugin.php:222
    1439 #: inc/register-settings.php:79
     1426#: inc/Plugin.php:224
     1427#: inc/register-settings.php:69
    14401428#: client/blocks/BlockList.js:374
    14411429#: client/stylekits/stylekits.js:272
     
    15251513msgstr ""
    15261514
     1515#: inc/Featuresets/rollback/class-init.php:66
     1516msgid "Sorry, you are not allowed to rollback Style Kits plugin for this site."
     1517msgstr ""
     1518
     1519#: inc/Featuresets/rollback/class-init.php:74
     1520msgid "Error occurred, the version selected is invalid. Try selecting different version."
     1521msgstr ""
     1522
     1523#: inc/Featuresets/rollback/class-init.php:93
     1524msgid "Rollback to Previous Version"
     1525msgstr ""
     1526
     1527#: inc/Featuresets/rollback/class-rollback-downgrader-skin.php:31
     1528msgid "Rolling back plugin…"
     1529msgstr ""
     1530
     1531#: inc/Featuresets/rollback/class-rollback-downgrader-skin.php:73
     1532msgid "Rollback failed during installation."
     1533msgstr ""
     1534
     1535#: inc/Featuresets/rollback/class-rollback-downgrader-skin.php:84
     1536msgid "Rollback complete. The plugin files have been restored."
     1537msgstr ""
     1538
     1539#: inc/Featuresets/rollback/class-rollback-downgrader-skin.php:89
     1540msgid "Go to Plugins page"
     1541msgstr ""
     1542
    15271543#: inc/register-settings.php:39
    15281544msgid "Style Kits Library"
     
    15381554msgstr ""
    15391555
    1540 #: inc/register-settings.php:227
    1541 #: inc/register-settings.php:253
     1556#: inc/register-settings.php:218
     1557#: inc/register-settings.php:245
    15421558msgid "that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at"
    15431559msgstr ""
     
    16951711msgstr ""
    16961712
     1713#: inc/settings/class-settings-version-control.php:42
     1714msgid "Rollback Versions"
     1715msgstr ""
     1716
    16971717#: inc/settings/class-settings-version-control.php:43
    1698 msgid "Rollback Versions"
    1699 msgstr ""
    1700 
    1701 #: inc/settings/class-settings-version-control.php:44
    17021718msgid "If you are having issues with current version of Style Kits for Elementor, you can rollback to a previous stable version."
    17031719msgstr ""
    17041720
    1705 #: inc/settings/class-settings-version-control.php:49
     1721#: inc/settings/class-settings-version-control.php:48
    17061722msgid "Rollback Style Kits"
    17071723msgstr ""
    17081724
    1709 #: inc/settings/class-settings-version-control.php:61
     1725#: inc/settings/class-settings-version-control.php:60
    17101726msgid "Reinstall this version"
    17111727msgstr ""
    17121728
    1713 #: inc/settings/class-settings-version-control.php:73
     1729#: inc/settings/class-settings-version-control.php:72
    17141730msgid "Beta Features"
    17151731msgstr ""
    17161732
     1733#: inc/settings/class-settings-version-control.php:77
     1734msgid "Become a beta tester"
     1735msgstr ""
     1736
    17171737#: inc/settings/class-settings-version-control.php:78
    1718 msgid "Become a beta tester"
    1719 msgstr ""
    1720 
    1721 #: inc/settings/class-settings-version-control.php:79
    17221738msgid "Check this box to turn on beta updates for Style Kits and Style Kits Pro. The update will not be installed automatically, you always have the option to ignore it."
    17231739msgstr ""
     
    17711787msgstr ""
    17721788
    1773 #: inc/settings/views/html-admin-settings.php:76
     1789#: inc/settings/views/html-admin-settings.php:75
    17741790msgid "Meet Custom Library for Elementor"
    17751791msgstr ""
    17761792
    1777 #: inc/settings/views/html-admin-settings.php:86
    1778 msgid "Upgrade to Style Kits Pro with a 15% discount"
    1779 msgstr ""
    1780 
    1781 #: inc/settings/views/html-admin-settings.php:91
     1793#: inc/settings/views/html-admin-settings.php:94
    17821794msgid "Your Email"
    17831795msgstr ""
    17841796
    1785 #: inc/settings/views/html-admin-settings.php:92
     1797#: inc/settings/views/html-admin-settings.php:95
    17861798msgid "First Name"
    17871799msgstr ""
    17881800
    1789 #: inc/settings/views/html-admin-settings.php:93
     1801#: inc/settings/views/html-admin-settings.php:96
    17901802msgid "Send me the coupon"
    17911803msgstr ""
    17921804
    17931805#. translators: %s: Link to AnalogWP privacy policy.
    1794 #: inc/settings/views/html-admin-settings.php:100
     1806#: inc/settings/views/html-admin-settings.php:104
    17951807msgid "By submitting your details, you agree to our %s."
    17961808msgstr ""
    17971809
    1798 #: inc/settings/views/html-admin-settings.php:101
     1810#: inc/settings/views/html-admin-settings.php:105
    17991811msgid "privacy policy"
    18001812msgstr ""
    18011813
    1802 #: inc/settings/views/html-admin-settings.php:112
     1814#: inc/settings/views/html-admin-settings.php:116
    18031815msgid "Need help with Style Kits?"
    18041816msgstr ""
    18051817
    1806 #: inc/settings/views/html-admin-settings.php:113
     1818#: inc/settings/views/html-admin-settings.php:117
    18071819msgid "Visit the online docs"
    18081820msgstr ""
     
    18221834#. translators: Global Style Kit post title.
    18231835#: inc/Utils.php:134
    1824 #: inc/Utils.php:563
     1836#: inc/Utils.php:511
    18251837msgid "Global: %s"
    18261838msgstr ""
  • analogwp-templates/tags/2.4.0/third-party/vendor/autoload.php

    r3396613 r3423828  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInit1b08ca5cbd161c385ffa17fb45ff3ea5::getLoader();
     22return ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff::getLoader();
  • analogwp-templates/tags/2.4.0/third-party/vendor/composer/autoload_real.php

    r3396613 r3423828  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit1b08ca5cbd161c385ffa17fb45ff3ea5
     5class ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInit1b08ca5cbd161c385ffa17fb45ff3ea5', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInit1b08ca5cbd161c385ffa17fb45ff3ea5', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInit1b08ca5cbd161c385ffa17fb45ff3ea5::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff::getInitializer($loader));
    3131
    3232        $loader->setClassMapAuthoritative(true);
  • analogwp-templates/tags/2.4.0/third-party/vendor/composer/autoload_static.php

    r3396613 r3423828  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit1b08ca5cbd161c385ffa17fb45ff3ea5
     7class ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff
    88{
    99    public static $classMap = array (
     
    2525    {
    2626        return \Closure::bind(function () use ($loader) {
    27             $loader->classMap = ComposerStaticInit1b08ca5cbd161c385ffa17fb45ff3ea5::$classMap;
     27            $loader->classMap = ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff::$classMap;
    2828
    2929        }, null, ClassLoader::class);
  • analogwp-templates/trunk/analogwp-templates.php

    r3396613 r3423828  
    1111 * Plugin URI:  https://analogwp.com/
    1212 * Description: Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.
    13  * Version:     2.3.6
     13 * Version:     2.4.0
    1414 * Author:      AnalogWP
    1515 * Author URI:  https://analogwp.com/
     
    2020 * Requires PHP: 7.4
    2121 *
    22  * Elementor tested up to: 3.33.2
    23  * Elementor Pro tested up to: 3.33.1
     22 * Elementor tested up to: 3.33.6
     23 * Elementor Pro tested up to: 3.33.2
    2424 */
    2525
     
    2929define( 'ANG_PHP_MINIMUM', '7.4' );
    3030define( 'ANG_WP_MINIMUM', '6.0' );
    31 define( 'ANG_VERSION', '2.3.6' );
     31define( 'ANG_VERSION', '2.4.0' );
    3232define( 'ANG_PLUGIN_FILE', __FILE__ );
    3333define( 'ANG_PLUGIN_URL', plugin_dir_url( ANG_PLUGIN_FILE ) );
     
    118118    $message .= sprintf(
    119119        '<a href="%s" class="button-secondary" style="margin-left:10px">%s</a>',
    120         wp_nonce_url( admin_url( 'admin-post.php?action=ang_rollback&version=' . $versions[0] ), 'ang_rollback' ),
     120        wp_nonce_url( admin_url( 'admin-post.php?action=analog_style_kits_rollback&version=' . $versions[0] ), 'analog_style_kits_rollback' ),
    121121        /* translators: %s: Version number. */
    122122        sprintf( __( 'Rollback to v%s', 'ang' ), $versions[0] )
     
    124124    $message .= '</p>';
    125125
    126     echo '<div class="error"><p>' . $message . '</p></div>'; // @codingStandardsIgnoreLine
     126    echo '<div class="error"><p>' . $message . '</p></div>'; // phpcs:ignore
    127127}
    128128
  • analogwp-templates/trunk/assets/js/admin-settings.js

    r3396613 r3423828  
    100100
    101101            $.post(
    102                 'https://analogwp.com/?ang-api=sk_bfcm_discount_code',
     102                'https://analogwp.com/?ang-api=pro_discount_code',
    103103                {
    104104                    email: email,
    105105                    first_name: JSON.stringify( fname ),
    106106                    last_name: JSON.stringify( lname ),
     107                    slug: 'style-kits',
    107108                }
    108109            ).done( function( res ) {
  • analogwp-templates/trunk/inc/Plugin.php

    r3196348 r3423828  
    33 * Class Analog\Plugin.
    44 *
    5  * @copyright 2024 SmallTownDev
     5 * @copyright SmallTownDev
    66 * @package Analog
    77 */
     
    99namespace Analog;
    1010
     11use Analog\Featuresets\Register_Featuresets as Featuresets;
    1112use Analog\Admin\Notices;
    1213use Analog\Elementor\Google_Fonts;
     
    7172
    7273        add_action( 'admin_bar_menu', array( self::$instance, 'add_kit_to_menu_bar' ), 400 );
     74
     75        // Register Featuresets.
     76        Featuresets::get_instance();
    7377
    7478        ( new Consumer() )->register();
     
    117121            'analog/app/strings',
    118122            array(
    119                 'is_settings_page'  => 'toplevel_page_analogwp_templates' === $hook,
    120                 'rollback_url'      => wp_nonce_url( admin_url( 'admin-post.php?action=ang_rollback&version=VERSION' ), 'ang_rollback' ),
    121                 'rollback_versions' => Utils::get_rollback_versions(),
     123                'is_settings_page' => 'toplevel_page_analogwp_templates' === $hook,
    122124            )
    123125        );
     
    239241        require_once ANG_PLUGIN_DIR . 'inc/register-settings.php';
    240242        require_once ANG_PLUGIN_DIR . 'inc/settings-helpers.php';
     243        require_once ANG_PLUGIN_DIR . 'inc/Featuresets/class-register-featuresets.php';
    241244        require_once ANG_PLUGIN_DIR . 'inc/class-base.php';
    242245        require_once ANG_PLUGIN_DIR . 'inc/class-import-image.php';
     
    294297     */
    295298    public function add_kit_to_menu_bar( \WP_Admin_Bar $wp_admin_bar ) {
    296         if ( ! defined( 'WP_DEBUG' ) || ! WP_DEBUG  ) {
     299        if ( ! defined( 'WP_DEBUG' ) || ! WP_DEBUG ) {
    297300            return;
    298301        }
     
    308311
    309312        $parent = 'style_kits';
    310         $wp_admin_bar->add_menu( array(
    311             'id'     => $parent,
    312             'parent' => 'elementor_inspector',
    313             'title'  => 'Style Kit',
    314         ) );
    315 
    316         $wp_admin_bar->add_menu( array(
    317             'id'     => 'style_kits_kit',
    318             'parent' => $parent,
    319             'title'  => 'Kit: ' . $title,
    320         ) );
     313        $wp_admin_bar->add_menu(
     314            array(
     315                'id'     => $parent,
     316                'parent' => 'elementor_inspector',
     317                'title'  => 'Style Kit',
     318            )
     319        );
     320
     321        $wp_admin_bar->add_menu(
     322            array(
     323                'id'     => 'style_kits_kit',
     324                'parent' => $parent,
     325                'title'  => 'Kit: ' . $title,
     326            )
     327        );
    321328    }
    322329
     
    349356     */
    350357    public static function instance() {
    351         return static::$instance;
     358        return self::$instance;
    352359    }
    353360
     
    361368     */
    362369    public static function load( $main_file ) {
    363         if ( null !== static::$instance ) {
     370        if ( null !== self::$instance ) {
    364371            return false;
    365372        }
    366373
    367         static::$instance = new static( $main_file );
    368         static::$instance->register();
     374        self::$instance = new self( $main_file );
     375        self::$instance->register();
    369376
    370377        do_action( 'ang_loaded' );
  • analogwp-templates/trunk/inc/Utils.php

    r3309279 r3423828  
    330330
    331331    /**
    332      * Get valid rollback versions.
    333      *
    334      * @since 1.3.7
    335      * @return array|mixed
    336      */
    337     public static function get_rollback_versions() {
    338         $rollback_versions = get_transient( 'ang_rollback_versions_' . ANG_VERSION );
    339 
    340         if ( false === $rollback_versions ) {
    341             $max_versions = 30;
    342 
    343             require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
    344 
    345             $plugin_information = plugins_api(
    346                 'plugin_information',
    347                 array( 'slug' => 'analogwp-templates' )
    348             );
    349 
    350             if ( empty( $plugin_information->versions ) || ! is_array( $plugin_information->versions ) ) {
    351                 return array();
    352             }
    353 
    354             krsort( $plugin_information->versions, SORT_NATURAL );
    355 
    356             $rollback_versions = array();
    357 
    358             $current_index = 0;
    359 
    360             foreach ( $plugin_information->versions as $version => $download_link ) {
    361                 if ( $max_versions <= $current_index ) {
    362                     break;
    363                 }
    364 
    365                 if ( preg_match( '/(trunk|beta|rc)/i', strtolower( $version ) ) ) {
    366                     continue;
    367                 }
    368 
    369                 if ( version_compare( $version, ANG_VERSION, '>=' ) ) {
    370                     continue;
    371                 }
    372 
    373                 $current_index++;
    374                 $rollback_versions[] = $version;
    375             }
    376 
    377             set_transient( 'ang_rollback_versions_' . ANG_VERSION, $rollback_versions, WEEK_IN_SECONDS );
    378         }
    379 
    380         return $rollback_versions;
    381     }
    382 
    383     /**
    384332     * Convert string to boolean.
    385333     *
     
    395343        array_walk_recursive(
    396344            $data,
    397             function( &$value, $key ) {
     345            function ( &$value, $key ) {
    398346                if ( 'isInner' === $key || 'isLinked' === $key ) {
    399347                    $value = (bool) $value;
     
    426374        return array_filter(
    427375            $settings,
    428             function( $key ) use ( $allowed ) {
     376            function ( $key ) use ( $allowed ) {
    429377                foreach ( $allowed as $allow ) {
    430378                    if ( strpos( $key, $allow ) === 0 ) {
  • analogwp-templates/trunk/inc/class-admin-settings.php

    r3191879 r3423828  
    4747            $settings = array();
    4848
    49             include_once dirname( __FILE__ ) . '/settings/class-settings-page.php';
     49            include_once __DIR__ . '/settings/class-settings-page.php';
    5050
    5151            $settings[] = include 'settings/class-settings-general.php';
     
    131131            'ang_settings',
    132132            'ang_settings_data',
    133             array(
    134                 'i18n_nav_warning'          => __( 'The changes you made will be lost if you navigate away from this page.', 'ang' ),
    135                 'rollback_url'              => wp_nonce_url( admin_url( 'admin-post.php?action=ang_rollback&version=VERSION' ), 'ang_rollback' ),
    136                 'rollback_versions'         => Utils::get_rollback_versions(),
    137                 'sitekit_importer_notice'   => __( 'Template Kit file downloaded.', 'ang' ),
    138                 'sitekit_importer_url_text' => __( 'Import it into Elementor', 'ang' ),
    139                 'sitekit_importer_url'      => esc_url( admin_url( 'admin.php?page=elementor-tools#tab-import-export-kit' ) ),
     133            apply_filters(
     134                'ang_settings_data',
     135                array(
     136                    'i18n_nav_warning'          => __( 'The changes you made will be lost if you navigate away from this page.', 'ang' ),
     137                    'sitekit_importer_notice'   => __( 'Template Kit file downloaded.', 'ang' ),
     138                    'sitekit_importer_url_text' => __( 'Import it into Elementor', 'ang' ),
     139                    'sitekit_importer_url'      => esc_url( admin_url( 'admin.php?page=elementor-tools#tab-import-export-kit' ) ),
     140                )
    140141            )
    141142        );
     
    144145        $tabs = apply_filters( 'ang_settings_tabs_array', array() );
    145146
    146         include dirname( __FILE__ ) . '/settings/views/html-admin-settings.php';
     147        include __DIR__ . '/settings/views/html-admin-settings.php';
    147148    }
    148149
     
    486487                                <?php echo implode( ' ', $custom_attributes ); // WPCS: XSS ok. ?>
    487488                                <?php echo 'multiselect' === $value['type'] ? 'multiple="multiple"' : ''; ?>
    488                                 <?php echo $disabled ? ' disabled="true"': ''; ?>
     489                                <?php echo $disabled ? ' disabled="true"' : ''; ?>
    489490                                >
    490491                                <?php
  • analogwp-templates/trunk/inc/elementor/class-tools.php

    r2811803 r3423828  
    1212use Analog\Utils;
    1313use Elementor\Core\Base\Document;
    14 use Elementor\Rollback;
    1514use Elementor\TemplateLibrary\Source_Local;
    1615use Elementor\User;
     
    4847     */
    4948    private function add_actions() {
    50         add_action( 'admin_post_ang_rollback', array( $this, 'post_ang_rollback' ) );
    5149        add_filter( 'display_post_states', array( $this, 'stylekit_post_state' ), 20, 2 );
    5250
     
    104102
    105103    /**
    106      * Rollback AnalogWP version.
    107      *
    108      * @return void
    109      * @since 1.2.3
    110      */
    111     public function post_ang_rollback() {
    112         check_admin_referer( 'ang_rollback' );
    113 
    114         if ( defined( 'STYLEKIT_DEBUG' ) || ! current_user_can( 'update_plugins' ) ) {
    115             wp_die( esc_html__( 'Sorry, you are not allowed to rollback Style Kits plugin for this site.', 'ang' ) );
    116         }
    117 
    118         $rollback_versions = Utils::get_rollback_versions();
    119 
    120         $version = filter_input( INPUT_GET, 'version', FILTER_SANITIZE_STRING );
    121 
    122         if ( ! $version || ! in_array( $version, $rollback_versions, true ) ) {
    123             wp_die( esc_html__( 'Error occurred, the version selected is invalid. Try selecting different version.', 'ang' ) );
    124         }
    125 
    126         ?>
    127         <style>
    128             .wrap h1 {
    129                 position: relative;
    130                 padding-top: 140px !important;
    131             }
    132 
    133             .wrap h1:before {
    134                 content: '';
    135                 position: absolute;
    136                 width: 300px;
    137                 height: 65px;
    138                 color: #fff;
    139                 top: 40px;
    140                 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 116 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M65.3219 12.0481C65.3219 15.7023 62.3543 18.6647 58.6935 18.6647C55.0328 18.6647 52.0652 15.7023 52.0652 12.0481C52.0652 8.39391 55.0328 5.43158 58.6935 5.43158C62.3543 5.43158 65.3219 8.39391 65.3219 12.0481Z' %3E%3C/path%3E%3Cpath d='M9.59184 6.29053V7.70526C8.75667 6.51789 7.16224 6.01263 5.7956 6.01263C2.7586 6.01263 0 8.36211 0 12.1516C0 15.9411 2.7586 18.2905 5.7956 18.2905C7.11163 18.2905 8.75667 17.76 9.59184 16.5979V18.0632H12.9072V6.29053H9.59184ZM6.4283 15.2084C4.75796 15.2084 3.366 13.8695 3.366 12.1516C3.366 10.4084 4.75796 9.12 6.4283 9.12C7.97211 9.12 9.49061 10.3326 9.49061 12.1516C9.49061 13.9453 8.04803 15.2084 6.4283 15.2084Z' %3E%3C/path%3E%3Cpath d='M23.113 5.98737C21.9488 5.98737 20.076 6.66947 19.5698 8.26105V6.29053H16.2544V18.0632H19.5698V12.0253C19.5698 9.87789 21.0377 9.24632 22.2272 9.24632C23.3661 9.24632 24.4796 10.08 24.4796 11.9495V18.0632H27.795V11.5958C27.8203 8.05895 26.2006 5.98737 23.113 5.98737Z' %3E%3C/path%3E%3Cpath d='M39.8679 6.29053V7.70526C39.0327 6.51789 37.4383 6.01263 36.0716 6.01263C33.0346 6.01263 30.276 8.36211 30.276 12.1516C30.276 15.9411 33.0346 18.2905 36.0716 18.2905C37.3876 18.2905 39.0327 17.76 39.8679 16.5979V18.0632H43.1832V6.29053H39.8679ZM36.7043 15.2084C35.034 15.2084 33.642 13.8695 33.642 12.1516C33.642 10.4084 35.034 9.12 36.7043 9.12C38.2481 9.12 39.7666 10.3326 39.7666 12.1516C39.7666 13.9453 38.3241 15.2084 36.7043 15.2084Z' %3E%3C/path%3E%3Cpath d='M46.5305 18.0632H49.8458V0H46.5305V18.0632Z' %3E%3C/path%3E%3Cpath d='M58.7973 18.2905C62.1633 18.2905 65.1496 15.8653 65.1496 12.1516C65.1496 8.41263 62.1633 5.98737 58.7973 5.98737C55.4313 5.98737 52.4449 8.41263 52.4449 12.1516C52.4449 15.8653 55.4313 18.2905 58.7973 18.2905ZM58.7973 15.2084C57.1522 15.2084 55.8109 13.9705 55.8109 12.1516C55.8109 10.3074 57.1522 9.06947 58.7973 9.06947C60.4423 9.06947 61.7836 10.3074 61.7836 12.1516C61.7836 13.9705 60.4423 15.2084 58.7973 15.2084Z' %3E%3C/path%3E%3Cpath d='M76.644 6.29053V7.68C75.7835 6.54316 74.189 6.01263 72.8477 6.01263C69.8107 6.01263 67.0521 8.36211 67.0521 12.1516C67.0521 15.9411 69.8107 18.2905 72.8477 18.2905C74.1637 18.2905 75.7835 17.76 76.644 16.6232V16.8C76.644 19.8821 75.3026 21.0442 73.1767 21.0442C71.9113 21.0442 70.6965 20.2863 70.1903 19.2253L67.4317 20.4126C68.4441 22.5853 70.6459 24 73.1767 24C77.3526 24 79.9593 21.6 79.9593 16.4463V6.29053H76.644ZM73.4804 15.2084C71.8101 15.2084 70.4181 13.8695 70.4181 12.1516C70.4181 10.4084 71.8101 9.12 73.4804 9.12C75.0242 9.12 76.5427 10.3326 76.5427 12.1516C76.5427 13.9453 75.1001 15.2084 73.4804 15.2084Z' %3E%3C/path%3E%3Cpath d='M97.6574 6.29053L95.4303 13.4653L93.1779 6.29053H90.3939L88.1415 13.4653L85.9144 6.29053H82.3206L86.623 18.0632H89.4575L91.8112 10.4084L94.2408 18.0632H97.0753L101.251 6.29053H97.6574Z' %3E%3C/path%3E%3Cpath d='M110.204 5.98737C108.863 5.98737 107.243 6.51789 106.408 7.70526V6.29053H103.093V23.8484H106.408V16.5979C107.243 17.7853 108.863 18.2905 110.204 18.2905C113.241 18.2905 116 15.9411 116 12.1516C116 8.36211 113.241 5.98737 110.204 5.98737ZM109.572 15.1832C108.028 15.1832 106.509 13.9705 106.509 12.1516C106.509 10.3579 107.952 9.09474 109.572 9.09474C111.242 9.09474 112.609 10.4337 112.609 12.1516C112.609 13.8947 111.242 15.1832 109.572 15.1832Z' %3E%3C/path%3E%3C/svg%3E");
    141                 background-repeat: no-repeat;
    142                 transform: translate(50%);
    143             }
    144 
    145             .wrap img {
    146                 display: none;
    147             }
    148         </style>
    149         <?php
    150 
    151         $plugin_slug = 'analogwp-templates';
    152         $plugin_name = 'analogwp-templates/analogwp-templates.php';
    153 
    154         $rollback = new Rollback(
    155             array(
    156                 'version'     => $version,
    157                 'plugin_name' => $plugin_name,
    158                 'plugin_slug' => $plugin_slug,
    159                 'package_url' => sprintf( 'https://downloads.wordpress.org/plugin/%s.%s.zip', $plugin_slug, $version ),
    160             )
    161         );
    162 
    163         $rollback->run();
    164 
    165         wp_die(
    166             '',
    167             esc_html__( 'Rollback to Previous Version', 'ang' ),
    168             array(
    169                 'response' => 200,
    170             )
    171         );
    172     }
    173 
    174     /**
    175104     * Fetch a post.
    176105     *
  • analogwp-templates/trunk/inc/register-settings.php

    r3191879 r3423828  
    6262        'Analog\Elementor\Kit\ang_kits_list'
    6363    );
    64 
    65     // Hidden instances menu. Maybe delete later if not needed.
    66     //  add_submenu_page(
    67     //      $menu_slug,
    68     //      __( 'Instances', 'ang' ),
    69     //      __( 'Instances List', 'ang' ),
    70     //      'manage_options',
    71     //      'ang-instance-list',
    72     //      'Analog\Elementor\Kit\ang_instance_list'
    73     //  );
    7464
    7565    if ( ! defined( 'ANG_PRO_VERSION' ) ) {
     
    191181    }
    192182    // Include settings so that we can run through defaults.
    193     include_once dirname( __FILE__ ) . '/class-admin-settings.php';
     183    include_once __DIR__ . '/class-admin-settings.php';
    194184
    195185    $settings = array_filter( Admin_Settings::get_settings_pages() );
     
    223213
    224214    if ( $options->get( 'ang_license_key' ) && class_exists( LicenseManager::class ) && ! method_exists( LicenseManager::class, 'get_freemius_product_query_data' ) ) {
    225         $message = sprintf( '<strong>%1$s</strong> %2$s <a href="mailto:%3$s">%3$s</a> %4$s',
     215        $message = sprintf(
     216            '<strong>%1$s</strong> %2$s <a href="mailto:%3$s">%3$s</a> %4$s',
    226217            esc_html__( 'Style Kits is switching to a new experience for our Pro plugin,', 'ang-pro' ),
    227             esc_html__('that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at', 'ang' ),
     218            esc_html__( 'that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at', 'ang' ),
    228219            esc_html( '[email protected]' ),
    229220            esc_html__( 'or click on Contact Us link available in the left plugin menu, include your license key and we will provide a discount as per the license for a smooth transition.', 'ang-pro' )
    230221        );
    231         $html_message = sprintf('<div class="error">%s</div>', wpautop($message));
     222        $html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) );
    232223
    233224        echo wp_kses_post( $html_message );
     
    249240                'id'    => 'ang_freemius_license_switch_notice',
    250241                'title' => __( 'Experience the all new Style Kits Pro', 'ang-pro' ),
    251                 'desc'  => sprintf( '<strong>%1$s</strong> %2$s <a href="mailto:%3$s">%3$s</a> %4$s <br/><br/> %5$s',
     242                'desc'  => sprintf(
     243                    '<strong>%1$s</strong> %2$s <a href="mailto:%3$s">%3$s</a> %4$s <br/><br/> %5$s',
    252244                    esc_html__( 'Style Kits is switching to a new experience for our Pro plugin,', 'ang-pro' ),
    253                     esc_html__('that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at', 'ang' ),
     245                    esc_html__( 'that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at', 'ang' ),
    254246                    esc_html( '[email protected]' ),
    255247                    esc_html__( 'or click on Contact Us link available in the left plugin menu, include your license key and we will provide a discount as per the license for a smooth transition.', 'ang-pro' ),
    256248                    esc_html__( 'Please also know that coming future updates are now moved to this new licensing system and once you migrate to it everything else will work as is and better while with this switch we are working hard to bring you a more fine-tuned experience and all the more support for latest of Elementor.', 'ang-pro' )
    257                 )
     249                ),
    258250            ),
    259251            array(
     
    265257    );
    266258
    267 
    268259    return $settings;
    269260}
  • analogwp-templates/trunk/inc/settings/class-settings-version-control.php

    r2391944 r3423828  
    99namespace Analog\Settings;
    1010
    11 use Analog\Utils;
     11use Analog\Featuresets\Rollback\Init as Rollback;
    1212
    1313defined( 'ABSPATH' ) || exit;
     
    2525        $this->label = __( 'Version Control', 'ang' );
    2626        parent::__construct();
    27 
    2827    }
    2928
     
    9796     * Get recent rollback versions in key/value pair.
    9897     *
    99      * @uses \Analog\Utils::get_rollback_versions()
     98     * @uses \Analog\Featuresets\Rollback\Init::get_rollback_versions()
    10099     * @return array
    101100     */
    102101    public function get_rollback_versions() {
    103         $keys = Utils::get_rollback_versions();
     102        $keys = Rollback::get_rollback_versions();
    104103        $data = array();
    105104        foreach ( $keys as $key => $value ) {
  • analogwp-templates/trunk/inc/settings/views/html-admin-settings.php

    r3396613 r3423828  
    8787            <?php if ( ! class_exists( '\AnalogPro\Plugin' ) ) : ?>
    8888            <div class="upgrade-box special">
    89                 <h3>Upgrade to Style Kits Pro with<br/>80% discount in a Lifetime Deal</h3>
     89                <h3>🔥 Upgrade to Style Kits PRO with a Special Discount</h3>
    9090
    91                 <p>Black Friday + Cyber Monday Special!<br/>We have <b>already applied 50% discount sitewide</b>—enter your email to <b>get an extra 30% code on top</b>. Limited-time offer!</p>
     91                <p>Get additional features like <strong>Global Design Features, Libraries of Patterns and Style Kits, Role-Based Access Controls, Priority Support and so much more</strong> while helping us support its development and maintenance.</p>
    9292
    9393                <form id="js-ang-request-discount" method="post">
  • analogwp-templates/trunk/languages/ang-analogwp-app.json

    r3309279 r3423828  
    1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages"},"Style Kits for Elementor":[""],"https://analogwp.com/":[""],"Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.":[""],"AnalogWP":[""],"Style Kit for Elementor requires PHP version %s":[""],"Error Activating":[""],"Style Kits requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.":[""],"Style Kits requires Elementor v%s or newer in order to work. Please update Elementor to the latest version.":[""],"Update Elementor Now":[""],"Rollback to v%s":[""],"Style Kits is not working because you need to activate the Elementor plugin.":[""],"Activate Elementor Now":[""],"Style Kits is not working because you need to install the Elementor plugin.":[""],"Install Elementor Now":[""],"Enjoyed %1$s? Please leave us a %2$s rating. We really appreciate your support!":[""],"View Documentation":[""],"Documentation":[""],"Get Support":[""],"Style Kits for Elementor Logo":[""],"Invalid or expired license provided.":[""],"No options key provided.":[""],"Setting updated.":[""],"Invalid param(s).":[""],"Please provide a title.":[""],"Unable to create a Kit":[""],"The new Theme Style Kit has been saved and applied on this page.":[""],"Please provide a valid post ID.":[""],"Invalid Post ID":[""],"Invalid Style Kit ID.":[""],"Invalid license provided.":[""],"Invalid token data returned":[""],"Invalid Block ID.":[""],"Your settings have been saved.":[""],"The changes you made will be lost if you navigate away from this page.":[""],"Template Kit file downloaded.":[""],"Import it into Elementor":[""],"Toggle":[""],"Refresh":[""],"Something went wrong.":[""],"Once Weekly":[""],"AnalogWP Classes":[""],"Welcome to Style Kits":[""],"Working...":[""],"Install and Activate Elementor":[""],"This will install and activate Elementor from the WordPress repository":[""],"Elementor is installed and activated":[""],"Failed to install and activate Elementor":[""],"Enable Elementor container feature":[""],"The latest Style Kits version works best with flexbox containers. We will enable the Containers feature in Elementor.":[""],"Container feature is now active":[""],"Failed to activate Elementor container experiment":[""],"Disable Elementor default colors and fonts":[""],"For Global Styles to work properly, Elementor default fonts and colors need to be disabled":[""],"Elementor default colors and fonts are disabled":[""],"Failed to disable Elementor default colors and fonts":[""],"Install and activate Hello Elementor Theme":[""],"Style Kits works best with Elementor Hello theme. This will replace your currently active theme":[""],"Hello Elementor theme is installed and activated":[""],"Failed to install and activate Hello Elementor":[""],"Import a starter theme style preset":[""],"Use a basic Style Kit as your starting point. This will replace your site’s default kit but you can always revert back to it later.":[""],"A theme style preset \"Style Kit: Base\" has been imported":[""],"Failed to import a kit":[""],"Docs":[""],"Setup Elementor properly for a seamless Style Kits Experience.":[""],"Learn more":[""],"Looks like you have everything in place.":[""],"Skip wizard":[""],"Apply":[""],"Go to Dashboard":[""],"Open a new template":[""],"Style Kit: Test Page":[""],"Oops, something went wrong at action: ":[""],"Style Kit":[""],"Hey! You have been using %1$s for over 2 weeks, we hope you enjoy it! If so, please leave a positive %2$s.":[""],"review on WordPress.org":[""],"Unable to sanitize this file hence it wasn't uploaded!":[""],"Full Size":[""],"Thumbnail":[""],"Medium":[""],"Large":[""],"This will clean-up all the values from the current Theme Style kit. If you need to revert, you can do so at the Revisions tab.":[""],"Are you sure?":[""],"Clone Style Kit":[""],"Save":[""],"Cancel":[""],"Style Kit name":[""],"Insert Style Kit":[""],"Please select a Style Kit first.":[""],"— Select a Style Kit —":[""],"Style Kit Updated.":[""],"Update Style Kit":[""],"This action will update the Style Kit with the latest changes, and will affect all the pages that the style kit is used on. Do you wish to proceed?":[""],"Meet Style Kits for Elementor":[""],"Take control of your design in the macro level, with local or global settings for typography and spacing. %s.":[""],"View Styles":[""],"Style Kits":[""],"Export CSS":[""],"Copy CSS":[""],"CSS copied":[""],"Style Kit Update Detected":[""],"<p>The Style kit used by this page has been updated, click ‘Apply Changes’ to apply the latest changes.</p><p>Click Discard to keep your current page styles and detach the page from the Style Kit</p>":[""],"Discard":[""],"Apply Changes":[""],"Ok, got it.":[""],"Go to Page Style":[""],"This template offers global typography and spacing control, through the Page Style tab.":[""],"Typography, column gaps and more, are controlled layout-wide at Page Styles Panel, giving you the flexibility you need over the design of this template. You can save the styles and apply them to any other page. <a href=\"#\" target=\"_blank\">Learn More.</a>":[""],"CSS Variables":[""],"Remove Page ID from the CSS":[""],"This will revert the color palette and the color labels to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the global font labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the container preset labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the box shadow presets to their defaults. You can undo this action from the revisions tab.":[""],"All good. The new Style Kit has been applied on this page!":[""],"Switch Style Kit":[""],"Back to Editor":[""],"Set the accent colors of your layout.":[""],"Learn more.":[""],"The primary accent color applies on links, icons, and other elements. You can also define the text link color in the Typography panel.":[""],"Primary Accent":[""],"The default button color. You can also define button colors under the Buttons panel, and individually for each button size under Buttons Sizes panel.":[""],"Secondary Accent":[""],"Style Kit Colors":[""],"The Style Kit's color palette.":[""],"Read more":[""],"1-16":[""],"Site background":[""],"Light background":[""],"Dark background":[""],"Background 4":[""],"Accent 1":[""],"Accent 2":[""],"Accent 3":[""],"Accent 4":[""],"Titles":[""],"Normal text":[""],"Secondary text":[""],"Inverted text":[""],"Border":[""],"Color Style 14":[""],"Color Style 15":[""],"Color Style 16":[""],"Reset labels & colors":[""],"Reset":[""],"Style Kits for Elementor Shortcuts":[""],"Templates Library":[""],"Settings":[""],"Theme Style Kits":[""],"Add New Style Kit":[""],"New Style Kit":[""],"Edit Style Kit":[""],"View Style Kit":[""],"Search Style Kits":[""],"Parent Style Kits:":[""],"No Style Kit found.":[""],"No Style Kit found in Trash.":[""],"Sorry, you are not allowed to rollback Style Kits plugin for this site.":[""],"Error occurred, the version selected is invalid. Try selecting different version.":[""],"Rollback to Previous Version":[""],"Style Kit: %s <span style=\"color:#5C32B6;\">&#9679;</span>":[""],"Apply Global Style Kit":[""],"Headings Typography":[""],"These settings apply to all Headings in your layout. You can still override individual values at each element.":[""],"Heading %s":[""],"Body Typography":[""],"Recently Imported":[""],"Typographic Sizes":[""],"Heading Sizes":[""],"Edit the available sizes for the Heading Element.":[""],"XXL":[""],"XL":[""],"Small":[""],"Heading":[""],"Text Sizes":[""],"Edit the available sizes for the p, span, and div tags of the Heading Element.":[""],"Text":[""],"Container Spacing":[""],"The default container padding is set in Elementor Theme Styles > Layout Settings > ":[""],"Container padding":[""],"Create additional spacing presets.":[""],"No Padding Styles":[""],"1-8":[""],"XXL - Hero Section":[""],"XL - Primary Section":[""],"Large - Box":[""],"Medium - Box":[""],"Small - Box":[""],"Padding 6":[""],"Padding 7":[""],"Padding 8":[""],"Reset labels and values to default":[""],"Create additional spacing presets in ":[""],"Default":[""],"Normal":[""],"Extra Large":[""],"Outer Section Padding":[""],"Add padding to the outer sections of your layouts by using these controls.":[""],"Default Padding":[""],"Narrow Padding":[""],"Extended Padding":[""],"Wide Padding":[""],"Wider Padding":[""],"Column Gaps":[""],"Column Gap presets add padding to the columns of a section.":[""],"Space Between Widgets":[""],"Sets the default space between widgets, overrides the default value set in Elementor > Style > Space Between Widgets.":[""],"Button Sizes":[""],"Define the default styles for every button size.":[""],"XS":[""],"S":[""],"M":[""],"L":[""],"Typography":[""],"Normal Styling":[""],"Text Color":[""],"Background Color":[""],"Border Radius":[""],"Hover Styling":[""],"Padding":[""],"Select a different Style Kit to be applied on this page. The page will reload after your selection.":[""],"Select Style Kit":[""],"This will override your site's Global Style Kit for this page.":[""],"Page Style Kit":[""],"Set your Global Style Kit here":[""],"Manage Style Kit":[""],"This will reset the Theme Style Kit and clean up any values.":[""],"Reset Theme Style Kit":[""],"Save the current styles as a different Theme Style Kit. You can then apply it on other pages, or globally.":[""],"Clone":[""],"Export Theme Style Kit CSS":[""],"Export":[""],"No Padding":[""],"Spacing Preset":[""],"Edit in Style Kits":[""],"None":[""],"Light Background":[""],"Accent Background":[""],"Background presets":[""],"Headings":[""],"Headings Color":[""],"Headings Font":[""],"You can set individual heading font and colors below.":[""],"Style Kit Fonts":[""],"The Style Kit's typographic styles.":[""],"Display title":[""],"Title 1":[""],"Title 2":[""],"Title 3":[""],"Title 4":[""],"Title 5":[""],"Title 6":[""],"Overline / Subheader":[""],"Display text":[""],"Large text":[""],"Small text":[""],"Caption":[""],"Button text":[""],"Form label":[""],"Font Style 16":[""],"Reset labels & fonts":[""],"Shadows":[""],"Add global shadow presets by using these controls.":[""],"Shadow 1":[""],"Shadow 2":[""],"Shadow 3":[""],"Shadow 4":[""],"Shadow 5":[""],"Shadow 6":[""],"Shadow 7":[""],"Shadow 8":[""],"Reset to default":[""],"Box Shadow Preset":[""],"No posts found.":[""],"%s ago":[""],"Published":[""],"Title":[""],"Type":[""],"Kit":[""],"Author":[""],"Date":[""],"%s (Edit)":[""],"Edit":[""],"Trash":[""],"View":[""],"Edit with Elementor":[""],"Move to Trash":[""],"Filter by Style Kit":[""],"Filter":[""],"Instance List":[""],"No Kits found.":[""],"Entire Site":[""],"Instances":[""],"Draft":[""],"Global Style Kit":[""],"Export Theme Style Kit":[""],"Local Style Kits":[""],"Choose an Elementor template JSON file or a .zip archive of Elementor templates, and add them to the list of templates available in your library.":[""],"Import Now":[""],"A list of all the imported and custom Style Kits. A global Style Kit is the one that applies globally on your site. You can set a Global Style Kit below.":[""],"Error occured while requesting Style Kit data.":[""],"Style Kit imported":[""],"All good! The Style Kit has been set as Global.":[""],"View site":[""],"Are you sure you want to delete this Style Kit?":[""],"By removing this template you will delete the entire Style Kit, and all the related global style settings.":[""],"Delete Style Kit":[""],"Layout Tools":[""],"Handy tools to clean inline styles from your existing layouts and make them global-design-ready. Highlight elements that have Classes or custom CSS.":[""],"Advanced Form Controls":[""],"Offers controls to customize form column/rows gap, label spacing, and form messages colors.":[""],"Go Pro":[""],"Learn More":[""],"Accent":[""],"Accent Background Color":[""],"Enjoy better background color control in your layouts by adding a third background color class. Available in Style Kits Pro.":[""],"9-16":[""],"Extend your container spacing system with more variables, plus many more features with Style Kits Pro.":[""],"17-24":[""],"17-32":[""],"Extend your color system with more variables, plus many more features with Style Kits Pro.":[""],"33-48":[""],"Extend your typography system with more variables, plus many more features with Style Kits Pro.":[""],"Extend your shadows system with more variables, plus many more features with Style Kits Pro.":[""],"Light":[""],"Add the class <strong>sk-light-bg</strong> to a section or column to apply these colors.":[""],"Dark":[""],"Add the class <strong>sk-dark-bg</strong> to a section or column to apply these colors.":[""],"Dark Background":[""],"Style Kits Library":[""],"Library":[""],"Style Kits Settings":[""],"that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at":[""],"Experiments":[""],"Active":[""],"Inactive":[""],"Style Kits Experiments":[""],"Below you can activate experimental features for Style Kits and Style Kits Pro. We suggest you to turn on backups while using these experiments. %s about how this works.":[""],"Container-based Library":[""],"Get access to the container-based library of Patterns. You need to have the Containers Feature activated in Elementor, to test the new library.":[""],"Extensions":[""],"General":[""],"Starter Kit":[""],"Always import templates using the Global Style Kit. %s":[""],"This option is now in %s page.":[""],"Helps importing SVGs in templates. %s":[""],"Hide legacy features from the Style Kit panel. %s":[""],"Trigger the setup wizard manually":[""],"Restart wizard":[""],"Download Starter Kit":[""],"Download ZIP":[""],"View Demo":[""],"Style Kits Pro":[""],"Misc":[""],"Show Global Kit Data":[""],"Global Colors and Fonts that belong to the Global Style Kit will still be available when working with other Style Kits.":[""],"More Info":[""],"Usage Data Tracking":[""],"Opt-in to our anonymous plugin data collection and to updates":[""],"We guarantee no sensitive data is collected. ":[""],"Remove Data on Uninstall":[""],"Check this box to remove all data stored by Style Kit for Elementor plugin, including license info, user settings, import history etc. Any imported or manually saved Style Kits are not removed.":[""],"Version Control":[""],"Rollback Versions":[""],"If you are having issues with current version of Style Kits for Elementor, you can rollback to a previous stable version.":[""],"Rollback Style Kits":[""],"Reinstall this version":[""],"Beta Features":[""],"Become a beta tester":[""],"Check this box to turn on beta updates for Style Kits and Style Kits Pro. The update will not be installed automatically, you always have the option to ignore it.":[""],"Transform your design workflow in Elementor with Style Kits PRO":[""],"Unlimited access to the container-based pattern library":[""],"Unlimited access to the entire collection of Global theme style presets":[""],"Unlock up to 48 Global Style Kit Fonts and Colors":[""],"Unlock up to 24 container spacing  presets":[""],"Hide any Style Kit reference from your clients, based on user roles":[""],"Style Kits front-end switcher":[""],"Selectively de-activate Style Kits Panels from the site settings sidebar":[""],".. and much more.":[""],"Explore Style Kits Pro":[""],"Now available with Lifetime plans for a limited time! ":[""],"Save changes":[""],"Meet Custom Library for Elementor":[""],"Upgrade to Style Kits Pro with a 15% discount":[""],"Your Email":[""],"First Name":[""],"Send me the coupon":[""],"By submitting your details, you agree to our %s.":[""],"privacy policy":[""],"Need help with Style Kits?":[""],"Visit the online docs":[""],"Welcome to Style Kits 1.9.5. This version includes a brand new container-based pattern library, and a lot of other improvements.":[""],"See what’s new.":[""],"The New version of Style Kits introduces a setup wizard. You can trigger it at any time under Style Kits Settings.":[""],"Global: %s":[""],"Template":[""],"Block":[""],"Add Style Kits":[""],"The %s has been imported and is now available in the":[""],"Elementor %s library":[""],"Ok, thanks":[""],"No patterns found":[""],"No blocks found":[""],"Loading Patterns...":[""],"Loading Blocks...":[""],"Pro":[""],"Import":[""],"Search Patterns":[""],"Search Blocks":[""],"Show Pro Patterns":[""],"Show Pro Blocks":[""],"View Templates":[""],"All template types":[""],"Newest first":[""],"Popular":[""],"Both Free and Pro":[""],"Free":[""],"Template Kit":[""],"Back to all Kits":[""],"Back to all":[""],"Favorites":[""],"Search templates...":[""],"Exit preview":[""],"Open in new tab":[""],"Import Template":[""],"Back to Library":[""],"Loading icon":[""],"Patterns":[""],"Blocks":[""],"Templates":[""],"Styles":[""],"Import template":[""],"Global":[""],"Installed":[""],"Learn more about this in %s.":[""],"Style Kits Docs":[""],"The Global Style Kit will be applied on this template":[""],"Choose a Theme Style Kit to apply on the page.":[""],"%1$s":[""],"The original Style Kit is pre-selected for you.":[""],"Choose a Style Kit...":[""],"You can change the default import method at the ":[""],"Settings Page":[""],"You can manage and set a Global Style Kit at the ":[""],"Import the template in the current page.":[""],"Import to current page":[""],"Import this template to your library to make it available in your Elementor ":[""],"Saved Templates":[""]," list for future use.":[""],"Import to Library":[""],"Import to a new page":[""],"Create a new page from this template to make it available as a draft page in your Pages list.":[""],"Enter a Page Name":[""],"Import to page":[""],"All done! The template has been imported.":[""],"Get unlimited access to the Style Kits library and features with the PRO version.":[""],"View Plans":[""],"%s <span class=\"footer-text\">in WordPress dashboard.</span>":[""],"Manage your Style Kits":[""]," Imported!":[""],"Style Kits are ready-made configurations of theme styles. When you import a Style Kit, it will be available in the":[""],"page":[""],"You will then be able apply it globally, or on any page.":[""],"Import Style Kit":[""],"Preview":[""],"A Style Kit named ":[""]," already exists in your website. To import it again please use a different name.":[""],"Please try a different as a Style Kit with same name already exists.":[""],"Enter a Style Kit Name":[""]," has been successfully imported. You can now find it in the ":[""],"Stay on this page":[""],"View local Style Kits":[""],"Importing ":[""],"Library is now synced":[""],"Something is not right, please try again.":[""],"Syncing...":[""],"Sync Library":[""],"Close":[""],"New":[""],"This template requires an updated version, please update your plugin to latest version.":[""],"Section Title\u0004Accent Colors":[""],"Section Title\u0004Layout Tools":[""],"Section Title\u0004Elementor Forms":[""],"Section Title\u0004Background Color Classes":[""],"admin menu\u0004Style Kits":[""],"add new on admin bar\u0004Style Kit":[""],"book\u0004Add New":[""],"posts\u0004All <span class=\"count\">(%s)</span>":["","All <span class=\"count\">(%s)</span>"],"settings title\u0004Template import method":[""],"settings title\u0004Global Style Kit":[""],"settings title\u0004Enable SVG Uploads":[""],"settings title\u0004Hide legacy features":[""],"settings title\u0004Setup":[""]}}}
     1{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages"},"Style Kits for Elementor":[""],"https://analogwp.com/":[""],"Style Kits extends the Elementor theme styles editor with more global styling options. Boost your design workflow in Elementor with intuitive global controls and theme style presets.":[""],"AnalogWP":[""],"Style Kit for Elementor requires PHP version %s":[""],"Error Activating":[""],"Style Kits requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.":[""],"Style Kits requires Elementor v%s or newer in order to work. Please update Elementor to the latest version.":[""],"Update Elementor Now":[""],"Rollback to v%s":[""],"Style Kits is not working because you need to activate the Elementor plugin.":[""],"Activate Elementor Now":[""],"Style Kits is not working because you need to install the Elementor plugin.":[""],"Install Elementor Now":[""],"Enjoyed %1$s? Please leave us a %2$s rating. We really appreciate your support!":[""],"View Documentation":[""],"Documentation":[""],"Get Support":[""],"Style Kits for Elementor Logo":[""],"Invalid or expired license provided.":[""],"No options key provided.":[""],"Setting updated.":[""],"Invalid param(s).":[""],"Please provide a title.":[""],"Unable to create a Kit":[""],"The new Theme Style Kit has been saved and applied on this page.":[""],"Please provide a valid post ID.":[""],"Invalid Post ID":[""],"Invalid Style Kit ID.":[""],"Invalid license provided.":[""],"Invalid token data returned":[""],"Invalid Block ID.":[""],"Your settings have been saved.":[""],"The changes you made will be lost if you navigate away from this page.":[""],"Template Kit file downloaded.":[""],"Import it into Elementor":[""],"Toggle":[""],"Refresh":[""],"Something went wrong.":[""],"Once Weekly":[""],"AnalogWP Classes":[""],"Welcome to Style Kits":[""],"Working...":[""],"Install and Activate Elementor":[""],"This will install and activate Elementor from the WordPress repository":[""],"Elementor is installed and activated":[""],"Failed to install and activate Elementor":[""],"Enable Elementor container feature":[""],"The latest Style Kits version works best with flexbox containers. We will enable the Containers feature in Elementor.":[""],"Container feature is now active":[""],"Failed to activate Elementor container experiment":[""],"Disable Elementor default colors and fonts":[""],"For Global Styles to work properly, Elementor default fonts and colors need to be disabled":[""],"Elementor default colors and fonts are disabled":[""],"Failed to disable Elementor default colors and fonts":[""],"Install and activate Hello Elementor Theme":[""],"Style Kits works best with Elementor Hello theme. This will replace your currently active theme":[""],"Hello Elementor theme is installed and activated":[""],"Failed to install and activate Hello Elementor":[""],"Import a starter theme style preset":[""],"Use a basic Style Kit as your starting point. This will replace your site’s default kit but you can always revert back to it later.":[""],"A theme style preset \"Style Kit: Base\" has been imported":[""],"Failed to import a kit":[""],"Docs":[""],"Setup Elementor properly for a seamless Style Kits Experience.":[""],"Learn more":[""],"Looks like you have everything in place.":[""],"Skip wizard":[""],"Apply":[""],"Go to Dashboard":[""],"Open a new template":[""],"Style Kit: Test Page":[""],"Oops, something went wrong at action: ":[""],"Style Kit":[""],"Hey! You have been using %1$s for over 2 weeks, we hope you enjoy it! If so, please leave a positive %2$s.":[""],"review on WordPress.org":[""],"Unable to sanitize this file hence it wasn't uploaded!":[""],"Full Size":[""],"Thumbnail":[""],"Medium":[""],"Large":[""],"This will clean-up all the values from the current Theme Style kit. If you need to revert, you can do so at the Revisions tab.":[""],"Are you sure?":[""],"Clone Style Kit":[""],"Save":[""],"Cancel":[""],"Style Kit name":[""],"Insert Style Kit":[""],"Please select a Style Kit first.":[""],"— Select a Style Kit —":[""],"Style Kit Updated.":[""],"Update Style Kit":[""],"This action will update the Style Kit with the latest changes, and will affect all the pages that the style kit is used on. Do you wish to proceed?":[""],"Meet Style Kits for Elementor":[""],"Take control of your design in the macro level, with local or global settings for typography and spacing. %s.":[""],"View Styles":[""],"Style Kits":[""],"Export CSS":[""],"Copy CSS":[""],"CSS copied":[""],"Style Kit Update Detected":[""],"<p>The Style kit used by this page has been updated, click ‘Apply Changes’ to apply the latest changes.</p><p>Click Discard to keep your current page styles and detach the page from the Style Kit</p>":[""],"Discard":[""],"Apply Changes":[""],"Ok, got it.":[""],"Go to Page Style":[""],"This template offers global typography and spacing control, through the Page Style tab.":[""],"Typography, column gaps and more, are controlled layout-wide at Page Styles Panel, giving you the flexibility you need over the design of this template. You can save the styles and apply them to any other page. <a href=\"#\" target=\"_blank\">Learn More.</a>":[""],"CSS Variables":[""],"Remove Page ID from the CSS":[""],"This will revert the color palette and the color labels to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the global font labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the container preset labels & values to their defaults. You can undo this action from the revisions tab.":[""],"This will revert the box shadow presets to their defaults. You can undo this action from the revisions tab.":[""],"All good. The new Style Kit has been applied on this page!":[""],"Switch Style Kit":[""],"Back to Editor":[""],"Set the accent colors of your layout.":[""],"Learn more.":[""],"The primary accent color applies on links, icons, and other elements. You can also define the text link color in the Typography panel.":[""],"Primary Accent":[""],"The default button color. You can also define button colors under the Buttons panel, and individually for each button size under Buttons Sizes panel.":[""],"Secondary Accent":[""],"Style Kit Colors":[""],"The Style Kit's color palette.":[""],"Read more":[""],"1-16":[""],"Site background":[""],"Light background":[""],"Dark background":[""],"Background 4":[""],"Accent 1":[""],"Accent 2":[""],"Accent 3":[""],"Accent 4":[""],"Titles":[""],"Normal text":[""],"Secondary text":[""],"Inverted text":[""],"Border":[""],"Color Style 14":[""],"Color Style 15":[""],"Color Style 16":[""],"Reset labels & colors":[""],"Reset":[""],"Style Kits for Elementor Shortcuts":[""],"Templates Library":[""],"Settings":[""],"Theme Style Kits":[""],"Add New Style Kit":[""],"New Style Kit":[""],"Edit Style Kit":[""],"View Style Kit":[""],"Search Style Kits":[""],"Parent Style Kits:":[""],"No Style Kit found.":[""],"No Style Kit found in Trash.":[""],"Style Kit: %s <span style=\"color:#5C32B6;\">&#9679;</span>":[""],"Apply Global Style Kit":[""],"Headings Typography":[""],"These settings apply to all Headings in your layout. You can still override individual values at each element.":[""],"Heading %s":[""],"Body Typography":[""],"Recently Imported":[""],"Typographic Sizes":[""],"Heading Sizes":[""],"Edit the available sizes for the Heading Element.":[""],"XXL":[""],"XL":[""],"Small":[""],"Heading":[""],"Text Sizes":[""],"Edit the available sizes for the p, span, and div tags of the Heading Element.":[""],"Text":[""],"Container Spacing":[""],"The default container padding is set in Elementor Theme Styles > Layout Settings > ":[""],"Container padding":[""],"Create additional spacing presets.":[""],"No Padding Styles":[""],"1-8":[""],"XXL - Hero Section":[""],"XL - Primary Section":[""],"Large - Box":[""],"Medium - Box":[""],"Small - Box":[""],"Padding 6":[""],"Padding 7":[""],"Padding 8":[""],"Reset labels and values to default":[""],"Create additional spacing presets in ":[""],"Default":[""],"Normal":[""],"Extra Large":[""],"Outer Section Padding":[""],"Add padding to the outer sections of your layouts by using these controls.":[""],"Default Padding":[""],"Narrow Padding":[""],"Extended Padding":[""],"Wide Padding":[""],"Wider Padding":[""],"Column Gaps":[""],"Column Gap presets add padding to the columns of a section.":[""],"Space Between Widgets":[""],"Sets the default space between widgets, overrides the default value set in Elementor > Style > Space Between Widgets.":[""],"Button Sizes":[""],"Define the default styles for every button size.":[""],"XS":[""],"S":[""],"M":[""],"L":[""],"Typography":[""],"Normal Styling":[""],"Text Color":[""],"Background Color":[""],"Border Radius":[""],"Hover Styling":[""],"Padding":[""],"Select a different Style Kit to be applied on this page. The page will reload after your selection.":[""],"Select Style Kit":[""],"This will override your site's Global Style Kit for this page.":[""],"Page Style Kit":[""],"Set your Global Style Kit here":[""],"Manage Style Kit":[""],"This will reset the Theme Style Kit and clean up any values.":[""],"Reset Theme Style Kit":[""],"Save the current styles as a different Theme Style Kit. You can then apply it on other pages, or globally.":[""],"Clone":[""],"Export Theme Style Kit CSS":[""],"Export":[""],"No Padding":[""],"Spacing Preset":[""],"Edit in Style Kits":[""],"None":[""],"Light Background":[""],"Accent Background":[""],"Background presets":[""],"Headings":[""],"Headings Color":[""],"Headings Font":[""],"You can set individual heading font and colors below.":[""],"Style Kit Fonts":[""],"The Style Kit's typographic styles.":[""],"Display title":[""],"Title 1":[""],"Title 2":[""],"Title 3":[""],"Title 4":[""],"Title 5":[""],"Title 6":[""],"Overline / Subheader":[""],"Display text":[""],"Large text":[""],"Small text":[""],"Caption":[""],"Button text":[""],"Form label":[""],"Font Style 16":[""],"Reset labels & fonts":[""],"Shadows":[""],"Add global shadow presets by using these controls.":[""],"Shadow 1":[""],"Shadow 2":[""],"Shadow 3":[""],"Shadow 4":[""],"Shadow 5":[""],"Shadow 6":[""],"Shadow 7":[""],"Shadow 8":[""],"Reset to default":[""],"Box Shadow Preset":[""],"No posts found.":[""],"%s ago":[""],"Published":[""],"Title":[""],"Type":[""],"Kit":[""],"Author":[""],"Date":[""],"%s (Edit)":[""],"Edit":[""],"Trash":[""],"View":[""],"Edit with Elementor":[""],"Move to Trash":[""],"Filter by Style Kit":[""],"Filter":[""],"Instance List":[""],"No Kits found.":[""],"Entire Site":[""],"Instances":[""],"Draft":[""],"Global Style Kit":[""],"Export Theme Style Kit":[""],"Local Style Kits":[""],"Choose an Elementor template JSON file or a .zip archive of Elementor templates, and add them to the list of templates available in your library.":[""],"Import Now":[""],"A list of all the imported and custom Style Kits. A global Style Kit is the one that applies globally on your site. You can set a Global Style Kit below.":[""],"Error occured while requesting Style Kit data.":[""],"Style Kit imported":[""],"All good! The Style Kit has been set as Global.":[""],"View site":[""],"Are you sure you want to delete this Style Kit?":[""],"By removing this template you will delete the entire Style Kit, and all the related global style settings.":[""],"Delete Style Kit":[""],"Layout Tools":[""],"Handy tools to clean inline styles from your existing layouts and make them global-design-ready. Highlight elements that have Classes or custom CSS.":[""],"Advanced Form Controls":[""],"Offers controls to customize form column/rows gap, label spacing, and form messages colors.":[""],"Go Pro":[""],"Learn More":[""],"Accent":[""],"Accent Background Color":[""],"Enjoy better background color control in your layouts by adding a third background color class. Available in Style Kits Pro.":[""],"9-16":[""],"Extend your container spacing system with more variables, plus many more features with Style Kits Pro.":[""],"17-24":[""],"17-32":[""],"Extend your color system with more variables, plus many more features with Style Kits Pro.":[""],"33-48":[""],"Extend your typography system with more variables, plus many more features with Style Kits Pro.":[""],"Extend your shadows system with more variables, plus many more features with Style Kits Pro.":[""],"Light":[""],"Add the class <strong>sk-light-bg</strong> to a section or column to apply these colors.":[""],"Dark":[""],"Add the class <strong>sk-dark-bg</strong> to a section or column to apply these colors.":[""],"Dark Background":[""],"Sorry, you are not allowed to rollback Style Kits plugin for this site.":[""],"Error occurred, the version selected is invalid. Try selecting different version.":[""],"Rollback to Previous Version":[""],"Rolling back plugin…":[""],"Rollback failed during installation.":[""],"Rollback complete. The plugin files have been restored.":[""],"Go to Plugins page":[""],"Style Kits Library":[""],"Library":[""],"Style Kits Settings":[""],"that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at":[""],"Experiments":[""],"Active":[""],"Inactive":[""],"Style Kits Experiments":[""],"Below you can activate experimental features for Style Kits and Style Kits Pro. We suggest you to turn on backups while using these experiments. %s about how this works.":[""],"Container-based Library":[""],"Get access to the container-based library of Patterns. You need to have the Containers Feature activated in Elementor, to test the new library.":[""],"Extensions":[""],"General":[""],"Starter Kit":[""],"Always import templates using the Global Style Kit. %s":[""],"This option is now in %s page.":[""],"Helps importing SVGs in templates. %s":[""],"Hide legacy features from the Style Kit panel. %s":[""],"Trigger the setup wizard manually":[""],"Restart wizard":[""],"Download Starter Kit":[""],"Download ZIP":[""],"View Demo":[""],"Style Kits Pro":[""],"Misc":[""],"Show Global Kit Data":[""],"Global Colors and Fonts that belong to the Global Style Kit will still be available when working with other Style Kits.":[""],"More Info":[""],"Usage Data Tracking":[""],"Opt-in to our anonymous plugin data collection and to updates":[""],"We guarantee no sensitive data is collected. ":[""],"Remove Data on Uninstall":[""],"Check this box to remove all data stored by Style Kit for Elementor plugin, including license info, user settings, import history etc. Any imported or manually saved Style Kits are not removed.":[""],"Version Control":[""],"Rollback Versions":[""],"If you are having issues with current version of Style Kits for Elementor, you can rollback to a previous stable version.":[""],"Rollback Style Kits":[""],"Reinstall this version":[""],"Beta Features":[""],"Become a beta tester":[""],"Check this box to turn on beta updates for Style Kits and Style Kits Pro. The update will not be installed automatically, you always have the option to ignore it.":[""],"Transform your design workflow in Elementor with Style Kits PRO":[""],"Unlimited access to the container-based pattern library":[""],"Unlimited access to the entire collection of Global theme style presets":[""],"Unlock up to 48 Global Style Kit Fonts and Colors":[""],"Unlock up to 24 container spacing  presets":[""],"Hide any Style Kit reference from your clients, based on user roles":[""],"Style Kits front-end switcher":[""],"Selectively de-activate Style Kits Panels from the site settings sidebar":[""],".. and much more.":[""],"Explore Style Kits Pro":[""],"Now available with Lifetime plans for a limited time! ":[""],"Save changes":[""],"Meet Custom Library for Elementor":[""],"Your Email":[""],"First Name":[""],"Send me the coupon":[""],"By submitting your details, you agree to our %s.":[""],"privacy policy":[""],"Need help with Style Kits?":[""],"Visit the online docs":[""],"Welcome to Style Kits 1.9.5. This version includes a brand new container-based pattern library, and a lot of other improvements.":[""],"See what’s new.":[""],"The New version of Style Kits introduces a setup wizard. You can trigger it at any time under Style Kits Settings.":[""],"Global: %s":[""],"Template":[""],"Block":[""],"Add Style Kits":[""],"The %s has been imported and is now available in the":[""],"Elementor %s library":[""],"Ok, thanks":[""],"No patterns found":[""],"No blocks found":[""],"Loading Patterns...":[""],"Loading Blocks...":[""],"Pro":[""],"Import":[""],"Search Patterns":[""],"Search Blocks":[""],"Show Pro Patterns":[""],"Show Pro Blocks":[""],"View Templates":[""],"All template types":[""],"Newest first":[""],"Popular":[""],"Both Free and Pro":[""],"Free":[""],"Template Kit":[""],"Back to all Kits":[""],"Back to all":[""],"Favorites":[""],"Search templates...":[""],"Exit preview":[""],"Open in new tab":[""],"Import Template":[""],"Back to Library":[""],"Loading icon":[""],"Patterns":[""],"Blocks":[""],"Templates":[""],"Styles":[""],"Import template":[""],"Global":[""],"Installed":[""],"Learn more about this in %s.":[""],"Style Kits Docs":[""],"The Global Style Kit will be applied on this template":[""],"Choose a Theme Style Kit to apply on the page.":[""],"%1$s":[""],"The original Style Kit is pre-selected for you.":[""],"Choose a Style Kit...":[""],"You can change the default import method at the ":[""],"Settings Page":[""],"You can manage and set a Global Style Kit at the ":[""],"Import the template in the current page.":[""],"Import to current page":[""],"Import this template to your library to make it available in your Elementor ":[""],"Saved Templates":[""]," list for future use.":[""],"Import to Library":[""],"Import to a new page":[""],"Create a new page from this template to make it available as a draft page in your Pages list.":[""],"Enter a Page Name":[""],"Import to page":[""],"All done! The template has been imported.":[""],"Get unlimited access to the Style Kits library and features with the PRO version.":[""],"View Plans":[""],"%s <span class=\"footer-text\">in WordPress dashboard.</span>":[""],"Manage your Style Kits":[""]," Imported!":[""],"Style Kits are ready-made configurations of theme styles. When you import a Style Kit, it will be available in the":[""],"page":[""],"You will then be able apply it globally, or on any page.":[""],"Import Style Kit":[""],"Preview":[""],"A Style Kit named ":[""]," already exists in your website. To import it again please use a different name.":[""],"Please try a different as a Style Kit with same name already exists.":[""],"Enter a Style Kit Name":[""]," has been successfully imported. You can now find it in the ":[""],"Stay on this page":[""],"View local Style Kits":[""],"Importing ":[""],"Library is now synced":[""],"Something is not right, please try again.":[""],"Syncing...":[""],"Sync Library":[""],"Close":[""],"New":[""],"This template requires an updated version, please update your plugin to latest version.":[""],"Section Title\u0004Accent Colors":[""],"Section Title\u0004Layout Tools":[""],"Section Title\u0004Elementor Forms":[""],"Section Title\u0004Background Color Classes":[""],"admin menu\u0004Style Kits":[""],"add new on admin bar\u0004Style Kit":[""],"book\u0004Add New":[""],"posts\u0004All <span class=\"count\">(%s)</span>":["","All <span class=\"count\">(%s)</span>"],"settings title\u0004Template import method":[""],"settings title\u0004Global Style Kit":[""],"settings title\u0004Enable SVG Uploads":[""],"settings title\u0004Hide legacy features":[""],"settings title\u0004Setup":[""]}}}
  • analogwp-templates/trunk/languages/ang.pot

    r3396613 r3423828  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Style Kits for Elementor 2.3.5\n"
     5"Project-Id-Version: Style Kits for Elementor 2.4.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/analogwp-templates\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-10-18T10:15:45+00:00\n"
     12"POT-Creation-Date: 2025-12-19T15:09:27+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    9696
    9797#: inc/admin/class-admin.php:65
    98 #: inc/settings/views/html-admin-settings.php:110
     98#: inc/settings/views/html-admin-settings.php:114
    9999msgid "Documentation"
    100100msgstr ""
     
    166166msgstr ""
    167167
    168 #: inc/class-admin-settings.php:134
     168#: inc/class-admin-settings.php:136
    169169msgid "The changes you made will be lost if you navigate away from this page."
    170170msgstr ""
     
    178178msgstr ""
    179179
    180 #: inc/class-admin-settings.php:570
    181 #: inc/class-admin-settings.php:635
     180#: inc/class-admin-settings.php:571
     181#: inc/class-admin-settings.php:636
    182182msgid "Toggle"
    183183msgstr ""
    184184
    185 #: inc/class-admin-settings.php:683
     185#: inc/class-admin-settings.php:684
    186186msgid "Refresh"
    187187msgstr ""
     
    683683
    684684#: inc/elementor/class-finder-shortcuts.php:53
    685 #: inc/Plugin.php:216
     685#: inc/Plugin.php:218
    686686#: inc/register-settings.php:48
    687687msgid "Settings"
     
    739739msgstr ""
    740740
    741 #: inc/elementor/class-tools.php:115
    742 msgid "Sorry, you are not allowed to rollback Style Kits plugin for this site."
    743 msgstr ""
    744 
    745 #: inc/elementor/class-tools.php:123
    746 msgid "Error occurred, the version selected is invalid. Try selecting different version."
    747 msgstr ""
    748 
    749 #: inc/elementor/class-tools.php:167
    750 msgid "Rollback to Previous Version"
    751 msgstr ""
    752 
    753741#. translators: %s: Style kit title.
    754 #: inc/elementor/class-tools.php:239
     742#: inc/elementor/class-tools.php:168
    755743msgid "Style Kit: %s <span style=\"color:#5C32B6;\">&#9679;</span>"
    756744msgstr ""
    757745
    758 #: inc/elementor/class-tools.php:273
     746#: inc/elementor/class-tools.php:202
    759747msgid "Apply Global Style Kit"
    760748msgstr ""
     
    14361424#. translators: %1$s: Link to Style Kits Pro. %2$s: Go Pro text.
    14371425#: inc/elementor/Promotions.php:154
    1438 #: inc/Plugin.php:222
    1439 #: inc/register-settings.php:79
     1426#: inc/Plugin.php:224
     1427#: inc/register-settings.php:69
    14401428#: client/blocks/BlockList.js:374
    14411429#: client/stylekits/stylekits.js:272
     
    15251513msgstr ""
    15261514
     1515#: inc/Featuresets/rollback/class-init.php:66
     1516msgid "Sorry, you are not allowed to rollback Style Kits plugin for this site."
     1517msgstr ""
     1518
     1519#: inc/Featuresets/rollback/class-init.php:74
     1520msgid "Error occurred, the version selected is invalid. Try selecting different version."
     1521msgstr ""
     1522
     1523#: inc/Featuresets/rollback/class-init.php:93
     1524msgid "Rollback to Previous Version"
     1525msgstr ""
     1526
     1527#: inc/Featuresets/rollback/class-rollback-downgrader-skin.php:31
     1528msgid "Rolling back plugin…"
     1529msgstr ""
     1530
     1531#: inc/Featuresets/rollback/class-rollback-downgrader-skin.php:73
     1532msgid "Rollback failed during installation."
     1533msgstr ""
     1534
     1535#: inc/Featuresets/rollback/class-rollback-downgrader-skin.php:84
     1536msgid "Rollback complete. The plugin files have been restored."
     1537msgstr ""
     1538
     1539#: inc/Featuresets/rollback/class-rollback-downgrader-skin.php:89
     1540msgid "Go to Plugins page"
     1541msgstr ""
     1542
    15271543#: inc/register-settings.php:39
    15281544msgid "Style Kits Library"
     
    15381554msgstr ""
    15391555
    1540 #: inc/register-settings.php:227
    1541 #: inc/register-settings.php:253
     1556#: inc/register-settings.php:218
     1557#: inc/register-settings.php:245
    15421558msgid "that in turn requires us to move away from our old licensing system. If you are an existing Style Kits Pro user please email us at"
    15431559msgstr ""
     
    16951711msgstr ""
    16961712
     1713#: inc/settings/class-settings-version-control.php:42
     1714msgid "Rollback Versions"
     1715msgstr ""
     1716
    16971717#: inc/settings/class-settings-version-control.php:43
    1698 msgid "Rollback Versions"
    1699 msgstr ""
    1700 
    1701 #: inc/settings/class-settings-version-control.php:44
    17021718msgid "If you are having issues with current version of Style Kits for Elementor, you can rollback to a previous stable version."
    17031719msgstr ""
    17041720
    1705 #: inc/settings/class-settings-version-control.php:49
     1721#: inc/settings/class-settings-version-control.php:48
    17061722msgid "Rollback Style Kits"
    17071723msgstr ""
    17081724
    1709 #: inc/settings/class-settings-version-control.php:61
     1725#: inc/settings/class-settings-version-control.php:60
    17101726msgid "Reinstall this version"
    17111727msgstr ""
    17121728
    1713 #: inc/settings/class-settings-version-control.php:73
     1729#: inc/settings/class-settings-version-control.php:72
    17141730msgid "Beta Features"
    17151731msgstr ""
    17161732
     1733#: inc/settings/class-settings-version-control.php:77
     1734msgid "Become a beta tester"
     1735msgstr ""
     1736
    17171737#: inc/settings/class-settings-version-control.php:78
    1718 msgid "Become a beta tester"
    1719 msgstr ""
    1720 
    1721 #: inc/settings/class-settings-version-control.php:79
    17221738msgid "Check this box to turn on beta updates for Style Kits and Style Kits Pro. The update will not be installed automatically, you always have the option to ignore it."
    17231739msgstr ""
     
    17711787msgstr ""
    17721788
    1773 #: inc/settings/views/html-admin-settings.php:76
     1789#: inc/settings/views/html-admin-settings.php:75
    17741790msgid "Meet Custom Library for Elementor"
    17751791msgstr ""
    17761792
    1777 #: inc/settings/views/html-admin-settings.php:86
    1778 msgid "Upgrade to Style Kits Pro with a 15% discount"
    1779 msgstr ""
    1780 
    1781 #: inc/settings/views/html-admin-settings.php:91
     1793#: inc/settings/views/html-admin-settings.php:94
    17821794msgid "Your Email"
    17831795msgstr ""
    17841796
    1785 #: inc/settings/views/html-admin-settings.php:92
     1797#: inc/settings/views/html-admin-settings.php:95
    17861798msgid "First Name"
    17871799msgstr ""
    17881800
    1789 #: inc/settings/views/html-admin-settings.php:93
     1801#: inc/settings/views/html-admin-settings.php:96
    17901802msgid "Send me the coupon"
    17911803msgstr ""
    17921804
    17931805#. translators: %s: Link to AnalogWP privacy policy.
    1794 #: inc/settings/views/html-admin-settings.php:100
     1806#: inc/settings/views/html-admin-settings.php:104
    17951807msgid "By submitting your details, you agree to our %s."
    17961808msgstr ""
    17971809
    1798 #: inc/settings/views/html-admin-settings.php:101
     1810#: inc/settings/views/html-admin-settings.php:105
    17991811msgid "privacy policy"
    18001812msgstr ""
    18011813
    1802 #: inc/settings/views/html-admin-settings.php:112
     1814#: inc/settings/views/html-admin-settings.php:116
    18031815msgid "Need help with Style Kits?"
    18041816msgstr ""
    18051817
    1806 #: inc/settings/views/html-admin-settings.php:113
     1818#: inc/settings/views/html-admin-settings.php:117
    18071819msgid "Visit the online docs"
    18081820msgstr ""
     
    18221834#. translators: Global Style Kit post title.
    18231835#: inc/Utils.php:134
    1824 #: inc/Utils.php:563
     1836#: inc/Utils.php:511
    18251837msgid "Global: %s"
    18261838msgstr ""
  • analogwp-templates/trunk/third-party/vendor/autoload.php

    r3396613 r3423828  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInit1b08ca5cbd161c385ffa17fb45ff3ea5::getLoader();
     22return ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff::getLoader();
  • analogwp-templates/trunk/third-party/vendor/composer/autoload_real.php

    r3396613 r3423828  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit1b08ca5cbd161c385ffa17fb45ff3ea5
     5class ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInit1b08ca5cbd161c385ffa17fb45ff3ea5', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInit1b08ca5cbd161c385ffa17fb45ff3ea5', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit9c2c1a0d22b5aa52162e713b319acbff', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInit1b08ca5cbd161c385ffa17fb45ff3ea5::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff::getInitializer($loader));
    3131
    3232        $loader->setClassMapAuthoritative(true);
  • analogwp-templates/trunk/third-party/vendor/composer/autoload_static.php

    r3396613 r3423828  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit1b08ca5cbd161c385ffa17fb45ff3ea5
     7class ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff
    88{
    99    public static $classMap = array (
     
    2525    {
    2626        return \Closure::bind(function () use ($loader) {
    27             $loader->classMap = ComposerStaticInit1b08ca5cbd161c385ffa17fb45ff3ea5::$classMap;
     27            $loader->classMap = ComposerStaticInit9c2c1a0d22b5aa52162e713b319acbff::$classMap;
    2828
    2929        }, null, ClassLoader::class);
Note: See TracChangeset for help on using the changeset viewer.