summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-16 14:29:27 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-16 14:29:27 +0000
commit7f2587f6c640783b56b39bd5f25e0a78c977f301 (patch)
tree7cb391a8e74acfebb1679f68b855c42a8390d90f /perl-install/interactive.pm
parent99fb10885ff0804e1b319f761c3d1aacf867bcdf (diff)
downloaddrakx-backup-do-not-use-7f2587f6c640783b56b39bd5f25e0a78c977f301.tar
drakx-backup-do-not-use-7f2587f6c640783b56b39bd5f25e0a78c977f301.tar.gz
drakx-backup-do-not-use-7f2587f6c640783b56b39bd5f25e0a78c977f301.tar.bz2
drakx-backup-do-not-use-7f2587f6c640783b56b39bd5f25e0a78c977f301.tar.xz
drakx-backup-do-not-use-7f2587f6c640783b56b39bd5f25e0a78c977f301.zip
remove arrows from previous/next buttons according to interface team
Diffstat (limited to 'perl-install/interactive.pm')
-rw-r--r--perl-install/interactive.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm
index b1d3c8034..b24898350 100644
--- a/perl-install/interactive.pm
+++ b/perl-install/interactive.pm
@@ -400,8 +400,8 @@ sub ask_from_real {
sub ask_browse_tree_info {
my ($o, $title, $message, $common) = @_;
$common->{interactive_help} ||= $common->{interactive_help_id} && $o->interactive_help_sub_get_id($common->{interactive_help_id});
- add2hash_($common, { ok => $::isWizard ? ($::Wizard_finished ? N("Finish") : N("Next ->")) : N("Ok"),
- cancel => $::isWizard ? N("<- Previous") : N("Cancel") });
+ add2hash_($common, { ok => $::isWizard ? ($::Wizard_finished ? N("Finish") : N("Next")) : N("Ok"),
+ cancel => $::isWizard ? N("Previous") : N("Cancel") });
add2hash_($common, { title => $title, message => $message });
add2hash_($common, { grep_allowed_to_toggle => sub { @_ },
grep_unselected => sub { grep { $common->{node_state}($_) eq 'unselected' } @_ },