Changeset 3385550
- Timestamp:
- 10/28/2025 04:07:03 AM (4 months ago)
- Location:
- workzen-connector/trunk
- Files:
-
- 5 edited
-
includes/class-workzen-connector.php (modified) (2 diffs)
-
languages/workzen-connector-fr_CA.mo (modified) (previous)
-
languages/workzen-connector-fr_CA.po (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
workzen-connector.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
workzen-connector/trunk/includes/class-workzen-connector.php
r3384724 r3385550 70 70 */ 71 71 private function register_hooks() { 72 // Load text domain for translations (needed for local development and custom translations) 73 add_action( 'init', array( $this, 'load_textdomain' ) ); 74 72 75 // Settings 73 76 add_action( 'admin_init', array( $this->settings, 'register_settings' ) ); … … 97 100 // Set default options on first run 98 101 $this->settings->set_defaults(); 102 } 103 104 /** 105 * Load plugin text domain for translations 106 * 107 * Note: While WordPress.org auto-loads translations for hosted plugins, 108 * this function is still needed for: 109 * - Local development and testing 110 * - Custom translations that override WordPress.org translations 111 * - Plugins installed manually (not from WordPress.org) 112 */ 113 public function load_textdomain() { 114 load_plugin_textdomain( 115 'workzen-connector', 116 false, 117 dirname( plugin_basename( WZC_PLUGIN_FILE ) ) . '/languages/' 118 ); 99 119 } 100 120 -
workzen-connector/trunk/languages/workzen-connector-fr_CA.po
r3385453 r3385550 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WorkZen Connector 1. 8.5\n"5 "Project-Id-Version: WorkZen Connector 1.9.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/workzen-" 7 7 "connector\n" … … 10 10 "Last-Translator: Automatically generated\n" 11 11 "Language-Team: none\n" 12 "Language: fr_CA fr_CA\n"12 "Language: fr_CA\n" 13 13 "MIME-Version: 1.0\n" 14 14 "Content-Type: text/plain; charset=UTF-8\n" -
workzen-connector/trunk/readme.txt
r3385453 r3385550 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.9. 07 Stable tag: 1.9.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 102 102 103 103 == Changelog == 104 105 = 1.9.1 = 106 * Fixed French Canadian translation locale code (was "fr_CAfr_CA", now correctly "fr_CA") 107 * Restored load_plugin_textdomain() for local development and custom translations 108 * Updated translation file headers to version 1.9.1 104 109 105 110 = 1.9.0 = -
workzen-connector/trunk/workzen-connector.php
r3385453 r3385550 3 3 * Plugin Name: WorkZen Connector 4 4 * Description: Connects WordPress forms to WorkZen CRM. Captures leads from Contact Form 7, WPForms, Gravity Forms, and other popular form plugins, sending them securely to your WorkZen account via the WorkZen API (https://api.workzen.io). Includes floating buttons with online booking functionality. 5 * Version: 1.9. 05 * Version: 1.9.1 6 6 * Author: Ika Balzam 7 7 * Author URI: https://workzen.io
Note: See TracChangeset
for help on using the changeset viewer.