Skip to content

Commit 92fba98

Browse files
committed
small text changes
1 parent 0ef9736 commit 92fba98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/python/Components/Lcd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ def setXcoreVFD(configElement):
397397
], default="0")
398398
config.usage.vfd_xcorevfd.addNotifier(setXcoreVFD)
399399

400-
choices = [("0", _("off")), ("1", _("blue"))] if MACHINEBUILD == "dual" else [("0", _("Off")), ("1", _("blue")), ("2", _("red")), ("3", _("violet"))]
400+
choices = [("0", _("Off")), ("1", _("blue"))] if MACHINEBUILD == "dual" else [("0", _("Off")), ("1", _("blue")), ("2", _("red")), ("3", _("violet"))]
401401

402402
config.usage.lcd_ledpowercolor = ConfigSelection(default="1", choices=choices)
403403
if exists("/proc/stb/fp/ledpowercolor"):

lib/python/Screens/Ci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def InitCiConfig():
4949
config.ci[slot].static_pin = ConfigPIN(default=0)
5050
config.ci[slot].show_ci_messages = ConfigYesNo(default=True)
5151
config.ci[slot].disable_operator_profile = ConfigYesNo(default=False)
52-
config.ci[slot].alternative_ca_handling = ConfigSelection(choices=[(0, _("off")), (1, _("Close CA device at programm end")), (2, _("Offset CA device index")), (3, _("Offset and close CA device"))], default=0)
52+
config.ci[slot].alternative_ca_handling = ConfigSelection(choices=[(0, _("Off")), (1, _("Close CA device at programm end")), (2, _("Offset CA device index")), (3, _("Offset and close CA device"))], default=0)
5353
if BoxInfo.getItem(f"CI{slot}SupportsHighBitrates"):
5454
highBitrateChoices = [
5555
("normal", _("Normal")),

0 commit comments

Comments
 (0)