Does anyone know of a solution or strategy for translating structured data for recurring events (rrules) into any given language?
RRules are part of the iCalendar spec about storing recurring event information. As an example, "RRULE:FREQ=DAILY;UNTIL=20000131T090000Z;BYMONTH=1" means "Everyday in January, for 3 years."
How do I go about outputting human-readable rrules in French, German, Spanish, etc.?
My first idea is that you'd need to consult with a language expert for the grammar of each particular language, then make a dictionary of all the words, then apply them together.
Is there a more sane approach?