feat: add audio clip annotation view for dialect rating

This commit is contained in:
smaubio
2026-03-13 14:49:46 +01:00
parent 2b6d23c406
commit a823e968a2
12 changed files with 2022 additions and 4 deletions

19
src/lib/dialects.ts Normal file
View File

@@ -0,0 +1,19 @@
export const DIALECT_LABELS: Record<string, string> = {
ch_be: 'Bern',
ch_bs: 'Basel',
ch_gr: 'Graubünden',
ch_in: 'Innerschweiz',
ch_os: 'Ostschweiz',
ch_vs: 'Wallis',
ch_zh: 'Zürich',
de: 'Deutsch',
};
export type AnnotationEntry = {
id: number;
externalId: string;
fileName: string;
dialect: string;
durationMs: number | null;
datasetId: number;
};