diff options
Diffstat (limited to 'Rpmdrake/gui.pm')
-rw-r--r-- | Rpmdrake/gui.pm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm index e10c8d46..03037714 100644 --- a/Rpmdrake/gui.pm +++ b/Rpmdrake/gui.pm @@ -452,8 +452,8 @@ sub callback_choices { } my $callback = sub { interactive_msg(N("More information on package..."), get_info($_[0]), scroll => 1) }; $choices = [ sort { $a->name cmp $b->name } @$choices ]; - my @choices = interactive_list_(N("Please choose"), scalar(@$choices) == 1 ? - N("The following package is needed:") : N("One of the following packages is needed:"), + my @choices = interactive_list_(N("Please choose"), (scalar(@$choices) == 1 ? + N("The following package is needed:") : N("One of the following packages is needed:")), [ map { urpm_name($_) } @$choices ], $callback); $choices->[$choices[0]]; } @@ -570,12 +570,10 @@ sub toggle_nodes { } @cant; my $count = @reasons; interactive_msg( - $count == 1 ? - N("One package cannot be installed") - : N("Some packages can't be installed"), - $count == 1 ? - N("Sorry, the following package cannot be selected:\n\n%s", join("\n", @reasons)) - : N("Sorry, the following packages can't be selected:\n\n%s", join("\n", @reasons)), + ($count == 1 ? N("One package cannot be installed") : N("Some packages can't be installed")), + ($count == 1 ? + N("Sorry, the following package cannot be selected:\n\n%s", join("\n", @reasons)) + : N("Sorry, the following packages can't be selected:\n\n%s", join("\n", @reasons))), scroll => 1, ); foreach (@cant) { |