alepha@docs:~/docs/framework/packages/@alepha-ui$
cat i18n-fr.md | pretty
1 min read
Last commit:

#@alepha/ui - I18n Fr

#Installation

npm install @alepha/ui

#Overview

The French catalogue for every key @alepha/ui asks for.

A plain record the application spreads into its own catalogue, and a subpath of its own so that catalogue can load it lazily:

ts
1fr = $dictionary({2  lazy: async () => {3    const { uiFr } = await import("@alepha/ui/i18n/fr");4    return { default: { ...uiFr, "nav.home": "Accueil" } };5  },6});