Plugin Directory

Changeset 3364884


Ignore:
Timestamp:
09/20/2025 08:17:21 AM (5 months ago)
Author:
neebplugins
Message:

Release 1.0.4

Location:
kanban-for-woocommerce
Files:
261 added
1 deleted
24 edited

Legend:

Unmodified
Added
Removed
  • kanban-for-woocommerce/trunk/kanban-for-woocommerce.php

    r3345486 r3364884  
    11<?php
     2
    23/**
    34 * Plugin Name:     Kanban for WooCommerce
    45 * Plugin URI:      https://neebplugins.com/plugin/kanban-for-woocommerce
    56 * Description:     Visual Kanban board for managing WooCommerce orders by status.
    6  * Version: 1.0.3
     7 * Version: 1.0.4
    78 * Author:          NeeBPlugins
    89 * Author URI:      https://neebplugins.com
     
    2021 * @package         Kanban_For_WooCommerce
    2122 */
    22 
    23 if ( ! defined( 'ABSPATH' ) ) {
    24     exit; // Exit if accessed directly
     23if ( !defined( 'ABSPATH' ) ) {
     24    exit;
     25    // Exit if accessed directly
    2526}
    26 
    27 defined( 'KBFWC_VERSION' ) or define( 'KBFWC_VERSION', '1.0.3' );
     27defined( 'KBFWC_VERSION' ) or define( 'KBFWC_VERSION', '1.0.4' );
    2828defined( 'KBFWC_FILE' ) or define( 'KBFWC_FILE', __FILE__ );
    2929defined( 'KBFWC_BASE' ) or define( 'KBFWC_BASE', plugin_basename( KBFWC_FILE ) );
    3030defined( 'KBFWC_DIR' ) or define( 'KBFWC_DIR', plugin_dir_path( KBFWC_FILE ) );
    3131defined( 'KBFWC_URL' ) or define( 'KBFWC_URL', plugins_url( '/', KBFWC_FILE ) );
    32 
    3332if ( file_exists( KBFWC_DIR . 'vendor/autoload.php' ) ) {
    34     require_once KBFWC_DIR . 'vendor/autoload.php';
     33    require_once KBFWC_DIR . 'vendor/autoload.php';
    3534} else {
    36     wp_die( 'Plugin dependencies not installed!!!' );
     35    wp_die( 'Plugin dependencies not installed!!!' );
    3736}
    38 
    3937use NeeBPlugins\KanbanForWooCommerce\Backend as KBFWC_Backend;
    4038use NeeBPlugins\KanbanForWooCommerce\Rest_API as KBFWC_API;
     39if ( !function_exists( 'kbfwc_fs' ) ) {
     40    // Create a helper function for easy SDK access.
     41    function kbfwc_fs() {
     42        global $kbfwc_fs;
     43        if ( !isset( $kbfwc_fs ) ) {
     44            // Activate multisite network integration.
     45            if ( !defined( 'WP_FS__PRODUCT_18946_MULTISITE' ) ) {
     46                define( 'WP_FS__PRODUCT_18946_MULTISITE', true );
     47            }
     48            // Include Freemius SDK.
     49            $kbfwc_fs = fs_dynamic_init( array(
     50                'id'               => '18946',
     51                'slug'             => 'kanban-for-woocommerce',
     52                'premium_slug'     => 'multiapprove-bundle-premium',
     53                'type'             => 'plugin',
     54                'public_key'       => 'pk_e06c06114aff6c40dd49312d7a4cc',
     55                'is_premium'       => false,
     56                'has_addons'       => false,
     57                'has_paid_plans'   => true,
     58                'is_org_compliant' => true,
     59                'menu'             => array(
     60                    'slug'    => 'kanban-for-woocommerce',
     61                    'account' => true,
     62                    'support' => false,
     63                ),
     64                'is_live'          => true,
     65                'anonymous_mode'   => true,
     66            ) );
     67        }
     68        return $kbfwc_fs;
     69    }
    4170
    42 if ( ! function_exists( 'kbfwc_fs' ) ) {
    43     // Create a helper function for easy SDK access.
    44     function kbfwc_fs() {
    45         global $kbfwc_fs;
     71    // Init Freemius .
     72    kbfwc_fs();
     73    // Signal that SDK was initiated .
     74    do_action( 'kbfwc_fs_loaded' );
     75    function kbfwc_plugin_icon() {
     76        return KBFWC_DIR . '/assets/img/icon.png';
     77    }
    4678
    47         if ( ! isset( $kbfwc_fs ) ) {
    48             // Activate multisite network integration.
    49             if ( ! defined( 'WP_FS__PRODUCT_18946_MULTISITE' ) ) {
    50                 define( 'WP_FS__PRODUCT_18946_MULTISITE', true );
    51             }
    52 
    53             // Include Freemius SDK.
    54             $kbfwc_fs = fs_dynamic_init(
    55                 array(
    56                     'id'               => '18946',
    57                     'slug'             => 'kanban-for-woocommerce',
    58                     'premium_slug'     => 'multiapprove-bundle-premium',
    59                     'type'             => 'plugin',
    60                     'public_key'       => 'pk_e06c06114aff6c40dd49312d7a4cc',
    61                     'is_premium'       => false,
    62                     'has_addons'       => false,
    63                     'has_paid_plans'   => true,
    64                     'is_org_compliant' => true,
    65                     'menu'             => array(
    66                         'slug'    => 'kanban-for-woocommerce',
    67                         'account' => true,
    68                         'support' => false,
    69                     ),
    70                     'is_live'          => true,
    71                     'anonymous_mode'   => true,
    72                 )
    73             );
    74         }
    75 
    76         return $kbfwc_fs;
    77     }
    78 
    79     // Init Freemius .
    80     kbfwc_fs();
    81     // Signal that SDK was initiated .
    82     do_action( 'kbfwc_fs_loaded' );
    83 
    84     function kbfwc_plugin_icon() {
    85         return KBFWC_DIR . '/assets/img/icon.png';
    86     }
    87 
    88     kbfwc_fs()->add_filter( 'plugin_icon', 'kbfwc_plugin_icon' );
    89 
    90     // Change Pricing URL
    91     kbfwc_fs()->add_filter(
    92         'pricing_url',
    93         function ( $url ) {
    94             $url = 'https://neebplugins.com/plugin/kanban-for-woocommerce/#pricing';
    95             return esc_url( $url );
    96         }
    97     );
     79    kbfwc_fs()->add_filter( 'plugin_icon', 'kbfwc_plugin_icon' );
     80    // Change Pricing URL
     81    kbfwc_fs()->add_filter( 'pricing_url', function ( $url ) {
     82        $url = 'https://neebplugins.com/plugin/kanban-for-woocommerce/#pricing';
     83        return esc_url( $url );
     84    } );
    9885}
    99 
    10086/**
    10187 * Main plugin class file.
     
    10389 * @package Kanban_For_WooCommerce
    10490 */
     91if ( !class_exists( 'Kanban_For_WooCommerce' ) ) {
     92    /**
     93     * Main plugin class.
     94     *
     95     * @class Kanban_For_WooCommerce
     96     * @version 1.0.0
     97     */
     98    final class Kanban_For_WooCommerce {
     99        /**
     100         * The single instance of the class.
     101         *
     102         * @var Kanban_For_WooCommerce|null
     103         * @since 1.0.0
     104         */
     105        protected static $_instance = null;
    105106
    106 if ( ! class_exists( 'Kanban_For_WooCommerce' ) ) {
     107        // phpcs:ignore WordPress.NamingConventions.ValidVariableName.Variable
     108        /**
     109         * Get Instance
     110         *
     111         * @since 1.0.0
     112         * @return object initialized object of class.
     113         */
     114        public static function get_instance() {
     115            if ( !isset( self::$_instance ) ) {
     116                self::$_instance = new self();
     117            }
     118            return self::$_instance;
     119        }
    107120
    108     /**
    109      * Main plugin class.
    110      *
    111      * @class Kanban_For_WooCommerce
    112      * @version 1.0.0
    113      */
    114     final class Kanban_For_WooCommerce {
     121        /**
     122         * Init Addon.
     123         *
     124         * @since 1.0.0
     125         */
     126        public function __construct() {
     127            // WooCommerce Compatibilities
     128            add_action( 'before_woocommerce_init', array($this, 'hpos_compatibility') );
     129            // Load Backend
     130            add_action( 'plugins_loaded', array($this, 'run_plugin') );
     131            // Add action links
     132            add_action( 'plugin_action_links_' . plugin_basename( __FILE__ ), array($this, 'action_links') );
     133        }
    115134
    116         /**
    117          * The single instance of the class.
    118          *
    119          * @var Kanban_For_WooCommerce|null
    120          * @since 1.0.0
    121          */
    122         protected static $_instance = null; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.Variable
     135        /**
     136         * HPOS Compatibility.
     137         *
     138         * @since 1.0.0
     139         */
     140        public function hpos_compatibility() {
     141            if ( class_exists( '\\Automattic\\WooCommerce\\Utilities\\FeaturesUtil' ) ) {
     142                // HPOS Compatibility
     143                \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', KBFWC_FILE, true );
     144            }
     145        }
    123146
    124         /**
    125          * Get Instance
    126          *
    127          * @since 1.0.0
    128          * @return object initialized object of class.
    129          */
    130         public static function get_instance() {
    131             if ( ! isset( self::$_instance ) ) {
    132                 self::$_instance = new self();
    133             }
    134             return self::$_instance;
    135         }
     147        /**
     148         * Run Plugin.
     149         *
     150         * @since 1.0.1
     151         */
     152        public function run_plugin() {
     153            if ( is_admin() ) {
     154                // Load admin backend
     155                KBFWC_Backend::get_instance();
     156            }
     157        }
    136158
    137         /**
    138          * Init Addon.
    139          *
    140          * @since 1.0.0
    141          */
    142         public function __construct() {
    143             // WooCommerce Compatibilities
    144             add_action( 'before_woocommerce_init', array( $this, 'hpos_compatibility' ) );
    145             // Load Backend
    146             add_action( 'plugins_loaded', array( $this, 'run_plugin' ) );
    147             // Add action links
    148             add_action( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'action_links' ) );
    149         }
     159        /**
     160         * Prevent plugin activation on multisite
     161         *
     162         * @param string $plugin The plugin being activated.
     163         * @param bool   $network_wide Whether the activation is network-wide.
     164         * @return void
     165         * @since 1.0.1
     166         * @access public
     167         */
     168        public static function prevent_activation_on_multisite() {
     169            if ( !kbfwc_fs()->is_paying() ) {
     170                // phpcs:ignore
     171                if ( is_multisite() ) {
     172                    $upgrade_url = '<a href="' . kbfwc_fs()->get_upgrade_url() . '">PRO</a>';
     173                    wp_die( 'The "Kanban for WooCommerce" plugin is not supported on multisite. Please upgrade to ' . wp_kses( $upgrade_url, array(
     174                        'a' => array(
     175                            'href' => array(),
     176                        ),
     177                    ) ) );
     178                }
     179            }
     180        }
    150181
    151         /**
    152          * HPOS Compatibility.
    153         *
    154          * @since 1.0.0
    155          */
    156         public function hpos_compatibility() {
    157             if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
    158                 // HPOS Compatibility
    159                 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', KBFWC_FILE, true );
    160             }
    161         }
     182        /**
     183         * Action Links
     184        *
     185         * @param  array $links
     186         * @return array
     187         * @since 1.0.2
     188         */
     189        public function action_links( $links ) {
     190            $links = array_merge( array('<a target="blank" href="' . esc_url( 'https://neebplugins.com/support-desk/' ) . '">' . __( 'Support Desk', 'kanban-for-woocommerce' ) . '</a>'), $links );
     191            return $links;
     192        }
    162193
    163         /**
    164          * Run Plugin.
    165          *
    166          * @since 1.0.1
    167          */
    168         public function run_plugin() {
    169             if ( is_admin() ) {
    170                 // Load admin backend
    171                 KBFWC_Backend::get_instance();
    172             }
    173         }
     194    }
    174195
    175         /**
    176          * Prevent plugin activation on multisite
    177          *
    178          * @param string $plugin The plugin being activated.
    179          * @param bool   $network_wide Whether the activation is network-wide.
    180          * @return void
    181          * @since 1.0.1
    182          * @access public
    183          */
    184         public static function prevent_activation_on_multisite() {
    185 
    186             if ( ! kbfwc_fs()->is_paying() ) { // phpcs:ignore
    187                 if ( is_multisite() ) {
    188                     $upgrade_url = '<a href="' . kbfwc_fs()->get_upgrade_url() . '">PRO</a>';
    189                     wp_die(
    190                         'The "Kanban for WooCommerce" plugin is not supported on multisite. Please upgrade to ' . wp_kses(
    191                             $upgrade_url,
    192                             array(
    193                                 'a' => array(
    194                                     'href' => array(),
    195                                 ),
    196                             )
    197                         )
    198                     );
    199                 }
    200             }
    201         }
    202 
    203         /**
    204          * Action Links
    205          *
    206          * @param  array $links
    207          * @return array
    208          * @since 1.0.2
    209          */
    210         public function action_links( $links ) {
    211             $links = array_merge(
    212                 array(
    213                     '<a target="blank" href="' . esc_url( 'https://neebplugins.com/support-desk/' ) . '">' . __( 'Support Desk', 'kanban-for-woocommerce' ) . '</a>',
    214                 ),
    215                 $links
    216             );
    217             return $links;
    218         }
    219     }
    220 
    221     // Initiate Loader
    222     $kbfwc_instance = Kanban_For_WooCommerce::get_instance();
    223 
    224     register_activation_hook( __FILE__, array( $kbfwc_instance, 'prevent_activation_on_multisite' ) );
    225 
     196    // Initiate Loader
     197    $kbfwc_instance = Kanban_For_WooCommerce::get_instance();
     198    register_activation_hook( __FILE__, array($kbfwc_instance, 'prevent_activation_on_multisite') );
    226199}
  • kanban-for-woocommerce/trunk/languages/kanban-for-woocommerce.pot

    r3331563 r3364884  
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-07-21T11:59:06+00:00\n"
     12"POT-Creation-Date: 2025-09-19T06:17:22+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
  • kanban-for-woocommerce/trunk/readme.txt

    r3331563 r3364884  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 1.0.3
     8Stable tag: 1.0.4
    99License: GPL-2.0+
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.txt
     
    5252== Changelog ==
    5353
     54= 1.0.4 =
     55* SDK Update
     56
    5457= 1.0.3 =
    5558* WC Order optimization
     
    7275== Upgrade Notice ==
    7376
    74 = 1.0.3 =
    75 Various improvements
     77= 1.0.4 =
     78SDK Update
  • kanban-for-woocommerce/trunk/vendor/composer/installed.json

    r3331563 r3364884  
    33        {
    44            "name": "freemius/wordpress-sdk",
    5             "version": "2.12.1",
    6             "version_normalized": "2.12.1.0",
     5            "version": "2.12.2",
     6            "version_normalized": "2.12.2.0",
    77            "source": {
    88                "type": "git",
    99                "url": "https://github.com/Freemius/wordpress-sdk.git",
    10                 "reference": "fedeba08eb3e62af5f84bd6d602f98636467cffc"
     10                "reference": "241fbfc91151f85d8ebeb75343caf29bda1d3208"
    1111            },
    1212            "dist": {
    1313                "type": "zip",
    14                 "url": "https://api.github.com/repos/Freemius/wordpress-sdk/zipball/fedeba08eb3e62af5f84bd6d602f98636467cffc",
    15                 "reference": "fedeba08eb3e62af5f84bd6d602f98636467cffc",
     14                "url": "https://api.github.com/repos/Freemius/wordpress-sdk/zipball/241fbfc91151f85d8ebeb75343caf29bda1d3208",
     15                "reference": "241fbfc91151f85d8ebeb75343caf29bda1d3208",
    1616                "shasum": ""
    1717            },
     
    2828                "wp-coding-standards/wpcs": "^2.3"
    2929            },
    30             "time": "2025-07-06T13:27:13+00:00",
     30            "time": "2025-09-15T14:36:55+00:00",
    3131            "type": "library",
    3232            "installation-source": "dist",
     
    5353            "support": {
    5454                "issues": "https://github.com/Freemius/wordpress-sdk/issues",
    55                 "source": "https://github.com/Freemius/wordpress-sdk/tree/2.12.1"
     55                "source": "https://github.com/Freemius/wordpress-sdk/tree/2.12.2"
    5656            },
    5757            "install-path": "../freemius/wordpress-sdk"
  • kanban-for-woocommerce/trunk/vendor/composer/installed.php

    r3331563 r3364884  
    22    'root' => array(
    33        'name' => 'neebplugins/kanban-for-woocommerce',
    4         'pretty_version' => 'dev-master',
    5         'version' => 'dev-master',
    6         'reference' => '1e9ecd2a5b87fcb899d433a1ed6ddf3d66df6a42',
     4        'pretty_version' => '1.0.4',
     5        'version' => '1.0.4.0',
     6        'reference' => null,
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'freemius/wordpress-sdk' => array(
    14             'pretty_version' => '2.12.1',
    15             'version' => '2.12.1.0',
    16             'reference' => 'fedeba08eb3e62af5f84bd6d602f98636467cffc',
     14            'pretty_version' => '2.12.2',
     15            'version' => '2.12.2.0',
     16            'reference' => '241fbfc91151f85d8ebeb75343caf29bda1d3208',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../freemius/wordpress-sdk',
     
    2121        ),
    2222        'neebplugins/kanban-for-woocommerce' => array(
    23             'pretty_version' => 'dev-master',
    24             'version' => 'dev-master',
    25             'reference' => '1e9ecd2a5b87fcb899d433a1ed6ddf3d66df6a42',
     23            'pretty_version' => '1.0.4',
     24            'version' => '1.0.4.0',
     25            'reference' => null,
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
  • kanban-for-woocommerce/trunk/vendor/composer/platform_check.php

    r3294731 r3364884  
    2020        }
    2121    }
    22     trigger_error(
    23         'Composer detected issues in your platform: ' . implode(' ', $issues),
    24         E_USER_ERROR
     22    throw new \RuntimeException(
     23        'Composer detected issues in your platform: ' . implode(' ', $issues)
    2524    );
    2625}
  • kanban-for-woocommerce/trunk/vendor/freemius/wordpress-sdk/assets/css/admin/account.css

    r3315189 r3364884  
    1 label.fs-tag,span.fs-tag{background:#ffba00;border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.fs-notice[data-id=license_not_whitelabeled].success,.fs-notice[data-id=license_whitelabeled].success{border-left-color:#00a0d2;color:inherit}.fs-notice[data-id=license_not_whitelabeled].success label.fs-plugin-title,.fs-notice[data-id=license_whitelabeled].success label.fs-plugin-title{display:none}#fs_account .postbox,#fs_account .widefat{max-width:800px}#fs_account h3{border-bottom:1px solid #f1f1f1;font-size:1.3em;line-height:1.4;margin:0 0 12px;padding:12px 15px}#fs_account h3 .dashicons{font-size:1.3em;height:26px;width:26px}#fs_account i.dashicons{font-size:1.2em;height:1.2em;width:1.2em}#fs_account .dashicons{vertical-align:middle}#fs_account .fs-header-actions{font-size:.9em;position:absolute;right:15px;top:17px}#fs_account .fs-header-actions ul{margin:0}#fs_account .fs-header-actions li{float:left}#fs_account .fs-header-actions li form{display:inline-block}#fs_account .fs-header-actions li a{text-decoration:none}#fs_account_details .button-group{float:right}.rtl #fs_account .fs-header-actions{left:15px;right:auto}.fs-key-value-table{width:100%}.fs-key-value-table form{display:inline-block}.fs-key-value-table tr td:first-child{text-align:right}.fs-key-value-table tr td:first-child nobr{font-weight:700}.fs-key-value-table tr td:first-child form{display:block}.fs-key-value-table tr td.fs-right{text-align:right}.fs-key-value-table tr.fs-odd{background:#ebebeb}.fs-key-value-table td,.fs-key-value-table th{padding:10px}.fs-key-value-table code{line-height:28px}.fs-key-value-table code,.fs-key-value-table input[type=text],.fs-key-value-table var{background:none;color:#0073aa;font-size:16px}.fs-key-value-table input[type=text]{font-weight:700;width:100%}.fs-field-beta_program label{margin-left:7px}label.fs-tag{border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag,label.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error{background:#dc3232}#fs_sites .fs-scrollable-table .fs-table-body{border:1px solid #e5e5e5;max-height:200px;overflow:auto}#fs_sites .fs-scrollable-table .fs-table-body>table.widefat{border:none!important}#fs_sites .fs-scrollable-table .fs-main-column{width:100%}#fs_sites .fs-scrollable-table .fs-site-details td:first-of-type{color:gray;text-align:right;width:1px}#fs_sites .fs-scrollable-table .fs-site-details td:last-of-type{text-align:right}#fs_sites .fs-scrollable-table .fs-install-details table tr td{white-space:nowrap;width:1px}#fs_sites .fs-scrollable-table .fs-install-details table tr td:last-of-type{width:auto}#fs_addons h3{border:none;margin-bottom:0;padding:4px 5px}#fs_addons td{vertical-align:middle}#fs_addons thead{white-space:nowrap}#fs_addons td:first-child,#fs_addons th:first-child{font-weight:700;text-align:left}#fs_addons td:last-child,#fs_addons th:last-child{text-align:right}#fs_addons th{font-weight:700}#fs_billing_address{width:100%}#fs_billing_address tr td{padding:5px;width:50%}#fs_billing_address tr:first-of-type td{padding-top:0}#fs_billing_address span{font-weight:700}#fs_billing_address input,#fs_billing_address select{display:block;margin-top:5px;width:100%}#fs_billing_address input::-moz-placeholder,#fs_billing_address select::-moz-placeholder{color:transparent}#fs_billing_address input::placeholder,#fs_billing_address select::placeholder{color:transparent}#fs_billing_address input.fs-read-mode,#fs_billing_address select.fs-read-mode{background:none;border-color:transparent;border-bottom:1px dashed #ccc;color:#777;padding-left:0}#fs_billing_address.fs-read-mode td span{display:none}#fs_billing_address.fs-read-mode input,#fs_billing_address.fs-read-mode select{background:none;border-color:transparent;border-bottom:1px dashed #ccc;color:#777;padding-left:0}#fs_billing_address.fs-read-mode input::-moz-placeholder,#fs_billing_address.fs-read-mode select::-moz-placeholder{color:#ccc}#fs_billing_address.fs-read-mode input::placeholder,#fs_billing_address.fs-read-mode select::placeholder{color:#ccc}#fs_billing_address button{display:block;width:100%}@media screen and (max-width:639px){#fs_account .fs-header-actions{margin:0 0 12px;padding:0 15px 12px;position:static}#fs_account .fs-header-actions li{display:inline-block;float:none}#fs_account #fs_account_details,#fs_account #fs_account_details tbody,#fs_account #fs_account_details td,#fs_account #fs_account_details th,#fs_account #fs_account_details tr{display:block}#fs_account #fs_account_details tr td:first-child{text-align:left}#fs_account #fs_account_details tr td:nth-child(2){padding:0 12px}#fs_account #fs_account_details tr td:nth-child(2) code{margin:0;padding:0}#fs_account #fs_account_details tr td:nth-child(2) label{margin-left:0}#fs_account #fs_account_details tr td:nth-child(3){text-align:left}#fs_account #fs_account_details tr.fs-field-plan td:nth-child(2) .button-group{float:none;margin:12px 0}}
     1label.fs-tag,span.fs-tag{background:#ffba00;border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.fs-notice[data-id=license_not_whitelabeled].success,.fs-notice[data-id=license_whitelabeled].success{border-left-color:#00a0d2;color:inherit}.fs-notice[data-id=license_not_whitelabeled].success label.fs-plugin-title,.fs-notice[data-id=license_whitelabeled].success label.fs-plugin-title{display:none}#fs_account .postbox,#fs_account .widefat{max-width:800px}#fs_account h3{border-bottom:1px solid #f1f1f1;font-size:1.3em;line-height:1.4;margin:0 0 12px;padding:12px 15px}#fs_account h3 .dashicons{font-size:1.3em;height:26px;width:26px}#fs_account i.dashicons{font-size:1.2em;height:1.2em;width:1.2em}#fs_account .dashicons{vertical-align:middle}#fs_account .fs-header-actions{font-size:.9em;position:absolute;right:15px;top:17px}#fs_account .fs-header-actions ul{margin:0}#fs_account .fs-header-actions li{float:left}#fs_account .fs-header-actions li form{display:inline-block}#fs_account .fs-header-actions li a{text-decoration:none}#fs_account_details .button-group{float:none}.rtl #fs_account .fs-header-actions{left:15px;right:auto}.fs-key-value-table{width:100%}.fs-key-value-table form{display:inline-block}.fs-key-value-table tr td:first-child{text-align:right}.fs-key-value-table tr td:first-child nobr{font-weight:700}.fs-key-value-table tr td:first-child form{display:block}.fs-key-value-table tr td.fs-right{text-align:right}.fs-key-value-table tr.fs-odd{background:#ebebeb}.fs-key-value-table td,.fs-key-value-table th{padding:10px}.fs-key-value-table code{line-height:28px}.fs-key-value-table code,.fs-key-value-table input[type=text],.fs-key-value-table var{background:none;color:#0073aa;font-size:16px}.fs-key-value-table input[type=text]{font-weight:700;width:100%}.fs-field-beta_program label{margin-left:7px}label.fs-tag{border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag,label.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error{background:#dc3232}#fs_sites .fs-scrollable-table .fs-table-body{border:1px solid #e5e5e5;max-height:200px;overflow:auto}#fs_sites .fs-scrollable-table .fs-table-body>table.widefat{border:none!important}#fs_sites .fs-scrollable-table .fs-main-column{width:100%}#fs_sites .fs-scrollable-table .fs-site-details td:first-of-type{color:gray;text-align:right;width:1px}#fs_sites .fs-scrollable-table .fs-site-details td:last-of-type{text-align:right}#fs_sites .fs-scrollable-table .fs-install-details table tr td{white-space:nowrap;width:1px}#fs_sites .fs-scrollable-table .fs-install-details table tr td:last-of-type{width:auto}#fs_addons h3{border:none;margin-bottom:0;padding:4px 5px}#fs_addons td{vertical-align:middle}#fs_addons thead{white-space:nowrap}#fs_addons td:first-child,#fs_addons th:first-child{font-weight:700;text-align:left}#fs_addons td:last-child,#fs_addons th:last-child{text-align:right}#fs_addons th{font-weight:700}#fs_billing_address{width:100%}#fs_billing_address tr td{padding:5px;width:50%}#fs_billing_address tr:first-of-type td{padding-top:0}#fs_billing_address span{font-weight:700}#fs_billing_address input,#fs_billing_address select{display:block;margin-top:5px;width:100%}#fs_billing_address input::-moz-placeholder,#fs_billing_address select::-moz-placeholder{color:transparent}#fs_billing_address input::placeholder,#fs_billing_address select::placeholder{color:transparent}#fs_billing_address input.fs-read-mode,#fs_billing_address select.fs-read-mode{background:none;border-color:transparent;border-bottom:1px dashed #ccc;color:#777;padding-left:0}#fs_billing_address.fs-read-mode td span{display:none}#fs_billing_address.fs-read-mode input,#fs_billing_address.fs-read-mode select{background:none;border-color:transparent;border-bottom:1px dashed #ccc;color:#777;padding-left:0}#fs_billing_address.fs-read-mode input::-moz-placeholder,#fs_billing_address.fs-read-mode select::-moz-placeholder{color:#ccc}#fs_billing_address.fs-read-mode input::placeholder,#fs_billing_address.fs-read-mode select::placeholder{color:#ccc}#fs_billing_address button{display:block;width:100%}@media screen and (max-width:639px){#fs_account .fs-header-actions{margin:0 0 12px;padding:0 15px 12px;position:static}#fs_account .fs-header-actions li{display:inline-block;float:none}#fs_account #fs_account_details,#fs_account #fs_account_details tbody,#fs_account #fs_account_details td,#fs_account #fs_account_details th,#fs_account #fs_account_details tr{display:block}#fs_account #fs_account_details tr td:first-child{text-align:left}#fs_account #fs_account_details tr td:nth-child(2){padding:0 12px}#fs_account #fs_account_details tr td:nth-child(2) code{margin:0;padding:0}#fs_account #fs_account_details tr td:nth-child(2) label{margin-left:0}#fs_account #fs_account_details tr td:nth-child(3){text-align:left}#fs_account #fs_account_details tr.fs-field-plan td:nth-child(2) .button-group{float:none;margin:12px 0}}
  • kanban-for-woocommerce/trunk/vendor/freemius/wordpress-sdk/includes/class-freemius.php

    r3331563 r3364884  
    88408840                ) {
    88418841                    // Plugin was site level activated.
    8842                     $site_active_plugins_cache->plugins[ $basename ]              = $network_plugins[ $basename ];
    8843                     $site_active_plugins_cache->plugins[ $basename ]['is_active'] = true;
     8842                    $site_active_plugins_cache->plugins[ $basename ] = array(
     8843                        'slug'           => $network_plugins[ $basename ]['slug'],
     8844                        'version'        => $network_plugins[ $basename ]['Version'],
     8845                        'title'          => $network_plugins[ $basename ]['Name'],
     8846                        'is_active'      => $is_active,
     8847                        'is_uninstalled' => false,
     8848                    );
    88448849                } else if ( isset( $site_active_plugins_cache->plugins[ $basename ] ) &&
    88458850                            ! isset( $site_active_plugins[ $basename ] )
     
    1577815783            $this->_logger->entrance();
    1577915784
     15785            $fs_hook_snapshot = new FS_Hook_Snapshot();
     15786            // Remove all filters from `switch_blog`.
     15787            $fs_hook_snapshot->remove( 'switch_blog' );
     15788
    1578015789            $switched = false;
    1578115790
     
    1583615845                restore_current_blog();
    1583715846            }
     15847
     15848            // Add the filters back to `switch_blog`.
     15849            $fs_hook_snapshot->restore( 'switch_blog' );
    1583815850
    1583915851            return $info;
     
    2350623518                    }
    2350723519
    23508                     $result = $api->get( 'pricing.json?' . http_build_query( $params ) );
     23520                    $result = $api->get( $this->add_show_pending( 'pricing.json?' . http_build_query( $params ) ) );
    2350923521                    break;
    2351023522                case 'start_trial':
     
    2468724699                    $this->premium_plugin_basename();
    2468824700
    24689                 return sprintf(
    24690                 /* translators: %1$s: Product title; %2$s: Plan title */
    24691                     $this->get_text_inline( ' The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s', 'activate-premium-version' ),
    24692                     sprintf( '<em>%s</em>', esc_html( $this->get_plugin_title() ) ),
    24693                     $plan_title,
    24694                     sprintf(
    24695                         '<a style="margin-left: 10px;" href="%s"><button class="button button-primary">%s</button></a>',
    24696                         ( $this->is_theme() ?
    24697                             wp_nonce_url( 'themes.php?action=activate&amp;stylesheet=' . $premium_theme_slug_or_plugin_basename, 'switch-theme_' . $premium_theme_slug_or_plugin_basename ) :
    24698                             wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $premium_theme_slug_or_plugin_basename, 'activate-plugin_' . $premium_theme_slug_or_plugin_basename ) ),
    24699                         esc_html( sprintf(
    24700                         /* translators: %s: Plan title */
    24701                             $this->get_text_inline( 'Activate %s features', 'activate-x-features' ),
    24702                             $plan_title
    24703                         ) )
    24704                     )
    24705                 );
     24701                if ( is_admin() ) {
     24702                    return sprintf(
     24703                        /* translators: %1$s: Product title; %2$s: Plan title */
     24704                        $this->get_text_inline( ' The paid version of %1$s is already installed. Please activate it to start benefiting from the %2$s features. %3$s', 'activate-premium-version' ),
     24705                        sprintf( '<em>%s</em>', esc_html( $this->get_plugin_title() ) ),
     24706                        $plan_title,
     24707                        sprintf(
     24708                            '<a style="margin-left: 10px;" href="%s"><button class="button button-primary">%s</button></a>',
     24709                            ( $this->is_theme() ?
     24710                                wp_nonce_url( 'themes.php?action=activate&amp;stylesheet=' . $premium_theme_slug_or_plugin_basename, 'switch-theme_' . $premium_theme_slug_or_plugin_basename ) :
     24711                                wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $premium_theme_slug_or_plugin_basename, 'activate-plugin_' . $premium_theme_slug_or_plugin_basename ) ),
     24712                            esc_html( sprintf(
     24713                            /* translators: %s: Plan title */
     24714                                $this->get_text_inline( 'Activate %s features', 'activate-x-features' ),
     24715                                $plan_title
     24716                            ) )
     24717                        )
     24718                    );
     24719                } else {
     24720                    return sprintf(
     24721                        /* translators: %1$s: Product title; %3$s: Plan title */
     24722                        $this->get_text_inline( ' The paid version of %1$s is already installed. Please navigate to the %2$s to activate it and start benefiting from the %3$s features.', 'activate-premium-version-plugins-page' ),
     24723                        sprintf( '<em>%s</em>', esc_html( $this->get_plugin_title() ) ),
     24724                        sprintf(
     24725                            '<a href="%s">%s</a>',
     24726                            admin_url( $this->is_theme() ? 'themes.php' : 'plugins.php' ),
     24727                            ( $this->is_theme() ?
     24728                                $this->get_text_inline( 'Themes page', 'themes-page' ) :
     24729                                $this->get_text_inline( 'Plugins page', 'plugins-page' ) )
     24730                        ),
     24731                        $plan_title
     24732                    );
     24733                }
    2470624734            } else {
    2470724735                // @since 1.2.1.5 The free version is auto deactivated.
  • kanban-for-woocommerce/trunk/vendor/freemius/wordpress-sdk/includes/entities/class-fs-plugin-plan.php

    r3331563 r3364884  
    7676         */
    7777        public $support_phone;
     78        /**
     79         * @var string Support skype username.
     80         *
     81         * @deprecated 2.12.1
     82         */
     83        public $support_skype = '';
    7884        /**
    7985         * @var bool Is personal success manager supported with the plan.
  • kanban-for-woocommerce/trunk/vendor/freemius/wordpress-sdk/languages/freemius.pot

    r3315189 r3364884  
    99"Language-Team: Freemius Team <[email protected]>\n"
    1010"Last-Translator: Vova Feldman <[email protected]>\n"
    11 "POT-Creation-Date: 2025-05-11 06:56+0000\n"
     11"POT-Creation-Date: 2025-09-15 07:44+0000\n"
    1212"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
    1313"X-Poedit-Basepath: ..\n"
     
    127127
    128128#. translators: %s: License type (e.g. you have a professional license)
    129 #: includes/class-freemius.php:4549
     129#: includes/class-freemius.php:4547
    130130msgid "You have purchased a %s license."
    131131msgstr ""
    132132
    133 #: includes/class-freemius.php:4553
     133#: includes/class-freemius.php:4551
    134134msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box."
    135135msgstr ""
    136136
    137 #: includes/class-freemius.php:4563, includes/class-freemius.php:21006, includes/class-freemius.php:24736
     137#: includes/class-freemius.php:4561, includes/class-freemius.php:21022, includes/class-freemius.php:24774
    138138msgctxt "interjection expressing joy or exuberance"
    139139msgid "Yee-haw"
    140140msgstr ""
    141141
    142 #: includes/class-freemius.php:4577
     142#: includes/class-freemius.php:4575
    143143msgctxt "addonX cannot run without pluginY"
    144144msgid "%s cannot run without %s."
    145145msgstr ""
    146146
    147 #: includes/class-freemius.php:4578
     147#: includes/class-freemius.php:4576
    148148msgctxt "addonX cannot run..."
    149149msgid "%s cannot run without the plugin."
    150150msgstr ""
    151151
    152 #: includes/class-freemius.php:4580, includes/class-freemius.php:5808, includes/class-freemius.php:13562, includes/class-freemius.php:14323, includes/class-freemius.php:18112, includes/class-freemius.php:18232, includes/class-freemius.php:18409, includes/class-freemius.php:20737, includes/class-freemius.php:21860, includes/class-freemius.php:22896, includes/class-freemius.php:23026, includes/class-freemius.php:23169, templates/add-ons.php:57
     152#: includes/class-freemius.php:4578, includes/class-freemius.php:5806, includes/class-freemius.php:13565, includes/class-freemius.php:14326, includes/class-freemius.php:18122, includes/class-freemius.php:18242, includes/class-freemius.php:18419, includes/class-freemius.php:20753, includes/class-freemius.php:21876, includes/class-freemius.php:22918, includes/class-freemius.php:23048, includes/class-freemius.php:23191, templates/add-ons.php:57
    153153msgctxt "exclamation"
    154154msgid "Oops"
    155155msgstr ""
    156156
    157 #: includes/class-freemius.php:4859
     157#: includes/class-freemius.php:4857
    158158msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:"
    159159msgstr ""
    160160
    161161#. translators: %s: License type (e.g. you have a professional license)
    162 #: includes/class-freemius.php:5500
     162#: includes/class-freemius.php:5498
    163163msgid "You have a %s license."
    164164msgstr ""
    165165
    166 #: includes/class-freemius.php:5473
     166#: includes/class-freemius.php:5471
    167167msgid "Premium %s version was successfully activated."
    168168msgstr ""
    169169
    170 #: includes/class-freemius.php:5485, includes/class-freemius.php:7508
     170#: includes/class-freemius.php:5483, includes/class-freemius.php:7506
    171171msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
    172172msgid "W00t"
    173173msgstr ""
    174174
    175 #: includes/class-freemius.php:5791
     175#: includes/class-freemius.php:5789
    176176msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
    177177msgstr ""
    178178
    179 #: includes/class-freemius.php:5795
     179#: includes/class-freemius.php:5793
    180180msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
    181181msgstr ""
    182182
    183 #: includes/class-freemius.php:5804, templates/add-ons.php:186, templates/account/partials/addon.php:386
     183#: includes/class-freemius.php:5802, templates/add-ons.php:186, templates/account/partials/addon.php:386
    184184msgid "More information about %s"
    185185msgstr ""
    186186
    187 #: includes/class-freemius.php:5805
     187#: includes/class-freemius.php:5803
    188188msgid "Purchase License"
    189189msgstr ""
    190190
    191191#. translators: %3$s: What the user is expected to receive via email (e.g.: "the installation instructions" or "a license key")
    192 #: includes/class-freemius.php:6821
     192#: includes/class-freemius.php:6819
    193193msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes."
    194194msgstr ""
    195195
    196 #: includes/class-freemius.php:6830
     196#: includes/class-freemius.php:6828
    197197msgctxt "Part of the message telling the user what they should receive via email."
    198198msgid "a license key"
     
    200200
    201201#. translators: %s: activation link (e.g.: <a>Click here</a>)
    202 #: includes/class-freemius.php:6838
     202#: includes/class-freemius.php:6836
    203203msgid "%s to activate the license once you get it."
    204204msgstr ""
    205205
    206 #: includes/class-freemius.php:6846
     206#: includes/class-freemius.php:6844
    207207msgctxt "Part of an activation link message."
    208208msgid "Click here"
    209209msgstr ""
    210210
    211 #: includes/class-freemius.php:6824
     211#: includes/class-freemius.php:6822
    212212msgctxt "Part of the message telling the user what they should receive via email."
    213213msgid "the installation instructions"
    214214msgstr ""
    215215
    216 #: includes/class-freemius.php:6853
     216#: includes/class-freemius.php:6851
    217217msgctxt "Part of the message that tells the user to check their spam folder for a specific email."
    218218msgid "the product's support email address"
    219219msgstr ""
    220220
     221#: includes/class-freemius.php:6857
     222msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s."
     223msgstr ""
     224
    221225#: includes/class-freemius.php:6859
    222 msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s."
    223 msgstr ""
    224 
    225 #: includes/class-freemius.php:6861
    226226msgid "Thanks for upgrading."
    227227msgstr ""
    228228
    229 #: includes/class-freemius.php:6812
     229#: includes/class-freemius.php:6810
    230230msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s."
    231231msgstr ""
    232232
    233 #: includes/class-freemius.php:6815
     233#: includes/class-freemius.php:6813
    234234msgid "start the trial"
    235235msgstr ""
    236236
    237 #: includes/class-freemius.php:6816, templates/connect.php:208
     237#: includes/class-freemius.php:6814, templates/connect.php:208
    238238msgid "complete the opt-in"
    239239msgstr ""
    240240
    241 #: includes/class-freemius.php:6818
     241#: includes/class-freemius.php:6816
    242242msgid "Thanks!"
    243243msgstr ""
    244244
    245 #: includes/class-freemius.php:6997
     245#: includes/class-freemius.php:6995
    246246msgid "You are just one step away - %s"
    247247msgstr ""
    248248
    249 #: includes/class-freemius.php:7000
     249#: includes/class-freemius.php:6998
    250250msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
    251251msgid "Complete \"%s\" Activation Now"
    252252msgstr ""
    253253
    254 #: includes/class-freemius.php:7082
     254#: includes/class-freemius.php:7080
    255255msgid "We made a few tweaks to the %s, %s"
    256256msgstr ""
    257257
    258 #: includes/class-freemius.php:7086
     258#: includes/class-freemius.php:7084
    259259msgid "Opt in to make \"%s\" better!"
    260260msgstr ""
    261261
    262 #: includes/class-freemius.php:7507
     262#: includes/class-freemius.php:7505
    263263msgid "The upgrade of %s was successfully completed."
    264264msgstr ""
    265265
    266 #: includes/class-freemius.php:10280, includes/class-fs-plugin-updater.php:1126, includes/class-fs-plugin-updater.php:1348, includes/class-fs-plugin-updater.php:1341, templates/auto-installation.php:32
     266#: includes/class-freemius.php:10283, includes/class-fs-plugin-updater.php:1113, includes/class-fs-plugin-updater.php:1335, includes/class-fs-plugin-updater.php:1328, templates/auto-installation.php:32
    267267msgid "Add-On"
    268268msgstr ""
    269269
    270 #: includes/class-freemius.php:10282, templates/account.php:407, templates/account.php:415, templates/debug.php:476, templates/debug.php:711
     270#: includes/class-freemius.php:10285, templates/account.php:407, templates/account.php:415, templates/debug.php:478, templates/debug.php:713
    271271msgid "Plugin"
    272272msgstr ""
    273273
    274 #: includes/class-freemius.php:10283, templates/account.php:408, templates/account.php:416, templates/debug.php:476, templates/debug.php:711, templates/forms/deactivation/form.php:107
     274#: includes/class-freemius.php:10286, templates/account.php:408, templates/account.php:416, templates/debug.php:478, templates/debug.php:713, templates/forms/deactivation/form.php:107
    275275msgid "Theme"
    276276msgstr ""
    277277
    278 #: includes/class-freemius.php:13368
     278#: includes/class-freemius.php:13371
    279279msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
    280280msgstr ""
    281281
    282 #: includes/class-freemius.php:13382
     282#: includes/class-freemius.php:13385
    283283msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
    284284msgstr ""
    285285
    286 #: includes/class-freemius.php:13387, templates/account/partials/disconnect-button.php:84
     286#: includes/class-freemius.php:13390, templates/account/partials/disconnect-button.php:84
    287287msgid "User Dashboard"
    288288msgstr ""
    289289
    290 #: includes/class-freemius.php:13388
     290#: includes/class-freemius.php:13391
    291291msgid "revert it now"
    292292msgstr ""
    293293
    294 #: includes/class-freemius.php:13446
     294#: includes/class-freemius.php:13449
    295295msgid "An unknown error has occurred while trying to set the user's beta mode."
    296296msgstr ""
    297297
    298 #: includes/class-freemius.php:13533
     298#: includes/class-freemius.php:13536
    299299msgid "Invalid new user ID or email address."
    300300msgstr ""
    301301
    302 #: includes/class-freemius.php:13563
     302#: includes/class-freemius.php:13566
    303303msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
    304304msgstr ""
    305305
    306 #: includes/class-freemius.php:13564
     306#: includes/class-freemius.php:13567
    307307msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
    308308msgstr ""
    309309
    310 #: includes/class-freemius.php:13571
     310#: includes/class-freemius.php:13574
    311311msgid "Change Ownership"
    312312msgstr ""
    313313
    314 #: includes/class-freemius.php:14190
     314#: includes/class-freemius.php:14193
    315315msgid "Invalid site details collection."
    316316msgstr ""
    317317
    318 #: includes/class-freemius.php:14312
     318#: includes/class-freemius.php:14315
    319319msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
    320320msgstr ""
    321321
    322 #: includes/class-freemius.php:14310
     322#: includes/class-freemius.php:14313
    323323msgid "We couldn't find your email address in the system, are you sure it's the right address?"
    324324msgstr ""
    325325
    326 #: includes/class-freemius.php:14616
     326#: includes/class-freemius.php:14619
    327327msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again."
    328328msgstr ""
    329329
    330 #: includes/class-freemius.php:14742, templates/forms/premium-versions-upgrade-handler.php:46
     330#: includes/class-freemius.php:14745, templates/forms/premium-versions-upgrade-handler.php:46
    331331msgid "Renew your license now"
    332332msgstr ""
    333333
    334 #: includes/class-freemius.php:14730, templates/forms/premium-versions-upgrade-handler.php:47
     334#: includes/class-freemius.php:14733, templates/forms/premium-versions-upgrade-handler.php:47
    335335msgid "Buy a license now"
    336336msgstr ""
    337337
    338 #: includes/class-freemius.php:14746
     338#: includes/class-freemius.php:14749
    339339msgid "%s to access version %s security & feature updates, and support."
    340340msgstr ""
    341341
    342 #: includes/class-freemius.php:17452
     342#: includes/class-freemius.php:17462
    343343msgid "%s opt-in was successfully completed."
    344344msgstr ""
    345345
    346 #: includes/class-freemius.php:17476, includes/class-freemius.php:21463
     346#: includes/class-freemius.php:17486, includes/class-freemius.php:21479
    347347msgid "Your trial has been successfully started."
    348348msgstr ""
    349349
    350 #: includes/class-freemius.php:17466
     350#: includes/class-freemius.php:17476
    351351msgid "Your account was successfully activated with the %s plan."
    352352msgstr ""
    353353
    354 #: includes/class-freemius.php:18110, includes/class-freemius.php:18230, includes/class-freemius.php:18407
     354#: includes/class-freemius.php:18120, includes/class-freemius.php:18240, includes/class-freemius.php:18417
    355355msgid "Couldn't activate %s."
    356356msgstr ""
    357357
    358 #: includes/class-freemius.php:18111, includes/class-freemius.php:18231, includes/class-freemius.php:18408
     358#: includes/class-freemius.php:18121, includes/class-freemius.php:18241, includes/class-freemius.php:18418
    359359msgid "Please contact us with the following message:"
    360360msgstr ""
    361361
    362 #: includes/class-freemius.php:18227, templates/forms/data-debug-mode.php:162
     362#: includes/class-freemius.php:18237, templates/forms/data-debug-mode.php:162
    363363msgid "An unknown error has occurred."
    364364msgstr ""
    365365
    366 #: includes/class-freemius.php:18769, includes/class-freemius.php:24292
     366#: includes/class-freemius.php:18779, includes/class-freemius.php:24314
    367367msgid "Upgrade"
    368368msgstr ""
    369369
    370 #: includes/class-freemius.php:18777
     370#: includes/class-freemius.php:18787
    371371msgid "Pricing"
    372372msgstr ""
    373373
    374 #: includes/class-freemius.php:18775
     374#: includes/class-freemius.php:18785
    375375msgid "Start Trial"
    376376msgstr ""
    377377
    378 #: includes/class-freemius.php:18859, includes/class-freemius.php:18861
     378#: includes/class-freemius.php:18869, includes/class-freemius.php:18871
    379379msgid "Affiliation"
    380380msgstr ""
    381381
    382 #: includes/class-freemius.php:18889, includes/class-freemius.php:18891, templates/account.php:260, templates/debug.php:439
     382#: includes/class-freemius.php:18899, includes/class-freemius.php:18901, templates/account.php:260, templates/debug.php:440
    383383msgid "Account"
    384384msgstr ""
    385385
    386 #: includes/class-freemius.php:18917, includes/class-freemius.php:18906, includes/class-freemius.php:18908, includes/customizer/class-fs-customizer-support-section.php:60
     386#: includes/class-freemius.php:18927, includes/class-freemius.php:18916, includes/class-freemius.php:18918, includes/customizer/class-fs-customizer-support-section.php:60
    387387msgid "Contact Us"
    388388msgstr ""
    389389
    390 #: includes/class-freemius.php:18931, includes/class-freemius.php:18933, includes/class-freemius.php:24306, templates/account.php:130, templates/account/partials/addon.php:49
     390#: includes/class-freemius.php:18941, includes/class-freemius.php:18943, includes/class-freemius.php:24328, templates/account.php:130, templates/account/partials/addon.php:49
    391391msgid "Add-Ons"
    392392msgstr ""
    393393
    394 #: includes/class-freemius.php:18966
     394#: includes/class-freemius.php:18976
    395395msgctxt "ASCII arrow left icon"
    396396msgid "&#x2190;"
    397397msgstr ""
    398398
    399 #: includes/class-freemius.php:18966
     399#: includes/class-freemius.php:18976
    400400msgctxt "ASCII arrow right icon"
    401401msgid "&#x27a4;"
    402402msgstr ""
    403403
    404 #: includes/class-freemius.php:18984
     404#: includes/class-freemius.php:18994
    405405msgctxt "noun"
    406406msgid "Pricing"
    407407msgstr ""
    408408
    409 #: includes/class-freemius.php:19200, includes/customizer/class-fs-customizer-support-section.php:67
     409#: includes/class-freemius.php:19210, includes/customizer/class-fs-customizer-support-section.php:67
    410410msgid "Support Forum"
    411411msgstr ""
    412412
    413 #: includes/class-freemius.php:20231
     413#: includes/class-freemius.php:20241
    414414msgid "Your email has been successfully verified - you are AWESOME!"
    415415msgstr ""
    416416
    417 #: includes/class-freemius.php:20232
     417#: includes/class-freemius.php:20242
    418418msgctxt "a positive response"
    419419msgid "Right on"
    420420msgstr ""
    421421
    422 #: includes/class-freemius.php:20738
     422#: includes/class-freemius.php:20754
    423423msgid "seems like the key you entered doesn't match our records."
    424424msgstr ""
    425425
    426 #: includes/class-freemius.php:20762
     426#: includes/class-freemius.php:20778
    427427msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
    428428msgstr ""
    429429
    430 #: includes/class-freemius.php:20997
     430#: includes/class-freemius.php:21013
    431431msgid "Your %s Add-on plan was successfully upgraded."
    432432msgstr ""
    433433
    434434#. translators: %s:product name, e.g. Facebook add-on was successfully...
    435 #: includes/class-freemius.php:20999
     435#: includes/class-freemius.php:21015
    436436msgid "%s Add-on was successfully purchased."
    437437msgstr ""
    438438
    439 #: includes/class-freemius.php:21002
     439#: includes/class-freemius.php:21018
    440440msgid "Download the latest version"
    441441msgstr ""
    442442
    443 #: includes/class-freemius.php:21120
     443#: includes/class-freemius.php:21136
    444444msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
    445445msgstr ""
    446446
    447 #: includes/class-freemius.php:21120, includes/class-freemius.php:21533, includes/class-freemius.php:21641, includes/class-freemius.php:21728
     447#: includes/class-freemius.php:21136, includes/class-freemius.php:21549, includes/class-freemius.php:21657, includes/class-freemius.php:21744
    448448msgid "Error received from the server:"
    449449msgstr ""
    450450
    451 #: includes/class-freemius.php:21361, includes/class-freemius.php:21646, includes/class-freemius.php:21699, includes/class-freemius.php:21806
     451#: includes/class-freemius.php:21377, includes/class-freemius.php:21662, includes/class-freemius.php:21715, includes/class-freemius.php:21822
    452452msgctxt "something somebody says when they are thinking about what you have just said."
    453453msgid "Hmm"
    454454msgstr ""
    455455
    456 #: includes/class-freemius.php:21374
     456#: includes/class-freemius.php:21390
    457457msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
    458458msgstr ""
    459459
    460 #: includes/class-freemius.php:21375, templates/account.php:132, templates/add-ons.php:250, templates/account/partials/addon.php:51
     460#: includes/class-freemius.php:21391, templates/account.php:132, templates/add-ons.php:250, templates/account/partials/addon.php:51
    461461msgctxt "trial period"
    462462msgid "Trial"
    463463msgstr ""
    464464
    465 #: includes/class-freemius.php:21380
     465#: includes/class-freemius.php:21396
    466466msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
    467467msgstr ""
    468468
    469 #: includes/class-freemius.php:21384, includes/class-freemius.php:21442
     469#: includes/class-freemius.php:21400, includes/class-freemius.php:21458
    470470msgid "Please contact us here"
    471471msgstr ""
    472472
    473 #: includes/class-freemius.php:21412
     473#: includes/class-freemius.php:21428
    474474msgid "Your plan was successfully changed to %s."
    475475msgstr ""
    476476
    477 #: includes/class-freemius.php:21428
     477#: includes/class-freemius.php:21444
    478478msgid "Your license has expired. You can still continue using the free %s forever."
    479479msgstr ""
    480480
    481481#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'.
    482 #: includes/class-freemius.php:21430
     482#: includes/class-freemius.php:21446
    483483msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
    484484msgstr ""
    485485
    486 #: includes/class-freemius.php:21438
     486#: includes/class-freemius.php:21454
    487487msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
    488488msgstr ""
    489489
    490 #: includes/class-freemius.php:21451
     490#: includes/class-freemius.php:21467
    491491msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
    492492msgstr ""
    493493
    494 #: includes/class-freemius.php:21477
     494#: includes/class-freemius.php:21493
    495495msgid "Your free trial has expired. You can still continue using all our free features."
    496496msgstr ""
    497497
    498498#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'.
    499 #: includes/class-freemius.php:21479
     499#: includes/class-freemius.php:21495
    500500msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
    501501msgstr ""
    502502
    503 #: includes/class-freemius.php:21525
     503#: includes/class-freemius.php:21541
    504504msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s"
    505505msgstr ""
    506506
    507 #: includes/class-freemius.php:21527
     507#: includes/class-freemius.php:21543
    508508msgid "Show error details"
    509509msgstr ""
    510510
    511 #: includes/class-freemius.php:21637
     511#: includes/class-freemius.php:21653
    512512msgid "It looks like the license could not be activated."
    513513msgstr ""
    514514
    515 #: includes/class-freemius.php:21679
     515#: includes/class-freemius.php:21695
    516516msgid "Your license was successfully activated."
    517517msgstr ""
    518518
    519 #: includes/class-freemius.php:21703
     519#: includes/class-freemius.php:21719
    520520msgid "It looks like your site currently doesn't have an active license."
    521521msgstr ""
    522522
    523 #: includes/class-freemius.php:21727
     523#: includes/class-freemius.php:21743
    524524msgid "It looks like the license deactivation failed."
    525525msgstr ""
    526526
    527 #: includes/class-freemius.php:21756
     527#: includes/class-freemius.php:21772
    528528msgid "Your %s license was successfully deactivated."
    529529msgstr ""
    530530
    531 #: includes/class-freemius.php:21757
     531#: includes/class-freemius.php:21773
    532532msgid "Your license was successfully deactivated, you are back to the %s plan."
    533533msgstr ""
    534534
    535 #: includes/class-freemius.php:21760
     535#: includes/class-freemius.php:21776
    536536msgid "O.K"
    537537msgstr ""
    538538
    539 #: includes/class-freemius.php:21813
     539#: includes/class-freemius.php:21829
    540540msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
    541541msgstr ""
    542542
    543 #: includes/class-freemius.php:21822
     543#: includes/class-freemius.php:21838
    544544msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
    545545msgstr ""
    546546
    547 #: includes/class-freemius.php:21865
     547#: includes/class-freemius.php:21881
    548548msgid "You are already running the %s in a trial mode."
    549549msgstr ""
    550550
    551 #: includes/class-freemius.php:21877
     551#: includes/class-freemius.php:21893
    552552msgid "You already utilized a trial before."
    553553msgstr ""
    554554
    555 #: includes/class-freemius.php:21916
     555#: includes/class-freemius.php:21932
    556556msgid "None of the %s's plans supports a trial period."
    557557msgstr ""
    558558
    559 #: includes/class-freemius.php:21892
     559#: includes/class-freemius.php:21908
    560560msgid "Plan %s do not exist, therefore, can't start a trial."
    561561msgstr ""
    562562
    563 #: includes/class-freemius.php:21904
     563#: includes/class-freemius.php:21920
    564564msgid "Plan %s does not support a trial period."
    565565msgstr ""
    566566
    567 #: includes/class-freemius.php:21978
     567#: includes/class-freemius.php:21994
    568568msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
    569569msgstr ""
    570570
    571 #: includes/class-freemius.php:22014
     571#: includes/class-freemius.php:22030
    572572msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
    573573msgstr ""
    574574
    575 #: includes/class-freemius.php:22033
     575#: includes/class-freemius.php:22049
    576576msgid "Your %s free trial was successfully cancelled."
    577577msgstr ""
    578578
    579 #: includes/class-freemius.php:22380
     579#: includes/class-freemius.php:22402
    580580msgid "Seems like you got the latest release."
    581581msgstr ""
    582582
    583 #: includes/class-freemius.php:22381
     583#: includes/class-freemius.php:22403
    584584msgid "You are all good!"
    585585msgstr ""
    586586
    587 #: includes/class-freemius.php:22363
     587#: includes/class-freemius.php:22385
    588588msgid "Version %s was released."
    589589msgstr ""
    590590
    591 #: includes/class-freemius.php:22363
     591#: includes/class-freemius.php:22385
    592592msgid "Please download %s."
    593593msgstr ""
    594594
    595 #: includes/class-freemius.php:22370
     595#: includes/class-freemius.php:22392
    596596msgid "the latest %s version here"
    597597msgstr ""
    598598
    599 #: includes/class-freemius.php:22375
     599#: includes/class-freemius.php:22397
    600600msgid "New"
    601601msgstr ""
    602602
    603 #: includes/class-freemius.php:22784
     603#: includes/class-freemius.php:22806
    604604msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
    605605msgstr ""
    606606
    607 #: includes/class-freemius.php:22924
     607#: includes/class-freemius.php:22946
    608608msgid "Site successfully opted in."
    609609msgstr ""
    610610
    611 #: includes/class-freemius.php:22925, includes/class-freemius.php:24000
     611#: includes/class-freemius.php:22947, includes/class-freemius.php:24022
    612612msgid "Awesome"
    613613msgstr ""
    614614
    615 #: includes/class-freemius.php:22951
     615#: includes/class-freemius.php:22973
    616616msgid "Diagnostic data will no longer be sent from %s to %s."
    617617msgstr ""
    618618
    619 #: includes/class-freemius.php:22941
     619#: includes/class-freemius.php:22963
    620620msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to."
    621621msgstr ""
    622622
    623 #: includes/class-freemius.php:22942
     623#: includes/class-freemius.php:22964
    624624msgid "Thank you!"
    625625msgstr ""
    626626
    627 #: includes/class-freemius.php:23111
     627#: includes/class-freemius.php:23133
    628628msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder."
    629629msgstr ""
    630630
    631 #: includes/class-freemius.php:23109
     631#: includes/class-freemius.php:23131
    632632msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours."
    633633msgstr ""
    634634
    635 #: includes/class-freemius.php:23123
     635#: includes/class-freemius.php:23145
    636636msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
    637637msgstr ""
    638638
    639 #: includes/class-freemius.php:23129
     639#: includes/class-freemius.php:23151
    640640msgid "%s is the new owner of the account."
    641641msgstr ""
    642642
    643 #: includes/class-freemius.php:23131
     643#: includes/class-freemius.php:23153
    644644msgctxt "as congratulations"
    645645msgid "Congrats"
    646646msgstr ""
    647647
    648 #: includes/class-freemius.php:23153
     648#: includes/class-freemius.php:23175
    649649msgid "Your name was successfully updated."
    650650msgstr ""
    651651
    652 #: includes/class-freemius.php:23148
     652#: includes/class-freemius.php:23170
    653653msgid "Please provide your full name."
    654654msgstr ""
    655655
    656656#. translators: %s: User's account property (e.g. email address, name)
    657 #: includes/class-freemius.php:23218
     657#: includes/class-freemius.php:23240
    658658msgid "You have successfully updated your %s."
    659659msgstr ""
    660660
    661 #: includes/class-freemius.php:23282
     661#: includes/class-freemius.php:23304
    662662msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
    663663msgstr ""
    664664
    665 #: includes/class-freemius.php:23285
     665#: includes/class-freemius.php:23307
    666666msgid "Click here"
    667667msgstr ""
    668668
    669 #: includes/class-freemius.php:23322
     669#: includes/class-freemius.php:23344
    670670msgid "Bundle"
    671671msgstr ""
    672672
    673 #: includes/class-freemius.php:23395
     673#: includes/class-freemius.php:23417
    674674msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
    675675msgstr ""
    676676
    677 #: includes/class-freemius.php:23396
     677#: includes/class-freemius.php:23418
    678678msgctxt "advance notice of something that will need attention."
    679679msgid "Heads up"
    680680msgstr ""
    681681
    682 #: includes/class-freemius.php:24040
     682#: includes/class-freemius.php:24062
    683683msgctxt "exclamation"
    684684msgid "Hey"
    685685msgstr ""
    686686
    687 #: includes/class-freemius.php:24040
     687#: includes/class-freemius.php:24062
    688688msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
    689689msgstr ""
    690690
    691 #: includes/class-freemius.php:24048
     691#: includes/class-freemius.php:24070
    692692msgid "No commitment for %s days - cancel anytime!"
    693693msgstr ""
    694694
    695 #: includes/class-freemius.php:24049
     695#: includes/class-freemius.php:24071
    696696msgid "No credit card required"
    697697msgstr ""
    698698
    699 #: includes/class-freemius.php:24056, templates/forms/trial-start.php:53
     699#: includes/class-freemius.php:24078, templates/forms/trial-start.php:53
    700700msgctxt "call to action"
    701701msgid "Start free trial"
    702702msgstr ""
    703703
    704 #: includes/class-freemius.php:24135
     704#: includes/class-freemius.php:24157
    705705msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
    706706msgstr ""
    707707
    708 #: includes/class-freemius.php:24144
     708#: includes/class-freemius.php:24166
    709709msgid "Learn more"
    710710msgstr ""
    711711
    712 #: includes/class-freemius.php:24330, templates/account.php:569, templates/account.php:721, templates/connect.php:211, templates/connect.php:442, includes/managers/class-fs-clone-manager.php:1305, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326
     712#: includes/class-freemius.php:24352, templates/account.php:569, templates/account.php:721, templates/connect.php:211, templates/connect.php:442, includes/managers/class-fs-clone-manager.php:1305, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326
    713713msgid "Activate License"
    714714msgstr ""
    715715
    716 #: includes/class-freemius.php:24331, templates/account.php:663, templates/account.php:720, templates/account/partials/addon.php:327, templates/account/partials/site.php:273
     716#: includes/class-freemius.php:24353, templates/account.php:663, templates/account.php:720, templates/account/partials/addon.php:327, templates/account/partials/site.php:273
    717717msgid "Change License"
    718718msgstr ""
    719719
    720 #: includes/class-freemius.php:24446, includes/class-freemius.php:24440, templates/account/partials/site.php:49, templates/account/partials/site.php:170
     720#: includes/class-freemius.php:24468, includes/class-freemius.php:24462, templates/account/partials/site.php:49, templates/account/partials/site.php:170
    721721msgid "Opt In"
    722722msgstr ""
    723723
    724 #: includes/class-freemius.php:24438, templates/account/partials/site.php:170
     724#: includes/class-freemius.php:24460, templates/account/partials/site.php:170
    725725msgid "Opt Out"
    726726msgstr ""
    727727
     728#: includes/class-freemius.php:24742
     729msgid "Please follow these steps to complete the upgrade"
     730msgstr ""
     731
     732#. translators: %s: Plan title
     733#: includes/class-freemius.php:24746
     734msgid "Download the latest %s version"
     735msgstr ""
     736
     737#: includes/class-freemius.php:24750
     738msgid "Upload and activate the downloaded version"
     739msgstr ""
     740
     741#: includes/class-freemius.php:24752
     742msgid "How to upload and activate?"
     743msgstr ""
     744
     745#: includes/class-freemius.php:24722
     746msgid " The paid version of %1$s is already installed. Please navigate to the %2$s to activate it and start benefiting from the %3$s features."
     747msgstr ""
     748
     749#: includes/class-freemius.php:24728
     750msgid "Themes page"
     751msgstr ""
     752
     753#: includes/class-freemius.php:24729
     754msgid "Plugins page"
     755msgstr ""
     756
    728757#: includes/class-freemius.php:24704
    729 msgid "Please follow these steps to complete the upgrade"
    730 msgstr ""
    731 
    732 #. translators: %s: Plan title
    733 #: includes/class-freemius.php:24708
    734 msgid "Download the latest %s version"
    735 msgstr ""
    736 
    737 #: includes/class-freemius.php:24712
    738 msgid "Upload and activate the downloaded version"
     758msgid " The paid version of %1$s is already installed. Please activate it to start benefiting from the %2$s features. %3$s"
    739759msgstr ""
    740760
    741761#: includes/class-freemius.php:24714
    742 msgid "How to upload and activate?"
    743 msgstr ""
    744 
    745 #: includes/class-freemius.php:24681
    746 msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
    747 msgstr ""
    748 
    749 #: includes/class-freemius.php:24691
    750762msgid "Activate %s features"
    751763msgstr ""
    752764
    753 #: includes/class-freemius.php:24749
     765#: includes/class-freemius.php:24787
    754766msgid "Your plan was successfully upgraded."
    755767msgstr ""
    756768
    757 #: includes/class-freemius.php:24750
     769#: includes/class-freemius.php:24788
    758770msgid "Your plan was successfully activated."
    759771msgstr ""
    760772
    761 #: includes/class-freemius.php:24859
     773#: includes/class-freemius.php:24897
    762774msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
    763775msgstr ""
    764776
    765 #: includes/class-freemius.php:25028
     777#: includes/class-freemius.php:25066
    766778msgid "Auto installation only works for opted-in users."
    767779msgstr ""
    768780
    769 #: includes/class-freemius.php:25038, includes/class-freemius.php:25071, includes/class-fs-plugin-updater.php:1320, includes/class-fs-plugin-updater.php:1334
     781#: includes/class-freemius.php:25076, includes/class-freemius.php:25109, includes/class-fs-plugin-updater.php:1307, includes/class-fs-plugin-updater.php:1321
    770782msgid "Invalid module ID."
    771783msgstr ""
    772784
    773 #: includes/class-freemius.php:25079, includes/class-fs-plugin-updater.php:1355
     785#: includes/class-freemius.php:25117, includes/class-fs-plugin-updater.php:1342
    774786msgid "Premium add-on version already installed."
    775787msgstr ""
    776788
    777 #: includes/class-freemius.php:25047, includes/class-fs-plugin-updater.php:1356
     789#: includes/class-freemius.php:25085, includes/class-fs-plugin-updater.php:1343
    778790msgid "Premium version already active."
    779791msgstr ""
    780792
    781 #: includes/class-freemius.php:25054
     793#: includes/class-freemius.php:25092
    782794msgid "You do not have a valid license to access the premium version."
    783795msgstr ""
    784796
    785 #: includes/class-freemius.php:25061
     797#: includes/class-freemius.php:25099
    786798msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
    787799msgstr ""
    788800
    789 #: includes/class-freemius.php:25439
     801#: includes/class-freemius.php:25477
    790802msgid "View paid features"
    791803msgstr ""
    792804
    793 #: includes/class-freemius.php:25754
     805#: includes/class-freemius.php:25792
    794806msgid "Thank you so much for using our products!"
    795807msgstr ""
    796808
    797 #: includes/class-freemius.php:25755
     809#: includes/class-freemius.php:25793
    798810msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
    799811msgstr ""
    800812
    801 #: includes/class-freemius.php:25774
     813#: includes/class-freemius.php:25812
    802814msgid "%s and its add-ons"
    803815msgstr ""
    804816
    805 #: includes/class-freemius.php:25783
     817#: includes/class-freemius.php:25821
    806818msgid "Products"
    807819msgstr ""
    808820
    809 #: includes/class-freemius.php:25743
     821#: includes/class-freemius.php:25781
    810822msgid "Thank you so much for using %s and its add-ons!"
    811823msgstr ""
    812824
    813 #: includes/class-freemius.php:25744
     825#: includes/class-freemius.php:25782
    814826msgid "Thank you so much for using %s!"
    815827msgstr ""
    816828
    817 #: includes/class-freemius.php:25750
     829#: includes/class-freemius.php:25788
    818830msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
    819831msgstr ""
    820832
    821 #: includes/class-freemius.php:25790, templates/connect.php:312
     833#: includes/class-freemius.php:25828, templates/connect.php:312
    822834msgid "Yes"
    823835msgstr ""
    824836
    825 #: includes/class-freemius.php:25791, templates/connect.php:313
     837#: includes/class-freemius.php:25829, templates/connect.php:313
    826838msgid "send me security & feature updates, educational content and offers."
    827839msgstr ""
    828840
    829 #: includes/class-freemius.php:25792, templates/connect.php:318
     841#: includes/class-freemius.php:25830, templates/connect.php:318
    830842msgid "No"
    831843msgstr ""
    832844
    833 #: includes/class-freemius.php:25794, templates/connect.php:320
     845#: includes/class-freemius.php:25832, templates/connect.php:320
    834846msgid "do %sNOT%s send me security & feature updates, educational content and offers."
    835847msgstr ""
    836848
    837 #: includes/class-freemius.php:25804
     849#: includes/class-freemius.php:25842
    838850msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)"
    839851msgstr ""
    840852
    841 #: includes/class-freemius.php:25806, templates/connect.php:327
     853#: includes/class-freemius.php:25844, templates/connect.php:327
    842854msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
    843855msgstr ""
    844856
    845 #: includes/class-freemius.php:26096
     857#: includes/class-freemius.php:26134
    846858msgid "License key is empty."
    847859msgstr ""
     
    871883msgstr ""
    872884
    873 #: includes/class-fs-plugin-updater.php:1385
     885#: includes/class-fs-plugin-updater.php:1372
    874886msgid "Installing plugin: %s"
    875887msgstr ""
    876888
    877 #: includes/class-fs-plugin-updater.php:1426
     889#: includes/class-fs-plugin-updater.php:1413
    878890msgid "Unable to connect to the filesystem. Please confirm your credentials."
    879891msgstr ""
    880892
    881 #: includes/class-fs-plugin-updater.php:1608
     893#: includes/class-fs-plugin-updater.php:1595
    882894msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
    883895msgstr ""
     
    10291041msgstr ""
    10301042
    1031 #: includes/fs-plugin-info-dialog.php:1178, templates/plugin-info/features.php:82
     1043#: includes/fs-plugin-info-dialog.php:1178, templates/plugin-info/features.php:81
    10321044msgctxt "as monthly period"
    10331045msgid "mo"
    10341046msgstr ""
    10351047
    1036 #: includes/fs-plugin-info-dialog.php:1185, templates/plugin-info/features.php:80
     1048#: includes/fs-plugin-info-dialog.php:1185, templates/plugin-info/features.php:79
    10371049msgctxt "as annual period"
    10381050msgid "year"
     
    10611073msgstr ""
    10621074
    1063 #: includes/fs-plugin-info-dialog.php:1315, templates/account.php:121, templates/debug.php:300, templates/debug.php:342, templates/debug.php:601, templates/account/partials/addon.php:41
     1075#: includes/fs-plugin-info-dialog.php:1315, templates/account.php:121, templates/debug.php:300, templates/debug.php:342, templates/debug.php:603, templates/account/partials/addon.php:41
    10641076msgctxt "product version"
    10651077msgid "Version"
     
    12061218msgstr ""
    12071219
    1208 #: templates/account.php:111, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:31, templates/account/partials/site.php:313
     1220#: templates/account.php:111, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:31, templates/account/partials/site.php:313
    12091221msgid "Downgrading your plan"
    12101222msgstr ""
    12111223
    1212 #: templates/account.php:112, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:32, templates/account/partials/site.php:314
     1224#: templates/account.php:112, templates/forms/subscription-cancellation.php:103, templates/account/partials/addon.php:32, templates/account/partials/site.php:314
    12131225msgid "Cancelling the subscription"
    12141226msgstr ""
    12151227
    12161228#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
    1217 #: templates/account.php:114, templates/forms/subscription-cancellation.php:99, templates/account/partials/addon.php:34, templates/account/partials/site.php:316
     1229#: templates/account.php:114, templates/forms/subscription-cancellation.php:105, templates/account/partials/addon.php:34, templates/account/partials/site.php:316
    12181230msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
    12191231msgstr ""
    12201232
    1221 #: templates/account.php:115, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:35, templates/account/partials/site.php:317
     1233#: templates/account.php:115, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:35, templates/account/partials/site.php:317
    12221234msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
    12231235msgstr ""
    12241236
    1225 #: templates/account.php:116, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:36
     1237#: templates/account.php:116, templates/forms/subscription-cancellation.php:112, templates/account/partials/addon.php:36
    12261238msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
    12271239msgstr ""
    12281240
    1229 #: templates/account.php:117, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:37, templates/account/partials/site.php:318
     1241#: templates/account.php:117, templates/forms/subscription-cancellation.php:107, templates/account/partials/addon.php:37, templates/account/partials/site.php:318
    12301242msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
    12311243msgstr ""
    12321244
    1233 #: templates/account.php:118, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:38, templates/account/partials/site.php:319
     1245#: templates/account.php:118, templates/forms/subscription-cancellation.php:108, templates/account/partials/addon.php:38, templates/account/partials/site.php:319
    12341246msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
    12351247msgstr ""
     
    12731285msgstr ""
    12741286
    1275 #: templates/account.php:133, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:52, templates/account/partials/site.php:33
     1287#: templates/account.php:133, templates/add-ons.php:246, templates/plugin-info/features.php:71, templates/account/partials/addon.php:52, templates/account/partials/site.php:33
    12761288msgid "Free"
    12771289msgstr ""
    12781290
    1279 #: templates/account.php:135, templates/debug.php:490, includes/customizer/class-fs-customizer-upsell-control.php:110, templates/account/partials/addon.php:54
     1291#: templates/account.php:135, templates/debug.php:492, includes/customizer/class-fs-customizer-upsell-control.php:109, templates/account/partials/addon.php:54
    12801292msgctxt "as product pricing plan"
    12811293msgid "Plan"
     
    13101322msgstr ""
    13111323
    1312 #: templates/account.php:341, templates/forms/subscription-cancellation.php:125
     1324#: templates/account.php:341, templates/forms/subscription-cancellation.php:131
    13131325msgid "Are you sure you want to proceed?"
    13141326msgstr ""
     
    13231335msgstr ""
    13241336
    1325 #: templates/account.php:385, templates/debug.php:663
     1337#: templates/account.php:385, templates/debug.php:665
    13261338msgid "Name"
    13271339msgstr ""
    13281340
    1329 #: templates/account.php:391, templates/debug.php:664
     1341#: templates/account.php:391, templates/debug.php:666
    13301342msgid "Email"
    13311343msgstr ""
    13321344
    1333 #: templates/account.php:398, templates/debug.php:488, templates/debug.php:718
     1345#: templates/account.php:398, templates/debug.php:490, templates/debug.php:720
    13341346msgid "User ID"
    13351347msgstr ""
    13361348
    1337 #: templates/account.php:416, templates/account.php:734, templates/account.php:785, templates/debug.php:340, templates/debug.php:482, templates/debug.php:598, templates/debug.php:662, templates/debug.php:716, templates/debug.php:799, templates/account/payments.php:35, templates/debug/logger.php:21
     1349#: templates/account.php:416, templates/account.php:734, templates/account.php:785, templates/debug.php:340, templates/debug.php:484, templates/debug.php:600, templates/debug.php:664, templates/debug.php:718, templates/debug.php:801, templates/account/payments.php:35, templates/debug/logger.php:21
    13381350msgid "ID"
    13391351msgstr ""
     
    13471359msgstr ""
    13481360
    1349 #: templates/account.php:431, templates/debug.php:347, templates/debug.php:491, templates/debug.php:602, templates/debug.php:666, templates/account/partials/site.php:228
     1361#: templates/account.php:431, templates/debug.php:347, templates/debug.php:493, templates/debug.php:604, templates/debug.php:668, templates/account/partials/site.php:228
    13501362msgid "Public Key"
    13511363msgstr ""
    13521364
    1353 #: templates/account.php:437, templates/debug.php:492, templates/debug.php:603, templates/debug.php:667, templates/account/partials/site.php:241
     1365#: templates/account.php:437, templates/debug.php:494, templates/debug.php:605, templates/debug.php:669, templates/account/partials/site.php:241
    13541366msgid "Secret Key"
    13551367msgstr ""
     
    13601372msgstr ""
    13611373
    1362 #: templates/account.php:494, templates/debug.php:724, templates/account/partials/site.php:262
     1374#: templates/account.php:494, templates/debug.php:726, templates/account/partials/site.php:262
    13631375msgid "License Key"
    13641376msgstr ""
     
    14261438msgstr ""
    14271439
    1428 #: templates/account.php:735, templates/debug.php:485
     1440#: templates/account.php:735, templates/debug.php:487
    14291441msgid "Address"
    14301442msgstr ""
     
    17111723msgstr ""
    17121724
    1713 #: templates/debug.php:117, templates/debug.php:352, templates/debug.php:493, templates/debug.php:668
     1725#: templates/debug.php:117, templates/debug.php:352, templates/debug.php:495, templates/debug.php:670
    17141726msgid "Actions"
    17151727msgstr ""
     
    17841796msgstr ""
    17851797
    1786 #: templates/debug.php:341, templates/debug.php:487, templates/debug.php:600, templates/debug/scheduled-crons.php:91
     1798#: templates/debug.php:341, templates/debug.php:489, templates/debug.php:602, templates/debug/scheduled-crons.php:91
    17871799msgid "Slug"
    17881800msgstr ""
    17891801
    1790 #: templates/debug.php:343, templates/debug.php:599
     1802#: templates/debug.php:343, templates/debug.php:601
    17911803msgid "Title"
    17921804msgstr ""
     
    18091821msgstr ""
    18101822
    1811 #: templates/debug.php:396
     1823#: templates/debug.php:397
    18121824msgctxt "as connection was successful"
    18131825msgid "Connected"
    18141826msgstr ""
    18151827
    1816 #: templates/debug.php:398
     1828#: templates/debug.php:399
    18171829msgctxt "as connection blocked"
    18181830msgid "Blocked"
    18191831msgstr ""
    18201832
    1821 #: templates/debug.php:399
     1833#: templates/debug.php:400
    18221834msgctxt "API connectivity state is unknown"
    1823 msgid "Unknown"
    1824 msgstr ""
    1825 
    1826 #: templates/debug.php:435
     1835msgid "No requests yet"
     1836msgstr ""
     1837
     1838#: templates/debug.php:436
    18271839msgid "Simulate Trial Promotion"
    18281840msgstr ""
    18291841
    1830 #: templates/debug.php:447
     1842#: templates/debug.php:448
    18311843msgid "Simulate Network Upgrade"
    18321844msgstr ""
    18331845
    18341846#. translators: %s: 'plugin' or 'theme'
    1835 #: templates/debug.php:475
     1847#: templates/debug.php:477
    18361848msgid "%s Installs"
    18371849msgstr ""
    18381850
    1839 #: templates/debug.php:477
     1851#: templates/debug.php:479
    18401852msgctxt "like websites"
    18411853msgid "Sites"
    18421854msgstr ""
    18431855
    1844 #: templates/debug.php:484, templates/account/partials/site.php:156
     1856#: templates/debug.php:486, templates/account/partials/site.php:156
    18451857msgid "Blog ID"
    18461858msgstr ""
    18471859
    1848 #: templates/debug.php:489
     1860#: templates/debug.php:491
    18491861msgid "License ID"
    18501862msgstr ""
    18511863
    1852 #: templates/debug.php:575, templates/debug.php:691, templates/account/partials/addon.php:440
     1864#: templates/debug.php:577, templates/debug.php:693, templates/account/partials/addon.php:440
    18531865msgctxt "verb"
    18541866msgid "Delete"
    18551867msgstr ""
    18561868
    1857 #: templates/debug.php:593
     1869#: templates/debug.php:595
    18581870msgid "Add Ons of module %s"
    18591871msgstr ""
    18601872
    1861 #: templates/debug.php:657
     1873#: templates/debug.php:659
    18621874msgid "Users"
    18631875msgstr ""
    18641876
    1865 #: templates/debug.php:665
     1877#: templates/debug.php:667
    18661878msgid "Verified"
    18671879msgstr ""
    18681880
    1869 #: templates/debug.php:711
     1881#: templates/debug.php:713
    18701882msgid "%s Licenses"
    18711883msgstr ""
    18721884
    1873 #: templates/debug.php:717
     1885#: templates/debug.php:719
    18741886msgid "Plugin ID"
    18751887msgstr ""
    18761888
    1877 #: templates/debug.php:719
     1889#: templates/debug.php:721
    18781890msgid "Plan ID"
    18791891msgstr ""
    18801892
    1881 #: templates/debug.php:720
     1893#: templates/debug.php:722
    18821894msgid "Quota"
    18831895msgstr ""
    18841896
    1885 #: templates/debug.php:721
     1897#: templates/debug.php:723
    18861898msgid "Activated"
    18871899msgstr ""
    18881900
    1889 #: templates/debug.php:722
     1901#: templates/debug.php:724
    18901902msgid "Blocking"
    18911903msgstr ""
    18921904
    1893 #: templates/debug.php:723, templates/debug.php:798, templates/debug/logger.php:22
     1905#: templates/debug.php:725, templates/debug.php:800, templates/debug/logger.php:22
    18941906msgid "Type"
    18951907msgstr ""
    18961908
    1897 #: templates/debug.php:725
     1909#: templates/debug.php:727
    18981910msgctxt "as expiration date"
    18991911msgid "Expiration"
    19001912msgstr ""
    19011913
    1902 #: templates/debug.php:757
     1914#: templates/debug.php:759
    19031915msgid "Debug Log"
    19041916msgstr ""
    19051917
    1906 #: templates/debug.php:761
     1918#: templates/debug.php:763
    19071919msgid "All Types"
    19081920msgstr ""
    19091921
    1910 #: templates/debug.php:768
     1922#: templates/debug.php:770
    19111923msgid "All Requests"
    19121924msgstr ""
    19131925
    1914 #: templates/debug.php:773, templates/debug.php:802, templates/debug/logger.php:25
     1926#: templates/debug.php:775, templates/debug.php:804, templates/debug/logger.php:25
    19151927msgid "File"
    19161928msgstr ""
    19171929
    1918 #: templates/debug.php:774, templates/debug.php:800, templates/debug/logger.php:23
     1930#: templates/debug.php:776, templates/debug.php:802, templates/debug/logger.php:23
    19191931msgid "Function"
    19201932msgstr ""
    19211933
    1922 #: templates/debug.php:775
     1934#: templates/debug.php:777
    19231935msgid "Process ID"
    19241936msgstr ""
    19251937
    1926 #: templates/debug.php:776
     1938#: templates/debug.php:778
    19271939msgid "Logger"
    19281940msgstr ""
    19291941
    1930 #: templates/debug.php:777, templates/debug.php:801, templates/debug/logger.php:24
     1942#: templates/debug.php:779, templates/debug.php:803, templates/debug/logger.php:24
    19311943msgid "Message"
    19321944msgstr ""
    19331945
    1934 #: templates/debug.php:779
     1946#: templates/debug.php:781
    19351947msgid "Filter"
    19361948msgstr ""
    19371949
    1938 #: templates/debug.php:787
     1950#: templates/debug.php:789
    19391951msgid "Download"
    19401952msgstr ""
    19411953
    1942 #: templates/debug.php:803, templates/debug/logger.php:26
     1954#: templates/debug.php:805, templates/debug/logger.php:26
    19431955msgid "Timestamp"
    19441956msgstr ""
     
    19491961msgstr ""
    19501962
    1951 #: includes/customizer/class-fs-customizer-support-section.php:55, templates/plugin-info/features.php:43
     1963#: includes/customizer/class-fs-customizer-support-section.php:55, templates/plugin-info/features.php:42
    19521964msgid "Support"
    19531965msgstr ""
     
    20142026msgstr ""
    20152027
    2016 #: includes/managers/class-fs-clone-manager.php:1281, templates/forms/subscription-cancellation.php:52
     2028#: includes/managers/class-fs-clone-manager.php:1281, templates/forms/subscription-cancellation.php:58
    20172029msgid "license"
    20182030msgstr ""
     
    24842496msgstr ""
    24852497
    2486 #: templates/forms/affiliation.php:238, templates/forms/resend-key.php:22, templates/forms/subscription-cancellation.php:142, templates/account/partials/disconnect-button.php:92
     2498#: templates/forms/affiliation.php:238, templates/forms/resend-key.php:22, templates/forms/subscription-cancellation.php:148, templates/account/partials/disconnect-button.php:92
    24872499msgid "Cancel"
    24882500msgstr ""
     
    26262638msgstr ""
    26272639
    2628 #: templates/forms/subscription-cancellation.php:37
     2640#: templates/forms/subscription-cancellation.php:38
    26292641msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
    26302642msgstr ""
    26312643
    2632 #: templates/forms/subscription-cancellation.php:47
     2644#: templates/forms/subscription-cancellation.php:43
     2645msgid "Uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
     2646msgstr ""
     2647
     2648#: templates/forms/subscription-cancellation.php:53
    26332649msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
    26342650msgstr ""
    26352651
    2636 #: templates/forms/subscription-cancellation.php:57
     2652#: templates/forms/subscription-cancellation.php:63
    26372653msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
    26382654msgstr ""
    26392655
    2640 #: templates/forms/subscription-cancellation.php:68
     2656#: templates/forms/subscription-cancellation.php:74
    26412657msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
    26422658msgstr ""
    26432659
    2644 #: templates/forms/subscription-cancellation.php:103
     2660#: templates/forms/subscription-cancellation.php:109
    26452661msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
    26462662msgstr ""
    26472663
    2648 #: templates/forms/subscription-cancellation.php:136
     2664#: templates/forms/subscription-cancellation.php:142
    26492665msgid "Cancel %s?"
    26502666msgstr ""
    26512667
    2652 #: templates/forms/subscription-cancellation.php:143
     2668#: templates/forms/subscription-cancellation.php:149
    26532669msgid "Proceed"
    26542670msgstr ""
    26552671
    2656 #: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:216
     2672#: templates/forms/subscription-cancellation.php:197, templates/forms/deactivation/form.php:216
    26572673msgid "Cancel %s & Proceed"
    26582674msgstr ""
     
    27242740msgstr ""
    27252741
    2726 #: templates/plugin-info/features.php:56
     2742#: templates/plugin-info/features.php:55
    27272743msgid "Unlimited Updates"
    27282744msgstr ""
  • kanban-for-woocommerce/trunk/vendor/freemius/wordpress-sdk/require.php

    r3315189 r3364884  
    5959    require_once WP_FS__DIR_INCLUDES . '/class-freemius-abstract.php';
    6060    require_once WP_FS__DIR_INCLUDES . '/sdk/Exceptions/Exception.php';
     61    require_once WP_FS__DIR_INCLUDES . '/class-fs-hook-snapshot.php';
    6162    require_once WP_FS__DIR_INCLUDES . '/class-freemius.php';
  • kanban-for-woocommerce/trunk/vendor/freemius/wordpress-sdk/start.php

    r3331563 r3364884  
    1616     * @var string
    1717     */
    18     $this_sdk_version = '2.12.1';
     18    $this_sdk_version = '2.12.2';
    1919
    2020    #region SDK Selection Logic --------------------------------------------------------------------
  • kanban-for-woocommerce/trunk/vendor/freemius/wordpress-sdk/templates/debug.php

    r3315189 r3364884  
    354354            </thead>
    355355            <tbody>
     356            <?php $alternate = false; ?>
    356357            <?php foreach ( $modules as $slug => $data ) : ?>
    357358                <?php
     
    377378                    }
    378379                ?>
    379                 <tr<?php if ( $is_active ) {
     380                <tr<?php if ( $alternate ) { echo ' class="alternate" '; } ?><?php if ( $is_active ) {
    380381                    $has_api_connectivity = $fs->has_api_connectivity();
    381382
    382383                    if ( true === $has_api_connectivity && $fs->is_on() ) {
    383384                        echo ' style="background: #E6FFE6; font-weight: bold"';
    384                     } else {
     385                    } else if ( false === $has_api_connectivity || ! $fs->is_on() ) {
    385386                        echo ' style="background: #ffd0d0; font-weight: bold"';
    386387                    }
     
    390391                    <td><?php echo $data->version ?></td>
    391392                    <td><?php echo $data->title ?></td>
    392                     <td<?php if ( $is_active && true !== $has_api_connectivity ) {
     393                    <td<?php if ( $is_active && false === $has_api_connectivity ) {
    393394                        echo ' style="color: red; text-transform: uppercase;"';
    394395                    } ?>><?php if ( $is_active ) {
     
    397398                                ( false === $has_api_connectivity ?
    398399                                    fs_text_x_inline( 'Blocked', 'as connection blocked' ) :
    399                                     fs_text_x_inline( 'Unknown', 'API connectivity state is unknown' ) )
     400                                    fs_text_x_inline( 'No requests yet', 'API connectivity state is unknown' ) )
    400401                            );
    401402                        } ?></td>
     
    451452                    </td>
    452453                </tr>
     454            <?php $alternate = ! $alternate ?>
    453455            <?php endforeach ?>
    454456            </tbody>
  • kanban-for-woocommerce/trunk/vendor/freemius/wordpress-sdk/templates/forms/subscription-cancellation.php

    r3315189 r3364884  
    3535} else {
    3636    $subscription_cancellation_text = sprintf(
    37         fs_text_inline(
    38             "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site.",
    39             'deactivation-or-uninstall-message',
    40             $slug
    41         ),
     37        ( $fs->is_theme() ?
     38            fs_text_inline(
     39                "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site.",
     40                'deactivation-or-uninstall-message',
     41                $slug
     42            ) :
     43            fs_text_inline(
     44                "Uninstalling the %s will automatically disable the license, which you'll be able to use on another site.",
     45                'uninstall-message',
     46                $slug
     47            ) ),
    4248        $module_label
    4349    ) . ' ';
  • kanban-for-woocommerce/trunk/vendor/freemius/wordpress-sdk/templates/js/style-premium-theme.php

    r3315189 r3364884  
    1818    $fs = freemius( $VARS['id'] );
    1919
    20     $slug = $fs->get_slug();
     20    $premium_slug = $fs->get_premium_slug();
    2121
    2222?>
     
    2424    (function ($) {
    2525        // Select the premium theme version.
    26         var $theme             = $('#<?php echo $slug ?>-premium-name').parents('.theme'),
     26        var $theme             = $('#<?php echo $premium_slug ?>-name').parents('.theme'),
    2727            addPremiumMetadata = function (firstCall) {
    2828                if (!firstCall) {
    2929                    // Seems like the original theme element is removed from the DOM,
    3030                    // so we need to reselect the updated one.
    31                     $theme = $('#<?php echo $slug ?>-premium-name').parents('.theme');
     31                    $theme = $('#<?php echo $premium_slug ?>-name').parents('.theme');
    3232                }
    3333
Note: See TracChangeset for help on using the changeset viewer.