summaryrefslogtreecommitdiffstats
path: root/credits2po
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-11-14 19:59:15 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-11-14 19:59:15 +0000
commit39880d9fbdd9ad8d80883aa92688511ee72ea833 (patch)
treef5f5f9c7e1c09b2323b5b7106e0e35bcc12d57c9 /credits2po
parent0beec09e0d3affc5c49ad1a2b378561ef066c634 (diff)
downloadcontrol-center-39880d9fbdd9ad8d80883aa92688511ee72ea833.tar
control-center-39880d9fbdd9ad8d80883aa92688511ee72ea833.tar.gz
control-center-39880d9fbdd9ad8d80883aa92688511ee72ea833.tar.bz2
control-center-39880d9fbdd9ad8d80883aa92688511ee72ea833.tar.xz
control-center-39880d9fbdd9ad8d80883aa92688511ee72ea833.zip
fix special caracters escaping
Diffstat (limited to 'credits2po')
-rwxr-xr-xcredits2po2
1 files changed, 1 insertions, 1 deletions
diff --git a/credits2po b/credits2po
index 9e206023..e10dc527 100755
--- a/credits2po
+++ b/credits2po
@@ -18,7 +18,7 @@ use common;
(map {
my ($contributor, $descr) = split(', ', $_, 2);
chomp($descr);
- $descr =~ s/(["@$])/\$1/g;
+ $descr =~ s/(["@$])/\\$1/g;
qq(\tN("$contributor") => N("$descr"),);
} cat_(glob("/usr/share/doc/mandrake-release-*/CREDITS"))),
"}"