Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-java-5
1 #!/bin/sh
2 . "${srcdir=.}/init.sh"; path_prepend_ . ../src
3
4 # Test Java support: --add-comments option.
5
6 cat <<EOF > xg-j-5.java
7 // This comment will not be extracted.
8 System.out.println(gettext("help"));
9 //  TRANSLATORS: This is an extracted comment.
10 System.out.println(gettext("me"));
11 /* Not extracted either. */
12 System.out.println(gettext("Hey Jude"));
13 /*  TRANSLATORS:
14      Nickname of the Beatles
15 */
16 System.out.println(gettext("The Fabulous Four"));
17 /* TRANSLATORS: The strings get concatenated.  */
18 System.out.println(gettext("there is not enough" +
19 " room on a single line for this entire long, " // confusing, eh?
20 + "verbose string"));
21 EOF
22
23 : ${XGETTEXT=xgettext}
24 ${XGETTEXT} --omit-header --no-location --add-comments=TRANSLATORS: \
25   -d xg-j-5.tmp xg-j-5.java || exit 1
26 LC_ALL=C tr -d '\r' < xg-j-5.tmp.po > xg-j-5.po || exit 1
27
28 cat <<EOF > xg-j-5.ok
29 msgid "help"
30 msgstr ""
31
32 #. TRANSLATORS: This is an extracted comment.
33 msgid "me"
34 msgstr ""
35
36 msgid "Hey Jude"
37 msgstr ""
38
39 #. TRANSLATORS:
40 #. Nickname of the Beatles
41 #.
42 msgid "The Fabulous Four"
43 msgstr ""
44
45 #. TRANSLATORS: The strings get concatenated.
46 msgid ""
47 "there is not enough room on a single line for this entire long, verbose "
48 "string"
49 msgstr ""
50 EOF
51
52 : ${DIFF=diff}
53 ${DIFF} xg-j-5.ok xg-j-5.po
54 result=$?
55
56 exit $result