mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 18:38:26 +00:00
Reorganize messages to reflect page structure
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
module Messages.Comp.CustomFieldInput exposing (..)
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ errorNoValue : String
|
||||
, errorNoNumber : String
|
||||
, errorNoAmount : String
|
||||
, errorNotANumber : String -> String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ errorNoValue = "Please fill in some value"
|
||||
, errorNoNumber = "No number given"
|
||||
, errorNoAmount = "No amount given"
|
||||
, errorNotANumber = \str -> "Not a number: " ++ str
|
||||
}
|
Reference in New Issue
Block a user