Prepare for 1.0-pre2 prerelease.

* gettext-runtime/src/envsubst.c (main): Update copyright year in --version
output.
* gettext-runtime/src/gettext.c (main): Likewise.
* gettext-runtime/src/gettext.sh.in (func_version): Likewise.
* gettext-runtime/src/ngettext.c (main): Likewise.
* gettext-runtime/src/printf_gettext.c (main): Likewise.
* gettext-runtime/src/printf_ngettext.c (main): Likewise.
* gettext-tools/src/cldr-plurals.c (main): Likewise.
* gettext-tools/src/hostname.c (main): Likewise.
* gettext-tools/src/msgattrib.c (main): Likewise.
* gettext-tools/src/msgcat.c (main): Likewise.
* gettext-tools/src/msgcmp.c (main): Likewise.
* gettext-tools/src/msgcomm.c (main): Likewise.
* gettext-tools/src/msgconv.c (main): Likewise.
* gettext-tools/src/msgen.c (main): Likewise.
* gettext-tools/src/msgexec.c (main): Likewise.
* gettext-tools/src/msgfilter.c (main): Likewise.
* gettext-tools/src/msgfmt.c (main): Likewise.
* gettext-tools/src/msggrep.c (main): Likewise.
* gettext-tools/src/msginit.c (main): Likewise.
* gettext-tools/src/msgmerge.c (main): Likewise.
* gettext-tools/src/msgpre.c (main): Likewise.
* gettext-tools/src/msgunfmt.c (main): Likewise.
* gettext-tools/src/msguniq.c (main): Likewise.
* gettext-tools/src/recode-sr-latin.c (main): Likewise.
* gettext-tools/src/spit.c (main): Likewise.
* gettext-tools/src/spit.py.in (main): Likewise.
* gettext-tools/src/urlget.c (main): Likewise.
* gettext-tools/src/xgettext.c (main): Likewise.
* gettext-tools/autotools/convert-archive.in (func_version): Likewise.
* gettext-tools/autotools/autopoint.in (func_version): Likewise.
* gettext-tools/wizard/gettextize.in (func_version): Likewise.
This commit is contained in:
Bruno Haible 2026-01-13 07:16:30 +01:00
parent 77441e0283
commit c8ee79bec0
32 changed files with 61 additions and 61 deletions

2
NEWS
View File

@ -1,4 +1,4 @@
Version 1.0 - December 2025 Version 1.0 - January 2026
# Improvements for maintainers and distributors: # Improvements for maintainers and distributors:
* In a po/ directory, the PO files are now exactly those that the * In a po/ directory, the PO files are now exactly those that the

View File

