2011-06-09 22:54:01 +02:00
|
|
|
package com.Acrobot.ChestShop.Config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Acrobot
|
|
|
|
*/
|
2011-09-06 19:01:57 +02:00
|
|
|
public enum Language {
|
2011-06-09 22:54:01 +02:00
|
|
|
prefix("&a[Shop] &f"),
|
|
|
|
iteminfo("&aItem Information:&f"),
|
|
|
|
|
|
|
|
ACCESS_DENIED("You don't have permission to do that!"),
|
|
|
|
|
2011-06-23 23:25:34 +02:00
|
|
|
NOT_ENOUGH_MONEY("You don't have enough money!"),
|
2011-06-09 22:54:01 +02:00
|
|
|
NOT_ENOUGH_MONEY_SHOP("Shop owner doesn't have enough money!"),
|
|
|
|
|
|
|
|
NO_BUYING_HERE("You can't buy here!"),
|
|
|
|
NO_SELLING_HERE("You can't sell here!"),
|
|
|
|
|
|
|
|
NOT_ENOUGH_SPACE_IN_INVENTORY("You haven't got enough space in inventory!"),
|
|
|
|
NOT_ENOUGH_SPACE_IN_CHEST("There isn't enough space in chest!"),
|
2011-06-23 23:25:34 +02:00
|
|
|
NOT_ENOUGH_ITEMS_TO_SELL("You don't have enough items to sell!"),
|
2011-06-09 22:54:01 +02:00
|
|
|
|
2011-06-23 23:25:34 +02:00
|
|
|
NOT_ENOUGH_STOCK("This shop is out of stock."),
|
2011-06-09 22:54:01 +02:00
|
|
|
NOT_ENOUGH_STOCK_IN_YOUR_SHOP("Your %material shop is out of stock!"),
|
|
|
|
|
|
|
|
YOU_BOUGHT_FROM_SHOP("You bought %amount %item from %owner for %price."),
|
|
|
|
SOMEBODY_BOUGHT_FROM_YOUR_SHOP("%buyer bought %amount %item for %price from you."),
|
|
|
|
|
|
|
|
YOU_SOLD_TO_SHOP("You sold %amount %item to %buyer for %price."),
|
|
|
|
SOMEBODY_SOLD_TO_YOUR_SHOP("%seller sold %amount %item for %price to you."),
|
|
|
|
|
|
|
|
YOU_CANNOT_CREATE_SHOP("You can't create this type of shop!"),
|
|
|
|
NO_CHEST_DETECTED("Couldn't find a chest!"),
|
|
|
|
ANOTHER_SHOP_DETECTED("Another player's shop detected!"),
|
2011-06-11 17:36:55 +02:00
|
|
|
CANNOT_ACCESS_THE_CHEST("You don't have permissions to access this chest!"),
|
2011-06-09 22:54:01 +02:00
|
|
|
|
2011-06-11 17:36:55 +02:00
|
|
|
PROTECTED_SHOP("Successfully protected the shop with LWC!"),
|
2011-06-09 22:54:01 +02:00
|
|
|
SHOP_CREATED("Shop successfully created!"),
|
2012-01-25 16:32:34 +01:00
|
|
|
SHOP_REFUNDED("You have been refunded %amount."),
|
2011-06-09 22:54:01 +02:00
|
|
|
|
2011-06-23 23:25:34 +02:00
|
|
|
NO_PERMISSION("You don't have permissions to do that!"),
|
2011-09-22 15:56:06 +02:00
|
|
|
INCORRECT_ITEM_ID("You have specified invalid item id!"),
|
2011-12-01 14:02:58 +01:00
|
|
|
NOT_ENOUGH_LWC_PROTECTIONS("You have reached the LWC protections limit!"),
|
2011-09-22 15:56:06 +02:00
|
|
|
|
|
|
|
TOWNY_CANNOT_CREATE_SHOP_HERE("You can't create shop here!");
|
2011-06-09 22:54:01 +02:00
|
|
|
|
|
|
|
|
2011-07-23 21:00:47 +02:00
|
|
|
private final String text;
|
2011-06-09 22:54:01 +02:00
|
|
|
|
2011-06-11 17:36:55 +02:00
|
|
|
private Language(String def) {
|
2011-06-09 22:54:01 +02:00
|
|
|
text = def;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
}
|