52 lines
2.0 KiB
Java
52 lines
2.0 KiB
Java
package com.drtshock.playervaults.util;
|
|
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.configuration.file.YamlConfiguration;
|
|
|
|
public enum Lang {
|
|
TITLE("title-name", "&4[&fPlayerVaults&4]:"),
|
|
OPEN_VAULT("open-vault", "&fOpening vault &a%v"),
|
|
OPEN_OTHER_VAULT("open-other-vault", "&fOpening vault &a%v &fof &a%p"),
|
|
OPEN_WORKBENCH("open-workbench", "&fOpening workbench"),
|
|
INVALID_ARGS("invalid-args", "&cInvalid args!"),
|
|
DELETE_VAULT("delete-vault", "&fDeleted vault &a%v"),
|
|
DELETE_OTHER_VAULT("delete-other-vault", "&fDeleted vault &a%v &fof &a%p"),
|
|
PLAYER_ONLY("player-only", "Sorry but that can only be run by a player!"),
|
|
MUST_BE_NUMBER("must-be-number", "&cYou need to specify a number between 1-99"),
|
|
DELETE_VAULT_ERROR("delete-vault-error", "&cError deleting vault :("),
|
|
NO_PERMS("no-permissions", "&cYou don''t have permission for that!"),
|
|
INSUFFICIENT_FUNDS("insufficient-funds", "&cYou don''t have enough money for that!"),
|
|
REFUND_AMOUNT("refund-amount", "&fYou were refunded &a%price &ffor deleting that vault."),
|
|
COST_TO_CREATE("cost-to-create", "&fYou were charged &c%price &ffor creating a vault."),
|
|
COST_TO_OPEN("cost-to-open", "&fYou were charged &c%price &ffor opening that vault."),
|
|
VAULT_DOES_NOT_EXIST("vault-does-not-exist", "&cThat vault does not exist!");
|
|
|
|
private String path;
|
|
private String def; // Default string
|
|
private static YamlConfiguration lang;
|
|
|
|
Lang(String path, String start) {
|
|
this.path = path;
|
|
this.def = start;
|
|
}
|
|
|
|
public static void setFile(YamlConfiguration yc) {
|
|
lang = yc;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
if(this == TITLE)
|
|
return ChatColor.translateAlternateColorCodes('&', lang.getString(this.path, def)) + " ";
|
|
return ChatColor.translateAlternateColorCodes('&', lang.getString(this.path, def));
|
|
}
|
|
|
|
public String getDefault() {
|
|
return this.def;
|
|
}
|
|
|
|
public String getPath() {
|
|
return this.path;
|
|
}
|
|
}
|