Files
docspell/modules/webapp/src/main/elm/Messages/Comp/CustomFieldMultiInput.elm
2021-09-21 22:35:38 +02:00

32 lines
478 B
Elm

{-
Copyright 2020 Eike K. & Contributors
SPDX-License-Identifier: AGPL-3.0-or-later
-}
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
}