added english translation

Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2026-09-10 16:07:35 +02:00
parent d370249649
commit da54636680
46 changed files with 3008 additions and 247 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ func _ready() -> void:
func set_question() -> void:
# Set texts
var full_question_text = question + "\na) "+answer_0+ "\nb) "+answer_1+ "\nc) "+answer_2+ "\nd) "+answer_3 + "\n"
var full_question_text = tr(question) + "\na) "+tr(answer_0)+ "\nb) "+tr(answer_1)+ "\nc) "+tr(answer_2)+ "\nd) "+tr(answer_3) + "\n"
question_label.text = full_question_text
question_panel.visible = true