Plugin Directory

Changeset 3484358


Ignore:
Timestamp:
03/17/2026 01:07:34 AM (2 weeks ago)
Author:
linguise
Message:

Updating to version 2.2.32

Location:
linguise
Files:
10 edited
1 copied

Legend:

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

    r3483370 r3484358  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.31\n"
     5"Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.32\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.32/linguise.php

    r3483370 r3484358  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.2.31
     7 * Version:2.2.32
    88 * Text Domain: linguise
    99 * Domain Path: /languages
     
    2121defined('ABSPATH') || die('');
    2222
    23 include_once('src/Helper.php');
    24 include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR .'constants.php';
     23include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR . 'Helper.php';
     24include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR . 'constants.php';
    2525
    2626// Check plugin requirements
     
    564564        }
    565565
    566         include_once('vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
     566        include_once(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
    567567
    568568        Configuration::getInstance()->set('cms', 'wordpress');
     
    614614    }
    615615
    616     include_once('vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
     616    include_once(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
    617617
    618618    $base_dir = linguiseGetSite('', 'relative');
     
    649649    $GLOBALS['wp_rewrite'] = new \WP_Rewrite();
    650650
    651     include_once('script.php');
     651    include_once __DIR__ . DIRECTORY_SEPARATOR . 'script.php';
    652652}
    653653
  • linguise/tags/2.2.32/readme.txt

    r3483370 r3484358  
    44Requires at least: 4.0
    55Tested up to: 6.9
    6 Stable tag: 2.2.31
     6Stable tag: 2.2.32
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    108108
    109109== Changelog ==
     110= 2.2.32 =
     111- Fix: Make import path more absolute
     112
    110113= 2.2.31 =
    111114- Fix: Base URL is not applied properly
  • linguise/tags/2.2.32/src/constants.php

    r3483370 r3484358  
    11<?php
    22if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) {
    3     define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.31');
     3    define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.32');
    44}
    55
    66if (!defined('LINGUISE_VERSION')) {
    7     define('LINGUISE_VERSION', '2.2.31');
     7    define('LINGUISE_VERSION', '2.2.32');
    88}
  • linguise/tags/2.2.32/vendor/composer/installed.php

    r3483370 r3484358  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '4cd5d1fe9a1bce161277d7d65bc305f0e79b54c3',
     6        'reference' => 'c16802c8ba939a357e6cf5812bfcc4628c8e762f',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '4cd5d1fe9a1bce161277d7d65bc305f0e79b54c3',
     34            'reference' => 'c16802c8ba939a357e6cf5812bfcc4628c8e762f',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
  • linguise/trunk/languages/linguise.pot

    r3483370 r3484358  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.31\n"
     5"Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.32\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

    r3483370 r3484358  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.2.31
     7 * Version:2.2.32
    88 * Text Domain: linguise
    99 * Domain Path: /languages
     
    2121defined('ABSPATH') || die('');
    2222
    23 include_once('src/Helper.php');
    24 include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR .'constants.php';
     23include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR . 'Helper.php';
     24include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR . 'constants.php';
    2525
    2626// Check plugin requirements
     
    564564        }
    565565
    566         include_once('vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
     566        include_once(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
    567567
    568568        Configuration::getInstance()->set('cms', 'wordpress');
     
    614614    }
    615615
    616     include_once('vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
     616    include_once(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
    617617
    618618    $base_dir = linguiseGetSite('', 'relative');
     
    649649    $GLOBALS['wp_rewrite'] = new \WP_Rewrite();
    650650
    651     include_once('script.php');
     651    include_once __DIR__ . DIRECTORY_SEPARATOR . 'script.php';
    652652}
    653653
  • linguise/trunk/readme.txt

    r3483370 r3484358  
    44Requires at least: 4.0
    55Tested up to: 6.9
    6 Stable tag: 2.2.31
     6Stable tag: 2.2.32
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    108108
    109109== Changelog ==
     110= 2.2.32 =
     111- Fix: Make import path more absolute
     112
    110113= 2.2.31 =
    111114- Fix: Base URL is not applied properly
  • linguise/trunk/src/constants.php

    r3483370 r3484358  
    11<?php
    22if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) {
    3     define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.31');
     3    define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.32');
    44}
    55
    66if (!defined('LINGUISE_VERSION')) {
    7     define('LINGUISE_VERSION', '2.2.31');
     7    define('LINGUISE_VERSION', '2.2.32');
    88}
  • linguise/trunk/vendor/composer/installed.php

    r3483370 r3484358  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '4cd5d1fe9a1bce161277d7d65bc305f0e79b54c3',
     6        'reference' => 'c16802c8ba939a357e6cf5812bfcc4628c8e762f',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '4cd5d1fe9a1bce161277d7d65bc305f0e79b54c3',
     34            'reference' => 'c16802c8ba939a357e6cf5812bfcc4628c8e762f',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.