summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_gtk.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-04-15 21:31:11 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-04-15 21:31:11 +0000
commit9cdb9f0d0ea484f8454be24d94a4e179138c70b8 (patch)
treee8fef59b2d476a8aba48a1edf828888ec9e87df6 /perl-install/install_steps_gtk.pm
parentfb2657dc463c4f3053ba243654aa1271ffa4588c (diff)
downloaddrakx-backup-do-not-use-9cdb9f0d0ea484f8454be24d94a4e179138c70b8.tar
drakx-backup-do-not-use-9cdb9f0d0ea484f8454be24d94a4e179138c70b8.tar.gz
drakx-backup-do-not-use-9cdb9f0d0ea484f8454be24d94a4e179138c70b8.tar.bz2
drakx-backup-do-not-use-9cdb9f0d0ea484f8454be24d94a4e179138c70b8.tar.xz
drakx-backup-do-not-use-9cdb9f0d0ea484f8454be24d94a4e179138c70b8.zip
no_comment
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r--perl-install/install_steps_gtk.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index 772e5dbbe..16da76c52 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -151,7 +151,7 @@ sub selectInstallClass1 {
my $w = my_gtk->new('');
my ($radio, $focused);
gtkadd($w->{window},
- gtkpack($o->create_box_with_title(_("Which installation class do you want?")),
+ gtkpack($o->create_box_with_title(_("Please, choose one of the following classes of installation:")),
(my @radios = map { $radio = new Gtk::RadioButton($_, $radio ? $radio : ());
$radio->set_active($_ eq $def); $radio } @$l),
gtkadd(create_hbox(),
@@ -309,7 +309,7 @@ sub chooseSizeToInstall {
_("Now that you've selected desired groups, please choose
how many packages you want, ranging from minimal to full
installation of each selected groups.") .
- ($o->{compssUsersChoice}{Individual} ? "\n" . _("You will be able to choose more precisely in next step") : ''),
+ ($o->{compssUsersChoice}{Individual} ? "\n" . _("You will be able to choose them more specificaly in the next step") : ''),
create_packtable({ col_spacings => 10 },
[ _("Choose the size you want to install"), $spin, _("MB"), ],
[ undef, new Gtk::HScrollbar($adj) ],
@@ -397,8 +397,8 @@ sub choosePackagesTree {
my %toolbar = my @toolbar =
(
- ftout => [ _("Expand Tree") , sub { $tree->expand_recursive(undef) } ],
- ftin => [ _("Collapse Tree") , sub { $tree->collapse_recursive(undef) } ],
+ ftout => [ _("Expand tree") , sub { $tree->expand_recursive(undef) } ],
+ ftin => [ _("Collapse tree") , sub { $tree->collapse_recursive(undef) } ],
reload=> [ _("Toggle between flat and group sorted"), sub { $add_nodes->(!$flat) } ],
);
$toolbar->set_button_relief("none");
@@ -443,7 +443,7 @@ sub choosePackagesTree {
my $p = $packages->[0]{$curr} or return;
pkgs::togglePackageSelection($packages, $p, my $l = {});
if (my @l = grep { $l->{$_} } keys %$l) {
- @l > 1 && !$auto_deps and $o->ask_okcancel('', [ _("The following packages are going to be install/removed"), join(", ", sort @l) ], 1) || return;
+ @l > 1 && !$auto_deps and $o->ask_okcancel('', [ _("The following packages are going to be installed/removed"), join(", ", sort @l) ], 1) || return;
pkgs::togglePackageSelection($packages, $p);
foreach (@l) {
my $p = $packages->[0]{$_};
@@ -546,7 +546,7 @@ sub installPackages {
_("Change your Cd-Rom!
Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.
-If you don't have it press Cancel to avoid installation from this Cd-Rom.", pkgs::mediumDescr($packages, $medium));
+If you don't have it, press Cancel to avoid installation from this Cd-Rom.", pkgs::mediumDescr($packages, $medium));
#- if not using a cdrom medium, always abort.
$method eq 'cdrom' && $o->ask_okcancel('', $msg);