-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
En.elm
33 lines (24 loc) · 1.06 KB
/
En.elm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module MassiveDecks.Strings.Languages.En exposing (pack)
{-| English localization.
This is the primary language, strings here are the canonical representation, and are suitable to translate from.
-}
import MassiveDecks.Card.Source.BuiltIn.Model as BuiltIn
import MassiveDecks.Card.Source.Model as Source
import MassiveDecks.Strings exposing (MdString(..), Noun(..), Quantity(..))
import MassiveDecks.Strings.Languages.En.Internal as Internal
import MassiveDecks.Strings.Languages.Model exposing (Language(..))
import MassiveDecks.Strings.Translation as Translation
import MassiveDecks.Strings.Translation.Model as Translation exposing (Result(..))
pack : Translation.Pack
pack =
Translation.pack
{ lang = En
, code = "en"
, name = English
, translate = Internal.translate
, recommended = "cah-base-en" |> BuiltIn.hardcoded |> Source.BuiltIn
}
{-
Because it is used as a default, the english translation is in `En.Internal`, rather than residing in this file
as with most languages. Please look there for the strings.
-}