mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 18:38:26 +00:00
Use externalized strings for edit label
This commit is contained in:
@ -1,8 +1,11 @@
|
||||
module Messages.Comp.NotificationTable exposing (Texts, gb)
|
||||
|
||||
import Messages.Basics
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ summary : String
|
||||
{ basics : Messages.Basics.Texts
|
||||
, summary : String
|
||||
, schedule : String
|
||||
, connection : String
|
||||
, recipients : String
|
||||
@ -11,7 +14,8 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ summary = "Summary"
|
||||
{ basics = Messages.Basics.gb
|
||||
, summary = "Summary"
|
||||
, schedule = "Schedule"
|
||||
, connection = "Connection"
|
||||
, recipients = "Recipients"
|
||||
|
@ -1,8 +1,11 @@
|
||||
module Messages.Comp.ScanMailboxTable exposing (Texts, gb)
|
||||
|
||||
import Messages.Basics
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ summary : String
|
||||
{ basics : Messages.Basics.Texts
|
||||
, summary : String
|
||||
, connection : String
|
||||
, folders : String
|
||||
, receivedSince : String
|
||||
@ -11,7 +14,8 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ summary = "Summary"
|
||||
{ basics = Messages.Basics.gb
|
||||
, summary = "Summary"
|
||||
, connection = "Connection"
|
||||
, folders = "Folders"
|
||||
, receivedSince = "Received Since"
|
||||
|
@ -1,8 +1,11 @@
|
||||
module Messages.Comp.SourceTable exposing (Texts, gb)
|
||||
|
||||
import Messages.Basics
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ abbrev : String
|
||||
{ basics : Messages.Basics.Texts
|
||||
, abbrev : String
|
||||
, enabled : String
|
||||
, counter : String
|
||||
, priority : String
|
||||
@ -13,7 +16,8 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ abbrev = "Abbrev"
|
||||
{ basics = Messages.Basics.gb
|
||||
, abbrev = "Abbrev"
|
||||
, enabled = "Enabled"
|
||||
, counter = "Counter"
|
||||
, priority = "Priority"
|
||||
|
Reference in New Issue
Block a user