Changeset 3129774
- Timestamp:
- 08/01/2024 11:59:20 PM (20 months ago)
- Location:
- ai-translate-for-polylang
- Files:
-
- 8 added
- 2 edited
-
tags/1.0.4 (added)
-
tags/1.0.4/ai-translate-polylang.php (added)
-
tags/1.0.4/inc (added)
-
tags/1.0.4/inc/open-ai (added)
-
tags/1.0.4/inc/open-ai/OpenAi.php (added)
-
tags/1.0.4/inc/open-ai/Url.php (added)
-
tags/1.0.4/inc/settingslib.php (added)
-
tags/1.0.4/readme.txt (added)
-
trunk/ai-translate-polylang.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ai-translate-for-polylang/trunk/ai-translate-polylang.php
r3129770 r3129774 4 4 Plugin URI: https://wordpress.org/plugins/ai-translate-polylang/ 5 5 Description: Add auto AI translation caperbility to Polylang 6 Version: 1.0. 36 Version: 1.0.4 7 7 Author: James Low 8 8 Author URI: http://jameslow.com … … 12 12 /* 13 13 Next Version: 14 - Clear out or translate Yoast SEO15 14 - Auto translate on publish post (publish/save as draft) 16 15 - Setting to only auto translate for certain categories/pages … … 31 30 /* Helper functions */ 32 31 public static function require_settings() { 33 require_once 'inc/settingslib.php'; 32 if (class_exists('\PageApp')) { 33 \PageApp::require_settings(); 34 } else { 35 require_once 'inc/settingslib.php'; 36 } 34 37 } 35 38 public static function require_utils() { 36 require_once 'inc/utilslib.php'; 39 if (class_exists('\PageApp')) { 40 \PageApp::require_utils(); 41 } else { 42 require_once 'inc/utilslib.php'; 43 } 37 44 } 38 45 public static function require_openai() { -
ai-translate-for-polylang/trunk/readme.txt
r3129770 r3129774 5 5 Requires at least: 3.0 6 6 Tested up to: 6.5.4 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: MIT 9 9 License URI: https://opensource.org/licenses/MIT 10 10 11 Add auto AI translation caperbility to Polylang using OpenAI/ChatGPT .11 Add auto AI translation caperbility to Polylang using OpenAI/ChatGPT or Anthropic/Claude. 12 12 13 13 == Description == 14 Add auto AI translation caperbility to Polylang using OpenAI/ChatGPT .14 Add auto AI translation caperbility to Polylang using OpenAI/ChatGPT or Anthropic/Claude. 15 15 16 This plugin connects to OpenAI/ChatGPT (api.openai.com) in PHP from the Wordpress admin in order to faciliate the translations. When a Wordpress author has the plugin activated, has entered their OpenAI API key in the settings, and clicks new translation from Polylang, the plugin will send the post title and post content to OpenAIfor tranlsation.16 This plugin connects to OpenAI/ChatGPT (api.openai.com) or Anthropic/Claude (api.anthropic.com) in PHP from the Wordpress admin in order to faciliate the translations. When a Wordpress author has the plugin activated, has entered their OpenAI API key in the settings, and clicks new translation from Polylang, the plugin will send the post title and post content to OpenAI or Anthropic for tranlsation. 17 17 18 18 == Installation == … … 34 34 == Changelog == 35 35 36 = 1.0.4 = 37 * Use PageApp for SettingsLib if avaliable 38 36 39 = 1.0.3 = 37 40 * Add Claude API
Note: See TracChangeset
for help on using the changeset viewer.