mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-04-27 00:49:44 +00:00
14 lines
228 B
Java
14 lines
228 B
Java
![]() |
package net.ess3.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();
|
||
|
}
|