All checks were successful
CI / lint-and-test (push) Successful in 14s
- Introduced a new i18n module for managing translations and language normalization, supporting both Russian and English. - Updated various handlers and services to utilize the new translation functions for user-facing messages, improving user experience based on language preferences. - Enhanced error handling and response messages to be language-aware, ensuring appropriate feedback is provided to users in their preferred language. - Added tests for the i18n module to validate language detection and translation functionality. - Updated the example environment file to include a default language configuration.
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
README.md
|
|
pyproject.toml
|
|
duty_teller/__init__.py
|
|
duty_teller/config.py
|
|
duty_teller/run.py
|
|
duty_teller.egg-info/PKG-INFO
|
|
duty_teller.egg-info/SOURCES.txt
|
|
duty_teller.egg-info/dependency_links.txt
|
|
duty_teller.egg-info/entry_points.txt
|
|
duty_teller.egg-info/requires.txt
|
|
duty_teller.egg-info/top_level.txt
|
|
duty_teller/api/__init__.py
|
|
duty_teller/api/app.py
|
|
duty_teller/api/calendar_ics.py
|
|
duty_teller/api/dependencies.py
|
|
duty_teller/api/telegram_auth.py
|
|
duty_teller/db/__init__.py
|
|
duty_teller/db/models.py
|
|
duty_teller/db/repository.py
|
|
duty_teller/db/schemas.py
|
|
duty_teller/db/session.py
|
|
duty_teller/handlers/__init__.py
|
|
duty_teller/handlers/commands.py
|
|
duty_teller/handlers/errors.py
|
|
duty_teller/handlers/group_duty_pin.py
|
|
duty_teller/handlers/import_duty_schedule.py
|
|
duty_teller/i18n/__init__.py
|
|
duty_teller/i18n/core.py
|
|
duty_teller/i18n/messages.py
|
|
duty_teller/importers/__init__.py
|
|
duty_teller/importers/duty_schedule.py
|
|
duty_teller/services/__init__.py
|
|
duty_teller/services/group_duty_pin_service.py
|
|
duty_teller/services/import_service.py
|
|
duty_teller/utils/__init__.py
|
|
duty_teller/utils/dates.py
|
|
duty_teller/utils/handover.py
|
|
duty_teller/utils/user.py
|
|
tests/test_app.py
|
|
tests/test_config.py
|
|
tests/test_duty_schedule_parser.py
|
|
tests/test_i18n.py
|
|
tests/test_import_duty_schedule_integration.py
|
|
tests/test_repository_duty_range.py
|
|
tests/test_telegram_auth.py
|
|
tests/test_utils.py |