iobroker.yamaha 2.7.1 → 2.8.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 +18 -14
- package/admin/i18n/de.json +9 -7
- package/admin/i18n/en.json +9 -7
- package/admin/i18n/es.json +9 -7
- package/admin/i18n/fr.json +9 -7
- package/admin/i18n/it.json +9 -7
- package/admin/i18n/nl.json +9 -7
- package/admin/i18n/pl.json +9 -7
- package/admin/i18n/pt.json +9 -7
- package/admin/i18n/ru.json +9 -7
- package/admin/i18n/uk.json +9 -7
- package/admin/i18n/zh-cn.json +9 -7
- package/admin/jsonConfig.json +41 -1
- package/build/lib/catalog/owner-policy.js +9 -2
- package/build/lib/catalog/owner-policy.js.map +2 -2
- package/build/lib/catalog/volume-percent.js +67 -0
- package/build/lib/catalog/volume-percent.js.map +7 -0
- package/build/lib/lifecycle/discovery-schema.js +1 -1
- package/build/lib/lifecycle/discovery-schema.js.map +1 -1
- package/build/lib/pure-helpers.js +22 -0
- package/build/lib/pure-helpers.js.map +2 -2
- package/build/lib/xml/device-controller.js +13 -1
- package/build/lib/xml/device-controller.js.map +3 -3
- package/build/lib/xml/protocol.js +17 -0
- package/build/lib/xml/protocol.js.map +2 -2
- package/build/lib/yxc/capability.js +0 -1
- package/build/lib/yxc/capability.js.map +2 -2
- package/build/lib/yxc/catalog.js +8 -39
- package/build/lib/yxc/catalog.js.map +2 -2
- package/build/lib/yxc/command-mapper.js +8 -1
- package/build/lib/yxc/command-mapper.js.map +2 -2
- package/build/lib/yxc/device-controller.js +127 -12
- package/build/lib/yxc/device-controller.js.map +2 -2
- package/build/lib/yxc/object-mapper.js +92 -15
- package/build/lib/yxc/object-mapper.js.map +2 -2
- package/build/main.js +115 -5
- package/build/main.js.map +2 -2
- package/io-package.json +68 -14
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -59,6 +59,8 @@ Devices are managed in the admin as cards. **Leave the list empty** and the adap
|
|
|
59
59
|
|
|
60
60
|
Older Yamaha receivers (before ~2010, the XML protocol) do not announce themselves on the network and must be added manually. The **XML query interval** sets how often they are polled (default 60 seconds).
|
|
61
61
|
|
|
62
|
+
The **Volume as 0–100 %** switch decides what the `volume` datapoints mean. Off (the default) each one carries the scale the receiver itself shows: decibels where the receiver has a decibel display, its own step count where it has none — the datapoint's unit and range say which, and they can differ from zone to zone because the receiver declares them per zone. On, every volume datapoint, in every zone and on every device, carries 0–100 % instead — the range most VIS widgets expect. The adapter converts in both directions, so the receiver is always sent the value it expects.
|
|
63
|
+
|
|
62
64
|
The **Data points** section switches whole groups of datapoints on or off — **Playback & browsing**, **Tuner**, **Multiroom**, **HDMI**, **Scenes**, **Sound**, **Advanced** and **Clock & alarm**. A switched-off group is removed from the tree and not even queried, which also speeds up the startup; the amplifier core (power, volume, mute, input, sound program, sleep) always stays on.
|
|
63
65
|
|
|
64
66
|
## State Tree
|
|
@@ -108,6 +110,22 @@ On the very first contact the adapter asks the receiver which functions it suppo
|
|
|
108
110
|
Placeholder for the next version (at the beginning of the line):
|
|
109
111
|
### **WORK IN PROGRESS**
|
|
110
112
|
-->
|
|
113
|
+
### 2.8.0 (2026-09-11)
|
|
114
|
+
|
|
115
|
+
- (krobipd) Fixed: A volume written to a MusicCast receiver now arrives exactly — the adapter reads the receiver's own step declaration instead of guessing a ratio (#623)
|
|
116
|
+
- (krobipd) Fixed: Every zone of a receiver now carries the same volume scale — a third zone used to show a raw 0…161 count next to decibels in the other two
|
|
117
|
+
- (krobipd) Changed: The volume datapoint now carries the minimum, maximum and step the receiver reports for that zone — a receiver whose zones differ gets a different range per zone
|
|
118
|
+
- (krobipd) New: Setting "Volume as 0–100 %" turns every volume datapoint, in every zone, into a percentage — what most VIS widgets expect. Off by default; the receiver's own scale stays the truth
|
|
119
|
+
- (krobipd) Changed: The datapoints actualVolume, actualVolumeMode and inputText are gone — volume and input carry the same information
|
|
120
|
+
- (krobipd) Changed: After this update every receiver is asked about its abilities once more, so the first start takes a little longer than usual
|
|
121
|
+
- (krobipd) Fixed: A DAB receiver no longer logs a warning on every tuner poll — the frequency datapoint was limited to the FM band while the receiver reported DAB frequencies
|
|
122
|
+
|
|
123
|
+
### 2.7.2 (2026-09-09)
|
|
124
|
+
|
|
125
|
+
- (krobipd) Fixed: The volume readout now follows the scale the receiver is actually showing, so a receiver set to numbers no longer reports them as decibels.
|
|
126
|
+
- (krobipd) New: Inputs now appear under the names the receiver carries for them, so a socket named “Apple TV” reads that way instead of HDMI1.
|
|
127
|
+
- (krobipd) Changed: After this update every receiver is asked about its abilities once more, so the first start takes a little longer than usual.
|
|
128
|
+
|
|
111
129
|
### 2.7.1 (2026-09-09)
|
|
112
130
|
|
|
113
131
|
- (krobipd) Improved: The first connection asks a receiver only what its generation can answer, so zones, trigger sockets and per-input settings follow the device, not a catalogue.
|
|
@@ -128,20 +146,6 @@ On the very first contact the adapter asks the receiver which functions it suppo
|
|
|
128
146
|
- (krobipd) Improved: 174 more datapoints explain themselves — volume and tone now say which scale they use, the stored lists say what is inside them, and the menu rows say what they are for
|
|
129
147
|
- (krobipd) Improved: a receiver's "Connected" now says what it means — a device on network standby answers as well, so it is not the same as being switched on
|
|
130
148
|
|
|
131
|
-
### 2.5.1 (2026-09-07)
|
|
132
|
-
|
|
133
|
-
- (krobipd) Changed: installing straight from GitHub is no longer offered — the adapter is built before publishing, so it is installed from the ioBroker repository instead
|
|
134
|
-
|
|
135
|
-
### 2.5.0 (2026-09-07)
|
|
136
|
-
|
|
137
|
-
- (krobipd) Fixed: switching off a datapoint group now clears it in every zone — turning off "Sound" used to leave the zone 2/3/4 sound datapoints standing, and "Playback" left 304 of them
|
|
138
|
-
- (krobipd) Fixed: folders explain themselves on all three protocols now — on MusicCast and older XML receivers the explanation was missing, so a speaker or soundbar got almost none
|
|
139
|
-
- (krobipd) Improved: numeric datapoints carry the limits the device itself declares, so a slider offers exactly the range the receiver accepts instead of an open number field
|
|
140
|
-
- (krobipd) New: 61 setup datapoints of the 2010 receiver generation — speaker configuration, HDMI and lip-sync settings, trigger assignment, subwoofer trim, YPAO volume and the RDS clock
|
|
141
|
-
- (krobipd) New: the device-wide MusicCast settings are readable and writable — automatic standby, display brightness and the two HDMI outputs, created only where the device really offers them
|
|
142
|
-
- (krobipd) Fixed: bass, treble and subwoofer trim showed doubled values on MusicCast receivers — that scale counts in half decibels and was labelled as decibels
|
|
143
|
-
- (krobipd) Fixed: a receiver that was in standby when the adapter started could end up with an empty media menu until the next restart
|
|
144
|
-
|
|
145
149
|
[Older changelogs can be found there](CHANGELOG_OLD.md)
|
|
146
150
|
|
|
147
151
|
## History
|
package/admin/i18n/de.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "IP-Adresse",
|
|
5
5
|
"label_xmlPollInterval": "XML-Abfrageintervall (Sekunden)",
|
|
6
6
|
"tooltip_xmlPollInterval": "Wie oft der Adapter Receiver mit dem alten XML-Protokoll abfragt (Modelle vor ~2010). Diese Geräte melden Änderungen nicht von selbst. Ohne Wirkung auf YNCA- oder MusicCast-Geräte.",
|
|
7
|
+
"volumeAsPercent": "Lautstärke als 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "Aus: Jeder Lautstärke-Datenpunkt trägt die Skala, die der Receiver selbst anzeigt — Dezibel oder seine eigene Schrittzahl. Ein: Alle tragen stattdessen 0–100 %, Hauptzone wie jede weitere Zone — der Bereich, den die meisten VIS-Widgets erwarten. Der Adapter rechnet in beide Richtungen um, der Receiver bekommt also immer den Wert, den er erwartet.",
|
|
7
9
|
"supportHeader": "Entwicklung unterstützen",
|
|
8
10
|
"aboutInfo": "Wenn dir dieser Adapter nützt, kannst du seine Entwicklung unterstützen:",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "Einschalt-Lautstärkepegel",
|
|
134
136
|
"initialVolumeMode": "Einschalt-Lautstärkemodus",
|
|
135
137
|
"input": "Eingang",
|
|
136
|
-
"inputNameDisplay": "Eingangsname (Anzeige)",
|
|
137
138
|
"inputName": "Eingangsname (%s)",
|
|
138
139
|
"inputNames": "Eingangsnamen",
|
|
139
140
|
"leaveGroup": "Gruppe verlassen",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "Tuner",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "Lautstärke",
|
|
257
|
-
"descVolume": "Wie laut die Zone spielt
|
|
258
|
-
"volumeDB": "Lautstärke (dB)",
|
|
259
|
-
"volumeDisplayMode": "Lautstärke-Anzeigeart",
|
|
258
|
+
"descVolume": "Wie laut die Zone spielt, in der Skala, die der Receiver selbst anzeigt — Dezibel, wenn er eine Dezibel-Anzeige hat, sonst seine eigene Schrittzahl.",
|
|
260
259
|
"volumeInterlock": "Lautstärke-Kopplung",
|
|
261
260
|
"yncaControlPort": "YNCA-Steuerport",
|
|
262
261
|
"ypaoVolume": "YPAO-Lautstärke",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "Ob ein AirPlay-Gerät die Lautstärke dieses Receivers ändern darf.",
|
|
384
383
|
"descElapsedTime": "In Sekunden, damit man damit rechnen kann; die lesbare Form steht daneben.",
|
|
385
384
|
"descTotalTime": "In Sekunden, damit man damit rechnen kann; die lesbare Form steht daneben.",
|
|
386
|
-
"descVolumeDB": "Dieselbe Lautstärke, wie sie das Display des Receivers zeigt, in Dezibel.",
|
|
387
|
-
"descVolumeDisplayMode": "Ob der Receiver die Lautstärke in Dezibel oder als schlichte Zahl anzeigt.",
|
|
388
385
|
"descAudioSelect": "Von welcher Buchse der aktuelle Eingang seinen Ton nimmt: automatisch, HDMI, koaxial/optisch oder analog.",
|
|
389
386
|
"descLinkControl": "Wägt Stabilität gegen Verzögerung ab, wenn an verbundene Geräte gestreamt wird.",
|
|
390
387
|
"descLinkAudioDelay": "Ob verbundene Geräte auf Lippensynchronität oder gleichen Ton achten.",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "Ob das HDMI-Signal im Bereitschaftszustand zum Fernseher durchgeleitet wird: aus, ein oder automatisch.",
|
|
599
596
|
"hdmiVideoPreset": "HDMI-Video-Voreinstellung",
|
|
600
597
|
"descHdmiVideoPreset": "Welche der gespeicherten Videoverarbeitungs-Voreinstellungen in Gebrauch ist.",
|
|
601
|
-
"descMonaural": "Ob die Zone in Mono spielt; beide Lautsprecher geben dann dasselbe Signal wieder."
|
|
598
|
+
"descMonaural": "Ob die Zone in Mono spielt; beide Lautsprecher geben dann dasselbe Signal wieder.",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "Wie laut die Zone spielt, in der Dezibel-Skala, die der Receiver selbst anzeigt.",
|
|
602
|
+
"descVolumeNumeric": "Wie laut die Zone spielt, in der Zahlen-Skala, die der Receiver selbst anzeigt.",
|
|
603
|
+
"descVolumePercent": "Wie laut die Zone spielt, als Prozentsatz des Bereichs, den der Receiver annimmt — 0 % ist seine leiseste, 100 % seine lauteste Einstellung."
|
|
602
604
|
}
|
package/admin/i18n/en.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "IP address",
|
|
5
5
|
"label_xmlPollInterval": "XML query interval (seconds)",
|
|
6
6
|
"tooltip_xmlPollInterval": "How often the adapter polls receivers that use the old XML protocol (models before ~2010). These devices do not report changes on their own. Has no effect on YNCA or MusicCast devices.",
|
|
7
|
+
"volumeAsPercent": "Volume as 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "Off: every volume datapoint carries the scale the receiver itself shows — decibels, or its own step count. On: all of them, the main zone and every other zone, carry 0–100 % instead, the range most VIS widgets expect. The adapter converts both ways, so the receiver is always sent the value it expects.",
|
|
7
9
|
"supportHeader": "Support development",
|
|
8
10
|
"aboutInfo": "If this adapter is useful to you, you can support its development:",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "Initial volume level",
|
|
134
136
|
"initialVolumeMode": "Initial volume mode",
|
|
135
137
|
"input": "Input",
|
|
136
|
-
"inputNameDisplay": "Input name (display)",
|
|
137
138
|
"inputName": "Input name (%s)",
|
|
138
139
|
"inputNames": "Input names",
|
|
139
140
|
"leaveGroup": "Leave group",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "Tuner",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "Volume",
|
|
257
|
-
"descVolume": "How loud the zone plays
|
|
258
|
-
"volumeDB": "Volume (dB)",
|
|
259
|
-
"volumeDisplayMode": "Volume display mode",
|
|
258
|
+
"descVolume": "How loud the zone plays, in the scale the receiver itself shows — decibels where it has a decibel display, its own step count where it has none.",
|
|
260
259
|
"volumeInterlock": "Volume interlock",
|
|
261
260
|
"yncaControlPort": "YNCA control port",
|
|
262
261
|
"ypaoVolume": "YPAO Volume",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "Whether an AirPlay device may change this receiver's volume.",
|
|
384
383
|
"descElapsedTime": "In seconds, so it can be calculated with; a readable form sits next to it.",
|
|
385
384
|
"descTotalTime": "In seconds, so it can be calculated with; a readable form sits next to it.",
|
|
386
|
-
"descVolumeDB": "The same volume as the receiver's own display shows it, in decibels.",
|
|
387
|
-
"descVolumeDisplayMode": "Whether the receiver shows volume in decibels or as a plain number.",
|
|
388
385
|
"descAudioSelect": "Which terminal's sound the current input uses: automatic, HDMI, coaxial/optical or analogue.",
|
|
389
386
|
"descLinkControl": "Trades stability against delay when streaming to linked devices.",
|
|
390
387
|
"descLinkAudioDelay": "Whether linked devices favour lip sync or perfectly aligned audio.",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "Whether the HDMI signal is passed to the TV while the receiver stands by: off, on, or automatic.",
|
|
599
596
|
"hdmiVideoPreset": "HDMI video preset",
|
|
600
597
|
"descHdmiVideoPreset": "Which of the stored video-processing presets is in use.",
|
|
601
|
-
"descMonaural": "Whether the zone plays in mono; both speakers then carry the same signal."
|
|
598
|
+
"descMonaural": "Whether the zone plays in mono; both speakers then carry the same signal.",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "How loud the zone plays, in the decibel scale the receiver itself shows.",
|
|
602
|
+
"descVolumeNumeric": "How loud the zone plays, in the plain number scale the receiver itself shows.",
|
|
603
|
+
"descVolumePercent": "How loud the zone plays, as a percentage of the range the receiver accepts — 0 % is its quietest setting, 100 % its loudest."
|
|
602
604
|
}
|
package/admin/i18n/es.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "Dirección IP",
|
|
5
5
|
"label_xmlPollInterval": "Intervalo de consulta XML (segundos)",
|
|
6
6
|
"tooltip_xmlPollInterval": "Con qué frecuencia el adaptador consulta receptores con el antiguo protocolo XML (modelos anteriores a ~2010). Estos equipos no comunican cambios por sí mismos. Sin efecto en YNCA o MusicCast.",
|
|
7
|
+
"volumeAsPercent": "Volumen como 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "Desactivado: cada punto de datos de volumen usa la escala que el propio receptor muestra — decibelios o su propio recuento de pasos. Activado: todos ellos, la zona principal y cada zona adicional, usan 0–100 %, el rango que esperan la mayoría de los widgets VIS. El adaptador convierte en ambos sentidos, así que el receptor siempre recibe el valor que espera.",
|
|
7
9
|
"supportHeader": "Apoyar el desarrollo",
|
|
8
10
|
"aboutInfo": "Si este adaptador te resulta útil, puedes apoyar su desarrollo:",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "Nivel del volumen inicial",
|
|
134
136
|
"initialVolumeMode": "Modo del volumen inicial",
|
|
135
137
|
"input": "Entrada",
|
|
136
|
-
"inputNameDisplay": "Nombre de la entrada (pantalla)",
|
|
137
138
|
"inputName": "Nombre de la entrada (%s)",
|
|
138
139
|
"inputNames": "Nombres de las entradas",
|
|
139
140
|
"leaveGroup": "Salir del grupo",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "Sintonizador",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "Volumen",
|
|
257
|
-
"descVolume": "Lo alto que suena la zona
|
|
258
|
-
"volumeDB": "Volumen (dB)",
|
|
259
|
-
"volumeDisplayMode": "Modo de visualización del volumen",
|
|
258
|
+
"descVolume": "Lo alto que suena la zona, en la escala que el propio receptor muestra: decibelios si tiene indicación en decibelios, y si no sus propios pasos.",
|
|
260
259
|
"volumeInterlock": "Bloqueo de volumen",
|
|
261
260
|
"yncaControlPort": "Puerto de control YNCA",
|
|
262
261
|
"ypaoVolume": "Volumen YPAO",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "Si un aparato AirPlay puede cambiar el volumen de este receptor.",
|
|
384
383
|
"descElapsedTime": "En segundos, para poder calcular; la forma legible está al lado.",
|
|
385
384
|
"descTotalTime": "En segundos, para poder calcular; la forma legible está al lado.",
|
|
386
|
-
"descVolumeDB": "El mismo volumen que muestra la pantalla del receptor, en decibelios.",
|
|
387
|
-
"descVolumeDisplayMode": "Si el receptor muestra el volumen en decibelios o como número.",
|
|
388
385
|
"descAudioSelect": "De qué terminal toma el sonido la entrada actual: automático, HDMI, coaxial/óptico o analógico.",
|
|
389
386
|
"descLinkControl": "Equilibra estabilidad y retardo al transmitir a aparatos enlazados.",
|
|
390
387
|
"descLinkAudioDelay": "Si los aparatos enlazados priorizan el sincronismo labial o el audio alineado.",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "Si la señal HDMI pasa al televisor mientras el receptor está en reposo: apagado, encendido o automático.",
|
|
599
596
|
"hdmiVideoPreset": "Preajuste de vídeo HDMI",
|
|
600
597
|
"descHdmiVideoPreset": "Cuál de los preajustes de procesado de vídeo guardados está en uso.",
|
|
601
|
-
"descMonaural": "Si la zona suena en mono; ambos altavoces reproducen entonces la misma señal."
|
|
598
|
+
"descMonaural": "Si la zona suena en mono; ambos altavoces reproducen entonces la misma señal.",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "Lo alto que suena la zona, en la escala de decibelios que muestra el propio receptor.",
|
|
602
|
+
"descVolumeNumeric": "Lo alto que suena la zona, en la escala numérica que muestra el propio receptor.",
|
|
603
|
+
"descVolumePercent": "Qué tan alto suena la zona, como porcentaje del rango que acepta el receptor — 0 % es su ajuste más bajo, 100 % el más alto."
|
|
602
604
|
}
|
package/admin/i18n/fr.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "Adresse IP",
|
|
5
5
|
"label_xmlPollInterval": "Intervalle d'interrogation XML (secondes)",
|
|
6
6
|
"tooltip_xmlPollInterval": "Fréquence d'interrogation des amplis utilisant l'ancien protocole XML (modèles avant ~2010). Ces appareils ne signalent pas les changements d'eux-mêmes. Sans effet sur YNCA ou MusicCast.",
|
|
7
|
+
"volumeAsPercent": "Volume en 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "Désactivé : chaque point de données de volume utilise l'échelle que l'ampli affiche lui-même — décibels ou son propre nombre de pas. Activé : tous, la zone principale comme chaque autre zone, utilisent 0–100 %, la plage attendue par la plupart des widgets VIS. L'adaptateur convertit dans les deux sens, l'ampli reçoit donc toujours la valeur qu'il attend.",
|
|
7
9
|
"supportHeader": "Soutenir le développement",
|
|
8
10
|
"aboutInfo": "Si cet adaptateur vous est utile, vous pouvez soutenir son développement :",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "Niveau du volume initial",
|
|
134
136
|
"initialVolumeMode": "Mode du volume initial",
|
|
135
137
|
"input": "Entrée",
|
|
136
|
-
"inputNameDisplay": "Nom de l'entrée (afficheur)",
|
|
137
138
|
"inputName": "Nom de l'entrée (%s)",
|
|
138
139
|
"inputNames": "Noms des entrées",
|
|
139
140
|
"leaveGroup": "Quitter le groupe",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "Tuner",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "Volume",
|
|
257
|
-
"descVolume": "Le niveau sonore de la zone
|
|
258
|
-
"volumeDB": "Volume (dB)",
|
|
259
|
-
"volumeDisplayMode": "Mode d'affichage du volume",
|
|
258
|
+
"descVolume": "Le niveau sonore de la zone, dans l'échelle que l'ampli affiche lui-même : des décibels s'il a un affichage en décibels, sinon ses propres pas.",
|
|
260
259
|
"volumeInterlock": "Verrouillage du volume",
|
|
261
260
|
"yncaControlPort": "Port de commande YNCA",
|
|
262
261
|
"ypaoVolume": "Volume YPAO",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "Si un appareil AirPlay peut modifier le volume de cet ampli.",
|
|
384
383
|
"descElapsedTime": "En secondes, pour pouvoir calculer ; la forme lisible est à côté.",
|
|
385
384
|
"descTotalTime": "En secondes, pour pouvoir calculer ; la forme lisible est à côté.",
|
|
386
|
-
"descVolumeDB": "Le même volume que l'afficheur de l'ampli, en décibels.",
|
|
387
|
-
"descVolumeDisplayMode": "Si l'ampli affiche le volume en décibels ou en nombre simple.",
|
|
388
385
|
"descAudioSelect": "De quelle prise l'entrée actuelle tire son son : automatique, HDMI, coaxiale/optique ou analogique.",
|
|
389
386
|
"descLinkControl": "Arbitre entre stabilité et latence lors de la diffusion vers les appareils liés.",
|
|
390
387
|
"descLinkAudioDelay": "Si les appareils liés privilégient la synchro labiale ou l'audio aligné.",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "Si le signal HDMI est transmis au téléviseur pendant la veille du récepteur : arrêt, marche ou automatique.",
|
|
599
596
|
"hdmiVideoPreset": "Préréglage vidéo HDMI",
|
|
600
597
|
"descHdmiVideoPreset": "Lequel des préréglages de traitement vidéo enregistrés est utilisé.",
|
|
601
|
-
"descMonaural": "Si la zone joue en mono ; les deux enceintes reproduisent alors le même signal."
|
|
598
|
+
"descMonaural": "Si la zone joue en mono ; les deux enceintes reproduisent alors le même signal.",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "Le niveau sonore de la zone, dans l'échelle en décibels affichée par l'ampli lui-même.",
|
|
602
|
+
"descVolumeNumeric": "Le niveau sonore de la zone, dans l'échelle numérique affichée par l'ampli lui-même.",
|
|
603
|
+
"descVolumePercent": "Le volume de la zone, en pourcentage de la plage que l'ampli accepte — 0 % est son réglage le plus bas, 100 % le plus fort."
|
|
602
604
|
}
|
package/admin/i18n/it.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "Indirizzo IP",
|
|
5
5
|
"label_xmlPollInterval": "Intervallo di interrogazione XML (secondi)",
|
|
6
6
|
"tooltip_xmlPollInterval": "Con quale frequenza l'adattatore interroga i ricevitori con il vecchio protocollo XML (modelli prima del ~2010). Questi dispositivi non segnalano da soli le modifiche. Nessun effetto su YNCA o MusicCast.",
|
|
7
|
+
"volumeAsPercent": "Volume come 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "Disattivato: ogni datapoint del volume usa la scala che il ricevitore stesso mostra — decibel o il suo conteggio di passi. Attivato: tutti, la zona principale e ogni altra zona, usano 0–100 %, l'intervallo che la maggior parte dei widget VIS si aspetta. L'adattatore converte in entrambe le direzioni, quindi il ricevitore riceve sempre il valore che si aspetta.",
|
|
7
9
|
"supportHeader": "Sostieni lo sviluppo",
|
|
8
10
|
"aboutInfo": "Se questo adattatore ti è utile, puoi sostenere il suo sviluppo:",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "Livello volume iniziale",
|
|
134
136
|
"initialVolumeMode": "Modalità volume iniziale",
|
|
135
137
|
"input": "Ingresso",
|
|
136
|
-
"inputNameDisplay": "Nome ingresso (display)",
|
|
137
138
|
"inputName": "Nome dell'ingresso (%s)",
|
|
138
139
|
"inputNames": "Nomi ingressi",
|
|
139
140
|
"leaveGroup": "Esci dal gruppo",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "Sintonizzatore",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "Volume",
|
|
257
|
-
"descVolume": "Quanto forte suona la zona:
|
|
258
|
-
"volumeDB": "Volume (dB)",
|
|
259
|
-
"volumeDisplayMode": "Modalità di visualizzazione del volume",
|
|
258
|
+
"descVolume": "Quanto forte suona la zona, nella scala che il ricevitore stesso mostra: decibel se ha un display in decibel, altrimenti i propri passi.",
|
|
260
259
|
"volumeInterlock": "Blocco volume",
|
|
261
260
|
"yncaControlPort": "Porta di controllo YNCA",
|
|
262
261
|
"ypaoVolume": "Volume YPAO",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "Se un apparecchio AirPlay può cambiare il volume di questo ricevitore.",
|
|
384
383
|
"descElapsedTime": "In secondi, così è calcolabile; la forma leggibile è accanto.",
|
|
385
384
|
"descTotalTime": "In secondi, così è calcolabile; la forma leggibile è accanto.",
|
|
386
|
-
"descVolumeDB": "Lo stesso volume mostrato dal display del ricevitore, in decibel.",
|
|
387
|
-
"descVolumeDisplayMode": "Se il ricevitore mostra il volume in decibel o come numero.",
|
|
388
385
|
"descAudioSelect": "Da quale terminale l'ingresso corrente prende l'audio: automatico, HDMI, coassiale/ottico o analogico.",
|
|
389
386
|
"descLinkControl": "Bilancia stabilità e ritardo nello streaming verso apparecchi collegati.",
|
|
390
387
|
"descLinkAudioDelay": "Se gli apparecchi collegati privilegiano il sincronismo labiale o l'audio allineato.",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "Se il segnale HDMI passa al televisore mentre il sintoamplificatore è in standby: spento, acceso o automatico.",
|
|
599
596
|
"hdmiVideoPreset": "Preset video HDMI",
|
|
600
597
|
"descHdmiVideoPreset": "Quale dei preset di elaborazione video memorizzati è in uso.",
|
|
601
|
-
"descMonaural": "Se la zona suona in mono; entrambi i diffusori riproducono allora lo stesso segnale."
|
|
598
|
+
"descMonaural": "Se la zona suona in mono; entrambi i diffusori riproducono allora lo stesso segnale.",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "Quanto forte suona la zona, nella scala in decibel che il ricevitore stesso mostra.",
|
|
602
|
+
"descVolumeNumeric": "Quanto forte suona la zona, nella scala numerica che il ricevitore stesso mostra.",
|
|
603
|
+
"descVolumePercent": "Quanto forte suona la zona, come percentuale dell'intervallo che il ricevitore accetta — 0 % è l'impostazione più bassa, 100 % la più alta."
|
|
602
604
|
}
|
package/admin/i18n/nl.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "IP-adres",
|
|
5
5
|
"label_xmlPollInterval": "XML-opvraaginterval (seconden)",
|
|
6
6
|
"tooltip_xmlPollInterval": "Hoe vaak de adapter receivers met het oude XML-protocol opvraagt (modellen van vóór ~2010). Deze apparaten melden wijzigingen niet zelf. Geen effect op YNCA- of MusicCast-apparaten.",
|
|
7
|
+
"volumeAsPercent": "Volume als 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "Uit: elk volume-datapunt gebruikt de schaal die de receiver zelf toont — decibel of zijn eigen stappen. Aan: allemaal, de hoofdzone en elke andere zone, gebruiken 0–100 %, het bereik dat de meeste VIS-widgets verwachten. De adapter rekent beide kanten op, dus de receiver krijgt altijd de waarde die hij verwacht.",
|
|
7
9
|
"supportHeader": "Ontwikkeling steunen",
|
|
8
10
|
"aboutInfo": "Als deze adapter nuttig voor je is, kun je de ontwikkeling steunen:",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "Startvolumeniveau",
|
|
134
136
|
"initialVolumeMode": "Startvolumemodus",
|
|
135
137
|
"input": "Ingang",
|
|
136
|
-
"inputNameDisplay": "Ingangsnaam (display)",
|
|
137
138
|
"inputName": "Ingangsnaam (%s)",
|
|
138
139
|
"inputNames": "Ingangsnamen",
|
|
139
140
|
"leaveGroup": "Groep verlaten",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "Tuner",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "Volume",
|
|
257
|
-
"descVolume": "Hoe hard de zone speelt
|
|
258
|
-
"volumeDB": "Volume (dB)",
|
|
259
|
-
"volumeDisplayMode": "Weergavemodus volume",
|
|
258
|
+
"descVolume": "Hoe hard de zone speelt, in de schaal die de receiver zelf toont: decibel als hij een decibelweergave heeft, anders zijn eigen stappen.",
|
|
260
259
|
"volumeInterlock": "Volumekoppeling",
|
|
261
260
|
"yncaControlPort": "YNCA-besturingspoort",
|
|
262
261
|
"ypaoVolume": "YPAO-volume",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "Of een AirPlay-apparaat het volume van deze receiver mag wijzigen.",
|
|
384
383
|
"descElapsedTime": "In seconden, zodat ermee gerekend kan worden; de leesbare vorm staat ernaast.",
|
|
385
384
|
"descTotalTime": "In seconden, zodat ermee gerekend kan worden; de leesbare vorm staat ernaast.",
|
|
386
|
-
"descVolumeDB": "Hetzelfde volume als op het display van de receiver, in decibel.",
|
|
387
|
-
"descVolumeDisplayMode": "Of de receiver het volume in decibel of als getal toont.",
|
|
388
385
|
"descAudioSelect": "Van welke aansluiting de huidige ingang zijn geluid neemt: automatisch, HDMI, coaxiaal/optisch of analoog.",
|
|
389
386
|
"descLinkControl": "Weegt stabiliteit tegen vertraging af bij streamen naar gekoppelde apparaten.",
|
|
390
387
|
"descLinkAudioDelay": "Of gekoppelde apparaten lipsynchroon of gelijk geluid verkiezen.",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "Of het HDMI-signaal naar de tv wordt doorgegeven terwijl de receiver in stand-by staat: uit, aan of automatisch.",
|
|
599
596
|
"hdmiVideoPreset": "HDMI-videovoorinstelling",
|
|
600
597
|
"descHdmiVideoPreset": "Welke van de opgeslagen videoverwerkingsvoorinstellingen in gebruik is.",
|
|
601
|
-
"descMonaural": "Of de zone in mono speelt; beide luidsprekers geven dan hetzelfde signaal weer."
|
|
598
|
+
"descMonaural": "Of de zone in mono speelt; beide luidsprekers geven dan hetzelfde signaal weer.",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "Hoe hard de zone speelt, in de decibelschaal die de receiver zelf toont.",
|
|
602
|
+
"descVolumeNumeric": "Hoe hard de zone speelt, in de getalschaal die de receiver zelf toont.",
|
|
603
|
+
"descVolumePercent": "Hoe hard de zone speelt, als percentage van het bereik dat de receiver accepteert — 0 % is de zachtste stand, 100 % de hardste."
|
|
602
604
|
}
|
package/admin/i18n/pl.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "Adres IP",
|
|
5
5
|
"label_xmlPollInterval": "Interwał odpytywania XML (sekundy)",
|
|
6
6
|
"tooltip_xmlPollInterval": "Jak często adapter odpytuje amplitunery ze starym protokołem XML (modele sprzed ~2010). Te urządzenia nie zgłaszają zmian samodzielnie. Bez wpływu na urządzenia YNCA i MusicCast.",
|
|
7
|
+
"volumeAsPercent": "Głośność jako 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "Wyłączone: każdy punkt danych głośności używa skali, którą pokazuje sam amplituner — decybeli albo własnej liczby kroków. Włączone: wszystkie, strefa główna i każda inna strefa, używają 0–100 %, czyli zakresu oczekiwanego przez większość widżetów VIS. Adapter przelicza w obie strony, więc amplituner zawsze dostaje wartość, której oczekuje.",
|
|
7
9
|
"supportHeader": "Wesprzyj rozwój",
|
|
8
10
|
"aboutInfo": "Jeśli ten adapter jest dla Ciebie przydatny, możesz wesprzeć jego rozwój:",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "Poziom głośności początkowej",
|
|
134
136
|
"initialVolumeMode": "Tryb głośności początkowej",
|
|
135
137
|
"input": "Wejście",
|
|
136
|
-
"inputNameDisplay": "Nazwa wejścia (wyświetlacz)",
|
|
137
138
|
"inputName": "Nazwa wejścia (%s)",
|
|
138
139
|
"inputNames": "Nazwy wejść",
|
|
139
140
|
"leaveGroup": "Opuść grupę",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "Tuner",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "Głośność",
|
|
257
|
-
"descVolume": "Jak głośno gra strefa
|
|
258
|
-
"volumeDB": "Głośność (dB)",
|
|
259
|
-
"volumeDisplayMode": "Tryb wyświetlania głośności",
|
|
258
|
+
"descVolume": "Jak głośno gra strefa, w skali, którą pokazuje sam amplituner: decybele, jeśli ma wskazanie w decybelach, w przeciwnym razie własne kroki.",
|
|
260
259
|
"volumeInterlock": "Sprzężenie głośności",
|
|
261
260
|
"yncaControlPort": "Port sterowania YNCA",
|
|
262
261
|
"ypaoVolume": "Głośność YPAO",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "Czy urządzenie AirPlay może zmieniać głośność tego amplitunera.",
|
|
384
383
|
"descElapsedTime": "W sekundach, by dało się liczyć; czytelna forma obok.",
|
|
385
384
|
"descTotalTime": "W sekundach, by dało się liczyć; czytelna forma obok.",
|
|
386
|
-
"descVolumeDB": "Ta sama głośność co na wyświetlaczu amplitunera, w decybelach.",
|
|
387
|
-
"descVolumeDisplayMode": "Czy amplituner pokazuje głośność w decybelach, czy jako liczbę.",
|
|
388
385
|
"descAudioSelect": "Z którego gniazda bieżące wejście pobiera dźwięk: automatycznie, HDMI, koncentryczne/optyczne lub analogowe.",
|
|
389
386
|
"descLinkControl": "Równoważy stabilność i opóźnienie przy przesyłaniu do połączonych urządzeń.",
|
|
390
387
|
"descLinkAudioDelay": "Czy połączone urządzenia stawiają na synchronizację z obrazem, czy równy dźwięk.",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "Czy sygnał HDMI jest przekazywany do telewizora, gdy amplituner jest w trybie czuwania: wył., wł. lub automatycznie.",
|
|
599
596
|
"hdmiVideoPreset": "Ustawienie wstępne wideo HDMI",
|
|
600
597
|
"descHdmiVideoPreset": "Które z zapisanych ustawień wstępnych przetwarzania wideo jest używane.",
|
|
601
|
-
"descMonaural": "Czy strefa gra w mono; oba głośniki odtwarzają wtedy ten sam sygnał."
|
|
598
|
+
"descMonaural": "Czy strefa gra w mono; oba głośniki odtwarzają wtedy ten sam sygnał.",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "Jak głośno gra strefa, w skali decybelowej pokazywanej przez sam amplituner.",
|
|
602
|
+
"descVolumeNumeric": "Jak głośno gra strefa, w skali liczbowej pokazywanej przez sam amplituner.",
|
|
603
|
+
"descVolumePercent": "Jak głośno gra strefa, jako procent zakresu, który przyjmuje amplituner — 0 % to ustawienie najcichsze, 100 % najgłośniejsze."
|
|
602
604
|
}
|
package/admin/i18n/pt.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "Endereço IP",
|
|
5
5
|
"label_xmlPollInterval": "Intervalo de consulta XML (segundos)",
|
|
6
6
|
"tooltip_xmlPollInterval": "Com que frequência o adaptador consulta recetores com o antigo protocolo XML (modelos anteriores a ~2010). Estes aparelhos não comunicam alterações por si. Sem efeito em YNCA ou MusicCast.",
|
|
7
|
+
"volumeAsPercent": "Volume como 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "Desligado: cada ponto de dados de volume usa a escala que o próprio receptor mostra — decibéis ou a sua própria contagem de passos. Ligado: todos eles, a zona principal e todas as outras zonas, usam 0–100 %, o intervalo que a maioria dos widgets VIS espera. O adaptador converte nos dois sentidos, por isso o receptor recebe sempre o valor que espera.",
|
|
7
9
|
"supportHeader": "Apoiar o desenvolvimento",
|
|
8
10
|
"aboutInfo": "Se este adaptador lhe é útil, pode apoiar o seu desenvolvimento:",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "Nível do volume inicial",
|
|
134
136
|
"initialVolumeMode": "Modo do volume inicial",
|
|
135
137
|
"input": "Entrada",
|
|
136
|
-
"inputNameDisplay": "Nome da entrada (visor)",
|
|
137
138
|
"inputName": "Nome da entrada (%s)",
|
|
138
139
|
"inputNames": "Nomes das entradas",
|
|
139
140
|
"leaveGroup": "Sair do grupo",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "Sintonizador",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "Volume",
|
|
257
|
-
"descVolume": "Quão alto a zona toca
|
|
258
|
-
"volumeDB": "Volume (dB)",
|
|
259
|
-
"volumeDisplayMode": "Modo de exibição do volume",
|
|
258
|
+
"descVolume": "Quão alto a zona toca, na escala que o próprio recetor mostra: decibéis se tiver indicação em decibéis, caso contrário os seus próprios passos.",
|
|
260
259
|
"volumeInterlock": "Bloqueio de volume",
|
|
261
260
|
"yncaControlPort": "Porta de controlo YNCA",
|
|
262
261
|
"ypaoVolume": "Volume YPAO",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "Se um aparelho AirPlay pode alterar o volume deste recetor.",
|
|
384
383
|
"descElapsedTime": "Em segundos, para poder calcular; a forma legível está ao lado.",
|
|
385
384
|
"descTotalTime": "Em segundos, para poder calcular; a forma legível está ao lado.",
|
|
386
|
-
"descVolumeDB": "O mesmo volume que o visor do recetor mostra, em decibéis.",
|
|
387
|
-
"descVolumeDisplayMode": "Se o recetor mostra o volume em decibéis ou como número simples.",
|
|
388
385
|
"descAudioSelect": "De que terminal o som da entrada atual vem: automático, HDMI, coaxial/ótico ou analógico.",
|
|
389
386
|
"descLinkControl": "Equilibra estabilidade e atraso ao transmitir para aparelhos ligados.",
|
|
390
387
|
"descLinkAudioDelay": "Se os aparelhos ligados privilegiam o sincronismo labial ou o áudio alinhado.",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "Se o sinal HDMI passa para o televisor enquanto o receptor está em espera: desligado, ligado ou automático.",
|
|
599
596
|
"hdmiVideoPreset": "Predefinição de vídeo HDMI",
|
|
600
597
|
"descHdmiVideoPreset": "Qual das predefinições de processamento de vídeo guardadas está em uso.",
|
|
601
|
-
"descMonaural": "Se a zona toca em mono; ambas as colunas reproduzem então o mesmo sinal."
|
|
598
|
+
"descMonaural": "Se a zona toca em mono; ambas as colunas reproduzem então o mesmo sinal.",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "Quão alto a zona toca, na escala de decibéis que o próprio recetor mostra.",
|
|
602
|
+
"descVolumeNumeric": "Quão alto a zona toca, na escala numérica que o próprio recetor mostra.",
|
|
603
|
+
"descVolumePercent": "Quão alto a zona toca, como percentagem do intervalo que o receptor aceita — 0 % é a definição mais baixa, 100 % a mais alta."
|
|
602
604
|
}
|
package/admin/i18n/ru.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "IP-адрес",
|
|
5
5
|
"label_xmlPollInterval": "Интервал опроса XML (секунды)",
|
|
6
6
|
"tooltip_xmlPollInterval": "Как часто адаптер опрашивает ресиверы со старым XML-протоколом (модели до ~2010). Эти устройства не сообщают об изменениях сами. Не влияет на устройства YNCA и MusicCast.",
|
|
7
|
+
"volumeAsPercent": "Громкость как 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "Выкл.: каждый датапоинт громкости использует шкалу, которую показывает сам ресивер — децибелы или его собственные шаги. Вкл.: все они, главная зона и каждая другая зона, используют 0–100 % — диапазон, который ожидает большинство виджетов VIS. Адаптер пересчитывает в обе стороны, поэтому ресивер всегда получает ожидаемое значение.",
|
|
7
9
|
"supportHeader": "Поддержать разработку",
|
|
8
10
|
"aboutInfo": "Если этот адаптер вам полезен, вы можете поддержать его разработку:",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "Уровень начальной громкости",
|
|
134
136
|
"initialVolumeMode": "Режим начальной громкости",
|
|
135
137
|
"input": "Вход",
|
|
136
|
-
"inputNameDisplay": "Название входа (на дисплее)",
|
|
137
138
|
"inputName": "Название входа (%s)",
|
|
138
139
|
"inputNames": "Названия входов",
|
|
139
140
|
"leaveGroup": "Покинуть группу",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "Тюнер",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "Громкость",
|
|
257
|
-
"descVolume": "Насколько громко играет
|
|
258
|
-
"volumeDB": "Громкость (дБ)",
|
|
259
|
-
"volumeDisplayMode": "Режим отображения громкости",
|
|
258
|
+
"descVolume": "Насколько громко играет зона — в той шкале, которую показывает сам ресивер: децибелы, если у него есть индикация в децибелах, иначе его собственные шаги.",
|
|
260
259
|
"volumeInterlock": "Связка громкости",
|
|
261
260
|
"yncaControlPort": "Порт управления YNCA",
|
|
262
261
|
"ypaoVolume": "Громкость YPAO",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "Может ли устройство AirPlay менять громкость этого ресивера.",
|
|
384
383
|
"descElapsedTime": "В секундах, чтобы с этим можно было считать; читаемая форма рядом.",
|
|
385
384
|
"descTotalTime": "В секундах, чтобы с этим можно было считать; читаемая форма рядом.",
|
|
386
|
-
"descVolumeDB": "Та же громкость, что показывает дисплей ресивера, в децибелах.",
|
|
387
|
-
"descVolumeDisplayMode": "Показывает ли ресивер громкость в децибелах или простым числом.",
|
|
388
385
|
"descAudioSelect": "Звук какого разъёма использует текущий вход: автоматически, HDMI, коаксиальный/оптический или аналоговый.",
|
|
389
386
|
"descLinkControl": "Баланс стабильности и задержки при передаче на связанные устройства.",
|
|
390
387
|
"descLinkAudioDelay": "Что важнее связанным устройствам: синхрон с картинкой или ровный звук.",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "Проходит ли HDMI-сигнал на телевизор, пока ресивер в режиме ожидания: выкл., вкл. или автоматически.",
|
|
599
596
|
"hdmiVideoPreset": "Пресет видео HDMI",
|
|
600
597
|
"descHdmiVideoPreset": "Какой из сохранённых пресетов видеообработки используется.",
|
|
601
|
-
"descMonaural": "Играет ли зона в моно; оба динамика тогда воспроизводят один и тот же сигнал."
|
|
598
|
+
"descMonaural": "Играет ли зона в моно; оба динамика тогда воспроизводят один и тот же сигнал.",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "Насколько громко играет зона, в шкале децибел, которую показывает сам ресивер.",
|
|
602
|
+
"descVolumeNumeric": "Насколько громко играет зона, в числовой шкале, которую показывает сам ресивер.",
|
|
603
|
+
"descVolumePercent": "Насколько громко играет зона, в процентах от диапазона, который принимает ресивер: 0 % — самая тихая настройка, 100 % — самая громкая."
|
|
602
604
|
}
|
package/admin/i18n/uk.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "IP-адреса",
|
|
5
5
|
"label_xmlPollInterval": "Інтервал опитування XML (секунди)",
|
|
6
6
|
"tooltip_xmlPollInterval": "Як часто адаптер опитує ресивери зі старим XML-протоколом (моделі до ~2010). Ці пристрої не повідомляють про зміни самостійно. Не впливає на пристрої YNCA та MusicCast.",
|
|
7
|
+
"volumeAsPercent": "Гучність як 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "Вимкнено: кожен датапоінт гучності використовує шкалу, яку показує сам ресивер — децибели або власні кроки. Увімкнено: усі вони, головна зона й кожна інша зона, використовують 0–100 % — діапазон, який очікує більшість віджетів VIS. Адаптер перераховує в обидва боки, тож ресивер завжди отримує очікуване значення.",
|
|
7
9
|
"supportHeader": "Підтримати розробку",
|
|
8
10
|
"aboutInfo": "Якщо цей адаптер вам корисний, ви можете підтримати його розробку:",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "Рівень початкової гучності",
|
|
134
136
|
"initialVolumeMode": "Режим початкової гучності",
|
|
135
137
|
"input": "Вхід",
|
|
136
|
-
"inputNameDisplay": "Назва входу (дисплей)",
|
|
137
138
|
"inputName": "Назва входу (%s)",
|
|
138
139
|
"inputNames": "Назви входів",
|
|
139
140
|
"leaveGroup": "Покинути групу",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "Тюнер",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "Гучність",
|
|
257
|
-
"descVolume": "Наскільки гучно грає
|
|
258
|
-
"volumeDB": "Гучність (дБ)",
|
|
259
|
-
"volumeDisplayMode": "Режим показу гучності",
|
|
258
|
+
"descVolume": "Наскільки гучно грає зона — у тій шкалі, яку показує сам ресивер: децибели, якщо він має індикацію в децибелах, інакше власні кроки.",
|
|
260
259
|
"volumeInterlock": "Зв'язка гучності",
|
|
261
260
|
"yncaControlPort": "Порт керування YNCA",
|
|
262
261
|
"ypaoVolume": "Гучність YPAO",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "Чи може пристрій AirPlay змінювати гучність цього ресивера.",
|
|
384
383
|
"descElapsedTime": "У секундах, щоб можна було рахувати; зручна форма поруч.",
|
|
385
384
|
"descTotalTime": "У секундах, щоб можна було рахувати; зручна форма поруч.",
|
|
386
|
-
"descVolumeDB": "Та сама гучність, що на дисплеї ресивера, у децибелах.",
|
|
387
|
-
"descVolumeDisplayMode": "Чи показує ресивер гучність у децибелах, чи простим числом.",
|
|
388
385
|
"descAudioSelect": "Звук якого роз'єму використовує поточний вхід: автоматично, HDMI, коаксіальний/оптичний чи аналоговий.",
|
|
389
386
|
"descLinkControl": "Баланс стабільності та затримки при передачі на пов'язані пристрої.",
|
|
390
387
|
"descLinkAudioDelay": "Що важливіше пов'язаним пристроям: синхрон із зображенням чи рівний звук.",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "Чи проходить HDMI-сигнал на телевізор, поки ресивер у режимі очікування: вимк., увімк. або автоматично.",
|
|
599
596
|
"hdmiVideoPreset": "Пресет відео HDMI",
|
|
600
597
|
"descHdmiVideoPreset": "Який із збережених пресетів відеообробки використовується.",
|
|
601
|
-
"descMonaural": "Чи грає зона в моно; обидва динаміки тоді відтворюють той самий сигнал."
|
|
598
|
+
"descMonaural": "Чи грає зона в моно; обидва динаміки тоді відтворюють той самий сигнал.",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "Наскільки гучно грає зона, у шкалі децибел, яку показує сам ресивер.",
|
|
602
|
+
"descVolumeNumeric": "Наскільки гучно грає зона, у числовій шкалі, яку показує сам ресивер.",
|
|
603
|
+
"descVolumePercent": "Наскільки гучно грає зона, у відсотках від діапазону, який приймає ресивер: 0 % — найтихіше налаштування, 100 % — найгучніше."
|
|
602
604
|
}
|
package/admin/i18n/zh-cn.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
"columnIp": "IP 地址",
|
|
5
5
|
"label_xmlPollInterval": "XML 查询间隔(秒)",
|
|
6
6
|
"tooltip_xmlPollInterval": "适配器轮询使用旧 XML 协议的功放(约 2010 年前的型号)的频率。这些设备不会自行报告更改。对 YNCA 或 MusicCast 设备无影响。",
|
|
7
|
+
"volumeAsPercent": "音量显示为 0–100 %",
|
|
8
|
+
"volumeAsPercent_help": "关闭:每个音量数据点使用功放自己显示的刻度——分贝或它自己的步进数。开启:所有数据点,主区域和每个其他区域,都改用 0–100 %,这是大多数 VIS 控件所期望的范围。适配器双向换算,因此功放始终收到它期望的数值。",
|
|
7
9
|
"supportHeader": "支持开发",
|
|
8
10
|
"aboutInfo": "如果此适配器对你有用,你可以支持它的开发:",
|
|
9
11
|
"donateKofi": "Ko-fi",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"initialVolumeLevel": "初始音量电平",
|
|
134
136
|
"initialVolumeMode": "初始音量模式",
|
|
135
137
|
"input": "输入",
|
|
136
|
-
"inputNameDisplay": "输入名称(显示)",
|
|
137
138
|
"inputName": "输入名称(%s)",
|
|
138
139
|
"inputNames": "输入名称",
|
|
139
140
|
"leaveGroup": "离开群组",
|
|
@@ -254,9 +255,7 @@
|
|
|
254
255
|
"tuner": "调谐器",
|
|
255
256
|
"usb": "USB",
|
|
256
257
|
"volume": "音量",
|
|
257
|
-
"descVolume": "
|
|
258
|
-
"volumeDB": "音量 (dB)",
|
|
259
|
-
"volumeDisplayMode": "音量显示方式",
|
|
258
|
+
"descVolume": "该区域的音量,采用接收机自身显示的刻度:有分贝显示时为分贝,没有时为它自己的步进值。",
|
|
260
259
|
"volumeInterlock": "音量联动",
|
|
261
260
|
"yncaControlPort": "YNCA 控制端口",
|
|
262
261
|
"ypaoVolume": "YPAO 音量",
|
|
@@ -383,8 +382,6 @@
|
|
|
383
382
|
"descVolumeInterlock": "AirPlay 设备是否可以改变本功放的音量。",
|
|
384
383
|
"descElapsedTime": "以秒为单位便于计算;易读形式在旁边。",
|
|
385
384
|
"descTotalTime": "以秒为单位便于计算;易读形式在旁边。",
|
|
386
|
-
"descVolumeDB": "与功放显示屏一致的音量,单位分贝。",
|
|
387
|
-
"descVolumeDisplayMode": "功放以分贝还是普通数字显示音量。",
|
|
388
385
|
"descAudioSelect": "当前输入使用哪个端子的声音:自动、HDMI、同轴/光纤或模拟。",
|
|
389
386
|
"descLinkControl": "向联动设备串流时在稳定性与延迟之间取舍。",
|
|
390
387
|
"descLinkAudioDelay": "联动设备优先唇形同步还是音频对齐。",
|
|
@@ -598,5 +595,10 @@
|
|
|
598
595
|
"descHdmiStandbyThrough": "功放待机时是否将 HDMI 信号直通至电视:关、开或自动。",
|
|
599
596
|
"hdmiVideoPreset": "HDMI 视频预设",
|
|
600
597
|
"descHdmiVideoPreset": "当前使用的是哪个已存视频处理预设。",
|
|
601
|
-
"descMonaural": "该区域是否以单声道播放;此时两个扬声器输出相同的信号。"
|
|
598
|
+
"descMonaural": "该区域是否以单声道播放;此时两个扬声器输出相同的信号。",
|
|
599
|
+
"docLinkLabelDe": "Wiki (Deutsch)",
|
|
600
|
+
"docLinkLabelEn": "Wiki (English)",
|
|
601
|
+
"descVolumeDb": "该区域的音量,采用功放自身显示的分贝刻度。",
|
|
602
|
+
"descVolumeNumeric": "该区域的音量,采用功放自身显示的数字刻度。",
|
|
603
|
+
"descVolumePercent": "该区域的播放音量,以功放可接受范围的百分比表示——0 % 为最小,100 % 为最大。"
|
|
602
604
|
}
|