6c0bd207e9
Allow marking files as ignored when searching for translatable strings, similar to "good" ol' intltool. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/812
32 lines
663 B
Bash
Executable File
32 lines
663 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
srcdirs="js src subprojects/extensions-tool"
|
|
globs=('*.js' '*.c')
|
|
|
|
# find source files that contain gettext keywords
|
|
files=$(grep -lR ${globs[@]/#/--include=} '\(gettext\|[^I_)]_\)(' $srcdirs)
|
|
|
|
# filter out excluded files
|
|
if [ -f po/POTFILES.skip ]; then
|
|
files=$(for f in $files; do ! grep -q ^$f po/POTFILES.skip && echo $f; done)
|
|
fi
|
|
|
|
# find those that aren't listed in POTFILES.in
|
|
missing=$(for f in $files; do ! grep -q ^$f po/POTFILES.in && echo $f; done)
|
|
|
|
if [ ${#missing} -eq 0 ]; then
|
|
exit 0
|
|
fi
|
|
|
|
cat >&2 <<EOT
|
|
|
|
The following files are missing from po/POTFILES.po:
|
|
|
|
EOT
|
|
for f in $missing; do
|
|
echo " $f" >&2
|
|
done
|
|
echo >&2
|
|
|
|
exit 1
|