mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 10:28:27 +00:00
32 lines
478 B
Elm
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
|
|
}
|