/** * Jobs Plugin for Bukkit * Copyright (C) 2011 Zak Ford * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package com.gamingmesh.jobs.i18n; import java.util.Locale; import org.bukkit.ChatColor; import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.plugin.java.JavaPlugin; import com.gamingmesh.jobs.Jobs; import com.gamingmesh.jobs.JobsPlugin; import com.gamingmesh.jobs.config.YmlMaker; public class Language { public static FileConfiguration enlocale; public static FileConfiguration customlocale; private JobsPlugin plugin; public Language(JobsPlugin plugin) { this.plugin = plugin; } /** * Reloads the config */ public void reload(Locale locale) { customlocale = new YmlMaker((JavaPlugin) plugin, "locale/messages_" + Jobs.getGCManager().localeString + ".yml").getConfig(); enlocale = new YmlMaker((JavaPlugin) plugin, "locale/messages_en.yml").getConfig(); if (customlocale == null) customlocale = enlocale; } /** * Get the message with the correct key * @param key - the key of the message * @return the message */ public String getMessage(String key, Object... variables) { String missing = "Missing locale for " + key + " "; String msg = ""; if (customlocale == null || !customlocale.contains(key)) msg = enlocale.contains(key) == true ? ChatColor.translateAlternateColorCodes('&', enlocale.getString(key)) : missing; else msg = customlocale.contains(key) == true ? ChatColor.translateAlternateColorCodes('&', customlocale.getString(key)) : missing; if (variables.length > 0) for (int i = 0; i < variables.length; i++) { if (variables.length >= i + 2) msg = msg.replace(String.valueOf(variables[i]), String.valueOf(variables[i + 1])); i++; } return msg; } /** * Get the message with the correct key * @param key - the key of the message * @return the message */ public String getDefaultMessage(String key) { return enlocale.contains(key) == true ? ChatColor.translateAlternateColorCodes('&', enlocale.getString(key)) : "Cant find locale"; } /** * Check if key exists * @param key - the key of the message * @return true/false */ public boolean containsKey(String key) { if (customlocale == null || !customlocale.contains(key)) return enlocale.contains(key); return customlocale.contains(key); } }