diff options
author | Vincent Ambo <v.ambo@me.com> | 2012-03-18T22·49+0100 |
---|---|---|
committer | Vincent Ambo <v.ambo@me.com> | 2012-03-18T22·49+0100 |
commit | da388782122779e865fc5454e5182d95c7f8fa26 (patch) | |
tree | 15d02dbbdba7bda258fa2f9a690ec049803ceff1 /src/Locales.hs | |
parent | 515660fa7deeeb6753768378e0cfa38a4616e03a (diff) |
* correctly serving 404s with status code 404 :|
Diffstat (limited to 'src/Locales.hs')
-rw-r--r-- | src/Locales.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Locales.hs b/src/Locales.hs index c1dc02453c12..7d36b2d2b138 100644 --- a/src/Locales.hs +++ b/src/Locales.hs @@ -116,9 +116,9 @@ cSend DE = "Absenden" cSend EN = "Submit" -- errors -notFound :: BlogLang -> Text -notFound DE = "Nicht gefunden" -notFound EN = "Not found" +notFoundTitle :: BlogLang -> Text +notFoundTitle DE = "Nicht gefunden" +notFoundTitle EN = "Not found" notFoundText :: BlogLang -> Text notFoundText DE = "Das gewünschte Objekt wurde leider nicht gefunden." |