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
|
# -*- coding: utf-8 -*-
# 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 __future__ import unicode_literals
from .base import Num2Word_Base
from .utils import get_digits, splitbyx
ZERO = 'нөл'
ONES = {
1: 'бір',
2: 'екі',
3: 'үш',
4: 'төрт',
5: 'бес',
6: 'алты',
7: 'жеті',
8: 'сегіз',
9: 'тоғыз',
}
TEN = 'он'
TWENTIES = {
2: 'жиырма',
3: 'отыз',
4: 'қырық',
5: 'елу',
6: 'алпыс',
7: 'жетпіс',
8: 'сексен',
9: 'тоқсан',
}
HUNDRED = 'жүз'
THOUSANDS = {
1: 'мың',
2: 'миллион',
3: 'миллиард',
4: 'триллион',
5: 'квадриллион',
6: 'квинтиллион',
7: 'секстиллион',
8: 'септиллион',
9: 'октиллион',
10: 'нониллион',
}
class Num2Word_KZ(Num2Word_Base):
CURRENCY_FORMS = {
'USD': ('доллар', 'цент'),
'KZT': ('теңге', 'тиын'),
}
def setup(self):
self.negword = "минус"
self.pointword = "бүтін"
def to_cardinal(self, number):
n = str(number).replace(',', '.')
if '.' in n:
left, right = n.split('.')
leading_zero_count = len(right) - len(right.lstrip('0'))
return u'%s %s %s' % (
self._int2word(int(left)),
self.pointword,
(ZERO + ' ') * leading_zero_count + self._int2word(int(right))
)
else:
return self._int2word(int(n))
def pluralize(self, n, form):
return form
def _cents_verbose(self, number, currency):
return self._int2word(number, currency == 'KZT')
def _int2word(self, n, feminine=False):
if n < 0:
return ' '.join([self.negword, self._int2word(abs(n))])
if n == 0:
return ZERO
words = []
chunks = list(splitbyx(str(n), 3))
i = len(chunks)
for x in chunks:
i -= 1
if x == 0:
continue
n1, n2, n3 = get_digits(x)
if n3 > 0:
if n3 > 1:
words.append(ONES[n3])
words.append(HUNDRED)
if n2 == 1:
words.append(TEN)
elif n2 > 1:
words.append(TWENTIES[n2])
if n1 > 0:
words.append(ONES[n1])
if i > 0:
words.append(THOUSANDS[i])
return ' '.join(words)
def to_ordinal(self, number):
# TODO: Implement to_ordinal
raise NotImplementedError()
|