add some localizations and levels traductions

This commit is contained in:
Luca Canali 2021-09-14 18:06:29 +02:00
parent 90574216dc
commit 086922d0c9
8 changed files with 41 additions and 19 deletions
levels/it_IT/workflows

View file

@ -1,9 +1,9 @@
title = Cloning a repo
title = Clonare un repo
cards = clone commit-auto reset-hard checkout file-new branch
[description]
Your friend has a problem! Clone the repo, create a branch called "solution", and fix the problem in this branch. When you're ready, make a "Pull Request" by using `git tag pr`.
Il tuo amico ha un problema! Clona il repo, crea una branch chiamata "solution" e aggiusta il problema in qulla branch. Quando sei pronto crea una "Pull Request" usando `git tag pr`.
[setup]
@ -13,12 +13,12 @@ rm -rf .git
echo "2 + 3 = " > file
git add .
git commit -m "Initial commit"
git commit -m "Commit iniziale"
[actions friend]
git ls-remote yours | grep pr && git fetch yours && git merge yours/solution
git show main:file | grep 5 && hint "Thanks!"
git show main:file | grep 5 && hint "Grazie!"
[win friend]