Skip to content

Translated "Installation" page & "In this chapter" block's label #422

New issue

Have a question about this project? No Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “No 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? No Sign in to your account

Merged
merged 1 commit into from
Apr 26, 2023
Merged
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
2 changes: 1 addition & 1 deletion src/components/MDX/MDXComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function YouWillLearn({
children: any;
isChapter?: boolean;
}) {
let title = isChapter ? 'In this chapter' : 'You will learn';
let title = isChapter ? 'In questo capitolo' : 'Imparerai';
return <SimpleCallout title={title}>{children}</SimpleCallout>;
}

Expand Down
12 changes: 6 additions & 6 deletions src/content/learn/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ React è stato progettato sin dal principio per essere adottato gradualmente. A

<YouWillLearn isChapter={true}>

* [How to start a new React project](/learn/start-a-new-react-project)
* [How to add React to an existing project](/learn/add-react-to-an-existing-project)
* [Come iniziare un nuovo progetto React](/learn/start-a-new-react-project)
* [Come aggiungere React ad un progetto esistente](/learn/add-react-to-an-existing-project)
* [Come configurare il tuo editor](/learn/editor-setup)
* [Come installare i React Developer Tools](/learn/react-developer-tools)

Expand Down Expand Up @@ -43,10 +43,10 @@ La maggioranza delle pagine della documentazione di React contengono sandboxes c

Per provare React localmente sul suo computer, [scarica questa pagina HTML.](https://gist.githubusercontent.com/gaearon/0275b1e1518599bbeafcde4722e79ed1/raw/db72dcbf3384ee1708c4a07d3be79860db04bff0/example.html) Aprila nel tuo editor e nel tuo browser!

## Start a new React project {/*start-a-new-react-project*/}
## Inizia un nuovo progetto React {/*start-a-new-react-project*/}

If you want to build an app or a website fully with React, [start a new React project.](/learn/start-a-new-react-project)
Se desideri creare un'app o un sito web completamente con React, [inizia un nuovo progetto React.](/learn/start-a-new-react-project)

## Add React to an existing project {/*add-react-to-an-existing-project*/}
## Aggiungi React ad un progetto esistente {/*add-react-to-an-existing-project*/}

If want to try using React in your existing app or a website, [add React to an existing project.](/learn/add-react-to-an-existing-project)
Se desideri provare ad utilizzare React nella tua app o in un sito web esistente, [aggiungi React ad un progetto esistente.](/learn/add-react-to-an-existing-project)
8 changes: 4 additions & 4 deletions src/sidebarLearn.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@
]
},
{
"title": "Installation",
"title": "Installazione",
"path": "/learn/installation",
"routes": [
{
"title": "Start a New React Project",
"title": "Inizia un nuovo progetto React",
"path": "/learn/start-a-new-react-project"
},
{
"title": "Add React to an Existing Project",
"title": "Aggiungi React ad un progetto esistente",
"path": "/learn/add-react-to-an-existing-project"
},
{
"title": "Editor Setup",
"title": "Setup dell'editor",
"path": "/learn/editor-setup"
},
{
Expand Down