summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake/v4l.pm
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2002-08-29 07:17:20 +0000
committerPablo Saratxaga <pablo@mandriva.com>2002-08-29 07:17:20 +0000
commit9136f007c185947f273859b69f9ba06464d079e0 (patch)
treea2622af3d44bd3cc050ba00153392e38201be492 /perl-install/harddrake/v4l.pm
parent22dbbe3229fd6eb79108edac3209a828e1f917a7 (diff)
downloaddrakx-9136f007c185947f273859b69f9ba06464d079e0.tar
drakx-9136f007c185947f273859b69f9ba06464d079e0.tar.gz
drakx-9136f007c185947f273859b69f9ba06464d079e0.tar.bz2
drakx-9136f007c185947f273859b69f9ba06464d079e0.tar.xz
drakx-9136f007c185947f273859b69f9ba06464d079e0.zip
corrected English typos (no space before colon in English)
Diffstat (limited to 'perl-install/harddrake/v4l.pm')
-rw-r--r--perl-install/harddrake/v4l.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/harddrake/v4l.pm b/perl-install/harddrake/v4l.pm
index 0619adb2d..aa80e2fd8 100644
--- a/perl-install/harddrake/v4l.pm
+++ b/perl-install/harddrake/v4l.pm
@@ -210,12 +210,12 @@ sub config {
if ($in->ask_from("BTTV configuration", _("For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-detect the rights parameters.
If your card is misdetected, you can force the right tuner and card types here. Just select your tv card parameters if needed"),
[
- { label => _("Card model :"), val => \$conf{card}, list => [keys %{$cards_lst->{$driver}}], type => 'combo', default => -1, sort =>1, separator => '|'},
- { label => _("Tuner type :"), val => \$conf{tuner}, list => [keys %tuners_lst], format => sub { $tuners_lst{$_[0]} }, sort => 1, separator => '|'},
- { label => _("Number of capture buffers :"), val => \$conf{gbuffers}, min=>2, max=>32, sort => 1, default => 0, type=>'range', advanced =>1, help => _("number of capture buffers for mmap'ed capture")},
+ { label => _("Card model:"), val => \$conf{card}, list => [keys %{$cards_lst->{$driver}}], type => 'combo', default => -1, sort =>1, separator => '|'},
+ { label => _("Tuner type:"), val => \$conf{tuner}, list => [keys %tuners_lst], format => sub { $tuners_lst{$_[0]} }, sort => 1, separator => '|'},
+ { label => _("Number of capture buffers:"), val => \$conf{gbuffers}, min=>2, max=>32, sort => 1, default => 0, type=>'range', advanced =>1, help => _("number of capture buffers for mmap'ed capture")},
if_($driver eq 'bttv',
- { label => _("PLL setting :"), val => \$conf{pll}, list => [keys %pll_lst], format => sub { $pll_lst{$_[0]} }, sort => 1, default => 0, advanced =>1},
- { label => _("Radio support :"), val => \$conf{radio}, type => "bool", text => _("enable radio support")}),
+ { label => _("PLL setting:"), val => \$conf{pll}, list => [keys %pll_lst], format => sub { $pll_lst{$_[0]} }, sort => 1, default => 0, advanced =>1},
+ { label => _("Radio support:"), val => \$conf{radio}, type => "bool", text => _("enable radio support")}),
]
))
{