diff options
author | Joris | 2015-11-01 11:05:28 +0100 |
---|---|---|
committer | Joris | 2015-11-01 11:05:28 +0100 |
commit | d3e045e8034c5473964c0529ffc1e181311842c2 (patch) | |
tree | 3cc792ed26b135823c812820364b8343d5b603aa /src/client | |
parent | a14af8d8f2cc9d561a8c8804a4c73b9a35ce8a97 (diff) |
Removing useless Translations model
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/Model/Translations.elm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/Model/Translations.elm b/src/client/Model/Translations.elm index a6de961..bec8c9b 100644 --- a/src/client/Model/Translations.elm +++ b/src/client/Model/Translations.elm @@ -13,8 +13,7 @@ import String type alias Translations = List Translation translationsDecoder : Json.Decoder Translations -translationsDecoder = - ("translations" := Json.list translationDecoder) +translationsDecoder = Json.list translationDecoder type alias Translation = { key : String |