diff options
author | "Vincent Ambo ext:(%22) <tazjin@gmail.com> | 2013-05-05T16·30+0200 |
---|---|---|
committer | "Vincent Ambo ext:(%22) <tazjin@gmail.com> | 2013-05-05T16·30+0200 |
commit | 287f7fda8c441367f4b8b2bb7d13cd905c01a89e (patch) | |
tree | 68613754c5100c656f9ea5a159cd891756241117 /src/Locales.hs | |
parent | 9904c6117ffc5cd32d3441191a33c7bc49e5f1f4 (diff) |
* fixed date formatting
Diffstat (limited to 'src/Locales.hs')
-rw-r--r-- | src/Locales.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Locales.hs b/src/Locales.hs index 09911c302e81..834bf7e3de51 100644 --- a/src/Locales.hs +++ b/src/Locales.hs @@ -86,8 +86,8 @@ readMore DE = "Weiterlesen" readMore EN = "Read more" eTimeFormat :: BlogLang -> String -eTimeFormat DE = "Geschrieben am %d.%m.%y von " -eTimeFormat EN = "Written on %D by " +eTimeFormat DE = "Geschrieben am %Y-%m-%d von " +eTimeFormat EN = "Written on %Y-%m-%d by " -- contact information contactText :: BlogLang -> Text @@ -121,8 +121,8 @@ cSingle DE = "Kommentar:" --input label cSingle EN = "Comment:" cTimeFormat :: BlogLang -> String --formatTime expects a String -cTimeFormat DE = "[Am %d.%m.%y um %H:%M Uhr]" -cTimeFormat EN = "[On %D at %H:%M]" +cTimeFormat DE = "[Am %Y-%m-%d um %H:%M Uhr]" +cTimeFormat EN = "[On %Y-%m-%d at %H:%M]" cSend :: BlogLang -> Text cSend DE = "Absenden" |