ChestShop-3/com/Acrobot/ChestShop/Configuration/Messages.java

81 lines
4.0 KiB
Java
Raw Normal View History

2012-11-23 20:59:12 +01:00
package com.Acrobot.ChestShop.Configuration;
import org.bukkit.ChatColor;
/**
* @author Acrobot
*/
public class Messages {
public static String prefix = ChatColor.GREEN + "[Shop] " + ChatColor.RESET;
public static String iteminfo = ChatColor.GREEN + "Item Information: " + ChatColor.RESET;
public static byte NEWLINE_iteminfo; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String ACCESS_DENIED = "You don't have permission to do that!";
public static byte NEWLINE_ACCESS_DENIED; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String NOT_ENOUGH_MONEY = "You don't have enough money!";
public static String NOT_ENOUGH_MONEY_SHOP = "Shop owner doesn't have enough money!";
public static String DEPOSIT_FAILED = "Money deposit to shop owner failed!";
public static String DEPOSIT_FAILED_OWNER = "Money deposit to your account failed, shop transaction aborted!";
2012-11-23 20:59:12 +01:00
public static byte NEWLINE_NOT_ENOUGH_MONEY_SHO; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String NO_BUYING_HERE = "You can't buy here!";
public static String NO_SELLING_HERE = "You can't sell here!";
public static byte NEWLINE_NO_SELLING_HERE; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String NOT_ENOUGH_SPACE_IN_INVENTORY = "You haven't got enough space in inventory!";
public static String NOT_ENOUGH_SPACE_IN_CHEST = "There isn't enough space in chest!";
public static String NOT_ENOUGH_ITEMS_TO_SELL = "You don't have enough items to sell!";
public static byte NEWLINE_NOT_ENOUGH_ITEMS_TO_SELL; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String NOT_ENOUGH_STOCK = "This shop is out of stock.";
public static String NOT_ENOUGH_STOCK_IN_YOUR_SHOP = "Your %material shop is out of stock!";
public static byte NEWLINE_ENOUGH_STOCK_IN_YOUR_SHOP; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String YOU_BOUGHT_FROM_SHOP = "You bought %item from %owner for %price.";
public static String SOMEBODY_BOUGHT_FROM_YOUR_SHOP = "%buyer bought %item for %price from you.";
public static byte NEWLINE_SOMEBODY_BOUGHT_FROM_YOUR_SHOP; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String YOU_SOLD_TO_SHOP = "You sold %item to %buyer for %price.";
public static String SOMEBODY_SOLD_TO_YOUR_SHOP = "%seller sold %item for %price to you.";
public static byte NEWLINE_SOMEBODY_SOLD_TO_YOUR_SHOP; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String YOU_CANNOT_CREATE_SHOP = "You can't create this type of shop!";
public static String NO_CHEST_DETECTED = "Couldn't find a chest!";
public static String INVALID_SHOP_DETECTED = "The shop cannot be used! (It might lack a chest!)";
public static String CANNOT_ACCESS_THE_CHEST = "You don't have permissions to access this chest!";
public static byte NEWLINE_CANNOT_ACCESS_THE_CHEST; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String PROTECTED_SHOP = "Successfully protected the shop with LWC!";
public static String SHOP_CREATED = "Shop successfully created!";
public static String SHOP_REFUNDED = "You have been refunded %amount.";
public static byte NEWLINE_SHOP_REFUNDED; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String RESTRICTED_SIGN_CREATED = "Sign succesfully created!";
public static byte NEWLINE_RESTRICTED_SIGN_CREATED; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String NO_PERMISSION = "You don't have permissions to do that!";
public static String INCORRECT_ITEM_ID = "You have specified invalid item id!";
2012-12-31 02:46:21 +01:00
public static String NOT_ENOUGH_PROTECTIONS = "Could not create a protection!";
2012-11-23 20:59:12 +01:00
public static byte NEWLINE_NOT_ENOUGH_PROTECTIONS; ///////////////////////////////////////////////////
2012-11-23 20:59:12 +01:00
public static String CANNOT_CREATE_SHOP_HERE = "You can't create shop here!";
2012-11-23 21:00:35 +01:00
public static String prefix(String message) {
2012-11-23 20:59:12 +01:00
return prefix + message;
}
}