39 lines
662 B
Java
39 lines
662 B
Java
package fr.xephi.authme.command.help;
|
|
|
|
/**
|
|
* Translatable sections. Message keys are prefixed by {@code section}.
|
|
*/
|
|
public enum HelpSection {
|
|
|
|
SHORT_DESCRIPTION("description.short"),
|
|
|
|
DETAILED_DESCRIPTION("description.detailed"),
|
|
|
|
USAGE("usage"),
|
|
|
|
ARGUMENTS("arguments"),
|
|
|
|
ALTERNATIVES("alternatives"),
|
|
|
|
PERMISSIONS("permissions"),
|
|
|
|
COMMANDS("commands");
|
|
|
|
|
|
private final String key;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param key the message key
|
|
*/
|
|
HelpSection(String key) {
|
|
this.key = "section." + key;
|
|
}
|
|
|
|
/** @return the message key */
|
|
public String getKey() {
|
|
return key;
|
|
}
|
|
}
|