Skip to content

Translate "Footer" #857

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 16 additions & 20 deletions src/components/Layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -313,50 +313,46 @@ export function Footer() {
</div>
<div className="flex flex-col">
<FooterLink href="/learn" isHeader={true}>
Learn React
</FooterLink>
<FooterLink href="/learn/">Quick Start</FooterLink>
<FooterLink href="/learn/installation">Installation</FooterLink>
<FooterLink href="/learn/describing-the-ui">
Describing the UI
Reactを学ぶ
</FooterLink>
<FooterLink href="/learn/">クイックスタート</FooterLink>
<FooterLink href="/learn/installation">インストール</FooterLink>
<FooterLink href="/learn/describing-the-ui">UIの記述</FooterLink>
<FooterLink href="/learn/adding-interactivity">
Adding Interactivity
インタラクティビティの追加
</FooterLink>
<FooterLink href="/learn/managing-state">Managing State</FooterLink>
<FooterLink href="/learn/escape-hatches">Escape Hatches</FooterLink>
<FooterLink href="/learn/managing-state">stateの管理</FooterLink>
<FooterLink href="/learn/escape-hatches">避難ハッチ</FooterLink>
</div>
<div className="flex flex-col">
<FooterLink href="/reference/react" isHeader={true}>
API Reference
API リファレンス
</FooterLink>
<FooterLink href="/reference/react">React APIs</FooterLink>
<FooterLink href="/reference/react-dom">React DOM APIs</FooterLink>
</div>
<div className="md:col-start-2 xl:col-start-4 flex flex-col">
<FooterLink href="/community" isHeader={true}>
Community
コミュニティ
</FooterLink>
<FooterLink href="https://github.com/facebook/react/blob/main/CODE_OF_CONDUCT.md">
Code of Conduct
行動規範
</FooterLink>
<FooterLink href="/community/team">Meet the Team</FooterLink>
<FooterLink href="/community/team">チーム紹介</FooterLink>
<FooterLink href="/community/docs-contributors">
Docs Contributors
</FooterLink>
<FooterLink href="/community/acknowledgements">
Acknowledgements
ドキュメント貢献者
</FooterLink>
<FooterLink href="/community/acknowledgements">謝辞</FooterLink>
</div>
<div className="flex flex-col">
<FooterLink isHeader={true}>More</FooterLink>
<FooterLink href="/blog">Blog</FooterLink>
<FooterLink href="/blog">ブログ</FooterLink>
<FooterLink href="https://reactnative.dev/">React Native</FooterLink>
<FooterLink href="https://opensource.facebook.com/legal/privacy">
Privacy
プライバシー
</FooterLink>
<FooterLink href="https://opensource.fb.com/legal/terms/">
Terms
利用規約
</FooterLink>
<div className="flex flex-row items-center mt-8 gap-x-2">
<ExternalLink
Expand Down