diff --git a/lib/mv_web/live/custom_field_live/form_component.ex b/lib/mv_web/live/custom_field_live/form_component.ex index 172cfd3..71bdd03 100644 --- a/lib/mv_web/live/custom_field_live/form_component.ex +++ b/lib/mv_web/live/custom_field_live/form_component.ex @@ -26,12 +26,12 @@ defmodule MvWeb.CustomFieldLive.FormComponent do type="button" phx-click="cancel" phx-target={@myself} - aria-label={gettext("Back to custom field overview")} + aria-label={gettext("Back to settings")} > <.icon name="hero-arrow-left" class="w-4 h-4" />

- {if @custom_field, do: gettext("Edit Custom Field"), else: gettext("New Custom Field")} + {if @custom_field, do: gettext("Edit Data Field"), else: gettext("New Data Field")}

@@ -66,7 +66,7 @@ defmodule MvWeb.CustomFieldLive.FormComponent do {gettext("Cancel")} <.button phx-disable-with={gettext("Saving...")} variant="primary"> - {gettext("Save Custom Field")} + {gettext("Save Data Field")} diff --git a/lib/mv_web/live/custom_field_live/index_component.ex b/lib/mv_web/live/custom_field_live/index_component.ex index a11cc57..5f26f78 100644 --- a/lib/mv_web/live/custom_field_live/index_component.ex +++ b/lib/mv_web/live/custom_field_live/index_component.ex @@ -29,7 +29,7 @@ defmodule MvWeb.CustomFieldLive.IndexComponent do phx-click="new_custom_field" phx-target={@myself} > - <.icon name="hero-plus" /> {gettext("New Custom Field")} + <.icon name="hero-plus" /> {gettext("New Data Field")} @@ -111,7 +111,7 @@ defmodule MvWeb.CustomFieldLive.IndexComponent do <%!-- Delete Confirmation Modal --%>