summaryrefslogtreecommitdiffstats
path: root/args4j/args4j/src/org/kohsuke/args4j/Messages.properties
blob: e89cd6a92b2db92265bd139f455a4c1f72c8fab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
MISSING_OPERAND = \
    Option "{0}" takes an operand

UNDEFINED_OPTION = \
    "{0}" is not a valid option

NO_ARGUMENT_ALLOWED = \
    No argument is allowed: {0}

REQUIRED_OPTION_MISSING = \
    Option "{0}" is required
    
REQUIRED_ARGUMENT_MISSING = \
    Argument "{0}" is required
    
TOO_MANY_ARGUMENTS = \
    Too many arguments: {0}

METADATA_ERROR = \
    Problems while reading the args-confguration.

MULTIPLE_USE_OF_ARGUMENT = \
    Argument with index {0} is used more than once

MULTIPLE_USE_OF_OPTION = \
    Option name {0} is used more than once

UNKNOWN_HANDLER = \
    No OptionHandler is registered to handle {0}

NO_OPTIONHANDLER = \
    Not an OptionHandler class

NO_CONSTRUCTOR_ON_HANDLER = \
    {0} does not have the proper constructor

FORMAT_ERROR_FOR_MAP = \
    An argument for setting a Map must contain a "="

MAP_HAS_NO_KEY = \
    A key must be set.