mirror of
https://github.com/facebook/duckling.git
synced 2024-11-28 08:34:46 +03:00
922d06b6e4
Summary:
- Setup Afrikaans (AF) language
- Added Numeral Dimension
Some of the paths have changed, and some extra files were necessary, after
basing initial work off 24d3f19976
I followed some of the Numeral examples from Dutch as well as Hungarian,
since Afrikaans and Dutch have some similarities.
One thing was examples for numbers having the number as an example, which I
didn't do here, because I'm not sure it's necessary.
Pull Request resolved: https://github.com/facebook/duckling/pull/422
Reviewed By: awalterschulze
Differential Revision: D18348617
Pulled By: patapizza
fbshipit-source-id: b8c4218629c264b48d6f2cecc4c23e2e281a64da
46 lines
1.2 KiB
Haskell
46 lines
1.2 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.
|
|
|
|
|
|
{-# LANGUAGE GADTs #-}
|
|
|
|
|
|
module Duckling.Rules.AF
|
|
( defaultRules
|
|
, langRules
|
|
, localeRules
|
|
) where
|
|
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Locale
|
|
import Duckling.Types
|
|
import qualified Duckling.Numeral.AF.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 CreditCardNumber) = []
|
|
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 AF dim
|