diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-22 05:50:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-22 05:50:49 +0000 |
commit | abbffdf981c8bb03312024107715d58902914f11 (patch) | |
tree | 168a2fd362a2c159507b4ed0d2391b6ff3f1e575 /intl/po2test.sed | |
parent | 0b9fbf003af00a2a22164333bbe709aa9abbcdc9 (diff) | |
download | glibc-abbffdf981c8bb03312024107715d58902914f11.zip glibc-abbffdf981c8bb03312024107715d58902914f11.tar.gz glibc-abbffdf981c8bb03312024107715d58902914f11.tar.bz2 |
Update.
2000-01-21 Ulrich Drepper <drepper@cygnus.com>
* intl/Makefile (routines): Add dcigettext, dcngettext, dngettxt,
ngettext, and plural.
(distribute): Add plural.y, po2test.sed, and tst-gettext.sh.
(test-srcs): Add tst-gettext.
(before-compile): Add $(objpfx)msgs.h.
Add rules for plural.c and msgs.h generation and running tst-gettext.\
* intl/Versions [GLIBC_2.2]: Add __dcngettext, dcngettext, dngettext,
and ngettext.
* intl/dcgettext.c: Move most code into dcigettext.c. Add call
dcigettext with appropriate parameters.
* intl/dcigettext.c: New file.
* intl/dcngettext.c: New file.
* intl/dngettext.c: New file.
* intl/ngettext.c: New file.
* intl/gettextP.h (struct expression): Define.
(struct loaded_domain): Add plural and nplurals members.
Add prototypes for new internal functions.
* intl/libintl.h: Declare new functions. Add optimizations for them.
* intl/loadinfo.h: Add new parameter to _nl_find_msg declaration.
* intl/loadmsgcat.c (_nl_load_domain): Search for plural information in
header entry and parse and store the expression.
* intl/plural.y: New file.
* intl/po2test.sed: New file.
* intl/tst-gettext.c: New file.
* intl/tst-gettext.sh: New file.
* intl/gettext.c: Call __dcgettext directly.
Diffstat (limited to 'intl/po2test.sed')
-rw-r--r-- | intl/po2test.sed | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/intl/po2test.sed b/intl/po2test.sed new file mode 100644 index 0000000..d1c2f3d --- /dev/null +++ b/intl/po2test.sed @@ -0,0 +1,70 @@ +# po2test.sed - Convert Uniforum style .po file to C code for testing. +# Copyright (C) 2000 Free Software Foundation, Inc. +# Ulrich Drepper <drepper@cygnus.com>, 2000. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# +# We copy the original message as a comment into the .msg file. But enclose +# them with INPUT ( ). +# +/^msgid/ { + s/msgid[ ]*"\(.*\)"/INPUT ("\1")/ +# Clear flag from last substitution. + tb +# Append the next line. + :b + N +# Look whether second part is a continuation line. + s/\(.*\)")\(\n\)"\(.*\)"/\1\\\2\3")/ +# Yes, then branch. + ta + P + D +# Note that `D' includes a jump to the start!! +# We found a continuation line. But before printing insert '\'. + :a + s/\(.*\)")\(\n.*\)/\1\\\2/ + P +# We cannot use the sed command `D' here + s/.*\n\(.*\)/\1/ + tb +} +# +# Copy the translations as well and enclose them with OUTPUT ( ). +# +/^msgstr/ { + s/msgstr[ ]*"\(.*\)"/OUTPUT ("\1")/ +# Clear flag from last substitution. + tb +# Append the next line. + :b + N +# Look whether second part is a continuation line. + s/\(.*\)")\(\n\)"\(.*\)"/\1\\\2\3")/ +# Yes, then branch. + ta + P + D +# Note that `D' includes a jump to the start!! +# We found a continuation line. But before printing insert '\'. + :a + s/\(.*\)")\(\n.*\)/\1\\\2/ + P +# We cannot use the sed command `D' here + s/.*\n\(.*\)/\1/ + tb +} +d |