> ## 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.

# 言語コード

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

Box APIでは、**ISO 639-1言語コード**の修正版を使用して、ユーザーの言語を指定します。

以下は、<Link href="/reference/post-users#param-language">作成</Link>または<Link href="/reference/put-users-id#param-language">更新</Link>時に使用する言語コードのリストです。

| 言語              | コード  |
| --------------- | ---- |
| ベンガル語           | `bn` |
| デンマーク語          | `da` |
| ドイツ語            | `de` |
| 英語 (米国)         | `en` |
| 英語 (英国)         | `gb` |
| 英語 (カナダ)        | `e2` |
| 英語 (オーストラリア)    | `e3` |
| スペイン語 (ラテンアメリカ) | `s2` |
| スペイン語           | `es` |
| フィンランド語         | `fi` |
| フランス語           | `fr` |
| フランス語 (カナダ)     | `f2` |
| ヒンディー語          | `hi` |
| イタリア語           | `it` |
| 日本語             | `ja` |
| 韓国語             | `ko` |
| ノルウェー語 (ブークモール) | `nb` |
| オランダ語           | `nl` |
| ポーランド語          | `pl` |
| ポルトガル語          | `pt` |
| ロシア語            | `ru` |
| スウェーデン語         | `sv` |
| トルコ語            | `tr` |
| 中国語 (簡体)        | `zh` |
| 中国語 (繁体)        | `zt` |
