public static string GetShortName(this RepetitionDayOfWeek dayOfWeek)
 {
     return(shortNames.TryGetValue(dayOfWeek, out var shortName)
         ? shortName
         : string.Join(", ", dayOfWeek.GetDaysOfWeek().Select(x => shortNames[x])));
 }