iobroker.poolcontrol 1.3.10 → 1.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +69 -14
- package/io-package.json +27 -27
- package/lib/helpers/chemistryPhHelper.js +703 -0
- package/lib/helpers/chemistryTdsHelper.js +830 -0
- package/lib/helpers/photovoltaicInsightsHelper.js +97 -7
- package/lib/helpers/solarExtendedHelper.js +14 -6
- package/lib/helpers/solarInsightsHelper.js +21 -5
- package/lib/i18n/de.json +63 -1
- package/lib/i18n/en.json +63 -2
- package/lib/i18n/es.json +63 -1
- package/lib/i18n/fr.json +63 -1
- package/lib/i18n/it.json +63 -1
- package/lib/i18n/nl.json +63 -1
- package/lib/i18n/pl.json +63 -1
- package/lib/i18n/pt.json +63 -1
- package/lib/i18n/ru.json +63 -1
- package/lib/i18n/uk.json +63 -1
- package/lib/i18n/zh-cn.json +63 -1
- package/lib/stateDefinitions/chemistryPhStates.js +701 -0
- package/lib/stateDefinitions/chemistryTdsStates.js +889 -0
- package/main.js +28 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -188,6 +188,75 @@ New features are added regularly – please refer to the changelog.
|
|
|
188
188
|
---
|
|
189
189
|
|
|
190
190
|
## Changelog
|
|
191
|
+
### 1.3.12 (2026-05-02)
|
|
192
|
+
|
|
193
|
+
**Solar Insights – Calculation fix & structure improvement**
|
|
194
|
+
|
|
195
|
+
- Fixed incorrect thermal power and energy calculation
|
|
196
|
+
- Previously used collector – pool temperature → caused unrealistic values
|
|
197
|
+
- Switched to correct physical calculation: return – flow (water delta)
|
|
198
|
+
- Thermal power is now only calculated when:
|
|
199
|
+
- valid flow is available
|
|
200
|
+
- delta T > 0
|
|
201
|
+
- Prevents unrealistic values (e.g. hundreds of kW or >100 kWh daily gain)
|
|
202
|
+
- Stabilized daily gain and peak power calculation
|
|
203
|
+
- No accumulation with invalid or missing data
|
|
204
|
+
- Improved sensor logic:
|
|
205
|
+
- introduced `flow` and `water_delta`
|
|
206
|
+
- clear separation between flow and temperature delta
|
|
207
|
+
- Increased transparency:
|
|
208
|
+
- new output: `thermal_delta_source = return_flow_delta`
|
|
209
|
+
- HTML and JSON outputs extended
|
|
210
|
+
- Added new i18n key:
|
|
211
|
+
- `solar_insights_label_thermal_delta_source`
|
|
212
|
+
|
|
213
|
+
**Photovoltaic Insights – Runtime & stability fix**
|
|
214
|
+
|
|
215
|
+
- Fixed incorrect runtime calculation
|
|
216
|
+
- Root cause: runtime was only calculated on state changes
|
|
217
|
+
- Added internal periodic recalculation (every 60 seconds during PV runtime)
|
|
218
|
+
- Runtime is now accumulated continuously and correctly
|
|
219
|
+
- Logic unchanged:
|
|
220
|
+
- only real PV surplus runtime is counted (`pv_surplus_active && photovoltaicHelper`)
|
|
221
|
+
- no afterrun included
|
|
222
|
+
- Improved calculation:
|
|
223
|
+
- runtime is now independent from pump power availability
|
|
224
|
+
- energy is only calculated with valid pump power
|
|
225
|
+
- Increased stability:
|
|
226
|
+
- improved start detection (`starts_today`)
|
|
227
|
+
- more reliable time delta handling
|
|
228
|
+
- Added daily reset:
|
|
229
|
+
- all daily values reset at midnight
|
|
230
|
+
- runtime, energy, savings, starts and active state cleared
|
|
231
|
+
- internal helper states reset
|
|
232
|
+
|
|
233
|
+
### 1.3.11 (2026-05-02)
|
|
234
|
+
|
|
235
|
+
- (DasBo) New: pH evaluation module (`chemistry.ph`)
|
|
236
|
+
- supports manual input and external state sources
|
|
237
|
+
- includes validation, measurement location handling and plausibility checks
|
|
238
|
+
- evaluation logic with status and user recommendations (no automatic dosing)
|
|
239
|
+
- manual mixing run with proper pump ownership handling
|
|
240
|
+
- includes history tracking (last valid value, previous value, time differences)
|
|
241
|
+
- fully integrated with i18n translations
|
|
242
|
+
|
|
243
|
+
- (DasBo) New: TDS evaluation module (`chemistry.tds`)
|
|
244
|
+
- supports manual input and external state sources
|
|
245
|
+
- includes validation, measurement location and flow-dependent evaluation
|
|
246
|
+
- reference value tracking (initial water quality baseline)
|
|
247
|
+
- long-term trend analysis (24h, 7d, 30d)
|
|
248
|
+
- evaluation based on absolute value, trend and reference delta (no automatic control)
|
|
249
|
+
- stores measurement history (up to 30 days)
|
|
250
|
+
- summary outputs (text, JSON, HTML)
|
|
251
|
+
- fully integrated with i18n translations
|
|
252
|
+
|
|
253
|
+
- (DasBo) Fix: solar speech toggle (standard vs. extended)
|
|
254
|
+
- solarExtendedHelper no longer writes to `speech.solar_active` when `solar.control_mode = standard`
|
|
255
|
+
- prevents conflicting updates between `solarHelper` and `solarExtendedHelper`
|
|
256
|
+
- eliminates repeated "solar on/off" speech messages
|
|
257
|
+
- improves separation of solar control modes
|
|
258
|
+
- stabilizes speech output behavior
|
|
259
|
+
|
|
191
260
|
### 1.3.10 (2026-05-01)
|
|
192
261
|
|
|
193
262
|
New: Photovoltaic Insights
|
|
@@ -236,20 +305,6 @@ Bugfixes
|
|
|
236
305
|
- solarInsightsHelper: fixed detection of standard solar runtime, replaced non-existing solar.active with solar.request_active, improved reliability of solar_ran_today for normal solar setups
|
|
237
306
|
- photovoltaicHelper: round surplus value in status text (avoid long decimal numbers), switched afterrun timer to adapter.setTimeout / clearTimeout
|
|
238
307
|
|
|
239
|
-
### 1.3.6 (2026-04-21)
|
|
240
|
-
|
|
241
|
-
frostHelper
|
|
242
|
-
- Fixed incorrect pump shutdown when other helpers (e.g. photovoltaicHelper) are active
|
|
243
|
-
- frostHelper now only disables the pump if it previously activated it itself
|
|
244
|
-
- improved internal ownership logic for safer multi-helper interaction
|
|
245
|
-
- corrected frost speech state handling (no longer based on current pump state)
|
|
246
|
-
- switched timer to adapter.setInterval / adapter.clearInterval for better stability and ioBroker compliance
|
|
247
|
-
|
|
248
|
-
### 1.3.5 (2026-04-19)
|
|
249
|
-
|
|
250
|
-
- Fixed critical i18n issue in solarInsightsHelper and solarLogbookHelper that could lead to instability or crashes
|
|
251
|
-
- Switched translation handling to I18n.translate() for stable and consistent i18n behavior
|
|
252
|
-
|
|
253
308
|
## Support
|
|
254
309
|
- [ioBroker Forum](https://forum.iobroker.net/)
|
|
255
310
|
- [GitHub Issues](https://github.com/DasBo1975/ioBroker.poolcontrol/issues)
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "poolcontrol",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.12",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.3.12": {
|
|
7
|
+
"en": "Solar Insights calculation fixed and photovoltaic runtime tracking stabilized",
|
|
8
|
+
"de": "Solar Insights Berechnung korrigiert und Photovoltaik-Laufzeit stabilisiert",
|
|
9
|
+
"ru": "Исправлен расчет Solar Insights и стабилизировано отслеживание времени работы фотоэлектрических систем.",
|
|
10
|
+
"pt": "Cálculo do Solar Insights corrigido e rastreamento de tempo de execução fotovoltaico estabilizado",
|
|
11
|
+
"nl": "Solar Insights-berekening vast en tracking van fotovoltaïsche looptijd gestabiliseerd",
|
|
12
|
+
"fr": "Calcul de Solar Insights corrigé et suivi de la durée de fonctionnement photovoltaïque stabilisé",
|
|
13
|
+
"it": "Calcolo Solar Insights fisso e monitoraggio dell'autonomia fotovoltaica stabilizzato",
|
|
14
|
+
"es": "Cálculo de Solar Insights fijo y seguimiento del tiempo de funcionamiento fotovoltaico estabilizado",
|
|
15
|
+
"pl": "Naprawiono obliczenia Solar Insights i ustabilizowano śledzenie czasu działania fotowoltaiki",
|
|
16
|
+
"uk": "Виправлено розрахунок Solar Insights і стабілізовано відстеження часу роботи фотоелектричної системи",
|
|
17
|
+
"zh-cn": "Solar Insights 计算固定,光伏运行时间跟踪稳定"
|
|
18
|
+
},
|
|
19
|
+
"1.3.11": {
|
|
20
|
+
"en": "New: Added pH evaluation module (chemistry.ph) with manual and external input, validation, measurement location handling and recommendations. New: Added TDS evaluation module (chemistry.tds) with trend analysis (24h, 7d, 30d), reference tracking and summary outputs (text/JSON/HTML). Fix: Resolved solar speech toggle issue between standard and extended mode. solarExtendedHelper no longer overwrites speech.solar_active in standard mode.",
|
|
21
|
+
"de": "Neu: pH-Auswertungsmodul (chemistry.ph) mit manueller und externer Eingabe, Validierung, Messort-Berücksichtigung und Handlungsempfehlungen. Neu: TDS-Auswertungsmodul (chemistry.tds) mit Trendanalyse (24h, 7 Tage, 30 Tage), Referenzwert-Verfolgung und Zusammenfassungen (Text/JSON/HTML). Fix: Problem mit Solar-Sprachausgabe zwischen Standard- und Extended-Modus behoben. Der solarExtendedHelper überschreibt speech.solar_active im Standard-Modus nicht mehr.",
|
|
22
|
+
"ru": "Новое: добавлен модуль оценки pH (chemistry.ph) с ручным и внешним вводом, проверкой, обработкой места измерения и рекомендациями. Новое: добавлен модуль оценки TDS (chemistry.tds) с анализом тенденций (24 часа, 7 дней, 30 дней), отслеживанием ссылок и сводными результатами (текст/JSON/HTML). Исправлено: решена проблема переключения солнечной речи между стандартным и расширенным режимом. SolarExtendedHelper больше не перезаписывает voice.solar_active в стандартном режиме.",
|
|
23
|
+
"pt": "Novo: Adicionado módulo de avaliação de pH (chemistry.ph) com entrada manual e externa, validação, manuseio do local de medição e recomendações. Novo: Adicionado módulo de avaliação TDS (chemistry.tds) com análise de tendências (24h, 7d, 30d), rastreamento de referência e resultados resumidos (texto/JSON/HTML). Correção: Resolvido problema de alternância de fala solar entre o modo padrão e estendido. solarExtendedHelper não substitui mais Speech.solar_active no modo padrão.",
|
|
24
|
+
"nl": "Nieuw: pH-evaluatiemodule toegevoegd (chemistry.ph) met handmatige en externe invoer, validatie, afhandeling van meetlocaties en aanbevelingen. Nieuw: TDS-evaluatiemodule toegevoegd (chemistry.tds) met trendanalyse (24 uur, 7 dagen, 30 dagen), referentietracking en samenvattingsresultaten (tekst/JSON/HTML). Oplossing: het probleem met het wisselen van spraak op zonne-energie tussen de standaard- en de uitgebreide modus is opgelost. solarExtendedHelper overschrijft speech.solar_active niet langer in de standaardmodus.",
|
|
25
|
+
"fr": "Nouveau : ajout d'un module d'évaluation du pH (chemistry.ph) avec saisie manuelle et externe, validation, gestion des emplacements de mesure et recommandations. Nouveau : Ajout du module d'évaluation TDS (chemistry.tds) avec analyse des tendances (24h, 7j, 30j), suivi des références et sorties récapitulatives (texte/JSON/HTML). Correction : Résolution du problème de basculement de la parole solaire entre le mode standard et le mode étendu. solarExtendedHelper n’écrase plus Speech.solar_active en mode standard.",
|
|
26
|
+
"it": "Novità: aggiunto il modulo di valutazione del pH (chemistry.ph) con input manuale ed esterno, convalida, gestione del luogo di misurazione e raccomandazioni. Novità: aggiunto il modulo di valutazione TDS (chemistry.tds) con analisi dei trend (24 ore, 7 giorni, 30 giorni), tracciamento dei riferimenti e output di riepilogo (testo/JSON/HTML). Correzione: risolto il problema di commutazione del parlato solare tra la modalità standard e quella estesa. solarExtendedHelper non sovrascrive più Speech.solar_active in modalità standard.",
|
|
27
|
+
"es": "Nuevo: Módulo de evaluación de pH agregado (chemistry.ph) con entrada manual y externa, validación, manejo de la ubicación de medición y recomendaciones. Nuevo: Módulo de evaluación TDS agregado (chemistry.tds) con análisis de tendencias (24h, 7d, 30d), seguimiento de referencias y resultados resumidos (texto/JSON/HTML). Solución: se resolvió el problema de alternar la voz solar entre el modo estándar y extendido. solarExtendedHelper ya no sobrescribe Speech.solar_active en modo estándar.",
|
|
28
|
+
"pl": "Nowość: Dodano moduł oceny pH (chemistry.ph) z ręcznym i zewnętrznym wprowadzaniem danych, walidacją, obsługą miejsca pomiaru i zaleceniami. Nowość: Dodano moduł oceny TDS (chemistry.tds) z analizą trendów (24h, 7d, 30d), śledzeniem referencji i wynikami podsumowującymi (tekst/JSON/HTML). Poprawka: rozwiązano problem z przełączaniem mowy słonecznej między trybem standardowym i rozszerzonym. solarExtendedHelper nie zastępuje już mowy.solar_active w trybie standardowym.",
|
|
29
|
+
"uk": "Нове: додано модуль оцінки pH (chemistry.ph) із ручним і зовнішнім введенням, перевіркою, обробкою місця вимірювання та рекомендаціями. Нове: додано модуль оцінки TDS (chemistry.tds) з аналізом тенденцій (24 години, 7 днів, 30 днів), відстеженням посилань і підсумковими виходами (текст/JSON/HTML). Виправлення: вирішено проблему перемикання сонячної мови між стандартним і розширеним режимами. solarExtendedHelper більше не перезаписує speak.solar_active у стандартному режимі.",
|
|
30
|
+
"zh-cn": "新增内容:添加了 pH 评估模块 (chemistry.ph),具有手动和外部输入、验证、测量位置处理和建议。新增内容:添加了 TDS 评估模块 (chemistry.tds),具有趋势分析(24 小时、7 天、30 天)、参考跟踪和摘要输出(文本/JSON/HTML)。修复:解决了标准模式和扩展模式之间的太阳能语音切换问题。在标准模式下,solarExtendedHelper 不再覆盖pepe.solar_active。"
|
|
31
|
+
},
|
|
6
32
|
"1.3.10": {
|
|
7
33
|
"en": "Added photovoltaic insights (runtime, energy, savings) with new analytics states and helper. Improved active_helper ownership handling across photovoltaic, solar and extended solar helpers. Fixed PV circulation logic when ignore_on_circulation is disabled.",
|
|
8
34
|
"de": "Photovoltaik-Einblicke (Laufzeit, Energie, Einsparungen) mit neuen Analysezuständen und Hilfsfunktionen hinzugefügt. Verbesserte Handhabung des Active_Helper-Besitzes für Photovoltaik-, Solar- und erweiterte Solar-Helfer. Die PV-Zirkulationslogik wurde korrigiert, wenn „ignore_on_circulation“ deaktiviert ist.",
|
|
@@ -41,32 +67,6 @@
|
|
|
41
67
|
"pl": "Napraw wykrywanie solarInsights dla standardowej energii słonecznej (użyj solar.request_active zamiast nieistniejącego solar.active). Udoskonalenia programu photovoltaicHelper: zaokrąglona wartość nadwyżki w tekście statusu i przełączona licznik czasu afterrun na adapter.setTimeout/clearTimeout.",
|
|
42
68
|
"uk": "Виправте виявлення solarInsights для стандартної сонячної енергії (використовуйте solar.request_active замість неіснуючого solar.active). Покращення photovoltaicHelper: округлене надлишкове значення в тексті стану та переключений таймер післязапуску на adapter.setTimeout/clearTimeout.",
|
|
43
69
|
"zh-cn": "修复标准太阳能的 SolarInsights 检测(使用 Solar.request_active 而不是不存在的 Solar.active)。 PVHelper 改进:对状态文本中的剩余值进行四舍五入,并将 Afterrun 计时器切换为 adapter.setTimeout/clearTimeout。"
|
|
44
|
-
},
|
|
45
|
-
"1.3.6": {
|
|
46
|
-
"en": "Fix for frostHelper: prevents incorrect pump shutdown when other helpers (e.g. photovoltaic) are active. Frost protection now only disables the pump if it previously activated it itself. Improved speech state logic for frost indication. Switched frostHelper timer to adapter.setInterval for better stability and ioBroker compliance.",
|
|
47
|
-
"de": "Fix für frostHelper: verhindert falsches Abschalten der Pumpe, wenn andere Helper (z. B. Photovoltaik) aktiv sind. Frostschutz schaltet die Pumpe jetzt nur noch aus, wenn er sie zuvor selbst aktiviert hat. Sprach-State für Frostanzeige korrigiert. Timer im frostHelper auf adapter.setInterval umgestellt für bessere Stabilität und ioBroker-Konformität.",
|
|
48
|
-
"ru": "Исправление FrostHelper: предотвращает некорректное выключение насоса, когда активны другие помощники (например, фотоэлектрические). Защита от замерзания теперь отключает насос только в том случае, если он ранее активировал его сам. Улучшена логика речевого состояния для индикации замерзания. Таймер FrostHelper переключен на адаптер.setInterval для большей стабильности и соответствия требованиям ioBroker.",
|
|
49
|
-
"pt": "Correção parafrostHelper: evita o desligamento incorreto da bomba quando outros auxiliares (por exemplo, fotovoltaicos) estão ativos. A proteção contra congelamento agora só desativa a bomba se ela mesma a tiver ativado anteriormente. Lógica de estado de fala aprimorada para indicação de congelamento. Mudou o temporizadorfrostHelper para adaptador.setInterval para melhor estabilidade e conformidade com ioBroker.",
|
|
50
|
-
"nl": "Oplossing voor FrostHelper: voorkomt onjuiste pompuitschakeling wanneer andere helpers (bijv. fotovoltaïsche energie) actief zijn. De vorstbeveiliging schakelt de pomp nu alleen uit als deze deze eerder zelf heeft geactiveerd. Verbeterde spraakstatuslogica voor vorstindicatie. FrostHelper-timer omgeschakeld naar adapter.setInterval voor betere stabiliteit en ioBroker-compliance.",
|
|
51
|
-
"fr": "Correctif pour frostHelper : empêche un arrêt incorrect de la pompe lorsque d'autres assistants (par exemple photovoltaïques) sont actifs. La protection antigel désactive désormais la pompe uniquement si elle l'a activée elle-même auparavant. Logique d’état vocale améliorée pour l’indication de gel. La minuterie FrostHelper a été remplacée par adapter.setInterval pour une meilleure stabilité et une meilleure conformité à ioBroker.",
|
|
52
|
-
"it": "Correzione per FrostHelper: impedisce lo spegnimento errato della pompa quando altri helper (ad esempio fotovoltaico) sono attivi. La protezione antigelo ora disabilita la pompa solo se precedentemente l'aveva attivata da sola. Logica dello stato vocale migliorata per l'indicazione del gelo. Cambiato il timer FrostHelper su Adapter.setInterval per una migliore stabilità e conformità con ioBroker.",
|
|
53
|
-
"es": "Solución para frostHelper: evita el apagado incorrecto de la bomba cuando otros ayudantes (por ejemplo, fotovoltaicos) están activos. La protección contra heladas ahora solo desactiva la bomba si previamente la activó ella misma. Lógica de estado de voz mejorada para indicación de escarcha. Se cambió el temporizador frostHelper a adaptor.setInterval para una mejor estabilidad y cumplimiento de ioBroker.",
|
|
54
|
-
"pl": "Poprawka dla FrostHelper: zapobiega nieprawidłowemu wyłączeniu pompy, gdy aktywne są inne pomoce (np. fotowoltaiczne). Ochrona przed zamarzaniem wyłącza teraz pompę tylko wtedy, gdy wcześniej sama ją uruchomiła. Ulepszona logika stanu mowy dla sygnalizacji mrozu. Zmieniono licznik czasu FrostHelper na adapter.setInterval, aby zapewnić lepszą stabilność i zgodność z ioBrokerem.",
|
|
55
|
-
"uk": "Виправлення для frostHelper: запобігає неправильному вимкненню насоса, коли інші помічники (наприклад, фотоелектричні) активні. Захист від замерзання тепер вимикає насос лише в тому випадку, якщо він раніше сам його активував. Покращена логіка стану мови для індикації морозу. Перемкнуто таймер frostHelper на adapter.setInterval для кращої стабільності та відповідності ioBroker.",
|
|
56
|
-
"zh-cn": "修复霜助手:防止当其他助手(例如光伏)处于活动状态时错误地关闭泵。现在,防冻保护只会在泵之前自行激活的情况下禁用泵。改进了霜冻指示的语音状态逻辑。将frostHelper计时器切换为adapter.setInterval以获得更好的稳定性和ioBroker合规性。"
|
|
57
|
-
},
|
|
58
|
-
"1.3.5": {
|
|
59
|
-
"en": "Fixed critical i18n issue in solarInsightsHelper and solarLogbookHelper that could lead to instability or crashes. Switched translation handling to I18n.translate() to ensure stable operation.",
|
|
60
|
-
"de": "Kritischer i18n-Fehler in solarInsightsHelper und solarLogbookHelper behoben, der zu Instabilität oder Abstürzen führen konnte. Übersetzungen wurden auf I18n.translate() umgestellt, um einen stabilen Betrieb sicherzustellen.",
|
|
61
|
-
"ru": "Исправлена критическая проблема i18n в SolarInsightsHelper и SolarLogbookHelper, которая могла привести к нестабильности или сбоям. Обработку перевода переключили на I18n.translate() для обеспечения стабильной работы.",
|
|
62
|
-
"pt": "Foi corrigido um problema crítico do i18n no solarInsightsHelper e no solarLogbookHelper que poderia causar instabilidade ou travamentos. Manipulação de tradução alterada para I18n.translate() para garantir uma operação estável.",
|
|
63
|
-
"nl": "Een kritiek i18n-probleem in solarInsightsHelper en solarLogbookHelper opgelost dat tot instabiliteit of crashes kon leiden. De verwerking van de vertalingen is gewijzigd naar I18n.translate() om een stabiele werking te garanderen.",
|
|
64
|
-
"fr": "Correction d'un problème i18n critique dans solarInsightsHelper et solarLogbookHelper qui pouvait entraîner une instabilité ou des plantages. Gestion de la traduction commutée vers I18n.translate() pour garantir un fonctionnement stable.",
|
|
65
|
-
"it": "Risolto un problema critico i18n in solarInsightsHelper e solarLogbookHelper che poteva portare a instabilità o arresti anomali. Modificata la gestione della traduzione su I18n.translate() per garantire un funzionamento stabile.",
|
|
66
|
-
"es": "Se solucionó un problema crítico de i18n en solarInsightsHelper y solarLogbookHelper que podía provocar inestabilidad o fallas. Se cambió el manejo de traducción a I18n.translate() para garantizar un funcionamiento estable.",
|
|
67
|
-
"pl": "Naprawiono krytyczny problem i18n w programach solarInsightsHelper i solarLogbookHelper, który mógł prowadzić do niestabilności lub awarii. Przełączono obsługę tłumaczeń na I18n.translate(), aby zapewnić stabilne działanie.",
|
|
68
|
-
"uk": "Виправлено критичну проблему i18n у solarInsightsHelper і solarLogbookHelper, яка могла призвести до нестабільності або збоїв. Перемкнуто обробку перекладу на I18n.translate(), щоб забезпечити стабільну роботу.",
|
|
69
|
-
"zh-cn": "修复了 SolarInsightsHelper 和 SolarLogbookHelper 中可能导致不稳定或崩溃的关键 i18n 问题。将翻译处理切换为 I18n.translate() 以确保稳定运行。"
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
"titleLang": {
|