1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
# -*- coding: utf-8 -*-Num2Word_TET
# Copyright (c) 2003, Taro Ogawa. All Rights Reserved.
# Copyright (c) 2013, Savoir-faire Linux inc. All Rights Reserved.
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301 USA
from num2words.currency import parse_currency_parts
from .lang_EU import Num2Word_EU
DOLLAR = ('dolar', 'dolar')
CENTS = ('sentavu', 'sentavu')
class Num2Word_TET(Num2Word_EU):
CURRENCY_FORMS = {
'AUD': (DOLLAR, CENTS),
'CAD': (DOLLAR, CENTS),
'EUR': (('euro', 'euros'), CENTS),
'GBP': (('pound sterling', 'pound sterling'), ('pence', 'pence')),
'USD': (DOLLAR, CENTS),
}
GIGA_SUFFIX = None
MEGA_SUFFIX = "iliaun"
def setup(self):
super().setup()
lows = ["kuatr", "tr", "b", "m"]
self.high_numwords = self.gen_high_numwords([], [], lows)
self.negword = "menus "
self.pointword = "vírgula"
self.exclude_title = ["resin", "vírgula", "menus"]
self.count = 0
self.mid_numwords = [
(1000, "rihun"), (100, "atus"), (90, "sianulu"),
(80, "ualunulu"), (70, "hitunulu"), (60, "neenulu"),
(50, "limanulu"), (40, "haatnulu"), (30, "tolunulu"),
(20, "ruanulu")
]
self.low_numwords = [
"sanulu",
"sia", "ualu", "hitu", "neen", "lima", "haat", "tolu", "rua",
"ida", "mamuk"
]
self.hundreds = {
1: "atus",
2: "atus rua",
3: "atus tolu",
4: "atus haat",
5: "atus lima",
6: "atus neen",
7: "atus hitu",
8: "atus ualu",
9: "atus sia",
}
def merge(self, curr, next):
ctext, cnum, ntext, nnum = curr + next
if cnum == 1 and nnum < 100:
return next
if nnum < cnum:
if nnum < 10:
value_str = str(cnum + nnum)
if int(value_str) > 100:
zero_list = value_str[1:-1]
all_zero = all(element == '0' for element in zero_list)
if all_zero:
if self.count >= 1:
self.count += 0
return (
"ho %s %s" % (ctext, ntext),
cnum + nnum
)
self.count += 1
return ("%s %s" % (ctext, ntext), cnum + nnum)
return ("%s resin %s" % (ctext, ntext), cnum + nnum)
else:
return ("%s %s" % (ctext, ntext), cnum + nnum)
return (ntext + " " + ctext, cnum * nnum)
def ho_result(self, result, value):
index = result.find('ho')
count_ho = result.count('ho')
if index != -1 and count_ho >= 1:
index_rihun = result.find('rihun')
value_str = len(str(value))
if index_rihun != -1 and value_str > 7:
result = result.replace("rihun ho", "ho rihun")
lows = ["kuatr", "tr", "b", "m"]
MEGA_SUFFIX = "iliaun"
for low in lows:
result = result.replace(
low + MEGA_SUFFIX + " ho", "ho " + low + MEGA_SUFFIX)
remove_first_ho = result.startswith('ho')
if remove_first_ho:
result = result[3:]
return result
def remove_ho(self, result, value):
value_str = str(value)
result = self.ho_result(result, value)
end_value = value_str[:-4]
end_true = end_value.endswith('0')
if end_true is False:
if value > 100:
if value_str[-1] != '0' and value_str[-2] == '0':
result = result.replace("ho", "")
result = result.replace(" ", " ")
return result
def to_cardinal(self, value):
result = super().to_cardinal(value)
results = self.remove_ho(result, value)
return results
def to_ordinal(self, value):
self.verify_ordinal(value)
out = ""
val = self.splitnum(value)
outs = val
while len(val) != 1:
outs = []
left, right = val[:2]
if isinstance(left, tuple) and isinstance(right, tuple):
outs.append(self.merge(left, right))
if val[2:]:
outs.append(val[2:])
else:
for elem in val:
if isinstance(elem, list):
if len(elem) == 1:
outs.append(elem[0])
else:
outs.append(self.clean(elem))
else:
outs.append(elem)
val = outs
words, num = outs[0]
words = self.remove_ho(words, value)
if num in [90, 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 5, 3, 2]:
words = 'da'+words+'k'
if num in [6, 4]:
words = 'da'+words
if num == 1:
words = 'dahuluk'
if num in [900, 800, 700, 500, 300, 200, 100]:
words = 'dah'+words+'k'
if num in [600, 400]:
words = 'dah'+words
words_split = words.split()
if len(words_split) >= 3 and num < 100:
first_word = 'da'+words_split[0]
second_word = " ".join(words_split[1:])
if 'haat' in second_word or 'neen' in second_word:
words = first_word+" "+second_word
else:
words = first_word+" "+second_word+'k'
word_first = 'dah'+words_split[0]
if word_first == 'dahatus' and len(words_split) >= 3:
word_second = " ".join(words_split[1:])
if 'haat' in word_second or 'neen' in word_second:
words = word_first+" "+word_second
else:
words = word_first+" "+word_second+'k'
if len(str(num)) > 3:
if 'haat' in words_split[-1:] or 'neen' in words_split[-1:]:
words = 'da'+words
else:
words = 'da'+words+'k'
result = self.title(out + words)
return result
def to_ordinal_num(self, value):
self.verify_ordinal(value)
return "%sº" % (value)
def to_year(self, val, longval=True):
if val < 0:
return self.to_cardinal(abs(val)) + ' antes Kristu'
return self.to_cardinal(val)
def to_currency(self, val, currency='USD', cents=True):
"""
Args:
val: Numeric value
currency (str): Currency code
cents (bool): Verbose cents
adjective (bool): Prefix currency name with adjective
Returns:
str: Formatted string
"""
left, right, is_negative = parse_currency_parts(val)
try:
cr1, cr2 = self.CURRENCY_FORMS[currency]
except KeyError:
raise NotImplementedError(
'Currency code "%s" not implemented for "%s"' %
(currency, self.__class__.__name__))
minus_str = "%s " % self.negword.strip() if is_negative else ""
money_str = self._money_verbose(left, currency)
cents_str = self._cents_verbose(right, currency) \
if cents else self._cents_terse(right, currency)
if right == 0:
return u'%s%s %s' % (
minus_str,
self.pluralize(left, cr1),
money_str
)
else:
return u'%s%s %s %s %s' % (
minus_str,
self.pluralize(left, cr1),
money_str,
self.pluralize(right, cr2),
cents_str
)
|