diff options
author | Junseong Park | 2024-05-01 18:28:31 +0900 |
---|---|---|
committer | GitHub | 2024-05-01 11:28:31 +0200 |
commit | d3b867fae2572a2d97a034469433b5f3fb91ff94 (patch) | |
tree | 1e957dc7b9ef806a66a3317db1fb4950b0f2735d | |
parent | 9e6367927cf3f42437cbb9f031533f2312f99377 (diff) | |
download | IT.starlight-d3b867fae2572a2d97a034469433b5f3fb91ff94.tar.gz IT.starlight-d3b867fae2572a2d97a034469433b5f3fb91ff94.tar.bz2 IT.starlight-d3b867fae2572a2d97a034469433b5f3fb91ff94.zip |
i18n(ko-KR): update `configuration.mdx` (#1810)
Co-authored-by: HiDeoo <494699+HiDeoo@users.noreply.github.com>
-rw-r--r-- | docs/src/content/docs/ko/reference/configuration.mdx | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/docs/src/content/docs/ko/reference/configuration.mdx b/docs/src/content/docs/ko/reference/configuration.mdx index dccbd689..f8da089f 100644 --- a/docs/src/content/docs/ko/reference/configuration.mdx +++ b/docs/src/content/docs/ko/reference/configuration.mdx @@ -25,10 +25,22 @@ export default defineConfig({ ### `title` (νμ) -**νμ
:** `string` +**νμ
:** `string | Record<string, string>` μΉμ¬μ΄νΈμ μ λͺ©μ μ€μ ν©λλ€. λ©νλ°μ΄ν° λ° λΈλΌμ°μ ν μ λͺ©μ μ¬μ©λ©λλ€. +κ°μ λ¬Έμμ΄μΌ μλ μκ³ , λ€κ΅μ΄ μ¬μ΄νΈμ κ²½μ° κ°κΈ° λ€λ₯Έ λ‘μΌμΌμ λν κ°μ΄ ν¬ν¨λ κ°μ²΄μΌ μλ μμ΅λλ€. +κ°μ²΄ νμμ μ¬μ©ν λ ν€λ BCP-47 νκ·Έ(μ: `en`, `ar` λλ `zh-CN`)μ¬μΌ ν©λλ€. + +```ts +starlight({ + title: { + en: 'My delightful docs site', + de: 'Meine bezaubernde Dokumentationsseite', + }, +}); +``` + ### `description` **νμ
:** `string` |