gramps/src/get_strings

8 lines
97 B
Plaintext
Raw Normal View History

2001-05-13 01:56:57 +00:00
#! /usr/bin/perl
while (<>) {
if (/_\(\"(.*)\"\)/) {
print "gchar *s = N_(\"$1\");\n"
}
}