diff options
author | Vincent Ambo <v.ambo@me.com> | 2012-03-19T23·26+0100 |
---|---|---|
committer | Vincent Ambo <v.ambo@me.com> | 2012-03-19T23·26+0100 |
commit | 877a7f84b04e424ffe04e4d0eee889890454978c (patch) | |
tree | 5af2b6ce1983ef74e812dbe8fd7f95bb60775846 /src/Locales.hs | |
parent | 39a30af9c21e173aadacc1d734747f20e9f07e24 (diff) |
version 3.1:
* entirely new design (looks a lot better. Thanks to @not_eden and @agoptron for their advice) * multi-author support (I won't use it yet) * blogstyle.css serves as the "source" for blog.css * displaying article eDate and author on entry page
Diffstat (limited to 'src/Locales.hs')
-rw-r--r-- | src/Locales.hs | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/Locales.hs b/src/Locales.hs index 7d36b2d2b138..b73321f4f60b 100644 --- a/src/Locales.hs +++ b/src/Locales.hs @@ -13,7 +13,7 @@ import BlogDB (BlogLang (..)) data BlogError = NotFound | DBError -version = "3.0" +version = "3.1" allLang = [EN, DE] @@ -76,6 +76,10 @@ readMore :: BlogLang -> Text readMore DE = "Weiterlesen" readMore EN = "Read more" +eTimeFormat :: BlogLang -> String +eTimeFormat DE = "Geschrieben am %d.%m.%y von " +eTimeFormat EN = "Written on %D by " + -- contact information contactText :: BlogLang -> Text contactText DE = "Wer mich kontaktieren will: " @@ -115,6 +119,10 @@ cSend :: BlogLang -> Text cSend DE = "Absenden" cSend EN = "Submit" +cTextPlaceholder :: BlogLang -> Text +cTextPlaceholder DE = "Kommentartext hier eingeben :]" +cTextPlaceholder EN = "Enter your comment here :]" + -- errors notFoundTitle :: BlogLang -> Text notFoundTitle DE = "Nicht gefunden" @@ -126,8 +134,8 @@ notFoundText EN = "The requested object could unfortunately not be found." -- right side text (this is inserted AS IS. Escape HTML!) rightText :: BlogLang -> Text -rightText DE = "English version <a href=\"/en\" style=\"color: black;\">available here</a>." -rightText EN = "Deutsche Version <a href=\"/de\" style=\"color: black;\">hier verfügbar</a>." +rightText DE = "English version <a href=\"/en\" class=\"link\">available here</a>." +rightText EN = "Deutsche Version <a href=\"/de\" class=\"link\">hier verfügbar</a>." -- static information repoURL :: Text = "https://bitbucket.org/tazjin/tazblog-haskell" |