Skip to content

Commit

Permalink
Merge branch 'develop' into assertion-pdf-validation
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaoFelipe committed Jan 7, 2025
2 parents b663560 + 10e277e commit 3961bad
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions app/models/course_class.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ def semester_label
"#{year}.#{semester}"
end

def label_for_email_subject
"#{self.course.name} - #{year}/#{semester}"
end

def label_with_course
name_l = self.name.blank? ? "" : " (#{self.name})"
"#{self.course.name}#{name_l} - #{year}/#{semester}"
Expand Down
6 changes: 3 additions & 3 deletions config/locales/class_enrollment.pt-BR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ pt-BR:
notifications:
class_enrollment:
email_to_student:
subject: "Sua inscrição em <%= var(:record).course_class.label_with_course %> foi atualizada"
subject: "Sua inscrição em <%= var(:record).course_class.label_for_email_subject %> foi atualizada"
email_to_advisor:
subject: "Inscrição em <%= var(:record).course_class.label_with_course %> de <%= var(:record).enrollment.to_label %> foi atualizada"
subject: "Inscrição em <%= var(:record).course_class.label_for_email_subject %> de <%= var(:record).enrollment.to_label %> foi atualizada"
email_to_professor:
subject: "Alteração da nota de <%= var(:record).enrollment.to_label %> na turma <%= var(:record).course_class.label_with_course %>"
subject: "Alteração da nota de <%= var(:record).enrollment.to_label %> em <%= var(:record).course_class.label_for_email_subject %>"
4 changes: 2 additions & 2 deletions config/locales/class_enrollment_request.pt-BR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ pt-BR:
notifications:
class_enrollment_request:
email_to_student:
subject: "Seu pedido de inscrição em <%= var(:record).course_class.label_with_course %> foi efetivado"
subject: "Seu pedido de inscrição em <%= var(:record).course_class.label_for_email_subject %> foi efetivado"
removal_email_to_student:
subject: "Seu pedido de remoção da disciplina <%= var(:record).course_class.label_with_course %> foi efetivado"
subject: "Seu pedido de remoção da disciplina <%= var(:record).course_class.label_for_email_subject %> foi efetivado"
2 changes: 1 addition & 1 deletion config/locales/course_class.pt-BR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pt-BR:
notifications:
course_class:
email_to_professor:
subject: "Alteração de notas da turma <%= var(:record).label_with_course %>"
subject: "Alteração de notas em <%= var(:record).label_for_email_subject %>"

pdf_content:
course_class:
Expand Down

0 comments on commit 3961bad

Please sign in to comment.