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

@@ -51,7 +51,7 @@ func card_info() -> CardInfo:
info.stats.append(
CardStatInfo.new(
"Cost %d energy" % energy_usage,
tr("COST_%d_ENERGY") % energy_usage,
ENERGY_ICON
)
)
@@ -59,13 +59,13 @@ func card_info() -> CardInfo:
if is_one_time_use():
info.stats.append(
CardStatInfo.new(
"One time use",
tr("ONE_TIME_USE"),
ONE_TIME_ICON
)
)
var effect_section = CardSectionInfo.new(
"Effect",
tr("EFFECT"),
get_description()
)
effect_section.title_icon = ACTION_ICON