Added additional explanation regarding power safe and screensaver
This commit is contained in:
parent
248ffdd9cc
commit
ce287bc700
@ -477,7 +477,9 @@
|
|||||||
"ProfileHint": "Ihr Gerät reagiert möglicherweise nicht mehr, wenn Sie ein inkompatibles Profil wählen. In diesem Fall müssen Sie eine Löschung über das serielle Interface durchführen.",
|
"ProfileHint": "Ihr Gerät reagiert möglicherweise nicht mehr, wenn Sie ein inkompatibles Profil wählen. In diesem Fall müssen Sie eine Löschung über das serielle Interface durchführen.",
|
||||||
"Display": "Display",
|
"Display": "Display",
|
||||||
"PowerSafe": "Power Safe aktivieren:",
|
"PowerSafe": "Power Safe aktivieren:",
|
||||||
|
"PowerSafeHint": "Schaltet das Display aus wenn kein Wechselrichter produziert",
|
||||||
"Screensaver": "Screensaver aktivieren:",
|
"Screensaver": "Screensaver aktivieren:",
|
||||||
|
"ScreensaverHint": "Bewegt die Ausgabe bei jeder Aktualisierung um ein Einbrennen zu verhindern. (Nützlich v.a. für OLED Displays)",
|
||||||
"ShowLogo": "Logo Anzeigen:",
|
"ShowLogo": "Logo Anzeigen:",
|
||||||
"Contrast": "Kontrast ({contrast}):",
|
"Contrast": "Kontrast ({contrast}):",
|
||||||
"Save": "@:dtuadmin.Save"
|
"Save": "@:dtuadmin.Save"
|
||||||
|
|||||||
@ -477,7 +477,9 @@
|
|||||||
"ProfileHint": "Your device may stop responding if you select an incompatible profile. In this case, you must perform a deletion via the serial interface.",
|
"ProfileHint": "Your device may stop responding if you select an incompatible profile. In this case, you must perform a deletion via the serial interface.",
|
||||||
"Display": "Display",
|
"Display": "Display",
|
||||||
"PowerSafe": "Enable Power Safe:",
|
"PowerSafe": "Enable Power Safe:",
|
||||||
|
"PowerSafeHint": "Turn off the display if no inverter is producing.",
|
||||||
"Screensaver": "Enable Screensaver:",
|
"Screensaver": "Enable Screensaver:",
|
||||||
|
"ScreensaverHint": "Move the display a little bit on each update to prevent burn-in. (Useful especially for OLED displays)",
|
||||||
"ShowLogo": "Show Logo:",
|
"ShowLogo": "Show Logo:",
|
||||||
"Contrast": "Contrast ({contrast}):",
|
"Contrast": "Contrast ({contrast}):",
|
||||||
"Save": "@:dtuadmin.Save"
|
"Save": "@:dtuadmin.Save"
|
||||||
|
|||||||
@ -477,7 +477,9 @@
|
|||||||
"ProfileHint": "Your device may stop responding if you select an incompatible profile. In this case, you must perform a deletion via the serial interface.",
|
"ProfileHint": "Your device may stop responding if you select an incompatible profile. In this case, you must perform a deletion via the serial interface.",
|
||||||
"Display": "Display",
|
"Display": "Display",
|
||||||
"PowerSafe": "Enable Power Safe:",
|
"PowerSafe": "Enable Power Safe:",
|
||||||
|
"PowerSafeHint": "Turn off the display if no inverter is producing.",
|
||||||
"Screensaver": "Enable Screensaver:",
|
"Screensaver": "Enable Screensaver:",
|
||||||
|
"ScreensaverHint": "Move the display a little bit on each update to prevent burn-in. (Useful especially for OLED displays)",
|
||||||
"ShowLogo": "Show Logo:",
|
"ShowLogo": "Show Logo:",
|
||||||
"Contrast": "Contrast ({contrast}):",
|
"Contrast": "Contrast ({contrast}):",
|
||||||
"Save": "@:dtuadmin.Save"
|
"Save": "@:dtuadmin.Save"
|
||||||
|
|||||||
@ -50,10 +50,12 @@
|
|||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<InputElement :label="$t('deviceadmin.PowerSafe')"
|
<InputElement :label="$t('deviceadmin.PowerSafe')"
|
||||||
v-model="deviceConfigList.display.power_safe" type="checkbox" />
|
v-model="deviceConfigList.display.power_safe" type="checkbox"
|
||||||
|
:tooltip="$t('deviceadmin.PowerSafeHint')" />
|
||||||
|
|
||||||
<InputElement :label="$t('deviceadmin.Screensaver')"
|
<InputElement :label="$t('deviceadmin.Screensaver')"
|
||||||
v-model="deviceConfigList.display.screensaver" type="checkbox" />
|
v-model="deviceConfigList.display.screensaver" type="checkbox"
|
||||||
|
:tooltip="$t('deviceadmin.ScreensaverHint')" />
|
||||||
|
|
||||||
<InputElement :label="$t('deviceadmin.ShowLogo')"
|
<InputElement :label="$t('deviceadmin.ShowLogo')"
|
||||||
v-model="deviceConfigList.display.show_logo" type="checkbox" />
|
v-model="deviceConfigList.display.show_logo" type="checkbox" />
|
||||||
@ -96,7 +98,7 @@ export default defineComponent({
|
|||||||
BootstrapAlert,
|
BootstrapAlert,
|
||||||
InputElement,
|
InputElement,
|
||||||
PinInfo,
|
PinInfo,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
dataLoading: true,
|
dataLoading: true,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user