mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
13 lines
265 B
Java
13 lines
265 B
Java
package com.earth2me.essentials.api;
|
|
|
|
import java.util.Locale;
|
|
|
|
|
|
public interface II18n {
|
|
/**
|
|
* Gets the current locale setting
|
|
*
|
|
* @return the current locale, if not set it will return the default locale
|
|
*/
|
|
Locale getCurrentLocale();
|
|
}
|