[RFC]: Add internationalization (i18n) support — starting with Korean 🚀
Chưa có ai nhận issue này.
Đánh giá
- Độ khó
- 5/5
- Thời gian dự kiến
- Hơn một tuần
- Mức phù hợp với người mới
- 35/100
- Loại issue
- Tính năng
- Độ rõ ràng
- Cần làm rõ
- Mức độ hoạt động
- Đình trệ
- Công nghệ
- next.js, react, typescript
- Lĩnh vực
- frontend, internationalization, web-dev
Hướng nghiên cứu
Bắt đầu bằng việc xem xét apps/landing/next.config.ts và cấu trúc hiện tại trong apps/landing/src/app/. Sau đó, kiểm tra component Header và các đường dẫn tài liệu được liệt kê để đánh giá chiến lược được đề xuất cho việc định tuyến locale, dịch thuật và MDX. Công việc được xem là hoàn tất khi các maintainer đã thống nhất một phương án và có một cấu trúc tiếng Anh/tiếng Hàn hoạt động, được export tĩnh.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Mô tả
Summary
The Devup UI landing site is currently English-only (except for the footer which contains Korean company information). This RFC proposes adding i18n infrastructure to support multiple languages, with Korean (ko) as the first translation target.
Motivation
Devup UI originates from a Korean company (데브파이브) and has a growing Korean developer community. Korean documentation and UI would significantly lower the barrier to adoption for Korean-speaking developers. The architecture we propose is also extensible for future languages (Japanese, Chinese, etc.).
Technical Constraints
The landing app uses output: 'export' in next.config.ts, which means:
- No Next.js Middleware (locale detection via middleware is not available)
- All pages must be statically generated at build time
- Locale must be encoded in the URL path (e.g.,
/en/docs/overview,/ko/docs/overview)
Proposed Approach
1. Routing Architecture
Move all routes under a [locale] dynamic segment using the Next.js App Router:
src/app/
[locale]/ ← new top-level wrapper
page.tsx ← home page
(detail)/
docs/
overview/page.tsx (locale-aware, loads correct .mdx)
...
Static params generated via generateStaticParams():
export function generateStaticParams() {
return [{ locale: 'en' }, { locale: 'ko' }]
}
A root page.tsx handles / → /en as the default locale.
2. i18n Library
Recommended: next-intl (no-middleware mode)
- Official support for
output: 'export' - Works with React Server Components
- TypeScript-safe message keys
- Minimal bundle overhead
Alternative: a lightweight custom solution using plain JSON dictionaries — lower dependency cost, but more manual work.
3. UI String Translations
All hardcoded English strings in .tsx files (e.g., TopBanner, Feature, Header/Menu, LeftMenu) would be extracted into locale dictionaries:
src/
locales/
en.json
ko.json
4. MDX Documentation Strategy
Locale-aware file convention:
docs/overview/
page.en.mdx ← current content, renamed
page.ko.mdx ← new Korean translation
page.tsx ← loads correct .mdx based on [locale]
This makes English→Korean diffs easy to review when source content changes.
5. Language Switcher UI
A locale toggle (e.g., EN | 한국어) in the Header component, linking to the equivalent page in the other locale.
Phased Rollout
| Phase | Scope | Effort |
|---|---|---|
| 1 | i18n infra: [locale] routing, next-intl setup, language switcher |
Medium |
| 2 | UI string translations (TSX files) — en + ko | Medium |
| 3 | MDX documentation translation — ko | High (content work) |
Phase 1 and 2 can be done without any translated content yet (en is the default). Phase 3 is incremental — pages can show a "Translation in progress" fallback until the Korean version is ready.
Maintenance Considerations
For a sustainable open-source i18n workflow:
- English is source of truth — all changes start in
en, Korean follows - CI check: Verify all English translation keys exist in every locale file
- Contributing guide: Add a "Translations" section to
CONTRIBUTING.md - Stale translation notice: Display a banner on Korean pages when the English source has been updated but the translation has not been synced
Files Affected
apps/landing/next.config.ts— add i18n configapps/landing/src/app/— restructure under[locale]- All
*.mdxdocumentation files (86+) — need Korean counterparts eventually apps/landing/src/components/Header/— add language switcher- New:
apps/landing/src/locales/en.json,ko.json
Questions for Maintainers
- Is
next-intlacceptable as a new dependency, or do you prefer a custom/zero-dependency solution? - Should the default locale (
/) been, or should it attempt browser language detection? - Are there plans to support other languages (e.g.,
ja,zh) in parallel, or Korean-first? - Who would own ongoing Korean translation accuracy? (Community-driven via PRs, or a dedicated maintainer?)
References
- Ngôn ngữ chính
- Rust
- Star
- 359
- Fork
- 31
- Merge trung bình
- 3 giờ 26 phút
- Pull request đã merge (30 ngày)
- 44
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Issue khác của dev-five-git/devup-ui
-
Implement Components "Search" Đang mởcomponents
Độ khó 5/5 Hơn một tuần Mức phù hợp với người mới 20/100
dev-five-git/devup-ui#441 ·
-
Update Checkbox component Đang mởcomponents
Độ khó 3/5 1-2 ngày Mức phù hợp với người mới 30/100
dev-five-git/devup-ui#432 ·
-
Implement Components 'Toggle' Đang mởcomponents
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 55/100
dev-five-git/devup-ui#430 ·
-
Support React Native Đang mởenhancement
dev-five-git/devup-ui#411 · 1 người được giao ·
-
Implement Components Đang mởcomponents
Độ khó 5/5 Hơn một tuần Mức phù hợp với người mới 15/100
dev-five-git/devup-ui#365 ·
Tất cả issue của dev-five-git/devup-ui
Issue tương tự
-
Replayed reasoning items send "content": null, which the Responses API schema does not permit Đang mởbug CLI custom-model
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 75/100
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 75/100
rust-bitcoin/rust-bitcoin#6930 · 1 bình luận ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 75/100
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 75/100
fulcrumgenomics/ferro-hgvs#2251 ·
-
Missing examples for `Allocator` Đang mởA-allocators A-docs C-enhancement T-libs
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 75/100