Merge branch 'phase/75-gradebook-ui'

# Conflicts:
#	docs/phases/13-grades/README.md
This commit is contained in:
Leonid Pershin
2026-08-21 14:02:32 +03:00
19 changed files with 801 additions and 21 deletions
+8
View File
@@ -11,6 +11,14 @@ public static class AttendanceStatuses
public const string Late = "late";
public const string Absent = "absent";
public static string LocaleKey(string status) => status switch
{
Present => "AttendancePresent",
Late => "AttendanceLate",
Absent => "AttendanceAbsent",
_ => "Attendance" + char.ToUpperInvariant(status[0]) + status[1..],
};
}
/// <summary>