> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Language codes

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = href;
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

The Box API uses a modified version of the **ISO 639-1 Language Code** to specify a user's language.

The following is a list of language codes used when <Link href="/reference/post-users#param-language">creating</Link> or <Link href="/reference/put-users-id#param-language">updating</Link>.

| Language                | Code |
| ----------------------- | ---- |
| Bengali                 | `bn` |
| Danish                  | `da` |
| German                  | `de` |
| English (US)            | `en` |
| English (UK)            | `gb` |
| English (Canada)        | `e2` |
| English (Australia)     | `e3` |
| Spanish (Latin America) | `s2` |
| Spanish                 | `es` |
| Finnish                 | `fi` |
| French                  | `fr` |
| French (Canada)         | `f2` |
| Hindi                   | `hi` |
| Italian                 | `it` |
| Japanese                | `ja` |
| Korean                  | `ko` |
| Norwegian (Bokmal)      | `nb` |
| Dutch                   | `nl` |
| Polish                  | `pl` |
| Portuguese              | `pt` |
| Russian                 | `ru` |
| Swedish                 | `sv` |
| Turkish                 | `tr` |
| Chinese (Simplified)    | `zh` |
| Chinese (Traditional)   | `zt` |
