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

@@ -159,12 +159,12 @@ func card_info() -> CardInfo:
info.texture = plant_type.mature_texture
info.type_icon = PLANT_TYPE_ICON
var state_text = "Mature"
var state_text = tr("MATURE")
if state != State.MATURE:
state_text = "Growing"
state_text = tr("GROWING")
info.stats.append(CardStatInfo.new(
"Day [b]%d[/b]" % day,
tr("DAY_%d") % day,
LIFETIME_ICON
))
@@ -175,12 +175,12 @@ func card_info() -> CardInfo:
if state != State.MATURE:
info.stats.append(CardStatInfo.new(
"Mature on day [b]%d[/b]" % calculate_grow_time(),
tr("MATURE_ON_DAY_%d") % calculate_grow_time(),
GROWING_ICON
))
info.stats.append(CardStatInfo.new(
"[b]%d[/b] score when mature" % calculate_plant_score(State.MATURE),
tr("%d_SCORE_WHEN_MATURE") % calculate_plant_score(State.MATURE),
PLANT_POINT_ICON
))