1 # po2test.awk - Convert Uniforum style .po file to C code for testing.
2 # Copyright (C) 2012-2023 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, see <https://www.gnu.org/licenses/>.
18 # Output current message (in msg) as argument of the INPUT or OUTPUT macro,
19 # depending on msgtype
20 function output_message
() {
21 # Ignore messages containing <PRI.*> markers which would have to be
22 # replaced by the correct format depending on the word size
23 if (msg
&& msg !~
/<PRI.
*>/)
24 printf ("%s(%s)\n", msgtype ==
"msgid" ?
"INPUT" : "OUTPUT", msg
)
29 # Output collected message
31 # Collect next message
33 sub(/^msg
(id
|str
)[ \t]*/, "", $
0)
39 # Append to current message
44 # Output last collected message