diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-03-09 16:30:17 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-03-09 16:30:17 +0000 |
| commit | 2f2b96fef51a5b4bfeb599f9785ecb6315c1fd4d (patch) | |
| tree | 05eeb88afc385926945cb5df3ad68be5c20ec738 /lib/python/Components/AVSwitch.py | |
| parent | 6c07ada35bf94c495226f63acaf88ae0a954639e (diff) | |
| download | enigma2-2f2b96fef51a5b4bfeb599f9785ecb6315c1fd4d.tar.gz enigma2-2f2b96fef51a5b4bfeb599f9785ecb6315c1fd4d.zip | |
better aspect setting
Diffstat (limited to 'lib/python/Components/AVSwitch.py')
| -rw-r--r-- | lib/python/Components/AVSwitch.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py index c712a60e..044ea43c 100644 --- a/lib/python/Components/AVSwitch.py +++ b/lib/python/Components/AVSwitch.py @@ -95,6 +95,31 @@ def InitAVSwitch(): "16_10_panscan": _("16:10 PanScan"), "16_9_letterbox": _("16:9 Letterbox")}, default = "4_3_letterbox") + + config.av.aspect = ConfigSelection(choices={ + "4_3": _("4:3"), + "16_9": _("16:9"), + "16_10": _("16:10"), + "auto": _("Automatic")}, + default = "auto") + config.av.policy_169 = ConfigSelection(choices={ + # TRANSLATORS: (aspect ratio policy: black bars on top/bottom) in doubt, keep english term. + "letterbox": _("Letterbox"), + # TRANSLATORS: (aspect ratio policy: cropped content on left/right) in doubt, keep english term + "panscan": _("Pan&Scan"), + # TRANSLATORS: (aspect ratio policy: display as fullscreen, even if this breaks the aspect) + "scale": _("Just Scale")}, + default = "letterbox") + config.av.policy_43 = ConfigSelection(choices={ + # TRANSLATORS: (aspect ratio policy: black bars on top/bottom) in doubt, keep english term. + "pillarbox": _("Pillarbox"), + # TRANSLATORS: (aspect ratio policy: cropped content on left/right) in doubt, keep english term + "panscan": _("Pan&Scan"), + # TRANSLATORS: (aspect ratio policy: display as fullscreen, with stretching the left/right) + "nonlinear": _("Nonlinear"), + # TRANSLATORS: (aspect ratio policy: display as fullscreen, even if this breaks the aspect) + "scale": _("Just Scale")}, + default = "panscan") config.av.tvsystem = ConfigSelection(choices = {"pal": _("PAL"), "ntsc": _("NTSC"), "multinorm": _("multinorm")}, default="pal") config.av.wss = ConfigEnableDisable(default = True) config.av.defaultac3 = ConfigYesNo(default = False) |
