mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 02:48:26 +00:00
First simple item detail version for a share
This commit is contained in:
@ -1,20 +1,28 @@
|
||||
module Messages.Page.ShareDetail exposing (..)
|
||||
|
||||
import Messages.Comp.SharePasswordForm
|
||||
import Messages.DateFormat
|
||||
import Messages.UiLanguage exposing (UiLanguage(..))
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ passwordForm : Messages.Comp.SharePasswordForm.Texts
|
||||
, formatDateLong : Int -> String
|
||||
, formatDateShort : Int -> String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ passwordForm = Messages.Comp.SharePasswordForm.gb
|
||||
, formatDateLong = Messages.DateFormat.formatDateLong English
|
||||
, formatDateShort = Messages.DateFormat.formatDateShort English
|
||||
}
|
||||
|
||||
|
||||
de : Texts
|
||||
de =
|
||||
{ passwordForm = Messages.Comp.SharePasswordForm.de
|
||||
, formatDateLong = Messages.DateFormat.formatDateLong German
|
||||
, formatDateShort = Messages.DateFormat.formatDateShort German
|
||||
}
|
||||
|
Reference in New Issue
Block a user