Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add language mapping for nds export #35

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add language mapping for nds export
diegosteiner committed Oct 20, 2023
commit 9f9370d8550073101801d8dad0dbfb9370281153
3 changes: 2 additions & 1 deletion app/domain/export/tabular/people/participation_nds_row.rb
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@

module Export::Tabular::People
class ParticipationNdsRow < Export::Tabular::People::PersonRow
NDS_LANGUAGE_MAPPING = %w[DE FR IT].to_h { [_1, _1] }.freeze

attr_reader :participation

@@ -68,7 +69,7 @@ def email_work
end

def first_language
'DE'
NDS_LANGUAGE_MAPPING.fetch(entry.language.presence&.to_s&.upcase, 'Andere')
end

def second_language