001package co.aikar.commands; 002 003import co.aikar.locales.MessageKey; 004import co.aikar.locales.MessageKeyProvider; 005 006public enum MinecraftMessageKeys implements MessageKeyProvider { 007 USERNAME_TOO_SHORT, 008 IS_NOT_A_VALID_NAME, 009 MULTIPLE_PLAYERS_MATCH, 010 NO_PLAYER_FOUND_SERVER, 011 NO_PLAYER_FOUND 012 ; 013 014 private final MessageKey key = MessageKey.of("acf-minecraft." + this.name().toLowerCase()); 015 public MessageKey getMessageKey() { 016 return key; 017 } 018}