mirror of
https://github.com/facebook/duckling.git
synced 2024-12-01 08:19:36 +03:00
29d776dee5
Summary: - Added Duration dimension to Russian language - Added TimeGrain dimension to Russian language - Refactored isNatural and isNaturalWith out of Duration helpers into Numeral helpers - Implemented <integer> and a half rule for Russian Numeral - Changed the type of inSeconds to polymorphic one Closes https://github.com/facebook/duckling/pull/105 Reviewed By: blandinw Differential Revision: D6312604 Pulled By: patapizza fbshipit-source-id: 9ae237b4beb6915ff8da013230457937d8e56733
50 lines
1.6 KiB
Haskell
50 lines
1.6 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 #-}
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
module Duckling.Rules.RU
|
|
( defaultRules
|
|
, langRules
|
|
, localeRules
|
|
) where
|
|
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Locale
|
|
import Duckling.Types
|
|
import qualified Duckling.Distance.RU.Rules as Distance
|
|
import qualified Duckling.Duration.RU.Rules as Duration
|
|
import qualified Duckling.Numeral.RU.Rules as Numeral
|
|
import qualified Duckling.Ordinal.RU.Rules as Ordinal
|
|
import qualified Duckling.Quantity.RU.Rules as Quantity
|
|
import qualified Duckling.TimeGrain.RU.Rules as TimeGrain
|
|
import qualified Duckling.Volume.RU.Rules as Volume
|
|
|
|
defaultRules :: Some Dimension -> [Rule]
|
|
defaultRules = langRules
|
|
|
|
localeRules :: Region -> Some Dimension -> [Rule]
|
|
localeRules _ _ = []
|
|
|
|
langRules :: Some Dimension -> [Rule]
|
|
langRules (This AmountOfMoney) = []
|
|
langRules (This Distance) = Distance.rules
|
|
langRules (This Duration) = Duration.rules
|
|
langRules (This Email) = []
|
|
langRules (This Numeral) = Numeral.rules
|
|
langRules (This Ordinal) = Ordinal.rules
|
|
langRules (This PhoneNumber) = []
|
|
langRules (This Quantity) = Quantity.rules
|
|
langRules (This RegexMatch) = []
|
|
langRules (This Temperature) = []
|
|
langRules (This Time) = []
|
|
langRules (This TimeGrain) = TimeGrain.rules
|
|
langRules (This Url) = []
|
|
langRules (This Volume) = Volume.rules
|