Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 417 Bytes

Localization.md

File metadata and controls

27 lines (21 loc) · 417 Bytes

Localization

//in .json
{
  "greeting": "Hello, %{name}. Good morning!"
}

i18n.t('greeting', {
  name: 'John'
})

useTranslation (hook)

const { t, i18n } = useTranslation();

//in .json
{
  "greeting": "Hello, {{name}}. Good morning!"
}

{
  t("greeting", { name: "John" });
}