First Watch Face - Languages Support Please (Exact FR/ES strings)

Hey Community,

I'm working on my first watch face in VS Code with the Monkey C extension and having fun. I want to make the watch face FREE and I am working towards adding other language support next.

I am English speaking and would like to add Spanish and French support next to my project.

I don't have any Spanish and French speaking friends with Garmin devices that can assist. Since my font is a custom-generated bitmap atlas (not the system font), I need to know the exact characters Garmin returns so I can include the right glyphs.
If anyone has a device set to French or Spanish and a few seconds, could you please run this and paste the console output?

using Toybox.System;
using Toybox.Time;
using Toybox.Time.Gregorian;

function debugPrintDateStrings() as Void {
var info = Gregorian.info(Time.now(), Time.FORMAT_MEDIUM);
System.println("day_of_week: " + info.day_of_week);
System.println("month: " + info.month);
}

I'm happy to help others if I can in the future.

Thanks in advance!

Also, please let me know if this sort of post is not allowed. This is my first time in the forum.