diff options
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]; |