gramps/src/get_strings

8 lines
97 B
Plaintext
Raw Normal View History

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