diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/I18n.hs | 13 | ||||
-rw-r--r-- | src/Plugin/GitHubCommit.hs | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/I18n.hs b/src/I18n.hs new file mode 100644 index 0000000..9b9f870 --- /dev/null +++ b/src/I18n.hs @@ -0,0 +1,13 @@ +{-# LANGUAGE MultiParamTypeClasses #-} +{-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE TemplateHaskell #-} + +module I18n where + +import qualified Data.Text as T + +import Text.Shakespeare.I18N (mkMessage, renderMessage) + +data Bot = Bot + +mkMessage "Bot" "messages" "en" diff --git a/src/Plugin/GitHubCommit.hs b/src/Plugin/GitHubCommit.hs index 187f016..a857604 100644 --- a/src/Plugin/GitHubCommit.hs +++ b/src/Plugin/GitHubCommit.hs @@ -10,6 +10,7 @@ import Database.SQLite.Simple import Database.SQLite.Simple.FromRow import Text.Regex.TDFA +import I18n import qualified Message as M import Plugin.Base |