Skip to content

Commit 8622b88

Browse files
Merge pull request #116 from raspberrypilearning/draft
Fix translation
2 parents 846278e + 4c24ec9 commit 8622b88

File tree

1 file changed

+3
-3
lines changed
  • cs-CZ/code/target-practice-solution

1 file changed

+3
-3
lines changed

cs-CZ/code/target-practice-solution/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
# Zde je funkce mouse_pressed
88
def mouse_pressed():
99
# print('🎯')
10-
if hit_colour == Color("modrá").hex:
10+
if hit_colour == Color("blue").hex:
1111
print("Trefil jsi vnější kruh, 50 bodů!")
12-
elif hit_colour == Color("červená").hex:
12+
elif hit_colour == Color("red").hex:
1313
print("Trefil jsi vnitřní kruh, 200 bodů!")
14-
elif hit_colour == Color("žlutá").hex:
14+
elif hit_colour == Color("yellow").hex:
1515
print("Trefil jsi střed, 500 bodů!")
1616
else:
1717
print("Vedle! Žádné body!")

0 commit comments

Comments
 (0)