help coding people, in godot when you:
func _ready():
var time =Time.get_date_dict_from_system()
var day = time["day"]
var month = time["month"]
var year = time["year"]
print ("%s %s,%s" % [month, day, year])
is there a way to display the month as a name instead of a number
