Codebase list ddccontrol-db / 63036a5e-6533-4429-b501-d13b7037d5a4/upstream xml2h.pl
63036a5e-6533-4429-b501-d13b7037d5a4/upstream

Tree @63036a5e-6533-4429-b501-d13b7037d5a4/upstream (Download .tar.gz)

xml2h.pl @63036a5e-6533-4429-b501-d13b7037d5a4/upstreamraw · history · blame

open(FILE, $ARGV[0]);
open(HEADER, ">$ARGV[0].h");

print HEADER "//Dummy header file used for translation generation...\n";
print HEADER "#define DUMMY {\n";

for (<FILE>) {
	if ($_ =~ /name=\"(.*?)\"/) {
		print HEADER "printf(_(\"$1\"));\n";
	}
}

print HEADER  "}\n";

close(HEADER);
close(FILE);