useTranslator@astryxdesign/core v0.5.2 · useTranslator

Install with shadcn

Experimental compatibility. This installs the real Astryx package and creates a local public re-export; it does not copy component implementation source. How compatibility works.

bash
npx shadcn@latest add https://astryx.atmeta.com/r/astryx-component-use-translator.json

Usage

Returns a translator function that resolves keys against the current locale, provider overrides, and the shipped English fallback catalog. Call inside a component; the returned function can be used anywhere within that component's scope.

ts
import {useTranslator} from '@astryxdesign/core/i18n'

Returns

FieldTypeDescription
value(key: string, values?: Record<string, string | number | Date>) => string

A stable translator function bound to the current InternationalizationProvider context. Call it with a message key and optional ICU MessageFormat values to get the formatted string in the active locale. Safe to use in render, event handlers, effects, or any code that runs during the parent component's lifecycle.