it.react.dev icon indicating copy to clipboard operation
it.react.dev copied to clipboard

New Italian Translation Progress

Open gaearon opened this issue 1 year ago • 47 comments

Maintainer List

  • @deblasis
  • @mattia-sanfilippo

For New Translators

To translate a page:

  1. Check that no one else has claimed your page in the checklist and comments below.
  2. Comment below with the name of the page you would like to translate. Please take only one page at a time.
  3. Clone this repo, translate your page, and submit a pull request!

Before contributing, read the glossary and style guide (once they exist) to understand how to translate various technical and React-specific terms.

Please be prompt with your translations! If you find that you can't commit anymore, let the maintainers know so they can assign the page to someone else.

For Maintainers

When someone volunteers, edit this issue with the username of the volunteer, and with the PR. Ex:

  • [ ] Quick Start (@tesseralis) #12345

When PRs are merged, make sure to mark that page as completed!

Main Content

To do before releasing as an "official" translation. Please translate these pages first.

Note that each section has an index page, which needs to be translated too.

Learn React

  • [x] Quick Start (@mattia-sanfilippo) #423

    • [x] Tutorial: Tic Tac Toe (@mattia-sanfilippo) #437
    • [x] Thinking in React (@SamuelePiazzesi) #421
  • [x] Installation (@Th3Wall) #422

    • [x] Start a New React Project (@webdiego) #419
    • [x] Add React to an Existing Project (@Th3Wall) #425
    • [x] Editor Setup https://github.com/reactjs/it.react.dev/pull/374
    • [x] React Developer Tools (@mattia-sanfilippo) #386
  • [x] Describing the UI (@Ago95Dev) #427

    • [x] Your First Component (@eliamaino-fp) #420
    • [x] Importing and Exporting Components (@eliamaino-fp) #444
    • [x] Writing Markup with JSX (@Ago95Dev) #424
    • [x] JavaScript in JSX with Curly Braces (@SamuelePiazzesi) #426
    • [x] Passing Props to a Component (@Th3Wall) #428
    • [x] Conditional Rendering (@Th3Wall) #431
    • [x] Rendering Lists (@SamuelePiazzesi) #442
    • [x] Keeping Components Pure (@Ago95Dev) #430
  • [x] Adding Interactivity (@oxcened) #434

    • [x] Responding to Events (@Th3Wall) #438
    • [x] State: A Component's Memory (@oxcened) #439
    • [x] Render and Commit (@Ago95Dev) #446
    • [x] State as a Snapshot (@NeilChavez) #440
    • [ ] Queueing a Series of State Updates (@Ago95Dev)
    • [x] Updating Objects in State (@oxcened) #443
    • [x] Updating Arrays in State (@paolapog) #448
  • [x] Managing State (@webdiego) #450

    • [ ] Reacting to Input with State
    • [ ] Choosing the State Structure (@SamuelePiazzesi)
    • [ ] Sharing State Between Components (@DavideBruner)
    • [ ] Preserving and Resetting State (@Shero08)
    • [x] Extracting State Logic into a Reducer (@paolapog)
    • [x] Passing Data Deeply with Context (@oxcened) #470
    • [ ] Scaling Up with Reducer and Context
  • [ ] Escape Hatches

    • [ ] Referencing Values with Refs
    • [ ] Manipulating the DOM with Refs
    • [ ] Synchronizing with Effects
    • [ ] You Might Not Need an Effect (@mattveraldi)
    • [ ] Lifecycle of Reactive Effects
    • [ ] Separating Events from Effects
    • [ ] Removing Effect Dependencies
    • [ ] Reusing Logic with Custom Hooks

API Reference

  • [x] react: Hooks (@fmineo) #455

    • [ ] useCallback
    • [ ] useContext
    • [ ] useDebugValue
    • [ ] useDeferredValue
    • [ ] useEffect
    • [ ] useId
    • [ ] useImperativeHandle
    • [ ] useInsertionEffect
    • [ ] useLayoutEffect
    • [ ] useMemo
    • [ ] useReducer
    • [ ] useRef
    • [ ] useState
    • [ ] useSyncExternalStore
    • [ ] useTransition
  • [ ] react: Components

    • [ ] <Fragment> (<>)
    • [ ] <Profiler>
    • [ ] <StrictMode>
    • [ ] <Suspense>
  • [ ] react: APIs

    • [ ] createContext
    • [ ] forwardRef
    • [ ] lazy
    • [ ] memo
    • [ ] startTransition
  • [ ] react-dom: Components

    • [ ] Common (e.g. <div>)
    • [ ] <input>
    • [ ] <option>
    • [ ] <progress>
    • [ ] <select>
    • [ ] <textarea>
  • [ ] react-dom: APIs

    • [ ] createPortal
    • [ ] flushSync
    • [ ] findDOMNode
    • [ ] hydrate
    • [ ] render
    • [ ] unmountComponentAtNode
  • [ ] react-dom/client: Client APIs

    • [ ] createRoot
    • [ ] hydrateRoot
  • [ ] react-dom/server: Server APIs

    • [ ] renderToNodeStream
    • [ ] renderToPipeableStream
    • [ ] renderToReadableStream
    • [ ] renderToStaticMarkup
    • [ ] renderToStaticNodeStream
    • [ ] renderToString

Navigation and UI

We suggest to leave most of the UI translation until the end. We plan to do some invasive changes to the website folder layout and components, so postponing this until your translation is almost complete would make it easier to merge the changes from our side later. It might make sense to translate the homepage above the fold early, but leave the rest for later. As individual pages get translated, you can change the page titles in the corresponding sidebar files. Finally, when you're translating the navigation, make sure to test both desktop and mobile layouts.

  • [x] Homepage (currently in HomeContent.js) (@deblasis) #417
  • [ ] Sidebars (currently in src/sidebar*.json)
  • [ ] Top-level navigation (currently in TopNav.tsx)

