001/* 002 * Copyright (c) 2016-2017 Daniel Ennis (Aikar) - MIT License 003 * 004 * Permission is hereby granted, free of charge, to any person obtaining 005 * a copy of this software and associated documentation files (the 006 * "Software"), to deal in the Software without restriction, including 007 * without limitation the rights to use, copy, modify, merge, publish, 008 * distribute, sublicense, and/or sell copies of the Software, and to 009 * permit persons to whom the Software is furnished to do so, subject to 010 * the following conditions: 011 * 012 * The above copyright notice and this permission notice shall be 013 * included in all copies or substantial portions of the Software. 014 * 015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 016 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 017 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 018 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 019 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 020 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 021 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 022 */ 023 024package co.aikar.commands; 025 026import co.aikar.locales.MessageKey; 027import co.aikar.locales.MessageKeyProvider; 028 029public enum MinecraftMessageKeys implements MessageKeyProvider { 030 INVALID_WORLD, 031 YOU_MUST_BE_HOLDING_ITEM, 032 PLAYER_IS_VANISHED_CONFIRM, 033 USERNAME_TOO_SHORT, 034 IS_NOT_A_VALID_NAME, 035 MULTIPLE_PLAYERS_MATCH, 036 NO_PLAYER_FOUND_SERVER, 037 NO_PLAYER_FOUND, 038 LOCATION_PLEASE_SPECIFY_WORLD, 039 LOCATION_PLEASE_SPECIFY_XYZ, 040 LOCATION_CONSOLE_NOT_RELATIVE; 041 042 private final MessageKey key = MessageKey.of("acf-minecraft." + this.name().toLowerCase()); 043 public MessageKey getMessageKey() { 044 return key; 045 } 046}