summaryrefslogtreecommitdiffstats
path: root/perl-install/share/po/it.po
diff options
context:
space:
mode:
authorAhmad Samir <ahmad@mageia.org>2011-04-04 22:08:51 +0000
committerAhmad Samir <ahmad@mageia.org>2011-04-04 22:08:51 +0000
commit0b067ac321acf0f3c518d820928f283a23bed8a0 (patch)
treef6f9e143aa2929aa77eb88f0bb86d13c3da72ba9 /perl-install/share/po/it.po
parent489e616a8f0a2410c6b83a6cc8fe061d9ac5c833 (diff)
downloaddrakx-0b067ac321acf0f3c518d820928f283a23bed8a0.tar
drakx-0b067ac321acf0f3c518d820928f283a23bed8a0.tar.gz
drakx-0b067ac321acf0f3c518d820928f283a23bed8a0.tar.bz2
drakx-0b067ac321acf0f3c518d820928f283a23bed8a0.tar.xz
drakx-0b067ac321acf0f3c518d820928f283a23bed8a0.zip
- 's!Just select your tv card parameters!Just select your TV card parameters!'
Diffstat (limited to 'perl-install/share/po/it.po')
-rw-r--r--perl-install/share/po/it.po2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index d5d5a1d8e..1575ee87f 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -3467,7 +3467,7 @@ msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
+"here. Just select your TV card parameters if needed."
msgstr ""
"Per la maggior parte delle schede di sintonia TV recenti, il modulo bttv del "
"kernel GNU/Linux si limita\n"
='ctx'> $dialog->action_area->pack_start($button2, 1, 1, 0);
}
+ my $button = Gtk2::Button->new_from_stock('gtk-ok');
+ $button->can_default(1);
+ $button->signal_connect(clicked => sub { $ret = 1; $dialog->destroy; Gtk2->main_quit });
+ $dialog->action_area->pack_start($button, 1, 1, 0);
+ $button->grab_default;
+
$dialog->show_all;
Gtk2->main;
$ret;
@@ -465,7 +465,7 @@ sub create_okcancel {
my $b2 = $cancel && gtksignal_connect($w->{cancel} = Gtk2::Button->new_from_stock($cancel), clicked => $w->{cancel_clicked} || sub { log::l("default cancel_clicked"); undef $w->{retval}; Gtk2->main_quit });
gtksignal_connect($w->{wizcancel} = Gtk2::Button->new_from_stock('gtk-cancel'), clicked => sub { die 'wizcancel' }) if $wizard_buttons && !$::isInstall;
my @l = grep { $_ } $wizard_buttons ? (if_(!$::isInstall, $w->{wizcancel}),
- if_(!$::Wizard_no_previous, $b2), $b1) : ($b1, $b2);
+ if_(!$::Wizard_no_previous, $b2), $b1) : ($b2, $b1);
my @l2 = map { gtksignal_connect(Gtk2::Button->new_from_stock($_->[0]), clicked => $_->[1]) } grep { $_->[2] } @other;
my @r2 = map { gtksignal_connect(Gtk2::Button->new_from_stock($_->[0]), clicked => $_->[1]) } grep { !$_->[2] } @other;