schummar-translate-test v1.0.0
schummar-translate
TypeScript powered translation library for React and Node.js.
Example
Given a translation file like this:
// en.ts
export default {
welcomeMessage: 'Hi, {name}',
currentTime: 'It is now {time, time, short}',
} as const;schummar-translate is able to provide type checking and autocomplete/IntelliSense for both translation keys and parameters in ICU format:

Getting started
Install schummar-translate.
npm install schummar-translateCreate and export a translator instance
// translate.ts
import { createTranslator, TranslationContextProvider } from 'schummar-translate/react';
import en from './en.ts';
import de from './de.ts';
export const { t, useTranslator, getTranslator } = createTranslator({
sourceDictionary: en,
sourceLocale: 'en',
dicts: { de },
});Use it everywhere in your app
import { t } from './translate';
export App() {
const [locale, setLocale] = useState('en');
const toggleLocale = () => {
setLocale((locale) => (locale === 'en' ? 'de' : 'en'));
}
return (
<TranslationContextProvider locale={locale}>
<div onClick={toggleLocale}>
{t('welcomeMessage', { name: 'schummar' })}
</div>
</TranslationContextProvider>
)
}API
createTranslator
function createTranslator(options: Options): ReturnValue;
type Options = {
sourceDictionary: { [id: string]: Dict | string };
sourceLocale: string;
fallbackLocale?: string | string[];
dicts?:
| { [locale: string]: PartialDict<D> | (() => MaybePromise<PartialDict<D>>) }
| ((locale: string) => MaybePromise<PartialDict<D> | null>);
warn?: (locale: string, id: string) => void;
fallback?: string | ((id: string, sourceTranslation: string) => string);
fallbackElement?: React.ReactNode | ((id: string, sourceTranslation: string) => React.ReactNode);
placeholder?: string | ((id: string, sourceTranslation: string) => string);
placeholderElement?: React.ReactNode | ((id: string, sourceTranslation: string) => React.ReactNode);
};
type ReturnValue = {
getTranslator: GetTranslator;
useTranslator: UseTranslator;
t: ReactTranslator;
};The are two versions of this function, depending on the used import. When importing 'schummar-translate', it creates a translator without React support (and therefore without the dependency on React). Then the last three parameters do not apply and the return value only contains getTranslator. When importing 'schummar-translate/react' React support and the last three parameters are included.
createTranslatorcreates and provides all the other functions and uses the passed insourceDictionaryto type them.sourceDictionarytakes the source dictionary as seen above.sourceLocaleis the locale of the source dictionary as ISO-639-1 code.fallbackLocaleprovides a locale that will be used as fallback if a translation key is not available for some locale.dictsprovides all languages except the source language. It can either be an object with the locales as key and a dictionary or promise of a dictionary as value. Or it can be a function returning a dictionary or promise of a dictionary for a given locale. The last can be used to lazy load locales (expect source locale), for example with dynamic imports:dicts: (locale: string) => import(`./langs/${locale}`).then(mod => mod.default)or getting it from a cdn viafetch.warnlets you display warnings (e.g. toconsole.warn) when a translation key is missing in the active locale and no fallback is used.fallbacklets you define you a static or dynamic string that will be displayed whenever a translation key is missing for the active locale.fallbackElementthe same asfallbackbut also allows to pass aReactNodeto display more complex (e.g styled) fallbacks for translations embedded in JSX.placeholderlets you define a string that will be displayed in place of a translated string while the active locale is loading (when using promises)placeholderElementthe same asplaceholderbut also allows to pass aReactNodeto display more complex (e.g styled) placeholders for translations embedded in JSX.
The return value is meant to be exported so the provided functions can be used everywhere in your app: export const { getTranslator, useTranslator, t } = createTranslator({ ... })
t
function t(id: K, values: V, options?: Options): ReactNode;
type Options = {
locale?: string;
fallback?: React.ReactNode;
placeholder?: React.ReactNode;
};localeallows to override the active locale. If not defined, the active locale is used as provided withTranslationContextProvider.fallbackallows to override the fallback that was passed tocreateTranslatorfor just this instance.placeholderallows to override the placeholder that was passed tocreateTranslatorfor just this instance.
t can be used to translate string withing JSX: <div>{t('foo', { value: 42 })}</div>. id has to be a flattened key from the source dictionary. values has to be an object containing the ICU paramters used in the string in the source dictionary. If there are no parameters, values is optional.
Of course if you don't like the minimally named t you can rename it in the export: export const { getTranslator, useTranslator, t: translate } = ...
t.unknown
function t.unknown(id: string, values?: Record<string, unknown>, options?: Options): ReactNode;
type Options = {
locale?: string;
fallback?: React.ReactNode;
placeholder?: React.ReactNode;
}localeallows to override the active locale. If not defined, the active locale is used as provided withTranslationContextProvider.fallbackallows to override the fallback that was passed tocreateTranslatorfor just this instance.placeholderallows to override the placeholder that was passed tocreateTranslatorfor just this instance.
t.unknown does exactly the same as t but without type checking. This can be useful if if the translation is not necessarily available. E.g. t.unknown(`types.${currentType`, undefined, { fallback: currentType }).
t.format
function t.format(template: string, values: V): ReactNode;t.format can be used to format something using ICU. E.g. t.format('{d, date, short}', { d: new Date() }).
useTranslator
function useTranslator(locale?: string): HookTranslator;
type HookTranslator = {
(id: K, values: V, options?: Options): string;
unknow: (id: string, values?: Record<string, unknown>, options?: Options): string;
format: (template: string, values: V): string;
}
type Options = {
fallback?: string;
placeholder?: string;
}React hook that returns a translator that works very similarly to t, but being a hook itself, it does not need internal hooks and therefore returns a string instead of a ReactNode. That is useful in case you need to pass strings somewhere, e.g. as options to a select component etc.
For more details see t, t.unknown and t.format.
getTranslator
function getTranslator(locale: string): Promise<Translator>;
type Translator = {
(id: K, values: V, options?: Options): string;
unknow: (id: string, values?: Record<string, unknown>, options?: Options): string;
format: (template: string, values: V): string;
}
type Options = {
fallback?: string;
}Returns a promise of a translator object. That method can be used in the backend or in the frontend outside of React components. It loads the necessary locales first then resolves the promise. The resulting translator is again very similar to t but obviously returning string and not ReactNode.
For more details see t, t.unknown and t.format.
4 years ago