Externalize more strings missed before

This commit is contained in:
Eike Kettner
2021-04-10 16:02:34 +02:00
parent e063a10663
commit 92ae22a68d
52 changed files with 219 additions and 253 deletions

View File

@ -1,12 +1,24 @@
module Messages.Comp.ItemCard exposing (..)
import Messages.Basics
type alias Texts =
{ folder : String
{ basics : Messages.Basics.Texts
, dueOn : String
, new : String
, openAttachmentFile : String
, gotoDetail : String
, cycleAttachments : String
}
gb : Texts
gb =
{ folder = "Folder"
{ basics = Messages.Basics.gb
, dueOn = "Due on"
, new = "New"
, openAttachmentFile = "Open attachment file"
, gotoDetail = "Go to detail view"
, cycleAttachments = "Cycle attachments"
}