@boost/translate
Version:
Package and application level translations made easy.
37 lines (25 loc) • 1.16 kB
Markdown


Package and application level translations made easy. Wraps the powerful
[](https://www.npmjs.com/package/i18next) library to abstract complexity away and define
common server-side settings.
```ts
import { createTranslator } from '@boost/translate';
const msg = await createTranslator(['common', 'errors'], '../path/to/resources');
msg('common:welcome', { name: 'Boost' }); // Hello Boost!
```
- Isolated translator instances.
- Namespace aware resource bundles.
- Automatic locale detection, from command line options, or from the operating system.
- Supports multiple file types: JavaScript, JSON, YAML.
- Message interpolation, pluralization, nesting, and more.
- Plus all other features found in [i18next](https://www.i18next.com/)!
```
yarn add @boost/translate
```
- [https://boostlib.dev/docs/translate](https://boostlib.dev/docs/translate)
- [https://boostlib.dev/api/translate](https://boostlib.dev/api/translate)