-
Notifications
You must be signed in to change notification settings - Fork 3
/
xgettext_werror.sh
executable file
·46 lines (42 loc) · 2.05 KB
/
xgettext_werror.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/sh -e
#
# xgettext_werror.sh: Run xgettext and actually do something with the warnings
#
# xgettext prints out warnings for certain problems in translatable strings,
# such as format strings that cannot be translated due to position-based
# parameters. These warnings generally indicate something that needs to be
# addressed before the strings can be submitted for translation. This script
# exits with a status of 1 so that the warnings are not ignored as they scroll
# by in pages of build output.
#
# This script should be used in place of xgettext when rebuilding the .pot file,
# e.g. by setting XGETTEXT in po/Makevars.
#
# Copyright (C) 2015 Red Hat, Inc.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions of
# the GNU Lesser General Public License v.2, or (at your option) any later
# version. This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY expressed or implied, including the implied
# warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
# the GNU Lesser General Public License for more details. You should have
# received a copy of the GNU Lesser General Public License along with this
# program; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301, USA. Any Red Hat trademarks
# that are incorporated in the source code or documentation are not subject
# to the GNU Lesser General Public License and may only be used or
# replicated with the express permission of Red Hat, Inc.
#
# Red Hat Author(s): David Shea <[email protected]>
returncode=0
# Collect the output from xgettext. If xgettext fails, treat that as a failure
# Make sure that "warning:" doesn't get translated
xgettext_output="$(LC_MESSAGES=C xgettext "$@" 2>&1)" || returncode=$?
# Look for warnings
if echo "$xgettext_output" | awk '/warning: / && !/fallback ITS rule/{rc=1}; END {exit !rc}'; then
returncode=1
fi
# Print the output and return
echo "$xgettext_output"
exit $returncode