diff --git a/.ci/cleanup-po.pl b/.ci/cleanup-po.pl index 7415b251..392e890b 100755 --- a/.ci/cleanup-po.pl +++ b/.ci/cleanup-po.pl @@ -11,6 +11,8 @@ if ($ENV{MSGFILTER_MSGID}) { print $text; } else { for (split(/^/, $text)) { - print unless /^PO-Revision-Date:/; + next if /^PO-Revision-Date:/; + s/^Last-Translator: \K.*/Various people/; + print; } }