Translating the Interface
The extension's own labels — admin field names and the storefront toggle link — are translatable through Magento's standard CSV mechanism. This is separate from translating review content, which is what the module does at runtime.
Add a locale
- Copy
app/code/Webkul/AIReviewTranslator/i18n/en_US.csv. - Rename it to your locale, for example
de_DE.csv. - Translate the right-hand column only. Leave the left column untouched — it is the lookup key.
- Put the file back in the module's
i18nfolder.
"Show Translated Review","Übersetzte Bewertung anzeigen"
"Show Orignal Review","Originalbewertung anzeigen"
"LLM Provider","LLM-Anbieter"
- Deploy and flush:
php bin/magento setup:static-content:deploy de_DE
php bin/magento cache:flush
Fixing the toggle typo
The shipped en_US.csv contains "Show Orignal Review" — a spelling mistake in the module. To correct it without editing the vendor file, override the key in your own theme or module's i18n/en_US.csv:
"Show Orignal Review","Show Original Review"
Keep the key spelled wrong
The left column must match the string the module actually asks for. Correcting the key as well as the value means nothing matches and the original typo shows through.
Next: Enable the Module.
