diff options
author | Till Kamppeter <tkamppeter@mandriva.com> | 2002-08-27 13:02:04 +0000 |
---|---|---|
committer | Till Kamppeter <tkamppeter@mandriva.com> | 2002-08-27 13:02:04 +0000 |
commit | 2872b7df5cf110bda8cd758c2a238bbeb5a20187 (patch) | |
tree | 24b1ed98ad85d47a0e53cd8bf7e5a1fa5e1e9033 | |
parent | ad4ac47f8a8e27b320abb357f3e1cef9cabc9147 (diff) | |
download | drakx-2872b7df5cf110bda8cd758c2a238bbeb5a20187.tar drakx-2872b7df5cf110bda8cd758c2a238bbeb5a20187.tar.gz drakx-2872b7df5cf110bda8cd758c2a238bbeb5a20187.tar.bz2 drakx-2872b7df5cf110bda8cd758c2a238bbeb5a20187.tar.xz drakx-2872b7df5cf110bda8cd758c2a238bbeb5a20187.zip |
Make number of MB to install in first time dialog changeable without
breaking the translations.
-rw-r--r-- | perl-install/printerdrake.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/printerdrake.pm b/perl-install/printerdrake.pm index 36b586aad..2d99858af 100644 --- a/perl-install/printerdrake.pm +++ b/perl-install/printerdrake.pm @@ -237,7 +237,7 @@ sub first_time_dialog { ($localprinterspresent ? _("Do you want to enable printing on the printers mentioned above?\n") : _("Are you sure that you want to set up printing on this machine?\n"))); - my $warning = _("NOTE: Depending on the printer model and the printing system up to 80 MB of additional software will be installed."); + my $warning = _("NOTE: Depending on the printer model and the printing system up to %d MB of additional software will be installed.", 80); my $dialogtext = "$localprinters\n$question\n$warning"; # Close wait message |