diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-12-10 01:53:05 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-12-10 01:53:05 +0000 |
commit | bba722e7905d5cbf9f943d216f1f82aa6b3c5015 (patch) | |
tree | 1420b723270d54020141af77d36a16d437e8e97e /perl-install/any.pm | |
parent | 46cac51c37cbf83afd59af00030b7397bcc39d8e (diff) | |
download | drakx-bba722e7905d5cbf9f943d216f1f82aa6b3c5015.tar drakx-bba722e7905d5cbf9f943d216f1f82aa6b3c5015.tar.gz drakx-bba722e7905d5cbf9f943d216f1f82aa6b3c5015.tar.bz2 drakx-bba722e7905d5cbf9f943d216f1f82aa6b3c5015.tar.xz drakx-bba722e7905d5cbf9f943d216f1f82aa6b3c5015.zip |
perl_checker --generate-pot is a bit picky about the localisation of "#-PO:" comments
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 7bd83aeba..311fa1fd4 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -655,11 +655,11 @@ sub load_category__prompt_for_more { sub wait_load_module { my ($in, $category, $text, $module) = @_; -#-PO: the first %s is the card type (scsi, network, sound,...) -#-PO: the second is the vendor+model name $in->wait_message('', - [ N("Installing driver for %s card %s", $category, $text), - if_($::expert, N("(module %s)", $module)) + [ + #-PO: the first %s is the card type (scsi, network, sound,...) + #-PO: the second is the vendor+model name + N("Installing driver for %s card %s", $category, $text), if_($::expert, N("(module %s)", $module)) ]); } |