mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 02:18:26 +00:00
45 lines
844 B
Elm
45 lines
844 B
Elm
{-
|
|
Copyright 2020 Eike K. & Contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
module Messages.Comp.Dropzone exposing
|
|
( Texts
|
|
, de
|
|
, gb
|
|
)
|
|
|
|
import Messages.Basics
|
|
|
|
|
|
type alias Texts =
|
|
{ basics : Messages.Basics.Texts
|
|
, dropFilesHere : String
|
|
, or : String
|
|
, selectInfo : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ basics = Messages.Basics.gb
|
|
, dropFilesHere = "Drop files here"
|
|
, or = "Or"
|
|
, selectInfo =
|
|
"Choose document files (pdf, docx, txt, html, …). "
|
|
++ "Archives (zip and eml) are extracted."
|
|
}
|
|
|
|
|
|
de : Texts
|
|
de =
|
|
{ basics = Messages.Basics.de
|
|
, dropFilesHere = "Dateien hier hineinziehen"
|
|
, or = "Oder"
|
|
, selectInfo =
|
|
"Dateien auswählen (pdf, docx, txt, html, …). "
|
|
++ "Archive (zip und eml) werden extrahiert."
|
|
}
|