summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive/newt.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/newt.pm
parent99fb10885ff0804e1b319f761c3d1aacf867bcdf (diff)
downloaddrakx-7f2587f6c640783b56b39bd5f25e0a78c977f301.tar
drakx-7f2587f6c640783b56b39bd5f25e0a78c977f301.tar.gz
drakx-7f2587f6c640783b56b39bd5f25e0a78c977f301.tar.bz2
drakx-7f2587f6c640783b56b39bd5f25e0a78c977f301.tar.xz
drakx-7f2587f6c640783b56b39bd5f25e0a78c977f301.zip
remove arrows from previous/next buttons according to interface team
Diffstat (limited to 'perl-install/interactive/newt.pm')
-rw-r--r--perl-install/interactive/newt.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/interactive/newt.pm b/perl-install/interactive/newt.pm
index 861e3b6c3..79dd93eba 100644
--- a/perl-install/interactive/newt.pm
+++ b/perl-install/interactive/newt.pm
@@ -296,8 +296,8 @@ sub ask_fromW_real {
};
my ($ok, $cancel) = ($common->{ok}, $common->{cancel});
- $cancel = $::isWizard ? N("<- Previous") : N("Cancel") if !defined $cancel && !defined $ok;
- $ok ||= $::isWizard ? ($::Wizard_finished ? N("Finish") : N("Next ->")) : N("Ok");
+ $cancel = $::isWizard ? N("Previous") : N("Cancel") if !defined $cancel && !defined $ok;
+ $ok ||= $::isWizard ? ($::Wizard_finished ? N("Finish") : N("Next")) : N("Ok");
my @okcancel = grep { $_ } $ok, $cancel;
@okcancel = reverse(@okcancel) if $::isWizard;