Skip to content

Commit

Permalink
[AudioSelection]
Browse files Browse the repository at this point in the history
1) Change Original version to Original language
2) Shorten "Audio description for the visually impaired" due to lack of space in some skins
  • Loading branch information
Huevos committed Nov 11, 2021
1 parent 5f4ba9e commit 06c39b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/python/Components/UsageConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ def setZapmode(el):
audio_language_choices = [
("", _("None")),
("und", _("Undetermined")),
(originalAudioTracks, _("Original version")),
(originalAudioTracks, _("Original language")),
("ara", _("Arabic")),
("eus baq", _("Basque")),
("bul", _("Bulgarian")),
Expand Down Expand Up @@ -1054,7 +1054,7 @@ def setZapmode(el):
("tha", _("Thai")),
("tur Audio_TUR", _("Turkish")),
("ukr Ukr", _("Ukrainian")),
(visuallyImpairedCommentary, _("Audio description for the visually impaired"))]
(visuallyImpairedCommentary, _("Narration"))]

def setEpgLanguage(configElement):
eServiceEvent.setEPGLanguage(configElement.value)
Expand Down
4 changes: 2 additions & 2 deletions lib/python/Screens/AudioSelection.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,9 @@ def fillList(self, arg=None):
if lang in LanguageCodes:
language += _(LanguageCodes[lang][0])
elif lang in originalAudioTracks:
language += "%s (%s)" % (_("Original version"), lang)
language += _("Original language")
elif lang in visuallyImpairedCommentary:
language += "%s (%s)" % (_("Audio description for the visually impaired"), lang)
language += _("Narration")
else:
language += lang
cnt += 1
Expand Down

0 comments on commit 06c39b8

Please sign in to comment.