Add direct symbol getters on FixedCalendarDateTimeNames
For example, we could add a getter for the "AM" day period symbol. Maybe also the era codes, weekdays, and month names (need to think about standalone formats and capitalization context for those).
A Good First Issue would be to add the AM/PM getters. They should return Some if the data is loaded or None if not loaded. Example function signature: get_am(&self) -> Option<&str>
@sffc why get_*? I believe Rust promotes skipping get_ for getters.
Good point, I didn't consider that.
This type has a lot of functions, like load_* and include_*, and it seems nice to maybe group these ones as get_*. But, it's also nice when reading code to just have names.am() instead of names.get_am().