feat: changed quality ratingOptions to only use 4 values

This commit is contained in:
averel10
2026-04-10 09:41:38 +02:00
parent 845a418c01
commit 88e8287224

View File

@@ -64,9 +64,8 @@ export default function AnnotationPageView({
ratingOptions: [ ratingOptions: [
{ value: 1, label: `Klingt überhaupt nicht nach ${DIALECT_LABELS[dialectLabel]}` }, { value: 1, label: `Klingt überhaupt nicht nach ${DIALECT_LABELS[dialectLabel]}` },
{ value: 2, label: `Klingt eher nicht nach ${DIALECT_LABELS[dialectLabel]}` }, { value: 2, label: `Klingt eher nicht nach ${DIALECT_LABELS[dialectLabel]}` },
{ value: 3, label: 'Schwer zu beurteilen' }, { value: 3, label: `Klingt eher nach ${DIALECT_LABELS[dialectLabel]}` },
{ value: 4, label: `Klingt eher nach ${DIALECT_LABELS[dialectLabel]}` }, { value: 4, label: `Klingt eindeutig nach ${DIALECT_LABELS[dialectLabel]}` },
{ value: 5, label: `Klingt eindeutig nach ${DIALECT_LABELS[dialectLabel]}` },
], ],
question: <div>Wie authentisch klingt diese Aufnahme nach dem Dialekt der Region <span className="text-blue-600">{DIALECT_LABELS[dialectLabel]}</span>?</div>, question: <div>Wie authentisch klingt diese Aufnahme nach dem Dialekt der Region <span className="text-blue-600">{DIALECT_LABELS[dialectLabel]}</span>?</div>,
}; };