File indexing completed on 2024-04-21 05:47:49

0001 #!/bin/sh
0002 
0003 # Aggregate all files we'll want to assemble into the pot. Skip index.html assemble
0004 # there are no UI strings meant to be in there and the entire file is meant to be
0005 # untranslatable.
0006 file_args=""
0007 for html_file in `find ubiquity-slideshow -name \*.html | grep -v index.html`; do
0008   file_args="${file_args} -m ${html_file}"
0009 done
0010 
0011 po4a-gettextize \
0012   --copyright-holder=This_file_is_part_of_KDE \
0013   -M UTF-8 -f xhtml -o attributes=data-translate \
0014   $file_args -p $podir/ubiquity-slideshow-neon.pot