mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
* refactor: move from next-international to next-intl * refactor: restructure translation package, * chore: change i18n-allay framework to next-intl * fix: add missing bold html tag to translation * fix: format issue * fix: address deepsource issues * fix: remove international-types dependency * fix: lint and typecheck issues * fix: typecheck issue * fix: typecheck issue * fix: issue with translations
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
import { getTranslations } from "next-intl/server";
|
|
|
|
export const { getI18n, getScopedI18n } = {
|
|
getI18n: getTranslations,
|
|
getScopedI18n: getTranslations,
|
|
};
|
|
|
|
export { getMessages as getI18nMessages } from "next-intl/server";
|