// Package google_translate provides Google Cloud Translation integration. // OPT-IN: Only active when GOOGLE_TRANSLATE_API_KEY is configured. // // Features: // - Translate any text field on any record // - Auto-detect source language // - Batch translation support package google_translate import ( "odoo-go/addons/google_translate/models" "odoo-go/pkg/modules" ) func init() { modules.Register(&modules.Module{ Name: "google_translate", Description: "Google Cloud Translation", Version: "19.0.1.0.0", Category: "Integration", Depends: []string{"base"}, Application: false, Installable: true, Sequence: 100, Init: models.Init, }) }