Skip to content

Перевод на русский компонента "Footer" #1034

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
48 changes: 24 additions & 24 deletions src/components/Layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -312,73 +312,73 @@ export function Footer() {
</div>
</div>
<div className="flex flex-col">
<FooterLink href="/learn" isHeader={true}>
Learn React
<FooterLink href="/learn" isHeader={true}>
Изучайте React
</FooterLink>
<FooterLink href="/learn/">Quick Start</FooterLink>
<FooterLink href="/learn/installation">Installation</FooterLink>
<FooterLink href="/learn/">Быстрый старт</FooterLink>
<FooterLink href="/learn/installation">Установка</FooterLink>
<FooterLink href="/learn/describing-the-ui">
Describing the 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">Управление состоянием</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>
<FooterLink href="/reference/react">API React</FooterLink>
<FooterLink href="/reference/react-dom">API React DOM</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>
</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
aria-label="React on Facebook"
aria-label="React на Facebook"
href="https://www.facebook.com/react"
className={socialLinkClasses}>
<IconFacebookCircle />
</ExternalLink>
<ExternalLink
aria-label="React on Twitter"
aria-label="React в Twitter"
href="https://twitter.com/reactjs"
className={socialLinkClasses}>
<IconTwitter />
</ExternalLink>
<ExternalLink
aria-label="React on Bluesky"
aria-label="React на Bluesky"
href="https://bsky.app/profile/react.dev"
className={socialLinkClasses}>
<IconBsky />
</ExternalLink>
<ExternalLink
aria-label="React on Github"
aria-label="React на Github"
href="https://github.com/facebook/react"
className={socialLinkClasses}>
<IconGitHub />
Expand Down