Skip to content

Версии #224 #266

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

Merged
merged 3 commits into from
Mar 14, 2019
Merged
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
18 changes: 9 additions & 9 deletions src/pages/versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@ const Versions = ({location}: Props) => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>React Versions</Header>
<TitleAndMetaTags title="React - Versions" />
<Header>Версии React</Header>
<TitleAndMetaTags title="React — Версии" />
<div css={sharedStyles.markdown}>
<p>
A complete release history for React is available{' '}
Полная история версий React доступна{' '}
<a
href="https://github.com/facebook/react/releases"
target="_blank"
rel="noopener">
on GitHub
на GitHub
</a>
.<br />
Documentation for recent releases can also be found below.
Документация к последним версиям может быть также найдена ниже.
</p>
<p>
See our FAQ for information about{' '}
Секция FAQ содержит информацию о{' '}
<a href="/docs/faq-versioning.html">
our versioning policy and commitment to stability
нашем подходе к версионированию и отношении к стабильности
</a>
.
</p>
Expand All @@ -51,13 +51,13 @@ const Versions = ({location}: Props) => (
<ul>
<li>
<a href={version.changelog} target="_blank" rel="noopener">
Changelog
Список изменений
</a>
</li>
{version.path && (
<li>
<a href={version.path} rel="nofollow">
Documentation
Документация
</a>
</li>
)}
Expand Down