| @@ -81,9 +81,9 @@ | ||
| 81 | 81 | |
| 82 | 82 | $canAutoInstall = $this->canAutoInstallFluentKit(); |
| 83 | 83 | if (!$canAutoInstall) { |
| 84 | 84 | return $this->sendError([ |
| 85 | - 'message' => __('Please install FluentKit from GitHub, then reload this page to connect Fluent Boards with AI agents.', 'fluent-boards'), | |
| 85 | + 'message' => __('Please install FluentHub from GitHub, then reload this page to connect Fluent Boards with AI agents.', 'fluent-boards'), | |
| 86 | 86 | 'toolkit_download_url' => 'https://github.com/WPManageNinja/fluent-toolkit', |
| 87 | 87 | ]); |
| 88 | 88 | } |
| 89 | 89 | |
| @@ -102,15 +102,15 @@ | ||
| 102 | 102 | $isInstalled = $this->isAdapterPresent() || $toolkitInstalled; |
| 103 | 103 | $isActive = (is_plugin_active(self::ADAPTER_PLUGIN_FILE) && $adapterRuntimeAvailable) || $toolkitAdapterAvailable; |
| 104 | 104 | |
| 105 | 105 | if ($isInstalled && $isActive) { |
| 106 | - $message = __('FluentKit installed and activated. Reload the page to register Fluent Boards MCP tools.', 'fluent-boards'); | |
| 106 | + $message = __('FluentHub installed and activated. Reload the page to register Fluent Boards MCP tools.', 'fluent-boards'); | |
| 107 | 107 | } elseif ($toolkitInstalled && $toolkitActive) { |
| 108 | - $message = __('FluentKit is installed and active, but this version does not include the bundled MCP adapter yet. Please update FluentKit when the MCP-ready build is available, then reload this page.', 'fluent-boards'); | |
| 108 | + $message = __('FluentHub is installed and active, but this version does not include the bundled MCP adapter yet. Please update FluentHub when the MCP-ready build is available, then reload this page.', 'fluent-boards'); | |
| 109 | 109 | } elseif ($toolkitInstalled) { |
| 110 | - $message = __('FluentKit is installed but could not be activated automatically. Please activate FluentKit from the Plugins page, then reload this page.', 'fluent-boards'); | |
| 110 | + $message = __('FluentHub is installed but could not be activated automatically. Please activate FluentHub from the Plugins page, then reload this page.', 'fluent-boards'); | |
| 111 | 111 | } else { |
| 112 | - $message = __('Could not install FluentKit automatically. Please install FluentKit manually, then reload this page.', 'fluent-boards'); | |
| 112 | + $message = __('Could not install FluentHub automatically. Please install FluentHub manually, then reload this page.', 'fluent-boards'); | |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | return $this->sendSuccess([ |
| 116 | 116 | 'is_installed' => $isInstalled, |