i18n(ko-KR): update package-catalog/ and index.mdx#97
Conversation
WalkthroughThis update modifies several Korean documentation pages for StudioCMS. The main landing page's welcome card title is changed, and its embedded YouTube video is replaced with a native HTML video element sourcing a direct MP4 file. The package catalog page adds a new badge description for experimental packages. Installation instructions for three plugin documentation pages are revised to use a more explicit package manager command and updated step descriptions, clarifying the configuration process. Changes
Possibly related PRs
Suggested labels
Suggested reviewers
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Lunaria Status Overview🌕 This pull request will trigger status changes. Learn moreBy default, every PR changing files present in the Lunaria configuration's You can change this by adding one of the keywords present in the Tracked Files
Warnings reference
|
package-catalog/studiocms-plugins/package-catalog/ and index.mdx
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (2)
src/content/docs/ko/index.mdx (1)
31-32: Review HTML5 video implementation and clean up unused importsThe new
<video>tag correctly replaces the YouTube embed, preserving autoplay, looping, muting, inline play, and preloading.
- Consider adding
controlsor a text fallback for better accessibility and browser support.- Double‑check that the MP4 URL is CDN‑backed and reliable.
- Since the
Youtubecomponent is no longer used, you may want to remove its import (line 25) to keep the code clean.src/content/docs/ko/package-catalog/index.mdx (1)
14-14: Use consistent terminology and syntax.
- The new badge description refers to "플러그인" while the surrounding badges consistently mention "패키지." Consider changing "이 플러그인은" to "이 패키지는" for consistency.
- There's an extra space before the self-closing slash (
variant="danger" />). Remove it to match the formatting of other badges (variant="danger"/>).- <Badge text="실험적" variant="danger" /> 라벨이 있는 모든 패키지는 아직 개발 초기 단계에 있으며 언제든지 내부 구조에 큰 변화가 있을 수 있습니다. 이 플러그인은 사용 준비가 되었을 수도 있고, 아직 아닐 수도 있습니다. + <Badge text="실험적" variant="danger"/> 라벨이 있는 모든 패키지는 아직 개발 초기 단계에 있으며 언제든지 내부 구조에 큰 변화가 있을 수 있습니다. 이 패키지는 사용 준비가 되었을 수도 있고, 아직 아닐 수도 있습니다.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (5)
src/content/docs/ko/index.mdx(1 hunks)src/content/docs/ko/package-catalog/index.mdx(1 hunks)src/content/docs/ko/package-catalog/studiocms-plugins/studiocms-blog.mdx(1 hunks)src/content/docs/ko/package-catalog/studiocms-plugins/studiocms-markdoc.mdx(1 hunks)src/content/docs/ko/package-catalog/studiocms-plugins/studiocms-mdx.mdx(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: Run Starlight Link Check
🔇 Additional comments (6)
src/content/docs/ko/package-catalog/studiocms-plugins/studiocms-markdoc.mdx (2)
24-24: Approve explicit package installation command.The change to
<PackageManagers pkg="studiocms" type='run' args='add @studiocms/markdoc' />makes the installation step clearer and aligns with other plugin docs.
26-26: Approve generalized configuration step wording.Updating the second step to "이제 StudioCMS 구성은
@studiocms/markdoc를 포함해야 합니다." is concise and consistent with the style used across plugin documentation.src/content/docs/ko/package-catalog/studiocms-plugins/studiocms-blog.mdx (2)
24-24: Approve explicit package installation command.Using
<PackageManagers pkg="studiocms" type='run' args='add @studiocms/blog' />enhances clarity and standardizes the install instructions with other plugins.
26-26: Approve generalized configuration step wording.Changing the second step to "이제 StudioCMS 구성은
@studiocms/blog를 포함해야 합니다." is clear, succinct, and consistent across the docs.src/content/docs/ko/package-catalog/studiocms-plugins/studiocms-mdx.mdx (2)
24-24: Approve explicit package installation command.The
<PackageManagers pkg="studiocms" type='run' args='add @studiocms/mdx' />update clarifies the installation step and matches the pattern used for other plugins.
26-26: Approve generalized configuration step wording.Updating to "이제 StudioCMS 구성은
@studiocms/mdx를 포함해야 합니다." maintains consistency and removes any ambiguity.
Description
Summary by CodeRabbit
New Features
Documentation