zallery/src/zall/ZalleryConstant.java

20 lines
290 B
Java
Raw Normal View History

package zall;
import java.util.Locale;
/**
* Zallery globally defined constants
*/
public interface ZalleryConstant {
/** Session Constants **/
2017-11-14 17:52:55 +01:00
/** Language Key Constants **/
String LANG_BASENAME = "zall.lang.zallery_lang";
Locale LANG_DEFAULT = Locale.ENGLISH;
2017-11-14 17:52:55 +01:00
}