diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-10 19:12:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-10 19:12:27 +0000 |
commit | dd1f2c3824f65882f6c4c43a48f214abfea7eda2 (patch) | |
tree | 467a7f288256daddaa321d70d7fcfce827d66aaa /perl-install/network | |
parent | 050fe73a01652c92f0fc25213c4e9a2547a560b2 (diff) | |
download | drakx-backup-do-not-use-dd1f2c3824f65882f6c4c43a48f214abfea7eda2.tar drakx-backup-do-not-use-dd1f2c3824f65882f6c4c43a48f214abfea7eda2.tar.gz drakx-backup-do-not-use-dd1f2c3824f65882f6c4c43a48f214abfea7eda2.tar.bz2 drakx-backup-do-not-use-dd1f2c3824f65882f6c4c43a48f214abfea7eda2.tar.xz drakx-backup-do-not-use-dd1f2c3824f65882f6c4c43a48f214abfea7eda2.zip |
replace "Press \"Forward\" to continue" with "Press \"%s\" to continue" (bug #4564)
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/netconnect.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index bfca3e509..2ed9eb4c8 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -154,7 +154,7 @@ If you don't want to use the auto detection, deselect the checkbox. $conf{$type} and do { $in->isa('interactive::gtk') and do { #-PO here, "forward" is the standard gtk+ button for "next"; check what is displayed in your language - $in->ask_okcancel(N("Network Configuration Wizard"), N("We are now going to configure the %s connection.\n\n\nPress \"Forward\" to continue.", translate($type)), 1) or goto step_2; + $in->ask_okcancel(N("Network Configuration Wizard"), N("We are now going to configure the %s connection.\n\n\nPress \"%s\" to continue.", translate($type), N("Next")), 1) or goto step_2; &{$net_conf_callbacks{$type}} or goto step_2; $netconnect::need_restart_network = 1 if $type =~/lan|cable/; } |