Rework schema infrastructure so that all schema strings will appear

for translation, and the translations will be incorporated back into
the schema files.  Fixed bugs #327507 and #327353.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12863 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton
2006-01-19 00:40:32 +00:00
parent fefb86c6c5
commit b0b5380840
21 changed files with 50 additions and 65 deletions

View File

@@ -10,7 +10,9 @@ use strict;
use File::Basename;
my @possible_files = `find src -name '*.c' -o -name '*.glade' -o -name '*.desktop.in' -o -name '*.keys.in' |sort`;
my @possible_files = `find src -name '*.c' -o -name '*.glade' \\
-o -name '*.desktop.in' -o -name '*.keys.in' \\
-o -name '*.schemas.in' |sort`;
## For perl files add the following:
# -o -name '*.pl'