Plugin Directory

Changeset 3490465


Ignore:
Timestamp:
03/25/2026 03:12:41 AM (7 days ago)
Author:
linguise
Message:

Updating to version 2.2.34

Location:
linguise
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • linguise/tags/2.2.34/languages/linguise.pot

    r3489573 r3490465  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.33\n"
     5"Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.34\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/linguise\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • linguise/tags/2.2.34/linguise.php

    r3489573 r3490465  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.2.33
     7 * Version:2.2.34
    88 * Text Domain: linguise
    99 * Domain Path: /languages
  • linguise/tags/2.2.34/readme.txt

    r3489573 r3490465  
    44Requires at least: 4.0
    55Tested up to: 6.9
    6 Stable tag: 2.2.33
     6Stable tag: 2.2.34
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    108108
    109109== Changelog ==
     110= 2.2.34 =
     111- Fix: Translate variation_description, availability_html, price_html
     112
    110113= 2.2.33 =
    111114- Fix: Ignore any REST request and do not set linguise_lang
  • linguise/tags/2.2.34/src/FragmentHandler.php

    r3472321 r3490465  
    5252            $use_key .= '.' . $array_index;
    5353        }
    54         if (!empty($current_key)) {
     54
     55        // Fix FragmentAttribute become invalid if value is array object
     56        if ($current_key !== null && $current_key !== '') {
    5557            if ($key === $use_key) {
    5658                $use_key = '.' . $use_key;
  • linguise/tags/2.2.34/src/constants.php

    r3489573 r3490465  
    11<?php
    22if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) {
    3     define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.33');
     3    define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.34');
    44}
    55
    66if (!defined('LINGUISE_VERSION')) {
    7     define('LINGUISE_VERSION', '2.2.33');
     7    define('LINGUISE_VERSION', '2.2.34');
    88}
  • linguise/tags/2.2.34/src/thirdparty/wc/woocommerce.php

    r3468995 r3490465  
    117117                ]
    118118            ]
    119         ]
     119        ],
     120        [
     121            'name'  => 'wc-product-variations',
     122            'key'   => 'data-product_variations',
     123            'strict' => true,
     124        ],
    120125    ];
    121126
     
    215220            'shipping_rates\.\d+\.items\.\d+\.name$',
    216221            'shipping_rates\.\d+\.shipping_rates\.\d+\.(name|description|delivery_time)$',
     222            '^\d+\.variation_description$',
     223            '^\d+\.availability_html$',
     224            '^\d+\.price_html$',
    217225        ];
    218226        foreach ($allowed_matches as $allowed_key) {
  • linguise/tags/2.2.34/vendor/composer/installed.php

    r3489573 r3490465  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => 'a68cbb12852f19db02524473b52c7aeda82d9855',
     6        'reference' => '8ce6da2db28a37f376f01357723cce763c23eb4c',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => 'a68cbb12852f19db02524473b52c7aeda82d9855',
     34            'reference' => '8ce6da2db28a37f376f01357723cce763c23eb4c',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
  • linguise/trunk/languages/linguise.pot

    r3489573 r3490465  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.33\n"
     5"Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.34\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/linguise\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • linguise/trunk/linguise.php

    r3489573 r3490465  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.2.33
     7 * Version:2.2.34
    88 * Text Domain: linguise
    99 * Domain Path: /languages
  • linguise/trunk/readme.txt

    r3489573 r3490465  
    44Requires at least: 4.0
    55Tested up to: 6.9
    6 Stable tag: 2.2.33
     6Stable tag: 2.2.34
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    108108
    109109== Changelog ==
     110= 2.2.34 =
     111- Fix: Translate variation_description, availability_html, price_html
     112
    110113= 2.2.33 =
    111114- Fix: Ignore any REST request and do not set linguise_lang
  • linguise/trunk/src/FragmentHandler.php

    r3472321 r3490465  
    5252            $use_key .= '.' . $array_index;
    5353        }
    54         if (!empty($current_key)) {
     54
     55        // Fix FragmentAttribute become invalid if value is array object
     56        if ($current_key !== null && $current_key !== '') {
    5557            if ($key === $use_key) {
    5658                $use_key = '.' . $use_key;
  • linguise/trunk/src/constants.php

    r3489573 r3490465  
    11<?php
    22if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) {
    3     define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.33');
     3    define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.34');
    44}
    55
    66if (!defined('LINGUISE_VERSION')) {
    7     define('LINGUISE_VERSION', '2.2.33');
     7    define('LINGUISE_VERSION', '2.2.34');
    88}
  • linguise/trunk/src/thirdparty/wc/woocommerce.php

    r3468995 r3490465  
    117117                ]
    118118            ]
    119         ]
     119        ],
     120        [
     121            'name'  => 'wc-product-variations',
     122            'key'   => 'data-product_variations',
     123            'strict' => true,
     124        ],
    120125    ];
    121126
     
    215220            'shipping_rates\.\d+\.items\.\d+\.name$',
    216221            'shipping_rates\.\d+\.shipping_rates\.\d+\.(name|description|delivery_time)$',
     222            '^\d+\.variation_description$',
     223            '^\d+\.availability_html$',
     224            '^\d+\.price_html$',
    217225        ];
    218226        foreach ($allowed_matches as $allowed_key) {
  • linguise/trunk/vendor/composer/installed.php

    r3489573 r3490465  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => 'a68cbb12852f19db02524473b52c7aeda82d9855',
     6        'reference' => '8ce6da2db28a37f376f01357723cce763c23eb4c',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => 'a68cbb12852f19db02524473b52c7aeda82d9855',
     34            'reference' => '8ce6da2db28a37f376f01357723cce763c23eb4c',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.