From a5f9019cf5381ed74b75462d479d44e198b6beec Mon Sep 17 00:00:00 2001 From: avevlad Date: Sun, 10 Feb 2019 01:46:12 +0300 Subject: [PATCH 1/3] Translate "Babel, JSX, and Build Steps" into Russian --- content/docs/faq-build.md | 22 +++++++++++----------- content/docs/nav.yml | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/content/docs/faq-build.md b/content/docs/faq-build.md index b071cc131..c35962a21 100644 --- a/content/docs/faq-build.md +++ b/content/docs/faq-build.md @@ -1,32 +1,32 @@ --- id: faq-build -title: Babel, JSX, and Build Steps +title: Babel, JSX, и этапы сборки permalink: docs/faq-build.html layout: docs category: FAQ --- -### Do I need to use JSX with React? {#do-i-need-to-use-jsx-with-react} +### Необходимо ли в React использовать JSX? {#do-i-need-to-use-jsx-with-react} -No! Check out ["React Without JSX"](/docs/react-without-jsx.html) to learn more. +Нет! Прочти ["React без JSX"](/docs/react-without-jsx.html) чтобы узнать подробнее. -### Do I need to use ES6 (+) with React? {#do-i-need-to-use-es6--with-react} +### Необходимо ли в React использовать ES6 (+)? {#do-i-need-to-use-es6--with-react} -No! Check out ["React Without ES6"](/docs/react-without-es6.html) to learn more. +Нет! Прочти ["React без ES6"](/docs/react-without-es6.html) чтобы узнать подробнее. -### How can I write comments in JSX? {#how-can-i-write-comments-in-jsx} +### Как в JSX написать комментарий? {#how-can-i-write-comments-in-jsx} ```jsx
- {/* Comment goes here */} - Hello, {name}! + {/* Комментарий пишется здесь */} + Привет, {name}!
``` ```jsx
- {/* It also works - for multi-line comments. */} - Hello, {name}! + {/* Это работает и для + многострочных комментариев. */} + Привет, {name}!
``` diff --git a/content/docs/nav.yml b/content/docs/nav.yml index 4d4a7571f..a48a9d3d0 100644 --- a/content/docs/nav.yml +++ b/content/docs/nav.yml @@ -138,7 +138,7 @@ - id: faq-ajax title: AJAX and APIs - id: faq-build - title: Babel, JSX, and Build Steps + title: Babel, JSX, и этапы сборки - id: faq-functions title: Passing Functions to Components - id: faq-state From 0cad4c8df24f4fa185986d5c5ce1b4def4411164 Mon Sep 17 00:00:00 2001 From: avevlad Date: Sun, 10 Feb 2019 02:34:46 +0300 Subject: [PATCH 2/3] fix "Babel, JSX, and Build Steps" --- content/docs/faq-build.md | 6 +++--- content/docs/nav.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/docs/faq-build.md b/content/docs/faq-build.md index c35962a21..65573a438 100644 --- a/content/docs/faq-build.md +++ b/content/docs/faq-build.md @@ -1,6 +1,6 @@ --- id: faq-build -title: Babel, JSX, и этапы сборки +title: Babel, JSX и этапы сборки permalink: docs/faq-build.html layout: docs category: FAQ @@ -8,11 +8,11 @@ category: FAQ ### Необходимо ли в React использовать JSX? {#do-i-need-to-use-jsx-with-react} -Нет! Прочти ["React без JSX"](/docs/react-without-jsx.html) чтобы узнать подробнее. +Нет! Прочтите ["React без JSX"](/docs/react-without-jsx.html) чтобы узнать подробнее. ### Необходимо ли в React использовать ES6 (+)? {#do-i-need-to-use-es6--with-react} -Нет! Прочти ["React без ES6"](/docs/react-without-es6.html) чтобы узнать подробнее. +Нет! Прочтите ["React без ES6"](/docs/react-without-es6.html) чтобы узнать подробнее. ### Как в JSX написать комментарий? {#how-can-i-write-comments-in-jsx} diff --git a/content/docs/nav.yml b/content/docs/nav.yml index a48a9d3d0..6e34d8eb3 100644 --- a/content/docs/nav.yml +++ b/content/docs/nav.yml @@ -138,7 +138,7 @@ - id: faq-ajax title: AJAX and APIs - id: faq-build - title: Babel, JSX, и этапы сборки + title: Babel, JSX и этапы сборки - id: faq-functions title: Passing Functions to Components - id: faq-state From 83c3235de5c75bf161ddbf40e8dea3d1b1619acc Mon Sep 17 00:00:00 2001 From: avevlad Date: Sun, 10 Feb 2019 04:19:54 +0300 Subject: [PATCH 3/3] Fix "Babel, JSX, and Build Steps" --- content/docs/faq-build.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/docs/faq-build.md b/content/docs/faq-build.md index 65573a438..38f439474 100644 --- a/content/docs/faq-build.md +++ b/content/docs/faq-build.md @@ -18,15 +18,15 @@ category: FAQ ```jsx
- {/* Комментарий пишется здесь */} + {/* Это комментарий */} Привет, {name}!
``` ```jsx
- {/* Это работает и для - многострочных комментариев. */} + {/* А это + многострочный комментарий. */} Привет, {name}!
```