Skip to content

Commit 7feca25

Browse files
committed
feat: add experimental notice to contribute section and footer credits
1 parent 89da5a2 commit 7feca25

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ const config: Config = {
199199
],
200200
},
201201
],
202-
copyright: `Copyright © ${new Date().getFullYear()} <a href="https://github.com/yonghyun421" target="_blank" rel="noopener noreferrer">Fred</a> & <a href="https://github.com/type-ruby" target="_blank" rel="noopener noreferrer">T-Ruby</a>.`,
202+
copyright: `Copyright © ${new Date().getFullYear()} <a href="https://github.com/yhk1038" target="_blank" rel="noopener noreferrer">Fred</a> & <a href="https://github.com/type-ruby" target="_blank" rel="noopener noreferrer">T-Ruby</a>. Built with <a href="https://docusaurus.io" target="_blank" rel="noopener noreferrer">Docusaurus</a>.`,
203203
},
204204
prism: {
205205
theme: prismThemes.github,

i18n/ja/code.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,14 @@
411411
"message": "T-Rubyはオープンソースプロジェクトです。あなたの参加が大きな力になります。",
412412
"description": "Contribute section subtitle"
413413
},
414+
"homepage.contribute.experimental": {
415+
"message": "まだ実験段階です。コアコンパイラは動作しますが、改善すべき点がたくさんあります。",
416+
"description": "Experimental stage notice"
417+
},
418+
"homepage.contribute.feedback": {
419+
"message": "フィードバックや提案はいつでも歓迎します!",
420+
"description": "Feedback welcome notice"
421+
},
414422
"homepage.contribute.star.title": {
415423
"message": "GitHubでStarする",
416424
"description": "Star card title"

i18n/ko/code.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,14 @@
411411
"message": "T-Ruby는 오픈소스 프로젝트입니다. 여러분의 참여가 큰 힘이 됩니다.",
412412
"description": "Contribute section subtitle"
413413
},
414+
"homepage.contribute.experimental": {
415+
"message": "아직 실험 단계입니다. 핵심 컴파일러는 작동하지만, 개선할 부분이 많습니다.",
416+
"description": "Experimental stage notice"
417+
},
418+
"homepage.contribute.feedback": {
419+
"message": "피드백과 제안은 언제든 환영합니다!",
420+
"description": "Feedback welcome notice"
421+
},
414422
"homepage.contribute.star.title": {
415423
"message": "GitHub에서 Star 주기",
416424
"description": "Star card title"

src/pages/index.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,14 @@ function ContributeSection() {
714714
<Translate id="homepage.contribute.subtitle">
715715
T-Ruby is an open source project. Your contribution makes a difference.
716716
</Translate>
717+
<br />
718+
<Translate id="homepage.contribute.experimental">
719+
It's still experimental. The core compiler works, but there's much to improve.
720+
</Translate>
721+
<br />
722+
<Translate id="homepage.contribute.feedback">
723+
Feedback and suggestions are always welcome!
724+
</Translate>
717725
</p>
718726

719727
<div className={styles.contributeGrid}>

0 commit comments

Comments
 (0)