From 4c24ec954525030694c4941f8d5c503599bf0c54 Mon Sep 17 00:00:00 2001 From: sashamishcheriakova <135987917+sashamishcheriakova@users.noreply.github.com> Date: Fri, 11 Apr 2025 16:25:14 +0100 Subject: [PATCH] Fix translation Czech --- cs-CZ/code/target-practice-solution/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cs-CZ/code/target-practice-solution/main.py b/cs-CZ/code/target-practice-solution/main.py index e88fb95d..c4890232 100644 --- a/cs-CZ/code/target-practice-solution/main.py +++ b/cs-CZ/code/target-practice-solution/main.py @@ -7,11 +7,11 @@ # Zde je funkce mouse_pressed def mouse_pressed(): # print('🎯') - if hit_colour == Color("modrá").hex: + if hit_colour == Color("blue").hex: print("Trefil jsi vnější kruh, 50 bodů!") - elif hit_colour == Color("červená").hex: + elif hit_colour == Color("red").hex: print("Trefil jsi vnitřní kruh, 200 bodů!") - elif hit_colour == Color("žlutá").hex: + elif hit_colour == Color("yellow").hex: print("Trefil jsi střed, 500 bodů!") else: print("Vedle! Žádné body!")