chore(i18n,docs): processed translations (#43758)

This commit is contained in:
camperbot
2021-10-07 05:37:51 -07:00
committed by GitHub
parent 25783b7929
commit f069173edb
46 changed files with 372 additions and 257 deletions

View File

@@ -132,37 +132,37 @@ Quando stai lavorando su funzionalità dei rami `next-*` del nuovo curriculum, d
a. Elimina anche il ramo locale dopo aver effettuato un backup (se lo hai ancora localmente):
```console
git checkout <pr-branch-name>
```console
git checkout <pr-branch-name>
# example:
# git checkout feat/add-numpy-video-question
# example:
# git checkout feat/add-numpy-video-question
git checkout -b <backup-branch-name>
git checkout -b <backup-branch-name>
# example:
# git checkout -b backup-feat/add-numpy-video-question
# example:
# git checkout -b backup-feat/add-numpy-video-question
git branch -D <pr-branch-name>
```
git branch -D <pr-branch-name>
```
b. O solo un backup del ramo pr (se non lo hai localmente):
```console
git checkout -b <backup-branch-name> origin/<pr-branch-name>
```console
git checkout -b <backup-branch-name> origin/<pr-branch-name>
# esempio:
# git checkout -b backup-feat/add-numpy-video-question origin/feat/add-numpy-video-question
```
# example:
# git checkout -b backup-feat/add-numpy-video-question origin/feat/add-numpy-video-question
```
4. Inizia con una slate pulita:
3. Inizia con una slate pulita:
```console
git checkout -b <pr-branch-name> next-python-projects
git cherry-pick <commit-hash>
```
5. Risolvere eventuali conflitti e pulire, installare test di esecuzione
4. Risolvere eventuali conflitti e pulire, installare test di esecuzione
```console
npm run clean
@@ -176,7 +176,7 @@ Quando stai lavorando su funzionalità dei rami `next-*` del nuovo curriculum, d
```
6. Se tutto sembra funzionare fai un push alla PR
5. Se tutto sembra funzionare fai un push alla PR
```console
git push --force origin <pr-branch-name>