{-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE PackageImports #-} {-# LANGUAGE UnicodeSyntax #-} {-| [@ISO639-1@] tr [@ISO639-2@] tur [@ISO639-3@] tur [@Native name@] Türkçe [@English name@] Turkish -} module Text.Numeral.Language.TR ( -- * Language entry entry -- * Conversions , cardinal -- * Structure , struct -- * Bounds , bounds ) where -------------------------------------------------------------------------------- -- Imports -------------------------------------------------------------------------------- import "base" Data.Bool ( otherwise ) import "base" Data.Function ( ($), const, fix ) import "base" Data.Maybe ( Maybe(Just) ) import "base" Prelude ( Integral, (-), divMod, negate ) import "base-unicode-symbols" Data.Eq.Unicode ( (≡) ) import "base-unicode-symbols" Data.Function.Unicode ( (∘) ) import "base-unicode-symbols" Data.List.Unicode ( (∉) ) import "base-unicode-symbols" Prelude.Unicode ( ℤ, (⋅) ) import qualified "containers" Data.Map as M ( fromList, lookup ) import "this" Text.Numeral import qualified "this" Text.Numeral.BigNum as BN ( rule, scaleRepr, forms ) import qualified "this" Text.Numeral.Exp as E import "this" Text.Numeral.Grammar ( Inflection ) import "this" Text.Numeral.Misc ( dec ) import "this" Text.Numeral.Entry import "text" Data.Text ( Text ) -------------------------------------------------------------------------------- -- TR -------------------------------------------------------------------------------- entry ∷ Entry entry = emptyEntry { entIso639_1 = Just "tr" , entIso639_2 = ["tur"] , entIso639_3 = Just "tur" , entNativeNames = ["Türkçe"] , entEnglishName = Just "Turkish" , entCardinal = Just Conversion { toNumeral = cardinal , toStructure = struct } } cardinal ∷ (Inflection i, Integral α, E.Scale α) ⇒ i → α → Maybe Text cardinal inf = cardinalRepr inf ∘ struct struct ∷ (Integral α, E.Scale α, E.Unknown β, E.Lit β, E.Add β, E.Mul β, E.Scale β) ⇒ α → β struct = checkPos $ fix $ rule `combine` shortScale1 R L BN.rule rule ∷ (Integral α, E.Unknown β, E.Lit β, E.Add β, E.Mul β) ⇒ Rule α β rule = findRule ( 0, lit ) [ ( 11, addToTens ) , ( 100, step 100 10 R L) , (1000, step 1000 1000 R L) ] (dec 6 - 1) addToTens ∷ (Integral α, E.Lit β, E.Add β) ⇒ Rule α β addToTens f n = let (m, r) = n `divMod` 10 tens = m ⋅ 10 in if r ≡ 0 then lit f tens else f tens `E.add` f r bounds ∷ (Integral α) ⇒ (α, α) bounds = let x = dec 60000 - 1 in (negate x, x) cardinalRepr ∷ i → Exp i → Maybe Text cardinalRepr = render defaultRepr { reprValue = \_ n → M.lookup n syms , reprScale = scaleRepr , reprAdd = Just (⊞) , reprMul = Just $ \_ _ _ → " " } where (Lit 10 ⊞ _) (CtxMul {}) = "" (_ ⊞ _) _ = " " syms = M.fromList [ (0, const "sıfır") , (1, const "bir") , (2, const "iki") , (3, const "üç") , (4, const "dört") , (5, const "beş") , (6, const "altı") , (7, const "yedi") , (8, const "sekiz") , (9, const "dokuz") , (10, const "on") , (20, const "yirmi") , (30, const "otuz") , (40, const "kırk") , (50, const "elli") , (60, const "altmış") , (70, const "yetmiş") , (80, const "seksen") , (90, const "doksan") , (100, const "yüz") , (1000, const "bin") ] scaleRepr ∷ i → ℤ → ℤ → Exp i → Ctx (Exp i) → Maybe Text scaleRepr = BN.scaleRepr (\_ _ → "ilyon") [ (1, BN.forms "m" "an" "an" "" "") , (2, BN.forms "b" "do" "do" "vi" "du") , (3, \c → case c of CtxAdd _ (Lit 10) _ → "tre" CtxAdd _ (Lit 100) _ → "tre" CtxAdd {} → "tres" CtxMul _ (Lit 100) _ → "tre" CtxMul {} → "tri" _ → "tr" ) , (4, BN.forms "katr" "kator" "kator" "katra" "katrin") , (5, BN.forms "kent" "ken" "kenka" "kenka" "ken") , (6, BN.forms "sekst" "seks" "ses" "seksa" "se") , (7, BN.forms "sept" "septen" "septem" "septe" "septin") , (8, BN.forms "okt" "okto" "okto" "okto" "oktin") , (10, \c → case c of CtxAdd _ (Lit 100) _ → "desi" CtxAdd _ (Lit 1) (CtxAdd {}) → "desi" CtxMul _ (Lit n) (CtxAdd L (Lit 100) _) | n ≡ 2 → "ginti" | otherwise → "ginta" CtxMul _ (Lit _) (CtxAdd _ _ CtxEmpty) → "gint" CtxMul _ (Lit _) CtxEmpty → "gint" CtxMul {} → "ginti" _ → "des" ) , (100, \c → case c of CtxMul _ (Lit n) _ | n ∉ [2,3,6] → "gent" _ → "sent" ) ]