mirror of
https://github.com/facebook/duckling.git
synced 2024-11-28 08:34:46 +03:00
bf89e34365
Reviewed By: JoelMarcey Differential Revision: D15439223 fbshipit-source-id: c5af3cb06318748142fe503945b38beffadfc28a
48 lines
1.1 KiB
Haskell
48 lines
1.1 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 OverloadedStrings #-}
|
|
|
|
module Duckling.Distance.FR.Corpus
|
|
( corpus ) where
|
|
|
|
import Prelude
|
|
import Data.String
|
|
|
|
import Duckling.Distance.Types
|
|
import Duckling.Locale
|
|
import Duckling.Resolve
|
|
import Duckling.Testing.Types
|
|
|
|
corpus :: Corpus
|
|
corpus = (testContext {locale = makeLocale FR Nothing}, testOptions, allExamples)
|
|
|
|
allExamples :: [Example]
|
|
allExamples = concat
|
|
[ examples (simple Kilometre 3)
|
|
[ "3 kilomètres"
|
|
, "3 kilometres"
|
|
, "3 km"
|
|
, "3km"
|
|
, "3k"
|
|
]
|
|
, examples (simple Kilometre 3.0)
|
|
[ "3,0 km"
|
|
]
|
|
, examples (simple Mile 8)
|
|
[ "8 miles"
|
|
]
|
|
, examples (simple Metre 9)
|
|
[ "9 metres"
|
|
, "9m"
|
|
]
|
|
, examples (simple Centimetre 2)
|
|
[ "2cm"
|
|
, "2 centimetres"
|
|
]
|
|
]
|