iobroker.poolcontrol 1.3.15 → 1.3.18
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 +67 -74
- package/io-package.json +40 -40
- package/lib/helpers/chemistryOrpHelper.js +818 -0
- package/lib/helpers/chemistryPhHelper.js +309 -39
- package/lib/helpers/chemistryTdsHelper.js +37 -24
- package/lib/helpers/pumpHelper2.js +21 -11
- package/lib/i18n/de.json +35 -1
- package/lib/i18n/en.json +35 -1
- package/lib/i18n/es.json +31 -1
- package/lib/i18n/fr.json +31 -1
- package/lib/i18n/it.json +31 -1
- package/lib/i18n/nl.json +31 -1
- package/lib/i18n/pl.json +31 -1
- package/lib/i18n/pt.json +31 -1
- package/lib/i18n/ru.json +31 -1
- package/lib/i18n/uk.json +31 -1
- package/lib/i18n/zh-cn.json +31 -1
- package/lib/stateDefinitions/chemistryOrpStates.js +1068 -0
- package/lib/stateDefinitions/chemistryPhStates.js +222 -8
- package/lib/stateDefinitions/chemistryTdsStates.js +16 -16
- package/main.js +14 -0
- package/package.json +1 -1
|
@@ -53,27 +53,37 @@ const pumpHelper2 = {
|
|
|
53
53
|
* @param {ioBroker.State | null | undefined} state - Neuer Statewert
|
|
54
54
|
*/
|
|
55
55
|
async handleStateChange(id, state) {
|
|
56
|
-
if (!state
|
|
56
|
+
if (!state) {
|
|
57
57
|
return;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
// Leistungsänderung → reelle Durchflusswerte aktualisieren
|
|
61
61
|
if (id.endsWith('pump.current_power')) {
|
|
62
|
+
if (state.ack === false) {
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
|
|
62
66
|
await this._updateLiveValues();
|
|
67
|
+
return;
|
|
63
68
|
}
|
|
64
69
|
|
|
65
|
-
// Pumpenstatus-Änderung → letzten Durchflusswert sichern
|
|
70
|
+
// Pumpenstatus-Änderung → Livewerte aktualisieren bzw. letzten Durchflusswert sichern
|
|
66
71
|
if (id.endsWith('pump.pump_switch')) {
|
|
67
72
|
const pumpOn = state.val === true;
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
73
|
+
|
|
74
|
+
if (pumpOn) {
|
|
75
|
+
// FIX: Helper-driven pump starts use ack=false, but live flow must still be recalculated.
|
|
76
|
+
await this._updateLiveValues();
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// FIX: Verwende den zuletzt gemerkten Wert, statt live zu lesen (verhindert 0-Durchfluss)
|
|
81
|
+
const flowBeforeStop = this.lastKnownFlow;
|
|
82
|
+
if (flowBeforeStop > 0) {
|
|
83
|
+
await this._setIfChanged('pump.live.last_flow_lh', flowBeforeStop);
|
|
84
|
+
this.adapter.log.debug(`[pumpHelper2] FIX: Last flow value stored: ${flowBeforeStop} l/h`);
|
|
85
|
+
} else {
|
|
86
|
+
this.adapter.log.debug('[pumpHelper2] No stored flow value available.');
|
|
77
87
|
}
|
|
78
88
|
}
|
|
79
89
|
},
|
package/lib/i18n/de.json
CHANGED
|
@@ -217,7 +217,15 @@
|
|
|
217
217
|
"pH mixing run finished. Pump was switched off by the pH helper.": "pH-Mischlauf beendet. Die Pumpe wurde vom pH-Helper ausgeschaltet.",
|
|
218
218
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "pH-Mischlauf beendet. Die Pumpe wurde nicht ausgeschaltet, weil ein anderer Helper aktiv ist.",
|
|
219
219
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "pH-Mischlauf beendet. Die Pumpe lief bereits und wurde vom pH-Helper nicht ausgeschaltet.",
|
|
220
|
+
"pH trend": "pH-Trend",
|
|
221
|
+
"Overall pH status": "Gesamtstatus pH",
|
|
220
222
|
|
|
223
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "Der pH-Wert steigt sehr schnell an. Prüfe Dosierung, Alkalinität und Wasserbalance.",
|
|
224
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "Der pH-Wert steigt merklich an. Beobachte den Trend und prüfe Alkalinität und Wasserbalance.",
|
|
225
|
+
"pH is slowly rising. Continue observing the trend.": "Der pH-Wert steigt langsam an. Beobachte den Trend weiter.",
|
|
226
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "Der pH-Wert fällt. Das kann nach einer pH-Korrektur oder Frischwasserzugabe plausibel sein.",
|
|
227
|
+
|
|
228
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "Es sind noch nicht genügend pH-Historienwerte vorhanden. Sammle weitere gültige Messwerte.",
|
|
221
229
|
"No TDS source state configured.": "Kein TDS-Quell-Datenpunkt konfiguriert.",
|
|
222
230
|
"TDS source state configured.": "TDS-Quell-Datenpunkt konfiguriert.",
|
|
223
231
|
"TDS source state could not be subscribed.": "TDS-Quell-Datenpunkt konnte nicht abonniert werden.",
|
|
@@ -246,5 +254,31 @@
|
|
|
246
254
|
"not available": "nicht verfügbar",
|
|
247
255
|
"Trend status": "Trendstatus",
|
|
248
256
|
"Overall status": "Gesamtstatus",
|
|
249
|
-
"Recommendation": "Empfehlung"
|
|
257
|
+
"Recommendation": "Empfehlung",
|
|
258
|
+
|
|
259
|
+
"No ORP source state configured.": "Kein ORP-Quelldatenpunkt konfiguriert.",
|
|
260
|
+
"ORP source state configured.": "ORP-Quelldatenpunkt konfiguriert.",
|
|
261
|
+
"ORP source state could not be subscribed.": "ORP-Quelldatenpunkt konnte nicht abonniert werden.",
|
|
262
|
+
"ORP input is disabled.": "ORP-Eingang ist deaktiviert.",
|
|
263
|
+
"No valid ORP source is configured.": "Keine gültige ORP-Quelle konfiguriert.",
|
|
264
|
+
"The configured ORP source state does not exist.": "Der konfigurierte ORP-Quelldatenpunkt existiert nicht.",
|
|
265
|
+
"The configured ORP source could not be read.": "Der konfigurierte ORP-Quelldatenpunkt konnte nicht gelesen werden.",
|
|
266
|
+
"Unknown ORP source mode.": "Unbekannter ORP-Quellenmodus.",
|
|
267
|
+
"Manual ORP value is used.": "Manueller ORP-Wert wird verwendet.",
|
|
268
|
+
"External ORP source is valid.": "Externe ORP-Quelle ist gültig.",
|
|
269
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "Der ORP-Wert ist ungültig. Bitte Messung oder Sensor prüfen.",
|
|
270
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "Die ORP-Auswertung wartet auf die Poolpumpe, da sich der Sensor in einer Messstrecke befindet.",
|
|
271
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "Die ORP-Auswertung wartet, bis sich die Messstrecke nach dem Pumpenstart stabilisiert hat.",
|
|
272
|
+
"ORP trend": "ORP-Trend",
|
|
273
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "ORP-Wert vorhanden, aber die pH-Referenz fehlt, ist deaktiviert oder außerhalb des erwarteten Bereichs. Die ORP-Interpretation ist eingeschränkt.",
|
|
274
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "ORP-Wert niedrig. Bitte pH- und Chlorwerte manuell prüfen und die Wasserpflege bewerten.",
|
|
275
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "ORP-Wert hoch. Bitte prüfen, ob die Messung plausibel ist und die Wasserwerte gemeinsam bewerten.",
|
|
276
|
+
"ORP value is within the configured reference range.": "ORP-Wert befindet sich im konfigurierten Referenzbereich.",
|
|
277
|
+
"unknown": "unbekannt",
|
|
278
|
+
"not enough data": "nicht genügend Daten",
|
|
279
|
+
"Current ORP value": "Aktueller ORP-Wert",
|
|
280
|
+
"pH reference": "pH-Referenz",
|
|
281
|
+
"Status": "Status",
|
|
282
|
+
"Recommendation": "Empfehlung",
|
|
283
|
+
"ORP evaluation is disabled.": "ORP-Auswertung ist deaktiviert."
|
|
250
284
|
}
|
package/lib/i18n/en.json
CHANGED
|
@@ -288,6 +288,14 @@
|
|
|
288
288
|
"pH mixing run finished. Pump was switched off by the pH helper.": "pH mixing run finished. Pump was switched off by the pH helper.",
|
|
289
289
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "pH mixing run finished. Pump was not switched off because another helper is active.",
|
|
290
290
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "pH mixing run finished. Pump was already running and was not switched off by the pH helper.",
|
|
291
|
+
"pH trend": "pH trend",
|
|
292
|
+
"Overall pH status": "Overall pH status",
|
|
293
|
+
|
|
294
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "pH is rising very quickly. Check dosing, alkalinity and water balance.",
|
|
295
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "pH is rising noticeably. Observe the trend and check alkalinity and water balance.",
|
|
296
|
+
"pH is slowly rising. Continue observing the trend.": "pH is slowly rising. Continue observing the trend.",
|
|
297
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "pH is falling. This can be plausible after pH correction or fresh water.",
|
|
298
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "Not enough pH history is available yet. Collect more valid measurements.",
|
|
291
299
|
|
|
292
300
|
"No TDS source state configured.": "No TDS source state configured.",
|
|
293
301
|
"TDS source state configured.": "TDS source state configured.",
|
|
@@ -317,5 +325,31 @@
|
|
|
317
325
|
"not available": "not available",
|
|
318
326
|
"Trend status": "Trend status",
|
|
319
327
|
"Overall status": "Overall status",
|
|
320
|
-
"Recommendation": "Recommendation"
|
|
328
|
+
"Recommendation": "Recommendation",
|
|
329
|
+
|
|
330
|
+
"No ORP source state configured.": "No ORP source state configured.",
|
|
331
|
+
"ORP source state configured.": "ORP source state configured.",
|
|
332
|
+
"ORP source state could not be subscribed.": "ORP source state could not be subscribed.",
|
|
333
|
+
"ORP input is disabled.": "ORP input is disabled.",
|
|
334
|
+
"No valid ORP source is configured.": "No valid ORP source is configured.",
|
|
335
|
+
"The configured ORP source state does not exist.": "The configured ORP source state does not exist.",
|
|
336
|
+
"The configured ORP source could not be read.": "The configured ORP source could not be read.",
|
|
337
|
+
"Unknown ORP source mode.": "Unknown ORP source mode.",
|
|
338
|
+
"Manual ORP value is used.": "Manual ORP value is used.",
|
|
339
|
+
"External ORP source is valid.": "External ORP source is valid.",
|
|
340
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "The ORP value is invalid. Please check the measurement or sensor.",
|
|
341
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.",
|
|
342
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "ORP evaluation is waiting until the measurement section has stabilized after pump start.",
|
|
343
|
+
"ORP trend": "ORP trend",
|
|
344
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.",
|
|
345
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.",
|
|
346
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "ORP value is high. Check whether the measurement is plausible and evaluate the water values together.",
|
|
347
|
+
"ORP value is within the configured reference range.": "ORP value is within the configured reference range.",
|
|
348
|
+
"unknown": "unknown",
|
|
349
|
+
"not enough data": "not enough data",
|
|
350
|
+
"Current ORP value": "Current ORP value",
|
|
351
|
+
"pH reference": "pH reference",
|
|
352
|
+
"Status": "Status",
|
|
353
|
+
"Recommendation": "Recommendation",
|
|
354
|
+
"ORP evaluation is disabled.": "ORP evaluation is disabled."
|
|
321
355
|
}
|
package/lib/i18n/es.json
CHANGED
|
@@ -288,6 +288,13 @@
|
|
|
288
288
|
"pH mixing run finished. Pump was switched off by the pH helper.": "Mezcla de pH finalizada. La bomba fue apagada por el helper de pH.",
|
|
289
289
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "Mezcla de pH finalizada. La bomba no se apagó porque otro helper está activo.",
|
|
290
290
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "Mezcla de pH finalizada. La bomba ya estaba en marcha y el helper de pH no la apagó.",
|
|
291
|
+
"pH trend": "Tendencia de pH",
|
|
292
|
+
"Overall pH status": "Estado general de pH",
|
|
293
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "El pH está subiendo muy rápido. Compruebe la dosificación, la alcalinidad y el equilibrio del agua.",
|
|
294
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "El pH está subiendo de forma notable. Observe la tendencia y compruebe la alcalinidad y el equilibrio del agua.",
|
|
295
|
+
"pH is slowly rising. Continue observing the trend.": "El pH está subiendo lentamente. Continúe observando la tendencia.",
|
|
296
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "El pH está bajando. Esto puede ser plausible después de una corrección de pH o de añadir agua fresca.",
|
|
297
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "Aún no hay suficiente historial de pH disponible. Recopile más mediciones válidas.",
|
|
291
298
|
|
|
292
299
|
"No TDS source state configured.": "No hay ningún estado de origen de TDS configurado.",
|
|
293
300
|
"TDS source state configured.": "Estado de origen de TDS configurado.",
|
|
@@ -317,5 +324,28 @@
|
|
|
317
324
|
"not available": "no disponible",
|
|
318
325
|
"Trend status": "Estado de tendencia",
|
|
319
326
|
"Overall status": "Estado general",
|
|
320
|
-
"Recommendation": "Recomendación"
|
|
327
|
+
"Recommendation": "Recomendación",
|
|
328
|
+
"No ORP source state configured.": "No se ha configurado ningún estado fuente de ORP.",
|
|
329
|
+
"ORP source state configured.": "Estado fuente de ORP configurado.",
|
|
330
|
+
"ORP source state could not be subscribed.": "No se pudo suscribir el estado fuente de ORP.",
|
|
331
|
+
"ORP input is disabled.": "La entrada de ORP está desactivada.",
|
|
332
|
+
"No valid ORP source is configured.": "No se ha configurado ninguna fuente de ORP válida.",
|
|
333
|
+
"The configured ORP source state does not exist.": "El estado fuente de ORP configurado no existe.",
|
|
334
|
+
"The configured ORP source could not be read.": "No se pudo leer la fuente de ORP configurada.",
|
|
335
|
+
"Unknown ORP source mode.": "Modo de fuente de ORP desconocido.",
|
|
336
|
+
"Manual ORP value is used.": "Se utiliza el valor de ORP manual.",
|
|
337
|
+
"External ORP source is valid.": "La fuente externa de ORP es válida.",
|
|
338
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "El valor de ORP no es válido. Compruebe la medición o el sensor.",
|
|
339
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "La evaluación de ORP está esperando a la bomba de la piscina porque el sensor está en una sección de medición.",
|
|
340
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "La evaluación de ORP espera hasta que la sección de medición se haya estabilizado tras el arranque de la bomba.",
|
|
341
|
+
"ORP trend": "Tendencia de ORP",
|
|
342
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "El valor de ORP está disponible, pero la referencia de pH falta, está desactivada o está fuera del rango esperado. La interpretación de ORP es limitada.",
|
|
343
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "El valor de ORP es bajo. Compruebe manualmente los valores de pH y cloro y evalúe la situación del cuidado del agua.",
|
|
344
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "El valor de ORP es alto. Compruebe si la medición es plausible y evalúe conjuntamente los valores del agua.",
|
|
345
|
+
"ORP value is within the configured reference range.": "El valor de ORP está dentro del rango de referencia configurado.",
|
|
346
|
+
"unknown": "desconocido",
|
|
347
|
+
"Current ORP value": "Valor actual de ORP",
|
|
348
|
+
"pH reference": "Referencia de pH",
|
|
349
|
+
"Status": "Estado",
|
|
350
|
+
"ORP evaluation is disabled.": "La evaluación de ORP está desactivada."
|
|
321
351
|
}
|
package/lib/i18n/fr.json
CHANGED
|
@@ -288,6 +288,13 @@
|
|
|
288
288
|
"pH mixing run finished. Pump was switched off by the pH helper.": "Brassage pH terminé. La pompe a été arrêtée par l'assistant pH.",
|
|
289
289
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "Brassage pH terminé. La pompe n'a pas été arrêtée car un autre assistant est actif.",
|
|
290
290
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "Brassage pH terminé. La pompe était déjà en marche et n'a pas été arrêtée par l'assistant pH.",
|
|
291
|
+
"pH trend": "Tendance pH",
|
|
292
|
+
"Overall pH status": "État général du pH",
|
|
293
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "Le pH augmente très rapidement. Vérifiez le dosage, l'alcalinité et l'équilibre de l'eau.",
|
|
294
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "Le pH augmente nettement. Observez la tendance et vérifiez l'alcalinité et l'équilibre de l'eau.",
|
|
295
|
+
"pH is slowly rising. Continue observing the trend.": "Le pH augmente lentement. Continuez à observer la tendance.",
|
|
296
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "Le pH baisse. Cela peut être plausible après une correction du pH ou un ajout d'eau fraîche.",
|
|
297
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "L'historique pH n'est pas encore suffisant. Collectez davantage de mesures valides.",
|
|
291
298
|
|
|
292
299
|
"No TDS source state configured.": "Aucun état source TDS configuré.",
|
|
293
300
|
"TDS source state configured.": "État source TDS configuré.",
|
|
@@ -317,5 +324,28 @@
|
|
|
317
324
|
"not available": "non disponible",
|
|
318
325
|
"Trend status": "État de la tendance",
|
|
319
326
|
"Overall status": "État général",
|
|
320
|
-
"Recommendation": "Recommandation"
|
|
327
|
+
"Recommendation": "Recommandation",
|
|
328
|
+
"No ORP source state configured.": "Aucun état source ORP configuré.",
|
|
329
|
+
"ORP source state configured.": "État source ORP configuré.",
|
|
330
|
+
"ORP source state could not be subscribed.": "L'état source ORP n'a pas pu être abonné.",
|
|
331
|
+
"ORP input is disabled.": "L'entrée ORP est désactivée.",
|
|
332
|
+
"No valid ORP source is configured.": "Aucune source ORP valide n'est configurée.",
|
|
333
|
+
"The configured ORP source state does not exist.": "L'état source ORP configuré n'existe pas.",
|
|
334
|
+
"The configured ORP source could not be read.": "La source ORP configurée n'a pas pu être lue.",
|
|
335
|
+
"Unknown ORP source mode.": "Mode de source ORP inconnu.",
|
|
336
|
+
"Manual ORP value is used.": "La valeur ORP manuelle est utilisée.",
|
|
337
|
+
"External ORP source is valid.": "La source ORP externe est valide.",
|
|
338
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "La valeur ORP n'est pas valide. Veuillez vérifier la mesure ou le capteur.",
|
|
339
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "L'évaluation ORP attend la pompe de piscine, car le capteur se trouve dans une section de mesure.",
|
|
340
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "L'évaluation ORP attend que la section de mesure se soit stabilisée après le démarrage de la pompe.",
|
|
341
|
+
"ORP trend": "Tendance ORP",
|
|
342
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "La valeur ORP est disponible, mais la référence pH est absente, désactivée ou hors de la plage attendue. L'interprétation ORP est limitée.",
|
|
343
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "La valeur ORP est basse. Vérifiez manuellement les valeurs de pH et de chlore et évaluez la situation de l'entretien de l'eau.",
|
|
344
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "La valeur ORP est élevée. Vérifiez si la mesure est plausible et évaluez les valeurs de l'eau ensemble.",
|
|
345
|
+
"ORP value is within the configured reference range.": "La valeur ORP se situe dans la plage de référence configurée.",
|
|
346
|
+
"unknown": "inconnu",
|
|
347
|
+
"Current ORP value": "Valeur ORP actuelle",
|
|
348
|
+
"pH reference": "Référence pH",
|
|
349
|
+
"Status": "État",
|
|
350
|
+
"ORP evaluation is disabled.": "L'évaluation ORP est désactivée."
|
|
321
351
|
}
|
package/lib/i18n/it.json
CHANGED
|
@@ -288,6 +288,13 @@
|
|
|
288
288
|
"pH mixing run finished. Pump was switched off by the pH helper.": "Ciclo di miscelazione pH terminato. La pompa è stata spenta dall'helper pH.",
|
|
289
289
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "Ciclo di miscelazione pH terminato. La pompa non è stata spenta perché un altro helper è attivo.",
|
|
290
290
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "Ciclo di miscelazione pH terminato. La pompa era già in funzione e non è stata spenta dall'helper pH.",
|
|
291
|
+
"pH trend": "Tendenza pH",
|
|
292
|
+
"Overall pH status": "Stato generale del pH",
|
|
293
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "Il pH sta aumentando molto rapidamente. Controllare il dosaggio, l'alcalinità e l'equilibrio dell'acqua.",
|
|
294
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "Il pH sta aumentando in modo evidente. Osservare la tendenza e controllare l'alcalinità e l'equilibrio dell'acqua.",
|
|
295
|
+
"pH is slowly rising. Continue observing the trend.": "Il pH sta aumentando lentamente. Continuare a osservare la tendenza.",
|
|
296
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "Il pH sta diminuendo. Questo può essere plausibile dopo una correzione del pH o l'aggiunta di acqua fresca.",
|
|
297
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "Non è ancora disponibile uno storico pH sufficiente. Raccogliere altre misurazioni valide.",
|
|
291
298
|
|
|
292
299
|
"No TDS source state configured.": "Nessuno stato sorgente TDS configurato.",
|
|
293
300
|
"TDS source state configured.": "Stato sorgente TDS configurato.",
|
|
@@ -317,5 +324,28 @@
|
|
|
317
324
|
"not available": "non disponibile",
|
|
318
325
|
"Trend status": "Stato della tendenza",
|
|
319
326
|
"Overall status": "Stato generale",
|
|
320
|
-
"Recommendation": "Raccomandazione"
|
|
327
|
+
"Recommendation": "Raccomandazione",
|
|
328
|
+
"No ORP source state configured.": "Nessuno stato sorgente ORP configurato.",
|
|
329
|
+
"ORP source state configured.": "Stato sorgente ORP configurato.",
|
|
330
|
+
"ORP source state could not be subscribed.": "Impossibile sottoscrivere lo stato sorgente ORP.",
|
|
331
|
+
"ORP input is disabled.": "L'ingresso ORP è disattivato.",
|
|
332
|
+
"No valid ORP source is configured.": "Nessuna sorgente ORP valida configurata.",
|
|
333
|
+
"The configured ORP source state does not exist.": "Lo stato sorgente ORP configurato non esiste.",
|
|
334
|
+
"The configured ORP source could not be read.": "Impossibile leggere la sorgente ORP configurata.",
|
|
335
|
+
"Unknown ORP source mode.": "Modalità sorgente ORP sconosciuta.",
|
|
336
|
+
"Manual ORP value is used.": "Viene utilizzato il valore ORP manuale.",
|
|
337
|
+
"External ORP source is valid.": "La sorgente ORP esterna è valida.",
|
|
338
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "Il valore ORP non è valido. Controllare la misurazione o il sensore.",
|
|
339
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "La valutazione ORP attende la pompa della piscina perché il sensore si trova in una sezione di misurazione.",
|
|
340
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "La valutazione ORP attende che la sezione di misurazione si sia stabilizzata dopo l'avvio della pompa.",
|
|
341
|
+
"ORP trend": "Tendenza ORP",
|
|
342
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "Il valore ORP è disponibile, ma il riferimento pH manca, è disattivato o fuori dall'intervallo previsto. L'interpretazione ORP è limitata.",
|
|
343
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "Il valore ORP è basso. Controllare manualmente i valori di pH e cloro e valutare la situazione della cura dell'acqua.",
|
|
344
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "Il valore ORP è alto. Verificare se la misurazione è plausibile e valutare insieme i valori dell'acqua.",
|
|
345
|
+
"ORP value is within the configured reference range.": "Il valore ORP rientra nell'intervallo di riferimento configurato.",
|
|
346
|
+
"unknown": "sconosciuto",
|
|
347
|
+
"Current ORP value": "Valore ORP attuale",
|
|
348
|
+
"pH reference": "Riferimento pH",
|
|
349
|
+
"Status": "Stato",
|
|
350
|
+
"ORP evaluation is disabled.": "La valutazione ORP è disattivata."
|
|
321
351
|
}
|
package/lib/i18n/nl.json
CHANGED
|
@@ -288,6 +288,13 @@
|
|
|
288
288
|
"pH mixing run finished. Pump was switched off by the pH helper.": "pH-mengloop beëindigd. De pomp is door de pH-helper uitgeschakeld.",
|
|
289
289
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "pH-mengloop beëindigd. De pomp is niet uitgeschakeld omdat een andere helper actief is.",
|
|
290
290
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "pH-mengloop beëindigd. De pomp draaide al en is niet door de pH-helper uitgeschakeld.",
|
|
291
|
+
"pH trend": "pH-trend",
|
|
292
|
+
"Overall pH status": "Algemene pH-status",
|
|
293
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "De pH stijgt zeer snel. Controleer dosering, alkaliniteit en waterbalans.",
|
|
294
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "De pH stijgt merkbaar. Observeer de trend en controleer alkaliniteit en waterbalans.",
|
|
295
|
+
"pH is slowly rising. Continue observing the trend.": "De pH stijgt langzaam. Blijf de trend observeren.",
|
|
296
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "De pH daalt. Dit kan plausibel zijn na een pH-correctie of toevoeging van vers water.",
|
|
297
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "Er is nog niet genoeg pH-geschiedenis beschikbaar. Verzamel meer geldige metingen.",
|
|
291
298
|
|
|
292
299
|
"No TDS source state configured.": "Geen TDS-bronstatus geconfigureerd.",
|
|
293
300
|
"TDS source state configured.": "TDS-bronstatus geconfigureerd.",
|
|
@@ -317,5 +324,28 @@
|
|
|
317
324
|
"not available": "niet beschikbaar",
|
|
318
325
|
"Trend status": "Trendstatus",
|
|
319
326
|
"Overall status": "Algemene status",
|
|
320
|
-
"Recommendation": "Aanbeveling"
|
|
327
|
+
"Recommendation": "Aanbeveling",
|
|
328
|
+
"No ORP source state configured.": "Geen ORP-bronstatus geconfigureerd.",
|
|
329
|
+
"ORP source state configured.": "ORP-bronstatus geconfigureerd.",
|
|
330
|
+
"ORP source state could not be subscribed.": "ORP-bronstatus kon niet worden geabonneerd.",
|
|
331
|
+
"ORP input is disabled.": "ORP-ingang is uitgeschakeld.",
|
|
332
|
+
"No valid ORP source is configured.": "Er is geen geldige ORP-bron geconfigureerd.",
|
|
333
|
+
"The configured ORP source state does not exist.": "De geconfigureerde ORP-bronstatus bestaat niet.",
|
|
334
|
+
"The configured ORP source could not be read.": "De geconfigureerde ORP-bron kon niet worden gelezen.",
|
|
335
|
+
"Unknown ORP source mode.": "Onbekende ORP-bronmodus.",
|
|
336
|
+
"Manual ORP value is used.": "Handmatige ORP-waarde wordt gebruikt.",
|
|
337
|
+
"External ORP source is valid.": "Externe ORP-bron is geldig.",
|
|
338
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "De ORP-waarde is ongeldig. Controleer de meting of de sensor.",
|
|
339
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "De ORP-evaluatie wacht op de zwembadpomp omdat de sensor zich in een meetsectie bevindt.",
|
|
340
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "De ORP-evaluatie wacht tot de meetsectie na het starten van de pomp is gestabiliseerd.",
|
|
341
|
+
"ORP trend": "ORP-trend",
|
|
342
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "De ORP-waarde is beschikbaar, maar de pH-referentie ontbreekt, is uitgeschakeld of ligt buiten het verwachte bereik. De ORP-interpretatie is beperkt.",
|
|
343
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "De ORP-waarde is laag. Controleer de pH- en chloorwaarden handmatig en beoordeel de waterverzorgingssituatie.",
|
|
344
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "De ORP-waarde is hoog. Controleer of de meting plausibel is en beoordeel de waterwaarden samen.",
|
|
345
|
+
"ORP value is within the configured reference range.": "De ORP-waarde ligt binnen het geconfigureerde referentiebereik.",
|
|
346
|
+
"unknown": "onbekend",
|
|
347
|
+
"Current ORP value": "Huidige ORP-waarde",
|
|
348
|
+
"pH reference": "pH-referentie",
|
|
349
|
+
"Status": "Status",
|
|
350
|
+
"ORP evaluation is disabled.": "ORP-evaluatie is uitgeschakeld."
|
|
321
351
|
}
|
package/lib/i18n/pl.json
CHANGED
|
@@ -288,6 +288,13 @@
|
|
|
288
288
|
"pH mixing run finished. Pump was switched off by the pH helper.": "Cykl mieszania pH zakończony. Pompa została wyłączona przez helper pH.",
|
|
289
289
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "Cykl mieszania pH zakończony. Pompa nie została wyłączona, ponieważ aktywny jest inny helper.",
|
|
290
290
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "Cykl mieszania pH zakończony. Pompa już pracowała i nie została wyłączona przez helper pH.",
|
|
291
|
+
"pH trend": "Trend pH",
|
|
292
|
+
"Overall pH status": "Ogólny status pH",
|
|
293
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "pH rośnie bardzo szybko. Sprawdź dozowanie, alkaliczność i równowagę wody.",
|
|
294
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "pH wyraźnie rośnie. Obserwuj trend i sprawdź alkaliczność oraz równowagę wody.",
|
|
295
|
+
"pH is slowly rising. Continue observing the trend.": "pH powoli rośnie. Kontynuuj obserwację trendu.",
|
|
296
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "pH spada. Może to być uzasadnione po korekcie pH lub dodaniu świeżej wody.",
|
|
297
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "Nie ma jeszcze wystarczającej historii pH. Zbierz więcej prawidłowych pomiarów.",
|
|
291
298
|
|
|
292
299
|
"No TDS source state configured.": "Nie skonfigurowano stanu źródła TDS.",
|
|
293
300
|
"TDS source state configured.": "Skonfigurowano stan źródła TDS.",
|
|
@@ -317,5 +324,28 @@
|
|
|
317
324
|
"not available": "niedostępne",
|
|
318
325
|
"Trend status": "Status trendu",
|
|
319
326
|
"Overall status": "Status ogólny",
|
|
320
|
-
"Recommendation": "Zalecenie"
|
|
327
|
+
"Recommendation": "Zalecenie",
|
|
328
|
+
"No ORP source state configured.": "Nie skonfigurowano stanu źródłowego ORP.",
|
|
329
|
+
"ORP source state configured.": "Skonfigurowano stan źródłowy ORP.",
|
|
330
|
+
"ORP source state could not be subscribed.": "Nie można subskrybować stanu źródłowego ORP.",
|
|
331
|
+
"ORP input is disabled.": "Wejście ORP jest wyłączone.",
|
|
332
|
+
"No valid ORP source is configured.": "Nie skonfigurowano prawidłowego źródła ORP.",
|
|
333
|
+
"The configured ORP source state does not exist.": "Skonfigurowany stan źródłowy ORP nie istnieje.",
|
|
334
|
+
"The configured ORP source could not be read.": "Nie można odczytać skonfigurowanego źródła ORP.",
|
|
335
|
+
"Unknown ORP source mode.": "Nieznany tryb źródła ORP.",
|
|
336
|
+
"Manual ORP value is used.": "Używana jest ręczna wartość ORP.",
|
|
337
|
+
"External ORP source is valid.": "Zewnętrzne źródło ORP jest prawidłowe.",
|
|
338
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "Wartość ORP jest nieprawidłowa. Sprawdź pomiar lub czujnik.",
|
|
339
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "Ocena ORP czeka na pompę basenu, ponieważ czujnik znajduje się w sekcji pomiarowej.",
|
|
340
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "Ocena ORP czeka, aż sekcja pomiarowa ustabilizuje się po uruchomieniu pompy.",
|
|
341
|
+
"ORP trend": "Trend ORP",
|
|
342
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "Wartość ORP jest dostępna, ale odniesienie pH jest brakujące, wyłączone lub poza oczekiwanym zakresem. Interpretacja ORP jest ograniczona.",
|
|
343
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "Wartość ORP jest niska. Sprawdź ręcznie wartości pH i chloru oraz oceń sytuację pielęgnacji wody.",
|
|
344
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "Wartość ORP jest wysoka. Sprawdź, czy pomiar jest wiarygodny, i oceń wartości wody łącznie.",
|
|
345
|
+
"ORP value is within the configured reference range.": "Wartość ORP mieści się w skonfigurowanym zakresie odniesienia.",
|
|
346
|
+
"unknown": "nieznany",
|
|
347
|
+
"Current ORP value": "Aktualna wartość ORP",
|
|
348
|
+
"pH reference": "Odniesienie pH",
|
|
349
|
+
"Status": "Status",
|
|
350
|
+
"ORP evaluation is disabled.": "Ocena ORP jest wyłączona."
|
|
321
351
|
}
|
package/lib/i18n/pt.json
CHANGED
|
@@ -288,6 +288,13 @@
|
|
|
288
288
|
"pH mixing run finished. Pump was switched off by the pH helper.": "Mistura de pH concluída. A bomba foi desligada pelo helper de pH.",
|
|
289
289
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "Mistura de pH concluída. A bomba não foi desligada porque outro helper está ativo.",
|
|
290
290
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "Mistura de pH concluída. A bomba já estava em funcionamento e não foi desligada pelo helper de pH.",
|
|
291
|
+
"pH trend": "Tendência de pH",
|
|
292
|
+
"Overall pH status": "Estado geral do pH",
|
|
293
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "O pH está a subir muito rapidamente. Verifique a dosagem, a alcalinidade e o equilíbrio da água.",
|
|
294
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "O pH está a subir de forma evidente. Observe a tendência e verifique a alcalinidade e o equilíbrio da água.",
|
|
295
|
+
"pH is slowly rising. Continue observing the trend.": "O pH está a subir lentamente. Continue a observar a tendência.",
|
|
296
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "O pH está a descer. Isto pode ser plausível após uma correção de pH ou adição de água fresca.",
|
|
297
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "Ainda não há histórico de pH suficiente disponível. Recolha mais medições válidas.",
|
|
291
298
|
|
|
292
299
|
"No TDS source state configured.": "Nenhum estado de origem de TDS configurado.",
|
|
293
300
|
"TDS source state configured.": "Estado de origem de TDS configurado.",
|
|
@@ -317,5 +324,28 @@
|
|
|
317
324
|
"not available": "não disponível",
|
|
318
325
|
"Trend status": "Estado da tendência",
|
|
319
326
|
"Overall status": "Estado geral",
|
|
320
|
-
"Recommendation": "Recomendação"
|
|
327
|
+
"Recommendation": "Recomendação",
|
|
328
|
+
"No ORP source state configured.": "Nenhum estado de origem ORP configurado.",
|
|
329
|
+
"ORP source state configured.": "Estado de origem ORP configurado.",
|
|
330
|
+
"ORP source state could not be subscribed.": "Não foi possível subscrever o estado de origem ORP.",
|
|
331
|
+
"ORP input is disabled.": "A entrada ORP está desativada.",
|
|
332
|
+
"No valid ORP source is configured.": "Nenhuma origem ORP válida está configurada.",
|
|
333
|
+
"The configured ORP source state does not exist.": "O estado de origem ORP configurado não existe.",
|
|
334
|
+
"The configured ORP source could not be read.": "Não foi possível ler a origem ORP configurada.",
|
|
335
|
+
"Unknown ORP source mode.": "Modo de origem ORP desconhecido.",
|
|
336
|
+
"Manual ORP value is used.": "O valor ORP manual é utilizado.",
|
|
337
|
+
"External ORP source is valid.": "A origem ORP externa é válida.",
|
|
338
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "O valor ORP é inválido. Verifique a medição ou o sensor.",
|
|
339
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "A avaliação ORP está à espera da bomba da piscina porque o sensor está numa secção de medição.",
|
|
340
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "A avaliação ORP aguarda até que a secção de medição estabilize após o arranque da bomba.",
|
|
341
|
+
"ORP trend": "Tendência ORP",
|
|
342
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "O valor ORP está disponível, mas a referência de pH está em falta, desativada ou fora do intervalo esperado. A interpretação ORP é limitada.",
|
|
343
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "O valor ORP está baixo. Verifique manualmente os valores de pH e cloro e avalie a situação do tratamento da água.",
|
|
344
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "O valor ORP está alto. Verifique se a medição é plausível e avalie os valores da água em conjunto.",
|
|
345
|
+
"ORP value is within the configured reference range.": "O valor ORP está dentro do intervalo de referência configurado.",
|
|
346
|
+
"unknown": "desconhecido",
|
|
347
|
+
"Current ORP value": "Valor ORP atual",
|
|
348
|
+
"pH reference": "Referência de pH",
|
|
349
|
+
"Status": "Estado",
|
|
350
|
+
"ORP evaluation is disabled.": "A avaliação ORP está desativada."
|
|
321
351
|
}
|
package/lib/i18n/ru.json
CHANGED
|
@@ -288,6 +288,13 @@
|
|
|
288
288
|
"pH mixing run finished. Pump was switched off by the pH helper.": "Цикл перемешивания pH завершен. Насос был выключен helper pH.",
|
|
289
289
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "Цикл перемешивания pH завершен. Насос не был выключен, потому что активен другой helper.",
|
|
290
290
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "Цикл перемешивания pH завершен. Насос уже работал и не был выключен helper pH.",
|
|
291
|
+
"pH trend": "Тренд pH",
|
|
292
|
+
"Overall pH status": "Общий статус pH",
|
|
293
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "pH очень быстро повышается. Проверьте дозирование, щелочность и водный баланс.",
|
|
294
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "pH заметно повышается. Наблюдайте за трендом и проверьте щелочность и водный баланс.",
|
|
295
|
+
"pH is slowly rising. Continue observing the trend.": "pH медленно повышается. Продолжайте наблюдать за трендом.",
|
|
296
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "pH снижается. Это может быть допустимо после коррекции pH или добавления свежей воды.",
|
|
297
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "Пока недостаточно истории pH. Соберите больше действительных измерений.",
|
|
291
298
|
|
|
292
299
|
"No TDS source state configured.": "Состояние источника TDS не настроено.",
|
|
293
300
|
"TDS source state configured.": "Состояние источника TDS настроено.",
|
|
@@ -317,5 +324,28 @@
|
|
|
317
324
|
"not available": "недоступно",
|
|
318
325
|
"Trend status": "Статус тенденции",
|
|
319
326
|
"Overall status": "Общий статус",
|
|
320
|
-
"Recommendation": "Рекомендация"
|
|
327
|
+
"Recommendation": "Рекомендация",
|
|
328
|
+
"No ORP source state configured.": "Не настроено состояние-источник ORP.",
|
|
329
|
+
"ORP source state configured.": "Состояние-источник ORP настроено.",
|
|
330
|
+
"ORP source state could not be subscribed.": "Не удалось подписаться на состояние-источник ORP.",
|
|
331
|
+
"ORP input is disabled.": "Вход ORP отключен.",
|
|
332
|
+
"No valid ORP source is configured.": "Не настроен действительный источник ORP.",
|
|
333
|
+
"The configured ORP source state does not exist.": "Настроенное состояние-источник ORP не существует.",
|
|
334
|
+
"The configured ORP source could not be read.": "Не удалось прочитать настроенный источник ORP.",
|
|
335
|
+
"Unknown ORP source mode.": "Неизвестный режим источника ORP.",
|
|
336
|
+
"Manual ORP value is used.": "Используется ручное значение ORP.",
|
|
337
|
+
"External ORP source is valid.": "Внешний источник ORP действителен.",
|
|
338
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "Значение ORP недействительно. Проверьте измерение или датчик.",
|
|
339
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "Оценка ORP ожидает насос бассейна, так как датчик находится в измерительном участке.",
|
|
340
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "Оценка ORP ожидает, пока измерительный участок стабилизируется после запуска насоса.",
|
|
341
|
+
"ORP trend": "Тренд ORP",
|
|
342
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "Значение ORP доступно, но опорное значение pH отсутствует, отключено или находится вне ожидаемого диапазона. Интерпретация ORP ограничена.",
|
|
343
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "Значение ORP низкое. Проверьте значения pH и хлора вручную и оцените ситуацию с уходом за водой.",
|
|
344
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "Значение ORP высокое. Проверьте правдоподобность измерения и оцените параметры воды вместе.",
|
|
345
|
+
"ORP value is within the configured reference range.": "Значение ORP находится в настроенном опорном диапазоне.",
|
|
346
|
+
"unknown": "неизвестно",
|
|
347
|
+
"Current ORP value": "Текущее значение ORP",
|
|
348
|
+
"pH reference": "Опорное значение pH",
|
|
349
|
+
"Status": "Статус",
|
|
350
|
+
"ORP evaluation is disabled.": "Оценка ORP отключена."
|
|
321
351
|
}
|
package/lib/i18n/uk.json
CHANGED
|
@@ -288,6 +288,13 @@
|
|
|
288
288
|
"pH mixing run finished. Pump was switched off by the pH helper.": "Цикл перемішування pH завершено. Насос було вимкнено helper pH.",
|
|
289
289
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "Цикл перемішування pH завершено. Насос не було вимкнено, оскільки активний інший helper.",
|
|
290
290
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "Цикл перемішування pH завершено. Насос уже працював і не був вимкнений helper pH.",
|
|
291
|
+
"pH trend": "Тренд pH",
|
|
292
|
+
"Overall pH status": "Загальний статус pH",
|
|
293
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "pH дуже швидко підвищується. Перевірте дозування, лужність і баланс води.",
|
|
294
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "pH помітно підвищується. Спостерігайте за трендом і перевірте лужність та баланс води.",
|
|
295
|
+
"pH is slowly rising. Continue observing the trend.": "pH повільно підвищується. Продовжуйте спостерігати за трендом.",
|
|
296
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "pH знижується. Це може бути правдоподібним після корекції pH або додавання свіжої води.",
|
|
297
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "Історії pH поки недостатньо. Зберіть більше дійсних вимірювань.",
|
|
291
298
|
|
|
292
299
|
"No TDS source state configured.": "Стан джерела TDS не налаштовано.",
|
|
293
300
|
"TDS source state configured.": "Стан джерела TDS налаштовано.",
|
|
@@ -317,5 +324,28 @@
|
|
|
317
324
|
"not available": "недоступно",
|
|
318
325
|
"Trend status": "Статус тенденції",
|
|
319
326
|
"Overall status": "Загальний статус",
|
|
320
|
-
"Recommendation": "Рекомендація"
|
|
327
|
+
"Recommendation": "Рекомендація",
|
|
328
|
+
"No ORP source state configured.": "Не налаштовано стан-джерело ORP.",
|
|
329
|
+
"ORP source state configured.": "Стан-джерело ORP налаштовано.",
|
|
330
|
+
"ORP source state could not be subscribed.": "Не вдалося підписатися на стан-джерело ORP.",
|
|
331
|
+
"ORP input is disabled.": "Вхід ORP вимкнено.",
|
|
332
|
+
"No valid ORP source is configured.": "Не налаштовано дійсне джерело ORP.",
|
|
333
|
+
"The configured ORP source state does not exist.": "Налаштований стан-джерело ORP не існує.",
|
|
334
|
+
"The configured ORP source could not be read.": "Не вдалося прочитати налаштоване джерело ORP.",
|
|
335
|
+
"Unknown ORP source mode.": "Невідомий режим джерела ORP.",
|
|
336
|
+
"Manual ORP value is used.": "Використовується ручне значення ORP.",
|
|
337
|
+
"External ORP source is valid.": "Зовнішнє джерело ORP є дійсним.",
|
|
338
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "Значення ORP недійсне. Перевірте вимірювання або датчик.",
|
|
339
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "Оцінювання ORP очікує на насос басейну, оскільки датчик розташований у вимірювальній ділянці.",
|
|
340
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "Оцінювання ORP очікує, доки вимірювальна ділянка стабілізується після запуску насоса.",
|
|
341
|
+
"ORP trend": "Тренд ORP",
|
|
342
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "Значення ORP доступне, але еталон pH відсутній, вимкнений або поза очікуваним діапазоном. Інтерпретація ORP обмежена.",
|
|
343
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "Значення ORP низьке. Перевірте значення pH і хлору вручну та оцініть ситуацію з доглядом за водою.",
|
|
344
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "Значення ORP високе. Перевірте, чи вимірювання є правдоподібним, і оцініть показники води разом.",
|
|
345
|
+
"ORP value is within the configured reference range.": "Значення ORP знаходиться в налаштованому еталонному діапазоні.",
|
|
346
|
+
"unknown": "невідомо",
|
|
347
|
+
"Current ORP value": "Поточне значення ORP",
|
|
348
|
+
"pH reference": "Еталон pH",
|
|
349
|
+
"Status": "Статус",
|
|
350
|
+
"ORP evaluation is disabled.": "Оцінювання ORP вимкнено."
|
|
321
351
|
}
|
package/lib/i18n/zh-cn.json
CHANGED
|
@@ -288,6 +288,13 @@
|
|
|
288
288
|
"pH mixing run finished. Pump was switched off by the pH helper.": "pH 混合运行已结束。泵已由 pH helper 关闭。",
|
|
289
289
|
"pH mixing run finished. Pump was not switched off because another helper is active.": "pH 混合运行已结束。泵未关闭,因为另一个 helper 处于活动状态。",
|
|
290
290
|
"pH mixing run finished. Pump was already running and was not switched off by the pH helper.": "pH 混合运行已结束。泵已在运行,未由 pH helper 关闭。",
|
|
291
|
+
"pH trend": "pH 趋势",
|
|
292
|
+
"Overall pH status": "总体 pH 状态",
|
|
293
|
+
"pH is rising very quickly. Check dosing, alkalinity and water balance.": "pH 上升非常快。请检查投药、碱度和水质平衡。",
|
|
294
|
+
"pH is rising noticeably. Observe the trend and check alkalinity and water balance.": "pH 明显上升。请观察趋势并检查碱度和水质平衡。",
|
|
295
|
+
"pH is slowly rising. Continue observing the trend.": "pH 正在缓慢上升。请继续观察趋势。",
|
|
296
|
+
"pH is falling. This can be plausible after pH correction or fresh water.": "pH 正在下降。这在 pH 校正或加入新水后可能是合理的。",
|
|
297
|
+
"Not enough pH history is available yet. Collect more valid measurements.": "pH 历史数据尚不足。请收集更多有效测量值。",
|
|
291
298
|
|
|
292
299
|
"No TDS source state configured.": "未配置 TDS 源状态。",
|
|
293
300
|
"TDS source state configured.": "已配置 TDS 源状态。",
|
|
@@ -317,5 +324,28 @@
|
|
|
317
324
|
"not available": "不可用",
|
|
318
325
|
"Trend status": "趋势状态",
|
|
319
326
|
"Overall status": "总体状态",
|
|
320
|
-
"Recommendation": "建议"
|
|
327
|
+
"Recommendation": "建议",
|
|
328
|
+
"No ORP source state configured.": "未配置 ORP 源状态。",
|
|
329
|
+
"ORP source state configured.": "ORP 源状态已配置。",
|
|
330
|
+
"ORP source state could not be subscribed.": "无法订阅 ORP 源状态。",
|
|
331
|
+
"ORP input is disabled.": "ORP 输入已禁用。",
|
|
332
|
+
"No valid ORP source is configured.": "未配置有效的 ORP 源。",
|
|
333
|
+
"The configured ORP source state does not exist.": "配置的 ORP 源状态不存在。",
|
|
334
|
+
"The configured ORP source could not be read.": "无法读取配置的 ORP 源。",
|
|
335
|
+
"Unknown ORP source mode.": "未知的 ORP 源模式。",
|
|
336
|
+
"Manual ORP value is used.": "正在使用手动 ORP 值。",
|
|
337
|
+
"External ORP source is valid.": "外部 ORP 源有效。",
|
|
338
|
+
"The ORP value is invalid. Please check the measurement or sensor.": "ORP 值无效。请检查测量值或传感器。",
|
|
339
|
+
"ORP evaluation is waiting for the pool pump because the sensor is in a measurement section.": "ORP 评估正在等待泳池泵,因为传感器位于测量段中。",
|
|
340
|
+
"ORP evaluation is waiting until the measurement section has stabilized after pump start.": "ORP 评估正在等待测量段在泵启动后稳定。",
|
|
341
|
+
"ORP trend": "ORP 趋势",
|
|
342
|
+
"ORP value is available, but pH reference is missing, disabled or outside the expected range. ORP interpretation is limited.": "ORP 值可用,但 pH 参考值缺失、已禁用或超出预期范围。ORP 解读受限。",
|
|
343
|
+
"ORP value is low. Check pH and chlorine values manually and evaluate the water care situation.": "ORP 值偏低。请手动检查 pH 和氯值,并评估水质维护情况。",
|
|
344
|
+
"ORP value is high. Check whether the measurement is plausible and evaluate the water values together.": "ORP 值偏高。请检查测量值是否可信,并结合各项水质值进行评估。",
|
|
345
|
+
"ORP value is within the configured reference range.": "ORP 值在配置的参考范围内。",
|
|
346
|
+
"unknown": "未知",
|
|
347
|
+
"Current ORP value": "当前 ORP 值",
|
|
348
|
+
"pH reference": "pH 参考值",
|
|
349
|
+
"Status": "状态",
|
|
350
|
+
"ORP evaluation is disabled.": "ORP 评估已禁用。"
|
|
321
351
|
}
|