When You're Ready...

After everything above is translated, add your language to deployedLanguages in Seo.tsx of the original reactjs/react.dev repository.

Secondary Content

These API pages should ideally be translated too, but they're less urgent and can be done after the others:

  • [ ] Legacy React APIs
    • [ ] Children
    • [ ] cloneElement
    • [ ] Component
    • [ ] createElement
    • [ ] createFactory
    • [ ] createRef
    • [ ] isValidElement
    • [ ] PureComponent

Optional Content

These aren't the main translation targets, but if you'd like to do them, feel free to expand the list to include their subpages:

  • [ ] Community
  • [ ] Blog
  • [ ] Warnings

gaearon avatar Apr 25 '23 02:04 gaearon

Hey! i'm translating "Thinking in React"

SamuelePiazzesi avatar Apr 25 '23 06:04 SamuelePiazzesi

Hey 👋 I'm translating "Quick start" :)

mattia-sanfilippo avatar Apr 25 '23 06:04 mattia-sanfilippo

Hey 😀 I'm translating "Start a New React Project"

webdiego avatar Apr 25 '23 09:04 webdiego

Hey! 👋🏼 I'm translating "Thinking in React"!

Th3Wall avatar Apr 25 '23 11:04 Th3Wall

Hey! i'm translating "Thinking in React"

@Th3Wall the page seems to have already been taken by @SamuelePiazzesi

webdiego avatar Apr 25 '23 11:04 webdiego

Hey! i'm translating "Thinking in React"

@Th3Wall the page seems to have already been taken by @SamuelePiazzesi

Oops, sorry @SamuelePiazzesi I'm going to start from "Installation" page then. Thanks @webdiego 😃

Th3Wall avatar Apr 25 '23 11:04 Th3Wall

Hello :) I'm translating "Your First Component"

eliamaino-fp avatar Apr 25 '23 12:04 eliamaino-fp

@deblasis Is the current maintainer list up-to-date? If not, would you mind updating it in https://github.com/reactjs/translations.react.dev and removing any inactive members? Thank you!

gaearon avatar Apr 25 '23 14:04 gaearon

@deblasis Is the current maintainer list up-to-date? If not, would you mind updating it in https://github.com/reactjs/translations.react.dev and removing any inactive members? Thank you!

@gaearon I have updated the maintainers list on https://github.com/reactjs/translations.react.dev and also this issue above to reflect the changes.

deblasis avatar Apr 25 '23 15:04 deblasis

Hey! I have a PR already approved for the "Installation" page. I would now pick "Add React to an Existing Project" page 😄

Th3Wall avatar Apr 26 '23 08:04 Th3Wall

Taking "Importing and Exporting Components" now :)

eliamaino-fp avatar Apr 26 '23 13:04 eliamaino-fp

Hi! I'm translating "Writing Markup with JSX"

Ago95Dev avatar Apr 26 '23 13:04 Ago95Dev

hey! it's me again. i can take the JavaScript in JSX with Curly Braces content :D

SamuelePiazzesi avatar Apr 26 '23 14:04 SamuelePiazzesi

Hey 👋 I'm translating "Tutorial: Tic Tac Toe" :)

mattia-sanfilippo avatar Apr 27 '23 08:04 mattia-sanfilippo

Hi! I'm translating "Describing the UI"

Ago95Dev avatar Apr 27 '23 13:04 Ago95Dev

Hey! I'm now translating "Passing Props to a Component" 🙂

Th3Wall avatar Apr 27 '23 16:04 Th3Wall

Hello! I can proceed to translate Rendering Lists content :)

SamuelePiazzesi avatar Apr 28 '23 07:04 SamuelePiazzesi

Hey there! I can start with "Conditional Rendering" 😃

Th3Wall avatar Apr 28 '23 08:04 Th3Wall

Hi! I'm translating "Keeping Components Pure"

Ago95Dev avatar Apr 28 '23 09:04 Ago95Dev

Hi there! I'm taking State: A Component's Memory 😃

EDIT: Actually my bad, didn't notice Adding Interactivity needs translation too. I'm taking that instead. 🙂

oxcened avatar Apr 29 '23 16:04 oxcened

Hi translators! 😄 While I wait for the reviews, I'm taking "Responding to Events"

Th3Wall avatar May 01 '23 23:05 Th3Wall

Picking up State: A Component's Memory now 🙂

oxcened avatar May 02 '23 05:05 oxcened

Hi guys! I'm translating "Render and Commit"

Ago95Dev avatar May 02 '23 08:05 Ago95Dev

Hello! I'm translating "State as a Snapshot" :)

NeilChavez avatar May 02 '23 23:05 NeilChavez

I'm going for Updating Objects in State

oxcened avatar May 09 '23 17:05 oxcened

Hello everyone 👋🏼 I would like to contribute by translating the "Updating Arrays in State" 's part

paolapog avatar May 25 '23 09:05 paolapog

Hi there! I would like to contribute by translating Reacting to Input with State

GiuliaBortone avatar May 27 '23 11:05 GiuliaBortone

Hello! I will go for the Choosing the State Structure

SamuelePiazzesi avatar May 29 '23 09:05 SamuelePiazzesi

Hi everyone 👋🏼 I'm taking Sharing State Between Components.

DavideBruner avatar May 29 '23 17:05 DavideBruner

Hello! I'm taking Preserving and Resetting State.

Shero08 avatar May 29 '23 17:05 Shero08