fix translations
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Moritz 2026-03-09 16:44:04 +01:00 committed by moritz
parent 085f61d10d
commit f601550526
9 changed files with 120 additions and 118 deletions

View file

@ -27,7 +27,7 @@ defmodule MvWeb.MemberFieldLive.IndexComponent do
<div id={@id}>
<p :if={!@show_form} class="text-sm text-base-content/70 mb-4">
{gettext(
"These fields are neccessary for MILA to handle member identification and payment calculations in the future. Thus you cannot delete these fields but hide them in the member overview."
"These fields are necessary for MILA to handle member identification and payment calculations in the future. Thus you cannot delete these fields but hide them in the member overview."
)}
</p>

View file

@ -1294,7 +1294,7 @@ defmodule MvWeb.MemberLive.Show.MembershipFeesComponent do
defp translate_receipt_status("open"), do: gettext("Open")
defp translate_receipt_status("cancelled"), do: gettext("Cancelled")
defp translate_receipt_status("draft"), do: gettext("Draft")
defp translate_receipt_status("incompleted"), do: gettext("Incompleted")
defp translate_receipt_status("incompleted"), do: gettext("Incomplete")
defp translate_receipt_status("completed"), do: gettext("Completed")
defp translate_receipt_status("empty"), do: nil
defp translate_receipt_status(other), do: other