summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2005-01-10 16:02:22 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:11:58 +0200
commit263191a31f6bcb0a2c024815dcf3ed0f9a87c18b (patch)
tree3ef203749bc4e138bf23fe621634dfc353373046
parentdc292e36b96c61ac1f36fc3ec112ae50b576e40a (diff)
downloadexternal_gettext-263191a31f6bcb0a2c024815dcf3ed0f9a87c18b.zip
external_gettext-263191a31f6bcb0a2c024815dcf3ed0f9a87c18b.tar.gz
external_gettext-263191a31f6bcb0a2c024815dcf3ed0f9a87c18b.tar.bz2
Year 2005.
-rw-r--r--gettext-runtime/ChangeLog4
-rw-r--r--gettext-runtime/src/ChangeLog6
-rw-r--r--gettext-runtime/src/envsubst.c4
-rw-r--r--gettext-runtime/src/gettext.c4
-rw-r--r--gettext-runtime/src/ngettext.c4
-rw-r--r--gettext-runtime/windows/intl.rc2
-rw-r--r--gettext-tools/ChangeLog6
-rw-r--r--gettext-tools/misc/ChangeLog5
-rw-r--r--gettext-tools/misc/autopoint.in4
-rw-r--r--gettext-tools/misc/gettextize.in2
-rw-r--r--gettext-tools/src/ChangeLog18
-rw-r--r--gettext-tools/src/msgattrib.c4
-rw-r--r--gettext-tools/src/msgcat.c4
-rw-r--r--gettext-tools/src/msgcmp.c4
-rw-r--r--gettext-tools/src/msgcomm.c4
-rw-r--r--gettext-tools/src/msgconv.c4
-rw-r--r--gettext-tools/src/msgen.c4
-rw-r--r--gettext-tools/src/msgexec.c4
-rw-r--r--gettext-tools/src/msgfilter.c4
-rw-r--r--gettext-tools/src/msgfmt.c4
-rw-r--r--gettext-tools/src/msggrep.c4
-rw-r--r--gettext-tools/src/msginit.c4
-rw-r--r--gettext-tools/src/msgmerge.c4
-rw-r--r--gettext-tools/src/msgunfmt.c4
-rw-r--r--gettext-tools/src/msguniq.c4
-rw-r--r--gettext-tools/src/xgettext.c4
-rw-r--r--gettext-tools/tests/ChangeLog5
-rw-r--r--gettext-tools/tests/tstgettext.c4
-rw-r--r--gettext-tools/tests/tstngettext.c4
-rw-r--r--gettext-tools/windows/gettextlib.rc2
-rw-r--r--gettext-tools/windows/gettextpo.rc2
-rw-r--r--gettext-tools/windows/gettextsrc.rc2
32 files changed, 91 insertions, 47 deletions
diff --git a/gettext-runtime/ChangeLog b/gettext-runtime/ChangeLog
index 5b6cfb7..b32c0b2 100644
--- a/gettext-runtime/ChangeLog
+++ b/gettext-runtime/ChangeLog
@@ -1,3 +1,7 @@
+2005-01-05 Bruno Haible <bruno@clisp.org>
+
+ * windows/intl.rc: Update copyright year.
+
2004-04-19 Bruno Haible <bruno@clisp.org>
* gettext.m4: Change jm_ to gl_ in all uses of AC_DEFINE'd names.
diff --git a/gettext-runtime/src/ChangeLog b/gettext-runtime/src/ChangeLog
index 8633980..1fc6218 100644
--- a/gettext-runtime/src/ChangeLog
+++ b/gettext-runtime/src/ChangeLog
@@ -1,3 +1,9 @@
+2005-01-05 Bruno Haible <bruno@clisp.org>
+
+ * gettext.c (main): Update year in --version output.
+ * ngettext.c (main): Likewise.
+ * envsubst.c (main): Likewise.
+
2004-07-10 Bruno Haible <bruno@clisp.org>
* gettext.c (expand_escape): Don't go into an endless loop when the
diff --git a/gettext-runtime/src/envsubst.c b/gettext-runtime/src/envsubst.c
index 9909cbb..af9319e 100644
--- a/gettext-runtime/src/envsubst.c
+++ b/gettext-runtime/src/envsubst.c
@@ -1,5 +1,5 @@
/* Substitution of environment variables in shell format strings.
- Copyright (C) 2003-2004 Free Software Foundation, Inc.
+ Copyright (C) 2003-2005 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2003.
This program is free software; you can redistribute it and/or modify
@@ -114,7 +114,7 @@ main (int argc, char *argv[])
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2003-2004");
+ "2003-2005");
printf (_("Written by %s.\n"), "Bruno Haible");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-runtime/src/gettext.c b/gettext-runtime/src/gettext.c
index 24c4593..d7ae08f 100644
--- a/gettext-runtime/src/gettext.c
+++ b/gettext-runtime/src/gettext.c
@@ -1,5 +1,5 @@
/* gettext - retrieve text string from message catalog and print it.
- Copyright (C) 1995-1997, 2000-2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-1997, 2000-2005 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, May 1995.
This program is free software; you can redistribute it and/or modify
@@ -136,7 +136,7 @@ main (int argc, char *argv[])
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "1995-1997, 2000-2004");
+ "1995-1997, 2000-2005");
printf (_("Written by %s.\n"), "Ulrich Drepper");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-runtime/src/ngettext.c b/gettext-runtime/src/ngettext.c
index f82908e..c5eeeec 100644
--- a/gettext-runtime/src/ngettext.c
+++ b/gettext-runtime/src/ngettext.c
@@ -1,5 +1,5 @@
/* ngettext - retrieve plural form string from message catalog and print it.
- Copyright (C) 1995-1997, 2000-2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-1997, 2000-2005 Free Software Foundation, Inc.
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
@@ -126,7 +126,7 @@ main (int argc, char *argv[])
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "1995-1997, 2000-2004");
+ "1995-1997, 2000-2005");
printf (_("Written by %s.\n"), "Ulrich Drepper");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-runtime/windows/intl.rc b/gettext-runtime/windows/intl.rc
index c81d975..9e56fd3 100644
--- a/gettext-runtime/windows/intl.rc
+++ b/gettext-runtime/windows/intl.rc
@@ -25,7 +25,7 @@ BEGIN
VALUE "FileDescription", "LGPLed libintl for Windows NT/2000/XP and Windows 95/98/ME\0"
VALUE "FileVersion", "0.14\0"
VALUE "InternalName", "intl.dll\0"
- VALUE "LegalCopyright", "Copyright (C) 1995-2004\0"
+ VALUE "LegalCopyright", "Copyright (C) 1995-2005\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "intl.dll\0"
VALUE "ProductName", "libintl: accessing NLS message catalogs\0"
diff --git a/gettext-tools/ChangeLog b/gettext-tools/ChangeLog
index 5f32b73..b06aaf8 100644
--- a/gettext-tools/ChangeLog
+++ b/gettext-tools/ChangeLog
@@ -1,3 +1,9 @@
+2005-01-05 Bruno Haible <bruno@clisp.org>
+
+ * windows/gettextlib.rc: Update copyright year.
+ * windows/gettextsrc.rc: Likewise.
+ * windows/gettextpo.rc: Likewise.
+
2004-12-10 Bruno Haible <bruno@clisp.org>
* windows/gettextlib.def: Export obstack_free, not _obstack_free.
diff --git a/gettext-tools/misc/ChangeLog b/gettext-tools/misc/ChangeLog
index 92509a4..c28159c 100644
--- a/gettext-tools/misc/ChangeLog
+++ b/gettext-tools/misc/ChangeLog
@@ -1,5 +1,10 @@
2005-01-05 Bruno Haible <bruno@clisp.org>
+ * autopoint.in: Update year in --version output.
+ * gettextize.in: Likewise.
+
+2005-01-05 Bruno Haible <bruno@clisp.org>
+
* gettextize.in: Unset CDPATH in a more robust way.
2004-12-14 Bruno Haible <bruno@clisp.org>
diff --git a/gettext-tools/misc/autopoint.in b/gettext-tools/misc/autopoint.in
index 57e0900..0e9a47c 100644
--- a/gettext-tools/misc/autopoint.in
+++ b/gettext-tools/misc/autopoint.in
@@ -1,6 +1,6 @@
#! /bin/sh
#
-# Copyright (C) 2002-2004 Free Software Foundation, Inc.
+# Copyright (C) 2002-2005 Free Software Foundation, Inc.
#
# 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
@@ -135,7 +135,7 @@ Report bugs to <bug-gnu-gettext@gnu.org>."
func_version ()
{
echo "$progname (GNU $package) $version"
- echo "Copyright (C) 2002-2004 Free Software Foundation, Inc.
+ echo "Copyright (C) 2002-2005 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
echo "Written by" "Bruno Haible"
diff --git a/gettext-tools/misc/gettextize.in b/gettext-tools/misc/gettextize.in
index 67d536a..09f890d 100644
--- a/gettext-tools/misc/gettextize.in
+++ b/gettext-tools/misc/gettextize.in
@@ -135,7 +135,7 @@ Report bugs to <bug-gnu-gettext@gnu.org>."
func_version ()
{
echo "$progname (GNU $package) $version"
- echo "Copyright (C) 1995-1998, 2000-2004 Free Software Foundation, Inc.
+ echo "Copyright (C) 1995-1998, 2000-2005 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
echo "Written by" "Ulrich Drepper"
diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog
index e94e925..5f324ff 100644
--- a/gettext-tools/src/ChangeLog
+++ b/gettext-tools/src/ChangeLog
@@ -1,3 +1,21 @@
+2005-01-05 Bruno Haible <bruno@clisp.org>
+
+ * msgattrib.c (main): Update year in --version output.
+ * msgcat.c (main): Likewise.
+ * msgcmp.c (main): Likewise.
+ * msgcomm.c (main): Likewise.
+ * msgconv.c (main): Likewise.
+ * msgen.c (main): Likewise.
+ * msgexec.c (main): Likewise.
+ * msgfilter.c (main): Likewise.
+ * msgfmt.c (main): Likewise.
+ * msggrep.c (main): Likewise.
+ * msginit.c (main): Likewise.
+ * msgmerge.c (main): Likewise.
+ * msgunfmt.c (main): Likewise.
+ * msguniq.c (main): Likewise.
+ * xgettext.c (main): Likewise.
+
2005-01-07 Bruno Haible <bruno@clisp.org>
* gettext-po.c (po_file_read): Interpret "-" and "/dev/stdin" as
diff --git a/gettext-tools/src/msgattrib.c b/gettext-tools/src/msgattrib.c
index d054064..9e61242 100644
--- a/gettext-tools/src/msgattrib.c
+++ b/gettext-tools/src/msgattrib.c
@@ -1,5 +1,5 @@
/* Manipulates attributes of messages in translation catalogs.
- Copyright (C) 2001-2004 Free Software Foundation, Inc.
+ Copyright (C) 2001-2005 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
@@ -312,7 +312,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2001-2004");
+ "2001-2005");
printf (_("Written by %s.\n"), "Bruno Haible");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msgcat.c b/gettext-tools/src/msgcat.c
index fd7bad6..c58385c 100644
--- a/gettext-tools/src/msgcat.c
+++ b/gettext-tools/src/msgcat.c
@@ -1,5 +1,5 @@
/* Concatenates several translation catalogs.
- Copyright (C) 2001-2004 Free Software Foundation, Inc.
+ Copyright (C) 2001-2005 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
@@ -264,7 +264,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2001-2004");
+ "2001-2005");
printf (_("Written by %s.\n"), "Bruno Haible");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msgcmp.c b/gettext-tools/src/msgcmp.c
index a703099..42f5790 100644
--- a/gettext-tools/src/msgcmp.c
+++ b/gettext-tools/src/msgcmp.c
@@ -1,5 +1,5 @@
/* GNU gettext - internationalization aids
- Copyright (C) 1995-1998, 2000-2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-1998, 2000-2005 Free Software Foundation, Inc.
This file was written by Peter Miller <millerp@canb.auug.org.au>
This program is free software; you can redistribute it and/or modify
@@ -141,7 +141,7 @@ main (int argc, char *argv[])
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "1995-1998, 2000-2004");
+ "1995-1998, 2000-2005");
printf (_("Written by %s.\n"), "Peter Miller");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msgcomm.c b/gettext-tools/src/msgcomm.c
index c5b1a9b..36c97fe 100644
--- a/gettext-tools/src/msgcomm.c
+++ b/gettext-tools/src/msgcomm.c
@@ -1,5 +1,5 @@
/* GNU gettext - internationalization aids
- Copyright (C) 1997-1998, 2000-2004 Free Software Foundation, Inc.
+ Copyright (C) 1997-1998, 2000-2005 Free Software Foundation, Inc.
This file was written by Peter Miller <millerp@canb.auug.org.au>
@@ -261,7 +261,7 @@ main (int argc, char *argv[])
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "1995-1998, 2000-2004");
+ "1995-1998, 2000-2005");
printf (_("Written by %s.\n"), "Peter Miller");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msgconv.c b/gettext-tools/src/msgconv.c
index 692dfcd..efcd09f 100644
--- a/gettext-tools/src/msgconv.c
+++ b/gettext-tools/src/msgconv.c
@@ -1,5 +1,5 @@
/* Converts a translation catalog to a different character encoding.
- Copyright (C) 2001-2004 Free Software Foundation, Inc.
+ Copyright (C) 2001-2005 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
@@ -218,7 +218,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2001-2004");
+ "2001-2005");
printf (_("Written by %s.\n"), "Bruno Haible");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msgen.c b/gettext-tools/src/msgen.c
index b5434b8..14b82f2 100644
--- a/gettext-tools/src/msgen.c
+++ b/gettext-tools/src/msgen.c
@@ -1,5 +1,5 @@
/* Creates an English translation catalog.
- Copyright (C) 2001-2004 Free Software Foundation, Inc.
+ Copyright (C) 2001-2005 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
@@ -204,7 +204,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2001-2004");
+ "2001-2005");
printf (_("Written by %s.\n"), "Bruno Haible");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msgexec.c b/gettext-tools/src/msgexec.c
index bde60ae..8dc8931 100644
--- a/gettext-tools/src/msgexec.c
+++ b/gettext-tools/src/msgexec.c
@@ -1,5 +1,5 @@
/* Pass translations to a subprocess.
- Copyright (C) 2001-2004 Free Software Foundation, Inc.
+ Copyright (C) 2001-2005 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
@@ -178,7 +178,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2001-2004");
+ "2001-2005");
printf (_("Written by %s.\n"), "Bruno Haible");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msgfilter.c b/gettext-tools/src/msgfilter.c
index 0716cc6..8f7fd62 100644
--- a/gettext-tools/src/msgfilter.c
+++ b/gettext-tools/src/msgfilter.c
@@ -1,5 +1,5 @@
/* Edit translations using a subprocess.
- Copyright (C) 2001-2004 Free Software Foundation, Inc.
+ Copyright (C) 2001-2005 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
@@ -271,7 +271,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2001-2004");
+ "2001-2005");
printf (_("Written by %s.\n"), "Bruno Haible");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msgfmt.c b/gettext-tools/src/msgfmt.c
index 23cac95..64f8e7b 100644
--- a/gettext-tools/src/msgfmt.c
+++ b/gettext-tools/src/msgfmt.c
@@ -1,5 +1,5 @@
/* Converts Uniforum style .po files to binary .mo files
- Copyright (C) 1995-1998, 2000-2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-1998, 2000-2005 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, April 1995.
This program is free software; you can redistribute it and/or modify
@@ -362,7 +362,7 @@ main (int argc, char *argv[])
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "1995-1998, 2000-2004");
+ "1995-1998, 2000-2005");
printf (_("Written by %s.\n"), "Ulrich Drepper");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msggrep.c b/gettext-tools/src/msggrep.c
index a2ae999..fa93d50 100644
--- a/gettext-tools/src/msggrep.c
+++ b/gettext-tools/src/msggrep.c
@@ -1,5 +1,5 @@
/* Extract some translations of a translation catalog.
- Copyright (C) 2001-2004 Free Software Foundation, Inc.
+ Copyright (C) 2001-2005 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
@@ -315,7 +315,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2001-2004");
+ "2001-2005");
printf (_("Written by %s.\n"), "Bruno Haible");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msginit.c b/gettext-tools/src/msginit.c
index 45e5c64..8d69062 100644
--- a/gettext-tools/src/msginit.c
+++ b/gettext-tools/src/msginit.c
@@ -1,5 +1,5 @@
/* Initializes a new PO file.
- Copyright (C) 2001-2004 Free Software Foundation, Inc.
+ Copyright (C) 2001-2005 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
@@ -269,7 +269,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2001-2004");
+ "2001-2005");
printf (_("Written by %s.\n"), "Bruno Haible");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msgmerge.c b/gettext-tools/src/msgmerge.c
index 23ae64b..693b76d 100644
--- a/gettext-tools/src/msgmerge.c
+++ b/gettext-tools/src/msgmerge.c
@@ -1,5 +1,5 @@
/* GNU gettext - internationalization aids
- Copyright (C) 1995-1998, 2000-2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-1998, 2000-2005 Free Software Foundation, Inc.
This file was written by Peter Miller <millerp@canb.auug.org.au>
This program is free software; you can redistribute it and/or modify
@@ -298,7 +298,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "1995-1998, 2000-2004");
+ "1995-1998, 2000-2005");
printf (_("Written by %s.\n"), "Peter Miller");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msgunfmt.c b/gettext-tools/src/msgunfmt.c
index ab4ec57..b79e3f4 100644
--- a/gettext-tools/src/msgunfmt.c
+++ b/gettext-tools/src/msgunfmt.c
@@ -1,5 +1,5 @@
/* msgunfmt - converts binary .mo files to Uniforum style .po files
- Copyright (C) 1995-1998, 2000-2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-1998, 2000-2005 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, April 1995.
This program is free software; you can redistribute it and/or modify
@@ -247,7 +247,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "1995-1998, 2000-2004");
+ "1995-1998, 2000-2005");
printf (_("Written by %s.\n"), "Ulrich Drepper");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/msguniq.c b/gettext-tools/src/msguniq.c
index 0390e3b..00b11bc 100644
--- a/gettext-tools/src/msguniq.c
+++ b/gettext-tools/src/msguniq.c
@@ -1,5 +1,5 @@
/* Remove, select or merge duplicate translations.
- Copyright (C) 2001-2004 Free Software Foundation, Inc.
+ Copyright (C) 2001-2005 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
@@ -240,7 +240,7 @@ main (int argc, char **argv)
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2001-2004");
+ "2001-2005");
printf (_("Written by %s.\n"), "Bruno Haible");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/src/xgettext.c b/gettext-tools/src/xgettext.c
index 7a4ab62..3732a5a 100644
--- a/gettext-tools/src/xgettext.c
+++ b/gettext-tools/src/xgettext.c
@@ -1,5 +1,5 @@
/* Extracts strings from C source file to Uniforum style .po file.
- Copyright (C) 1995-1998, 2000-2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-1998, 2000-2005 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, April 1995.
This program is free software; you can redistribute it and/or modify
@@ -499,7 +499,7 @@ main (int argc, char *argv[])
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "1995-1998, 2000-2004");
+ "1995-1998, 2000-2005");
printf (_("Written by %s.\n"), "Ulrich Drepper");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/tests/ChangeLog b/gettext-tools/tests/ChangeLog
index a0bdde3..8186f97 100644
--- a/gettext-tools/tests/ChangeLog
+++ b/gettext-tools/tests/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-05 Bruno Haible <bruno@clisp.org>
+
+ * tstgettext.c (main): Update year in --version output.
+ * tstngettext.c (main): Likewise.
+
2004-10-01 Guido Flohr <guido@imperia.net>
* xgettext-perl-4: Add test case with '-s' function.
diff --git a/gettext-tools/tests/tstgettext.c b/gettext-tools/tests/tstgettext.c
index 15bbbbf..681a4ff 100644
--- a/gettext-tools/tests/tstgettext.c
+++ b/gettext-tools/tests/tstgettext.c
@@ -1,5 +1,5 @@
/* gettext - retrieve text string from message catalog and print it.
- Copyright (C) 1995-1997, 2000-2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-1997, 2000-2005 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, May 1995.
This program is free software; you can redistribute it and/or modify
@@ -161,7 +161,7 @@ main (int argc, char *argv[])
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "1995-1997, 2000-2004");
+ "1995-1997, 2000-2005");
printf (_("Written by %s.\n"), "Ulrich Drepper");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/tests/tstngettext.c b/gettext-tools/tests/tstngettext.c
index e49df5c..fe646bd 100644
--- a/gettext-tools/tests/tstngettext.c
+++ b/gettext-tools/tests/tstngettext.c
@@ -1,5 +1,5 @@
/* ngettext - retrieve plural form strings from message catalog and print them.
- Copyright (C) 1995-1997, 2000-2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-1997, 2000-2005 Free Software Foundation, Inc.
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
@@ -137,7 +137,7 @@ main (int argc, char *argv[])
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "1995-1997, 2000-2004");
+ "1995-1997, 2000-2005");
printf (_("Written by %s.\n"), "Ulrich Drepper");
exit (EXIT_SUCCESS);
}
diff --git a/gettext-tools/windows/gettextlib.rc b/gettext-tools/windows/gettextlib.rc
index c8d6bb3..f774a5f 100644
--- a/gettext-tools/windows/gettextlib.rc
+++ b/gettext-tools/windows/gettextlib.rc
@@ -25,7 +25,7 @@ BEGIN
VALUE "FileDescription", "GPLed libgettextlib for Windows NT/2000/XP and Windows 95/98/ME\0"
VALUE "FileVersion", "0.14\0"
VALUE "InternalName", "gettextlib.dll\0"
- VALUE "LegalCopyright", "Copyright (C) 1995-2004\0"
+ VALUE "LegalCopyright", "Copyright (C) 1995-2005\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "gettextlib.dll\0"
VALUE "ProductName", "libgettextlib: subroutines for gettext-tools\0"
diff --git a/gettext-tools/windows/gettextpo.rc b/gettext-tools/windows/gettextpo.rc
index 3eb384d..b8216bc 100644
--- a/gettext-tools/windows/gettextpo.rc
+++ b/gettext-tools/windows/gettextpo.rc
@@ -25,7 +25,7 @@ BEGIN
VALUE "FileDescription", "GPLed libgettextpo for Windows NT/2000/XP and Windows 95/98/ME\0"
VALUE "FileVersion", "0.14\0"
VALUE "InternalName", "gettextpo.dll\0"
- VALUE "LegalCopyright", "Copyright (C) 1995-2004\0"
+ VALUE "LegalCopyright", "Copyright (C) 1995-2005\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "gettextpo.dll\0"
VALUE "ProductName", "libgettextpo: public API for PO files\0"
diff --git a/gettext-tools/windows/gettextsrc.rc b/gettext-tools/windows/gettextsrc.rc
index 962787f..e9760eb 100644
--- a/gettext-tools/windows/gettextsrc.rc
+++ b/gettext-tools/windows/gettextsrc.rc
@@ -25,7 +25,7 @@ BEGIN
VALUE "FileDescription", "GPLed libgettextsrc for Windows NT/2000/XP and Windows 95/98/ME\0"
VALUE "FileVersion", "0.14\0"
VALUE "InternalName", "gettextsrc.dll\0"
- VALUE "LegalCopyright", "Copyright (C) 1995-2004\0"
+ VALUE "LegalCopyright", "Copyright (C) 1995-2005\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "gettextsrc.dll\0"
VALUE "ProductName", "libgettextsrc: subroutines for gettext-tools\0"