diff options
Diffstat (limited to 'credits2po')
-rwxr-xr-x | credits2po | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -12,7 +12,9 @@ use common; ), (map { my ($contributor, $descr) = split(', ', $_, 2); - qq(\tN("$contributor") => N(qq($descr)),); + chomp($descr); + $descr =~ s/(["@$])/\$1/g; + qq(\tN("$contributor") => N("$descr"),); } cat_(glob("/usr/share/doc/mandrake-release-*/CREDITS"))), "}" ) |