Plugin Directory

Changeset 3344947


Ignore:
Timestamp:
08/15/2025 03:22:28 AM (8 months ago)
Author:
linguise
Message:

Updating to version 2.1.64

Location:
linguise
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • linguise/tags/2.1.64/assets/languages.json

    r3344273 r3344947  
    6868    "code": "pt-br",
    6969    "rtl": false,
    70     "wp_code": null
     70    "wp_code": "pt_BR"
    7171  },
    7272  "bg": {
  • linguise/tags/2.1.64/linguise.php

    r3344273 r3344947  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.1.63
     7 * Version:2.1.64
    88 * Text Domain: linguise
    99 * Domain Path: /languages
  • linguise/tags/2.1.64/readme.txt

    r3344273 r3344947  
    44Requires at least: 4.0
    55Tested up to: 6.8
    6 Stable tag:2.1.63
     6Stable tag:2.1.64
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    104104
    105105== Changelog ==
     106= 2.1.64 =
     107- Fix: pt-br and normalize locale compare underscore/dash
     108
    106109= 2.1.63 =
    107110- Fix: Portuguese language is marked as unknown
  • linguise/tags/2.1.64/src/Helper.php

    r3317948 r3344947  
    231231    public static function localeCompare($locale, $test_locale)
    232232    {
     233        // Normalize underscore and dash to a dash
     234        $locale = str_replace('_', '-', $locale);
     235        $test_locale = str_replace('_', '-', $test_locale);
    233236        if (strcasecmp($locale, $test_locale) === 0) {
    234237            return true;
  • linguise/tags/2.1.64/src/constants.php

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

    r3344273 r3344947  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '9959f7d6b10f68f0e922a86624576975d2ceed40',
     6        'reference' => '37457fee5d1738c1fba11b488aaa8b4034be5ec8',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '9959f7d6b10f68f0e922a86624576975d2ceed40',
     34            'reference' => '37457fee5d1738c1fba11b488aaa8b4034be5ec8',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
  • linguise/trunk/assets/languages.json

    r3344273 r3344947  
    6868    "code": "pt-br",
    6969    "rtl": false,
    70     "wp_code": null
     70    "wp_code": "pt_BR"
    7171  },
    7272  "bg": {
  • linguise/trunk/linguise.php

    r3344273 r3344947  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.1.63
     7 * Version:2.1.64
    88 * Text Domain: linguise
    99 * Domain Path: /languages
  • linguise/trunk/readme.txt

    r3344273 r3344947  
    44Requires at least: 4.0
    55Tested up to: 6.8
    6 Stable tag:2.1.63
     6Stable tag:2.1.64
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    104104
    105105== Changelog ==
     106= 2.1.64 =
     107- Fix: pt-br and normalize locale compare underscore/dash
     108
    106109= 2.1.63 =
    107110- Fix: Portuguese language is marked as unknown
  • linguise/trunk/src/Helper.php

    r3317948 r3344947  
    231231    public static function localeCompare($locale, $test_locale)
    232232    {
     233        // Normalize underscore and dash to a dash
     234        $locale = str_replace('_', '-', $locale);
     235        $test_locale = str_replace('_', '-', $test_locale);
    233236        if (strcasecmp($locale, $test_locale) === 0) {
    234237            return true;
  • linguise/trunk/src/constants.php

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

    r3344273 r3344947  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '9959f7d6b10f68f0e922a86624576975d2ceed40',
     6        'reference' => '37457fee5d1738c1fba11b488aaa8b4034be5ec8',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '9959f7d6b10f68f0e922a86624576975d2ceed40',
     34            'reference' => '37457fee5d1738c1fba11b488aaa8b4034be5ec8',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.