Prefer gender-neutral language for German

This commit is contained in:
Sebastian Serth
2024-04-18 12:05:57 +02:00
committed by Sebastian Serth
parent f8330b39fb
commit ed69da10da
21 changed files with 57 additions and 59 deletions

View File

@ -10,7 +10,7 @@
thead
tr
th = Exercise.human_attribute_name('selection')
th = t('navigation.sections.users')
th = StudyGroup.human_attribute_name('member')
= collection_check_boxes :study_group, :study_group_membership_ids, @members, :id, :id do |b|
tr
td = b.check_box class: 'form-check-input'

View File

@ -14,7 +14,7 @@ h2.mt-4 = StudyGroup.human_attribute_name('members')
table.table class=(@study_group.users.present? ? 'sortable' : '')
thead
tr
th = t('navigation.sections.users')
th = StudyGroup.human_attribute_name('member')
- @study_group.users.each do |user|
tr
td = link_to_if(policy(user).show?, user.displayname, user)