- Timestamp:
- 2012-07-14T14:29:07+02:00 (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/patches/30gettext_i18n.patch
r5285 r5337 35 35 - public OptI18n() { 36 36 - add("getopt.ambigious", tr("{0}: option ''{1}'' is ambiguous")); 37 - add("getopt.arguments1", tr("{0}: option ''--{1}'' does n't allow an argument"));38 - add("getopt.arguments2", tr("{0}: option ''{1}{2}'' does n't allow an argument"));37 - add("getopt.arguments1", tr("{0}: option ''--{1}'' does not allow an argument")); 38 - add("getopt.arguments2", tr("{0}: option ''{1}{2}'' does not allow an argument")); 39 39 - add("getopt.requires", tr("{0}: option ''{1}'' requires an argument")); 40 40 - add("getopt.unrecognized", tr("{0}: unrecognized option ''--{1}''")); -
trunk/src/gnu/getopt/Getopt.java
r5279 r5337 1 /**************************************************************************2 /* Getopt.java -- Java port of GNU getopt from glibc 2.0.63 1 /* 4 2 /* Copyright (c) 1987-1997 Free Software Foundation, Inc. … … 587 585 public OptI18n() { 588 586 add("getopt.ambigious", tr("{0}: option ''{1}'' is ambiguous")); 589 add("getopt.arguments1", tr("{0}: option ''--{1}'' does n't allow an argument"));590 add("getopt.arguments2", tr("{0}: option ''{1}{2}'' does n't allow an argument"));587 add("getopt.arguments1", tr("{0}: option ''--{1}'' does not allow an argument")); 588 add("getopt.arguments2", tr("{0}: option ''{1}{2}'' does not allow an argument")); 591 589 add("getopt.requires", tr("{0}: option ''{1}'' requires an argument")); 592 590 add("getopt.unrecognized", tr("{0}: unrecognized option ''--{1}''"));
Note:
See TracChangeset
for help on using the changeset viewer.