From 055d8da2c2cf9bea0fd94a271e5bf1a0f23fda30 Mon Sep 17 00:00:00 2001 From: Andrea Borruso Date: Sat, 4 Feb 2023 14:26:13 +0100 Subject: [PATCH] Added the default Italian thousand and decimal separator --- src/humanize/i18n.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/humanize/i18n.py b/src/humanize/i18n.py index 14a51bc..c6fc6cc 100644 --- a/src/humanize/i18n.py +++ b/src/humanize/i18n.py @@ -17,12 +17,14 @@ _THOUSANDS_SEPARATOR = { "de_DE": ".", "fr_FR": " ", + "it_IT": ".", "pt_BR": ".", } # Mapping of locale to decimal separator _DECIMAL_SEPARATOR = { "de_DE": ",", + "it_IT": ",", "pt_BR": ",", }