Changeset 3172115
- Timestamp:
- 10/19/2024 08:46:45 PM (5 months ago)
- Location:
- fluentc-translation
- Files:
-
- 371 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
fluentc-translation/trunk/fluentc_wordpress_plugin.php
r3171783 r3172115 7 7 * Plugin URI: https://www.fluentc.ai 8 8 * Description: A plugin that enables website owners to easily install the FluentC Translation on their WordPress site. 9 * Version: 2.0. 19 * Version: 2.0.2 10 10 * Author: FluentC 11 11 * Author URI: https://www.fluentc.ai … … 17 17 define( 'FLUENTC_DIR', __DIR__ ); 18 18 define( 'FLUENTC_SLUG', 'fluentc_translation' ); 19 define( 'FLUENTC_TRANSLATION_VERSION', "2.0. 1" );19 define( 'FLUENTC_TRANSLATION_VERSION', "2.0.2" ); 20 20 define( 'FLUENTC_TRANSLATION_PLUGIN_DIR', plugin_dir_path(__FILE__) ); 21 21 define( 'FLUENTC_TRANSLATION_PLUGIN_URL', plugin_dir_url(__FILE__) ); -
fluentc-translation/trunk/readme.txt
r3171783 r3172115 5 5 Requires at least: 4.6 6 6 Tested up to: 6.6.2 7 Stable tag: 2.0. 17 Stable tag: 2.0.2 8 8 Requires PHP: 7.3 9 9 License: GPLv2 or later -
fluentc-translation/trunk/src/actions/class-siteorigin.php
r3155849 r3172115 68 68 public function hooks() { 69 69 70 add_filter( 'siteorigin_panels_after_render', array( $this, 'siteorigin_filter_description' ), 100, 2 );71 add_filter( 'siteorigin_panels_widget_instance', array( $this,'siteorigin_filter_instance' ), 10, 3 );70 //add_filter( 'siteorigin_panels_after_render', array( $this, 'siteorigin_filter_description' ), 100, 2 ); 71 //add_filter( 'siteorigin_panels_widget_instance', array( $this,'siteorigin_filter_instance' ), 10, 3 ); 72 72 73 73 } -
fluentc-translation/trunk/src/services/class-translation-manager.php
r3170433 r3172115 158 158 public function __destruct() { 159 159 if (!empty($this->translationBatch)) { 160 $this->process Batch();160 $this->processPlaceholderBatch(); 161 161 } 162 162 }
Note: See TracChangeset
for help on using the changeset viewer.