Skip to content

Traduzione nuova HomePage #417

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 9 commits into from
Apr 21, 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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,6 @@ yarn-error.log*

# external fonts
public/fonts/**/Optimistic_*.woff2

# typegen files
*.typegen.ts
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This repo contains the source code and documentation powering [it.reactjs.org](h
# ⚠ Beta Website ⚠
We are currently transitioning our translation efforts to the new website that is currently in [Beta](https://github.com/reactjs/reactjs.org/issues/4135).

We are early stages and still setting up everything, all the previous translation efforts are stopped.
We are early stages and still setting up everything, all the previous translation efforts are stopped.

Nothing is lost, all the translated content will be archived.

Expand All @@ -26,11 +26,11 @@ As usual you can follow the progress [here (#1)](https://github.com/reactjs/it.r
1. Node: any 12.x version starting with v12.0.0 or greater
1. Yarn: See [Yarn website for installation instructions](https://yarnpkg.com/lang/en/docs/install/)
1. A fork of the repo (for any contributions)
1. A clone of the [react.dev repo](https://github.com/reactjs/react.dev) on your local machine
1. A clone of the [it.react.dev repo](https://github.com/reactjs/it.react.dev) on your local machine

### Installation

1. `cd react.dev` to go into the project root
1. `cd it.react.dev` to go into the project root
3. `yarn` to install the website's npm dependencies

### Running locally
Expand Down Expand Up @@ -67,7 +67,7 @@ The documentation is divided into several sections with a different tone and pur

1. `git add -A && git commit -m "My message"` (replacing `My message` with a commit message, such as `Fix header logo on Android`) to stage and commit your changes
1. `git push my-fork-name the-name-of-my-branch`
1. Go to the [react.dev repo](https://github.com/reactjs/react.dev) and you should see recently pushed branches.
1. Go to the [it.react.dev repo](https://github.com/reactjs/it.react.dev) and you should see recently pushed branches.
1. Follow GitHub's instructions.
1. If possible, include screenshots of visual changes. A preview build is triggered after your changes are pushed to GitHub.

Expand Down
32 changes: 18 additions & 14 deletions src/components/Layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -286,50 +286,54 @@ export function Footer() {
</div>
<div className="flex flex-col">
<FooterLink href="/learn" isHeader={true}>
Learn React
Impara React
</FooterLink>
<FooterLink href="/learn/">Quick Start</FooterLink>
<FooterLink href="/learn/installation">Installation</FooterLink>
<FooterLink href="/learn/installation">Installazione</FooterLink>
<FooterLink href="/learn/describing-the-ui">
Describing the UI
Descrivere la UI
</FooterLink>
<FooterLink href="/learn/adding-interactivity">
Adding Interactivity
Aggiungere Interattività
</FooterLink>
<FooterLink href="/learn/managing-state">
Gestione dello State
</FooterLink>
<FooterLink href="/learn/escape-hatches">
Uscite di Emergenza
</FooterLink>
<FooterLink href="/learn/managing-state">Managing State</FooterLink>
<FooterLink href="/learn/escape-hatches">Escape Hatches</FooterLink>
</div>
<div className="flex flex-col">
<FooterLink href="/reference/react" isHeader={true}>
API Reference
API di Riferimento
</FooterLink>
<FooterLink href="/reference/react">React APIs</FooterLink>
<FooterLink href="/reference/react-dom">React DOM APIs</FooterLink>
</div>
<div className="md:col-start-2 xl:col-start-4 flex flex-col">
<FooterLink href="/community" isHeader={true}>
Community
Comunità
</FooterLink>
<FooterLink href="https://github.com/facebook/react/blob/main/CODE_OF_CONDUCT.md">
Code of Conduct
Codice di Condotta
</FooterLink>
<FooterLink href="/community/team">Meet the Team</FooterLink>
<FooterLink href="/community/team">Incontra il Team</FooterLink>
<FooterLink href="/community/docs-contributors">
Docs Contributors
Collaboratori Docs
</FooterLink>
<FooterLink href="/community/acknowledgements">
Acknowledgements
Riconoscimenti
</FooterLink>
</div>
<div className="flex flex-col">
<FooterLink isHeader={true}>More</FooterLink>
<FooterLink isHeader={true}>Di Più</FooterLink>
<FooterLink href="/blog">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
Termini
</FooterLink>
<div className="flex flex-row mt-8 gap-x-2">
<ExternalLink
Expand Down
Loading