From a2328088a8b9f84c418438409aa3747d64e055c7 Mon Sep 17 00:00:00 2001 From: VikDavydiuk <117301540+VikDavydiuk@users.noreply.github.com> Date: Thu, 21 Sep 2023 10:29:56 +0200 Subject: [PATCH] BC-5032-Remove consent reference from student visibility toggle info for nbc (#3304) Co-authored-by: Viktoriia <1> --- locales/de.json | 1 + locales/en.json | 1 + locales/es.json | 1 + locales/uk.json | 1 + views/administration/school.hbs | 6 +++++- 5 files changed, 9 insertions(+), 1 deletion(-) diff --git a/locales/de.json b/locales/de.json index ca4a844af3..51c95e23bd 100644 --- a/locales/de.json +++ b/locales/de.json @@ -567,6 +567,7 @@ "afterTheTransferPhaseEnded": "Nach Beenden der Transferphase", "allStudentsVisibility": "Die Aktivierung dieser Option hat datenschutzrechtlich eine hohe Schwelle. Um die Sichtbarkeit aller Schüler:innen der Schule für jede Lehrkraft zu aktivieren, ist es erforderlich, dass jede/r Schüler:in wirksam in diese Datenverarbeitung eingewilligt hat.", "allStudentsVisibilityBrandenburg": "Die Aktivierung dieser Option schaltet die Sichtbarkeit aller Schüler:innen der Schule für jede Lehrkraft an.", + "allStudentsVisibilityNiedersachsen" : "Wenn diese Option nicht aktiviert ist, können die Lehrkräfte ausschließlich die Klassen sowie deren Schülerinnen und Schüler sehen, in denen sie Mitglied sind.", "authentication": "Authentifizierung", "newPage": "Zur neuen Admin-Seite", "changeOfClasses": "Änderung von Klassen/neue Klassen", diff --git a/locales/en.json b/locales/en.json index f5770fd808..47b794c44f 100644 --- a/locales/en.json +++ b/locales/en.json @@ -567,6 +567,7 @@ "afterTheTransferPhaseEnded": "After the transfer phase has ended", "allStudentsVisibility": "Activating this option has a high threshold under data protection law. In order to activate the visibility of all students in the school for each teacher, it is necessary that each student has effectively consented to this data processing.", "allStudentsVisibilityBrandenburg": "Enabling this option turns on the visibility of all students of this school for each teacher.", + "allStudentsVisibilityNiedersachsen" : "If this option is not enabled, teachers can only see the classes and their students in which they are members.", "authentication": "Authentication", "newPage": "To the new admin page", "changeOfClasses": "Change of classes / new classes", diff --git a/locales/es.json b/locales/es.json index 249aa0c180..1dfedb1027 100644 --- a/locales/es.json +++ b/locales/es.json @@ -567,6 +567,7 @@ "afterTheTransferPhaseEnded": "Una vez finalizada la fase de transferencia", "allStudentsVisibility": "La activación de esta opción tiene un nivel alto según la ley de protección de datos. Para activar la visibilidad de todos los alumnos de la escuela para cada profesor, es necesario que cada alumno haya dado su consentimiento de manera efectiva para este tratamiento de datos.", "allStudentsVisibilityBrandenburg": "Activando esta opción se activa la visibilidad de todos los alumnos de esta escuela para cada profesor.", + "allStudentsVisibilityNiedersachsen" : "Si esta opción no está activada, los profesores sólo podrán ver las clases y sus alumnos de las que son miembros.", "authentication": "Autenticación", "newPage": "A la nueva página de administración", "changeOfClasses": "Cambio de clases / nuevas clases", diff --git a/locales/uk.json b/locales/uk.json index 2940d35f1d..a2b45d35eb 100644 --- a/locales/uk.json +++ b/locales/uk.json @@ -900,6 +900,7 @@ "afterTheTransferPhaseEnded": "Після завершення фази переходу", "allStudentsVisibility": "Активація цієї опції має високе граничне значення згідно із законодавством про захист даних. Щоб активувати видимість усіх учнів у школі для кожного викладача, необхідно, щоб кожен учень надав свою фактичну згоду на таку обробку даних.", "allStudentsVisibilityBrandenburg": "Увімкнення цієї опції вмикає видимість всіх учнів цієї школи для кожного вчителя.", + "allStudentsVisibilityNiedersachsen" : "Якщо цю опцію не ввімкнено, вчителі бачитимуть лише ті класи та учнів, учасниками яких вони є.", "authentication": "Аутентифікація", "changeOfClasses": "Зміна класів / нові класи", "changeOfUserData": "Зміна даних користувача / нові користувачі", diff --git a/views/administration/school.hbs b/views/administration/school.hbs index fd9d26fb94..8b1dff4828 100644 --- a/views/administration/school.hbs +++ b/views/administration/school.hbs @@ -260,7 +260,11 @@ {{#ifeq @root.theme.name "brb"}} {{$t "administration.school.label.allStudentsVisibilityBrandenburg" }} {{else}} - {{$t "administration.school.label.allStudentsVisibility" }} + {{#ifeq @root.theme.name "n21"}} + {{$t "administration.school.label.allStudentsVisibilityNiedersachsen"}} + {{else}} + {{$t "administration.school.label.allStudentsVisibility" }} + {{/ifeq}} {{/ifeq}}