UNPKG

i18n-ai-translate

Version:

AI-powered localization CLI, Node library, and GitHub Action. Translate i18next JSON, Gettext PO, Java .properties, and iOS .strings with ChatGPT, Claude, Gemini, or local Ollama models.

8 lines (7 loc) 402 B
import { check } from "./check"; import { createCache, loadCache, saveCache } from "./cache"; import { loadGlossary } from "./glossary"; import { translate, translateDiff } from "./translate"; export { check, createCache, loadCache, loadGlossary, saveCache, translate, translateDiff, }; export type { TranslationCache } from "./cache"; export type { default as Glossary } from "./interfaces/glossary";