3 # Test --msgid and --msgstr options with Java .properties syntax.
6 trap 'rm -fr $tmpfiles' 1 2 3 15
8 tmpfiles
="$tmpfiles mg-test6.properties"
9 cat <<\EOF
> mg-test6.properties
12 invalid\ argument\
`%s'\ for\ `%s
'=ung\u00fcltiges Argument \u00bb%s\u00ab f\u00fcr \u00bb%s\u00ab
16 ambiguous\ argument\ `%s'\
for\
`%s'=mehrdeutiges Argument \u00bb%s\u00ab f\u00fcr \u00bb%s\u00ab
19 Valid\ arguments\ are\:=G\u00fcltige Argumente sind\:
23 error\ while\ opening\ "%s"\ for\ reading=\u00d6ffnen der Datei \u00bb%s\u00ab zum Lesen fehlgeschlagen
27 cannot\ open\ backup\ file\ "%s"\ for\ writing=\u00d6ffnen der Sicherungsdatei \u00bb%s\u00ab zum Schreiben fehlgeschlagen
31 error\ reading\ "%s"=Fehler beim Lesen von \u00bb%s\u00ab
33 #: copy-file.c:86 copy-file.c:90
35 error\ writing\ "%s"=Fehler beim Schreiben von \u00bb%s\u00ab
39 error\ after\ reading\ "%s"=Fehler nach dem Lesen von \u00bb%s\u00ab
42 Unknown\ system\ error=Unbekannter Systemfehler
44 #: execute.c:170 execute.c:205 pipe-bidi.c:156 pipe-bidi.c:191 pipe-in.c:169
45 #: pipe-in.c:205 pipe-out.c:169 pipe-out.c:205 wait-process.c:136
47 %s\ subprocess\ failed=Subprozess %s fehlgeschlagen
51 %s\:\ option\ `%s
'\ is\ ambiguous\n=%s\: Option \u00bb%s\u00ab ist mehrdeutig\n
55 %s\:\ option\ `--%s'\ doesn
't\ allow\ an\ argument\n=%s\: Option \u00bb--%s\u00ab erwartet kein Argument\n
59 %s\:\ option\ `%c%s'\ doesn
't\ allow\ an\ argument\n=%s\: Option \u00bb%c%s\u00ab erwartet kein Argument\n
61 #: getopt.c:739 getopt.c:912
63 %s\:\ option\ `%s'\ requires\ an\ argument
\n=%s\
: Option
\u00bb%s
\u00ab erwartet ein Argument
\n
67 %s\
:\ unrecognized\ option\
`--%s'\n=%s\: unbekannte Option \u00bb--%s\u00ab\n
71 %s\:\ unrecognized\ option\ `%c
%s
'\n=%s\: unbekannte Option \u00bb%c%s\u00ab\n
75 %s\:\ illegal\ option\ --\ %c\n=%s\: unzul\u00e4ssige Option -- %c\n
79 %s\:\ invalid\ option\ --\ %c\n=%s\: ung\u00fcltige Option -- %c\n
81 #: getopt.c:831 getopt.c:961
83 %s\:\ option\ requires\ an\ argument\ --\ %c\n=%s\: Option erwartet ein Argument -- %c\n
87 %s\:\ option\ `-W\ %s'\ is\ ambiguous
\n=%s\
: Option
\u00bb-W %s
\u00ab ist mehrdeutig
\n
91 %s\
:\ option\
`-W\ %s'\ doesn't\ allow\ an\ argument\n=%s\: Option \u00bb-W %s\u00ab erwartet kein Argument\n
94 Java\ compiler\ not\ found,\ try\ installing\ gcj\ or\ set\ $JAVAC=Java-Compiler nicht gefunden; bitte \u00bbgcj\u00ab installieren oder $JAVAC setzen
97 Java\ virtual\ machine\ not\ found,\ try\ installing\ gij\ or\ set\ $JAVA=Virtuelle Java-Maschine nicht gefunden; bitte \u00bbgcj\u00ab installieren oder\n$JAVA setzen
99 #: obstack.c:474 xerror.c:75 xmalloc.c:56
100 memory\ exhausted=virtueller Speicher ersch\u00f6pft
102 #: pipe-bidi.c:119 pipe-bidi.c:121 pipe-in.c:136 pipe-out.c:136
103 cannot\ create\ pipe=Es ist nicht m\u00f6glich, eine Pipe zu erzeugen
105 #: wait-process.c:117
107 %s\ subprocess=Subprozess %s
109 #: wait-process.c:129
111 %s\ subprocess\ got\ fatal\ signal=Subprozess %s hat ein fatales Signal erhalten
113 # A pattern specified for the msgid only must not be matched with the msgstr.
114 GSG-9=Antiterror-Einheit
117 tmpfiles="$tmpfiles mg-test6.out"
119 LC_MESSAGES=C LC_ALL= \
120 ${MSGGREP} --properties-input --properties-output -K -e error -T -e Speicher mg-test6.properties -o mg-test6.out
122 test $result = 0 || { rm -fr $tmpfiles; exit 1; }
124 tmpfiles="$tmpfiles mg-test6.ok"
125 cat <<\EOF > mg-test6.ok
128 error\ while\ opening\ "%s"\ for\ reading=\u00d6ffnen der Datei \u00bb%s\u00ab zum Lesen fehlgeschlagen
132 error\ reading\ "%s"=Fehler beim Lesen von \u00bb%s\u00ab
134 #: copy-file.c:86 copy-file.c:90
136 error\ writing\ "%s"=Fehler beim Schreiben von \u00bb%s\u00ab
140 error\ after\ reading\ "%s"=Fehler nach dem Lesen von \u00bb%s\u00ab
143 Unknown\ system\ error=Unbekannter Systemfehler
145 #: obstack.c:474 xerror.c:75 xmalloc.c:56
146 memory\ exhausted=virtueller Speicher ersch\u00f6pft
150 ${DIFF} mg-test6.ok mg-test6.out