From 86c58a3892a0c61dcee5f659332b4a884020e831 Mon Sep 17 00:00:00 2001 From: Junseong Park <39112954+jsparkdev@users.noreply.github.com> Date: Fri, 18 Jul 2025 07:27:17 +0900 Subject: [PATCH] i18n(ko-KR): update `errors/` --- .../ko/reference/errors/data-collection-entry-parse-error.mdx | 2 +- src/content/docs/ko/reference/errors/file-parser-not-found.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/ko/reference/errors/data-collection-entry-parse-error.mdx b/src/content/docs/ko/reference/errors/data-collection-entry-parse-error.mdx index 72b53c21e60e3..feced306115bf 100644 --- a/src/content/docs/ko/reference/errors/data-collection-entry-parse-error.mdx +++ b/src/content/docs/ko/reference/errors/data-collection-entry-parse-error.mdx @@ -8,4 +8,4 @@ githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/ ## 무엇이 잘못되었나요? -`type: 'data'`의 컬렉션 항목은 유효한 JSON (`.json` 항목의 경우) 또는 YAML (`.yaml` 항목의 경우)이 포함된 객체를 반환해야 합니다. \ No newline at end of file +`type: 'data'`의 컬렉션 항목은 유효한 JSON (`.json` 항목의 경우), YAML (`.yaml` 항목의 경우) 또는 TOML (`.toml` 항목의 경우)이 포함된 객체를 반환해야 합니다. diff --git a/src/content/docs/ko/reference/errors/file-parser-not-found.mdx b/src/content/docs/ko/reference/errors/file-parser-not-found.mdx index 48d1d5c4a2bd6..8c69b6ff52801 100644 --- a/src/content/docs/ko/reference/errors/file-parser-not-found.mdx +++ b/src/content/docs/ko/reference/errors/file-parser-not-found.mdx @@ -7,7 +7,7 @@ githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/ > **FileParserNotFound**: No parser was found for 'FILE_NAME'. Pass a parser function (e.g. `parser: csv`) to the `file` loader. ## 무엇이 잘못되었나요? -`file` 로더가 사용할 구문 분석기를 결정할 수 없습니다. 파일의 유형으로 컬렉션을 만들려면 사용자 정의 구문 분석기 (예: `toml.parse` 또는 `csv-parse`)를 제공하세요. +`file` 로더가 사용할 구문 분석기를 결정할 수 없습니다. 파일의 유형으로 컬렉션을 만들려면 사용자 정의 구문 분석기 (예: `csv-parse`)를 제공하세요. **더 보기:** - [Passing a `parser` to the `file` loader](/ko/guides/content-collections/#parser-함수)