diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-17 22:01:33 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-17 22:01:33 +0000 |
commit | c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13 (patch) | |
tree | 9bcfbc02ac4fa8ce41d4e6d086849b37d3c99232 /po | |
parent | 9ca0657e0f119fc06257a6f86b2d0346fba93bcb (diff) | |
download | drakwizard-c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13.tar drakwizard-c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13.tar.gz drakwizard-c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13.tar.bz2 drakwizard-c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13.tar.xz drakwizard-c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13.zip |
fix escaping
Diffstat (limited to 'po')
-rwxr-xr-x | po/fake_c.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/fake_c.pl b/po/fake_c.pl index d3ed27b0..6eb9bf83 100755 --- a/po/fake_c.pl +++ b/po/fake_c.pl @@ -15,7 +15,7 @@ s|//|/""/|g; # ensure // or not understood as comments s|$|\\n\\|; # multi-line strings not handled in C -s/\\(@|$)/$1/g; # perl needs escaped special caracters but gettext must *not* +s/\\(\@|\$)/$1/g; # perl needs escaped special caracters but gettext must *not* sub simpl { local $_ = $_[0]; |