diff options
author | Vincent Ambo <v.ambo@me.com> | 2012-03-18T22·47+0100 |
---|---|---|
committer | Vincent Ambo <v.ambo@me.com> | 2012-03-18T22·47+0100 |
commit | 515660fa7deeeb6753768378e0cfa38a4616e03a (patch) | |
tree | bea09c2dbbb4611f53803e33bbc13aad9f6dce22 /src/Locales.hs | |
parent | b7e34eba74918c04ab247ba7d761ddc3e6c46321 (diff) |
* fixed 404 page
Diffstat (limited to 'src/Locales.hs')
-rw-r--r-- | src/Locales.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Locales.hs b/src/Locales.hs index 9330fd81fb9b..c1dc02453c12 100644 --- a/src/Locales.hs +++ b/src/Locales.hs @@ -115,6 +115,15 @@ cSend :: BlogLang -> Text cSend DE = "Absenden" cSend EN = "Submit" +-- errors +notFound :: BlogLang -> Text +notFound DE = "Nicht gefunden" +notFound EN = "Not found" + +notFoundText :: BlogLang -> Text +notFoundText DE = "Das gewünschte Objekt wurde leider nicht gefunden." +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>." |