Skip to content

Commit a7a0bad

Browse files
committed
New Crowdin translations by GitHub Action
1 parent 409ece1 commit a7a0bad

File tree

94 files changed

+2730
-164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+2730
-164
lines changed

de-DE/images/badge.png

87.6 KB
Loading

de-DE/images/banner.png

296 KB
Loading

de-DE/images/extension_menu.png

5.58 KB
Loading

de-DE/images/showcase_moving.mov

1.7 MB
Binary file not shown.

de-DE/images/showcase_static.png

309 KB
Loading

de-DE/meta.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
title: Olympic rings
2+
hero_image: images/banner.png
3+
description: Create a program that will accurately draw the Olympic rings.
4+
version: 4
5+
listed: true
6+
copyedit: true
7+
last_tested: "2024-07-24"
8+
steps:
9+
- title: Das wirst du machen
10+
- title: Set up the rings
11+
completion:
12+
- engaged
13+
- title: Draw the rings
14+
completion:
15+
- internal
16+
- title: Wie geht es weiter?
17+
completion:
18+
- external
2.39 KB
Binary file not shown.

de-DE/scratch-translatable.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rings

de-DE/step_1.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
### Was du machen wirst
2+
3+
You will use the pen extension blocks to draw the Olympic Rings, making sure that they overlap correctly.
4+
5+
\--- no-print ---
6+
7+
<div class="scratch-preview">
8+
<iframe allowtransparency="true" width="485" height="402" src="https://scratch.mit.edu/projects/embed/1048245134/?autostart=false" frameborder="0"></iframe>
9+
</div>
10+
11+
\--- /no-print ---
12+
13+
\--- print-only ---
14+
15+
![Complete project](images/showcase_static.png)
16+
17+
\--- /print-only ---
18+
19+
## --- collapse ---
20+
21+
## title: Was du brauchen wirst
22+
23+
### Software
24+
25+
- Scratch 3 (either [online](http://rpf.io/scratchon){:target="_blank"} or [offline](http://rpf.io/scratchoff){:target="_blank"})
26+
27+
### Downloads
28+
29+
- If you are working offline, download the [starter project](https://rpf.io/p/en/olympic-rings-go){:target="_blank"}
30+
31+
\--- /collapse ---
32+
33+
## --- collapse ---
34+
35+
## title: Zusätzliche Informationen für Pädagogen
36+
37+
You can download the completed project [here](https://scratch.mit.edu/projects/1048245134){:target="_blank"}.
38+
39+
If you need to print this project, please use the [printer-friendly version](https://projects.raspberrypi.org/en/projects/olympic-rings/print){:target="_blank"}.
40+
41+
\--- /collapse ---
42+
43+
With thanks to Kaye North from Code Club Australia for the [original project](https://www.codeclubau.org/projects/olympic-rings)!

de-DE/step_2.md

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
## Set up the rings
2+
3+
You will use the pen tool to draw the Olympic rings accurately.
4+
5+
Pay close attention to where the rings cross each other and which ring sits on top at each overlap.
6+
7+
\--- task ---
8+
9+
If you are working **online**, open the [starter project](https://scratch.mit.edu/projects/1048263697/){:target="_blank"} in Scratch.
10+
11+
If you are working **offline**, open the project [starter file](https://rpf.io/p/en/olympic-rings-go){:target="_blank"} in the Scratch offline editor. If you need to download and install Scratch, you can find it [here](https://scratch.mit.edu/download){:target="_blank"}.
12+
13+
\--- /task ---
14+
15+
\--- task ---
16+
17+
Click 'see inside'.
18+
19+
\--- /task ---
20+
21+
Add the pen extension blocks.
22+
23+
\--- task ---
24+
25+
Click on the extension menu in the bottom left corner.
26+
27+
![The extension menu](images/extension_menu.png)
28+
29+
Choose the pen extension blocks.
30+
31+
\--- /task ---
32+
33+
\--- task ---
34+
35+
Select the dot sprite.
36+
37+
\--- /task ---
38+
39+
\--- task ---
40+
41+
Drag out a `when green flag clicked`{:class="block3events"} block from the `Events`{:class="block3events"} blocks menu.
42+
43+
```blocks3
44+
when flag clicked
45+
```
46+
47+
\--- /task ---
48+
49+
A variable will be used to control the five rings.
50+
51+
\--- task ---
52+
53+
Create a `rings`{:class="block3variables"} variable and add a `set rings`{:class="block3variables"} block.
54+
55+
```blocks3
56+
when flag clicked
57+
+set [rings v] to (0)
58+
```
59+
60+
\--- /task ---
61+
62+
Erase any previous drawing.
63+
64+
\--- task ---
65+
66+
From the pen blocks, add an erase all block.
67+
68+
Add a block to set the pen size to 10.
69+
70+
```blocks3
71+
when flag clicked
72+
set [rings v] to (0)
73+
+erase all
74+
+set pen size to (10)
75+
```
76+
77+
\--- /task ---
78+
79+
The next section of code will repeat five times, one for each coloured ring.
80+
81+
\--- task ---
82+
83+
Add a repeat block.
84+
85+
```blocks3
86+
when flag clicked
87+
set [rings v] to (0)
88+
erase all
89+
set pen size to (10)
90+
+repeat (5)
91+
```
92+
93+
\--- /task ---
94+
95+
Each ring will be identified by a number from 1 to 5.
96+
97+
\--- task ---
98+
99+
Add a block to change the `rings`{:class="block3variables"} variable by 1.
100+
101+
```blocks3
102+
when flag clicked
103+
set [rings v] to (0)
104+
erase all
105+
set pen size to (10)
106+
repeat (5)
107+
+change [rings v] by (1)
108+
```
109+
110+
\--- /task ---
111+
112+
You need five clones (copies), because there are five rings.
113+
114+
\--- task ---
115+
116+
Add a block to create a clone of itself and a wait block.
117+
118+
```blocks3
119+
when flag clicked
120+
set [rings v] to (0)
121+
erase all
122+
set pen size to (10)
123+
repeat (5)
124+
change [rings v] by (1)
125+
+create clone of (myself v)
126+
+wait (0.1) seconds
127+
```
128+
129+
\--- /task ---
130+
131+
**Tip**: You can hide the variable on your screen.
132+
Right-click on the variable box on your screen and select hide.
133+
134+
\--- save ---

0 commit comments

Comments
 (0)