Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for Azerbaijani language #495

Merged
merged 1 commit into from
Dec 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ Besides the numerical argument, there are two main optional arguments.
* ``en`` (English, default)
* ``am`` (Amharic)
* ``ar`` (Arabic)
* ``az`` (Azerbaijani)
* ``cz`` (Czech)
* ``de`` (German)
* ``dk`` (Danish)
Expand Down
3 changes: 2 additions & 1 deletion num2words/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

from __future__ import unicode_literals

from . import (lang_AM, lang_AR, lang_CZ, lang_DE, lang_DK, lang_EN,
from . import (lang_AM, lang_AR, lang_AZ, lang_CZ, lang_DE, lang_DK, lang_EN,
lang_EN_IN, lang_EO, lang_ES, lang_ES_CO, lang_ES_NI,
lang_ES_VE, lang_FA, lang_FI, lang_FR, lang_FR_BE, lang_FR_CH,
lang_FR_DZ, lang_HE, lang_HU, lang_ID, lang_IT, lang_JA,
Expand All @@ -29,6 +29,7 @@
CONVERTER_CLASSES = {
'am': lang_AM.Num2Word_AM(),
'ar': lang_AR.Num2Word_AR(),
'az': lang_AZ.Num2Word_AZ(),
'cz': lang_CZ.Num2Word_CZ(),
'en': lang_EN.Num2Word_EN(),
'en_IN': lang_EN_IN.Num2Word_EN_IN(),
Expand Down
204 changes: 204 additions & 0 deletions num2words/lang_AZ.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,204 @@
# -*- 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


class Num2Word_AZ(Num2Word_Base):
DIGITS = {
0: u"sıfır",
1: u"bir",
2: u"iki",
3: u"üç",
4: u"dörd",
5: u"beş",
6: u"altı",
7: u"yeddi",
8: u"səkkiz",
9: u"doqquz",
}

DECIMALS = {
1: u"on",
2: u"iyirmi",
3: u"otuz",
4: u"qırx",
5: u"əlli",
6: u"altmış",
7: u"yetmiş",
8: u"səksən",
9: u"doxsan",
}

POWERS_OF_TEN = {
2: u"yüz",
3: u"min",
6: u"milyon",
9: u"milyard",
12: u"trilyon",
15: u"katrilyon",
18: u"kentilyon",
21: u"sekstilyon",
24: u"septilyon",
27: u"oktilyon",
30: u"nonilyon",
33: u"desilyon",
36: u"undesilyon",
39: u"dodesilyon",
42: u"tredesilyon",
45: u"katordesilyon",
48: u"kendesilyon",
51: u"seksdesilyon",
54: u"septendesilyon",
57: u"oktodesilyon",
60: u"novemdesilyon",
63: u"vigintilyon",
}

VOWELS = u"aıoueəiöü"
VOWEL_TO_CARDINAL_SUFFIX_MAP = {
**dict.fromkeys(["a", "ı"], "ıncı"),
**dict.fromkeys(["e", "ə", "i"], "inci"),
**dict.fromkeys(["o", "u"], "uncu"),
**dict.fromkeys(["ö", "ü"], "üncü"),
}

VOWEL_TO_CARDINAL_NUM_SUFFIX_MAP = {
**dict.fromkeys(["a", "ı"], "cı"),
**dict.fromkeys(["e", "ə", "i"], "ci"),
**dict.fromkeys(["o", "u"], "cu"),
**dict.fromkeys(["ö", "ü"], "cü"),
}

CURRENCY_INTEGRAL = ('manat', 'manat')
CURRENCY_FRACTION = ('qəpik', 'qəpik')
CURRENCY_FORMS = {'AZN': (CURRENCY_INTEGRAL, CURRENCY_FRACTION)}

def setup(self):
super().setup()

self.negword = u"mənfi"
self.pointword = u"nöqtə"

def to_cardinal(self, value):
value_str = str(value)
parts = value_str.split(".")
integral_part = parts[0]
fraction_part = parts[1] if len(parts) > 1 else ""

if integral_part.startswith("-"):
integral_part = integral_part[1:] # ignore minus sign here

integral_part_in_words = self.int_to_word(integral_part)
fraction_part_in_words = "" if not fraction_part else self.int_to_word(
fraction_part, leading_zeros=True)

value_in_words = integral_part_in_words
if fraction_part:
value_in_words = " ".join(
[
integral_part_in_words,
self.pointword,
fraction_part_in_words
]
)

if value < 0:
value_in_words = " ".join([self.negword, value_in_words])

return value_in_words

def to_ordinal(self, value):
assert int(value) == value

cardinal = self.to_cardinal(value)
last_vowel = self._last_vowel(cardinal)
assert last_vowel is not None
suffix = self.VOWEL_TO_CARDINAL_SUFFIX_MAP[last_vowel]

if cardinal.endswith(tuple(self.VOWELS)):
cardinal = cardinal[:-1]

ordinal = "".join([cardinal, suffix])

return ordinal

def to_ordinal_num(self, value):
assert int(value) == value

cardinal = self.to_cardinal(value)
last_vowel = self._last_vowel(cardinal)
assert last_vowel is not None
suffix = self.VOWEL_TO_CARDINAL_NUM_SUFFIX_MAP[last_vowel]
ordinal_num = "-".join([str(value), suffix])

return ordinal_num

def to_year(self, value):
assert int(value) == value

year = self.to_cardinal(abs(value))
if value < 0:
year = " ".join(["e.ə.", year])

return year

def pluralize(self, n, forms):
form = 0 if n == 1 else 1
return forms[form]

def int_to_word(self, num_str, leading_zeros=False):
words = []
reversed_str = list(reversed(num_str))

for index, digit in enumerate(reversed_str):
digit_int = int(digit)
# calculate remainder after dividing index by 3
# because number is parsed by three digit chunks
remainder_to_3 = index % 3
if remainder_to_3 == 0:
if index > 0:
if set(reversed_str[index:index+3]) != {'0'}:
words.insert(0, self.POWERS_OF_TEN[index])
if digit_int > 0:
# we say "min" not "bir min"
if not (digit_int == 1 and index == 3):
words.insert(0, self.DIGITS[digit_int])
elif remainder_to_3 == 1:
if digit_int != 0:
words.insert(0, self.DECIMALS[digit_int])
else: # remainder is 2
if digit_int > 0:
words.insert(0, self.POWERS_OF_TEN[2]) # "yüz"
if digit_int > 1:
words.insert(0, self.DIGITS[digit_int])

if num_str == '0':
words.append(self.DIGITS[0])

if leading_zeros:
zeros_count = len(num_str) - len(str(int(num_str)))
words[:0] = zeros_count * [self.DIGITS[0]]

return " ".join(words)

def _last_vowel(self, value):
for char in value[::-1]:
if char in self.VOWELS:
return char
Loading