Skip to content
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

Full translation of the homepage, navigation menu and Footer. #992

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
38 changes: 20 additions & 18 deletions src/components/Layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -313,50 +313,52 @@ 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">
Управление состоянием
</FooterLink>
<FooterLink href="/learn/escape-hatches">
Спасательные люки
</FooterLink>
<FooterLink href="/learn/managing-state">Managing State</FooterLink>
<FooterLink href="/learn/escape-hatches">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/docs-contributors">
Docs Contributors
Соавторы документов
</FooterLink>
<FooterLink href="/community/acknowledgements">
Acknowledgements
Благодарности
</FooterLink>
</div>
<div className="flex flex-col">
<FooterLink isHeader={true}>More</FooterLink>
<FooterLink href="/blog">Blog</FooterLink>
<FooterLink isHeader={true}>Больше</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
Loading