From bacf76e0a98a88104fd377c553dc757df2ae25cb Mon Sep 17 00:00:00 2001 From: SMKRV Date: Fri, 6 Dec 2024 16:33:46 +0300 Subject: [PATCH] bump to version 2.0.8-beta --- README.md | 14 +++++ custom_components/ha_text_ai/manifest.json | 2 +- .../ha_text_ai/translations/es.json | 2 +- .../ha_text_ai/translations/hi.json | 2 +- .../ha_text_ai/translations/ru.json | 2 +- .../ha_text_ai/translations/zh.json | 2 +- structure.md | 56 +++++++++---------- 7 files changed, 46 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index ff18ad9..a007ac5 100644 --- a/README.md +++ b/README.md @@ -136,8 +136,22 @@ To be compatible, a provider should support: - JSON request/response format - Standard authentication method - Similar model parameter handling + +## 🌐 Translations + +| Code | Language | Status | +|------|----------|--------| +| 🇩🇪 de | Deutsch | Full | +| 🇬🇧 en | English | Primary | +| 🇪🇸 es | Español | Full | +| 🇮🇳 hi | हिन्दी | Full | +| 🇮🇹 it | Italiano | Full | +| 🇷🇺 ru | Русский | Full | +| 🇷🇸 sr | Srpski | Full | +| 🇨🇳 zh | 中文 | Full | + ## ⚡ Installation ### HACS Installation (Recommended) diff --git a/custom_components/ha_text_ai/manifest.json b/custom_components/ha_text_ai/manifest.json index 43827b9..05e5bdd 100644 --- a/custom_components/ha_text_ai/manifest.json +++ b/custom_components/ha_text_ai/manifest.json @@ -23,6 +23,6 @@ "single_config_entry": false, "ssdp": [], "usb": [], - "version": "2.0.7-beta", + "version": "2.0.8-beta", "zeroconf": [] } diff --git a/custom_components/ha_text_ai/translations/es.json b/custom_components/ha_text_ai/translations/es.json index 379aac6..b0a8181 100644 --- a/custom_components/ha_text_ai/translations/es.json +++ b/custom_components/ha_text_ai/translations/es.json @@ -95,7 +95,7 @@ }, "services": { "ask_question": { - "name": "Hacer Pregunta (IA de Texto de HA)", + "name": "Hacer Pregunta (HA Text AI)", "description": "Envía una pregunta al modelo de IA y recibe una respuesta detallada. La respuesta se almacenará en el historial de conversación y se podrá recuperar más tarde.", "fields": { "instance": { diff --git a/custom_components/ha_text_ai/translations/hi.json b/custom_components/ha_text_ai/translations/hi.json index 40cd584..9b750ed 100644 --- a/custom_components/ha_text_ai/translations/hi.json +++ b/custom_components/ha_text_ai/translations/hi.json @@ -95,7 +95,7 @@ }, "services": { "ask_question": { - "name": "प्रश्न पूछें (एचए टेक्स्ट एआई)", + "name": "प्रश्न पूछें (HA Text AI)", "description": "एआई मॉडल को एक प्रश्न भेजें और विस्तृत प्रतिक्रिया प्राप्त करें। प्रतिक्रिया बातचीत के इतिहास में संग्रहीत की जाएगी और बाद में पुनर्प्राप्त की जा सकती है।", "fields": { "instance": { diff --git a/custom_components/ha_text_ai/translations/ru.json b/custom_components/ha_text_ai/translations/ru.json index ec7cd37..cfb9195 100644 --- a/custom_components/ha_text_ai/translations/ru.json +++ b/custom_components/ha_text_ai/translations/ru.json @@ -95,7 +95,7 @@ }, "services": { "ask_question": { - "name": "Задать вопрос (Текстовый ИИ HA)", + "name": "Задать вопрос (HA Text AI)", "description": "Отправить вопрос модели ИИ и получить подробный ответ. Ответ будет сохранен в истории разговора и может быть получен позже.", "fields": { "instance": { diff --git a/custom_components/ha_text_ai/translations/zh.json b/custom_components/ha_text_ai/translations/zh.json index 7c542c3..8cc6a5e 100644 --- a/custom_components/ha_text_ai/translations/zh.json +++ b/custom_components/ha_text_ai/translations/zh.json @@ -95,7 +95,7 @@ }, "services": { "ask_question": { - "name": "提问(HA文本AI)", + "name": "提问 (HA Text AI)", "description": "向AI模型发送问题并接收详细响应。响应将存储在对话历史中,可以稍后检索。", "fields": { "instance": { diff --git a/structure.md b/structure.md index 2d491f9..7b3b8c4 100644 --- a/structure.md +++ b/structure.md @@ -1,32 +1,30 @@ ``` -ha-text-ai/ -├── custom_components -│   └── ha_text_ai -│   ├── __init__.py -│   ├── api_client.py -│   ├── config_flow.py -│   ├── const.py -│   ├── coordinator.py -│   ├── icons -│   │   ├── dark_icon.png -│   │   ├── dark_icon@2x.png -│   │   ├── dark_logo.png -│   │   ├── dark_logo@2x.png -│   │   ├── icon.png -│   │   ├── icon@2x.png -│   │   ├── logo.png -│   │   └── logo@2x.png -│   ├── manifest.json -│   ├── sensor.py -│   ├── services.yaml -│   └── translations -│   ├── de.json -│   ├── en.json -│   ├── es.json -│   ├── hi.json -│   ├── it.json -│   ├── ru.json -│   ├── sr.json -│   └── zh.json +ha_text_ai/ +├── __init__.py +├── api_client.py +├── config_flow.py +├── const.py +├── coordinator.py +├── icons +│   ├── dark_icon.png +│   ├── dark_icon@2x.png +│   ├── dark_logo.png +│   ├── dark_logo@2x.png +│   ├── icon.png +│   ├── icon@2x.png +│   ├── logo.png +│   └── logo@2x.png +├── manifest.json +├── sensor.py +├── services.yaml +└── translations + ├── de.json + ├── en.json + ├── es.json + ├── hi.json + ├── it.json + ├── ru.json + ├── sr.json + └── zh.json ```