Index: trunk/patches/30gettext_i18n.patch
===================================================================
--- trunk/patches/30gettext_i18n.patch	(revision 5336)
+++ trunk/patches/30gettext_i18n.patch	(revision 5337)
@@ -35,6 +35,6 @@
 -    public  OptI18n() {
 -        add("getopt.ambigious", tr("{0}: option ''{1}'' is ambiguous"));
--        add("getopt.arguments1", tr("{0}: option ''--{1}'' doesn't allow an argument"));
--        add("getopt.arguments2", tr("{0}: option ''{1}{2}'' doesn't allow an argument"));
+-        add("getopt.arguments1", tr("{0}: option ''--{1}'' does not allow an argument"));
+-        add("getopt.arguments2", tr("{0}: option ''{1}{2}'' does not allow an argument"));
 -        add("getopt.requires", tr("{0}: option ''{1}'' requires an argument"));
 -        add("getopt.unrecognized", tr("{0}: unrecognized option ''--{1}''"));
Index: trunk/src/gnu/getopt/Getopt.java
===================================================================
--- trunk/src/gnu/getopt/Getopt.java	(revision 5336)
+++ trunk/src/gnu/getopt/Getopt.java	(revision 5337)
@@ -1,4 +1,2 @@
-/**************************************************************************
-/* Getopt.java -- Java port of GNU getopt from glibc 2.0.6
 /*
 /* Copyright (c) 1987-1997 Free Software Foundation, Inc.
@@ -587,6 +585,6 @@
     public  OptI18n() {
         add("getopt.ambigious", tr("{0}: option ''{1}'' is ambiguous"));
-        add("getopt.arguments1", tr("{0}: option ''--{1}'' doesn't allow an argument"));
-        add("getopt.arguments2", tr("{0}: option ''{1}{2}'' doesn't allow an argument"));
+        add("getopt.arguments1", tr("{0}: option ''--{1}'' does not allow an argument"));
+        add("getopt.arguments2", tr("{0}: option ''{1}{2}'' does not allow an argument"));
         add("getopt.requires", tr("{0}: option ''{1}'' requires an argument"));
         add("getopt.unrecognized", tr("{0}: unrecognized option ''--{1}''"));
