summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-07-11 21:58:32 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-07-11 21:58:32 +0000
commit8fb97bd54a94ca000895f40cdae2017993e6bcb9 (patch)
tree7d13c5e59f8818a175e5a412b3a8d8a3f9ae2fb0 /lib
parentb6f3f547306b63357c1eb382a0160ce46c3f0527 (diff)
downloadcoreutils-8fb97bd54a94ca000895f40cdae2017993e6bcb9.tar.xz
(COPYRIGHT_YEAR): New constant.
(version_etc_va): Use parameterized copyright notice. Reword to conform to the current GNU coding standards.
Diffstat (limited to 'lib')
-rw-r--r--lib/version-etc.c25
1 files changed, 16 insertions, 9 deletions
diff --git a/lib/version-etc.c b/lib/version-etc.c
index f7a68d4e3..f27f6a43a 100644
--- a/lib/version-etc.c
+++ b/lib/version-etc.c
@@ -35,6 +35,8 @@
#include "gettext.h"
#define _(msgid) gettext (msgid)
+enum { COPYRIGHT_YEAR = 2005 };
+
/* Like version_etc, below, but with the NULL-terminated author list
provided via a variable of type va_list. */
void
@@ -64,6 +66,20 @@ version_etc_va (FILE *stream,
else
fprintf (stream, "%s %s\n", package, version);
+ /* TRANSLATORS: Translate "(C)" to the copyright symbol
+ (C-in-a-circle), if this symbol is available in the user's
+ locale. Otherwise, do not translate "(C)"; leave it as-is. */
+ fprintf (stream, version_etc_copyright, _("(C)"), COPYRIGHT_YEAR);
+
+ fputs (_("\
+\n\
+This is free software. You may redistribute copies of it under the terms of\n\
+the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.\n\
+There is NO WARRANTY, to the extent permitted by law.\n\
+\n\
+"),
+ stream);
+
switch (n_authors)
{
case 0:
@@ -135,15 +151,6 @@ Written by %s, %s, %s,\n%s, %s, %s, %s,\n%s, %s, and others.\n"),
break;
}
va_end (authors);
- putc ('\n', stream);
-
- fputs (version_etc_copyright, stream);
- putc ('\n', stream);
-
- fputs (_("\
-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"),
- stream);
}