Plugin Directory

Changeset 3153412


Ignore:
Timestamp:
09/17/2024 02:20:52 PM (19 months ago)
Author:
mvpis
Message:

Updated

Location:
fluentc-translation
Files:
365 added
3 edited

Legend:

Unmodified
Added
Removed
  • fluentc-translation/trunk/fluentc_wordpress_plugin.php

    r3152996 r3153412  
    77 * Plugin URI: https://github.com/fluentc/wordpress-plugin
    88 * Description: A plugin that enables website owners to easily install the FluentC Translation on their WordPress site.
    9  * Version: 1.8.4
     9 * Version: 1.8.5
    1010 * Author: FluentC
    1111 * Author URI: https://www.fluentc.ai
     
    1717define( 'FLUENTC_DIR', __DIR__ );
    1818define( 'FLUENTC_SLUG', 'fluentc_translation' );
    19 define( 'FLUENTC_TRANSLATION_VERSION', "1.8.4" );
     19define( 'FLUENTC_TRANSLATION_VERSION', "1.8.5" );
    2020define( 'FLUENTC_TRANSLATION_PLUGIN_DIR', plugin_dir_path(__FILE__) );
    2121define( 'FLUENTC_TRANSLATION_PLUGIN_URL', plugin_dir_url(__FILE__) );
  • fluentc-translation/trunk/readme.txt

    r3152996 r3153412  
    55Requires at least: 4.6
    66Tested up to: 6.6.2
    7 Stable tag: 1.8.4
     7Stable tag: 1.8.5
    88Requires PHP: 7.3
    99License: GPLv2 or later
  • fluentc-translation/trunk/src/actions/class-wordpress.php

    r3152996 r3153412  
    780780   
    781781   
    782     $wp_language = $this->fluentc_language->get_fluentc_language();
     782    $wp_locale = get_locale();
     783    $wp_language = substr($wp_locale, 0, 2);
    783784
    784785    // Get the user's language
Note: See TracChangeset for help on using the changeset viewer.