1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| # -*- coding: utf-8 -*-
|
| from __future__ import print_function, unicode_literals
|
| from .lang_ES import Num2Word_ES
|
|
| class Num2Word_ES_VE(Num2Word_ES):
|
| def to_currency(self, val, longval=True, old=False):
| hightxt = "bolívar/es" if old else "bolívar/es fuerte/s"
| result = self.to_splitnum(
| val, hightxt=hightxt, lowtxt="centavo/s",
| divisor=1, jointxt="y", longval=longval
| )
| # Handle exception, in spanish is "un euro" and not "uno euro"
| return result.replace("uno", "un")
|
|