Changeset 3484358
- Timestamp:
- 03/17/2026 01:07:34 AM (2 weeks ago)
- Location:
- linguise
- Files:
-
- 10 edited
- 1 copied
-
tags/2.2.32 (copied) (copied from linguise/trunk)
-
tags/2.2.32/languages/linguise.pot (modified) (1 diff)
-
tags/2.2.32/linguise.php (modified) (5 diffs)
-
tags/2.2.32/readme.txt (modified) (2 diffs)
-
tags/2.2.32/src/constants.php (modified) (1 diff)
-
tags/2.2.32/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/languages/linguise.pot (modified) (1 diff)
-
trunk/linguise.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/constants.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
linguise/tags/2.2.32/languages/linguise.pot
r3483370 r3484358 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.3 1\n"5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.32\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/linguise\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
linguise/tags/2.2.32/linguise.php
r3483370 r3484358 5 5 * Plugin URI: https://www.linguise.com/ 6 6 * Description: Linguise translation plugin 7 * Version:2.2.3 17 * Version:2.2.32 8 8 * Text Domain: linguise 9 9 * Domain Path: /languages … … 21 21 defined('ABSPATH') || die(''); 22 22 23 include_once ('src/Helper.php');24 include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR . 'constants.php';23 include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR . 'Helper.php'; 24 include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR . 'constants.php'; 25 25 26 26 // Check plugin requirements … … 564 564 } 565 565 566 include_once( 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');566 include_once(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'); 567 567 568 568 Configuration::getInstance()->set('cms', 'wordpress'); … … 614 614 } 615 615 616 include_once( 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');616 include_once(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'); 617 617 618 618 $base_dir = linguiseGetSite('', 'relative'); … … 649 649 $GLOBALS['wp_rewrite'] = new \WP_Rewrite(); 650 650 651 include_once ('script.php');651 include_once __DIR__ . DIRECTORY_SEPARATOR . 'script.php'; 652 652 } 653 653 -
linguise/tags/2.2.32/readme.txt
r3483370 r3484358 4 4 Requires at least: 4.0 5 5 Tested up to: 6.9 6 Stable tag: 2.2.3 16 Stable tag: 2.2.32 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 108 108 109 109 == Changelog == 110 = 2.2.32 = 111 - Fix: Make import path more absolute 112 110 113 = 2.2.31 = 111 114 - Fix: Base URL is not applied properly -
linguise/tags/2.2.32/src/constants.php
r3483370 r3484358 1 1 <?php 2 2 if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) { 3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.3 1');3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.32'); 4 4 } 5 5 6 6 if (!defined('LINGUISE_VERSION')) { 7 define('LINGUISE_VERSION', '2.2.3 1');7 define('LINGUISE_VERSION', '2.2.32'); 8 8 } -
linguise/tags/2.2.32/vendor/composer/installed.php
r3483370 r3484358 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 4cd5d1fe9a1bce161277d7d65bc305f0e79b54c3',6 'reference' => 'c16802c8ba939a357e6cf5812bfcc4628c8e762f', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 32 32 'pretty_version' => 'dev-master', 33 33 'version' => 'dev-master', 34 'reference' => ' 4cd5d1fe9a1bce161277d7d65bc305f0e79b54c3',34 'reference' => 'c16802c8ba939a357e6cf5812bfcc4628c8e762f', 35 35 'type' => 'library', 36 36 'install_path' => __DIR__ . '/../../', -
linguise/trunk/languages/linguise.pot
r3483370 r3484358 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.3 1\n"5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.32\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/linguise\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
linguise/trunk/linguise.php
r3483370 r3484358 5 5 * Plugin URI: https://www.linguise.com/ 6 6 * Description: Linguise translation plugin 7 * Version:2.2.3 17 * Version:2.2.32 8 8 * Text Domain: linguise 9 9 * Domain Path: /languages … … 21 21 defined('ABSPATH') || die(''); 22 22 23 include_once ('src/Helper.php');24 include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR . 'constants.php';23 include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR . 'Helper.php'; 24 include_once plugin_dir_path(__FILE__) . 'src' . DIRECTORY_SEPARATOR . 'constants.php'; 25 25 26 26 // Check plugin requirements … … 564 564 } 565 565 566 include_once( 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');566 include_once(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'); 567 567 568 568 Configuration::getInstance()->set('cms', 'wordpress'); … … 614 614 } 615 615 616 include_once( 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');616 include_once(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'); 617 617 618 618 $base_dir = linguiseGetSite('', 'relative'); … … 649 649 $GLOBALS['wp_rewrite'] = new \WP_Rewrite(); 650 650 651 include_once ('script.php');651 include_once __DIR__ . DIRECTORY_SEPARATOR . 'script.php'; 652 652 } 653 653 -
linguise/trunk/readme.txt
r3483370 r3484358 4 4 Requires at least: 4.0 5 5 Tested up to: 6.9 6 Stable tag: 2.2.3 16 Stable tag: 2.2.32 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 108 108 109 109 == Changelog == 110 = 2.2.32 = 111 - Fix: Make import path more absolute 112 110 113 = 2.2.31 = 111 114 - Fix: Base URL is not applied properly -
linguise/trunk/src/constants.php
r3483370 r3484358 1 1 <?php 2 2 if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) { 3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.3 1');3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.32'); 4 4 } 5 5 6 6 if (!defined('LINGUISE_VERSION')) { 7 define('LINGUISE_VERSION', '2.2.3 1');7 define('LINGUISE_VERSION', '2.2.32'); 8 8 } -
linguise/trunk/vendor/composer/installed.php
r3483370 r3484358 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 4cd5d1fe9a1bce161277d7d65bc305f0e79b54c3',6 'reference' => 'c16802c8ba939a357e6cf5812bfcc4628c8e762f', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 32 32 'pretty_version' => 'dev-master', 33 33 'version' => 'dev-master', 34 'reference' => ' 4cd5d1fe9a1bce161277d7d65bc305f0e79b54c3',34 'reference' => 'c16802c8ba939a357e6cf5812bfcc4628c8e762f', 35 35 'type' => 'library', 36 36 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.