Files
docspell/modules/webapp/src/main/elm/Messages/Comp/CustomFieldMultiInput.elm
Jimmy Girardet c98ecd172a apply eml-format
2022-03-10 14:18:28 +01:00

39 lines
570 B
Elm

{-
Copyright 2020 Eike K. & Contributors
SPDX-License-Identifier: AGPL-3.0-or-later
-}
module Messages.Comp.CustomFieldMultiInput exposing
( Texts
, de
, fr
, gb
)
import Messages.Comp.CustomFieldInput
type alias Texts =
{ customFieldInput : Messages.Comp.CustomFieldInput.Texts
}
gb : Texts
gb =
{ customFieldInput = Messages.Comp.CustomFieldInput.gb
}
de : Texts
de =
{ customFieldInput = Messages.Comp.CustomFieldInput.de
}
fr : Texts
fr =
{ customFieldInput = Messages.Comp.CustomFieldInput.fr
}