TF-EssentialsX/Essentials/src/com/earth2me/essentials/api/II18n.java

14 lines
243 B
Java
Raw Normal View History

2011-12-06 15:32:06 +00:00
package com.earth2me.essentials.api;
import java.util.Locale;
2011-12-06 15:32:06 +00:00
public interface II18n
{
/**
* Gets the current locale setting
* @return the current locale, if not set it will return the default locale
*/
Locale getCurrentLocale();
2011-12-06 15:32:06 +00:00
}