aboutsummaryrefslogtreecommitdiff
path: root/src/client/View/Date.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/View/Date.elm')
-rw-r--r--src/client/View/Date.elm11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/client/View/Date.elm b/src/client/View/Date.elm
index 35806ba..6df971b 100644
--- a/src/client/View/Date.elm
+++ b/src/client/View/Date.elm
@@ -1,5 +1,6 @@
module View.Date exposing
- ( shortView
+ ( shortMonthAndYear
+ , shortView
, longView
, monthView
)
@@ -10,6 +11,14 @@ import String
import Model.Translations exposing (..)
+shortMonthAndYear : Month -> Int -> Translations -> String
+shortMonthAndYear month year translations =
+ let params =
+ [ String.pad 2 '0' (toString (Date.monthToInt month))
+ , toString year
+ ]
+ in getParamMessage params translations "ShortMonthAndYear"
+
shortView : Date -> Translations -> String
shortView date translations =
let params =