ajout de la traduction #70

* Fix de l'inspection de l'inventaire
* Suppression des assets d'objectifs
This commit is contained in:
2025-11-07 17:36:18 +01:00
parent ed675ed532
commit a8bb09407e
91 changed files with 485 additions and 872 deletions

View File

@@ -28,14 +28,14 @@ func pointer_text() -> String:
var name_suffix = ""
if item is Seed:
name_suffix = "Seed"
name_suffix = tr("SEED")
if item is Package:
name_suffix = "Package"
name_suffix = tr("PACKAGE")
return item.name + (" " + name_suffix if name_suffix else "")
func interact_text():
return "Take"
return tr("TAKE")
func card_info() -> CardInfo:
return item.card_info()
@@ -54,6 +54,7 @@ func pickup_animation(player : Player):
tween.tween_property(self, "position", player.position, 0.2)
tween.tween_callback(
func():
Pointer.stop_inspect(self)
queue_free()
)
if object_sprite: