diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-20 14:41:35 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-20 14:41:35 +0000 |
commit | d6f4f90089a21b6ae9fd041bea6ec848c94431c3 (patch) | |
tree | ef232f52df285154d4bf408a219e30804aa3781a | |
parent | 034e4c99bd543ba7e9969b964d4b3dda1c579d3b (diff) | |
download | drakx-d6f4f90089a21b6ae9fd041bea6ec848c94431c3.tar drakx-d6f4f90089a21b6ae9fd041bea6ec848c94431c3.tar.gz drakx-d6f4f90089a21b6ae9fd041bea6ec848c94431c3.tar.bz2 drakx-d6f4f90089a21b6ae9fd041bea6ec848c94431c3.tar.xz drakx-d6f4f90089a21b6ae9fd041bea6ec848c94431c3.zip |
help perl_checker find the N("...") the #-PO corresponds to
-rw-r--r-- | perl-install/install_steps_interactive.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 3ae8b0b9b..d9cb3f54f 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1087,8 +1087,9 @@ sub setRootPassword { title => N("Set root password"), messages => N("Set root password"), interactive_help_id => "setRootPassword", -#-PO: keep this short or else the buttons will not fit in the window - cancel => ($o->{security} <= 2 && !$::corporate ? N("No password") : ''), + cancel => ($o->{security} <= 2 && !$::corporate ? + #-PO: keep this short or else the buttons will not fit in the window + N("No password") : ''), focus_first => 1, callbacks => { complete => sub { |