Skip to content

Commit b248b54

Browse files
committed
Fix Italian locale plural seconds timeframe
The "seconds" timeframe used "{0} qualche secondo" which produces nonsensical output like "15 qualche secondo fa" (literally "15 some second ago"). "qualche secondo" means "a few seconds" and is appropriate as a standalone phrase, not with a numeric prefix. Change to "{0} secondi" which is the correct Italian plural, producing natural output like "15 secondi fa" ("15 seconds ago").
1 parent b423717 commit b248b54

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arrow/locales.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ class ItalianLocale(Locale):
411411
timeframes = {
412412
"now": "adesso",
413413
"second": "un secondo",
414-
"seconds": "{0} qualche secondo",
414+
"seconds": "{0} secondi",
415415
"minute": "un minuto",
416416
"minutes": "{0} minuti",
417417
"hour": "un'ora",

0 commit comments

Comments
 (0)