translation
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
2025-09-18 22:27:14 +02:00
parent 589a22e5fe
commit 3f958bade1
3 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@ class GuestMailer < ApplicationMailer
@guest = guest
mail(
to: guest.name_with_email,
subject: "#{I18n.t(:wedding_name)}: RSVP Confirmation"
subject: "#{I18n.t(:wedding_name)}: Zusage/Absage"
)
end
@ -15,7 +15,7 @@ class GuestMailer < ApplicationMailer
@guest = guest
mail(
to: guest.name_with_email,
subject: "#{I18n.t(:wedding_name)}: Your RSVP"
subject: "#{I18n.t(:wedding_name)}: Deine Zusage/Absage"
)
end
end