Changeset 3285501
- Timestamp:
- 05/01/2025 10:20:25 AM (10 months ago)
- Location:
- auto-translator-polylang
- Files:
-
- 6 edited
- 1 copied
-
tags/1.1.1 (copied) (copied from auto-translator-polylang/trunk)
-
tags/1.1.1/auto-translator-for-polylang.php (modified) (2 diffs)
-
tags/1.1.1/includes/Base/ATFP_Translation.php (modified) (2 diffs)
-
tags/1.1.1/readme.txt (modified) (2 diffs)
-
trunk/auto-translator-for-polylang.php (modified) (2 diffs)
-
trunk/includes/Base/ATFP_Translation.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
auto-translator-polylang/tags/1.1.1/auto-translator-for-polylang.php
r3272387 r3285501 5 5 * Plugin Name: Auto Translator for Polylang 6 6 * Description: Plugin to translate your pages and posts working with Polylang 7 * Version: 1.1. 07 * Version: 1.1.1 8 8 * Author: UAPP GROUP 9 9 * Author URI: https://uapp.group/ … … 26 26 define('ATFP_PLUGIN_NAME', trim(dirname(ATFP_PLUGIN_BASENAME), '/')); 27 27 28 const ATFP_VERSION = '1.1. 0';28 const ATFP_VERSION = '1.1.1'; 29 29 30 30 const ATFP_TEMPLATES = ATFP_PLUGIN_DIR . "/templates"; -
auto-translator-polylang/tags/1.1.1/includes/Base/ATFP_Translation.php
r3272387 r3285501 548 548 public function bulk_translate_posts_notice () { 549 549 $num_changed = get_option('atfp_translated_entities'); 550 $num_changed = is_array($num_changed) ? $num_changed : []; 551 550 552 sprintf('<div id="message" class="updated notice is - dismissable"><p>' . esc_html__('Translated %d posts.', 'auto-translator-polylang') 551 553 . '</p></div>', esc_html(count($num_changed))); … … 556 558 public function bulk_translate_terms_notice () { 557 559 $num_changed = get_option('atfp_translated_taxonomies'); 560 $num_changed = is_array($num_changed) ? $num_changed : []; 561 558 562 sprintf('<div id="message" class="updated notice is - dismissable"><p>' . esc_html__('Translated %d terms.', 'auto-translator-polylang') 559 563 . '</p></div>', esc_html(count($num_changed))); -
auto-translator-polylang/tags/1.1.1/readme.txt
r3272387 r3285501 5 5 Requires at least: 5.8 6 6 Tested up to: 6.7.2 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 License: GPLv3 9 9 License URI: https://opensource.org/licenses/GPL-3.0 … … 51 51 == Changelog == 52 52 53 = 1.1.1 = 54 - Fix: add check on array type for count function 55 53 56 = 1.1.0 = 54 57 - Feature: add shortcode translation option -
auto-translator-polylang/trunk/auto-translator-for-polylang.php
r3272387 r3285501 5 5 * Plugin Name: Auto Translator for Polylang 6 6 * Description: Plugin to translate your pages and posts working with Polylang 7 * Version: 1.1. 07 * Version: 1.1.1 8 8 * Author: UAPP GROUP 9 9 * Author URI: https://uapp.group/ … … 26 26 define('ATFP_PLUGIN_NAME', trim(dirname(ATFP_PLUGIN_BASENAME), '/')); 27 27 28 const ATFP_VERSION = '1.1. 0';28 const ATFP_VERSION = '1.1.1'; 29 29 30 30 const ATFP_TEMPLATES = ATFP_PLUGIN_DIR . "/templates"; -
auto-translator-polylang/trunk/includes/Base/ATFP_Translation.php
r3272387 r3285501 548 548 public function bulk_translate_posts_notice () { 549 549 $num_changed = get_option('atfp_translated_entities'); 550 $num_changed = is_array($num_changed) ? $num_changed : []; 551 550 552 sprintf('<div id="message" class="updated notice is - dismissable"><p>' . esc_html__('Translated %d posts.', 'auto-translator-polylang') 551 553 . '</p></div>', esc_html(count($num_changed))); … … 556 558 public function bulk_translate_terms_notice () { 557 559 $num_changed = get_option('atfp_translated_taxonomies'); 560 $num_changed = is_array($num_changed) ? $num_changed : []; 561 558 562 sprintf('<div id="message" class="updated notice is - dismissable"><p>' . esc_html__('Translated %d terms.', 'auto-translator-polylang') 559 563 . '</p></div>', esc_html(count($num_changed))); -
auto-translator-polylang/trunk/readme.txt
r3272387 r3285501 5 5 Requires at least: 5.8 6 6 Tested up to: 6.7.2 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 License: GPLv3 9 9 License URI: https://opensource.org/licenses/GPL-3.0 … … 51 51 == Changelog == 52 52 53 = 1.1.1 = 54 - Fix: add check on array type for count function 55 53 56 = 1.1.0 = 54 57 - Feature: add shortcode translation option
Note: See TracChangeset
for help on using the changeset viewer.