mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-25 10:20:18 -06:00
f28d033d74
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11565 57a11ea4-9604-0410-9ed3-97b8803252fd
56 lines
1.2 KiB
Perl
56 lines
1.2 KiB
Perl
#!@-PERL-@ -w
|
|
# -*- perl -*-
|
|
#
|
|
# This perl script is used to make po/POTFILES.in, the list
|
|
# of C files to be searched for translatable strings.
|
|
#
|
|
# Author: Dave Peticolas <dave@krondo.com>
|
|
|
|
use strict;
|
|
|
|
use File::Basename;
|
|
|
|
my @cvsignores = `find src -name '.cvsignore'`;
|
|
my @possible_files = `find src -name '*.c' -o -name '*.glade' -o -name '*.desktop.in' -o -name '*.keys.in' -o -name '*.pl' |sort`;
|
|
|
|
chomp(my $cwd = `pwd`);
|
|
|
|
my %ignores;
|
|
|
|
foreach my $one_ignore (@cvsignores) {
|
|
chomp($one_ignore);
|
|
my ($name, $path) = fileparse($one_ignore);
|
|
$path =~ s/^\.\///;
|
|
open (IG, $one_ignore);
|
|
chdir $path;
|
|
foreach my $fl (<IG>) {
|
|
chomp $fl;
|
|
next unless $fl;
|
|
my @matches = glob ($fl);
|
|
foreach my $match (@matches) {
|
|
chomp($match);
|
|
next unless $match;
|
|
$ignores{$path . $match} = 1;
|
|
}
|
|
}
|
|
close (IG);
|
|
chdir $cwd;
|
|
}
|
|
|
|
print "# List of files which containing translatable strings.\n";
|
|
print "# This file was generated by ../make-gnucash-potfiles.in.\n";
|
|
print "\n";
|
|
|
|
foreach my $file (@possible_files) {
|
|
chomp($file);
|
|
my ($name, $path) = fileparse($file);
|
|
$path =~ s/^\.\///;
|
|
|
|
next if $ignores{$path . $name};
|
|
|
|
print $path . $name . "\n";
|
|
}
|
|
|
|
print "intl-scm/guile-strings.c\n";
|
|
print "doc/tip_of_the_day.list.in"
|