iobroker.govee-smart 2.19.0 → 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 +8 -38
- package/admin/i18n/de.json +27 -10
- package/admin/i18n/en.json +23 -6
- package/admin/i18n/es.json +23 -6
- package/admin/i18n/fr.json +22 -5
- package/admin/i18n/it.json +22 -5
- package/admin/i18n/nl.json +23 -6
- package/admin/i18n/pl.json +22 -5
- package/admin/i18n/pt.json +23 -6
- package/admin/i18n/ru.json +22 -5
- package/admin/i18n/uk.json +22 -5
- package/admin/i18n/zh-cn.json +22 -5
- package/build/lib/capability-mapper.js +39 -23
- package/build/lib/capability-mapper.js.map +2 -2
- package/build/lib/command-router.js +22 -13
- package/build/lib/command-router.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 +45 -276
- 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/handlers/cloud-creds-handler.js +25 -11
- 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/state-manager.js +108 -44
- package/build/lib/state-manager.js.map +2 -2
- package/build/main.js +34 -11
- package/build/main.js.map +2 -2
- package/io-package.json +40 -16
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -94,6 +94,14 @@ 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
|
+
|
|
97
105
|
### 2.19.0 (2026-07-04)
|
|
98
106
|
|
|
99
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
|
|
@@ -114,44 +122,6 @@ This adapter's MQTT authentication and BLE-over-LAN (ptReal) protocol implementa
|
|
|
114
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.
|
|
115
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).
|
|
116
124
|
|
|
117
|
-
### 2.17.0 (2026-07-01)
|
|
118
|
-
|
|
119
|
-
- **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.
|
|
120
|
-
- 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.
|
|
121
|
-
- 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.
|
|
122
|
-
- 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.
|
|
123
|
-
- 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.
|
|
124
|
-
- 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.
|
|
125
|
-
- 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.
|
|
126
|
-
- 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.
|
|
127
|
-
- Fixed: multi-colour DIY scenes activated over the local network now load correctly — longer scenes could previously be corrupted and silently fail to apply.
|
|
128
|
-
- 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.
|
|
129
|
-
- 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.
|
|
130
|
-
- 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.
|
|
131
|
-
- 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.
|
|
132
|
-
- 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.
|
|
133
|
-
- Fixed: clearing the preset-scene selector no longer fires a spurious empty scene command.
|
|
134
|
-
- 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.
|
|
135
|
-
- Fixed: a malformed `segments.command` (e.g. `;` instead of `:`) now logs a clear warning with the expected syntax instead of being silently ignored.
|
|
136
|
-
- 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.
|
|
137
|
-
- 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.
|
|
138
|
-
- 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.
|
|
139
|
-
- 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.
|
|
140
|
-
- 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.
|
|
141
|
-
- Fixed: starting the segment-detection wizard twice in quick succession can no longer open two overlapping sessions.
|
|
142
|
-
- 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.
|
|
143
|
-
- Fixed: per-segment colour and brightness now show a default value instead of reading as null in visualizations before the first change.
|
|
144
|
-
- Fixed: sensor readings (temperature/humidity/battery/CO₂) now default to 0 instead of null in visualizations before the first reading arrives.
|
|
145
|
-
- Fixed: device groups no longer expose a meaningless "verified" trust-tier datapoint (the trust tier only applies to real devices, not groups).
|
|
146
|
-
- Fixed: cleaner shutdown/restart — the adapter no longer opens a cloud connection or reports a stray error after it has been told to stop.
|
|
147
|
-
- 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.
|
|
148
|
-
- Fixed: under heavy cloud load a fresh control command (power/brightness) is no longer dropped in favour of queued scene activations.
|
|
149
|
-
- Fixed: a LAN light no longer loses its power and colour controls after a cloud data refresh.
|
|
150
|
-
- 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.
|
|
151
|
-
- 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.
|
|
152
|
-
- 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.
|
|
153
|
-
- 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.
|
|
154
|
-
|
|
155
125
|
[Older changelogs can be found there](CHANGELOG_OLD.md)
|
|
156
126
|
|
|
157
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,7 +65,6 @@
|
|
|
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",
|
|
@@ -96,19 +95,19 @@
|
|
|
96
95
|
"mqttAuthLoginFailed": "Login fehlgeschlagen: %s",
|
|
97
96
|
"mqttAuthLoginNoMqtt": "Login angenommen, MQTT-Verbindung steht aber noch nicht — Adapter neu starten.",
|
|
98
97
|
"mqttAuthLoginOk": "Login erfolgreich — Echtzeit-Status-Updates aktiv.",
|
|
99
|
-
"mqttAuthNeedCredentials": "
|
|
98
|
+
"mqttAuthNeedCredentials": "E-Mail + Passwort in den Adapter-Einstellungen nötig.",
|
|
100
99
|
"mqttAuthPasswordRejected": "Passwort wurde von Govee abgelehnt.",
|
|
101
100
|
"mqttAuthRateLimited": "Govee meldet Rate-Limit — bitte später erneut versuchen.",
|
|
102
101
|
"mqttAuthThrottled": "Bitte %ss warten — gerade wurde schon ein Code angefordert.",
|
|
103
102
|
"mqttAuthUnknownAction": "Unbekannte Aktion '%s'.",
|
|
104
|
-
"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.",
|
|
105
104
|
"mqttHeader": "Govee Account (optional)",
|
|
106
|
-
"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.",
|
|
107
106
|
"musicAutoColor": "Musik Auto-Farbe",
|
|
108
107
|
"musicMode": "Musik-Modus",
|
|
109
108
|
"musicSensitivity": "Musik-Empfindlichkeit",
|
|
110
109
|
"networkInterfaceLabel": "Netzwerk-Interface",
|
|
111
|
-
"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.",
|
|
112
111
|
"online": "Online",
|
|
113
112
|
"passwordLabel": "Passwort",
|
|
114
113
|
"power": "Ein/Aus",
|
|
@@ -133,7 +132,7 @@
|
|
|
133
132
|
"twoFaCodeLabel": "Bestätigungs-Code",
|
|
134
133
|
"twoFaCodeTooltip": "Einmal-Code aus der Govee-E-Mail. Wird nach erfolgreichem Login automatisch geleert.",
|
|
135
134
|
"twoFaHeader": "2-Faktor-Bestätigung (nur wenn Govee danach fragt)",
|
|
136
|
-
"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.",
|
|
137
136
|
"validatorEmailError": "Bitte eine gültige E-Mail-Adresse eingeben",
|
|
138
137
|
"wizardBtnAbort": "Abbrechen",
|
|
139
138
|
"wizardBtnDone": "■ Fertig – Strip zu Ende",
|
|
@@ -142,10 +141,28 @@
|
|
|
142
141
|
"wizardBtnYes": "✓ Ja, sichtbar",
|
|
143
142
|
"wizardDeviceLabel": "LED-Strip (nur online)",
|
|
144
143
|
"wizardHeader": "Segment-Erkennungs-Assistent",
|
|
145
|
-
"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.",
|
|
146
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'.",
|
|
147
146
|
"wizardStartedFor": "Assistent gestartet für {name}.",
|
|
148
147
|
"wizardStatusLabel": "Status",
|
|
149
148
|
"workMode": "Betriebsmodus",
|
|
150
|
-
"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"
|
|
151
168
|
}
|
package/admin/i18n/en.json
CHANGED
|
@@ -65,7 +65,6 @@
|
|
|
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",
|
|
@@ -101,14 +100,14 @@
|
|
|
101
100
|
"mqttAuthRateLimited": "Govee reports a rate limit — please try again later.",
|
|
102
101
|
"mqttAuthThrottled": "Please wait %ss — a code was just requested.",
|
|
103
102
|
"mqttAuthUnknownAction": "Unknown action '%s'.",
|
|
104
|
-
"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.",
|
|
105
104
|
"mqttHeader": "Govee Account (optional)",
|
|
106
|
-
"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.",
|
|
107
106
|
"musicAutoColor": "Music Auto Color",
|
|
108
107
|
"musicMode": "Music Mode",
|
|
109
108
|
"musicSensitivity": "Music Sensitivity",
|
|
110
109
|
"networkInterfaceLabel": "Network Interface",
|
|
111
|
-
"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.",
|
|
112
111
|
"online": "Online",
|
|
113
112
|
"passwordLabel": "Password",
|
|
114
113
|
"power": "Power",
|
|
@@ -133,7 +132,7 @@
|
|
|
133
132
|
"twoFaCodeLabel": "Verification code",
|
|
134
133
|
"twoFaCodeTooltip": "One-time code from the Govee email. Cleared automatically after a successful login.",
|
|
135
134
|
"twoFaHeader": "2-Factor verification (only if Govee asks for it)",
|
|
136
|
-
"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.",
|
|
137
136
|
"validatorEmailError": "Please enter a valid email address",
|
|
138
137
|
"wizardBtnAbort": "Abort",
|
|
139
138
|
"wizardBtnDone": "■ Done – end of strip",
|
|
@@ -147,5 +146,23 @@
|
|
|
147
146
|
"wizardStartedFor": "Wizard started for {name}.",
|
|
148
147
|
"wizardStatusLabel": "Status",
|
|
149
148
|
"workMode": "Work Mode",
|
|
150
|
-
"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"
|
|
151
168
|
}
|
package/admin/i18n/es.json
CHANGED
|
@@ -65,7 +65,6 @@
|
|
|
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",
|
|
@@ -101,14 +100,14 @@
|
|
|
101
100
|
"mqttAuthRateLimited": "Govee informa un límite de tarifa; inténtelo de nuevo más tarde.",
|
|
102
101
|
"mqttAuthThrottled": "Espere %ss: se acaba de solicitar un código.",
|
|
103
102
|
"mqttAuthUnknownAction": "Acción desconocida '%s'.",
|
|
104
|
-
"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.",
|
|
105
104
|
"mqttHeader": "Cuenta Govee (opcional)",
|
|
106
|
-
"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.",
|
|
107
106
|
"musicAutoColor": "Color automático de música",
|
|
108
107
|
"musicMode": "Modo música",
|
|
109
108
|
"musicSensitivity": "Sensibilidad musical",
|
|
110
109
|
"networkInterfaceLabel": "Interfaz de red",
|
|
111
|
-
"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.",
|
|
112
111
|
"online": "Conectado",
|
|
113
112
|
"passwordLabel": "Contraseña",
|
|
114
113
|
"power": "Encendido",
|
|
@@ -133,7 +132,7 @@
|
|
|
133
132
|
"twoFaCodeLabel": "Código de verificación",
|
|
134
133
|
"twoFaCodeTooltip": "Código de un solo uso del email de Govee. Se borra automáticamente tras un login exitoso.",
|
|
135
134
|
"twoFaHeader": "Verificación de 2 factores (solo si Govee la pide)",
|
|
136
|
-
"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.",
|
|
137
136
|
"validatorEmailError": "Introduce una dirección de correo electrónico válida",
|
|
138
137
|
"wizardBtnAbort": "Cancelar",
|
|
139
138
|
"wizardBtnDone": "■ Listo: final de la tira",
|
|
@@ -147,5 +146,23 @@
|
|
|
147
146
|
"wizardStartedFor": "Asistente iniciado para {name}.",
|
|
148
147
|
"wizardStatusLabel": "Estado",
|
|
149
148
|
"workMode": "Modo de trabajo",
|
|
150
|
-
"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"
|
|
151
168
|
}
|
package/admin/i18n/fr.json
CHANGED
|
@@ -65,7 +65,6 @@
|
|
|
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é",
|
|
@@ -103,12 +102,12 @@
|
|
|
103
102
|
"mqttAuthUnknownAction": "Action inconnue '%s'.",
|
|
104
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.",
|
|
105
104
|
"mqttHeader": "Compte Govee (facultatif)",
|
|
106
|
-
"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.",
|
|
107
106
|
"musicAutoColor": "Couleur auto musique",
|
|
108
107
|
"musicMode": "Mode musique",
|
|
109
108
|
"musicSensitivity": "Sensibilité musicale",
|
|
110
109
|
"networkInterfaceLabel": "Interface réseau",
|
|
111
|
-
"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.",
|
|
112
111
|
"online": "En ligne",
|
|
113
112
|
"passwordLabel": "Mot de passe",
|
|
114
113
|
"power": "Marche/Arrêt",
|
|
@@ -133,7 +132,7 @@
|
|
|
133
132
|
"twoFaCodeLabel": "Code de vérification",
|
|
134
133
|
"twoFaCodeTooltip": "Code à usage unique de l'e-mail Govee. Effacé automatiquement après une connexion réussie.",
|
|
135
134
|
"twoFaHeader": "Vérification à 2 facteurs (uniquement si Govee la demande)",
|
|
136
|
-
"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.",
|
|
137
136
|
"validatorEmailError": "Veuillez entrer une adresse e-mail valide",
|
|
138
137
|
"wizardBtnAbort": "Annuler",
|
|
139
138
|
"wizardBtnDone": "■ Terminé – fin de bande",
|
|
@@ -147,5 +146,23 @@
|
|
|
147
146
|
"wizardStartedFor": "L'assistant a démarré pour {name}.",
|
|
148
147
|
"wizardStatusLabel": "Statut",
|
|
149
148
|
"workMode": "Mode de fonctionnement",
|
|
150
|
-
"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"
|
|
151
168
|
}
|
package/admin/i18n/it.json
CHANGED
|
@@ -65,7 +65,6 @@
|
|
|
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",
|
|
@@ -103,12 +102,12 @@
|
|
|
103
102
|
"mqttAuthUnknownAction": "Azione sconosciuta '%s'.",
|
|
104
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.",
|
|
105
104
|
"mqttHeader": "Conto Govee (facoltativo)",
|
|
106
|
-
"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.",
|
|
107
106
|
"musicAutoColor": "Colore automatico musica",
|
|
108
107
|
"musicMode": "Modalità musica",
|
|
109
108
|
"musicSensitivity": "Sensibilità musica",
|
|
110
109
|
"networkInterfaceLabel": "Interfaccia di rete",
|
|
111
|
-
"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.",
|
|
112
111
|
"online": "Online",
|
|
113
112
|
"passwordLabel": "Password",
|
|
114
113
|
"power": "Accensione",
|
|
@@ -133,7 +132,7 @@
|
|
|
133
132
|
"twoFaCodeLabel": "Codice di verifica",
|
|
134
133
|
"twoFaCodeTooltip": "Codice monouso dall'email Govee. Cancellato automaticamente dopo un login riuscito.",
|
|
135
134
|
"twoFaHeader": "Verifica a 2 fattori (solo se Govee la richiede)",
|
|
136
|
-
"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.",
|
|
137
136
|
"validatorEmailError": "Inserisci un indirizzo email valido",
|
|
138
137
|
"wizardBtnAbort": "Annulla",
|
|
139
138
|
"wizardBtnDone": "■ Fatto – fine della striscia",
|
|
@@ -147,5 +146,23 @@
|
|
|
147
146
|
"wizardStartedFor": "La procedura guidata è iniziata per {name}.",
|
|
148
147
|
"wizardStatusLabel": "Stato",
|
|
149
148
|
"workMode": "Modalità di lavoro",
|
|
150
|
-
"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"
|
|
151
168
|
}
|
package/admin/i18n/nl.json
CHANGED
|
@@ -65,7 +65,6 @@
|
|
|
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",
|
|
@@ -101,14 +100,14 @@
|
|
|
101
100
|
"mqttAuthRateLimited": "Govee rapporteert een tarieflimiet. Probeer het later opnieuw.",
|
|
102
101
|
"mqttAuthThrottled": "Even geduld a.u.b. %ss — er is zojuist om een code gevraagd.",
|
|
103
102
|
"mqttAuthUnknownAction": "Onbekende actie '%s'.",
|
|
104
|
-
"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.",
|
|
105
104
|
"mqttHeader": "Govee-account (optioneel)",
|
|
106
|
-
"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.",
|
|
107
106
|
"musicAutoColor": "Muziek auto-kleur",
|
|
108
107
|
"musicMode": "Muziekmodus",
|
|
109
108
|
"musicSensitivity": "Muziekgevoeligheid",
|
|
110
109
|
"networkInterfaceLabel": "Netwerkinterface",
|
|
111
|
-
"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.",
|
|
112
111
|
"online": "Online",
|
|
113
112
|
"passwordLabel": "Wachtwoord",
|
|
114
113
|
"power": "Aan/Uit",
|
|
@@ -133,7 +132,7 @@
|
|
|
133
132
|
"twoFaCodeLabel": "Verificatiecode",
|
|
134
133
|
"twoFaCodeTooltip": "Eenmalige code uit de Govee-mail. Wordt automatisch gewist na succesvolle login.",
|
|
135
134
|
"twoFaHeader": "2-Factor-verificatie (alleen als Govee erom vraagt)",
|
|
136
|
-
"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.",
|
|
137
136
|
"validatorEmailError": "Voer een geldig e-mailadres in",
|
|
138
137
|
"wizardBtnAbort": "Afbreken",
|
|
139
138
|
"wizardBtnDone": "■ Klaar – einde van de strip",
|
|
@@ -147,5 +146,23 @@
|
|
|
147
146
|
"wizardStartedFor": "Wizard gestart voor {name}.",
|
|
148
147
|
"wizardStatusLabel": "Status",
|
|
149
148
|
"workMode": "Werkmodus",
|
|
150
|
-
"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"
|
|
151
168
|
}
|
package/admin/i18n/pl.json
CHANGED
|
@@ -65,7 +65,6 @@
|
|
|
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",
|
|
@@ -103,12 +102,12 @@
|
|
|
103
102
|
"mqttAuthUnknownAction": "Nieznana akcja „%s”.",
|
|
104
103
|
"mqttAuthVerifyRequired": "Govee wymaga potwierdzenia dwuczynnikowego. Kliknij „Poproś o kod weryfikacyjny”, wpisz kod z wiadomości e-mail i zapisz.",
|
|
105
104
|
"mqttHeader": "Konto Govee (opcjonalnie)",
|
|
106
|
-
"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.",
|
|
107
106
|
"musicAutoColor": "Auto-kolor muzyki",
|
|
108
107
|
"musicMode": "Tryb muzyki",
|
|
109
108
|
"musicSensitivity": "Czułość muzyki",
|
|
110
109
|
"networkInterfaceLabel": "Interfejs sieciowy",
|
|
111
|
-
"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.",
|
|
112
111
|
"online": "Online",
|
|
113
112
|
"passwordLabel": "Hasło",
|
|
114
113
|
"power": "Zasilanie",
|
|
@@ -133,7 +132,7 @@
|
|
|
133
132
|
"twoFaCodeLabel": "Kod weryfikacyjny",
|
|
134
133
|
"twoFaCodeTooltip": "Jednorazowy kod z maila Govee. Czyszczony automatycznie po udanym logowaniu.",
|
|
135
134
|
"twoFaHeader": "Weryfikacja dwuskładnikowa (tylko jeśli Govee o to poprosi)",
|
|
136
|
-
"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.",
|
|
137
136
|
"validatorEmailError": "Wpisz prawidłowy adres e-mail",
|
|
138
137
|
"wizardBtnAbort": "Przerwij",
|
|
139
138
|
"wizardBtnDone": "■ Gotowe – koniec paska",
|
|
@@ -147,5 +146,23 @@
|
|
|
147
146
|
"wizardStartedFor": "Kreator uruchomił się dla {name}.",
|
|
148
147
|
"wizardStatusLabel": "Status",
|
|
149
148
|
"workMode": "Tryb pracy",
|
|
150
|
-
"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"
|
|
151
168
|
}
|
package/admin/i18n/pt.json
CHANGED
|
@@ -65,7 +65,6 @@
|
|
|
65
65
|
"humidity": "Humidade",
|
|
66
66
|
"iceBucketFull": "Recipiente de gelo cheio",
|
|
67
67
|
"idle": "Nenhum assistente ativo. Escolha uma faixa de LED acima e clique em ▶ Iniciar.",
|
|
68
|
-
"infoAppVersionDrift": "Desvio de versão do app Govee",
|
|
69
68
|
"infoCloudConnected": "Cloud API conectada",
|
|
70
69
|
"infoConnection": "Adaptador conectado",
|
|
71
70
|
"infoMqttConnected": "MQTT conectado",
|
|
@@ -101,14 +100,14 @@
|
|
|
101
100
|
"mqttAuthRateLimited": "Govee relata um limite de taxa – tente novamente mais tarde.",
|
|
102
101
|
"mqttAuthThrottled": "Aguarde %ss — um código acabou de ser solicitado.",
|
|
103
102
|
"mqttAuthUnknownAction": "Ação desconhecida '%s'.",
|
|
104
|
-
"mqttAuthVerifyRequired": "Govee requer confirmação de dois fatores. Clique em 'Solicitar código
|
|
103
|
+
"mqttAuthVerifyRequired": "Govee requer confirmação de dois fatores. Clique em 'Solicitar código', insira o código do e-mail e salve.",
|
|
105
104
|
"mqttHeader": "Conta Govee (opcional)",
|
|
106
|
-
"mqttInfo": "Insira as credenciais da sua conta Govee para ativar atualizações de
|
|
105
|
+
"mqttInfo": "Insira as credenciais da sua conta Govee para ativar atualizações de estado em tempo real via MQTT. Também necessárias para leituras de sensores (termómetros, higrómetros, monitores de CO2) e controlo de grupos Govee — sem a conta, os sensores não fornecem valores.",
|
|
107
106
|
"musicAutoColor": "Cor automática da música",
|
|
108
107
|
"musicMode": "Modo música",
|
|
109
108
|
"musicSensitivity": "Sensibilidade musical",
|
|
110
109
|
"networkInterfaceLabel": "Interface de rede",
|
|
111
|
-
"networkInterfaceTooltip": "Selecione a interface de rede para descoberta
|
|
110
|
+
"networkInterfaceTooltip": "Selecione a interface de rede para descoberta e controlo LAN. Mantenha o padrão (0.0.0.0 = todas) a menos que este host tenha várias interfaces.",
|
|
112
111
|
"online": "Online",
|
|
113
112
|
"passwordLabel": "Senha",
|
|
114
113
|
"power": "Ligar/Desligar",
|
|
@@ -133,7 +132,7 @@
|
|
|
133
132
|
"twoFaCodeLabel": "Código de verificação",
|
|
134
133
|
"twoFaCodeTooltip": "Código único do e-mail Govee. Limpo automaticamente após login bem-sucedido.",
|
|
135
134
|
"twoFaHeader": "Verificação em dois fatores (apenas se a Govee solicitar)",
|
|
136
|
-
"twoFaInfo": "Se o log do adaptador mostrar '
|
|
135
|
+
"twoFaInfo": "Se o log do adaptador mostrar 'verification code required', clique em 'Solicitar código', insira o código do e-mail Govee abaixo e salve.",
|
|
137
136
|
"validatorEmailError": "Insira um endereço de e-mail válido",
|
|
138
137
|
"wizardBtnAbort": "Cancelar",
|
|
139
138
|
"wizardBtnDone": "■ Pronto – fim da tira",
|
|
@@ -147,5 +146,23 @@
|
|
|
147
146
|
"wizardStartedFor": "Assistente iniciado para {name}.",
|
|
148
147
|
"wizardStatusLabel": "Status",
|
|
149
148
|
"workMode": "Modo de trabalho",
|
|
150
|
-
"yesNoDoneLine": "→ Sim, visível ou → Não, escuro ou → Concluído – fim da faixa"
|
|
149
|
+
"yesNoDoneLine": "→ Sim, visível ou → Não, escuro ou → Concluído – fim da faixa",
|
|
150
|
+
"stateName": "Nome",
|
|
151
|
+
"model": "Modelo",
|
|
152
|
+
"serialNumber": "Número de série",
|
|
153
|
+
"ipAddress": "Endereço IP",
|
|
154
|
+
"deviceType": "Tipo de dispositivo",
|
|
155
|
+
"members": "Membros",
|
|
156
|
+
"membersUnreachable": "Membros inacessíveis",
|
|
157
|
+
"cloudOnline": "Cloud online",
|
|
158
|
+
"channelControls": "Controlos",
|
|
159
|
+
"channelScenes": "Cenas",
|
|
160
|
+
"channelMusic": "Música",
|
|
161
|
+
"channelSnapshots": "Instantâneos",
|
|
162
|
+
"channelSensorData": "Dados do sensor",
|
|
163
|
+
"channelEvents": "Eventos",
|
|
164
|
+
"channelDiagnostics": "Diagnóstico",
|
|
165
|
+
"infoManualSyncDevicesDesc": "Definir como true para sincronizar agora a lista de dispositivos com a conta Govee: novos dispositivos são adicionados, os removidos da conta são eliminados. Sem reinício. Cenas/instantâneos de dispositivos existentes não são alterados — use o botão de atualização por dispositivo.",
|
|
166
|
+
"infoOpenapiMqttConnectedDesc": "Canal push para eventos de sensores e eletrodomésticos. Independente do MQTT AWS-IoT usado para o estado das lâmpadas Govee.",
|
|
167
|
+
"infoManualSyncDevices": "Sincronizar dispositivos manualmente"
|
|
151
168
|
}
|