docspell/modules/webapp/src/main/elm/Messages/Comp/CustomFieldMultiInput.elm
2021-06-06 13:59:50 +02:00

25 lines
382 B
Elm

module Messages.Comp.CustomFieldMultiInput exposing
( Texts
, de
, 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
}