pits / ai_translate
This extension provides option to translate content element, and tca record texts using Deepl, Googletranslate,Gpt4 , Gemini and Claude Api services.
Installs: 326
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 3
Open Issues: 5
Type:typo3-cms-extension
Requires
- php: ^8.1
- typo3/cms-core: ^12.4
This package is not auto-updated.
Last update: 2024-11-19 07:46:45 UTC
README
This extension provides option to translate content elements and tca record fields to desired language(supported by deepl). As a fallback, Google,openai,gemini,claude translate option is also provided as they provide support for many languages that deepl isn't providing. For both Deepl translate and Google translate, there are two modes-normal and autodetect, where the later autodetects source language and translates it to the desired language. For openai,gemini and claude autodetects source language and translates it to the desired language.
Installation
- Install the "ai_translate" extension in the standard TYPO3 way.
- Once the extension is installed, it will be accessible in the left menu in the TYPO3 backend.
- Click on the "AI Translate" option in the left menu to access languages settings.
Composer support
composer req pits/ai_translate
composer exec typo3 extension:setup
How to use:
Watch our instruction video to get an overview of the extension and how to use it.
Requirements
- TYPO3 11 (2.1.1)
- TYPO3 12 (3.1.1)
Extension Configuartion
Once you installed the extension, you have to set the API Key under extension configuration section
Translating content elements
Once the extension is installed and Api key provided we are good to go for translating content elements.On translating content element,There appears additional six options apart from normal tranlate and copy.
- Deepl Translate(auto detect).
- Deepl Translate.
- Google Translate(auto detect).
- Google Translate.
- OpenAi Translate
- Gemini Translate
- Claude Translate
Claude AI
Claude AI anthropic has request per minute limitation for free account See details here
Translating TCA records
AITranslate supports translation of specific fields of TCA records.It understands fields which need to be translated, only if their l10n_mode
is set to prefixLangTitle
.
For example if you need translation of fields of tx_news (teaser and bodytext),You need to override those fields like follows:
Add it to TCA/Overrides:
Example : typo3conf/ext/theme/Configuration/TCA/Overrides/tx_news_domain_model_news.php
<?php
$GLOBALS['TCA']['tx_news_domain_model_news']['columns']['bodytext']['l10n_mode'] = 'prefixLangTitle';
$GLOBALS['TCA']['tx_news_domain_model_news']['columns']['teaser']['l10n_mode'] = 'prefixLangTitle';
First select the AI models you want and then select the language you want to translate.
AI Translate Module Settings
The settings module helps to assign the sytem languages to either deepl supported languages or Google,OpenAi,Gemini,Claude languages.
For example you can assign German under Austrian German sys language if you wish. For assigning a language to a sys language you must enter it’s isocode(ISO 639-1).
Changelog
- 3.1.0: Initial release
- 3.1.1: Claude AI Integration, Record list and Container bug fix