Changeset 5337 in josm


Ignore:
Timestamp:
2012-07-14T14:29:07+02:00 (12 years ago)
Author:
stoecker
Message:

i18n fix

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/patches/30gettext_i18n.patch

    r5285 r5337  
    3535-    public  OptI18n() {
    3636-        add("getopt.ambigious", tr("{0}: option ''{1}'' is ambiguous"));
    37 -        add("getopt.arguments1", tr("{0}: option ''--{1}'' doesn't allow an argument"));
    38 -        add("getopt.arguments2", tr("{0}: option ''{1}{2}'' doesn'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"));
    3939-        add("getopt.requires", tr("{0}: option ''{1}'' requires an argument"));
    4040-        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.6
    31/*
    42/* Copyright (c) 1987-1997 Free Software Foundation, Inc.
     
    587585    public  OptI18n() {
    588586        add("getopt.ambigious", tr("{0}: option ''{1}'' is ambiguous"));
    589         add("getopt.arguments1", tr("{0}: option ''--{1}'' doesn't allow an argument"));
    590         add("getopt.arguments2", tr("{0}: option ''{1}{2}'' doesn'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"));
    591589        add("getopt.requires", tr("{0}: option ''{1}'' requires an argument"));
    592590        add("getopt.unrecognized", tr("{0}: unrecognized option ''--{1}''"));
Note: See TracChangeset for help on using the changeset viewer.