mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-07 23:55:28 +00:00
25 lines
382 B
Elm
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
|
|
}
|