Basically putting all the translation stuff together before I refactor things to use it.

This commit is contained in:
2025-05-25 12:53:34 -05:00
parent 1e2d971643
commit f5cb84e0c9
31 changed files with 254 additions and 327 deletions

View File

@@ -18,9 +18,9 @@ func start() -> void:
var text:String = "";
match getType:
GetType.FOUND:
text = "Found " + str(quantity) + " " + Item.getItemName(itemType, quantity) + ".";
text = "Found " + str(quantity) + " " + ITEM.getItemName(itemType, quantity) + ".";
GetType.GIVEN:
text = "Received " + str(quantity) + " " + Item.getItemName(itemType, quantity) + ".";
text = "Received " + str(quantity) + " " + ITEM.getItemName(itemType, quantity) + ".";
_:
pass
VN.getTextbox().setText(text);