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,12 +1,15 @@
extends RichTextLabel
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
_update_head_text()
func _notification(what: int) -> void:
if what == NOTIFICATION_TRANSLATION_CHANGED:
_update_head_text()
func _update_head_text() -> void:
var scene_name = get_tree().current_scene.name
text = "/" + scene_name + "/"
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
text = "/" + tr(String(scene_name)) + "/"