From 0fb859bc08a2991438a4111ca598ed64dc50fb4b Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 14 Nov 2003 19:48:39 +0000 Subject: oops, i forgot to commit contributors.pl generator on 2003-11-06 --- credits2po | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 credits2po diff --git a/credits2po b/credits2po new file mode 100755 index 00000000..06e6e497 --- /dev/null +++ b/credits2po @@ -0,0 +1,19 @@ +#!/usr/bin/perl + +use strict; +use MDK::Common; + +output("contributors.pl", + join("\n", + qq(#/usr/bin/perl +use lib qw(/usr/lib/libDrakX); +use common; +{ +), + (map { + my ($contributor, $descr) = split(', ', $_, 2); + qq(\tN("$contributor") => N(qq($descr)),); + } cat_(glob("/usr/share/doc/mandrake-release-*/CREDITS"))), + "}" + ) + ); -- cgit v1.2.1