mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-09-30 08:38:22 +00:00
Fix translation for direction
This commit is contained in:
@@ -4,8 +4,10 @@ module Messages.Comp.ItemDetail.EditForm exposing
|
||||
, gb
|
||||
)
|
||||
|
||||
import Data.Direction exposing (Direction)
|
||||
import Messages.Basics
|
||||
import Messages.Comp.CustomFieldMultiInput
|
||||
import Messages.Data.Direction
|
||||
import Messages.DateFormat as DF
|
||||
import Messages.UiLanguage
|
||||
|
||||
@@ -27,6 +29,7 @@ type alias Texts =
|
||||
, editEquipment : String
|
||||
, suggestions : String
|
||||
, formatDate : Int -> String
|
||||
, direction : Direction -> String
|
||||
}
|
||||
|
||||
|
||||
@@ -48,6 +51,7 @@ gb =
|
||||
, editEquipment = "Edit equipment"
|
||||
, suggestions = "Suggestions"
|
||||
, formatDate = DF.formatDateLong Messages.UiLanguage.English
|
||||
, direction = Messages.Data.Direction.gb
|
||||
}
|
||||
|
||||
|
||||
@@ -69,4 +73,5 @@ de =
|
||||
, editEquipment = "Zubehör ändern"
|
||||
, suggestions = "Vorschläge"
|
||||
, formatDate = DF.formatDateLong Messages.UiLanguage.German
|
||||
, direction = Messages.Data.Direction.de
|
||||
}
|
||||
|
@@ -4,8 +4,10 @@ module Messages.Comp.ItemDetail.MultiEditMenu exposing
|
||||
, gb
|
||||
)
|
||||
|
||||
import Data.Direction exposing (Direction)
|
||||
import Messages.Basics
|
||||
import Messages.Comp.CustomFieldMultiInput
|
||||
import Messages.Data.Direction
|
||||
|
||||
|
||||
type alias Texts =
|
||||
@@ -20,6 +22,7 @@ type alias Texts =
|
||||
, unconfirm : String
|
||||
, changeTagMode : String
|
||||
, dueDateTab : String
|
||||
, direction : Direction -> String
|
||||
}
|
||||
|
||||
|
||||
@@ -36,6 +39,7 @@ gb =
|
||||
, unconfirm = "Unconfirm"
|
||||
, changeTagMode = "Change tag edit mode"
|
||||
, dueDateTab = "Due Date"
|
||||
, direction = Messages.Data.Direction.gb
|
||||
}
|
||||
|
||||
|
||||
@@ -52,4 +56,5 @@ de =
|
||||
, unconfirm = "Widerufe Betätigung"
|
||||
, changeTagMode = "Wechsel den Änderungs-Modus für Tags"
|
||||
, dueDateTab = "Fälligkeits-Datum"
|
||||
, direction = Messages.Data.Direction.de
|
||||
}
|
||||
|
Reference in New Issue
Block a user