fix: replace locale setting with months constant

This commit is contained in:
2024-09-11 19:32:03 +04:00
parent 9a66667317
commit b44cb0c222
2 changed files with 20 additions and 6 deletions

View File

@@ -14,3 +14,18 @@ allowed_telegram_ids = [
502869937, # Sasha
7326211785
]
MONTHS = (
'января',
'февраля',
'марта',
'апреля',
'мая',
'июня',
'июля',
'августа',
'сентября',
'октября',
'ноября',
'декабря'
)