From 0530f86a4c10fbd91ea9599ebad64a26e75d39ed Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 6 Oct 2025 17:46:52 +0300 Subject: [PATCH] Update README with localization and utils changes Added a new languages directory for localization files and updated the file tree to reflect new utility modules for configuration, localization, and logging. Removed the old logging utility reference and improved documentation structure. --- README.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e84360b..6ec23c9 100644 --- a/README.md +++ b/README.md @@ -352,6 +352,21 @@ YTSage/ │ │ └── icon.png │ └── 📁 sound/ # Audio files │ └── notification.mp3 +├── 📁 languages/ # Localization files +│ ├── 📄 ar.json # Arabic translation +│ ├── 📄 de.json # German translation +│ ├── 📄 en.json # English translation +│ ├── 📄 es.json # Spanish translation +│ ├── 📄 fr.json # French translation +│ ├── 📄 hi.json # Hindi translation +│ ├── 📄 id.json # Indonesian translation +│ ├── 📄 it.json # Italian translation +│ ├── 📄 ja.json # Japanese translation +│ ├── 📄 pl.json # Polish translation +│ ├── 📄 pt.json # Portuguese translation +│ ├── 📄 ru.json # Russian translation +│ ├── 📄 tr.json # Turkish translation +│ └── 📄 zh.json # Chinese translation ├── 📄 LICENSE # License file ├── 📄 main.py # Application entry point ├── 📄 README.md # Project documentation @@ -362,7 +377,6 @@ YTSage/ │ ├── 📄 __init__.py # Core package init │ ├── 📄 ytsage_downloader.py # Download functionality │ ├── 📄 ytsage_ffmpeg.py # FFmpeg integration - │ ├── 📄 ytsage_logging.py # Logging utilities │ ├── 📄 ytsage_style.py # UI styling │ ├── 📄 ytsage_utils.py # Utility functions │ └── 📄 ytsage_yt_dlp.py # yt-dlp integration @@ -381,7 +395,10 @@ YTSage/ │ └── 📄 ytsage_dialogs_update.py # Update dialogs └── 📁 utils/ # Utility modules ├── 📄 __init__.py # Utils package init - └── 📄 ytsage_constants.py # Application constants + ├── 📄 ytsage_config_manager.py # Configuration management + ├── 📄 ytsage_constants.py # Application constants + ├── 📄 ytsage_localization.py # Localization utilities + └── 📄 ytsage_logger.py # Logging utilities ```