mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-06 15:15:58 +00:00
21 lines
417 B
Elm
21 lines
417 B
Elm
module Messages.Comp.Dropzone exposing (Texts, gb)
|
|
|
|
|
|
type alias Texts =
|
|
{ dropFilesHere : String
|
|
, or : String
|
|
, select : String
|
|
, selectInfo : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ dropFilesHere = "Drop files here"
|
|
, or = "Or"
|
|
, select = "Select ..."
|
|
, selectInfo =
|
|
"Choose document files (pdf, docx, txt, html, …). "
|
|
++ "Archives (zip and eml) are extracted."
|
|
}
|