Plugin Directory

Changeset 3359545


Ignore:
Timestamp:
09/11/2025 04:24:16 AM (7 months ago)
Author:
linguise
Message:

Updating to version 2.1.70

Location:
linguise
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • linguise/tags/2.1.70/linguise.php

    r3358294 r3359545  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.1.69
     7 * Version:2.1.70
    88 * Text Domain: linguise
    99 * Domain Path: /languages
  • linguise/tags/2.1.70/readme.txt

    r3358294 r3359545  
    44Requires at least: 4.0
    55Tested up to: 6.8
    6 Stable tag:2.1.69
     6Stable tag:2.1.70
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    104104
    105105== Changelog ==
     106= 2.1.70 =
     107- Fix: Add missing fragment to be translated for Amelia Booking
     108
    106109= 2.1.69 =
    107110- Fix: Improper usage of apply_filters for 3rd-party integrations
  • linguise/tags/2.1.70/src/constants.php

    r3358294 r3359545  
    11<?php
    22if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) {
    3     define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.1.69');
     3    define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.1.70');
    44}
    55
    66if (!defined('LINGUISE_VERSION')) {
    7     define('LINGUISE_VERSION', '2.1.69');
     7    define('LINGUISE_VERSION', '2.1.70');
    88}
  • linguise/tags/2.1.70/src/thirdparty/ameliabooking.php

    r3306131 r3359545  
    3131            'match' => 'var wpAmeliaLabels = (.*?);',
    3232            'replacement' => 'var wpAmeliaLabels = $$JSON_DATA$$;',
     33        ],
     34        [
     35            'name' => 'amelia-settings',
     36            'match' => 'var wpAmeliaSettings = (.*?);',
     37            'replacement' => 'var wpAmeliaSettings = $$JSON_DATA$$;',
     38            'strict' => true, // Only match if the object is allowed
     39        ],
     40    ];
     41
     42    /**
     43     * A collection of fragment keys that we want to translate
     44     *
     45     * @var array
     46     */
     47    protected static $fragment_keys = [
     48        [
     49            'key' => '^customizedData\.sbsNew\.(?!colors)\w+\.(?:options|translations|order)\.\w+\.(?:name|default)',
     50            'mode' => 'regex_full',
     51            'kind' => 'allow',
     52        ],
     53        [
     54            'key' => '^weekSchedule\.\d+\.day',
     55            'mode' => 'regex_full',
     56            'kind' => 'allow',
    3357        ],
    3458    ];
  • linguise/tags/2.1.70/vendor/composer/installed.php

    r3358294 r3359545  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '432fbdb498304f76dfa110686dc0cd6c832d0a8a',
     6        'reference' => 'bcaef746ed96b5330bd8bcc26c7674d16bc86f71',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '432fbdb498304f76dfa110686dc0cd6c832d0a8a',
     34            'reference' => 'bcaef746ed96b5330bd8bcc26c7674d16bc86f71',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
  • linguise/trunk/linguise.php

    r3358294 r3359545  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.1.69
     7 * Version:2.1.70
    88 * Text Domain: linguise
    99 * Domain Path: /languages
  • linguise/trunk/readme.txt

    r3358294 r3359545  
    44Requires at least: 4.0
    55Tested up to: 6.8
    6 Stable tag:2.1.69
     6Stable tag:2.1.70
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    104104
    105105== Changelog ==
     106= 2.1.70 =
     107- Fix: Add missing fragment to be translated for Amelia Booking
     108
    106109= 2.1.69 =
    107110- Fix: Improper usage of apply_filters for 3rd-party integrations
  • linguise/trunk/src/constants.php

    r3358294 r3359545  
    11<?php
    22if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) {
    3     define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.1.69');
     3    define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.1.70');
    44}
    55
    66if (!defined('LINGUISE_VERSION')) {
    7     define('LINGUISE_VERSION', '2.1.69');
     7    define('LINGUISE_VERSION', '2.1.70');
    88}
  • linguise/trunk/src/thirdparty/ameliabooking.php

    r3306131 r3359545  
    3131            'match' => 'var wpAmeliaLabels = (.*?);',
    3232            'replacement' => 'var wpAmeliaLabels = $$JSON_DATA$$;',
     33        ],
     34        [
     35            'name' => 'amelia-settings',
     36            'match' => 'var wpAmeliaSettings = (.*?);',
     37            'replacement' => 'var wpAmeliaSettings = $$JSON_DATA$$;',
     38            'strict' => true, // Only match if the object is allowed
     39        ],
     40    ];
     41
     42    /**
     43     * A collection of fragment keys that we want to translate
     44     *
     45     * @var array
     46     */
     47    protected static $fragment_keys = [
     48        [
     49            'key' => '^customizedData\.sbsNew\.(?!colors)\w+\.(?:options|translations|order)\.\w+\.(?:name|default)',
     50            'mode' => 'regex_full',
     51            'kind' => 'allow',
     52        ],
     53        [
     54            'key' => '^weekSchedule\.\d+\.day',
     55            'mode' => 'regex_full',
     56            'kind' => 'allow',
    3357        ],
    3458    ];
  • linguise/trunk/vendor/composer/installed.php

    r3358294 r3359545  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '432fbdb498304f76dfa110686dc0cd6c832d0a8a',
     6        'reference' => 'bcaef746ed96b5330bd8bcc26c7674d16bc86f71',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '432fbdb498304f76dfa110686dc0cd6c832d0a8a',
     34            'reference' => 'bcaef746ed96b5330bd8bcc26c7674d16bc86f71',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.