mirror of
https://github.com/facebook/duckling.git
synced 2024-12-01 08:19:36 +03:00
28cb5ebd2a
Summary: This pull request is to add support for Telugu language (Numerical Dimension) to Duckling Pull Request resolved: https://github.com/facebook/duckling/pull/470 Differential Revision: D25546700 Pulled By: chessai fbshipit-source-id: 1d88ee27da8a577a4a79ff31be8cb55ed6444c4e
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.TE
|
|
( defaultRules
|
|
, langRules
|
|
, localeRules
|
|
) where
|
|
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Locale
|
|
import Duckling.Types
|
|
import qualified Duckling.Numeral.TE.Rules as Numeral
|
|
|
|
defaultRules :: Seal Dimension -> [Rule]
|
|
defaultRules = langRules
|
|
|
|
localeRules :: Region -> Seal Dimension -> [Rule]
|
|
localeRules region (Seal (CustomDimension dim)) = dimLocaleRules region dim
|
|
localeRules _ _ = []
|
|
|
|
langRules :: Seal Dimension -> [Rule]
|
|
langRules (Seal AmountOfMoney) = []
|
|
langRules (Seal CreditCardNumber) = []
|
|
langRules (Seal Distance) = []
|
|
langRules (Seal Duration) = []
|
|
langRules (Seal Email) = []
|
|
langRules (Seal Numeral) = Numeral.rules
|
|
langRules (Seal Ordinal) = []
|
|
langRules (Seal PhoneNumber) = []
|
|
langRules (Seal Quantity) = []
|
|
langRules (Seal RegexMatch) = []
|
|
langRules (Seal Temperature) = []
|
|
langRules (Seal Time) = []
|
|
langRules (Seal TimeGrain) = []
|
|
langRules (Seal Url) = []
|
|
langRules (Seal Volume) = []
|
|
langRules (Seal (CustomDimension dim)) = dimLangRules TE dim
|