From 9d550928862602695f626ea6565e2f8d853fa53a Mon Sep 17 00:00:00 2001 From: karpiuMG Date: Wed, 15 Jan 2020 19:03:55 +0100 Subject: [PATCH 1/2] Translate faq-build.md --- content/docs/faq-build.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/content/docs/faq-build.md b/content/docs/faq-build.md index b071cc131..e03617c1d 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, i kroki budowania 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} +### Czy trzeba używać JSX z Reactem? {#do-i-need-to-use-jsx-with-react} -No! Check out ["React Without JSX"](/docs/react-without-jsx.html) to learn more. +Nie! Sprawdź ["React bez JSX"](/docs/react-without-jsx.html), aby dowiedzieć się więcej. -### Do I need to use ES6 (+) with React? {#do-i-need-to-use-es6--with-react} +### Czy trzeba używać ES6 (+) z Reactem? {#do-i-need-to-use-es6--with-react} -No! Check out ["React Without ES6"](/docs/react-without-es6.html) to learn more. +Nie! sprawdź ["React bez ES6"](/docs/react-without-es6.html), aby dowiedzieć się więcej. -### How can I write comments in JSX? {#how-can-i-write-comments-in-jsx} +### W jaki sposób napisać komentarz w JSX? {#how-can-i-write-comments-in-jsx} ```jsx
- {/* Comment goes here */} - Hello, {name}! + {/* To jest komentarz */} + Witaj, {name}!
``` ```jsx
- {/* It also works - for multi-line comments. */} - Hello, {name}! + {/* To działa także + dla wieloliniowych komentarzy. */} + Witaj, {name}!
``` From 15c512638bfeba0bdbf959690a7630b12eed41ed Mon Sep 17 00:00:00 2001 From: karpiuMG Date: Wed, 15 Jan 2020 19:07:21 +0100 Subject: [PATCH 2/2] update faq-build.md --- 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 e03617c1d..6212979c2 100644 --- a/content/docs/faq-build.md +++ b/content/docs/faq-build.md @@ -1,6 +1,6 @@ --- id: faq-build -title: Babel, JSX, i kroki budowania +title: Babel, JSX i kroki budowania permalink: docs/faq-build.html layout: docs category: FAQ @@ -25,8 +25,8 @@ Nie! sprawdź ["React bez ES6"](/docs/react-without-es6.html), aby dowiedzieć s ```jsx
- {/* To działa także - dla wieloliniowych komentarzy. */} + {/* A to jest + wieloliniowy komentarz. */} Witaj, {name}!
```