@ -1,5 +1,5 @@
/* Substitution of environment variables in shell format strings. /* Substitution of environment variables in shell format strings.
Copyright (C) 2003-2025 Free Software Foundation, Inc. Copyright (C) 2003-2026 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2003. Written by Bruno Haible <bruno@clisp.org>, 2003.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -114,7 +114,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2003-2025", "https://gnu.org/licenses/gpl.html"); "2003-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* gettext - retrieve text string from message catalog and print it. /* gettext - retrieve text string from message catalog and print it.
Copyright (C) 1995-2025 Free Software Foundation, Inc. Copyright (C) 1995-2026 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, May 1995. Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, May 1995.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -138,7 +138,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"1995-2025", "https://gnu.org/licenses/gpl.html"); "1995-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# #
# Copyright (C) 2003-2025 Free Software Foundation, Inc. # Copyright (C) 2003-2026 Free Software Foundation, Inc.
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by # it under the terms of the GNU Lesser General Public License as published by
@ -61,7 +61,7 @@ if test -z "${ZSH_VERSION+set}"; then
func_version () func_version ()
{ {
echo "$progname (GNU $package) $version" echo "$progname (GNU $package) $version"
echo "Copyright (C) 2003-2025 Free Software Foundation, Inc. echo "Copyright (C) 2003-2026 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <https://gnu.org/licenses/gpl.html> License GPLv2+: GNU GPL version 2 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it. This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law." There is NO WARRANTY, to the extent permitted by law."

View File

@ -1,5 +1,5 @@
/* ngettext - retrieve plural form string from message catalog and print it. /* ngettext - retrieve plural form string from message catalog and print it.
Copyright (C) 1995-2025 Free Software Foundation, Inc. Copyright (C) 1995-2026 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify 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 it under the terms of the GNU General Public License as published by
@ -125,7 +125,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"1995-2025", "https://gnu.org/licenses/gpl.html"); "1995-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Formatted output with a localized format string. /* Formatted output with a localized format string.
Copyright (C) 2025 Free Software Foundation, Inc. Copyright (C) 2025-2026 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify 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 it under the terms of the GNU General Public License as published by
@ -111,7 +111,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2025", "https://gnu.org/licenses/gpl.html"); "2025-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Formatted output with a plural form of a localized format string. /* Formatted output with a plural form of a localized format string.
Copyright (C) 2025 Free Software Foundation, Inc. Copyright (C) 2025-2026 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify 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 it under the terms of the GNU General Public License as published by
@ -116,7 +116,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2025", "https://gnu.org/licenses/gpl.html"); "2025-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# #
# Copyright (C) 2002-2025 Free Software Foundation, Inc. # Copyright (C) 2002-2026 Free Software Foundation, Inc.
# #
# This program is free software: you can redistribute it and/or modify # 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 # it under the terms of the GNU General Public License as published by
@ -216,7 +216,7 @@ func_version ()
echo "This binary is configured to use a versions archive in @ARCHIVE_FORMAT@ format." echo "This binary is configured to use a versions archive in @ARCHIVE_FORMAT@ format."
echo echo
fi fi
echo "Copyright (C) 2002-2025 Free Software Foundation, Inc. echo "Copyright (C) 2002-2026 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html> License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it. This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law." There is NO WARRANTY, to the extent permitted by law."

View File

@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# #
# Copyright (C) 2009-2025 Free Software Foundation, Inc. # Copyright (C) 2009-2026 Free Software Foundation, Inc.
# #
# This program is free software: you can redistribute it and/or modify # 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 # it under the terms of the GNU General Public License as published by
@ -47,7 +47,7 @@ or by email to <bug-gettext@gnu.org>."
func_version () func_version ()
{ {
echo "$progname (GNU $package) $version" echo "$progname (GNU $package) $version"
echo "Copyright (C) 2009-2025 Free Software Foundation, Inc. echo "Copyright (C) 2009-2026 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html> License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it. This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law." There is NO WARRANTY, to the extent permitted by law."

View File

@ -438,7 +438,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2015-2025", "https://gnu.org/licenses/gpl.html"); "2015-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Daiki Ueno")); printf (_("Written by %s.\n"), proper_name ("Daiki Ueno"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Display hostname in various forms. /* Display hostname in various forms.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -190,7 +190,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Manipulates attributes of messages in translation catalogs. /* Manipulates attributes of messages in translation catalogs.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -348,7 +348,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Concatenates several translation catalogs. /* Concatenates several translation catalogs.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -287,7 +287,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* GNU gettext - internationalization aids /* GNU gettext - internationalization aids
Copyright (C) 1995-2025 Free Software Foundation, Inc. Copyright (C) 1995-2026 Free Software Foundation, Inc.
This file was written by Peter Miller <millerp@canb.auug.org.au> This file was written by Peter Miller <millerp@canb.auug.org.au>
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -173,7 +173,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"1995-2025", "https://gnu.org/licenses/gpl.html"); "1995-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Peter Miller")); printf (_("Written by %s.\n"), proper_name ("Peter Miller"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* GNU gettext - internationalization aids /* GNU gettext - internationalization aids
Copyright (C) 1997-2025 Free Software Foundation, Inc. Copyright (C) 1997-2026 Free Software Foundation, Inc.
This file was written by Peter Miller <millerp@canb.auug.org.au> This file was written by Peter Miller <millerp@canb.auug.org.au>
@ -282,7 +282,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"1995-2025", "https://gnu.org/licenses/gpl.html"); "1995-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Peter Miller")); printf (_("Written by %s.\n"), proper_name ("Peter Miller"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Converts a translation catalog to a different character encoding. /* Converts a translation catalog to a different character encoding.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -239,7 +239,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Creates an English translation catalog. /* Creates an English translation catalog.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -242,7 +242,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Pass translations to a subprocess. /* Pass translations to a subprocess.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -181,7 +181,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Edit translations using a subprocess. /* Edit translations using a subprocess.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -284,7 +284,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Converts Uniforum style .po files to binary .mo files /* Converts Uniforum style .po files to binary .mo files
Copyright (C) 1995-2025 Free Software Foundation, Inc. Copyright (C) 1995-2026 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, April 1995. Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, April 1995.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -453,7 +453,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"1995-2025", "https://gnu.org/licenses/gpl.html"); "1995-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Extract some translations of a translation catalog. /* Extract some translations of a translation catalog.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -424,7 +424,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Initializes a new PO file. /* Initializes a new PO file.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -259,7 +259,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* GNU gettext - internationalization aids /* GNU gettext - internationalization aids
Copyright (C) 1995-2025 Free Software Foundation, Inc. Copyright (C) 1995-2026 Free Software Foundation, Inc.
This file was written by Peter Miller <millerp@canb.auug.org.au> This file was written by Peter Miller <millerp@canb.auug.org.au>
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -305,7 +305,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"1995-2025", "https://gnu.org/licenses/gpl.html"); "1995-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Peter Miller")); printf (_("Written by %s.\n"), proper_name ("Peter Miller"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Pretranslate using machine translation. /* Pretranslate using machine translation.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify 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 it under the terms of the GNU General Public License as published by
@ -306,7 +306,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* msgunfmt - converts binary .mo files to Uniforum style .po files /* msgunfmt - converts binary .mo files to Uniforum style .po files
Copyright (C) 1995-2025 Free Software Foundation, Inc. Copyright (C) 1995-2026 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, April 1995. Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, April 1995.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -261,7 +261,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"1995-2025", "https://gnu.org/licenses/gpl.html"); "1995-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Remove, select or merge duplicate translations. /* Remove, select or merge duplicate translations.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -259,7 +259,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,5 +1,5 @@
/* Recode Serbian text from Cyrillic to Latin script. /* Recode Serbian text from Cyrillic to Latin script.
Copyright (C) 2006-2025 Free Software Foundation, Inc. Copyright (C) 2006-2026 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2006. Written by Bruno Haible <bruno@clisp.org>, 2006.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -108,7 +108,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2006-2025", "https://gnu.org/licenses/gpl.html"); "2006-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s and %s.\n"), printf (_("Written by %s and %s.\n"),
/* TRANSLATORS: This is a proper name. The last name is /* TRANSLATORS: This is a proper name. The last name is
(with Unicode escapes) "\u0160egan" or (with HTML entities) (with Unicode escapes) "\u0160egan" or (with HTML entities)

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2025 Free Software Foundation, Inc. * Copyright (C) 2025-2026 Free Software Foundation, Inc.
* *
* This program is free software: you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
@ -550,7 +550,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2025", "https://gnu.org/licenses/gpl.html"); "2025-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,6 +1,6 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# #
# Copyright (C) 2001-2025 Free Software Foundation, Inc. # Copyright (C) 2001-2026 Free Software Foundation, Inc.
# #
# This program is free software: you can redistribute it and/or modify # 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 # it under the terms of the GNU General Public License as published by
@ -673,7 +673,7 @@ def main():
if cmdargs.version != None: if cmdargs.version != None:
print(''' print('''
spit (GNU gettext-tools) @VERSION@ spit (GNU gettext-tools) @VERSION@
Copyright (C) 2025 Free Software Foundation, Inc. Copyright (C) 2025-2026 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html> License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it. This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. There is NO WARRANTY, to the extent permitted by law.

View File

@ -1,5 +1,5 @@
/* Get the contents of an URL. /* Get the contents of an URL.
Copyright (C) 2001-2025 Free Software Foundation, Inc. Copyright (C) 2001-2026 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001. Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -139,7 +139,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"2001-2025", "https://gnu.org/licenses/gpl.html"); "2001-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); printf (_("Written by %s.\n"), proper_name ("Bruno Haible"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -797,7 +797,7 @@ License GPLv3+: GNU GPL version 3 or later <%s>\n\
This is free software: you are free to change and redistribute it.\n\ This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\ There is NO WARRANTY, to the extent permitted by law.\n\
"), "),
"1995-2025", "https://gnu.org/licenses/gpl.html"); "1995-2026", "https://gnu.org/licenses/gpl.html");
printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper"));
exit (EXIT_SUCCESS); exit (EXIT_SUCCESS);
} }

View File

@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# #
# Copyright (C) 1995-2025 Free Software Foundation, Inc. # Copyright (C) 1995-2026 Free Software Foundation, Inc.
# #
# This program is free software: you can redistribute it and/or modify # 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 # it under the terms of the GNU General Public License as published by
@ -206,7 +206,7 @@ or by email to <bug-gettext@gnu.org>."
func_version () func_version ()
{ {
echo "$progname (GNU $package) $version" echo "$progname (GNU $package) $version"
echo "Copyright (C) 1995-2025 Free Software Foundation, Inc. echo "Copyright (C) 1995-2026 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html> License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it. This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law." There is NO WARRANTY, to the extent permitted by law."