mirror of
https://github.com/facebook/duckling.git
synced 2024-11-30 23:33:33 +03:00
b541354c31
Summary: Hello, I am new to Haskell, but I would like to add Khmer language (KM) to Duckling. I have tried to extended Duckling by adding Numeral dimension for new language KM. Please have a look at it and see what we can improve. Thanks! Pull Request resolved: https://github.com/facebook/duckling/pull/234 Reviewed By: blandinw Differential Revision: D9032639 Pulled By: chinmay87 fbshipit-source-id: 7db19edf732fe6500629cc89e18e0655d7bbc48b
46 lines
1.3 KiB
Haskell
46 lines
1.3 KiB
Haskell
-- Copyright (c) 2016-present, Facebook, Inc.
|
|
-- All rights reserved.
|
|
--
|
|
-- This source code is licensed under the BSD-style license found in the
|
|
-- LICENSE file in the root directory of this source tree. An additional grant
|
|
-- of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
|
|
{-# LANGUAGE GADTs #-}
|
|
|
|
|
|
module Duckling.Rules.KM
|
|
( defaultRules
|
|
, langRules
|
|
, localeRules
|
|
) where
|
|
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Locale
|
|
import Duckling.Types
|
|
import qualified Duckling.Numeral.KM.Rules as Numeral
|
|
|
|
defaultRules :: Some Dimension -> [Rule]
|
|
defaultRules = langRules
|
|
|
|
localeRules :: Region -> Some Dimension -> [Rule]
|
|
localeRules region (This (CustomDimension dim)) = dimLocaleRules region dim
|
|
localeRules _ _ = []
|
|
|
|
langRules :: Some Dimension -> [Rule]
|
|
langRules (This AmountOfMoney) = []
|
|
langRules (This Distance) = []
|
|
langRules (This Duration) = []
|
|
langRules (This Email) = []
|
|
langRules (This Numeral) = Numeral.rules
|
|
langRules (This Ordinal) = []
|
|
langRules (This PhoneNumber) = []
|
|
langRules (This Quantity) = []
|
|
langRules (This RegexMatch) = []
|
|
langRules (This Temperature) = []
|
|
langRules (This Time) = []
|
|
langRules (This TimeGrain) = []
|
|
langRules (This Url) = []
|
|
langRules (This Volume) = []
|
|
langRules (This (CustomDimension dim)) = dimLangRules KM dim
|