diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-10-02 18:45:08 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-10-02 18:45:08 +0000 |
commit | 21b2e43991ea639be10656201b68132828a6e230 (patch) | |
tree | d1ce110b98b6d76dbf738a206becf7893f65b14f | |
parent | 04d55500a0ac3151a9da25147e287186aa947b62 (diff) | |
download | drakx-21b2e43991ea639be10656201b68132828a6e230.tar drakx-21b2e43991ea639be10656201b68132828a6e230.tar.gz drakx-21b2e43991ea639be10656201b68132828a6e230.tar.bz2 drakx-21b2e43991ea639be10656201b68132828a6e230.tar.xz drakx-21b2e43991ea639be10656201b68132828a6e230.zip |
(N) kill KDE like comment even if string doesn't have "\n" at end
thus fixing comment in license text
-rw-r--r-- | perl-install/common.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index 7aea9bc17..ddd471cee 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -63,7 +63,7 @@ sub translate_real { sub remove_translate_context { my ($s) = @_; #- translation with context, kde-like - $s =~ s/^_:.*\n//; + $s =~ s/^_:.*(?:\n)?//g; $s; } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 10728f1da..7a9ae724e 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- fix comment in license text + Version 14.46.1 - 2 October 2012 - fix build with latest pango |