Skip to content

Commit 8a6e9b6

Browse files
Fix translation
French
1 parent 4cdec7d commit 8a6e9b6

6 files changed

Lines changed: 25 additions & 27 deletions

File tree

fr-FR/meta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ steps:
1010
- title: Ce que tu vas faire
1111
- title: Mettre en place les anneaux
1212
completion:
13-
- engaged
13+
- engaged
1414
- title: Dessiner les anneaux
1515
completion:
16-
- internal
16+
- internal
1717
- title: Et ensuite ?
1818
completion:
19-
- external
19+
- external

fr-FR/step_2.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Fais bien attention à l’endroit où les anneaux se croisent et à quel anneau
88

99
Si tu travailles **en ligne**, ouvre le [projet de démarrage](https://scratch.mit.edu/projects/1048263697/){:target="_blank"} dans Scratch.
1010

11-
Si tu travailles **hors ligne**, ouvre le [fichier de démarrage] du projet (https://rpf.io/p/fr-FR/olympic-rings-go){:target="_blank"} dans l'éditeur hors ligne de Scratch. Si tu dois télécharger et installer Scratch, tu peux le trouver [ici](https://scratch.mit.edu/download){:target="_blank"}.
11+
Si tu travailles **hors ligne**, ouvre le [fichier de démarrage](https://rpf.io/p/fr-FR/olympic-rings-go){:target="_blank"} du projet dans l'éditeur hors ligne de Scratch. Si tu dois télécharger et installer Scratch, tu peux le trouver [ici](https://scratch.mit.edu/download){:target="_blank"}.
1212

1313
--- /task ---
1414

@@ -54,7 +54,7 @@ Crée une variable `anneaux`{:class="block3variables"} et ajoute un bloc `mettre
5454

5555
```blocks3
5656
when flag clicked
57-
+set [rings v] to (0)
57+
+set [anneaux v] to (0)
5858
```
5959

6060
--- /task ---
@@ -69,7 +69,7 @@ Ajoute un bloc pour mettre la taille du stylo à 10.
6969

7070
```blocks3
7171
when flag clicked
72-
set [rings v] to (0)
72+
set [anneaux v] to (0)
7373
+erase all
7474
+set pen size to (10)
7575
```
@@ -84,7 +84,7 @@ Ajoute un bloc « répéter ».
8484

8585
```blocks3
8686
when flag clicked
87-
set [rings v] to (0)
87+
set [anneaux v] to (0)
8888
erase all
8989
set pen size to (10)
9090
+repeat (5)
@@ -100,11 +100,11 @@ Ajoute un bloc pour ajouter la variable `anneaux`{:class="block3variables"} à 1
100100

101101
```blocks3
102102
when flag clicked
103-
set [rings v] to (0)
103+
set [anneaux v] to (0)
104104
erase all
105105
set pen size to (10)
106106
repeat (5)
107-
+change [rings v] by (1)
107+
+change [anneaux v] by (1)
108108
```
109109

110110
--- /task ---
@@ -117,12 +117,12 @@ Ajoute un bloc pour créer un clone de lui-même et un bloc « attendre ».
117117

118118
```blocks3
119119
when flag clicked
120-
set [rings v] to (0)
120+
set [anneaux v] to (0)
121121
erase all
122122
set pen size to (10)
123123
repeat (5)
124-
change [rings v] by (1)
125-
+create clone of (myself v)
124+
change [anneaux v] by (1)
125+
+create clone of (moi-même v)
126126
+wait (0.1) seconds
127127
```
128128

fr-FR/step_3.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Remplace le `50` par `1`.
4040
```blocks3
4141
when I start as a clone
4242
point in direction (90)
43-
+if <(rings) = (1)> then
43+
+if <(anneaux) = (1)> then
4444
```
4545

4646
--- /task ---
@@ -58,7 +58,7 @@ Ajoute un bloc pour mettre le stylo en position d'écriture.
5858
```blocks3
5959
when I start as a clone
6060
point in direction (90)
61-
if <(rings) = (1)> then
61+
if <(anneaux) = (1)> then
6262
+go to x: (-116) y: (-20)
6363
+turn cw (156) degrees
6464
+set pen color to (#0078D0)
@@ -80,7 +80,7 @@ Modifie l'angle initial.
8080
Modifie également la couleur sur jaune (utilise le code hexadécimal #FFB114).
8181

8282
```blocks3
83-
+if <(rings) = (2)> then
83+
+if <(anneaux) = (2)> then
8484
go to x: (-13) y: (-13)
8585
turn cw (78) degrees
8686
set pen color to (#FFB114)
@@ -103,7 +103,7 @@ Modifie l'angle initial.
103103
Modifie également la couleur sur noir (code hexadécimal #000000).
104104

105105
```blocks3
106-
+if <(rings) = (3)> then
106+
+if <(anneaux) = (3)> then
107107
go to x: (-56) y: (19)
108108
turn cw (-102) degrees
109109
set pen color to (#000000)
@@ -118,7 +118,7 @@ Fais maintenant la même chose pour l'anneau avec la variable 4.
118118
--- task ---
119119

120120
```blocks3
121-
+if <(rings) = (4)> then
121+
+if <(anneaux) = (4)> then
122122
go to x: (46) y: (28)
123123
turn cw (-24) degrees
124124
set pen color to (#00A651)
@@ -133,7 +133,7 @@ Fais maintenant la même chose pour l'anneau avec la variable 5.
133133
--- task ---
134134

135135
```blocks3
136-
+if <(rings) = (5)> then
136+
+if <(anneaux) = (5)> then
137137
go to x: (85) y: (20)
138138
turn cw (-102) degrees
139139
set pen color to (#F0282D)

fr-FR/step_4.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
## Et ensuite ?
22

3-
Si tu souhaites t'amuser davantage en explorant Scratch, tu peux essayer l'un de [ces projets] (https://projects.raspberrypi.org/fr-FR/projects?software%5B%5D=scratch&curriculum%5B%5D=%201).
3+
Si tu souhaites t'amuser davantage en explorant Scratch, tu peux essayer l'un de [ces projets](https://projects.raspberrypi.org/fr-FR/projects?software%5B%5D=scratch&curriculum%5B%5D=%201).
44

55
***
66
Ce projet a été traduit par des bénévoles:
77

8-
[name]
8+
Jonathan Vannieuwkerke
99

10-
[name]
11-
12-
[name]
10+
Michel Arnols
1311

1412
Grâce aux bénévoles, nous pouvons donner aux gens du monde entier la chance d'apprendre dans leur propre langue. Vous pouvez nous aider à atteindre plus de personnes en vous portant volontaire pour la traduction - plus d'informations sur [rpf.io/translate](https://rpf.io/translate).

nl-NL/meta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ steps:
1010
- title: Wat ga je maken
1111
- title: De ringen opzetten
1212
completion:
13-
- engaged
13+
- engaged
1414
- title: De ringen tekenen
1515
completion:
16-
- internal
16+
- internal
1717
- title: Wat kun je verder nog doen?
1818
completion:
19-
- external
19+
- external

nl-NL/step_2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ erase all
122122
set pen size to (10)
123123
repeat (5)
124124
change [ringen v] by (1)
125-
+create clone of (myself v)
125+
+create clone of (mijzelf v)
126126
+wait (0.1) seconds
127127
```
128128

0 commit comments

Comments
 (0)