From 88e828722498cc7ea76e8cf576acb85f1e0820ce Mon Sep 17 00:00:00 2001 From: averel10 Date: Fri, 10 Apr 2026 09:41:38 +0200 Subject: [PATCH] feat: changed quality ratingOptions to only use 4 values --- src/components/AnnotationViews/AnnotationPageView.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/AnnotationViews/AnnotationPageView.tsx b/src/components/AnnotationViews/AnnotationPageView.tsx index 7617f03..03eb7b6 100644 --- a/src/components/AnnotationViews/AnnotationPageView.tsx +++ b/src/components/AnnotationViews/AnnotationPageView.tsx @@ -64,9 +64,8 @@ export default function AnnotationPageView({ ratingOptions: [ { value: 1, label: `Klingt überhaupt nicht nach ${DIALECT_LABELS[dialectLabel]}` }, { value: 2, label: `Klingt eher nicht nach ${DIALECT_LABELS[dialectLabel]}` }, - { value: 3, label: 'Schwer zu beurteilen' }, - { value: 4, label: `Klingt eher nach ${DIALECT_LABELS[dialectLabel]}` }, - { value: 5, label: `Klingt eindeutig nach ${DIALECT_LABELS[dialectLabel]}` }, + { value: 3, label: `Klingt eher nach ${DIALECT_LABELS[dialectLabel]}` }, + { value: 4, label: `Klingt eindeutig nach ${DIALECT_LABELS[dialectLabel]}` }, ], question:
Wie authentisch klingt diese Aufnahme nach dem Dialekt der Region {DIALECT_LABELS[dialectLabel]}?
, };