iobroker.govee-smart 2.18.2 → 2.20.0
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 +13 -41
- package/admin/i18n/de.json +27 -11
- package/admin/i18n/en.json +23 -7
- package/admin/i18n/es.json +23 -7
- package/admin/i18n/fr.json +22 -6
- package/admin/i18n/it.json +22 -6
- package/admin/i18n/nl.json +23 -7
- package/admin/i18n/pl.json +22 -6
- package/admin/i18n/pt.json +23 -7
- package/admin/i18n/ru.json +22 -6
- package/admin/i18n/uk.json +22 -6
- package/admin/i18n/zh-cn.json +22 -6
- package/build/lib/capability-mapper.js +40 -24
- package/build/lib/capability-mapper.js.map +2 -2
- package/build/lib/command-router.js +35 -26
- package/build/lib/command-router.js.map +2 -2
- package/build/lib/device-manager/cache.js +2 -1
- package/build/lib/device-manager/cache.js.map +2 -2
- package/build/lib/device-manager/library-loader.js +220 -0
- package/build/lib/device-manager/library-loader.js.map +7 -0
- package/build/lib/device-manager.js +54 -281
- package/build/lib/device-manager.js.map +3 -3
- package/build/lib/govee-lan-client.js +46 -5
- package/build/lib/govee-lan-client.js.map +2 -2
- package/build/lib/govee-mqtt-client.js +29 -2
- package/build/lib/govee-mqtt-client.js.map +2 -2
- package/build/lib/group-fanout.js +1 -1
- package/build/lib/group-fanout.js.map +2 -2
- package/build/lib/handlers/cloud-creds-handler.js +63 -12
- package/build/lib/handlers/cloud-creds-handler.js.map +2 -2
- package/build/lib/handlers/cloud-state-loader.js +36 -29
- package/build/lib/handlers/cloud-state-loader.js.map +2 -2
- package/build/lib/handlers/connection-state.js +9 -1
- package/build/lib/handlers/connection-state.js.map +2 -2
- package/build/lib/handlers/device-events.js +2 -2
- package/build/lib/handlers/device-events.js.map +2 -2
- package/build/lib/handlers/diagnostics-handler.js +3 -2
- package/build/lib/handlers/diagnostics-handler.js.map +2 -2
- package/build/lib/handlers/state-change-router.js +14 -12
- package/build/lib/handlers/state-change-router.js.map +2 -2
- package/build/lib/http-client.js +17 -0
- package/build/lib/http-client.js.map +2 -2
- package/build/lib/message-router.js +34 -21
- package/build/lib/message-router.js.map +2 -2
- package/build/lib/rate-limiter.js +50 -4
- package/build/lib/rate-limiter.js.map +2 -2
- package/build/lib/reconnecting-mqtt-client.js +5 -0
- package/build/lib/reconnecting-mqtt-client.js.map +2 -2
- package/build/lib/segment-wizard.js +3 -2
- package/build/lib/segment-wizard.js.map +2 -2
- package/build/lib/sku-cache.js +5 -4
- package/build/lib/sku-cache.js.map +2 -2
- package/build/lib/snapshot-handler.js +6 -5
- package/build/lib/snapshot-handler.js.map +2 -2
- package/build/lib/state-manager.js +108 -44
- package/build/lib/state-manager.js.map +2 -2
- package/build/lib/types.js +6 -0
- package/build/lib/types.js.map +2 -2
- package/build/main.js +41 -15
- package/build/main.js.map +2 -2
- package/io-package.json +53 -51
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -94,6 +94,19 @@ This adapter's MQTT authentication and BLE-over-LAN (ptReal) protocol implementa
|
|
|
94
94
|
Placeholder for the next version (at the beginning of the line):
|
|
95
95
|
### **WORK IN PROGRESS**
|
|
96
96
|
-->
|
|
97
|
+
### 2.20.0 (2026-07-11)
|
|
98
|
+
|
|
99
|
+
- Channel names and the device-info labels such as Name, Model, Online and IP address now follow the ioBroker system language instead of always showing English.
|
|
100
|
+
- Clearer Cloud API feedback: the admin "test login" button reports the real login result, and a malformed API key now gives a plain "invalid key" message instead of a generic failure.
|
|
101
|
+
- Sensor-only setups are now told, both in the admin and at startup, that a Govee account login is required to receive sensor data.
|
|
102
|
+
- Actions that used to fail quietly now report it — the manual device-sync button surfaces errors, and commands queued behind a rate limit settle with their real success or failure.
|
|
103
|
+
- A network error on a manually pinned LAN interface is now raised as an actionable problem with a fix hint, instead of passing unnoticed.
|
|
104
|
+
|
|
105
|
+
### 2.19.0 (2026-07-04)
|
|
106
|
+
|
|
107
|
+
- Device log lines now consistently name devices as "name (model)" — cache maintenance, command errors and wizard messages included, no more bare model/address labels
|
|
108
|
+
- The credentials entry disappears from the object tree — login tokens stay saved in encrypted form, just no longer visible as an object
|
|
109
|
+
|
|
97
110
|
### 2.18.2 (2026-07-03)
|
|
98
111
|
|
|
99
112
|
- Internal refactoring. No user-facing changes.
|
|
@@ -109,47 +122,6 @@ This adapter's MQTT authentication and BLE-over-LAN (ptReal) protocol implementa
|
|
|
109
122
|
- The persisted MQTT credentials are no longer a visible datapoint (`info.mqttCredentials` is gone) — they moved to an internal, non-loggable store, still encrypted.
|
|
110
123
|
- `info.appVersionDrift` is gone — the adapter now keeps its Govee-app version current on its own, so it keeps working when Govee updates their app (no adapter update needed).
|
|
111
124
|
|
|
112
|
-
### 2.17.0 (2026-07-01)
|
|
113
|
-
|
|
114
|
-
- **Breaking:** colour datapoints renamed to snake_case — e.g. `control.colorRgb` → `control.color_rgb`, and the colour-temperature one likewise (devices + groups). Update your scripts.
|
|
115
|
-
- Security: the Govee Cloud API key can no longer leak into the ioBroker log — it was written in plaintext on the cloud-events connection and is now masked.
|
|
116
|
-
- Security: the diagnostics export (the JSON you paste into a GitHub issue) no longer contains device or gateway secrets — a gateway's secret key and push topic are now masked.
|
|
117
|
-
- Security: a spoofed LAN discovery reply can no longer redirect a device's commands to another IP — the device address is taken from the real network source, not the packet.
|
|
118
|
-
- Robustness: the Admin "Test login" button is now rate-limited, so repeated clicks can no longer trigger a burst of Govee logins that could get your account temporarily locked.
|
|
119
|
-
- Security: a hostile or misbehaving device on your network can no longer flood the adapter with fake device announcements and slow it down — new devices are now bounded.
|
|
120
|
-
- Fixed: a device you delete from your Govee account is now removed from the adapter on the next cloud refresh (e.g. after a restart), instead of lingering as a phantom device for up to two weeks.
|
|
121
|
-
- New: a "Manually sync devices" button (`info.manual_sync_devices`) — set it to true to sync the device list with your Govee account on demand (add new, drop deleted) without a restart.
|
|
122
|
-
- Fixed: multi-colour DIY scenes activated over the local network now load correctly — longer scenes could previously be corrupted and silently fail to apply.
|
|
123
|
-
- Fixed: after you remove a device and add it again, its info states (name, model, …) are recreated correctly instead of leaving "has no existing object" warnings until the next restart.
|
|
124
|
-
- Fixed: if a Govee push/cloud-events connection connects but can't subscribe (a rare server hiccup), the adapter no longer reconnects every few seconds — the retry now backs off normally.
|
|
125
|
-
- Fixed: the admin "Test login" button now waits for the real MQTT connection before reporting — valid Govee account credentials no longer show a false "MQTT not up, restart the adapter" message.
|
|
126
|
-
- Fixed: on lamps whose music modes start at zero, the first mode was unreachable and "off" was missing — the music-mode selector is fixed. **Breaking:** its numbers shift by one, adjust scripts.
|
|
127
|
-
- Fixed: cloud snapshots whose value is a plain number are no longer dropped from the snapshot dropdown, and an entry with an empty value no longer shows up as a phantom option.
|
|
128
|
-
- Fixed: clearing the preset-scene selector no longer fires a spurious empty scene command.
|
|
129
|
-
- Fixed: DIY scenes you create in the Govee app now show up in the DIY dropdown after a reload, instead of only on the very first load.
|
|
130
|
-
- Fixed: a malformed `segments.command` (e.g. `;` instead of `:`) now logs a clear warning with the expected syntax instead of being silently ignored.
|
|
131
|
-
- Fixed: a command to a group with no reachable members (or where every member fails) is no longer reported as successful — it warns and leaves the state un-acknowledged, like a single device.
|
|
132
|
-
- Fixed: setting music sensitivity or auto-color on a LAN-controlled light no longer silently appears to succeed — the adapter now makes clear only the music mode applies locally.
|
|
133
|
-
- Fixed: an out-of-range segment range in `segments.command` (e.g. `0-2000000000`) is now clamped to the protocol limit instead of briefly freezing the adapter while it expands the range.
|
|
134
|
-
- Fixed: the segment-detection wizard now leaves your light off after it finishes or is cancelled if it was off before — it no longer leaves a light on that you had switched off.
|
|
135
|
-
- Fixed: the segment-detection wizard now restores your strip's original per-segment gradient on finish/abort instead of flattening it to a single colour — a uniformly-coloured strip is unaffected.
|
|
136
|
-
- Fixed: starting the segment-detection wizard twice in quick succession can no longer open two overlapping sessions.
|
|
137
|
-
- Fixed: the Govee account email field no longer shows a "valid email" error when you leave it empty — LAN-only and API-key-only setups no longer see a false validation error.
|
|
138
|
-
- Fixed: per-segment colour and brightness now show a default value instead of reading as null in visualizations before the first change.
|
|
139
|
-
- Fixed: sensor readings (temperature/humidity/battery/CO₂) now default to 0 instead of null in visualizations before the first reading arrives.
|
|
140
|
-
- Fixed: device groups no longer expose a meaningless "verified" trust-tier datapoint (the trust tier only applies to real devices, not groups).
|
|
141
|
-
- Fixed: cleaner shutdown/restart — the adapter no longer opens a cloud connection or reports a stray error after it has been told to stop.
|
|
142
|
-
- Fixed: a broken rate-limit reply from Govee no longer causes rapid repeated retries — the adapter now waits at least 5 seconds before trying again.
|
|
143
|
-
- Fixed: under heavy cloud load a fresh control command (power/brightness) is no longer dropped in favour of queued scene activations.
|
|
144
|
-
- Fixed: a LAN light no longer loses its power and colour controls after a cloud data refresh.
|
|
145
|
-
- Added: device catalog entries for the H5109 Pool Thermometer and H1630 Lantern Floor Lamp (user-reported) — they are now recognised instead of logging a "not supported" warning.
|
|
146
|
-
- Fixed: a sensor sending fresh readings now shows `info.online = true` even when Govee's cloud wrongly reports it offline (e.g. gateway thermometers) — online is derived from data freshness.
|
|
147
|
-
- Fixed: temperature-only sensors no longer keep a phantom humidity datapoint stuck at 0 — a device with no humidity sensor drops it, while a real thermo-hygrometer keeps its humidity.
|
|
148
|
-
- Fixed: a rejected Govee API key is now always reported as "API key rejected — check Govee API key" and stops the retry loop, instead of a generic error and retrying a bad key forever.
|
|
149
|
-
|
|
150
|
-
### 2.16.2 (2026-06-16) — stable
|
|
151
|
-
- On hosts with multiple network interfaces, LAN device discovery now uses the selected interface for outgoing traffic, so it no longer misses devices by scanning on the wrong one.
|
|
152
|
-
|
|
153
125
|
[Older changelogs can be found there](CHANGELOG_OLD.md)
|
|
154
126
|
|
|
155
127
|
## Support
|
package/admin/i18n/de.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"abortRestart": "
|
|
2
|
+
"abortRestart": "du kannst den Assistenten jederzeit neu starten.",
|
|
3
3
|
"abortRestored": "Der Strip wurde auf den vorherigen Zustand zurückgesetzt.",
|
|
4
4
|
"abortTitle": "Assistent abgebrochen.",
|
|
5
5
|
"aboutInfo": "Dieser Adapter ist kostenlos und quelloffen. Wenn er dir nützlich ist, unterstütze gerne die Entwicklung.",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"cloudHeader": "Cloud API (optional)",
|
|
20
20
|
"cloudInfo": "Govee API-Key eingeben um Gerätenamen, Szenen und Segmentsteuerung zu aktivieren. Den Key gibt es in der Govee Home App unter Account > Einstellungen > Über uns > API-Key beantragen.",
|
|
21
21
|
"cloudSnapshot": "Cloud-Snapshot",
|
|
22
|
-
"cloudSnapshotDesc": "Snapshots, die
|
|
22
|
+
"cloudSnapshotDesc": "Snapshots, die du in der Govee-Home-App gespeichert hast. Bei Auswahl wird der Zustand auf dem Gerät wiederhergestellt.",
|
|
23
23
|
"co2": "CO₂",
|
|
24
24
|
"color": "Farbe",
|
|
25
25
|
"colorRgb": "Farbe RGB",
|
|
@@ -65,11 +65,9 @@
|
|
|
65
65
|
"humidity": "Luftfeuchtigkeit",
|
|
66
66
|
"iceBucketFull": "Eisbehälter voll",
|
|
67
67
|
"idle": "Kein Assistent aktiv. Wähle oben einen LED-Strip und klicke ▶ Start.",
|
|
68
|
-
"infoAppVersionDrift": "Govee App Versionsabweichung",
|
|
69
68
|
"infoCloudConnected": "Cloud-API verbunden",
|
|
70
69
|
"infoConnection": "Adapter verbunden",
|
|
71
70
|
"infoMqttConnected": "MQTT verbunden",
|
|
72
|
-
"infoMqttCredentials": "Gespeicherte MQTT-Anmeldedaten",
|
|
73
71
|
"infoOpenapiMqttConnected": "Govee OpenAPI MQTT verbunden",
|
|
74
72
|
"infoWizardStatus": "Segment-Wizard Status",
|
|
75
73
|
"information": "Information",
|
|
@@ -97,19 +95,19 @@
|
|
|
97
95
|
"mqttAuthLoginFailed": "Login fehlgeschlagen: %s",
|
|
98
96
|
"mqttAuthLoginNoMqtt": "Login angenommen, MQTT-Verbindung steht aber noch nicht — Adapter neu starten.",
|
|
99
97
|
"mqttAuthLoginOk": "Login erfolgreich — Echtzeit-Status-Updates aktiv.",
|
|
100
|
-
"mqttAuthNeedCredentials": "
|
|
98
|
+
"mqttAuthNeedCredentials": "E-Mail + Passwort in den Adapter-Einstellungen nötig.",
|
|
101
99
|
"mqttAuthPasswordRejected": "Passwort wurde von Govee abgelehnt.",
|
|
102
100
|
"mqttAuthRateLimited": "Govee meldet Rate-Limit — bitte später erneut versuchen.",
|
|
103
101
|
"mqttAuthThrottled": "Bitte %ss warten — gerade wurde schon ein Code angefordert.",
|
|
104
102
|
"mqttAuthUnknownAction": "Unbekannte Aktion '%s'.",
|
|
105
|
-
"mqttAuthVerifyRequired": "Govee verlangt 2-Faktor-Bestätigung. Bitte '
|
|
103
|
+
"mqttAuthVerifyRequired": "Govee verlangt 2-Faktor-Bestätigung. Bitte 'Code anfordern' klicken, Code aus der E-Mail eintragen und Speichern.",
|
|
106
104
|
"mqttHeader": "Govee Account (optional)",
|
|
107
|
-
"mqttInfo": "Govee-Zugangsdaten eingeben um Echtzeit-Statusupdates über MQTT zu aktivieren.
|
|
105
|
+
"mqttInfo": "Govee-Zugangsdaten eingeben, um Echtzeit-Statusupdates über MQTT zu aktivieren. Außerdem nötig für Sensor-Messwerte (Thermometer, Hygrometer, CO2-Monitore) und Govee-Gruppensteuerung — ohne Konto liefern Sensoren keine Werte.",
|
|
108
106
|
"musicAutoColor": "Musik Auto-Farbe",
|
|
109
107
|
"musicMode": "Musik-Modus",
|
|
110
108
|
"musicSensitivity": "Musik-Empfindlichkeit",
|
|
111
109
|
"networkInterfaceLabel": "Netzwerk-Interface",
|
|
112
|
-
"networkInterfaceTooltip": "Netzwerk-Interface für
|
|
110
|
+
"networkInterfaceTooltip": "Netzwerk-Interface für LAN-Discovery und -Steuerung. Standard (0.0.0.0 = alle Interfaces) beibehalten, außer dieser Host hat mehrere Netzwerk-Interfaces.",
|
|
113
111
|
"online": "Online",
|
|
114
112
|
"passwordLabel": "Passwort",
|
|
115
113
|
"power": "Ein/Aus",
|
|
@@ -134,7 +132,7 @@
|
|
|
134
132
|
"twoFaCodeLabel": "Bestätigungs-Code",
|
|
135
133
|
"twoFaCodeTooltip": "Einmal-Code aus der Govee-E-Mail. Wird nach erfolgreichem Login automatisch geleert.",
|
|
136
134
|
"twoFaHeader": "2-Faktor-Bestätigung (nur wenn Govee danach fragt)",
|
|
137
|
-
"twoFaInfo": "Wenn das Adapter-Log '
|
|
135
|
+
"twoFaInfo": "Wenn das Adapter-Log 'verification code required' zeigt, 'Code anfordern' klicken, den Code aus der Govee-E-Mail unten eintragen und Speichern.",
|
|
138
136
|
"validatorEmailError": "Bitte eine gültige E-Mail-Adresse eingeben",
|
|
139
137
|
"wizardBtnAbort": "Abbrechen",
|
|
140
138
|
"wizardBtnDone": "■ Fertig – Strip zu Ende",
|
|
@@ -143,10 +141,28 @@
|
|
|
143
141
|
"wizardBtnYes": "✓ Ja, sichtbar",
|
|
144
142
|
"wizardDeviceLabel": "LED-Strip (nur online)",
|
|
145
143
|
"wizardHeader": "Segment-Erkennungs-Assistent",
|
|
146
|
-
"wizardHelp": "So
|
|
144
|
+
"wizardHelp": "So läuft's ab: Das aktuelle Segment leuchtet WEISS, alle anderen bleiben dunkel. Klicke 'Ja, sichtbar' oder 'Nein, dunkel'. Wenn der Strip physisch zu Ende ist, klicke 'Fertig – Strip zu Ende'. Der Wizard ermittelt die echte Segmentanzahl und speichert bei Lücken automatisch eine manual_list. Session bricht nach 5 Minuten Inaktivität ab.",
|
|
147
145
|
"wizardInfo": "Misst die echte Länge deines LED-Strips und erkennt Lücken (bei gekürzten Strips). Wähle den Strip, klicke Start und beantworte für jedes blinkende Segment: sichtbar, dunkel oder 'Fertig – Strip zu Ende'.",
|
|
148
146
|
"wizardStartedFor": "Assistent gestartet für {name}.",
|
|
149
147
|
"wizardStatusLabel": "Status",
|
|
150
148
|
"workMode": "Betriebsmodus",
|
|
151
|
-
"yesNoDoneLine": "→ Ja, sichtbar oder → Nein, dunkel oder → Fertig – Strip zu Ende"
|
|
149
|
+
"yesNoDoneLine": "→ Ja, sichtbar oder → Nein, dunkel oder → Fertig – Strip zu Ende",
|
|
150
|
+
"stateName": "Name",
|
|
151
|
+
"model": "Modell",
|
|
152
|
+
"serialNumber": "Seriennummer",
|
|
153
|
+
"ipAddress": "IP-Adresse",
|
|
154
|
+
"deviceType": "Gerätetyp",
|
|
155
|
+
"members": "Mitglieder",
|
|
156
|
+
"membersUnreachable": "Nicht erreichbare Mitglieder",
|
|
157
|
+
"cloudOnline": "Cloud online",
|
|
158
|
+
"channelControls": "Steuerung",
|
|
159
|
+
"channelScenes": "Szenen",
|
|
160
|
+
"channelMusic": "Musik",
|
|
161
|
+
"channelSnapshots": "Snapshots",
|
|
162
|
+
"channelSensorData": "Sensordaten",
|
|
163
|
+
"channelEvents": "Ereignisse",
|
|
164
|
+
"channelDiagnostics": "Diagnose",
|
|
165
|
+
"infoManualSyncDevicesDesc": "Auf true setzen, um die Geräteliste jetzt mit dem Govee-Konto abzugleichen: neu hinzugefügte Geräte kommen dazu, aus dem Konto gelöschte werden entfernt. Kein Neustart nötig. Szenen/Snapshots bestehender Geräte bleiben unberührt — dafür den Refresh-Button am Gerät nutzen.",
|
|
166
|
+
"infoOpenapiMqttConnectedDesc": "Push-Kanal für Sensor- und Appliance-Ereignisse. Unabhängig vom AWS-IoT-MQTT, das für Status-Push der regulären Govee-Lampen genutzt wird.",
|
|
167
|
+
"infoManualSyncDevices": "Geräte manuell synchronisieren"
|
|
152
168
|
}
|
package/admin/i18n/en.json
CHANGED
|
@@ -65,11 +65,9 @@
|
|
|
65
65
|
"humidity": "Humidity",
|
|
66
66
|
"iceBucketFull": "Ice Bucket Full",
|
|
67
67
|
"idle": "No wizard active. Pick an LED strip above and click ▶ Start.",
|
|
68
|
-
"infoAppVersionDrift": "Govee App Version drift",
|
|
69
68
|
"infoCloudConnected": "Cloud API connected",
|
|
70
69
|
"infoConnection": "Adapter connected",
|
|
71
70
|
"infoMqttConnected": "MQTT connected",
|
|
72
|
-
"infoMqttCredentials": "Persisted MQTT credentials",
|
|
73
71
|
"infoOpenapiMqttConnected": "Govee OpenAPI MQTT connected",
|
|
74
72
|
"infoWizardStatus": "Segment-Wizard status",
|
|
75
73
|
"information": "Information",
|
|
@@ -102,14 +100,14 @@
|
|
|
102
100
|
"mqttAuthRateLimited": "Govee reports a rate limit — please try again later.",
|
|
103
101
|
"mqttAuthThrottled": "Please wait %ss — a code was just requested.",
|
|
104
102
|
"mqttAuthUnknownAction": "Unknown action '%s'.",
|
|
105
|
-
"mqttAuthVerifyRequired": "Govee requires two-factor confirmation. Click 'Request
|
|
103
|
+
"mqttAuthVerifyRequired": "Govee requires two-factor confirmation. Click 'Request code', enter the code from the email and save.",
|
|
106
104
|
"mqttHeader": "Govee Account (optional)",
|
|
107
|
-
"mqttInfo": "Enter your Govee account credentials to enable real-time status updates via MQTT.
|
|
105
|
+
"mqttInfo": "Enter your Govee account credentials to enable real-time status updates via MQTT. Also required for sensor readings (thermometers, hygrometers, CO2 monitors) and Govee group control — without the account, sensors deliver no values.",
|
|
108
106
|
"musicAutoColor": "Music Auto Color",
|
|
109
107
|
"musicMode": "Music Mode",
|
|
110
108
|
"musicSensitivity": "Music Sensitivity",
|
|
111
109
|
"networkInterfaceLabel": "Network Interface",
|
|
112
|
-
"networkInterfaceTooltip": "Select the network interface for LAN
|
|
110
|
+
"networkInterfaceTooltip": "Select the network interface for LAN discovery and control. Keep the default (0.0.0.0 = all interfaces) unless this host has multiple network interfaces.",
|
|
113
111
|
"online": "Online",
|
|
114
112
|
"passwordLabel": "Password",
|
|
115
113
|
"power": "Power",
|
|
@@ -134,7 +132,7 @@
|
|
|
134
132
|
"twoFaCodeLabel": "Verification code",
|
|
135
133
|
"twoFaCodeTooltip": "One-time code from the Govee email. Cleared automatically after a successful login.",
|
|
136
134
|
"twoFaHeader": "2-Factor verification (only if Govee asks for it)",
|
|
137
|
-
"twoFaInfo": "If the adapter log shows '
|
|
135
|
+
"twoFaInfo": "If the adapter log shows 'verification code required', click 'Request code', enter the code from the Govee email below, and save.",
|
|
138
136
|
"validatorEmailError": "Please enter a valid email address",
|
|
139
137
|
"wizardBtnAbort": "Abort",
|
|
140
138
|
"wizardBtnDone": "■ Done – end of strip",
|
|
@@ -148,5 +146,23 @@
|
|
|
148
146
|
"wizardStartedFor": "Wizard started for {name}.",
|
|
149
147
|
"wizardStatusLabel": "Status",
|
|
150
148
|
"workMode": "Work Mode",
|
|
151
|
-
"yesNoDoneLine": "→ Yes, visible or → No, dark or → Done – end of strip"
|
|
149
|
+
"yesNoDoneLine": "→ Yes, visible or → No, dark or → Done – end of strip",
|
|
150
|
+
"stateName": "Name",
|
|
151
|
+
"model": "Model",
|
|
152
|
+
"serialNumber": "Serial Number",
|
|
153
|
+
"ipAddress": "IP Address",
|
|
154
|
+
"deviceType": "Device Type",
|
|
155
|
+
"members": "Members",
|
|
156
|
+
"membersUnreachable": "Unreachable Members",
|
|
157
|
+
"cloudOnline": "Cloud Online",
|
|
158
|
+
"channelControls": "Controls",
|
|
159
|
+
"channelScenes": "Scenes",
|
|
160
|
+
"channelMusic": "Music",
|
|
161
|
+
"channelSnapshots": "Snapshots",
|
|
162
|
+
"channelSensorData": "Sensor Data",
|
|
163
|
+
"channelEvents": "Events",
|
|
164
|
+
"channelDiagnostics": "Diagnostics",
|
|
165
|
+
"infoManualSyncDevicesDesc": "Write true to sync the device list with your Govee account now: adds newly added devices and removes ones you deleted from the account. No restart needed. Scenes/snapshots of existing devices are not touched — use the per-device refresh button for that.",
|
|
166
|
+
"infoOpenapiMqttConnectedDesc": "Push channel for sensor and appliance events. Independent of the AWS-IoT MQTT used for status push of regular Govee lights.",
|
|
167
|
+
"infoManualSyncDevices": "Manually sync devices"
|
|
152
168
|
}
|
package/admin/i18n/es.json
CHANGED
|
@@ -65,11 +65,9 @@
|
|
|
65
65
|
"humidity": "Humedad",
|
|
66
66
|
"iceBucketFull": "Cubo de hielo lleno",
|
|
67
67
|
"idle": "Ningún asistente activo. Elija una tira de LED arriba y haga clic en ▶ Iniciar.",
|
|
68
|
-
"infoAppVersionDrift": "Desviación de versión de la app Govee",
|
|
69
68
|
"infoCloudConnected": "Cloud API conectado",
|
|
70
69
|
"infoConnection": "Adaptador conectado",
|
|
71
70
|
"infoMqttConnected": "MQTT conectado",
|
|
72
|
-
"infoMqttCredentials": "Credenciales MQTT guardadas",
|
|
73
71
|
"infoOpenapiMqttConnected": "Govee OpenAPI MQTT conectado",
|
|
74
72
|
"infoWizardStatus": "Estado del asistente de segmentos",
|
|
75
73
|
"information": "Información",
|
|
@@ -102,14 +100,14 @@
|
|
|
102
100
|
"mqttAuthRateLimited": "Govee informa un límite de tarifa; inténtelo de nuevo más tarde.",
|
|
103
101
|
"mqttAuthThrottled": "Espere %ss: se acaba de solicitar un código.",
|
|
104
102
|
"mqttAuthUnknownAction": "Acción desconocida '%s'.",
|
|
105
|
-
"mqttAuthVerifyRequired": "Govee requiere confirmación de dos factores. Haga clic en 'Solicitar código
|
|
103
|
+
"mqttAuthVerifyRequired": "Govee requiere confirmación de dos factores. Haga clic en 'Solicitar código', ingrese el código del correo electrónico y guárdelo.",
|
|
106
104
|
"mqttHeader": "Cuenta Govee (opcional)",
|
|
107
|
-
"mqttInfo": "
|
|
105
|
+
"mqttInfo": "Introduce las credenciales de tu cuenta Govee para activar las actualizaciones de estado en tiempo real por MQTT. También son necesarias para las lecturas de sensores (termómetros, higrómetros, monitores de CO2) y el control de grupos Govee: sin la cuenta, los sensores no entregan valores.",
|
|
108
106
|
"musicAutoColor": "Color automático de música",
|
|
109
107
|
"musicMode": "Modo música",
|
|
110
108
|
"musicSensitivity": "Sensibilidad musical",
|
|
111
109
|
"networkInterfaceLabel": "Interfaz de red",
|
|
112
|
-
"networkInterfaceTooltip": "
|
|
110
|
+
"networkInterfaceTooltip": "Selecciona la interfaz de red para el descubrimiento y control LAN. Mantén el valor predeterminado (0.0.0.0 = todas) salvo que este host tenga varias interfaces.",
|
|
113
111
|
"online": "Conectado",
|
|
114
112
|
"passwordLabel": "Contraseña",
|
|
115
113
|
"power": "Encendido",
|
|
@@ -134,7 +132,7 @@
|
|
|
134
132
|
"twoFaCodeLabel": "Código de verificación",
|
|
135
133
|
"twoFaCodeTooltip": "Código de un solo uso del email de Govee. Se borra automáticamente tras un login exitoso.",
|
|
136
134
|
"twoFaHeader": "Verificación de 2 factores (solo si Govee la pide)",
|
|
137
|
-
"twoFaInfo": "Si el log del adaptador muestra '
|
|
135
|
+
"twoFaInfo": "Si el log del adaptador muestra 'verification code required', haz clic en 'Solicitar código', introduce el código del email de Govee abajo y guarda.",
|
|
138
136
|
"validatorEmailError": "Introduce una dirección de correo electrónico válida",
|
|
139
137
|
"wizardBtnAbort": "Cancelar",
|
|
140
138
|
"wizardBtnDone": "■ Listo: final de la tira",
|
|
@@ -148,5 +146,23 @@
|
|
|
148
146
|
"wizardStartedFor": "Asistente iniciado para {name}.",
|
|
149
147
|
"wizardStatusLabel": "Estado",
|
|
150
148
|
"workMode": "Modo de trabajo",
|
|
151
|
-
"yesNoDoneLine": "→ Sí, visible o → No, oscuro o → Listo – fin de la tira"
|
|
149
|
+
"yesNoDoneLine": "→ Sí, visible o → No, oscuro o → Listo – fin de la tira",
|
|
150
|
+
"stateName": "Nombre",
|
|
151
|
+
"model": "Modelo",
|
|
152
|
+
"serialNumber": "Número de serie",
|
|
153
|
+
"ipAddress": "Dirección IP",
|
|
154
|
+
"deviceType": "Tipo de dispositivo",
|
|
155
|
+
"members": "Miembros",
|
|
156
|
+
"membersUnreachable": "Miembros inaccesibles",
|
|
157
|
+
"cloudOnline": "Nube en línea",
|
|
158
|
+
"channelControls": "Controles",
|
|
159
|
+
"channelScenes": "Escenas",
|
|
160
|
+
"channelMusic": "Música",
|
|
161
|
+
"channelSnapshots": "Instantáneas",
|
|
162
|
+
"channelSensorData": "Datos del sensor",
|
|
163
|
+
"channelEvents": "Eventos",
|
|
164
|
+
"channelDiagnostics": "Diagnóstico",
|
|
165
|
+
"infoManualSyncDevicesDesc": "Establecer en true para sincronizar ahora la lista de dispositivos con la cuenta Govee: se añaden los nuevos y se eliminan los borrados de la cuenta. Sin reinicio. Las escenas/instantáneas de los dispositivos existentes no se tocan: usa el botón de actualización por dispositivo.",
|
|
166
|
+
"infoOpenapiMqttConnectedDesc": "Canal push para eventos de sensores y electrodomésticos. Independiente del MQTT AWS-IoT usado para el estado de las lámparas Govee.",
|
|
167
|
+
"infoManualSyncDevices": "Sincronizar dispositivos manualmente"
|
|
152
168
|
}
|
package/admin/i18n/fr.json
CHANGED
|
@@ -65,11 +65,9 @@
|
|
|
65
65
|
"humidity": "Humidité",
|
|
66
66
|
"iceBucketFull": "Bac à glace plein",
|
|
67
67
|
"idle": "Aucun assistant actif. Choisissez une bande LED ci-dessus et cliquez sur ▶ Démarrer.",
|
|
68
|
-
"infoAppVersionDrift": "Dérive de version de l'app Govee",
|
|
69
68
|
"infoCloudConnected": "API Cloud connectée",
|
|
70
69
|
"infoConnection": "Adaptateur connecté",
|
|
71
70
|
"infoMqttConnected": "MQTT connecté",
|
|
72
|
-
"infoMqttCredentials": "Identifiants MQTT enregistrés",
|
|
73
71
|
"infoOpenapiMqttConnected": "Govee OpenAPI MQTT connecté",
|
|
74
72
|
"infoWizardStatus": "État de l'assistant de segments",
|
|
75
73
|
"information": "Information",
|
|
@@ -104,12 +102,12 @@
|
|
|
104
102
|
"mqttAuthUnknownAction": "Action inconnue '%s'.",
|
|
105
103
|
"mqttAuthVerifyRequired": "Govee nécessite une confirmation à deux facteurs. Cliquez sur « Demander un code de vérification », saisissez le code contenu dans l'e-mail et enregistrez.",
|
|
106
104
|
"mqttHeader": "Compte Govee (facultatif)",
|
|
107
|
-
"mqttInfo": "
|
|
105
|
+
"mqttInfo": "Saisissez les identifiants de votre compte Govee pour activer les mises à jour d'état en temps réel via MQTT. Également requis pour les relevés des capteurs (thermomètres, hygromètres, moniteurs CO2) et le contrôle des groupes Govee — sans le compte, les capteurs ne fournissent aucune valeur.",
|
|
108
106
|
"musicAutoColor": "Couleur auto musique",
|
|
109
107
|
"musicMode": "Mode musique",
|
|
110
108
|
"musicSensitivity": "Sensibilité musicale",
|
|
111
109
|
"networkInterfaceLabel": "Interface réseau",
|
|
112
|
-
"networkInterfaceTooltip": "Sélectionnez l'interface réseau pour la découverte
|
|
110
|
+
"networkInterfaceTooltip": "Sélectionnez l'interface réseau pour la découverte et le contrôle LAN. Conservez la valeur par défaut (0.0.0.0 = toutes) sauf si cet hôte possède plusieurs interfaces.",
|
|
113
111
|
"online": "En ligne",
|
|
114
112
|
"passwordLabel": "Mot de passe",
|
|
115
113
|
"power": "Marche/Arrêt",
|
|
@@ -134,7 +132,7 @@
|
|
|
134
132
|
"twoFaCodeLabel": "Code de vérification",
|
|
135
133
|
"twoFaCodeTooltip": "Code à usage unique de l'e-mail Govee. Effacé automatiquement après une connexion réussie.",
|
|
136
134
|
"twoFaHeader": "Vérification à 2 facteurs (uniquement si Govee la demande)",
|
|
137
|
-
"twoFaInfo": "Si le log de l'adaptateur affiche '
|
|
135
|
+
"twoFaInfo": "Si le log de l'adaptateur affiche 'verification code required', cliquez sur 'Demander un code', saisissez le code de l'e-mail Govee ci-dessous et enregistrez.",
|
|
138
136
|
"validatorEmailError": "Veuillez entrer une adresse e-mail valide",
|
|
139
137
|
"wizardBtnAbort": "Annuler",
|
|
140
138
|
"wizardBtnDone": "■ Terminé – fin de bande",
|
|
@@ -148,5 +146,23 @@
|
|
|
148
146
|
"wizardStartedFor": "L'assistant a démarré pour {name}.",
|
|
149
147
|
"wizardStatusLabel": "Statut",
|
|
150
148
|
"workMode": "Mode de fonctionnement",
|
|
151
|
-
"yesNoDoneLine": "→ Oui, visible ou → Non, sombre ou → Terminé – fin de la bande"
|
|
149
|
+
"yesNoDoneLine": "→ Oui, visible ou → Non, sombre ou → Terminé – fin de la bande",
|
|
150
|
+
"stateName": "Nom",
|
|
151
|
+
"model": "Modèle",
|
|
152
|
+
"serialNumber": "Numéro de série",
|
|
153
|
+
"ipAddress": "Adresse IP",
|
|
154
|
+
"deviceType": "Type d'appareil",
|
|
155
|
+
"members": "Membres",
|
|
156
|
+
"membersUnreachable": "Membres injoignables",
|
|
157
|
+
"cloudOnline": "Cloud en ligne",
|
|
158
|
+
"channelControls": "Commandes",
|
|
159
|
+
"channelScenes": "Scènes",
|
|
160
|
+
"channelMusic": "Musique",
|
|
161
|
+
"channelSnapshots": "Instantanés",
|
|
162
|
+
"channelSensorData": "Données des capteurs",
|
|
163
|
+
"channelEvents": "Événements",
|
|
164
|
+
"channelDiagnostics": "Diagnostic",
|
|
165
|
+
"infoManualSyncDevicesDesc": "Mettre à true pour synchroniser la liste des appareils avec le compte Govee : les nouveaux appareils sont ajoutés, ceux supprimés du compte sont retirés. Aucun redémarrage requis. Les scènes/instantanés des appareils existants ne sont pas modifiés — utiliser le bouton d'actualisation par appareil.",
|
|
166
|
+
"infoOpenapiMqttConnectedDesc": "Canal push pour les événements des capteurs et appareils. Indépendant du MQTT AWS-IoT utilisé pour l'état des lampes Govee.",
|
|
167
|
+
"infoManualSyncDevices": "Synchroniser les appareils manuellement"
|
|
152
168
|
}
|
package/admin/i18n/it.json
CHANGED
|
@@ -65,11 +65,9 @@
|
|
|
65
65
|
"humidity": "Umidità",
|
|
66
66
|
"iceBucketFull": "Cestello ghiaccio pieno",
|
|
67
67
|
"idle": "Nessuna procedura guidata attiva. Scegli una striscia LED sopra e fai clic su ▶ Avvia.",
|
|
68
|
-
"infoAppVersionDrift": "Scostamento versione app Govee",
|
|
69
68
|
"infoCloudConnected": "Cloud API connesso",
|
|
70
69
|
"infoConnection": "Adattatore connesso",
|
|
71
70
|
"infoMqttConnected": "MQTT connesso",
|
|
72
|
-
"infoMqttCredentials": "Credenziali MQTT salvate",
|
|
73
71
|
"infoOpenapiMqttConnected": "Govee OpenAPI MQTT connesso",
|
|
74
72
|
"infoWizardStatus": "Stato del wizard segmenti",
|
|
75
73
|
"information": "Informazioni",
|
|
@@ -104,12 +102,12 @@
|
|
|
104
102
|
"mqttAuthUnknownAction": "Azione sconosciuta '%s'.",
|
|
105
103
|
"mqttAuthVerifyRequired": "Govee richiede la conferma di due fattori. Fai clic su \"Richiedi codice di verifica\", inserisci il codice ricevuto dall'e-mail e salva.",
|
|
106
104
|
"mqttHeader": "Conto Govee (facoltativo)",
|
|
107
|
-
"mqttInfo": "Inserisci le credenziali del tuo account Govee per
|
|
105
|
+
"mqttInfo": "Inserisci le credenziali del tuo account Govee per attivare gli aggiornamenti di stato in tempo reale via MQTT. Necessarie anche per le letture dei sensori (termometri, igrometri, monitor CO2) e il controllo dei gruppi Govee — senza l'account i sensori non forniscono valori.",
|
|
108
106
|
"musicAutoColor": "Colore automatico musica",
|
|
109
107
|
"musicMode": "Modalità musica",
|
|
110
108
|
"musicSensitivity": "Sensibilità musica",
|
|
111
109
|
"networkInterfaceLabel": "Interfaccia di rete",
|
|
112
|
-
"networkInterfaceTooltip": "Seleziona l'interfaccia di rete per il rilevamento
|
|
110
|
+
"networkInterfaceTooltip": "Seleziona l'interfaccia di rete per il rilevamento e il controllo LAN. Mantieni il valore predefinito (0.0.0.0 = tutte) a meno che questo host non abbia più interfacce.",
|
|
113
111
|
"online": "Online",
|
|
114
112
|
"passwordLabel": "Password",
|
|
115
113
|
"power": "Accensione",
|
|
@@ -134,7 +132,7 @@
|
|
|
134
132
|
"twoFaCodeLabel": "Codice di verifica",
|
|
135
133
|
"twoFaCodeTooltip": "Codice monouso dall'email Govee. Cancellato automaticamente dopo un login riuscito.",
|
|
136
134
|
"twoFaHeader": "Verifica a 2 fattori (solo se Govee la richiede)",
|
|
137
|
-
"twoFaInfo": "Se il log dell'adattatore mostra '
|
|
135
|
+
"twoFaInfo": "Se il log dell'adattatore mostra 'verification code required', clicca 'Richiedi codice', inserisci il codice dall'email Govee qui sotto e salva.",
|
|
138
136
|
"validatorEmailError": "Inserisci un indirizzo email valido",
|
|
139
137
|
"wizardBtnAbort": "Annulla",
|
|
140
138
|
"wizardBtnDone": "■ Fatto – fine della striscia",
|
|
@@ -148,5 +146,23 @@
|
|
|
148
146
|
"wizardStartedFor": "La procedura guidata è iniziata per {name}.",
|
|
149
147
|
"wizardStatusLabel": "Stato",
|
|
150
148
|
"workMode": "Modalità di lavoro",
|
|
151
|
-
"yesNoDoneLine": "→ Sì, visibile oppure → No, scuro oppure → Fatto – fine della striscia"
|
|
149
|
+
"yesNoDoneLine": "→ Sì, visibile oppure → No, scuro oppure → Fatto – fine della striscia",
|
|
150
|
+
"stateName": "Nome",
|
|
151
|
+
"model": "Modello",
|
|
152
|
+
"serialNumber": "Numero di serie",
|
|
153
|
+
"ipAddress": "Indirizzo IP",
|
|
154
|
+
"deviceType": "Tipo di dispositivo",
|
|
155
|
+
"members": "Membri",
|
|
156
|
+
"membersUnreachable": "Membri irraggiungibili",
|
|
157
|
+
"cloudOnline": "Cloud online",
|
|
158
|
+
"channelControls": "Controlli",
|
|
159
|
+
"channelScenes": "Scene",
|
|
160
|
+
"channelMusic": "Musica",
|
|
161
|
+
"channelSnapshots": "Istantanee",
|
|
162
|
+
"channelSensorData": "Dati dei sensori",
|
|
163
|
+
"channelEvents": "Eventi",
|
|
164
|
+
"channelDiagnostics": "Diagnostica",
|
|
165
|
+
"infoManualSyncDevicesDesc": "Impostare su true per sincronizzare subito l'elenco dispositivi con l'account Govee: i nuovi dispositivi vengono aggiunti, quelli eliminati dall'account rimossi. Nessun riavvio necessario. Scene/istantanee dei dispositivi esistenti restano intatte — usare il pulsante di aggiornamento per dispositivo.",
|
|
166
|
+
"infoOpenapiMqttConnectedDesc": "Canale push per eventi di sensori ed elettrodomestici. Indipendente dall'MQTT AWS-IoT usato per lo stato delle lampade Govee.",
|
|
167
|
+
"infoManualSyncDevices": "Sincronizza dispositivi manualmente"
|
|
152
168
|
}
|
package/admin/i18n/nl.json
CHANGED
|
@@ -65,11 +65,9 @@
|
|
|
65
65
|
"humidity": "Luchtvochtigheid",
|
|
66
66
|
"iceBucketFull": "IJsbak vol",
|
|
67
67
|
"idle": "Geen wizard actief. Kies hierboven een LED-strip en klik op ▶ Start.",
|
|
68
|
-
"infoAppVersionDrift": "Govee App versieafwijking",
|
|
69
68
|
"infoCloudConnected": "Cloud-API verbonden",
|
|
70
69
|
"infoConnection": "Adapter verbonden",
|
|
71
70
|
"infoMqttConnected": "MQTT verbonden",
|
|
72
|
-
"infoMqttCredentials": "Opgeslagen MQTT-referenties",
|
|
73
71
|
"infoOpenapiMqttConnected": "Govee OpenAPI MQTT verbonden",
|
|
74
72
|
"infoWizardStatus": "Segment-wizard status",
|
|
75
73
|
"information": "Informatie",
|
|
@@ -102,14 +100,14 @@
|
|
|
102
100
|
"mqttAuthRateLimited": "Govee rapporteert een tarieflimiet. Probeer het later opnieuw.",
|
|
103
101
|
"mqttAuthThrottled": "Even geduld a.u.b. %ss — er is zojuist om een code gevraagd.",
|
|
104
102
|
"mqttAuthUnknownAction": "Onbekende actie '%s'.",
|
|
105
|
-
"mqttAuthVerifyRequired": "Govee vereist bevestiging met twee factoren. Klik op '
|
|
103
|
+
"mqttAuthVerifyRequired": "Govee vereist bevestiging met twee factoren. Klik op 'Code aanvragen', voer de code uit de e-mail in en sla deze op.",
|
|
106
104
|
"mqttHeader": "Govee-account (optioneel)",
|
|
107
|
-
"mqttInfo": "Voer
|
|
105
|
+
"mqttInfo": "Voer je Govee-accountgegevens in om realtime statusupdates via MQTT te activeren. Ook vereist voor sensormetingen (thermometers, hygrometers, CO2-monitors) en Govee-groepsbesturing — zonder account leveren sensoren geen waarden.",
|
|
108
106
|
"musicAutoColor": "Muziek auto-kleur",
|
|
109
107
|
"musicMode": "Muziekmodus",
|
|
110
108
|
"musicSensitivity": "Muziekgevoeligheid",
|
|
111
109
|
"networkInterfaceLabel": "Netwerkinterface",
|
|
112
|
-
"networkInterfaceTooltip": "Selecteer de netwerkinterface voor LAN-
|
|
110
|
+
"networkInterfaceTooltip": "Selecteer de netwerkinterface voor LAN-detectie en -besturing. Behoud de standaard (0.0.0.0 = alle interfaces), tenzij deze host meerdere netwerkinterfaces heeft.",
|
|
113
111
|
"online": "Online",
|
|
114
112
|
"passwordLabel": "Wachtwoord",
|
|
115
113
|
"power": "Aan/Uit",
|
|
@@ -134,7 +132,7 @@
|
|
|
134
132
|
"twoFaCodeLabel": "Verificatiecode",
|
|
135
133
|
"twoFaCodeTooltip": "Eenmalige code uit de Govee-mail. Wordt automatisch gewist na succesvolle login.",
|
|
136
134
|
"twoFaHeader": "2-Factor-verificatie (alleen als Govee erom vraagt)",
|
|
137
|
-
"twoFaInfo": "Als de adapterlog '
|
|
135
|
+
"twoFaInfo": "Als de adapterlog 'verification code required' toont, klik 'Code aanvragen', voer de code uit de Govee-mail hieronder in en sla op.",
|
|
138
136
|
"validatorEmailError": "Voer een geldig e-mailadres in",
|
|
139
137
|
"wizardBtnAbort": "Afbreken",
|
|
140
138
|
"wizardBtnDone": "■ Klaar – einde van de strip",
|
|
@@ -148,5 +146,23 @@
|
|
|
148
146
|
"wizardStartedFor": "Wizard gestart voor {name}.",
|
|
149
147
|
"wizardStatusLabel": "Status",
|
|
150
148
|
"workMode": "Werkmodus",
|
|
151
|
-
"yesNoDoneLine": "→ Ja, zichtbaar of → Nee, donker of → Klaar – einde strip"
|
|
149
|
+
"yesNoDoneLine": "→ Ja, zichtbaar of → Nee, donker of → Klaar – einde strip",
|
|
150
|
+
"stateName": "Naam",
|
|
151
|
+
"model": "Model",
|
|
152
|
+
"serialNumber": "Serienummer",
|
|
153
|
+
"ipAddress": "IP-adres",
|
|
154
|
+
"deviceType": "Apparaattype",
|
|
155
|
+
"members": "Leden",
|
|
156
|
+
"membersUnreachable": "Onbereikbare leden",
|
|
157
|
+
"cloudOnline": "Cloud online",
|
|
158
|
+
"channelControls": "Bediening",
|
|
159
|
+
"channelScenes": "Scènes",
|
|
160
|
+
"channelMusic": "Muziek",
|
|
161
|
+
"channelSnapshots": "Snapshots",
|
|
162
|
+
"channelSensorData": "Sensorgegevens",
|
|
163
|
+
"channelEvents": "Gebeurtenissen",
|
|
164
|
+
"channelDiagnostics": "Diagnose",
|
|
165
|
+
"infoManualSyncDevicesDesc": "Zet op true om de apparatenlijst nu met het Govee-account te synchroniseren: nieuwe apparaten worden toegevoegd, uit het account verwijderde worden verwijderd. Geen herstart nodig. Scènes/snapshots van bestaande apparaten blijven onaangeroerd — gebruik daarvoor de verversknop per apparaat.",
|
|
166
|
+
"infoOpenapiMqttConnectedDesc": "Pushkanaal voor sensor- en apparaatgebeurtenissen. Onafhankelijk van de AWS-IoT-MQTT voor de status van gewone Govee-lampen.",
|
|
167
|
+
"infoManualSyncDevices": "Apparaten handmatig synchroniseren"
|
|
152
168
|
}
|
package/admin/i18n/pl.json
CHANGED
|
@@ -65,11 +65,9 @@
|
|
|
65
65
|
"humidity": "Wilgotność",
|
|
66
66
|
"iceBucketFull": "Pojemnik na lód pełny",
|
|
67
67
|
"idle": "Żaden kreator nie jest aktywny. Wybierz pasek LED powyżej i kliknij ▶ Start.",
|
|
68
|
-
"infoAppVersionDrift": "Odchylenie wersji aplikacji Govee",
|
|
69
68
|
"infoCloudConnected": "Cloud API połączony",
|
|
70
69
|
"infoConnection": "Adapter połączony",
|
|
71
70
|
"infoMqttConnected": "MQTT połączony",
|
|
72
|
-
"infoMqttCredentials": "Zapisane dane uwierzytelniające MQTT",
|
|
73
71
|
"infoOpenapiMqttConnected": "Govee OpenAPI MQTT połączony",
|
|
74
72
|
"infoWizardStatus": "Status kreatora segmentów",
|
|
75
73
|
"information": "Informacja",
|
|
@@ -104,12 +102,12 @@
|
|
|
104
102
|
"mqttAuthUnknownAction": "Nieznana akcja „%s”.",
|
|
105
103
|
"mqttAuthVerifyRequired": "Govee wymaga potwierdzenia dwuczynnikowego. Kliknij „Poproś o kod weryfikacyjny”, wpisz kod z wiadomości e-mail i zapisz.",
|
|
106
104
|
"mqttHeader": "Konto Govee (opcjonalnie)",
|
|
107
|
-
"mqttInfo": "Wprowadź dane logowania
|
|
105
|
+
"mqttInfo": "Wprowadź dane logowania konta Govee, aby włączyć aktualizacje stanu w czasie rzeczywistym przez MQTT. Wymagane również do odczytów czujników (termometry, higrometry, monitory CO2) i sterowania grupami Govee — bez konta czujniki nie dostarczają wartości.",
|
|
108
106
|
"musicAutoColor": "Auto-kolor muzyki",
|
|
109
107
|
"musicMode": "Tryb muzyki",
|
|
110
108
|
"musicSensitivity": "Czułość muzyki",
|
|
111
109
|
"networkInterfaceLabel": "Interfejs sieciowy",
|
|
112
|
-
"networkInterfaceTooltip": "Wybierz interfejs sieciowy do wykrywania
|
|
110
|
+
"networkInterfaceTooltip": "Wybierz interfejs sieciowy do wykrywania i sterowania LAN. Pozostaw domyślny (0.0.0.0 = wszystkie), chyba że ten host ma wiele interfejsów.",
|
|
113
111
|
"online": "Online",
|
|
114
112
|
"passwordLabel": "Hasło",
|
|
115
113
|
"power": "Zasilanie",
|
|
@@ -134,7 +132,7 @@
|
|
|
134
132
|
"twoFaCodeLabel": "Kod weryfikacyjny",
|
|
135
133
|
"twoFaCodeTooltip": "Jednorazowy kod z maila Govee. Czyszczony automatycznie po udanym logowaniu.",
|
|
136
134
|
"twoFaHeader": "Weryfikacja dwuskładnikowa (tylko jeśli Govee o to poprosi)",
|
|
137
|
-
"twoFaInfo": "Jeśli log adaptera pokazuje '
|
|
135
|
+
"twoFaInfo": "Jeśli log adaptera pokazuje 'verification code required', kliknij 'Poproś o kod', wprowadź kod z maila Govee poniżej i zapisz.",
|
|
138
136
|
"validatorEmailError": "Wpisz prawidłowy adres e-mail",
|
|
139
137
|
"wizardBtnAbort": "Przerwij",
|
|
140
138
|
"wizardBtnDone": "■ Gotowe – koniec paska",
|
|
@@ -148,5 +146,23 @@
|
|
|
148
146
|
"wizardStartedFor": "Kreator uruchomił się dla {name}.",
|
|
149
147
|
"wizardStatusLabel": "Status",
|
|
150
148
|
"workMode": "Tryb pracy",
|
|
151
|
-
"yesNoDoneLine": "→ Tak, widoczny lub → Nie, ciemny lub → Gotowe – koniec paska"
|
|
149
|
+
"yesNoDoneLine": "→ Tak, widoczny lub → Nie, ciemny lub → Gotowe – koniec paska",
|
|
150
|
+
"stateName": "Nazwa",
|
|
151
|
+
"model": "Model",
|
|
152
|
+
"serialNumber": "Numer seryjny",
|
|
153
|
+
"ipAddress": "Adres IP",
|
|
154
|
+
"deviceType": "Typ urządzenia",
|
|
155
|
+
"members": "Członkowie",
|
|
156
|
+
"membersUnreachable": "Nieosiągalni członkowie",
|
|
157
|
+
"cloudOnline": "Chmura online",
|
|
158
|
+
"channelControls": "Sterowanie",
|
|
159
|
+
"channelScenes": "Sceny",
|
|
160
|
+
"channelMusic": "Muzyka",
|
|
161
|
+
"channelSnapshots": "Migawki",
|
|
162
|
+
"channelSensorData": "Dane czujników",
|
|
163
|
+
"channelEvents": "Zdarzenia",
|
|
164
|
+
"channelDiagnostics": "Diagnostyka",
|
|
165
|
+
"infoManualSyncDevicesDesc": "Ustaw na true, aby teraz zsynchronizować listę urządzeń z kontem Govee: nowe urządzenia zostaną dodane, usunięte z konta — usunięte. Bez restartu. Sceny/migawki istniejących urządzeń pozostają nietknięte — użyj przycisku odświeżania przy urządzeniu.",
|
|
166
|
+
"infoOpenapiMqttConnectedDesc": "Kanał push dla zdarzeń czujników i urządzeń. Niezależny od MQTT AWS-IoT używanego do statusu zwykłych lamp Govee.",
|
|
167
|
+
"infoManualSyncDevices": "Ręcznie synchronizuj urządzenia"
|
|
152
168
|
}
|