diff options
author | Vincent Ambo <viam@humac.com> | 2012-03-06T20·24+0100 |
---|---|---|
committer | Vincent Ambo <viam@humac.com> | 2012-03-06T20·24+0100 |
commit | 6220988fc5fa89a3f581c446fddd103beabc32cd (patch) | |
tree | ef46f71b66df9edad874f067991e392201bd89d7 /src/Locales.hs | |
parent | 91d197945f13e0cb4a7d880f0b9776ff349e53d4 (diff) |
* guarding showLinks against negative numbers
Diffstat (limited to 'src/Locales.hs')
-rw-r--r-- | src/Locales.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Locales.hs b/src/Locales.hs index 9b9002ab24c3..0f539516414c 100644 --- a/src/Locales.hs +++ b/src/Locales.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE ScopedTypeVariables, DeriveDataTypeable #-} +{-# LANGUAGE ScopedTypeVariables, DeriveDataTypeable, OverloadedStrings #-} module Locales where @@ -101,6 +101,7 @@ cwHead :: BlogLang -> Text cwHead DE = "Kommentieren:" cwHead EN = "Comment:" +cSingle :: BlogLang -> Text cSingle DE = "Kommentar:" --input label cSingle EN = "Comment:" |