[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
solving some gettext issues
From: |
Eric Blake |
Subject: |
solving some gettext issues |
Date: |
Sat, 06 May 2006 06:21:53 -0600 |
User-agent: |
Thunderbird 1.5.0.2 (Windows/20060308) |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
gettext exposed some issues during make:
make[3]: Entering directory `/home/eblake/m4-patch/po'
make[3]: *** No rule to make target `../gnu/getopt.c', needed by
`m4.pot-update'. Stop.
...
make[3]: *** No rule to make target `../gnu/version-etc.c', needed by
`m4.pot-update'. Stop.
...
/usr/bin/xgettext: warning: The option --msgid-bugs-address was not specified.
If you are using a `Makevars' file, please specify
the MSGID_BUGS_ADDRESS variable there;
otherwise please
specify an --msgid-bugs-address command line
option.
Solved like this:
po/ChangeLog:
2006-05-06 Eric Blake <address@hidden>
* Makevars (MSGID_BUGS_ADDRESS): Add.
* POTFILES.in (src/getopt.c, src/version-etc.c): These files live
in src, not gnu.
- --
Life is short - so eat dessert first!
Eric Blake address@hidden
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.1 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFEXJTh84KuGfSFAYARAvmJAJ4k0xlEGDMWcMLcEYlxNQ0OPUopVACgu1tB
xSv7cEFpGgSsG1SXGJ+jc0Y=
=3sH2
-----END PGP SIGNATURE-----
Index: po/POTFILES.in
===================================================================
RCS file: /sources/m4/m4/po/POTFILES.in,v
retrieving revision 1.12
diff -u -p -r1.12 POTFILES.in
--- po/POTFILES.in 23 Sep 2004 21:07:36 -0000 1.12
+++ po/POTFILES.in 6 May 2006 12:19:34 -0000
@@ -1,7 +1,5 @@
-gnu/getopt.c
gnu/obstack.c
gnu/regex.c
-gnu/version-etc.c
gnu/xmalloc.c
m4/builtin.c
m4/debug.c
@@ -20,5 +18,7 @@ modules/mpeval.c
modules/perl.c
modules/traditional.c
src/freeze.c
+src/getopt.c
src/main.c
src/stackovf.c
+src/version-etc.c
Index: po/Makevars
===================================================================
RCS file: /sources/m4/m4/po/Makevars,v
retrieving revision 1.1
diff -u -p -r1.1 Makevars
--- po/Makevars 4 Nov 2002 16:31:04 -0000 1.1
+++ po/Makevars 6 May 2006 12:19:34 -0000
@@ -20,6 +20,22 @@ XGETTEXT_OPTIONS = --keyword=_ --keyword
# their copyright.
COPYRIGHT_HOLDER = Free Software Foundation, Inc.
+# This is the email address or URL to which the translators shall report
+# bugs in the untranslated strings:
+# - Strings which are not entire sentences, see the maintainer guidelines
+# in the GNU gettext documentation, section 'Preparing Strings'.
+# - Strings which use unclear terms or require additional context to be
+# understood.
+# - Strings which make invalid assumptions about notation of date, time or
+# money.
+# - Pluralisation problems.
+# - Incorrect English spelling.
+# - Incorrect formatting.
+# It can be your email address, or a mailing list address where translators
+# can write to without being subscribed, or the URL of a web page through
+# which the translators can contact you.
+MSGID_BUGS_ADDRESS = address@hidden
+
# This is the list of locale categories, beyond LC_MESSAGES, for which the
# message catalogs shall be used. It is usually empty.
EXTRA_LOCALE_CATEGORIES =
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- solving some gettext issues,
Eric Blake <=