Skip to content

Commit

Permalink
[AudioSelection] change text in choice_list for CanAC3plusTranscode
Browse files Browse the repository at this point in the history
  • Loading branch information
hd75hd authored and koivo committed Oct 14, 2018
1 parent 69ed4e9 commit 5a559f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Screens/AudioSelection.py
Expand Up @@ -151,7 +151,7 @@ def fillList(self, arg=None):
choice_list = [("downmix", _("Downmix")), ("passthrough", _("Passthrough")), ("force_ac3", _("convert to AC3")), ("multichannel", _("convert to multi-channel PCM")), ("force_dts", _("convert to DTS"))]
self.settings.transcodeac3plus = ConfigSelection(choices = choice_list, default = config.av.transcodeac3plus.value)
else:
choice_list = [("use_hdmi_caps", _("controlled by HDMI")), ("force_ac3", _("always"))]
choice_list = [("use_hdmi_caps", _("controlled by HDMI")), ("force_ac3", _("convert to AC3"))]
self.settings.transcodeac3plus = ConfigSelection(choices = choice_list, default = config.av.transcodeac3plus.value)
self.settings.transcodeac3plus.addNotifier(self.setAC3plusTranscode, initial_call = False)
conflist.append(getConfigListEntry(_("AC3plus transcoding"), self.settings.transcodeac3plus, None))
Expand Down

0 comments on commit 5a559f0

Please sign in to comment.