---
url: https://docs.tailor.tech/app-shell/api/use-resolved-locale.md
description: Hook to access the full BCP-47 locale and language code from AppShell context
---

# useResolvedLocale

React hook that returns the full BCP-47 locale (e.g. `"en-GB"`) and the language code (e.g. `"en"`) from the AppShell context. Use this for `Intl` APIs and date formatting that require a specific locale.

## Signature

```typescript
const useResolvedLocale: () => {
  locale: string;
  language: string;
};
```

## Return Value

### `locale`

* **Type:** `string`
* **Description:** Full BCP-47 locale tag (e.g. `"en-GB"`, `"ja-JP"`). Sourced from the `locale` prop passed to `AppShell`, or auto-detected from the browser when omitted.

### `language`

* **Type:** `string`
* **Description:** Language subtag only (e.g. `"en"`, `"ja"`). Used for resolving built-in UI label tables.

## Usage

```typescript
import { useResolvedLocale } from "@tailor-platform/app-shell";

function DateDisplay({ date }: { date: Date }) {
  const { locale } = useResolvedLocale();

  return (
    <span>
      {new Intl.DateTimeFormat(locale, { dateStyle: "long" }).format(date)}
    </span>
  );
}
```

### Locale-aware number formatting

```typescript
function PriceDisplay({ amount }: { amount: number }) {
  const { locale } = useResolvedLocale();

  return (
    <span>
      {new Intl.NumberFormat(locale, { style: "currency", currency: "USD" }).format(amount)}
    </span>
  );
}
```

## Related

* [AppShell](../components/app-shell) — configure locale via the `locale` prop
* [useTimeZone](use-time-zone) — access the configured IANA timezone
* [DatePicker](../components/date-picker) — date input components that consume this locale automatically
