Skip to content

Commit

Permalink
BC-4965 - Remove consent reference from student visibility toggle inf…
Browse files Browse the repository at this point in the history
…o text for BRB instance (#3297)

*add instance specific translation key in old admin page
  • Loading branch information
davwas authored Sep 8, 2023
1 parent f5ba4b8 commit ec32b27
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@
"activeMatrixFunction": "Matrix Messenger aktivieren",
"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.",
"authentication": "Authentifizierung",
"newPage": "Zur neuen Admin-Seite",
"changeOfClasses": "Änderung von Klassen/neue Klassen",
Expand Down
1 change: 1 addition & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@
"activeMatrixFunction": "Activate Matrix Messenger",
"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.",
"authentication": "Authentication",
"newPage": "To the new admin page",
"changeOfClasses": "Change of classes / new classes",
Expand Down
1 change: 1 addition & 0 deletions locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@
"activeMatrixFunction": "Activar Matrix Messenger",
"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.",
"authentication": "Autenticación",
"newPage": "A la nueva página de administración",
"changeOfClasses": "Cambio de clases / nuevas clases",
Expand Down
3 changes: 2 additions & 1 deletion locales/uk.json
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,8 @@
"label": {
"activeChatFunction": "Активувати функцію чату",
"afterTheTransferPhaseEnded": "Після завершення фази переходу",
"allStudentsVisibility": "Активація цього варіанта має високий поріг згідно із законодавством про захист даних. Щоб активувати видимість усіх учнів у школі для кожного викладача, необхідно, щоб кожен учень дав фактичну згоду на таку обробку даних.",
"allStudentsVisibility": "Активація цієї опції має високе граничне значення згідно із законодавством про захист даних. Щоб активувати видимість усіх учнів у школі для кожного викладача, необхідно, щоб кожен учень надав свою фактичну згоду на таку обробку даних.",
"allStudentsVisibilityBrandenburg": "Увімкнення цієї опції вмикає видимість всіх учнів цієї школи для кожного вчителя.",
"authentication": "Аутентифікація",
"changeOfClasses": "Зміна класів / нові класи",
"changeOfUserData": "Зміна даних користувача / нові користувачі",
Expand Down
8 changes: 7 additions & 1 deletion views/administration/school.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,13 @@
<input type="checkbox" name="studentVisibility" value="true"
{{#if ../school.permissions.teacher.STUDENT_LIST}}checked{{/if}}>
{{$t "administration.school.label.studentVisibility" }} <i class="fa fa-eye"></i>
<p class="text-muted">{{$t "administration.school.label.allStudentsVisibility" }}</p>
<p class="text-muted">
{{#ifeq @root.theme.name "brb"}}
{{$t "administration.school.label.allStudentsVisibilityBrandenburg" }}
{{else}}
{{$t "administration.school.label.allStudentsVisibility" }}
{{/ifeq}}
</p>
</label>
</div>
{{/ifConfig}}
Expand Down

0 comments on commit ec32b27

Please sign in to comment.