gramps/src/get_strings
Don Allingham ae4694eed1 Initial revision
svn: r3
2001-05-13 01:56:57 +00:00

8 lines
97 B
Perl
Executable File

#! /usr/bin/perl
while (<>) {
if (/_\(\"(.*)\"\)/) {
print "gchar *s = N_(\"$1\");\n"
}
}