1.0.8 • Published 7 months ago
@zoai/core v1.0.8
zoai
From Zed to A International - A multilingual package for your applications
Installation
pnpm add @zoai/core
Usage
import { Zoai } from "@zoai/core";
const zoai = new Zoai({
helloWorld: "Hello World",
goodbyeWorld: "Goodbye World",
helloBye: "Hello {{name}}",
} as const);
console.log(zoai.t("helloWorld"));
console.log(zoai.t("goodbyeWorld"));
console.log(zoai.t("helloBye", { name: "John" }));
Contributing
See CONTRIBUTING.md for more information.