summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgattrib-properties-1
blob: cb5b260a85782d7a45d44bc241ddc82a4e54f01f (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#! /bin/sh

# Test --translated option with Java .properties syntax.

tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15

tmpfiles="$tmpfiles ma-s-1.properties"
cat <<\EOF > ma-s-1.properties
# HEADER.
#
!=Project-Id-Version\: Bonnie Tyler\n

#: married-men:4
#, fuzzy
!The\ world\ is\ full\ of\ married\ men=So viele verheiratete M\u00e4nner

#: married-men:5
with\ wives\ who\ never\ understand=und ihre Frauen verstehen sie nicht

#: married-men:6
!They're\ looking\ for\ someone\ to\ share=

# schwer zu \u00fcbersetzen...
#: married-men:7
!the\ excitement\ of\ a\ love\ affair=

#: married-men:8
!Just\ as\ soon\ as\ they\ find\ you=

#: married-men:9
!They\ warn\ you\ and\ darn\ you=
EOF

tmpfiles="$tmpfiles ma-s-1.out"
: ${MSGATTRIB=msgattrib}
${MSGATTRIB} --translated --properties-input --properties-output -o ma-s-1.out ma-s-1.properties
test $? = 0 || { rm -fr $tmpfiles; exit 1; }

tmpfiles="$tmpfiles ma-s-1.ok"
cat <<\EOF > ma-s-1.ok
# HEADER.
#
!=Project-Id-Version\: Bonnie Tyler\n

#: married-men:4
#, fuzzy
!The\ world\ is\ full\ of\ married\ men=So viele verheiratete M\u00e4nner

#: married-men:5
with\ wives\ who\ never\ understand=und ihre Frauen verstehen sie nicht
EOF

: ${DIFF=diff}
${DIFF} ma-s-1.ok ma-s-1.out
result=$?

rm -fr $tmpfiles

exit $result