Browse Source

Undo over-translation

Wichert Akkerman 26 years ago
parent
commit
399d4f71df
2 changed files with 5 additions and 1 deletions
  1. 4 0
      ChangeLog
  2. 1 1
      lib/showcright.c

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+Wed Jun 28 00:04:40 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
+
+ * lib/showcright.c: don't translate function-name in do_fd_copy call
+
 Sat Jun 27 19:19:00 CEST 2000 peter karlsson <peterk@debian.org>
 
   * po/sv.po: Updated Swedish translation from comments received.

+ 1 - 1
lib/showcright.c

@@ -29,6 +29,6 @@ void showcopyright(const struct cmdinfo *c, const char *v) {
   int fd;
   fd= open(COPYINGFILE,O_RDONLY);
   if (fd < 0) ohshite(_("cannot open GPL file "));
-  do_fd_copy(fd, 1, _("showcopyright"));
+  do_fd_copy(fd, 1, "showcopyright");
   exit(0);
 }