OpenMAIC-React / src /lib /i18n /index.ts
muthuk1's picture
Convert OpenMAIC from Next.js to React (Vite)
f56a29b verified
import i18n from './config';
export { type Locale, defaultLocale } from './types';
export { type LocaleEntry, supportedLocales } from './locales';
export type TranslationKey = string;
export function translate(locale: string, key: string): string {
return i18n.t(key, { lng: locale });
}
export function getClientTranslation(key: string): string {
return i18n.t(key);
}