Files
WeKnora/.gitignore
Aleksandr da640d1d33 Feature/add multilingual support (#384)
* feat: add multilingual support (English and Russian)

- Add i18n infrastructure with vue-i18n
- Implement language switcher component
- Add Russian (ru-RU) and English (en-US) translations
- Configure TDesign locale for proper UI component translation
- Replace hardcoded Chinese strings with i18n keys
- Support dynamic language switching in all components
- Add translations for all UI elements including:
  - Menu items and navigation
  - Knowledge base management
  - Chat interface
  - Settings and initialization
  - Authentication pages
  - Separator options in document splitting

This enables users to use the application in Chinese, English, or Russian.

* chore: add vue-i18n dependency and fix Input-field i18n integration

- Add vue-i18n package to frontend dependencies
- Fix Input-field component i18n integration for multilingual support

* chore: add PROGRESS_RU.md to .gitignore

- Exclude personal progress tracking file from git

* rearrange the order of the multilingual languages: Chinese, English, Russian

* Delete docker-compose.yml

* Replaced hardcoded messages with the t() function in the following files:  all error messages, 14 console.error ,messages session creation messages
, login/registration errors

* fix: restore docker-compose.yml and update .gitignore

* restore docker-compose.yml latest

* add multilingual support
2025-11-05 12:32:16 +08:00

43 lines
529 B
Plaintext

# 忽略.env文件和其他包含敏感信息的配置文件
.env
# 但不忽略示例文件
!.env.example
*.pem
*_key
*_secret
*.key
*.crt
# IDE和编辑器文件
.idea/
.vscode/
*.swp
*.swo
# 构建和依赖文件
node_modules/
/dist/
/build/
*.log
# 临时文件
tmp/
temp/
# Docker compose файл (локальные настройки)
# docker-compose.yml
WeKnora
/models/
services/docreader/src/proto/__pycache__
test/data/mswag.txt
data/files/
.python-version
.venv/
### macOS
# General
.DS_Store
PROGRESS_RU.md