diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-07-04 16:52:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-07-04 16:52:56 +0000 |
commit | 7126d00555a046cd6339b5bd602cd3d2d7af7c04 (patch) | |
tree | 800c6070f5932ae97d8f319a87610dd71400cde2 | |
parent | 7492eed76c2ddf0d19947bf61032dee9dfb7e8a5 (diff) | |
download | urpmi-7126d00555a046cd6339b5bd602cd3d2d7af7c04.tar urpmi-7126d00555a046cd6339b5bd602cd3d2d7af7c04.tar.gz urpmi-7126d00555a046cd6339b5bd602cd3d2d7af7c04.tar.bz2 urpmi-7126d00555a046cd6339b5bd602cd3d2d7af7c04.tar.xz urpmi-7126d00555a046cd6339b5bd602cd3d2d7af7c04.zip |
make sure comments appear in po catalogs
-rwxr-xr-x | urpmi | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -433,12 +433,15 @@ sub ask_choice { my (@l) = map { my ($name, $summary) = (scalar($_->fullname), translate($_->summary)); $_->flag_installed ? - #-PO: here format is "<package_name>: <summary> (to upgrade)" - ($_->summary ? N("%s: %s (to upgrade)", $name, $summary) : + ($_->summary ? + #-PO: here format is "<package_name>: <summary> (to upgrade)" + N("%s: %s (to upgrade)", $name, $summary) : #-PO: here format is "<package_name> (to upgrade)" N("%s (to upgrade)", $name)) : - #-PO: here format is "<package_name>: <summary> (to install)" - $_->flag_upgrade ? ($_->summary ? N("%s: %s (to install)", $name, $summary) : + + $_->flag_upgrade ? ($_->summary ? + #-PO: here format is "<package_name>: <summary> (to install)" + N("%s: %s (to install)", $name, $summary) : #-PO: here format is "<package_name> (to install)" N("%s (to install)", $name)) : $name; } @$choices; |