about summary refs log tree commit diff
path: root/src/Locales.hs
diff options
context:
space:
mode:
authorVincent Ambo <vincent@kivra.com>2015-11-21T16·24+0100
committerVincent Ambo <vincent@kivra.com>2015-11-21T16·24+0100
commit9f33d98db59d6c5c1997ce55eb7be219089bd8b0 (patch)
tree71bb15243f42779f80f576dacdf2f54f59848bff /src/Locales.hs
parentcfea17dc0d69de8e5e2e27433a068d36efa2d1b1 (diff)
[blog] Implement new and simpler design
Diffstat (limited to 'src/Locales.hs')
-rw-r--r--src/Locales.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Locales.hs b/src/Locales.hs
index 0ee5f0e535..00b2b871d1 100644
--- a/src/Locales.hs
+++ b/src/Locales.hs
@@ -20,8 +20,8 @@ if' True x _ = x
 if' False _ y = y
 
 blogTitle :: BlogLang -> Text -> Text
-blogTitle DE s = T.concat ["Tazjins Blog", s]
-blogTitle EN s = T.concat ["Tazjin's Blog", s]
+blogTitle DE s = T.concat ["Tazjins blog", s]
+blogTitle EN s = T.concat ["Tazjin's blog", s]
 
 showLangText :: BlogLang -> Text
 showLangText EN = "en"
@@ -77,8 +77,8 @@ nextText DE = "Später"
 nextText EN = "Later"
 
 readMore :: BlogLang -> Text
-readMore DE = "Weiterlesen"
-readMore EN = "Read more"
+readMore DE = "[Weiterlesen]"
+readMore EN = "[Read more]"
 
 eTimeFormat :: BlogLang -> String
 eTimeFormat DE = "Geschrieben am %Y-%m-%d von "