Skip to content

Commit 055d8da

Browse files
authored
Added the default Italian thousand and decimal separator
1 parent 49fe53a commit 055d8da

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/humanize/i18n.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@
1717
_THOUSANDS_SEPARATOR = {
1818
"de_DE": ".",
1919
"fr_FR": " ",
20+
"it_IT": ".",
2021
"pt_BR": ".",
2122
}
2223

2324
# Mapping of locale to decimal separator
2425
_DECIMAL_SEPARATOR = {
2526
"de_DE": ",",
27+
"it_IT": ",",
2628
"pt_BR": ",",
2729
}
2830

0 commit comments

Comments
 (0)